Emily Nusbaum, Maxwell Silverman, Patrick O'Toole
Homeworlds is a niche asymmetric strategy board game. It uses a set of plastic pyramids of three different sizes (small: 1, medium: 2, large: 3) and four different colors (blue, green, red, yellow). The players take turns making a single action of their choice (i.e. build, trade, move, discover, or attack) based on the colors of the pyramids on the table. The players can also sacrifice one of their pyramids on their turn to take multiple actions on this turn. The game always begins with the first player choosing a set of any three pyramids to be their “homeworld.” Then the second player does the same. The goal of the game is to take control of or destroy your opponents homeworld.
For the purpose of this project, it is only necessary to understand that homeworlds are made up of three different pyramids. The colors and sizes of these worlds are important to how the player plays the game, but it is not necessary to understand the complexities of the game to understand this project (however, if you're curious, the game instructions are with our additional resources).
We want to explore whether or not the winner of a Homeworlds game can be predicted based on factors such as who goes first, what setups are used, and if additional actions are taken during a turn. The goal is to determine if the game is influenced by these external factors, or if the outcome is seemingly random, implying that the game is fair.
We begin by collecting data from SuperDuperGames.org, which hosts data from every homeworlds game played on the site. Because the data is only accessible if a user is logged in, we created a payload to create a new session with the requests library to login with the given credentials. We used a post request to send the payload to the site and a get request to get the web page. SuperDuperGames assigns the participants to one of four positions: north, south, east, west. If there are only two players, there will only be north and south participants. If three, there will be north, south, and east.
import requests
from bs4 import BeautifulSoup
from urllib.request import urlopen
import pandas as pd
import datetime
from datetime import datetime as dt
import numpy as np
import enum
import re
import datetime
import matplotlib.pyplot as plt
from sklearn import linear_model
import seaborn as cbn
from scipy import stats
from statsmodels.stats import weightstats as stests
from sklearn.neighbors import KNeighborsClassifier
from sklearn import tree
#!conda install -y html5lib
#!conda install -y lxml
# Pretending to be a safari browser, shhhhh...
comp_head = {'User-Agent':'Safari/13.1'}
# Create an auth payload to login to the site.
payload = {
'mode': 'auth',
'username': 'fall2020cmsc320',
'password': 'BGtz0jo4',
'cookies': {}
}
# Use auth payload to create a session through which I can access the data from this account.
with requests.Session() as sess:
auth_post = sess.post('http://superdupergames.org/', data=payload)
games_page = sess.get('http://superdupergames.org/pgn.html?id=homeworlds', headers=comp_head).content
# Output the content of the webpage with said data.
print(games_page)
b'<!DOCTYPE html\nPUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"\n"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">\n\n<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\n\n<head>\n\t<link rel="stylesheet" type="text/css" href="/styles.css" />\n\n\n\n\t<title>Super Duper Games - PGN Viewer</title>\n\t<META HTTP-EQUIV="Pragma" CONTENT="no-cache">\n\t<META HTTP-EQUIV="Expires" CONTENT="-1">\n</head>\n\n<body>\n\t<table class="help">\n\t\t<tr class="help">\n\t\t\t<td class="help"><pre>Homeworlds Online (SDG# 651)\nStarted: 2005.9.8, Ended: 2005.9.10\nParticipants: rbryan (S), crackity_jones (N)\nWinner: rbryan\n\n\trbryan: howdy\n\tSYSTEM: crackity_jones resigns.\n\nHomeworlds Online (SDG# 632)\nStarted: 2005.9.6, Ended: 2005.9.7\nParticipants: Subhan64 (S), jesse (N)\nWinner: jesse\n\n1) jesse: Homeworld B2 Y1 G3\n\n2) Subhan64: Homeworld Y2 B2 R2\n\tjesse: Greetings to all intelligent life forms. We come in peace.\n\n3) jesse: Pass\n\n4) Subhan64: Trade R2 G2 Subhan64\n\tjesse: You must be new. It is vital to have green in your home system at the start of the game. You can't use red until our forces come into contact. You can't use yellw until you have another ship to leave in your home system. You can use blue to change the color of your ship, but in that case you should have started with the new color to begin with. I'll give you a chance to change to green now.\n\tjesse: It is also very important to start with a large ship, rather than a medium. Large ships are power. Without one, you will be weak on both offense and defense.\n\n5) jesse: Build G1 Jesse\n\n6) Subhan64: Build G1 Subhan64\n\n7) jesse: Trade G1 R1 Jesse\n\n8) Subhan64: Discover G1 Subhan64 R1 Abraxis\n\n9) jesse: Build R1 Jesse\n\n10) Subhan64: Build G1 Subhan64\n\n11) jesse: Build R2 Jesse\n\n12) Subhan64: Trade G2 R2 Subhan64\n\n13) jesse: Trade R1 G1 Jesse\n\n14) Subhan64: Construct G2 Abraxis\n\n15) jesse: Discover G3 Jesse Y3 Danger\n\n16) Subhan64: Build G2 Subhan64\n\n17) jesse: Build G2 Danger\n\n18) Subhan64: Move R2 Subhan64 Danger\n\n19) jesse: Move G2 Danger Subhan64\n\n20) Subhan64: Trade G1 Y1 Subhan64\n\tSubhan64: Finally read your comments. yes, this is my first game.\n\n21) jesse: Sacrifice R2 Jesse\nAttack G2S Subhan64\nAttack Y1S Subhan64\n\tjesse: Well, I hope you've enjoyed it, and learned a thing or two along the way.\n\n\nHomeworlds Online (SDG# 627)\nStarted: 2005.9.5, Ended: 2005.9.13\nParticipants: Aaron (S), CDRodeffer (N)\nWinner: CDRodeffer\n\n1) CDRodeffer: Homeworld R1 Y2 G3\n\n2) Aaron: Homeworld Y1 B3 G3\n\n3) CDRodeffer: Build G1 Cdrodeffer\n\n4) Aaron: Build G1 Aaron\n\n5) CDRodeffer: Discover G1 Cdrodeffer B3 Blueberry\n\n6) Aaron: Trade G1 R1 Aaron\n\n7) CDRodeffer: Build G1 Blueberry\n\n8) Aaron: Build R1 Aaron\n\n9) CDRodeffer: Trade G1 Y1 Blueberry\n\n10) Aaron: Trade R1 Y1 Aaron\n\n11) CDRodeffer: Build Y2 Blueberry\n\n12) Aaron: Discover Y1 Aaron B2 Acqua\n\n13) CDRodeffer: Trade Y2 B2 Blueberry\n\n14) Aaron: Build G1 Aaron\n\tAaron: What the heck am I doing? *shakes his head in confusion*\n\n15) CDRodeffer: Build Y2 Blueberry\n\n16) Aaron: Move G1 Aaron Acqua\n\n17) CDRodeffer: Trade Y2 R2 Blueberry\n\tCDRodeffer: I'm not exactly sure, so don't ask me! :-P\n\n18) Aaron: Build Y2 Acqua\n\tAaron: I have no idea either. This is a problem.\n\n19) CDRodeffer: Move R2 Blueberry Acqua\n\n20) Aaron: Sacrifice Y2 Acqua\nMove G1 Acqua Aaron\nMove Y1 Acqua Aaron\n\tAaron: It is taking me some time for strategies to start to gell in my mind. I'm still flying by the seat of my pants.\n\n21) CDRodeffer: Build Y2 Blueberry\n\n22) Aaron: Trade G3 R3 Aaron\n\tCDRodeffer: Oh, I totally understand. I'm still new to this game as well, although I have played with a few very, very good players. Russell Grieshop taught me almost everything I know about the game. He's one tough player.\n\n23) CDRodeffer: Move B2 Blueberry Cdrodeffer\n\n24) Aaron: Trade Y1 B1 Aaron\n\n25) CDRodeffer: Move Y1 Blueberry Cdrodeffer\n\n26) Aaron: Trade B1 Y1 Aaron\n\n27) CDRodeffer: Build G1 Cdrodeffer\n\n28) Aaron: Discover Y1 Aaron G2 Emerald\n\n29) CDRodeffer: Build G2 Blueberry\n\n30) Aaron: Build Y2 Emerald\n\tAaron: I am distinctly outnumbered.\n\n31) CDRodeffer: Build Y3 Blueberry\n\n32) Aaron: Discover Y2 Emerald G3 Grass\n\tCDRodeffer: There is strength in numbers, it's true, but numbers aren't everything for sure. Oh, by the way, red alert in Emerald. If I sacrifice y3 in Blueberry, I can move the y1 from CDRodeffer and the y2 from Blueberry in for a catastrophe. We wouldn't want *that* now, would we?\n\tAaron: Eeks!\n\n33) CDRodeffer: Trade G2 R2 Blueberry\n\n34) Aaron: Build Y3 Grass\n\n35) CDRodeffer: Sacrifice Y3 Blueberry\nMove Y2 Blueberry Cdrodeffer\nMove Y2 Cdrodeffer Grass\nMove Y1 Cdrodeffer Grass\nCatastrophe Grass Yellow\n\n36) Aaron: Trade R1 Y1 Aaron\n\tCDRodeffer: "Oh, bother," said Pooh, as he blew up the star system.\n\tAaron: well at least you lost as many ships as I did...that's a comfort.\n\n37) CDRodeffer: Build G2 Blueberry\n\n38) Aaron: Build Y2 Emerald\n\tCDRodeffer: Such are the vicissitudes of life.\n\n39) CDRodeffer: Trade G2 Y2 Blueberry\n\n40) Aaron: Build Y3 Aaron\n\n41) CDRodeffer: Build Y3 Blueberry\n\n42) Aaron: Sacrifice Y3 Aaron\nMove Y1 Emerald Blueberry\nMove Y2 Emerald Blueberry\nDiscover Y1 Aaron G2 Forest\nCatastrophe Blueberry Y\n\n43) CDRodeffer: Build G2 Blueberry\n\tCDRodeffer: Um, OK....\n\n44) Aaron: Build G2 Aaron\n\n45) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild R1 Acqua\nBuild B1 Cdrodeffer\nBuild G3 Cdrodeffer\n\n46) Aaron: Build G3 Aaron\n\n47) CDRodeffer: Trade G2 Y2 Blueberry\n\n48) Aaron: Trade G2 R2 Aaron\n\n49) CDRodeffer: Sacrifice Y2 Blueberry\nMove R1 Acqua Aaron\nMove R2 Acqua Aaron\nCatastrophe Aaron Red\n\tCDRodeffer: Ha! I anticipated as much!\n\n50) Aaron: Trade G3 R3 Aaron\n\tAaron: yeah, as soon as I hit "submit orders" I realized what I had done. I'm feeling a little lost with no direct strategy.\n\n51) CDRodeffer: Build G2 Blueberry\n\n52) Aaron: Build R1 Aaron\n\tCDRodeffer: Home system defense is a great place to start.\n\tAaron: I'm liking the Red home star idea though. Will definitely do that in the future.\n\n53) CDRodeffer: Trade G1 Y1 Blueberry\n\tCDRodeffer: It's kind of an experiment for me. Russell Grieshop often plays that way, though.\n\n54) Aaron: Build Y2 Forest\n\n55) CDRodeffer: Move R2 Blueberry Forest\n\n56) Aaron: Move Y2 Forest Blueberry\n\n57) CDRodeffer: Attack Y1S Forest\n\n58) Aaron: Trade Y2 R2 Blueberry\n\n59) CDRodeffer: Sacrifice G2 Blueberry\nBuild R1 Forest\nBuild Y2 Forest\n\n60) Aaron: Discover R1 Aaron G2 Emerald\n\n61) CDRodeffer: Discover Y1 Blueberry G2 Oscar\n\n62) Aaron: Build G1 Aaron\n\n63) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild Y2 Oscar\n\n\tAaron: *is overwhelmed by a profound sense of impending doom*\n\tAaron: Well I thank you for the game, but I don't think I want to be around when my system goes supernova =) I've learned a few things though! Thanks again!\n\tSYSTEM: Aaron resigns.\n\nHomeworlds Online (SDG# 644)\nStarted: 2005.9.7, Ended: 2005.9.8\nParticipants: jesse (S), rbryan (N)\nWinner: jesse\n\n1) rbryan: Homeworld Y3 B2 G3\n\n2) jesse: Homeworld B2 Y1 G3\n\n3) rbryan: Build G1 Rbryan\n\tjesse: Hello.\n\n4) jesse: Build G1 Jesse\n\n5) rbryan: Discover G1 Rbryan B1 Neptune\n\n6) jesse: Discover G1 Jesse B3 Bluto\n\trbryan: Hello\n\n7) rbryan: Build G1 Neptune\n\n8) jesse: Build G2 Jesse\n\n9) rbryan: Build G2 Rbryan\n\tjesse: So, played much?\n\n10) jesse: Sacrifice G3 Jesse\nBuild G2 Bluto\nBuild G3 Jesse\nBuild G3 Jesse\n\n11) rbryan: Trade G2 Y2 Rbryan\n\n12) jesse: Discover G2 Jesse Y3 Curry\n\trbryan: No, not at all really; you?\n\n13) rbryan: Build G2 Rbryan\n\tjesse: Yeah, I've played a fair amount.\n\n14) jesse: Trade G1 B1 Bluto\n\n15) rbryan: Trade G1 B1 Neptune\n\n16) jesse: Trade B1 Y1 Bluto\n\n17) rbryan: Build B1 Neptune\n\tjesse: Heh. Actually, this is what I meant to do last time, but I mistyped it. I did come up with some alternate plans, but your move made them considerably less attractive.\n\n18) jesse: Sacrifice G3 Jesse\nBuild G1 Bluto\nBuild G1 Curry\nBuild G3 Jesse\n\n19) rbryan: Trade B1 Y1 Neptune\n\n20) jesse: Trade G1 B1 Bluto\n\n21) rbryan: Sacrifice Y2 Rbryan\nMove Y1 Neptune Bluto\nMove Y1 Bluto Jesse\n\n22) jesse: Build Y2 Bluto\n\tjesse: Wicked.\n\trbryan: It looked like the fun move; but I'm not sure it won't cripple me...\n\n23) rbryan: Sacrifice G3 Rbryan\nBuild Y2 Jesse\nBuild G1 Neptune\nBuild G3 Rbryan\n\tjesse: I'll certainly try to make you pay for it.\n\n24) jesse: Trade G3 R3 Jesse\n\n25) rbryan: Sacrifice G2 Rbryan\nBuild Y2 Jesse\nBuild G2 Rbryan\n\n26) jesse: Sacrifice G3 Jesse\nBuild G3 Curry\nBuild G3 Bluto\nBuild Y3 Bluto\nCatastrophe Jesse Y\n\tjesse: No catastrophe?\n\trbryan: Nope. I beleive that would have lost me the game...\n\tjesse: Okay, then. Just bear in mind that I can do it myself if I think it's advantageous for me to do so, and in the meantime it gives me access to that large yellow.\n\tjesse: Ah, yes, I do see your problem now. Tight spot.\n\n27) rbryan: Trade G3 R3 Rbryan\n\n28) jesse: Sacrifice G2 Curry\nBuild R1 Jesse\nBuild B2 Bluto\n\n29) rbryan: Trade G1 Y1 Neptune\n\n30) jesse: Sacrifice Y2 Bluto\nMove Y3 Bluto Jesse\nDiscover B2 Bluto Y1 Frink\n\n31) rbryan: Build Y2 Neptune\n\n32) jesse: Sacrifice G3 Curry\nBuild Y2 Jesse\nBuild Y2 Bluto\nBuild B3 Frink\n\n33) rbryan: Build R1 Rbryan\n\n34) jesse: Sacrifice Y3 Jesse\nMove G3 Bluto Frink\nMove G3 Frink Rbryan\nMove B3 Frink Rbryan\n\n35) rbryan: Attack G3S Rbryan\n\n36) jesse: Sacrifice R3 Jesse\nAttack R3N Rbryan\nAttack G3N Rbryan\nAttack R1N Rbryan\n\n\trbryan: Good game\n\tSYSTEM: rbryan resigns.\n\nHomeworlds Online (SDG# 625)\nStarted: 2005.9.5, Ended: 2005.9.29\nParticipants: Jesse (S), jeep (N)\nWinner: Jesse\n\n1) jeep: Homeworld B3 G1 Y3\n\n2) jesse: Homeworld Y2 B1 G3\n\tjeep: Hello! Well, I figure I'll try this out. I'm currently (and temporarily) in China, with sporadic access to the internet, but I should be able to move every other day, at least. Multiple moves per day, when I make them, if you are online too. ;)\n\n3) jeep: Build Y1 Jeep\n\tjesse: Hello. It's no problem if you can't move very often. It's nice if you can, of course, but definitely more important that you make the most of your time in China. What are you there for, by the way?\n\n4) jesse: Build G1 Jesse\n\tjeep: I'm working. 10-16 hour days. Bleh.\n\n5) jeep: Discover Y1 Jeep Y2 Trav\n\n6) jesse: Discover G1 Jesse B3 Ungo\n\tjeep: Terrible sorry! My laptop died. I'm on a loaner right now. I should have decent access except for the day I will be flying.\n\n7) jeep: Trade Y3 G3 Jeep\n\tjesse: It's okay. Adverse conditions do come up now and then.\n\n8) jesse: Build G1 Jesse\n\tjeep: They've been coming up way too often in my life lately. ;) Heck, I couldn't even type "Terribly" correctly in my last message though. I've been in China too long.\n\tjesse: Huh. I thought you were going to try to freeze me out of yellow.\n\n9) jeep: Move Y1 Trav Jeep\n\tjeep: Yeah, I skipped a step in my plan. ;) I'm not very good at this game yet. heh.\n\n10) jesse: Build G2 Ungo\n\tjeep: Bleh, I have too much time to forget what I'm doing and what I have already done.\n\n11) jeep: Build Y1 Jeep\n\n12) Jesse: Trade G2 Y2 Ungo\n\n13) jeep: Discover Y1 Jeep B2 Tradago\n\n14) Jesse: Build G2 Jesse\n\tjeep: If this is too painfully slow, let me know and I'll resign (or force me to). I'm home now and slowly recovering and catching up. I would expect that I will soon be playing at a "normal" pace, but it might take me a while to get there.\n\tJesse: I don't mind the wait now and then, although it would be great if you could get back to a normal pace.\n\n15) jeep: Sacrifice G3 Jeep\nBuild Y1 Tradago\nBuild Y2 Jeep\nBuild Y3 Jeep\n\n16) Jesse: Build Y3 Ungo\n\n17) jeep: Trade Y3 G3 Jeep\n\n18) Jesse: Sacrifice G3 Jesse\nBuild G2 Ungo\nBuild G2 Ungo\nBuild G3 Jesse\n\n19) jeep: Trade Y1 R1 Tradago\n\tjeep: My math sucks. I somehow thought 3=2. :(\n\n20) Jesse: Trade G2 R2 Jesse\n\tJesse: Only for very small values of 3.\n\n21) jeep: Trade Y2 B2 Jeep\n\tjeep: Well, I figured out something new, which is good. Esp. since I'm so far behind in this game. \n\n22) Jesse: Discover G2 Ungo Y2 Sol\n\n23) jeep: Build B1 Jeep\n\n24) Jesse: Sacrifice G3 Jesse\nBuild G2 Sol\nBuild G3 Ungo\nBuild G3 Jesse\n\n25) jeep: Sacrifice G3 Jeep\nBuild Y1 Tradago\nBuild R1 Tradago\nBuild Y3 Jeep\n\tjeep: I feel like I should just concede to get to the next game. I learned a lot, but this is only my first game, except one against another complete newbie and we were trying to figure the rules out... \n\n26) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild G3 Sol\nBuild R1 Jesse\n\tJesse: You have played well, considering that. It does look like an appropriate place to concede, if you wish. However, I would also be happy to play to the end if you prefer. Either way, thanks for the game, and I look forward to playing another sometime.\n\n\tjeep: I'll play again, if you want. I learned quite a bit in just one game. I'm sure I'll learn more in the next. Is there a challenge feature?\n\nHomeworlds Online (SDG# 646)\nStarted: 2005.9.7, Ended: 2005.9.13\nParticipants: MatrixFrog (S), weaselsdontfly (N)\nWinner: MatrixFrog\n\n1) weaselsdontfly: Homeworld B1 G2 R1\n\tweaselsdontfly: homeworld r1\n\n2) MatrixFrog: Homeworld Y1 G3 Y3\n\n\tSYSTEM: weaselsdontfly resigns.\n\nHomeworlds Online (SDG# 636)\nStarted: 2005.9.6, Ended: 2005.10.12\nParticipants: Cerulean (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G1 Y2 Y3\n\tMatrixFrog: Okay... first step is to set up your homeworld. Generally you want two stars of unequal sizes, and usually you do a big ship, because it's hard to build big ships later in the game.\n\n2) Cerulean: Homeworld B3 G2 Y3\n\tMatrixFrog: Green and yellow are the most important colors at the beginning because they allow you to start building up a fleet of ships, and then moving those ships around the galaxy.\n\tMatrixFrog: Oh, and also, you generally don't want your homeworld to have the same sizes as mine, because that makes it easier for me to get to you.\r\nOn the other hand, it makes it easier for you to get to me as well, so there is an advantage. But in general, I'd recommend not doing a small-medium star system, so do small-large or medium-large instead.\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Cerulean: Build Y1 Cerulean\n\n5) MatrixFrog: Discover Y1 Matrixfrog B3 Ice\n\n6) Cerulean: Discover Y1 Cerulean G1 Hydrogen\n\n7) MatrixFrog: Build Y1 Matrixfrog\n\n8) Cerulean: Trade Y3 B3 Cerulean\n\n9) MatrixFrog: Trade Y1 G1 Ice\n\n10) Cerulean: Build B1 Cerulean\n\n11) MatrixFrog: Build G2 Ice\n\n12) Cerulean: Trade B3 Y3 Cerulean\n\n13) MatrixFrog: Move Y3 Matrixfrog Ice\n\n14) Cerulean: Build B1 Cerulean\n\n15) MatrixFrog: Build Y1 Ice\n\n16) Cerulean: Move B1 Cerulean Hydrogen\n\n17) MatrixFrog: Build Y2 Matrixfrog\n\n18) Cerulean: Move Y1 Hydrogen Ice\n\n19) MatrixFrog: Discover Y1 Matrixfrog R3 Helium\n\n20) Cerulean: Build Y2 Cerulean\n\n21) MatrixFrog: Discover Y3 Ice R1 Delta\n\n22) Cerulean: Build B1 Cerulean\n\n23) MatrixFrog: Move Y3 Delta Cerulean\n\n24) Cerulean: Trade B1 R1 Cerulean\n\n25) MatrixFrog: Build Y3 Cerulean\nCatastrophe Cerulean Y\n\n26) Cerulean: Build R1 Cerulean\n\n27) MatrixFrog: Move G1 Ice Matrixfrog\n\n28) Cerulean: Move Y1 Ice Hydrogen\n\n29) MatrixFrog: Build G2 Matrixfrog\n\n30) Cerulean: Build Y2 Hydrogen\n\tMatrixFrog: Even when there's only a day or less between moves, I forget what happened before, and have no idea how we got to the present configuration. I'm trying to figure out why I would use my big ship the way I did, leaving me with only 1s and 2s at home.\n\tCerulean: i have the same problem. i end up reading all the recent moves to figure out what the story so far is. this would play much better in person. *sigh* if only i could get my fiancee to try this.\n\n31) MatrixFrog: Build Y3 Matrixfrog\n\n32) Cerulean: Sacrifice Y2 Hydrogen\nMove Y1 Hydrogen Ice\nMove Y1 Ice Matrixfrog\nCatastrophe Matrixfrog Y\n\n33) MatrixFrog: Move Y1 Ice Matrixfrog\n\tCerulean: gotcha!\n\n34) Cerulean: Trade R1 Y1 Cerulean\n\tMatrixFrog: I'm usually good at avoiding things like that. *sad face*\n\n35) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild G2 Ice\nBuild G3 Ice\n\n36) Cerulean: Build Y2 Cerulean\n\n37) MatrixFrog: Move Y1 Helium Hydrogen\n\n38) Cerulean: Move Y1 Cerulean Hydrogen\n\n39) MatrixFrog: Trade G2 R2 Ice\n\n40) Cerulean: Build Y2 Cerulean\n\n41) MatrixFrog: Build G2 Matrixfrog\n\n42) Cerulean: Build R1 Cerulean\n\n43) MatrixFrog: Build R1 Ice\n\n44) Cerulean: Build R2 Cerulean\n\n45) MatrixFrog: Discover G1 Matrixfrog Y2 Lithium\n\n46) Cerulean: Build Y3 Hydrogen\n\n47) MatrixFrog: Sacrifice Y1 Hydrogen\nMove R2 Ice Matrixfrog\n\n48) Cerulean: Move R1 Cerulean Hydrogen\n\n49) MatrixFrog: Build G3 Matrixfrog\n\n50) Cerulean: Trade Y3 G3 Hydrogen\n\tMatrixFrog: I'm doing so terribly...\n\n51) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y1 Matrixfrog\nBuild G3 Lithium\nBuild R2 Ice\n\n52) Cerulean: Build Y3 Hydrogen\n\tMatrixFrog: I love sacrificing green ships.\n\n53) MatrixFrog: Trade G3 Y3 Ice\n\n54) Cerulean: Build G3 Hydrogen\n\n55) MatrixFrog: Sacrifice Y3 Ice\nMove Y1 Matrixfrog Cerulean\nMove G2 Ice Hydrogen\nMove Y1 Matrixfrog Cerulean\nCatastrophe Cerulean Y\nCatastrophe Hydrogen G\n\n56) Cerulean: Trade R2 Y2 Cerulean\n\n57) MatrixFrog: Discover G1 Lithium Y1 Magnesium\n\n58) Cerulean: Build Y1 Cerulean\n\n59) MatrixFrog: Build G1 Magnesium\n\n60) Cerulean: Trade Y2 G2 Cerulean\n\n61) MatrixFrog: Move G1 Magnesium Cerulean\n\n62) Cerulean: Move G2 Cerulean Magnesium\n\n63) MatrixFrog: Build G3 Cerulean\n\n64) Cerulean: Build G3 Magnesium\n\n65) MatrixFrog: Sacrifice R2 Ice\nAttack Y1S Cerulean\nAttack R1S Cerulean\n\n66) Cerulean: Move G3 Magnesium Lithium\n\tMatrixFrog: I don't see any way out of this. I'm thinking maybe there is one that I'm just not seeing.\n\n67) MatrixFrog: Attack B1S Cerulean\n\n\nHomeworlds Online (SDG# 616)\nStarted: 2005.9.3, Ended: 2005.9.6\nParticipants: jesse (S), MatrixFrog (N)\nWinner: jesse\n\n1) MatrixFrog: Homeworld B2 Y1 R3\n\n2) jesse: Homeworld B3 Y1 G3\n\n3) MatrixFrog: Trade R3 G3 Matrixfrog\n\tjesse: Greetings, neighbor. We see you are a warlike people. While it is fortunate (for us) that you have stripped your world of all its growth potential, we are deeply saddened to see a world so mistreated. It is only proper that we liberate it from your oppressive tyranny.\n\n4) jesse: Build G1 Jesse\n\n5) MatrixFrog: Trade G3 R3 Matrixfrog\n\n6) jesse: Trade G1 Y1 Jesse\n\n7) MatrixFrog: Trade R3 G3 Matrixfrog\n\tjesse: My people do not understand your alien motives.\n\tMatrixFrog: Yeah. I was going to discover a new system, but I need to build more first, which I didn't realize. So this sets me back a couple of turns. *Sigh*\n\n8) jesse: Build Y2 Jesse\n\tMatrixFrog: I'm kind of new to this.\n\n9) MatrixFrog: Build G1 Matrixfrog\n\n10) jesse: Discover Y2 Jesse G2 Moss\n\tjesse: Well, here's tip number one: The two most important colors to have access to in the early game are yellow and green. Green is necessary to increase your fleet. Yellow is necessary to disperse your fleet and stay safe from overpopulations. Blue is also important for the same reason, and to keep your fleet flexible. (Notice that I can't afford to build any more yellow ships until I move some out, or change their color.) Having your yellow ships (as opposed to planets) is more important than having blue ships because yellow is more useful to sacrifice. Red is only important once the two fleets are near to coming in contact with each other.\n\n11) MatrixFrog: Build G1 Matrixfrog\n\n12) jesse: Build Y2 Jesse\n\n13) MatrixFrog: Trade G3 R3 Matrixfrog\n\n14) jesse: Trade Y2 R2 Jesse\n\n15) MatrixFrog: Discover R3 Matrixfrog G3 Green\n\tjesse: Now that you are mobile, there is a rule of thumb that when your opponent picks up a gun, you must pick up a gun. Therefore, I now follow you into the red economy.\n\tjesse: On the other hand, to really put your big gun to use, you would have to violate another key principle: Never leave your homeworld undefended.\n\tjesse: It is possible at times ignore either of these principles, but you do so at your own peril.\n\n16) jesse: Build Y2 Jesse\n\n17) MatrixFrog: Build R1 Green\n\n18) jesse: Build Y2 Moss\n\n19) MatrixFrog: Build G1 Matrixfrog\n\n20) jesse: Discover Y1 Jesse B2 Smurf\n\n21) MatrixFrog: Trade G1 B1 Matrixfrog\n\n22) jesse: Sacrifice G3 Jesse\nBuild Y3 Moss\nBuild Y3 Smurf\nBuild Y3 Jesse\n\n23) MatrixFrog: Move B1 Matrixfrog Green\n\n24) jesse: Trade Y2 G2 Jesse\n\n25) MatrixFrog: Build G1 Matrixfrog\n\n26) jesse: Sacrifice Y3 Moss\nMove G2 Jesse Moss\nDiscover G2 Moss B3 Boom\nMove G2 Boom Matrixfrog\nCatastrophe Matrixfrog G\n\n\nHomeworlds Online (SDG# 608)\nStarted: 2005.9.2, Ended: 2005.9.5\nParticipants: MatrixFrog (S), Aaron (N)\nWinner: MatrixFrog\n\n1) Aaron: Homeworld Y1 B2 G3\n\tAaron: Hail, and good luck! Welcome to the family!\n\n2) MatrixFrog: Homeworld G3 Y2 R3\n\tMatrixFrog: homeworld G3 Y2 R3\n\tMatrixFrog: Oops. Now I get it. This box is for communication, the other one is for game commands.\n\n3) Aaron: Build G1 Aaron\n\n4) MatrixFrog: Build R1 Matrixfrog\n\n5) Aaron: Trade G1 R1 Aaron\n\n6) MatrixFrog: Discover R1 Matrixfrog B1 B1\n\n7) Aaron: Build R1 Aaron\n\tMatrixFrog: I'm not clever enough to think of creative names for my systems...\n\tAaron: rofl =) That's fine...much easier to type =)\n\n8) MatrixFrog: Trade R1 Y1 B1\n\n9) Aaron: Trade R1 Y1 Aaron\n\tMatrixFrog: Well my only other idea was "LittleBlueStar" so I guess you're right.\n\n10) MatrixFrog: Build R1 Matrixfrog\n\n11) Aaron: Build R1 Aaron\n\n12) MatrixFrog: Move Y1 B1 Matrixfrog\n\n13) Aaron: Trade R1 B1 Aaron\n\n14) MatrixFrog: Build Y2 Matrixfrog\n\n15) Aaron: Construct Y2 Aaron\n\n16) MatrixFrog: Discover Y2 Matrixfrog R1 Mercury\n\n17) Aaron: Discover Y2 Aaron B3 Cobalt\n\tMatrixFrog: I like how individual stars are either red, yellow, green, or blue, but in the "starry background" all the distant stars are white. Come to think of it, that's true in real life too. There are "red dwarves" and such, but most stars appear white or very close to white.\n\tAaron: =D\n\n18) MatrixFrog: Build Y3 Matrixfrog\n\n19) Aaron: Build Y3 Aaron\n\n20) MatrixFrog: Discover Y2 Mercury G3 Forest\n\n21) Aaron: Trade Y3 R3 Aaron\n\n22) MatrixFrog: Discover Y2 Forest B1 Droplet\n\n23) Aaron: Move Y2 Cobalt Droplet\n\n24) MatrixFrog: Move Y3 Matrixfrog Droplet\n\n25) Aaron: Discover R1 Aaron G3 Emerald\n\n26) MatrixFrog: Trade Y3 R3 Droplet\n\n27) Aaron: Move Y2 Droplet Emerald\n\n28) MatrixFrog: Build Y3 Matrixfrog\n\n29) Aaron: Build Y3 Emerald\n\n30) MatrixFrog: Build R1 Matrixfrog\n\n31) Aaron: Sacrifice Y2 Emerald\nMove Y3 Emerald Droplet\nMove Y3 Droplet Matrixfrog\nCatastrophe Matrixfrog Y\n\n32) MatrixFrog: Sacrifice R1 Matrixfrog\n\nPass\n\tMatrixFrog: Damn it. Good move.\n\n33) Aaron: Build Y1 Aaron\n\tMatrixFrog: As far as I can see, destroying one of my own ships was the only way to prevent you from destroying my entire home fleet.\n\tAaron: Well, It would have taken me a move or two to get a yellow ship to Emerald. You might have done better to move R3 from Droplet to Emerald and attack any yellow ships I send there.\n\tAaron: But I'm new to this game too...\n\n34) MatrixFrog: Move Y2 Droplet Matrixfrog\n\tMatrixFrog: But since you destroyed my 2-star, MatrixFrog is now a one-star system which is connected to Aaron. So you could have brought your R3 directly across.\n\n35) Aaron: Move Y1 Aaron Emerald\n\tMatrixFrog: I don't have the standard colors of pyramids. I got the IceTowers set which is a stash each of clear, cyan, purple, and opaque white. It's much easier when you don't have to reassign the colors. And you also don't have to worry about the pieces taking up space on the table. :-D\n\tAaron: Doh! I forgot about that!\n\n36) MatrixFrog: Build Y2 Matrixfrog\n\n37) Aaron: Build Y2 Emerald\n\n38) MatrixFrog: Trade R3 Y3 Droplet\n\n39) Aaron: Trade Y1 R1 Aaron\n\n40) MatrixFrog: Move Y3 Droplet Emerald\n\n41) Aaron: Sacrifice Y2 Emerald\nMove R3 Aaron Matrixfrog\nMove R1 Aaron Matrixfrog\nCatastrophe Matrixfrog R\n\n42) MatrixFrog: Discover Y3 Emerald B2 Blue\n\tMatrixFrog: That's basically exactly the same as what I was planning to do.\n\n43) Aaron: Build R1 Emerald\n\tMatrixFrog: I think my main weakness in this game is too much offense, not enough defense.\n\tAaron: I could see you coming...I had to do a pre-emptive strike.\n\n44) MatrixFrog: Trade Y3 R3 Blue\n\n45) Aaron: Trade G3 R3 Aaron\n\n46) MatrixFrog: Build Y1 Matrixfrog\n\n47) Aaron: Build Y2 Emerald\n\n48) MatrixFrog: Move Y1 Matrixfrog Aaron\n\n49) Aaron: Move R3 Aaron Matrixfrog\n\n50) MatrixFrog: Sacrifice R3 Blue\nAttack B1N Aaron\nPass\nPass\n\n\nHomeworlds Online (SDG# 609)\nStarted: 2005.9.2, Ended: 2005.9.11\nParticipants: misuba (S), Aaron (N)\nWinner: Aaron\n\n1) Aaron: Homeworld Y1 B2 G3\n\tAaron: Hail, and good luck! Welcome to the family!\n\n2) misuba: Homeworld G3 Y2 B2\n\n3) Aaron: Build G1 Aaron\n\n4) misuba: Build B1 Misuba\n\n5) Aaron: Trade G1 B1 Aaron\n\n6) misuba: Trade B2 G2 Misuba\n\n7) Aaron: Build G1 Aaron\n\n8) misuba: Build G1 Misuba\n\n9) Aaron: Discover G3 Aaron Y3 Lemons\n\n10) misuba: Discover G2 Misuba B1 Giantpanda\n\n11) Aaron: Trade B1 Y1 Aaron\n\tAaron: *shakes his head in disbelief* What the heck am I doing?\n\n\tSYSTEM: misuba resigns.\n\nHomeworlds Online (SDG# 610)\nStarted: 2005.9.3, Ended: 2005.10.5\nParticipants: Aaron (S), CDRodeffer (W), invisiblejon (N), Kermit (E)\nWinner: Aaron\n\n1) invisiblejon: Homeworld G3 Y2 R3\n\n2) Kermit: Homeworld G3 B2 Y2\n\n3) Aaron: Homeworld Y1 B2 G3\n\n4) CDRodeffer: Homeworld R1 Y3 G3\n\n5) invisiblejon: Build R1 Invisiblejon\n\n6) Kermit: Build Y1 Kermit\n\tKermit: construct y1 g3\r\n\r\nerror: \tCan't call method "name" on an undefined value at /home/html/games/lib/Homeworlds/Pos.pm line 281.\r\ncontext: \t\r\n... \t\r\n277: \t\r\n278: \t#does the System exist?\r\n279: \tmy $system = $self->getSystem($inSystem);\r\n280: \tif (! defined $system) {\r\n281: \tpush @$errors, "The ".$system->name()." system does not exist.";\r\n282: \tlast MOVE;\r\n283: \t}\r\n284: \t\r\n285: \t#does the user have access to Green?\r\n... \t\r\ncode stack: \t/home/html/games/lib/Homeworlds/Pos.pm:281\r\n/usr/local/lib/perl5/site_perl/5.8.7/Games/Sequential.pm:158\r\n/home/html/games/HTML/mhtml/play_homeworlds.mhtml:326\r\n/home/html/games/HTML/main.html:26\r\n/home/html/games/HTML/autohandler:10\r\nraw error\n\tKermit: construct Y1 G3E <======that was my corrected command but I got the same error as below.\n\n7) Aaron: Build G1 Aaron\n\tAaron: All fixed. Thanks, Kermit.\n\n8) CDRodeffer: Build G1 Cdrodeffer\n\n9) invisiblejon: Discover R3 Invisiblejon Y1 Persephone\n\n10) Kermit: Discover Y2 Kermit R1 Spork\n\n11) Aaron: Trade G1 R1 Aaron\n\n12) CDRodeffer: Discover G1 Cdrodeffer B2 Blue_ball_pennsylvania\n\n13) invisiblejon: Build R1 Invisiblejon\n\n14) Kermit: Trade Y1 B1 Kermit\n\n15) Aaron: Build R2 Aaron\n\n16) CDRodeffer: Build G1 Blue_ball_pennsylvania\n\n17) invisiblejon: Build R2 Invisiblejon\n\n18) Kermit: Build B1 Kermit\n\n19) Aaron: Trade R1 Y1 Aaron\n\tCDRodeffer: Aaron -- what win condition are we using here? Last person standing? First kill? Kill your left-hand neighbor (not counting resignations)?\n\tAaron: Currently it is still "Last Man Standing." I just haven't had time to do the "left-hand-neighbour" but I am 99% certain that is the option I will go with (as a Variant most likely).\n\n20) CDRodeffer: Trade G1 Y1 Blue_ball_pennsylvania\n\n21) invisiblejon: Move R3 Persephone Kermit\n\n22) Kermit: Trade B1 Y1 Kermit\n\n23) Aaron: Build R1 Aaron\n\n24) CDRodeffer: Build Y1 Blue_ball_pennsylvania\n\n25) invisiblejon: Attack Y1E Kermit\n\n26) Kermit: Build B1 Kermit\n\n27) Aaron: Build Y2 Aaron\n\n28) CDRodeffer: Trade Y1 B1 Blue_ball_pennsylvania\n\n29) invisiblejon: Move R3 Kermit Spork\n\n30) Kermit: Discover Y2 Spork R3 Chuckles\n\n31) Aaron: Trade Y1 B1 Aaron\n\n32) CDRodeffer: Discover G1 Blue_ball_pennsylvania B1 Dwarf\n\n33) invisiblejon: Move R1 Invisiblejon Dwarf\n\n34) Kermit: Trade B1 Y1 Kermit\n\n35) Aaron: Discover Y2 Aaron G3 Emerald\n\n36) CDRodeffer: Build G1 Cdrodeffer\n\n37) invisiblejon: Attack G1W Dwarf\n\n38) Kermit: Build Y1 Kermit\n\n39) Aaron: Move B1 Aaron Emerald\n\n40) CDRodeffer: Move B1 Blue_ball_pennsylvania Cdrodeffer\n\n41) invisiblejon: Build R2 Dwarf\n\n42) Kermit: Discover Y1 Kermit G1 Sanctuary\n\n43) Aaron: Move R2 Aaron Emerald\n\n44) CDRodeffer: Move G1 Cdrodeffer Blue_ball_pennsylvania\n\n45) invisiblejon: Trade R2 Y2 Dwarf\n\n46) Kermit: Move B1 Kermit Sanctuary\n\n47) Aaron: Move R2 Emerald Blue_ball_pennsylvania\n\n48) CDRodeffer: Sacrifice Y1 Blue_ball_pennsylvania\nMove G1 Blue_ball_pennsylvania Cdrodeffer\n\n49) invisiblejon: Move G1 Dwarf Kermit\n\tCDRodeffer: If I were as tedious as a king, I could find it in my heart to bestow it all of your worship. -- Much Ado about Nothing. ACT III Scene 5.\n\n50) Kermit: Build Y1 Kermit\n\n51) Aaron: Build Y2 Emerald\n\n52) CDRodeffer: Build B1 Cdrodeffer\n\n53) invisiblejon: Build Y3 Kermit\nCatastrophe Kermit Yellow\n\n54) Aaron: Move Y2 Emerald Blue_ball_pennsylvania\n\tAaron: rofl! oops! Clark has gone and disappeared =)\n\tAaron: Checking that now.\n\tAaron: wb, Clark =) Sorry about that. I am aware that there is still a blank space where East seat used to be. That'll take me longer to fix.\n\n55) CDRodeffer: Discover B1 Cdrodeffer G2 Soylent_people\n\tCDRodeffer: I must have missed quite a bit of drama.\n\n56) invisiblejon: Move R1 Dwarf Soylent_people\n\n57) Aaron: Sacrifice Y2 Blue_ball_pennsylvania\nMove R2 Blue_ball_pennsylvania Dwarf\nMove R2 Dwarf Kermit\n\n58) CDRodeffer: Build B2 Soylent_people\n\n59) invisiblejon: Sacrifice G1 Kermit\nBuild R2 Soylent_people\n\n60) Aaron: Build R2 Kermit\n\n61) CDRodeffer: Construct B2 Cdrodeffer\n\n62) invisiblejon: Attack B2W Soylent_people\n\tKermit: OK from now on I will read the strategy and tips for beginners BEFORE I start the game. ;) (not that it would have made much difference)\n\n63) Aaron: Trade R2 Y2 Kermit\n\n64) CDRodeffer: Trade B1 Y1 Cdrodeffer\n\n65) invisiblejon: Attack B1W Soylent_people\n\n66) Aaron: Move R2 Kermit Sanctuary\n\n67) CDRodeffer: Build Y1 Cdrodeffer\n\n68) invisiblejon: Move Y2 Dwarf Soylent_people\n\n69) Aaron: Sacrifice Y2 Kermit\nMove Y2 Emerald Soylent_people\nMove Y2 Soylent_people Cdrodeffer\nCatastrophe Cdrodeffer Yellow\n\n70) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\tAaron: Oops! Redudant elimination message =/\n\tCDRodeffer: I'm feeling rather picked on.\n\n71) invisiblejon: Move R2 Soylent_people Sanctuary\n\n72) Aaron: Attack R2N Sanctuary\n\n73) CDRodeffer: Build Y1 Cdrodeffer\n\n74) Aaron: Attack Y1E Sanctuary\n\n75) CDRodeffer: Build G1 Cdrodeffer\n\tSYSTEM: invisiblejon resigns.\n\tCDRodeffer: You know, after having been the target of so many attacks, forcing N to resign on time felt kind of -- good. :-)\n\n76) Aaron: Move R2 Sanctuary Soylent_people\n\n77) CDRodeffer: Construct B1 Cdrodeffer\n\n78) Aaron: Attack Y2N Soylent_people\n\n79) CDRodeffer: Move B2 Cdrodeffer Chuckles\n\n80) Aaron: Trade B1 Y1 Emerald\n\n81) CDRodeffer: Attack Y2E Chuckles\n\n82) Aaron: Attack B2N Soylent_people\n\n83) CDRodeffer: Sacrifice G1 Cdrodeffer\nBuild Y2 Chuckles\n\n84) Aaron: Attack B1E Sanctuary\n\tAaron: I am seeing the other problem with protracted, last-man-standing games, namely excessive resources.\n\tCDRodeffer: Yeah. That's why they eventually went with reduced stashes for fewer people. In a recent Wunderland News, Andy Looney calls what you refer to as "left man down" Homeworlds "Sinister" Homeworlds.\n\n85) CDRodeffer: Move Y1 Cdrodeffer Invisiblejon\n\tAaron: I much prefer the "Sinister" name and I'm sad I didn't think of it first =) It's a little late to change so, "left man down" is kind of stuck.\n\n86) Aaron: Attack R1N Soylent_people\n\n87) CDRodeffer: Build Y2 Cdrodeffer\n\tCDRodeffer: There's no reason you can't change the name.\n\tAaron: Actually, there is a small technical issue =) I never took into consideration the possibility of renaming variants. It's not that it's not possible, I just haven't had time to consider the ramifications and what exactly I would have to change. It is on my todo list though.\n\n88) Aaron: Move R2 Sanctuary Emerald\n\n89) CDRodeffer: Discover Y2 Cdrodeffer R2 Red_buttons\n\n90) Aaron: Build Y3 Emerald\n\n91) CDRodeffer: Build Y3 Cdrodeffer\n\n92) Aaron: Sacrifice Y3 Emerald\nMove R2 Emerald Cdrodeffer\nMove R1 Soylent_people Cdrodeffer\nMove R2 Soylent_people Cdrodeffer\nCatastrophe Cdrodeffer Red\n\n\tAaron: Well, I *think* this will end the game. If so, thank you all for the game! If not, I apologize and await my beating =)\n\nHomeworlds Online (SDG# 638)\nVariants: "Left man down"\nStarted: 2005.9.6, Ended: 2005.9.20\nParticipants: MatrixFrog (S), rbryan (N), zevzimra (E)\nWinner: rbryan\n\n1) rbryan: Homeworld B2 G1 Y3\n\n2) zevzimra: Homeworld G2 B3 Y3\n\n3) MatrixFrog: Homeworld G1 B3 Y3\n\n4) rbryan: Build Y1 Rbryan\n\tMatrixFrog: This is my first time playing a 3-player game. Good luck to you both.\n\n5) zevzimra: Build Y1 Zevzimra\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) rbryan: Trade Y1 G1 Rbryan\n\n8) zevzimra: Trade Y1 R1 Zevzimra\n\n9) MatrixFrog: Build Y1 Matrixfrog\n\n10) rbryan: Discover G1 Rbryan G3 Iceland\n\n11) zevzimra: Build Y1 Zevzimra\n\n12) MatrixFrog: Trade Y3 R3 Matrixfrog\n\tzevzimra: Hey, thanks for the encouragement, MaxtrixFrog! This is literally my first time playing this game!\n\n13) rbryan: Build G1 Iceland\n\n14) zevzimra: Discover R1 Zevzimra Y1 Gateway\n\n15) MatrixFrog: Build R1 Matrixfrog\n\n16) rbryan: Build Y2 Rbryan\n\tMatrixFrog: Question: The whole good/evil thing isn't implemented yet, right? So how do we know who we should try to eliminate?\n\tMatrixFrog: From the SDG-announce mailing list:\r\n\r\nI have just implemented a new victory condition for Homeworlds at SDG \r\ncalled "Left Man Down." The player who elminates the person to his left \r\nis the victor. "Left" is relative. In a 3-player game, or a 4-player \r\ngame where West seat has already been defeated, South's left-hand \r\nopponent would be North. I have not yet tested this code in a live \r\ngame, but my offline tests show it should work. If you have any \r\nweirdness in a live game, please let me know. If you have an existing \r\n3/4-player game running and everybody would like the victory conditions \r\nchanged, let me know and I will make that happen.\n\tMatrixFrog: So, what do you guys think? Do we want to do that?\n\trbryan: I'd say yes, because I think it should make a better game. This is also my first three player game, so I don't have a particularly strong opinion.\n\n17) zevzimra: Build Y2 Zevzimra\n\tzevzimra: Sure, that's fine, let's go for it... can someone tell Aaron please?\n\n18) MatrixFrog: Discover Y1 Matrixfrog G2 Jeetoo\n\tMatrixFrog: Same here, rbryan... I'll send him a private message.\n\n19) rbryan: Build Y2 Rbryan\n\tAaron: Done. Please let me know if something weird happens with the next elimination. It is easily undone.\n\n20) zevzimra: Trade Y2 G2 Zevzimra\n\n21) MatrixFrog: Build Y2 Matrixfrog\n\n22) rbryan: Trade Y3 G3 Rbryan\n\n23) zevzimra: Move Y1 Zevzimra Gateway\n\n24) MatrixFrog: Build Y2 Jeetoo\n\n25) rbryan: Sacrifice Y2 Rbryan\nDiscover G1 Iceland B2 Romulus\nDiscover G1 Iceland B2 Remus\n\n26) zevzimra: Sacrifice G2 Zevzimra\nBuild Y2 Zevzimra\nBuild Y3 Zevzimra\n\trbryan: Hmm, that ought to confuse them. I mean, I wouldn't mis-type the size of the piece to discover twice in a row, would I? Nope, not me. Sigh.\n\tMatrixFrog: I'm confused. What did you mean to do?\n\trbryan: Move to two smalls; hence adjacent to zevzimra, whom I'm meant to be attacking. It's OK, it just means my master plan will need rethinking...\n\n27) MatrixFrog: Build R1 Matrixfrog\n\n28) rbryan: Sacrifice G3 Rbryan\nBuild Y3 Rbryan\nBuild G2 Romulus\nBuild G2 Remus\n\n29) zevzimra: Trade Y3 G3 Zevzimra\n\n30) MatrixFrog: Sacrifice Y2 Jeetoo\nDiscover Y1 Jeetoo R3 X\nMove Y1 X Rbryan\n\n31) rbryan: Trade Y3 R3 Rbryan\n\n32) zevzimra: Move G3 Zevzimra Gateway\n\n33) MatrixFrog: Build Y2 Rbryan\n\n34) rbryan: Sacrifice R3 Rbryan\nAttack Y1S Rbryan\nAttack Y2S Rbryan\nPass\n\n35) zevzimra: Trade Y3 G3 Zevzimra\n\n36) MatrixFrog: Move R3 Matrixfrog Remus\n\n37) rbryan: Trade Y2 R2 Rbryan\n\n38) zevzimra: Move Y2 Zevzimra Gateway\n\n39) MatrixFrog: Attack G2N Remus\n\n40) rbryan: Sacrifice Y1 Rbryan\nDiscover G1 Remus Y1 Runaway\n\n41) zevzimra: Build R1 Gateway\n\n42) MatrixFrog: Build R2 Remus\n\n43) rbryan: Sacrifice G2 Romulus\nBuild Y2 Rbryan\nBuild Y3 Rbryan\n\n44) zevzimra: Sacrifice Y2 Gateway\nMove R1 Gateway Romulus\nMove G3 Gateway Romulus\n\n45) MatrixFrog: Build Y2 Matrixfrog\n\n46) rbryan: Sacrifice Y3 Rbryan\nDiscover G1 Romulus B1 Iwin\nMove G1 Runaway Zevzimra\nMove G1 Iwin Zevzimra\nCatastrophe Zevzimra Green\n\n\nHomeworlds Online (SDG# 626)\nStarted: 2005.9.5, Ended: 2005.9.13\nParticipants: MatrixFrog (S), zapple (N)\nWinner: zapple\n\n1) zapple: Homeworld B2 G1 Y3\n\n2) MatrixFrog: Homeworld R2 G1 Y3\n\n3) zapple: Build Y1 Zapple\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) zapple: Build Y1 Zapple\n\n6) MatrixFrog: Discover Y1 Matrixfrog B3 Blueberry\n\n7) zapple: Move Y1 Zapple Blueberry\n\n8) MatrixFrog: Discover Y1 Blueberry G1 Pine\n\n9) zapple: Trade Y1 B1 Zapple\n\tMatrixFrog: You can talk here too. But we have IM so it's not really necessary.\n\n10) MatrixFrog: Build Y1 Pine\n\n11) zapple: Trade Y1 R1 Blueberry\n\n12) MatrixFrog: Discover Y1 Pine B2 Newberry\n\n13) zapple: Move Y3 Zapple Blueberry\n\n14) MatrixFrog: Build Y1 Matrixfrog\n\n15) zapple: Build B1 Zapple\n\n16) MatrixFrog: Build Y2 Pine\n\n17) zapple: Move Y3 Blueberry Zapple\n\n18) MatrixFrog: Move Y2 Pine Blueberry\n\n19) zapple: Build Y2 Zapple\n\n20) MatrixFrog: Discover Y1 Pine Y2 Cheese\n\n21) zapple: Move Y3 Zapple Blueberry\n\n22) MatrixFrog: Move Y2 Blueberry Zapple\n\n23) zapple: Trade Y3 R3 Blueberry\n\tMatrixFrog: Intruder!\n\n24) MatrixFrog: Pass\n\n25) zapple: Trade R3 B3 Blueberry\n\n26) MatrixFrog: Pass\n\n27) zapple: Trade B1 R1 Zapple\n\n28) MatrixFrog: Build Y3 Matrixfrog\n\n29) zapple: Trade B3 Y3 Blueberry\n\n30) MatrixFrog: Discover Y3 Matrixfrog B3 Zxc\n\n31) zapple: Build R1 Zapple\n\n32) MatrixFrog: Trade Y1 G1 Newberry\n\n33) zapple: Move R1 Zapple Zxc\n\n34) MatrixFrog: Build Y1 Zapple\n\n35) zapple: Trade Y3 R3 Blueberry\n\n36) MatrixFrog: Trade Y2 B2 Zapple\n\n37) zapple: Sacrifice B1 Zapple\nTrade R3 Y3 Blueberry\n\n38) MatrixFrog: Discover Y3 Matrixfrog R3 Ruby\n\n39) zapple: Build Y2 Zapple\n\tzapple: attack Y1 matrixfrog\n\n40) MatrixFrog: Trade B2 R2 Zapple\n\n41) zapple: Move R1 Blueberry Matrixfrog\n\n42) MatrixFrog: Attack R1N Zapple\n\n43) zapple: Attack Y1S Matrixfrog\n\n\nHomeworlds Online (SDG# 650)\nStarted: 2005.9.9, Ended: 2005.9.16\nParticipants: pigasuspig (S), Jesse (N)\nWinner: Jesse\n\n1) jesse: Homeworld Y3 G2 B3\n\n2) pigasuspig: Homeworld G1 B3 R3\n\tjesse: Hello. Have you played before?\n\tpigasuspig: homeworld G1 B3 R3\n\n3) Jesse: Build B1 Jesse\n\tpigasuspig: I've played homeworlds, but not online. I'm so sorry about the delay--it should not happen again.\n\tJesse: I'm glad you could finally join me.\n\n4) pigasuspig: Build R1 Pigasuspig\n\n5) Jesse: Build B1 Jesse\n\n6) pigasuspig: Trade R1 Y1 Pigasuspig\n\n7) Jesse: Discover B1 Jesse B1 Zoid\n\n8) pigasuspig: Build R1 Pigasuspig\n\n9) Jesse: Build B2 Jesse\n\n10) pigasuspig: Discover R1 Pigasuspig Y2 Oliver\n\n11) Jesse: Trade B2 R2 Jesse\n\n12) pigasuspig: Build Y1 Pigasuspig\n\n13) Jesse: Build B2 Jesse\n\n14) pigasuspig: Build Y1 Pigasuspig\n\n15) Jesse: Trade B2 Y2 Jesse\n\n16) pigasuspig: Build Y2 Pigasuspig\n\n17) Jesse: Build Y3 Jesse\n\tJesse: Be careful about this. Even if you don't trigger the catastrophe in your home system, I can do so at the end of my turn. In fact, here I can take one of the large yellows first, then take away all of yours.\n\tJesse: I feel bad doing both here, so I'll just take the large and give you a chance to save your fleet of yellows.\n\n18) pigasuspig: Trade Y2 B2 Pigasuspig\n\n19) Jesse: Move Y3 Jesse Zoid\n\tpigasuspig: Thanks--for some reason, I thought catastrophes happened at 5 ships.\n\n20) pigasuspig: Move Y1 Pigasuspig Oliver\n\n21) Jesse: Trade B1 G1 Zoid\n\n22) pigasuspig: Discover Y1 Oliver G1 Ficus\n\n23) Jesse: Build G2 Zoid\n\n24) pigasuspig: Build Y2 Ficus\n\n25) Jesse: Build Y3 Zoid\n\n26) pigasuspig: Move R1 Oliver Zoid\n\n27) Jesse: Build R1 Jesse\n\n28) pigasuspig: Build Y2 Pigasuspig\n\n29) Jesse: Sacrifice R1 Jesse\nAttack R1S Zoid\n\n30) pigasuspig: Sacrifice Y2 Pigasuspig\nMove Y2 Ficus Jesse\nMove Y1 Ficus Jesse\nCatastrophe Jesse Y\n\n31) Jesse: Sacrifice Y3 Zoid\nMove Y3 Zoid Jesse\nMove Y3 Jesse Pigasuspig\nMove B3 Jesse Pigasuspig\n\n32) pigasuspig: Move R3 Pigasuspig Jesse\n\tJesse: Quite a violent game we've got here, all of a sudden.\n\n33) Jesse: Sacrifice G2 Zoid\nBuild R1 Jesse\nBuild R1 Jesse\nCatastrophe Jesse R\n\tpigasuspig: Indeed.\n\n34) pigasuspig: Move B2 Pigasuspig Jesse\n\tJesse: Yup.\n\n35) Jesse: Move Y3 Pigasuspig Jesse\n\tpigasuspig: I have this vision that whoever wins will be clinging to a single ship on a single homeworld with NOTHING else in play....\n\n36) pigasuspig: Trade B2 G2 Jesse\n\n37) Jesse: Trade Y3 R3 Jesse\n\tJesse: It does sort of feel that way, doesn't it?\n\n38) pigasuspig: Build G1 Jesse\n\tJesse: Now this is what I call a close race!\n\n39) Jesse: Sacrifice R3 Jesse\nAttack Y1S Pigasuspig\nAttack Y1S Pigasuspig\nAttack G1S Jesse\n\tJesse: It looks like we both destroy each other's civilization. I just get there moments ahead of you. An exciting ending! Things would have gone very differently if you hadn't let me get those two large yellows earlier.\n\tpigasuspig: Good game! I didn't see it until it was too late.\n\n\nHomeworlds Online (SDG# 668)\nStarted: 2005.9.9, Ended: 2005.9.23\nParticipants: rootbeer (S), eugman (N)\nWinner: rootbeer\n\n1) eugman: Homeworld G1 B2 G3\n\n2) rootbeer: Homeworld Y3 B1 G3\n\teugman: Any idea how you name a system? \n\n3) eugman: Build G1 Eugman\n\trootbeer: I think you name it when you discover it, something like "discover G3 northhomeworld Y3 solsystem", except that northhomeworld is supposed to be the name of your homeworld. Does that seem right to you?\n\trootbeer: Maybe the name of your homeworld is your username?\n\n4) rootbeer: Build G1 Rootbeer\n\teugman: Eugman is a horrible name for a homeworld. Oh well.\n\n5) eugman: Trade G1 Y1 Eugman\n\n6) rootbeer: Discover G1 Rootbeer Y2 Lisasimpson\n\n7) eugman: Construct G1 Eugman\n\n8) rootbeer: Build G2 Lisasimpson\n\n\tSYSTEM: eugman resigns.\n\nHomeworlds Online (SDG# 671)\nStarted: 2005.9.11, Ended: 2005.9.12\nParticipants: Tuxhedoh (S), rbryan (N)\nWinner: rbryan\n\n1) rbryan: Homeworld Y3 B2 G3\n\tTuxhedoh: Im a homeworlds newbiee. this will be my first game. ive read the rules and the hints on the wiki.\n\n2) Tuxhedoh: Homeworld B3 G2 Y3\n\trbryan: I'm fairly a newbie myself; I've finished one game in which I got crushed...\n\n3) rbryan: Build G1 Rbryan\n\trbryan: construct g1 rbryan\n\n4) Tuxhedoh: Build Y1 Tuxhedoh\n\n5) rbryan: Build G1 Rbryan\n\n6) Tuxhedoh: Build Y1 Tuxhedoh\n\n7) rbryan: Discover G1 Rbryan B1 Bluonia\n\n8) Tuxhedoh: Trade Y1 R1 Tuxhedoh\n\tTuxhedoh: I haven't any idea what to do next. Not so easy trying to learn play-by-web style\r\n\n\n9) rbryan: Build G1 Bluonia\n\trbryan: construct g1 bluonia\n\n10) Tuxhedoh: Trade Y3 G3 Tuxhedoh\n\trbryan: Well, at least you're not mixing up comments and orders entry places...\r\n\n\n11) rbryan: Trade G1 Y1 Bluonia\n\n12) Tuxhedoh: Move R1 Tuxhedoh Bluonia\n\n13) rbryan: Move G1 Bluonia Tuxhedoh\n\n14) Tuxhedoh: Attack Y1N Bluonia\n\n15) rbryan: Build G1 Tuxhedoh\nCatastrophe Tuxhedoh G\n\n16) Tuxhedoh: Move Y1 Bluonia Tuxhedoh\n\n17) rbryan: Build G1 Rbryan\n\n18) Tuxhedoh: Trade Y1 G1 Tuxhedoh\n\n19) rbryan: Trade G1 R1 Rbryan\n\n20) Tuxhedoh: Build Y1 Tuxhedoh\n\n21) rbryan: Discover G3 Rbryan Y1 Doom\n\n22) Tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n23) rbryan: Move G3 Doom Tuxhedoh\n\tTuxhedoh: Not sure that there's anythign I can do to win at this point\n\n24) Tuxhedoh: Trade R1 G1 Tuxhedoh\n\trbryan: Yeah, I think I've got you. I'd be happy to play again if you're up for a rematch...\n\n25) rbryan: Trade G3 R3 Tuxhedoh\n\trbryan: trade g3 r3 tuxhedo\n\n\tSYSTEM: Tuxhedoh resigns.\n\nHomeworlds Online (SDG# 677)\nStarted: 2005.9.12, Ended: 2005.9.14\nParticipants: Jesse (S), MatrixFrog (N)\nWinner: Jesse\n\n1) MatrixFrog: Homeworld B3 G2 Y3\n\n2) Jesse: Homeworld G2 B1 Y3\n\tMatrixFrog: Hello.\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\tJesse: Hello.\n\n4) Jesse: Build Y1 Jesse\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) Jesse: Discover Y1 Jesse G3 Bluey\n\n7) MatrixFrog: Discover Y1 Matrixfrog G1 Tritium\n\n8) Jesse: Build Y2 Jesse\n\n9) MatrixFrog: Build Y2 Tritium\n\n10) Jesse: Build Y2 Bluey\n\n11) MatrixFrog: Discover Y2 Tritium B3 Lithium\n\n12) Jesse: Trade Y2 R2 Jesse\n\n13) MatrixFrog: Trade Y3 R3 Matrixfrog\n\tJesse: I have to keep an eye on you, don't I?\n\tMatrixFrog: Um, I suppose so? I'm still somewhat new to this, although I think I've gotten better since I joined SDG. But... sure you do?\n\n14) Jesse: Discover Y1 Bluey B1 Redgiant\n\n15) MatrixFrog: Build R1 Matrixfrog\n\tMatrixFrog: You're either colorblind or obnoxious.\n\n16) Jesse: Build R1 Jesse\n\tJesse: Is that obnoxious? Sorry. I just found it amusingly perverse.\n\tJesse: Oh, about keeping an eye out: You twice made moves that threatened an immediate victory, and I almost overlooked them.\n\n17) MatrixFrog: Build Y2 Matrixfrog\n\tMatrixFrog: Oh, no I found it amusing too. Obnoxious, but also amusing.\n\n18) Jesse: Build Y3 Bluey\n\n19) MatrixFrog: Move R3 Matrixfrog Tritium\n\n20) Jesse: Build Y3 Jesse\n\tJesse: I think you should have taken that large yellow, rather than letting me get it.\n\n21) MatrixFrog: Move R3 Tritium Lithium\n\n22) Jesse: Move Y3 Bluey Redgiant\n\tMatrixFrog: You're probably right.\n\tMatrixFrog: ... tritium, lithium, tritium, lithium, tritium, lithium...\n\n23) MatrixFrog: Trade Y2 G2 Matrixfrog\n\n24) Jesse: Move R1 Jesse Bluey\n\n25) MatrixFrog: Move Y1 Tritium Lithium\n\n26) Jesse: Trade Y3 R3 Jesse\n\tMatrixFrog: The hyperspatial flux sounds like a cool place. Bunch of uninhabited stars floating around in some kind of multi-colored intergalactic vortex.\n\n27) MatrixFrog: Build Y2 Matrixfrog\n\tJesse: Too bad you're always leaving it behind, and everywhere you arrive, it isn't there anymore.\n\n28) Jesse: Trade Y3 G3 Redgiant\n\n29) MatrixFrog: Trade Y2 R2 Lithium\n\n30) Jesse: Sacrifice G3 Redgiant\nBuild Y2 Jesse\nBuild Y3 Bluey\nBuild Y3 Redgiant\n\n31) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove R3 Lithium Jesse\nMove R2 Lithium Jesse\nCatastrophe Jesse R\n\n32) Jesse: Trade Y2 R2 Jesse\n\n33) MatrixFrog: Build R1 Matrixfrog\n\tJesse: Very aggressive. It set me back a little, but it cost you more than it did me.\n\n34) Jesse: Build R2 Jesse\n\n35) MatrixFrog: Build G1 Matrixfrog\n\tMatrixFrog: I suppose so, yes.\n\n36) Jesse: Move Y3 Redgiant Matrixfrog\n\n37) MatrixFrog: Move G1 Matrixfrog Redgiant\n\tJesse: Safety first. Wait to attack until you can do so safely. I've been waiting for this since you moved your large ship out.\n\n38) Jesse: Sacrifice R2 Jesse\nAttack R1N Matrixfrog\nAttack R1N Matrixfrog\n\n39) MatrixFrog: Trade G2 R2 Matrixfrog\n\tMatrixFrog: I realize that what I'm about to do kind of sucks, but I can't see anything better at the current moment.\n\tMatrixFrog: Wait. Nevermind. Hold on.\n\tMatrixFrog: Okay, I think I got it.\n\tMatrixFrog: No I don't. I suppose you've won.\n\n40) Jesse: Sacrifice R2 Jesse\nAttack R2N Matrixfrog\nAttack Y1N Matrixfrog\n\tJesse: Right, you're pretty well defenseless at this point. This kind of move is why I built an extra r2 before launching the attack.\n\tJesse: Imagine how much more preparation I would have needed if you still had a large ship at home.\n\tJesse: Thanks for the game!\n\n\nHomeworlds Online (SDG# 681)\nStarted: 2005.9.12, Ended: 2005.9.13\nParticipants: Tuxhedoh (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B3 Y1 G3\n\n2) Tuxhedoh: Homeworld R1 Y3 G3\n\tTwoShort: Hello\n\n3) TwoShort: Build G1 Twoshort\n\tTuxhedoh: Stink\r\nI messed up. oh well. we can play it out.\n\n4) Tuxhedoh: Build G1 Tuxhedoh\n\tTwoShort: Having no starting blue will certainly be a challenge. If you'd rather quit and start over, that's fine too.\n\n5) TwoShort: Build G1 Twoshort\n\n6) Tuxhedoh: Build G2 Tuxhedoh\n\n7) TwoShort: Discover G1 Twoshort B2 Bob\n\n8) Tuxhedoh: Move G1 Tuxhedoh Bob\n\n9) TwoShort: Trade G1 R1 Bob\n\n10) Tuxhedoh: Trade G1 B1 Bob\n\n11) TwoShort: Attack B1S Bob\n\n12) Tuxhedoh: Build G1 Tuxhedoh\n\n13) TwoShort: Build G1 Twoshort\n\n14) Tuxhedoh: Move G2 Tuxhedoh Bob\n\n15) TwoShort: Move G1 Twoshort Bob\n\n16) Tuxhedoh: Discover G1 Tuxhedoh Y2 Tux2\n\n17) TwoShort: Discover G1 Twoshort B2 Joe\n\n18) Tuxhedoh: Trade G2 R2 Bob\n\n19) TwoShort: Build B1 Bob\n\n20) Tuxhedoh: Attack G1N Bob\n\n21) TwoShort: Trade R1 B1 Bob\nCatastrophe Bob Blue\n\n22) Tuxhedoh: Build G1 Tuxhedoh\n\n23) TwoShort: Build G2 Twoshort\n\tTwoShort: create g2 twoshort\r\n\n\n24) Tuxhedoh: Build G2 Tuxhedoh\n\n25) TwoShort: Trade G3 Y3 Twoshort\n\n26) Tuxhedoh: Move G2 Tuxhedoh Joe\n\n27) TwoShort: Build G2 Twoshort\n\n28) Tuxhedoh: Build G3 Tuxhedoh\n\n29) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Joe Tuxhedoh\nPass\nPass\nCatastrophe Tuxhedoh Green\n\n\nHomeworlds Online (SDG# 684)\nVariants: "Left man down"\nStarted: 2005.9.13, Ended: 2005.9.26\nParticipants: Aaron (S), istari (W), zevzimra (N), rootbeer (E)\nWinner: zevzimra\n\n1) zevzimra: Homeworld G2 B3 Y3\n\trootbeer: To be sure I understand: If Aaron (S) is eliminated, I win. If I am eliminated, zevzimra (N) wins. Right?\n\tAaron: nay, only if *you* eliminate me do you win. If Istari eliminates me first, then your left-hand opponent becomes Istari and you have to eliminate him to win.\r\n\n\n2) rootbeer: Homeworld B1 Y3 G3\n\n3) Aaron: Homeworld R1 Y2 G3\n\n4) istari: Homeworld B3 R3 Y3\n\n5) zevzimra: Build Y1 Zevzimra\n\n6) rootbeer: Build G1 Rootbeer\n\n7) Aaron: Build G1 Aaron\n\n8) istari: Trade Y3 G3 Istari\n\n9) zevzimra: Trade Y1 G1 Zevzimra\n\n10) rootbeer: Discover G1 Rootbeer Y2 Switzerland\n\n11) Aaron: Discover G1 Aaron B3 Waves\n\n12) istari: Build G1 Istari\n\n13) zevzimra: Build G1 Zevzimra\n\n14) rootbeer: Build G2 Switzerland\n\n15) Aaron: Build G2 Aaron\n\n16) istari: Pass\n\n17) zevzimra: Build G2 Zevzimra\n\n18) rootbeer: Build G2 Rootbeer\n\n19) Aaron: Build G3 Waves\n\n20) istari: Build G3 Istari\n\n21) zevzimra: Trade G2 R2 Zevzimra\n\n22) rootbeer: Move G1 Switzerland Istari\nCatastrophe Istari Green\n\n23) Aaron: Trade G3 Y3 Waves\n\n24) zevzimra: Discover G1 Zevzimra Y1 Alpha\n\n25) rootbeer: Build G1 Switzerland\n\n26) Aaron: Move G2 Aaron Waves\n\n27) zevzimra: Move G1 Zevzimra Alpha\n\n28) rootbeer: Discover G2 Switzerland B3 Bowtie\n\n29) Aaron: Move G1 Waves Switzerland\n\n30) zevzimra: Discover G1 Alpha Y2 Beta\n\n31) rootbeer: Construct G1 Bowtie\n\n32) Aaron: Sacrifice Y3 Waves\nMove G2 Waves Switzerland\nMove G2 Switzerland Rootbeer\nMove G1 Switzerland Rootbeer\nCatastrophe Rootbeer Green\n\n33) zevzimra: Build G1 Alpha\n\tAaron: Sorry rootbeer, but if I didn't do it, Zev would have and I can't let that happen.\n\n34) Aaron: Build G2 Aaron\n\n35) zevzimra: Move R2 Zevzimra Alpha\n\tSYSTEM: rootbeer resigns.\n\n36) Aaron: Move G3 Aaron Bowtie\n\tAaron: ahh, I see my problem now /\n\n37) zevzimra: Move G1 Alpha Bowtie\nCatastrophe Bowtie G\n\n\tSYSTEM: Aaron resigns.\n\tAaron: I sincerely apologize. Something's wrong with the code. Checking now and closing the game.\n\nHomeworlds Online (SDG# 688)\nStarted: 2005.9.13, Ended: 2005.10.9\nParticipants: zapple (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld Y1 G3 B3\n\n2) zapple: Homeworld Y1 G2 B3\n\n3) MatrixFrog: Build B1 Matrixfrog\n\n4) zapple: Build B1 Zapple\n\n5) MatrixFrog: Trade B1 Y1 Matrixfrog\n\n6) zapple: Discover B1 Zapple Y3 Asdf\n\tMatrixFrog: Game #2...\n\tzapple: discover b1 zapple y3 asdf\n\n7) MatrixFrog: Build Y2 Matrixfrog\n\n8) zapple: Trade B1 G1 Asdf\n\n9) MatrixFrog: Build B1 Matrixfrog\n\n10) zapple: Build B1 Zapple\n\n11) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n12) zapple: Trade B1 R1 Zapple\n\n13) MatrixFrog: Build B1 Matrixfrog\n\n14) zapple: Build B1 Zapple\n\n15) MatrixFrog: Trade B1 R1 Matrixfrog\n\n16) zapple: Move B1 Zapple Asdf\n\n17) MatrixFrog: Build R1 Matrixfrog\n\n18) zapple: Build B1 Asdf\n\n19) MatrixFrog: Build Y1 Matrixfrog\n\n20) zapple: Build R2 Zapple\n\n21) MatrixFrog: Discover Y2 Matrixfrog G2 Crunch\n\n\tSYSTEM: zapple resigns.\n\nHomeworlds Online (SDG# 689)\nStarted: 2005.9.13, Ended: 2005.9.14\nParticipants: TwoShort (S), fluxinator (N)\nWinner: TwoShort\n\n1) fluxinator: Homeworld G2 G3 G3\n\n2) TwoShort: Homeworld B3 Y2 G3\n\n\tTwoShort: Is this a joke of some sort?\n\tfluxinator: umm why did I make a bad move?\r\n\n\tSYSTEM: fluxinator resigns.\n\nHomeworlds Online (SDG# 691)\nStarted: 2005.9.14, Ended: 2005.9.20\nParticipants: Jesse (S), TwoShort (N)\nWinner: Jesse\n\n1) TwoShort: Homeworld B2 Y1 G3\n\tJesse: In the beginning, the heavens were without substance or form, except for having maybe a few stars in the background for interest, and being neatly divided into parcels ten trillion cubits to a side.\n\tJesse: Other than that, you know, nothing.\n\tTwoShort: homeworld b2 y1 g3\n\n2) Jesse: Homeworld Y2 B3 G3\n\tTwoShort: then suddenly... stuff!\n\n3) TwoShort: Build G1 Twoshort\n\n4) Jesse: Build G1 Jesse\n\tJesse: Yes, two great civilizations arose. Was it a quantum fluctuation? One civilization and its anticivilization? Whyfor is the symmetry breaking between them? We know not, but that it is believed by many to be the miracle of homeworldogensis.\n\n5) TwoShort: Build G1 Twoshort\n\tJesse: By the way, played much?\n\n6) Jesse: Discover G1 Jesse Y1 Horch\n\tTwoShort: Only a few times...\n\n7) TwoShort: Discover G1 Twoshort B3 Foosia\n\tJesse: Did you read the strategy tips I put on the wiki?\n\n8) Jesse: Build G2 Jesse\n\n9) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Foosia\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n10) Jesse: Build G3 Jesse\n\tTwoShort: I've read and thought about Homeworlds quite a bit. Many years ago I lived in DC and hung out with the Wunderland crowd. I still follow Andys website, and I was intrigud when he raved about binary homeworlds. I'm a big fan of pure strategy games, but the rest of my current gaming crew are not, so I haven't gotten to actually play much before. So you should probably expect some mix of smart moves and really stupid mistakes... \n\n11) TwoShort: Trade G2 Y2 Foosia\n\n12) Jesse: Trade G3 R3 Jesse\n\tJesse: Excellent. You're doing great so far. I look forward to the rest of the game.\n\n13) TwoShort: Trade G2 R2 Twoshort\n\n14) Jesse: Trade G2 Y2 Jesse\n\n15) TwoShort: Discover G1 Foosia Y1 Yellonia\n\n16) Jesse: Discover Y2 Jesse B1 Zuban\n\n17) TwoShort: Build G2 Yellonia\n\n18) Jesse: Build R1 Jesse\n\n19) TwoShort: Sacrifice G2 Yellonia\nBuild Y3 Foosia\nBuild G2 Yellonia\n\n20) Jesse: Sacrifice G3 Jesse\nBuild G2 Horch\nBuild G2 Horch\nBuild Y3 Zuban\n\n21) TwoShort: Sacrifice Y3 Foosia\nMove G1 Yellonia Foosia\nMove G1 Foosia Horch\nDiscover Y2 Foosia B1 Bluto\nCatastrophe Horch Green\n\n22) Jesse: Discover Y2 Zuban G3 Triffid\n\n23) TwoShort: Build R1 Twoshort\n\n24) Jesse: Trade R1 G1 Jesse\n\n25) TwoShort: Build G1 Yellonia\n\n26) Jesse: Build R1 Jesse\n\n27) TwoShort: Trade Y2 B2 Bluto\n\n28) Jesse: Build G2 Jesse\n\n29) TwoShort: Sacrifice G2 Yellonia\nBuild G2 Yellonia\nBuild B1 Bluto\n\tJesse: Very interesting.\n\n30) Jesse: Move G2 Jesse Zuban\n\tTwoShort: That's one way of puttting it...\r\nI was going to go with "My brain hurts"\n\tJesse: Mine too. You can really keep the pressure up.\n\n31) TwoShort: Discover G1 Yellonia Y3 Oldyeller\n\n32) Jesse: Trade R3 G3 Jesse\n\n33) TwoShort: Build G2 Yellonia\n\n34) Jesse: Sacrifice G3 Jesse\nBuild R1 Jesse\nBuild R2 Jesse\nBuild G3 Zuban\n\n35) TwoShort: Trade G3 Y3 Twoshort\n\n36) Jesse: Build G3 Jesse\n\n37) TwoShort: Trade B2 R2 Bluto\n\tJesse: Well, we'll see if this turns out to be foolish...\n\n38) Jesse: Trade R1 Y1 Jesse\n\n39) TwoShort: Move G2 Yellonia Jesse\n\tTwoShort: As long as we're seeing what turns out to be foolish...\n\n40) Jesse: Attack G2N Jesse\n\tJesse: Yes, that's definitely a stong attack option. There's not much I can do except capture your piece and let you destroy my large defender, without losing a large of your own.\n\n41) TwoShort: Sacrifice G1 Oldyeller\nBuild B2 Bluto\n\tJesse: However, I think if you do that, I can leave you crippled.\n\tTwoShort: I think I'm doomed unless I can press the attack home in short order. Which I don't think I can do. But let's try this...\n\n42) Jesse: Sacrifice G2 Jesse\nBuild Y2 Zuban\nBuild Y3 Triffid\n\n43) TwoShort: Sacrifice G2 Yellonia\nBuild R1 Twoshort\nBuild R3 Bluto\n\tJesse: It would probably have been better to trade r2->y2 at bluto first, so you could have built the y3 yourself when you did that sacrifice action.\n\tJesse: Hmm, then again...\n\tJesse: I think I can weather that storm. Hmm...\n\n44) Jesse: Sacrifice Y2 Zuban\nMove Y2 Triffid Twoshort\nMove Y3 Triffid Twoshort\nCatastrophe Twoshort Y\n\tJesse: Ooh, the storm is more severe than I thought. :D\n\tJesse: Ah, but it's stalled harmlessly out at sea.\n\n45) TwoShort: Trade R2 Y2 Twoshort\n\tTwoShort: Fortune strums a weary tune for he whose campaign peaks too soon.\n\n46) Jesse: Move G3 Zuban Twoshort\n\tTwoShort: I suppose I could resign at this point; it's only a question of how long I can delay the inevitable\n\n47) TwoShort: Sacrifice Y2 Twoshort\nMove R3 Bluto Jesse\nMove R2 Bluto Jesse\nCatastrophe Jesse Red\n\tJesse: Not very long, I think, but I've been surprized before.\n\tJesse: As for campaigns peaking, I've definitely found that attacking before you're sure you can drive the victory home often ends in defeat.\n\tTwoShort: When in doubt, my instincts are certainly skewed toward offense; which as I suspected, did not serve me well, since you were able to keep diffusing my threats while getting stronger, until I was finally left thrashing in futility. Speaking of which, I can stop you from using red like this...\n\n48) Jesse: Trade G3 B3 Twoshort\n\tTwoShort: But I still see how you can win unstopably on the turn after this one.\n\n49) TwoShort: Sacrifice B2 Bluto\nTrade R1 G1 Twoshort\nTrade R1 Y1 Twoshort\n\tJesse: Actually, there is a way for you to delay it one more move. It is rather pointless, but see if you can find it anyway. :)\n\tJesse: Great game by the way. Thanks!\n\n50) Jesse: Sacrifice G2 Zuban\nBuild B2 Twoshort\nBuild B2 Twoshort\nCatastrophe Twoshort B\n\tTwoShort: But TwoShort is a peaceful planet! We have no weapons...\n\tTwoShort: oops, didn't see your chalenge of finding the way to delay before I went for the dumb Star Wars joke... let's see\n\tTwoShort: Ahh, I could have sacrificed my small green to grow blue at bluto, but not called catastrophe. Oh well, at least I got in a dumb Star Wars joke.\r\n\n\tTwoShort: And yes, great game! \n\tJesse: Right! Of course, then I trade my y3 for r3, call the ctastrophe myself, and either blow you up or take your ships on the next turn.\n\tJesse: I don't usually blow up my opponents' homeworlds, but...\n\n\nHomeworlds Online (SDG# 703)\nStarted: 2005.9.14, Ended: 2005.9.27\nParticipants: pigasuspig (S), zevzimra (N)\nWinner: pigasuspig\n\n1) zevzimra: Homeworld B1 G2 Y3\n\n2) pigasuspig: Homeworld B1 G3 R3\n\n3) zevzimra: Build Y1 Zevzimra\n\n4) pigasuspig: Build R1 Pigasuspig\n\n5) zevzimra: Discover Y1 Zevzimra G3 Bob\n\n6) pigasuspig: Build R1 Pigasuspig\n\n7) zevzimra: Build Y1 Bob\n\n8) pigasuspig: Trade R1 Y1 Pigasuspig\n\n9) zevzimra: Build Y2 Bob\n\n10) pigasuspig: Build Y2 Pigasuspig\n\n11) zevzimra: Build Y2 Zevzimra\n\n12) pigasuspig: Build Y3 Pigasuspig\n\n13) zevzimra: Build Y3 Zevzimra\n\n14) pigasuspig: Discover R1 Pigasuspig B2 Russia\n\n15) zevzimra: Trade Y3 R3 Zevzimra\n\n16) pigasuspig: Move Y3 Pigasuspig Russia\n\n17) zevzimra: Move R3 Zevzimra Bob\n\n18) pigasuspig: Sacrifice Y2 Pigasuspig\nMove R1 Russia Bob\nDiscover Y3 Russia R3 Steve\n\n19) zevzimra: Attack R1S Bob\n\n20) pigasuspig: Build Y2 Pigasuspig\n\n21) zevzimra: Move R1 Bob Zevzimra\n\n22) pigasuspig: Discover Y1 Pigasuspig G2 Fern\n\n23) zevzimra: Move R3 Bob Fern\n\n24) pigasuspig: Move Y1 Fern Bob\nCatastrophe Bob Y\n\n25) zevzimra: Build R1 Fern\n\tzevzimra: OUCH! Nice move!\n\n26) pigasuspig: Build Y1 Pigasuspig\n\n27) zevzimra: Build R1 Zevzimra\n\n28) pigasuspig: Build Y1 Pigasuspig\n\n29) zevzimra: Discover Y2 Zevzimra B3 Notbob\n\n30) pigasuspig: Trade Y1 G1 Pigasuspig\n\n31) zevzimra: Build R2 Zevzimra\n\n32) pigasuspig: Trade Y1 B1 Pigasuspig\n\n33) zevzimra: Trade R2 B2 Zevzimra\n\n34) pigasuspig: Build G1 Pigasuspig\n\n35) zevzimra: Move R1 Zevzimra Notbob\n\n36) pigasuspig: Discover G1 Pigasuspig B2 Siam\n\n37) zevzimra: Move Y2 Notbob Fern\n\n38) pigasuspig: Move Y3 Steve Siam\n\n39) zevzimra: Build R2 Fern\n\n40) pigasuspig: Move R3 Pigasuspig Fern\nCatastrophe Fern R\n\n41) zevzimra: Build Y1 Fern\n\n42) pigasuspig: Build Y1 Siam\n\n43) zevzimra: Trade R1 G1 Zevzimra\n\n44) pigasuspig: Build G2 Siam\n\n45) zevzimra: Move G1 Zevzimra Notbob\n\n46) pigasuspig: Discover G2 Siam B3 Monster\n\n47) zevzimra: Construct G3 Notbob\n\n48) pigasuspig: Build G3 Monster\n\n49) zevzimra: Trade G3 R3 Notbob\n\n50) pigasuspig: Trade G1 R1 Pigasuspig\n\n51) zevzimra: Sacrifice Y2 Fern\nMove R3 Notbob Fern\nMove R3 Fern Pigasuspig\n\n52) pigasuspig: Sacrifice G2 Monster\nBuild R1 Pigasuspig\nBuild R2 Pigasuspig\nCatastrophe Pigasuspig R\n\n53) zevzimra: Move Y1 Fern Notbob\n\n54) pigasuspig: Move Y3 Siam Notbob\n\n55) zevzimra: Trade Y3 R3 Zevzimra\n\n56) pigasuspig: Trade Y3 R3 Notbob\n\n57) zevzimra: Construct B2 Zevzimra\n\n58) pigasuspig: Build B3 Pigasuspig\n\n59) zevzimra: Trade R3 Y3 Zevzimra\n\n60) pigasuspig: Trade B3 R3 Pigasuspig\n\n61) zevzimra: Discover B2 Zevzimra G3 Notbobatall\n\n62) pigasuspig: Sacrifice Y2 Pigasuspig\nMove R3 Notbob Zevzimra\nMove G3 Monster Zevzimra\n\n\tSYSTEM: zevzimra resigns.\n\nHomeworlds Online (SDG# 709)\nStarted: 2005.9.14, Ended: 2005.9.15\nParticipants: Samaculus (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld B3 G1 Y3\n\n2) Samaculus: Homeworld G3 Y2 R3\n\tMatrixFrog: Welcome!\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Samaculus: Build R1 Samaculus\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) Samaculus: Discover R3 Samaculus Y1 Cheddar\n\n7) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n8) Samaculus: Build R1 Samaculus\n\n9) MatrixFrog: Build R2 Matrixfrog\n\n10) Samaculus: Discover R1 Samaculus B1 Wave\n\n11) MatrixFrog: Build R2 Matrixfrog\n\n12) Samaculus: Trade R1 G1 Wave\n\n13) MatrixFrog: Discover R2 Matrixfrog B2 Aqua\n\n14) Samaculus: Build R1 Samaculus\n\n15) MatrixFrog: Sacrifice Y1 Matrixfrog\nMove R2 Aqua Wave\n\n16) Samaculus: Discover R3 Cheddar B2 Deep\n\n17) MatrixFrog: Attack G1S Wave\n\n18) Samaculus: Trade R3 G3 Deep\n\n19) MatrixFrog: Build R2 Wave\n\n20) Samaculus: Move R1 Samaculus Wave\n\n21) MatrixFrog: Attack R1S Wave\n\n22) Samaculus: Build R3 Samaculus\n\n23) MatrixFrog: Move R1 Matrixfrog Deep\n\n24) Samaculus: Build R3 Samaculus\n\n25) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove R2 Wave Samaculus\nMove R2 Wave Samaculus\nMove R1 Wave Samaculus\nCatastrophe Samaculus R\n\n\nHomeworlds Online (SDG# 710)\nStarted: 2005.9.15, Ended: 2005.9.22\nParticipants: MatrixFrog (S), Samaculus (N)\nWinner: Samaculus\n\n1) Samaculus: Homeworld B3 Y2 G3\n\n2) MatrixFrog: Homeworld G1 R2 Y3\n\n3) Samaculus: Build G1 Samaculus\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Samaculus: Build G1 Samaculus\n\tSamaculus: why isn't your homeworld blue? Are you going easy? I guess I deserve it for being such a spaz...\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) Samaculus: Discover G1 Samaculus B1 Ultramar\n\n8) MatrixFrog: Discover Y1 Matrixfrog B3 X\n\tMatrixFrog: I don't know... I like having a red star in my homeworld. It's not necessarily the smartest strategy, but it's fun that way.\n\n9) Samaculus: Build G2 Ultramar\n\n10) MatrixFrog: Build Y1 Matrixfrog\n\tSamaculus: Who are you? Daffy Duck? Duck Doggers? Who names their planet "X"? Piffle!\n\tMatrixFrog: I'm trying to have a theme. In a game I played recently, all my planets were greek letters: alpha, beta, gamma...\r\n\r\nThis time I'm going with "rarely used letters" I suppose\n\n11) Samaculus: Build G2 Ultramar\n\n12) MatrixFrog: Move Y1 Matrixfrog X\n\n13) Samaculus: Trade G1 R1 Samaculus\n\tSamaculus: I can dig the theme\n\n14) MatrixFrog: Trade Y1 B1 X\n\n15) Samaculus: Build G1 Samaculus\n\n16) MatrixFrog: Move B1 X Matrixfrog\n\n17) Samaculus: Sacrifice G3 Samaculus\nBuild G2 Samaculus\nBuild G3 Samaculus\nBuild R1 Samaculus\n\n18) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n19) Samaculus: Discover G2 Samaculus Y1 Ichar Iv\n\n20) MatrixFrog: Move Y1 X Ultramar\n\n21) Samaculus: Sacrifice R1 Samaculus\nAttack Y1S Ultramar\n\n22) MatrixFrog: Build G3 Matrixfrog\n\n23) Samaculus: Trade G1 R1 Ultramar\n\n24) MatrixFrog: Discover G3 Matrixfrog Y3 Epsilon 5\n\n25) Samaculus: Sacrifice G2 Ichar\nBuild Y2 Ultramar\nBuild G1 Samaculus\n\tMatrixFrog: Going back to the Greek theme\n\n26) MatrixFrog: Discover G3 Epsilon R1 Sigma\n\n27) Samaculus: Trade G3 Y3 Samaculus\n\n28) MatrixFrog: Build B1 Matrixfrog\n\n29) Samaculus: Discover G2 Ultramar B3 Holy Terra\n\n30) MatrixFrog: Trade G3 B3 Matrixfrog\n\n31) Samaculus: Trade G2 B2 Holy Terra\n\n32) MatrixFrog: Trade B1 Y1 Matrixfrog\n\n33) Samaculus: Build G2 Ultramar\n\n34) MatrixFrog: Trade B3 R3 Matrixfrog\n\n35) Samaculus: Trade B2 R2 Holy Terra\n\n36) MatrixFrog: Move R3 Matrixfrog Holy\n\n37) Samaculus: Sacrifice Y2 Ultramar\nMove R2 Holy Ultramar\nMove Y3 Samaculus Ultramar\n\n38) MatrixFrog: Build B1 Matrixfrog\n\n39) Samaculus: Sacrifice G2 Ultramar\nBuild R2 Samaculus\nBuild R3 Samaculus\n\n40) MatrixFrog: Build B2 Matrixfrog\n\n41) Samaculus: Discover R2 Ultramar Y3 Macragge\n\n42) MatrixFrog: Move Y1 Matrixfrog Holy\n\n43) Samaculus: Build R3 Ultramar\n\n44) MatrixFrog: Build Y2 Matrixfrog\n\n45) Samaculus: Trade G2 B2 Ultramar\n\n46) MatrixFrog: Move B2 Matrixfrog Holy\n\n47) Samaculus: Move R3 Ultramar Macragge\n\n48) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove G3 Sigma Holy\nMove G3 Holy Matrixfrog\n\n49) Samaculus: Move R1 Ultramar Macragge\n\n50) MatrixFrog: Build Y2 Matrixfrog\n\n51) Samaculus: Sacrifice Y3 Ultramar\nMove R1 Macragge Matrixfrog\nMove R2 Macragge Matrixfrog\nMove R3 Macragge Matrixfrog\nCatastrophe Matrixfrog Red\n\n52) MatrixFrog: Trade B1 R1 Matrixfrog\n\n53) Samaculus: Trade B2 Y2 Ultramar\n\n54) MatrixFrog: Move R1 Matrixfrog Samaculus\nCatastrophe Samaculus R\n\n55) Samaculus: Move Y1 Ultramar Samaculus\n\n56) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove R3 Holy Matrixfrog\nMove R3 Matrixfrog Samaculus\n\n57) Samaculus: Sacrifice Y2 Ultramar\nMove G1 Samaculus Matrixfrog\nMove G1 Samaculus Matrixfrog\n\n58) MatrixFrog: Move G3 Matrixfrog Samaculus\n\n59) Samaculus: Build G2 Matrixfrog\nCatastrophe Matrixfrog Green\n\tMatrixFrog: Declaring a catastrophe is always optional.\n\n\nHomeworlds Online (SDG# 711)\nStarted: 2005.9.15, Ended: 2005.9.23\nParticipants: rootbeer (S), petmar (N)\nWinner: rootbeer\n\n\tSYSTEM: petmar resigns.\n\nHomeworlds Online (SDG# 713)\nStarted: 2005.9.15, Ended: 2005.9.15\nParticipants: rootbeer (S), pigasuspig (N)\nWinner: pigasuspig\n\n1) pigasuspig: Homeworld B2 G1 R3\n\n2) rootbeer: Homeworld B2 G2 Y3\n\n3) pigasuspig: Build R1 Pigasuspig\n\n4) rootbeer: Build Y1 Rootbeer\n\n5) pigasuspig: Trade R1 Y1 Pigasuspig\n\n6) rootbeer: Discover Y1 Rootbeer G3 Route66\n\n7) pigasuspig: Discover Y1 Pigasuspig R3 Kissinger\n\n8) rootbeer: Build Y1 Rootbeer\n\n9) pigasuspig: Move Y1 Kissinger Rootbeer\n\n10) rootbeer: Construct Y2 Rootbeer\n\n11) pigasuspig: Build R1 Pigasuspig\nCatastrophe Rootbeer Y\n\n\nHomeworlds Online (SDG# 717)\nStarted: 2005.9.20, Ended: 2005.9.21\nParticipants: rootbeer (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B3 G1 Y3\n\n2) rootbeer: Homeworld B1 Y2 G3\n\tts52: Good luck!\n\n3) ts52: Build Y1 Ts52\n\n4) rootbeer: Build G1 Rootbeer\n\n5) ts52: Discover Y1 Ts52 B2 Discordia\n\n6) rootbeer: Build G1 Rootbeer\n\tts52: All hail Eris!\n\trootbeer: Eris?\n\trootbeer: Of Discordia?\r\n\n\n7) ts52: Build Y1 Ts52\n\n8) rootbeer: Trade G3 R3 Rootbeer\n\tts52: Of course!\n\n9) ts52: Trade Y3 G3 Ts52\n\n10) rootbeer: Build G2 Rootbeer\n\tts52: What's this? A weapon? I thought this was a peaceful galaxy??\n\n11) ts52: Build G2 Ts52\n\n12) rootbeer: Discover G2 Rootbeer Y3 Lizaminelli\n\n13) ts52: Move G2 Ts52 Discordia\n\n14) rootbeer: Build G2 Lizaminelli\n\n15) ts52: Build G3 Discordia\n\n16) rootbeer: Move G2 Lizaminelli Discordia\n\n17) ts52: Trade G3 R3 Discordia\n\n18) rootbeer: Build G3 Discordia\n\n19) ts52: Build G3 Ts52\n\n20) rootbeer: Trade G2 Y2 Discordia\n\n21) ts52: Attack Y2S Discordia\n\n22) rootbeer: Sacrifice G2 Lizaminelli\nBuild G2 Discordia\nBuild G2 Discordia\n\n23) ts52: Discover G2 Discordia Y3 Persiod\n\n24) rootbeer: Trade G3 Y3 Discordia\n\n25) ts52: Attack Y3S Discordia\n\n26) rootbeer: Build G3 Rootbeer\n\n27) ts52: Sacrifice Y1 Discordia\nMove G2 Persiod Rootbeer\nCatastrophe Rootbeer Green\n\n\tSYSTEM: rootbeer resigns.\n\nHomeworlds Online (SDG# 728)\nStarted: 2005.9.20, Ended: 2005.9.21\nParticipants: MatrixFrog (S), pigasuspig (N)\nWinner: pigasuspig\n\n1) pigasuspig: Homeworld B1 G2 Y3\n\n2) MatrixFrog: Homeworld Y1 B3 G3\n\n3) pigasuspig: Build Y1 Pigasuspig\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) pigasuspig: Build Y1 Pigasuspig\n\n6) MatrixFrog: Build G1 Matrixfrog\n\n7) pigasuspig: Trade Y1 B1 Pigasuspig\n\n8) MatrixFrog: Discover G1 Matrixfrog Y2 Alpha\n\n9) pigasuspig: Trade Y3 G3 Pigasuspig\n\n10) MatrixFrog: Build G1 Alpha\n\n11) pigasuspig: Build Y1 Pigasuspig\n\n12) MatrixFrog: Discover G1 Alpha R3 Beta\n\n13) pigasuspig: Build B1 Pigasuspig\n\n14) MatrixFrog: Move G1 Alpha Beta\n\n15) pigasuspig: Trade B1 R1 Pigasuspig\n\n16) MatrixFrog: Build G2 Matrixfrog\n\n17) pigasuspig: Discover Y1 Pigasuspig B3 Zephyr\n\n18) MatrixFrog: Trade G1 B1 Matrixfrog\n\n19) pigasuspig: Build Y2 Pigasuspig\n\n20) MatrixFrog: Trade G2 Y2 Matrixfrog\n\n21) pigasuspig: Trade G3 R3 Pigasuspig\n\n22) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove G1 Beta Pigasuspig\nMove G1 Beta Pigasuspig\n\n23) pigasuspig: Move R3 Pigasuspig Zephyr\n\n24) MatrixFrog: Build G1 Pigasuspig\nCatastrophe Pigasuspig G\n\n25) pigasuspig: Sacrifice Y2 Pigasuspig\nDiscover R3 Zephyr Y2 Disposable\nMove R3 Disposable Matrixfrog\n\n26) MatrixFrog: Build G1 Matrixfrog\n\n27) pigasuspig: Attack G3S Matrixfrog\n\n28) MatrixFrog: Build G1 Matrixfrog\n\n29) pigasuspig: Sacrifice R3 Matrixfrog\nAttack G1S Matrixfrog\nAttack G1S Matrixfrog\nAttack B1S Matrixfrog\n\n\nHomeworlds Online (SDG# 738)\nStarted: 2005.9.21, Ended: 2005.9.24\nParticipants: Jesse (S), CDRodeffer (N)\nWinner: Jesse\n\n1) CDRodeffer: Homeworld B1 Y2 G3\n\n2) Jesse: Homeworld B3 Y1 G3\n\tJesse: Hola\n\n3) CDRodeffer: Build G1 Cdrodeffer\n\n4) Jesse: Build G1 Jesse\n\tCDRodeffer: Howdy.\n\n5) CDRodeffer: Trade G1 R1 Cdrodeffer\n\n6) Jesse: Trade G1 R1 Jesse\n\n7) CDRodeffer: Build G1 Cdrodeffer\n\tJesse: If it's guns you want, it's guns you get.\n\tCDRodeffer: Not just guns, I just like to have all types in my home system.\n\n8) Jesse: Build G1 Jesse\n\n9) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\tJesse: Oh, I can't argue with that. I just usually don't jump into guns until I can at least choose what size to go with.\n\n10) Jesse: Discover G1 Jesse B2 Tick\n\n11) CDRodeffer: Build G1 Cdrodeffer\n\n12) Jesse: Build G1 Jesse\n\n13) CDRodeffer: Trade G1 B1 Cdrodeffer\n\n14) Jesse: Discover G1 Jesse B2 Tocquila\n\n15) CDRodeffer: Discover Y1 Cdrodeffer R3 Beetlejuice\n\n16) Jesse: Build G1 Jesse\n\n17) CDRodeffer: Build G2 Cdrodeffer\n\tJesse: Happy equinox, coming up in about a half hour, by the way.\n\tCDRodeffer: Oh really? I don't notice such things. But tomorrow is our 5th wedding anniversary. Yay!\n\n18) Jesse: Build G2 Tocquila\n\tJesse: Well, happy anniversary.\n\n19) CDRodeffer: Move G2 Cdrodeffer Beetlejuice\n\n20) Jesse: Trade G2 Y2 Tocquila\n\n21) CDRodeffer: Build G2 Cdrodeffer\n\n22) Jesse: Sacrifice G3 Jesse\nBuild G2 Tocquila\nBuild G3 Jesse\nBuild G3 Tick\n\n23) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild B1 Cdrodeffer\nBuild Y1 Beetlejuice\n\n24) Jesse: Sacrifice G3 Jesse\nBuild Y2 Tocquila\nBuild R1 Jesse\nBuild G3 Jesse\n\tCDRodeffer: Ah, so you too are familiar with the factory! Good.\n\tJesse: Indeed. It's good to see you're pleased, since that says something about you, as well.\n\n25) CDRodeffer: Move Y1 Beetlejuice Cdrodeffer\n\n26) Jesse: Sacrifice Y2 Tocquila\nMove G3 Tick Beetlejuice\nMove R1 Jesse Tocquila\n\n27) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild Y2 Beetlejuice\nBuild Y3 Beetlejuice\n\n28) Jesse: Attack Y3N Beetlejuice\n\n29) CDRodeffer: Construct Y3 Beetlejuice\nCatastrophe Beetlejuice Yellow\n\n30) Jesse: Sacrifice G3 Jesse\nBuild R2 Jesse\nBuild Y1 Tocquila\nBuild G3 Jesse\n\tCDRodeffer: Wow. There seems to have been a whole series of unfortunate events.\n\tJesse: Ooh, ouch! I thought you were planning to factory up a Y3 at the homeworld along with that.\n\n31) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild R2 Cdrodeffer\nBuild Y2 Cdrodeffer\n\n32) Jesse: Sacrifice Y2 Tocquila\nMove Y1 Tocquila Beetlejuice\nMove Y1 Beetlejuice Cdrodeffer\nCatastrophe Cdrodeffer Y\n\tCDRodeffer: Oh, it's not nearly as bad as all that.\n\n33) CDRodeffer: Build B2 Cdrodeffer\nCatastrophe Cdrodeffer Blue\n\n\nHomeworlds Online (SDG# 742)\nStarted: 2005.9.22, Ended: 2005.11.3\nParticipants: pigasuspig (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) pigasuspig: Homeworld B1 G2 Y3\n\n3) ts52: Build G1 Ts52\n\n4) pigasuspig: Build Y1 Pigasuspig\n\tts52: sorry for the delay. for some reason I'm not getting email notices\n\tpigasuspig: I play daily, pretty much, so perhaps keep checking back. But don't worry too much, I went overtime on my first turn here.\r\n\n\n5) ts52: Build G1 Ts52\n\n6) pigasuspig: Build Y1 Pigasuspig\n\n7) ts52: Trade G1 B1 Ts52\n\n8) pigasuspig: Trade Y1 G1 Pigasuspig\n\n9) ts52: Discover G1 Ts52 B1 Persiphone\n\n10) pigasuspig: Trade Y1 R1 Pigasuspig\n\n11) ts52: Build B2 Ts52\n\n12) pigasuspig: Build G1 Pigasuspig\n\n13) ts52: Build G2 Persiphone\n\n14) pigasuspig: Discover G1 Pigasuspig B3 Hermes\n\n15) ts52: Move B2 Ts52 Persiphone\n\n16) pigasuspig: Build G2 Pigasuspig\n\n17) ts52: Build G3 Ts52\n\n18) pigasuspig: Sacrifice Y3 Pigasuspig\nMove G1 Pigasuspig Hermes\nMove G1 Hermes Persiphone\nMove G1 Persiphone Ts52\n\n19) ts52: Sacrifice B2 Persiphone\nTrade G3 R3 Ts52\nTrade G3 R3 Ts52\n\n20) pigasuspig: Build G3 Pigasuspig\n\n21) ts52: Attack G1S Ts52\n\n22) pigasuspig: Sacrifice G3 Pigasuspig\nBuild G3 Pigasuspig\nBuild G3 Hermes\nBuild G3 Hermes\n\n23) ts52: Trade B1 Y1 Ts52\n\n24) pigasuspig: Trade G1 Y1 Hermes\n\n25) ts52: Move R3 Ts52 Persiphone\n\n26) pigasuspig: Trade G3 Y3 Pigasuspig\n\n27) ts52: Build G1 Ts52\n\n28) pigasuspig: Build G3 Pigasuspig\n\n29) ts52: Build R1 Persiphone\n\n30) pigasuspig: Discover G3 Hermes R1 Mars\n\n31) ts52: Move Y1 Ts52 Persiphone\n\n32) pigasuspig: Build R2 Pigasuspig\n\n33) ts52: Discover G1 Persiphone Y3 Sol\n\n34) pigasuspig: Trade G2 B2 Pigasuspig\n\n35) ts52: Build G2 Sol\n\n36) pigasuspig: Sacrifice B2 Pigasuspig\nTrade G3 B3 Pigasuspig\nTrade G3 R3 Mars\n\n37) ts52: Build G3 Persiphone\n\n38) pigasuspig: Trade G3 B3 Hermes\n\n39) ts52: Discover G1 Ts52 B1 Blueberry\n\n40) pigasuspig: Sacrifice Y3 Pigasuspig\nMove B3 Hermes Blueberry\nMove B3 Blueberry Ts52\nMove R3 Mars Ts52\n\n41) ts52: Sacrifice R3 Persiphone\nAttack R3 Ts52\nAttack B3 Ts52\nPass\n\n42) pigasuspig: Build B2 Pigasuspig\n\n43) ts52: Sacrifice G3 Persiphone\nBuild G3 Persiphone\nBuild G3 Blueberry\nBuild G3 Ts52\n\n44) pigasuspig: Move Y1 Hermes Pigasuspig\n\tpigasuspig: yeah, that was a cool trick when I was able to pull it off too.\n\n45) ts52: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y1 Persiphone\nBuild Y2 Persiphone\n\n46) pigasuspig: Move R2 Pigasuspig Sol\n\n47) ts52: Sacrifice R1 Persiphone\nAttack R2 Sol\n\n48) pigasuspig: Trade B3 Y3 Pigasuspig\n\tpigasuspig: so sorry about the time!\n\n49) ts52: Discover B3 Ts52 R1 Rasberry\n\tts52: not to worry\n\n50) pigasuspig: Build R1 Pigasuspig\n\n51) ts52: Move Y1 Persiphone Sol\n\n\tpigasuspig: I can't safely build or trade (since there's no green), I can't really move anywhere useful, and I'm dramatically outnumbered. I resign. Very good game, though! Thanks!\n\tSYSTEM: pigasuspig resigns.\n\nHomeworlds Online (SDG# 746)\nStarted: 2005.9.23, Ended: 2005.9.27\nParticipants: MatrixFrog (S), Samaculus (N)\nWinner: Samaculus\n\n1) Samaculus: Homeworld G3 Y2 B3\n\n2) MatrixFrog: Homeworld B2 G3 Y3\n\tSamaculus: I hate to be unoriginal...\n\n3) Samaculus: Build B1 Samaculus\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Samaculus: Trade B1 R1 Samaculus\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) Samaculus: Build R1 Samaculus\n\n8) MatrixFrog: Discover Y1 Matrixfrog G1 Dy/dx\n\n9) Samaculus: Move R1 Samaculus Dy/dx\n\n10) MatrixFrog: Move Y1 Dy/dx Matrixfrog\n\n11) Samaculus: Build R1 Samaculus\n\n12) MatrixFrog: Trade Y3 R3 Matrixfrog\n\n13) Samaculus: Move B3 Samaculus Dy/dx\n\n14) MatrixFrog: Build R2 Matrixfrog\n\n15) Samaculus: Build R2 Dy/dx\n\n16) MatrixFrog: Trade R2 G2 Matrixfrog\n\n17) Samaculus: Trade R1 Y1 Dy/dx\n\n18) MatrixFrog: Build R1 Matrixfrog\n\n19) Samaculus: Build Y2 Dy/dx\n\n20) MatrixFrog: Trade R1 B1 Matrixfrog\n\n21) Samaculus: Build B1 Dy/dx\n\n22) MatrixFrog: Build R1 Matrixfrog\n\n23) Samaculus: Move R1 Samaculus Dy/dx\n\tMatrixFrog: Wow. Can you say "arms race?"\n\n24) MatrixFrog: Discover Y1 Matrixfrog G1 Antelope\n\n25) Samaculus: Sacrifice Y2 Dy/dx\nMove R1 Dy/dx Matrixfrog\nMove R2 Dy/dx Matrixfrog\nCatastrophe Matrixfrog Red\n\tMatrixFrog: I'm thinking of an animal theme this game.\n\n26) MatrixFrog: Build Y2 Matrixfrog\n\n27) Samaculus: Trade B3 R3 Dy/dx\n\n28) MatrixFrog: Build Y2 Antelope\n\n29) Samaculus: Move R3 Dy/dx Matrixfrog\n\n30) MatrixFrog: Build G1 Matrixfrog\n\n31) Samaculus: Attack G2S Matrixfrog\n\n32) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild Y3 Antelope\n\n33) Samaculus: Attack Y2S Matrixfrog\n\n34) MatrixFrog: Move Y1 Antelope Matrixfrog\n\n35) Samaculus: Attack B1S Matrixfrog\n\n36) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n37) Samaculus: Attack Y1S Matrixfrog\n\n38) MatrixFrog: Move Y2 Antelope Matrixfrog\n\n39) Samaculus: Sacrifice R3 Matrixfrog\nAttack Y2S Matrixfrog\nAttack G1S Matrixfrog\nPass\n\n\nHomeworlds Online (SDG# 753)\nVariants: "Left man down"\nStarted: 2005.9.25, Ended: 2005.10.23\nParticipants: pigasuspig (S), MatrixFrog (N), Samaculus (E)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G2 B1 Y3\n\n2) Samaculus: Homeworld Y3 B2 G3\n\tMatrixFrog: Welcome.\n\tMatrixFrog: So here's how Left Man Down (aka Sinister Homeworlds) works: I win by eliminating you, you win by elminating pigasuspig, and pigasuspig wins by eliminating me. Ready, go!\n\n3) pigasuspig: Homeworld Y3 G3 R3\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Samaculus: Build G1 Samaculus\n\n6) pigasuspig: Build R1 Pigasuspig\n\n7) MatrixFrog: Trade Y1 R1 Matrixfrog\n\tMatrixFrog: pigasus, is a 3-3 homeworld a specific Left Man Down strategy, or just something unusual?\n\n8) Samaculus: Build G1 Samaculus\n\n9) pigasuspig: Discover R1 Pigasuspig B2 Deepblue\n\tpigasuspig: more of a cheap shot cuz I wondered how to outfox it. Of course, I see the answer now.\n\n10) MatrixFrog: Build Y1 Matrixfrog\n\tpigasuspig: But maybe there's something to it, since it puts me closer to my target than to my enemy. I suppose we'll all find out. But the red starting ship, that was not really a good idea at all.\n\n11) Samaculus: Discover G1 Samaculus B1 X-axis\n\n12) pigasuspig: Trade R1 G1 Deepblue\n\n13) MatrixFrog: Build R1 Matrixfrog\n\tMatrixFrog: Well it's always a trade-off. If you make it hard for opponents to get to you, then you must also make it hard for yourself to get to them.\n\n14) Samaculus: Build G1 X-axis\n\n15) pigasuspig: Build G2 Deepblue\n\n16) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n17) Samaculus: Build G2 Samaculus\n\n18) pigasuspig: Trade G2 Y2 Deepblue\n\n19) MatrixFrog: Build G2 Matrixfrog\n\n20) Samaculus: Discover G1 Samaculus B1 Pluto\n\tMatrixFrog: I'll talk to him at school tomorrow and get the game moving again by tomorrow night. Sorry!\n\tMatrixFrog: Or maybe in two nights, I suppose... anyway, thanks for your patience.\n\n21) pigasuspig: Build R1 Pigasuspig\n\n22) MatrixFrog: Discover G2 Matrixfrog Y3 Tenuto\n\n23) Samaculus: Sacrifice G3 Samaculus\nBuild G2 Samaculus\nBuild G3 Samaculus\nBuild G3 Pluto\n\n24) pigasuspig: Sacrifice Y2 Deepblue\nMove G1 Deepblue Pluto\nMove G1 Pluto Samaculus\nCatastrophe Samaculus G\n\tSamaculus: I'm Back! With a vengeance! Beware!\n\tMatrixFrog: Welcome back. I like how your first move back was really aggressive.\n\n25) MatrixFrog: Move G2 Tenuto Pluto\n\n26) pigasuspig: Move R1 Pigasuspig Pluto\n\n27) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R1S Pluto\n\n28) pigasuspig: Build R1 Pigasuspig\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) pigasuspig: Move R1 Pigasuspig X-axis\n\n31) MatrixFrog: Build R1 Matrixfrog\n\n\tSYSTEM: pigasuspig resigns.\n\tSYSTEM: resigns.\n\nHomeworlds Online (SDG# 756)\nStarted: 2005.9.26, Ended: 2005.10.26\nParticipants: Werebear (S), CDRodeffer (N)\nWinner: Werebear\n\n1) CDRodeffer: Homeworld B1 Y2 G3\n\tCDRodeffer: Hey, Doug. Glad you could make it into the system. The first step is to create your homeworld using the "homeworld" command. I'll make mine using "homeworld b1 y2 g3".\n\n2) Werebear: Homeworld G2 B1 R3\n\n3) CDRodeffer: Build G1 Cdrodeffer\n\tCDRodeffer: Now that you have a homeworld, you can try some of the other stuff at the top, like constructing a new ship. If you have access to green in a system, you can build the smallest available ship of any type you already have in that system. I'll do that using "construct g1 CDRodeffer".\n\n4) Werebear: Build R1 Werebear\n\tCDRodeffer: So anyway, you have a bit of a problem starting out, because you don't have access to any yellow, so you can't move anywhere or discover new systems. You might want to build another ship (it would have to be a red one, using "construct r1 Werebear"), then on a later turn trade it in for a yellow one so you can move around using "trade r1 y1 Werebear" or the like.\n\n5) CDRodeffer: Trade G1 R1 Cdrodeffer\n\tWerebear: Yah, I guessed as much. I do, however, have a red ship. I've heard all about people who sneak right in when someone doesn't have enough planetary defenses. That's all this is. Defensive uses only.\n\tWerebear: Besides, where do I need to go? We're happy right here!\n\tCDRodeffer: Oh, I totally understand. In fact, I like to have at least *some* access to all four color technologies in my home system. Right now, I don't have any defenses, as you can plainly see. So I would to well to get at least a small one. I can do that by trading in the small green ship I just build for a small red one, using the command "trade g1 r1 CDRodeffer". See how easy that is?\n\n6) Werebear: Trade R1 B1 Werebear\n\n7) CDRodeffer: Discover R1 Cdrodeffer G3 Eden\n\tWerebear: My people are afraid of too many different colors... but we applaud your work towards self defense. Might we agree to a mutual self-defense treaty? If either of us is attacked by an enemy, we'll use our brave self defense ships to protect each other?\n\tCDRodeffer: I think that would be a wonderful idea, at least in principle, but I don't know how we would implement it in the short term. See, for one or the other of us to get to the other's system, we need to go via another system that has a star unlike any of our own. In our cases, we both have a small star and a medium star, so we need to go via a large star. Since there isn't such a system out there (yet) I'll show you how to discover one by example. I'll choose green, since it's pretty, and since it's non-confrontational. Whenever you discover a new system, you also get to choose it's name, so I'll pick a nice non-confrontational name as well. The command I'll use to do it is "discover r1 CDRodeffer g3 Eden".\n\n8) Werebear: Build B2 Werebear\n\n9) CDRodeffer: Build G1 Cdrodeffer\n\tWerebear: I like the way you think, CDRodeffer! (Is it okay if I call you CDR?). Now, I should say that my people are a bit skittish and not as open-minded as my Enlightened Self (you can call me Werebear), so they might not like having foreign ships in our home system... but - our self defense forces have been well versed in interacting with alien cultures, and I'm sure they'd have no problems (and might even enjoy) visiting your home system from time to time. You know, for training exercises, and such. I'll spread the word around our self defense forces officers, that they'll be visiting you at some point in the future! What sorts of gifts are appropriate? Do you like Xcyactl wines? If so, I'll get a few cases put together to send with my forces. It may take me a while, since it is very expensive to get that much Xcyactl.\r\n\r\nInteresting - my people have ancient myths about how we originated from a star system called "Eden". If you find any interesting archaelogical sites there, I'll send some very peaceful scientists to visit and help your research...\n\tCDRodeffer: Well, we're tea totelers here at CDRodeffer, even though we really don't even like tea. Or Dr. Pepper. Or coffee. But anyway, I look forward to meeting your archeological envoy in Eden in the near future. As an aside, I heard it through the grapevine that "andylooney" just joined up an online gaming site called Super Duper Games. This is intereseting, Werebear, because I hear that he loves Homeworlds, and might enjoy visiting your peaceful system someday. Anyway, back to the matter at hand, I realize that it is unseemly to have a defense ship in an archeological region, but I don't currently have propulsion technology available in Eden, nor can I find any local paint shops to make that little ship seem less, well, threatening. Our ancient texts say that an angel wielding a flaming sword was set at the gates of Eden, so if your people have similar ancient texts, you might want to just, for a moment, meditate on the aesthetic qualities of that small red ship, right there, guarding Eden. But just for the moment, I assure you, because I have a plan to retrofit that ship into a vessel more suitable for acheology.\n\n10) Werebear: Trade B2 Y2 Werebear\n\tCDRodeffer: Oh, if you didn't recognize the name, Andy Looney is the person who designed the pyramids for this game. He's pretty well-known in the gaming world, and has designed several games to play with these pyramid pieces, although the Homeworlds game itself was invented by a friend of his.\n\n11) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\tWerebear: CDRodeffer, you make many good points. I trust if the dreaded andylooney does find his way to our beloved home system, that you'd leap to our defense, as per our mutual defense agreements. But we don't fear him. He causes us no concern. Also, our people were quite thrilled to learn of your archaeological discoveries - and they demanded that we learn more of this. You see, my people, at times, are a superstitious and hasty people, and they've long debated over our origins. Learning that you've positively identified our original home, and are even now valiantly defending it, will cause waves of anxiety and happiness amongst our populations. Rest assured that we are even now equipping a squadron to come to your aid, and to assist you in the defense of this beautiful world. We very much appreciate the pictures you've sent, by the way. Especially some of the more risque pictures of your cabinet and ministers - but not sure what you intended for us to do with them. Perhaps you sent them to use for safekeeping? We'll guard them carefully, and gazed upon on them in our chambers whilst we plan for our eventual and inevitable meeting! It will surely be an auspicious occasion!\n\tCDRodeffer: Our short range scanners have been admiring your beautiful new yellow speedster. I must say, I've always had a fondness for yellow, rising each morning to the light of our yellow sun, and silently morning its setting in our early afternoon when we are left with the pale blue light of our yellow sun's companion. You know, we have a notorious college near where I live whose colors are yellow and blue. Actually, they call them "maize" and blue, but I don't fully understand their reference to a labyrinth. But yes, per our mutual defense agreement, I'd be happy to help thwart any invasion attempts by the dreaded "andylooney" in the near future. Alas, as I still have no access to propulsion systems near Eden, withdrawal of that unseemly red clunker has not been easy. But now, having seen, admired, yea even coveted your speedster, I should be able to upgrade said clunker in the not too distant future. Meanwhile, our technicians are doing their best to reverse-engineer and copy your marvelous work. Feel free to peer through your long range scopes to have a look for yourself.\n\n12) Werebear: Construct B2 Werebear\n\n13) CDRodeffer: Build G1 Cdrodeffer\n\tWerebear: Ahh, yes, thank you. We were quite delighted with it! We took the court out for a spin in it, and had quite the splendid time. However, I must warn you, it requires outrageous amounts of fuel. I'd advise you, most respectfully, of course, to stay with the smaller more fuel efficient ships. We've found that we can't even afford to crank up the engines in our primary self defense vessel. I probably shouldn't admit this, since I know you are counting on to rush to your defense should andylooney strike, but, there it is. The large ships are just too expensive to have much fun with. If you do get stuck with any large ships that you don't want, just let us know and we'll be happy to take them off your hands for you. Fortunately our home system does possess vast quantitites of fuel. Talk to your engineers, see if you can dissuade them from their mad plan. Small efficient ships will one day rule the star ways. My people are just to grandiose to realize this!\n\tCDRodeffer: It's a good start that you understand how important it is to conserve energy resources, and I'm glad you've taken such notice in our efforts to conserve energy by using smaller ships. Sure, there will always be a few piggy politicians who insist upon large ships. They must be trying to compensate for something. But by and large, most of us get along very well with small, efficent ships. While we modeled our little runabout after your speedster, we decided to go with a smaller platform for just that reason, and are quite pleased with the results. If you would like a tutorial on our compact engineering, we would be happy to give you an in-system demonstration at some point in the near future. Just let us know, and we'll try to be there at the appointed time. Meanwhile, you can watch from afar as we demonstrate small vehicle construction, right before your very telescopes.\n\n14) Werebear: Move B2 Werebear Eden\n\tWerebear: CDRodeffer, you old fox - you read between the lines, and you invited me to see up close how you build more efficient ships! I was hoping you'd see what we were hoping for, and of course you did! I'm tickled pink, but some of my staff didn't believe you'd actually invite us to come visit. This is our first voyage away from home, and you can probably imagine how excited our people are. We're sending our best and brightest to join you in your exploration of Eden. You'll see that we come entirely in peace. Don't worry about meeting us, we'll come out and meet you. Oh, this is just *TOO* thrilling!\n\n15) CDRodeffer: Sacrifice Y1 Cdrodeffer\nMove R1 Eden Cdrodeffer\n\tWerebear: Hi, there! We come in peace, and bring you greetings from the peoples of Werebear! And look, we have Xcyactl! For you... no, please, please, take it... our pleasure entirely!\n\tCDRodeffer: Likewise, it's a real honor to finally see one of your vessels up close, here in Eden. I wonder, have you tried using this Xcyactl as a fuel? Alternative propulsion systems just might be the thing you need for better economy, both at home and abroad. Say, there's another new piece of technology we just developed, and I thought you might like to have a look. It's a remote control function that our engineers -- what will they think of next!? -- have come up with. Since that r1 has been sitting out there in the remote reaches for so long, we need to figure out how to get those people home for resupply anyway, so what better way to try out the remote control function? Funny thing is, it takes lots of energy to operate. LOTS of energy. Fortunately, we have that little yellow runabout (it wasn't that useful for us anyway) that we can dump into our E=mc^2 converters. So check this out!\n\n16) Werebear: Build R1 Werebear\n\n17) CDRodeffer: Build G1 Cdrodeffer\n\tWerebear: Hey, what happened? We got word of some sort of diplomatic incident, and then, wow, your defense ship was gone? And we were looking so closely at your new fuel efficient speedster, when suddenly we noticed a disruption in the space-time continuum, and it was gone! Have your crews had Xcyactl before? That may explain parts of the strangeness, if they haven't - it does make weird ripples through the multi-space. Oh, wait - I see - remote control. Okay, whew... I was worried that my overly eager researchers made some sort of faux pas, which would be sad. Hey, can you share that trick of recycling ships? We'd like that... We're very much into recycling. No, we don't use Xcyactl for fuel. Well, actually, the very rich might. I had a patron as a young Werebearling who tried it out in a sand-speeder - and it was, let me tell you, quite the ride. But I don't recommend this for any but the very young and the unsqueamish. Since we don't have anybody protecting the Origin Star (as our religious leaders are calling Eden), my advisors have decided to send out another scout to protect that system - purely defensive, you understand.\n\tWerebear: CDRodeffer, this is the commander of the B2 Research Ship in orbit around Eden. We will relieve your crew of their defense responsibilities. Support is on its way for our defense of this system, but perhaps this larger ship will scare off any attacks by the dread pirate andylooney. On the behalf of our people, I want to thank you for finding the planet of our origins, and for beginning the shared growth of knowledge our research will bring. We commend you on your spirit of cooperation and trust. Commander Flemlink Potorsk, Werebear Defense Fleet.\n\n18) Werebear: Build B2 Werebear\n\tCDRodeffer: We'd be happy to share the remote control technology based upon direct matter to energy conversion. But you must understand that the technology hasn't yet been perfected to 100% efficiency, as most new technologies are, and as a result, performing the conversion requires certain ... sacrifices. But in the interest of advancing science, and especially science for ecological development (first reduce (use small ships), then reuse (trade them in for what you need whenever possible), then recycle (matter to energy conversion, when necessary)). It's all rather simple, really. Say, how go your acheological digs on Eden?\n\n19) CDRodeffer: Build R1 Cdrodeffer\n\tWerebear: Our digs go well! We think we found the flaming sword your people talk about... Well, actually, it wasn't flaming, exactly... and, well, to be honest, we're not sure it's really a sword. But, what the hay, our religious leaders are all saying they found the flaming sword, who am I to argue? To me, it looks like a big lumpy rock stick. Thanks for sharing that remote control technology. Our scientists have been experimenting on hamsters and tulips, and results are relatively positive. Relatively.\n\n20) Werebear: Build R2 Werebear\n\tCDRodeffer: I have rather sad news concerning our economy. Trading has been down the last several days, and as a result, the people are getting somewhat restless, requiring some police actions in some regions. Nothing dangerous, I assure you, but we've seen much better times in the past.\n\n21) CDRodeffer: Move R1 Cdrodeffer Eden\n\tWerebear: It isn't catching, is it? Oh me... oh my! We've just got word that we, too, might be having to engage in police actions ourselves. We surely hope not. If things get bad over there, you're welcome to visit. And fear not - if they get bad enough, we can help you with your police action, if need be. We'll be there in a whistle!\n\tCDRodeffer: Wow. You don't know how glad I am to hear this news, and about how willing you all have been to provide for the common defense. Our most heartfelt gratitude goes out to you as we struggle with the domestic problems of looting and, believe it or not, environmental degradation that has resulted from the economic greed of a few big wigs in high places. I'm sure you can sympathize.\n\tCDRodeffer: Holy smokes! We seem to have lost contact with your archeological team at Eden! I hope they're all OK. You know, some people are calling for scientific research programs to be cut from the global budget in these times of civil unrest, but of course, you and I both know better, that without the advancement of knowledge, the populous is in danger of spiraling into barbarism. We wish we had a little yellow speedster available to go visit your archeological ship via the fastest means possible, but since all of them were so unfortunately recycled, a "Little Red Corvette" will have to suffice. Speaking of which, there once was a legendary musician who sang a song about such a vehicle some 20 years ago. Judging from your distance, the radio waves may just now be reaching your system from those early broadcasts. If you care to give a listen, I'd much appreciate your comments on our music.\n\n22) Werebear: Sacrifice R1 Werebear\nAttack R1N Eden\n\n23) CDRodeffer: Discover R1 Cdrodeffer Y3 Taxi\n\tWerebear: We noticed the same thing. We were afraid that sword of fire rock-stick-thingy had gone crazy and had taken over our crew. We immediately dispatched an identical Little Red Corvette (yes, we recall that song) to balance out your ship - but - egads! Your ship was gone, and the flaming sword rock-stick-thingy was gone, and our crews were all befuddled. For some reason, the Interstellar News Service (INS) reported that there was a fight, but clearly we wouldn't have attacked each other. That makes no sense at all. Where did your ship go?\n\tWerebear: CDRodeffer, I can only conclude one thing. I suspect that this was all the work of the Dread Pirate andylooney (DPa). I'm afraid to say it, but it looks like he must have snuck in under the watchful eye of our research and defense ships, stolen the flaming sword rock-stick-thingy, and then, to add insult to injury, stole your ship to make his getaway. We've detected some space tread marks and a faint smell of ether. I think we've both been had. I'm very worried about this turn of events. I'm afraid our religious leaders will call for all-out war, demanding that we seek out every haven that the DPa might lurk in, and to regain our holy religious rock-stick-thingy heritage artifact. Woe is upon us. I hope we can find a way to convince our peoples that everything is still in balance. The time for caution has arrived. Will you need us to dispatch our LRC to your Homeworld? Are you prepared for the civil unrest that might follow? Remember, give a little whistle and we'll be right there to help. We're listening...\n\tWerebear: Was that a whistle?\n\tCDRodeffer: Well, I suppose the driver of the Little Red Corvette *could* have gotten lost in space. Maybe. Oh wait! I think we found them, and they're reporting the discovery of a new system! This has cause much rejoicing here at home, despite the big wigs' wanting to name the new system, of all things, Taxi.\n\n24) Werebear: Move R2 Werebear Taxi\n\tWerebear: Oh, is that where he went? Cool... but - our Space Traffic Control Agency thought that this ship originated from your home system, so... umm.... it can't be the Dread Pirate andylooney, unless...\n\n25) CDRodeffer: Discover R1 Taxi R1 ぱぱ\n\tWerebear: Maybe we'd better just drop in for a little look-see... we'll report our findings. We're sending broadcasts of Peace and Understanding. But you ship is unresponsive. Is that your ship? Or could it be the DPa? Arggh! We'll stand by to hear from you on this very serious matter. Our religious leaders are certain that we'll find the rock-stick-thingy at Taxi - you haven't seen it, have you? Could it be aboard your ship? Gosh, I sure hope not. I'd hate to think what would happen. That ship we sent there is full of zealots. Oh my!\n\tWerebear: Peace. Understanding. Peace. Understanding. Repeat as necessary.\n\n26) Werebear: Build R2 Werebear\n\tCDRodeffer: Wow! Check it out! That Little Red Corvette found another new system. Weird how the name came out, though, huh? There must be something strange going on with the navigational systems on that ship.\n\tWerebear: Our religious leaders will have a field day with this... they've long warned us of the day when someone would visit �� - and warned us that when we saw the "visage of the unmasked treachery of this world, surely the dogs would gnash their teeth, and doom would befall the schnictkl plants", whatever the heck that means. Are you in need of rescue? Surely, a dark red world like that must be dreary and boring compared to the happy world from whence your race evolved. BTW - that has also been a frequent subject of discussion of late - did you race evolve or travel to CDRodeffer? But our findings at Eden do sort of point to the correct answer. If your LRC is in need of rescue, I could dispatch a ship to help you. We're worried that you may be all but stuck in that uncomfortable place. We'll get cracking to get a ship built for a rescue mission...\n\n27) CDRodeffer: Sacrifice G1 Cdrodeffer\nBuild R2 ぱぱ\n\n28) Werebear: Trade B2 G2 Werebear\n\tCDRodeffer: I'm happy to hear your religious leaders are, well, having a nice day in the fields, what with your wonderful archeological work at Eden, despite the prophesized doom of your beloved schnictkl plants. I hope they're safe, and if you need us, we may soon be able to send a team of our crack gardners. In answer to your question, carvings on some of our ancient ruins seem to indicate that our distant ancestors traveled to the CDRodeffer system from somewhere else. And seeing that Eden is a garden planet, and we have many gardeners here, the travel theory seems quite possible.\n\n29) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\tWerebear: I thought... umm... that you didn't like those clunky bigger ships... don't they get just awful mileage?\n\n30) Werebear: Build R3 Eden\n\tCDRodeffer: How true! How true! We have come to learn that certain high ranking members of the Little Red Corvette crew are actually disgruntled postal workers, and that they, and I quote, "are tired of being put down by 'the man'. We must rise up from this feudal oppression, overthrow the status-quo government and attain new heights of personal affluence." No wonder our mail has been late! So, we are in the process of sending out a (small) detachment of police officers (the police wear yellow here in CDRodeffer) to retrieve the renegade postal workers before they cause any harm, either to others or to themselves. If you encounter them, beware, and consider them "armed and dangerous." We don't anticipate any real problems, but you know, due to our long-standing mutual defense treaty, I thought it best you should know in advance, in case anything were to happen.\n\n31) CDRodeffer: Trade G3 R3 Cdrodeffer\n\tWerebear: Did you hear about the bargain down at Ned's Used Space Ship Depot? Yep. Big Red ships. Granted they are a bit guady and all, but we think it goes well with the rest of our fleets, and reminds us fondly of our very first ship. Do you like it?\n\tCDRodeffer: Due to the news of those disgruntled postal workers hijacking a ship to some weird system in the far reaches of space (from us anyway), there has lately been a fad where everything must be red, and even the big wig politicians have succumbed to the crazy notion and given their production ship a paint job. I don't like it much, no, not at all. But what can I do? I can't control everyone.\n\n32) Werebear: Move B1 Werebear Taxi\n\n33) CDRodeffer: Trade Y1 G1 Cdrodeffer\n\tWerebear: CDRodeffer, old friend - it seems as if the postal worker situations has spiraled way out of control. Are you sure this doesn't have anything to do with the gift of Xcyactl that we gave you? Somehow, I feel responsible, like I've led your people astray with that temptation. On the other hand, maybe your people want your fleets to look a little like ours, perhaps? It might just be flattery, eh? \n\tCDRodeffer: I assure you, the obsession with red is merely a passing fad, no more. But it has taken a huge toll on our productivity, in that people are thinking about red so much that they're no longer willing to work and build anything. To be sure, I'm in full agreement with that Shining sentiment, "All work and no play makes Jack a dull boy." But the opposite is just as much cause for concern, "All play and no work makes Jack a starving boy." There are only so many things one can do to stave off both, so we're putting some of our welfare recipients to work giving that little yellow speedster a fresh green paint job. We hope the new color will contrast enough with that silly red fad to make people want to start working again.\n\n34) Werebear: Move G2 Werebear Taxi\n\tWerebear: Well, no wonder your people are obsessed - they're watching the postal workers in that system that shan't be named day in and day out... and what an interesting view it is. See, even though it is two star-jumps for our people to get there, the system is actually pretty close, and our telescopes are letting us get crystal clear views of the shenanagans going on over in that un-named system. Do your religious leaders have any idea what is happening there? Wowza wowza wowza... We can't look away, some of us. I'm going to send out an Ecology Research Ship to Taxi to see if they can pick up any interesting readings from a bit closer, Star-Jump-Wise...\n\n35) CDRodeffer: Construct G1 Cdrodeffer\n\tWerebear: Wow... much better view from here. Well, good grief. All work has been halted as all of our populations are consumed with watching your postal workers. Great. It's officially contagious. Well, I guess we'll just have to sip some Xcyactl and enjoy the show.\n\n36) Werebear: Build B2 Eden\n\tCDRodeffer: Watching those whacky postal workers from afar is like some sort of strange situation comedy. But it has appeased the masses, and the people have started calming themselves and getting back to work. See, they even built a nice new green ship.\n\n37) CDRodeffer: Discover G1 Cdrodeffer B3 The_berry_vest_of_the_swirling_eddies\n\tWerebear: Green is such a nice color. Hey, did you hear the one about the Postal Worker and the Ixmram Girl? That's the latest going around the old office here... While we really like Green, we're especially fond of Blue...\n\tCDRodeffer: I have not heard "that one." If you care to share, I'm sure we'd be delighted to hear the story. And Blue is OK. After all, one of our suns is Blue. And in fact, one of our scientists has just now observed an interesting new Blue giant that we'd like to explore. We're being much more cautious these days about who we allow into space, after that postal worker fiasco, so I'm sure there will be no problems this time.\n\n38) Werebear: Move R2 Werebear The_berry_vest_of_the_swirling_eddies\n\tCDRodeffer: Off topic -- tonight my family and I are leaving town for a few days' vacation. We'll be back late on the 11th.\n\tWerebear: Blue... it looks so... blue... we're... our breath has been collectively taken away. It. Is. So. Beautiful. We must see it. We must Possess it. Precious blue.\n\n39) CDRodeffer: Build G1 The_berry_vest_of_the_swirling_eddies\n\n40) Werebear: Build B2 Taxi\n\tCDRodeffer: Possess? Here at CDRodeffer, we've always operated under the principle that no one can really "possess" something so great as a world, much less a star system. These are common areas, to be shared by everyone. So, I'm not sure I understand your intentions when you say "possess." But yes, it is a pretty blue. Upon that much, we are in full agreement.\n\tWerebear: Surely you can see why we love blue so much. It satisfies something deep inside of us. We want... more blue...\n\n41) CDRodeffer: Build G2 The_berry_vest_of_the_swirling_eddies\n\n42) Werebear: Sacrifice G2 Taxi\nBuild B3 Taxi\nBuild B3 Eden\n\tCDRodeffer: I can understand your love of Blue, having lived through a ridiculous, nay, economically ruinous Red fad. I feel your pain.\n\tWerebear: Well, at least Blue (blueblueblueblueblue) isn't ruinous - but I'd hardly call it a fad. Sorry about the long delay - we were in blueness for a long while.\n\n43) CDRodeffer: Build G2 Cdrodeffer\n\tCDRodeffer: Wow. That *is* a lot of blue. I think I'm going to have to go dig out my old pair of "Blue Blocker" sun glasses from 15 years ago, just to see clearly.\n\tCDRodeffer: Wow. That *is* a lot of blue. I think I'm going to have to go dig out my old pair of "Blue Blocker" sun glasses from 15 years ago, just to see clearly.\n\n44) Werebear: Sacrifice B2 Eden\nTrade B3 G3 Eden\nTrade B3 G3 Taxi\n\n45) CDRodeffer: Trade G2 B2 Cdrodeffer\n\tWerebear: Wow, CDRodeffer - you were right. Your soothsayers must have been working overtime. We have gotten over our fad for blue. Green is our new fav. How do you like it? Doesn't it go nice with our shiny new shoes?\n\n46) Werebear: Build G2 Taxi\n\tCDRodeffer: Ooh, shiny. Sorry I'm less than eloquent today, but it's been a very, VERY hectic day at work and at home.\n\tWerebear: Sorry to hear that - do you want to take a break for a few days? I'm not in a hurry, particularly...\n\tCDRodeffer: It's OK. These things are cyclical in my line of work -- goes for a while pretty light, then a heavy load of stuff. I can find time to squeeze in a turn now and then.\n\n47) CDRodeffer: Discover B2 Cdrodeffer Y3 Submarine\n\tWerebear: I guess you're right about that blueness - it must have been a fad. Hey - are you getting into that fad, too?\n\n48) Werebear: Sacrifice G3 Taxi\nBuild G3 Taxi\nBuild B3 Taxi\nBuild B3 Eden\n\tCDRodeffer: No, I don't think Blue will ever be as big a fad as Red and Green have been.\n\n49) CDRodeffer: Sacrifice R1 ぱぱ\nAttack R2S The_berry_vest_of_the_swirling_eddies\n\tWerebear: Yes, we are in complete agreement on that. No more blue for... well, okay, maybe just a couple more...\n\n50) Werebear: Sacrifice B2 Eden\nTrade B1 R1 Taxi\nTrade B3 Y3 Taxi\n\tCDRodeffer: Right. Well, I hate to be such a freeloader, but would you mind if I borrowed this for a minute? Thanks.\n\n51) CDRodeffer: Trade G1 Y1 The_berry_vest_of_the_swirling_eddies\n\tWerebear: You took my pretty red ship? Haven't you seen the folly of the red war path? Well, okay, you can borrow it. Does that mean we can borrow something from you later?\n\n52) Werebear: Sacrifice Y3 Taxi\nMove G3 Eden Cdrodeffer\nMove R3 Eden Cdrodeffer\nMove B3 Eden Cdrodeffer\n\tCDRodeffer: Oh, I see no reason why we shouldn't be able to borrow from one another, as each has need. I've gotten along "OK" with just these small little ships for most of the game, but I see that you've accummulated many more, and here at CDRodeffer, we generally share many things in common. But hey, how goes your archeological research? Surely you must have some peaceful reason for having so many ships these days, seeing as how both matter and energy are so precious.\n\tWerebear: Oh, our research is going just great! In fact, hang on a moment, we'll show you some of the things we've found! First, a little "razzle-dazzle"...\n\n53) CDRodeffer: Sacrifice R2 ぱぱ\nAttack R3 Cdrodeffer\nAttack G3 Cdrodeffer\n\tWerebear: I know we've been a bit greedy with our big ships - perhaps you'd like to help yourself to one or two of them? We won't mind at all... I'm so glad you won't mind if we borrow some, say, parking spaces from you for a while...\n\tCDRodeffer: Wow! That is impressive, indeed. Thanks for sending over those ships! I'm sure they'll come in handy.\n\n54) Werebear: Sacrifice R3 Werebear\nAttack R3 Cdrodeffer\nAttack G3 Cdrodeffer\nAttack R3 Cdrodeffer\n\tWerebear: Hey, you're only borrowing those, right? They are nice and roomy... but... Hey - did you see our cool artifacts? They are stored in our pretty shiny red ship! Check 'em out... see?\n\n55) CDRodeffer: Build Y1 The_berry_vest_of_the_swirling_eddies\n\tWerebear: Oh my. I think our postal workers went crazy! First they stole our original star cruiser, and then they crashed it - and then, heck, I don't know what happened! Umm... If I were you, I'd think about getting that little green ship of yours out of there. I think your postal workers must be in cahoots with our'n...\n\tCDRodeffer: Oh, man. Well. I think I'm going to ask our administrators to consider re-establishing a new home for the CDRodeffer population on The_Berry_Vest_of_the_Swirling_Eddies. They have great music there, dontcha know. Have you ever heard them? I especially like the song "Outdoor Elvis" from their second album and "Home Permanent" from their first.\n\tCDRodeffer: I can't see any other way out of our recent environmental disaster. The smog and polution from those large ships is choking our population. We've decided to go off to found a new "Home Permanent" at The_Berry_Vest_of_the_Swirling_Eddies.\n\tCDRodeffer: Ugg. It seems that the propulsion system on that small green ship isn't working properly, and it won't budge. If you can get it running, consider it a gift. Meanwhile, we're going to make do as best we can at our new home.\n\n56) Werebear: Attack G1 Cdrodeffer\n\tWerebear: I think you may just have it pointed the wrong way - I'll turn it around and see if that helps...\n\n\nHomeworlds Online (SDG# 771)\nStarted: 2005.9.26, Ended: 2005.10.29\nParticipants: Kermit (S), rootbeer (N), MatrixFrog (E)\nWinner: Kermit\n\n1) rootbeer: Homeworld B1 G2 Y3 Rootbeer\n\n2) MatrixFrog: Homeworld Y1 B3 G3\n\n3) Kermit: Homeworld Y2 G3 B3\n\trootbeer: For the record, I have yet to actually win at a game of Homeworlds. Are either of you secretly world champion, by chance?\n\trootbeer: Howdy, Kermit. Or perhaps I should say, "So, we meet again." :-)\n\n4) rootbeer: Trade Y3 G3 Rootbeer\n\tKermit: Well, since I got eliminated first in our other game, I think not. This is only the second time I have played homeworlds even though I have 5 stashes of Pyramids.\n\n5) MatrixFrog: Build G1 Matrixfrog\n\trootbeer: I thought this would be an easier game than it turned out to be. But I still don't know whether I really like it. Maybe after I win, I'll like it. :-)\n\n6) Kermit: Construct B1 Kermit\n\n7) rootbeer: Build G1 Rootbeer\n\n8) MatrixFrog: Trade G3 Y3 Matrixfrog\n\tMatrixFrog: I'm certainly not world champion. I've only played a few times in real life, and around 10 or so here, I think. All I can say is, read the suggestions on the wiki, and learn from your mistakes.\n\n9) Kermit: Discover B1 Kermit Y1 Slinky\n\n10) rootbeer: Trade G3 Y3 Rootbeer\n\tKermit: Well I read the suggestions in the wiki and it didn't help me at all in my last game. Perhaps if I had read them BEFORE the game started.\n\n11) MatrixFrog: Build G1 Matrixfrog\n\n12) Kermit: Build B1 Kermit\n\n13) rootbeer: Construct Y1 Rootbeer\n\n14) MatrixFrog: Trade G1 B1 Matrixfrog\n\n15) Kermit: Trade B1 G1 Kermit\n\n16) rootbeer: Discover Y1 Rootbeer G3 Honker\n\n17) MatrixFrog: Build G1 Matrixfrog\n\n18) Kermit: Build G2 Kermit\n\tMatrixFrog: I think the biggest suggestion in the wiki is the one about building your homeworld. So that would make sense. Heh.\n\n19) rootbeer: Build G2 Rootbeer\n\tKermit: Yea that was the suggestion I had in mind. After turn two or so I read the wiki and realized my mistake. I knew my position was bad before that tho. Now I know why. hehehe \n\n20) MatrixFrog: Build B1 Matrixfrog\n\n21) Kermit: Move G2 Kermit Slinky\n\n22) rootbeer: Move G2 Rootbeer Honker\n\n23) MatrixFrog: Trade B1 R1 Matrixfrog\n\n24) Kermit: Trade G1 B1 Kermit\n\n25) rootbeer: Build Y1 Honker\n\n26) MatrixFrog: Discover G1 Matrixfrog Y2 Gamma\n\n27) Kermit: Build B2 Slinky\n\n28) rootbeer: Construct Y2 Rootbeer\n\n29) MatrixFrog: Build G1 Gamma\n\n30) Kermit: Trade B2 R2 Slinky\n\n31) rootbeer: Build G2 Honker\n\n32) MatrixFrog: Discover G1 Gamma Y3 Delta\n\n33) Kermit: Move G2 Slinky Honker\nCatastrophe Honker Green\n\n34) rootbeer: Build G2 Rootbeer\n\tKermit: Fall down go BOOM!\n\n35) MatrixFrog: Move G1 Delta Rootbeer\nCatastrophe Rootbeer G\n\n36) Kermit: Trade B1 G1 Kermit\n\tMatrixFrog: Interesting: "The Honker system has gone supernova." So I guess when the system marker itself is part of the catastrophe, it's called a "supernova" as opposed to that hyperspatial flux thing. Is that new, or did I just not notice it?\n\n37) rootbeer: Trade Y3 G3 Rootbeer\n\tKermit: I am not sure if that is new or not\r\n\n\n38) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n39) Kermit: Move R2 Slinky Gamma\n\n40) rootbeer: Build Y1 Rootbeer\n\n41) MatrixFrog: Move G1 Gamma Rootbeer\n\n42) Kermit: Move G1 Kermit Slinky\n\tMatrixFrog: The way I typed that was "move g1 Gamma rootbeer" and it occurred to me that a drink called Gamma Rootbeer" would probably sell quite well.\n\trootbeer: Try Gamma Rootbeer! Now 80% less radioactive!\r\n\n\n43) rootbeer: Trade G3 R3 Rootbeer\n\n44) MatrixFrog: Build G1 Rootbeer\n\n45) Kermit: Build G2 Slinky\n\n46) rootbeer: Attack G1E Rootbeer\n\n47) MatrixFrog: Build G2 Rootbeer\n\n48) Kermit: Move G1 Slinky Gamma\n\n49) rootbeer: Trade G1 B1 Rootbeer\n\n50) MatrixFrog: Build G1 Rootbeer\n\n51) Kermit: Move G1 Gamma Rootbeer\nCatastrophe Rootbeer G\n\n52) rootbeer: Trade B1 G1 Rootbeer\n\n53) MatrixFrog: Build B1 Matrixfrog\n\n54) Kermit: Move B1 Slinky Gamma\n\n55) rootbeer: Build R1 Rootbeer\n\n56) MatrixFrog: Discover B1 Matrixfrog Y2 Feesko\n\n57) Kermit: Move G2 Slinky Gamma\n\n58) rootbeer: Trade Y2 B2 Rootbeer\n\n59) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild B2 Feesko\n\n60) Kermit: Build B2 Gamma\n\n61) rootbeer: Trade B2 G2 Rootbeer\n\n62) MatrixFrog: Trade B1 G1 Feesko\n\n63) Kermit: Trade G2 Y2 Gamma\n\n64) rootbeer: Discover G1 Rootbeer Y3 Arcturus\n\n65) MatrixFrog: Move B1 Matrixfrog Feesko\n\n66) Kermit: Move R2 Gamma Arcturus\n\n67) rootbeer: Discover R1 Rootbeer Y3 Solsystem\n\n68) MatrixFrog: Build G1 Matrixfrog\n\n69) Kermit: Attack G1N Arcturus\n\n70) rootbeer: Build Y1 Rootbeer\n\n71) MatrixFrog: Trade G3 Y3 Matrixfrog\n\n72) Kermit: Move R2 Arcturus Feesko\n\n73) rootbeer: Build R1 Rootbeer\n\n74) MatrixFrog: Build B1 Feesko\n\n75) Kermit: Attack B2E Feesko\n\n76) rootbeer: Discover Y1 Rootbeer B2 India\n\n77) MatrixFrog: Discover B1 Feesko Y3 Shortage\n\n78) Kermit: Attack G1E Feesko\n\tKermit: if I am not arround this weekend or early next week it will be because of Hurricane Wilma. Doesn't look like it'll hit here but neither did Charley last year.\n\n79) rootbeer: Trade G2 B2 Rootbeer\n\trootbeer: Thanks for letting us know, Kermit.\r\n\n\n80) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild B3 Feesko\n\trootbeer: I hope you make it through with no problems.\n\tKermit: It shouldn't be a big deal. All of the models have it going about 60-70 miles south of here (Punta Gorda). We'll get some ugly weather but it shouldn't be too severe. After Charley though we're all a little extra wary here (understandably so). \n\tMatrixFrog: Hope it works out like the models say, then...\n\n81) Kermit: Build B3 Feesko\nCatastrophe Feesko Blue\n\n82) rootbeer: Trade R1 G1 Rootbeer\n\n83) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n84) Kermit: Build R1 Feesko\n\n85) rootbeer: Build R1 Rootbeer\n\n86) MatrixFrog: Move B1 Shortage Rootbeer\n\n87) Kermit: Move B1 Gamma Rootbeer\nCatastrophe Rootbeer B\n\n\n88) MatrixFrog: Build G1 Matrixfrog\n\n89) Kermit: Move G1 Arcturus Gamma\n\n90) MatrixFrog: Move G1 Matrixfrog Gamma\n\n91) Kermit: Build B1 Gamma\n\n92) MatrixFrog: Discover G1 Gamma Y1 Borsko\n\n93) Kermit: Move R1 Feesko Solsystem\n\n94) MatrixFrog: Build G1 Matrixfrog\n\n95) Kermit: Sacrifice Y2 Gamma\nMove G1 Gamma Matrixfrog\nMove G1 Feesko Matrixfrog\nCatastrophe Matrixfrog G\n\n96) MatrixFrog: Build G1 Borsko\n\n97) Kermit: Move R2 Feesko Matrixfrog\n\n98) MatrixFrog: Sacrifice G1 Borsko\nBuild R1 Matrixfrog\n\tMatrixFrog: Uh oh!!!\n\n99) Kermit: Attack R1E Matrixfrog\n\tMatrixFrog: I have successfully delayed my death for one, maybe two more turns. But I do believe I've lost.\n\tKermit: good game.\n\n100) MatrixFrog: Trade R1 G1 Matrixfrog\n\n101) Kermit: Attack G1E Matrixfrog\n\n\nHomeworlds Online (SDG# 760)\nStarted: 2005.9.26, Ended: 2005.10.1\nParticipants: MatrixFrog (S), pigasuspig (N)\nWinner: pigasuspig\n\n1) pigasuspig: Homeworld G3 B1 Y3\n\n2) MatrixFrog: Homeworld B3 Y2 G3\n\n3) pigasuspig: Build Y1 Pigasuspig\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) pigasuspig: Build Y1 Pigasuspig\n\n\n6) MatrixFrog: Build G1 Matrixfrog\n\n7) pigasuspig: Trade Y1 G1 Pigasuspig\n\n8) MatrixFrog: Trade G1 Y1 Matrixfrog\n\n9) pigasuspig: Discover G1 Pigasuspig B2 Sapphire\n\n10) MatrixFrog: Build Y1 Matrixfrog\n\n11) pigasuspig: Build G1 Sapphire\n\n12) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n13) pigasuspig: Build G2 Sapphire\n\n14) MatrixFrog: Trade G1 R1 Matrixfrog\n\n15) pigasuspig: Trade G1 Y1 Sapphire\n\n16) MatrixFrog: Build R1 Matrixfrog\n\n17) pigasuspig: Build Y2 Sapphire\n\n18) MatrixFrog: Build B1 Matrixfrog\n\n19) pigasuspig: Build Y2 Sapphire\n\n20) MatrixFrog: Trade B1 G1 Matrixfrog\n\n21) pigasuspig: Build Y3 Pigasuspig\n\n22) MatrixFrog: Discover Y1 Matrixfrog G1 Escape\n\n23) pigasuspig: Trade Y1 R1 Sapphire\n\n24) MatrixFrog: Discover Y1 Escape G2 Escapeii\n\n25) pigasuspig: Trade Y3 R3 Pigasuspig\n\tMatrixFrog: that's "II" as in the roman numeral 2, not LL or one-one.\n\n26) MatrixFrog: Build G1 Matrixfrog\n\tpigasuspig: thanks\n\n27) pigasuspig: Build R2 Pigasuspig\n\n28) MatrixFrog: Build Y1 Escapeii\n\n29) pigasuspig: Sacrifice Y2 Sapphire\nDiscover G1 Sapphire B1 Disposable\nMove G1 Disposable Matrixfrog\nCatastrophe Matrixfrog G\n\n30) MatrixFrog: Move Y1 Escapeii Pigasuspig\n\n31) pigasuspig: Sacrifice Y2 Sapphire\nDiscover G2 Sapphire G1 Throwaway\nMove G2 Throwaway Matrixfrog\n\n32) MatrixFrog: Move Y1 Escapeii Pigasuspig\nCatastrophe Pigasuspig Y\n\n33) pigasuspig: Sacrifice R3 Pigasuspig\nAttack R1S Matrixfrog\nAttack R1S Matrixfrog\nAttack B1S Matrixfrog\n\n\nHomeworlds Online (SDG# 780)\nStarted: 2005.9.28, Ended: 2005.10.3\nParticipants: zevzimra (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) zevzimra: Homeworld G2 B3 Y3\n\tzevzimra: Andy? OMG, I am very honored!\n\n3) andylooney: Build Y1 Andylooney\n\n4) zevzimra: Build Y1 Zevzimra\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) zevzimra: Discover Y1 Zevzimra G1 Wolfsong\n\tandylooney: yup, it's me! I saw an open binary game and jumped in. So, do I know you?\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) zevzimra: Build Y1 Zevzimra\n\tzevzimra: Regretfully, no, we have never met... but I am a big fan! \n\n9) andylooney: Build G1 Clampett\n\n10) zevzimra: Build Y1 Wolfsong\n\n11) andylooney: Discover G1 Clampett B1 Cobalt\n\n12) zevzimra: Trade Y1 B1 Zevzimra\n\n13) andylooney: Build G2 Cobalt\n\n14) zevzimra: Move B1 Zevzimra Wolfsong\n\n15) andylooney: Build G3 Clampett\n\n16) zevzimra: Build B2 Wolfsong\n\n17) andylooney: Sacrifice G3 Clampett\nBuild G3 Clampett\nBuild G3 Clampett\nBuild G3 Cobalt\n\n18) zevzimra: Construct B2 Wolfsong\n\n19) andylooney: Trade G3 R3 Cobalt\n\n20) zevzimra: Build Y1 Zevzimra\n\n21) andylooney: Trade G2 Y2 Cobalt\n\n22) zevzimra: Trade B2 R2 Wolfsong\n\n23) andylooney: Sacrifice G3 Clampett\nBuild G2 Clampett\nBuild G3 Cobalt\nBuild G3 Cobalt\n\n24) zevzimra: Build B2 Wolfsong\n\n25) andylooney: Move G3 Clampett Wolfsong\n\n26) zevzimra: Move R2 Wolfsong Clampett\n\n27) andylooney: Sacrifice R3 Cobalt\nAttack R2S Clampett\nAttack B2S Wolfsong\nAttack B2S Wolfsong\n\n28) zevzimra: Trade Y1 R1 Zevzimra\n\tzevzimra: Ouch\n\n29) andylooney: Trade B2 R2 Wolfsong\n\n\tzevzimra: I regretfully resign... you are certainly a master at this!\n\tSYSTEM: zevzimra resigns.\n\nHomeworlds Online (SDG# 792)\nStarted: 2005.9.28, Ended: 2005.10.4\nParticipants: andylooney (S), MatrixFrog (N)\nWinner: andylooney\n\n1) MatrixFrog: Homeworld G2 B1 Y3\n\tMatrixFrog: Hooray! Thank you! I'm sure you'll crush me easily, but that's okay. Good luck!\n\n2) andylooney: Homeworld G2 B3 Y3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\tandylooney: it's my pleasure!\r\n\n\n4) andylooney: Build Y1 Andylooney\n\n5) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n6) andylooney: Trade Y1 B1 Andylooney\n\n7) MatrixFrog: Build B2 Matrixfrog\n\n8) andylooney: Discover B1 Andylooney G1 Paradise\n\n9) MatrixFrog: Trade B2 R2 Matrixfrog\n\n10) andylooney: Build B2 Paradise\n\n11) MatrixFrog: Build B2 Matrixfrog\n\n12) andylooney: Build B2 Paradise\n\n13) MatrixFrog: Discover B1 Matrixfrog Y3 Magnesium\n\n14) andylooney: Trade B2 Y2 Paradise\n\n15) MatrixFrog: Move B1 Magnesium Paradise\n\n16) andylooney: Trade B2 R2 Paradise\n\n17) MatrixFrog: Build B2 Paradise\n\n18) andylooney: Attack B2N Paradise\n\tandylooney: I'm having trouble... when I say attack b2 paradise, it says "The ship B2S could not be found in the paradise system."\n\tMatrixFrog: I replied to your email. In case that doesn't go through:<br><br>The system is designed for 3 and 4 player games, and doesn't modify itself for 2 player games. You are South and I am North (your homeworld has an (S) after it and mine has an (N) so you have to type "attack b2n paradise" to indicate that you mean MY b2 ship and not someone else's. In this case, there is only one b2, so it's unambiguous, but the system still requires it. Make sense? \n\n19) MatrixFrog: Build B2 Paradise\n\tandylooney: Ah! I see. I should have read the fine print!\n\n20) andylooney: Sacrifice Y2 Paradise\nDiscover R2 Paradise G3 Garden\nMove B2 Paradise Garden\n\tMatrixFrog: I never understood why they bothered with all that "catastrophes are optional" stuff until now.\n\n21) MatrixFrog: Trade B2 R2 Matrixfrog\n\n22) andylooney: Build B2 Paradise\nCatastrophe Paradise Blue\n\n23) MatrixFrog: Trade Y3 G3 Matrixfrog\n\tMatrixFrog: blue is called "salvage technology"? i would have called it "trade technology" or "conversion technology"... weird\n\n24) andylooney: Build R1 Garden\n\n25) MatrixFrog: Trade R2 Y2 Matrixfrog\n\n26) andylooney: Trade R1 Y1 Garden\n\n27) MatrixFrog: Build G1 Matrixfrog\n\n28) andylooney: Build Y1 Andylooney\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) andylooney: Trade Y1 G1 Andylooney\n\n31) MatrixFrog: Trade G1 B1 Matrixfrog\n\n32) andylooney: Discover G1 Andylooney Y1 Gateway\n\n33) MatrixFrog: Build R1 Matrixfrog\n\n34) andylooney: Build Y2 Andylooney\n\n35) MatrixFrog: Discover B1 Matrixfrog Y3 Epsilon\n\n36) andylooney: Discover G1 Gateway Y3 Goldenrock\n\n37) MatrixFrog: Trade B1 G1 Epsilon\n\n38) andylooney: Discover Y2 Andylooney G1 Niceplace\n\n39) MatrixFrog: Discover G1 Epsilon Y1 Theta\n\n40) andylooney: Build Y2 Garden\n\n41) MatrixFrog: Sacrifice Y1 Matrixfrog\nMove G1 Theta Andylooney\n\n42) andylooney: Build R1 Garden\n\n43) MatrixFrog: Move R1 Matrixfrog Goldenrock\n\n44) andylooney: Sacrifice R2 Garden\nAttack R1N Goldenrock\nAttack G1N Andylooney\n\n45) MatrixFrog: Move R2 Matrixfrog Goldenrock\n\n46) andylooney: Sacrifice Y2 Garden\nMove G1 Goldenrock Niceplace\nMove R1 Goldenrock Niceplace\n\n47) MatrixFrog: Build G2 Matrixfrog\n\n48) andylooney: Build G3 Andylooney\n\n49) MatrixFrog: Move G2 Matrixfrog Goldenrock\n\n50) andylooney: Discover G3 Andylooney Y1 Littleyellowdifferent\n\n51) MatrixFrog: Build Y1 Matrixfrog\n\n52) andylooney: Move G1 Andylooney Littleyellowdifferent\n\n53) MatrixFrog: Move Y1 Matrixfrog Goldenrock\n\n54) andylooney: Sacrifice G3 Littleyellowdifferent\nBuild G3 Littleyellowdifferent\nBuild Y2 Niceplace\nBuild Y3 Garden\n\n55) MatrixFrog: Build R1 Goldenrock\n\n56) andylooney: Sacrifice Y3 Garden\nMove Y1 Garden Littleyellowdifferent\nMove Y1 Littleyellowdifferent Goldenrock\nMove Y2 Niceplace Goldenrock\nCatastrophe Goldenrock Yellow\n\n57) MatrixFrog: Discover G3 Matrixfrog Y3 Zeta\n\n58) andylooney: Sacrifice Y2 Niceplace\nMove G3 Littleyellowdifferent Garden\nMove G3 Garden Matrixfrog\n\n59) MatrixFrog: Build Y1 Matrixfrog\n\n60) andylooney: Sacrifice R1 Niceplace\nAttack Y2N Matrixfrog\n\n61) MatrixFrog: Build Y1 Matrixfrog\n\n62) andylooney: Build Y2 Matrixfrog\nCatastrophe Matrixfrog Yellow\n\n\nHomeworlds Online (SDG# 777)\nVariants: "Left man down"\nStarted: 2005.9.29, Ended: 2005.10.7\nParticipants: rootbeer (S), istari (W), zevzimra (N), Kermit (E)\nWinner: zevzimra\n\n1) zevzimra: Homeworld B1 G2 Y3\n\n2) Kermit: Homeworld G1 Y2 B3\n\n3) rootbeer: Homeworld B3 G1 Y3\n\n4) istari: Homeworld G3 B1 Y3\n\n5) zevzimra: Build Y1 Zevzimra\n\tzevzimra: Good luck!\n\n6) Kermit: Build B1 Kermit\n\n7) rootbeer: Build Y1 Rootbeer\n\n8) istari: Build Y1 Istari\n\n9) zevzimra: Trade Y1 G1 Zevzimra\n\n10) Kermit: Discover B1 Kermit G3 Crate\n\n11) rootbeer: Trade Y1 G1 Rootbeer\n\n12) istari: Trade Y1 R1 Istari\n\n13) zevzimra: Discover G1 Zevzimra Y3 Zipper\n\n14) Kermit: Build B1 Crate\n\n15) rootbeer: Build Y1 Rootbeer\n\n16) istari: Build R1 Istari\n\n17) zevzimra: Build G1 Zipper\n\n18) Kermit: Trade B1 R1 Crate\n\n19) rootbeer: Build G2 Rootbeer\n\n20) istari: Discover R1 Istari G2 Smile\n\n21) zevzimra: Build G2 Zipper\n\n22) Kermit: Build B1 Kermit\n\n23) rootbeer: Discover G1 Rootbeer B2 Dirigible\n\n24) istari: Trade R1 B1 Istari\n\n25) zevzimra: Construct Y1 Zevzimra\n\n26) Kermit: Build B2 Crate\n\n27) rootbeer: Build G2 Dirigible\n\n28) istari: Build B2 Istari\n\n29) zevzimra: Discover G1 Zipper R1 Pants\n\n30) Kermit: Trade B2 R2 Crate\n\n31) rootbeer: Trade G1 Y1 Dirigible\n\n32) istari: Trade B1 G1 Istari\n\n33) zevzimra: Sacrifice G2 Zipper\nBuild G2 Zipper\nBuild G3 Zipper\n\n34) Kermit: Build B1 Crate\n\n35) rootbeer: Discover Y1 Rootbeer B2 Bobloblaw\n\n36) istari: Construct G3 Istari\n\n37) zevzimra: Move G3 Zipper Zevzimra\n\n38) Kermit: Trade B1 Y1 Crate\n\n39) rootbeer: Build G3 Rootbeer\n\n40) istari: Move G3 Istari Dirigible\n\n41) zevzimra: Trade G3 R3 Zevzimra\n\n42) Kermit: Move R1 Crate Bobloblaw\n\n43) rootbeer: Trade Y3 R3 Rootbeer\n\n44) istari: Construct G3 Istari\n\n45) zevzimra: Trade Y1 B1 Zevzimra\n\n46) Kermit: Attack Y1S Bobloblaw\n\n47) rootbeer: Build R1 Rootbeer\n\n48) istari: Trade G3 R3 Istari\n\n49) zevzimra: Move B1 Zevzimra Zipper\n\n50) Kermit: Pass\n\n51) rootbeer: Discover Y1 Dirigible G3 Floo\n\n52) istari: Sacrifice G3 Dirigible\nBuild B2 Istari\nBuild Y1 Istari\nBuild G3 Istari\n\n53) zevzimra: Construct B2 Zipper\n\n54) Kermit: Move B1 Crate Bobloblaw\n\n55) rootbeer: Build Y1 Floo\n\n56) istari: Move G3 Istari Smile\n\n57) zevzimra: Sacrifice Y3 Zevzimra\nMove B1 Zipper Kermit\nMove B2 Zipper Kermit\nMove G1 Zipper Zevzimra\nCatastrophe Kermit B\n\n\nHomeworlds Online (SDG# 812)\nStarted: 2005.9.30, Ended: 2005.9.30\nParticipants: sketchwick (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y2 B1 G3\n\n2) sketchwick: Homeworld B2 G1 R3\n\n3) jeep: Construct G1 Jeep\n\n4) sketchwick: Build R1 Sketchwick\n\n5) jeep: Build G1 Jeep\n\n6) sketchwick: Trade R1 Y1 Sketchwick\n\n7) jeep: Trade G1 R1 Jeep\n\n8) sketchwick: Discover R3 Sketchwick G3 Sproutdeath\n\n9) jeep: Build R1 Jeep\n\n10) sketchwick: Build Y1 Sketchwick\n\n11) jeep: Trade R1 Y1 Jeep\n\n12) sketchwick: Move Y1 Sketchwick Sproutdeath\n\n13) jeep: Discover Y1 Jeep G3 Sproutgo\n\n14) sketchwick: Build R1 Sproutdeath\n\n15) jeep: Build Y2 Sproutgo\n\n16) sketchwick: Move R3 Sproutdeath Jeep\n\n17) jeep: Attack R3S Jeep\n\n18) sketchwick: Build Y2 Sketchwick\n\n19) jeep: Sacrifice Y2 Sproutgo\nMove R3 Jeep Sproutgo\nMove R3 Sproutgo Sketchwick\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 813)\nStarted: 2005.9.30, Ended: 2005.9.30\nParticipants: sketchwick (S), jeep (N)\nWinner: sketchwick\n\n1) jeep: Homeworld Y3 B2 G3\n\n2) sketchwick: Homeworld Y3 G1 B3\n\n3) jeep: Build G1 Jeep\n\n4) sketchwick: Build B1 Sketchwick\n\n5) jeep: Build G1 Jeep\n\n6) sketchwick: Build B1 Sketchwick\n\n7) jeep: Discover G1 Jeep B1 Trada\n\n8) sketchwick: Discover B1 Sketchwick R2 Yada\n\n9) jeep: Build G2 Trada\n\n10) sketchwick: Trade B3 Y3 Sketchwick\n\n11) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G2 Trada\nBuild G3 Jeep\n\n12) sketchwick: Build Y1 Sketchwick\n\n13) jeep: Discover G2 Jeep Y1 Mova\n\n14) sketchwick: Build B2 Sketchwick\n\n15) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Mova\nBuild G3 Mova\n\n16) sketchwick: Trade B2 R2 Sketchwick\n\n17) jeep: Trade G1 R1 Jeep\n\n18) sketchwick: Move Y3 Sketchwick Yada\n\n19) jeep: Trade G2 Y2 Trada\n\n20) sketchwick: Discover R2 Sketchwick Y2 Huba\n\n21) jeep: Sacrifice G3 Mova\nBuild G1 Mova\nBuild G2 Jeep\nBuild G3 Trada\n\n22) sketchwick: Build B2 Sketchwick\n\n23) jeep: Trade G2 B2 Trada\n\n24) sketchwick: Trade B2 G2 Sketchwick\n\n25) jeep: Sacrifice Y2 Trada\nMove G3 Mova Huba\nMove G3 Huba Sketchwick\n\n26) sketchwick: Move Y3 Yada Mova\n\n27) jeep: Sacrifice R1 Jeep\nAttack G2S Sketchwick\n\n28) sketchwick: Move Y3 Mova Jeep\n\n29) jeep: Sacrifice G2 Sketchwick\nBuild G2 Jeep\nBuild B2 Trada\n\n30) sketchwick: Sacrifice R2 Huba\nAttack G3N Jeep\nAttack G2N Jeep\n\n31) jeep: Sacrifice B2 Trada\nTrade G3 R3 Sketchwick\nTrade G2 Y2 Mova\n\n32) sketchwick: Build G2 Jeep\nCatastrophe Jeep G\n\n\nHomeworlds Online (SDG# 823)\nStarted: 2005.9.30, Ended: 2005.10.6\nParticipants: Samaculus (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld Y1 B2 G3\n\n2) Samaculus: Homeworld B3 G2 Y1\n\n3) MatrixFrog: Build G1 Matrixfrog\n\n4) Samaculus: Build Y1 Samaculus\n\n5) MatrixFrog: Build G1 Matrixfrog\n\n6) Samaculus: Build Y2 Samaculus\n\n7) MatrixFrog: Trade G3 Y3 Matrixfrog\n\n8) Samaculus: Discover Y1 Samaculus G1 Heiphon\n\n9) MatrixFrog: Build Y2 Matrixfrog\n\n10) Samaculus: Discover Y1 Heiphon G2 Sentinel\n\n11) MatrixFrog: Discover Y2 Matrixfrog R3 Scorch\n\n12) Samaculus: Discover Y1 Sentinel G3 Heiphon\n\n13) MatrixFrog: Trade G1 B1 Matrixfrog\n\n14) Samaculus: Build Y2 Heiphon\n\n15) MatrixFrog: Trade Y3 B3 Matrixfrog\n\n16) Samaculus: Build Y3 Samaculus\n\n17) MatrixFrog: Discover Y2 Scorch G1 Delta\n\n18) Samaculus: Move Y1 Samaculus Delta\n\n19) MatrixFrog: Move Y2 Delta Samaculus\n\n20) Samaculus: Move Y1 Delta Heiphon\n\n21) MatrixFrog: Build Y3 Samaculus\nCatastrophe Samaculus Y\n\n\nHomeworlds Online (SDG# 817)\nStarted: 2005.10.1, Ended: 2005.10.7\nParticipants: Jesse (S), dralius (N)\nWinner: Jesse\n\n1) dralius: Homeworld Y1 G1 R1\n\tdralius: Hi, new to this game so i may be slow.\r\n\n\n2) Jesse: Homeworld G1 B1 R1\n\tJesse: Slow is okay. I recommend, though, that you take a look at the wiki, where I've written some important strategy tips for new players. The number one thing I'd point out is that you should choose a large ship to start, not a small one. To be sporting, I'll also take a small ship.\n\n3) dralius: Build R1 Dralius\n\tdralius: i am still working out how to write the comands, it seems that i can't construct a shit at this point.\r\n\n\tdralius: it says i must have that type of ship to constuct it and it says there is not sufficiant red to build one either.\n\tdralius: if i can't build a ship what can i do?\r\n\n\tJesse: You can only build a ship of the same color as a ship you already own in the system where you're building it, so it would have to be red. I don't understand the error about insufficient red; clearly there are red 'mids available. Are you trying to build a medium or large ship? You must build the smallest available of that color.\n\tJesse: The command should be: "construct r1 dralius"\n\n4) Jesse: Build R2 Jesse\n\tdralius: i think my problem was i assumed it knew what the smallest value was so i didn't need to tell it that is was a 1\r\n\n\tJesse: Ah, yes. It appears there are some poor error messages for that kind of malformed command.\n\n5) dralius: Discover R1 Dralius Y3 Occularies\n\tAaron: I apologize. What is happening is once an error occurs, it shouldn't continue checking for other errors. Because it's not "short-circuiting," you sometimes get multiple errors that don't really make sense. This is indeed on my TODO list and I just haven't gotten around to it. I *will* get to it though.\n\tAaron: I will consider changing the "construct" command as well so that you do not have to enter a size. I guess I always err on the side of expliciteness so as to minimize surprises and unanticipated results.\n\tdralius: here is a question. with the object being to destroy the other player/s. In a two player game is there any point on doing anything other than build ships and attack.\n\tdralius: second question: is there any way to block an attack?\r\n\n\n6) Jesse: Trade R2 Y2 Jesse\n\tJesse: To question one, I would say there's actually a lot of complexity just in those two general areas of production and attack. Particularly when it comes to production, you want to try to exploit the stash and the game position to outproduce your opponent. This can include making a run on a particular color to try to limit your opponent's options in some way, such as leaving him unmaneuverable because he doesn't have enough yellow.\n\tJesse: To the second question, in what sense do you mean? There are various kinds of attacks, and various ways of protecting yourself. For instance, to protect yourself from catastrophes, limit the number of 'mids of a given color in a system.\n\n7) dralius: Build R2 Dralius\n\tJesse: Now that I have a Y2 ship, I can sacrifice it to hop a ship directly into your home system, so you'll have to watch for that.\n\n8) Jesse: Build R2 Jesse\n\tdralius: my second question is literal. If i am in a position to attack you there seems to be nothing you can do to stop it. Am i correct?\n\tJesse: Right. Of course, when you move into attack position, it will be my turn next, so you'll have to account for whatever I might do (such as being able to attack your ship) before you get to carry out the attack.\n\n9) dralius: Discover R1 Occularies B2 Stomell\n\tJesse: Now, beware of the fact that I can hop one of my red ships into your homeworld, so you can't afford to build a third one there.\n\tJesse: You may find yourself rather limited if you have nothing but red ships; it's generally good to diversify. To do that, you'll have to find a blue planet sometime.\n\tdralius: why?\r\n\n\tdralius: i may be missing something but i don't see the point in having blue. Yello allows me to move - i have that and green to produce i have that.\r\n\r\n\n\n10) Jesse: Discover R2 Jesse Y3 Stage\n\tdralius: ok now i am in a blue system.\r\n\n\tJesse: Yes, you have yellow and green, but you only have red ships. First off, that leaves you vulnerable to catastrophes. A single red catastrophe in your system will wipe you out. Second, ship sacrifices are a very important part of the game. Having yellow ships to sacrifice allows you to move multiple ships on one turn, which is an important attack technique. Large green ships can boost your production by building multipe ships in one turn. As long as you can rebuild the large green as part of the maneuver, you don't lose anything.\n\n11) dralius: Trade R1 G1 Stomell\n\tdralius: sorry still thinking about my move\r\n\n\n12) Jesse: Build R1 Jesse\n\n13) dralius: Build G2 Stomell\n\n14) Jesse: Build R2 Jesse\n\n15) dralius: Trade G2 Y2 Stomell\n\n16) Jesse: Move R1 Jesse Stage\n\n17) dralius: Move G1 Stomell Dralius\n\tJesse: What would happen if I sacrificed my y2 to move the ships from Stage to your homeworld?\n\tdralius: other than you capturing it?\r\n\n\tdralius: nothing i can do about that now.\r\n\n\tdralius: you could distroy my system.\r\n\n\tdralius: construct g2 dralius\n\tdralius: can't do that i guess, i don't see the solution\r\n\r\n\n\n18) Jesse: Build R3 Jesse\n\tJesse: Right. Now I can't wipe you out with a single blow. Do you see how I've had you scrambling to protect your homeworld while I build strength, largely due to that little extra bit of flexibility I had with the yellow ship?\n\n\tdralius: How can you wipe out all 3 ships\n\tdralius: Either way i think its over. Thanks for the game, i guess this it is a bit to oblique for me.\n\tSYSTEM: dralius resigns.\n\nHomeworlds Online (SDG# 816)\nVariants: "Left man down"\nStarted: 2005.10.1, Ended: 2005.10.12\nParticipants: Subhan64 (S), Samaculus (W), MatrixFrog (N), istari (E)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld B1 Y2 G3\n\n2) istari: Homeworld B1 G2 Y3\n\n3) Subhan64: Homeworld B3 G1 Y3\n\n4) MatrixFrog: Build G1 Matrixfrog\n\tSubhan64: Shoot. If we force resign, can we continue with the game?\n\trootbeer: You should be able to continue, I think. It should be much like any other way that a player is eliminated.\n\n5) istari: Build Y1 Istari\n\tSYSTEM: Samaculus resigns.\n\tAaron: I apologize for the error. It's my bad. I have reset the current player and (I think) have fixed the original bug. Cheers!\n\n6) Subhan64: Build Y1 Subhan64\n\n7) MatrixFrog: Discover G1 Matrixfrog Y3 Alpha\n\n8) istari: Trade Y1 R1 Istari\n\n9) Subhan64: Build Y1 Subhan64\n\n10) MatrixFrog: Build G1 Alpha\n\n11) istari: Build Y1 Istari\n\n12) Subhan64: Trade Y3 R3 Subhan64\n\n13) MatrixFrog: Build G1 Matrixfrog\n\tSubhan64: trade y3 r3 subhan64\n\n14) istari: Build R1 Istari\n\n15) Subhan64: Build R1 Subhan64\n\n16) MatrixFrog: Trade G3 Y3 Matrixfrog\n\n17) istari: Trade R1 B1 Istari\n\n18) Subhan64: Build Y1 Subhan64\n\n19) MatrixFrog: Build G1 Matrixfrog\n\n20) istari: Trade Y3 G3 Istari\n\n21) Subhan64: Build R1 Subhan64\n\n22) MatrixFrog: Trade G1 R1 Matrixfrog\n\n23) istari: Move R1 Istari Alpha\n\n24) Subhan64: Trade Y1 B1 Subhan64\n\n25) MatrixFrog: Move G1 Alpha Istari\n\n26) istari: Attack G1N Alpha\n\n27) Subhan64: Build Y1 Subhan64\n\n28) MatrixFrog: Build G1 Istari\nCatastrophe Istari G\n\n29) istari: Build G1 Alpha\n\n30) Subhan64: Discover Y1 Subhan64 G2 Omicronpersei\n\n31) MatrixFrog: Build G1 Matrixfrog\n\n32) istari: Move G1 Alpha Istari\n\n33) Subhan64: Move R3 Subhan64 Omicronpersei\n\n34) MatrixFrog: Build G2 Matrixfrog\n\n35) istari: Build G2 Istari\n\n36) Subhan64: Move R3 Omicronpersei Alpha\n\n37) MatrixFrog: Discover G1 Matrixfrog Y3 Bravo\n\n38) istari: Move R1 Alpha Omicronpersei\n\n39) Subhan64: Move Y1 Omicronpersei Subhan64\n\n40) MatrixFrog: Build G2 Bravo\n\n41) istari: Trade G2 Y2 Istari\n\n42) Subhan64: Attack G1E Alpha\n\n43) MatrixFrog: Move G1 Bravo Istari\n\n44) istari: Build G2 Istari\n\n45) Subhan64: Move R3 Alpha Omicronpersei\n\n46) MatrixFrog: Build G2 Istari\n\n47) istari: Sacrifice Y2 Istari\nMove G2 Istari Omicronpersei\nMove G1 Istari Omicronpersei\n\n48) Subhan64: Attack G2E Omicronpersei\n\n49) MatrixFrog: Build R1 Matrixfrog\n\n50) istari: Move B1 Istari Omicronpersei\n\n51) Subhan64: Attack R1E Omicronpersei\n\n52) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack Y1E Istari\n\n\nHomeworlds Online (SDG# 829)\nStarted: 2005.10.2, Ended: 2005.10.12\nParticipants: andylooney (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B2 Y1 G3\n\n2) andylooney: Homeworld B3 G2 Y3\n\tJesse: Hi, Andy. I've been looking forward to your arrival.\n\n3) Jesse: Build G1 Jesse\n\tandylooney: hello. Is this Jesse Welton I'm playing, or some other Jesse?\n\tJesse: It is indeed. The former. That is to say, Jesse Welton. Not some other Jesse.\n\n4) andylooney: Build Y1 Andylooney\n\n5) Jesse: Discover G1 Jesse B3 Chewy\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) Jesse: Build G1 Jesse\n\n8) andylooney: Discover G1 Andylooney Y1 Yellowrock\n\n9) Jesse: Build G2 Chewy\n\n10) andylooney: Build Y1 Andylooney\n\n11) Jesse: Trade G2 Y2 Chewy\n\n12) andylooney: Build G2 Yellowrock\n\n13) Jesse: Sacrifice G3 Jesse\nBuild G2 Chewy\nBuild G3 Jesse\nBuild Y2 Chewy\n\n14) andylooney: Discover G2 Yellowrock Y3 Clampett\n\n15) Jesse: Trade G1 R1 Jesse\n\n16) andylooney: Trade Y1 R1 Andylooney\n\n17) Jesse: Discover G2 Chewy Y1 Horch\n\n18) andylooney: Discover G1 Yellowrock B3 Bigblue\n\n19) Jesse: Discover Y2 Chewy G1 Schnoz\n\n20) andylooney: Build G3 Bigblue\n\n21) Jesse: Build G3 Horch\n\n22) andylooney: Sacrifice G3 Bigblue\nBuild G3 Bigblue\nBuild Y1 Andylooney\nBuild R1 Andylooney\n\n23) Jesse: Sacrifice G3 Horch\nBuild G3 Horch\nBuild Y2 Chewy\nBuild Y3 Schnoz\n\n24) andylooney: Discover Y1 Andylooney B1 Littleblue\n\n25) Jesse: Move G3 Horch Clampett\n\n26) andylooney: Move G2 Clampett Littleblue\n\tandylooney: man, I should not have let you get those 2 yellows. I think I'm going to lose this one.\n\tandylooney: You're already ahead and I can see where this is going, and I'm not happy about it. I'm thinking about just resigning now...\n\n27) Jesse: Sacrifice G3 Clampett\nBuild G3 Horch\nBuild Y3 Schnoz\nBuild R2 Jesse\n\tJesse: I must say, I'm relieved by your response here. I woke up in the middle of the night suddenly worried you would simply move one of your r1s out to littleblue. That would have given you a huge production advantage in red.\n\tJesse: But you're right; things got harder for you once I got some yellow ships to go with my factory.\n\n28) andylooney: Move R1 Andylooney Littleblue\n\n29) Jesse: Sacrifice Y2 Chewy\nMove Y3 Schnoz Andylooney\nMove G3 Horch Andylooney\n\n30) andylooney: Attack Y3N Andylooney\n\tandylooney: Well done sir! (There goes my undefeated-on-super-duper-games record...)\n\n31) Jesse: Sacrifice R2 Jesse\nAttack Y3S Andylooney\nAttack Y3S Andylooney\n\n32) andylooney: Pass\n\tJesse: And thank you for an excellent game! It looks like I get to retain my own undefeated record in SDG Homeworlds a bit longer. I'm sure you'll strip me of it before long.\n\n33) Jesse: Sacrifice R1 Jesse\nAttack R1S Andylooney\n\n\nHomeworlds Online (SDG# 841)\nStarted: 2005.10.3, Ended: 2005.10.4\nParticipants: rootbeer (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\trootbeer: Welcome to SDG! I hope I can provide a worthy opponent, but please let me know if I make any major mistakes, because I'm still learning the strategy of Homeworlds.\n\n2) rootbeer: Homeworld G3 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) rootbeer: Build Y1 Rootbeer\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) rootbeer: Build Y1 Rootbeer\n\n7) andylooney: Build G1 Andylooney\n\n8) rootbeer: Trade Y1 B1 Rootbeer\n\n9) andylooney: Trade G1 B1 Andylooney\n\n10) rootbeer: Build B2 Rootbeer\n\n11) andylooney: Build B2 Andylooney\n\trootbeer: Have you checked out Praetor yet? It's pretty fun.\r\n\n\trootbeer: Praetorian, I mean\r\n\n\n12) rootbeer: Trade B2 G2 Rootbeer\n\n13) andylooney: Discover G1 Andylooney Y3 Clampett\n\n14) rootbeer: Build B2 Rootbeer\n\n15) andylooney: Discover B2 Andylooney G3 Garden\n\n16) rootbeer: Discover B2 Rootbeer G1 Emerald\n\n17) andylooney: Trade B1 Y1 Andylooney\n\n18) rootbeer: Move Y1 Rootbeer Emerald\n\n19) andylooney: Discover Y1 Andylooney B3 Bigblue\n\n20) rootbeer: Build Y1 Emerald\n\n21) andylooney: Build Y2 Andylooney\n\n22) rootbeer: Build Y2 Rootbeer\n\n23) andylooney: Trade Y2 G2 Andylooney\n\n24) rootbeer: Build Y2 Emerald\n\n25) andylooney: Build Y2 Andylooney\n\n26) rootbeer: Discover Y1 Emerald G3 Sniffle\n\n27) andylooney: Sacrifice G1 Clampett\nConstruct Y3 Bigblue\n\tandylooney: I'm having a problem here. I should be able to do this:\r\nSacrifice g1 clampett\r\nconstruct y3 bigblue\r\nThis is a maneuver we call "cashing in an investment." But it's not working! I'm getting this message: "There are insufficient Y3 pieces in the stash." This is true at the start of the turn, but the sacrifice action puts the y3 into the stash, thus allowing my construct action. I think the computer needs to have this fine point explained to it. I need help before I can take my turn!\n\trootbeer: I think you're right. Aaron?\r\n\n\tAaron: If you "sacrifice G1 clampett" then there is no Y being put into the stash, just the G. I don't see where the yellow piece could come from.\n\trootbeer: It's the yellow sun of Clampett, when it's returned to the interstellar flux.\r\n\n\tAaron: Ahh! I see now. You are correct. This is a bug. I *think* it's an easy fix. I'm very distracted at this moment, but I will try to get to it tonight. Sorry!\n\tAaron: OK, I think it works now. Give it a shot.\n\n28) rootbeer: Sacrifice Y2 Rootbeer\nMove Y1 Emerald Bigblue\nMove Y2 Emerald Bigblue\nCatastrophe Bigblue Y\n\tandylooney: Yay! He fixed it! Thanks Aaron!\n\tMatrixFrog: I still say it would be fun to visit the hyperspatial flux. Although I suppose by visiting any star in it, you've automatically pulled it out of the flux. It's like wishing to speak in a silent room.\n\n29) andylooney: Discover G2 Andylooney Y3 Clampett2\n\n30) rootbeer: Build Y1 Sniffle\n\n31) andylooney: Move Y2 Andylooney Garden\n\n32) rootbeer: Build B1 Emerald\n\n33) andylooney: Build B3 Garden\n\n34) rootbeer: Build B3 Rootbeer\n\n35) andylooney: Sacrifice Y2 Garden\nMove B2 Garden Emerald\nMove B2 Emerald Rootbeer\nCatastrophe Rootbeer Blue\n\n36) rootbeer: Move Y3 Rootbeer Andylooney\n\n37) andylooney: Trade Y3 R3 Andylooney\n\trootbeer: "I come in peace." Why doesn't anybody believe me?\r\n\n\n38) rootbeer: Move Y3 Andylooney Garden\n\n39) andylooney: Trade B3 Y3 Garden\n\n40) rootbeer: Build Y1 Garden\n\n41) andylooney: Sacrifice Y3 Garden\nMove G2 Clampett2 Andylooney\nMove R3 Andylooney Rootbeer\nPass\n\n42) rootbeer: Move Y1 Garden Andylooney\n\n43) andylooney: Attack G2S Rootbeer\n\trootbeer: There's no hope for me now.\n\trootbeer: Maybe sometime you'll play me at Praetorian or BT&T. Cheers!\n\tandylooney: Thanks for the game!!!\n\n\nHomeworlds Online (SDG# 852)\nStarted: 2005.10.4, Ended: 2005.10.7\nParticipants: istari (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) istari: Homeworld Y3 G1 B3\n\tistari: I'm still learning hope you don't mind. I am currently playing two 4 player games, but I find it a lttle hard to follow what's going on. I think a 2 player will help me get a better grasp of the game.\n\n3) andylooney: Build Y1 Andylooney\n\tandylooney: Welcome to the game! I really prefer the 2 player version myself. \n\n4) istari: Build B1 Istari\n\n5) andylooney: Trade Y1 B1 Andylooney\n\n6) istari: Build B2 Istari\n\n7) andylooney: Build B2 Andylooney\n\n8) istari: Discover B2 Istari G2 Jupitor2\n\n9) andylooney: Discover B2 Andylooney G3 Garden\n\n10) istari: Trade B1 Y1 Istari\n\n11) andylooney: Build Y1 Andylooney\n\n12) istari: Move Y1 Istari Jupitor2\n\n13) andylooney: Trade B1 G1 Andylooney\n\n14) istari: Build B1 Istari\n\tistari: Last daycare dog just went home. Time for me to go too. I'll pick up the game again tomorrow.\n\n15) andylooney: Discover G1 Andylooney Y3 Clampett\n\n16) istari: Trade B1 R1 Istari\n\n17) andylooney: Trade Y1 R1 Andylooney\n\n18) istari: Discover Y1 Jupitor2 B3 Hooterville\n\n19) andylooney: Build Y1 Andylooney\n\n20) istari: Build B1 Jupitor2\n\n21) andylooney: Move Y1 Andylooney Garden\n\n22) istari: Build B1 Istari\n\n23) andylooney: Discover B2 Garden G2 Motr\n\n24) istari: Trade B2 Y2 Jupitor2\n\n25) andylooney: Build B2 Motr\n\n26) istari: Trade Y1 G1 Hooterville\n\n27) andylooney: Build G3 Clampett\n\n28) istari: Build G3 Hooterville\n\n29) andylooney: Trade B2 Y2 Motr\n\n30) istari: Build B2 Jupitor2\n\n31) andylooney: Sacrifice G3 Clampett\nBuild G3 Clampett\nBuild R1 Andylooney\nBuild R2 Andylooney\n\n32) istari: Sacrifice G3 Hooterville\nConstruct G3 Hooterville\nConstruct R2 Istari\nConstruct Y1 Jupitor2\n\n33) andylooney: Sacrifice G3 Clampett\nBuild G3 Clampett\nBuild Y1 Motr\nBuild Y2 Garden\n\n34) istari: Trade B2 R2 Jupitor2\n\n35) andylooney: Discover R2 Andylooney B3 Cobalt\n\n36) istari: Sacrifice G3 Hooterville\nConstruct G3 Hooterville\nConstruct R3 Istari\nConstruct R3 Jupitor2\n\n37) andylooney: Sacrifice G3 Clampett\nBuild G3 Clampett\nBuild R3 Cobalt\nBuild B2 Motr\n\tistari: I just saw the errors of my ways, I think. And if I am correct I just lost. Thanks for the game. Hope to play you again. \n\n38) istari: Move R3 Istari Motr\n\tandylooney: I don't see how I can kill you just now... so I'm just gonna grow again.\n\tistari: My mistake. Misunderstood the rules. You could have caused an overpoulation with red at my homeworld and I thought that it would remove all my pieces, not just the red. Sorry, I keep bouncing between the rule, wiki and game, But I think I'm learning. Now to do something about that possible overpopulation.\n\n39) andylooney: Sacrifice Y2 Motr\nMove B2 Motr Istari\nMove B2 Motr Istari\nCatastrophe Istari Blue\n\tistari: Question, I am not quite clear on this, but can you use the technology from my ships in a system that we both occupy? or only your ships and the star there? \n\tandylooney: The latter: only your ships and the star color.\n\n40) istari: Sacrifice Y2 Jupitor2\nMove R3 Jupitor2 Cobalt\nMove R2 Jupitor2 Cobalt\nCatastrophe Cobalt Red\n\n41) andylooney: Sacrifice Y2 Garden\nMove G3 Clampett Jupitor2\nMove G3 Jupitor2 Istari\n\n42) istari: Sacrifice G3 Hooterville\nConstruct G3 Hooterville\nConstruct Y2 Jupitor2\nConstruct R2 Motr\n\n43) andylooney: Sacrifice R1 Andylooney\nAttack R2S Istari\n\n44) istari: Pass\n\tistari: Thanks for the game.\n\n45) andylooney: Attack R1S Istari\n\tandylooney: You are very welcome! Thanks for playing!\n\n\nHomeworlds Online (SDG# 856)\nStarted: 2005.10.5, Ended: 2005.10.14\nParticipants: andylooney (S), Kermit (N)\nWinner: andylooney\n\n1) Kermit: Homeworld G2 Y3 B3\n\n2) andylooney: Homeworld B1 G2 Y3\n\tKermit: Thanks for all you do. I bought Zendo a few months back and Fluxx a bit more recently. Now my kids want Fluxx and Aquarius for Christmas (and they'll get it) And I can't get any work done (because I am here all day) \n\n3) Kermit: Build B1 Kermit\n\tandylooney: Cool! Thanks for digging our games - and for playing homeworlds with me!\n\tKermit: The pleasure is mine (though hopefully not all of it) and maybe I'll learn something.\n\n4) andylooney: Build Y1 Andylooney\n\n5) Kermit: Discover B1 Kermit Y1 Minko\n\n6) andylooney: Trade Y1 B1 Andylooney\n\n7) Kermit: Build B2 Kermit\n\n8) andylooney: Discover B1 Andylooney G3 Paradise\n\n9) Kermit: Move B2 Kermit Minko\n\n10) andylooney: Build B2 Paradise\n\n11) Kermit: Trade B1 G1 Minko\n\n12) andylooney: Build Y1 Andylooney\n\n13) Kermit: Build B1 Minko\n\n14) andylooney: Trade B1 Y1 Paradise\n\n15) Kermit: Trade B2 Y2 Minko\n\n16) andylooney: Build Y2 Paradise\n\n17) Kermit: Build B1 Minko\n\n18) andylooney: Trade Y1 G1 Andylooney\n\n19) Kermit: Discover B1 Minko G3 Lalu\n\n20) andylooney: Discover G1 Andylooney Y3 Clampett\n\tKermit: Useless information: Minko was my middle son, Hamilton's wor for Flamingo when he was a toddler.\n\n21) Kermit: Move B1 Minko Lalu\n\n22) andylooney: Discover Y2 Paradise G1 Gateway\n\n23) Kermit: Trade B1 Y1 Lalu\n\n24) andylooney: Build Y2 Andylooney\n\n25) Kermit: Trade Y1 B1 Lalu\n\n26) andylooney: Trade Y2 R2 Andylooney\n\n27) Kermit: Build Y1 Minko\n\n28) andylooney: Move Y1 Paradise Minko\nCatastrophe Minko Yellow\n\n29) Kermit: Build B2 Kermit\n\n30) andylooney: Move R2 Andylooney Lalu\n\n31) Kermit: Trade B3 R3 Kermit\n\n32) andylooney: Attack B1N Lalu\n\n33) Kermit: Trade B1 Y1 Lalu\n\n34) andylooney: Attack Y1N Lalu\n\tKermit: Not looking good for me.\n\n35) Kermit: Build B1 Kermit\n\tandylooney: Sorry...\n\n36) andylooney: Build B2 Paradise\n\n37) Kermit: Trade B2 R2 Kermit\n\n38) andylooney: Trade B2 R2 Paradise\n\n39) Kermit: Move R2 Kermit Gateway\n\n40) andylooney: Sacrifice R2 Paradise\nAttack R2N Gateway\nPass\n\tKermit: no need for sorry, I will learn from this. Which was part of the reason I play to begin with.\n\n41) Kermit: Build B2 Kermit\n\tandylooney: Then let the lessons continue!\r\n\n\n42) andylooney: Build B2 Lalu\n\n43) Kermit: Trade B1 Y1 Kermit\n\n44) andylooney: Trade B2 G2 Lalu\n\n45) Kermit: Discover Y1 Kermit R1 Flurkey\n\n46) andylooney: Move G2 Lalu Flurkey\n\n47) Kermit: Build B1 Kermit\n\n48) andylooney: Attack Y1N Flurkey\n\n\tKermit: I will have call this one. I see no way that will lead to victory. Thank you for the game.\n\tSYSTEM: Kermit resigns.\n\nHomeworlds Online (SDG# 860)\nStarted: 2005.10.6, Ended: 2005.10.18\nParticipants: jeep (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tjeep: I'm very new to the game, so if you'd rather play someone more experienced, let me know and I'll resign and you can challenge someone else. ;)\n\tandylooney: I love this game so much I'll take anyone's challenge!\n\n2) jeep: Homeworld B3 Y1 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) jeep: Build G1 Jeep\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) jeep: Discover Y1 Jeep Y2 Ned\n\n9) andylooney: Build Y1 Andylooney\n\n10) jeep: Build G1 Jeep\n\tjeep: I must have mis-typed, I thought I went to a blue star. \n\n11) andylooney: Discover Y1 Andylooney G3 Paradise\n\n12) jeep: Trade G1 B1 Jeep\n\n13) andylooney: Build Y2 Paradise\n\n14) jeep: Discover Y1 Ned G3 Lost\n\n15) andylooney: Discover Y1 Paradise G2 Gateway\n\n16) jeep: Build Y2 Lost\n\n17) andylooney: Build Y2 Gateway\n\n18) jeep: Discover Y1 Lost B2 Ohboy\n\tjeep: I need to pay more attention to the rules... briefly forgot about how stars are connected. Now I need to think more and it's past my bedtime.\n\n19) andylooney: Build Y3 Paradise\n\n20) jeep: Build G1 Jeep\n\n21) andylooney: Sacrifice G1 Clampett\nBuild Y3 Andylooney\n\n22) jeep: Build G1 Jeep\n\tjeep: Ah, interesting. I didn't realize that the system was abandoned before you made your choice to build. We've played incorrectly when we played in real life (both times, I think ;) )\n\n23) andylooney: Trade Y3 R3 Andylooney\n\n24) jeep: Trade G1 R1 Jeep\n\n25) andylooney: Build Y3 Andylooney\n\n26) jeep: Build R1 Jeep\n\n27) andylooney: Build R1 Andylooney\n\n28) jeep: Move R1 Jeep Ohboy\n\n29) andylooney: Trade R1 B1 Andylooney\n\n30) jeep: Move G1 Jeep Ohboy\n\n31) andylooney: Move B1 Andylooney Paradise\n\n32) jeep: Build G1 Jeep\n\n33) andylooney: Build B2 Paradise\n\n34) jeep: Sacrifice G3 Jeep\nBuild G1 Ohboy\nBuild G2 Ohboy\nBuild G3 Jeep\n\n35) andylooney: Move Y3 Paradise Ohboy\n\n36) jeep: Move Y1 Ohboy Lost\n\n37) andylooney: Sacrifice R3 Andylooney\nAttack G2S Ohboy\nAttack G1S Ohboy\nAttack R1S Ohboy\n\tjeep: The end is nigh.\n\n38) jeep: Move Y1 Lost Andylooney\n\tjeep: I can't imagine this is worth playing out, but I will. :(\n\n39) andylooney: Sacrifice B2 Paradise\nTrade Y3 R3 Andylooney\nTrade Y1 R1 Gateway\n\n40) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild R2 Jeep\nBuild Y1 Lost\n\n41) andylooney: Sacrifice Y3 Andylooney\nMove Y3 Ohboy Jeep\nMove G1 Ohboy Jeep\nMove G2 Ohboy Jeep\nCatastrophe Jeep Green\n\n42) jeep: Build Y3 Lost\n\n43) andylooney: Sacrifice R1 Ohboy\nAttack R2S Jeep\n\n44) jeep: Sacrifice Y2 Lost\nMove Y3 Lost Ohboy\nMove Y3 Ohboy Jeep\n\tjeep: Heh, I missed that if you took over the red that you were completely safe.\n\tjeep: Thanks for the game!\n\n45) andylooney: Sacrifice R2 Jeep\nAttack Y3S Jeep\nAttack R1S Jeep\n\tjeep: My latest plan is to wait 2d:23h:59m:39s and force you to surrender. Hahahahahaha, it's genius!\n\n46) jeep: Sacrifice Y1 Lost\nMove G1 Ohboy Jeep\n\tjeep: Foiled! I guess I shouldn't have revealed my plan.\n\n47) andylooney: Attack G1S Jeep\n\n48) jeep: Trade B1 G1 Jeep\n\n49) andylooney: Attack G1S Jeep\n\n\nHomeworlds Online (SDG# 864)\nStarted: 2005.10.6, Ended: 2005.10.6\nParticipants: the_giggy (S), andylooney (N)\nWinner: andylooney\n\n\tthe_giggy: hey\n\tthe_giggy: go man\n\tSYSTEM: the_giggy resigns.\n\nHomeworlds Online (SDG# 869)\nStarted: 2005.10.6, Ended: 2006.2.21\nParticipants: andylooney (S), lambda (N)\nWinner: andylooney\n\n1) lambda: Homeworld R3 Y1 G3\n\n2) andylooney: Homeworld B1 G2 Y3\n\tlambda: Hi Andy! Would you like to play a game of Global Thermonuclear War... er, I mean Homeworlds?\n\n3) lambda: Build G1 Lambda\n\tandylooney: Greetings! Thanks for playing!\n\tlambda: Wow! Until playing on this server, I completely missed the rule that a new ship you create has to be the same color as an existing ship. Oops. \n\n4) andylooney: Build Y1 Andylooney\n\n5) lambda: Discover G1 Lambda B2 Betelgeuse\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) lambda: Build G1 Betelgeuse\n\n8) andylooney: Build G2 Andylooney\n\n9) lambda: Trade G1 Y1 Betelgeuse\n\n10) andylooney: Discover G2 Andylooney Y3 Clampett\n\n11) lambda: Build G1 Betelgeuse\n\n12) andylooney: Discover G1 Andylooney Y3 Jethro\n\n13) lambda: Trade G1 B1 Betelgeuse\n\n14) andylooney: Build Y1 Andylooney\n\n15) lambda: Build Y2 Betelgeuse\n\n16) andylooney: Trade Y1 R1 Andylooney\n\n17) lambda: Move B1 Betelgeuse Lambda\n\n18) andylooney: Build Y1 Andylooney\n\n19) lambda: Build Y2 Betelgeuse\n\n20) andylooney: Discover Y1 Andylooney G3 Paradise\n\n21) lambda: Discover Y2 Betelgeuse B3 Antares\n\n22) andylooney: Build G1 Clampett\n\n23) lambda: Move Y1 Betelgeuse Antares\n\n24) andylooney: Build Y2 Paradise\n\n25) lambda: Trade Y1 B1 Antares\n\n26) andylooney: Discover Y2 Paradise B2 Meanie\n\n27) lambda: Build B2 Lambda\n\tlambda: Jeez, you spoil all of my plans. This is a great game, though. \n\n28) andylooney: Discover Y2 Meanie B3 Bigmeanie\n\n29) lambda: Discover B2 Lambda B2 Markab\n\n30) andylooney: Discover R1 Andylooney B3 Finalfrontier\n\n31) lambda: Sacrifice Y2 Betelgeuse\nMove Y2 Antares Andylooney\nMove B1 Antares Andylooney\n\n32) andylooney: Trade Y3 R3 Andylooney\n\n33) lambda: Sacrifice B2 Markab\nTrade B1 R1 Andylooney\nTrade Y2 R2 Andylooney\n\n34) andylooney: Trade R3 Y3 Andylooney\n\tlambda: The peaceful trading and hyperspace transport vessels throw off their disguising bodies to reveal themselves as full blown warships! They circle warily around the larger warship already present in the system, waiting for an opening...\n\n35) lambda: Trade R2 Y2 Andylooney\n\n36) andylooney: Sacrifice R1 Finalfrontier\nAttack R1N Andylooney\n\n37) lambda: Discover Y2 Andylooney B3 Arcturus\n\tlambda: Hmm, looks like I really overreached there. I thought I had you, but managed to miss the way out that you took. I'm not sure I can recover from this. \n\n38) andylooney: Sacrifice G2 Clampett\nBuild Y1 Bigmeanie\nBuild Y2 Paradise\n\n39) lambda: Build G2 Betelgeuse\n\n40) andylooney: Sacrifice G1 Jethro\nBuild Y3 Andylooney\n\n41) lambda: Build G1 Lambda\n\n42) andylooney: Build G2 Clampett\n\tlambda: I feel like in this game, I started out badly, was managing to catch up and hold my own towards the middle, and then I though I had an opening to kill you during which I overextended myself by a lot. Would you say that's a fair assessment of how this game has gone?\n\tandylooney: Yeah, that's sounds about right. Although I didn't think you really had an opening to kill me, since I got out of it...\n\n43) lambda: Move Y2 Arcturus Betelgeuse\n\n44) andylooney: Discover G1 Clampett B2 Stealth\n\tlambda: Yeah, I was just mistaken about having an opening. I thought I had covered all of my bases, but I missed that particular way out. \n\n45) lambda: Trade G2 R2 Betelgeuse\n\n46) andylooney: Discover Y3 Andylooney G3 Garden\n\n47) lambda: Build G2 Betelgeuse\n\n48) andylooney: Sacrifice G2 Clampett\nBuild G2 Stealth\nBuild Y3 Garden\n\n49) lambda: Trade G1 B1 Betelgeuse\n\n50) andylooney: Move Y3 Garden Betelgeuse\n\n51) lambda: Sacrifice G3 Lambda\nBuild B2 Lambda\nBuild B3 Lambda\nBuild B3 Betelgeuse\n\n52) andylooney: Discover Y3 Betelgeuse G3 Jolly\n\n53) lambda: Move B3 Betelgeuse Paradise\n\n54) andylooney: Sacrifice Y2 Paradise\nMove Y3 Garden Betelgeuse\nDiscover Y1 Paradise Y2 Plugh\n\tlambda: Man, this is the longest game of Homeworlds I've ever played. Most people I play with leave an easy opening long before this. It's a lot more interesting playing against someone good like you.\n\n55) lambda: Discover G2 Betelgeuse G3 Kuma\n\n56) andylooney: Sacrifice R1 Andylooney\nAttack R2N Betelgeuse\n\n57) lambda: Move Y2 Betelgeuse Paradise\n\n58) andylooney: Move Y3 Betelgeuse Kuma\n\n59) lambda: Trade B2 R2 Lambda\n\n60) andylooney: Attack B1N Betelgeuse\n\n61) lambda: Build B2 Paradise\n\n62) andylooney: Sacrifice G2 Stealth\nBuild G1 Stealth\nBuild R1 Betelgeuse\n\n63) lambda: Move B3 Paradise Betelgeuse\n\n64) andylooney: Sacrifice Y2 Bigmeanie\nMove R2 Betelgeuse Jolly\nMove B1 Betelgeuse Jolly\n\n65) lambda: Build Y2 Paradise\n\n66) andylooney: Sacrifice R1 Betelgeuse\nAttack G2N Kuma\n\n67) lambda: Build G2 Lambda\n\n68) andylooney: Trade G1 R1 Stealth\n\n69) lambda: Move R2 Lambda Betelgeuse\n\n70) andylooney: Build G1 Stealth\n\n71) lambda: Move G1 Lambda Betelgeuse\n\n72) andylooney: Discover Y1 Plugh R1 Daddyo\n\n73) lambda: Move Y2 Paradise Betelgeuse\n\n74) andylooney: Build Y2 Jolly\n\n75) lambda: Trade B2 R2 Paradise\n\n76) andylooney: Build B2 Jolly\n\n77) lambda: Move B3 Betelgeuse Paradise\n\n78) andylooney: Sacrifice G2 Kuma\nBuild R1 Jolly\nBuild R3 Stealth\n\n79) lambda: Build R3 Paradise\n\n80) andylooney: Discover B2 Jolly G2 Frog\n\n81) lambda: Move R3 Paradise Frog\n\tandylooney: So, you haven't moved in weeks... are you planning to finish this game, or should I force you to resign?\n\n82) andylooney: Sacrifice Y2 Jolly\nMove B2 Frog Daddyo\nDiscover B2 Daddyo Y2 Plugh\n\tlambda: Sorry about that. I managed to get really busy with school work at the same time as I started feeling burnt out on homeworlds, which meant I stopped following my games. I can resign if you want, or we can keep playing; I'm not feeling very hopeful about the outcome of this game, but it could still be fun to play it out. \n\n83) lambda: Move B3 Paradise Plugh\n\tandylooney: I'm happy to play this out. Thanks for returning!\n\n84) andylooney: Move B2 Plugh Kuma\n\n85) lambda: Move G2 Lambda Plugh\n\n86) andylooney: Move B2 Kuma Stealth\n\n87) lambda: Move B1 Lambda Frog\n\n88) andylooney: Sacrifice Y1 Daddyo\nMove R3 Stealth Paradise\n\tlambda: Oh, whoops. \n\tlambda: Man, I didn't see that little B1 at Jolly, since it was hidden under the name. \n\n89) lambda: Sacrifice Y2 Paradise\nMove R2 Paradise Stealth\nMove R2 Stealth Bigmeanie\n\n90) andylooney: Move Y1 Bigmeanie Stealth\n\n91) lambda: Sacrifice G2 Plugh\nBuild Y1 Betelgeuse\nBuild Y2 Betelgeuse\n\n92) andylooney: Sacrifice Y3 Kuma\nMove Y1 Stealth Paradise\nMove Y1 Paradise Betelgeuse\nMove R3 Paradise Betelgeuse\nCatastrophe Betelgeuse Yellow\n\n93) lambda: Trade B3 G3 Plugh\n\n94) andylooney: Build B3 Stealth\n\n95) lambda: Trade R2 Y2 Bigmeanie\n\n96) andylooney: Sacrifice B2 Stealth\nTrade B3 Y3 Stealth\nTrade R3 G3 Betelgeuse\n\n97) lambda: Sacrifice G3 Plugh\nBuild B2 Lambda\nBuild B3 Frog\nBuild Y1 Bigmeanie\n\n98) andylooney: Sacrifice R2 Jolly\nAttack R2N Betelgeuse\nAttack G1N Betelgeuse\n\n99) lambda: Trade B2 G2 Lambda\n\n100) andylooney: Sacrifice G3 Betelgeuse\nBuild G3 Betelgeuse\nBuild G3 Stealth\nBuild B2 Jolly\n\n101) lambda: Move G2 Lambda Stealth\nCatastrophe Stealth Green\n\n102) andylooney: Sacrifice G3 Betelgeuse\nBuild Y1 Andylooney\nBuild Y2 Stealth\nBuild Y2 Jolly\n\n103) lambda: Trade B3 G3 Frog\n\n104) andylooney: Sacrifice Y2 Jolly\nMove Y2 Stealth Bigmeanie\nMove Y1 Andylooney Bigmeanie\nCatastrophe Bigmeanie Y\n\n105) lambda: Sacrifice G3 Frog\nBuild B3 Frog\nBuild B3 Lambda\nBuild R1 Frog\n\n106) andylooney: Discover B1 Jolly G2 Clover\n\n107) lambda: Trade B3 G3 Lambda\n\n108) andylooney: Build B3 Clover\n\n109) lambda: Trade R1 Y1 Frog\n\n110) andylooney: Sacrifice B2 Jolly\nTrade B3 G3 Clover\nTrade B1 Y1 Clover\n\n\tandylooney: So, it's been almost 2 months since your last move. I'm assuming now that you won't be finishing this game. Thanks for playing.\n\nHomeworlds Online (SDG# 871)\nStarted: 2005.10.6, Ended: 2005.10.10\nParticipants: andylooney (S), JunkMan (N)\nWinner: andylooney\n\n1) JunkMan: Homeworld G3 Y1 R3\n\n2) andylooney: Homeworld B1 G2 Y3\n\n3) JunkMan: Build R1 Junkman\n\n4) andylooney: Build Y1 Andylooney\n\n5) JunkMan: Discover R1 Junkman Y2 Yellow\n\n6) andylooney: Build Y1 Andylooney\n\n7) JunkMan: Discover R1 Yellow Y3 Yellow2\n\n8) andylooney: Trade Y1 R1 Andylooney\n\n9) JunkMan: Discover R1 Yellow2 B2 Blue\n\n10) andylooney: Build Y1 Andylooney\n\n11) JunkMan: Trade R1 G1 Blue\n\n12) andylooney: Discover Y1 Andylooney G3 Garden\n\n13) JunkMan: Build G1 Blue\n\n14) andylooney: Build Y2 Garden\n\n15) JunkMan: Construct R1 Junkman\n\n16) andylooney: Build Y2 Andylooney\n\n17) JunkMan: Move R1 Junkman Blue\n\n18) andylooney: Trade Y2 G2 Andylooney\n\n19) JunkMan: Build R1 Blue\n\n20) andylooney: Discover G2 Andylooney Y3 Clampett\n\n21) JunkMan: Build R2 Blue\n\n22) andylooney: Build R2 Andylooney\n\n23) JunkMan: Trade R2 Y2 Blue\n\n24) andylooney: Discover Y1 Garden G2 Gateway\n\n25) JunkMan: Build R2 Junkman\n\n26) andylooney: Build Y2 Gateway\n\n27) JunkMan: Move R2 Junkman Gateway\n\n28) andylooney: Sacrifice R1 Andylooney\nAttack R2N Gateway\n\n29) JunkMan: Build Y3 Blue\n\n30) andylooney: Sacrifice G2 Clampett\nBuild Y3 Garden\nBuild R1 Gateway\n\n31) JunkMan: Move Y3 Blue Garden\n\n32) andylooney: Move Y3 Garden Blue\n\n33) JunkMan: Sacrifice R1 Blue\nAttack Y2S Garden\n\n34) andylooney: Sacrifice R2 Gateway\nAttack Y2N Blue\nAttack R1N Blue\n\n35) JunkMan: Build R1 Junkman\n\n36) andylooney: Sacrifice Y2 Gateway\nMove R1 Gateway Junkman\nMove R1 Blue Junkman\nCatastrophe Junkman Red\n\n\nHomeworlds Online (SDG# 884)\nStarted: 2005.10.7, Ended: 2005.10.9\nParticipants: Aaron (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tAaron: Hello, Andy! I'm a n00b, but I do enjoy the game. Good luck to you!\n\tandylooney: OK! I'm happy to play! Good luck to you, too!\r\n\n\n2) Aaron: Homeworld R2 Y3 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) Aaron: Build G1 Aaron\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Aaron: Discover G1 Aaron B1 Sea\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) Aaron: Build G1 Sea\n\n9) andylooney: Build G2 Clampett\n\n10) Aaron: Trade G1 Y1 Sea\n\n11) andylooney: Build Y1 Andylooney\n\n12) Aaron: Build Y1 Sea\n\n13) andylooney: Discover Y1 Andylooney G3 Paradise\n\n14) Aaron: Trade Y1 R1 Sea\n\n15) andylooney: Build Y1 Andylooney\n\n16) Aaron: Move R1 Sea Paradise\n\n17) andylooney: Discover Y1 Paradise B1 Bluedoor\n\n18) Aaron: Build Y2 Sea\n\n19) andylooney: Trade Y1 R1 Andylooney\n\n20) Aaron: Move Y1 Sea Paradise\n\n21) andylooney: Move G1 Clampett Bluedoor\n\n22) Aaron: Move R1 Paradise Bluedoor\n\n23) andylooney: Sacrifice R1 Andylooney\nAttack R1S Bluedoor\n\n24) Aaron: Move Y1 Paradise Sea\n\tAaron: Doh! I forbgot about that rule!\n\n25) andylooney: Build Y1 Bluedoor\n\n26) Aaron: Build Y2 Sea\n\tAaron: *scratches his head* I have no idea what I'm doing at this point.\n\n27) andylooney: Discover Y1 Bluedoor G3 Emerald\n\n28) Aaron: Discover Y2 Sea G3 Forest\n\n29) andylooney: Build Y2 Bluedoor\n\n30) Aaron: Trade Y1 R1 Sea\n\tAaron: I still struggle with this game's open-endedness. I find it difficult to form focused strategies.\n\n31) andylooney: Sacrifice G2 Clampett\nBuild Y1 Andylooney\nBuild Y3 Emerald\n\n32) Aaron: Build R1 Sea\n\n33) andylooney: Build R2 Bluedoor\n\n34) Aaron: Move R1 Sea Forest\n\n35) andylooney: Move Y3 Emerald Sea\n\n\tAaron: Well, my crystal ball says I don't stand a chance =) Thanks so much for the game! I obviously have some work to do =)\n\tSYSTEM: Aaron resigns.\n\nHomeworlds Online (SDG# 880)\nStarted: 2005.10.7, Ended: 2005.10.10\nParticipants: MatrixFrog (S), istari (N)\nWinner: istari\n\n1) istari: Homeworld Y1 B3 G3\n\n2) MatrixFrog: Homeworld G1 B2 Y3\n\n3) istari: Build G1 Istari\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) istari: Discover G1 Istari B2 Pixley\n\n6) MatrixFrog: Discover Y1 Matrixfrog G3 Scorch\n\n7) istari: Build G1 Istari\n\n8) MatrixFrog: Build Y1 Matrixfrog\n\n9) istari: Trade G1 R1 Istari\n\n10) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n11) istari: Build G1 Istari\n\n12) MatrixFrog: Discover Y1 Scorch G2 Torch\n\n13) istari: Sacrifice G3 Istari\nBuild G2 Pixley\nBuild G2 Pixley\nBuild G3 Istari\n\n14) MatrixFrog: Build Y1 Matrixfrog\n\n15) istari: Trade G2 R2 Pixley\n\n16) MatrixFrog: Build Y2 Torch\n\n17) istari: Trade G2 Y2 Pixley\n\n18) MatrixFrog: Build Y2 Torch\n\n19) istari: Sacrifice Y2 Pixley\nMove R2 Pixley Istari\nMove R2 Istari Torch\n\n20) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R2N Torch\n\n21) istari: Trade G3 R3 Istari\n\n22) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove Y2 Torch Istari\nMove Y2 Torch Istari\nMove Y1 Torch Istari\nCatastrophe Istari Y\n\n23) istari: Trade R1 Y1 Istari\n\tMatrixFrog: I hope I don't end up regretting that.\n\n24) MatrixFrog: Build Y1 Matrixfrog\n\n25) istari: Move Y1 Istari Matrixfrog\n\n26) MatrixFrog: Sacrifice R2 Torch\nPass\nAttack Y1N Matrixfrog\n\n27) istari: Construct G2 Istari\n\n28) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n29) istari: Trade G2 Y2 Istari\n\n30) MatrixFrog: Build B1 Matrixfrog\n\n31) istari: Construct G2 Istari\n\n32) MatrixFrog: Trade B1 R1 Matrixfrog\n\n33) istari: Move G2 Istari Matrixfrog\n\n34) MatrixFrog: Build R1 Matrixfrog\n\n35) istari: Build G2 Matrixfrog\n\n36) MatrixFrog: Discover R1 Matrixfrog G3 Survival\n\n37) istari: Trade G2 R2 Matrixfrog\n\n38) MatrixFrog: Build R1 Matrixfrog\n\n39) istari: Sacrifice R2 Matrixfrog\nAttack R1S Matrixfrog\nAttack R1S Matrixfrog\n\n40) MatrixFrog: Build R2 Survival\n\n41) istari: Sacrifice R3 Istari\nAttack Y1S Matrixfrog\nAttack Y1S Matrixfrog\nAttack B1S Matrixfrog\n\n\nHomeworlds Online (SDG# 886)\nStarted: 2005.10.7, Ended: 2005.10.12\nParticipants: mcrim001 (S), Tuxhedoh (N)\nWinner: mcrim001\n\n1) Tuxhedoh: Homeworld G3 Y1 B1\n\n2) mcrim001: Homeworld G3 Y1 B1\n\tmcrim001: you there?\r\n\n\n3) Tuxhedoh: Build B1 Tuxhedoh\n\n4) mcrim001: Build B2 Mcrim001\n\n5) Tuxhedoh: Trade B1 Y1 Tuxhedoh\n\n6) mcrim001: Build B1 Mcrim001\n\n7) Tuxhedoh: Discover Y1 Tuxhedoh G2 Down\n\n8) mcrim001: Trade B2 Y2 Mcrim001\n\n9) Tuxhedoh: Build B2 Tuxhedoh\n\n10) mcrim001: Trade B1 R1 Mcrim001\n\n11) Tuxhedoh: Trade B1 R1 Tuxhedoh\n\n12) mcrim001: Move R1 Mcrim001 Down\n\n13) Tuxhedoh: Build B1 Tuxhedoh\n\n14) mcrim001: Trade Y2 R2 Mcrim001\n\n15) Tuxhedoh: Trade B2 Y2 Tuxhedoh\n\n16) mcrim001: Move R2 Mcrim001 Down\n\n17) Tuxhedoh: Trade Y2 R2 Tuxhedoh\n\n18) mcrim001: Attack Y1N Down Mcrim001\n\n19) Tuxhedoh: Discover B1 Tuxhedoh R2 Escape\n\n20) mcrim001: Build B1 Mcrim001\n\n21) Tuxhedoh: Move R1 Tuxhedoh Escape\n\n22) mcrim001: Build B2 Mcrim001\n\n23) Tuxhedoh: Build R1 Tuxhedoh\n\n24) mcrim001: Build R3 Down\n\n25) Tuxhedoh: Move R1 Tuxhedoh Down\nCatastrophe Down Red\n\n26) mcrim001: Trade B2 R2 Mcrim001\n\n27) Tuxhedoh: Build R1 Tuxhedoh\n\n28) mcrim001: Build Y2 Down\n\n29) Tuxhedoh: Sacrifice B1 Escape\nTrade R1 B1 Tuxhedoh\n\n30) mcrim001: Move B1 Mcrim001 Down\n\n31) Tuxhedoh: Build B2 Tuxhedoh\n\n32) mcrim001: Build R1 Mcrim001\n\n33) Tuxhedoh: Move B2 Tuxhedoh Down\n\n34) mcrim001: Move R2 Mcrim001 Down\n\n35) Tuxhedoh: Construct B2 Tuxhedoh\n\n36) mcrim001: Attack B2N Down\n\n37) Tuxhedoh: Trade B2 Y2 Tuxhedoh\n\n38) mcrim001: Build B2 Mcrim001\n\n39) Tuxhedoh: Move Y2 Tuxhedoh Escape\n\n40) mcrim001: Move Y1 Down Mcrim001\n\n41) Tuxhedoh: Trade R2 G2 Tuxhedoh\n\n42) mcrim001: Build Y2 Down\n\n43) Tuxhedoh: Build G1 Tuxhedoh\n\n44) mcrim001: Build Y3 Mcrim001\n\n45) Tuxhedoh: Sacrifice G2 Tuxhedoh\nBuild Y3 Escape\nBuild Y3 Escape\n\n46) mcrim001: Move Y1 Mcrim001 Escape\n\n47) Tuxhedoh: Move Y3 Escape Tuxhedoh\n\tmcrim001: I thought moving a ship into a crowded system automatically caused a catastrophe? And why wouldn't it let me sacrifice a ship two rounds before? I typed in the command 'sacrifice b2 mcrim001 (return) construct y2 mcrim001 (return) construct y3 mcrim001' ?\n\tTuxhedoh: Catastrophe's don't happen automatically... you don't have to cause a catastrophe on yourself. Now about your messed up sacrifice I can only assume that the system doesn't like you. No really. it should've given you an error message at the top...\n\tTuxhedoh: And since you didn't cause a catastrophe in escape... I get to avoid it now.\n\n48) mcrim001: Move Y2 Down Mcrim001\n\tTuxhedoh: Now granted. it was probably a really stupid thing for me to do, but it wasn't the first, and it certainly won't be the last.\n\tmcrim001: i should resign since i got screwed but i might be able to work out a win anyways =)\n\n49) Tuxhedoh: Discover Y3 Tuxhedoh G2 Mefi\n\tTuxhedoh: and once again you failed to cause a catastrophe in escape by moving a ship there..\n\n50) mcrim001: Move Y2 Mcrim001 Escape\nCatastrophe Escape Yellow\n\tmcrim001: i wasnt trying to cause a catastrophy yet\n\n51) Tuxhedoh: Move Y3 Mefi Tuxhedoh\n\tmcrim001: =)\n\n52) mcrim001: Trade Y3 R3 Mcrim001\n\n53) Tuxhedoh: Trade Y3 G3 Tuxhedoh\n\n54) mcrim001: Build R1 Mcrim001\n\n55) Tuxhedoh: Trade G1 Y1 Tuxhedoh\n\n56) mcrim001: Move R3 Mcrim001 Down\n\n57) Tuxhedoh: Build Y2 Tuxhedoh\n\n58) mcrim001: Move R3 Down Tuxhedoh\n\n59) Tuxhedoh: Move Y1 Tuxhedoh Escape\n\n60) mcrim001: Attack G3N Tuxhedoh\n\n\tSYSTEM: Tuxhedoh resigns.\n\nHomeworlds Online (SDG# 882)\nStarted: 2005.10.7, Ended: 2005.10.19\nParticipants: TwoShort (S), Kermit (N)\nWinner: TwoShort\n\n1) Kermit: Homeworld B1 G3 Y3\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) Kermit: Build Y1 Kermit\n\n4) TwoShort: Build G1 Twoshort\n\n5) Kermit: Discover Y1 Kermit G2 Grendl\n\n6) TwoShort: Build G1 Twoshort\n\n7) Kermit: Build Y1 Grendl\n\n8) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n9) Kermit: Discover Y1 Grendl B1 Medusa\n\n10) TwoShort: Build G1 Twoshort\n\tTwoShort: construct g1 twoshort\n\n11) Kermit: Trade Y1 R1 Medusa\n\n12) TwoShort: Discover G1 Twoshort Y3 Yeller\n\n13) Kermit: Build Y1 Grendl\n\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Yeller\nBuild G3 Twoshort\n\n15) Kermit: Discover Y1 Grendl G3 Gryffin\n\n16) TwoShort: Trade G2 R2 Bluonia\n\n17) Kermit: Move Y1 Grendl Medusa\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n19) Kermit: Move R1 Medusa Yeller\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild R1 Bluonia\nBuild R1 Bluonia\n\n21) Kermit: Build Y1 Kermit\n\n22) TwoShort: Sacrifice R1 Bluonia\nAttack R1N Yeller\n\n23) Kermit: Build Y2 Kermit\n\n24) TwoShort: Trade G2 Y2 Bluonia\n\n25) Kermit: Trade Y2 G2 Kermit\n\n26) TwoShort: Sacrifice Y2 Bluonia\nMove G2 Twoshort Gryffin\nDiscover G1 Bluonia B2 Blubonic\n\n27) Kermit: Move G2 Kermit Blubonic\n\n28) TwoShort: Sacrifice R1 Bluonia\nAttack Y1N Gryffin\n\n29) Kermit: Trade G2 R2 Blubonic\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yeller\nBuild G3 Twoshort\nBuild Y2 Gryffin\n\n31) Kermit: Attack G1S Blubonic\n\n32) TwoShort: Sacrifice Y2 Gryffin\nMove G2 Yeller Blubonic\nMove G2 Yeller Blubonic\n\n33) Kermit: Attack G2S Blubonic\n\n34) TwoShort: Sacrifice R2 Bluonia\nAttack G2N Blubonic\nAttack R2N Blubonic\n\n35) Kermit: Build Y2 Kermit\n\n36) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Gryffin\nBuild R1 Blubonic\n\n\n37) Kermit: Trade Y3 R3 Kermit\n\n38) TwoShort: Discover Y1 Gryffin B2 Bluestar\n\n39) Kermit: Move Y2 Kermit Bluestar\n\n40) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Bluestar\nBuild Y3 Gryffin\nBuild G3 Twoshort\n\n\tSYSTEM: Kermit resigns.\n\nHomeworlds Online (SDG# 885)\nStarted: 2005.10.8, Ended: 2005.11.7\nParticipants: andylooney (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) andylooney: Homeworld B3 G2 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) andylooney: Build Y1 Andylooney\n\n5) TwoShort: Build G1 Twoshort\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) TwoShort: Discover G1 Twoshort B3 Bluestar\n\n8) andylooney: Discover G1 Andylooney Y1 Different\n\n9) TwoShort: Build G2 Twoshort\n\n10) andylooney: Build Y1 Andylooney\n\n11) TwoShort: Discover G1 Twoshort Y3 Similar\n\n12) andylooney: Build Y2 Andylooney\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Similar\nBuild G3 Twoshort\nBuild G3 Bluestar\n\n14) andylooney: Build G3 Different\n\n15) TwoShort: Trade G3 Y3 Bluestar\n\n16) andylooney: Trade Y2 R2 Andylooney\n\n17) TwoShort: Trade G2 R2 Twoshort\n\n18) andylooney: Discover Y1 Andylooney B1 Bomber\n\n19) TwoShort: Build G2 Twoshort\n\n20) andylooney: Discover Y1 Bomber G3 Paradise\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Bluestar\nBuild Y2 Bluestar\n\n22) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild R1 Andylooney\nBuild Y2 Paradise\n\n23) TwoShort: Sacrifice Y3 Bluestar\nMove G1 Similar Different\nMove G2 Similar Different\nDiscover Y2 Bluestar R1 Moltar\nCatastrophe Different Green\n\n24) andylooney: Trade R1 G1 Andylooney\n\n25) TwoShort: Discover Y2 Bluestar G1 Emerald\n\n26) andylooney: Discover G1 Andylooney B1 Bomber\n\n27) TwoShort: Build Y1 Emerald\n\n28) andylooney: Move Y2 Paradise Bomber\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild Y3 Moltar\n\n30) andylooney: Build G3 Bomber\n\n31) TwoShort: Sacrifice Y2 Moltar\nMove G2 Bluestar Bomber\nMove G1 Bluestar Bomber\nCatastrophe Bomber Green\n\n32) andylooney: Trade Y2 G2 Bomber\n\n33) TwoShort: Sacrifice G2 Twoshort\nBuild G1 Twoshort\nBuild Y2 Moltar\n\n34) andylooney: Build Y2 Paradise\n\n35) TwoShort: Move Y3 Moltar Paradise\n\n36) andylooney: Build Y3 Paradise\nCatastrophe Paradise Yellow\n\n37) TwoShort: Build Y1 Emerald\n\n38) andylooney: Build G1 Bomber\n\n39) TwoShort: Discover Y1 Emerald B3 Bluestar\n\n40) andylooney: Trade G1 R1 Bomber\n\n41) TwoShort: Trade Y1 G1 Bluestar\n\n42) andylooney: Trade R1 Y1 Bomber\n\tTwoShort: I was wondering if you would figure it out :) Now, can I deduce from your clues what "Cashing an investment" involves?\n\tTwoShort: Aha! "X has been abandoned to the hyperspatial flux" used to happen at the end of the turn, now it happens immediately; so that's the code change you needed for the investment strategy: sacrifice a green/blue to immediately acquire that system marker as a ship. So if I understand correctly, it would also work with other colors (or even sizes), but you associate with a large yellow because that's the most valuable to suddenly acquire late in the game.\n\tandylooney: Well, I must confess it was Keith who tipped me off based on the clues... It's great to be able to play together like this, ain't it?\n\n43) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild Y2 Moltar\n\n44) andylooney: Sacrifice G2 Bomber\nBuild Y3 Bomber\nBuild Y3 Andylooney\n\tTwoShort: Definitely. I concluded this was the perfect game for me when I first read your essay about it a couple years ago; but my local gang is devoid of pure strategy fans, so this is only my fourth game or so.\n\n45) TwoShort: Sacrifice Y2 Moltar\nMove Y2 Moltar Andylooney\nMove Y1 Emerald Andylooney\nCatastrophe Andylooney Yellow\n\n46) andylooney: Move Y3 Bomber Andylooney\n\n47) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Bluestar\n\n48) andylooney: Discover Y1 Bomber G3 Garden\n\n49) TwoShort: Sacrifice Y2 Emerald\nDiscover G3 Bluestar B1 Lancer\nMove G2 Twoshort Garden\n\n50) andylooney: Discover Y1 Garden B2 Bomber\n\n51) TwoShort: Trade G2 Y2 Bluestar\n\n52) andylooney: Trade Y1 G1 Bomber\n\n53) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild Y1 Bluestar\n\n54) andylooney: Build R1 Andylooney\n\n55) TwoShort: Sacrifice G2 Garden\nBuild G2 Lancer\nBuild G3 Lancer\n\n56) andylooney: Trade R1 B1 Andylooney\n\n57) TwoShort: Trade G3 Y3 Lancer\n\n58) andylooney: Build G3 Bomber\n\n59) TwoShort: Sacrifice Y3 Lancer\nMove G1 Bluestar Bomber\nMove G2 Lancer Bomber\nDiscover G2 Bluestar Y1 Yolonda\nCatastrophe Bomber Green\n\n60) andylooney: Build Y2 Andylooney\n\n61) TwoShort: Build G1 Lancer\n\n62) andylooney: Discover Y2 Andylooney G1 Zorak\n\n63) TwoShort: Sacrifice G3 Lancer\nBuild G2 Lancer\nBuild G3 Lancer\nBuild G3 Yolonda\n\n64) andylooney: Build Y2 Zorak\n\n65) TwoShort: Sacrifice Y2 Bluestar\nMove G2 Lancer Andylooney\nMove G1 Lancer Andylooney\n\n66) andylooney: Discover Y2 Zorak B3 Ibm\n\n67) TwoShort: Sacrifice R2 Twoshort\nAttack R2S Andylooney\nAttack B1S Andylooney\n\n68) andylooney: Trade Y2 R2 Ibm\n\n69) TwoShort: Sacrifice G3 Lancer\nBuild B1 Andylooney\nBuild B1 Andylooney\nBuild G3 Andylooney\nCatastrophe Andylooney Blue\nCatastrophe Andylooney Green\n\n\nHomeworlds Online (SDG# 893)\nStarted: 2005.10.8, Ended: 2005.10.20\nParticipants: chaosbreaker (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tchaosbreaker: I bought Zendo and found that there was a card with the rules for homeworld on it.\r\n\r\nThis is my first game. Just read the rules on http://www.wunderland.com/WTS/Ginohn/games/Homeworlds/HomeworldsRules.html\r\n\r\n\n\n2) chaosbreaker: Homeworld B2 G1 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tandylooney: well, I welcome you to the game. But I fear I will crush you easily.\r\n\n\n4) chaosbreaker: Build Y1 Chaosbreaker\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tchaosbreaker: yeah, you will crush me.\r\n\r\nI want to learn how to play so I can play with my friends face to face\n\n6) chaosbreaker: Trade Y1 G1 Chaosbreaker\n\n7) andylooney: Build G2 Andylooney\n\n8) chaosbreaker: Build Y1 Chaosbreaker\n\n9) andylooney: Discover G2 Andylooney Y3 Clampett\n\n10) chaosbreaker: Discover Y1 Chaosbreaker G3 Thor\n\n11) andylooney: Build Y1 Andylooney\n\n12) chaosbreaker: Build G2 Chaosbreaker\n\n13) andylooney: Build G3 Clampett\n\n14) chaosbreaker: Build G3 Chaosbreaker\n\n15) andylooney: Trade G1 R1 Andylooney\nCatastrophe Chaosbreaker Green\n\n16) chaosbreaker: Trade Y3 G3 Chaosbreaker\n\n17) andylooney: Discover G2 Clampett Y2 Plugh\n\n18) chaosbreaker: Build G1 Chaosbreaker\n\tchaosbreaker: construct g2 chaosbreaker\n\n19) andylooney: Sacrifice Y3 Andylooney\nMove G2 Plugh Clampett\nMove G2 Clampett Chaosbreaker\nMove G3 Clampett Chaosbreaker\nCatastrophe Chaosbreaker Green\n\tandylooney: Thanks for the game!\n\n\nHomeworlds Online (SDG# 894)\nStarted: 2005.10.8, Ended: 2005.10.11\nParticipants: Tuxhedoh (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tTuxhedoh: I'm fairly new to the game, and a bit intimdated to be playing you. Feel free to give me any tips, especially if I've made a silly move. Also, if you happen to get to Baltimore or Columbia area would love to play face to face.\r\n\n\tandylooney: greetings! Good luck! The only way to get good at the game is to play it alot, so let's go!\n\n2) Tuxhedoh: Homeworld G1 Y3 B1\n\n3) andylooney: Build Y1 Andylooney\n\n4) Tuxhedoh: Build B1 Tuxhedoh\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tandylooney: Oh, no! I just realized you didn't take a large ship with your homeworld! That's a critical mistake! Frankly, the software ought to force you to start with a large ship.\n\n6) Tuxhedoh: Trade B1 G1 Tuxhedoh\n\tTuxhedoh: I was reading that in the SDG wiki page for Homeworlds... and realized I didn't do it. I'm trying to understand why it's critical though... can you explain?\n\tTuxhedoh: is it because otherwise you have to wait to use up most of thee pieces before you're able eto construct onee? (btw, my "e" is broken)\n\n7) andylooney: Build G2 Andylooney\n\tTuxhedoh: Has anyone created a newbies guide to Homeworlds strategy besides http://wiki.daltons.ca/sdg/games/homeworlds ? I've been looking on the wunderland page and icehouse wiki, but it seems like there's none eto be found\n\tandylooney: yes, that's why. And we can keep playing this and I'll demonstrate why in a while.\r\n\n\n8) Tuxhedoh: Build B1 Tuxhedoh\n\tTuxhedoh: construct b1 tuxhedoh\n\n9) andylooney: Discover G2 Andylooney Y3 Clampett\n\n10) Tuxhedoh: Build G2 Tuxhedoh\n\n11) andylooney: Build G3 Clampett\n\tTuxhedoh: Just got home from hanging out with a buddym figuring out Homeworlds in person. Now my mind is all confused, cause I only have Ice Towers, and the colors are all switched.\n\n12) Tuxhedoh: Build G3 Tuxhedoh\n\n13) andylooney: Build Y1 Andylooney\n\n14) Tuxhedoh: Trade G3 R3 Tuxhedoh\n\tandylooney: OK, I'm going to be a nice guy here, and let 2 wrongs make a right. You've got 4 greens in your homeworld (remember, the star itself does count) so I should just call Catastrophe on you. But I won't, since you forgot to take a large before, and now you have one. But I doubt I'll be so gentle next time... :)\n\n15) andylooney: Build G3 Andylooney\n\tTuxhedoh: 2 wrongs make a right. :-) thanks for the leniency. Last night while playing IRL, i won my first game by forcing a catastrophe in the other players homeworld, taking his 3 ships there. And then lost the next, by calling a catastrophe in my homeworld, taking my last ship. What a stupid mistake... but I'm learning.\n\n16) Tuxhedoh: Discover G1 Tuxhedoh Y2 Einstein\n\n17) andylooney: Trade G1 R1 Andylooney\n\n18) Tuxhedoh: Move B1 Tuxhedoh Einstein\n\n19) andylooney: Discover G3 Andylooney B3 Ibm\n\n20) Tuxhedoh: Build B2 Einstein\n\n21) andylooney: Build R1 Andylooney\n\n22) Tuxhedoh: Construct B2 Tuxhedoh\n\n23) andylooney: Move Y1 Andylooney Ibm\n\n24) Tuxhedoh: Pass\n\tTuxhedoh: Can't decide how to move or if I should even... would like to see it play out. I'm passing.\n\n25) andylooney: Discover R1 Andylooney G3 Paradise\n\n26) Tuxhedoh: Trade B2 R2 Einstein\n\n27) andylooney: Sacrifice G3 Clampett\nBuild G1 Ibm\nBuild G3 Clampett\nBuild Y1 Ibm\n\n28) Tuxhedoh: Move R2 Einstein Paradise\n\n29) andylooney: Sacrifice G3 Clampett\nBuild G3 Clampett\nBuild Y1 Ibm\nBuild R1 Andylooney\n\n30) Tuxhedoh: Trade B2 Y2 Tuxhedoh\n\n31) andylooney: Discover Y1 Ibm B2 Stealth\n\n32) Tuxhedoh: Attack R1N Paradise\n\n33) andylooney: Sacrifice G2 Clampett\nBuild G2 Clampett\nBuild Y2 Stealth\n\n34) Tuxhedoh: Move Y2 Tuxhedoh Stealth\n\n35) andylooney: Sacrifice R1 Andylooney\nAttack Y2S Stealth\n\n\tTuxhedoh: doh\n\tSYSTEM: Tuxhedoh resigns.\n\nHomeworlds Online (SDG# 895)\nStarted: 2005.10.9, Ended: 2005.11.3\nParticipants: pigasuspig (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G3 B2 Y3\n\n2) pigasuspig: Homeworld G2 B1 Y3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) pigasuspig: Build Y1 Pigasuspig\n\n5) MatrixFrog: Discover Y1 Matrixfrog G1 Dinky\n\n6) pigasuspig: Trade Y1 G1 Pigasuspig\n\n7) MatrixFrog: Build Y1 Matrixfrog\n\n8) pigasuspig: Build G1 Pigasuspig\n\n9) MatrixFrog: Discover Y1 Dinky G3 Slinky\n\n10) pigasuspig: Trade G1 R1 Pigasuspig\n\n11) MatrixFrog: Build Y1 Slinky\n\n12) pigasuspig: Build Y2 Pigasuspig\n\n13) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n14) pigasuspig: Trade Y2 B2 Pigasuspig\n\n15) MatrixFrog: Build G1 Matrixfrog\n\n16) pigasuspig: Move R1 Pigasuspig Slinky\n\n17) MatrixFrog: Move Y1 Slinky Pigasuspig\n\n18) pigasuspig: Attack Y1N Slinky\n\n19) MatrixFrog: Build Y1 Pigasuspig\n\n20) pigasuspig: Trade Y3 R3 Pigasuspig\n\n21) MatrixFrog: Trade Y1 B1 Pigasuspig\n\n22) pigasuspig: Attack B1N Pigasuspig\n\n23) MatrixFrog: Trade Y1 B1 Pigasuspig\nCatastrophe Pigasuspig B\n\n24) pigasuspig: Build Y1 Slinky\n\tpigasuspig: Oops.\n\n25) MatrixFrog: Trade G1 R1 Matrixfrog\n\n26) pigasuspig: Move Y1 Slinky Pigasuspig\n\n27) MatrixFrog: Build G1 Matrixfrog\n\n28) pigasuspig: Discover G1 Pigasuspig Y1 Barnard\n\n29) MatrixFrog: Move G1 Matrixfrog Barnard\n\n30) pigasuspig: Discover G1 Barnard B3 Ocean\n\n31) MatrixFrog: Build Y2 Matrixfrog\n\n32) pigasuspig: Build G2 Ocean\n\n33) MatrixFrog: Build G2 Barnard\n\n34) pigasuspig: Trade G1 B1 Ocean\n\n35) MatrixFrog: Build G1 Barnard\n\n36) pigasuspig: Build G3 Ocean\n\n37) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove G1 Barnard Pigasuspig\nMove G1 Barnard Pigasuspig\nMove G2 Barnard Pigasuspig\nCatastrophe Pigasuspig G\n\n\nHomeworlds Online (SDG# 896)\nStarted: 2005.10.9, Ended: 2006.6.16\nParticipants: lambda (S), c0g (N)\nWinner: lambda\n\n1) c0g: Homeworld Y3 B1 G3\n\n2) lambda: Homeworld B2 Y1 G3\n\n3) c0g: Build G1 C0g\n\n4) lambda: Build G1 Lambda\n\n5) c0g: Trade G1 Y1 C0g\n\n6) lambda: Discover G1 Lambda B3 Rigel\n\n7) c0g: Discover Y1 C0g Y2 Polaris\n\n8) lambda: Build G1 Rigel\n\n9) c0g: Build G1 C0g\n\n10) lambda: Trade G1 Y1 Rigel\n\n11) c0g: Move Y1 Polaris Rigel\n\n12) lambda: Build Y2 Rigel\n\n13) c0g: Move Y1 Rigel Lambda\n\tlambda: You could create a catastrophe in Rigel. But, would that really benefit you? \n\n14) lambda: Build G1 Lambda\n\n15) c0g: Trade Y1 B1 Lambda\n\tc0g: Hmmm, I think I fucked this up at the begining by being too agresswive...\r\n\n\n16) lambda: Trade G1 R1 Lambda\n\n17) c0g: Discover B1 Lambda G3 Boston\n\n18) lambda: Build G1 Lambda\n\n19) c0g: Build B1 Boston\n\n20) lambda: Trade Y2 B2 Rigel\n\n21) c0g: Trade B1 Y1 Boston\n\n22) lambda: Discover G1 Lambda Y3 Rasalgethi\n\n23) c0g: Build Y2 Boston\n\n24) lambda: Build Y2 Rigel\n\n25) c0g: Trade Y2 R2 Boston\n\n26) lambda: Discover Y2 Rigel G2 Giauzar\n\tc0g: I've got my own xmas tree in boston!\n\n\tlambda: I've got a fallen Christmas tree at lambda, red and green. \n\nHomeworlds Online (SDG# 874)\nStarted: 2005.10.10, Ended: 2005.10.18\nParticipants: MatrixFrog (S), Horowits (N)\nWinner: MatrixFrog\n\n\tSYSTEM: Horowits resigns.\n\nHomeworlds Online (SDG# 883)\nStarted: 2005.10.10, Ended: 2005.10.14\nParticipants: JunkMan (S), istari (N)\nWinner: JunkMan\n\n1) istari: Homeworld B1 Y2 G3\n\n2) JunkMan: Homeworld B3 G1 Y3\n\n3) istari: Build G1 Istari\n\n4) JunkMan: Build Y1 Junkman\n\n5) istari: Discover G1 Istari Y3 Greenacres\n\n6) JunkMan: Discover Y1 Junkman G2 Azul\n\n7) istari: Build G1 Greenacres\n\n8) JunkMan: Build Y1 Junkman\n\n9) istari: Construct G2 Istari\n\n10) JunkMan: Trade Y1 B1 Junkman\n\n11) istari: Trade G2 B2 Istari\n\n12) JunkMan: Build Y1 Junkman\n\n13) istari: Move B2 Istari Greenacres\n\n14) JunkMan: Trade Y1 R1 Junkman\n\n15) istari: Trade G1 R1 Greenacres\n\n16) JunkMan: Build Y1 Azul\n\n17) istari: Build G1 Istari\n\n18) JunkMan: Sacrifice Y1 Azul\nMove B1 Junkman Azul\n\n19) istari: Build G2 Istari\n\n20) JunkMan: Build Y1 Azul\n\n21) istari: Move B2 Greenacres Azul\n\n22) JunkMan: Move Y1 Azul Junkman\n\n23) istari: Trade B2 R2 Azul\n\n24) JunkMan: Sacrifice Y1 Azul\nMove B1 Azul Junkman\n\n25) istari: Trade G2 R2 Istari\n\n26) JunkMan: Build R1 Junkman\n\n27) istari: Build G2 Greenacres\n\n28) JunkMan: Build R2 Junkman\n\n29) istari: Build R3 Istari\n\n30) JunkMan: Sacrifice Y1 Junkman\nMove R1 Junkman Azul\n\n31) istari: Build R3 Greenacres\n\n32) JunkMan: Build R3 Junkman\n\n33) istari: Attack R1S Azul\n\n34) JunkMan: Move Y3 Junkman Azul\n\n35) istari: Trade R3 Y3 Istari\n\n36) JunkMan: Sacrifice R1 Junkman\nAttack R2N Azul\n\n37) istari: Sacrifice Y3 Istari\nMove R2 Istari Greenacres\nMove R2 Greenacres Azul\nMove R1 Greenacres Azul\nCatastrophe Azul Red\n\n38) JunkMan: Build Y1 Azul\n\n39) istari: Trade G1 Y1 Istari\n\n40) JunkMan: Sacrifice B1 Junkman\nTrade Y1 G1 Azul\n\n41) istari: Build G2 Istari\n\n42) JunkMan: Build Y1 Azul\n\n43) istari: Trade Y1 B1 Istari\n\n44) JunkMan: Move G1 Azul Junkman\n\n45) istari: Sacrifice G2 Greenacres\nBuild R1 Greenacres\nBuild B1 Istari\n\n46) JunkMan: Build G2 Junkman\n\n47) istari: Trade G2 Y2 Istari\n\n48) JunkMan: Sacrifice G1 Junkman\nBuild Y1 Azul\n\n49) istari: Move B1 Istari Greenacres\n\n50) JunkMan: Discover Y1 Azul G3 Merlin\n\n51) istari: Move Y2 Istari Merlin\n\n52) JunkMan: Sacrifice Y1 Merlin\nMove R2 Junkman Azul\n\n53) istari: Build Y1 Merlin\n\n54) JunkMan: Build R1 Azul\n\n55) istari: Sacrifice Y2 Merlin\nMove B1 Greenacres Azul\nMove R1 Greenacres Azul\n\n56) JunkMan: Attack B1N Azul\n\n57) istari: Build R1 Azul\nCatastrophe Azul Red\n\n58) JunkMan: Build R1 Junkman\n\n59) istari: Move Y1 Merlin Istari\n\n60) JunkMan: Build B2 Azul\n\n61) istari: Construct G1 Greenacres\n\n62) JunkMan: Discover B2 Azul G3 Beret\n\n63) istari: Move B1 Istari Greenacres\n\n64) JunkMan: Trade B2 Y2 Beret\n\n65) istari: Move G1 Greenacres Istari\n\n66) JunkMan: Build Y1 Beret\n\n67) istari: Trade G1 R1 Istari\n\n68) JunkMan: Move Y2 Beret Istari\n\n69) istari: Move G1 Greenacres Azul\n\n70) JunkMan: Sacrifice G2 Junkman\nBuild Y2 Istari\nBuild Y3 Beret\nCatastrophe Istari Yellow\n\n71) istari: Sacrifice G3 Istari\nBuild G1 Azul\nBuild G2 Azul\nBuild G2 Azul\nCatastrophe Azul Green\n\n72) JunkMan: Move Y3 Beret Istari\n\n73) istari: Trade R3 G3 Greenacres\n\n74) JunkMan: Sacrifice R1 Junkman\nAttack R1N Istari\n\n\nHomeworlds Online (SDG# 912)\nStarted: 2005.10.10, Ended: 2005.10.11\nParticipants: Aaron (S), Pat (N)\nWinner: Aaron\n\n1) Pat: Homeworld G2 R3 G3\n\tAaron: Welcome to the family, Pat! I'm the admin here, so feel free to ask me if you have any problems or questions. I'm relatively new to this game though. Don't expect much of a challenge =) Good luck!\n\n2) Aaron: Homeworld Y1 B2 G3\n\tPat: *YAY* Happy to play with you. I'm brand-spankin'-new to this game, so you're the one that sholdn't worry about any challenges. .P\n\tAaron: Be sure to read the wiki. There are lots of helpful hints there.\n\n3) Pat: Build G1 Pat\n\tPat: Well...it seems foolish to not have a yellow in my starting homeworld, huh.\n\n4) Aaron: Build G1 Aaron\n\tAaron: oh, and no blue either...aye, I'm afraid we will have to start again. I don't see any way to get blue or yellow from where you're at.\n\n\tSYSTEM: Pat resigns.\n\nHomeworlds Online (SDG# 916)\nStarted: 2005.10.10, Ended: 2007.2.4\nParticipants: andylooney (S), shelbyt (N)\nWinner: andylooney\n\n1) shelbyt: Homeworld B2 Y1 G3\n\tandylooney: welcome to the party!\n\n2) andylooney: Homeworld B3 G2 Y3\n\tshelbyt: kewl dude\r\n\n\n3) shelbyt: Build G1 Shelbyt\n\n4) andylooney: Build Y1 Andylooney\n\n5) shelbyt: Trade G1 Y1 Shelbyt\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) shelbyt: Build G1 Shelbyt\n\n8) andylooney: Discover G1 Andylooney Y1 Different\n\n9) shelbyt: Discover G1 Shelbyt Y3 Elsewhere\n\n10) andylooney: Discover G1 Different Y3 Clampett\n\n11) shelbyt: Trade Y1 B1 Shelbyt\n\n12) andylooney: Build Y1 Andylooney\n\n13) shelbyt: Build B1 Shelbyt\n\n14) andylooney: Trade Y1 B1 Andylooney\n\n15) shelbyt: Discover B1 Shelbyt G3 Grblzkx\n\n16) andylooney: Build Y1 Andylooney\n\n17) shelbyt: Build B2 Grblzkx\n\n18) andylooney: Discover B1 Andylooney Y1 Different\n\n19) shelbyt: Build B2 Shelbyt\n\n20) andylooney: Build Y2 Andylooney\n\tshelbyt: Gong.\n\n21) shelbyt: Move B2 Shelbyt Elsewhere\n\n22) andylooney: Sacrifice G1 Clampett\nBuild B3 Different\n\n23) shelbyt: Build B3 Elsewhere\n\n24) andylooney: Trade B3 G3 Different\n\n25) shelbyt: Trade B2 Y2 Grblzkx\n\n26) andylooney: Discover Y2 Andylooney G1 Bud\n\n27) shelbyt: Trade B1 R1 Shelbyt\n\n28) andylooney: Trade Y1 R1 Andylooney\n\n29) shelbyt: Build G1 Shelbyt\n\n30) andylooney: Build G2 Different\n\n31) shelbyt: Discover B2 Elsewhere Y1 Nearly\n\n32) andylooney: Discover G3 Different Y3 Clampett\n\tshelbyt: hmmm, that's annoying. the one-pipped stars should really appear all at the same horizontal. \r\n\n\tandylooney: Yeah, no star-towing in this version. You have to deal with a random star-map...\n\n33) shelbyt: Sacrifice G3 Shelbyt\nBuild G2 Elsewhere\nBuild Y2 Grblzkx\nBuild G3 Shelbyt\n\tshelbyt: ack! damn you Salizar! you took the y3... booger.\n\n34) andylooney: Sacrifice G3 Clampett\nBuild G3 Different\nBuild Y3 Bud\nBuild R1 Andylooney\n\n35) shelbyt: Build R2 Shelbyt\n\tandylooney: Dude! When are you gonna move?\n\n36) andylooney: Build R2 Andylooney\n\n37) shelbyt: Build R2 Shelbyt\n\n38) andylooney: Move R1 Andylooney Bud\n\n39) shelbyt: Move R2 Shelbyt Grblzkx\n\n40) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild R3 Andylooney\nBuild R3 Bud\n\n41) shelbyt: Sacrifice G3 Shelbyt\nBuild G3 Shelbyt\nBuild R3 Grblzkx\nBuild B1 Nearly\n\n42) andylooney: Sacrifice Y3 Bud\nDiscover G3 Different Y3 Wise\nMove R3 Andylooney Different\nDiscover G2 Different B3 Ibm\n\n43) shelbyt: Move G1 Shelbyt Grblzkx\n\n44) andylooney: Sacrifice G3 Wise\nBuild G3 Ibm\nBuild Y3 Bud\nBuild B2 Different\n\n45) shelbyt: Move R2 Grblzkx Nearly\n\n46) andylooney: Move Y3 Bud Ibm\n\n47) shelbyt: Sacrifice Y2 Grblzkx\nDiscover B3 Elsewhere Y2 Slippery\nMove G1 Elsewhere Slippery\n\n48) andylooney: Move G3 Ibm Nearly\n\n49) shelbyt: Sacrifice G2 Elsewhere\nBuild G2 Slippery\nBuild Y3 Grblzkx\n\n50) andylooney: Sacrifice R2 Andylooney\nAttack R2N Nearly\nAttack B2N Nearly\n\n\nHomeworlds Online (SDG# 925)\nVariants: "Left man down"\nStarted: 2005.10.11, Ended: 2005.10.29\nParticipants: MatrixFrog (S), Evilaxe (N), Pat (E)\nWinner: Evilaxe\n\n1) Evilaxe: Homeworld G1 B3 Y3\n\tPat: 'Ello, all! I'm pretty new to this game, so don't be surprised if I do something obviously stupid.\r\n\r\nOther than that: good luck!\n\n2) Pat: Homeworld G2 B1 Y3\n\tEvilaxe: Never played it before, myself. Looks fun though.\n\tMatrixFrog: Hey, new people! That's great. I assume you've both read the rules, but ask me if you have any questions...\n\tMatrixFrog: Welcome, and good luck.\n\n3) MatrixFrog: Homeworld Y2 G3 B3\n\n4) Evilaxe: Build Y1 Evilaxe\n\n5) Pat: Build Y1 Pat\n\n6) MatrixFrog: Build B1 Matrixfrog\n\n7) Evilaxe: Discover Y1 Evilaxe G2 Sparkle\n\tEvilaxe: discover y1 evilaxe g2 sparkle\n\n8) Pat: Trade Y1 R1 Pat\n\tEvilaxe: ooops\n\n9) MatrixFrog: Discover B1 Matrixfrog Y1 Pad\n\n10) Evilaxe: Build Y1 Evilaxe\n\n11) Pat: Build R1 Pat\n\n12) MatrixFrog: Build B1 Matrixfrog\n\n13) Evilaxe: Trade Y1 R1 Evilaxe\n\n14) Pat: Discover R1 Pat Y3 Magrathea\n\n15) MatrixFrog: Trade B3 R3 Matrixfrog\n\n16) Evilaxe: Build Y1 Evilaxe\n\n17) Pat: Build R1 Pat\n\n18) MatrixFrog: Build R2 Matrixfrog\n\n19) Evilaxe: Build R2 Evilaxe\n\n20) Pat: Build R2 Pat\n\n21) MatrixFrog: Trade R3 Y3 Matrixfrog\n\n22) Evilaxe: Move R2 Evilaxe Sparkle\n\n23) Pat: Build Y1 Pat\n\n24) MatrixFrog: Build Y2 Matrixfrog\n\n25) Evilaxe: Build Y2 Sparkle\n\n26) MatrixFrog: Trade Y3 R3 Matrixfrog\n\n27) Evilaxe: Move R2 Sparkle Magrathea\n\tSYSTEM: Pat resigns.\n\tMatrixFrog: Awww.\n\n28) MatrixFrog: Discover B1 Pad G2 Epsilon\n\tPat: Aww: sorry 'bout that, guys. I got stranded without internet all of a sudden. Maybe I'll join in next game .P\n\tEvilaxe: Sorry. I thought you'd given up interest. Certainly wouldn't have forced resignation if I'd known.\n\n29) Evilaxe: Trade Y1 G1 Evilaxe\n\tMatrixFrog: Hm. Pat's homeworld is going to be extremely difficult to take over...\n\n30) MatrixFrog: Build B1 Epsilon\n\tMatrixFrog: If someone doesn't go in there and catastrophize all the red ships, the other player is likely to do it for them. So either those ships will all sit idle for the rest of the game, or else we'll be playing the "No you first" game until the end, I think.\n\n31) Evilaxe: Trade Y3 B3 Evilaxe\n\tEvilaxe: I'll take your word for it. I was planning an attack run on the remains of Pat, but I think I'll take your advice instead.\n\tMatrixFrog: Well so was I, but I realized that as soon as I got a red ship in there, you would probably trigger a catastrophe to prevent me from getting all those pieces. And vice versa... of course, one never knows what an opponent will do, so perhaps it's worth the risk under certain circumstances.\n\n32) MatrixFrog: Discover B1 Matrixfrog Y1 Sigma\n\n33) Evilaxe: Attack R1E Magrathea\n\n34) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove B1 Epsilon Evilaxe\nMove B1 Epsilon Evilaxe\nCatastrophe Evilaxe B\n\n35) Evilaxe: Discover R1 Magrathea R2 Nohope\n\tPat: Hey: no hard feelings .) Really. And looking at it, it should be an interesting game now that I'm not actually moving anymore. I'll be keeping tabs on y'all.\n\tMatrixFrog: I'm not entirely sure why I moved my blue ship out. It seems like it would have been more useful where it was.\n\n36) MatrixFrog: Move R2 Matrixfrog Evilaxe\n\tMatrixFrog: KABOOM!\r\n\n\tEvilaxe: ooops. Shoulda seen that.\n\n37) Evilaxe: Build R3 Evilaxe\n\tMatrixFrog: That's a happy thought.\n\n38) MatrixFrog: Sacrifice B1 Sigma\nTrade R2 G2 Evilaxe\n\tEvilaxe: :) I can't see any move that enables me to survive past this move. Thanks for the game, it's been fun.\n\n39) Evilaxe: Attack G2S Evilaxe\n\n40) MatrixFrog: Build R2 Matrixfrog\n\tEvilaxe: wow, I'm either missing something big, or I'm back in this game. (Probably the former)\n\n41) Evilaxe: Sacrifice G2 Evilaxe\nBuild R3 Nohope\nBuild R3 Magrathea\n\tMatrixFrog: Well, I could have caused a catastrophe, but then I'd have no presence in your homeworld, although you'd still be alive... I thought this was slightly better... not so sure.\n\n42) MatrixFrog: Discover R2 Matrixfrog B1 Bluey\n\tMatrixFrog: I'd like to think I'm slowly getting better at this game, but it's not necessarily true, it seems.\n\tEvilaxe: Sorry about this. It's late at night here and I can't seem to run all the scenarios through my head. I'll move tomorrow morning/afternoon.\n\n43) Evilaxe: Sacrifice Y2 Sparkle\nMove R3 Magrathea Bluey\nDiscover R3 Nohope Y1 Amber\n\n44) MatrixFrog: Trade R2 G2 Bluey\n\n45) Evilaxe: Attack G2S Bluey\n\n46) MatrixFrog: Build R2 Matrixfrog\n\tEvilaxe: attack g2s bluey\n\n47) Evilaxe: Move R3 Amber Matrixfrog\n\n48) MatrixFrog: Sacrifice R2 Matrixfrog\nAttack R3N Matrixfrog\nPass\n\n49) Evilaxe: Build R2 Bluey\n\n50) MatrixFrog: Discover R3 Matrixfrog B1 Gooey\n\n51) Evilaxe: Discover R2 Magrathea Y1 Amber\n\n52) MatrixFrog: Trade R3 Y3 Gooey\n\n53) Evilaxe: Trade G2 Y2 Bluey\n\n54) MatrixFrog: Move Y3 Gooey Matrixfrog\n\n55) Evilaxe: Sacrifice Y2 Bluey\nMove R1 Evilaxe Matrixfrog\nMove R2 Bluey Matrixfrog\n\n56) MatrixFrog: Move R3 Matrixfrog Amber\n\tMatrixFrog: I shouldn't have done that... I didn't need that y3 at home, I just needed to HAVE it. Live and learn...\n\tMatrixFrog: Well... I think.\n\n57) Evilaxe: Trade R3 B3 Bluey\n\tEvilaxe: I thought I was about to win about 4 turns ago. I just haven't been spotting your options\n\n58) MatrixFrog: Attack R2N Amber\n\n59) Evilaxe: Sacrifice B3 Bluey\nTrade R1 Y1 Matrixfrog\nTrade R2 Y2 Matrixfrog\nPass\nCatastrophe Matrixfrog Y\n\n\tEvilaxe: Tick...Tick...Tick BOOOM!!!!\r\n\r\nGood game, I really enjoyed it.\n\nHomeworlds Online (SDG# 926)\nStarted: 2005.10.11, Ended: 2005.11.5\nParticipants: Aaron (S), Pat (N)\nWinner: Aaron\n\n1) Pat: Homeworld G1 Y2 B3\n\tAaron: OK! Let's try this again =) I am going to modify the 'homeworlds' command eventually to make it more difficult to make the worst starting errors.\n\tPat: Yeah: put in an "Are you sure?" prompt in there or something .P\n\n2) Aaron: Homeworld Y2 B3 G3\n\n3) Pat: Build B1 Pat\n\tAaron: I finally did add the code. Next time you start a game and make one of the 4 standard starting blunders, the system will warn you.\n\tPat: Awesome job!\n\n4) Aaron: Build G1 Aaron\n\n5) Pat: Discover B1 Pat Y3 Magrathea\n\n6) Aaron: Trade G1 R1 Aaron\n\n7) Pat: Build B1 Pat\n\n8) Aaron: Build R1 Aaron\n\n9) Pat: Trade B1 R1 Pat\n\n10) Aaron: Trade R1 Y1 Aaron\n\n11) Pat: Build R1 Pat\n\n12) Aaron: Build G1 Aaron\n\n13) Pat: Build R2 Pat\n\n14) Aaron: Build R2 Aaron\n\n15) Pat: Build R2 Pat\n\n16) Aaron: Build R3 Aaron\nCatastrophe Pat R\n\n17) Pat: Build B1 Pat\n\tPat: Oh...well, suck. I prob'ly should've paid better attention to that, eh?\n\tAaron: It's an important rule that anybody can call a catastrophe anywhere at the end of their turn =/ All is not yet lost.\n\n18) Aaron: Discover R2 Aaron Y1 Bananas\n\n19) Pat: Trade B3 R3 Pat\n\n20) Aaron: Move R2 Bananas Magrathea\n\n21) Pat: Move R3 Pat Magrathea\n\n22) Aaron: Move R2 Magrathea Pat\n\n23) Pat: Move R3 Magrathea Pat\n\tPat: OH...well...hmmmmm\n\n24) Aaron: Move R2 Pat Magrathea\n\n25) Pat: Trade B1 Y1 Magrathea\n\tPat: Sorry 'bout that: I got stranded without internet there suddenly. Thaks for the patience. .)\n\n26) Aaron: Attack Y1 Magrathea\n\tAaron: No worries! Stuff happens. Hope all is well.\n\n27) Pat: Build B1 Pat\n\n28) Aaron: Discover G1 Aaron Y1 Bananas\n\n29) Pat: Build B1 Pat\n\n30) Aaron: Move R2 Magrathea Bananas\n\tPat: Geez: I keep hitting this game up at the last second, huh? Sorry 'bout making you wait like that. :|\n\tAaron: It's not a problem at all, Pat. I'm just happy to play =)\n\tAaron: I'm not going anywhere.\n\n31) Pat: Build B2 Pat\n\n32) Aaron: Build Y2 Aaron\nCatastrophe Pat B\n\n33) Pat: Build R1 Pat\n\tPat: Ah, crap. I had four again, didn't I .P Good catch.\n\tPat: Hahahahahah: now I can't create any blues! Not sure how this one'll turn out .P\n\n34) Aaron: Move R2 Bananas Magrathea\n\n35) Pat: Build R1 Pat\n\tAaron: I feel badly =/ Well, this is how we learn! Don't give up!\n\tPat: Don't feel bad! I actually prefer to play this way: against someone who knows what they're doing and larning from my mistakes. Don't hold back just because I'm new. .)\n\n36) Aaron: Move Y1 Magrathea Bananas\n\tAaron: Well here's what you will want to do immediately. What I *could* do is move my R2 from Magrathea into your home system and that would end the game. You need to move one of your Red ships to a new Blue star system so you can get Green and Yellow back. I will still try to come after you, but you'll last a little longer that way.\n\n37) Pat: Discover R1 Pat B3 Krikket\n\tPat: AH...I see.... Hadn't seen the game-ending move you were talking about. .P Thanks for the advice!\n\n38) Aaron: Build Y3 Bananas\n\n39) Pat: Trade R1 G1 Krikket\n\n40) Aaron: Move R3 Aaron Bananas\n\n41) Pat: Build G2 Krikket\n\n42) Aaron: Sacrifice Y3 Bananas\nMove R3 Bananas Magrathea\nMove R3 Magrathea Pat\nMove R2 Magrathea Pat\nCatastrophe Pat R\n\tAaron: Thanks for the game, Pat! I do hope you'll keep at it. Homeworlds is a fascinating game. Practice makes perfect!\n\n\nHomeworlds Online (SDG# 935)\nStarted: 2005.10.11, Ended: 2005.10.14\nParticipants: MatrixFrog (S), lambda (N)\nWinner: lambda\n\n1) lambda: Homeworld B3 Y2 G3\n\n2) MatrixFrog: Homeworld G1 B3 Y3\n\tlambda: Hello! It looks like you like playing this game a lot. \n\tMatrixFrog: Yeah. It's why I joined the site, but I like the other games too. I just don't get to play this at all in real life, because I don't have friends who are into it.\n\n3) lambda: Build G1 Lambda\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\tlambda: Yeah, this game is why I joined the site, too. I actually can find some people to play it with in real live, but most of them have just learned it and so I kill them easily with a cheap attack (everyone forgets about catastrophes at first). Playing on here has let me play people who are actually good (including Andy Looney).\n\n5) lambda: Build G1 Lambda\n\tMatrixFrog: I'm ALWAYS thinking about catastrophes. I probably use them too much.\n\tlambda: Yeah, once you've played a few times, you think about catastrophes. I'm now trying to figure out how to effectively defeat an opponent who plays reasonably defensively; if they don't let you have any large pieces, and keep their colors spread out to avoid catastrophe, and have a large and a red in their homeworld, it seems really hard to get anything done. \n\n6) MatrixFrog: Build Y1 Matrixfrog\n\tlambda: I like the way you can do normally dangerous things at the beginning of the game, like this. \n\n7) lambda: Discover G1 Lambda B1 Alderamin\n\n8) MatrixFrog: Discover Y1 Matrixfrog G2 Epsilon\n\n9) lambda: Build G2 Alderamin\n\n10) MatrixFrog: Build Y1 Epsilon\n\n11) lambda: Trade G2 Y2 Alderamin\n\n12) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n13) lambda: Build G2 Alderamin\n\n14) MatrixFrog: Build G2 Matrixfrog\n\n15) lambda: Discover G1 Alderamin Y2 Endymion\n\n16) MatrixFrog: Build Y3 Epsilon\n\n17) lambda: Move G1 Endymion Matrixfrog\nCatastrophe Matrixfrog G\n\n18) MatrixFrog: Move Y3 Epsilon Matrixfrog\n\tMatrixFrog: Somebody wasn't paying attention...\n\n19) lambda: Build Y2 Alderamin\n\n20) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n21) lambda: Trade Y2 B2 Alderamin\n\n22) MatrixFrog: Build Y1 Matrixfrog\n\n23) lambda: Move B2 Alderamin Matrixfrog\n\n24) MatrixFrog: Build Y2 Epsilon\n\n25) lambda: Sacrifice G2 Alderamin\nBuild B1 Matrixfrog\nBuild B1 Matrixfrog\nCatastrophe Matrixfrog B\n\n\nHomeworlds Online (SDG# 936)\nVariants: "Left man down"\nStarted: 2005.10.14, Ended: 2005.11.14\nParticipants: istari (S), MatrixFrog (N), Cerulean (E)\nWinner: istari\n\n1) MatrixFrog: Homeworld G1 B3 Y3\n\n2) Cerulean: Homeworld G3 B2 Y3\n\n3) istari: Homeworld B1 G2 Y3\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Cerulean: Build Y1 Cerulean\n\n6) istari: Build Y1 Istari\n\n7) MatrixFrog: Discover Y1 Matrixfrog G2 Goomba\n\n8) Cerulean: Trade Y1 G1 Cerulean\n\n9) istari: Discover Y1 Istari B3 Bigblue\n\n10) MatrixFrog: Build Y1 Matrixfrog\n\n11) Cerulean: Build G1 Cerulean\n\n12) istari: Trade Y1 G1 Bigblue\n\n13) MatrixFrog: Build Y1 Goomba\n\n14) Cerulean: Trade G1 B1 Cerulean\n\n15) istari: Build G1 Bigblue\n\n16) MatrixFrog: Discover Y1 Goomba B1 Sea\n\n17) Cerulean: Build G2 Cerulean\n\n18) istari: Build Y1 Istari\n\n19) MatrixFrog: Build Y2 Goomba\n\n20) Cerulean: Build Y2 Cerulean\n\n21) istari: Build Y2 Istari\n\n22) MatrixFrog: Move Y1 Sea Cerulean\n\n23) Cerulean: Trade G1 R1 Cerulean\n\n24) istari: Trade Y1 R1 Istari\n\n25) MatrixFrog: Build Y1 Cerulean\nCatastrophe Cerulean Y\n\n26) Cerulean: Build B1 Cerulean\n\n27) istari: Move Y2 Istari Bigblue\n\n28) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n29) Cerulean: Trade B1 Y1 Cerulean\n\n30) istari: Build R1 Istari\n\n31) MatrixFrog: Discover Y1 Goomba G1 Greenie\n\n32) Cerulean: Build Y1 Cerulean\n\n33) istari: Move Y2 Bigblue Goomba\n\n34) MatrixFrog: Build Y1 Greenie\n\n35) Cerulean: Discover Y1 Cerulean B1 Arkansas\n\n36) istari: Move Y2 Goomba Matrixfrog\n\n37) MatrixFrog: Trade B1 R1 Matrixfrog\n\n38) Cerulean: Build Y2 Cerulean\n\n39) istari: Build Y2 Matrixfrog\n\n40) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n41) Cerulean: Move Y1 Cerulean Arkansas\n\n42) istari: Trade Y2 B2 Matrixfrog\n\n43) MatrixFrog: Attack B2S Matrixfrog\n\n44) Cerulean: Move G2 Cerulean Arkansas\n\n45) istari: Sacrifice R1 Istari\nAttack R1N Matrixfrog\n\n46) MatrixFrog: Trade B2 R2 Matrixfrog\n\tistari: : \t\r\nI will be going away for a week this Friday 11/5 to Friday 11/11. I will not have access to the Internet and so I will not be able to move during that time. If you do a Force Surrender on me I will understand. Just wanted to let you know. Istari\n\n47) Cerulean: Build G2 Arkansas\n\n48) istari: Attack R2N Matrixfrog\n\n49) MatrixFrog: Move Y2 Goomba Matrixfrog\n\tMatrixFrog: Hey, no problem, I can wait... if I'm going to get a good rating, I'd rather it's because I actually won... no hurry for me. Thanks for letting me know.\n\n50) Cerulean: Discover G2 Arkansas Y3 Indiana\n\n51) istari: Attack Y2N Matrixfrog\n\n52) MatrixFrog: Discover Y1 Greenie G2 Branch\n\n53) Cerulean: Build G3 Indiana\n\n54) istari: Sacrifice Y2 Matrixfrog\nMove G1 Bigblue Branch\nMove G1 Branch Matrixfrog\n\n55) MatrixFrog: Trade G3 Y3 Matrixfrog\n\n56) Cerulean: Sacrifice G3 Indiana\nBuild G3 Indiana\nBuild G3 Arkansas\nBuild Y2 Cerulean\n\n57) istari: Construct G3 Matrixfrog\n\n58) MatrixFrog: Build Y2 Greenie\n\tistari: I'm back. Thanks for waiting.\n\n59) Cerulean: Move Y1 Arkansas Indiana\n\n60) istari: Attack Y3N Matrixfrog\n\n\nHomeworlds Online (SDG# 944)\nStarted: 2005.10.14, Ended: 2005.10.14\nParticipants: lambda (S), zweiss (N)\nWinner: lambda\n\n\tSYSTEM: zweiss resigns.\n\nHomeworlds Online (SDG# 950)\nStarted: 2005.10.14, Ended: 2005.11.1\nParticipants: MatrixFrog (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) MatrixFrog: Homeworld G2 B1 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tMatrixFrog: I don't expect to win this one either, but I hope to learn something.\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n7) andylooney: Build G1 Andylooney\n\n8) MatrixFrog: Build B2 Matrixfrog\n\n9) andylooney: Discover G1 Andylooney Y3 Clampett\n\n10) MatrixFrog: Trade B1 R1 Matrixfrog\n\n11) andylooney: Trade G1 R1 Andylooney\n\n12) MatrixFrog: Build Y1 Matrixfrog\n\n13) andylooney: Build R1 Andylooney\n\n14) MatrixFrog: Discover Y1 Matrixfrog G3 Down\n\n15) andylooney: Trade R1 B1 Andylooney\n\n16) MatrixFrog: Build Y1 Down\n\n17) andylooney: Build G1 Clampett\n\n18) MatrixFrog: Build Y1 Down\n\n19) andylooney: Discover B1 Andylooney G3 Paradise\n\n20) MatrixFrog: Build Y2 Matrixfrog\n\n21) andylooney: Build B2 Paradise\n\n22) MatrixFrog: Move B2 Matrixfrog Paradise\n\n23) andylooney: Build R1 Andylooney\n\n24) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack B2N Paradise\n\n25) andylooney: Build B2 Paradise\nCatastrophe Paradise Blue\n\n26) MatrixFrog: Discover Y2 Matrixfrog G3 Gobo\n\n27) andylooney: Move R1 Andylooney Down\n\n28) MatrixFrog: Build Y2 Matrixfrog\n\n29) andylooney: Attack Y1S Down\n\n30) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove Y1 Down Andylooney\nMove Y1 Down Andylooney\n\n31) andylooney: Trade Y3 G3 Andylooney\n\n32) MatrixFrog: Trade Y1 B1 Andylooney\n\n33) andylooney: Attack B1S Andylooney\n\tMatrixFrog: Argh! I meant to convert to g1, not b1. I was thinking of blue because that's the technology I was using... Not that I have much of a chance of winning this game anyway.\n\tandylooney: maybe there ought to be an undo option, or a verify step, so you can make sure your orders were what you wanted...\n\n34) MatrixFrog: Build Y1 Andylooney\n\tMatrixFrog: Definitely.\n\n35) andylooney: Attack Y1S Andylooney\n\n36) MatrixFrog: Build Y2 Matrixfrog\n\n37) andylooney: Attack Y1S Andylooney\n\n38) MatrixFrog: Build Y2 Gobo\n\n39) andylooney: Build Y3 Down\n\n40) MatrixFrog: Trade Y2 R2 Matrixfrog\n\n41) andylooney: Trade Y1 G1 Andylooney\n\n42) MatrixFrog: Build R1 Matrixfrog\n\n43) andylooney: Sacrifice G3 Andylooney\nBuild G2 Clampett\nBuild G3 Andylooney\nBuild R2 Andylooney\n\n44) MatrixFrog: Build Y1 Matrixfrog\n\n45) andylooney: Build Y2 Andylooney\n\n46) MatrixFrog: Trade R2 B2 Matrixfrog\n\n47) andylooney: Discover G1 Andylooney B3 Ibm\n\n48) MatrixFrog: Move B2 Matrixfrog Gobo\n\n49) andylooney: Sacrifice Y3 Down\nMove G1 Ibm Matrixfrog\nMove G1 Clampett Matrixfrog\nMove G1 Clampett Matrixfrog\nCatastrophe Matrixfrog Green\n\n50) MatrixFrog: Build Y3 Gobo\n\n51) andylooney: Move Y1 Andylooney Gobo\nCatastrophe Gobo Yellow\n\n52) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n53) andylooney: Trade G3 Y3 Andylooney\n\n54) MatrixFrog: Build Y1 Matrixfrog\n\n55) andylooney: Discover B1 Andylooney G3 Paradise\n\n56) MatrixFrog: Build G1 Matrixfrog\n\n57) andylooney: Build B2 Paradise\n\n58) MatrixFrog: Move Y1 Matrixfrog Gobo\n\n59) andylooney: Build B2 Paradise\n\n60) MatrixFrog: Sacrifice B2 Gobo\nTrade R1 G1 Matrixfrog\nTrade G1 R1 Matrixfrog\n\tMatrixFrog: *sigh* Good game... slowly I'm learning...\n\n61) andylooney: Sacrifice Y3 Andylooney\nMove B1 Paradise Matrixfrog\nMove B2 Paradise Matrixfrog\nMove B2 Paradise Matrixfrog\nCatastrophe Matrixfrog Blue\n\tandylooney: Thanks for the game! Keep on playing, you'll get better!\n\n\nHomeworlds Online (SDG# 940)\nStarted: 2005.10.15, Ended: 2006.1.14\nParticipants: Jesse (S), siukurnin (N)\nWinner: Jesse\n\n1) siukurnin: Homeworld G3 Y2 R3\n\n2) Jesse: Homeworld G2 B1 R3 *\n\n\tJesse: Welcome! Have you played much before?\n\tJesse: Are you okay? What's up?\n\tJesse: Well, 87 days is enough.\n\nHomeworlds Online (SDG# 990)\nStarted: 2005.10.15, Ended: 2006.1.4\nParticipants: ayahoo (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) ayahoo: Homeworld B3 G1 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) ayahoo: Build Y1 Ayahoo\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) ayahoo: Trade Y3 G3 Ayahoo\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) ayahoo: Build Y1 Ayahoo\n\n9) andylooney: Build Y1 Andylooney\n\n10) ayahoo: Trade Y1 R1 Ayahoo\n\n11) andylooney: Trade Y1 R1 Andylooney\n\n12) ayahoo: Build Y1 Ayahoo\n\n13) andylooney: Build Y1 Andylooney\n\n14) ayahoo: Discover Y1 Ayahoo G2 Iceburg\n\n15) andylooney: Build Y2 Andylooney\n\n16) ayahoo: Build Y2 Iceburg\n\n17) andylooney: Discover Y2 Andylooney G3 Garden\n\n18) ayahoo: Discover Y1 Iceburg B1 The Drop\n\n19) andylooney: Discover Y1 Andylooney B3 Ibm\n\n20) ayahoo: Sacrifice G3 Ayahoo\nBuild Y2 The\nBuild Y3 Ayahoo\nBuild R1 Ayahoo\n\n21) andylooney: Sacrifice G1 Clampett\nBuild Y3 Ibm\n\n\tandylooney: So, you haven't moved in weeks... are you planning to finish this game, or should I force you to resign?\n\tandylooney: I'm still willing to finish this, but my patience grows thin. If you don't move before the new year, I'm going to force your surrender.\n\tandylooney: OK, 66 days is long enough. Thanks for playing.\n\tandylooney: All right, well, you have a little more time, I guess. I tried to do a Force Surrender (first time I've ever done this) and I got a System Error!\n\nHomeworlds Online (SDG# 998)\nStarted: 2005.10.16, Ended: 2005.10.18\nParticipants: sketchwick (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld G1 B2 Y3\n\n2) sketchwick: Homeworld B1 Y3 G3\n\n3) jeep: Build Y1 Jeep\n\n4) sketchwick: Build G1 Sketchwick\n\n5) jeep: Trade Y1 B1 Jeep\n\n6) sketchwick: Trade G1 R1 Sketchwick\n\n7) jeep: Build Y1 Jeep\n\n8) sketchwick: Build G1 Sketchwick\n\n9) jeep: Trade Y1 G1 Jeep\n\n10) sketchwick: Discover G1 Sketchwick G2 Greenland\n\n11) jeep: Build G2 Jeep\n\n12) sketchwick: Build G2 Sketchwick\n\n13) jeep: Discover G2 Jeep Y3 Candyland\n\n14) sketchwick: Sacrifice G3 Sketchwick\nBuild G3 Sketchwick\nBuild R1 Sketchwick\nBuild R1 Sketchwick\n\n15) jeep: Build G3 Candyland\n\n16) sketchwick: Trade G2 Y2 Sketchwick\n\n17) jeep: Discover G2 Candyland B1 Bluefoundland\n\n18) sketchwick: Move R1 Sketchwick Greenland\n\n19) jeep: Build Y1 Jeep\n\n20) sketchwick: Move Y2 Sketchwick Greenland\n\n21) jeep: Trade G2 R2 Bluefoundland\n\n22) sketchwick: Build G2 Sketchwick\n\n23) jeep: Build B2 Jeep\n\n24) sketchwick: Discover G1 Greenland Y1 Submarine\n\tjeep: Hope I can remember what my plans were ;)\n\n25) jeep: Trade B2 R2 Jeep\n\n26) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Submarine\nBuild G3 Sketchwick\nBuild R2 Greenland\n\n27) jeep: Move G3 Candyland Greenland\n\n28) sketchwick: Trade R1 Y1 Sketchwick\n\n29) jeep: Sacrifice R2 Bluefoundland\nAttack R2S Greenland\nAttack Y2S Greenland\n\n30) sketchwick: Sacrifice G2 Submarine\nBuild R1 Greenland\nBuild R2 Greenland\nCatastrophe Greenland Red\n\n31) jeep: Build Y2 Greenland\n\n32) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Submarine\nBuild G3 Sketchwick\nBuild R1 Sketchwick\n\n33) jeep: Sacrifice Y3 Jeep\nMove Y2 Greenland Sketchwick\nMove Y2 Greenland Sketchwick\nDiscover G3 Greenland Y3 Notgreen\nCatastrophe Sketchwick Yellow\n\n34) sketchwick: Trade G2 Y2 Sketchwick\n\n35) jeep: Build B1 Jeep\n\n36) sketchwick: Sacrifice Y2 Sketchwick\nMove G3 Sketchwick Notgreen\nMove G3 Notgreen Jeep\n\n37) jeep: Move R2 Jeep Notgreen\n\n38) sketchwick: Trade R1 Y1 Sketchwick\n\n39) jeep: Move G3 Notgreen Sketchwick\n\n40) sketchwick: Sacrifice G2 Submarine\nBuild R1 Sketchwick\nBuild Y2 Sketchwick\n\n41) jeep: Sacrifice R2 Notgreen\nAttack R1S Sketchwick\nAttack R1S Sketchwick\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 1001)\nStarted: 2005.10.16, Ended: 2005.10.23\nParticipants: MrStickman (S), Evilaxe (N)\nWinner: MrStickman\n\n1) Evilaxe: Homeworld Y2 B1 G3\n\tMrStickman: Hiya. I don't think I've actually played Homeworlds since it was called IceTraders. I hope you don't mind me using this game to try and remember how it works...\n\tEvilaxe: No problem. My only experience is from reading the rules/wiki and about 3 moves into another game.\n\n2) MrStickman: Homeworld B3 G2 Y3\n\n3) Evilaxe: Build G1 Evilaxe\n\n4) MrStickman: Build Y1 Mrstickman\n\tMrStickman: Heh. Why am I now picturing veteran players popping in and saying things like "Gah!" or "<slaps forehead>?"\n\n5) Evilaxe: Trade G1 Y1 Evilaxe\n\n6) MrStickman: Trade Y1 B1 Mrstickman\n\n7) Evilaxe: Build G1 Evilaxe\n\tMrStickman: I just realized that the old "enlarge a ship" action from IceTraders went away. Ouch.\n\n8) MrStickman: Build Y1 Mrstickman\n\tEvilaxe: I've not played IceTraders, but I did spend a few minutes looking through the rules for 'How do I upgrade my ships?'\n\tMrStickman: Clearly, getting large ships is much much harder now. Cool.\n\n9) Evilaxe: Trade G1 R1 Evilaxe\n\n10) MrStickman: Trade Y1 R1 Mrstickman\n\n11) Evilaxe: Build Y1 Evilaxe\n\n12) MrStickman: Build B1 Mrstickman\n\n13) Evilaxe: Trade G3 B3 Evilaxe\n\n14) MrStickman: Trade B1 G1 Mrstickman\n\tEvilaxe: Damn, now that was a bad move. \n\tMrStickman: Um, mine or yours? (And I wonder if Aaron will ever put in an Undo function, perhaps only to be used by mutual consent of all players...)\n\tMrStickman: Oh. I just figured that out. Oops.\n\n15) Evilaxe: Trade Y1 G1 Evilaxe\n\tEvilaxe: I as referring to me. That move of mine just took green tech out of my hands, so I now have to waste a turn reaquiring it.\n\n16) MrStickman: Build Y1 Mrstickman\n\n17) Evilaxe: Build G1 Evilaxe\n\n18) MrStickman: Discover G1 Mrstickman B1 Lorem\n\n19) Evilaxe: Discover G1 Evilaxe B3 New_derbyshire\n\n20) MrStickman: Build G2 Lorem\n\n21) Evilaxe: Build G2 New_derbyshire\n\n22) MrStickman: Build G3 Lorem\n\n23) Evilaxe: Sacrifice Y1 Evilaxe\nMove G1 New_derbyshire Lorem\nCatastrophe Lorem G\n\n24) MrStickman: Build Y1 Mrstickman\n\n25) Evilaxe: Build G1 New_derbyshire\n\tMrStickman: Darn. I was about to do that to you. :)\n\n26) MrStickman: Discover Y1 Mrstickman B1 Ipsum\n\n27) Evilaxe: Sacrifice G2 New_derbyshire\nBuild G1 New_derbyshire\nBuild G2 Evilaxe\n\n28) MrStickman: Build B2 Mrstickman\n\n29) Evilaxe: Discover G1 Evilaxe Y3 Sindern\n\n30) MrStickman: Move B2 Mrstickman Ipsum\n\n31) Evilaxe: Build G2 Sindern\n\n32) MrStickman: Trade Y3 G3 Mrstickman\n\n33) Evilaxe: Build G3 Evilaxe\n\n34) MrStickman: Build G3 Mrstickman\n\n35) Evilaxe: Trade G2 B2 Evilaxe\n\tMrStickman: That was an interesting little rush.\n\tEvilaxe: Yeah. I think you got the best of it, but I don't really have enough experience to judge.\n\n36) MrStickman: Move G3 Mrstickman Ipsum\n\tMrStickman: There was a big risk on my part. If you'd had a yellow to sacrifice, you could've rushed my Homeworld and caused a catastrophe.\n\n37) Evilaxe: Move B2 Evilaxe Sindern\n\tMrStickman: (I hadn't actually checked for that possibility until I submitted the move.)\n\n38) MrStickman: Build G2 Ipsum\n\n39) Evilaxe: Move G1 Sindern Ipsum\n\n40) MrStickman: Trade G2 R2 Ipsum\n\n41) Evilaxe: Build B2 Sindern\n\n42) MrStickman: Attack G1N Ipsum\n\n43) Evilaxe: Build G2 Evilaxe\n\n44) MrStickman: Discover G1 Ipsum Y3 Dolor\n\n45) Evilaxe: Move G3 Evilaxe Sindern\n\n46) MrStickman: Move R2 Ipsum Dolor\n\n47) Evilaxe: Trade G2 Y2 Sindern\n\n48) MrStickman: Pass\n\tEvilaxe: Damn. Mistyped g2 when I meant b2\n\tEvilaxe: Doesn't really matter though.\n\tEvilaxe: Actually, and if you don't want to I won't hold it against you, but could you pass next turn?\r\n\r\nI promise I'll then just change one of the B2s in Sindern to a G3, emulating what I was trying to do, but absent-mindedly input wrong.\r\n\r\nOf course, feel perfectly free not to if you don't want to.\n\tEvilaxe: I mean G2\n\n49) Evilaxe: Trade B2 G2 Sindern\n\tMrStickman: A piece of me just breated a sigh of relief. "Finally, a turn I don't have to think about."\n\n50) MrStickman: Move B2 Ipsum Dolor\n\tEvilaxe: Thanks a lot.\n\n51) Evilaxe: Discover B2 Sindern Y1 Brent\n\n52) MrStickman: Build B2 Dolor\n\tMrStickman: construct b2 Dolor\n\tMrStickman: I'm an idiot.\n\n53) Evilaxe: Sacrifice Y2 Sindern\nMove G3 Sindern Evilaxe\nMove B3 Evilaxe Dolor\n\n54) MrStickman: Move B2 Dolor Brent\n\tEvilaxe: I think I've blown this one though.\n\n55) Evilaxe: Sacrifice R1 Evilaxe\nAttack R2S Dolor\n\n56) MrStickman: Discover B2 Dolor R1 Sit\n\n57) Evilaxe: Trade G3 Y3 Evilaxe\n\n58) MrStickman: Build G3 Ipsum\n\n59) Evilaxe: Sacrifice Y3 Evilaxe\nMove G1 New_derbyshire Ipsum\nMove G1 New_derbyshire Ipsum\nMove B3 Dolor Evilaxe\nCatastrophe Ipsum G\n\tEvilaxe: Yep, I realised how sill my move was as soon as I put my move in, and saw a shiny new G3 just waiting for you to take.\n\n60) MrStickman: Sacrifice G3 Mrstickman\nBuild B3 Sit\nBuild Y2 Mrstickman\nBuild Y2 Ipsum\n\tEvilaxe: Ooops, didn't take the Hyperspatial Flux into consideration....\n\n61) Evilaxe: Attack G1S Dolor\n\tMrStickman: It's weird. I keep watching for that, and I keep missing it....\n\n62) MrStickman: Trade B3 Y3 Sit\n\tEvilaxe: It looks like the end is nigh.\n\n63) Evilaxe: Move G1 Dolor Brent\n\n64) MrStickman: Move B2 Brent Sindern\n\n65) Evilaxe: Build B3 Brent\n\n66) MrStickman: Sacrifice Y3 Sit\nMove B2 Sit Sindern\nMove B2 Sindern Evilaxe\nMove B2 Sindern Evilaxe\nCatastrophe Evilaxe Blue\n\n67) Evilaxe: Trade B3 Y3 Brent\n\tEvilaxe: I can see where it's going, so i'll make it easy for you. Thanks for a good game.\n\tEvilaxe: Ah, sorry can't change to yeller in the Evilaxe system. Should have checked it more closely\n\n68) MrStickman: Move Y1 Mrstickman Brent\n\tMrStickman: Actually, I was kinda wondering how/if I'd be able to pull it off.\n\n69) Evilaxe: Move Y3 Brent Evilaxe\n\tMrStickman: And thank *you* for a lot of fun.\n\n70) MrStickman: Sacrifice Y2 Mrstickman\nMove Y2 Ipsum Evilaxe\nMove Y1 Ipsum Evilaxe\nCatastrophe Evilaxe Yellow\n\n\nHomeworlds Online (SDG# 986)\nStarted: 2005.10.16, Ended: 2005.10.26\nParticipants: JunkMan (S), ayahoo (N)\nWinner: JunkMan\n\n1) ayahoo: Homeworld G2 B1 Y3\n\n2) JunkMan: Homeworld G1 B3 Y3\n\n3) ayahoo: Build Y1 Ayahoo\n\n4) JunkMan: Build Y1 Junkman\n\n5) ayahoo: Trade Y3 G3 Ayahoo\n\n6) JunkMan: Trade Y1 G1 Junkman\n\n7) ayahoo: Build Y1 Ayahoo\n\n8) JunkMan: Build Y1 Junkman\n\n9) ayahoo: Trade Y1 R1 Ayahoo\n\n10) JunkMan: Trade Y1 R1 Junkman\n\n11) ayahoo: Build Y1 Ayahoo\n\n12) JunkMan: Build G1 Junkman\n\n13) ayahoo: Discover Y1 Ayahoo G3 Forest\n\n14) JunkMan: Discover G1 Junkman G2 Faucet\n\n15) ayahoo: Discover G3 Ayahoo R3 Ill\n\n16) JunkMan: Build Y1 Junkman\n\n17) ayahoo: Build Y2 Forest\n\n18) JunkMan: Build Y2 Junkman\n\n\tSYSTEM: ayahoo resigns.\n\nHomeworlds Online (SDG# 1002)\nStarted: 2005.10.16, Ended: 2006.1.14\nParticipants: Jesse (S), Divreon (N)\nWinner: Jesse\n\n1) Divreon: Homeworld B2 Y1 G3\n\n2) Jesse: Homeworld Y3 B1 G3\n\n3) Divreon: Build G1 Divreon\n\tJesse: Welcome! Have you played much Homeworlds?\n\n4) Jesse: Build G1 Jesse\n\tDivreon: No, im fairly new, I played versus andy once, and he corrected my misunderstandings of the rules, but that was awhile ago, and I heard you beat him, so im probably doomed, but good practice.\n\n5) Divreon: Trade G1 Y1 Divreon\n\tJesse: Well, best of luck to you then, and maybe I can give you a few pointers as well.\n\n6) Jesse: Discover G1 Jesse B2 Boogie\n\n7) Divreon: Discover Y1 Divreon G3 Iceland\n\n8) Jesse: Trade G1 Y1 Boogie\n\n\tJesse: Hmm, I may have made a poor choice last turn. We'll see. But I can't let you freeze me out of yellow.\n\tJesse: I guess we won't see after all.\n\nHomeworlds Online (SDG# 1008)\nStarted: 2005.10.17, Ended: 2005.10.22\nParticipants: cobalt (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) cobalt: Homeworld Y1 B3 G3\n\n3) andylooney: Build Y1 Andylooney\n\tcobalt: oi vey! figures that I'd get stuck playing you, of all people :P\n\n4) cobalt: Build G1 Cobalt\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tandylooney: well, you didn't get "stuck" playing me, you chose to accept my challenge. Didn't you read my name first?\n\n6) cobalt: Trade G1 R1 Cobalt\n\tcobalt: Well, on 'The Games' page there was a link that said 'Jump Right In!'\r\nI clicked on that :)\n\n7) andylooney: Build Y1 Andylooney\n\n8) cobalt: Build G1 Cobalt\n\n9) andylooney: Trade Y1 R1 Andylooney\n\n10) cobalt: Trade G1 B1 Cobalt\n\n11) andylooney: Build Y1 Andylooney\n\n12) cobalt: Build G1 Cobalt\n\n13) andylooney: Discover G1 Andylooney Y3 Clampett\n\n14) cobalt: Discover G1 Cobalt B2 Doxsee\n\n15) andylooney: Build Y1 Andylooney\n\n16) cobalt: Build G1 Doxsee\n\n17) andylooney: Build G2 Clampett\n\n18) cobalt: Trade G3 Y3 Cobalt\n\n19) andylooney: Discover Y1 Andylooney G3 Garden\n\n20) cobalt: Trade Y3 G3 Cobalt\n\n21) andylooney: Build Y2 Garden\n\n22) cobalt: Build G2 Cobalt\n\n23) andylooney: Discover G1 Clampett Y2 Plugh\n\n24) cobalt: Trade G2 R2 Cobalt\n\n25) andylooney: Discover Y1 Garden B2 Bomber\n\n26) cobalt: Move R2 Cobalt Bomber\n\n27) andylooney: Discover Y1 Bomber G3 Paradise\n\n28) cobalt: Trade R2 Y2 Bomber\n\n29) andylooney: Sacrifice G2 Clampett\nBuild Y3 Garden\nBuild Y3 Paradise\n\n30) cobalt: Discover Y2 Bomber R3 Xiii\n\n31) andylooney: Build G2 Plugh\n\n\tcobalt: Oh, we both know how this game ends. Next time we meet, hopefully I'll be a little bit better :)\n\tSYSTEM: cobalt resigns.\n\nHomeworlds Online (SDG# 1010)\nStarted: 2005.10.17, Ended: 2005.10.24\nParticipants: cobalt (S), killerkitty94 (N)\nWinner: cobalt\n\n\tkillerkitty94: what do i do?\n\trootbeer: There are some suggestions on the wiki. On your first turn, you establish a homeworld with the "homeworld" command. \r\n\n\trootbeer: Try to move before the time runs out, so as not to be rude to your fellow players.\n\tcobalt: I'll wait a few more days.\n\trootbeer: KillerKitty hasn't been online in two days. I hope he or she is spending this time studying the rules!\n\tSYSTEM: killerkitty94 resigns.\n\nHomeworlds Online (SDG# 1016)\nStarted: 2005.10.17, Ended: 2005.10.25\nParticipants: TwoShort (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld G2 B1 Y3\n\n2) TwoShort: Homeworld Y3 B1 G3\n\n3) ts52: Build Y1 Ts52\n\n4) TwoShort: Build G1 Twoshort\n\n5) ts52: Discover Y1 Ts52 G3 Endor\n\n6) TwoShort: Build G1 Twoshort\n\tts52: Thanks for joining the game. Hvae a great game.\n\n7) ts52: Build Y1 Ts52\n\n8) TwoShort: Discover G1 Twoshort Y2 Sulphur\n\n9) ts52: Trade Y1 G1 Ts52\n\n10) TwoShort: Discover G1 Sulphur Y3 Monkeywrench\n\n11) ts52: Trade G1 R1 Ts52\n\n12) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n13) ts52: Build Y1 Ts52\n\n14) TwoShort: Build G1 Twoshort\n\n15) ts52: Trade Y1 B1 Ts52\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Monkeywrench\nBuild G2 Bluestar\nBuild G3 Twoshort\n\n17) ts52: Build B2 Ts52\n\n18) TwoShort: Trade G1 Y1 Bluestar\n\n19) ts52: Discover B1 Ts52 G3 Garden\n\n20) TwoShort: Move G2 Bluestar Garden\n\n21) ts52: Build B2 Garden\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Garden\nBuild G3 Twoshort\nBuild Y1 Bluestar\n\n23) ts52: Build Y2 Endor\n\n24) TwoShort: Trade Y1 R1 Bluestar\n\n25) ts52: Build B3 Ts52\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluestar\nBuild R1 Bluestar\nBuild G3 Twoshort\n\n27) ts52: Build Y2 Ts52\n\n28) TwoShort: Sacrifice R1 Bluestar\nAttack B2N Garden\n\n29) ts52: Move B3 Ts52 Endor\n\n30) TwoShort: Sacrifice B2 Garden\nTrade G2 Y2 Garden\nTrade G2 B2 Monkeywrench\n\n31) ts52: Trade Y2 G2 Endor\n\n32) TwoShort: Sacrifice Y2 Garden\nMove G1 Garden Ts52\nMove G1 Monkeywrench Ts52\n\n33) ts52: Build G2 Endor\n\n34) TwoShort: Sacrifice G1 Twoshort\nBuild G1 Ts52\nCatastrophe Ts52 Green\n\n35) ts52: Move Y2 Ts52 Garden\n\tts52: well played\n\n36) TwoShort: Build G1 Twoshort\n\n37) ts52: Build Y2 Endor\n\n38) TwoShort: Sacrifice G1 Twoshort\nBuild B3 Monkeywrench\n\n39) ts52: Discover B2 Ts52 Y2 Shortbus\n\n40) TwoShort: Build G1 Twoshort\n\n41) ts52: Sacrifice Y2 Endor\nMove G2 Endor Shortbus\nMove G2 Shortbus Twoshort\n\n42) TwoShort: Sacrifice B3 Monkeywrench\nTrade G3 R3 Twoshort\nTrade B2 Y2 Monkeywrench\nTrade Y1 R1 Bluestar\n\n\n43) ts52: Build G1 Twoshort\n\n44) TwoShort: Attack G2N Twoshort\n\n45) ts52: Build G1 Twoshort\nCatastrophe Twoshort Green\n\n46) TwoShort: Trade R3 G3 Twoshort\n\n47) ts52: Build G1 Endor\n\n48) TwoShort: Trade R1 G1 Bluestar\n\n49) ts52: Move G1 Endor Ts52\n\n50) TwoShort: Build G1 Bluestar\n\n51) ts52: Move B3 Endor Bluestar\n\n52) TwoShort: Sacrifice Y2 Monkeywrench\nMove G1 Bluestar Endor\nMove R1 Bluestar Twoshort\n\n53) ts52: Move G2 Endor Shortbus\n\n54) TwoShort: Build G2 Bluestar\n\n55) ts52: Trade B3 R3 Bluestar\n\n56) TwoShort: Sacrifice Y1 Bluestar\nDiscover G2 Bluestar B3 Amideadyet\n\n57) ts52: Build G2 Shortbus\n\n58) TwoShort: Sacrifice G1 Bluestar\nBuild G1 Amideadyet\n\n59) ts52: Build Y1 Endor\n\n60) TwoShort: Trade G2 Y2 Amideadyet\n\n61) ts52: Move Y1 Endor Bluestar\n\n62) TwoShort: Build G2 Amideadyet\n\n63) ts52: Move R3 Bluestar Endor\n\n64) TwoShort: Trade G2 B2 Amideadyet\n\n65) ts52: Build G2 Ts52\n\n66) TwoShort: Discover B2 Amideadyet Y1 Futility\n\n67) ts52: Build Y3 Endor\n\n68) TwoShort: Sacrifice G1 Endor\nBuild B3 Futility\n\n69) ts52: Build B3 Shortbus\n\n70) TwoShort: Discover B3 Futility R2 R2d2\n\n71) ts52: Move R3 Endor Futility\n\n72) TwoShort: Discover B2 Futility R2 C3po\n\n73) ts52: Move R3 Futility Amideadyet\n\n74) TwoShort: Move Y2 Amideadyet Bluestar\n\n75) ts52: Attack G1 Amideadyet\n\n76) TwoShort: Build R1 Twoshort\n\n77) ts52: Move Y1 Bluestar Amideadyet\n\n78) TwoShort: Move R1 Twoshort Bluestar\n\n79) ts52: Move R3 Amideadyet Bluestar\n\n80) TwoShort: Sacrifice G3 Twoshort\nBuild R2 Bluestar\nBuild R3 Bluestar\nBuild R3 Twoshort\nCatastrophe Bluestar Red\n\n81) ts52: Sacrifice B2 Shortbus\nTrade B3 R3 Shortbus\nTrade Y3 R3 Endor\n\tts52: Wow, nicely done...\n\n82) TwoShort: Trade R3 G3 Twoshort\n\n83) ts52: Move R3 Endor Bluestar\n\n84) TwoShort: Build R1 Twoshort\n\n85) ts52: Attack Y2 Bluestar\n\n86) TwoShort: Sacrifice G3 Twoshort\nBuild B2 R2d2\nBuild B3 C3po\nPass\n\n87) ts52: Sacrifice Y2 Garden\nMove R3 Bluestar Twoshort\nMove R3 Shortbus Twoshort\nCatastrophe Twoshort Red\n\n\nHomeworlds Online (SDG# 1030)\nStarted: 2005.10.18, Ended: 2005.11.7\nParticipants: zevzimra (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) zevzimra: Homeworld B2 G3 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) zevzimra: Construct Y1 Zevzimra\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) zevzimra: Trade Y1 B1 Zevzimra\n\n7) andylooney: Build G1 Andylooney\n\n8) zevzimra: Trade B1 G1 Zevzimra\n\n9) andylooney: Discover G1 Andylooney Y3 Clampett\n\n10) zevzimra: Discover G1 Zevzimra Y1 Backwater\n\n11) andylooney: Build G2 Clampett\n\n12) zevzimra: Build G2 Backwater\n\n13) andylooney: Build G3 Andylooney\n\n14) zevzimra: Build Y1 Zevzimra\n\n15) andylooney: Trade G1 R1 Andylooney\n\n16) zevzimra: Construct Y1 Zevzimra\n\n17) andylooney: Build Y2 Andylooney\n\n18) zevzimra: Trade Y1 R1 Zevzimra\n\n19) andylooney: Discover G1 Clampett Y1 Different\n\n20) zevzimra: Trade Y1 G1 Zevzimra\n\n21) andylooney: Build G3 Different\n\n22) zevzimra: Build R1 Zevzimra\n\n23) andylooney: Discover Y2 Andylooney B3 Ibm\n\n24) zevzimra: Discover G1 Zevzimra Y1 Pisspot\n\n25) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild Y2 Ibm\nBuild Y2 Andylooney\n\n26) zevzimra: Move R1 Zevzimra Backwater\n\n27) andylooney: Discover Y3 Andylooney B3 Bluestar\n\n28) zevzimra: Construct R2 Backwater\n\n29) andylooney: Sacrifice G2 Clampett\nBuild Y3 Bluestar\nBuild R2 Andylooney\n\n30) zevzimra: Discover R2 Backwater B3 Kasparov\n\n31) andylooney: Move R2 Andylooney Ibm\n\tandylooney: Dang! I can't believe how I messed up my last move on our Martian Chess game! I was obviously too sleepy when I was making my final moves last night...\n\n32) zevzimra: Sacrifice G2 Backwater\nBuild R2 Backwater\nBuild R3 Zevzimra\n\tzevzimra: That's okay... it happens to the best of us!\n\n33) andylooney: Sacrifice G3 Different\nBuild G2 Different\nBuild R3 Andylooney\nBuild R3 Ibm\n\n34) zevzimra: Construct G2 Pisspot\n\n35) andylooney: Discover R1 Andylooney G3 Garden\n\n\tzevzimra: Thanks for the game!\n\tSYSTEM: zevzimra resigns.\n\nHomeworlds Online (SDG# 1021)\nStarted: 2005.10.18, Ended: 2005.10.21\nParticipants: cobalt (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) cobalt: Homeworld B1 G2 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) cobalt: Build Y1 Cobalt\n\n5) TwoShort: Build G1 Twoshort\n\n6) cobalt: Trade Y1 G1 Cobalt\n\n7) TwoShort: Discover G1 Twoshort Y3 Threetall\n\n8) cobalt: Build Y1 Cobalt\n\n9) TwoShort: Move G1 Threetall Cobalt\n\n10) cobalt: Trade G1 R1 Cobalt\n\n11) TwoShort: Build G1 Cobalt\n\n12) cobalt: Discover R1 Cobalt G3 Hindsight\n\n13) TwoShort: Trade G1 Y1 Cobalt\n\n14) cobalt: Trade Y3 R3 Cobalt\n\n15) TwoShort: Build Y2 Cobalt\n\n16) cobalt: Move Y1 Cobalt Hindsight\n\n17) TwoShort: Build G1 Cobalt\n\n18) cobalt: Attack Y2N Cobalt\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild Y2 Cobalt\nBuild Y2 Cobalt\nCatastrophe Cobalt Yellow\n\n20) cobalt: Move R1 Hindsight Cobalt\n\n21) TwoShort: Build G2 Cobalt\n\n22) cobalt: Catastrophe Cobalt G\nMove Y1 Hindsight Twoshort\n\n23) TwoShort: Trade G2 R2 Twoshort\n\n24) cobalt: Sacrifice R1 Cobalt\nAttack G1N Twoshort\n\n25) TwoShort: Attack G1S Twoshort\n\n26) cobalt: Discover Y1 Twoshort Y3 Thatwasdumbofme\n\n27) TwoShort: Build G1 Twoshort\n\n28) cobalt: Move Y1 Thatwasdumbofme Cobalt\n\n29) TwoShort: Build G1 Twoshort\n\tTwoShort: construct g1 twoshort\r\n\n\n30) cobalt: Trade R3 G3 Cobalt\n\n31) TwoShort: Discover G1 Twoshort Y3 Jed\n\n32) cobalt: Build Y1 Cobalt\n\n33) TwoShort: Build G2 Twoshort\n\n34) cobalt: Build Y2 Cobalt\n\n35) TwoShort: Trade G2 B2 Twoshort\n\n36) cobalt: Trade Y2 R2 Cobalt\n\n37) TwoShort: Build G2 Twoshort\n\n38) cobalt: Build Y2 Cobalt\n\n39) TwoShort: Move B2 Twoshort Jed\n\n40) cobalt: Move R2 Cobalt Jed\n\n41) TwoShort: Move B2 Jed Cobalt\n\n42) cobalt: Sacrifice Y2 Cobalt\nMove G3 Cobalt Jed\nMove G3 Jed Twoshort\nCatastrophe Twoshort G\n\n43) TwoShort: Trade B2 R2 Cobalt\n\n\tSYSTEM: cobalt resigns.\n\nHomeworlds Online (SDG# 1038)\nStarted: 2005.10.19, Ended: 2005.12.13\nParticipants: andylooney (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld G1 B2 Y3\n\n2) andylooney: Homeworld B3 G2 Y3\n\tjeep: Overs! ;)\n\n3) jeep: Build Y1 Jeep\n\n4) andylooney: Build Y1 Andylooney\n\n5) jeep: Discover Y1 Jeep G3 Lantern\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) jeep: Build Y1 Jeep\n\n8) andylooney: Build G1 Andylooney\n\n9) jeep: Trade Y3 G3 Jeep\n\n10) andylooney: Discover G1 Andylooney Y1 Different\n\n11) jeep: Build G2 Jeep\n\n12) andylooney: Build G2 Different\n\tjeep: Ack, that wasn't what I meant to do... *sigh* oh well. \n\n13) jeep: Discover G2 Jeep G3 Arrow\n\n14) andylooney: Build Y2 Andylooney\n\n15) jeep: Build Y2 Jeep\n\n16) andylooney: Discover Y2 Andylooney B1 Bomber\n\n17) jeep: Discover Y2 Jeep B3 Moon\n\n18) andylooney: Discover G2 Different Y3 Clampett\n\n19) jeep: Sacrifice G3 Jeep\nBuild Y2 Moon\nBuild Y3 Jeep\nBuild G3 Arrow\n\n20) andylooney: Move G1 Different Arrow\nCatastrophe Arrow Green\n\n21) jeep: Trade Y2 G2 Moon\n\n22) andylooney: Move G1 Andylooney Bomber\n\n23) jeep: Trade Y1 G1 Jeep\n\n24) andylooney: Build G3 Bomber\n\n25) jeep: Build G3 Moon\n\n26) andylooney: Trade G1 R1 Bomber\n\n27) jeep: Trade G2 R2 Moon\n\n28) andylooney: Build R1 Bomber\n\n29) jeep: Build R1 Moon\n\n30) andylooney: Move R1 Bomber Clampett\n\n31) jeep: Build G1 Moon\n\n32) andylooney: Build R2 Bomber\n\n33) jeep: Discover G1 Moon B1 Man\n\tjeep: Sorry, my brain is burning. I'll think about it later tonight.\n\n34) andylooney: Build G2 Bomber\n\n35) jeep: Build Y1 Moon\n\n36) andylooney: Move R2 Bomber Lantern\n\n37) jeep: Move R2 Moon Man\n\n38) andylooney: Attack Y1N Lantern\n\n39) jeep: Sacrifice G3 Moon\nBuild G3 Man\nBuild R2 Man\nBuild R3 Moon\n\n40) andylooney: Sacrifice G3 Bomber\nBuild G3 Bomber\nBuild R3 Clampett\nBuild R3 Lantern\n\n41) jeep: Trade Y1 B1 Moon\n\n42) andylooney: Sacrifice G3 Bomber\nBuild G3 Bomber\nBuild Y1 Bomber\nBuild Y1 Lantern\n\n43) jeep: Sacrifice G3 Man\nBuild G3 Man\nBuild Y2 Moon\nBuild B2 Moon\n\n44) andylooney: Trade G2 B2 Bomber\n\n45) jeep: Sacrifice Y2 Moon\nMove B1 Moon Bomber\nMove B2 Moon Bomber\nCatastrophe Bomber Blue\n\n46) andylooney: Build G2 Clampett\n\n47) jeep: Trade R3 G3 Moon\n\n48) andylooney: Sacrifice G2 Clampett\nBuild Y1 Lantern\nBuild Y2 Andylooney\n\n49) jeep: Sacrifice G3 Man\nBuild G2 Moon\nBuild G3 Man\nBuild Y2 Moon\n\n50) andylooney: Discover R1 Clampett B1 Bomber\n\n51) jeep: Move Y2 Moon Man\n\n52) andylooney: Sacrifice Y2 Andylooney\nDiscover R3 Clampett Y2 Plugh\nMove R1 Bomber Andylooney\n\n53) jeep: Trade R2 B2 Man\n\n54) andylooney: Sacrifice G2 Clampett\nBuild Y3 Andylooney\nBuild R1 Andylooney\n\n55) jeep: Move Y2 Man Lantern\nCatastrophe Lantern Yellow\n\tjeep: Yeah, almost moved into that system, I didn't think you'd cash it yet.\n\n56) andylooney: Trade R1 B1 Andylooney\n\n57) jeep: Sacrifice G3 Moon\nBuild G2 Jeep\nBuild G3 Moon\nBuild R1 Man\n\n58) andylooney: Discover B1 Andylooney Y1 Different\n\tandylooney: Dang, I wish I hadn't let you blow up my fleet of little yellows! When I put a 3rd ship in that system it was safe, but I got so interested in cashing in my investment that I didn't notice it was no longer safe to keep that fleet of 3 together! And now, with them gone, my plan for destroying you is ruined, and I find I've painted myself into a corner! Plus, I can't believe how far I've let you monopolize the green economy! You've got 2 factories, and I'm totally frozen out! Ack! I thought I was on the brink of victory, but now I think I'm going to lose this one! Oh well... :)\n\n59) jeep: Sacrifice G3 Man\nBuild G3 Man\nBuild Y1 Moon\nBuild Y1 Jeep\n\n60) andylooney: Move B1 Different Lantern\n\tjeep: Yeah, well, I'm famous for losing games that I should win. In fact, my other Homeworlds game here seemed like I had it won, then I just gave him a ship.\n\n61) jeep: Sacrifice Y2 Moon\nMove R1 Man Lantern\nMove R2 Man Lantern\nCatastrophe Lantern Red\n\n62) andylooney: Build B1 Lantern\n\tjeep: I'm heading on vacation starting tomorrow. I had thought this might end by the time I left. I appreciate your patience while I'm driving. I'll move today, tomorrow a.m., and after I get to NE.\n\n63) jeep: Sacrifice G3 Moon\nBuild G3 Moon\nBuild Y1 Moon\nBuild R1 Moon\n\tandylooney: no problem, I'm in lots of games and I can be patient. Have fun!\n\n64) andylooney: Sacrifice Y3 Andylooney\nMove B1 Lantern Man\nMove B1 Lantern Man\nDiscover R3 Plugh B3 Ibm\nCatastrophe Man Blue\n\n65) jeep: Discover Y1 Moon B1 Station\n\tjeep: Wow, now I want to see what the board looked like before that move. \n\n66) andylooney: Build Y2 Andylooney\n\tjeep: I'm heading back home tomorrow. Limited access until Monday.\n\n67) jeep: Sacrifice G2 Moon\nBuild Y2 Moon\nBuild Y2 Station\n\n68) andylooney: Trade Y2 G2 Andylooney\n\n69) jeep: Sacrifice G2 Jeep\nBuild Y2 Station\nBuild Y3 Moon\n\n70) andylooney: Sacrifice G2 Andylooney\nBuild R2 Ibm\nBuild R2 Andylooney\n\n71) jeep: Trade Y2 R2 Station\n\n72) andylooney: Trade R2 Y2 Ibm\n\n73) jeep: Sacrifice Y3 Moon\nMove R2 Station Andylooney\nMove R1 Moon Station\nMove R1 Station Andylooney\nCatastrophe Andylooney Red\n\n74) andylooney: Trade Y2 G2 Ibm\n\tandylooney: Ouch.\n\n75) jeep: Move Y1 Moon Station\n\n76) andylooney: Trade Y3 R3 Andylooney\n\n77) jeep: Sacrifice G3 Moon\nBuild Y2 Jeep\nBuild Y3 Moon\nBuild Y3 Moon\n\n78) andylooney: Build R1 Ibm\n\n79) jeep: Move G1 Jeep Moon\n\n80) andylooney: Build G1 Ibm\n\n81) jeep: Build G2 Moon\n\n82) andylooney: Trade G1 B1 Ibm\n\n83) jeep: Move R1 Moon Station\n\n\tandylooney: There's no way I can recover from this... you've got me, I resign.\n\tSYSTEM: andylooney resigns.\n\nHomeworlds Online (SDG# 1041)\nStarted: 2005.10.19, Ended: 2005.10.27\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld B1 Y3 G3\n\n2) jeep: Homeworld G1 B2 Y3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build Y1 Jeep\n\n5) sketchwick: Discover G1 Sketchwick Y2 First\n\n6) jeep: Trade Y1 G1 Jeep\n\n7) sketchwick: Build G2 Sketchwick\n\n8) jeep: Discover G1 Jeep G3 Blood\n\n9) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 First\nBuild G2 First\nBuild G3 Sketchwick\n\n10) jeep: Build Y1 Jeep\n\tjeep: Heh, I suck. I am constantly skipping steps in my plan.\n\n11) sketchwick: Discover G2 First B3 Sport\n\n12) jeep: Trade Y3 G3 Jeep\n\n13) sketchwick: Trade G2 Y2 Sport\n\n14) jeep: Build Y1 Jeep\n\n15) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Sketchwick\nBuild G3 Sketchwick\nBuild Y1 Sport\n\n16) jeep: Move Y1 Jeep Blood\n\n17) sketchwick: Trade Y2 R2 Sport\n\n18) jeep: Build Y2 Jeep\n\n19) sketchwick: Discover G2 Sketchwick Y2 Bra\n\n20) jeep: Build Y3 Blood\n\n21) sketchwick: Sacrifice G3 Sketchwick\nBuild G3 Sketchwick\nBuild Y3 Sport\nBuild R1 Sport\n\n22) jeep: Trade Y1 R1 Jeep\n\n23) sketchwick: Sacrifice Y3 Sport\nMove G2 Bra Sport\nMove G2 First Blood\nMove G1 First Blood\nCatastrophe Blood Green\n\n24) jeep: Build Y1 Jeep\n\n25) sketchwick: Build G1 Sport\n\n26) jeep: Build R1 Jeep\n\n27) sketchwick: Move G1 Sport Jeep\n\tjeep: I have no clue what I'm doing.\n\n28) jeep: Move G3 Jeep Sport\n\n29) sketchwick: Sacrifice G3 Sketchwick\nBuild G1 Sport\nBuild G2 Sport\nBuild G3 Sketchwick\nCatastrophe Sport Green\n\n30) jeep: Attack G1N Jeep\n\n31) sketchwick: Discover G3 Sketchwick Y2 Drink\n\tjeep: so many tactics I haven't thought about\n\n32) jeep: Discover G1 Jeep Y3 Me\n\n33) sketchwick: Move G3 Drink Sport\n\n34) jeep: Trade Y1 G1 Jeep\n\n35) sketchwick: Move G3 Sport Jeep\n\n36) jeep: Build G2 Jeep\nCatastrophe Jeep Green\n\n37) sketchwick: Trade R2 G2 Sport\n\n38) jeep: Move G1 Me Jeep\n\n39) sketchwick: Build R2 Sport\n\n40) jeep: Build Y1 Jeep\n\n41) sketchwick: Build G1 Sketchwick\n\n42) jeep: Trade R1 B1 Jeep\n\n43) sketchwick: Trade G2 Y2 Sketchwick\n\n44) jeep: Trade Y2 G2 Jeep\n\n45) sketchwick: Build G1 Sport\n\n46) jeep: Discover G1 Jeep Y3 Fan\n\n47) sketchwick: Sacrifice Y2 Sketchwick\nMove G2 Sport Jeep\nMove G1 Sport Jeep\n\n48) jeep: Move G2 Jeep Sketchwick\n\n49) sketchwick: Sacrifice R2 Sport\nAttack R1 Jeep\nAttack Y1 Jeep\n\n50) jeep: Sacrifice G1 Fan\nBuild B1 Jeep\n\n51) sketchwick: Attack B1 Jeep\n\n52) jeep: Sacrifice G2 Sketchwick\nBuild B2 Jeep\nBuild B2 Jeep\n\n53) sketchwick: Pass\nCatastrophe Jeep Blue\n\n\nHomeworlds Online (SDG# 1022)\nVariants: "Left man down"\nStarted: 2005.10.19, Ended: 2005.11.23\nParticipants: mtgrocks04 (S), MatrixFrog (N), ayahoo (E)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G2 B3 Y3\n\n2) ayahoo: Homeworld G1 B3 Y3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\tMatrixFrog: Okay... maybe one or two more days, then that's it.\n\trootbeer: It looks to me as if it's too easy for a new player to sign up for a game without realizing what they're doing. If they're new and not invested in the site, they just don't bother coming back.\n\trootbeer: It's been five days since mtgrocks04 has been seen on the site.\r\n\n\tMatrixFrog: True.\n\n\tSYSTEM: ayahoo resigns.\n\nHomeworlds Online (SDG# 1048)\nStarted: 2005.10.19, Ended: 2005.10.28\nParticipants: TwoShort (S), lambda (N)\nWinner: lambda\n\n1) lambda: Homeworld G2 B1 Y3\n\n2) TwoShort: Homeworld B3 Y2 G3\n\tlambda: Hello! I look forward to playing with you. Good luck, and have fun. \n\n3) lambda: Build Y1 Lambda\n\tTwoShort: Good luck to you too.\n\n4) TwoShort: Build G1 Twoshort\n\n5) lambda: Build Y1 Lambda\n\n6) TwoShort: Discover G1 Twoshort Y1 Jed\n\n7) lambda: Discover Y1 Lambda G3 Mirach\n\n8) TwoShort: Build G1 Twoshort\n\n9) lambda: Build Y2 Lambda\n\n10) TwoShort: Build G1 Jed\n\n11) lambda: Trade Y2 G2 Lambda\n\n12) TwoShort: Discover G1 Jed Y3 Cake\n\n13) lambda: Discover G2 Lambda Y3 Arcturus\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Cake\nBuild G3 Jed\nBuild G3 Twoshort\n\n15) lambda: Build Y2 Mirach\n\n16) TwoShort: Discover G1 Jed B3 Bluestar\n\n17) lambda: Trade Y1 B1 Lambda\n\n18) TwoShort: Trade G1 Y1 Bluestar\n\n19) lambda: Build G1 Arcturus\n\n20) TwoShort: Sacrifice G2 Cake\nBuild G2 Jed\nBuild Y2 Bluestar\n\n21) lambda: Discover G1 Arcturus B1 Mira\n\n22) TwoShort: Trade Y2 B2 Bluestar\n\n23) lambda: Sacrifice Y3 Lambda\nMove G2 Arcturus Mira\nMove G2 Mira Twoshort\nMove G1 Mira Twoshort\nCatastrophe Twoshort Green\n\n\nHomeworlds Online (SDG# 1050)\nStarted: 2005.10.19, Ended: 2005.10.21\nParticipants: tendrecube (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) tendrecube: Homeworld G3 B1 Y3\n\ttendrecube: homeworld G3 B1 Y3\r\n\n\ttendrecube: homeworldG3B1Y3\n\n3) TwoShort: Build G1 Twoshort\n\ttendrecube: oops sorry first time online and needed some try and miss to figure out.......duh\r\nhere goes\r\n\n\n4) tendrecube: Build Y1 Tendrecube\n\tTwoShort: No problem. I do that myself pretty regularly; you're looking at the board, and there's the edit box right there...\n\n5) TwoShort: Build G1 Twoshort\n\n6) tendrecube: Trade Y1 B1 Tendrecube\n\n7) TwoShort: Discover G1 Twoshort Y3 Jed\n\n8) tendrecube: Discover B1 Tendrecube G2 Alias\n\n9) TwoShort: Discover G1 Twoshort B3 Bluestar\n\n10) tendrecube: Build B1 Alias\n\n11) TwoShort: Build G1 Twoshort\n\n12) tendrecube: Build B2 Alias\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G2 Jed\nBuild G3 Twoshort\n\n14) tendrecube: Trade B2 R2 Alias\n\n15) TwoShort: Trade G2 R2 Bluestar\n\n16) tendrecube: Build B2 Alias\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Jed\nBuild G3 Twoshort\n\n18) tendrecube: Build R1 Alias\n\n19) TwoShort: Move G3 Jed Alias\n\n20) tendrecube: Trade Y3 R3 Tendrecube\n\n21) TwoShort: Sacrifice R2 Bluestar\nAttack R2S Alias\nAttack B2S Alias\n\n22) tendrecube: Build R1 Tendrecube\n\n23) TwoShort: Trade B2 Y2 Alias\n\n24) tendrecube: Trade R1 Y1 Tendrecube\n\n25) TwoShort: Discover G2 Jed Y2 Yoyo\n\n26) tendrecube: Move R3 Tendrecube Alias\n\n27) TwoShort: Sacrifice Y2 Alias\nMove G3 Alias Tendrecube\nMove R2 Alias Tendrecube\n\n28) tendrecube: Build Y1 Tendrecube\n\n29) TwoShort: Sacrifice R2 Tendrecube\nAttack Y1S Tendrecube\nAttack Y1S Tendrecube\n\n\nHomeworlds Online (SDG# 1060)\nStarted: 2005.10.20, Ended: 2005.10.20\nParticipants: BruceVencill (S), mikepler (N)\nWinner: BruceVencill\n\n\tSYSTEM: mikepler resigns.\n\nHomeworlds Online (SDG# 1043)\nStarted: 2005.10.20, Ended: 2005.11.5\nParticipants: cobalt (S), jeremiah (N)\nWinner: cobalt\n\n1) jeremiah: Homeworld Y2 B1 G3\n\n2) cobalt: Homeworld G3 B2 Y3\n\n3) jeremiah: Build G1 Jeremiah\n\n4) cobalt: Build Y1 Cobalt\n\n5) jeremiah: Build G1 Jeremiah\n\n6) cobalt: Trade Y1 G1 Cobalt\n\n7) jeremiah: Trade G1 B1 Jeremiah\n\n8) cobalt: Build G1 Cobalt\n\n9) jeremiah: Build G2 Jeremiah\n\n10) cobalt: Sacrifice Y3 Cobalt\nDiscover G1 Cobalt Y1 Jump1\nDiscover G1 Jump1 Y3 Jump2\nMove G1 Jump2 Jeremiah\nCatastrophe Jeremiah G\n\n11) jeremiah: Trade B1 G1 Jeremiah\n\n12) cobalt: Trade G1 Y1 Cobalt\n\n13) jeremiah: Build G1 Jeremiah\n\n14) cobalt: Build Y1 Cobalt\n\n15) jeremiah: Trade G1 R1 Jeremiah\n\n16) cobalt: Build Y1 Cobalt\n\n17) jeremiah: Build G1 Jeremiah\n\n18) cobalt: Discover Y1 Cobalt G1 Framauro\n\n19) jeremiah: Build G2 Jeremiah\n\n20) cobalt: Build Y2 Cobalt\n\n21) jeremiah: Discover G1 Jeremiah Y3 Antihistamine\n\n22) cobalt: Trade Y2 G2 Cobalt\n\n23) jeremiah: Trade G2 Y2 Jeremiah\n\n24) cobalt: Trade Y1 R1 Cobalt\n\n25) jeremiah: Build G2 Antihistamine\n\tjeremiah: construct g2 antihistamine\n\n26) cobalt: Discover Y1 Framauro G3 Arglebargle\n\n27) jeremiah: Discover G1 Antihistamine Y1 Betablocker\n\tjeremiah: discover g1 antihistamine y1 betablocker\n\n28) cobalt: Trade G2 Y2 Cobalt\n\tjeremiah: I have to remember that it's the other box. Yeesh. That's twice now\n\n29) jeremiah: Move Y2 Jeremiah Antihistamine\n\tjeremiah: move y2 jeremiah antihistamine\n\n30) cobalt: Build Y3 Arglebargle\n\tcobalt: thrice :P\n\n31) jeremiah: Build Y3 Antihistamine\n\n32) cobalt: Sacrifice Y2 Cobalt\nMove Y1 Arglebargle Jeremiah\nMove Y1 Jeremiah Antihistamine\nCatastrophe Antihistamine Y\n\tjeremiah: I'm pretty sure I know what your next move is, but maybe you've got something else in mind.\n\n33) jeremiah: Build G1 Jeremiah\n\tcobalt: was that what you had in mind?\n\tjeremiah: yep\n\tjeremiah: construct g1 jeremiah\n\n34) cobalt: Build Y1 Cobalt\n\tjeremiah: sigh... did it again. Good thing you can't gain anything by it.\n\n35) jeremiah: Build G2 Betablocker\n\n36) cobalt: Move Y3 Arglebargle Jeremiah\n\n37) jeremiah: Build G2 Betablocker\n\n38) cobalt: Sacrifice R1 Cobalt\nAttack R1 Jeremiah\n\n\tjeremiah: hmmm.... should've built red and forced a catastrope in a turn or two\n\tjeremiah: and I can't get things done quick enough in your homeworld... \r\n\n\tSYSTEM: jeremiah resigns.\n\nHomeworlds Online (SDG# 1042)\nStarted: 2005.10.21, Ended: 2005.11.7\nParticipants: JunkMan (S), cobalt (N)\nWinner: JunkMan\n\n1) cobalt: Homeworld G1 B2 Y3\n\n2) JunkMan: Homeworld G2 B3 Y3\n\n3) cobalt: Build Y1 Cobalt\n\n4) JunkMan: Build Y1 Junkman\n\n5) cobalt: Build Y1 Cobalt\n\n6) JunkMan: Trade Y1 G1 Junkman\n\n7) cobalt: Trade Y1 G1 Cobalt\n\n8) JunkMan: Build Y1 Junkman\n\n9) cobalt: Discover Y1 Cobalt G3 Saratoga\n\n10) JunkMan: Build G2 Junkman\n\n11) cobalt: Build Y1 Cobalt\n\n12) JunkMan: Trade G1 R1 Junkman\n\n13) cobalt: Trade Y1 R1 Cobalt\n\n14) JunkMan: Discover Y1 Junkman G1 Kite\n\n15) cobalt: Move Y1 Saratoga Kite\n\n16) JunkMan: Sacrifice R1 Junkman\nAttack Y1N Kite\n\n17) cobalt: Build G2 Cobalt\n\n18) JunkMan: Discover G2 Junkman B1 Eden\n\n19) cobalt: Build Y1 Cobalt\n\n20) JunkMan: Build G3 Eden\n\n21) cobalt: Sacrifice Y3 Cobalt\nDiscover Y1 Cobalt R3 Jump\nDiscover Y1 Jump R1 Leap\nMove Y1 Leap Junkman\n\n22) JunkMan: Sacrifice Y1 Kite\nMove G2 Eden Junkman\n\n23) cobalt: Build Y1 Junkman\n\n24) JunkMan: Trade Y3 R3 Junkman\n\n25) cobalt: Trade G2 Y2 Cobalt\n\n26) JunkMan: Build Y2 Kite\n\n27) cobalt: Build Y2 Cobalt\n\n28) JunkMan: Sacrifice Y2 Kite\nDiscover G3 Eden Y3 Frogger\nMove G3 Frogger Cobalt\n\n29) cobalt: Build G2 Cobalt\n\n30) JunkMan: Trade G3 B3 Cobalt\n\n31) cobalt: Sacrifice G2 Cobalt\nBuild Y2 Junkman\nBuild Y3 Cobalt\n\n32) JunkMan: Sacrifice R3 Junkman\nAttack R1N Cobalt\nAttack Y3N Cobalt\nAttack G1N Cobalt\n\n33) cobalt: Trade Y2 B2 Cobalt\n\n34) JunkMan: Trade B3 R3 Cobalt\n\n\tcobalt: drat\n\tSYSTEM: cobalt resigns.\n\nHomeworlds Online (SDG# 1065)\nStarted: 2005.10.23, Ended: 2005.10.27\nParticipants: TwoShort (S), tendrecube (N)\nWinner: TwoShort\n\n1) tendrecube: Homeworld G3 B2 Y3\n\n2) TwoShort: Homeworld B2 Y1 G3\n\n3) tendrecube: Build Y1 Tendrecube\n\n4) TwoShort: Build G1 Twoshort\n\n5) tendrecube: Trade Y1 B1 Tendrecube\n\n6) TwoShort: Build G1 Twoshort\n\n7) tendrecube: Discover B1 Tendrecube Y1 Alias\n\n8) TwoShort: Discover G1 Twoshort Y3 Jed\n\n9) tendrecube: Build Y1 Tendrecube\n\n10) TwoShort: Build G1 Twoshort\n\n11) tendrecube: Trade Y3 R3 Tendrecube\n\n12) TwoShort: Discover G1 Twoshort Y3 Jethro\n\n13) tendrecube: Build Y2 Tendrecube\n\n14) TwoShort: Build G2 Twoshort\n\n15) tendrecube: Build Y2 Tendrecube\n\n16) TwoShort: Discover G2 Twoshort B3 Bluestar\n\n17) tendrecube: Sacrifice Y2 Tendrecube\nMove R3 Tendrecube Alias\nMove R3 Alias Bluestar\n\n18) TwoShort: Trade G1 R1 Twoshort\n\n19) tendrecube: Attack G2 Bluestar\n\n20) TwoShort: Build G1 Twoshort\n\n21) tendrecube: Sacrifice Y1 Tendrecube\nMove R3 Bluestar Twoshort\n\n22) TwoShort: Attack R3N Twoshort\n\n23) tendrecube: Build G2 Bluestar\n\ttendrecube: uh?\r\nI think i missed a rules out there\r\nWas dreaming you wopuldn't be able to overtake it cause of its size....damn\n\n24) TwoShort: Discover G1 Jed Y1 Stepstone\n\tTwoShort: It's the size of my largest ship in the suystem that matters, not the size of the red.\n\n25) tendrecube: Build Y2 Tendrecube\n\ttendrecube: Yup..I went readin the rules again..\r\nNot easy to handle at first this game...\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Jethro\nBuild G3 Stepstone\nBuild G3 Twoshort\n\n27) tendrecube: Trade Y2 R2 Tendrecube\n\n28) TwoShort: Move G3 Stepstone Tendrecube\n\ttendrecube: well looks like an ending for me :-(\n\n29) tendrecube: Sacrifice Y2 Tendrecube\nMove G2 Bluestar Twoshort\nMove G2 Bluestar Twoshort\nCatastrophe Twoshort G\n\tTwoShort: Yeah, losing your three point early is pretty much unrecoverable.\n\n30) TwoShort: Sacrifice R1 Twoshort\nAttack R2N Tendrecube\n\ttendrecube: Well we'll give it a try ;-)\n\tTwoShort: Um, I'm fairly sure it's irrecoverable...\n\n\nHomeworlds Online (SDG# 1019)\nStarted: 2005.10.23, Ended: 2005.10.23\nParticipants: JunkMan (S), tendrecube (N)\nWinner: JunkMan\n\n1) tendrecube: Homeworld G3 B1 Y3\n\n2) JunkMan: Homeworld B2 G1 Y3\n\n3) tendrecube: Build Y1 Tendrecube\n\n4) JunkMan: Build Y1 Junkman\n\n5) tendrecube: Discover Y1 Tendrecube B2 Alias\n\n6) JunkMan: Trade Y1 G1 Junkman\n\n7) tendrecube: Build Y1 Tendrecube\n\n8) JunkMan: Build Y1 Junkman\n\n9) tendrecube: Build Y2 Tendrecube\n\n10) JunkMan: Sacrifice Y3 Junkman\nDiscover Y1 Junkman B3 Skinny\nDiscover Y1 Skinny B2 Edward\nMove Y1 Edward Tendrecube\nCatastrophe Tendrecube Yellow\n\n\nHomeworlds Online (SDG# 1095)\nStarted: 2005.10.24, Ended: 2005.10.25\nParticipants: MatrixFrog (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld G1 B2 Y3\n\n2) MatrixFrog: Homeworld G2 B3 Y3\n\n3) TwoShort: Build Y1 Twoshort\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) TwoShort: Build Y1 Twoshort\n\n6) MatrixFrog: Build Y2 Matrixfrog\n\n7) TwoShort: Sacrifice Y3 Twoshort\nDiscover Y1 Twoshort R3 Hello\nDiscover Y1 Hello R1 Goodbye\nMove Y1 Goodbye Matrixfrog\nCatastrophe Matrixfrog Yellow\n\tTwoShort: Hmm, winning on an "oops" is unsatisfying. But I can't bring myself to not do it. Play again?\n\n\nHomeworlds Online (SDG# 1044)\nStarted: 2005.10.24, Ended: 2005.11.27\nParticipants: cobalt (S), Busch (W), JunkMan (N), GregF (E)\nWinner: JunkMan\n\n1) JunkMan: Homeworld B1 G2 Y3\n\n2) GregF: Homeworld B3 Y1 G3\n\n3) cobalt: Homeworld B1 G2 Y3\n\tGregF: Hello.\n\n4) Busch: Homeworld G3 B2 Y3\n\tBusch: Hi. Good luck everyone\n\n5) JunkMan: Build Y1 Junkman\n\n6) GregF: Build G1 Gregf\n\n7) cobalt: Build Y1 Cobalt\n\n8) Busch: Build Y1 Busch\n\tBusch: Errr. Where can I see my alignment?\n\n9) JunkMan: Trade Y1 G1 Junkman\n\n10) GregF: Trade G1 Y1 Gregf\n\tGregF: There is no alignment; the last player remaining wins.\n\n11) cobalt: Build Y1 Cobalt\n\tBusch: Ah. I just read the rules on the Looney Labs site. I hadn't realized this was a variant.\n\n12) Busch: Build Y2 Busch\n\n13) JunkMan: Build Y2 Junkman\n\n14) GregF: Build Y2 Gregf\n\n15) cobalt: Trade Y1 G1 Cobalt\n\tcobalt: dang, I suddenly wish this was left-man-down\n\tcobalt: dang, I suddenly wish this was left-man-down\n\n16) Busch: Trade Y2 G2 Busch\n\tBusch: Why?\n\n17) JunkMan: Trade Y2 R2 Junkman\n\n18) GregF: Trade Y2 R2 Gregf\n\n19) cobalt: Trade Y1 R1 Cobalt\n\tcobalt: because you're to my left, and I could have eliminated you last turn.\n\n20) Busch: Build G1 Busch\n\n21) JunkMan: Build Y1 Junkman\n\tBusch: I obviously still have a lot to learn about this game\n\n22) GregF: Build G1 Gregf\n\n23) cobalt: Build Y1 Cobalt\n\n24) Busch: Build Y2 Busch\n\n25) JunkMan: Trade Y1 B1 Junkman\n\n26) GregF: Trade G1 B1 Gregf\n\n27) cobalt: Build R1 Cobalt\n\n28) Busch: Trade G2 R2 Busch\n\n29) JunkMan: Build R1 Junkman\n\n30) GregF: Trade R2 Y2 Gregf\n\n31) cobalt: Discover Y3 Cobalt G3 Duck\n\n32) Busch: Discover Y2 Busch G1 Sirius\n\n33) JunkMan: Build Y1 Junkman\n\n34) GregF: Discover Y2 Gregf Y2 Vega\n\n35) cobalt: Build Y2 Cobalt\n\tGregF: All right, I've pretty much decided that I have no idea what I'm doing in this game.\n\n36) Busch: Trade Y3 R3 Busch\n\n37) JunkMan: Discover Y1 Junkman G3 Phi\n\n38) GregF: Build G1 Gregf\n\n39) cobalt: Sacrifice Y2 Cobalt\nDiscover Y3 Duck Y2 Goose\nMove Y3 Goose Gregf\n\n40) Busch: Build G2 Busch\n\n41) JunkMan: Build Y2 Phi\n\n42) GregF: Discover Y1 Gregf R2 Trial\n\tGregF: I'm very tempted to just blow myself up and get it over with.\n\n43) cobalt: Sacrifice R1 Cobalt\nAttack G3E Gregf\n\n44) Busch: Move G2 Busch Sirius\n\n45) JunkMan: Move Y1 Phi Junkman\n\n46) GregF: Move Y2 Vega Gregf\n\tGregF: Hm, I was under the impression that you could only attack a piece smaller than the attacking piece. This really isn't worth fighting.\n\tGregF: Oh, right, you can't kill yourself.\n\n47) cobalt: Sacrifice G3 Gregf\nBuild Y2 Gregf\nBuild Y2 Gregf\nBuild Y3 Cobalt\n\n48) Busch: Build Y3 Sirius\n\n49) JunkMan: Build Y3 Phi\nCatastrophe Gregf Yellow\n\n50) GregF: Build G2 Gregf\n\n51) cobalt: Move Y1 Cobalt Phi\n\n52) Busch: Move Y2 Sirius Phi\n\tcobalt: Busch might consider it to his advantage to move a yellow ship into the Phi system and trigger a catastrophe.\n\n53) JunkMan: Move Y3 Phi Trial\n\tBusch: Arghhh. I forgot to type in the most important part of my orders and there is no undo.\n\n54) GregF: Trade G2 Y2 Gregf\n\n55) cobalt: Discover G1 Cobalt Y3 Pocket\n\tGregF: Am I just going to be all but ignored now because I have basically no chance at winning?\n\n56) Busch: Move R3 Busch Sirius\n\n57) JunkMan: Discover Y3 Trial R1 Sol\n\n58) GregF: Build G2 Gregf\n\n59) cobalt: Build G2 Pocket\n\tcobalt: Maybe, but I for one wouldn't rule out your capability to cause havoc, especially since now your system is only one movement away from both mine and JunkMan's homeworlds\n\n60) Busch: Move R3 Sirius Phi\n\n61) JunkMan: Sacrifice B1 Junkman\nTrade Y3 G3 Sol\n\n62) GregF: Sacrifice G2 Gregf\nBuild Y1 Trial\nBuild Y2 Gregf\n\n63) cobalt: Sacrifice G2 Pocket\nBuild Y2 Phi\nBuild Y3 Cobalt\nCatastrophe Phi Y\n\n64) Busch: Move G2 Sirius Pocket\n\n65) JunkMan: Build G2 Sol\n\n66) GregF: Discover Y2 Gregf Y2 Vesta\n\n67) JunkMan: Discover Y1 Junkman G3 Beta\n\tGregF: I guess calling a yellow star Vesta kind of defeats the purpose.\n\n68) GregF: Build G2 Gregf\n\tSYSTEM: cobalt resigns.\n\n69) Busch: Move Y3 Sirius Phi\n\n70) JunkMan: Sacrifice Y1 Beta\nMove G2 Sol Gregf\n\n71) GregF: Trade G2 R2 Gregf\n\n72) Busch: Move R3 Phi Vesta\n\n73) JunkMan: Sacrifice R1 Junkman\nAttack R2E Gregf\n\n74) GregF: Build Y1 Gregf\n\n75) Busch: Attack Y2E Vesta\n\tGregF: Is there really I can do to defend myself in this scenario?\n\n76) JunkMan: Attack Y2E Gregf\n\n77) GregF: Move Y1 Trial Gregf\n\tBusch: It lokks quite unlikely now\n\n78) Busch: Sacrifice Y2 Vesta\nMove R3 Vesta Pocket\nMove R3 Pocket Junkman\n\tGregF: What could I have done better/differently?\n\n79) JunkMan: Attack R3W Junkman\n\n80) GregF: Move Y1 Trial Gregf\nCatastrophe Gregf Y\n\tBusch: This is my first game ... I have no idea\n\n81) Busch: Discover Y3 Phi B1 Espresso\n\n82) JunkMan: Move R3 Junkman Pocket\n\n83) GregF: Sacrifice B1 Gregf\nTrade G1 R1 Gregf\n\n84) Busch: Move G2 Pocket Cobalt\n\n85) JunkMan: Move R3 Pocket Cobalt\n\n86) GregF: Trade R1 G1 Gregf\n\n87) Busch: Trade G2 Y2 Cobalt\n\n88) JunkMan: Attack Y2W Cobalt\n\n89) GregF: Build G1 Gregf\n\n90) Busch: Move Y3 Espresso Busch\n\n91) JunkMan: Build G2 Gregf\nCatastrophe Gregf Green\n\n92) Busch: Trade Y3 R3 Busch\n\n93) JunkMan: Attack Y3S Cobalt\n\n94) Busch: Build G1 Busch\n\n95) JunkMan: Sacrifice Y2 Cobalt\nMove R2 Gregf Sol\nMove G3 Sol Busch\nCatastrophe Busch Green\n\n96) Busch: Move R2 Busch Pocket\n\n97) JunkMan: Attack Y3S Cobalt\n\n98) Busch: Attack G1S Pocket\n\n99) JunkMan: Build Y1 Junkman\n\tBusch: Have I got any chance here or should I just concede?\n\n\tSYSTEM: Busch resigns.\n\nHomeworlds Online (SDG# 1091)\nStarted: 2005.10.24, Ended: 2005.10.27\nParticipants: JunkMan (S), Bartholow (N)\nWinner: JunkMan\n\n1) Bartholow: Homeworld B1 G3 R3\n\n2) JunkMan: Homeworld G1 B2 Y3\n\n3) Bartholow: Build R1 Bartholow\n\tBartholow: yep I sure do suck\n\n4) JunkMan: Build Y1 Junkman\n\n5) Bartholow: Trade R1 Y1 Bartholow\n\n6) JunkMan: Build Y1 Junkman\n\n7) Bartholow: Discover Y1 Bartholow R2 Nonemoreblack\n\n8) JunkMan: Trade Y1 R1 Junkman\n\n9) Bartholow: Discover Y1 Nonemoreblack G1 Propagandhi\n\n10) JunkMan: Trade Y1 G1 Junkman\n\n11) Bartholow: Build Y1 Propagandhi\n\n12) JunkMan: Build G2 Junkman\n\n13) Bartholow: Build R1 Bartholow\n\n14) JunkMan: Trade G1 B1 Junkman\n\n15) Bartholow: Build R1 Bartholow\n\n16) JunkMan: Sacrifice Y3 Junkman\nDiscover R1 Junkman B3 Lampshade\nDiscover R1 Lampshade B2 Pluto\nMove R1 Pluto Bartholow\nCatastrophe Bartholow Red\n\n\nHomeworlds Online (SDG# 1097)\nStarted: 2005.10.25, Ended: 2005.10.29\nParticipants: TwoShort (S), MatrixFrog (N)\nWinner: TwoShort\n\n1) MatrixFrog: Homeworld G1 B2 Y3\n\n2) TwoShort: Homeworld Y1 B3 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) TwoShort: Build G1 Twoshort\n\n5) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n6) TwoShort: Build G2 Twoshort\n\n7) MatrixFrog: Build G2 Matrixfrog\n\n8) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n9) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild Y1 Matrixfrog\nBuild G2 Matrixfrog\n\n10) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n11) MatrixFrog: Sacrifice Y3 Matrixfrog\nDiscover G1 Matrixfrog R3 Xx\nMove G1 Xx Yolonda\nDiscover Y1 Matrixfrog G3 Blanket\n\n12) TwoShort: Catastrophe Yolonda Green\nBuild G1 Twoshort\n\tMatrixFrog: Damn! I hate when that happens. I obviously missed a line...\n\n13) MatrixFrog: Build G1 Matrixfrog\n\tTwoShort: Ha! I thought that bug might be there; thanks for the chance to test it :) \n\tTwoShort: Which is to say, I should not have been able to grow that green; but in this case the bug lets me fix your mistake, and make the move I would have anyway.\n\tMatrixFrog: Ah, very nice. Thank you.\n\n14) TwoShort: Discover G2 Twoshort Y2 Yoyo\n\n15) MatrixFrog: Build Y1 Blanket\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yoyo\nBuild G3 Twoshort\nBuild G3 Yoyo\n\n17) MatrixFrog: Trade G2 Y2 Matrixfrog\n\n18) TwoShort: Discover G3 Yoyo Y3 Yolonda\n\n19) MatrixFrog: Trade G1 R1 Matrixfrog\n\n20) TwoShort: Move G3 Yolonda Matrixfrog\n\n21) MatrixFrog: Build Y2 Matrixfrog\n\n22) TwoShort: Trade G3 R3 Twoshort\n\n23) MatrixFrog: Build Y3 Matrixfrog\n\n24) TwoShort: Sacrifice R3 Twoshort\nAttack Y3 Matrixfrog\nAttack R1 Matrixfrog\nAttack Y2 Matrixfrog\n\n25) MatrixFrog: Trade Y2 G2 Matrixfrog\n\tMatrixFrog: Um. Okay then. Good game.\n\n26) TwoShort: Attack G2N Matrixfrog\n\tTwoShort: Good game\r\n\n\n\nHomeworlds Online (SDG# 1100)\nStarted: 2005.10.25, Ended: 2005.11.20\nParticipants: andylooney (S), tendrecube (N)\nWinner: andylooney\n\n1) tendrecube: Homeworld G3 B1 Y3\n\n2) andylooney: Homeworld B1 G2 Y3\n\ttendrecube: Hello Andy...Not so far of some places you like on this planet....Brussels here...\r\n\n\n3) tendrecube: Build Y1 Tendrecube\n\n4) andylooney: Build Y1 Andylooney\n\n5) tendrecube: Trade Y1 G1 Tendrecube\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) tendrecube: Build Y1 Tendrecube\n\n8) andylooney: Discover G1 Andylooney Y3 Clampett\n\n9) tendrecube: Discover Y1 Tendrecube G2 Alias\n\n10) andylooney: Build Y1 Andylooney\n\n11) tendrecube: Discover Y1 Alias G3 Mythril\n\n12) andylooney: Discover Y1 Andylooney G3 Garden\n\n13) tendrecube: Discover G1 Tendrecube Y2 Atomium\n\n14) andylooney: Build Y1 Andylooney\n\tandylooney: great system name! I made a point of visiting the Atomium when I was in Europe in 2003!\n\n15) tendrecube: Build Y2 Mythril\n\n16) andylooney: Build Y2 Garden\n\ttendrecube: part of the strategy..lol\r\ncatch your eye with great system name to blind you \r\n;-)\n\n17) tendrecube: Move G1 Atomium Tendrecube\n\n18) andylooney: Trade Y1 R1 Andylooney\n\n19) tendrecube: Build G1 Tendrecube\n\n20) andylooney: Build G2 Clampett\n\ttendrecube: ooops i don't think that was a good idea\n\n21) tendrecube: Trade G1 R1 Tendrecube\n\n22) andylooney: Discover Y1 Garden G2 Oasis\n\n23) tendrecube: Discover G1 Tendrecube B2 Atomium\n\n24) andylooney: Discover G1 Clampett Y2 Plugh\n\n25) tendrecube: Build G1 Atomium\n\n26) andylooney: Build Y1 Garden\n\n27) tendrecube: Discover Y2 Mythril B2 Alias\n\n28) andylooney: Sacrifice G2 Clampett\nBuild G2 Plugh\nBuild Y3 Oasis\n\n29) tendrecube: Trade Y2 R2 Alias\n\n30) andylooney: Build Y2 Andylooney\n\ttendrecube: sorryu for the delay....\r\nWas in paris for a few days\n\tandylooney: Paris, eh? Sounds like you were there at an "interesting" time!\n\n31) tendrecube: Build R1 Tendrecube\n\n32) andylooney: Build R2 Andylooney\n\n33) tendrecube: Move R1 Tendrecube Oasis\n\n34) andylooney: Sacrifice R1 Andylooney\nAttack R1N Oasis\n\n35) tendrecube: Sacrifice Y3 Tendrecube\nMove R2 Alias Mythril\nMove R2 Mythril Andylooney\nMove Y1 Mythril Andylooney\n\n36) andylooney: Trade Y3 G3 Andylooney\n\n37) tendrecube: Build Y3 Andylooney\n\n38) andylooney: Sacrifice Y2 Garden\nMove Y1 Garden Andylooney\nMove Y3 Oasis Tendrecube\nCatastrophe Andylooney Yellow\n\n39) tendrecube: Trade R2 Y2 Andylooney\n\n40) andylooney: Sacrifice R2 Andylooney\nAttack Y2 Andylooney\nAttack R1N Tendrecube\n\tandylooney: Thanks for the game!\n\n\nHomeworlds Online (SDG# 1107)\nStarted: 2005.10.26, Ended: 2005.11.6\nParticipants: Jesse (S), TwoShort (N)\nWinner: Jesse\n\n1) TwoShort: Homeworld Y2 B1 G3\n\tJesse: Aloha! Ready for another go?\n\n2) Jesse: Homeworld B3 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Jesse: Build G1 Jesse\n\tTwoShort: Howdy... I'm looking forward to playing you again. \n\n5) TwoShort: Discover G1 Twoshort Y3 Yak\n\tJesse: Then by all means, let us play!\n\n6) Jesse: Discover G1 Jesse B2 Ork\n\n7) TwoShort: Build G1 Twoshort\n\n8) Jesse: Build G2 Ork\n\n9) TwoShort: Build G2 Yak\n\n10) Jesse: Trade G1 Y1 Ork\n\n11) TwoShort: Discover G1 Yak B2 Bluestar\n\n12) Jesse: Build Y1 Ork\n\n13) TwoShort: Build G1 Bluestar\n\n14) Jesse: Build G2 Jesse\n\n15) TwoShort: Build G3 Yak\n\tJesse: I'm not exactly off to a great start, here...\n\n16) Jesse: Move Y1 Ork Jesse\n\n17) TwoShort: Discover G2 Yak Y2 Yolonda\n\n18) Jesse: Sacrifice G3 Jesse\nBuild G3 Ork\nBuild Y2 Ork\nBuild Y3 Jesse\n\n19) TwoShort: Trade G3 R3 Twoshort\n\n20) Jesse: Trade Y3 R3 Jesse\n\tTwoShort: Well, I WAS off to a great start...\n\n21) TwoShort: Sacrifice G3 Yak\nBuild G3 Twoshort\nBuild R1 Twoshort\nBuild G3 Yolonda\n\n22) Jesse: Sacrifice G3 Ork\nBuild G3 Ork\nBuild Y3 Ork\nBuild R1 Jesse\n\n23) TwoShort: Discover G3 Yolonda B3 Brother\n\n24) Jesse: Sacrifice Y2 Ork\nDiscover Y3 Ork Y3 Mustard\nDiscover G3 Ork Y3 Snow\n\n25) TwoShort: Trade G1 B1 Bluestar\n\n26) Jesse: Build Y2 Ork\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Bluestar\nBuild B1 Bluestar\nBuild G3 Twoshort\n\n28) Jesse: Sacrifice G3 Snow\nBuild G3 Ork\nBuild Y3 Ork\nBuild R1 Jesse\n\n29) TwoShort: Sacrifice B1 Bluestar\nTrade G2 B2 Yolonda\n\n30) Jesse: Sacrifice Y2 Ork\nDiscover Y3 Ork B3 Babe\nMove R3 Jesse Yolonda\n\n31) TwoShort: Move B2 Yolonda Brother\n\n32) Jesse: Sacrifice G3 Ork\nBuild G2 Jesse\nBuild G3 Ork\nBuild Y2 Babe\n\n33) TwoShort: Trade G1 B1 Twoshort\n\n34) Jesse: Move Y2 Babe Bluestar\n\tTwoShort: Hmmm, I do beleive you have won. Quite the frustrating way to be doomed.\n\n35) TwoShort: Sacrifice B2 Brother\nTrade R1 G1 Twoshort\nPass\n\tJesse: It is really rough to be frozen out of yellow.\n\n36) Jesse: Trade G2 B2 Jesse\n\n37) TwoShort: Sacrifice B1 Bluestar\nTrade G1 B1 Twoshort\n\n38) Jesse: Sacrifice G3 Ork\nBuild G1 Jesse\nBuild G2 Ork\nBuild G3 Ork\n\n39) TwoShort: Sacrifice G3 Brother\nBuild G3 Twoshort\nBuild B3 Twoshort\nBuild R1 Twoshort\nCatastrophe Twoshort Blue\n\tTwoShort: Well, it's probably a bad idea, but at least it's an idea...\n\n40) Jesse: Move Y1 Ork Babe\n\tJesse: Huh. Actually, I was thinking about that possibility for you the other day, but not just now. Now, let's see...\n\n\tJesse: Yeah, it's no good. You can't stop me from blasting you next turn. Thanks for a good game! You've been very creative under the pressure of lockdown.\n\tSYSTEM: TwoShort resigns.\n\nHomeworlds Online (SDG# 1118)\nStarted: 2005.10.27, Ended: 2005.11.3\nParticipants: Evilaxe (S), Kermit (N)\nWinner: Evilaxe\n\n1) Kermit: Homeworld B1 G2 Y3\n\n2) Evilaxe: Homeworld B1 G3 Y3\n\n3) Kermit: Build Y1 Kermit\n\n4) Evilaxe: Build Y1 Evilaxe\n\tEvilaxe: build y1 evilaxe\n\n5) Kermit: Trade Y1 G1 Kermit\n\tEvilaxe: D'oh\n\n6) Evilaxe: Trade Y1 R1 Evilaxe\n\n7) Kermit: Discover G1 Kermit B3 Fozzie\n\n8) Evilaxe: Build Y1 Evilaxe\n\n9) Kermit: Build G1 Fozzie\n\n10) Evilaxe: Trade Y1 G1 Evilaxe\n\tEvilaxe: trade y1 g1 evilaxe\n\tEvilaxe: I am a moron\n\n11) Kermit: Trade G1 Y1 Fozzie\n\n12) Evilaxe: Discover G1 Evilaxe B2 Coffee\n\n13) Kermit: Build Y1 Fozzie\n\n14) Evilaxe: Build R1 Evilaxe\n\n15) Kermit: Trade Y1 R1 Fozzie\n\n16) Evilaxe: Trade R1 B1 Evilaxe\n\n17) Kermit: Move R1 Fozzie Coffee\n\n18) Evilaxe: Sacrifice R1 Evilaxe\nAttack R1 Coffee\n\n19) Kermit: Build Y1 Fozzie\n\n20) Evilaxe: Build B2 Evilaxe\n\n21) Kermit: Trade Y1 R1 Fozzie\n\n22) Evilaxe: Discover B2 Evilaxe G2 New_wiltshire\n\n23) Kermit: Discover G1 Fozzie Y1 Squeezel\n\n24) Evilaxe: Build B2 New_wiltshire\n\n25) Kermit: Build Y1 Kermit\n\n26) Evilaxe: Build B3 New_wiltshire\n\n27) Kermit: Move G1 Squeezel Fozzie\n\n28) Evilaxe: Build B3 Evilaxe\n\tEvilaxe: b b3 evilaxe\n\n29) Kermit: Trade Y1 G1 Kermit\n\n30) Evilaxe: Trade B2 R2 New_wiltshire\n\n31) Kermit: Trade Y3 R3 Kermit\n\n32) Evilaxe: Trade B2 Y2 New_wiltshire\n\n33) Kermit: Build G2 Kermit\n\n34) Evilaxe: Build G3 Coffee\n\n35) Kermit: Build G3 Fozzie\n\n36) Evilaxe: Sacrifice Y2 New_wiltshire\nMove G1 Coffee Fozzie\nMove G1 Fozzie Kermit\nCatastrophe Kermit G\n\n\tSYSTEM: Kermit resigns.\n\nHomeworlds Online (SDG# 1129)\nStarted: 2005.10.27, Ended: 2005.11.3\nParticipants: sketchwick (S), jeep (N)\nWinner: sketchwick\n\n1) jeep: Homeworld G1 B2 Y3\n\n2) sketchwick: Homeworld B3 Y1 G3\n\n3) jeep: Build Y1 Jeep\n\n4) sketchwick: Build G1 Sketchwick\n\n5) jeep: Trade Y1 G1 Jeep\n\n6) sketchwick: Trade G1 R1 Sketchwick\n\n7) jeep: Build G1 Jeep\n\n8) sketchwick: Build G2 Sketchwick\n\n9) jeep: Discover G1 Jeep Y3 Submarine\n\n10) sketchwick: Discover R1 Sketchwick Y2 Sandwich\n\n11) jeep: Build G2 Jeep\n\n12) sketchwick: Move R1 Sandwich Submarine\n\n13) jeep: Discover G1 Submarine Y2 Sandwich\n\n14) sketchwick: Trade G2 R2 Sketchwick\n\n15) jeep: Trade G2 R2 Jeep\n\n16) sketchwick: Move R1 Submarine Sandwich\n\n17) jeep: Sacrifice G1 Sandwich\nBuild Y1 Jeep\n\n18) sketchwick: Build R1 Sketchwick\n\n19) jeep: Discover R2 Jeep B3 Spread\n\n20) sketchwick: Move G3 Sketchwick Sandwich\n\n21) jeep: Build Y1 Jeep\n\tsketchwick: this feels sketchy...\n\n22) sketchwick: Move G3 Sandwich Spread\n\n23) jeep: Sacrifice Y1 Jeep\nMove R2 Spread Sandwich\n\n24) sketchwick: Move R1 Sandwich Spread\n\n25) jeep: Trade Y1 R1 Jeep\n\n26) sketchwick: Trade R1 G1 Sketchwick\n\n27) jeep: Build G2 Jeep\n\n28) sketchwick: Build G2 Spread\n\n29) jeep: Trade G2 Y2 Jeep\n\n30) sketchwick: Trade G2 Y2 Spread\n\n31) jeep: Discover Y2 Jeep G3 Eagle\n\n32) sketchwick: Build G2 Spread\n\n33) jeep: Build Y1 Eagle\n\n34) sketchwick: Build G2 Sketchwick\n\n35) jeep: Move Y2 Eagle Jeep\n\n36) sketchwick: Discover G2 Sketchwick R2 Rock\n\n37) jeep: Discover G1 Jeep G3 Solid\n\n38) sketchwick: Build G2 Rock\n\n39) jeep: Move R2 Sandwich Eagle\n\n40) sketchwick: Sacrifice G3 Spread\nBuild G3 Spread\nBuild R1 Sketchwick\nBuild R3 Spread\n\tjeep: I feel like I'm at too much of a disadvantage now. :(\n\tsketchwick: you are crazy I have no clue what I'm doing\n\n41) jeep: Build R3 Eagle\n\n42) sketchwick: Trade R1 B1 Sketchwick\n\n43) jeep: Move R3 Eagle Rock\n\n44) sketchwick: Move R1 Spread Rock\n\n45) jeep: Sacrifice R2 Eagle\nAttack G2 Rock\nAttack G2 Rock\n\n46) sketchwick: Move R3 Spread Rock\nCatastrophe Rock Red\n\n47) jeep: Trade Y2 G2 Jeep\n\n48) sketchwick: Sacrifice G3 Spread\nBuild G2 Spread\nBuild G3 Sketchwick\nBuild R1 Sketchwick\n\n49) jeep: Discover G2 Jeep Y3 Gold\n\n50) sketchwick: Discover R2 Sketchwick Y2 Dancer\n\n51) jeep: Build Y1 Jeep\n\n52) sketchwick: Move R2 Dancer Solid\n\n53) jeep: Sacrifice G1 Solid\nBuild G1 Gold\n\n54) sketchwick: Build Y2 Spread\n\n55) jeep: Trade Y1 B1 Jeep\n\n56) sketchwick: Sacrifice G3 Sketchwick\nBuild G3 Sketchwick\nBuild Y1 Spread\nBuild R1 Solid\n\n57) jeep: Sacrifice G2 Gold\nBuild Y2 Jeep\nBuild Y3 Eagle\n\n58) sketchwick: Move Y2 Spread Jeep\n\n59) jeep: Trade Y2 R2 Jeep\n\n60) sketchwick: Sacrifice R2 Solid\nAttack R1 Jeep\nAttack R2 Jeep\n\n61) jeep: Sacrifice B1 Jeep\nTrade Y3 R3 Eagle\n\n62) sketchwick: Sacrifice Y2 Jeep\nMove R2 Jeep Spread\nDiscover R1 Jeep B3 Nugget\n\n63) jeep: Build G2 Gold\n\n64) sketchwick: Build R2 Solid\n\n65) jeep: Build Y2 Jeep\n\n66) sketchwick: Sacrifice G3 Sketchwick\nBuild R2 Sketchwick\nBuild R3 Nugget\nBuild R3 Spread\n\n67) jeep: Sacrifice Y2 Jeep\nDiscover R3 Eagle Y2 Temp\nMove R3 Temp Sketchwick\n\n68) sketchwick: Move R3 Spread Jeep\n\n69) jeep: Sacrifice R3 Sketchwick\nAttack R3S Jeep\nPass\nPass\n\n70) sketchwick: Sacrifice G2 Spread\nBuild G2 Sketchwick\nBuild G3 Spread\n\n71) jeep: Discover G2 Gold Y2 Meats\n\n72) sketchwick: Trade R3 Y3 Nugget\n\n73) jeep: Sacrifice Y3 Jeep\nMove G1 Gold Meats\nMove G1 Meats Spread\nMove G2 Meats Spread\nCatastrophe Spread Green\n\n74) sketchwick: Sacrifice Y3 Nugget\nMove R1 Nugget Jeep\nMove R1 Solid Jeep\nMove R2 Solid Jeep\nCatastrophe Jeep Red\n\n\nHomeworlds Online (SDG# 1166)\nStarted: 2005.10.29, Ended: 2005.10.31\nParticipants: andylooney (S), gobleteer (N)\nWinner: andylooney\n\n1) gobleteer: Homeworld Y1 Y1 G3 *\n\tgobleteer: Hello. It's an honor to meet you, Emperor. This is my first homeworlds game, I hope you'll be patient I exceed time limits.\n\n2) andylooney: Homeworld B1 G2 Y3\n\tandylooney: Greetings! Welcome to the game.\n\n3) gobleteer: Build G1 Gobleteer\n\tgobleteer: Ah! I have to already control a ship of the same color?\n\n4) andylooney: Build Y1 Andylooney\n\tandylooney: Yup. You also need to read up on how to choose your homeworld. You should have chosen 2 different-colored differently-sized stars, not 2 that match. But it's OK, you're learning!\n\n5) gobleteer: Discover G1 Gobleteer B2 Icecube\n\n6) andylooney: Build Y2 Andylooney\n\n7) gobleteer: Build G1 Gobleteer\n\n8) andylooney: Discover Y1 Andylooney G3 Garden\n\n9) gobleteer: Discover G1 Gobleteer Y3 Wild\n\tgobleteer: "andrewlooney is a garden of ice cubes." Official quote.\n\n10) andylooney: Build Y2 Garden\n\n\tgobleteer: I conceed. Sorry for not finishing. I intend to play some physical games before I proceed further. Thank you for playing.\n\tSYSTEM: gobleteer resigns.\n\nHomeworlds Online (SDG# 1137)\nStarted: 2005.10.30, Ended: 2005.11.3\nParticipants: Laurie_Menke (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld G2 Y1 B3\n\tLaurie_Menke: Hi, TwoShort. I want to apologize in advance...this is my first game of Homeworlds and I don't have a clue what I'm doing! If you'd rather not play with a newbie, let me know and I'll resign. Otherwise, I'll do the best I can to keep you from being bored. :o) Thanks!\n\n2) Laurie_Menke: Homeworld Y3 B2 G3\n\tTwoShort: No problem at all; I'll even be happy to give you whatever tips occur to me, let me know if you'd rather I didn't....\n\tTwoShort: Tip #1: I'm experimanting by starting with a blue ship; I'd typically recommend Green or Yellow. In any case, you initial system & ship should cover those three colors (you don't need red until later), and you should use a 3 point for your ship (always), and for one of the system markers (this time, because it's the size I did'nt use)\n\tLaurie_Menke: Great...thank you so much for your patience and any and all tips!\n\n3) TwoShort: Build B1 Twoshort\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) TwoShort: Build B1 Twoshort\n\n6) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n7) TwoShort: Discover B1 Twoshort Y3 Yellonia\n\tTwoShort: That's kind of an odd move; You don't really need Red defensively until I have red and can reach you, and you don't need it offensively until you can reach me. But the early game goal is typically to get more pieces; frequently attempting to grab almost all of either green or yellow (or in theory, blue, as I'm trying forbut that's unusual.)\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Well, my thinking was that this would be my only chance for a while to get an R3, and that you would probably be coming over soon, so I took it. Now I'm back to building, I think. As I mentioned before, I have no clue what I'm doing. But I'm a quick study...I'll lose horribly this game, but I'll gain a better understanding of what to do (or not do) next time. :o)\n\n9) TwoShort: Discover B1 Twoshort G3 Zilla\n\n10) Laurie_Menke: Build G1 Laurie_menke\n\n11) TwoShort: Build B1 Twoshort\n\n12) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n13) TwoShort: Build B2 Zilla\n\n14) Laurie_Menke: Build G1 Laurie_menke\n\n15) TwoShort: Build B2 Twoshort\n\n16) Laurie_Menke: Build Y1 Laurie_menke\n\n17) TwoShort: Trade B2 G2 Twoshort\n\n18) Laurie_Menke: Build Y2 Laurie_menke\n\n19) TwoShort: Sacrifice G2 Twoshort\nBuild B2 Yellonia\nBuild B3 Yellonia\nCatastrophe Laurie_menke Yellow\n\tTwoShort: You didn't want to do that\r\n\n\n20) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\tLaurie_Menke: Argh! I had been thinking about that problem with greens, but forgot to count my star system for yellows! Grrrr.... ;o)\n\n21) TwoShort: Trade B3 Y3 Yellonia\n\n22) Laurie_Menke: Discover G1 Laurie_menke Y1 Why_not\n\tTwoShort: And that's game over... next turn I sacrifice my yellow to move three blues into your system and destroy it. I'll be happy to play again though, if you're up for it.\n\n23) TwoShort: Sacrifice Y3 Yellonia\nMove B2 Yellonia Laurie_menke\nMove B1 Yellonia Laurie_menke\nMove B1 Zilla Laurie_menke\nCatastrophe Laurie_menke Blue\n\n\n\nHomeworlds Online (SDG# 1183)\nStarted: 2005.10.30, Ended: 2005.12.2\nParticipants: Laurie_Menke (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tLaurie_Menke: Hi, Andy...here I stand, a Lab Rabbit who doesn't know how to play Homeworlds, hoping you'll have pateince with her while she learns. If you would rather, I can resign...I know you must be having to play a large number of newbies on SDG. Just let me know which you would prefer. Thanks!\n\tandylooney: Hi Laurie! I'm happy to play you! I love the game so much I don't mind playing newbies... in fact, I'm happy more people are learning this game! \n\n2) Laurie_Menke: Homeworld G3 Y1 B3\n\n3) andylooney: Build Y1 Andylooney\n\n4) Laurie_Menke: Build B1 Laurie_menke\n\tLaurie_Menke: Great! That's very kind of you. :o) I'll do my best not to make TOO many stupid moves! ;o)\n\n5) andylooney: Build Y1 Andylooney\n\n6) Laurie_Menke: Build B1 Laurie_menke\n\n7) andylooney: Trade Y1 G1 Andylooney\n\n8) Laurie_Menke: Trade B3 R3 Laurie_menke\n\n9) andylooney: Trade Y1 R1 Andylooney\n\n10) Laurie_Menke: Build B2 Laurie_menke\n\n11) andylooney: Build Y1 Andylooney\n\n12) Laurie_Menke: Build B2 Laurie_menke\n\n13) andylooney: Discover G1 Andylooney Y3 Clampett\n\tandylooney: OK, I'm going to go easy on you because you're learning. You have 4 blue pieces in your homeworld. That means I could destroy them all just by typing "Catastrophe Laurie_Menke Blue". I won't this time, but I will next time...\n\n14) Laurie_Menke: Trade B2 Y2 Laurie_menke\n\tLaurie_Menke: LOL...well, I'm consistent! In the other game I'm playing simultaneously, I just lost all my yellows the same way. Thanks for your kindness. :o)\n\n15) andylooney: Discover Y1 Andylooney G3 Garden\n\n16) Laurie_Menke: Discover B2 Laurie_menke Y2 Miner49er\n\n17) andylooney: Build R1 Andylooney\n\n18) Laurie_Menke: Build Y1 Laurie_menke\n\tLaurie_Menke: So, Andy...what would be an appropriate goal for me right now in this game...if you don't mind saying?\n\n19) andylooney: Build Y2 Andylooney\n\n20) Laurie_Menke: Discover Y1 Laurie_menke G2 Growth\n\n21) andylooney: Build Y3 Garden\n\n22) Laurie_Menke: Build R1 Laurie_menke\n\tLaurie_Menke: LOL....well, a person can try, can't they? Alright, I'll learn the hard way. ;o)\n\n23) andylooney: Discover R1 Andylooney G3 Paradise\n\n24) Laurie_Menke: Discover R3 Laurie_menke G2 Reforestation\n\n25) andylooney: Build R2 Andylooney\n\tandylooney: Your earlier request for advice was too vague for me to think of a reply to, but I'll give you a tip now: you should never leave your Homeworld undefended, i.e. without a Large ship there. We call this Starship Captain Rule #1.\n\n26) Laurie_Menke: Move Y2 Laurie_menke Reforestation\n\tLaurie_Menke: OK...great! Thank you! :o) I was concerned that I had little access to green and it was almost gone, but I could have used a different ship to discover the new system. I'll correct that right away. Thanks!\n\n27) andylooney: Build R2 Paradise\n\n28) Laurie_Menke: Move R3 Reforestation Laurie_menke\n\n29) andylooney: Move Y2 Andylooney Paradise\n\n30) Laurie_Menke: Trade B2 R2 Miner49er\n\n31) andylooney: Trade R2 B2 Andylooney\n\n32) Laurie_Menke: Move Y1 Growth Clampett\n\n33) andylooney: Sacrifice R1 Paradise\nAttack Y1S Clampett\n\n34) Laurie_Menke: Move B1 Laurie_menke Reforestation\n\n35) andylooney: Move B2 Andylooney Paradise\n\n36) Laurie_Menke: Build B2 Laurie_menke\n\tLaurie_Menke: OK, I don't know if you'll tell me this or not, but I'm curious why you're building up your men on systems that are TWO moves away from my homeworld. Why wouldn't you want to move in closer?\n\n37) andylooney: Discover Y1 Clampett G2 Fantasyisland\n\n38) Laurie_Menke: Move R1 Laurie_menke Fantasyisland\n\tandylooney: Well, a good attack route is built on a strong foundation.\n\tLaurie_Menke: OK...you're right...that makes sense. BTW, I love your new system's name...now you've got me picturing Tattoo yelling, "De Plane, De Plane!!!"\n\n39) andylooney: Sacrifice G1 Clampett\nBuild Y3 Paradise\n\tandylooney: well, since you like the system name so much, I'll let you have the place...\n\n40) Laurie_Menke: Attack Y1 Fantasyisland\n\n41) andylooney: Sacrifice Y2 Paradise\nMove Y3 Paradise Fantasyisland\nMove Y3 Garden Reforestation\n\n42) Laurie_Menke: Sacrifice Y2 Reforestation\nMove R1 Fantasyisland Garden\nMove B1 Reforestation Garden\n\tLaurie_Menke: Uh-oh...this is not looking good...\n\tLaurie_Menke: Let's see...next turn you plan to sacrifice your b2 in order to turn those two invading y3's into r3's. Then the following turn you'll start attacking my ships....\n\tLaurie_Menke: Well, I don't see any way to disable your b2 or otherwise prevent the attack, so the best I can do is minimize damage...so here goes my best shot. :o/\n\n43) andylooney: Sacrifice R2 Paradise\nAttack R1S Garden\nAttack B1S Garden\n\n44) Laurie_Menke: Build B2 Laurie_menke\n\tLaurie_Menke: Argh! Sometimes I am so stupid! I keep forgetting about the red ships being sacrificed and used from far away! All that and I still screwed up. Grrr.....\n\n45) andylooney: Build B3 Garden\n\n46) Laurie_Menke: Move B2 Laurie_menke Miner49er\n\n47) andylooney: Build B3 Paradise\n\n48) Laurie_Menke: Build B3 Laurie_menke\n\n49) andylooney: Sacrifice Y3 Fantasyisland\nMove B1 Garden Fantasyisland\nMove B1 Fantasyisland Laurie_menke\nMove B3 Paradise Miner49er\nCatastrophe Laurie_menke Blue\n\n50) Laurie_Menke: Build R1 Laurie_menke\n\tLaurie_Menke: Ouch.\n\n51) andylooney: Sacrifice R1 Andylooney\nAttack R2S Miner49er\n\n52) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack R2 Miner49er\n\n53) andylooney: Sacrifice R1 Garden\nAttack R2S Miner49er\n\n54) Laurie_Menke: Move B2 Miner49er Laurie_menke\n\n55) andylooney: Sacrifice B2 Paradise\nTrade B3 R3 Garden\nTrade B3 G3 Miner49er\n\n56) Laurie_Menke: Build Y2 Fantasyisland\n\n57) andylooney: Build Y2 Andylooney\n\n58) Laurie_Menke: Move Y2 Fantasyisland Laurie_menke\n\n59) andylooney: Build Y3 Reforestation\n\n60) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\tLaurie_Menke: Darn you! I knew you were going to do that, but I was HOPING for one more 3-sized ship! Well, I know I'm licked, but I enjoy playing games out. Do you mind?\n\n61) andylooney: Sacrifice Y3 Reforestation\nMove R3 Garden Fantasyisland\nMove R3 Fantasyisland Laurie_menke\nMove R2 Miner49er Laurie_menke\nCatastrophe Laurie_menke Red\n\tandylooney: not at all... I prefer playing them out! You never know what end-game mistake I might make...\n\n62) Laurie_Menke: Move Y1 Fantasyisland Laurie_menke\n\tLaurie_Menke: Well, I highly doubt that!\n\n63) andylooney: Trade Y3 R3 Andylooney\n\n64) Laurie_Menke: Build B1 Laurie_menke\n\n65) andylooney: Move Y3 Reforestation Laurie_menke\n\n66) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n67) andylooney: Sacrifice R3 Andylooney\nAttack B1S Laurie_menke\nAttack B2S Laurie_menke\nAttack R1S Laurie_menke\n\n\nHomeworlds Online (SDG# 1184)\nVariants: "Sinister"\nStarted: 2005.10.30, Ended: 2006.9.4\nParticipants: andylooney (S), TwoShort (W), JunkMan (N), MightyJack (E)\nWinner: andylooney\n\n1) JunkMan: Homeworld G1 B2 Y3\n\n2) MightyJack: Homeworld G3 Y2 B3\n\n3) andylooney: Homeworld B1 G2 Y3\n\n4) TwoShort: Homeworld B3 Y2 G3\n\n5) JunkMan: Build Y1 Junkman\n\n6) MightyJack: Build B1 Mightyjack\n\n7) andylooney: Build Y1 Andylooney\n\n8) TwoShort: Build G1 Twoshort\n\n9) JunkMan: Trade Y1 G1 Junkman\n\n10) MightyJack: Trade B1 G1 Mightyjack\n\n11) andylooney: Trade Y1 G1 Andylooney\n\n12) TwoShort: Build G2 Twoshort\n\tTwoShort: construct g2 twoshort\n\n13) JunkMan: Build Y1 Junkman\n\n14) MightyJack: Build B1 Mightyjack\n\n15) andylooney: Build G2 Andylooney\n\n16) TwoShort: Trade G2 Y2 Twoshort\n\n17) JunkMan: Trade Y1 R1 Junkman\n\n18) MightyJack: Trade B1 R1 Mightyjack\n\n19) andylooney: Trade G1 R1 Andylooney\n\n20) TwoShort: Trade Y2 R2 Twoshort\n\n21) JunkMan: Discover G1 Junkman Y3 Andromeda\n\n22) MightyJack: Discover G1 Mightyjack Y1 Wolf359\n\n23) andylooney: Discover G2 Andylooney Y3 Clampett\n\n24) TwoShort: Discover G1 Twoshort Y1 Yak\n\n25) JunkMan: Build R1 Junkman\n\n26) MightyJack: Build B1 Mightyjack\n\n27) andylooney: Build Y1 Andylooney\n\n28) TwoShort: Build G1 Twoshort\n\n29) JunkMan: Build G2 Andromeda\n\n30) MightyJack: Build G2 Wolf359\n\n31) andylooney: Discover Y1 Andylooney G3 Garden\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yak\n\n33) JunkMan: Sacrifice G1 Andromeda\nBuild Y1 Junkman\n\n34) MightyJack: Sacrifice B1 Mightyjack\nTrade G2 R2 Wolf359\n\n35) andylooney: Build G1 Clampett\n\n36) TwoShort: Discover G2 Twoshort B1 Bluestar\n\n37) JunkMan: Move R1 Junkman Andromeda\n\n38) MightyJack: Build G2 Wolf359\n\n39) andylooney: Trade Y3 G3 Andylooney\n\tMightyJack: Does anyone here have a problem with me taking back my last move and making a different one before Andy takes his next turn?\n\tandylooney: it's ok with me...\n\n40) TwoShort: Move G3 Yak Clampett\n\tMightyJack: Thanks Andy, thanks Aaron!\n\n41) JunkMan: Discover G2 Andromeda Y1 Helloworld\n\n42) MightyJack: Move G1 Wolf359 Clampett\nCatastrophe Clampett Green\n\n43) andylooney: Build Y2 Garden\n\n44) TwoShort: Build G1 Bluestar\n\n45) JunkMan: Trade Y3 G3 Junkman\n\n46) MightyJack: Build B1 Mightyjack\n\n47) andylooney: Build G1 Andylooney\n\n48) TwoShort: Trade G2 Y2 Bluestar\n\tMightyJack: Sorry for the delay, guys... was in the hospital for a week with pancreatitis. Better now.\n\tandylooney: Again, sorry you were ill, and we're glad your ok!\r\n\n\n49) JunkMan: Build G2 Helloworld\n\n50) MightyJack: Build G2 Wolf359\n\n51) andylooney: Sacrifice Y1 Garden\nDiscover G1 Andylooney Y3 Lovey\n\n52) TwoShort: Discover G1 Yak Y3 Yolonda\n\n53) JunkMan: Build R1 Junkman\n\n54) MightyJack: Build R2 Wolf359\n\n55) andylooney: Build R2 Andylooney\n\n56) TwoShort: Move G1 Yolonda Junkman\n\n57) JunkMan: Trade R1 B1 Junkman\n\n58) MightyJack: Move G2 Wolf359 Lovey\n\n59) andylooney: Discover G1 Lovey Y1 Different\n\n60) TwoShort: Sacrifice G1 Bluestar\nBuild G1 Junkman\nCatastrophe Junkman Green\n\tMightyJack: Okay, this is the second time that I've made a stupid move that I want to retract. Since this is the second time, I'll understand completely if y'all won't allow Aaron to do an undo on my behalf, but I do see a far better move for me if it's okay with you to take back my mistake.\n\tandylooney: It's fine with me. In fact, I think there ought to be an Undo button so you can always take back a move if you see immediately that it was a mistake (which you sometimes don't see until after the move is implemented.) I've actually already lost one game here because I didn't see that I was vulnerable until just after clicking Submit Orders.\n\tAaron: Undo complete. I will get the Undo functionality implemented asap. Have fun!\n\tMightyJack: Thanks Andy, thanks Aaron... looking forward to that Undo button!\n\n61) JunkMan: Discover B1 Junkman Y1 Alpha\n\n62) MightyJack: Move R2 Wolf359 Junkman\n\n63) andylooney: Trade G3 Y3 Andylooney\n\n64) TwoShort: Build R1 Twoshort\n\n65) JunkMan: Trade R1 G1 Junkman\n\n66) MightyJack: Attack Y1N Junkman\n\n67) andylooney: Trade R1 B1 Andylooney\n\n68) TwoShort: Move G1 Twoshort Bluestar\n\tTwoShort: Hey all- Just a warning that I'll be travelling for the next couple weeks, and may or may not manage to make moves with any promptness.\n\n69) JunkMan: Move G2 Helloworld Junkman\n\tandylooney: no problem... Happy Holidays to all!\n\n70) MightyJack: Attack G2N Junkman\n\n71) andylooney: Build B2 Andylooney\n\n72) TwoShort: Sacrifice Y2 Bluestar\nMove G3 Twoshort Wolf359\nMove G3 Wolf359 Junkman\n\n73) JunkMan: Move B1 Alpha Mightyjack\n\n74) MightyJack: Trade Y1 G1 Junkman\nCatastrophe Junkman Green\n\n75) andylooney: Discover B1 Andylooney Y3 Thurston\n\tJunkMan: Well, I'm dead.\n\n76) TwoShort: Build G1 Bluestar\n\n77) MightyJack: Trade B1 R1 Mightyjack\n\tMightyJack: Yup. 'Fraid so.\n\tTwoShort: I'm confused. Shouldn't I have just won? Alternatively, assuming I misunderstood the end condition shouldn't it be Andy's turn?\n\tandylooney: TwoShort was not the player who eliminated the player to TwoShort's left. Thus, the game continues. TwoShort's new enemy MightyJack. But it does seem like it should be my turn next...\n\tMightyJack: I'm guessing that eliminating one of the players screwed up the computer's idea of whose turn came next...\n\tAaron: *sighs* no matter what I do it screws up. OK. I am going to sit down and tackle this problem right now until it's fixed. This is most annoying and I apologize. I am resetting the current player now and tearing apart the code.\n\n78) andylooney: Move R2 Andylooney Andromeda\n\n79) TwoShort: Trade G1 Y1 Bluestar\n\n80) MightyJack: Move G2 Lovey Helloworld\n\tMightyJack: Sorry for the delay folks... not sure why, but I've been unable to connect to SuperDuperGames from just before New Year's until just now. Looks like Aaron fixed that problem.\n\n81) andylooney: Attack R1N Andromeda\n\n82) TwoShort: Move G1 Bluestar Twoshort\n\n83) MightyJack: Sacrifice R1 Mightyjack\nAttack G2N Helloworld\n\n84) andylooney: Move R1 Andromeda Different\n\n85) TwoShort: Build G1 Twoshort\n\n86) MightyJack: Move R2 Wolf359 Thurston\n\n87) andylooney: Build R1 Different\n\n88) TwoShort: Move G1 Twoshort Bluestar\n\n89) MightyJack: Move R2 Thurston Wolf359\n\n90) andylooney: Move R2 Andromeda Bluestar\n\n91) TwoShort: Move G1 Bluestar Thurston\n\n92) MightyJack: Move G2 Helloworld Thurston\n\n93) andylooney: Attack Y1W Bluestar\n\n94) TwoShort: Build G1 Twoshort\n\n95) MightyJack: Move G2 Thurston Different\n\n96) andylooney: Sacrifice Y2 Garden\nMove R1 Different Twoshort\nMove R1 Different Twoshort\nCatastrophe Twoshort Red\n\n97) TwoShort: Trade G1 R1 Twoshort\n\n98) MightyJack: Move R2 Wolf359 Twoshort\n\n99) andylooney: Discover B1 Thurston G1 Gumby\n\n100) TwoShort: Build G1 Twoshort\n\n101) MightyJack: Sacrifice R2 Junkman\nAttack G1S Different\nAttack R1W Twoshort\n\n102) andylooney: Build B1 Gumby\n\n103) TwoShort: Build G2 Twoshort\n\n104) MightyJack: Build G3 Wolf359\n\n105) andylooney: Move R2 Bluestar Thurston\n\n106) TwoShort: Trade G1 R1 Twoshort\n\n107) MightyJack: Sacrifice R1 Twoshort\nAttack G2W Twoshort\n\n108) andylooney: Attack G1W Thurston\n\n109) TwoShort: Build G1 Twoshort\n\n110) MightyJack: Build G3 Helloworld\n\n111) andylooney: Build G3 Thurston\n\n112) TwoShort: Trade G1 Y1 Twoshort\n\n113) MightyJack: Move R2 Twoshort Gumby\n\n114) andylooney: Build Y2 Andylooney\n\n115) TwoShort: Build Y2 Twoshort\n\n116) MightyJack: Trade B3 R3 Mightyjack\n\n117) andylooney: Move Y1 Bluestar Twoshort\nCatastrophe Twoshort Yellow\n\n118) TwoShort: Build R1 Twoshort\n\n119) MightyJack: Attack B1S Gumby\n\tandylooney: Greetings! I'm very sorry to have been so slow in taking this turn! It's been a tough choice and I've been too busy to focus...\n\n120) andylooney: Move B2 Andylooney Thurston\n\n121) TwoShort: Trade R1 Y1 Twoshort\n\n122) MightyJack: Attack B1S Gumby\n\n123) andylooney: Build B1 Thurston\n\n124) TwoShort: Discover R1 Twoshort G1 Bigcomeback\n\n125) MightyJack: Sacrifice R2 Gumby\nAttack Y1W Twoshort\nAttack G1W Twoshort\n\n126) andylooney: Discover Y2 Andylooney G3 Jolly\n\n127) MightyJack: Attack B1N Mightyjack\n\n128) andylooney: Sacrifice G3 Thurston\nBuild G3 Thurston\nBuild Y1 Jolly\nBuild Y2 Andylooney\n\n129) andylooney: Sacrifice Y2 Andylooney\nMove B1 Thurston Helloworld\nMove B1 Helloworld Twoshort\n\n\nHomeworlds Online (SDG# 1144)\nStarted: 2005.11.1, Ended: 2006.2.2\nParticipants: lambda (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld G2 B1 Y3\n\n2) lambda: Homeworld Y3 B2 G3\n\tJesse: On the small, blue-green world of Jesse, the peaceful Jesseans prepare to embark on a grand journey of exploration. Are they alone in the universe? Only time, and a giant radio telescope, will tell.\n\n3) Jesse: Build Y1 Jesse\n\tlambda: The Lambdites are a peaceable people of traders. Having discovered a hyperspace portal right in their system, they decide to start building a fleet of ships to send into the great beyond. Who know what sorts of alien races they'll find, and what amazing technologies they'll gain in trade?\n\n4) lambda: Build G1 Lambda\n\tJesse: Well, now this is really quite astonishing! Jessean scientists have discovered a primitive radio signal from an alien civilization only a few thousand light years away. It is entirely possible that they are now at a comparable level of technology to our own. Debate has begun as to whether we should initiate contact with them.\n\n5) Jesse: Discover Y1 Jesse G3 Sekhar\n\tlambda: The United Council of Merchants, the governing body of the Lambdites, opens a new market for speculation on what will be found as the galaxy is explored. Shares in "little green things from outer space" hit 100Y, while "buxom space blondes" are down at 1.34Y. A few enterprising engineers begin building sensor networks to try and scan the stars, in order to give them a better edge at playing the market.\n\n6) lambda: Discover G1 Lambda B1 Arrakis\n\tJesse: Following recent advances in hyperdrive technology, it is now possible to send an exploratory probe on a deep space mission to learn more about these mysterious Lambdites. It is possible we may even be able to make contact within our lifetime! Quantum entanglement communications from the probe indicate that Lambdite civilization did indeed survive the crucial nuclear-industrial period of development, with some fascinating technologies appropriate to their planet's climate. Furthermore, the probe has discovered a colonizable planet rich in resources. A research and production facility is now being built on planet Sekhar, name after the inventor of the hyperdrive that made its colonization possible.\n\tJesse: Even with hyperdrive, space travel is still a long, slow process. As the years pass, the Jessean population grows restless and discontented with the current administration's lackadaisical attitude toward the colonization of space.\n\n7) Jesse: Build Y1 Jesse\n\tlambda: [my apologies for taking so long; I got busy with school and burnt out on Homeworlds at the same time]\r\nThe Radio Corporation of Atlantia ends up being the first to discover a signal from an extra-Lambestial life form. The folks running the futures market are stumped as to what to do, as they haven't issued any shares in Jesseans. They finally decide that Jesseans fall under the category of "lumpy, hairy things", solving that problem neatly. The UCM decides to begin colonization of the galaxy, in order to make contact with the Jesseans and bilk them for all they're worth... er, we mean trade with them for everyone's mutual benefit! In that vein, they send one of their ships out, to form a small trading colony. \n\tJesse: [I understand. I'm glad you came back. I'll be back to this game in a bit, it just takes a certain frame of mind that I'm not in right now.]\n\n8) lambda: Build G1 Arrakis\n\tJesse: A generation of decadent culture passes. At long last, President Xanax is elected on a platform of renewed industrial and scientific development. The first new ship rolls off the production lines, and communication is reestablished with the colony on Sekhar.\n\n9) Jesse: Build Y1 Sekhar\n\tlambda: In a bizarre coincidence, the Lambdites find the remains of an ancient civilization on the planet they've chosen as a trading outpost. It turns out that the glassy planet was once composed of vast, sandy deserts, where this civilization of these funny looking soft pink things called "humans" once lived. In honor of the fallen race, the Lambdites name the planet Arrakis. They begin doing a survey of the stars to try and find the one named "Hume" that these humans must have come from. While they're at it, they decide to get ready for trade, producing some more of their excellent construction vessels and sending advertisements for them all across the galaxy. \n\tlambda: [Yeah, doing a roleplaying game of Homeworlds can be tough, since you have to be thinking both strategically and creatively at the same time. Oh, and that last bit of story a quick patch to the fact that I reflexively used my standard naming convention for systems, which is names of actual stars]\n\n\tJesse: The Sekhar colony is proven viable by the successful completion of a new ship at its production facilities. Jesseans celebrated the news at State sponsored events throughout the two systems. A few unpatriotic individuals held a small, half-hearted demonstration outside the J House. Happily, the majority of Jesseans dismiss their protestations as almost a non-event. "It just goes to show," commented one keen observer, "that President Xanax's landslide victory really does represent a true mandate of the masses. A few decadents from the Green Love Party won't get in the way of the President's agenda of progress."\n\tJesse: Well, I think that's long enough. I'm canceling this game now.\n\nHomeworlds Online (SDG# 1211)\nStarted: 2005.11.1, Ended: 2005.11.12\nParticipants: CDRodeffer (S), benedict (N)\nWinner: CDRodeffer\n\n1) benedict: Homeworld G3 B2 Y3\n\n2) CDRodeffer: Homeworld Y1 B2 G3\n\n3) benedict: Build Y1 Benedict\n\n4) CDRodeffer: Build G1 Cdrodeffer\n\n5) benedict: Discover Y1 Benedict G1 Pons Aelius\n\n6) CDRodeffer: Trade G1 R1 Cdrodeffer\n\n7) benedict: Build Y1 Benedict\n\n8) CDRodeffer: Build G1 Cdrodeffer\n\n9) benedict: Trade Y1 R1 Benedict\n\n10) CDRodeffer: Trade G1 B1 Cdrodeffer\n\n11) benedict: Build R1 Benedict\n\n12) CDRodeffer: Build G1 Cdrodeffer\n\n13) benedict: Move R1 Benedict Pons\n\n14) CDRodeffer: Build R2 Cdrodeffer\n\n15) benedict: Build R2 Pons\n\tbenedict: thx for the disks, they arrived yesterday. haven't had a chance to work with them yet.\n\n16) CDRodeffer: Trade R2 Y2 Cdrodeffer\n\tCDRodeffer: No problem! Just pop the live-CD in your drive and turn it on to try things out. Or use a school computer if you have any reservations. And no, that is not my insidious attempt to infect a certain university with some evil destructive program from some certain other university.... :-)\n\n17) benedict: Build R2 Benedict\n\n18) CDRodeffer: Build B1 Cdrodeffer\n\n19) benedict: Trade R1 B1 Benedict\n\n20) CDRodeffer: Discover B1 Cdrodeffer G3 Eden\n\n21) benedict: Move R2 Pons Eden\n\n22) CDRodeffer: Build B2 Eden\n\n23) benedict: Attack B2 Eden\n\n24) CDRodeffer: Build B3 Eden\n\n25) benedict: Build B3 Eden\nCatastrophe Eden B\n\n26) CDRodeffer: Discover G1 Cdrodeffer R3 Ohio_state\n\n27) benedict: Move B1 Benedict Pons\n\n28) CDRodeffer: Build G1 Cdrodeffer\n\n29) benedict: Move R1 Pons Ohio_state\n\tbenedict: \n\n30) CDRodeffer: Build G2 Ohio_state\n\n31) benedict: Move Y1 Pons Eden\n\n32) CDRodeffer: Attack R1 Ohio_state\n\tbenedict: I have to admit I have no idea what I'm doing\n\tCDRodeffer: No problem. Let's assess your situation. You have a few ships out there, but not many big ones yet. That's about the same for me, too. A conflict-oriented direct invasion strategy usually doesn't work in this game. It's just too hard and takes too many turns to move in ships and then fight. If your opponent has a red ship and a large ship at home, they can always defend against a single ship of any size. More likely, many ships are moved in at once using a sacrifice of a large yellow. Or many ships are grown at once somewhere by sacrificing a large green. Or, more often in outside systems, many ships are attacked by sacrificing a large red. Less frequent, several ships can be traded at a time, but that's usually a defensive rather than an offensive move.\n\n33) benedict: Move R2 Eden Pons\n\tbenedict: that last move of mine was a mistake - forgot that having a red star system allowed you to attack.\n\n34) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G2 Cdrodeffer\nBuild G2 Ohio_state\nBuild G3 Cdrodeffer\n\n35) benedict: Move Y1 Eden Pons\n\n36) CDRodeffer: Sacrifice Y2 Cdrodeffer\nDiscover B1 Cdrodeffer G3 Jealousy\nMove G2 Cdrodeffer Jealousy\n\n37) benedict: Build R1 Pons\n\n38) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild B1 Jealousy\nBuild R2 Cdrodeffer\n\n39) benedict: Move R2 Pons Jealousy\n\tbenedict: move r2 pons Jealousy\n\tbenedict: oops ;)\n\n40) CDRodeffer: Sacrifice R1 Cdrodeffer\nAttack R2 Jealousy\n\n41) benedict: Build B2 Pons\n\tCDRodeffer: No worries.\n\tbenedict: oh, guess I isunderstood *that* rule ;)\n\n42) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild R1 Cdrodeffer\nBuild R3 Jealousy\n\n43) benedict: Build R3 Pons\n\tCDRodeffer: This scheme of sacrificing a g3, then immediately rebuilding it as one of the actions it allows requires another green ship (in this case my g1 at CDRodeffer). This construction is popularly known as "the factory."\n\tbenedict: nasty\n\n44) CDRodeffer: Trade G2 Y2 Jealousy\n\n45) benedict: Trade B2 G2 Pons\n\n46) CDRodeffer: Sacrifice Y2 Jealousy\nMove G1 Ohio_state Pons\nMove G2 Ohio_state Pons\nCatastrophe Pons Green\n\tCDRodeffer: You're not gonna like this....\n\n47) benedict: Build R1 Benedict\n\tbenedict: i sensed the fact that you were rubbing your internet hands together with glee, but didn't realize exactly what would happen - I took the bait and walked right into the trap@!!@\n\n48) CDRodeffer: Sacrifice B1 Jealousy\nTrade R1 Y1 Ohio_state\n\n49) benedict: Trade R2 G2 Benedict\n\tCDRodeffer: No, not so much that, as I saw the opportunity and just took it. The large yellow ship is useful for the "invade and catastrophe" type of attack, but sometimes a medium will do. Seldom will a player leave a system vulnerable to a single ship invasion catastrophe.\n\n50) CDRodeffer: Build G1 Ohio_state\n\tbenedict: by the way, I never really congratulated you on having your game pulling strings online - that's one step ahead of me ;) well done! I'm about to play Iain Cheyne in that one...\n\tCDRodeffer: Thanks! I hope you like the game. Pulling Strings is really simple, and sort of just fell together almost completely formed.\n\n51) benedict: Build G1 Benedict\n\n52) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G2 Ohio_state\nBuild G3 Cdrodeffer\nBuild Y1 Ohio_state\n\n53) benedict: Build Y2 Benedict\n\tbenedict: i don't see your g3 ship...\n\tbenedict: oh, its at creodeffer, never mind\n\n54) CDRodeffer: Discover G1 Ohio_state Y2 Caution\n\tbenedict: i won my Strings game against aaron!\n\tCDRodeffer: Cool! I hope you enjoyed it.\n\n55) benedict: Sacrifice Y2 Benedict\nDiscover G1 Benedict R1 Orion\nMove G2 Benedict Orion\n\n56) CDRodeffer: Sacrifice G3 Cdrodeffer\nBuild G3 Cdrodeffer\nBuild Y2 Ohio_state\nBuild B1 Jealousy\n\tbenedict: yes - short, but tricky\n\n57) benedict: Sacrifice Y3 Benedict\nMove G1 Orion Ohio_state\nMove G2 Orion Ohio_state\nPass\nCatastrophe Ohio_state G\n\n58) CDRodeffer: Sacrifice Y2 Ohio_state\nDiscover R3 Jealousy G1 Brief_stopover\nMove R3 Brief_stopover Benedict\n\tbenedict: the end is near...\n\tCDRodeffer: I don't understand why you did that. I guess last licks?\n\n59) benedict: Build R1 Benedict\n\tbenedict: I was trying to get to your homeworld and knock out your production, but realised that I would need to move through 2 systems to get there.\n\n60) CDRodeffer: Sacrifice R2 Jealousy\nAttack R1 Benedict\nAttack R1 Benedict\n\tbenedict: I told you, I still have no idea what I'm supposed to be doing...\n\tbenedict: ...I just know that I am losing horribly\n\tCDRodeffer: That's OK. Sometime we'll get together over the board, and I'll show you some things. Actually, I'm not really the one to show you -- there are many much better players than I. But you're right, this is the end. Nice game, even so.\n\n\nHomeworlds Online (SDG# 1224)\nStarted: 2005.11.3, Ended: 2005.11.8\nParticipants: jeep (S), sketchwick (N)\nWinner: jeep\n\n1) sketchwick: Homeworld B1 Y3 G3\n\n2) jeep: Homeworld B1 Y2 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Trade G1 R1 Sketchwick\n\n6) jeep: Trade G1 R1 Jeep\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Build G1 Jeep\n\n9) sketchwick: Trade G1 B1 Sketchwick\n\n10) jeep: Discover G1 Jeep B3 Moon\n\n11) sketchwick: Build B2 Sketchwick\n\n12) jeep: Build G1 Moon\n\n13) sketchwick: Discover B2 Sketchwick Y2 Shine\n\n14) jeep: Trade G1 Y1 Moon\n\n15) sketchwick: Sacrifice G3 Sketchwick\nBuild B2 Shine\nBuild B2 Shine\nBuild B3 Sketchwick\n\n16) jeep: Build G1 Jeep\n\tjeep: So many new tactics... I saw that after my last play.\n\n17) sketchwick: Trade B2 R2 Shine\n\n18) jeep: Discover G1 Jeep Y3 Shoe\n\n19) sketchwick: Move R2 Shine Moon\n\n20) jeep: Sacrifice Y1 Moon\nDiscover G1 Moon G1 Polish\n\n21) sketchwick: Trade B3 G3 Sketchwick\n\n22) jeep: Trade R1 Y1 Jeep\n\n23) sketchwick: Trade B2 Y2 Shine\n\n24) jeep: Build G2 Shoe\n\n25) sketchwick: Move Y2 Shine Moon\n\n26) jeep: Build G2 Jeep\n\n27) sketchwick: Move R2 Moon Polish\n\n28) jeep: Sacrifice G3 Jeep\nBuild G2 Polish\nBuild G3 Polish\nBuild G3 Jeep\nCatastrophe Polish Green\n\n29) sketchwick: Move Y2 Moon Jeep\n\n30) jeep: Trade G3 R3 Jeep\n\n31) sketchwick: Sacrifice G3 Sketchwick\nBuild B2 Sketchwick\nBuild B2 Shine\nBuild Y1 Jeep\nCatastrophe Jeep Yellow\n\n32) jeep: Trade G2 Y2 Jeep\n\n33) sketchwick: Discover B2 Shine G1 Sun\n\n34) jeep: Discover R3 Jeep Y2 Spot\n\n35) sketchwick: Move B2 Shine Jeep\n\n36) jeep: Move R3 Spot Jeep\n\n37) sketchwick: Build B3 Sun\n\tsketchwick: ug I'm dumb\r\n\n\n38) jeep: Attack B2N Jeep\n\n39) sketchwick: Trade B3 Y3 Sun\n\n40) jeep: Sacrifice Y2 Jeep\nDiscover B2 Jeep Y2 Temp\nMove B2 Temp Sketchwick\nCatastrophe Sketchwick Blue\n\n41) sketchwick: Move B2 Sun Sketchwick\n\n42) jeep: Move G2 Shoe Jeep\n\n43) sketchwick: Build Y1 Sun\n\n44) jeep: Build G1 Jeep\n\n45) sketchwick: Move Y1 Sun Sketchwick\n\n46) jeep: Trade G2 Y2 Jeep\n\n47) sketchwick: Build Y1 Sun\n\n48) jeep: Build G2 Jeep\n\n49) sketchwick: Trade Y1 B1 Sketchwick\n\n50) jeep: Sacrifice Y2 Jeep\nDiscover R3 Jeep Y2 Temp\nMove R3 Temp Sketchwick\n\n51) sketchwick: Move Y1 Sun Sketchwick\n\n52) jeep: Attack B2N Sketchwick\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 1190)\nStarted: 2005.11.3, Ended: 2005.11.7\nParticipants: Laurie_Menke (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) Laurie_Menke: Homeworld Y3 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) TwoShort: Build G1 Twoshort\n\n6) Laurie_Menke: Build G2 Laurie_menke\n\n7) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n8) Laurie_Menke: Discover G1 Laurie_menke Y1 Luella\n\n9) TwoShort: Discover G1 Yolonda Y1 Troublemaker\n\n10) Laurie_Menke: Discover G2 Laurie_menke B1 Cornflower\n\n11) TwoShort: Build G2 Troublemaker\n\n12) Laurie_Menke: Discover G1 Luella B3 Oceania\n\n13) TwoShort: Move G2 Troublemaker Oceania\n\n14) Laurie_Menke: Trade G1 Y1 Oceania\n\n15) TwoShort: Build G1 Oceania\n\n16) Laurie_Menke: Trade G2 Y2 Cornflower\n\n17) TwoShort: Build G2 Troublemaker\n\n18) Laurie_Menke: Move Y2 Cornflower Oceania\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Oceania\nBuild G3 Troublemaker\nBuild G3 Twoshort\n\tLaurie_Menke: Houston, I seem to be having a green shortage....\n\tTwoShort: Let's see if I can help you out wiht that...\n\n20) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tLaurie_Menke: LOL...the Green Horde is coming to get me!\n\n21) TwoShort: Trade G2 R2 Oceania\n\n22) Laurie_Menke: Move Y2 Oceania Troublemaker\n\n23) TwoShort: Sacrifice R2 Oceania\nAttack Y1S Oceania\nAttack Y2S Troublemaker\n\n24) Laurie_Menke: Trade R3 G3 Laurie_menke\n\tLaurie_Menke: OK, so I really need to review some of the archived games to see what I'm supposed to be doing. I still don't seem to have a clue what I should be trying to do from turn to turn.\n\tLaurie_Menke: I know this game is nearing an end, and I really appreciate your willingness to play with me. I'm going to lay low for a while and hopefully the next time we meet I'll be more ready to be a challenge for you. Happy gaming!\n\n25) TwoShort: Trade G1 R1 Oceania\n\n26) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tTwoShort: I'm still learning myself, I'm just a few pages ahead of you. I'll throw out a couple salient points I've discovered so far:\r\n 1. It's all about green and yellow. If you can cut off, or severely restrict, your opponents access to one of those, you've got them.\r\n 2. After that, it's all about 3 pointers. A 3 pointer gives you the potential to make such a sweeping change to the board when you sacrifice it, that the player with even one more of them has a big advantage.\r\n\r\n Besides that, it's just assorted little tricks; primarily the one I used here: sacrifive a 3 point green to grow itself back again, two other peices besides. All I'm doing from turn to turn in the early game is trying to set up the timing so I'll be the first one able to do this.\n\tLaurie_Menke: All very good advice...thank you! I was starting to get the idea about green and yellow, but I'm still very unaware of my sacrificing possibilities.\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Oceania\nBuild G2 Oceania\nBuild G3 Twoshort\n\n28) Laurie_Menke: Trade R3 G3 Laurie_menke\n\tLaurie_Menke: Now I'm just feeling stupid...since I only have one ship, I can't go anywhere, so my options are building or trading. When I had the green, I couldn't build because you've got all the greens. With the red, I can't build because I have no green. So I just keep trading ships...LOL!\n\n29) TwoShort: Move G3 Troublemaker Laurie_menke\n\tTwoShort: You could have built last turn, but then I could have moved in and caused a catastrophe. But you switched to red, forcing me to stall for a turn until you flipped back. \n\n30) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n31) TwoShort: Sacrifice R1 Oceania\nAttack R3S Laurie_menke\n\n\nHomeworlds Online (SDG# 1200)\nStarted: 2005.11.3, Ended: 2005.11.7\nParticipants: MonkeyJamboree (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) MonkeyJamboree: Homeworld R1 Y2 B3 *\n\tMonkeyJamboree: homeworld R1 Y2 B3\n\tMonkeyJamboree: oops! sorry, i am new at using this system here! and new at homeworlds... (though i AM a Rabbit.. hehe)\n\n3) andylooney: Build Y1 Andylooney\n\tandylooney: welcome to the game! Next time you might want to start with green in your homeworld...\n\n4) MonkeyJamboree: Trade B3 G3 Monkeyjamboree (s)\n\tMonkeyJamboree: why's that? i dont quite get the whole colors thing...\n\tMonkeyJamboree: oops! i missed the whole thing about the colors representing something different in the rules! i'll have to remember that next time.\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) MonkeyJamboree: Build G1 Monkeyjamboree (s)\n\n7) andylooney: Build G1 Andylooney\n\tMonkeyJamboree: by the way, it's nice to meet you! i must say that you created a lot of fun games that my friends and I like to play!\n\tMonkeyJamboree: i just read the news on wunderland.com about Kristin's grandmother... please offer her my condolence(s?).\n\n8) MonkeyJamboree: Build G2 Monkeyjamboree (s)\n\n9) andylooney: Sacrifice Y3 Andylooney\nDiscover G1 Andylooney Y3 Clampett\nMove G1 Clampett Monkeyjamboree\nPass\nCatastrophe Monkeyjamboree Green\n\tandylooney: sorry about this, but hopefully you'll consider it a learning experience... you've got to be careful about overloading your homeworld!\n\n\nHomeworlds Online (SDG# 1234)\nStarted: 2005.11.3, Ended: 2005.11.6\nParticipants: Evilaxe (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) Evilaxe: Homeworld G1 B3 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Evilaxe: Build Y1 Evilaxe\n\n5) TwoShort: Build G1 Twoshort\n\n6) Evilaxe: Build Y1 Evilaxe\n\n7) TwoShort: Discover G1 Twoshort Y3 Yellonia\n\n8) Evilaxe: Trade Y3 G3 Evilaxe\n\n9) TwoShort: Build G2 Yellonia\n\n10) Evilaxe: Build Y2 Evilaxe\n\n11) TwoShort: Discover G1 Yellonia Y2 Monkeywrench\n\n12) Evilaxe: Trade Y1 B1 Evilaxe\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yellonia\nBuild G2 Monkeywrench\nBuild G3 Twoshort\n\n14) Evilaxe: Trade Y1 R1 Evilaxe\n\n15) TwoShort: Discover G2 Yellonia B2 Bluestar\n\n\tSYSTEM: Evilaxe resigns.\n\nHomeworlds Online (SDG# 1236)\nStarted: 2005.11.4, Ended: 2005.11.11\nParticipants: MatrixFrog (S), Evilaxe (N)\nWinner: MatrixFrog\n\n1) Evilaxe: Homeworld G1 B3 Y3\n\n2) MatrixFrog: Homeworld B3 Y2 G3\n\tEvilaxe: Hi there. Good game last time.\n\n3) Evilaxe: Build Y1 Evilaxe\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) Evilaxe: Trade Y1 G1 Evilaxe\n\n6) MatrixFrog: Trade G1 B1 Matrixfrog\n\n7) Evilaxe: Build Y1 Evilaxe\n\n8) MatrixFrog: Build B1 Matrixfrog\n\n9) Evilaxe: Trade Y1 B1 Evilaxe\n\n10) MatrixFrog: Trade B1 Y1 Matrixfrog\n\n11) Evilaxe: Discover G1 Evilaxe B2 Xanadu\n\n12) MatrixFrog: Build Y1 Matrixfrog\n\n13) Evilaxe: Build Y1 Evilaxe\n\n14) MatrixFrog: Discover Y1 Matrixfrog G1 Alpha\n\n15) Evilaxe: Move Y1 Evilaxe Xanadu\n\n16) MatrixFrog: Build Y2 Alpha\n\n17) Evilaxe: Build Y2 Xanadu\n\n18) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n19) Evilaxe: Build G2 Xanadu\n\n20) MatrixFrog: Discover Y1 Alpha B2 Beta\n\n21) Evilaxe: Trade G1 R1 Xanadu\n\n22) MatrixFrog: Build G1 Matrixfrog\n\n23) Evilaxe: Build G2 Xanadu\n\tEvilaxe: b g2 xanadu\n\n24) MatrixFrog: Build B1 Matrixfrog\n\n25) Evilaxe: Build B2 Evilaxe\n\n26) MatrixFrog: Discover Y2 Alpha B3 Gamma\n\n27) Evilaxe: Discover G2 Xanadu R1 El_dorado\n\n28) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild Y1 Beta\n\n29) Evilaxe: Trade B2 R2 Evilaxe\n\n30) MatrixFrog: Trade B1 G1 Matrixfrog\n\n31) Evilaxe: Move Y2 Xanadu El_dorado\n\n32) MatrixFrog: Trade Y1 G1 Beta\n\n33) Evilaxe: Sacrifice G2 El_dorado\nBuild Y1 Xanadu\nBuild Y3 El_dorado\n\n34) MatrixFrog: Build Y3 Beta\n\n35) Evilaxe: Sacrifice B1 Evilaxe\nTrade Y2 B2 El_dorado\n\n36) MatrixFrog: Build Y2 Beta\n\n37) Evilaxe: Move Y3 Evilaxe Beta\nCatastrophe Beta Y\n\n38) MatrixFrog: Build G2 Matrixfrog\n\tMatrixFrog: I didn't think you'd want to use a Y3 for that. Back to the drawing board...\n\n39) Evilaxe: Move G2 Xanadu El_dorado\n\n40) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild R2 Matrixfrog\nBuild Y1 Gamma\n\tEvilaxe: I Had no real choice. Y3 or nothing and I couldn't let that armada live.\n\tMatrixFrog: I think I meant to build that in beta, not at home... I'm clearly too tired for this game right now.\n\n41) Evilaxe: Sacrifice G2 El_dorado\nBuild Y2 El_dorado\nBuild Y3 El_dorado\n\tMatrixFrog: True.\n\n42) MatrixFrog: Move Y1 Gamma El_dorado\nCatastrophe El_dorado Y\n\tEvilaxe: Damn Damn Damn! I meant to put the y2 in Xanadu. Wasn't thinking properly when I entered the move.\n\tEvilaxe: Don't let that stop you from catastrophising El_dorado though.\n\n\tEvilaxe: Well, that's it. Thre's nothing I can do to stop you rolling your big ships in and taking over by force. Thanks for the game, hopefully I'll proofread better next time :)\n\tSYSTEM: Evilaxe resigns.\n\nHomeworlds Online (SDG# 1238)\nStarted: 2005.11.4, Ended: 2005.12.16\nParticipants: lambda (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) lambda: Homeworld G3 B2 Y3\n\tTwoShort: Hello. Glad to be playing you again; this time I'll try to avoid making a dumb mistake...\n\n3) TwoShort: Build G1 Twoshort\n\tlambda: Hi! Thanks for playing. Dumb mistakes like the one you made happen all the time; I still make them occasionally myself, especially when I'm teaching new players and think that I can't possibly lose. \n\n4) lambda: Build Y1 Lambda\n\n5) TwoShort: Build G1 Twoshort\n\n6) lambda: Build Y1 Lambda\n\n7) TwoShort: Discover G1 Twoshort B3 Bluestar\n\n8) lambda: Discover Y1 Lambda B1 Arcturus\n\n9) TwoShort: Build G1 Twoshort\n\n10) lambda: Build Y2 Lambda\n\n11) TwoShort: Discover G1 Twoshort Y3 Yellonia\n\n12) lambda: Move Y2 Lambda Arcturus\n\n13) TwoShort: Build G2 Bluestar\n\tlambda: Sorry about the delay there. I ended up getting really busy with school work and feeling burnt out on Homeworlds at the same time. \n\n14) lambda: Trade Y2 G2 Arcturus\n\tTwoShort: No problem\n\n15) TwoShort: Trade G2 Y2 Bluestar\n\n16) lambda: Build G2 Arcturus\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yellonia\nBuild G3 Bluestar\nBuild G3 Twoshort\n\n18) lambda: Discover G2 Arcturus Y3 Sol\n\n19) TwoShort: Trade G3 R3 Twoshort\n\n20) lambda: Build G3 Sol\n\n21) TwoShort: Sacrifice Y2 Bluestar\nMove G3 Bluestar Arcturus\nMove G3 Arcturus Lambda\n\tlambda: OK, I realized right as I hit the submit button that I had an instant kill for you, so I hit undo. But now I feel bad killing you in that way after undoing a move. Do you think I should take my kill? Or do you want to undo your last move? Or do you think I should just redo my move? Basically, I feel bad killing you after an undo that wasn't because I mistyped, but instead because I realized a second later that I had a better move. \n\tTwoShort: My general feeling on undos is that if you realize a second later you have a better move, feel free; if it's the next day, better to ask. I would have loved (and not hesitated) to hit undo in our previous game, when I realized as I hit the submit button that I'd made a dumb game losing mistake. Now I've made the exact same mistake, and not realized it, so I'm feeling kind of dumb!\r\n I propose that I've no idea what is the most fair way to proceed, but I'm sure the most fun way is to undo both our moves and continue from there. \r\n \n\n22) lambda: Sacrifice Y3 Lambda\nMove G2 Arcturus Lambda\nMove G2 Sol Arcturus\nMove G2 Arcturus Lambda\nCatastrophe Lambda Green\n\tlambda: Sure, that works for me. \n\n23) TwoShort: Move G2 Yellonia Lambda\n\n24) lambda: Move G3 Sol Lambda\n\tTwoShort: Of course, now I'll feel bad if I win quickly after that\r\n\n\tlambda: Well, there's another move I'd like to undo. I guess I'll let it stand, though. \n\tlambda: Not immediately, but...\n\n25) TwoShort: Build G2 Yellonia\n\tlambda: Ouch. \n\tlambda: I think no matter what, we're going to have to have a rematch after this game, since we've each made such bad mistakes. \n\n26) lambda: Trade Y1 R1 Lambda\n\n27) TwoShort: Sacrifice G2 Yellonia\nBuild G2 Lambda\nBuild G2 Lambda\nCatastrophe Lambda Green\n\n28) lambda: Move Y1 Arcturus Lambda\n\n29) TwoShort: Build G2 Yellonia\n\n\tSYSTEM: lambda resigns.\n\nHomeworlds Online (SDG# 1263)\nStarted: 2005.11.6, Ended: 2005.11.13\nParticipants: Laurie_Menke (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 Y1 G3\n\n2) Laurie_Menke: Homeworld G3 B2 Y3\n\n3) Jesse: Build G1 Jesse\n\tLaurie_Menke: Hi Jesse. Just to warn you, I've only played one full game of Homeworlds and I lost horribly. I hope you'll forgive my newbie blunders. :o(\n\tJesse: Hi, Laurie. I see you're playing TwoShort and Andy already. Excelent choices. Let's see what I can add to your education...\n\n4) Laurie_Menke: Build Y1 Laurie_menke\n\tLaurie_Menke: Any and all education is greatly appreciated. :o)\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) Laurie_Menke: Build Y2 Laurie_menke\n\tJesse: If you were to build that second y1 before I got a yellow, it could be very difficult for me to get one later, so I'm grabbing it for myself before it's too late.\n\tLaurie_Menke: OK...so why do you want the y1? I was thinking you just have to work through the 1s to get to the "bigger guns."\n\n7) Jesse: Discover Y1 Jesse G2 Kif\n\tJesse: Because if you took the y1, I wouldn't be able to get a yellow until I had a 2-pointer, by which time you might have used up all the 2-pointers. I could always trade my g3, but I want to have it for a factory at the first opportunity.\n\n8) Laurie_Menke: Discover Y1 Laurie_menke G1 Creativity\n\n9) Jesse: Build Y2 Kif\n\n10) Laurie_Menke: Build Y2 Creativity\n\tLaurie_Menke: OK. I see what you mean.\n\n11) Jesse: Build G1 Jesse\n\n12) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\n13) Jesse: Discover Y1 Kif B1 Frog\n\n14) Laurie_Menke: Move G3 Laurie_menke Frog\n\tLaurie_Menke: So what would you say a good goal would be for me right now in this game? I'm having trouble understanding what I should be doing to either attack or defend efficiently...\n\n15) Jesse: Move Y1 Frog Laurie_menke\n\n16) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove G3 Frog Laurie_menke\nMove Y2 Creativity Kif\n\tJesse: At this stage, defense is about avoiding leaving your homeworld vulnerable to either catastrophe or lany larger ships that might arrive. By moving out your g3, you reduce the diversity of your ships, so that I can move in like this, threatening to sacrifice my g3 to blast you. If you had any red ships, you would be safe from that, so one thing you can do to defend yourself is obtain a red ship once I've set up on your border.\n\tJesse: Offense here is more about positioning yourself to threaten to do things like this, in such a way that it limits the opponent's ability to develop. For instance, TwoShort in particular always seems to push a couple of green ships to a yelow star next to me when I want to set up a factory on my homeworld early on. That prevents me from safely opperating a factory there. It's a good tactic.\n\tJesse: I'm not usually very aggressive that way in the early game. I play for defense first, and development second. I only really start to turn my thoughts to offense when I've got a couple of extra large pieces, preferably more than the opponent. Otherwise, I try to squeeze the resources to develop just a little more nicely than my opponent.\n\tJesse: In this game, I made some inefficient moves early on that gave you a big positional advantage for nabbing those large yellows. I moved up to Frog to prevent you from grabbing too many of them. (It threatens to move in and destroy them if you build two at your homeworld.) It was aso to spread my own yellows out so that I would be able to build one or more of them myself. Moving in to your homeworld just now is a tactic to force you to make some defensive plays while I hopefully can squeeze out some yellows. Right now, I think you either have to change your lone home defender to another color, probably red, or sacrifice a piece to bring your g3 home.\n\tLaurie_Menke: Wow...I really appreciate you taking the time to give so much good advice! I can see now that it was stupid of me to move the g3 out, especially when I had no way of moving once I was there. \n\tLaurie_Menke: And I would have never even thought of the sacrificing your g3 to build yellows and destroy my homeworld. I need to think more carefully about the sacrifice moves that both I and my opponent can make.\n\tLaurie_Menke: Huh...I thought I was doing this right, but I got an error message. Is this code correct? sacrifice y2 Laurie_Menke <carriage return> move g3 Frog Laurie_Menke <carriage return> move y2 Creativity Jesse?\n\tLaurie_Menke: The error says I can't leave my homeworld undefended by the end of my turn...I didn't think I was...I'm leaving it temporarily, but returning my green in the second command line. Right?\n\tLaurie_Menke: Well, I'll try something else instead...\n\n17) Jesse: Trade Y1 G1 Laurie_menke\n\tJesse: Yes, you should be able to do that. I believe you've found a bug. Actually, I've been wondering whether this was implemented properly, but never had an opportunity to test it.\n\tAaron: It *was* implemented properly, but then I had to allow "cashing in on investment" and mis-handled it. I'll repair the code now.\n\tAaron: Fixed. Laurie, I undid your last move. You should now be able to do what you previously wanted. Let me know if it doesn't work.\n\tLaurie_Menke: Thanks, Aaron and Jesse! You're the best! And Jesse, please forgive me for being late on my move...I went out of town on an emergency...my Dad was having bypass surgery. I tried to use my Mom's computer, but it was too slow. Please forgive me.\n\n18) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tJesse: Yeah, no problem. I hope your dad is okay.\n\n19) Jesse: Build G2 Laurie_menke\n\tLaurie_Menke: He is...thanks.\n\n20) Laurie_Menke: Build R1 Laurie_menke\n\tJesse: Again, we see the value of diversity at the homeworld. Having only one color of ships there is all the more dangerous if it's the same color as one of your system markers. Since you don't have any red to capture my ship, your green star is probably doomed, but you can save your large ship by changing its color.\n\tJesse: Er, yeah, like that. :)\n\n21) Jesse: Sacrifice G3 Jesse\nBuild G2 Laurie_menke\nBuild G3 Jesse\nBuild G3 Jesse\nCatastrophe Laurie_menke G\n\tLaurie_Menke: Hey...I'm starting to catch on a little, I guess! All thanks to your patience tutelage! :o)\n\n22) Laurie_Menke: Build Y1 Creativity\n\tLaurie_Menke: I meant "patient"...sorry for the typo\n\tJesse: What!? A type?! Now I'm rezlly outrages!\n\n23) Jesse: Trade G3 R3 Jesse\n\tLaurie_Menke: LOL! :o)\n\n24) Laurie_Menke: Trade R1 G1 Laurie_menke\n\tJesse: What's really funny, to me, is that those were all real typos. I didn't even think of leaving them in until later.\n\tJesse: Oh, wow. That was incautious of me. Our homeworlds are adjacent to each other now, and you could have flown in your r3. I really should have let those ships sit without calling the catastrophe until after I protected myself.\n\n25) Jesse: Build R1 Jesse\n\tAaron: Go get 'im, Laurie! (I'm glad your dad's ok. My parents are going through the same thing.)\n\n26) Laurie_Menke: Build R1 Laurie_menke\n\tLaurie_Menke: Thanks, Aaron...I hope your parents are OK, too. I'm sorry to hear of their trouble.\n\tLaurie_Menke: That really is funny...about the typos. And sadly, as is obvious, I didn't pick up on that homeworld thing either. \n\tJesse: Hmm, yeah. Not so sad for me, though it would have served me right if you'd caught it.\n\n27) Jesse: Move R3 Jesse Laurie_menke\n\n28) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack R3 Laurie_menke\n\n29) Jesse: Build R1 Jesse\n\tLaurie_Menke: Argh! She's sees what Jesse is doing just a tad too late to save herself....grrr.... If I attack you, you move in with your other red next turn and cause a catastrophe. If I move one of my reds out, you attack with the ship you've already got in my homeworld. Hmmm....what to do, what to do....\n\tLaurie_Menke: Actually, I couldn't even move a ship out if I tried right now....\n\n30) Laurie_Menke: Build G2 Laurie_menke\n\tLaurie_Menke: I think that might have been the right play....\n\tJesse: Ack! Good catch. That's another horrible oversight for me this game. Well, this makes things much harder for me...\n\n31) Jesse: Sacrifice Y2 Kif\nMove R1 Jesse Laurie_menke\nMove R1 Jesse Laurie_menke\nCatastrophe Laurie_menke R\n\n32) Laurie_Menke: Move Y1 Creativity Laurie_menke\n\n33) Jesse: Trade G3 R3 Jesse\n\tJesse: This is tough. I honestly don't know who to say has the advantage here.\n\tLaurie_Menke: This is getting interesting! It's almost as if we're at the beginning of the game again.\n\n34) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y2 Creativity\nBuild Y2 Kif\n\n35) Jesse: Move R3 Jesse Laurie_menke\n\tLaurie_Menke: Oh...not good...I think you've got me now. But I'm still going to try a last-ditch effort.\n\n36) Laurie_Menke: Build Y3 Kif\n\tJesse: We're both on the edge.\n\n37) Jesse: Attack Y1 Laurie_menke\n\tJesse: But, I do think I've got you, barely.\n\tLaurie_Menke: Yep, you do. Thanks, Jesse, for another great game, and also for all your comments. I truly appreciate them. Hope to play you again soon!\n\n38) Laurie_Menke: Sacrifice Y2 Kif\nMove Y1 Creativity Laurie_menke\nMove Y3 Kif Jesse\n\n39) Jesse: Sacrifice R3 Laurie_menke\nAttack Y1 Laurie_menke\nAttack G1 Laurie_menke\nPass\n\tLaurie_Menke: Oh! You can only attack one ship at a time? I thought you would attack both at once and this would be the end. Well, maybe I still have a VERY SLIM chance, then!\n\n\tJesse: You can only attack one ship per attack action. Now I can sacrifice the r3 to attack both your ships with my y1. If you had moved a medium in instead of a small, I wouldn't be able to do that because a small can't take a medium. I'd have to take your pieces one at a time. However, that's still okay for me, because it woud take each of us two turns to capture the other's defenders, but I go first. Anyway, thanks for the game! You seem to be catching on fast.\n\nHomeworlds Online (SDG# 1268)\nStarted: 2005.11.6, Ended: 2005.11.10\nParticipants: Gort (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld G1 B2 Y3\n\tGort: homeworld B1 G3 ship\n\tGort: Oh, I'm new to this. This must be the sub-ether-wave band.\n\n2) Gort: Homeworld B2 G1 Y3\n\n3) TwoShort: Build Y1 Twoshort\n\n4) Gort: Build Y1 Gort\n\n5) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n6) Gort: Trade Y1 G1 Gort\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Gort: Build G2 Gort\n\n9) TwoShort: Trade Y3 G3 Twoshort\n\n10) Gort: Move G2 Gort Bluestar\n\n11) TwoShort: Build Y1 Twoshort\n\n12) Gort: Build Y2 Gort\n\n13) TwoShort: Discover Y1 Twoshort G3 Gorgon\n\n14) Gort: Sacrifice Y3 Gort\nMove G2 Bluestar Twoshort\nMove G1 Gort Bluestar\nMove G1 Bluestar Twoshort\nCatastrophe Twoshort G\n\n15) TwoShort: Build Y2 Gorgon\n\n16) Gort: Trade Y2 R2 Gort\n\n17) TwoShort: Build Y2 Gorgon\n\n18) Gort: Build R1 Gort\n\n19) TwoShort: Discover Y1 Gorgon Y2 Denial\n\n20) Gort: Build R1 Gort\n\n21) TwoShort: Build Y3 Gorgon\n\n22) Gort: Trade R1 G1 Gort\n\n23) TwoShort: Move Y3 Gorgon Gort\n\n24) Gort: Build G1 Gort\n\n25) TwoShort: Build Y3 Gort\n\n26) Gort: Trade R2 B2 Gort\n\n27) TwoShort: Build Y3 Gort\n\n28) Gort: Build R1 Gort\n\n29) TwoShort: Trade Y3 B3 Gort\n\n\tSYSTEM: Gort resigns.\n\nHomeworlds Online (SDG# 1280)\nStarted: 2005.11.7, Ended: 2005.11.12\nParticipants: ts52 (S), cobalt (N)\nWinner: ts52\n\n1) cobalt: Homeworld Y1 B2 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) cobalt: Build G1 Cobalt\n\n4) ts52: Build G1 Ts52\n\n5) cobalt: Trade G1 Y1 Cobalt\n\n6) ts52: Build G1 Ts52\n\n7) cobalt: Build Y2 Cobalt\n\n8) ts52: Discover G1 Ts52 B2 Neptune\n\n9) cobalt: Trade Y2 B2 Cobalt\n\n10) ts52: Trade G3 Y3 Ts52\n\n11) cobalt: Build Y2 Cobalt\n\n12) ts52: Build Y2 Ts52\n\n13) cobalt: Discover Y1 Cobalt G3 Winston\n\n14) ts52: Move Y2 Ts52 Neptune\n\n15) cobalt: Build G1 Cobalt\n\n16) ts52: Build G2 Ts52\n\n17) cobalt: Sacrifice Y2 Cobalt\nMove Y1 Winston Neptune\nMove Y1 Neptune Ts52\n\n18) ts52: Trade Y3 R3 Ts52\n\n19) cobalt: Sacrifice G3 Cobalt\nBuild Y2 Ts52\nBuild Y2 Ts52\nBuild G2 Cobalt\n\n20) ts52: Sacrifice G2 Ts52\nBuild Y3 Neptune\nBuild Y3 Neptune\nCatastrophe Ts52 Yellow\n\n21) cobalt: Trade G2 Y2 Cobalt\n\n22) ts52: Sacrifice Y2 Neptune\nMove R3 Ts52 Cobalt\nMove Y3 Neptune Ts52\n\n23) cobalt: Build G2 Cobalt\n\n24) ts52: Attack Y2 Cobalt\n\n\tSYSTEM: cobalt resigns.\n\nHomeworlds Online (SDG# 1282)\nStarted: 2005.11.7, Ended: 2006.2.21\nParticipants: andylooney (S), MonkeyJamboree (N)\nWinner: andylooney\n\n1) MonkeyJamboree: Homeworld G3 B2 Y3\n\tMonkeyJamboree: lets try again, shall we? :)\n\n2) andylooney: Homeworld G1 B2 Y3\n\n3) MonkeyJamboree: Build Y1 Monkeyjamboree (s)\n\n4) andylooney: Build Y1 Andylooney\n\n5) MonkeyJamboree: Discover Y1 Monkeyjamboree R1 Garflax\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) MonkeyJamboree: Build Y1 Monkeyjamboree\n\n8) andylooney: Discover G1 Andylooney Y3 Clampett\n\n9) MonkeyJamboree: Trade Y1 G1 Monkeyjamboree\n\n10) andylooney: Build G2 Clampett\n\n11) MonkeyJamboree: Move G1 Monkeyjamboree Garflax\n\tMonkeyJamboree: You don't seem to be conversing much... everything okay?\n\n12) andylooney: Discover G1 Clampett B1 Bomber\n\tandylooney: everything's great, I'm just not much of one for chatting here. I'm in so many games at once I don't usually take time for idle chatter.\n\n13) MonkeyJamboree: Discover G1 Garflax G3 Zeepmo\n\n14) andylooney: Build G2 Bomber\n\n15) MonkeyJamboree: Build G2 Zeepmo\n\n16) andylooney: Build G3 Clampett\n\n\tandylooney: So... it's been over a month since you took a turn. Are you planning to finish this game?\n\nHomeworlds Online (SDG# 1285)\nStarted: 2005.11.7, Ended: 2005.12.16\nParticipants: MonkeyJamboree (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) MonkeyJamboree: Homeworld G2 B1 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) MonkeyJamboree: Build Y1 Monkeyjamboree\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MonkeyJamboree: Trade Y1 G1 Monkeyjamboree\n\n7) TwoShort: Build G1 Twoshort\n\n8) MonkeyJamboree: Build G1 Monkeyjamboree\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\tTwoShort: discover g1 twoshort y3 Yolonda\n\n10) MonkeyJamboree: Trade G1 Y1 Monkeyjamboree\n\n11) TwoShort: Build G1 Twoshort\n\tMonkeyJamboree: CRAP!! meant to trade that for another color... dumb typos\n\n12) MonkeyJamboree: Trade Y1 R1 Monkeyjamboree\n\n13) TwoShort: Trade Y1 R1 Twoshort\n\n14) MonkeyJamboree: Build R1 Monkeyjamboree\n\n15) TwoShort: Build G2 Yolonda\n\n16) MonkeyJamboree: Build G2 Monkeyjamboree\n\tMonkeyJamboree: sorry for taking so long, havent had access to the site\n\n17) TwoShort: Move G1 Yolonda Monkeyjamboree\n\n\tTwoShort: no problem\r\n\n\tSYSTEM: MonkeyJamboree resigns.\n\nHomeworlds Online (SDG# 1292)\nStarted: 2005.11.8, Ended: 2005.11.15\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld Y1 B3 G3\n\n3) jeep: Build G1 Jeep\n\n4) TwoShort: Build G1 Twoshort\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) TwoShort: Build G1 Twoshort\n\n7) jeep: Build Y2 Jeep\n\n8) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n9) jeep: Discover Y2 Jeep B3 Moon\n\n10) TwoShort: Build G1 Bluestar\n\n11) jeep: Sacrifice G3 Jeep\nBuild Y2 Moon\nBuild Y2 Moon\nBuild Y3 Jeep\n\n12) TwoShort: Trade G3 Y3 Twoshort\n\n13) jeep: Trade Y2 G2 Moon\n\n14) TwoShort: Build G2 Twoshort\n\n15) jeep: Build Y2 Moon\n\n16) TwoShort: Move Y3 Twoshort Bluestar\n\n17) jeep: Trade Y3 G3 Jeep\n\n18) TwoShort: Build Y3 Bluestar\n\n19) jeep: Sacrifice Y2 Moon\nMove Y2 Moon Bluestar\nMove Y2 Moon Bluestar\nCatastrophe Bluestar Yellow\n\n20) TwoShort: Trade G2 Y2 Twoshort\n\n21) jeep: Trade G2 R2 Moon\n\n22) TwoShort: Trade G1 R1 Bluestar\n\n23) jeep: Build Y2 Jeep\n\n24) TwoShort: Build G1 Twoshort\n\n25) jeep: Discover Y2 Jeep Y3 Mover\n\n26) TwoShort: Build Y2 Twoshort\n\n27) jeep: Sacrifice Y2 Mover\nDiscover R2 Moon B2 Temp\nMove R2 Temp Twoshort\n\n28) TwoShort: Sacrifice R1 Bluestar\nAttack R2N Twoshort\n\n29) jeep: Build Y2 Jeep\n\tjeep: Teach me to make moves while in a meeting... I have no idea why I thought that was a good idea.\n\n30) TwoShort: Move Y2 Twoshort Bluestar\n\n31) jeep: Discover Y2 Jeep B3 Moon\n\tTwoShort: It did make me wonder...\n\n32) TwoShort: Build Y3 Bluestar\n\n33) jeep: Trade Y1 R1 Jeep\n\n34) TwoShort: Trade Y3 G3 Bluestar\n\tjeep: I went from a strong game to a weak one in a turn. *sigh*\n\n35) jeep: Build G2 Jeep\n\n36) TwoShort: Move G3 Bluestar Moon\n\n37) jeep: Discover Y2 Moon B2 Man\n\n38) TwoShort: Build G2 Moon\n\n39) jeep: Move G2 Jeep Moon\n\n40) TwoShort: Sacrifice G3 Moon\nBuild G2 Moon\nBuild G3 Bluestar\nBuild R1 Twoshort\n\n41) jeep: Sacrifice G2 Moon\nBuild Y1 Man\nBuild R1 Jeep\n\n42) TwoShort: Sacrifice Y2 Twoshort\nMove G2 Moon Jeep\nMove G2 Moon Jeep\n\n43) jeep: Trade G3 Y3 Jeep\n\n44) TwoShort: Sacrifice R2 Twoshort\nAttack R1N Jeep\nAttack R1N Jeep\n\n45) jeep: Move Y2 Man Twoshort\n\n46) TwoShort: Trade G3 B3 Bluestar\n\n\tjeep: Good game. I needed to trade for a R2. I even had it written down, but thought I saw something better.\n\tSYSTEM: jeep resigns.\n\nHomeworlds Online (SDG# 1315)\nStarted: 2005.11.9, Ended: 2005.12.24\nParticipants: andylooney (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 Y2 G3\n\tTwoShort: Ready for a rematch?\n\n2) andylooney: Homeworld B3 G2 Y3\n\tandylooney: Yes. I need revenge!\n\n3) TwoShort: Build G1 Twoshort\n\n4) andylooney: Build Y1 Andylooney\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) andylooney: Trade Y1 G1 Andylooney\n\tTwoShort: My typical downfall is in being too agressive and over-extending myeelf. So frankly, I credit my win with feeling intimidated by playing you, and thus being more cautious. Now that I know I can beat you, I expect you'll crush me...\n\tandylooney: well, we shall see... having lost to you, I'm all timid about playing you now! Hey, you should try to get Keith to learn this game...\n\n7) TwoShort: Build G1 Twoshort\n\n8) andylooney: Build Y1 Andylooney\n\tTwoShort: Keith claims to prefer games that aren't pure strategy. (He fears me)\n\n9) TwoShort: Discover G1 Twoshort Y3 Jed\n\n10) andylooney: Discover G1 Andylooney Y1 Different\n\n11) TwoShort: Build G1 Twoshort\n\n12) andylooney: Build G2 Different\n\n13) TwoShort: Build G2 Jed\n\n14) andylooney: Discover G1 Different Y3 Clampett\n\n15) TwoShort: Discover G2 Jed B1 Bubbles\n\n16) andylooney: Build G3 Clampett\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Twoshort\nBuild G3 Bubbles\n\n18) andylooney: Trade Y1 R1 Andylooney\n\n19) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Twoshort Clampett\nMove G2 Bubbles Clampett\nCatastrophe Clampett Green\n\n20) andylooney: Build G1 Different\n\tandylooney: Dammit!\n\n21) TwoShort: Build G1 Bubbles\n\n22) andylooney: Discover G2 Different G3 Jolly\n\n23) TwoShort: Trade G1 Y1 Bubbles\n\n24) andylooney: Move R1 Andylooney Different\n\n25) TwoShort: Sacrifice G3 Bubbles\nBuild Y2 Bubbles\nBuild Y2 Bubbles\nBuild Y3 Twoshort\n\n26) andylooney: Trade Y3 R3 Andylooney\n\n27) TwoShort: Trade Y1 R1 Twoshort\n\n28) andylooney: Sacrifice G2 Jolly\nBuild R1 Andylooney\nBuild R2 Different\n\n29) TwoShort: Build R2 Twoshort\n\n30) andylooney: Move R2 Different Jed\n\n31) TwoShort: Sacrifice Y2 Bubbles\nMove G3 Twoshort Jed\nDiscover Y1 Bubbles Y3 Yolonda\n\n32) andylooney: Discover R2 Jed G1 Ginger\n\n33) TwoShort: Move R2 Twoshort Yolonda\n\n34) andylooney: Build G2 Different\n\n35) TwoShort: Sacrifice G3 Jed\nBuild G2 Jed\nBuild Y1 Bubbles\nBuild Y2 Bubbles\n\n36) andylooney: Discover G1 Different B3 Ibm\n\n37) TwoShort: Move G1 Jed Twoshort\n\n38) andylooney: Build G3 Different\n\n39) TwoShort: Sacrifice G2 Jed\nBuild Y3 Yolonda\nBuild R2 Yolonda\n\n40) andylooney: Sacrifice G2 Different\nBuild R3 Different\nBuild R3 Ginger\n\n41) TwoShort: Move R2 Yolonda Bubbles\n\n42) andylooney: Build G2 Ibm\n\tTwoShort: I've been going through warning my opponents that I'll be on the road the next two weeks and may not be able to play. In your case though, perhaps I'll challenge you to a game in person next Thursday?\n\tandylooney: Oh, that'd be awesome!!!\n\n43) TwoShort: Sacrifice Y3 Yolonda\nMove R2 Yolonda Different\nMove R2 Bubbles Andylooney\nMove R2 Different Andylooney\nCatastrophe Andylooney Red\n\n\nHomeworlds Online (SDG# 1339)\nStarted: 2005.11.9, Ended: 2005.11.11\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld B1 Y2 G3\n\n2) jeep: Homeworld Y1 B2 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Discover G1 Sketchwick G3 Lime\n\n6) jeep: Move G1 Jeep Lime\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Build G2 Jeep\n\n9) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Lime\nBuild G2 Sketchwick\nBuild G3 Sketchwick\nCatastrophe Lime Green\n\n10) jeep: Build G1 Jeep\n\n11) sketchwick: Discover G1 Sketchwick Y3 Lemon\n\n12) jeep: Move G2 Jeep Lemon\n\n13) sketchwick: Move G1 Lemon Jeep\n\n14) jeep: Trade G3 R3 Jeep\n\n15) sketchwick: Build G1 Jeep\n\n16) jeep: Move G1 Jeep Lemon\n\n17) sketchwick: Trade G2 Y2 Sketchwick\n\n18) jeep: Build G2 Lemon\n\n19) sketchwick: Sacrifice Y2 Sketchwick\nMove G1 Jeep Lemon\nDiscover G1 Jeep B3 Berry\n\n20) jeep: Trade R3 G3 Jeep\nCatastrophe Lemon Green\n\tjeep: We'll assume you DID call catastrophe... ;)\n\n21) sketchwick: Build G1 Sketchwick\n\n22) jeep: Build G1 Jeep\n\n23) sketchwick: Build G2 Berry\n\n24) jeep: Move G1 Jeep Berry\n\n25) sketchwick: Trade G2 R2 Berry\n\n26) jeep: Build G2 Jeep\n\n27) sketchwick: Trade G1 Y1 Berry\n\n28) jeep: Discover G2 Jeep Y3 Barn\n\n29) sketchwick: Attack G1 Berry\n\n30) jeep: Build G1 Jeep\n\n31) sketchwick: Build G2 Berry\n\n32) jeep: Trade G3 R3 Jeep\n\n33) sketchwick: Sacrifice G2 Berry\nBuild Y1 Berry\nBuild Y2 Berry\n\n34) jeep: Build G2 Barn\n\n35) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Berry\nBuild G3 Sketchwick\nBuild R1 Berry\n\n36) jeep: Move G2 Barn Sketchwick\n\n37) sketchwick: Trade G1 R1 Sketchwick\n\n38) jeep: Sacrifice G2 Barn\nBuild G1 Sketchwick\nBuild G2 Sketchwick\nCatastrophe Sketchwick Green\n\n39) sketchwick: Trade R1 G1 Sketchwick\n\n40) jeep: Build R1 Jeep\n\n41) sketchwick: Sacrifice Y2 Berry\nMove R2 Berry Jeep\nMove R1 Berry Jeep\nCatastrophe Jeep Red\n\n42) jeep: Build G2 Jeep\n\tjeep: I suck. I was watching for that forever... until just then.\n\n43) sketchwick: Build Y2 Berry\n\n44) jeep: Trade G2 R2 Jeep\n\n45) sketchwick: Trade G1 R1 Berry\n\n46) jeep: Build R1 Jeep\n\n47) sketchwick: Discover Y2 Berry Y2 Crunch\n\n48) jeep: Discover R1 Jeep Y3 Smash\n\n49) sketchwick: Build Y3 Berry\n\n\tSYSTEM: jeep resigns.\n\nHomeworlds Online (SDG# 1327)\nStarted: 2005.11.9, Ended: 2005.11.28\nParticipants: TwoShort (S), cobalt (N)\nWinner: TwoShort\n\n1) cobalt: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld B1 G3 Y3\n\n3) cobalt: Build G1 Cobalt\n\n4) TwoShort: Build Y1 Twoshort\n\n5) cobalt: Trade G1 Y1 Cobalt\n\n6) TwoShort: Build Y2 Twoshort\n\n7) cobalt: Build Y2 Cobalt\n\n8) TwoShort: Trade Y2 G2 Twoshort\n\n9) cobalt: Trade Y1 R1 Cobalt\n\n10) TwoShort: Discover G2 Twoshort B2 Bluestar\n\n11) cobalt: Build G1 Cobalt\n\n12) TwoShort: Build G1 Bluestar\n\n13) cobalt: Trade G1 B1 Cobalt\n\n14) TwoShort: Trade G2 Y2 Bluestar\n\n15) cobalt: Build G1 Cobalt\n\n16) TwoShort: Build G1 Bluestar\n\n17) cobalt: Discover G1 Cobalt Y3 Eta\n\n18) TwoShort: Discover G1 Bluestar Y3 Yolonda\n\n19) cobalt: Build G2 Cobalt\n\n20) TwoShort: Build G2 Yolonda\n\n21) cobalt: Trade G2 R2 Cobalt\n\n22) TwoShort: Build G2 Bluestar\n\n23) cobalt: Move B1 Cobalt Eta\n\n24) TwoShort: Trade G2 R2 Bluestar\n\n25) cobalt: Build G2 Eta\n\n26) TwoShort: Sacrifice G2 Yolonda\nBuild Y1 Bluestar\nBuild Y2 Bluestar\n\n27) cobalt: Move R1 Cobalt Yolonda\n\n28) TwoShort: Build G2 Yolonda\n\n\tSYSTEM: cobalt resigns.\n\nHomeworlds Online (SDG# 1367)\nStarted: 2005.11.11, Ended: 2005.11.14\nParticipants: sketchwick (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) sketchwick: Homeworld Y3 B2 G3\n\n3) jeep: Build G1 Jeep\n\n4) sketchwick: Build G1 Sketchwick\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) sketchwick: Trade G3 Y3 Sketchwick\n\n7) jeep: Build G1 Jeep\n\n8) sketchwick: Build Y1 Sketchwick\n\n9) jeep: Discover Y1 Jeep B3 Moon\n\n10) sketchwick: Trade Y1 R1 Sketchwick\n\n11) jeep: Trade G1 R1 Jeep\n\n12) sketchwick: Build G1 Sketchwick\n\n13) jeep: Build G1 Jeep\n\n14) sketchwick: Build G2 Sketchwick\n\n15) jeep: Move G1 Jeep Moon\n\n16) sketchwick: Discover G1 Sketchwick B1 Over\n\n17) jeep: Build G2 Moon\n\n18) sketchwick: Build G2 Sketchwick\n\n19) jeep: Build G3 Jeep\n\n20) sketchwick: Build G3 Over\n\n21) jeep: Move G1 Moon Over\n\n22) sketchwick: Discover G2 Sketchwick Y1 Myhammy\n\n23) jeep: Sacrifice G2 Moon\nBuild Y2 Moon\nBuild G2 Over\nCatastrophe Over Green\n\n24) sketchwick: Discover G2 Myhammy Y3 Shine\n\n25) jeep: Trade G3 R3 Jeep\n\n26) sketchwick: Discover G2 Sketchwick B1 Run\n\n27) jeep: Move R3 Jeep Shine\n\n28) sketchwick: Sacrifice G2 Shine\nBuild R1 Sketchwick\nBuild R2 Sketchwick\n\n29) jeep: Sacrifice G3 Jeep\nBuild R2 Shine\nBuild R2 Shine\nBuild R3 Jeep\n\n30) sketchwick: Trade G2 Y2 Run\n\n31) jeep: Sacrifice Y2 Moon\nMove R2 Shine Run\nMove R2 Run Sketchwick\nCatastrophe Sketchwick Red\n\n32) sketchwick: Build G1 Sketchwick\n\n33) jeep: Trade R3 G3 Jeep\n\n34) sketchwick: Trade G1 R1 Sketchwick\n\n35) jeep: Move R3 Shine Run\n\n36) sketchwick: Move Y2 Run Moon\n\n37) jeep: Move Y1 Moon Run\n\n38) sketchwick: Build G1 Sketchwick\n\n39) jeep: Build G1 Jeep\n\n40) sketchwick: Build G2 Sketchwick\n\n41) jeep: Trade R3 G3 Run\n\n42) sketchwick: Move G1 Sketchwick Run\n\n43) jeep: Sacrifice R1 Jeep\nAttack G1S Run\n\n44) sketchwick: Move R1 Sketchwick Run\n\n45) jeep: Move Y1 Run Sketchwick\n\n46) sketchwick: Sacrifice R1 Run\nAttack Y1 Sketchwick\n\n47) jeep: Trade G1 Y1 Run\n\tsketchwick: tempting to move y3-run instead\n\tjeep: ? I think I prefer if you do... doesn't that let me take over your only red AND your only large?\n\n48) sketchwick: Trade Y1 R1 Sketchwick\n\tsketchwick: yeah didn't see that :)\n\n49) jeep: Build Y1 Run\n\n50) sketchwick: Discover G2 Sketchwick R1 Home\n\n51) jeep: Trade G1 R1 Jeep\n\n52) sketchwick: Build R2 Sketchwick\n\n53) jeep: Move Y1 Run Sketchwick\n\n54) sketchwick: Move Y3 Sketchwick Home\n\n55) jeep: Sacrifice G3 Run\nBuild Y2 Sketchwick\nBuild R2 Jeep\nBuild R3 Shine\n\tsketchwick: this is all very bad\n\n56) sketchwick: Attack Y2 Sketchwick\n\n57) jeep: Sacrifice R2 Shine\nAttack R1S Sketchwick\nAttack G1S Sketchwick\n\n58) sketchwick: Attack R1 Sketchwick\n\n59) jeep: Sacrifice G1 Sketchwick\nBuild Y2 Run\n\n60) sketchwick: Trade Y2 G2 Sketchwick\n\n61) jeep: Sacrifice Y2 Run\nMove R3 Shine Run\nMove R3 Run Sketchwick\n\n62) sketchwick: Build R2 Sketchwick\nCatastrophe Sketchwick Red\n\n63) jeep: Sacrifice G3 Jeep\nBuild Y2 Run\nBuild Y2 Run\nBuild Y3 Sketchwick\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 1345)\nStarted: 2005.11.11, Ended: 2005.12.22\nParticipants: Gort (S), Lexicon (W), Kermit (N), Evilaxe (E)\nWinner: Kermit\n\n1) Kermit: Homeworld B1 G2 Y3\n\n2) Evilaxe: Homeworld Y1 B3 G3\n\n3) Gort: Homeworld B2 Y3 G3\n\n4) Lexicon: Homeworld G3 B2 Y3\n\n5) Kermit: Build Y1 Kermit\n\n6) Evilaxe: Build G1 Evilaxe\n\n7) Gort: Build G1 Gort\n\n8) Lexicon: Build Y1 Lexicon\n\n9) Kermit: Discover Y1 Kermit B3 Binker\n\n10) Evilaxe: Build G1 Evilaxe\n\n11) Gort: Build G1 Gort\n\n12) Lexicon: Build Y1 Lexicon\n\n13) Kermit: Trade Y1 G1 Binker\n\n14) Evilaxe: Discover G1 Evilaxe B2 Xanadu\n\n15) Gort: Discover G1 Gort Y1 Barata\n\n16) Lexicon: Trade Y1 R1 Lexicon\n\n17) Kermit: Build G2 Binker\n\n18) Evilaxe: Build G2 Xanadu\n\n19) Gort: Sacrifice G3 Gort\nBuild G2 Barata\nBuild G2 Barata\nBuild G3 Gort\n\n20) Lexicon: Build R1 Lexicon\n\n21) Kermit: Trade G2 Y2 Binker\n\n22) Evilaxe: Trade G2 Y2 Xanadu\n\n23) Gort: Move G1 Barata Xanadu\n\n24) Kermit: Build Y1 Kermit\n\n25) Gort: Move G2 Barata Binker\n\tSYSTEM: Lexicon resigns.\n\tSYSTEM: Evilaxe resigns.\n\tSYSTEM: Evilaxe resigns.\n\tSYSTEM: Evilaxe resigns.\n\n26) Kermit: Trade Y1 R1 Kermit\n\tKermit: did evilaxe resign as well?\r\n\n\n27) Gort: Sacrifice G3 Gort\nBuild G2 Barata\nBuild G2 Binker\nBuild G3 Gort\n\n28) Kermit: Sacrifice R1 Kermit\nAttack G2S Binker\n\tGort: I think evilaxe resigned from superdupergames; I didn't see their name on the current roster.\n\n29) Gort: Trade G2 Y2 Binker\n\n30) Kermit: Move G1 Binker Xanadu\n\tKermit: ahh, well then be prepared to win as i am horrible at the 2 player version of this game\r\n\n\n31) Gort: Sacrifice G3 Gort\nBuild G2 Xanadu\nBuild G3 Barata\nBuild G3 Gort\nCatastrophe Xanadu G\n\tGort: Don't give up too soon. This is my second game online.\n\tGort: TwoShort stomped me into stardust during my first game.\n\tLexicon: Whoa! I resigned? How weird. I was wondering why this game hadn't come up in a few days.\n\tLexicon: Perhaps a faulty keypress on my part.\n\tGort: Ah, mystery solved. I thought you were doing quite well, Lex.\n\n32) Kermit: Move G2 Binker Barata\nCatastrophe Barata Green\n\n33) Gort: Move Y2 Binker Kermit\n\n34) Kermit: Trade Y3 R3 Kermit\n\tGort: I was hoping you would be distracted by my catastrophe lure-- I hope this works... I think it's checkmate, but I might be missing something.\n\n35) Gort: Sacrifice Y2 Kermit\nDiscover G3 Gort Y1 Xfer\nMove G3 Xfer Lexicon\n\n36) Kermit: Build R1 Kermit\n\tGort: oops forgot that part. bad robot. no biscuit.\n\n37) Gort: Trade G3 R3 Lexicon\n\n38) Kermit: Discover Y2 Binker G1 Hammer\n\n39) Gort: Attack Y3W Lexicon\n\n40) Kermit: Move Y2 Hammer Gort\n\tKermit: I will be going camping over the holiday. I will leave sometime tomorrow morning and return sometime sunday.\n\tGort: Oh, good. I'm in a bit of a quandary.\n\tGort: I just discovered an unhappy bug in this program. The ships that appear in Lexicon system are not really there. \n\n41) Gort: Sacrifice Y3 Lexicon\nDiscover R3 Lexicon B1 Booberry\nMove G1 Gort Booberry\nMove R3 Booberry Gort\n\tGort: I was wrong. No bug; operator error. I forgot to include the ship owner (n) in my orders. Still learning...\n\n42) Kermit: Move Y2 Gort Booberry\n\n43) Gort: Sacrifice G1 Booberry\nBuild R1 Gort\n\n44) Kermit: Move Y2 Booberry Xanadu\n\n45) Gort: Discover R1 Gort Y1 Rutroh\n\n46) Kermit: Sacrifice R1 Kermit\nAttack Y2E Xanadu\n\n47) Gort: Move R1 Rutroh Lexicon\n\n48) Kermit: Trade Y2 G2 Xanadu\n\n49) Gort: Attack R1W Lexicon\n\n50) Kermit: Build G1 Xanadu\n\n51) Gort: Trade R1 G1 Lexicon\n\n52) Kermit: Trade G1 R1 Xanadu\n\n53) Gort: Attack Y1W Lexicon\n\n54) Kermit: Build R1 Kermit\n\n55) Gort: Attack R1W Lexicon\n\n56) Kermit: Discover R1 Xanadu G1 Oblivia\n\n57) Gort: Trade R3 G3 Gort\n\n58) Kermit: Build R1 Oblivia\n\n59) Gort: Build G1 Gort\n\n60) Kermit: Sacrifice Y2 Xanadu\nMove R1 Oblivia Lexicon\nMove R1 Oblivia Lexicon\nCatastrophe Lexicon R\n\n61) Gort: Discover G1 Lexicon B1 Ouch\n\n62) Kermit: Build G1 Xanadu\n\n63) Gort: Build G1 Ouch\n\n64) Kermit: Trade G2 Y2 Xanadu\n\n\n65) Gort: Move Y1 Lexicon Ouch\n\n66) Kermit: Move Y2 Xanadu Ouch\n\n67) Gort: Build Y1 Ouch\n\n68) Kermit: Sacrifice R1 Kermit\nAttack G1S Ouch\n\n69) Gort: Build Y1 Ouch\nCatastrophe Ouch Y\n\n70) Kermit: Build G2 Ouch\n\n71) Gort: Trade G1 Y1 Ouch\n\n72) Kermit: Trade G2 Y2 Ouch\n\n73) Gort: Discover Y1 Ouch B3 Horizon\n\n74) Kermit: Build G1 Ouch\n\n75) Gort: Trade G3 R3 Gort\n\n76) Kermit: Build G2 Xanadu\n\n77) Gort: Move G1 Gort Ouch\n\n78) Kermit: Trade G1 R1 Ouch\n\n79) Gort: Sacrifice Y1 Horizon\nDiscover G1 Ouch Y3 Doom\n\tKermit: trade g1 r1 ouch\r\n\n\n80) Kermit: Move R1 Ouch Doom\n\tKermit: doh, well at least now I only have to copy to the other form. \n\n81) Gort: Sacrifice G1 Doom\nBuild R1 Gort\n\n82) Kermit: Move R1 Doom Ouch\n\n83) Gort: Trade R1 G1 Gort\n\n84) Kermit: Build R1 Ouch\n\n\tGort: I am vanquished. Thanks for the game!\n\tSYSTEM: Gort resigns.\n\nHomeworlds Online (SDG# 1369)\nStarted: 2005.11.13, Ended: 2005.11.28\nParticipants: benedict (S), andylooney (N)\nWinner: benedict\n\n1) andylooney: Homeworld B1 G2 Y3\n\tbenedict: hi, I'm hoping to learn a thing or two after my last game which was a disaster!\n\n2) benedict: Homeworld B3 G1 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) benedict: Build Y1 Benedict\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) benedict: Trade Y1 G1 Benedict\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) benedict: Build Y1 Benedict\n\n9) andylooney: Build G2 Clampett\n\n10) benedict: Trade Y1 R1 Benedict\n\n11) andylooney: Build Y1 Andylooney\n\n12) benedict: Discover G1 Benedict Y2 Venetia\n\n13) andylooney: Trade Y1 R1 Andylooney\n\n14) benedict: Build Y1 Benedict\n\n15) andylooney: Discover G1 Clampett Y2 Plugh\n\n16) benedict: Build R1 Benedict\n\n17) andylooney: Build R2 Andylooney\n\n18) benedict: Build R2 Benedict\n\n19) andylooney: Discover R2 Andylooney G3 Garden\n\n20) benedict: Move R2 Benedict Venetia\n\n21) andylooney: Build Y1 Andylooney\n\n22) benedict: Move R1 Benedict Plugh\n\n23) andylooney: Sacrifice R1 Andylooney\nAttack R1S Plugh\n\n24) benedict: Move Y1 Benedict Venetia\n\n25) andylooney: Move Y1 Andylooney Garden\n\n26) benedict: Discover Y1 Venetia G3 Ophelia\n\n27) andylooney: Build Y1 Andylooney\n\n28) benedict: Build Y2 Ophelia\n\n29) andylooney: Sacrifice G2 Clampett\nBuild Y3 Garden\nBuild G2 Plugh\n\n30) benedict: Sacrifice Y3 Benedict\nMove Y1 Ophelia Andylooney\nMove Y2 Ophelia Andylooney\nMove G1 Venetia Benedict\nCatastrophe Andylooney Y\n\tbenedict: hopefully this will work... I'm not very expereinced with this game... and sometimes my orders have odd effects...here goes nothing...\n\n\nHomeworlds Online (SDG# 1410)\nStarted: 2005.11.13, Ended: 2005.11.23\nParticipants: Laurie_Menke (S), JunkMan (N), Aaron (E)\nWinner: JunkMan\n\n1) JunkMan: Homeworld B1 G2 Y3\n\n2) Aaron: Homeworld B2 Y3 G3\n\n3) Laurie_Menke: Homeworld B1 Y3 G3\n\n4) JunkMan: Build Y1 Junkman\n\n5) Aaron: Build G1 Aaron\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) JunkMan: Trade Y1 R1 Junkman\n\n8) Aaron: Trade G1 R1 Aaron\n\n9) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Come on, guys...why you want to hate? ;o)\n\n10) JunkMan: Build Y1 Junkman\n\n11) Aaron: Build R1 Aaron\n\tAaron: *chuckles*\n\n12) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n13) JunkMan: Trade Y1 G1 Junkman\n\n14) Aaron: Trade R1 Y1 Aaron\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) JunkMan: Discover G1 Junkman Y3 Helloworld\n\n17) Aaron: Build R1 Aaron\n\n18) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n19) JunkMan: Build Y1 Junkman\n\n20) Aaron: Discover R1 Aaron G1 Emeralds\n\n21) Laurie_Menke: Build G1 Laurie_menke\n\n22) JunkMan: Discover G1 Helloworld Y2 Palindrome\n\n23) Aaron: Build G2 Aaron\n\n24) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n25) JunkMan: Build G2 Palindrome\n\n26) Aaron: Move G2 Aaron Emeralds\n\n27) Laurie_Menke: Move G1 Laurie_menke Palindrome\n\n28) JunkMan: Discover G2 Palindrome Y1 Transport\n\n29) Aaron: Move Y1 Aaron Emeralds\n\tAaron: Hrm, not thinking too clearly...\n\n30) Laurie_Menke: Discover G1 Palindrome Y3 Oops\n\tLaurie_Menke: You're right...my move was not a safe or smart one last time. Luckily, JunkMan didn't attack. :o) I'll correct my mistake now...\n\n31) JunkMan: Move G1 Palindrome Transport\n\n32) Aaron: Build Y2 Emeralds\n\tAaron: No, I meant me =D\n\n33) Laurie_Menke: Build G2 Oops\n\tLaurie_Menke: Oh...LOL!\n\n34) JunkMan: Move G1 Transport Aaron\n\n35) Aaron: Attack G1N Aaron\n\n36) Laurie_Menke: Discover B1 Laurie_menke Y2 Luella\n\n37) JunkMan: Build G3 Transport\n\n38) Aaron: Move G1 Aaron Transport\n\tAaron: very interesting\n\n39) Laurie_Menke: Move G1 Oops Transport\nCatastrophe Transport G\n\n40) JunkMan: Trade Y1 G1 Junkman\n\n41) Aaron: Move G2 Emeralds Luella\n\n42) Laurie_Menke: Build R1 Laurie_menke\n\n43) JunkMan: Discover G1 Junkman B3 Parrot\n\n44) Aaron: Build R2 Aaron\n\n45) Laurie_Menke: Build R2 Laurie_menke\n\n46) JunkMan: Build G1 Parrot\n\n47) Aaron: Sacrifice Y2 Emeralds\nMove R1 Emeralds Luella\nMove R1 Luella Laurie_menke\nCatastrophe Laurie_menke Red\n\n48) Laurie_Menke: Build G2 Laurie_menke\n\tLaurie_Menke: Argh! As soon as I did that I realized my mistake, but was hoping you wouldn't see it. :o(\n\n49) JunkMan: Trade G1 Y1 Parrot\n\n50) Aaron: Move G2 Luella Laurie_menke\n\n51) Laurie_Menke: Trade G2 R2 Laurie_menke\n\n52) JunkMan: Discover G1 Parrot Y1 Azul\n\tLaurie_Menke: Actually, that was another stupid move, darn it! Why is it that I always see that AFTER I've made the move?\n\n53) Aaron: Sacrifice R2 Aaron\nAttack R2S Laurie_menke\nAttack G1S Laurie_menke\n\tAaron: You're not alone. I do it *constantly*. Actually, recognizing a mistake is the first step in not repeating it, so...\n\n54) Laurie_Menke: Move B1 Luella Oops\n\tLaurie_Menke: Hey, JunkMan...how come your Azul system doesn't have any azul (blue) in it? ;o)\n\tLaurie_Menke: Well, this doesn't help at all, but it seems to be my only move, so I'll take it and thank you both for a great game. Have fun duking it out between the two of you! ;o)\n\n55) JunkMan: Build G1 Azul\n\n56) Aaron: Attack Y1S Laurie_menke\n\n57) JunkMan: Build G2 Azul\n\n58) Aaron: Build G3 Laurie_menke\n\n59) JunkMan: Move G1 Azul Aaron\n\n60) Aaron: Attack G1N Aaron\n\n61) JunkMan: Move G1 Azul Aaron\n\n62) Aaron: Attack G1N Aaron\n\n63) JunkMan: Build G3 Azul\n\tAaron: I am not going to let you build there =)\n\n64) Aaron: Move G1 Aaron Azul\n\n65) JunkMan: Move G2 Azul Parrot\n\n66) Aaron: Trade G3 R3 Laurie_menke\n\n67) JunkMan: Build R1 Junkman\n\n68) Aaron: Discover R3 Laurie_menke Y2 Bananas\n\n69) JunkMan: Build G3 Parrot\n\n70) Aaron: Build G3 Laurie_menke\n\n71) JunkMan: Build Y2 Parrot\n\n72) Aaron: Move G2 Laurie_menke Bananas\n\n73) JunkMan: Move R1 Junkman Parrot\n\n74) Aaron: Build Y2 Emeralds\n\n75) JunkMan: Build R1 Parrot\n\n76) Aaron: Sacrifice Y2 Emeralds\nMove G1 Azul Parrot\nMove G2 Bananas Parrot\nCatastrophe Parrot Green\n\n77) JunkMan: Build G1 Azul\n\n78) Aaron: Move R3 Bananas Parrot\n\n79) JunkMan: Sacrifice G1 Azul\nBuild R2 Parrot\nCatastrophe Parrot Red\n\n80) Aaron: Discover G3 Laurie_menke Y2 Bananas\n\n81) JunkMan: Trade Y1 B1 Parrot\n\n82) Aaron: Move G3 Bananas Parrot\n\n83) JunkMan: Move B1 Parrot Azul\n\n84) Aaron: Trade G3 R3 Parrot\n\n85) JunkMan: Move Y2 Parrot Junkman\n\n86) Aaron: Sacrifice Y1 Emeralds\nDiscover R3 Parrot Y1 Bananas\n\n87) JunkMan: Build B2 Azul\n\n88) Aaron: Move R3 Bananas Oops\n\n89) JunkMan: Build B2 Azul\n\n90) Aaron: Attack G2S Oops\n\tAaron: Ahhh, I see now...but too late.\n\n91) JunkMan: Move B1 Azul Aaron\n\n92) Aaron: Attack B1N Aaron\n\n93) JunkMan: Move B2 Azul Aaron\n\n94) Aaron: Sacrifice B1 Aaron\nPass\n\n95) JunkMan: Sacrifice G3 Azul\nBuild B1 Aaron\nBuild B2 Aaron\nBuild Y1 Junkman\nCatastrophe Aaron Blue\n\n96) Aaron: Attack B1S Oops\n\n97) JunkMan: Trade B2 Y2 Azul\n\n\tSYSTEM: Aaron resigns.\n\nHomeworlds Online (SDG# 1421)\nStarted: 2005.11.14, Ended: 2005.11.15\nParticipants: jeep (S), sketchwick (N)\nWinner: jeep\n\n1) sketchwick: Homeworld Y1 B2 G3\n\n2) jeep: Homeworld Y2 B1 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Discover G1 Sketchwick Y3 Injface\n\n6) jeep: Discover G1 Jeep Y3 Insface\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Build G2 Jeep\n\n9) sketchwick: Build G2 Injface\n\n10) jeep: Move G1 Insface Sketchwick\n\n11) sketchwick: Trade G3 R3 Sketchwick\n\n12) jeep: Move G1 Sketchwick Injface\n\n13) sketchwick: Move R3 Sketchwick Injface\n\n14) jeep: Trade G2 R2 Jeep\n\n15) sketchwick: Attack G1 Injface\n\n16) jeep: Build G2 Jeep\n\n17) sketchwick: Move G2 Injface Jeep\n\n18) jeep: Trade G3 R3 Jeep\n\n19) sketchwick: Sacrifice G2 Jeep\nBuild G2 Sketchwick\nBuild G2 Sketchwick\n\n20) jeep: Build G3 Jeep\n\n21) sketchwick: Trade G2 B2 Sketchwick\n\n22) jeep: Discover G2 Jeep Y3 Insface\n\n23) sketchwick: Trade G1 R1 Sketchwick\n\n24) jeep: Build G1 Jeep\n\n25) sketchwick: Build R1 Injface\n\n26) jeep: Discover G1 Jeep B3 Moon\n\n27) sketchwick: Sacrifice G1 Injface\nBuild B1 Sketchwick\n\n28) jeep: Build G1 Jeep\n\n29) sketchwick: Move B2 Sketchwick Moon\n\n30) jeep: Move R3 Jeep Moon\n\n31) sketchwick: Move R3 Injface Sketchwick\n\n32) jeep: Attack B2N Moon\n\n33) sketchwick: Move B1 Sketchwick Moon\n\n34) jeep: Attack B1N Moon\n\n35) sketchwick: Trade R1 B1 Sketchwick\n\n36) jeep: Trade B2 Y2 Moon\n\n37) sketchwick: Discover G2 Sketchwick G3 Fuckme\n\n38) jeep: Sacrifice G3 Jeep\nBuild G2 Moon\nBuild G3 Insface\nBuild G3 Jeep\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 1415)\nStarted: 2005.11.14, Ended: 2005.11.18\nParticipants: Laurie_Menke (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B1 G2 Y3\n\tLaurie_Menke: Hi, Jesse....you still willing to play with me, now that an excellent tutor has given me a little bit of experience with the game? ;o)\n\tJesse: Absolutely!\n\n2) Laurie_Menke: Homeworld Y3 B2 G3\n\n3) Jesse: Build Y1 Jesse\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Jesse: Trade Y1 B1 Jesse\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) Jesse: Build Y1 Jesse\n\n8) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n9) Jesse: Build B2 Jesse\n\n10) Laurie_Menke: Build B2 Laurie_menke\n\n11) Jesse: Discover B2 Jesse G3 Gamera\n\n12) Laurie_Menke: Discover B2 Laurie_menke Y1 Transportation\n\n13) Jesse: Build B3 Jesse\n\n14) Laurie_Menke: Discover B2 Transportation Y3 Anne\n\n15) Jesse: Move B3 Jesse Anne\n\n16) Laurie_Menke: Build B3 Laurie_menke\n\n17) Jesse: Build B3 Gamera\n\n18) Laurie_Menke: Trade B3 R3 Laurie_menke\n\n19) Jesse: Trade Y1 R1 Jesse\n\n20) Laurie_Menke: Build B3 Laurie_menke\n\n21) Jesse: Build R1 Jesse\n\n22) Laurie_Menke: Discover B3 Laurie_menke Y1 Enterprise\n\n23) Jesse: Sacrifice R1 Jesse\nAttack B2 Anne\n\n24) Laurie_Menke: Move G1 Laurie_menke Enterprise\n\tLaurie_Menke: Grrr....sneaky. But I should have seen it coming. I should know by now that it's never a good thing when two players occupy the same star system.\n\n25) Jesse: Trade B2 Y2 Gamera\n\tJesse: Oh, it seemed pretty good to me... :)\n\n26) Laurie_Menke: Build B2 Enterprise\n\n27) Jesse: Trade B3 G3 Anne\n\n28) Laurie_Menke: Discover B3 Enterprise R3 Mars\n\n29) Jesse: Build B3 Gamera\n\n30) Laurie_Menke: Trade B2 Y2 Enterprise\n\n31) Jesse: Move B3 Gamera Enterprise\n\n32) Laurie_Menke: Sacrifice Y2 Enterprise\nMove G1 Enterprise Mars\nPass\n\n33) Jesse: Build B2 Anne\n\n34) Laurie_Menke: Build R1 Laurie_menke\n\n35) Jesse: Trade B2 R2 Anne\n\n36) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild B2 Mars\nBuild G1 Mars\nBuild G1 Mars\n\n37) Jesse: Sacrifice Y3 Jesse\nMove G3 Anne Enterprise\nMove G3 Enterprise Laurie_menke\nMove B3 Enterprise Laurie_menke\n\tJesse: That's a bold move, giving up your g3.\n\n38) Laurie_Menke: Attack G3 Laurie_menke\n\tJesse: Hey! Party at your place!\n\tLaurie_Menke: Hey, now...Jesse, you know I consider you a friend, but now's not really a good time for a party. ;o)\n\n39) Jesse: Sacrifice R2 Anne\nAttack R3 Laurie_menke\nAttack G3 Laurie_menke\n\tLaurie_Menke: At least I got a G3 back. :o)\n\n40) Laurie_Menke: Build G2 Mars\nCatastrophe Mars G\n\tJesse: Well, for a little bit. R2's rock.\n\tLaurie_Menke: Oh, now that was not nice!\n\tLaurie_Menke: Well, I don't see any way out of this...I think that was the fatal blow. :o( Thanks for another good game. :o)\n\n41) Jesse: Sacrifice R3 Laurie_menke\nAttack R1 Laurie_menke\nAttack B1 Laurie_menke\nPass\n\tJesse: Yeah, you were pretty well doomed, there. I wouldn't leave my homeworld undefended like this unless I was sure I could pull it off. And thank you, too.\n\n\nHomeworlds Online (SDG# 1438)\nVariants: "Sinister"\nStarted: 2005.11.14, Ended: 2005.12.1\nParticipants: Jesse (S), JunkMan (N), istari (E)\nWinner: Jesse\n\n1) JunkMan: Homeworld G1 B2 Y3\n\n2) istari: Homeworld G3 B2 Y3\n\n3) Jesse: Homeworld G3 B1 Y3\n\n4) JunkMan: Build Y1 Junkman\n\n5) istari: Build Y1 Istari\n\n6) Jesse: Build Y1 Jesse\n\n7) JunkMan: Trade Y1 G1 Junkman\n\n8) istari: Build Y1 Istari\n\n9) Jesse: Discover Y1 Jesse G2 Groovy\n\n10) JunkMan: Build Y1 Junkman\n\n11) istari: Trade Y1 G1 Istari\n\n12) Jesse: Build Y1 Jesse\n\n13) JunkMan: Build G1 Junkman\n\n14) istari: Build G2 Istari\n\n15) Jesse: Build Y2 Groovy\n\n16) JunkMan: Trade Y1 R1 Junkman\n\n17) istari: Trade G1 R1 Istari\n\n18) Jesse: Trade Y1 R1 Jesse\n\n19) JunkMan: Discover G1 Junkman Y3 Orange\n\n20) istari: Discover G2 Istari B1 Littleblue\n\n21) Jesse: Discover Y2 Groovy G3 Keen\n\n22) JunkMan: Build G1 Orange\n\n23) istari: Build G2 Littleblue\n\n24) Jesse: Build Y1 Jesse\n\n25) JunkMan: Build R1 Junkman\n\n26) istari: Trade G2 Y2 Littleblue\n\n27) Jesse: Build R2 Jesse\n\n28) JunkMan: Discover G1 Orange Y1 Alpha\n\n29) istari: Build Y2 Littleblue\n\n30) Jesse: Trade Y1 B1 Jesse\n\n31) JunkMan: Build G2 Alpha\n\n32) istari: Trade Y2 R2 Littleblue\n\n33) Jesse: Move B1 Jesse Groovy\n\n34) JunkMan: Build R2 Junkman\n\n35) istari: Build R2 Littleblue\n\n36) Jesse: Move R2 Jesse Groovy\n\n37) JunkMan: Move R2 Junkman Orange\n\n38) istari: Build R3 Istari\n\n39) Jesse: Build R3 Jesse\n\n40) JunkMan: Build R3 Orange\n\n41) istari: Sacrifice Y2 Littleblue\nMove R2 Littleblue Orange\nMove R2 Littleblue Orange\nCatastrophe Orange R\n\n42) Jesse: Trade R3 G3 Jesse\n\n43) JunkMan: Build Y1 Junkman\n\n44) istari: Build G2 Littleblue\n\n45) Jesse: Discover G3 Jesse Y2 Swell\n\n46) JunkMan: Move Y1 Junkman Orange\n\n47) istari: Trade G2 Y2 Littleblue\n\n48) Jesse: Build G2 Swell\n\n49) JunkMan: Build Y2 Junkman\n\n50) istari: Move R3 Istari Littleblue\n\n51) Jesse: Sacrifice G3 Swell\nBuild G3 Swell\nBuild R2 Jesse\nBuild B1 Groovy\n\n52) JunkMan: Move R1 Junkman Orange\n\n53) istari: Move R3 Littleblue Groovy\n\n54) Jesse: Sacrifice G3 Swell\nBuild G3 Swell\nBuild R2 Groovy\nBuild R2 Groovy\nCatastrophe Groovy R\n\n55) JunkMan: Sacrifice Y2 Junkman\nMove G1 Orange Alpha\nMove G1 Alpha Istari\n\n56) istari: Attack G1N Istari\n\n57) Jesse: Sacrifice G3 Swell\nBuild G3 Swell\nBuild Y2 Keen\nBuild R2 Jesse\n\n58) JunkMan: Move G1 Alpha Istari\n\n59) istari: Build R2 Istari\n\tistari: b r2 istari\n\n60) Jesse: Sacrifice Y2 Keen\nMove R2 Jesse Groovy\nMove B1 Groovy Keen\n\tistari: Whoops put command in wrong place\n\tJesse: I do that fairly often. There must be a good way of making it harder to make that mistake.\n\n61) JunkMan: Move G2 Alpha Istari\nCatastrophe Istari Green\n\n62) istari: Move R2 Istari Orange\n\n63) Jesse: Move G3 Swell Orange\n\n64) JunkMan: Discover G1 Junkman B3 Beta\n\n65) istari: Move R2 Orange Swell\n\n66) Jesse: Sacrifice R2 Jesse\nAttack R1N Orange\nAttack R2E Swell\n\n67) JunkMan: Build G1 Beta\n\n68) istari: Trade Y1 G1 Istari\n\n69) Jesse: Attack Y1N Orange\n\n70) JunkMan: Sacrifice G1 Beta\nBuild R2 Junkman\n\n71) istari: Build Y1 Littleblue\n\n72) Jesse: Build G1 Orange\n\n73) JunkMan: Build G2 Beta\n\n74) istari: Build G3 Istari\n\n75) Jesse: Sacrifice G3 Orange\nBuild Y1 Keen\nBuild Y2 Groovy\nBuild G3 Orange\n\n76) JunkMan: Trade G2 B2 Beta\n\n77) istari: Build G2 Littleblue\n\n78) Jesse: Sacrifice G3 Orange\nBuild G3 Orange\nBuild B2 Groovy\nBuild B3 Keen\n\n79) JunkMan: Pass\n\n80) istari: Move Y2 Littleblue Orange\n\n81) Jesse: Sacrifice G3 Orange\nBuild G3 Swell\nBuild R2 Groovy\nBuild R3 Jesse\n\n82) JunkMan: Pass\n\n83) istari: Build R3 Istari\n\n84) Jesse: Sacrifice G3 Swell\nBuild G3 Swell\nBuild R3 Orange\nBuild B3 Keen\n\n85) JunkMan: Move R1 Junkman Orange\n\n86) istari: Move R3 Istari Keen\n\n87) Jesse: Sacrifice R2 Groovy\nAttack R1N Orange\nAttack R3E Keen\n\n88) JunkMan: Build R2 Junkman\n\n89) istari: Sacrifice Y2 Orange\nMove Y3 Istari Orange\nMove Y1 Littleblue Orange\nCatastrophe Orange Y\n\n90) Jesse: Build B3 Groovy\n\n91) JunkMan: Trade G1 Y1 Beta\n\n92) istari: Trade G2 Y2 Littleblue\n\n93) Jesse: Sacrifice Y2 Keen\nMove B3 Groovy Beta\nDiscover G3 Swell Y3 Nifty\n\n94) JunkMan: Discover B2 Beta Y2 Delta\n\n95) istari: Trade G3 Y3 Istari\n\n96) Jesse: Sacrifice Y3 Jesse\nMove B3 Keen Junkman\nMove G3 Nifty Junkman\nMove B3 Keen Junkman\n\n97) JunkMan: Attack G3S Junkman\n\n98) istari: Build R1 Istari\n\n99) Jesse: Sacrifice R3 Jesse\nAttack Y3N Junkman\nAttack G3N Junkman\nAttack R2N Junkman\n\n100) JunkMan: Move Y1 Beta Junkman\n\n101) istari: Sacrifice Y2 Littleblue\nMove R1 Istari Jesse\nMove R1 Istari Jesse\n\n102) Jesse: Sacrifice R3 Keen\nAttack R2N Junkman\nAttack Y1N Junkman\nAttack R1E Jesse\n\n\nHomeworlds Online (SDG# 1447)\nStarted: 2005.11.15, Ended: 2005.11.16\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld B1 Y2 G3\n\n2) jeep: Homeworld Y1 B3 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Discover G1 Sketchwick B3 J33p\n\n6) jeep: Discover G1 Jeep B2 Sk37chw1ck\n\n7) sketchwick: Trade G1 Y1 J33p\n\n8) jeep: Build G1 Jeep\n\n9) sketchwick: Build G1 Sketchwick\n\n10) jeep: Build G2 Sk37chw1ck\n\n11) sketchwick: Sacrifice G1 Sketchwick\nBuild Y1 J33p\n\n12) jeep: Trade G2 Y2 Sk37chw1ck\n\n13) sketchwick: Build G1 Sketchwick\n\n14) jeep: Build Y2 Sk37chw1ck\n\n15) sketchwick: Discover Y1 J33p B2 Notleet\n\n16) jeep: Sacrifice Y2 Sk37chw1ck\nDiscover Y2 Sk37chw1ck Y3 Run\nDiscover G1 Sk37chw1ck Y3 Savit\n\n17) sketchwick: Sacrifice G3 Sketchwick\nBuild Y2 J33p\nBuild Y3 Notleet\nBuild G2 Sketchwick\n\n18) jeep: Build G2 Savit\n\n19) sketchwick: Trade G2 R2 Sketchwick\n\n20) jeep: Trade G1 R1 Jeep\n\n21) sketchwick: Move Y3 Notleet Savit\n\n22) jeep: Build R1 Jeep\n\n23) sketchwick: Trade Y2 R2 J33p\n\n24) jeep: Sacrifice Y2 Run\nMove G2 Savit Notleet\nMove G1 Savit Notleet\n\n25) sketchwick: Move Y3 Savit Notleet\n\n26) jeep: Sacrifice G2 Notleet\nBuild G1 Notleet\nBuild G2 Jeep\n\n27) sketchwick: Sacrifice R2 J33p\nAttack G1 Notleet\nAttack G1 Notleet\n\n28) jeep: Discover G2 Jeep B2 Blue23\n\n29) sketchwick: Build Y2 Notleet\n\n30) jeep: Trade G2 Y2 Blue23\n\n31) sketchwick: Sacrifice G1 Notleet\nBuild Y3 J33p\n\n32) jeep: Discover Y2 Blue23 Y3 Goblin\n\n33) sketchwick: Trade Y2 R2 Notleet\n\n34) jeep: Discover R1 Jeep B2 Jeepisdumb\n\n35) sketchwick: Build G1 Notleet\n\n36) jeep: Sacrifice G3 Jeep\nBuild R1 Jeepisdumb\nBuild R2 Jeepisdumb\nBuild R3 Jeep\n\n37) sketchwick: Build R3 Notleet\n\n38) jeep: Trade R2 G2 Jeepisdumb\n\n39) sketchwick: Sacrifice Y3 J33p\nMove R3 Notleet Jeep\nMove R2 Notleet Jeep\nPass\nCatastrophe Jeep Red\n\n\nHomeworlds Online (SDG# 1458)\nStarted: 2005.11.15, Ended: 2005.11.19\nParticipants: Personman (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G1 B3 Y3\n\n2) Personman: Homeworld G3 B2 Y3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Personman: Build Y1 Personman\n\n5) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n6) Personman: Discover Y1 Personman G1 Ix\n\n7) MatrixFrog: Build G2 Matrixfrog\n\n8) Personman: Build Y1 Personman\n\n9) MatrixFrog: Discover G1 Matrixfrog Y2 Xi\n\n10) Personman: Trade Y1 B1 Personman\n\n11) MatrixFrog: Build G2 Xi\n\n12) Personman: Move B1 Personman Ix\n\n13) MatrixFrog: Build Y1 Matrixfrog\n\n14) Personman: Build B1 Ix\n\n15) MatrixFrog: Build G2 Matrixfrog\n\n16) Personman: Move B1 Ix Xi\n\n17) MatrixFrog: Trade G2 R2 Matrixfrog\n\n18) Personman: Build B1 Ix\n\n19) MatrixFrog: Move G2 Xi Ix\n\n20) Personman: Build Y1 Personman\n\n21) MatrixFrog: Sacrifice R2 Matrixfrog\nAttack B1 Ix\nAttack Y1 Ix\n\n22) Personman: Build B2 Ix\n\n23) MatrixFrog: Build B2 Ix\nCatastrophe Ix B\n\n24) Personman: Trade Y3 R3 Personman\n\n25) MatrixFrog: Move G1 Xi Ix\n\n26) Personman: Build Y2 Personman\n\n27) MatrixFrog: Build G2 Matrixfrog\n\n28) Personman: Move R3 Personman Ix\n\n29) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove G2 Ix Personman\nMove G1 Ix Personman\nMove Y1 Ix Personman\n\n30) Personman: Sacrifice Y2 Personman\nMove R3 Ix Xi\nMove R3 Xi Matrixfrog\n\n31) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild Y2 Personman\nBuild Y2 Personman\nCatastrophe Personman Y\n\tMatrixFrog: Very good game.\n\n\nHomeworlds Online (SDG# 1440)\nStarted: 2005.11.15, Ended: 2005.11.22\nParticipants: Personman (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld Y2 B1 G3\n\n2) Personman: Homeworld Y3 G2 B3\n\n3) MatrixFrog: Build G1 Matrixfrog\n\n4) Personman: Build B1 Personman\n\n5) MatrixFrog: Build G1 Matrixfrog\n\n6) Personman: Trade B1 G1 Personman\n\n7) MatrixFrog: Discover G1 Matrixfrog Y3 Alpha\n\n8) Personman: Build G2 Personman\n\n9) MatrixFrog: Discover G1 Alpha Y1 Beta\n\n10) Personman: Move G1 Personman Beta\n\n11) MatrixFrog: Move G1 Beta Personman\n\n12) Personman: Trade G2 R2 Personman\n\n13) MatrixFrog: Build G2 Personman\n\n14) Personman: Sacrifice R2 Personman\nAttack G1 Personman\nAttack G2 Personman\n\n15) MatrixFrog: Trade G1 Y1 Matrixfrog\n\n16) Personman: Trade G2 Y2 Personman\n\n17) MatrixFrog: Build Y1 Matrixfrog\n\n18) Personman: Build Y2 Personman\n\n19) MatrixFrog: Discover Y1 Matrixfrog Y3 Epsilon\n\n20) Personman: Trade Y2 R2 Personman\n\n21) MatrixFrog: Discover Y1 Epsilon G1 Gamma\n\n22) Personman: Build G2 Beta\n\n23) MatrixFrog: Build Y2 Gamma\n\n24) Personman: Sacrifice Y2 Personman\nDiscover G2 Beta R3 Temp\nMove G2 Temp Matrixfrog\n\n25) MatrixFrog: Build Y2 Matrixfrog\n\n26) Personman: Move R2 Personman Gamma\n\n27) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n28) Personman: A Y2N Gamma\n\n29) MatrixFrog: Build R1 Matrixfrog\n\n30) Personman: Sacrifice Y2 Gamma\nDiscover R2 Gamma R3 Temp\nMove R2 Temp Matrixfrog\n\n31) MatrixFrog: Attack R2 Matrixfrog\n\n32) Personman: Build B1 Personman\n\tPersonman: oh. I read that rule wrong. oops. now i know.\n\n33) MatrixFrog: Attack G2 Matrixfrog\n\n34) Personman: Build G2 Beta\n\n35) MatrixFrog: Discover R2 Matrixfrog Y3 Theta\n\n36) Personman: Build B1 Personman\n\n37) MatrixFrog: Move R2 Theta Beta\n\n38) Personman: Build G3 Beta\n\n39) MatrixFrog: Build G3 Matrixfrog\n\n40) Personman: Trade B1 R1 Personman\n\n41) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y1 Gamma\nBuild Y2 Gamma\nBuild R2 Beta\n\n42) Personman: Build R2 Personman\n\n43) MatrixFrog: Attack G2 Beta\n\n44) Personman: Move R1 Personman Gamma\n\n45) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove Y1 Gamma Personman\nMove Y1 Gamma Personman\n\n46) Personman: Sacrifice G3 Beta\nBuild R3 Gamma\nBuild R3 Gamma\nBuild R3 Personman\n\tPersonman: Oh crap. I totally saw your y2 in gamma as a y1 because the name of the system is on top of it... that's bad.\n\n47) MatrixFrog: Move Y2 Gamma Personman\nCatastrophe Personman Y\n\tMatrixFrog: How is a y2 any worse? I can still do this either way...\n\n48) Personman: Trade R2 Y2 Personman\n\tPersonman: i couldn't attack it last turn. \n\n49) MatrixFrog: Attack G1 Beta\n\tMatrixFrog: Aha.\n\n50) Personman: Move G1 Personman Gamma\n\n51) MatrixFrog: Build G3 Beta\n\n52) Personman: Sacrifice Y2 Personman\nDiscover R3 Gamma G3 Temp\nMove R3 Temp Matrixfrog\n\n53) MatrixFrog: Attack R3 Matrixfrog\n\n54) Personman: Build R2 Personman\n\tPersonman: I think I've lost. good game!\n\n55) MatrixFrog: Trade R3 Y3 Matrixfrog\n\n56) Personman: Build R3 Gamma\n\n57) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove G1 Beta Personman\nMove G3 Beta Personman\nMove G2 Beta Personman\nCatastrophe Personman G\n\n\nHomeworlds Online (SDG# 1466)\nStarted: 2005.11.16, Ended: 2005.11.29\nParticipants: jeep (S), sketchwick (N)\nWinner: jeep\n\n1) sketchwick: Homeworld B1 Y2 G3\n\n2) jeep: Homeworld Y1 B3 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Discover G1 Sketchwick B3 Grape\n\n6) jeep: Discover G1 Jeep B2 Ape\n\n7) sketchwick: Trade G1 Y1 Grape\n\n8) jeep: Build G1 Jeep\n\n9) sketchwick: Build G1 Sketchwick\n\n10) jeep: Build G2 Ape\n\n11) sketchwick: Sacrifice G1 Sketchwick\nBuild Y1 Grape\n\n12) jeep: Trade G2 Y2 Ape\n\n13) sketchwick: Build G1 Sketchwick\n\n14) jeep: Trade G1 R1 Jeep\n\n15) sketchwick: Discover Y1 Grape R2 Rape\n\n16) jeep: Build G1 Jeep\n\n17) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Sketchwick\nBuild Y2 Rape\nBuild Y3 Grape\n\n18) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G2 Ape\nBuild Y3 Ape\n\n19) sketchwick: Sacrifice Y3 Grape\nMove Y1 Rape Grape\nMove Y1 Grape Ape\nMove Y1 Grape Ape\nCatastrophe Ape Yellow\n\n20) jeep: Trade G2 Y2 Jeep\n\n21) sketchwick: Trade G1 R1 Sketchwick\n\n22) jeep: Trade G1 Y1 Ape\n\n23) sketchwick: Build G1 Sketchwick\n\n24) jeep: Build G1 Ape\n\n25) sketchwick: Discover G1 Sketchwick B3 Nape\n\n26) jeep: Sacrifice G2 Ape\nBuild Y1 Jeep\nBuild Y3 Ape\n\tsketchwick: so what do you think of my move to blow up your yellow?\n\tjeep: I didn't like it. (must mean it was an alright move for you)\n\n27) sketchwick: Build G2 Sketchwick\n\n28) jeep: Build Y3 Ape\n\n29) sketchwick: Sacrifice G2 Sketchwick\nBuild G2 Sketchwick\nBuild Y3 Rape\n\n30) jeep: Sacrifice Y3 Ape\nMove Y1 Jeep Rape\nMove Y1 Ape Nape\nMove Y1 Nape Rape\nCatastrophe Rape Yellow\n\n31) sketchwick: Trade G2 Y2 Sketchwick\n\n32) jeep: Build G2 Jeep\n\n33) sketchwick: Build G2 Nape\n\n34) jeep: Trade G2 R2 Jeep\n\n35) sketchwick: Trade G1 B1 Nape\n\n36) jeep: Build Y1 Ape\n\n37) sketchwick: Trade B1 Y1 Nape\n\n38) jeep: Discover Y1 Ape G3 Tape\n\tsketchwick: shoulda just forced your surrender :)\n\n39) sketchwick: Move Y2 Sketchwick Tape\n\n40) jeep: Sacrifice Y2 Jeep\nMove Y3 Ape Nape\nMove Y3 Nape Sketchwick\n\tjeep: I'm on my way back home now. Little internet access until Monday.\n\n\tSYSTEM: sketchwick resigns.\n\nHomeworlds Online (SDG# 1487)\nStarted: 2005.11.18, Ended: 2005.11.21\nParticipants: Hedge_o_Matic (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tHedge_o_Matic: Hi, Andy!\n\tHedge_o_Matic: This is my first-ever game of Homeworlds!\n\tandylooney: hello and welcome to the game!\n\n2) Hedge_o_Matic: Homeworld G1 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tHedge_o_Matic: Yay! My first homeworld! (sniff)\n\n4) Hedge_o_Matic: Build Y1 Hedge_o_matic\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Hedge_o_Matic: Trade Y1 R1 Hedge_o_matic\n\n7) andylooney: Discover G1 Andylooney Y3 Clampett\n\n8) Hedge_o_Matic: Move R1 Hedge_o_matic Clampett\n\n9) andylooney: Discover G1 Clampett G1 Gumby\n\tandylooney: Well, aren't you aggresive! I didn't realize before that you'd mirrored my homeworld...\n\n10) Hedge_o_Matic: Trade Y3 G3 Hedge_o_matic\n\n11) andylooney: Build Y1 Andylooney\n\n12) Hedge_o_Matic: Build G2 Hedge_o_matic\n\n13) andylooney: Sacrifice Y3 Andylooney\nMove G1 Gumby Clampett\nMove G1 Clampett Hedge_o_matic\nPass\nCatastrophe Hedge_o_matic Green\n\tandylooney: Thanks for the game and better luck next time!\n\n\nHomeworlds Online (SDG# 1494)\nVariants: "Sinister"\nStarted: 2005.11.20, Ended: 2005.11.28\nParticipants: Personman (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B1 G2 Y3\n\tPersonman: I accepted this challenge without knowing what sinister is, so I'm hoping i don't regret it :) oddly, the rules for this option are not in the wiki or on the wunderland page. I am about to go google it, but if i find nothing i will be wanting to know what it is...\n\tPersonman: oh. um, correct me if i'm wrong, but isn't sinister entirely irrelevant in a two player game\n\tJesse: Yeah, there's no functional difference between regular and sinister two-player homeworlds. I was just feeling a little evil when I set up the game. Also, I was curious whether the system would allow it.\n\n2) Personman: Homeworld B3 G1 Y3\n\tJesse: Here's a tip: If you want a brief description of the game variants, you can click on "New Challenge" on the challenges page. The new challenge page always has a brief description of each variant.\n\tJesse: So, have you played Homeworlds other than a couple of games on this server?\n\tPersonman: nope! but I've played it a couple times on the server, and I love it so far. If I'm ever in the same room with other gamers and an icehouse set, i'll probably make them play it.\n\n3) Jesse: Build Y1 Jesse\n\n4) Personman: Build Y1 Personman\n\tJesse: Okay, I'll try to teach you a thing or two while we play. Let me know if there's anything you're unsure about.\n\n5) Jesse: Discover Y1 Jesse G3 Fresh\n\n6) Personman: Build Y1 Personman\n\n7) Jesse: Build Y2 Jesse\n\tJesse: That's not so good, because it gives me the first shot at a medium.\n\n8) Personman: Discover Y1 Personman G2 Tazenda\n\n9) Jesse: Trade Y2 G2 Jesse\n\n10) Personman: Build Y2 Tazenda\n\n11) Jesse: Build Y2 Jesse\n\n12) Personman: Trade Y1 B1 Personman\n\tJesse: Be careful, you don't want to build right now. I can fly the y1 at Fresh into either Tazenda or (with a sacrifice) your homeworld.\n\n13) Jesse: Trade Y2 R2 Jesse\n\tJesse: Good choice.\n\n14) Personman: Move B1 Personman Tazenda\n\tJesse: You usually don't want to wait too long after your opponent takes red before you get into red yourself, though you're not in immediate danger this turn.\n\n15) Jesse: Discover G2 Jesse Y3 Belly\n\n16) Personman: Trade Y2 R2 Tazenda\n\n17) Jesse: Build G1 Belly\n\n18) Personman: Build R1 Tazenda\n\n19) Jesse: Build G1 Belly\n\n20) Personman: Move R2 Tazenda Belly\n\tJesse: You have the advantage in red and blue right now, but I'm hoping to make up for that in the long run by freezing you out of green ships.\n\n21) Jesse: Sacrifice R2 Jesse\nAttack R2 Belly\nPass\n\tPersonman: Just so you know, I'm not saying anything because i have nothing to say, not because i'm ignoring you. I apprecaite the advice a lot, especially coming *after* my moves as it does. It's a good way to learn. Thanks a lot. \n\tJesse: Great, glad to help!\n\tJesse: Don't forget that I can sacrifice my r2 to attack. It's not ideal here, since there's only one ship I can nab, but I have no problem sacrificing an r2 to take an r2.\n\n22) Personman: Build B1 Tazenda\n\n23) Jesse: Discover G2 Belly B2 Bork\n\n24) Personman: Build B2 Tazenda\n\tJesse: I'm thinking about building g3s and swapping them out for b3s to really mess up your plans, but I'm not sure I can do that successfully. There's a danger of you sending over blues to destroy Bork itself. Another possibility would be to just build the two g3s and send them into your home system to blast you.\n\n25) Jesse: Build G3 Bork\n\n26) Personman: Trade Y3 G3 Personman\n\n27) Jesse: Sacrifice G3 Bork\nBuild G3 Bork\nBuild Y1 Fresh\nBuild Y2 Jesse\n\tJesse: There is a significant danger to switching to a green ship like that. It's your only ship in the system, and it's the same color as one of the system markers. I could sacrifice a y2 or y3 to send two green ships in to blast you, except that the only one I have is also the only ship in my own home system.\n\n28) Personman: Trade G3 R3 Personman\n\tJesse: This maneuver is called the factory, since it allows you to build ships much faster than normal. Unfortunately for you, it takes two green ships, or you won't be able to rebuild the g3.\n\tJesse: Also, note that it's not possible for me to blast your homeworld without abandoning my own, so you need to defend by either changing the g3 to another color, or recalling a red, blue, or yelow ship from Tazenda.\n\n29) Jesse: Build G3 Bork\n\tJesse: Heh, excuse me. I meant "it's now possible", not "it's not possible". I suppose you probably figured that out, but it's best to be clear.\n\n30) Personman: Build Y2 Tazenda\n\tPersonman: yeah, i noticed that. :)\r\n\n\tJesse: Since you don't have any green ships, I'm fairly safe doing this. I have two large ships within range of your homeworld, and could put them both in there at the same time using a y2 sacrifice. Think about how you might defend yourself against that.\n\n31) Jesse: Build R1 Belly\n\tJesse: One defense against attackers is to attack them and make them your own. But with two of them in your system, simply attacking one of them would leave the other free to capture two ships with an r2 sacrifice. If you had an r2 to sacrifice, you could capture both g3s at once, so I would be very cautious about sending them in.\n\tJesse: The other way is to destroy them by causing a catastrophe. In this case, that isn't possible because you don't have any green ships, and there aren't any available for you to switch any of your ships. Besides, that would destroy half of your system anyway, and presumably you don't want that.\n\tJesse: Okay, since you've already moved, I'm going to go a little easy on you right now to give you some more time to process it.\n\n32) Personman: Trade Y2 R2 Tazenda\n\tJesse: (The things I'm *not* doing here are using my factory, switching a g3 for a y3 or a b3, invading your homeworld, and spreading out my yellows so I can build that y3 as soon as you build the y2.)\n\n33) Jesse: Move Y1 Fresh Bork\n\tJesse: Yeah, that will be safer.\n\n34) Personman: Move B1 Tazenda Fresh\n\tJesse: So, now I'm spreading out my yellows, as well as giving my g3s more mobility.\n\n35) Jesse: Sacrifice R1 Belly\nAttack B1 Fresh\n\n36) Personman: Discover B2 Tazenda Y3 Toosk\n\tJesse: Now I have a blue, though it's debatable whether it was worth sacrificing my r1 to get it.\n\n37) Jesse: Trade G2 R2 Bork\n\tJesse: Good choice!\n\n38) Personman: Discover B2 Toosk G2 Plover\n\n39) Jesse: Trade G3 Y3 Bork\n\tJesse: Ooh, another good choice!\n\n40) Personman: Build B2 Plover\n\n41) Jesse: Build G3 Bork\n\n42) Personman: Trade B2 Y2 Plover\n\n43) Jesse: Sacrifice Y3 Jesse\nMove G3 Bork Personman\nMove G3 Bork Personman\nMove Y3 Bork Personman\n\tJesse: I should point out that with me having three large ships on your doorstep now, you're in a very dangerous position. If I send them all in at once, you won't be able to capture them all in one turn. You could really use another large ship at home, or another r3 anywhere that you could sacrifice. Unfortunately, it's very hard for you to get them, right now. You're pretty well on the ropes facing four against one large ships.\n\tJesse: In fact, I think sending my ships in now is a finishing blow. There doesn't seem to be much point in dragging this out, so I'll go ahead and do it. Let me just say you've played well without any direction these last few turns, you were just in a very difficult situation. I think the main lesson of this game may be this: Be wary of your opponent freezing you out of ships of any given color. Once I got ahead in green, and built a factory, I had much better production capacity which allowed me to get ahead with other things as well. Except blue. Making a run on blue ships was a good idea, but you don't want to do it at the expense of being frozen out of something else.\n\n44) Personman: Sacrifice R2 Tazenda\nAttack G3 Personman\nAttack Y3 Personman\n\n45) Jesse: Sacrifice R2 Belly\nAttack R3 Personman\nAttack Y3 Personman\n\tJesse: Right, that's your best delay tactic.\n\n\tPersonman: Alrighties. Well, I can see my doom quite clearly at this point, so I won't make us go through the motions. Thanks for a great game and advice. Perhaps we shall play again someday. \n\tSYSTEM: Personman resigns.\n\nHomeworlds Online (SDG# 1547)\nStarted: 2005.11.20, Ended: 2005.11.27\nParticipants: MarkSteere (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld G2 B3 Y3\n\tMarkSteere: Thank you for offering to teach this to me. I imagine the rules are not all that complicated, but I think I do need someone to walk me through it.\r\n\n\tMarkSteere: ..Can I be the evil one? I like the idea of wanton destruction more than banding together.\r\n\n\tLaurie_Menke: LOL...actually, I think we're both the evil ones....the version that Aaron has implemented doesn't seem to have that evil/good distinction. It's just every player for themselves. :o)\n\tLaurie_Menke: Now...the first thing you have to do is make a homeworld. Your homeworld will have two stars (a binary star system) and one ship protecting it. Because the size of the stars effects movement later, you want to make sure they are two DIFFERENT sizes, and not exactly the same sizes as my two. Your ship should always be a 3 to start, because it's strongest. Color-wise, use green, blue, and yellow between your two stars and one ship. Diversity is good, and you won't need red until later.\n\n2) MarkSteere: Homeworld B1 G3 Y3\n\tLaurie_Menke: So since I've got a 2 and a 3 in my star system, you'll want either a 1 & 2 or 1 & 3. So you'll type something like this (you can change the colors and numbers): "homeworld b1 g3 y3"\n\tMarkSteere: homeworld b1 g3 y3\n\tMarkSteere: homeworlds b1 g3 y3\n\tMarkSteere: homeworld b1 g3 y3\n\tMarkSteere: homeworld B1 G3 Y3\n\tMarkSteere: There's already a problem. Not good.\n\tLaurie_Menke: Oh, I'm sorry...I've made that same mistake myself. There's actually a different input box for commands. Your first command was perfect...you just need to put it in the box at the top left of the screen. Sorry I was so long in responding! :o(\n\n3) Laurie_Menke: Build Y1 Laurie_menke\n\tMarkSteere: oops :D\n\tMarkSteere: Why is my ship located differently from yours?\r\n\n\tLaurie_Menke: The computer just randomly places it somewhere in the square. The position within the square doesn't matter. When you move, you will be moving to a different black square.\n\tLaurie_Menke: But you can't move yet, because you can't leave your homeworld without a ship. So the next thing we each need to do is build up some more ships. You have to have green available to do that (which we both do). You can only build ships in colors you already have. Since we both have yellow ships, we'll both be building more yellow ships for now.\n\tLaurie_Menke: You can only build the smallest ship available. Since there are plenty of y1's in the "global stash" (above our playing area), we'll both have to build y1's.\n\n4) MarkSteere: Build Y1 Marksteere\n\tMarkSteere: Ok, so build y1 in what?\r\n\n\n5) Laurie_Menke: Build Y1 Laurie_menke\n\tMarkSteere: I figured something out. Awesome!\n\tMarkSteere: ..So the reason I can't use my y3 is because it has to stay near my home base to protect it, right?\r\n\n\tLaurie_Menke: Right. If you wanted to, you could move your y3 now because your y1 could stay to protect your homeworld. But it's smart to always keep a 3-sized ship in your homeworld.\n\tLaurie_Menke: OK...so now is the first time we have multiple options. At this point you can: 1) build another yellow ship, 2) move one of your ships to a new location, or 3) trade one of your yellow ships in for a different color.\n\tLaurie_Menke: BTW...good job of figuring out the code! :o) I told you you'd be flying in no time. :o)\n\tLaurie_Menke: Because I am new to the game myself, I really don't know which is the best of those three options to choose right now. It seems like in most of the games I've played, people keep building at this point. But sometimes they start moving ships.\n\tLaurie_Menke: So I'll let you make your own decision. Here's the way you would code each type. 1) build y2 MarkSteere (it's a y2 now because all the y1's are taken) 2) pick a name for a new system...it can be anything. For this example, let's call it "Cool." And let's say you want to move your y1 ship. The code would be: discover y1 MarkSteere g2 Cool. You could actually make the new star system a y2 or b2 or r2, but it has to be a 2 because you have a 1 and a 3 in your system, and you can't travel to the same number.\n\tLaurie_Menke: 3) trade y3 g3. Or you could trade in your y1. You can trade in for any color, but it has to be the same size.\n\tLaurie_Menke: So...I have now realized that I have typed waaaayyyy too much and you're probably very confused. I'm sorry. Let's simplify...would you rather build, move, or trade for this move?\n\n6) MarkSteere: Discover Y1 Marksteere G2 Cool\n\tMarkSteere: Ok, I understand that I can build another ship of the same color as my existing ship. Or I can trade one of my existing ships for a different ship of the same size but different color. I'm a little confused on the move though. What is the significance of the word "discover" here? I'm going to do the discover thing just to see what happens.\n\n7) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\tLaurie_Menke: Good job! That was the trickiest one, and you did it just great! :o) The reason you used "discover" instead of "move" is that you had no star system to move to...there was just blank space between us. So you "discovered" a new star system in your travels. Once you have another ship ready for travel, you can simply "move" to that star system if you wish. But "discovering" new systems also uses up an extra piece (in this case a g2), which sometimes comes in handy if you're trying to keep your opponent from getting that piece.\n\tLaurie_Menke: Now...I can't build any more, because that would make 4 yellows in my star system. If that ever happens, you could use the "catastrophe" command to wipe out all the yellows in my system. So I need to either "discover" like you did or "trade." I think I'll trade.\n\n8) MarkSteere: Build Y1 Cool\n\tLaurie_Menke: OK, now your current options are: 1) build a y1 in the MarkSteere system, 2) build a y1 in the Cool system, 3) move your Cool ship back to MarkSteere, 4) discover another new system with your y1 ship in the Cool system, or 5) trade your y3 ship for a different color.\n\n9) Laurie_Menke: Discover Y1 Laurie_menke G1 Factory\n\n10) MarkSteere: Discover Y1 Cool G3 Eastpaloalto\n\tLaurie_Menke: OK...now one thing we both need to start watching out for is getting too many ships of the same color. Four of the same color can trigger a catastrophe. Right now the Cool and Factory star systems are only one move apart and both contain yellow ships. That's one thing you want to keep an eye out for.\n\tLaurie_Menke: You're doing great on your own, though...I'll shut up for a while and just let you play. If you have questions, ask. :o)\n\n11) Laurie_Menke: Build Y2 Factory\n\tMarkSteere: How do you keep track of which pieces are yours? I tried to move a ship from the Factory system and it wouldn't let me.\r\n\n\tMarkSteere: ..By the way, you're not talking to much. I'd be lost without your instructions. This is really an odyssey. I wonder if magic mushrooms played a part in the design of this game. That's not intended as an insult. All of my games were designed under the (strong) influence of California greenbud. Although I'm sober now for health reasons. I think there may have been something stronger involved in the inception of Homeworlds.\n\tLaurie_Menke: Actually, Andy Looney freely admits that marijuana plays a part in developing his games. He even has a game out called Stoner Fluxx in which some of the profits go to charities trying to legalize marijuana. ;o)\n\tLaurie_Menke: As for keeping track of pieces, it is sort of hard to see who's who after a while. Your own ships are always facing away from you. So in this case, your ships face down, mine face up.\n\tLaurie_Menke: BTW...I noticed East Palo Alto...does that mean you live in the Bay Area? Because I'm in Davis....small world. :o)\n\n12) MarkSteere: Trade Y3 R3 Marksteere\n\n\tMarkSteere: I live in downtown Palo Alto. This is my first house which I bought a couple of years ago. It's wierd feuding with the neighbors instead of management.\n\n13) Laurie_Menke: Move Y2 Factory Laurie_menke\n\tLaurie_Menke: LOL...well, I'm still renting, so maybe that's a good thing, eh?\n\n14) MarkSteere: Build Y2 Eastpaloalto\n\tMarkSteere: Renting isn't so bad. The worst thing about it is that the owner or management can come into your space. They (usually) give you notice, but it still sucks. And then after the inevitable feud, you still have to go to them to get your packages. Yuck. I won't miss that at all.\n\n15) Laurie_Menke: Trade Y2 B2 Laurie_menke\n\tMarkSteere: .. of course that's apartments. Renting a house is probably a different animal.\n\tMarkSteere: ..Are you near the university?\n\tJesse: Hi, guys. I was just reading through the discussion here (great introductory explanations, Laurie!), and wanted to mention one thing. To give credit where it is due, I don't think Andy actually had much input on the design of Homeworlds, though he was instrumental in developing the two-player version, with its reduced stash. Homeworlds development was captained by John Cooper, with input from his regular game development and playtesting group. I don't know which, if any of them, smoke (not that it matters).\n\tLaurie_Menke: Oh...I didn't know that! Thanks for the clarification, Jesse. I hereby apologize to John Cooper. My bad... And thanks, also, for the compliment. :o) You're the expert at this game, so please add anything that would be helpful or correct me if I make a mistake. :o)\n\tLaurie_Menke: And Mark, I'm in North Davis, about 3 miles from the university, and am renting a co-op apartment. And I know what you mean about management coming in all the time...it is a pain.\n\n16) MarkSteere: Discover Y2 Eastpaloalto G2 Menlopark\n\tMarkSteere: Thank you for the clarification Jesse. I too had assumed Andy Looney was the original inventor.\n\tMarkSteere: Apparently John also invented Icehouse, another game I had thought Andy Looney invented.\n\n17) Laurie_Menke: Move B2 Laurie_menke Factory\n\tMarkSteere: I was always afraid management would let my cats out. It's hard to convey how much I'm attached to my cats and vice versa. If you and my cats were in a burning building, you might have to fend for yourself.\n\tLaurie_Menke: Yep...I have two cats myself, and they are my "kids." ;o)\n\n18) MarkSteere: Build Y2 Eastpaloalto\n\tMarkSteere: I don't know where we're going in this game. If you see a way to attack me, don't hold back. I will learn from that. Or do we have to set up all the pieces before the attack phase begins?\n\n19) Laurie_Menke: Build Y2 Factory\n\tLaurie_Menke: Yes, that's my biggest frustration with this game...it's hard to know what the goal is at any particular time.\n\n20) MarkSteere: Build R1 Marksteere\n\tLaurie_Menke: The ultimate goal is to destroy or take over the opponent's homeworld. In my experience, this frequently happens because of "sacrifice" and "catastrophe" actions. For example, right now I *could* sacrifice my y3 in my homeworld to get three movement turns in a row. I could then move my two yellows from Factory to EastPaloAlto, making a total of 4 yellows in one place, and then trigger a catastrophe that removed all 4 ships. I don't want to do that because I would lose three ships in the process, but that's an example of the kind of thing you're trying to set up.\n\tLaurie_Menke: Attacking doesn't happen as often as you'd think it would, because it's hard to get your ships and the enemy ships in the same star system. But it does happen from time to time.\n\tLaurie_Menke: My personal goal right now is to try to get more 3-sized ships. That's why I'm building so much yellow...to get to the 3-sized ones. Then I can trade the y3's in for 3's of other colors, which gives me good "sacrificing" power.\n\tMarkSteere: I think I still need advice on my moves. Right now I'm just creating more pieces and trading them. Is it possible to create more star systems, or is there a limit on that?\r\n\n\tMarkSteere: I keep getting errors like these systems are not connected or you don't have access to this technology.\n\n21) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\tLaurie_Menke: You can discover an unlimited number of star systems. However, the star you choose it to be must first be available in the global stash, and second be a different number from the star system you're coming from. So if you're coming from MarkSteere, it would have to be a 2. From EastPaloAlto a 1 or a 2, etc.\n\tLaurie_Menke: The "these systems are not connected" error message has to do with what I just described...the numbers of the star systems. The "you don't have access to this technology" error message means you are trying to do something that doesn't match the colors you have. For example, you couldn't trade one of your yellow ships for a different color in EastPaloAlto because there is no blue--the trading color--available there.\n\n22) MarkSteere: Move Y2 Eastpaloalto Factory\n\tLaurie_Menke: As for advice on your moves, let's see... One option would be to sacrifice your y2 in MenloPark in order to move both your yellow from EastPaloAlto to Factory. You could then end your turn by creating a catastrophe in Factory that would wipe out all yellow ships there. I wouldn't recommend it, because you'd lose three ships in the process of knocking out only two of mine. But it's a thought. ;o)\n\tLaurie_Menke: Another option would be to move your y2 from EastPaloAlto to Factory this turn. Then next turn you could sacrifice your r3 (a bit of a risky move because it leaves your homeworld vulnurable) in order to attack all three of my ships in Factory. That's probably what I would do myself.\n\tLaurie_Menke: Or you could continue to either build or spread your ships out among more star systems.\n\tMarkSteere: When you sacrifice, are the pieces permanently removed, or do they go back into the stockpile?\n\n23) Laurie_Menke: Move Y2 Factory Laurie_menke\n\tLaurie_Menke: They go back into the stock pile.\n\tLaurie_Menke: OK, now that I look at it, I gave you bad advice (as I've said, I'm still learning this game myself). Now that you've moved into Factory, I can see that I *could* sacrifice my r1 in Laurie_Menke in order to attack your y2 in Factory and stop you imminent attack on me. I didn't think of that when I suggested it to you. :o( Sorry. So...I'm not going to do that move...I'm just going to try to save one of my men.\n\n24) MarkSteere: Sacrifice R3 Marksteere Attack Y1 Factory\nAttack B2 Factory\nPass\nPass\n\tLaurie_Menke: So now, if you would like to attack, you would type: "sacrifice r3 MarkSteere (carriage return) attack y1 Factory (carriage return) attack b2 Factory (carriage return) pass" You need the pass at the end because you have three attack moves available but can only use two.\n\n25) Laurie_Menke: Build Y3 Laurie_menke\n\tLaurie_Menke: Oops...you only wanted to pass on one of your attacks, not two. Now my y1 is going to get away.\n\tLaurie_Menke: Actually, maybe I'll let it stay for the moment. I want to build some more 3-sized ships.\n\n26) MarkSteere: Build Y3 Eastpaloalto\n\tMarkSteere: I got an error with the one pass. It said something like you need to pass, so I changed it to two.\n\tMarkSteere: ..Please don't hold back on beating me, even if it's at the expense of having given my poor advice. I'm anxious to see what happens. I'm starting to get the feeling like we're playing Tonka toys in a sandbox with no goal in sight.\n\n27) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\tLaurie_Menke: Huh...that's strange about the error. And, yes, I know what you mean about feeling like there's no goal. That's what I meant in our early e-mails about the movement being pretty easy to learn, but knowing what the goal should be is the tough part. I still haven't learned that myself, so at this point I think we're probably about even in our skill level. ;o)\n\n28) MarkSteere: Build Y2 Eastpaloalto\n\n29) Laurie_Menke: Move Y1 Factory Eastpaloalto\nCatastrophe Eastpaloalto Y\n\tLaurie_Menke: OK, here's what I warned about with getting too many of one color together. I'm gong to move from Factory to EastPaloAlto and cause a catastrophe, which will wipe out three of your ships and only one of mine...\n\n30) MarkSteere: Build R1 Marksteere\n\tLaurie_Menke: Notice that since there were no ships in the EastPaloAlto system any more, the system disappeared, and all the other systems rearranged themselves. The rearranging doesn't mean anything...it's just a slightly annoying thing that the computer program does for unknown reasons. ;o)\n\tLaurie_Menke: You've still got five ships to my four, but it sort of levelled the playing field a little. But now I'm thinking I'm going to try to move into your homeworld with a 2 or 3 sized ship, since you've only got a 1 protecting it.\n\n31) Laurie_Menke: Discover Y3 Laurie_menke Y1 Lookout\n\n32) MarkSteere: Trade R1 G1 Marksteere\n\tMarkSteere: build g3 laurie_menke\n\n33) Laurie_Menke: Discover Y3 Lookout R2 Hereicome\n\n34) MarkSteere: Build G1 Marksteere\n\tMarkSteere: Just when I thought I wasn't confused enough, now I have hyperspatial flux to contend with.\n\n35) Laurie_Menke: Build G3 Laurie_menke\n\tLaurie_Menke: LOL!\n\n36) MarkSteere: Build R1 Marksteere\n\n37) Laurie_Menke: Move Y3 Hereicome Marksteere\n\n38) MarkSteere: Trade R1 Y1 Marksteere\n\n39) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack R1 Marksteere\n\n40) MarkSteere: Move Y1 Marksteere Menlopark\n\n41) Laurie_Menke: Sacrifice R2 Laurie_menke\nAttack G1 Marksteere\nAttack G1 Marksteere\n\tLaurie_Menke: Well, I think that about does it, Mark. Good job on your first game! :o)\n\n\nHomeworlds Online (SDG# 1531)\nStarted: 2005.11.20, Ended: 2005.11.21\nParticipants: MatrixFrog (S), Calavera (N)\nWinner: Calavera\n\n1) Calavera: Homeworld Y1 B3 G3\n\n2) MatrixFrog: Homeworld B3 Y2 G3\n\n3) Calavera: Build G1 Calavera\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) Calavera: Build G1 Calavera\n\n6) MatrixFrog: Build G2 Matrixfrog\n\n7) Calavera: Discover G1 Calavera B2 Rillanon\n\n8) MatrixFrog: Discover G2 Matrixfrog Y1 Epsilon\n\n9) Calavera: Trade G1 R1 Calavera\n\n10) MatrixFrog: Discover G2 Epsilon Y2 Delta\n\n11) Calavera: Build G1 Rillanon\n\n12) MatrixFrog: Build G2 Delta\n\n13) Calavera: Trade G3 Y3 Calavera\n\n14) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild G2 Matrixfrog\nBuild G3 Matrixfrog\nBuild G3 Delta\n\n15) Calavera: Sacrifice Y3 Calavera\nDiscover G1 Rillanon R1 Krondor\nMove G1 Krondor Matrixfrog\nPass\nCatastrophe Matrixfrog G\n\n\nHomeworlds Online (SDG# 1551)\nStarted: 2005.11.20, Ended: 2005.12.1\nParticipants: Lexicon (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld G2 B1 Y3\n\tJesse: Hi, I'll be happy to teach you a bit about Homeworlds.\n\tJesse: First of all, have you read the tips for new players on the wiki about setting up your homeworld?\n\n2) Lexicon: Homeworld G2 B3 Y3\n\tLexicon: Yep, I've got that part figured out. I don't know if you're on the mailing list or not, but I've played this game a few times.\n\tLexicon: The problem is my friends and I didn't read the rules very carefully (or maybe had a different version of the rules?) and had different powers. They were more intuitive, but were succeptable to a 2-3 move kill. \n\n3) Jesse: Build Y1 Jesse\n\tJesse: Yeah, that's no good. Careful play should at least keep you alive for a long time. Going offensive too soon is usually a big mistake.\n\n4) Lexicon: Build Y1 Lexicon\n\tJesse: I am on the mailing list, but I don't check that account all that often.\n\n5) Jesse: Discover Y1 Jesse G3 Tree\n\tJesse: So, what is it that you need help with? What do you find unintuitive about the rules?\n\n6) Lexicon: Trade Y1 R1 Lexicon\n\tLexicon: If you've played Gnostica, I'm used to thinking like that. Its system is build&grow as opposed to build&trade. \n\tLexicon: My understanding of these rules is that the only way to get a 2 pip ship is to run out of 1 pip in some color, then build another of that color. This is kind of neat, though I'll need a few games to figure out how long it takes to run out of ships of a given size.\n\n7) Jesse: Build Y1 Jesse\n\tLexicon: Resource limitations will clearly be more important in this game, and I suspect catastrophies are a more major attack option compared to my version. \n\tLexicon: I expect this game to run long in terms of number of moves, so having people point out when I make blunders is nice for ramping up to speed. Esp in this format where the game can take a couple weeks to finish and I'm forgetting the strategy I was using early on which only reveals its errors 15 moves in.\n\tJesse: I like Gnostica a lot. You're right about how to obtain the larger ships, and it does take some getting used to. However, it's a huge part of what makes Homeworlds interesting. Much of the game revolves around manipulating the economy to get the ships you want while depriving your opponent of similar opportunities.\n\n8) Lexicon: Build Y1 Lexicon\n\tJesse: It is unusual among experienced players to jump into red so early. It simply isn't needed until the opposing forces come into contact with each other (or are seriously threatening to do so).\n\n9) Jesse: Trade Y1 R1 Jesse\n\tLexicon: I suppose it's premature. I'm antsy about catastrophies, as it's easy to burn a yellow to send another yellow into my system from Tree. \n\tLexicon: The early game I'm guessing is spent building up some pips for sacrificing later. I'm not sure what to store those as, but too many of one color seems an obvious problem.\n\n10) Lexicon: Trade Y3 G3 Lexicon\n\tJesse: It's true that I could burn a yellow to send another into your system. For that reason, you certainly don't want to have three yellows in your system, and shouldn't keep two around for long. However, if I did send in a ship, you could defend yourself by swapping your y3 for an r3.\n\tJesse: The early game is about building up your fleet and gaining control over systems that will let you develop efficiently. That's mostly yellow, green, and blue.\n\n11) Jesse: Build Y1 Jesse\n\tJesse: That said, it isn't really bad to diversify into red, especially if your opponent follows along as I just did. I just usually wait until either I need to, or it forces my opponent to switch a piece he doesn't want to.\n\tJesse: G3s are great, but you probably shouldn't have switched your y3 for one at this point. You want a large ship at your homeworld for defense at all times, but you don't generally want your g3s at a green star, because you can't use them much. So it's usual if you start with a blue-green homeworld to wait until you can get a second large ship, and park the g3 at a blue or yellow system.\n\n12) Lexicon: Discover Y1 Lexicon G1 Circle\n\n13) Jesse: Trade Y1 G1 Jesse\n\tLexicon: I see what you mean, but it seemed like an excellent way to scoop up a stash of larger ships, such as the nearly depleted green pile there.\n\n14) Lexicon: Build G1 Lexicon\n\tJesse: Yeah, getting into green is a great idea. You want to switch a ship you can afford you move out of your home system, though.\n\tJesse: ...afford *to* move out...\n\tLexicon: ohhh, in this version it seems a sacrificed piece disappears immediately. in my version it lasted until the end of the round. \n\tJesse: I see, you were expecting to be able for instance to sacrifice the g3 and build a new green piece in that system, without another already there. No, it takes two green pieces to make a factory, so it's very dangerous to operate one in a green system.\n\tJesse: Tell you what, if you want to build a small green now and switch back to a y3, I'll refrain from sending my g1 in to blast you while you do it. That way, you've only lost one turn from the extra trade action. Of course, if you have other plans, that's fine too.\n\tLexicon: Exactly the problem. Another difference is that my rules didn't require you to own a ship of a given color to build a ship of that color. I'm starting to wonder if we even read the rulebook. \n\n15) Jesse: Discover G1 Jesse Y3 Delta\n\tJesse: That also makes a huge difference. It's a tricky dance to get the colors you want while trying to make it difficult for your opponent to get into them without taking a disadvantage somewhere else.\n\n16) Lexicon: Trade G3 Y3 Lexicon\n\n17) Jesse: Build R1 Jesse\n\n18) Lexicon: Discover G1 Lexicon Y1 Square\n\n19) Jesse: Build G2 Delta\n\n20) Lexicon: Build G3 Square\n\n21) Jesse: Discover G2 Delta B1 Shrew\n\n22) Lexicon: Sacrifice G3 Square\nBuild G3 Square\nBuild Y2 Lexicon\nBuild R2 Lexicon\n\tJesse: You can't afford to build that other g3, but you can at least use your greens as a factory, now.\n\n23) Jesse: Build G3 Shrew\n\tLexicon: Yay! It actually worked! :)\r\n\n\n24) Lexicon: Trade R2 B2 Lexicon\n\n25) Jesse: Sacrifice G3 Shrew\nBuild G3 Shrew\nBuild Y2 Jesse\nBuild Y2 Tree\n\n26) Lexicon: Move B2 Lexicon Square\n\tJesse: I'd like to get into blue, and to spread my reds out, but I'm snapping up these y2s while I can.\n\n27) Jesse: Move R1 Jesse Tree\n\tLexicon: I can see the benefit of such a plan. The resource scarcity is certainly coming into play now.\n\n28) Lexicon: Move B2 Square Tree\n\n29) Jesse: Attack B2 Tree\n\tLexicon: Opps. Meant to send him to Delta. Bye bye blue ship.\n\tJesse: Ouch! Yeah, I really hate when that happens. Too bad undo isn't implemented for Homeworlds yet.\n\tJesse: I don't like to win on a trivial mistake like that. We could ask Aaron for an undo, but he's got a lot on his plate. Instead, I could just be sporting and send him back to you.\n\n30) Lexicon: Build R2 Lexicon\n\tLexicon: When I'm doing teaching games I'm usually playing with a new iffy strategy or such to occupy my time. Winning against a new player isn't very satisfying.\n\n31) Jesse: Move B2 Tree Square\n\tJesse: Granted. It's even less satisfying when it's because of a typo. I'll often experiment against new players, too, or take a starting configuration that I know is inefficient. I otherwise like to exemplify sound strategy, particularly if it is supposed to be a teaching game (beyond just teaching the rules).\n\tJesse: Besides, there's a tactical lesson in what would happen after you moved the b2 to Delta, which is that I would probably use my factory to build a couple of r2s while simultaneously moving my g3 to Delta for protection. Even if I had done something as seemingly innocuous as moving a yellow to Shrew, there's a trap in it. If you attacked immediately by sacrificing your r1, I'd just move my g3 to your defenseless homeworld, and win shortly thereafter. If you built an r2 first, I could still do the maneuver I mentioned above, or even just move my g3 into Delta. Either way, it's not such good news for you.\n\tJesse: If you really want to invade Delta, you should do it with your g3. Unless, of course, you have some nefarious plan I don't know about that specifically calls for blue.\n\tJesse: Anyway, go ahead and take the blue guy back. It's a more interesting game if I have to work to get one for myself.\n\n32) Lexicon: Move R1 Lexicon Square\n\n33) Jesse: Move Y1 Tree Shrew\n\n34) Lexicon: Attack B2N Square\n\n35) Jesse: Trade G3 R3 Shrew\n\n36) Lexicon: Sacrifice G3 Square\nBuild G3 Square\nBuild R2 Square\nBuild B1 Square\n\tJesse: Since you already have two green ships at your only planet where you can build green, I can make trouble by trading out my g3, planning to build it back next turn.\n\tLexicon: I feel like I've screwed up by building too many things in a non-attacking position, as there's no way to get everything at your star in one go.\n\n37) Jesse: Build G3 Delta\n\n38) Lexicon: Discover R2 Square B3 Hex\n\tJesse: You may not have them in attack position right now, but you can move them there over the course of a few turns. It would have helped to take over Delta, since it's a system you could just chuck things in from one at a time for free. That's not always the best way to attack, but it's a nice option to have sometimes. You still have some production to do before you can attack effectively, so try working your way into attack position as you build. You might move a blue to an r3, or a red to a b3.\n\tJesse: You might also consider attacking my production systems. Tree is the least well protected, obviously.\n\tJesse: How to actually go about attacking a position defended by larges, particularly once large red ships are in the equation, can be hard to say. I usually take my time building a force and just keep looking for openings to squeeze out some advantage, like with that g3->r3 swap. To attack your homeworld, I might look for a good moment to move my y2 from Tree into an attack position where I could sac my home y2 to blast your yellow ships and force you to recall some ship for defense. You could look to do something similar to me, but you'd have a harder time since you have one less yellow ship.\n\tJesse: It would be hard for me to blast your system markers, since I don't have any blue yet, and blasting your green would call for a huge sacrifice on my part, so I'm really not sure how I'm going to take you out at this point. You have the advantage of a pretty good shot at blasting my blue, but green will be quite difficult.\n\tJesse: Is that helpful?\n\tLexicon: Yeah, that's making sense. It's coming together now that the resources are gone and each players abilities are more determined. Earlier it was too wide open for me to know what to do.\n\tLexicon: Sorry I've taken so long. Thanksgiving of course, but then I wanted to wait til I had time to sit and give this game a good long stare.\n\n39) Jesse: Discover G1 Delta B2 Shiny\n\tJesse: That's fine.\n\n40) Lexicon: Sacrifice G3 Square\nBuild G3 Square\nBuild R2 Square\nBuild R3 Hex\n\n41) Jesse: Sacrifice G3 Delta\nBuild G3 Shiny\nBuild Y3 Tree\nBuild R3 Tree\n\n42) Lexicon: Move B1 Square Hex\n\tLexicon: Neat trick!\n\n43) Jesse: Move Y2 Tree Circle\n\tJesse: With the stash running out now, things become quite difficult.\n\tJesse: That maneuver is called "cashing in an investment".\n\n44) Lexicon: Move Y2 Lexicon Square\n\n45) Jesse: Move R3 Tree Circle\n\n46) Lexicon: Move Y1 Circle Hex\n\n47) Jesse: Move Y2 Jesse Tree\n\n48) Lexicon: Sacrifice G3 Square\nBuild G3 Square\nBuild B2 Square\nBuild B3 Hex\n\tJesse: So, the idea now is to dance around and try to undermine each others' positions.\n\n49) Jesse: Sacrifice Y3 Tree\nMove Y2 Tree Square\nMove Y2 Circle Hex\nMove Y2 Hex Square\nCatastrophe Square Y\n\tJesse: I was hoping to do this more cheaply, but I think I'm going to have to go ahead and remove Square before you can take out my factory.\n\n50) Lexicon: Sacrifice B3 Hex\nTrade R3 G3 Hex\nTrade B1 G1 Hex\nPass\n\tJesse: Well, things look a little different all of a sudden, don't they?\n\tLexicon: I was wondering when it would come to that. That was quite the nuke you sent there.\n\n51) Jesse: Trade G3 Y3 Shiny\n\tLexicon: Well, I didn't get to nuke your homeworld, but that buildup of blue still saved my butt.\n\n52) Lexicon: Sacrifice G3 Hex\nBuild G3 Hex\nBuild Y1 Lexicon\nBuild Y2 Hex\n\n53) Jesse: Build G3 Shiny\n\n54) Lexicon: Move G1 Hex Shiny\n\n55) Jesse: Sacrifice G3 Shiny\nBuild G3 Shrew\nBuild Y2 Shiny\nBuild Y2 Shrew\n\n56) Lexicon: Trade Y1 B1 Lexicon\n\n57) Jesse: Move Y2 Shiny Circle\n\tJesse: Not bad, but I think you're in trouble...\n\n58) Lexicon: Sacrifice Y1 Hex\nMove G1 Shiny Hex\n\tLexicon: Oh, I'm definitly in trouble.\n\n59) Jesse: Sacrifice Y3 Shiny\nMove Y1 Shrew Lexicon\nMove Y2 Shrew Lexicon\nMove Y2 Circle Lexicon\nCatastrophe Lexicon Y\n\tJesse: Unless you specifically wanted to remove that y1, you should know that you could also have moved the g1 to Hex by sacrificing the g1 and rebuilding it.\n\n60) Lexicon: Sacrifice Y2 Hex\nMove G3 Hex Circle\nMove G3 Circle Lexicon\n\n61) Jesse: Sacrifice Y3 Jesse\nMove G2 Shrew Lexicon\nMove G3 Shrew Lexicon\nMove R3 Circle Lexicon\nCatastrophe Lexicon G\n\tLexicon: Things are not looking good for our hero. (my hero at least).\n\n62) Lexicon: Trade G1 Y1 Hex\n\tJesse: Not good, no. After that latest blast, I'll be taking the last of your homeworld defenders next turn.\n\n63) Jesse: Sacrifice R3 Shrew\nAttack R2 Lexicon\nAttack B1 Lexicon\nPass\n\tJesse: Thanks, and I hope the game and the discussion have been instructive.\n\tLexicon: sigh. I think it's time.\n\tLexicon: Yeah, I understand it way better now. I was pretty uninterested in it before this game, but I thought I'd try it out. It was fun! Thanks!\n\n\nHomeworlds Online (SDG# 1532)\nVariants: "Sinister"\nStarted: 2005.11.21, Ended: 2006.1.18\nParticipants: Aaron (S), Lexicon (W), Batman (N), porter235 (E)\nWinner: Lexicon\n\n1) Batman: Homeworld G3 B1 Y3\n\n2) porter235: Homeworld B3 G2 R3\n\n3) Aaron: Homeworld Y1 B2 G3\n\tAaron: Hail, all, and good luck!\n\n4) Lexicon: Homeworld B1 G2 Y3\n\n5) Batman: Build Y1 Batman\n\n6) porter235: Build R1 Porter235\n\n7) Aaron: Build G1 Aaron\n\n8) Lexicon: Build Y1 Lexicon\n\n9) Batman: Trade Y1 R1 Batman\n\n10) porter235: Trade R1 Y1 Porter235\n\n11) Aaron: Trade G1 R1 Aaron\n\n12) Lexicon: Trade Y1 R1 Lexicon\n\n13) Batman: Build Y1 Batman\n\n14) porter235: Build Y1 Porter235\n\n15) Aaron: Build G1 Aaron\n\n16) Lexicon: Build R1 Lexicon\n\n17) Batman: Trade Y1 R1 Batman\n\n18) porter235: Build R2 Porter235\n\n19) Aaron: Trade G1 Y1 Aaron\n\n20) Lexicon: Trade R1 G1 Lexicon\n\n21) Batman: Discover R1 Batman Y2 Robin\n\n22) Lexicon: Pass\n\tLexicon: Aaron: If someone is late to a game of Sinister and another player forces his resignation, does his right hand player win or does the right hand player's target shift? Not that we should hit porter235, I'm just curious about implimentation.\n\tLexicon: Also what happens in Sinister if a player resigns?\n\tJesse: I believe the effect of forcing resignation is equivalent to the player resigning voluntarily, and that this does not give a win for the player to the right. It's similar to a player being eliminated by anyone other than the player to the right; the right hand player's target shifts.\n\tLexicon: Ah, that makes sense.\n\tAaron: That is correct.\n\tLexicon: Well, porter hasn't played in 2 weeks nor logged in in 9 days. Anyone know what happened to him?\n\tAaron: No idea. I think we should go ahead and force his resignation. It sucks, but it has been 2 weeks.\n\tLexicon: I'm for it.\n\tLexicon: It's kind of rediculous. 3 of my 4 homeworlds games are in timesup. And the other one I accidentally resigned, it seems. Hard to get homeworlds love around here.\n\tLexicon: Actually, this had me thinking that good flags on active challenges might be newbies-only and no-newbies (require a certain rating or a certain number of games at game creation time.)\n\n23) Batman: Pass\n\tSYSTEM: porter235 resigns.\n\tLexicon: I resigned him. But now it thinks it's my turn. I'll pass and then Batman should pass and then it'll be in the right state.\n\n24) Aaron: Build G1 Aaron\n\n25) Lexicon: Build Y1 Lexicon\n\tAaron: I'm really sorry. The forced resignation code for this particular game has given my tons of trouble. I'm going to revisit it soon. Is everything OK now?\n\tAaron: I like the idea of a "minimum number of games played" flag. I will tackle that.\n\n26) Batman: Build Y2 Batman\n\tLexicon: Aaron: When you update the game code are you updating it for the current games or just for all newly created games? \n\n27) Aaron: Discover Y1 Aaron G3 Lime\n\tAaron: It depends on the change. Most changes affect all existing games as well. I can only think of one or two changes that only applied to newly created games.\n\n28) Lexicon: Discover G1 Lexicon Y3 Cedar\n\n29) Batman: Move Y2 Batman Robin\n\n30) Aaron: Build Y2 Lime\n\n31) Lexicon: Move Y1 Lexicon Cedar\n\n32) Batman: Build Y2 Batman\n\n33) Aaron: Build Y2 Lime\n\n34) Lexicon: Build Y3 Lexicon\n\n35) Batman: Build Y3 Batman\n\n36) Aaron: Sacrifice Y2 Lime\nMove Y2 Lime Lexicon\nMove Y1 Lime Lexicon\nCatastrophe Lexicon Y\n\n37) Lexicon: Move Y1 Cedar Lexicon\n\n38) Batman: Trade Y3 R3 Batman\n\tAaron: Thanks for the game, all!\n\n39) Aaron: Trade G1 Y1 Aaron\n\tAaron: rofl! sorry =D I thought I was in a different game.\n\tLexicon: Almost the apocalypse, but not quite. I saw that coming right as I pressed the submit button. Oh well. Perhaps Batman will defend me before you can finish me off. ;)\n\n40) Lexicon: Build Y2 Lexicon\n\n41) Batman: Move R3 Batman Robin\n\n42) Aaron: Build R1 Aaron\n\n43) Lexicon: Build G1 Cedar\n\n44) Batman: Move R3 Robin Cedar\n\n45) Aaron: Discover R1 Aaron G3 Lime\n\n46) Lexicon: Build R2 Lexicon\n\n47) Batman: Attack G1W Cedar\n\n48) Aaron: Move Y1 Aaron Lime\n\n49) Lexicon: Discover G1 Cedar Y2 Mold\n\n50) Batman: Build R2 Cedar\n\n51) Aaron: Build R2 Lime\n\n52) Lexicon: Discover Y1 Lexicon G3 Slime\n\n53) Batman: Move R3 Cedar Aaron\n\tAaron: Yellow mold? ick...\n\n54) Aaron: Attack R3N Aaron\n\n55) Lexicon: Build Y3 Lexicon\n\n56) Batman: Build G1 Cedar\n\n57) Aaron: Move R3 Aaron Cedar\n\n58) Lexicon: Build Y3 Slime\n\tBatman: I guess I understood that rule wrong.\n\n59) Batman: Build R2 Cedar\n\n60) Aaron: Move R3 Cedar Robin\n\n61) Lexicon: Trade R1 B1 Lexicon\n\n62) Batman: Move Y2 Robin Cedar\n\n63) Aaron: Attack R1N Robin\n\n64) Lexicon: Discover Y1 Slime B2 Octopus\n\n65) Batman: Build Y3 Cedar\n\n66) Aaron: Move R3 Robin Slime\n\n67) Lexicon: Sacrifice R2 Lexicon\nAttack R3S Slime\nPass\n\n68) Batman: Move Y3 Cedar Mold\n\n69) Aaron: Build R1 Aaron\n\tLexicon: Gah, you're attacking me just so I don't annihilate Cedar aren't you Aaron.\n\tLexicon: On another note, I think it'd be better if the moves referenced the player's names instead of their locations. I can never follow it unless I'm south. Aaron (S) would be better I think.\n\n70) Lexicon: Build R2 Slime\n\n71) Batman: Move R2 Cedar Mold\n\tAaron: That wasn't too smart of me, now was it?\n\n72) Aaron: Trade R1 G1 Aaron\n\n73) Lexicon: Move G1 Mold Slime\n\n74) Batman: Sacrifice Y2 Batman\nMove G1 Cedar Aaron\nMove G1 Cedar Aaron\nCatastrophe Aaron G\n\n75) Aaron: Trade R1 G1 Aaron\n\n76) Lexicon: Move R3 Slime Aaron\n\n77) Batman: Move R2 Cedar Lexicon\n\n78) Aaron: Build Y2 Lime\n\n79) Lexicon: Sacrifice R2 Slime\nAttack G1S Aaron\nAttack R2N Lexicon\n\n80) Batman: Build R1 Batman\n\tAaron: Thanks for the game, all!\n\n81) Lexicon: Trade R3 G3 Aaron\n\tLexicon: Aaron: I was considering keeping you around, but that probably wouldn't be very amusing to be toyed with like that, so I'll let you perish with honor. ;)\n\n82) Batman: Move R1 Batman Octopus\n\tAaron: Cheers =D\n\n83) Lexicon: Move Y1 Octopus Cedar\n\n84) Batman: Move Y3 Batman Octopus\n\n85) Lexicon: Move G3 Aaron Lime\n\n86) Batman: Move R2 Mold Cedar\n\n87) Lexicon: Move Y2 Lexicon Cedar\nCatastrophe Cedar Yellow\n\n88) Batman: Build R1 Batman\n\n89) Lexicon: Sacrifice Y3 Slime\nMove G3 Lime Octopus\nMove G3 Octopus Batman\nPass\n\tLexicon: Really?\n\n90) Batman: Trade R1 Y1 Batman\n\tLexicon: That's what I say to that! :)\n\n91) Lexicon: Sacrifice R2 Lexicon\nAttack R1N Batman\nAttack Y1N Batman\n\n\tLexicon: Good game! :)\n\nHomeworlds Online (SDG# 1565)\nStarted: 2005.11.22, Ended: 2005.12.10\nParticipants: Calavera (S), andylooney (N)\nWinner: Calavera\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) Calavera: Homeworld Y1 B3 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) Calavera: Build G1 Calavera\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Calavera: Trade G1 R1 Calavera\n\n7) andylooney: Build G1 Andylooney\n\n8) Calavera: Build G1 Calavera\n\n9) andylooney: Trade G1 R1 Andylooney\n\n10) Calavera: Discover G1 Calavera Y2 Riallanon\n\n11) andylooney: Discover G1 Andylooney Y3 Clampett\n\n12) Calavera: Discover G1 Riallanon B3 Krondor\n\n13) andylooney: Build Y1 Andylooney\n\n14) Calavera: Build G1 Calavera\n\n15) andylooney: Build G2 Clampett\n\n16) Calavera: Sacrifice G3 Calavera\nBuild G2 Krondor\nBuild G3 Krondor\nBuild G3 Calavera\n\n17) andylooney: Build G3 Clampett\n\n18) Calavera: Trade G2 Y2 Krondor\n\n19) andylooney: Discover G2 Clampett Y2 Plugh\n\n20) Calavera: Build Y1 Krondor\n\n21) andylooney: Discover Y1 Andylooney B3 Ibm\n\n22) Calavera: Trade Y1 B1 Krondor\n\n23) andylooney: Sacrifice G3 Clampett\nBuild G2 Clampett\nBuild G3 Plugh\nBuild Y1 Andylooney\n\n24) Calavera: Sacrifice Y2 Krondor\nMove G1 Krondor Plugh\nMove G1 Calavera Plugh\nCatastrophe Plugh G\n\n25) andylooney: Sacrifice G2 Clampett\nBuild Y2 Ibm\nBuild Y2 Ibm\n\n26) Calavera: Trade G3 Y3 Krondor\n\n27) andylooney: Trade Y1 G1 Ibm\n\n28) Calavera: Trade B1 G1 Krondor\n\n29) andylooney: Build G2 Clampett\n\n30) Calavera: Build G2 Calavera\n\n31) andylooney: Build G3 Ibm\n\n32) Calavera: Build G3 Krondor\n\n\tSYSTEM: andylooney resigns.\n\nHomeworlds Online (SDG# 1456)\nStarted: 2005.11.22, Ended: 2006.3.7\nParticipants: Cerulean (S), Personman (N), MatrixFrog (E)\nWinner: Cerulean\n\n1) Personman: Homeworld Y3 B2 G3\n\n2) MatrixFrog: Homeworld G3 B1 Y3\n\tPersonman: hey everyone.. this is my first game of multiplayer homeworlds, so forgive me if i do stupid things..\n\n3) Cerulean: Homeworld B1 G2 Y3\n\tMatrixFrog: The only difference in controls is having to specify whose ship you're attacking, by putting an "e" for me or an "s" for Cerulean. Good luck.\n\n4) Personman: Build G1 Personman\n\tCerulean: Thanks, personman. Now I can't get that song out of my head.\n\tPersonman: :)\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) Cerulean: Build Y1 Cerulean\n\n7) Personman: Build G1 Personman\n\n8) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n9) Cerulean: Build Y1 Cerulean\n\n10) Personman: Trade G1 B1 Personman\n\n11) MatrixFrog: Build Y1 Matrixfrog\n\n12) Cerulean: Trade Y1 G1 Cerulean\n\n13) Personman: Trade G1 Y1 Personman\n\n14) MatrixFrog: Discover G1 Matrixfrog Y2 Goldfish\n\n15) Cerulean: Discover Y1 Cerulean G3 Paldor\n\n16) Personman: Discover Y1 Personman G1 Imbroglio\n\n17) MatrixFrog: Build G1 Goldfish\n\n18) Cerulean: Discover G1 Cerulean B3 Besk\n\n19) Personman: Build G2 Personman\n\n20) MatrixFrog: Build Y1 Matrixfrog\n\n21) Cerulean: Build G2 Besk\n\n22) Personman: Sacrifice G3 Personman\nBuild G2 Personman\nBuild G3 Personman\nBuild Y2 Imbroglio\n\n23) MatrixFrog: Move G1 Goldfish Besk\n\n24) Cerulean: Build Y2 Cerulean\n\n25) Personman: Move G2 Personman Imbroglio\n\n26) MatrixFrog: Sacrifice Y1 Matrixfrog\nMove G1 Besk Cerulean\n\n27) Cerulean: Trade Y2 R2 Cerulean\n\n28) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild G3 Personman\nBuild B1 Personman\n\n29) MatrixFrog: Sacrifice G1 Cerulean\nBuild G1 Goldfish\n\n30) Cerulean: Trade G2 Y2 Besk\n\n31) Personman: Sacrifice Y2 Imbroglio\nDiscover G3 Personman Y1 Thurgood\nMove B1 Personman Thurgood\n\n32) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n33) Cerulean: Build G2 Besk\n\n34) Personman: Build B2 Thurgood\n\n35) MatrixFrog: Discover G1 Goldfish Y3 Marshall\n\n36) Cerulean: Build R1 Cerulean\n\n37) Personman: Sacrifice B2 Thurgood\nTrade G3 R3 Personman\nTrade G2 R2 Imbroglio\n\n38) MatrixFrog: Build G2 Marshall\n\n39) Cerulean: Move G2 Besk Cerulean\n\n40) Personman: Build G3 Thurgood\n\n41) MatrixFrog: Build R1 Matrixfrog\n\n42) Cerulean: Move R1 Cerulean Besk\n\n43) Personman: Move R2 Imbroglio Marshall\n\n44) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R2N Marshall\n\tMatrixFrog: I may not keep up with this game over Christmas, but most likely, it will not be a problem.\n\n45) Cerulean: Move R1 Besk Thurgood\n\n46) Personman: Discover B1 Thurgood Y2 Mathers\n\n47) MatrixFrog: Build Y1 Matrixfrog\n\n48) Cerulean: Move G2 Cerulean Paldor\n\n49) Personman: Sacrifice G3 Thurgood\nBuild G3 Thurgood\nBuild Y2 Imbroglio\nBuild B2 Mathers\n\n50) MatrixFrog: Build R1 Matrixfrog\n\n51) Cerulean: Discover G1 Besk B2 Sefeeria\n\n52) Personman: Move G3 Thurgood Mathers\n\n53) MatrixFrog: Build R1 Marshall\n\tPersonman: Undoing because I automatically typed thurgood marshall instead of thurgood mathers. Apologies.\n\n54) Cerulean: Move R1 Thurgood Mathers\n\n55) Personman: Discover B1 Mathers B3 Homsar\n\n56) MatrixFrog: Move G1 Goldfish Marshall\n\n57) Cerulean: Sacrifice Y1 Paldor\nMove G1 Sefeeria Marshall\nCatastrophe Marshall G\n\tMatrixFrog: I dooooo what I'm tooooooooooold.\n\tMatrixFrog: I don't think I've ever had this many systems in a game at once... I'm overwhelmed.\n\n58) Personman: Move Y1 Imbroglio Homsar\n\n59) MatrixFrog: Trade R1 G1 Matrixfrog\n\n60) Cerulean: Move R1 Mathers Homsar\n\n61) Personman: Move Y1 Homsar Mathers\n\n62) MatrixFrog: Move R2 Marshall Imbroglio\n\n63) Cerulean: Attack B1N Homsar\n\n64) Personman: Sacrifice Y2 Imbroglio\nMove G3 Thurgood Mathers\nMove G3 Mathers Matrixfrog\n\n65) MatrixFrog: Discover G1 Matrixfrog Y2 Mordor\n\n66) Cerulean: Discover Y2 Besk G1 Tinubi\n\n67) Personman: Sacrifice G3 Mathers\nBuild G1 Matrixfrog\nBuild G2 Matrixfrog\nBuild G3 Personman\nCatastrophe Matrixfrog G\n\n68) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n69) Cerulean: Sacrifice G2 Paldor\nBuild Y1 Tinubi\nBuild Y1 Cerulean\n\tPersonman: My first every catastrophe! I am excited!\n\tPersonman: er, first *ever*, that should say. I blame the excitedness.\n\n70) Personman: Move Y1 Mathers Tinubi\n\n71) MatrixFrog: Build R1 Imbroglio\n\n72) Cerulean: Move Y1 Cerulean Homsar\n\n73) Personman: Build Y1 Tinubi\nCatastrophe Tinubi Y\n\n74) MatrixFrog: Build Y1 Matrixfrog\n\n75) Cerulean: Discover B1 Homsar G1 Tinubi\n\n76) Personman: Sacrifice G2 Personman\nBuild G2 Personman\nBuild B2 Mathers\n\n77) MatrixFrog: Build G2 Matrixfrog\n\tCerulean: hey, look what I found!\n\n78) Cerulean: Move Y1 Homsar Tinubi\n\n79) Personman: Trade G2 Y2 Personman\n\n80) MatrixFrog: Build G2 Mordor\n\n81) Cerulean: Build B2 Tinubi\n\n82) Personman: Move B1 Personman Matrixfrog\n\n83) MatrixFrog: Attack B1N Matrixfrog\n\n84) Cerulean: Move B1 Tinubi Personman\n\n85) Personman: Sacrifice Y2 Personman\nMove B2 Mathers Matrixfrog\nMove B2 Mathers Matrixfrog\nCatastrophe Matrixfrog B\n\n86) Cerulean: Build B1 Tinubi\n\n87) Personman: Build G1 Personman\n\tPersonman: good game, matrixfrog! \n\n88) Cerulean: Move B1 Tinubi Personman\n\n89) Personman: Move R3 Personman Tinubi\n\n90) Cerulean: Sacrifice Y1 Tinubi\nMove B2 Tinubi Personman\nCatastrophe Personman B\n\n91) Personman: Build G2 Personman\n\tMatrixFrog: Grah. I think I'll stick to binary homeworlds for a while. Good game, you guys.\n\n92) Cerulean: Build Y1 Cerulean\n\tCerulean: WHAM!\n\n93) Personman: Move G2 Personman Mordor\n\n94) Cerulean: Move Y1 Cerulean Homsar\n\n95) Personman: Move G2 Mordor Homsar\n\n96) Cerulean: Move R1 Homsar Mordor\n\n97) Personman: Build R1 Tinubi\n\n98) Cerulean: Attack G1E Mordor\n\n99) Personman: Sacrifice R1 Tinubi\nAttack Y1S Homsar\n\n100) Cerulean: Build G2 Mordor\n\tMatrixFrog: It looks like I have the ability to force a surrender, even though I'm no longer part of the game. Have the members of SDG ever reached a consensus as to whether this is fair?\n\tCerulean: not that I know of. This absence is out of character for Personman, who's usually good at checking in. I generously wait on expired games before pulling the plug.\n\tPersonman: Sorry, I've been busy, and whenever I have a second I usually make a few fast moves in Frames but am never willing to spend the time to think about the relatively hopeless situation here. But I will go now, and keep it up til the end, I promise. \n\tPersonman: Woah. I submitted the following instructions: \r\ns r1 tinubi \r\na y1 homsar\r\nand got this error message: \r\nThe ship Y1 could not be found in the Homsar system.\r\nAm I missing something obvious, or is this some weird bug?\n\tMatrixFrog: I do too, so it's a non-issue in this case. But as a general rule, it's something that maybe should be discussed.\n\tMatrixFrog: Personman: try "y1s homsar"\n\n101) Personman: Move G1 Personman Mordor\nCatastrophe Mordor G\n\tPersonman: *smacks forehead* Thank you, MatrixFrog. \n\n102) Cerulean: Build Y1 Cerulean\n\n103) Personman: Build G1 Homsar\n\n104) Cerulean: Move Y1 Cerulean Marshall\n\n105) Personman: Build Y1 Homsar\n\n106) Cerulean: Move Y1 Marshall Imbroglio\n\n107) Personman: Build G1 Homsar\n\n108) Cerulean: Move R1 Mordor Homsar\n\n109) Personman: Trade G2 R2 Homsar\n\n110) Cerulean: Sacrifice R1 Homsar\nAttack R1E Imbroglio\n\n111) Personman: Move R2 Homsar Imbroglio\n\n112) Cerulean: Move R1 Imbroglio Homsar\n\n113) Personman: Attack Y1S Imbroglio\n\n114) Cerulean: Attack Y1N Homsar\n\n115) Personman: Move Y1 Homsar Tinubi\n\n116) Cerulean: Attack G1N Homsar\n\n117) Personman: Move R3 Tinubi Homsar\n\n118) Cerulean: Discover Y1 Homsar G2 Aqer\n\n119) Personman: Attack R1S Homsar\n\n120) Cerulean: Sacrifice G1 Homsar\nBuild Y1 Aqer\n\n121) Personman: Sacrifice Y1 Tinubi\nMove R1 Homsar Aqer\n\n122) Cerulean: Sacrifice Y1 Aqer\nDiscover Y1 Aqer G1 Ytttli\n\n123) Personman: Build Y1 Imbroglio\n\n124) Cerulean: Build R1 Cerulean\n\n125) Personman: Build Y1 Imbroglio\n\n126) Cerulean: Build Y2 Ytttli\n\n127) Personman: Sacrifice Y1 Imbroglio\nMove R3 Homsar Ytttli\n\n128) Cerulean: Sacrifice Y1 Ytttli\nMove Y2 Ytttli Aqer\n\n129) Cerulean: Move R1 Cerulean Homsar\n\n\tCerulean: thanks. I'm curious what you were up to, what in turns out was impossible. a very good game, nonetheless, and I'm always up for another one.\n\nHomeworlds Online (SDG# 1418)\nStarted: 2005.11.23, Ended: 2006.1.21\nParticipants: JunkMan (S), Roland (N)\nWinner: JunkMan\n\n\nHomeworlds Online (SDG# 1558)\nStarted: 2005.11.24, Ended: 2005.11.25\nParticipants: Calavera (S), TwoShort (N)\nWinner: Calavera\n\n1) TwoShort: Homeworld B1 Y2 G3\n\n2) Calavera: Homeworld G2 B3 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Calavera: Build Y1 Calavera\n\n5) TwoShort: Build G1 Twoshort\n\n6) Calavera: Trade Y1 G1 Calavera\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) Calavera: Discover G1 Calavera B1 Rillanon\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) Calavera: Build Y1 Calavera\n\n11) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n12) Calavera: Trade Y1 B1 Calavera\n\n13) TwoShort: Build G1 Twoshort\n\n14) Calavera: Build Y1 Calavera\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n16) Calavera: Sacrifice Y3 Calavera\nMove G1 Rillanon Bluestar\nMove G1 Bluestar Twoshort\nPass\nCatastrophe Twoshort G\n\tCalavera: Ooooh. Bad Move. Thanks for the game.\n\n\nHomeworlds Online (SDG# 1623)\nStarted: 2005.11.27, Ended: 2005.12.1\nParticipants: Uglyfoot (S), Murwiz (N)\nWinner: Uglyfoot\n\n1) Murwiz: Homeworld Y3 G2 B3\n\n2) Uglyfoot: Homeworld B2 G1 Y3\n\n3) Murwiz: Build B1 Murwiz\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\tMurwiz: We are Blow-cutous of Grob. We wish you no harm. We merely want to examine your planets for evidence of bio-life, and cleanse any that we find.\n\n5) Murwiz: Trade B1 Y1 Murwiz\n\tUglyfoot: surprise! I did not know that you had to use one of the same color...\n\tUglyfoot: Blow-cutous. Please to examine lower appendages while we apply them to your head.\r\n\n\n6) Uglyfoot: Discover Y1 Uglyfoot G3 Gateway\n\n7) Murwiz: Discover Y1 Murwiz G1 Garagedoor\n\n8) Uglyfoot: Build Y1 Uglyfoot\n\n9) Murwiz: Build Y2 Garagedoor\n\n10) Uglyfoot: Build Y2 Gateway\n\n11) Murwiz: Build B1 Murwiz\n\n12) Uglyfoot: Trade Y1 B1 Uglyfoot\n\n13) Murwiz: Move B1 Murwiz Garagedoor\n\n14) Uglyfoot: Move B1 Uglyfoot Gateway\n\n15) Murwiz: Build B1 Murwiz\n\tUglyfoot: OK. How's that for synchronizing our moves?\n\n16) Uglyfoot: Build B2 Gateway\n\n17) Murwiz: Trade B1 G1 Murwiz\n\n18) Uglyfoot: Trade B2 R2 Gateway\n\n19) Murwiz: Build G2 Murwiz\n\n20) Uglyfoot: Move R2 Gateway Garagedoor\n\n21) Murwiz: Sacrifice Y2 Garagedoor\nMove Y1 Garagedoor Gateway\nDiscover B1 Garagedoor G2 Portcullis\n\tUglyfoot: How's that blow?\n\n22) Uglyfoot: Move Y1 Gateway Garagedoor\n\tMurwiz: "The noble crew of the good ship North Y2 scuttled their boat rather than see it fall into enemy tentacles."\n\n23) Murwiz: Build G3 Murwiz\n\tUglyfoot: Nicely played!\n\n\tMurwiz: Shoot, I'm screwed. I moved too quickly and misread the board.\r\n\n\tSYSTEM: Murwiz resigns.\n\nHomeworlds Online (SDG# 1591)\nStarted: 2005.11.25, Ended: 2005.11.28\nParticipants: TwoShort (S), Calavera (N)\nWinner: TwoShort\n\n1) Calavera: Homeworld Y2 B2 G3 *\n\n2) TwoShort: Homeworld B2 Y2 G3 *\n\n3) Calavera: Build G1 Calavera\n\tTwoShort: I saw the problem with my move in the last game just after I hit submit. Doh. \n\n4) TwoShort: Build G1 Twoshort\n\tCalavera: Ah, well. The only way I was going to win was with such a cheap shot. \n\n5) Calavera: Discover G1 Calavera Y3 Rillanon\n\tCalavera: d g1 calavera y3 Rillanon\n\n6) TwoShort: Trade G1 R1 Twoshort\n\n7) Calavera: Move G1 Rillanon Calavera\n\n8) TwoShort: Build G1 Twoshort\n\n9) Calavera: Trade G3 Y3 Calavera\n\n10) TwoShort: Build R1 Twoshort\n\n11) Calavera: Build G1 Calavera\n\n12) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n13) Calavera: Trade G1 R1 Calavera\n\n14) TwoShort: Discover R1 Twoshort B3 Bluestar\n\n15) Calavera: Build Y1 Calavera\n\n16) TwoShort: Build R2 Twoshort\n\n17) Calavera: Build R2 Calavera\n\n18) TwoShort: Trade R1 Y1 Bluestar\n\n19) Calavera: Trade Y1 B1 Calavera\n\n20) TwoShort: Trade R2 G2 Twoshort\n\n21) Calavera: Discover G1 Calavera Y3 Krondor\n\n22) TwoShort: Move G2 Twoshort Krondor\n\n\tSYSTEM: Calavera resigns.\n\nHomeworlds Online (SDG# 1605)\nStarted: 2005.11.26, Ended: 2005.11.28\nParticipants: Calavera (S), MatrixFrog (N)\nWinner: Calavera\n\n1) MatrixFrog: Homeworld B1 G3 Y3\n\n2) Calavera: Homeworld Y1 B2 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Calavera: Build G1 Calavera\n\n5) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n6) Calavera: Build G1 Calavera\n\n7) MatrixFrog: Build G2 Matrixfrog\n\n8) Calavera: Discover G1 Calavera Y3 Rillanon\n\n9) MatrixFrog: Discover G1 Matrixfrog Y2 Fondue\n\n10) Calavera: Trade G1 R1 Calavera\n\n11) MatrixFrog: Discover G1 Fondue Y3 Epsilon\n\n12) Calavera: Build G1 Calavera\n\n13) MatrixFrog: Build G2 Matrixfrog\n\n14) Calavera: Sacrifice G3 Calavera\nBuild G2 Rillanon\nBuild G3 Rillanon\nBuild G3 Calavera\n\n15) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild G2 Epsilon\nBuild Y1 Matrixfrog\n\n16) Calavera: Discover G3 Rillanon B1 Krondor\n\tMatrixFrog: Sacrificial Teleportation!\n\n17) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove G1 Epsilon Calavera\nMove G2 Epsilon Calavera\nPass\nCatastrophe Calavera G\n\tCalavera: Bah, I thought you had a 2-3 star when I wote that move.\n\n18) Calavera: Move G2 Rillanon Calavera\n\n19) MatrixFrog: Build Y1 Matrixfrog\n\n20) Calavera: Build G1 Calavera\n\n21) MatrixFrog: Discover Y1 Matrixfrog G2 Endor\n\n22) Calavera: Sacrifice G3 Krondor\nBuild G1 Rillanon\nBuild G3 Calavera\nBuild G3 Rillanon\n\n23) MatrixFrog: Build Y2 Matrixfrog\n\n24) Calavera: Discover G3 Rillanon Y2 Crydee\n\n25) MatrixFrog: Trade G2 B2 Matrixfrog\n\n26) Calavera: Sacrifice G2 Calavera\nBuild G2 Crydee\nBuild G2 Crydee\n\n27) MatrixFrog: Move B2 Matrixfrog Crydee\n\n28) Calavera: Move G3 Crydee Matrixfrog\n\n29) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n30) Calavera: Sacrifice R1 Calavera\nAttack Y2 Matrixfrog\n\n31) MatrixFrog: Move B2 Crydee Matrixfrog\n\n32) Calavera: Trade G3 R3 Matrixfrog\n\n33) MatrixFrog: Attack Y2 Matrixfrog\n\n34) Calavera: Attack R1 Matrixfrog\n\n35) MatrixFrog: Build Y1 Matrixfrog\n\n36) Calavera: Attack B2 Matrixfrog\n\n37) MatrixFrog: Move Y1 Endor Matrixfrog\n\tCalavera: Game over next turn. Thanks for an enjoyable game.\n\n38) Calavera: Sacrifice R3 Matrixfrog\nAttack Y1 Matrixfrog\nAttack Y1 Matrixfrog\nAttack Y2 Matrixfrog\n\n\nHomeworlds Online (SDG# 1639)\nStarted: 2005.11.28, Ended: 2006.2.10\nParticipants: Jesse (S), andylooney (N)\nWinner: Jesse\n\n1) andylooney: Homeworld G1 B2 Y3\n\tJesse: Hi, Andy. Let's play again.\n\tandylooney: OK!\n\n2) Jesse: Homeworld Y3 B1 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) Jesse: Build G1 Jesse\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Jesse: Discover G1 Jesse B2 Robot\n\n7) andylooney: Build G2 Andylooney\n\n8) Jesse: Build G2 Jesse\n\n9) andylooney: Discover G2 Andylooney Y3 Monkey\n\n10) Jesse: Trade G2 Y2 Jesse\n\n11) andylooney: Build G2 Monkey\n\n12) Jesse: Build G2 Jesse\n\n13) andylooney: Discover G2 Monkey Y2 Pirate\n\n14) Jesse: Trade G2 R2 Jesse\n\n15) andylooney: Trade G1 R1 Andylooney\n\n16) Jesse: Move Y2 Jesse Robot\n\n17) andylooney: Build Y1 Andylooney\n\n18) Jesse: Build Y1 Robot\n\n19) andylooney: Discover Y1 Andylooney G3 Ninja\n\n20) Jesse: Trade Y1 B1 Robot\n\n21) andylooney: Build Y1 Andylooney\n\n22) Jesse: Build B1 Robot\n\n23) andylooney: Discover Y1 Andylooney B3 Ibm\n\n24) Jesse: Discover B1 Robot G3 Bumblebee\n\n25) andylooney: Build Y1 Ninja\n\n26) Jesse: Build Y2 Robot\n\n27) andylooney: Sacrifice G2 Monkey\nBuild Y3 Ibm\nBuild R1 Andylooney\n\n28) Jesse: Build B2 Bumblebee\n\n29) andylooney: Discover R1 Andylooney B3 Meanie\n\n30) Jesse: Build B3 Bumblebee\n\n31) andylooney: Sacrifice Y3 Ibm\nMove Y1 Ninja Robot\nMove Y1 Ibm Robot\nDiscover G2 Pirate Y3 Howell\nCatastrophe Robot Yellow\n\tJesse: I should hopefully be getting back to a more normal pace now.\n\n32) Jesse: Build B3 Robot\n\n33) andylooney: Build Y1 Ninja\n\n34) Jesse: Trade B2 Y2 Bumblebee\n\n35) andylooney: Discover Y1 Ninja B2 Bomber\n\n36) Jesse: Trade B3 R3 Bumblebee\n\n37) andylooney: Discover R1 Andylooney B3 Max\n\n38) Jesse: Build G1 Jesse\n\n39) andylooney: Build G2 Howell\n\n40) Jesse: Sacrifice G3 Jesse\nBuild G2 Robot\nBuild G3 Jesse\nBuild R1 Jesse\n\n41) andylooney: Sacrifice G2 Howell\nBuild R2 Max\nBuild R2 Meanie\n\tandylooney: Ugh, you're killing me here, Jesse!\n\n42) Jesse: Trade B3 R3 Robot\n\tJesse: I've been taking time to think and play carefully, as I must against you. It's a tough game.\n\n43) andylooney: Trade R2 Y2 Max\n\n44) Jesse: Trade G2 Y2 Robot\n\n45) andylooney: Sacrifice G2 Howell\nBuild Y1 Max\nBuild Y3 Bomber\n\n46) Jesse: Build B3 Bumblebee\n\n47) andylooney: Trade R2 G2 Meanie\n\n48) Jesse: Sacrifice Y2 Bumblebee\nMove R3 Bumblebee Andylooney\nMove B3 Bumblebee Andylooney\n\tJesse: Lasers in the night\r\nThe steely eyed captain's gaze\r\nBurns your very world\n\n49) andylooney: Build Y2 Andylooney\n\tandylooney: With no hope of victory, we're turning our flagship into an ark, loading it up with representative samples of our history, culture, favorite life forms, and of course, a few thousand annointed survivors, and we're embarking for a new life in a distant galaxy...\n\tandylooney: Dang, the system won't let me abandon my homeworld! I tried doing this and failed: discover y3 andylooney r3 Firebird\r\nOh well, I guess you'll just have to destroy me...\n\n50) Jesse: Sacrifice R2 Jesse\nAttack Y2 Andylooney\nAttack Y3 Andylooney\n\tJesse: Yeah, technically the rules state that self-elimination is not allowed.\n\tJesse: Thanks for the game; it's always a pleasure.\n\n\nHomeworlds Online (SDG# 1633)\nStarted: 2005.11.28, Ended: 2005.12.13\nParticipants: jeep (S), Calavera (N)\nWinner: jeep\n\n1) Calavera: Homeworld G2 B2 Y3 *\n\n2) jeep: Homeworld B1 Y2 G3\n\n3) Calavera: Build Y1 Calavera\n\n4) jeep: Build G1 Jeep\n\n5) Calavera: Build Y1 Calavera\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) Calavera: Trade Y1 G1 Calavera\n\n8) jeep: Build G1 Jeep\n\n9) Calavera: Trade Y1 R1 Calavera\n\n10) jeep: Trade G1 R1 Jeep\n\n11) Calavera: Discover G1 Calavera B3 Goodtimes\n\n12) jeep: Discover Y1 Jeep G3 Moon\n\n13) Calavera: Build G1 Goodtimes\n\n14) jeep: Build R1 Jeep\n\n15) Calavera: Build R2 Calavera\n\n16) jeep: Move R1 Jeep Moon\n\tjeep: Yeah, I'm dumb. I'm going to wait until tomorrow and some sleep before I move again. ;)\n\n17) Calavera: Move R2 Calavera Moon\n\n18) jeep: Build R2 Moon\n\n19) Calavera: Build R2 Moon\nCatastrophe Moon R\n\n20) jeep: Build Y1 Moon\n\n21) Calavera: Trade G1 Y1 Goodtimes\n\n22) jeep: Build Y2 Moon\n\n23) Calavera: Build Y2 Goodtimes\n\n24) jeep: Move Y1 Moon Calavera\n\n25) Calavera: Attack Y1 Calavera\n\n26) jeep: Move Y1 Moon Calavera\n\n27) Calavera: Trade Y3 G3 Calavera\n\n28) jeep: Sacrifice R1 Jeep\nAttack R1N Calavera\n\n29) Calavera: Trade Y2 R2 Goodtimes\n\n30) jeep: Attack Y1N Calavera\n\n31) Calavera: Sacrifice R2 Goodtimes\nAttack R1 Calavera\nAttack Y1 Calavera\n\n32) jeep: Discover Y1 Calavera G1 Builder\n\n33) Calavera: Sacrifice G3 Calavera\nBuild Y2 Goodtimes\nBuild Y3 Goodtimes\nBuild Y3 Calavera\n\n34) jeep: Move Y1 Builder Goodtimes\nCatastrophe Goodtimes Yellow\n\n35) Calavera: Sacrifice Y1 Calavera\nMove G1 Goodtimes Jeep\n\n36) jeep: Trade G3 R3 Jeep\n\n37) Calavera: Discover G1 Jeep B3 Waterworld\n\n38) jeep: Build Y1 Moon\n\n39) Calavera: Build R1 Calavera\n\n40) jeep: Move Y2 Moon Jeep\n\n41) Calavera: Move R1 Calavera Waterworld\n\n42) jeep: Trade Y2 G2 Jeep\n\n43) Calavera: Build G1 Waterworld\n\n44) jeep: Build G1 Jeep\n\n45) Calavera: Trade G1 Y1 Waterworld\n\n46) jeep: Trade G1 B1 Jeep\n\n47) Calavera: Build G1 Waterworld\n\n48) jeep: Build G1 Jeep\n\n49) Calavera: Discover G1 Waterworld B2 Bas-tyra\n\n50) jeep: Trade G2 R2 Jeep\n\n51) Calavera: Build G2 Bas-tyra\n\n52) jeep: Build Y1 Moon\n\n53) Calavera: Trade G2 Y2 Bas-tyra\n\tjeep: The problem with web games is that you sometimes forget what you were doing. It's not a problem, unless you remember it the NEXT turn. ;)\n\n54) jeep: Move R2 Jeep Waterworld\n\tCalavera: I find the problem is my opponent almost never does what I think he's going to do, so any 'plan' i have is ruined almost immediatly.\n\n55) Calavera: Build R1 Waterworld\n\n56) jeep: Attack G1N Waterworld\n\n57) Calavera: Attack G1 Waterworld\n\tCalavera: Oi! That's mine!\n\n58) jeep: Build G2 Jeep\n\tjeep: That could go on forever, I'll just give it up and play elsewhere, I guess...\n\n59) Calavera: Build Y2 Bas-tyra\n\n60) jeep: Attack G1N Waterworld\n\tCalavera: I've not played this game in real life? Does it ever get to a stage where it has to be given up because of a similar situation. I know if you had kept stealing my G1, I'd have kept stealing it back.\n\tjeep: Nod, I've only played a couple times and never came upon it. \n\tjeep: Hmm... I thought I made this move already!! Have to remember what it is. Sorry for the delay.\n\n61) Calavera: Attack G1 Waterworld\n\n62) jeep: Discover Y1 Moon B1 Station\n\n63) Calavera: Build Y3 Waterworld\n\n64) jeep: Sacrifice G2 Jeep\nBuild Y3 Station\nBuild R2 Waterworld\nCatastrophe Waterworld Red\n\n65) Calavera: Sacrifice Y2 Bas-tyra\nMove Y2 Bas-tyra Station\nMove Y1 Waterworld Station\nCatastrophe Station Y\n\n66) jeep: Build G2 Jeep\n\n67) Calavera: Build G2 Bas-tyra\n\n68) jeep: Trade G2 Y2 Jeep\n\n69) Calavera: Build Y1 Calavera\n\n70) jeep: Build Y1 Moon\n\n71) Calavera: Trade Y1 B1 Calavera\n\n\tCalavera: This game has slowed down considerbly. I don't really have the paitence to continue playing at this pace.\n\tSYSTEM: Calavera resigns.\n\nHomeworlds Online (SDG# 1655)\nStarted: 2005.11.29, Ended: 2005.12.20\nParticipants: benedict (S), CDRodeffer (N)\nWinner: benedict\n\n1) CDRodeffer: Homeworld B1 G2 Y3\n\n2) benedict: Homeworld G2 B3 Y3\n\n3) CDRodeffer: Build Y1 Cdrodeffer\n\n4) benedict: Build Y1 Benedict\n\n5) CDRodeffer: Trade Y1 R1 Cdrodeffer\n\n6) benedict: Trade Y1 R1 Benedict\n\n7) CDRodeffer: Build Y1 Cdrodeffer\n\n8) benedict: Build Y1 Benedict\n\n9) CDRodeffer: Trade Y1 B1 Cdrodeffer\n\n10) benedict: Trade Y1 G1 Benedict\n\n11) CDRodeffer: Build Y1 Cdrodeffer\n\n12) benedict: Build G1 Benedict\n\n13) CDRodeffer: Build Y1 Cdrodeffer\n\n14) benedict: Discover G1 Benedict Y1 Barony\n\n15) CDRodeffer: Discover Y1 Cdrodeffer G3 Phlegm\n\n16) benedict: Build Y2 Benedict\n\n17) CDRodeffer: Build Y2 Phlegm\n\n18) benedict: Move Y2 Benedict Barony\n\n19) CDRodeffer: Move Y1 Phlegm Barony\n\n20) benedict: Sacrifice R1 Benedict\nAttack Y1 Barony\n\n21) CDRodeffer: Move Y2 Phlegm Barony\nCatastrophe Barony Yellow\n\tbenedict: hmmm. that may not hav been the best move for me to make...\n\n22) benedict: Build Y1 Benedict\n\tCDRodeffer: You're probably right about that. But now we're (almost) back where we started.\n\n23) CDRodeffer: Trade Y1 G1 Cdrodeffer\n\n24) benedict: Trade Y1 R1 Benedict\n\n25) CDRodeffer: Build Y1 Cdrodeffer\n\n26) benedict: Build Y1 Benedict\n\n27) CDRodeffer: Discover Y1 Cdrodeffer B3 Marble\n\n28) benedict: Build G1 Benedict\n\n29) CDRodeffer: Build B1 Cdrodeffer\n\n30) benedict: Discover G1 Benedict Y1 Carpe_diem\n\tCDRodeffer: I made a tactical error in my previous turn. Fortunately, you didn't capitalize on it.\n\tbenedict: and you could have destroyed my green technology on your turn, so I'm glad you didn't do that!\n\n31) CDRodeffer: Build Y2 Cdrodeffer\n\n32) benedict: Discover Y1 Benedict R1 Nosebleed\n\n33) CDRodeffer: Move Y2 Cdrodeffer Marble\n\tCDRodeffer: I didn't want to immediately destroy your home green technology. That would have given us each direct access to the other's home worlds too quickly.\n\n34) benedict: Build R2 Benedict\n\tbenedict: ah, ok\n\n35) CDRodeffer: Build R2 Cdrodeffer\n\n36) benedict: Trade R2 B2 Benedict\n\n37) CDRodeffer: Sacrifice Y2 Marble\nMove B1 Cdrodeffer Marble\nMove R2 Cdrodeffer Marble\n\n38) benedict: Build Y2 Benedict\n\n39) CDRodeffer: Build Y2 Cdrodeffer\n\n40) benedict: Move B2 Benedict Carpe_diem\n\n41) CDRodeffer: Move G1 Cdrodeffer Marble\n\n42) benedict: Build B2 Carpe_diem\n\n43) CDRodeffer: Discover B1 Marble G2 Dangersense\n\n44) benedict: Build G3 Carpe_diem\n\n45) CDRodeffer: Build G3 Marble\n\n46) benedict: Sacrifice G1 Benedict\nBuild Y2 Nosebleed\n\n47) CDRodeffer: Move Y1 Marble Dangersense\n\n48) benedict: Discover G3 Carpe_diem Y3 Barony\n\n49) CDRodeffer: Move Y2 Cdrodeffer Marble\n\n50) benedict: Build R2 Benedict\n\n51) CDRodeffer: Move G3 Marble Nosebleed\n\n52) benedict: Sacrifice Y1 Nosebleed\nMove Y2 Nosebleed Dangersense\n\n53) CDRodeffer: Sacrifice Y1 Dangersense\nMove G3 Nosebleed Dangersense\n\n54) benedict: Sacrifice Y2 Dangersense\nMove B2 Carpe_diem Barony\nMove B2 Carpe_diem Barony\n\n55) CDRodeffer: Sacrifice Y2 Marble\nMove B1 Cdrodeffer Barony\nMove G3 Dangersense Carpe_diem\n\n56) benedict: Trade B2 R2 Barony\n\n57) CDRodeffer: Move B1 Barony Carpe_diem\n\n58) benedict: Move G1 Carpe_diem Barony\n\n59) CDRodeffer: Build B2 Dangersense\n\n60) benedict: Build B2 Barony\n\n61) CDRodeffer: Trade B1 Y1 Dangersense\n\n62) benedict: Build Y1 Benedict\n\n63) CDRodeffer: Build Y2 Dangersense\n\n64) benedict: Discover Y1 Benedict B1 Hegemony\n\n65) CDRodeffer: Move Y2 Dangersense Hegemony\n\n66) benedict: Move Y1 Hegemony Barony\n\n67) CDRodeffer: Build Y2 Dangersense\n\n68) benedict: Move G3 Barony Hegemony\n\n69) CDRodeffer: Move Y2 Hegemony Benedict\n\n70) benedict: Move Y2 Benedict Hegemony\n\n71) CDRodeffer: Discover Y2 Benedict R1 Nosebleed\n\n72) benedict: Build R3 Barony\n\n73) CDRodeffer: Build R3 Marble\n\n74) benedict: Move R3 Barony Dangersense\n\n75) CDRodeffer: Sacrifice Y2 Dangersense\nMove Y1 Dangersense Barony\nMove Y2 Nosebleed Barony\nCatastrophe Barony Yellow\n\n76) benedict: Attack B2 Dangersense\n\n77) CDRodeffer: Build G1 Carpe_diem\n\n78) benedict: Trade R3 G3 Dangersense\n\n79) CDRodeffer: Sacrifice G3 Carpe_diem\nBuild G1 Marble\nBuild G3 Carpe_diem\nBuild Y1 Cdrodeffer\n\n80) benedict: Build Y1 Hegemony\n\n81) CDRodeffer: Move Y1 Cdrodeffer Marble\n\n82) benedict: Trade G3 Y3 Dangersense\n\n83) CDRodeffer: Sacrifice G3 Carpe_diem\nBuild G3 Carpe_diem\nBuild B2 Carpe_diem\nBuild Y2 Cdrodeffer\n\n84) benedict: Build Y2 Dangersense\n\n85) CDRodeffer: Sacrifice Y2 Cdrodeffer\nMove R3 Marble Cdrodeffer\nMove G1 Marble Cdrodeffer\n\n86) benedict: Build Y2 Benedict\n\n87) CDRodeffer: Sacrifice G3 Carpe_diem\nBuild G3 Carpe_diem\nBuild G3 Marble\nBuild R1 Marble\n\n88) benedict: Move R1 Benedict Hegemony\n\n89) CDRodeffer: Move R1 Marble Carpe_diem\n\n90) benedict: Discover Y2 Dangersense R3 Julius\n\n91) CDRodeffer: Sacrifice G3 Carpe_diem\nBuild G3 Carpe_diem\nBuild R2 Marble\nBuild R3 Carpe_diem\n\n92) benedict: Sacrifice Y2 Benedict\nMove Y1 Hegemony Julius\nMove Y2 Hegemony Julius\n\n93) CDRodeffer: Discover Y3 Cdrodeffer B3 Neptune\n\n94) benedict: Sacrifice Y3 Dangersense\nMove Y1 Julius Carpe_diem\nMove Y2 Julius Carpe_diem\nMove Y2 Julius Carpe_diem\nCatastrophe Carpe_diem Y\n\n95) CDRodeffer: Move Y3 Neptune Dangersense\n\n96) benedict: Build Y1 Benedict\n\n97) CDRodeffer: Move R2 Marble Dangersense\n\n98) benedict: Move Y1 Benedict Hegemony\n\n99) CDRodeffer: Attack B2 Dangersense\n\n100) benedict: Build G1 Hegemony\n\n101) CDRodeffer: Sacrifice G3 Marble\nBuild G3 Marble\nBuild Y1 Dangersense\nBuild Y2 Marble\n\n102) benedict: Sacrifice G3 Hegemony\nBuild G3 Hegemony\nBuild Y2 Hegemony\nBuild R1 Hegemony\n\n103) CDRodeffer: Discover G1 Marble B1 Royal\n\n104) benedict: Discover Y2 Hegemony R3 Outpost\n\n105) CDRodeffer: Sacrifice G3 Marble\nBuild G3 Royal\nBuild B2 Dangersense\nBuild B2 Dangersense\n\n106) benedict: Move G1 Hegemony Outpost\n\n107) CDRodeffer: Sacrifice Y3 Dangersense\nMove B2 Dangersense Hegemony\nMove B2 Dangersense Hegemony\nMove B2 Dangersense Hegemony\nCatastrophe Hegemony Blue\n\n108) benedict: Build G3 Outpost\n\n109) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\n110) benedict: Discover G1 Outpost Y2 Avalon\n\n111) CDRodeffer: Build Y3 Cdrodeffer\n\n112) benedict: Build Y3 Outpost\n\n113) CDRodeffer: Discover Y3 Cdrodeffer G3 Dotdotdot\n\n114) benedict: Move G3 Outpost Avalon\n\n115) CDRodeffer: Sacrifice Y1 Marble\nMove G1 Royal Marble\n\n116) benedict: Build R1 Benedict\n\n117) CDRodeffer: Sacrifice Y2 Marble\nMove Y1 Cdrodeffer Outpost\nMove Y1 Dangersense Outpost\nCatastrophe Outpost Yellow\n\n118) benedict: Discover R1 Benedict Y1 Smallville\n\n119) CDRodeffer: Move Y3 Dotdotdot Smallville\n\n120) benedict: Move R1 Smallville Avalon\n\n121) CDRodeffer: Build G1 Marble\n\n122) benedict: Discover G1 Avalon Y3 Wessex\n\n123) CDRodeffer: Trade G1 Y1 Marble\n\n124) benedict: Build G1 Avalon\n\n125) CDRodeffer: Build G3 Marble\n\n126) benedict: Sacrifice G3 Avalon\nBuild R1 Benedict\nBuild R3 Avalon\nBuild G3 Wessex\n\n127) CDRodeffer: Sacrifice G3 Marble\nBuild G3 Marble\nBuild R3 Dangersense\nBuild Y1 Marble\n\n128) benedict: Build Y2 Benedict\n\n129) CDRodeffer: Move Y1 Marble Royal\n\n130) benedict: Discover Y2 Benedict B1 Blueberry\n\n131) CDRodeffer: Build Y2 Royal\n\n132) benedict: Trade R2 B2 Benedict\n\n133) CDRodeffer: Trade R2 B2 Marble\n\n134) benedict: Move B2 Benedict Blueberry\n\n135) CDRodeffer: Move Y1 Royal Dangersense\n\n136) benedict: Move B2 Blueberry Avalon\n\n137) CDRodeffer: Move R2 Dangersense Smallville\n\n138) benedict: Sacrifice G3 Wessex\nBuild G3 Wessex\nBuild R2 Benedict\nBuild B2 Avalon\n\n139) CDRodeffer: Move B2 Marble Smallville\n\n140) benedict: Sacrifice Y2 Blueberry\nMove R3 Avalon Wessex\nMove R3 Wessex Cdrodeffer\n\n141) CDRodeffer: Attack R3 Cdrodeffer\n\tCDRodeffer: Aaaaaaahhh!!!!\n\n142) benedict: Sacrifice Y3 Benedict\nMove R1 Avalon Wessex\nMove R1 Wessex Cdrodeffer\nPass\nCatastrophe Cdrodeffer R\n\n\nHomeworlds Online (SDG# 1604)\nStarted: 2005.11.30, Ended: 2006.1.17\nParticipants: jeep (S), TwoShort (N)\nWinner: jeep\n\n1) TwoShort: Homeworld B1 Y2 G3\n\n2) jeep: Homeworld Y3 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) jeep: Build G1 Jeep\n\n5) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n6) jeep: Discover G1 Jeep B2 Moon\n\n7) TwoShort: Build G1 Twoshort\n\n8) jeep: Build G2 Jeep\n\n9) TwoShort: Build G2 Yolonda\n\n10) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G3 Jeep\nBuild G3 Moon\n\n11) TwoShort: Discover G1 Yolonda Y2 Yak\n\n12) jeep: Trade G2 Y2 Jeep\n\n13) TwoShort: Trade G1 Y1 Twoshort\n\n14) jeep: Move Y2 Jeep Moon\n\n15) TwoShort: Build G1 Twoshort\n\n16) jeep: Build Y1 Moon\n\n17) TwoShort: Discover Y1 Twoshort B3 Bluonia\n\n18) jeep: Discover G1 Moon Y3 Station\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yak\nBuild G3 Twoshort\nBuild Y1 Bluonia\n\n20) jeep: Move G3 Moon Station\n\n21) TwoShort: Trade G1 R1 Twoshort\n\n22) jeep: Trade G2 R2 Jeep\n\n23) TwoShort: Discover Y1 Bluonia B2 Bluestar\n\n24) jeep: Move G3 Station Moon\n\n25) TwoShort: Sacrifice G2 Yolonda\nBuild Y3 Bluestar\nBuild G1 Twoshort\n\tjeep: Sorry, tough decision there.\n\n26) jeep: Build G2 Station\n\n27) TwoShort: Move G1 Twoshort Station\n\n28) jeep: Sacrifice G2 Station\nBuild G2 Moon\nBuild R1 Jeep\n\n29) TwoShort: Build G2 Station\n\n30) jeep: Move R1 Jeep Moon\n\tTwoShort: Just FYI: I'll be travelling for the next two weeks, and I'm not sure if/when I'll have net aceess, so I might disapear for a while.\n\tjeep: No problem. I'll be travelling Xmas week.\n\n31) TwoShort: Sacrifice Y3 Bluestar\nMove G2 Station Moon\nMove G1 Station Moon\nMove G2 Yak Station\nCatastrophe Moon Green\n\n32) jeep: Discover Y1 Moon Y3 Stopper\n\tjeep: Merry Xmas! I have intermittant access for the rest of the week. I'll print out the position and move soon-ish.\n\n33) TwoShort: Sacrifice G1 Yak\nBuild Y2 Bluestar\n\tjeep: I tried to move yesterday, but got errors. Looks like Aaron fixed them. I won't have access tomorrow and maybe not the next. I'll be home on the 31st, though.\n\n34) jeep: Build G1 Jeep\n\tjeep: I'm home, I should be back to one move per day or more.\n\n35) TwoShort: Build G1 Twoshort\n\n36) jeep: Sacrifice G3 Jeep\nBuild G2 Station\nBuild G2 Station\nBuild G3 Jeep\n\tjeep: Yesterday, all I could see was a red X. today it's better again.\n\n37) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Twoshort\nBuild R1 Twoshort\nCatastrophe Station Green\n\n38) jeep: Sacrifice G1 Jeep\nBuild Y3 Moon\n\tjeep: *laugh* I thought I had a green that could go in if you built two greens...\n\n39) TwoShort: Move G3 Twoshort Stopper\n\n40) jeep: Build G1 Jeep\n\n41) TwoShort: Sacrifice R1 Twoshort\nAttack Y1S Stopper\n\n42) jeep: Move Y2 Moon Bluonia\n\n43) TwoShort: Discover Y1 Stopper R2 D2\n\n44) jeep: Move G1 Jeep Moon\n\n45) TwoShort: Sacrifice G3 Stopper\nBuild Y3 Bluonia\nBuild R1 Twoshort\nPass\n\n46) jeep: Move Y2 Bluonia D2\n\n47) TwoShort: Move Y3 Bluonia D2\n\n48) jeep: Move Y2 D2 Bluonia\n\n49) TwoShort: Discover Y1 Bluonia G2 Gordo\n\n50) jeep: Build R2 Moon\n\n51) TwoShort: Discover R1 Twoshort G3 Grogar\n\n52) jeep: Move R2 Moon Grogar\n\n53) TwoShort: Build R3 Grogar\n\n54) jeep: Sacrifice G3 Jeep\nBuild R3 Jeep\nBuild R3 Moon\nBuild G1 Moon\n\n55) TwoShort: Sacrifice Y2 Bluestar\nMove R3 Grogar Bluestar\nMove R3 Bluestar Jeep\n\n56) jeep: Sacrifice R2 Jeep\nAttack R3N Jeep\nAttack R1N Grogar\n\n57) TwoShort: Build Y2 Gordo\n\tTwoShort: Ack! I completely missed that.\n\n58) jeep: Build R2 Grogar\n\tjeep: I had clicked "confirm resignation" and went back for a second look when I saw it.\n\n59) TwoShort: Sacrifice Y3 D2\nMove Y1 D2 Jeep\nMove Y1 Bluestar Jeep\nMove Y1 Gordo Jeep\nCatastrophe Jeep Yellow\n\n60) jeep: Build R2 Moon\n\tjeep: Ouch.\n\n61) TwoShort: Build Y1 Gordo\n\tTwoShort: Unfortunately, blowing up halh your homeworld is just petty vandalism before I lose. Still, it's fun to be part of a game that had such a dramatic turnaround on one overlooked move. I just wish I saw another dramatic reveral in the offing....\n\n62) jeep: Sacrifice Y2 Bluonia\nMove R2 Grogar Twoshort\nMove R2 Grogar Twoshort\n\tjeep: I don't know if I should be cautious of go all out...\n\n63) TwoShort: Attack R2S Twoshort\n\tTwoShort: You should definitely go all out, throwing caution to the wind, to the point that you make a critical oversight.... \n\n64) jeep: Sacrifice R3 Moon\nAttack R2N Twoshort\nAttack R1N Twoshort\nAttack G1N Twoshort\n\n\tTwoShort: Well, I'm not seeing that critical oversight... good game.\n\nHomeworlds Online (SDG# 1678)\nStarted: 2005.12.1, Ended: 2005.12.10\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld B1 R2 G3\n\n2) jeep: Homeworld Y3 B2 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Trade G1 Y1 Sketchwick\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Build G1 Jeep\n\n9) sketchwick: Discover G1 Sketchwick G3 Jolly\n\n10) jeep: Discover G1 Jeep B1 Happy\n\n11) sketchwick: Build Y1 Sketchwick\n\n12) jeep: Build Y2 Jeep\n\n13) sketchwick: Move Y1 Sketchwick Jolly\n\n14) jeep: Move Y1 Jeep Happy\n\n15) sketchwick: Build Y2 Sketchwick\n\n16) jeep: Move G1 Happy Jolly\n\n17) sketchwick: Discover Y1 Jolly B1 Bean\n\n18) jeep: Build G1 Jeep\n\n19) sketchwick: Build G2 Sketchwick\n\n20) jeep: Discover Y2 Jeep R1 Burrito\n\n21) sketchwick: Sacrifice G3 Sketchwick\nBuild Y2 Bean\nBuild Y3 Bean\nBuild Y3 Sketchwick\n\n22) jeep: Sacrifice Y2 Burrito\nMove Y1 Happy Jolly\nMove Y1 Jolly Sketchwick\nCatastrophe Sketchwick Yellow\n\n23) sketchwick: Build G2 Sketchwick\n\n24) jeep: Trade G1 R1 Jeep\n\n25) sketchwick: Trade G2 R2 Sketchwick\n\n26) jeep: Build R1 Jeep\n\n27) sketchwick: Trade Y2 R2 Bean\n\n28) jeep: Trade R1 Y1 Jeep\n\n29) sketchwick: Discover Y1 Bean B2 Giant\n\n30) jeep: Build R1 Jeep\n\n31) sketchwick: Build R1 Sketchwick\n\n32) jeep: Discover R1 Jeep G1 Growth\n\n33) sketchwick: Trade R1 Y1 Sketchwick\n\n34) jeep: Sacrifice R1 Growth\nAttack G1N Jolly\n\n35) sketchwick: Sacrifice G2 Sketchwick\nBuild Y2 Sketchwick\nBuild Y2 Giant\n\n36) jeep: Discover Y1 Jeep G1 Wurm\n\n37) sketchwick: Trade R2 G2 Sketchwick\n\n38) jeep: Move Y1 Wurm Jolly\n\n39) sketchwick: Move G2 Sketchwick Jolly\nCatastrophe Jolly Green\n\n40) jeep: Build G1 Jeep\n\n41) sketchwick: Trade Y2 G2 Sketchwick\n\n42) jeep: Build R1 Jeep\n\n43) sketchwick: Build G1 Sketchwick\n\n44) jeep: Trade G1 B1 Jeep\n\n45) sketchwick: Build Y1 Sketchwick\n\n46) jeep: Build R1 Jeep\n\n47) sketchwick: Move R2 Bean Jeep\nCatastrophe Jeep Red\n\n48) jeep: Build B2 Jeep\n\n49) sketchwick: Sacrifice G2 Sketchwick\nBuild Y2 Bean\nBuild Y2 Bean\n\n50) jeep: Discover B2 Jeep R1 Killer\n\n51) sketchwick: Trade Y3 B3 Bean\n\n52) jeep: Build G1 Jeep\n\n53) sketchwick: Build Y3 Sketchwick\n\n54) jeep: Move G1 Jeep Killer\n\n55) sketchwick: Sacrifice Y2 Bean\nDiscover Y3 Sketchwick R3 Temp\nMove Y3 Temp Killer\n\n\tjeep: I'd rather just play another game. This is clearly lost.\n\tSYSTEM: jeep resigns.\n\nHomeworlds Online (SDG# 1653)\nStarted: 2005.12.1, Ended: 2006.1.24\nParticipants: Personman (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld G1 B2 Y3\n\tPersonman: Hey,\r\nI am a relative novice at Homeworlds, but I felt I simply couldn't pass up the opportunity to play with you. If you're looking for a more serious game, I'll gladly go away, but if you don't mind helping induct me into the wonderful world of homeworlds, that'd be great too. \r\nI am an avid reader of your website, and not-avid-enough player of your games (I only own fluxx, and while I love it I haven't played in a while... I've been playing lots of icehouse games here recently, but I don't think I've ever actually played one with the real things. It is sad. Someday.)\n\n2) Personman: Homeworld Y2 B3 G3\n\tandylooney: I welcome all players, novice and expert! And if you like Homeworlds, you really should try it with the real pieces someday...\n\n3) andylooney: Build Y1 Andylooney\n\n4) Personman: Build G1 Personman\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Personman: Build G2 Personman\n\n7) andylooney: Build G2 Andylooney\n\n8) Personman: Trade G2 Y2 Personman\n\n9) andylooney: Discover G2 Andylooney Y3 Thurston\n\n10) Personman: Build G2 Personman\n\n11) andylooney: Build G2 Thurston\n\n12) Personman: Discover G2 Personman Y1 Torn Shut\n\n13) andylooney: Trade G1 R1 Andylooney\n\tPersonman: Oh. That's sad. I didn't know it couldn't take two-word star names. It was supposed to be Torn Shut, the most interesting anagram of Thurston I could find at a moment's notice, but sadly the second word was, so to speak, torn off. \n\n14) Personman: Sacrifice G3 Personman\nBuild G1 Torn\nBuild G3 Personman\nBuild G3 Personman\n\n15) andylooney: Move G2 Thurston Torn\n\n16) Personman: Discover G3 Personman B1 Tron\n\n17) andylooney: Build G3 Thurston\n\n18) Personman: Trade Y2 B2 Personman\n\n19) andylooney: Move G3 Thurston Tron\n\n20) Personman: Discover G2 Torn R3 Rotn\n\n21) andylooney: Sacrifice R1 Andylooney\nAttack G3S Tron\n\n22) Personman: Build B1 Personman\n\n23) andylooney: Sacrifice G3 Tron\nBuild G3 Thurston\nBuild Y1 Andylooney\nBuild Y1 Andylooney\n\n24) Personman: Trade B2 Y2 Personman\n\n25) andylooney: Trade Y1 R1 Andylooney\n\n26) Personman: Discover Y2 Personman B1 Nort\n\n27) andylooney: Sacrifice G3 Thurston\nBuild G3 Thurston\nBuild R1 Andylooney\nBuild R1 Andylooney\n\n28) Personman: Trade G3 R3 Personman\n\n29) andylooney: Build G3 Tron\n\n30) Personman: Build R2 Personman\n\n31) andylooney: Sacrifice R1 Andylooney\nAttack G1S Torn\n\n32) Personman: Move Y2 Nort Rotn\n\n33) andylooney: Trade G3 Y3 Tron\n\n34) Personman: Build R1 Personman\n\n35) andylooney: Sacrifice G3 Thurston\nBuild G3 Thurston\nBuild G3 Tron\nBuild R2 Andylooney\n\n36) Personman: Move R2 Personman Torn\n\n37) andylooney: Sacrifice R1 Andylooney\nAttack R2S Torn\n\n38) Personman: Build Y1 Rotn\n\n39) andylooney: Sacrifice G3 Tron\nBuild G3 Tron\nBuild Y2 Tron\nBuild R1 Torn\n\n40) Personman: Move R1 Personman Tron\n\n41) andylooney: Sacrifice R1 Andylooney\nAttack R1S Tron\n\n42) Personman: Move Y1 Rotn Tron\n\n43) andylooney: Sacrifice Y3 Tron\nDiscover G3 Tron Y3 Howell3\nMove G3 Tron Rotn\nDiscover G2 Thurston B1 Berry\n\n\nHomeworlds Online (SDG# 1695)\nStarted: 2005.12.2, Ended: 2005.12.18\nParticipants: Laurie_Menke (S), MightyJack (N)\nWinner: MightyJack\n\n1) MightyJack: Homeworld Y3 B2 G3\n\n2) Laurie_Menke: Homeworld Y1 B2 G3\n\tLaurie_Menke: Hi...nice to meet you MightyJack! Good luck!\n\n3) MightyJack: Build G1 Mightyjack\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tMightyJack: Likewise, Laurie!\n\n5) MightyJack: Trade G1 B1 Mightyjack\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) MightyJack: Build B1 Mightyjack\n\n8) Laurie_Menke: Discover G1 Laurie_menke B3 Phonebooth\n\n9) MightyJack: Discover B1 Mightyjack Y1 Alphacentauri\n\n10) Laurie_Menke: Discover G1 Laurie_menke B3 Bodyshop\n\n11) MightyJack: Trade B1 R1 Alphacentauri\n\n12) Laurie_Menke: Build G1 Phonebooth\n\n13) MightyJack: Move R1 Alphacentauri Phonebooth\n\n14) Laurie_Menke: Build G2 Phonebooth\n\n15) MightyJack: Build G2 Mightyjack\n\n16) Laurie_Menke: Trade G2 R2 Phonebooth\n\n17) MightyJack: Sacrifice G2 Mightyjack\nBuild R1 Phonebooth\nBuild R1 Phonebooth\nCatastrophe Phonebooth Red\n\n18) Laurie_Menke: Build G2 Laurie_menke\n\tLaurie_Menke: Huh...alright...that was surprising!\n\n19) MightyJack: Build G2 Mightyjack\n\tMightyJack: Not sure it was the best thing for me to do, but...\n\n20) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Bodyshop\nBuild G3 Laurie_menke\nBuild G3 Bodyshop\n\n21) MightyJack: Build B1 Mightyjack\n\n22) Laurie_Menke: Trade G1 Y1 Bodyshop\n\n23) MightyJack: Discover B1 Mightyjack G1 Orion\n\n24) Laurie_Menke: Move G3 Bodyshop Laurie_menke\n\n25) MightyJack: Sacrifice G3 Mightyjack\nBuild B1 Orion\nBuild B2 Orion\nBuild B3 Mightyjack\n\n26) Laurie_Menke: Build G3 Bodyshop\n\n27) MightyJack: Trade B2 Y2 Orion\n\n28) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n29) MightyJack: Build G3 Mightyjack\n\n30) Laurie_Menke: Trade G1 R1 Phonebooth\n\n31) MightyJack: Build B2 Orion\n\n32) Laurie_Menke: Trade G1 Y1 Phonebooth\n\n33) MightyJack: Trade G3 R3 Mightyjack\n\n34) Laurie_Menke: Build Y2 Bodyshop\n\n35) MightyJack: Trade B3 Y3 Mightyjack\n\n36) Laurie_Menke: Move Y1 Bodyshop Orion\n\n37) MightyJack: Trade B2 R2 Orion\n\n38) Laurie_Menke: Discover Y1 Orion B3 B3\n\n39) MightyJack: Build B2 Orion\n\n40) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y2 B3\nBuild Y3 B3\n\n41) MightyJack: Move Y2 Orion B3\nCatastrophe B3 Yellow\n\n42) Laurie_Menke: Trade G3 B3 Bodyshop\n\tLaurie_Menke: Oops...so that was stupid of me. :o(\n\n43) MightyJack: Sacrifice Y3 Mightyjack\nMove B1 Orion Bodyshop\nMove B1 Orion Bodyshop\nPass\nCatastrophe Bodyshop Blue\n\tMightyJack: I thought you might have overlooked that possibility... and I think you overlooked it again.\n\n44) Laurie_Menke: Build R1 Laurie_menke\n\tLaurie_Menke: Ack! Actually, I had realized that you could move your blue horde over and create a catastrophe, but I had forgotten that the star itself counts. So I was betting against you moving and sacrificing all 3 of your blues to get one of my blues. Obviously, the star going supernova did much more damage than that. Nice playing! :o)\n\n45) MightyJack: Trade B2 Y2 Orion\n\tMightyJack: Thanks! I had a feeling that you hadn't been expecting a star-shattering kaboom...\n\n46) Laurie_Menke: Build G1 Laurie_menke\n\n47) MightyJack: Build B1 Mightyjack\n\n48) Laurie_Menke: Move G1 Laurie_menke Phonebooth\n\n49) MightyJack: Move B1 Mightyjack Orion\n\n50) Laurie_Menke: Build G1 Laurie_menke\n\n51) MightyJack: Build G2 Mightyjack\n\n52) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Phonebooth\nBuild G3 Phonebooth\nBuild G3 Laurie_menke\n\n53) MightyJack: Sacrifice Y2 Orion\nMove G2 Mightyjack Orion\nMove G2 Orion Phonebooth\nCatastrophe Phonebooth Green\n\n54) Laurie_Menke: Move G1 Laurie_menke Phonebooth\n\tLaurie_Menke: Now cut that out! ;o)\n\n55) MightyJack: Trade B1 Y1 Orion\n\n56) Laurie_Menke: Move R3 Laurie_menke Phonebooth\n\n57) MightyJack: Move R3 Mightyjack Orion\n\n58) Laurie_Menke: Build Y2 Phonebooth\n\n59) MightyJack: Build Y2 Orion\n\n60) Laurie_Menke: Sacrifice Y2 Phonebooth\nMove R3 Phonebooth Orion\nMove R1 Phonebooth Orion\nCatastrophe Orion R\n\n61) MightyJack: Build B1 Mightyjack\n\tLaurie_Menke: Ha-HA! Two can play that catastrophe game! ;o)\n\tMightyJack: Nice job, mad bomber. :-)\n\n62) Laurie_Menke: Build Y2 Phonebooth\n\tLaurie_Menke: :o)\n\n63) MightyJack: Move B1 Mightyjack Orion\n\n64) Laurie_Menke: Move Y2 Phonebooth Laurie_menke\n\n65) MightyJack: Build B1 Orion\n\n66) Laurie_Menke: Discover Y1 Phonebooth B2 Big_blue\n\n67) MightyJack: Sacrifice G2 Mightyjack\nBuild B3 Mightyjack\nBuild B3 Orion\n\n68) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y2 Big_blue\nBuild Y3 Big_blue\nBuild Y3 Laurie_menke\n\n69) MightyJack: Sacrifice Y2 Orion\nMove Y1 Orion Phonebooth\nMove Y1 Phonebooth Laurie_menke\nCatastrophe Laurie_menke Yellow\n\n70) Laurie_Menke: Sacrifice Y1 Big_blue\nMove G1 Phonebooth Big_blue\n\tMightyJack: The Mad Bomber strikes again! :-)\n\tLaurie_Menke: OUCH!!! I *hate* when you do that!!!\n\n71) MightyJack: Trade B3 Y3 Mightyjack\n\n72) Laurie_Menke: Move Y3 Big_blue Orion\n\n73) MightyJack: Sacrifice Y3 Mightyjack\nMove B3 Orion Laurie_menke\nMove B1 Orion Laurie_menke\nMove B1 Orion Laurie_menke\nCatastrophe Laurie_menke Blue\n\tMightyJack: If you didn't like the last one, you're *really* going to hate this one... KABOOM!\n\n\nHomeworlds Online (SDG# 1671)\nVariants: "Sinister"\nStarted: 2005.12.2, Ended: 2005.12.16\nParticipants: MightyJack (S), Aaron (W), Kermit (N), Lexicon (E)\nWinner: Aaron\n\n1) Kermit: Homeworld B1 G3 Y3\n\n2) Lexicon: Homeworld G1 B2 Y3\n\n3) MightyJack: Homeworld G3 B1 Y3\n\n4) Aaron: Homeworld B2 Y3 G3\n\tAaron: Hail, all, and good luck!\n\n5) Kermit: Build Y1 Kermit\n\n6) Lexicon: Build Y1 Lexicon\n\n7) MightyJack: Build Y1 Mightyjack\n\n8) Aaron: Build G1 Aaron\n\n9) Kermit: Build Y1 Kermit\n\n10) Lexicon: Trade Y1 G1 Lexicon\n\n11) MightyJack: Trade Y1 B1 Mightyjack\n\n12) Aaron: Trade G1 R1 Aaron\n\n13) Kermit: Trade Y1 B1 Kermit\n\n14) Lexicon: Discover G1 Lexicon Y3 Ichi\n\n15) MightyJack: Build Y1 Mightyjack\n\n16) Aaron: Build R1 Aaron\n\n17) Kermit: Discover B1 Kermit G2 Ein\n\n18) Lexicon: Build Y1 Lexicon\n\n19) MightyJack: Trade Y1 R1 Mightyjack\n\n20) Aaron: Trade R1 Y1 Aaron\n\n21) Kermit: Build B1 Ein\n\n22) Lexicon: Trade Y1 R1 Lexicon\n\n23) MightyJack: Discover B1 Mightyjack G2 Forest\n\n24) Aaron: Discover Y1 Aaron G1 Ni\n\n25) Kermit: Trade B1 Y1 Ein\n\n26) Lexicon: Build G1 Ichi\n\n27) MightyJack: Build Y1 Mightyjack\n\n28) Aaron: Build R1 Aaron\n\n29) Kermit: Discover B1 Ein Y1 Zwei\n\n30) Lexicon: Build Y2 Lexicon\n\n31) MightyJack: Build B1 Forest\n\n32) Aaron: Build Y2 Ni\n\n33) Kermit: Build Y2 Ein\n\n34) Lexicon: Move Y2 Lexicon Ichi\n\n\n35) MightyJack: Move Y1 Mightyjack Forest\n\n36) Aaron: Trade R1 G1 Aaron\n\n37) Kermit: Build Y2 Kermit\n\n38) Lexicon: Build Y2 Lexicon\n\n39) MightyJack: Trade B1 R1 Forest\n\tKermit: Sorry , I made it a short game by srewing up a few turns ago.\n\n40) Aaron: Sacrifice Y2 Ni\nMove Y1 Ni Ein\nMove Y1 Ein Kermit\nCatastrophe Kermit Y\n\n\nHomeworlds Online (SDG# 1698)\nStarted: 2005.12.2, Ended: 2005.12.18\nParticipants: Uglyfoot (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld G1 B2 Y3\n\n2) Uglyfoot: Homeworld G3 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) Uglyfoot: Discover Y1 Uglyfoot B1 Gateway\n\n7) andylooney: Discover G1 Andylooney Y3 Thurston\n\n8) Uglyfoot: Trade Y1 G1 Gateway\n\n9) andylooney: Build G2 Thurston\n\n10) Uglyfoot: Build G2 Gateway\n\n11) andylooney: Discover G1 Thurston Y1 Different\n\n12) Uglyfoot: Trade G2 Y2 Gateway\n\n13) andylooney: Build G2 Different\n\n14) Uglyfoot: Build G2 Gateway\n\n15) andylooney: Build G3 Thurston\n\n16) Uglyfoot: Build G3 Gateway\n\n17) andylooney: Move G2 Thurston Gateway\nCatastrophe Gateway Green\n\n18) Uglyfoot: Build Y1 Uglyfoot\n\n19) andylooney: Build Y1 Andylooney\n\n20) Uglyfoot: Trade Y1 G1 Uglyfoot\n\n21) andylooney: Build G2 Thurston\n\n22) Uglyfoot: Move G1 Uglyfoot Gateway\n\n23) andylooney: Trade Y1 R1 Andylooney\n\n24) Uglyfoot: Build Y1 Uglyfoot\n\n25) andylooney: Discover G3 Thurston Y1 Jumpingoffspot\n\n26) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n27) andylooney: Discover G1 Different B3 Ibm\n\n28) Uglyfoot: Discover Y2 Gateway G3 Commerce\n\n29) andylooney: Sacrifice G3 Jumpingoffspot\nBuild G2 Ibm\nBuild G3 Different\nBuild R1 Andylooney\n\n30) Uglyfoot: Build Y1 Uglyfoot\n\n31) andylooney: Move R1 Andylooney Ibm\n\n32) Uglyfoot: Build R2 Uglyfoot\n\n33) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild R2 Ibm\nBuild Y1 Andylooney\n\n34) Uglyfoot: Build Y2 Uglyfoot\n\n35) andylooney: Trade R2 Y2 Ibm\n\n36) Uglyfoot: Move Y2 Uglyfoot Gateway\n\n37) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild R2 Andylooney\nBuild R2 Ibm\n\n38) Uglyfoot: Build R3 Uglyfoot\n\n39) andylooney: Sacrifice Y2 Ibm\nMove R1 Ibm Gateway\nMove R1 Gateway Uglyfoot\nCatastrophe Uglyfoot Red\n\tUglyfoot: Neat move with the sacrifice. I knew that I would learn several things from this game!\r\n\n\n40) Uglyfoot: Build Y2 Commerce\n\n41) andylooney: Move G3 Different Uglyfoot\n\n42) Uglyfoot: Sacrifice Y2 Gateway\nMove Y2 Commerce Andylooney\nMove Y2 Commerce Andylooney\nCatastrophe Andylooney Y\n\n43) andylooney: Sacrifice R2 Ibm\nAttack Y3S Uglyfoot\nAttack Y1S Uglyfoot\n\tandylooney: Nice parting shot. Thanks for the game!\n\n\nHomeworlds Online (SDG# 1729)\nStarted: 2005.12.5, Ended: 2005.12.9\nParticipants: Murwiz (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld Y1 B2 G3\n\n2) Murwiz: Homeworld G1 B3 Y3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) Murwiz: Build Y1 Murwiz\n\tUglyfoot: I like this interface.\n\n5) Uglyfoot: Discover G1 Uglyfoot B3 Bigblue\n\n6) Murwiz: Discover Y1 Murwiz G2 Modestgreen\n\n7) Uglyfoot: Build G1 Bigblue\n\n8) Murwiz: Build Y1 Modestgreen\n\n9) Uglyfoot: Build G2 Bigblue\n\n10) Murwiz: Build Y2 Murwiz\n\n11) Uglyfoot: Build G2 Uglyfoot\n\n12) Murwiz: Trade Y2 B2 Murwiz\n\n13) Uglyfoot: Build G3 Uglyfoot\n\n14) Murwiz: Build B1 Murwiz\n\tMurwiz: Be careful not to make my error.\n\n15) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n16) Murwiz: Build Y2 Murwiz\n\tUglyfoot: I'll be careful.\n\n17) Uglyfoot: Move Y3 Uglyfoot Bigblue\n\n18) Murwiz: Sacrifice B1 Murwiz\nTrade Y1 B1 Modestgreen\n\n19) Uglyfoot: Discover G1 Bigblue Y2 Movinalong\n\n20) Murwiz: Build Y1 Modestgreen\n\n21) Uglyfoot: Build G3 Movinalong\n\n22) Murwiz: Discover Y1 Modestgreen G3 Bignleafy\n\n23) Uglyfoot: Move G1 Movinalong Murwiz\n\n24) Murwiz: Build Y2 Bignleafy\n\tMurwiz: You are obviously online and shuffling moves, but not on Yahoo?\n\n25) Uglyfoot: Trade G1 B1 Murwiz\n\n26) Murwiz: Trade B2 R2 Murwiz\n\tUglyfoot: Yahoo! has! been! crashing! on! me!\n\tMurwiz: Take a look at gaim: http://gaim.sourceforge.net. On Windows I used Trillian, and it's pretty cool but it does cost $30 for the full version.\n\n27) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild B1 Murwiz\nBuild B2 Murwiz\nBuild Y3 Bigblue\nCatastrophe Murwiz B\n\n28) Murwiz: Build R1 Murwiz\n\tUglyfoot: slimy, eh?\n\tMurwiz: Yeah, I saw it coming. At least I got the b2 ship converted, which (a) saved a ship and (b) made you use a G3 instead of a G2.\n\n29) Uglyfoot: Sacrifice Y3 Bigblue\nMove G1 Bigblue Murwiz\nMove G2 Bigblue Murwiz\nMove G3 Movinalong Murwiz\nCatastrophe Murwiz G\n\n\nHomeworlds Online (SDG# 1708)\nVariants: "Sinister"\nStarted: 2005.12.7, Ended: 2005.12.31\nParticipants: Lexicon (S), ts52 (N), Yobi (E)\nWinner: ts52\n\n1) ts52: Homeworld G2 B1 Y3\n\n2) ts52: Pass\n\tYobi: Sup, Lex\r\n\n\tYobi: Sup, Lex\r\n\n\tYobi: Oops, double post\n\tLexicon: howdy.\n\tLexicon: Dooo be do be doooo.\n\n3) Lexicon: Homeworld G1 B3 Y3\n\tSYSTEM: Yobi resigns.\n\tLexicon: Hmmm. Seems to have skipped me.\n\tts52: That's really odd. I wonder why that happned.\r\nYou man want to point this one out to Aaron. I'll hold off doing anything for a while if you want. Or maybe I can just pass, I'll check.\n\n4) ts52: Build Y1 Ts52\n\tts52: Aha, it did let me just pass. Now you should be able to establish a homeworld.\n\tAaron: Thanks for passing, ts. I have had problems with the resignation code from the beginning. I *think* (again) that I have fixed the problem. We will see when this situation recurs. Thanks for your patience!\n\tLexicon: Thanks guys. :) \n\n5) Lexicon: Build Y1 Lexicon\n\n6) ts52: Build Y1 Ts52\n\tts52: No problem. I don't think the game rules allow passing, but it's nice that it's there so we can work around glitches like this.\r\n\n\tts52: Ack! I just realized we're now playing a 2 player game with a 4 pyramid economy. This changes everything! :)\n\n7) Lexicon: Trade Y1 G1 Lexicon\n\tLexicon: This should be interesting. I haven't played by these rules but a couple times, so I wasn't any good at the shortages anyway, though they totally shaped the game.\n\tLexicon: My friend group managed to totally misread or make up the rules to this game and didn't realize it for quite a while. Have to make sure someone else reads the rules next time. ;)\n\tts52: Best of luck to you. Feel free to ask me questions and -pass- to get my attention. Then I'll pass back to you.\n\n8) ts52: Trade Y1 G1 Ts52\n\n9) Lexicon: Build Y1 Lexicon\n\tLexicon: I had Jesse give me a training game so I'm basically up to speed. I'm one to ask when I have questions though.\n\n10) ts52: Discover Y1 Ts52 G3 Oscar\n\n11) Lexicon: Discover G1 Lexicon B2 Door\n\tts52: Ah, fair enough then. Jesse's pretty good at teaching people.\n\n12) ts52: Build Y1 Oscar\n\n13) Lexicon: Trade Y1 R1 Lexicon\n\n14) ts52: Build Y1 Ts52\n\n15) Lexicon: Build R1 Lexicon\n\n16) ts52: Trade Y1 R1 Ts52\n\n17) Lexicon: Move R1 Lexicon Door\n\n18) ts52: Build Y1 Ts52\n\n19) Lexicon: Build Y1 Lexicon\n\n20) ts52: Discover Y1 Oscar G2 Lime\n\n21) Lexicon: Move Y1 Lexicon Door\n\n22) ts52: Build Y2 Oscar\n\n23) Lexicon: Discover G1 Door B3 Lamp\n\n24) ts52: Build Y2 Lime\n\n25) Lexicon: Build Y2 Lexicon\n\n26) ts52: Discover Y1 Ts52 Y3 Sol\n\n27) Lexicon: Move R1 Door Sol\n\n28) ts52: Move Y2 Lime Sol\n\n29) Lexicon: Attack Y1N Sol\n\n30) ts52: Move Y2 Sol Lime\n\n31) Lexicon: Move Y1 Sol Lime\n\n32) ts52: Discover Y2 Lime G3 Kermit\n\n33) Lexicon: Move R1 Sol Door\n\n34) ts52: Discover Y1 Oscar G2 Apple\n\n35) Lexicon: Move R1 Door Lamp\n\n36) ts52: Sacrifice Y2 Kermit\nMove Y1 Apple Lexicon\nMove Y1 Lime Lexicon\nCatastrophe Lexicon Yellow\n\n37) Lexicon: Build R1 Lamp\n\n38) ts52: Sacrifice Y3 Ts52\nMove Y2 Oscar Door\nMove Y2 Door Lexicon\nPass\n\tLexicon: That doesn't bode well.\n\n39) Lexicon: Build R2 Lexicon\n\n40) ts52: Sacrifice R1 Ts52\nAttack R2S Lexicon\n\tts52: No, but I feel pretty naked myself now...\n\n41) Lexicon: Sacrifice Y1 Lime\nMove R1 Lamp Ts52\n\tLexicon: It's a little suicidal, but it's going to work for you.\n\n42) ts52: Attack R1S Lexicon\n\n\tLexicon: Good game. Hopefully I'll pay more attention next time. ;)\n\tts52: Good game. I still find it's hard to keep track of everything...\r\n\n\nHomeworlds Online (SDG# 1740)\nStarted: 2005.12.7, Ended: 2006.1.9\nParticipants: ts52 (S), PhoenixPhyre (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 1741)\nStarted: 2005.12.7, Ended: 2005.12.31\nParticipants: PhoenixPhyre (S), JunkMan (N)\nWinner: JunkMan\n\n1) JunkMan: Homeworld G1 B2 Y3\n\n\tSYSTEM: PhoenixPhyre resigns.\n\nHomeworlds Online (SDG# 1754)\nVariants: "Sinister"\nStarted: 2005.12.10, Ended: 2006.1.14\nParticipants: Jesse (S), bennyb (N)\nWinner: Jesse\n\n1) bennyb: Homeworld B1 G3 R3\n\n2) Jesse: Homeworld G1 B2 Y3\n\n3) bennyb: Build R1 Bennyb\n\tJesse: Hello, bennyb. Played much Homeworlds?\n\n4) Jesse: Build Y1 Jesse\n\tbennyb: no first game :) I've got no idea what I'm doing ;)\r\n\n\tJesse: Okay, the first thing to do is look at the tips for new players on the wiki. (There's also a good exposition of basic strategy at the icehousegames wiki. There's a link from the SDG wiki page.)\n\tJesse: Then, my personal recommendation would be to switch your r3 for a y3. Or, you may prefer to switch the r1 for a y1. But one way or another, you need to (a) diversify and (b) move out to other systems. Not necessarily immediately, but soon.\n\n5) bennyb: Trade R1 Y1 Bennyb\n\tbennyb: thanks Jesse. I had a read of that, very interesting.\n\n6) Jesse: Discover Y1 Jesse G3 Paul\n\n7) bennyb: Discover Y1 Bennyb B2 Dude\n\n8) Jesse: Build Y1 Jesse\n\n9) bennyb: Build R1 Bennyb\n\n10) Jesse: Trade Y1 R1 Jesse\n\n11) bennyb: Trade R1 Y1 Bennyb\n\n12) Jesse: Build Y2 Jesse\n\n13) bennyb: Build R1 Bennyb\n\n14) Jesse: Trade Y2 G2 Jesse\n\n15) bennyb: Move Y1 Bennyb Dude\n\n16) Jesse: Discover G2 Jesse Y3 Erwin\n\n17) bennyb: Trade Y1 G1 Dude\n\n18) Jesse: Build R1 Jesse\n\n19) bennyb: Build Y1 Dude\n\n20) Jesse: Build Y2 Jesse\n\n\tJesse: I'm retiring this game now.\n\nHomeworlds Online (SDG# 1819)\nStarted: 2005.12.10, Ended: 2005.12.18\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld R1 B2 G3\n\n2) jeep: Homeworld Y1 B3 G3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build G1 Jeep\n\n5) sketchwick: Trade G1 Y1 Sketchwick\n\n6) jeep: Build G1 Jeep\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Trade G1 Y1 Jeep\n\n9) sketchwick: Build Y2 Sketchwick\n\n10) jeep: Build Y2 Jeep\n\n11) sketchwick: Discover Y1 Sketchwick G3 Gob\n\n12) jeep: Discover Y1 Jeep G2 Stopper\n\n13) sketchwick: Sacrifice G3 Sketchwick\nBuild Y2 Sketchwick\nBuild Y3 Sketchwick\nBuild Y3 Gob\n\n14) jeep: Sacrifice Y2 Jeep\nMove Y1 Stopper Gob\nMove Y1 Gob Sketchwick\nCatastrophe Sketchwick Yellow\n\n15) sketchwick: Build Y1 Gob\n\n16) jeep: Build G1 Jeep\n\n17) sketchwick: Build G2 Sketchwick\n\n18) jeep: Trade G3 R3 Jeep\n\n19) sketchwick: Trade G1 R1 Sketchwick\n\n20) jeep: Discover G1 Jeep Y2 Stopper\n\n21) sketchwick: Move Y1 Gob Sketchwick\n\n22) jeep: Build G1 Stopper\n\n23) sketchwick: Build Y2 Sketchwick\n\n24) jeep: Trade R3 Y3 Jeep\n\n25) sketchwick: Build Y2 Sketchwick\n\tjeep: *sigh* you win...\n\n26) jeep: Build G2 Jeep\n\n27) sketchwick: Build Y3 Gob\n\n28) jeep: Move G1 Stopper Gob\n\n29) sketchwick: Sacrifice Y2 Sketchwick\nMove Y3 Gob Stopper\nMove Y3 Stopper Jeep\n\n\tjeep: Yeah, I lost this way early, no sense playing it out...\n\tSYSTEM: jeep resigns.\n\nHomeworlds Online (SDG# 1663)\nStarted: 2005.12.13, Ended: 2006.1.15\nParticipants: bennyb (S), JunkMan (W), Lexicon (N), illvilja (E)\nWinner: Lexicon\n\n1) Lexicon: Homeworld G1 B2 Y3\n\n2) illvilja: Homeworld G2 B1 Y3\n\tillvilja: homeworld b1 g2 y3\n\tillvilja: Oops... this is the message window, not the order window :-).\n\n3) JunkMan: Homeworld G1 B3 Y3\n\tillvilja: Cool... that were better! Ok, ok, Lexicon... I'm a copycat.\n\tLexicon: Well, we'll just need to refrain from destroying each other. Now where's that bennyb at? Too many new players jumping on, starting games, and not following through.\n\tillvilja: Well, patience is a virtue... but I slowly realize that there might be a point with the "Force surrender" button.\n\tillvilja: That is a problem with game servers where anonymous ppl "too easily" can sign up for a game. As the sign up phase don't require "enough effort" it does not weed out all the ppl who are quite inactive. Not that I would sort bennyb into that cathegory, he might have other reasons for not doing his move.\r\n\r\nOh, BTW, Junkman... are you there? Just pinging...\r\n\n\tLexicon: He hasn't been on in 2.5 weeks. Unless y'all want to wait longer, I'm going to resign him tomorrow.\n\tJunkMan: I'm here, I didn't even remember that I was in this game, it's been so long. I'm all for giving people time, but being gone for the better part of a month is too long. I vote for resigning him if he doesn't move today.\n\n4) Lexicon: Build Y1 Lexicon\n\n\tLexicon: Fine by me.\n\nHomeworlds Online (SDG# 1853)\nStarted: 2005.12.15, Ended: 2005.12.19\nParticipants: ts52 (S), xoet (N)\nWinner: ts52\n\n1) xoet: Homeworld G3 G3 Y3 *\n\txoet: Hi ts52 no idea what I'm doing am i good or evil???\n\txoet: are there more players coming? I have a friend or two that might play?\n\n2) ts52: Homeworld B3 G2 Y3\n\txoet: i think this game is evil cause ive looked over rules and wiki and the hints it took me what 48:08 min to get it right yeah I'm the one putting homeworld g3,g3,y3 *) and wondering for almost an hour\n\txoet: these rules need a revamp as far as what to type now how do i put a lable on my system like "North"\n\tts52: Your homeworld always has the label of your userid. I set this up as a two player game, because I like it better than the multi player, but you can start more challenges for your friends to pick up.\r\n\n\n3) xoet: Build Y1 Xoet\n\txoet: I should have stayed logged on a little longer to make my second move this morning but logged off before you moved btw I hope you don't mind waiting twelve hours between the times I am logged I log on for about 10 hours give or take every day and a half or so\n\n4) ts52: Build Y1 Ts52\n\txoet: what am i doing? I mean Just entering commands till something does not give me an error what does you have no actions left mean???\n\tts52: No problem. I'm not in a rush for these games.\r\nYou only get one action per turn. Your only option on your last turn was to constuct a new small yellow ship.\n\n5) xoet: Discover Y3 Xoet B2 Ur7i\n\txoet: ok that must be why i did not do anything else but now what I'm lost again yet i have not tried any of the commands yet\n\n6) ts52: Trade Y1 G1 Ts52\n\txoet: slowly but surely I am getting the idea\n\n7) xoet: Build Y1 Xoet\n\n8) ts52: Discover G1 Ts52 Y1 Sirius\n\txoet: ok after five tries of things to do mmmm i guess that is one of the few things i can do\n\n9) xoet: Discover Y1 Xoet G2 Zerg\n\n10) ts52: Build Y2 Ts52\n\txoet: i did not know i could make a new system thought the limit was just the one on the screen\n\n11) xoet: Discover Y3 Ur7i R3 Cat\n\tts52: It seems like you're starting to get the hang of it.\n\n12) ts52: Discover Y2 Ts52 G1 Pebble\n\txoet: aah hyperspatial flux\n\n13) xoet: Move Y3 Cat Pebble\n\n14) ts52: Build Y2 Ts52\n\n15) xoet: Build Y2 Xoet\n\txoet: <<<reading rules again\n\txoet: sorry about the delay\n\n16) ts52: Build Y3 Pebble\n\txoet: i thought the ship your creating had to be bigger than the ship that is creating it\r\nmy mistake solved by trial and error\n\tts52: Nope, the ship you build has to match the color of one of your ships in the system, and be the smallest piece of that color.\n\n17) xoet: Discover Y3 Pebble R3 Bird\n\txoet: so a how does one get a blue or red ship?\n\n18) ts52: Build G1 Sirius\n\txoet: why did this not work discover y2 xoet r3 r4 ???? said systems not connected\n\txoet: i cant trade in xoet says i have no blue to trade i cant build in xoet becuase i have no green ships cept i can build a yellow ship how do i get a blue ship or building or something is there a command "construct b3 xoet" that i could use \n\tts52: In order to get a non-yellow ship, you have to disvoer a blue system, and then use that system to trade your yellow ship for a non-yellow ship of the same size.\r\nShips can only move between connected systems. Two systems are connected if they do _not_ have the same size piece in them.\r\nSo right now xoet is connected to pebble, sirius and zerg.\r\nYou can't build a yellow ship because there are no more yellow pieces left.\n\n19) xoet: Discover Y1 Xoet B2 Bluebird\n\n20) ts52: Move G1 Sirius Ts52\n\n21) xoet: Trade Y1 B1 Bluebird\n\n22) ts52: Build G2 Sirius\n\n23) xoet: Build Y1 Xoet\n\n24) ts52: Build G3 Sirius\n\n25) xoet: Move Y2 Xoet Zerg\n\n26) ts52: Move Y3 Pebble Bluebird\n\n27) xoet: Move Y2 Zerg Sirius\n\n28) ts52: Move G3 Sirius Bluebird\n\n29) xoet: Move Y2 Sirius Bluebird\n\txoet: Slowly but surely I am beginning to understand the commands next comes strategy\n\n30) ts52: Trade G3 R3 Bluebird\n\txoet: mmm i guess that zerg and bluebird are not connected but sirius and bluebird are mmm\n\tts52: exactly\n\n31) xoet: Move Y3 Bird Bluebird\n\n32) ts52: Move R3 Bluebird Xoet\n\n33) xoet: Move Y3 Bluebird Xoet\n\txoet: ack you have this one it looks like i know end conditions i think i sould move a ship back home\n\n34) ts52: Attack Y3 Xoet\n\n35) xoet: Move Y2 Bluebird Pebble\n\tts52: Yeah, there are a few adages for this game:\r\n always start with two different sizes in your homewold - this makes it harder for your opponent to get into your homeword.\r\n always start with a large ship - there is strength in size\r\n between your homeworld and starting ship, have blue, green and yellow. You need green to build, and yellow to move, and eventually blue to trade for red. But if you don't have those three, you'll end up wasting time getting the one you don't\r\n never leave your homeworld undefended. - Keep a large ship in your homeworld if at all possible.\r\n finally, once you opponent has a gun, you get a gun. - Once things escalate to red ships, it becomes an arms race.\r\nIf you had kept a large ship in your homeworld, and traded one of your ships on bluebird to red right after I'd traded for a red ship, then when I moved into your homeworld, you could've sacrificed the red ship to take over my red ship, and still been alive.\r\nWe really didn't get into sacrifices in this game at all, but they are another powerful tactic in the game that it's important not to overlook.\n\tts52: Ugh, I didn't realize that all my returns would get deleted, sorry that last message is so hard to read now...\n\txoet: i think it was easyer for me to read anyway if its ok im going to share that with my friend i got to play me it is her first game and my third with her\n\n36) ts52: Attack Y1 Xoet\n\tts52: No problem. Feel free to share it. Thanks for the game. I look forward to playing you again.\n\n\nHomeworlds Online (SDG# 1878)\nStarted: 2005.12.16, Ended: 2006.1.13\nParticipants: cobalt (S), a_magical_me (N)\nWinner: cobalt\n\n1) a_magical_me: Homeworld G3 Y2 B3\n\n2) cobalt: Homeworld B1 Y2 G3\n\n3) a_magical_me: Build B1 A_magical_me\n\n4) cobalt: Build G1 Cobalt\n\n5) a_magical_me: Build B1 A_magical_me\n\n6) cobalt: Discover G1 Cobalt Y3 Theeze\n\n7) a_magical_me: Trade B1 G1 A_magical_me\n\n8) cobalt: Build G1 Cobalt\n\n9) a_magical_me: Build G2 A_magical_me\n\n10) cobalt: Build G2 Cobalt\n\n11) a_magical_me: Discover G1 A_magical_me Y1 Magrathea\n\n12) cobalt: Trade G1 R1 Cobalt\n\n13) a_magical_me: Build B1 A_magical_me\n\n14) cobalt: Trade G2 Y2 Cobalt\n\n15) a_magical_me: Trade B1 Y1 A_magical_me\n\n16) cobalt: Build G1 Cobalt\n\n17) a_magical_me: Build G2 Magrathea\n\n18) cobalt: Discover G1 Cobalt G3 Coffee\n\n\nHomeworlds Online (SDG# 1898)\nStarted: 2005.12.17, Ended: 2005.12.20\nParticipants: a_magical_me (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) a_magical_me: Homeworld B2 G1 R3\n\n3) andylooney: Build Y1 Andylooney\n\n4) a_magical_me: Build R1 A_magical_me\n\n5) andylooney: Discover Y1 Andylooney G3 Grunwald\n\n6) a_magical_me: Build R1 A_magical_me\n\n7) andylooney: Build Y1 Andylooney\n\n8) a_magical_me: Trade R1 Y1 A_magical_me\n\n9) andylooney: Build Y2 Andylooney\n\n10) a_magical_me: Move R1 A_magical_me Grunwald\n\ta_magical_me: a_magical_me sends greetings to andylooney!\r\n\r\nWe are wondering if you'd like to be part of a very special offer. Recently our scientists have developed a brand new form of technology! Our shiny new RED SHIPS are the perfect addition to any military force! Scans of your homeworld indicate that you have not yet discovered this amazing technology. If you are interested, contact us at Intergalactic Telephone Number 555-666-1962'\r\n\r\nSincerely,\r\nThe Official Sales Force of a_magical_me\n\n11) andylooney: Build Y2 Grunwald\n\n12) a_magical_me: Attack Y1 Grunwald\n\tandylooney: No thanks, we have our own weapon systems under development. We expect to them to be online soon enough. In the meantime, we've been busy with ship-building.\n\n13) andylooney: Trade Y2 R2 Andylooney\n\n14) a_magical_me: Discover R1 Grunwald Y2 Sanctuary\n\n15) andylooney: Trade Y1 G1 Andylooney\n\n16) a_magical_me: Build R1 A_magical_me\n\n17) andylooney: Build R1 Andylooney\n\n18) a_magical_me: Build R2 A_magical_me\n\ta_magical_me: It has come to our attention that you have been building red ships on your homeworld. Currently, red technology is protected under the Intergalactic Patent Law (patent #4,936,585). Unless you cease and desist, we will be forced to take action as outlined by Intergalactic Central Enforcement article 42 subsection 10000.\n\n19) andylooney: Sacrifice Y2 Grunwald\nMove R1 Andylooney Grunwald\nMove R1 Grunwald A_magical_me\nCatastrophe A_magical_me Red\n\tandylooney: How's this for an action?\n\n20) a_magical_me: Build Y1 A_magical_me\n\ta_magical_me: nice\n\n21) andylooney: Move R2 Andylooney Grunwald\n\ta_magical_me: I'm not sure if I can recover from that.\n\n22) a_magical_me: Build Y2 A_magical_me\n\n23) andylooney: Attack Y1S Grunwald\n\ta_magical_me: Of course, you realize, this means war.\n\tandylooney: well, if it's a fight you want...\n\n24) a_magical_me: Trade Y2 R2 A_magical_me\n\ta_magical_me: Uh-oh\n\n25) andylooney: Build Y2 Grunwald\n\n26) a_magical_me: Move Y1 A_magical_me Grunwald\n\n27) andylooney: Discover Y2 Grunwald G1 Outpost\n\n28) a_magical_me: Build Y2 Grunwald\n\n29) andylooney: Build Y3 Grunwald\nCatastrophe Grunwald Yellow\n\n30) a_magical_me: Build Y1 A_magical_me\n\n31) andylooney: Discover G1 Andylooney Y3 Howell\n\n32) a_magical_me: Trade R2 G2 A_magical_me\n\n33) andylooney: Build G2 Howell\n\n34) a_magical_me: Trade G2 B2 A_magical_me\n\n35) andylooney: Build G2 Howell\n\n36) a_magical_me: Discover R1 Sanctuary G3 Foothold\n\ta_magical_me: I'm toast.\n\n37) andylooney: Discover G2 Howell Y2 Plugh\n\n38) a_magical_me: Build R1 Foothold\n\n39) andylooney: Build G3 Howell\n\n40) a_magical_me: Build R1 Foothold\n\n41) andylooney: Move G3 Howell A_magical_me\n\n42) a_magical_me: Move Y1 A_magical_me Foothold\n\n43) andylooney: Sacrifice R2 Grunwald\nAttack B2S A_magical_me\nAttack Y1S A_magical_me\n\ta_magical_me: X_X Checkmate. At least I'm better at Martian Chess than I am at Homeworlds.\n\tandylooney: Indeed. Anyway, thanks for the game!\n\n\nHomeworlds Online (SDG# 1882)\nVariants: "Sinister"\nStarted: 2005.12.18, Ended: 2006.1.26\nParticipants: Toni (S), Aaron (W), xoet (N), a_magical_me (E)\nWinner: Aaron\n\n1) xoet: Homeworld B3 G2 Y3 R2 B3\n\n2) a_magical_me: Homeworld G3 Y1 B3\n\txoet: hey toni, a_magical_me, and Aaron hope to have a good clean game just come out of your corners ready to play...:-)\n\n3) Aaron: Homeworld Y1 B2 G3\n\tToni: good luck, because I don't know what I am doing. :)\n\tToni: Sorry I just can't figure out the command to do. \n\n4) xoet: Build Y1 Xoet\n\tSYSTEM: Toni resigns.\n\tSYSTEM: Toni resigns.\n\tToni: didn't want to hold you guys up.\n\txoet: did you pass Aaron?\n\n5) a_magical_me: Build B1 A_magical_me\n\n6) Aaron: Build G1 Aaron\n\tAaron: Uhm, what just happened? =) It skipped my turn. Rolling back.\n\tAaron: I will track down that error.\n\n7) xoet: Trade Y1 B1 Xoet\n\n8) a_magical_me: Trade B3 G3 A_magical_me\n\n9) Aaron: Trade G1 Y1 Aaron\n\n10) xoet: Build Y1 Xoet\n\n11) a_magical_me: Build G1 A_magical_me\n\n12) Aaron: Build G1 Aaron\n\n13) xoet: Trade Y3 R3 Xoet\n\n14) a_magical_me: Trade G3 R3 A_magical_me\n\n15) Aaron: Trade G1 B1 Aaron\n\n16) xoet: Discover Y1 Xoet G1 Help\n\n17) a_magical_me: Build R1 A_magical_me\n\txoet: i do not know but somethings work for me and others dont the discover command did not work for me dont know why but this is my second game so far\n\n18) Aaron: Build G1 Aaron\n\tAaron: what did the system tell you?\n\n19) xoet: Build Y1 Help\n\txoet: It said the systems are not connected then i tried to go to your systems and they are not connected either Ill try again now because I would not of made a red dude so early\n\n20) a_magical_me: Build G1 A_magical_me\n\txoet: i guess i only create certian kinds of new worlds??\n\ta_magical_me: From the rules: "Two systems are connected to each other if they do not share the same size system markers. If two systems contain the same size system marker, those two systems are not connected. Therefore, a small system is connected to any medium or large system, but not to another small system. A binary system made up of a small piece and a medium piece is not connected to any small or medium system, nor is it connected to any binary system that contains a small piece or a medium piece. System connections have nothing to do with the physical positions of systems on the playing field."\n\n21) Aaron: Trade G1 R1 Aaron\n\n22) xoet: Build Y2 Help\n\n23) a_magical_me: Discover G1 A_magical_me Y2 Magrathea\n\n24) Aaron: Discover Y1 Aaron G3 Emeralds\n\n25) xoet: Build R1 Xoet\n\n26) a_magical_me: Build G1 Magrathea\n\n27) Aaron: Move Y1 Emeralds Help\nCatastrophe Help Y\n\n28) xoet: Trade R1 Y1 Xoet\n\n29) a_magical_me: Build B1 A_magical_me\n\n30) Aaron: Build G1 Aaron\n\n31) xoet: Build Y1 Xoet\n\n32) a_magical_me: Move B1 A_magical_me Magrathea\n\n33) Aaron: Discover G1 Aaron Y3 Bananas\n\n34) xoet: Trade Y1 G1 Xoet\n\n35) a_magical_me: Build B1 Magrathea\n\n36) Aaron: Build G2 Bananas\n\n37) xoet: Build Y1 Xoet\n\n38) Aaron: Build R1 Aaron\n\n39) xoet: Build B2 Xoet\n\n40) Aaron: Build B2 Aaron\n\n41) xoet: Discover Y1 Xoet R1 Jelly\n\n42) Aaron: Move B2 Aaron Bananas\n\n43) xoet: Build Y1 Xoet\n\n44) Aaron: Trade G2 Y2 Bananas\n\n45) xoet: Move B2 Xoet Jelly\n\n46) Aaron: Move R1 Aaron Bananas\n\n47) xoet: Move G1 Xoet Jelly\n\n48) Aaron: Build B2 Bananas\n\n49) xoet: Build G2 Jelly\n\n50) Aaron: Discover B2 Bananas R1 Rubies\n\n51) xoet: Discover G2 Jelly R3 Naotet\n\n52) Aaron: Move B2 Bananas Rubies\n\n53) xoet: Build G2 Naotet\n\n54) Aaron: Sacrifice Y2 Bananas\nMove B2 Rubies Xoet\nMove B2 Rubies Xoet\nCatastrophe Xoet B\n\n55) xoet: Build B1 Jelly\n\n56) Aaron: Move R1 Bananas Magrathea\n\n57) xoet: Move B2 Jelly Naotet\n\n58) Aaron: Attack G1E Magrathea\n\tAaron: Let's get things moving =)\n\n59) xoet: Build B2 Naotet\n\n60) Aaron: Attack B1E Magrathea\n\txoet: you know if it did not take me a few tries to get my orders right I would be more of a challenging opponent\n\n61) xoet: Trade G2 Y2 Naotet\n\n62) Aaron: Move B1 Aaron Naotet\n\n63) xoet: Move B2 Naotet Aaron\n\n64) Aaron: Attack B2N Aaron\n\n65) xoet: Attack B1W Naotet\n\txoet: ok I'm really new to this game and cant figure out why "sacrifice G2 naotet\r\nmove b2 naotet Aaron\r\nmove b2 naotet Aaron\r\ncatastrophe Aaron b"\r\ndoes not work??\n\n66) Aaron: Move B2 Aaron Bananas\n\tAaron: I think you figured it out =)\n\n67) xoet: Move R3 Xoet Bananas\n\n68) Aaron: Move B2 Bananas Xoet\n\txoet: yep I did not have move power in the naotet system guess I should not of told you what I was planning\n\tAaron: My options are pretty limited anyway\n\n69) xoet: Move R3 Bananas Aaron\n\n70) Aaron: Attack R3N Aaron\n\n71) xoet: Move B2 Naotet Xoet\n\n72) Aaron: Sacrifice R3 Aaron\nAttack B2N Xoet\nAttack Y1N Xoet\nAttack Y1N Xoet\n\n\tAaron: Thanks for the game, Xoet!!\n\nHomeworlds Online (SDG# 1929)\nStarted: 2005.12.19, Ended: 2005.12.31\nParticipants: Toni (S), xoet (N)\nWinner: xoet\n\n1) xoet: Homeworld G3 B2 Y3\n\n2) Toni: Homeworld Y1 B1 G3 *\n\txoet: ok i typed homeworld g3 b2 y3\n\txoet: and this is what happened now type the same thing because im told that yellow is for moving blue is for changing the colors of the ships(triangles)\n\txoet: and green is like the connection glue i think but we will see\n\txoet: so typing two homeworlds and a ship \n\txoet: homeworld b3 g3 y3 i think is the best home world you really dont want red till you start attacking mid game i guess it is\n\txoet: but sometimes you may want to mix it up like homeworld b3 g2 y2\n\txoet: with one of each you cant lose i guess dont know the concepts of how to play just what works and does not work thru trial and error\n\tToni: b3 g3 y3 all three are giving me the same error message I got on the other game "an unrecognized command" I never could figure out how to get them in my box in the other game either.\n\tToni: tried it again with "homeworld" starting the command and got this....It is very important that your starting stars be different sizes! To override this check, please append an asterisk (*) to the end of the 'homeworld' command (eg. homeworld y1 b1 g3 *). \n\n3) xoet: Build Y1 Xoet\n\n4) Toni: Pass\n\tToni: Well got it to take it, so here it is, such as it is.\n\n5) xoet: Build Y1 Xoet\n\txoet: mmmm they may not have undo working right with all the games but really it does not matter too much about the number cause you can make it up later\n\txoet: that might have been because you had small ships dont know but i typed the next line above\n\txoet: build y1 xoet\n\txoet: you should type the follow line not much else to do\n\txoet: build g1 Toni\n\tToni: build g1 gives the message...The system does not exist.\n\n6) Toni: Build G1 Toni\n\tToni: could not get anything to work.. just kept telling me that the system does not exist.\n\txoet: typing what is in quote's "build g1 Toni" will get the green hopefully i will pass also now\n\txoet: not letting me pass i will pass next turn to keep it even for both our sakes\n\n7) xoet: Pass\n\txoet: what i did was "build y1 xoet" you should type "build g1 Toni" that should get you a ship in your system "Toni"\n\n8) Toni: Build G1 Toni\n\tToni: ok that worked\n\n9) xoet: Discover Y1 Xoet B1 Emc2\n\txoet: there i did not know how to pass i thought there should of been a button but could not find it before\n\txoet: this is what my other opponent posted for me to gather my abilities with the game for the big game im play with those other two ppl \n\txoet: ts52 "Yeah, there are a few adages for this game: always start with two different sizes in your homewold - this makes it harder for your opponent to get into your homeword. always start with a large ship - there is strength in size between your homeworld and starting ship, have blue, green and yellow. You need green to build, and yellow to move, and eventually blue to trade for red. But if you don't have those three, you'll end up wasting time getting the one you don't never leave your homeworld undefended. - Keep a large ship in your homeworld if at all possible. finally, once you opponent has a gun, you get a gun. - Once things escalate to red ships, it becomes an arms race. If you had kept a large ship in your homeworld, and traded one of your ships on bluebird to red right after I'd traded for a red ship, then when I moved into your homeworld, you could've sacrificed the red ship to take over my red ship, and still been alive. We really didn't get into sacrifices in this game at all, but they are another powerful tactic in the game that it's important not to overlook."\n\txoet: sacrifice how do you do that ??? i dont know i will have to ask him to show me lol\n\n10) Toni: Build G1 Toni\n\txoet: problem being he typed that after it was certian i would lose and of course the game is over with ts52\n\n11) xoet: Pass\n\txoet: now we got to worry about over populations so i am move my little ship out to "discover y1 xoet b1 emc2"\n\txoet: your command might look like "discover g1 Toni y1 yolanda"\n\txoet: or you could "move g1 Toni emc2"\n\txoet: i think that should work too but if you get too many ships in your home system there is the catastrophe but i dont know how that works yet\n\tToni: with the coding you gave...move g1 Toni emc2 and discover g1 Toni y1 yolanda... I get this message - These systems are not connected\n\n12) Toni: Discover G1 Toni G2 Yolanda\n\n13) xoet: Build Y2 Xoet\n\n14) Toni: Build G2 Yolanda\n\n15) xoet: Move Y2 Xoet Emc2\n\n16) Toni: Build G2 Yolanda\n\n17) xoet: Discover Y1 Emc2 G3 Santa\n\n18) Toni: Pass\n\n19) xoet: Build Y2 Xoet\n\txoet: now in a regular game an opponent would of said "catastrophe Yolanda g" because four of the same color and you are over populated suggestion either "move g1 yolanda Santa" or discover a new system or something i dont think you can trade without a blue ship or star but you might be able too\n\txoet: _magical_me: From the rules: "Two systems are connected to each other if they do not share the same size system markers. If two systems contain the same size system marker, those two systems are not connected. Therefore, a small system is connected to any medium or large system, but not to another small system. A binary system made up of a small piece and a medium piece is not connected to any small or medium system, nor is it connected to any binary system that contains a small piece or a medium piece. System connections have nothing to do with the physical positions of systems on the playing field." \n\n20) Toni: Trade G1 B1 Toni\n\tToni: Had to pass.. got this message... "You have 2 unused actions. This system requires you to explicitely PASS any undesired actions" \n\n21) xoet: Build Y2 Santa\n\txoet: mmm i think we need to do something about the four greens in yolanda\n\n22) Toni: Build G1 Yolanda B1 Kassa\n\txoet: try this "trade g1 b1 Toni"\n\txoet: but maybe take a day off till I can read the rules over a few more times if you want\n\n23) xoet: Discover Y2 Xoet R1 Bill\n\n24) Toni: Move B1 Toni Yolanda\n\txoet: i would "move b1 Toni yolanda"\n\n25) xoet: Trade Y3 B3 Xoet\n\n26) Toni: Build B2 Yolanda\n\n27) xoet: Build Y3 Xoet\n\n28) Toni: Trade G1 R1 Toni\n\txoet: good now you can trade the green into maybe yellow but you might have to trade them into blues\n\n29) xoet: Move B3 Xoet Bill\n\txoet: now your best bet would be "trade g3 Toni y3"\n\txoet: actually you should be able to trade some greens in the yolanda system\n\txoet: oh and i am unsure if this exists in this game yet but it does in byte and impasse in small letters there is a little link saying view all moves and then you just pick and choose!!! in the form scroll bar\n\txoet: so ive undone my last move to see if homeworlds has a move choice selection but could not find one oh well\n\n30) Toni: Move R1 Toni Yolanda *\n\txoet: made trade after i realized i could not trade to blue with y1 because there were no b1's and a trade must be even\n\n31) xoet: Build Y3 Xoet\n\n32) Toni: Build R1 Yolanda *\n\n33) xoet: Build Y3 Santa\n\n34) Toni: Trade G2 B2 Yolanda\n\txoet: :: xoet's trade ship entered the red star system called bill hooking up with his starship size two ::\n\n35) xoet: Move B3 Bill Santa\n\n36) Toni: Trade G2 R2 Yolanda *\n\n37) xoet: Trade Y2 G2 Santa\n\tToni: could not make anyother moves but build. :(\n\txoet: you should have been able to trade g2 b2 yolanda\n\n38) Toni: Trade R2 Y2 Yolanda *\n\n39) xoet: Move B3 Santa Bill\n\n40) Toni: Move Y2 Yolanda Emc2\n\n41) xoet: Trade Y2 R2 Emc2\n\n42) Toni: Move Y2 Emc2 Yolanda\n\n43) xoet: Build G1 Santa\n\n44) Toni: Move R1 Yolanda Santa\n\n45) xoet: Trade R2 Y2 Emc2\n\n46) Toni: Attack Y1 Santa R2 Santa\n\n47) xoet: Move B3 Bill Yolanda\nCatastrophe Yolanda B\n\n48) Toni: Attack G1 Santa\n\n49) xoet: Move G2 Santa Yolanda\nCatastrophe Yolanda G\n\n50) Toni: Move R1 Santa Bill\n\n51) xoet: Trade Y3 R3 Xoet\n\n52) Toni: Build G1 Toni\n\n53) xoet: Trade Y1 B1 Xoet\n\n54) Toni: Trade G3 R3 Toni *\n\n55) xoet: Build Y1 Santa\n\n56) Toni: Move R3 Toni Santa\n\n57) xoet: Move Y3 Santa Bill\n\n\tSYSTEM: Toni resigns.\n\nHomeworlds Online (SDG# 1928)\nStarted: 2005.12.19, Ended: 2006.1.1\nParticipants: Laurie_Menke (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld G1 B2 Y3\n\n2) Laurie_Menke: Homeworld B3 G1 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tLaurie_Menke: Let's see if I can do a little better than our last game. :o)\n\n4) Laurie_Menke: Build Y1 Laurie_menke\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tandylooney: ok! Good luck!\n\n6) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\tLaurie_Menke: Thanks...you, too! :o)\n\n7) andylooney: Build G2 Andylooney\n\n8) Laurie_Menke: Discover G3 Laurie_menke B2 Phonebooth\n\n9) andylooney: Trade G1 R1 Andylooney\n\n10) Laurie_Menke: Build Y1 Laurie_menke\n\n11) andylooney: Discover G2 Andylooney Y3 Howell\n\n12) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n13) andylooney: Build G1 Howell\n\n14) Laurie_Menke: Sacrifice G3 Phonebooth\nBuild R1 Laurie_menke\nBuild R2 Laurie_menke\nBuild Y1 Laurie_menke\n\n15) andylooney: Build R2 Andylooney\n\n16) Laurie_Menke: Trade R2 G2 Laurie_menke\n\n17) andylooney: Discover G1 Howell Y2 Plugh\n\n18) Laurie_Menke: Discover G2 Laurie_menke Y2 Luella\n\tLaurie_Menke: So I'm curious...how are you naming your star systems these days? Are those last names? :o)\n\n19) andylooney: Build Y1 Andylooney\n\tandylooney: I have no particular naming convention. I have some tendancies, but nothing is rigorous. Howell is a last name. Plugh is a magic word from the Collossal Cave text adventure.\n\n20) Laurie_Menke: Trade Y1 B1 Laurie_menke\n\tLaurie_Menke: Good deal. If you like text adventures and geocaching, you may want to check out this web site: http://www.geocaching.com/seek/cache_details.aspx?guid=f178868c-fe61-4fc9-bbba-7beee0bb9862. It's a text adventure-based geocache in the town where I live. :o)\n\n21) andylooney: Build G2 Plugh\n\n22) Laurie_Menke: Move R1 Laurie_menke Plugh\n\n23) andylooney: Move G2 Plugh Laurie_menke\n\n24) Laurie_Menke: Build R2 Laurie_menke\n\n25) andylooney: Sacrifice R2 Andylooney\nAttack R2S Laurie_menke\nAttack R1S Laurie_menke\n\tLaurie_Menke: Well, bye-bye binary star system. But at least I'm still in the game. I probably could have played that better... :o(\n\n26) Laurie_Menke: Build G3 Luella\n\tLaurie_Menke: Oh, no! Shoot! I thought I saw what you were doing, but I didn't expect that at all! I thought you were going to sacrifice your y3 in order to move your greens in and cause a catastrophe. This is *much* worse! :o(\n\n27) andylooney: Sacrifice R2 Laurie_menke\nAttack B1S Laurie_menke\nAttack Y1S Laurie_menke\n\tandylooney: Yes, it's true, it's worse that you thought. Thanks for playing!\n\n\nHomeworlds Online (SDG# 1939)\nStarted: 2005.12.19, Ended: 2006.2.8\nParticipants: ts52 (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld G1 B2 Y3\n\tts52: Hey Andy! It's Tim. Hopefully I'll be a bit more competition this time than I was at Origins. :)\n\tandylooney: Hi Tim! Good luck and thanks for playing!\r\n\n\n2) ts52: Homeworld G3 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tts52: Thanks. Good luck to you too!\r\nMuch as I really appreciate this server, I've been thinking it would be fun to play by email, swapping domcumented pictures of the game with your opponent that you've set up in neat and interesting locations.\n\tandylooney: yeah, well... having done that, I find this online system far easier!\n\n4) ts52: Build Y1 Ts52\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tts52: Absolutely. I know I wouldn't want to try to keep track of more than one game that way.\n\n6) ts52: Trade Y1 G1 Ts52\n\n7) andylooney: Build G2 Andylooney\n\n8) ts52: Discover G1 Ts52 B1 Blueberry\n\n9) andylooney: Trade G1 R1 Andylooney\n\n10) ts52: Build Y1 Ts52\n\tts52: You bring weapons into this peaceful galaxy?!?!\r\nI can only assume your intenions are no good.\n\n11) andylooney: Discover G2 Andylooney Y3 Howell\n\n12) ts52: Move Y1 Ts52 Blueberry\n\n13) andylooney: Build Y1 Andylooney\n\n14) ts52: Build G1 Blueberry\n\n15) andylooney: Build G2 Howell\n\n16) ts52: Discover G1 Blueberry G3 Oscar\n\n17) andylooney: Discover G2 Howell Y2 Plugh\n\n18) ts52: Build Y1 Ts52\n\n19) andylooney: Discover Y1 Andylooney B3 Ibm\n\n20) ts52: Trade Y1 R1 Ts52\n\n21) andylooney: Build R1 Andylooney\n\n22) ts52: Build R2 Ts52\n\n23) andylooney: Build R2 Andylooney\n\n24) ts52: Move R1 Ts52 Blueberry\n\n25) andylooney: Move R2 Andylooney Howell\n\n26) ts52: Move Y1 Blueberry Oscar\n\n27) andylooney: Move R2 Howell Blueberry\n\n28) ts52: Discover G1 Oscar Y2 Lemon\n\n29) andylooney: Attack R1S Blueberry\n\n30) ts52: Trade G1 Y1 Blueberry\n\n31) andylooney: Sacrifice G2 Howell\nBuild Y2 Andylooney\nBuild Y3 Ibm\n\n32) ts52: Discover Y1 Blueberry G3 Kermit\n\n33) andylooney: Move Y2 Andylooney Kermit\n\n34) ts52: Discover Y1 Kermit B1 Burst\n\n35) andylooney: Move Y1 Ibm Blueberry\n\n36) ts52: Sacrifice G1 Lemon\nBuild Y2 Oscar\n\n37) andylooney: Trade R1 G1 Blueberry\n\n38) ts52: Trade Y1 G1 Burst\n\n39) andylooney: Build G2 Blueberry\n\n40) ts52: Build G2 Burst\n\n41) andylooney: Build Y1 Blueberry\n\n42) ts52: Move Y1 Oscar Burst\n\n43) andylooney: Trade R1 B1 Andylooney\n\n44) ts52: Move G2 Burst Oscar\n\n45) andylooney: Sacrifice Y2 Kermit\nMove G1 Blueberry Oscar\nMove G2 Blueberry Oscar\nCatastrophe Oscar Green\n\n46) ts52: Build G1 Burst\n\n47) andylooney: Build G2 Plugh\n\n48) ts52: Discover G1 Burst G3 Kermit\n\n49) andylooney: Move G2 Plugh Blueberry\n\n50) ts52: Build Y2 Burst\n\n51) andylooney: Build Y2 Andylooney\n\n52) ts52: Build R1 Ts52\n\n53) andylooney: Sacrifice G2 Plugh\nBuild G2 Blueberry\nBuild Y2 Ibm\n\n54) ts52: Move Y1 Burst Kermit\n\n55) andylooney: Discover G2 Blueberry G3 Paradise\n\n56) ts52: Build G2 Burst\n\n57) andylooney: Move Y3 Ibm Burst\n\n58) ts52: Sacrifice Y2 Burst\nDiscover G2 Burst Y2 Sol\nMove G1 Burst Sol\n\n59) andylooney: Move R2 Blueberry Kermit\n\n60) ts52: Trade R2 B2 Ts52\n\n61) andylooney: Attack G1S Kermit\n\n62) ts52: Discover Y1 Kermit R2 Cherry\n\n63) andylooney: Build B3 Andylooney\n\n64) ts52: Discover B2 Ts52 R1 Raspberry\n\n65) andylooney: Discover B1 Andylooney B3 Meanie\n\n66) ts52: Build R2 Ts52\n\n67) andylooney: Sacrifice G2 Blueberry\nBuild R3 Andylooney\nBuild R3 Kermit\n\n68) ts52: Move G1 Sol Kermit\n\n69) andylooney: Sacrifice Y2 Ibm\nDiscover G1 Kermit Y2 Plugh\nMove R3 Kermit Sol\n\n70) ts52: Move R1 Ts52 Blueberry\n\n71) andylooney: Sacrifice R3 Andylooney\nAttack R1S Blueberry\nAttack G2S Sol\nAttack G1S Kermit\n\n72) ts52: Build R3 Ts52\n\n73) andylooney: Sacrifice G2 Sol\nBuild R3 Blueberry\nBuild B3 Meanie\n\n74) ts52: Move Y1 Cherry Raspberry\n\tts52: I know I'm doomed. But I just can't bring myself to resign. Sorry about that. I'm still dying to see how this plays out, in an effort to try and learn from it.\n\n75) andylooney: Sacrifice Y3 Burst\nMove R2 Kermit Blueberry\nMove R2 Blueberry Ts52\nMove R1 Blueberry Ts52\nCatastrophe Ts52 Red\n\tandylooney: There's no need to resign, ever. I'm happy to play it all the way to the bitter end!\n\n76) ts52: Trade Y3 R3 Ts52\n\n77) andylooney: Trade B3 Y3 Meanie\n\tts52: Excellent, thanks. I don't think it'll be much longer anyway...\n\n78) ts52: Trade B2 G2 Raspberry\n\n79) andylooney: Move R3 Sol Raspberry\n\n80) ts52: Build Y2 Raspberry\n\n81) andylooney: Sacrifice R3 Blueberry\nAttack Y2S Raspberry\nAttack Y1S Raspberry\nAttack G2S Raspberry\n\n82) ts52: Build R1 Ts52\n\n83) andylooney: Sacrifice G2 Raspberry\nBuild Y3 Meanie\nBuild R2 Raspberry\n\n84) ts52: Trade R1 B1 Ts52\n\n85) andylooney: Move R2 Raspberry Kermit\n\n86) ts52: Build B2 Ts52\n\n87) andylooney: Sacrifice Y2 Raspberry\nMove B1 Meanie Blueberry\nMove B1 Blueberry Ts52\nCatastrophe Ts52 Blue\n\n88) ts52: Build R1 Ts52\n\tts52: And so ends the game. Thanks for the game, I enjoyed it, and obviously still have a lot to learn.\n\tts52: It's not legal to pass, is it?\n\n89) andylooney: Sacrifice Y3 Meanie\nMove R1 Andylooney Ts52\nMove B3 Andylooney Ts52\nMove R3 Raspberry Ts52\nCatastrophe Ts52 Red\n\tandylooney: Actually, if you consult your list of options at the top, you'll see that it is legal to pass. But it's very rarely useful...\n\tandylooney: Thanks for the game!\r\n\n\n\nHomeworlds Online (SDG# 1944)\nStarted: 2005.12.20, Ended: 2005.12.27\nParticipants: ts52 (S), Calavera (N)\nWinner: Calavera\n\n1) Calavera: Homeworld Y2 B3 G3\n\n2) ts52: Homeworld B2 G1 Y3\n\n3) Calavera: Build G1 Calavera\n\n4) ts52: Build Y1 Ts52\n\n5) Calavera: Build G1 Calavera\n\n6) ts52: Build Y1 Ts52\n\n7) Calavera: Discover G1 Calavera Y1 Rillanon\n\n8) ts52: Discover Y1 Ts52 G3 Oscar\n\n9) Calavera: Discover G1 Rillanon B3 Krondor\n\n10) ts52: Build Y1 Oscar\n\n11) Calavera: Build G2 Krondor\n\n12) ts52: Build Y2 Ts52\n\n13) Calavera: Trade G2 Y2 Krondor\n\n14) ts52: Trade Y2 R2 Ts52\n\n15) Calavera: Trade G1 R1 Calavera\n\n16) ts52: Discover Y1 Ts52 G3 Kermit\n\n17) Calavera: Build G1 Krondor\n\n18) ts52: Build Y2 Ts52\n\n19) Calavera: Build G2 Krondor\n\n20) ts52: Trade Y2 G2 Ts52\n\n21) Calavera: Sacrifice Y2 Krondor\nMove G1 Krondor Ts52\nMove G1 Krondor Ts52\nCatastrophe Ts52 G\n\n22) ts52: Trade R2 G2 Ts52\n\n23) Calavera: Build G1 Krondor\n\n24) ts52: Build G1 Ts52\n\tts52: I'm heading down to my in-laws tomorrow for the holiday. I might have sparse net access. Sorry in advance if there's a long lag between moves for the next week. I'll be back next thursday.\n\n25) Calavera: Trade G2 Y2 Krondor\n\tts52: Sorry about the undo's. I saw your response right after I made my last move, and reflexively hit undo. Then thought better of it. Then I typo'd this last one. Sorry. I'll try to be more careful.\n\tCalavera: No Problem.\n\n26) ts52: Trade G1 R1 Ts52\n\n27) Calavera: Build G1 Calavera\n\n28) ts52: Build Y2 Kermit\n\n29) Calavera: Build Y3 Krondor\n\n30) ts52: Build Y3 Ts52\n\n31) Calavera: Trade G1 B1 Calavera\n\n32) ts52: Build G1 Ts52\n\n33) Calavera: Discover B1 Calavera G1 Crydee\n\n34) ts52: Move G2 Ts52 Oscar\n\n35) Calavera: Discover Y3 Krondor R1 Bas-tyra\n\n36) ts52: Build G2 Ts52\n\n37) Calavera: Sacrifice G3 Calavera\nBuild R2 Calavera\nBuild B1 Crydee\nBuild B1 Crydee\n\n38) ts52: Discover G2 Ts52 G3 Earth\n\n39) Calavera: Sacrifice Y3 Bas-tyra\nMove B1 Crydee Ts52\nMove B1 Crydee Ts52\nMove B1 Crydee Ts52\nCatastrophe Ts52 B\n\n\tCalavera: Thanks for the game. It's been fun.\n\nHomeworlds Online (SDG# 1926)\nVariants: "Sinister"\nStarted: 2005.12.20, Ended: 2006.1.14\nParticipants: Toni (S), xoet (W), MightyJack (N), Uglyfoot (E)\nWinner: MightyJack\n\n1) MightyJack: Homeworld B3 Y2 G3\n\n2) Uglyfoot: Homeworld G3 B1 Y3\n\n3) Toni: Homeworld Y1 B2 G2 *\n\n4) xoet: Homeworld B2 G3 Y3\n\n5) MightyJack: Build G1 Mightyjack\n\n6) Uglyfoot: Build Y1 Uglyfoot\n\n7) Toni: Build G1 Toni *\n\n8) xoet: Build Y1 Xoet\n\txoet: good luck everyone :-)\n\n9) MightyJack: Trade G1 B1 Mightyjack\n\n10) Uglyfoot: Build Y1 Uglyfoot\n\n11) Toni: Build G1 Toni *\n\n12) xoet: Build Y1 Xoet\n\n13) MightyJack: Build B1 Mightyjack\n\n14) Uglyfoot: Discover Y1 Uglyfoot G2 Gateway\n\n15) Toni: Trade G2 Y2 Toni *\n\n16) xoet: Trade Y1 B1 Xoet\n\n17) MightyJack: Trade B1 Y1 Mightyjack\n\n18) Uglyfoot: Build Y2 Gateway\n\n19) Toni: Trade G1 R1 Toni *\n\n20) xoet: Build Y2 Xoet\n\n21) MightyJack: Discover Y1 Mightyjack G1 Sirius\n\txoet: sorry about the delay in moving christmas happened here on my homeworld Merry Christmas too all those who have that on their homeworlds\n\n22) Uglyfoot: Trade Y1 G1 Uglyfoot\n\n23) Toni: Trade G1 R1 Toni *\n\n24) xoet: Discover Y2 Xoet G1 Emc3\n\n25) MightyJack: Build G1 Mightyjack\n\n26) Uglyfoot: Build Y1 Uglyfoot\n\n27) Toni: Trade Y2 R2 Toni\n\n28) xoet: Build B1 Xoet\n\n29) MightyJack: Build Y2 Sirius\n\n30) Uglyfoot: Discover G1 Uglyfoot B2 Duet\n\n31) xoet: Move B1 Xoet Emc3\n\n32) MightyJack: Move B1 Mightyjack Sirius\n\tSYSTEM: Toni resigns.\n\tSYSTEM: Toni resigns.\n\txoet: ok so it says waiting for to move now is it my turn cuase i cant play anything no command box or do i just resign ??? I could not log on for the past few days but i did try to with no luck not until now could i do anything\n\tMightyJack: We had a similar problem when someone was eliminated in another Sinister Homeworlds game that I'm currently playing in... looks like Aaron's help will be needed to fix this one too.\n\tAaron: Well, on the positive side of things, this problem is a new problem. The changes I made last week seem to actually have worked. I am confused though. The game history seems off. I am going to undo the last move and see where we end up. I am going to monitor the game. Let me know what we need to do to salvage this.\n\n33) Uglyfoot: Move Y1 Uglyfoot Duet\n\n34) xoet: Build Y2 Emc3\n\n35) MightyJack: Discover Y1 Sirius G2 Vega\n\tUglyfoot: So do I go after the resigned Toni or sharpen the knives for Xoet? Which one is my victory condition? I would guess Xoet...\n\tMightyJack: Your new target is Xoet. Toni's ships are still available for capture... but good luck getting a red ship to survive long enough in her system to do it.\n\tMightyJack: Actually, now I'm seeing that Toni has been "unresigned"... so you might not have a new target after all. The rumors of her resignation may have been exaggerated... :-)\n\tToni: I keep getting these messages that it's my turn, but there is no where to make a play. I did resign. I just catch on as to how to do anything. Sorry guys. :( Toni\n\tMightyJack: If you don't see a command window, do you see a Resign button that might let you quit again if that's your wish?\n\tMightyJack: Toni says she resigned and I don't see any indication that she wants to get back in on the game, so I'm going to press the "Force Resign" button and see what happens next...\n\n36) Uglyfoot: Build Y3 Uglyfoot\n\tMightyJack: So far, so good.\n\tToni: Don't think it worked. I am still getting the notices that it is my turn.\n\n37) xoet: Trade Y2 B2 Emc3\n\n38) MightyJack: Build Y2 Vega\n\n39) Uglyfoot: Build Y3 Duet\n\n40) xoet: Build B1 Xoet\n\n41) MightyJack: Sacrifice Y2 Sirius\nMove Y1 Vega Uglyfoot\nMove Y2 Vega Uglyfoot\nCatastrophe Uglyfoot Yellow\n\n\nHomeworlds Online (SDG# 1950)\nStarted: 2005.12.22, Ended: 2006.1.14\nParticipants: Calavera (S), lambda (N)\nWinner: Calavera\n\n1) lambda: Homeworld Y1 B2 G3\n\n2) Calavera: Homeworld Y2 B3 G3\n\tlambda: Hi there! I'm meeting so many different people playing these games, it's great. Sorry I was slow on taking my first turn; I was finishing up finals at school. Anyhow, good luck to you!\n\tCalavera: h y2 b3 g3\n\tCalavera: Good luck to you as well.\n\n\nHomeworlds Online (SDG# 1945)\nStarted: 2005.12.28, Ended: 2005.12.29\nParticipants: lyman (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) lyman: Homeworld G1 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\n4) lyman: Discover Y3 Lyman G3 Georgia\n\n\nHomeworlds Online (SDG# 1940)\nVariants: "Sinister"\nStarted: 2005.12.28, Ended: 2005.12.29\nParticipants: twopercentright (S), andylooney (N), JunkMan (E)\nWinner: JunkMan\n\n1) andylooney: Homeworld B3 G2 Y3\n\ttwopercentright: um...hello?\n\ttwopercentright: I was told this is good place to learn the icehouse games for when i have to demo for Con\r\n\n\tSYSTEM: twopercentright resigns.\n\n2) JunkMan: Homeworld G1 B2 Y3\n\n3) andylooney: Build Y1 Andylooney\n\tandylooney: so what happened here? Did 2%right just quit? or what? I guess we can play this out as a two player game...\n\n4) JunkMan: Build Y1 Junkman\n\tJunkMan: I think he resigned right off the bat. Maybe he hit the wrong button or something. Darn, I think I had better odds having to eliminate him.\n\n5) andylooney: Trade Y1 G1 Andylooney\n\tandylooney: Well, our board is all goofy and there are too many pieces in the bank. This isn't the game I had in mind. I'd be happy to just kill it, but I don't want to resign for fear of hurting my rating. Maybe we can get Aaron to just cancel this game?\n\n6) JunkMan: Trade Y1 R1 Junkman\n\tJunkMan: I don't mind either way. I don't think resigning would hurt your rating though, because it's supposed to be a three player game. I'd definately check with aaron to be sure, though.\n\n\tandylooney: Oh, you're right - this should be an unrated game. Well, I'm gonna bag this then. If you want to play me 2 player, grab the game I have open. Thanks!\n\tSYSTEM: andylooney resigns.\n\nHomeworlds Online (SDG# 2019)\nStarted: 2005.12.29, Ended: 2006.2.9\nParticipants: andylooney (S), mneme (N)\nWinner: andylooney\n\n1) mneme: Homeworld Y3 B2 G3\n\n2) andylooney: Homeworld G1 B2 Y3\n\n3) mneme: Build G1 Mneme\n\tmneme: I don't understand. how do I build a new ship in my home system? b G1 B2Y3 doesn't work. :(\r\n\n\tandylooney: you need to give it your system's name, not its description. Try "Construct G1 mneme"\n\n4) andylooney: Build Y1 Andylooney\n\tmneme: Ah! Ok, it just wasn't clear to me, without more examples, that the system name was the thing outside the parenthes! The fact that the system name doesn't appear in the order reports doesn't help, of course.\r\n\n\n5) mneme: B G1 Mneme\n\n6) andylooney: Discover Y1 Andylooney G3 Garden\n\n7) mneme: Discover G1 Mneme B1 Fleur\n\n8) andylooney: Build Y1 Andylooney\n\n9) mneme: Build G2 Fleur\n\n10) andylooney: Build Y1 Garden\n\tmneme: Ok, that's pretty clever -- using your discoveries to deny my builds. (yeah, if it's not obvious, the is the first time I've played BH).\r\n\n\n11) mneme: Sacrifice G3 Mneme\nBuild G2 Fleur\nBuild G2 Fleur\nBuild G3 Mneme\n\n12) andylooney: Build Y2 Andylooney\nCatastrophe Fleur Green\n\n13) mneme: Build G1 Mneme\n\tandylooney: sorry about that... but 4 greens in one system is just too many...\n\tmneme: Yes. I'd intended to create the fourth ship as the third in mneme, but typoed.\r\n\r\nShould I resign and start over?\n\n14) andylooney: Trade Y2 G2 Andylooney\n\tandylooney: Oh, I wouldn't do that. You're far from dead! Let's play on!\n\n15) mneme: Discover G1 Mneme B1 Fleuret\n\n16) andylooney: Discover G2 Andylooney Y3 Howell\n\tmneme: If you say so -- with you finally producing green ships, I've got serious issues, since most of my moves will risk a catastrophe soon\n\n17) mneme: Build G2 Fleuret\n\n18) andylooney: Discover Y1 Garden B1 Berry\n\n19) mneme: Trade G2 Y2 Fleuret\n\n20) andylooney: Build Y2 Garden\n\tmneme: There's an undo feature? Oh, holy hell. I mean, I couldn't remember whether cataclism was 4 or 5, but I'd have definately undone m7 if I'd realized that.\r\n\n\n21) mneme: Build Y2 Fleuret\n\n22) andylooney: Build G2 Howell\n\n23) mneme: Trade Y2 B2 Fleuret\n\n24) andylooney: Sacrifice G2 Howell\nBuild G2 Howell\nBuild Y2 Berry\n\n25) mneme: Sacrifice G3 Mneme\nBuild G2 Fleuret\nBuild G3 Mneme\nBuild B1 Fleuret\n\n26) andylooney: Move G2 Howell Berry\n\n27) mneme: Move B2 Fleuret Garden\n\n28) andylooney: Sacrifice Y3 Andylooney\nMove G2 Howell Berry\nMove G2 Berry Mneme\nMove G2 Berry Mneme\nCatastrophe Mneme Green\n\tandylooney: Thanks for playing! Better luck on your next game!\n\n\nHomeworlds Online (SDG# 2029)\nStarted: 2005.12.30, Ended: 2006.1.27\nParticipants: Laurie_Menke (S), shelbyt (N)\nWinner: Laurie_Menke\n\n1) shelbyt: Homeworld G1 B2 Y3\n\n2) Laurie_Menke: Homeworld Y3 B2 G3\n\tLaurie_Menke: Nice to meet you, Shelby...good luck! :o)\n\n3) shelbyt: Build Y1 Shelbyt\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) shelbyt: Trade Y1 G1 Shelbyt\n\n6) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n\tLaurie_Menke: Well, shelby, it seems like you've disappeared, so I'm going to force you to resign. Maybe we can play again sometime.\n\nHomeworlds Online (SDG# 1981)\nStarted: 2005.12.31, Ended: 2006.2.17\nParticipants: Dream_Control (S), Toni (W), Kermit (N), xoet (E)\nWinner: Kermit\n\n1) Kermit: Homeworld Y2 B3 G3\n\tToni: Okay guys, I have no idea what I am doing, so bare with me.\n\n2) xoet: Homeworld B2 G1 Y3\n\txoet: Hi Toni, Dream_Control, and Kermit I thing Kermit can help us out\n\n3) Dream_Control: Homeworld G3 B1 Y3\n\txoet: now dave try to keep up with the turns i just typed in the orders box "homeworld b2 g1 y3" i believe Kermit typed homeworld y2 b3 g3" so i can get to his homeworld cuase i have a star that is size 2 or is that i cant get to your world because of that not sure? but my y3 can travel and make a new world once ive put a new ship in my system\n\n4) Toni: Homeworld R3 B2 G3\n\tDream_Control: I have no idea what I'm doing either.\n\n5) Kermit: Build G1 Kermit\n\tToni: *lol* Dream, guess we will be learning a lot then. Hope so, because I can never seem have the right combination to get a play to work.\n\n6) xoet: Build Y1 Xoet\n\n7) Dream_Control: Build Y1 Dream_control\n\txoet: now if i'm right only the yellow ships can venture out beyond the root system?\n\n8) Toni: Build G1 Toni *\n\n9) Kermit: Discover G1 Kermit Y1 Namor\n\n10) xoet: Trade Y1 B1 Xoet\n\n11) Dream_Control: Discover Y1 Dream_control R2 Zodiac\n\txoet: guess i was wrong about venturing forth as for me I "trade y1 b1 xoet" but I'm not sure why I did that?\n\tKermit: well kinda right and kinda wrong. Any ship can move , BUT there must be a yellow ship or star in the system they are moving from. (if it is a ship ip must be owned by the same person as the moving ship.\r\nThe same is true of all abilities you can attack with any ship as long as you have a red ship or there is a star in the system. you can trrade any ship as long as there is a blue star or you hace a blue ship in the system.\r\n \n\tKermit: the one exception, sorta, is green when you build a new ship (which you can do with a green star or if you have a green ship in the system) you can only build colors of which you already have ships. for example, on my next turn I can build a ship in the namor system but the only color i cam buils is green. i could also move that green ship to another system since the star in the namor system is yellow. if i do this thow the namor system will go away as all uninhabited systems do.\n\tKermit: one other thing to watch for if you haven't played before. Sacrifice, It allows someone to make three moves ANYWHERE whether they have that color in the system or not. for instance sacrificing a 1 point blue in kermit would let me trade my green in namor for another color. this can be sneaky epecially if a three point ship were involved.\n\tKermit: oh, I said three moves..as many moves ans the dots on the ship you sacrificed. I have often seen a 3 pointer sac'd to knock someone out of the game though...so watch for it.\n\n12) Dream_Control: Build Y1 Dream_control\n\n13) Kermit: Build G1 Kermit\n\tToni: Sorry guys I just can't grasp the concept\n\tDream_Control: Aw Toni :-( Sorry to see you go :-(\n\n14) xoet: Build Y1 Xoet\n\ttwopercentright: This game still going on?\n\n15) Dream_Control: Move Y1 Dream_control Zodiac\n\tKermit: yes it is...one person dropped out though\n\n16) Kermit: Trade G1 Y1 Kermit\n\n17) xoet: Discover Y1 Xoet B3 Emc2\n\n18) Dream_Control: Move Y1 Zodiac Namor\n\n19) Kermit: Trade Y1 R1 Kermit\n\n20) xoet: Build Y1 Xoet\n\n21) Dream_Control: Move Y1 Namor Toni\n\n22) Kermit: Build G1 Kermit\n\n23) xoet: Trade Y1 G1 Xoet\n\n24) Dream_Control: Trade Y1 R1 Toni\n\n25) Kermit: Build G2 Namor\n\n26) xoet: Move G1 Xoet Emc2\n\n27) Dream_Control: Trade Y3 G3 Dream_control\n\n28) Kermit: Move G2 Namor Zodiac\n\n29) xoet: Build G2 Emc2\n\n30) Dream_Control: Build G2 Dream_control\n\n31) Kermit: Attack Y1S Zodiac\n\n32) xoet: Discover G1 Emc2 Y1 Dagnabit\n\n33) Dream_Control: Build G2 Dream_control\n\n34) Kermit: Build R1 Kermit\nCatastrophe Dream_control Green\n\n35) xoet: Build Y1 Emc2\n\tDream_Control: Oh we'll fight some more soon Kermit Trust Me\r\n\n\n36) Kermit: Trade R1 B1 Kermit\n\tKermit: Dream_Control, NEVER have all the ships on your home world the same color fo mor than a turn. You are always beter off doing most of your building off of your homeworld or at the very least keeping the colors mixed at home. I was planning to sacrifice my 3 point yellow move a g1 from namor to zodiac then then to your home. then move the g2 from zodiac to your homeworld and Catastrophe (that was all in 1 turn by way of the sacrifice). you saved me the trouble.\n\n37) xoet: Trade Y1 R1 Emc2\n\n38) Kermit: Build G2 Namor\n\n39) xoet: Trade R1 B1 Emc2\n\n40) Kermit: Move B1 Kermit Namor\n\n41) xoet: Move B1 Emc2 Dagnabit\n\n42) Kermit: Move G2 Namor Emc2\n\n43) xoet: Build G2 Dagnabit\n\n44) Kermit: Sacrifice R1 Kermit\nAttack G2E Emc2\n\n45) xoet: Trade G1 R1 Dagnabit\n\n46) Kermit: Trade G1 R1 Kermit\n\n47) xoet: Build B1 Dagnabit\n\n48) Kermit: Sacrifice R1 Kermit\nAttack Y1E Emc2\n\n49) xoet: Trade B1 Y1 Dagnabit\n\n50) Kermit: Build Y2 Zodiac\n\n51) xoet: Build R1 Dagnabit\n\n52) Kermit: Build B1 Namor\n\n53) xoet: Build Y2 Xoet\n\n54) Kermit: Build Y2 Emc2\n\n55) xoet: Build R1 Dagnabit\n\n56) Kermit: Sacrifice Y2 Zodiac\nMove Y1 Emc2 Xoet\nMove Y2 Emc2 Xoet\nCatastrophe Xoet Y\n\tDream_Control: Man Kermit you suck, Dudes like you will make people not want to play on this site.\n\n57) xoet: Build B1 Xoet\n\n58) Kermit: Trade G2 Y2 Emc2\n\tKermit: sorry Dream_Control the way that happened is always the way this game ends. (every one i have been in at least(well catastrophe or surrender)). \n\n59) xoet: Trade B1 Y1 Xoet\n\tKermit: All is not lost yet xoet but it does not look good. Also Dream_Control this is an unrated game and that is the best place to learn. First time I played homeeworlds i lost in a very similar fashion. I never saw the sacrifice coming and BAM I was out of the game. my first thought was 'what the.....' then I thought 'So THAT'S what a sacrifice is for!'\n\n60) Kermit: Trade G2 R2 Emc2\n\n61) xoet: Move R1 Dagnabit Kermit\n\n62) Kermit: Move R2 Emc2 Xoet\n\n63) xoet: Build Y2 Dagnabit\n\n64) Kermit: Attack B1E Xoet\n\n65) xoet: Build Y2 Xoet\n\n66) Kermit: Attack Y2E Xoet\n\txoet: it does not look good at this point but I've no definite strategy\n\n67) xoet: Move Y2 Dagnabit Emc2\n\n68) Kermit: Sacrifice G2 Zodiac\nBuild Y2 Xoet\nBuild Y3 Xoet\nCatastrophe Xoet Yellow\n\n\tKermit: good game\n\nHomeworlds Online (SDG# 2035)\nStarted: 2005.12.31, Ended: 2006.2.4\nParticipants: andylooney (S), lyman (N)\nWinner: andylooney\n\n1) lyman: Homeworld G1 B2 Y3\n\tlyman: I appreciate the second chance!\n\n2) andylooney: Homeworld B3 G2 Y3\n\n3) lyman: Build Y1 Lyman\n\tandylooney: I'm happy to play!\n\n4) andylooney: Build Y1 Andylooney\n\tlyman: I'm pleased to meet you. I have owned pyramids since they were marketed as the "Martian Chess Set". \n\tandylooney: Cool. I always love playing with my fans! Good luck!\n\n5) lyman: Discover Y1 Lyman G3 Fargo\n\n6) andylooney: Discover Y1 Andylooney G1 Mandm\n\n7) lyman: Build Y1 Fargo\n\n8) andylooney: Build Y2 Andylooney\n\n9) lyman: Discover Y1 Fargo G2 Pierre\n\n10) andylooney: Trade Y2 G2 Andylooney\n\n11) lyman: Build Y2 Pierre\n\n12) andylooney: Build Y2 Mandm\n\n13) lyman: Build Y2 Lyman\n\n14) andylooney: Build Y3 Andylooney\n\n15) lyman: Trade Y2 B2 Lyman\n\n16) andylooney: Discover Y3 Andylooney G1 Andes\n\n17) lyman: Move B2 Lyman Fargo\n\n18) andylooney: Build G3 Andylooney\n\n19) lyman: Build Y2 Fargo\n\n20) andylooney: Discover Y2 Mandm G3 Milkyway\n\n21) lyman: Build B1 Fargo\n\n22) andylooney: Trade G2 R2 Andylooney\n\n23) lyman: Move B1 Fargo Pierre\n\n24) andylooney: Sacrifice Y2 Milkyway\nMove Y3 Andes Fargo\nMove Y3 Fargo Lyman\n\n25) lyman: Build Y2 Lyman\n\n26) andylooney: Sacrifice R2 Andylooney\nAttack Y3N Lyman\nAttack Y2N Lyman\n\n\nHomeworlds Online (SDG# 2058)\nStarted: 2006.1.5, Ended: 2006.3.4\nParticipants: andylooney (S), paul98 (N)\nWinner: andylooney\n\n1) paul98: Homeworld G2 B1 Y3\n\n2) andylooney: Homeworld B3 G2 Y3\n\n3) paul98: Build Y1 Paul98\n\n4) andylooney: Build Y1 Andylooney\n\n5) paul98: Discover Y1 Paul98 B3 Fluxx\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) paul98: Trade Y1 G1 Fluxx\n\n8) andylooney: Discover G1 Andylooney Y1 Mellow\n\tpaul98: Do you mind if I name my systems after your games?\n\tandylooney: not at all! I think it's great!\n\n9) paul98: Build G1 Fluxx\n\tpaul98: Thanks. I read about your naming scheme on the Wunderland Weekly News for October 13, 2005. By the way, do you have one for R3 yet? If not, my friend suggested New York City or The Big Apple would be good.\n\n10) andylooney: Build G2 Mellow\n\n11) paul98: Build Y1 Paul98\n\n12) andylooney: Discover G2 Mellow Y3 Lacanna\n\n\tandylooney: So, it's been over a month since your last move... are you going to finish this game?\n\nHomeworlds Online (SDG# 2037)\nStarted: 2006.1.7, Ended: 2006.1.10\nParticipants: TwoShort (S), Aaron (N)\nWinner: TwoShort\n\n1) Aaron: Homeworld Y1 B2 G3\n\tAaron: Hail, and good luck! Not that you'll need it =) I'm still very much a novice at this game.\n\n2) TwoShort: Homeworld G2 B3 Y3\n\n3) Aaron: Build G1 Aaron\n\n4) TwoShort: Build Y1 Twoshort\n\n5) Aaron: Trade G1 Y1 Aaron\n\n6) TwoShort: Build Y2 Twoshort\n\n7) Aaron: Build Y2 Aaron\n\tTwoShort: Well, I'm not such an expert myself... I recently played my first and only in-person game; other than that all my play has been on this site.\n\tAaron: What did you think of the in-person session? I'm sure it felt like a very different game.\n\n8) TwoShort: Discover Y1 Twoshort G1 Sprout\n\n9) Aaron: Discover Y1 Aaron G3 Bean\n\tTwoShort: Well, I've always liked the aesthetics of the physical Icehouse pieces. But I played the game (against Andy Looney) over the course of two evenings during which we had the game set up in a side room, and we would sneak off between other activities to make our moves. So it actually had much more of the not-quite-real-time feel of playing here than it might have. \n\n10) TwoShort: Trade Y2 G2 Twoshort\n\n11) Aaron: Build Y2 Bean\n\n12) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Sprout\nBuild Y3 Twoshort\n\n13) Aaron: Sacrifice Y2 Aaron\nMove Y2 Bean Sprout\nMove Y1 Bean Sprout\nCatastrophe Sprout Y\n\n14) TwoShort: Discover Y3 Twoshort B1 Bluestar\n\n15) Aaron: Build G1 Aaron\n\n16) TwoShort: Trade Y3 G3 Bluestar\n\n17) Aaron: Trade G1 R1 Aaron\n\n18) TwoShort: Build G1 Bluestar\n\n19) Aaron: Build R1 Aaron\n\n20) TwoShort: Build Y1 Twoshort\n\n21) Aaron: Trade R1 Y1 Aaron\n\tAaron: not looking too good for me right now =)\r\n\n\n22) TwoShort: Build Y2 Twoshort\n\n23) Aaron: Build Y2 Aaron\n\n24) TwoShort: Sacrifice Y3 Twoshort\nMove Y1 Twoshort Bluestar\nDiscover Y1 Bluestar R3 Deathstar\nMove Y1 Deathstar Aaron\nCatastrophe Aaron Yellow\n\n25) Aaron: Build R1 Aaron\n\tAaron: uhm, ouch =)\n\n26) TwoShort: Build Y1 Twoshort\n\n27) Aaron: Trade R1 Y1 Aaron\n\tTwoShort: Yeah, I think you're in trouble now :) \n\n28) TwoShort: Discover Y1 Twoshort G1 Sprout\n\n29) Aaron: Move R1 Aaron Sprout\n\n30) TwoShort: Move Y1 Sprout Twoshort\n\n31) Aaron: Sacrifice Y1 Aaron\nMove R1 Sprout Twoshort\n\n32) TwoShort: Trade Y2 R2 Twoshort\n\n33) Aaron: Attack Y1S Twoshort\n\n34) TwoShort: Attack R1N Twoshort\n\tTwoShort: Am I missing something, or is this a creative surrender?\n\n35) Aaron: Discover Y1 Twoshort G1 Limes\n\tAaron: nah, just hijacking your yellow for the heck of it =) Nothing much else to do and I hate just resigning.\n\n36) TwoShort: Trade G1 Y1 Bluestar\n\tTwoShort: I can understand that... \n\tAaron: Well, the more I think about this, the more hopeless it becomes. I'll stop drawing it out =D Thanks for the game!\n\n\nHomeworlds Online (SDG# 2121)\nStarted: 2006.1.8, Ended: 2006.3.8\nParticipants: andylooney (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld G1 B2 Y3\n\n2) andylooney: Homeworld B3 G2 Y3\n\n3) TwoShort: Build Y1 Twoshort\n\n4) andylooney: Build Y1 Andylooney\n\n5) TwoShort: Trade Y1 G1 Twoshort\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) TwoShort: Build G2 Twoshort\n\n8) andylooney: Discover G1 Andylooney Y1 Different\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) andylooney: Build Y1 Andylooney\n\n11) TwoShort: Build Y1 Twoshort\n\n12) andylooney: Discover Y1 Andylooney B1 Berry\n\n13) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n14) andylooney: Build Y2 Andylooney\n\n15) TwoShort: Build Y2 Twoshort\n\n16) andylooney: Trade Y1 R1 Berry\n\n17) TwoShort: Trade Y2 R2 Twoshort\n\n18) andylooney: Move Y2 Andylooney Berry\n\n19) TwoShort: Build Y1 Twoshort\n\n20) andylooney: Build Y2 Andylooney\n\n21) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Yolonda\nBuild Y2 Bluestar\n\n22) andylooney: Discover Y2 Andylooney R1 Volcano\n\n23) TwoShort: Sacrifice Y2 Bluestar\nDiscover Y1 Bluestar B1 Bluonia\nDiscover G1 Yolonda Y2 Yonder\n\n24) andylooney: Build G2 Different\n\n25) TwoShort: Sacrifice G2 Yolonda\nBuild Y3 Bluonia\nBuild G2 Yonder\n\n26) andylooney: Discover G1 Different B3 Bigbluefrog\n\n27) TwoShort: Move G2 Yonder Bluonia\n\n28) andylooney: Build G3 Bigbluefrog\n\n29) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Bluonia Andylooney\nMove G2 Bluonia Andylooney\nMove Y1 Bluonia Andylooney\n\n\tTwoShort: :)\n\tandylooney: Dammit!!!\n\tTwoShort: At this point in most of my games, I try to say something encouraging so my opponent will play again. On the other hand, I was thinking you might be more motivated by a bit of taunting. But I suppose it's more polite to keep things positive, so I'll just point out that you really did very well. A bit more practice and you'll be quite good at this game. \n\tandylooney: grumble, grumble, grumble...\r\nGood game, sir!\n\nHomeworlds Online (SDG# 2120)\nStarted: 2006.1.9, Ended: 2006.1.17\nParticipants: Uglyfoot (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld G1 B2 Y3\n\n2) Uglyfoot: Homeworld Y2 B3 G3\n\n3) TwoShort: Build Y1 Twoshort\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) TwoShort: Build Y1 Twoshort\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n8) Uglyfoot: Discover G1 Uglyfoot B1 Commerce\n\n9) TwoShort: Build Y1 Grogar\n\n10) Uglyfoot: Build G2 Commerce\n\n11) TwoShort: Build Y2 Twoshort\n\n12) Uglyfoot: Trade G2 Y2 Commerce\n\n13) TwoShort: Trade Y2 G2 Twoshort\n\n14) Uglyfoot: Build G2 Commerce\n\n15) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n16) Uglyfoot: Build Y2 Commerce\n\n17) TwoShort: Move Y1 Grogar Commerce\n\n18) Uglyfoot: Trade Y2 R2 Commerce\n\n19) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Commerce\nBuild Y3 Grogar\n\n20) Uglyfoot: Discover G2 Commerce Y3 Forward\n\n21) TwoShort: Trade Y1 R1 Twoshort\n\n22) Uglyfoot: Attack Y2 Commerce\n\n23) TwoShort: Move Y1 Grogar Commerce\nCatastrophe Commerce Yellow\n\n24) Uglyfoot: Build G2 Forward\n\n25) TwoShort: Move Y3 Grogar Commerce\n\n26) Uglyfoot: Build G2 Commerce\n\n27) TwoShort: Sacrifice R1 Twoshort\nAttack R2S Commerce\n\n28) Uglyfoot: Move G2 Forward Twoshort\n\n29) TwoShort: Sacrifice R2 Commerce\nAttack G2S Commerce\nAttack G1S Commerce\n\n30) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Forward\nBuild G3 Twoshort\nBuild G3 Twoshort\nCatastrophe Twoshort G\n\n31) TwoShort: Sacrifice Y3 Commerce\nMove G2 Commerce Uglyfoot\nMove G1 Commerce Uglyfoot\nPass\n\n32) Uglyfoot: Trade G1 R1 Uglyfoot\n\n33) TwoShort: Trade G2 R2 Uglyfoot\n\n34) Uglyfoot: Attack G1 Uglyfoot\n\n35) TwoShort: Attack R1S Uglyfoot\n\n36) Uglyfoot: Sacrifice G2 Forward\nBuild G1 Uglyfoot\nBuild G1 Uglyfoot\n\n37) TwoShort: Trade R2 G2 Uglyfoot\nCatastrophe Uglyfoot Green\n\n\nHomeworlds Online (SDG# 2136)\nStarted: 2006.1.10, Ended: 2006.3.15\nParticipants: twopercentright (S), Lexicon (W), Aaron (N), ts52 (E)\nWinner: ts52\n\n1) Aaron: Homeworld B1 G2 Y3\n\n2) ts52: Homeworld G1 B3 Y3\n\tAaron: Good luck, all!\n\n3) twopercentright: Homeworld B2 G3 Y3\n\tts52: Have a great game everyone!\n\ttwopercentright: bare with me, here. This is my first ever game\r\n\n\n4) Lexicon: Homeworld G2 B3 Y3\n\ttwopercentright: how do i know if i am good or evil?\n\n5) Aaron: Build Y1 Aaron\n\tAaron: There is no good and evil in SDG Homeworlds. We are currently playing the base game which is "Last Man Standing" There is an "official" variant also supported here called "Sinister Homeworlds" where the winner is the one who eliminates the player on their left.\r\n\r\nFor a training game, this is as good as any. The goal is just to somehow survive the carnage. Feel free to ask any questions you may have. The game is actually quite straightforward once you get the hang of it.\n\n6) ts52: Build Y1 Ts52\n\tAaron: I may at some point make the Sinister variant the base game, but for now...\n\tAaron: The "Last Man Standing" version is just a little more chaotic.\n\tts52: Ah, I was wondering if this was a sinister game or not. I haven't played a "Last man standing" game yet. Should be fun!\r\nAnd feel free to ask us anything 2%right.\n\n7) twopercentright: Build Y1 Twopercentright\n\tAaron: Variants (if any) will appear in the top title bar of the game page, where the game number and rules links are.\n\tLexicon: Perhaps the lack of variants should be indicated with a "Standard game, no variants" caption. \n\tAaron: hrm, that's an option...*pulls up the source code*\n\tAaron: I agree, I like it.\n\tLexicon: Looks good.\n\n8) Lexicon: Build Y1 Lexicon\n\n9) Aaron: Trade Y1 R1 Aaron\n\n10) ts52: Trade Y1 G1 Ts52\n\tts52: I like the addition. Looks good.\r\n\n\n11) twopercentright: Build Y1 Twopercentright\n\n12) Lexicon: Trade Y1 G1 Lexicon\n\n13) Aaron: Build Y1 Aaron\n\ttwopercentright: hm\n\ttwopercentright: hm\n\ttwopercentright: I guess it did work. When i was on earlier, the website froze up, so i had no idea if my command had been exicuted\n\tAaron: Remeber, 2%, that anybody can call a catastrophe at the end of their turn. If you build a 4th yellow, and even if you yourself don't call the catastrophe, Lexicon could.\n\n14) ts52: Build Y1 Ts52\n\n15) twopercentright: Trade Y1 G1 Twopercentright\n\n16) Lexicon: Build Y1 Lexicon\n\ttwopercentright: how is a new planet founded? I think i'm lost on that point.\n\tLexicon: Use the discover command. discover ship fromSystem newStar newName\n\n17) Aaron: Trade Y1 B1 Aaron\n\n18) ts52: Discover Y1 Ts52 G2 Lime\n\n19) twopercentright: Discover Y1 Twopercentright B1 Grainne\n\ttwopercentright: I tried that, but it said...i couldn't do it for some reason *chagrined*\n\n20) Lexicon: Discover Y1 Lexicon G1 Redhat\n\ttwopercentright: huh. Weird\n\n21) Aaron: Trade Y3 G3 Aaron\n\n22) ts52: Build G2 Ts52\n\n23) twopercentright: Build G2 Twopercentright\n\ttwopercentright: how does one get larger ships? Or is it the whole "use the smallest piece" thing, wherein i can get a larger peice only when the smaller ones run out?\n\n24) Lexicon: Discover G1 Lexicon Y1 Yellowdog\n\tts52: You've got it. Building the smallest piece, once all the smalls and mediums are gone. And then trading to get larges in other colors.\n\n25) Aaron: Trade B1 Y1 Aaron\n\n26) ts52: Discover G2 Ts52 B2 Plum\n\n27) twopercentright: Move G2 Twopercentright Grainne\n\n28) Lexicon: Build G3 Yellowdog\n\n29) Aaron: Build Y2 Aaron\n\n30) ts52: Build G3 Plum\n\n31) twopercentright: Build G3 Grainne\n\n32) Lexicon: Sacrifice G3 Yellowdog\nBuild G3 Yellowdog\nBuild Y2 Redhat\nBuild Y2 Lexicon\n\n33) Aaron: Build R1 Aaron\n\n34) ts52: Trade G1 R1 Ts52\n\n35) twopercentright: Trade G1 R1 Twopercentright\n\n36) Lexicon: Trade Y2 R2 Lexicon\n\n37) Aaron: Discover Y2 Aaron B3 Sea\n\n38) ts52: Build Y2 Ts52\n\n39) twopercentright: Build Y2 Grainne\n\n40) Lexicon: Discover G1 Yellowdog Y3 Debian\n\n41) Aaron: Build Y2 Aaron\n\n42) ts52: Build Y3 Lime\n\n43) twopercentright: Trade Y1 R1 Grainne\n\n44) Lexicon: Build Y1 Lexicon\n\n45) Aaron: Build R2 Aaron\n\tAaron: Things are getting pretty crowded...\r\n\n\n46) ts52: Move Y2 Ts52 Plum\n\n47) twopercentright: Build R2 Twopercentright\n\n48) Lexicon: Move Y1 Lexicon Yellowdog\n\ttwopercentright: very confusing, indeed\n\n49) Aaron: Move R2 Aaron Sea\n\n50) ts52: Discover G2 Plum R3 Elmo\n\n51) twopercentright: Build R2 Grainne\n\n52) Lexicon: Sacrifice G1 Debian\nBuild Y3 Lexicon\n\n53) Aaron: Discover R1 Aaron B3 Azure\n\n54) ts52: Build G1 Plum\n\n55) twopercentright: Sacrifice Y2 Grainne\nMove G3 Grainne Elmo\nMove G3 Elmo Aaron\n\n56) Lexicon: Build G1 Yellowdog\n\ttwopercentright: Something tells me i'm going to regret doing that.\r\n\n\n57) Aaron: Attack G3S Aaron\n\tLexicon: A bit questionable. You should have positioned better and had another g1 ready to go to launch at him. As it is, maybe you can convince ts52 to burn a y2 to send his g1 over there. Aaron is in a pretty tough position now though.\n\n58) ts52: Sacrifice Y1 Lime\nMove G2 Elmo Aaron\nCatastrophe Aaron Green\n\tts52: Hmmm, I think I'll do it this way instead. Not sure if it's better or not....\n\n59) twopercentright: Build G1 Grainne\n\n60) Lexicon: Discover G1 Yellowdog Y2 Gentoo\n\n61) Aaron: Sacrifice Y2 Sea\nMove Y2 Aaron Lexicon\nMove Y1 Aaron Lexicon\nCatastrophe Lexicon Y\n\n62) ts52: Discover G3 Plum R3 Elmo\n\n63) twopercentright: Discover R1 Twopercentright Y1 Pallas\n\n64) Lexicon: Move G3 Yellowdog Lexicon\n\tLexicon: Yeah! Catastrophes all around!\r\n\n\n65) Aaron: Trade R1 Y1 Aaron\n\n66) ts52: Build G2 Elmo\n\n67) twopercentright: Trade R1 B1 Grainne\n\n68) Lexicon: Move Y1 Yellowdog Lexicon\n\n69) Aaron: Trade R2 Y2 Sea\n\n70) ts52: Build Y1 Plum\n\n71) twopercentright: Build B1 Grainne\n\n72) Lexicon: Build Y2 Lexicon\n\n73) Aaron: Move Y2 Sea Aaron\n\n74) ts52: Sacrifice G3 Elmo\nBuild Y3 Ts52\nBuild G2 Plum\nBuild G3 Elmo\n\n75) twopercentright: Build Y3 Twopercentright\n\n76) Lexicon: Move Y1 Redhat Twopercentright\n\n77) Aaron: Move Y1 Aaron Twopercentright\nCatastrophe Twopercentright Yellow\n\tLexicon: Who's with me?\n\n78) ts52: Discover G2 Plum Y3 Sol\n\n79) twopercentright: Trade B1 Y1 Grainne\n\ttwopercentright: for what?\n\ttwopercentright: I honestly don't remember having 3 yellow ships in that system......am i just crazy?\r\n\n\ttwopercentright: oh I see\n\ttwopercentright: Now all a sudden, I'm the "bad guy"\n\n80) Lexicon: Build G3 Gentoo\n\n81) Aaron: Trade R1 Y1 Azure\n\n82) ts52: Sacrifice G3 Elmo\nBuild G3 Elmo\nBuild G3 Plum\nBuild Y3 Lime\n\n83) twopercentright: Move R2 Grainne Azure\n\n84) Lexicon: Move G1 Gentoo Elmo\n\ttwopercentright: Yeeeaaaah. I'm gunna lose this game. ;-)\n\tLexicon: well, right now ts52 needs a turn.\n\n85) Aaron: Move Y1 Azure Aaron\n\n86) ts52: Sacrifice Y3 Lime\nMove Y2 Plum Aaron\nMove Y1 Plum Aaron\nMove Y3 Ts52 Plum\nCatastrophe Aaron Yellow\n\n87) Lexicon: Sacrifice G1 Elmo\nBuild G1 Gentoo\n\tts52: Sorry Aaron. Thanks for the game!\n\tLexicon: well, that significantly events things out...\r\n\n\n88) ts52: Sacrifice G3 Elmo\nBuild G3 Elmo\nBuild Y1 Lime\nBuild R1 Ts52\n\tAaron: Cheers! Have fun!\n\n89) twopercentright: Move Y1 Grainne Twopercentright\n\ttwopercentright: Sorry about that everyone. I've been very ill the last two days and couldn't on. Thank you for waiting for me.\n\n90) Lexicon: Sacrifice G3 Gentoo\nBuild G3 Gentoo\nBuild R1 Lexicon\nBuild Y1 Redhat\n\n91) ts52: Move R1 Ts52 Plum\n\n92) twopercentright: Build Y2 Twopercentright\n\tAaron: Glad you're feeling better!\n\n93) Lexicon: Trade R1 B1 Lexicon\n\n94) ts52: Sacrifice G3 Elmo\nBuild G3 Elmo\nBuild Y2 Plum\nBuild Y3 Ts52\n\n95) twopercentright: Trade G2 R2 Grainne\n\n96) Lexicon: Sacrifice Y2 Lexicon\nMove G3 Gentoo Ts52\nMove G1 Gentoo Ts52\n\n97) ts52: Build G2 Sol\n\n98) twopercentright: Sacrifice Y2 Twopercentright\nMove G1 Grainne Lime\nMove G1 Lime Ts52\nCatastrophe Ts52 Green\n\n99) Lexicon: Build Y2 Lexicon\n\n100) ts52: Sacrifice Y2 Plum\nMove Y1 Lime Elmo\nDiscover Y3 Ts52 R1 Cherry\n\n101) twopercentright: Build Y2 Twopercentright\n\n102) Lexicon: Move B1 Lexicon Redhat\n\n103) ts52: Move G3 Plum Ts52\n\n104) twopercentright: Trade Y1 R1 Twopercentright\n\n105) Lexicon: Build B1 Redhat\n\n106) ts52: Sacrifice G2 Sol\nBuild R2 Plum\nBuild R3 Ts52\n\n107) Lexicon: Trade Y1 B1 Redhat\n\tAaron: Hope all is well, 2%!\n\tAaron: I think perhaps it's time to move this game along. Sorry 2%! Hope all is well and that we see you back soon!\n\n108) ts52: Move R2 Plum Redhat\n\tLexicon: Seems it's about that time alright. Oh well. OK ts52, you are on your way to destruction!\n\tLexicon: The site's been down for me for a good bit of last week. I don't know if that's me or everyone, but Aaron didn't send out a message and all *my* games are expired, so I'm thinking it's just me. \r\n\n\n109) Lexicon: Sacrifice Y2 Redhat\nMove B1 Redhat Ts52\nMove B1 Redhat Ts52\n\n110) ts52: Sacrifice R3 Ts52\nAttack B1W Ts52\nAttack B1W Ts52\nAttack B1W Redhat\n\n111) Lexicon: Trade Y2 B2 Lexicon\n\tts52: Hah, don't count me out just yet.\n\n112) ts52: Sacrifice Y3 Lime\nMove B1 Redhat Lexicon\nMove B1 Ts52 Redhat\nMove B1 Redhat Lexicon\nCatastrophe Lexicon Blue\n\tLexicon: this does not bode well...\n\tLexicon: did I mention how you have far too many ships? I think of those y3s at ICBMs. Too many are pointed in my direction now...\n\n113) ts52: Pass\n\tAaron: Sorry, Lexicon. The site's been running pretty consistently. Any particular error you've been getting? Glad you're back at least!\n\n\tLexicon: Three losers and no winners! Heh heh.\n\tAaron: rofl! oh man =) Well, ts, please try to 'pass' and let's seeif that triggers the end of the game. if not, I'll hack at it =) Sorry!\n\nHomeworlds Online (SDG# 2148)\nStarted: 2006.1.10, Ended: 2006.1.12\nParticipants: ts52 (S), Calavera (N)\nWinner: Calavera\n\n1) Calavera: Homeworld B2 Y3 G3\n\n2) ts52: Homeworld G1 B2 Y3\n\n3) Calavera: Build G1 Calavera\n\tts52: Good luck!\n\n4) ts52: Build Y1 Ts52\n\tCalavera: You too\n\n5) Calavera: Build G1 Calavera\n\n6) ts52: Discover Y1 Ts52 G3 Kermit\n\n7) Calavera: Discover G1 Calavera B1 Question\n\n8) ts52: Build Y1 Kermit\n\n9) Calavera: Build G2 Question\n\n10) ts52: Trade Y3 G3 Ts52\n\n11) Calavera: Trade G2 Y2 Question\n\n12) ts52: Move Y1 Kermit Ts52\n\n13) Calavera: Build G2 Question\n\n14) ts52: Build Y1 Kermit\n\n15) Calavera: Build Y2 Question\n\n16) ts52: Discover Y1 Kermit B1 Blueberry\n\n17) Calavera: Sacrifice G3 Calavera\nBuild G2 Question\nBuild G2 Calavera\nBuild G3 Calavera\n\n18) ts52: Sacrifice G3 Ts52\nBuild Y2 Kermit\nBuild Y3 Ts52\nBuild Y3 Blueberry\n\n19) Calavera: Sacrifice Y2 Question\nMove G2 Question Kermit\nMove G2 Kermit Ts52\n\n20) ts52: Trade Y3 R3 Ts52\n\n21) Calavera: Sacrifice G2 Question\nBuild G2 Ts52\nBuild G3 Ts52\nCatastrophe Ts52 G\n\n22) ts52: Trade Y3 G3 Blueberry\n\n23) Calavera: Trade G1 R1 Calavera\n\n24) ts52: Build G1 Blueberry\n\n25) Calavera: Trade G2 B2 Calavera\n\n26) ts52: Move G1 Blueberry Ts52\n\n27) Calavera: Discover B2 Calavera G1 Exclamation\n\n28) ts52: Build G2 Blueberry\n\n29) Calavera: Build B1 Exclamation\n\n30) ts52: Sacrifice G3 Blueberry\nBuild G2 Ts52\nBuild G2 Blueberry\nBuild G3 Blueberry\n\n31) Calavera: Build B3 Exclamation\n\n32) ts52: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y2 Ts52\nBuild Y3 Blueberry\n\n33) Calavera: Sacrifice Y2 Question\nMove B3 Exclamation Ts52\nMove B1 Exclamation Ts52\n\n34) ts52: Attack B3N Ts52\n\tts52: Well played. Thanks for the game!\n\n35) Calavera: Sacrifice G1 Question\nBuild B1 Ts52\nCatastrophe Ts52 B\n\tCalavera: Same to you, it was great fun. Thanks for an interesting game.\n\n\nHomeworlds Online (SDG# 2156)\nStarted: 2006.1.10, Ended: 2006.2.3\nParticipants: TwoShort (S), carversanx (N)\nWinner: TwoShort\n\n1) carversanx: Homeworld G3 B1 Y3\n\tcarversanx: I am learning commands etc. sorry, I am new.\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) carversanx: Build Y1 Carversanx\n\n4) TwoShort: Build G1 Twoshort\n\n5) carversanx: Discover Y1 Carversanx R2 Sol\n\n6) TwoShort: Build G1 Twoshort\n\n7) carversanx: Trade Y3 R3 Carversanx\n\n8) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n9) carversanx: Build R1 Carversanx\n\n10) TwoShort: Build G1 Twoshort\n\n11) carversanx: Trade R1 Y1 Carversanx\n\n12) TwoShort: Discover G1 Twoshort Y3 Yak\n\n13) carversanx: Move R3 Carversanx Sol\n\n14) TwoShort: Trade G1 R1 Twoshort\n\n\nHomeworlds Online (SDG# 2159)\nStarted: 2006.1.11, Ended: 2006.3.4\nParticipants: andylooney (S), carversanx (N)\nWinner: andylooney\n\n1) carversanx: Homeworld B1 Y2 G3\n\n2) andylooney: Homeworld B3 G2 Y3\n\n3) carversanx: Build G1 Carversanx\n\n4) andylooney: Build Y1 Andylooney\n\n5) carversanx: Discover G1 Carversanx R3 Metat\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n\tandylooney: So, it's been over a month since your last move... are you going to finish this game?\n\nHomeworlds Online (SDG# 2186)\nVariants: "Unrated"\nStarted: 2006.1.14, Ended: 2006.2.14\nParticipants: Jesse (S), twopercentright (N)\nWinner: Jesse\n\n1) twopercentright: Homeworld G3 B2 Y3\n\n2) Jesse: Homeworld G1 B3 Y3\n\tJesse: Hello, there! It looks like you're new to SDG; how new are you to Homeworlds?\n\n3) twopercentright: Build Y1 Twopercentright\n\n4) Jesse: Pass\n\ttwopercentright: This is only my second game. I'm in the middle of another, 4-way game that started a couple days ago.\n\ttwopercentright: As in, total Homeworld games...including real world games. Still just my second game.\n\tJesse: Okay, read the strategy tips on the wiki, if you haven't already. It's not my intention to give tips during the course of this game, but rather to handicap it by passing my first few turns after setting up my homeworld. I have no idea how many passes is appropriate for any given skill difference, so why don't we try 3?\n\n5) twopercentright: Trade Y1 G1 Twopercentright\n\tJesse: I wil answer any questions you have about the rules, though.\n\n6) Jesse: Pass\n\n7) twopercentright: Build Y1 Twopercentright\n\tJesse: One more...\n\n8) Jesse: Pass\n\n9) twopercentright: Discover Y1 Twopercentright G1 Grainne\n\tJesse: Okay, done.\n\n10) Jesse: Build Y1 Jesse\n\n11) twopercentright: Build Y1 Grainne\n\n12) Jesse: Discover Y1 Jesse G2 Morbo\n\n13) twopercentright: Build G2 Twopercentright\n\ttwopercentright: hehe. "MORBO WILL DEVOUR YOUR PLANET!!! Now for weather..."\n\n14) Jesse: Build Y2 Jesse\n\n15) twopercentright: Move G1 Twopercentright Grainne\n\tJesse: Kittens give Morbo gas.\n\n16) Jesse: Trade Y2 G2 Jesse\n\n17) twopercentright: Build G3 Grainne\n\ttwopercentright: build G3 Grainne\n\n18) Jesse: Discover G2 Jesse Y2 Juble\n\ttwopercentright: whoops. I'm an idiot. :-D\n\tJesse: If that makes you an idiot, then so am I. :)\n\n19) twopercentright: Move G1 Grainne Juble\n\n20) Jesse: Build G3 Juble\n\n21) twopercentright: Move G3 Grainne Juble\nCatastrophe Juble Green\n\n22) Jesse: Build Y2 Jesse\n\tJesse: I'm the more experienced player by far, and yet you destroyed the Juble system. Does that seem right to you?\n\n23) twopercentright: Build Y2 Twopercentright\n\n24) Jesse: Trade Y2 G2 Jesse\n\n25) twopercentright: Move G2 Twopercentright Grainne\n\n26) Jesse: Build Y2 Jesse\n\ttwopercentright: Juble system angered Morbo!\n\n27) twopercentright: Trade Y2 R2 Twopercentright\n\n28) Jesse: Trade Y2 R2 Jesse\n\tJesse: Funny, I was just thinking the same thing...\n\n29) twopercentright: Build R1 Twopercentright\n\tJesse: Engarde!\n\n30) Jesse: Build R1 Jesse\n\ttwopercentright: touche'\n\n31) twopercentright: Discover R1 Twopercentright G1 Pallas\n\ttwopercentright: why can't i discover a new star from a Grainne?\n\n32) Jesse: Discover G2 Jesse Y2 Draal\n\tJesse: I can't answer that question without knowing what command you were trying to enter. One possibility is that you were trying to discover a small system, but you can only move to medium and large systems from Grainne. Another possibility is that you were trying to discover a g2 system, but there isn't a g2 marker available. Or, it might have just been a syntax error.\n\n33) twopercentright: Build Y2 Twopercentright\n\n34) Jesse: Build G3 Draal\n\n35) twopercentright: Build G3 Grainne\n\ttwopercentright: Sorry about that. I've been very ill the past two days, and didn't have a chance to get on here.\n\n36) Jesse: Move G2 Draal Grainne\nCatastrophe Grainne G\n\tJesse: No problem.\n\n37) twopercentright: Move Y3 Twopercentright Pallas\n\tJesse: Boom. Gotta watch out for that.\n\n38) Jesse: Discover G3 Draal Y1 Kaori\n\n39) twopercentright: Build Y1 Pallas\n\tJesse: Draal has gone to the sea of stars.\n\n40) Jesse: Move G3 Kaori Twopercentright\n\n41) twopercentright: Move Y3 Pallas Twopercentright\n\tJesse: You should not leave your homeworld undefended.\n\n42) Jesse: Sacrifice R2 Jesse\nAttack Y3 Twopercentright\nAttack R2 Twopercentright\n\ttwopercentright: yeeeeaaaaaaahhhh. I'm gunna lose\n\n43) twopercentright: Build Y1 Twopercentright\n\n44) Jesse: Sacrifice R2 Twopercentright\nAttack Y2 Twopercentright\nAttack Y1 Twopercentright\n\tJesse: Thanks for the game.\n\n\nHomeworlds Online (SDG# 2169)\nStarted: 2006.1.15, Ended: 2007.2.4\nParticipants: MightyJack (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld G1 B2 Y3\n\n2) MightyJack: Homeworld B3 Y2 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) MightyJack: Build G1 Mightyjack\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) MightyJack: Build G2 Mightyjack\n\n7) andylooney: Build G2 Andylooney\n\n8) MightyJack: Discover G2 Mightyjack Y1 Tau Ceti\n\n9) andylooney: Discover G2 Andylooney Y3 Howell\n\tMightyJack: That was actually supposed to be Tau Ceti... guess the program won't let there be a new star with a space in the name. Oh well.\n\n10) MightyJack: Trade G1 Y1 Mightyjack\n\n11) andylooney: Discover G1 Andylooney Y3 Clampett\n\n12) MightyJack: Discover Y1 Mightyjack G1 Eden\n\n13) andylooney: Build Y1 Andylooney\n\n14) MightyJack: Build Y2 Eden\n\n15) andylooney: Discover Y1 Andylooney G3 Garden\n\n16) MightyJack: Discover Y2 Eden G3 Kermit\n\n17) andylooney: Build Y2 Garden\n\n18) MightyJack: Build G2 Mightyjack\n\n19) andylooney: Sacrifice G2 Howell\nBuild G2 Clampett\nBuild Y3 Andylooney\n\n20) MightyJack: Trade G2 R2 Mightyjack\n\n21) andylooney: Discover Y2 Garden B1 Berry\n\n22) MightyJack: Move R2 Mightyjack Berry\n\n23) andylooney: Discover G1 Clampett B1 Bomber\n\n24) MightyJack: Attack Y2N Berry\n\n25) andylooney: Trade G1 R1 Bomber\n\n26) MightyJack: Move R2 Berry Garden\n\n27) andylooney: Move Y3 Andylooney Garden\n\n28) MightyJack: Sacrifice Y2 Kermit\nMove Y2 Berry Garden\nMove Y1 Eden Garden\nCatastrophe Garden Yellow\n\n29) andylooney: Build Y1 Andylooney\n\n30) MightyJack: Build G1 Mightyjack\n\n31) andylooney: Build Y1 Andylooney\n\n32) MightyJack: Trade G1 B1 Mightyjack\n\n33) andylooney: Trade Y1 B1 Andylooney\n\n34) MightyJack: Move B1 Mightyjack Tau\n\n35) andylooney: Discover B1 Andylooney G3 Paradise\n\tMightyJack: Sorry for the long delays on my part too.\n\n36) MightyJack: Build B2 Tau\n\n37) andylooney: Build B2 Paradise\n\n38) MightyJack: Move B2 Tau Garden\n\n39) andylooney: Trade B1 R1 Paradise\n\n\nHomeworlds Online (SDG# 2248)\nStarted: 2006.1.19, Ended: 2006.1.21\nParticipants: Lexicon (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 G2 Y3\n\tLexicon: What a tough field. Do I play against the inventor of this game or one of the top players? The best way to improve is to get tromped, I suppose. ;)\n\n2) Lexicon: Homeworld G1 B3 Y3\n\n3) TwoShort: Build Y1 Twoshort\n\tTwoShort: Hmmm, I guess I am one of the top players. I still feel like I've just been lucky vs Andy, and Jesse has stomped me twice.\n\n4) Lexicon: Build Y1 Lexicon\n\n5) TwoShort: Trade Y1 G1 Twoshort\n\tLexicon: As long as you're beating Andy, you're pretty good. I'll probably try against him next.\n\n6) Lexicon: Trade Y1 G1 Lexicon\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Lexicon: Discover G1 Lexicon Y2 Nature\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) Lexicon: Build G2 Nature\n\n11) TwoShort: Discover Y1 Twoshort G3 Gordo\n\n12) Lexicon: Move G2 Nature Lexicon\n\n13) TwoShort: Discover Y1 Gordo G2 Grogar\n\n14) Lexicon: Build G3 Nature\n\n15) TwoShort: Build G3 Yolonda\n\n16) Lexicon: Build Y1 Lexicon\n\n17) TwoShort: Sacrifice G3 Yolonda\nBuild Y1 Grogar\nBuild Y2 Twoshort\nBuild G3 Yolonda\n\n18) Lexicon: Trade Y1 R1 Lexicon\n\n19) TwoShort: Discover G1 Yolonda Y2 Yoyodyne\n\n20) Lexicon: Sacrifice G3 Nature\nBuild G3 Nature\nBuild Y1 Lexicon\nBuild R1 Lexicon\n\n21) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Grogar Lexicon\nMove Y1 Grogar Lexicon\nCatastrophe Lexicon Yellow\n\n22) Lexicon: Discover G3 Nature Y3 Science\n\n23) TwoShort: Trade Y3 R3 Twoshort\n\n24) Lexicon: Trade G2 Y2 Lexicon\n\n25) TwoShort: Build G2 Yolonda\n\n26) Lexicon: Build G2 Science\n\n27) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yoyodyne\nBuild G3 Yolonda\nBuild R1 Twoshort\n\n28) Lexicon: Sacrifice Y2 Lexicon\nMove G3 Science Yoyodyne\nMove G3 Yoyodyne Lexicon\n\n29) TwoShort: Move G3 Yoyodyne Lexicon\n\n\tLexicon: I figured you had me back with the propulsion attack. Good game. ;)\n\nHomeworlds Online (SDG# 2274)\nStarted: 2006.1.20, Ended: 2006.1.22\nParticipants: sketchwick (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) sketchwick: Homeworld B2 Y1 G3\n\n3) jeep: Build G1 Jeep\n\n4) sketchwick: Build G1 Sketchwick\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) sketchwick: Trade G3 Y3 Sketchwick\n\n7) jeep: Build Y2 Jeep\n\n8) sketchwick: Discover Y3 Sketchwick G3 Sigh\n\n9) jeep: Sacrifice Y2 Jeep\nMove G3 Jeep Sigh\nMove G3 Sigh Sketchwick\n\n\nHomeworlds Online (SDG# 2267)\nStarted: 2006.1.20, Ended: 2006.2.22\nParticipants: TwoShort (S), Jesse (N)\nWinner: TwoShort\n\n1) Jesse: Homeworld B1 G2 Y3\n\tJesse: Well, now that you're kicking everyone else's asses around here, I think it's high time we played again. :)\n\n2) TwoShort: Homeworld B1 Y2 G3\n\tTwoShort: Hmmm, The last couple general challenges I've put up, I considered challenging you directly, but chickened out.\n\n3) Jesse: Build Y1 Jesse\n\n4) TwoShort: Build G1 Twoshort\n\tJesse: If I hadn't seen the open challenge, I was going to challenge you directly sometime soon, anyway. So, what, are you scared of the unstoppable juggernaut? I'm really looking forward to a challenging game.\n\tJesse: Interesting choice of homeworld. You want a really direct conflict, eh?\n\n5) Jesse: Trade Y1 B1 Jesse\n\tTwoShort: Or I'm getting my inatentive screw up out of the way off the top...\r\n\n\n6) TwoShort: Build G1 Twoshort\n\tJesse: That works, too.\n\tTwoShort: build g1 twoshort\n\n7) Jesse: Build B2 Jesse\n\tJesse: As it turns out, that doesn't work so well. ;)\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) Jesse: Trade B2 R2 Jesse\n\n10) TwoShort: Trade G1 R1 Twoshort\n\n11) Jesse: Build B2 Jesse\n\n12) TwoShort: Build G1 Twoshort\n\n13) Jesse: Trade B2 Y2 Jesse\n\n14) TwoShort: Build G1 Twoshort\n\n15) Jesse: Build B2 Jesse\n\tTwoShort: This is grim. I won't give up quite yet; but I will be wanting a rematch.\n\n16) TwoShort: Discover G1 Twoshort G3 Grogar\n\tJesse: Yeah, you're in a tough spot.\n\n17) Jesse: Trade B2 R2 Jesse\n\n18) TwoShort: Build G1 Twoshort\n\n19) Jesse: Trade R2 G2 Jesse\n\n20) TwoShort: Discover G1 Twoshort B3 Bluestar\n\tJesse: Ack! I hate wasting a move like that.\n\n21) Jesse: Discover Y2 Jesse G3 Hulk\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild R1 Twoshort\n\n23) Jesse: Build R1 Jesse\n\n24) TwoShort: Trade G2 Y2 Bluestar\n\tJesse: It looks like you may be turning the tables, here.\n\n25) Jesse: Discover G2 Jesse Y3 Yolk\n\tTwoShort: I'm feeling a bit less doomed\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild Y1 Bluestar\n\n27) Jesse: Build Y1 Jesse\n\n28) TwoShort: Trade Y2 B2 Bluestar\n\n29) Jesse: Move R2 Jesse Grogar\n\tTwoShort: This getting to that complexity level where I'm always sure I'm missing something \n\tJesse: I'm definitely going to need to think about this one...\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bluestar\n\n31) Jesse: Move Y1 Jesse Bluestar\nCatastrophe Bluestar Y\n\tJesse: I'm sorry, that's not allowed.\n\n32) TwoShort: Trade G2 Y2 Bluestar\n\n33) Jesse: Build G2 Yolk\n\n34) TwoShort: Move G1 Twoshort Yolk\n\n35) Jesse: Attack G1 Grogar\n\n36) TwoShort: Sacrifice G1 Bluestar\nBuild G1 Yolk\nCatastrophe Yolk Green\n\n37) Jesse: Build G1 Grogar\n\n38) TwoShort: Trade B2 G2 Bluestar\n\n39) Jesse: Build B2 Jesse\n\n40) TwoShort: Sacrifice Y2 Bluestar\nMove G2 Bluestar Jesse\nMove G2 Jesse Grogar\nCatastrophe Grogar Green\n\n41) Jesse: Build R2 Jesse\n\tJesse: Baboooom! What a violent little game we've got going here. Looks like the tables are tipping back my way for the moment.\n\n42) TwoShort: Discover R1 Twoshort G3 Greenland\n\n43) Jesse: Move R2 Jesse Hulk\n\tTwoShort: Things are definitely tipped your way, but I think less so than before the disasters.\n\n44) TwoShort: Build R2 Greenland\n\n45) Jesse: Move B1 Jesse Hulk\n\n46) TwoShort: Move Y1 Twoshort Greenland\n\n47) Jesse: Build B2 Hulk\n\n48) TwoShort: Build G1 Twoshort\n\n49) Jesse: Trade B2 G2 Hulk\n\n50) TwoShort: Discover R1 Greenland Y1 Yonder\n\n51) Jesse: Discover B2 Jesse Y3 Sulk\n\n52) TwoShort: Sacrifice G3 Twoshort\nBuild R2 Greenland\nBuild R3 Twoshort\nBuild R3 Yonder\n\n53) Jesse: Sacrifice G2 Hulk\nBuild B2 Sulk\nBuild R3 Jesse\n\n54) TwoShort: Move R3 Yonder Hulk\n\n55) Jesse: Sacrifice Y2 Hulk\nMove B1 Hulk Twoshort\nMove B2 Sulk Twoshort\n\n56) TwoShort: Sacrifice R2 Greenland\nAttack R2N Hulk\nAttack B2N Twoshort\n\n57) Jesse: Move B2 Sulk Twoshort\nCatastrophe Twoshort B\n\n58) TwoShort: Build R2 Greenland\n\n59) Jesse: Discover R1 Jesse G3 Flounder\n\n60) TwoShort: Discover R2 Greenland B1 Lupus\n\n61) Jesse: Build Y1 Jesse\n\n62) TwoShort: Build Y2 Greenland\n\n63) Jesse: Move Y3 Jesse Flounder\n\n64) TwoShort: Move R2 Greenland Jesse\n\n65) Jesse: Attack R2 Jesse\n\n66) TwoShort: Sacrifice Y2 Greenland\nMove R2 Hulk Jesse\nMove R3 Hulk Jesse\nCatastrophe Jesse Red\n\n67) Jesse: Build Y2 Jesse\n\n68) TwoShort: Build Y2 Greenland\n\n69) Jesse: Trade Y2 R2 Jesse\n\n70) TwoShort: Sacrifice Y2 Greenland\nMove R3 Twoshort Greenland\nMove R3 Greenland Jesse\n\n\tJesse: Well done. That's what I get for pressing my luck.\n\tJesse: So ends my 24 game winning streak. :)\n\nHomeworlds Online (SDG# 2280)\nStarted: 2006.1.23, Ended: 2006.2.10\nParticipants: cobalt (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld G1 B2 Y3\n\n2) cobalt: Homeworld B1 G3 Y3\n\n3) Lexicon: Build Y1 Lexicon\n\n4) cobalt: Build Y1 Cobalt\n\n5) Lexicon: Trade Y1 G1 Lexicon\n\n6) cobalt: Build Y1 Cobalt\n\n7) Lexicon: Build G1 Lexicon\n\n8) cobalt: Trade Y3 G3 Cobalt\n\n9) Lexicon: Discover G1 Lexicon Y3 Hydrogen\n\n10) cobalt: Discover Y1 Cobalt G2 Harrison\n\tcobalt: I'll be late on this one. Maybe a couple days.\n\tLexicon: No problem.\n\n11) Lexicon: Build G2 Hydrogen\n\n\nHomeworlds Online (SDG# 2235)\nStarted: 2006.1.24, Ended: 2006.2.6\nParticipants: andylooney (S), Lexicon (N)\nWinner: andylooney\n\n1) Lexicon: Homeworld G1 B2 Y3\n\n2) andylooney: Homeworld B3 G2 Y3\n\tLexicon: Howdy! Happy gaming. :)\n\n3) Lexicon: Build Y1 Lexicon\n\n4) andylooney: Build Y1 Andylooney\n\n5) Lexicon: Trade Y1 G1 Lexicon\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) Lexicon: Build G2 Lexicon\n\n8) andylooney: Build G2 Andylooney\n\n9) Lexicon: Sacrifice Y3 Lexicon\nDiscover G1 Lexicon Y3 Stage1\nDiscover G1 Stage1 Y1 Stage2\nMove G1 Stage2 Andylooney\nCatastrophe Andylooney Green\n\n10) andylooney: Trade Y3 G3 Andylooney\n\tLexicon: I've been wondering how this would play out.\n\n11) Lexicon: Build G1 Lexicon\n\n12) andylooney: Build G1 Andylooney\n\n13) Lexicon: Trade G1 Y1 Lexicon\n\n14) andylooney: Trade G1 Y1 Andylooney\n\n15) Lexicon: Build Y1 Lexicon\n\n16) andylooney: Build Y2 Andylooney\n\n17) Lexicon: Move Y1 Lexicon Andylooney\n\n18) andylooney: Trade Y2 R2 Andylooney\n\n19) Lexicon: Trade Y1 B1 Andylooney\n\tLexicon: I thought it might turn out this way. I'm about one more shy of a variety of attacks. Oh well. \r\n\n\n20) andylooney: Attack B1N Andylooney\n\n\nHomeworlds Online (SDG# 2303)\nStarted: 2006.1.24, Ended: 2006.2.5\nParticipants: TwoShort (S), Personman (N)\nWinner: TwoShort\n\n1) Personman: Homeworld Y1 B3 G3\n\n2) TwoShort: Homeworld G1 B2 Y3\n\n3) Personman: Build G1 Personman\n\n4) TwoShort: Build Y1 Twoshort\n\n5) Personman: Discover G1 Personman Y2 Wtdrts\n\n6) TwoShort: Trade Y1 G1 Twoshort\n\n7) Personman: Build G2 Personman\n\n8) TwoShort: Build Y1 Twoshort\n\n9) Personman: Trade G2 Y2 Personman\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\tTwoShort: I'm going to suggest you undo that. I can sacrifice my Y3, move my g1 into your homeworld and cause a catastrophe to win the game.\n\tPersonman: .. right. Sorry, this is only my, uh, 2.5th game. \n\n11) Personman: Build G2 Personman\n\tTwoShort: No problem. I make that exact error with some regularity.\n\n12) TwoShort: Build G2 Yolonda\n\tTwoShort: By the way, what does WTDRTS mean?\n\tPersonman: Where the dirt reaches the sky. It's from a They Might Be Giants song, like my user name. \r\n\n\tPersonman: Or, if you prefer, What The Dogs Rip To Shreds. Or maybe Who The Devil Remembers This Shithole? It could also be Winter: The Dark, Remote, Terrifying Star.\n\n13) Personman: Trade G2 B2 Personman\n\n14) TwoShort: Discover G1 Yolonda Y2 Yak\n\tTwoShort: I got Where's The Damn Real Time Strategy? but couldn't figure why you'd be asking that...\n\n15) Personman: Build G2 Wtdrts\n\n16) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n17) Personman: Discover Y2 Personman B2 Twostar\n\n18) TwoShort: Sacrifice G2 Yolonda\nBuild Y1 Twoshort\nBuild Y3 Bluestar\n\n19) Personman: Sacrifice G2 Wtdrts\nBuild Y3 Twostar\nBuild G2 Wtdrts\n\n20) TwoShort: Trade Y3 G3 Bluestar\n\n21) Personman: Discover G1 Wtdrts Y3 Save\n\n22) TwoShort: Build G2 Bluestar\n\n23) Personman: Build G2 Save\n\n24) TwoShort: Build G3 Yak\n\n25) Personman: Move G1 Save Twoshort\n\n26) TwoShort: Trade Y1 R1 Twoshort\n\n27) Personman: Sacrifice Y3 Twostar\nMove G2 Wtdrts Save\nMove G2 Save Twoshort\nMove G2 Save Twoshort\nCatastrophe Twoshort G\n\n28) TwoShort: Move G3 Yak Personman\n\n\tPersonman: Nicely done. I felt very much like I was walking into a trap the whole time, but was too lazy/stupid to actually sit down and think about what it might have been. That's quite a nice little bind you've got me in, too - I can't see anything you don't have covered.\n\tPersonman: Alright. I've been looking at this for two days now, and I see absoultely no way to even prolong it much, so I shall resign. Good game!\n\nHomeworlds Online (SDG# 2278)\nVariants: "Unrated"\nStarted: 2006.1.25, Ended: 2006.1.31\nParticipants: Jesse (S), tendrecube (N)\nWinner: Jesse\n\n1) tendrecube: Homeworld Y2 B1 G3\n\n2) Jesse: Homeworld Y3 B2 G3\n\tJesse: Hello. I see you have already been beaten up a bit by three of the stronger players on the server. What I would like to do here is to give you a handicap to try to even the playing field a bit. The way it works is, after I set up my homeworld, I'll pass a few times to give you a head start. I've only just started experimenting with this, so I don't have a good idea of how many times to pass to make an interesting game. Shall we try four?\n\n3) tendrecube: Build G1 Tendrecube\n\n4) Jesse: Pass\n\ttendrecube: well as you like....\r\nI think i handle the rules...but still have some problems develloping a viable strategy...\r\nHard to hook player my place for this game...sigh..\r\n\r\nChoose the number of turn you think you're rated for buddy.\r\nI don't mind. I'm happy to play anyway :-)\r\n\r\nLet's have some fun....\n\n5) tendrecube: Build G1 Tendrecube\n\tJesse: Well, that's the idea. I don't actually know how many passes I can afford to give. I'm trying to find that out. If four turns out to be insane, then I won't give four anymore.\n\n6) Jesse: Pass\n\ttendrecube: the advantage you give can turn to be an inconvenient for me....cause you'll have an easier acces to bigger pyramids from the reserves earlier\r\njust a thought\n\n7) tendrecube: Discover G1 Tendrecube Y3 Atomium\n\tJesse: You will have access to them as well. I'm quite sure it's not an advantage.\n\n8) Jesse: Pass\n\n9) tendrecube: Build G1 Atomium\n\tJesse: One more pass to come...\n\n10) Jesse: Pass\n\n11) tendrecube: Trade G1 B1 Tendrecube\n\tJesse: That's it. Oh, man... Do you hve any idea how hopeless this looks?\n\n12) Jesse: Build G1 Jesse\n\ttendrecube: i can't see the hopeless this far lol\r\nyou feel so stuck with the limitation given by the rules..\r\nThat's where the fun comes ;-)\n\n13) tendrecube: Discover G1 Atomium B1 Elfstar\n\n14) Jesse: Build G2 Jesse\n\tJesse: Don't misunderstand me. I will enjoy the challenge of overcoming the advantage you have. It's just a very difficult looking one.\n\tJesse: I don't know if you play Go, but it's like the first time giving someone a nine stone handicap: very intimidating.\n\n15) tendrecube: Trade G3 Y3 Tendrecube\n\ttendrecube: Oh that is an image i can clearly understand\r\n\r\n\n\n16) Jesse: Trade G2 R2 Jesse\n\ttendrecube: wasn't it a win if i moved the little G one from Elfstar to your binary homeworld?\n\ttendrecube: oops said nothing...no propulsion technology there\r\n\n\tJesse: Right, you could have destroyed me if you'd had propulsion available.\n\n17) tendrecube: Move B1 Tendrecube Atomium\n\n18) Jesse: Build G2 Jesse\n\n19) tendrecube: Build B2 Atomium\n\n20) Jesse: Trade G2 B2 Jesse\n\n21) tendrecube: Move B2 Atomium Elfstar\n\n22) Jesse: Discover B2 Jesse Y1 Khoomei\n\n23) tendrecube: Build B3 Elfstar\n\n24) Jesse: Sacrifice G1 Jesse\nBuild B3 Khoomei\n\n25) tendrecube: Build B3 Atomium\n\n26) Jesse: Trade B3 G3 Khoomei\n\n27) tendrecube: Discover B1 Atomium G1 Paradise\n\n28) Jesse: Build B3 Khoomei\n\n29) tendrecube: Move G1 Atomium Tendrecube\n\n30) Jesse: Move B3 Khoomei Atomium\n\n31) tendrecube: Sacrifice Y3 Tendrecube\nMove B3 Elfstar Jesse\nMove B2 Elfstar Jesse\nMove B1 Paradise Jesse\nCatastrophe Jesse B\n\n32) Jesse: Move B3 Atomium Tendrecube\n\tJesse: You will find that such a move is too aggressive, since it leaves you with no defenses of your own.\n\n33) tendrecube: Build G1 Elfstar\n\n34) Jesse: Sacrifice R2 Jesse\nAttack G1 Tendrecube\nPass\n\ttendrecube: indeed it sounds aggressive...\r\nI'm exploring the strategies..\r\n\n\tJesse: Another thing is that you need to be aware of the red ships your opponent can sacrifice. Anyway, thanks for the game. Keep playing, you'll get a handle on it.\n\n\nHomeworlds Online (SDG# 2313)\nStarted: 2006.1.26, Ended: 2006.1.31\nParticipants: GigaClon (S), tendrecube (N)\nWinner: tendrecube\n\n1) tendrecube: Homeworld G3 Y2 B3\n\n2) GigaClon: Homeworld G1 Y3 B3\n\n3) tendrecube: Build B1 Tendrecube\n\n4) GigaClon: Build B1 Gigaclon\n\n5) tendrecube: Trade B1 G1 Tendrecube\n\n6) GigaClon: Trade B1 G1 Gigaclon\n\n7) tendrecube: Build G2 Tendrecube\n\n8) GigaClon: Discover G1 Gigaclon B2 Kagami\n\n9) tendrecube: Trade G1 Y1 Tendrecube\n\n10) GigaClon: Build G1 Kagami\n\n11) tendrecube: Discover Y1 Tendrecube R1 Atomium\n\n12) GigaClon: Trade G1 B1 Kagami\n\n13) tendrecube: Sacrifice G2 Tendrecube\nBuild Y1 Atomium\nBuild Y1 Atomium\n\n14) GigaClon: Build B1 Gigaclon\n\n15) tendrecube: Build B1 Tendrecube\n\n16) GigaClon: Build B2 Kagami\n\n17) tendrecube: Discover Y1 Atomium G2 Elfstar\n\n18) GigaClon: Trade B2 Y2 Kagami\n\n19) tendrecube: Trade B3 G3 Tendrecube\n\n20) GigaClon: Build Y2 Kagami\n\n21) tendrecube: Sacrifice G3 Tendrecube\nBuild Y3 Elfstar\nBuild Y3 Elfstar\nBuild B2 Tendrecube\n\n22) GigaClon: Discover Y2 Kagami G1 Xuxa\n\n23) tendrecube: Discover Y1 Atomium G2 Paradise\n\n24) GigaClon: Move Y2 Xuxa Elfstar\nCatastrophe Elfstar Yellow\n\n25) tendrecube: Build Y1 Paradise\n\n26) GigaClon: Sacrifice Y2 Kagami\nDiscover G1 Kagami R1 Oasis\nMove B1 Kagami Gigaclon\n\n27) tendrecube: Build Y2 Paradise\n\n28) GigaClon: Discover B1 Gigaclon Y2 Xuxa\n\n29) tendrecube: Discover Y1 Atomium G2 Elfstar\n\tGigaClon: im totally lost\n\ttendrecube: Maybe loosing your mind but not the game....\r\nYou broke down one of my attack already....\r\nyou're doin good so far\n\n30) GigaClon: Move B1 Xuxa Oasis\n\n31) tendrecube: Move Y1 Paradise Gigaclon\n\n32) GigaClon: Build B2 Oasis\n\n33) tendrecube: Sacrifice Y2 Paradise\nMove Y1 Elfstar Gigaclon\nMove Y1 Paradise Gigaclon\nCatastrophe Gigaclon Y\n\n34) GigaClon: Trade B1 G1 Gigaclon\n\n35) tendrecube: Trade B2 G2 Tendrecube\n\n36) GigaClon: Trade B2 R2 Oasis\n\n37) tendrecube: Move G2 Tendrecube Gigaclon\n\tGigaClon: im limping along here now\n\n38) GigaClon: Trade G1 B1 Gigaclon\n\n39) tendrecube: Build G1 Gigaclon\n\n\tGigaClon: good game\n\nHomeworlds Online (SDG# 2349)\nStarted: 2006.1.28, Ended: 2006.2.12\nParticipants: Uglyfoot (S), Calavera (N)\nWinner: Uglyfoot\n\n1) Calavera: Homeworld B2 Y3 G3\n\n2) Uglyfoot: Homeworld B2 Y1 G3\n\tCalavera: Good luck.\n\n3) Calavera: Build G1 Calavera\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Calavera: Trade G1 Y1 Calavera\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) Calavera: Build G1 Calavera\n\n8) Uglyfoot: Trade G1 B1 Uglyfoot\n\n9) Calavera: Discover G1 Calavera B1 Camelot\n\tCalavera: d g1 calavera b1 Camelot\n\n10) Uglyfoot: Discover B1 Uglyfoot G3 Industry\n\n11) Calavera: Build G1 Calavera\n\n12) Uglyfoot: Build G2 Uglyfoot\n\n13) Calavera: Sacrifice G3 Calavera\nBuild G2 Camelot\nBuild G2 Camelot\nBuild G3 Calavera\n\n14) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild B1 Industry\nBuild B2 Industry\nBuild G3 Uglyfoot\n\n15) Calavera: Trade G1 R1 Calavera\n\n16) Uglyfoot: Sacrifice B2 Industry\nTrade G2 R2 Uglyfoot\nTrade B1 Y1 Industry\n\n17) Calavera: Trade G2 B2 Camelot\n\n18) Uglyfoot: Build Y2 Industry\n\n19) Calavera: Trade G2 Y2 Camelot\n\n20) Uglyfoot: Trade Y2 R2 Industry\n\n21) Calavera: Discover B2 Camelot Y3 Lyonesse\n\n22) Uglyfoot: Move R2 Uglyfoot Lyonesse\n\n23) Calavera: Sacrifice R1 Calavera\nAttack R2 Lyonesse\n\n24) Uglyfoot: Build Y2 Industry\n\n25) Calavera: Build Y2 Camelot\n\n26) Uglyfoot: Move Y2 Industry Camelot\n\n27) Calavera: Sacrifice Y2 Camelot\nMove G1 Camelot Industry\nMove G1 Industry Uglyfoot\n\n28) Uglyfoot: Sacrifice R2 Industry\nAttack Y2 Camelot\nAttack G1 Uglyfoot\n\n29) Calavera: Trade B2 G2 Lyonesse\n\n30) Uglyfoot: Sacrifice G1 Uglyfoot\nBuild Y2 Camelot\n\n31) Calavera: Move Y1 Calavera Camelot\nCatastrophe Camelot Y\n\n32) Uglyfoot: Trade G1 R1 Uglyfoot\n\n33) Calavera: Build G1 Calavera\n\n34) Uglyfoot: Build G1 Uglyfoot\n\n35) Calavera: Trade G1 B1 Calavera\n\n36) Uglyfoot: Move G1 Uglyfoot Industry\n\n37) Calavera: Discover B1 Calavera G1 Tintagel\n\n38) Uglyfoot: Build G1 Industry\n\n39) Calavera: Build G2 Calavera\n\n40) Uglyfoot: Build G2 Uglyfoot\n\n41) Calavera: Build B1 Tintagel\n\n42) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild B2 Industry\nBuild R1 Uglyfoot\n\n43) Calavera: Trade G2 Y2 Calavera\n\n44) Uglyfoot: Discover B1 Industry Y1 Gateway\n\n45) Calavera: Sacrifice Y2 Calavera\nMove G2 Lyonesse Gateway\nMove G2 Gateway Industry\nCatastrophe Industry G\n\n46) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n47) Calavera: Trade B1 Y1 Tintagel\n\n48) Uglyfoot: Build Y2 Uglyfoot\n\n49) Calavera: Build Y2 Tintagel\n\n50) Uglyfoot: Discover Y2 Uglyfoot G3 Industry2\n\tCalavera: Sorry. That one was a typo\n\tUglyfoot: No problem. I've been know to use the feature...\r\n\n\n51) Calavera: Trade Y1 G1 Tintagel\n\n52) Uglyfoot: Build G1 Uglyfoot\n\n53) Calavera: Build G2 Calavera\n\n54) Uglyfoot: Move G1 Uglyfoot Industry2\n\n55) Calavera: Move G1 Tintagel Lyonesse\n\n56) Uglyfoot: Move G1 Industry2 Gateway\n\n57) Calavera: Build G2 Lyonesse\n\n58) Uglyfoot: Build G2 Gateway\n\n59) Calavera: Trade G2 R2 Calavera\n\n60) Uglyfoot: Sacrifice G2 Gateway\nBuild Y1 Uglyfoot\nBuild Y3 Industry2\n\n61) Calavera: Move Y2 Tintagel Lyonesse\n\n62) Uglyfoot: Sacrifice Y2 Industry2\nMove Y1 Uglyfoot Lyonesse\nMove Y2 Uglyfoot Lyonesse\nCatastrophe Lyonesse Y\n\n\tCalavera: Good game, I think I'll admit defeat now.\n\nHomeworlds Online (SDG# 2324)\nStarted: 2006.1.28, Ended: 2006.2.14\nParticipants: Uglyfoot (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) Uglyfoot: Homeworld G3 B2 Y3\n\n3) jeep: Build G1 Jeep\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\n5) jeep: Build G1 Jeep\n\n6) Uglyfoot: Build Y1 Uglyfoot\n\n7) jeep: Trade G3 Y3 Jeep\n\n8) Uglyfoot: Discover Y1 Uglyfoot B1 Aleph\n\n9) jeep: Build G1 Jeep\n\n10) Uglyfoot: Build Y2 Uglyfoot\n\n11) jeep: Discover G1 Jeep Y3 Stashed\n\n12) Uglyfoot: Trade Y2 G2 Uglyfoot\n\tjeep: Amazing how big of a mess I can make in just a few moves. ;)\n\n13) jeep: Build G2 Stashed\n\n14) Uglyfoot: Move G2 Uglyfoot Aleph\n\n15) jeep: Trade G1 R1 Jeep\n\n16) Uglyfoot: Build Y2 Aleph\n\n17) jeep: Move G2 Stashed Aleph\n\n18) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n19) jeep: Sacrifice R1 Jeep\nAttack G2S Aleph\n\n20) Uglyfoot: Build R1 Uglyfoot\n\n21) jeep: Trade G2 Y2 Aleph\n\n22) Uglyfoot: Move R1 Uglyfoot Aleph\n\n23) jeep: Sacrifice G2 Aleph\nBuild Y1 Aleph\nBuild Y2 Jeep\nCatastrophe Aleph Y\n\n24) Uglyfoot: Build Y1 Uglyfoot\n\n25) jeep: Trade Y2 G2 Jeep\n\n26) Uglyfoot: Move Y1 Uglyfoot Aleph\n\n27) jeep: Build G1 Stashed\n\n28) Uglyfoot: Move R1 Aleph Stashed\n\n29) jeep: Trade G2 R2 Jeep\n\n30) Uglyfoot: Attack G1 Stashed\n\n31) jeep: Sacrifice R2 Jeep\nAttack R1S Stashed\nAttack G1S Stashed\n\n32) Uglyfoot: Build Y1 Uglyfoot\n\n33) jeep: Build G2 Jeep\n\n34) Uglyfoot: Build Y2 Uglyfoot\n\n35) jeep: Build G2 Stashed\n\n36) Uglyfoot: Trade Y3 G3 Uglyfoot\n\n37) jeep: Trade G2 B2 Jeep\n\n38) Uglyfoot: Build G2 Uglyfoot\n\n39) jeep: Sacrifice Y3 Jeep\nMove G1 Stashed Aleph\nMove G1 Aleph Uglyfoot\nMove G2 Stashed Aleph\nCatastrophe Uglyfoot G\n\n40) Uglyfoot: Trade Y1 G1 Uglyfoot\n\n41) jeep: Build G2 Aleph\n\n42) Uglyfoot: Build G2 Uglyfoot\n\n43) jeep: Build G3 Stashed\n\n44) Uglyfoot: Discover G1 Uglyfoot R3 Bypass\n\n45) jeep: Move G3 Stashed Uglyfoot\n\n46) Uglyfoot: Build R1 Uglyfoot\n\n47) jeep: Sacrifice R1 Stashed\nAttack G2S Uglyfoot\n\n48) Uglyfoot: Attack G2 Uglyfoot\n\n49) jeep: Sacrifice B2 Jeep\nTrade G2 R2 Aleph\nTrade G1 R1 Jeep\n\tjeep: LOL, I'm dumb.\n\n50) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove G2 Uglyfoot Bypass\nMove G2 Bypass Jeep\n\n51) jeep: Sacrifice R2 Aleph\nAttack R1S Uglyfoot\nAttack R1S Uglyfoot\n\tUglyfoot: It's all over but planting the flag...\n\tjeep: Yep, planting now.\n\n\nHomeworlds Online (SDG# 2361)\nStarted: 2006.1.29, Ended: 2006.2.12\nParticipants: jeep (S), sketchwick (N)\nWinner: sketchwick\n\n1) sketchwick: Homeworld B2 R1 G3\n\n2) jeep: Homeworld B1 G2 Y3\n\n3) sketchwick: Build G1 Sketchwick\n\n4) jeep: Build Y1 Jeep\n\n5) sketchwick: Trade G1 Y1 Sketchwick\n\n6) jeep: Trade Y1 G1 Jeep\n\n7) sketchwick: Build G1 Sketchwick\n\n8) jeep: Build Y1 Jeep\n\n9) sketchwick: Discover G1 Sketchwick Y3 Sun\n\n10) jeep: Discover G1 Jeep Y3 Beam\n\n11) sketchwick: Build G1 Sun\n\n12) jeep: Build G2 Beam\n\n13) sketchwick: Build G2 Sketchwick\n\n14) jeep: Move G1 Beam Sketchwick\n\n15) sketchwick: Trade G3 R3 Sketchwick\n\n16) jeep: Build G3 Sketchwick\n\n17) sketchwick: Attack G3 Sketchwick\n\n18) jeep: Build G3 Sketchwick\nCatastrophe Sketchwick G\n\n19) sketchwick: Move R3 Sketchwick Beam\n\n20) jeep: Move G2 Beam Sketchwick\n\n21) sketchwick: Move R3 Beam Sketchwick\n\n22) jeep: Sacrifice G2 Sketchwick\nBuild Y1 Jeep\nPass\n\n23) sketchwick: Move G1 Sun Sketchwick\n\n24) jeep: Trade Y1 R1 Jeep\n\n25) sketchwick: Build G1 Sketchwick\n\n26) jeep: Trade Y3 G3 Jeep\n\n27) sketchwick: Build G2 Sun\n\n28) jeep: Move R1 Jeep Sun\n\tjeep: *sigh* How did I make such a mess?\n\tjeep: My last move was about the worst possible...\n\tsketchwick: When you moved into my system I thought you might force draw where we just capture back and forth...which was fine for me at the time...but I certainly do feel good now...stop making me overconfident!\n\tjeep: HAHA! NOW you're in trouble. I'll take advantage of your hubris to win $20000!\n\n29) sketchwick: Move G1 Sun Jeep\n\n30) jeep: Trade G3 R3 Jeep\n\tsketchwick: We both know you are way too nice for that\n\n31) sketchwick: Sacrifice G2 Sun\nBuild G2 Jeep\nBuild G2 Jeep\nCatastrophe Jeep Green\n\tjeep: I SHOULD just concede, I'm sure... This sucks.\n\n32) jeep: Trade Y1 G1 Jeep\n\n33) sketchwick: Move R3 Sketchwick Sun\n\n34) jeep: Move R1 Sun Sketchwick\n\n35) sketchwick: Attack R1 Sketchwick\n\n\tjeep: My only hope was that you screw up. ;)\n\nHomeworlds Online (SDG# 2380)\nStarted: 2006.2.1, Ended: 2006.2.9\nParticipants: TwoShort (S), MatrixFrog (N)\nWinner: TwoShort\n\n1) MatrixFrog: Homeworld G1 Y3 B3\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) MatrixFrog: Build B1 Matrixfrog\n\n4) TwoShort: Build G1 Twoshort\n\n5) MatrixFrog: Build B1 Matrixfrog\n\n6) TwoShort: Build G1 Twoshort\n\n7) MatrixFrog: Trade B3 G3 Matrixfrog\n\n8) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n9) MatrixFrog: Discover B1 Matrixfrog Y2 Jeremy\n\n10) TwoShort: Build G2 Yolonda\n\n11) MatrixFrog: Build G2 Matrixfrog\n\n12) TwoShort: Discover G2 Yolonda Y2 Yak\n\n13) MatrixFrog: Move G3 Matrixfrog Jeremy\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Yak\nBuild G3 Twoshort\n\n15) MatrixFrog: Build B2 Matrixfrog\n\n16) TwoShort: Move G3 Yak Matrixfrog\n\n17) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild G2 Jeremy\nBuild B2 Jeremy\n\n18) TwoShort: Trade G3 R3 Twoshort\n\n19) MatrixFrog: Move G3 Jeremy Matrixfrog\n\tMatrixFrog: Aw, crap.\n\tMatrixFrog: Sometimes I just don't pay attention\n\tTwoShort: Yeah... leaving your homeworld without a 3 pointer is pretty risky... Anyway, I'll be happy to play again if you want a rematch.\n\tMatrixFrog: Not at the moment but sometime within a few weeks probably.\n\n20) TwoShort: Sacrifice R3 Twoshort\nAttack G3 Matrixfrog\nAttack B2 Matrixfrog\nAttack B1 Matrixfrog\n\n\nHomeworlds Online (SDG# 2419)\nStarted: 2006.2.3, Ended: 2006.2.15\nParticipants: Uglyfoot (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B1 G2 Y3\n\tJesse: Hello, there!\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\n3) Jesse: Build Y1 Jesse\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Jesse: Build Y1 Jesse\n\n6) Uglyfoot: Discover G1 Uglyfoot B2 Forward\n\n7) Jesse: Discover Y1 Jesse B3 Serenity\n\n8) Uglyfoot: Build G1 Forward\n\n9) Jesse: Build Y2 Jesse\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) Jesse: Trade Y2 G2 Jesse\n\n12) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Forward\n\n13) Jesse: Move G2 Jesse Serenity\n\n14) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n15) Jesse: Move G2 Serenity Forward\nCatastrophe Forward G\n\n16) Uglyfoot: Build Y2 Uglyfoot\n\n17) Jesse: Discover Y1 Jesse G3 Ariel\n\n18) Uglyfoot: Discover G1 Uglyfoot B2 Nexus\n\n19) Jesse: Build Y2 Jesse\n\n20) Uglyfoot: Move Y2 Uglyfoot Nexus\n\n21) Jesse: Trade Y2 R2 Jesse\n\n22) Uglyfoot: Build Y2 Nexus\n\n23) Jesse: Build Y3 Jesse\n\n24) Uglyfoot: Trade Y2 R2 Nexus\n\n25) Jesse: Move Y3 Jesse Serenity\n\n26) Uglyfoot: Build G1 Uglyfoot\n\n27) Jesse: Trade Y3 G3 Serenity\n\n28) Uglyfoot: Build Y2 Nexus\n\n29) Jesse: Build Y3 Serenity\n\n30) Uglyfoot: Build Y3 Uglyfoot\n\n31) Jesse: Sacrifice Y3 Serenity\nMove Y1 Serenity Nexus\nMove Y1 Nexus Uglyfoot\nMove G3 Serenity Nexus\nCatastrophe Uglyfoot Y\n\n32) Uglyfoot: Sacrifice Y2 Nexus\nMove Y2 Nexus Ariel\nMove R2 Nexus Ariel\n\n33) Jesse: Move Y1 Ariel Nexus\n\n34) Uglyfoot: Trade G1 R1 Uglyfoot\n\n35) Jesse: Trade G3 R3 Nexus\n\n36) Uglyfoot: Build R1 Uglyfoot\n\n37) Jesse: Attack G1 Nexus\n\n38) Uglyfoot: Build Y1 Ariel\n\n39) Jesse: Build G1 Nexus\n\n40) Uglyfoot: Build G1 Uglyfoot\n\n41) Jesse: Discover G1 Nexus Y1 Miranda\n\n42) Uglyfoot: Move R2 Ariel Miranda\n\n43) Jesse: Sacrifice Y3 Jesse\nMove G1 Miranda Uglyfoot\nMove G1 Nexus Uglyfoot\nMove R3 Nexus Uglyfoot\nCatastrophe Uglyfoot G\n\tJesse: That's a really irritating play (good for you!), but it has a serious flaw...\n\n44) Uglyfoot: Move Y2 Ariel Jesse\n\tJesse: (Hopefully I haven't missed anything...)\n\n45) Jesse: Attack Y2 Jesse\n\tUglyfoot: It pretty much looks like it.\r\n\n\n46) Uglyfoot: Move R2 Miranda Uglyfoot\n\n47) Jesse: Pass\nCatastrophe Uglyfoot R\n\tUglyfoot: Your choice of endings.\r\n\n\tJesse: Thanks for the game.\n\n\nHomeworlds Online (SDG# 2425)\nStarted: 2006.2.5, Ended: 2006.2.10\nParticipants: andylooney (S), Uglyfoot (N)\nWinner: andylooney\n\n1) Uglyfoot: Homeworld Y1 B2 G3\n\n2) andylooney: Homeworld G2 B3 Y3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) andylooney: Build Y1 Andylooney\n\n5) Uglyfoot: Discover G1 Uglyfoot B3 Omega\n\n6) andylooney: Trade Y1 G1 Andylooney\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) andylooney: Build G2 Andylooney\n\n9) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n10) andylooney: Discover G2 Andylooney Y1 Different\n\n11) Uglyfoot: Build Y2 Uglyfoot\n\n12) andylooney: Build Y2 Andylooney\n\n13) Uglyfoot: Trade Y2 B2 Uglyfoot\n\n14) andylooney: Build Y2 Andylooney\n\n15) Uglyfoot: Build Y2 Uglyfoot\n\n16) andylooney: Discover Y2 Andylooney G1 Gumby\n\n17) Uglyfoot: Build G2 Uglyfoot\n\n18) andylooney: Build G3 Different\n\n19) Uglyfoot: Build G3 Omega\n\n20) andylooney: Sacrifice G3 Different\nBuild G3 Different\nBuild Y3 Andylooney\nBuild Y3 Gumby\n\n21) Uglyfoot: Move Y1 Uglyfoot Omega\n\n22) andylooney: Trade Y2 R2 Andylooney\n\n23) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y2 Omega\nBuild B1 Uglyfoot\n\n24) andylooney: Sacrifice Y2 Gumby\nMove Y3 Gumby Omega\nMove Y3 Omega Uglyfoot\n\n25) Uglyfoot: Trade G3 R3 Omega\n\n26) andylooney: Sacrifice R2 Andylooney\nAttack G3N Uglyfoot\nAttack G2N Uglyfoot\n\n27) Uglyfoot: Sacrifice Y2 Omega\nMove R3 Omega Different\nMove R3 Different Andylooney\n\n28) andylooney: Trade G3 R3 Uglyfoot\n\n29) Uglyfoot: Attack G1 Andylooney\n\n30) andylooney: Sacrifice R3 Uglyfoot\nAttack Y2N Uglyfoot\nAttack R3N Andylooney\nAttack G1N Andylooney\n\n31) Uglyfoot: Move Y1 Omega Uglyfoot\nCatastrophe Uglyfoot Y\n\tUglyfoot: Beat me by one turn. Thanks for showing me another way to win.\n\n32) andylooney: Sacrifice R3 Andylooney\nAttack B2N Uglyfoot\nAttack B1N Uglyfoot\nPass\n\tandylooney: It's been a great game. Thanks for playing!\n\tUglyfoot: silly question. why didn't you take over the two blue in the uglyfoot system and win last turn?\n\n\tandylooney: And leave invaders in my homeworld? That's not a tidy ending... Thanks for the game!\n\nHomeworlds Online (SDG# 2434)\nStarted: 2006.2.7, Ended: 2007.8.24\nParticipants: JIMBO (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld B1 G2 Y3\n\tJIMBO: Is this the real Andy Looney?\n\tandylooney: It certainly is. Hi there!\n\n2) JIMBO: Homeworld B2 G1 R3\n\n3) andylooney: Build Y1 Andylooney\n\tJIMBO: Hello! I have to say - I am totally crazy for your games! I found Fluxx a few years back and finally bought Icehouse pieces last month. I'm hooked!\n\tandylooney: Cool! That's great! Thanks for playing my games... with me!\n\n4) JIMBO: Build R1 Jimbo\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) JIMBO: Build R1 Jimbo\n\n7) andylooney: Build Y1 Andylooney\n\n8) JIMBO: Trade R1 Y1 Jimbo\n\n9) andylooney: Trade Y1 R1 Andylooney\n\n10) JIMBO: Build Y1 Jimbo\n\n11) andylooney: Build G1 Andylooney\n\n12) JIMBO: Trade R3 G3 Jimbo\n\n13) andylooney: Discover G1 Andylooney Y3 Clampett\n\n14) JIMBO: Trade Y1 B1 Jimbo\n\tJIMBO: You alive, Andy?\n\tandylooney: yup, but I've been out of town. Sorry for the delay!\n\n15) andylooney: Trade G1 B1 Andylooney\n\n16) JIMBO: Build Y1 Jimbo\n\tJIMBO: No problem! Say, this weekend my friends and I were playing a bunch of Binary (and Trinary) Homeworlds and we ran into a couple of grey areas - d'you think you could settle a couple of rule disputes for us?\n\tandylooney: certainly.\r\n\n\tJIMBO: When you sacrifice a ship - 1. if it's a green ship, does it go back into the stash before you pick the pieces to synthesize, and 2. if sacrificed ship is the last ship in a system, does the system still exist until the end of the turn, or is it immediately dissolved?\n\tandylooney: 1.) Yes, a sacrificed ship goes back into the bank before any new pieces are grown.\n\tandylooney: 2.) At the instant when the last ship leaves a star system, the piece goes into the bank.\n\tandylooney: These 2 points are vital to the strategy known as investing, i.e. parking a green at a large yellow then growing the system marker as a ship when yellow is otherwise exhausted.\n\tandylooney: I'm happy to say that when I discovered this system wasn't handling this properly, Aaron fixed it right away!\n\tJIMBO: And one other thing - if you have the yellow system, a small yellow ship, and a large green ship, and you sacrifice the large green, can you grow green ships (with that sacrifice action) in that system, or is yellow the only option?\n\tandylooney: Yellow is the only option. You must have a ship of the type you want to grow in the system in order to make more of them.\n\n17) andylooney: Build B2 Andylooney\n\n18) JIMBO: Build B2 Jimbo\n\tJIMBO: Right on!\n\n19) andylooney: Trade B2 G2 Andylooney\n\n20) JIMBO: Discover B2 Jimbo Y3 Kwva\n\n21) andylooney: Discover G2 Andylooney B3 Bigbluefrog\n\n22) JIMBO: Move Y1 Jimbo Kwva\n\n23) andylooney: Discover B1 Andylooney G3 Garden\n\n24) JIMBO: Discover B1 Jimbo G3 Hyphy\n\n25) andylooney: Build Y1 Andylooney\n\n26) JIMBO: Build Y2 Jimbo\n\tandylooney: Hey Jimbo! Very sorry for the long delay!\n\n27) andylooney: Move Y1 Andylooney Garden\n\tJIMBO: I'm not sweating it - it was my spring break anyway, I was trying to spend some time away from the 'puter.\n\n28) JIMBO: Sacrifice G3 Jimbo\nBuild B2 Hyphy\nBuild B3 Hyphy\nBuild B3 Kwva\n\n29) andylooney: Sacrifice G2 Bigbluefrog\nBuild B3 Garden\nBuild Y2 Garden\n\n30) JIMBO: Sacrifice Y2 Jimbo\nMove B2 Hyphy Jimbo\nMove B2 Jimbo Garden\n\n31) andylooney: Sacrifice Y2 Garden\nMove B3 Garden Jimbo\nDiscover Y1 Garden G2 Greendome\n\n32) JIMBO: Sacrifice B2 Garden\nTrade B2 Y2 Kwva\nTrade Y1 R1 Kwva\n\n33) andylooney: Build R2 Andylooney\n\n34) JIMBO: Sacrifice Y2 Kwva\nMove B3 Hyphy Jimbo\nMove B1 Hyphy Jimbo\nCatastrophe Jimbo Blue\n\tJIMBO: Oh, snake! Nice move.\n\n35) andylooney: Move R2 Andylooney Clampett\n\n36) JIMBO: Move B3 Kwva Jimbo\n\n37) andylooney: Build R2 Andylooney\n\tJIMBO: Hey Andy, sorry for the huge wait - I just turned in my 107-page research paper yesterday!!\n\tandylooney: Congratulations! (And don't worry about being slow, I'm way late on most of my moves too!)\n\n\nHomeworlds Online (SDG# 2345)\nVariants: "Sinister"\nStarted: 2006.2.8, Ended: 2006.3.13\nParticipants: mneme (S), Lexicon (W), Uglyfoot (N), Kermit (E)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld Y1 B2 G3\n\n2) Kermit: Homeworld G2 B3 Y3\n\n3) mneme: Homeworld Y3 G1 B3\n\n4) Lexicon: Homeworld G1 B2 Y3\n\tLexicon: I wonder if player 4 doesn't have too much advantage in sinister for being able to place himself one jump from their target.\n\n5) Uglyfoot: Build G1 Uglyfoot\n\n6) Kermit: Build Y1 Kermit\n\n7) mneme: Build B1 Mneme\n\n8) Lexicon: Build Y1 Lexicon\n\n9) Uglyfoot: Build G1 Uglyfoot\n\n10) Kermit: Trade Y1 G1 Kermit\n\n11) mneme: Build B1 Mneme\n\n12) Lexicon: Build Y1 Lexicon\n\n13) Uglyfoot: Discover G1 Uglyfoot B3 Commerce\n\n14) Kermit: Build G2 Kermit\n\n15) mneme: Discover B1 Mneme Y2 Diamond\n\n16) Lexicon: Trade Y3 G3 Lexicon\n\n17) Uglyfoot: Build G2 Commerce\n\n18) Kermit: Build Y1 Kermit\n\n19) mneme: Build B1 Mneme\n\tUglyfoot: I will be glad to take any assistance defending myself from the sinister, Lexicon. (nice choice by the way)\n\n20) Lexicon: Discover Y1 Lexicon B3 General\n\n21) Uglyfoot: Trade G1 Y1 Commerce\n\n22) Kermit: Discover Y1 Kermit B1 E0143\n\n23) mneme: Discover B1 Mneme G2 Jade\n\n24) Lexicon: Build Y2 Lexicon\n\n25) Uglyfoot: Build Y2 Commerce\n\n26) Kermit: Move G1 Kermit E0143\n\n27) mneme: Build B1 Jade\n\n28) Lexicon: Move Y2 Lexicon General\n\n29) Uglyfoot: Move G1 Uglyfoot General\n\n30) Kermit: Build Y2 E0143\n\n31) mneme: Build B2 Jade\n\n32) Lexicon: Trade Y2 G2 General\n\n33) Uglyfoot: Build G1 Uglyfoot\n\n34) Kermit: Trade Y2 B2 E0143\n\n35) mneme: Trade B2 Y2 Jade\n\n36) Lexicon: Move G2 General Uglyfoot\n\n37) Uglyfoot: Trade G3 R3 Uglyfoot\n\n38) Kermit: Build Y2 E0143\n\n39) mneme: Trade B3 G3 Mneme\n\n40) Lexicon: Sacrifice G2 Uglyfoot\nBuild Y2 General\nBuild Y3 Lexicon\n\n41) Uglyfoot: Build G2 Uglyfoot\n\n42) Kermit: Sacrifice Y2 E0143\nMove G1 E0143 Diamond\nMove G1 Diamond Mneme\n\n43) mneme: Trade G3 R3 Mneme\n\tLexicon: Well. Nevermind then.\n\n44) Lexicon: Trade Y2 R2 General\n\n45) Uglyfoot: Build G3 Commerce\n\n46) Kermit: Build G3 Kermit\n\n47) mneme: Attack G1E Mneme\n\n48) Lexicon: Attack G1N General\n\n49) Uglyfoot: Sacrifice Y2 Commerce\nMove G2 Commerce E0143\nMove G2 E0143 Kermit\nCatastrophe Kermit G\n\n50) Kermit: Trade B2 G2 E0143\n\tmneme: Hmm. Lex, unless you can do something, I think Uglyfoot's just going to win.\r\n\n\n51) mneme: Build B2 Jade\n\tLexicon: That's some trouble all right. Got a few rounds left though...\n\n52) Lexicon: Build G2 General\n\tUglyfoot: Quick tell me how to do it...\n\n53) Uglyfoot: Move G1 Uglyfoot Kermit\n\tmneme: UF: you got the first part well enough -- I think you're doing fine enough on your own.\n\n54) Kermit: Move G2 E0143 Kermit\n\n55) mneme: Build B2 Mneme\n\n56) Lexicon: Trade G2 B2 General\n\n57) Uglyfoot: Sacrifice G3 Commerce\nBuild G2 Kermit\nBuild G2 Kermit\nBuild G3 Uglyfoot\nCatastrophe Kermit G\n\n58) Kermit: Pass\n\n59) mneme: Sacrifice Y2 Jade\nMove B1 Jade General\nMove B1 Jade General\nCatastrophe General B\n\n60) Lexicon: Discover Y1 Lexicon G3 Bio\n\n61) Uglyfoot: Move R3 Uglyfoot Kermit\n\n62) Kermit: Move Y1 E0143 Kermit\n\tKermit: dead in the water :{P}\n\n63) mneme: Build B1 Jade\n\n64) Lexicon: Move Y1 Bio Uglyfoot\n\tLexicon: Hm... Ouch.\n\n65) Uglyfoot: Attack Y3E Kermit\n\n66) Kermit: Trade Y1 G1 Kermit\n\n67) mneme: Trade B2 Y2 Jade\n\tmneme: it's over.\n\n68) Lexicon: Sacrifice G3 Lexicon\nBuild Y1 Uglyfoot\nBuild Y1 Uglyfoot\nBuild Y2 Lexicon\nCatastrophe Uglyfoot Y\n\n69) Uglyfoot: Attack G1E Kermit\n\n\tLexicon: Good game guys.\n\nHomeworlds Online (SDG# 2449)\nStarted: 2006.2.8, Ended: 2006.2.12\nParticipants: TwoShort (S), mneme (N)\nWinner: TwoShort\n\n1) mneme: Homeworld Y3 B2 G3\n\n2) TwoShort: Homeworld Y1 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) TwoShort: Build G1 Twoshort\n\n5) mneme: Discover G1 Mneme B1 Chimera\n\n6) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n7) mneme: Build G1 Chimera\n\n8) TwoShort: Build G2 Twoshort\n\n9) mneme: Build G2 Mneme\n\n10) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n11) mneme: Trade G2 Y2 Mneme\n\n12) TwoShort: Trade G3 Y3 Twoshort\n\n13) mneme: Build G2 Mneme\n\n14) TwoShort: Discover G2 Yolonda B1 Bluestar\n\n15) mneme: Discover G2 Mneme Y1 Gryphon\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\nBuild Y1 Twoshort\n\n17) mneme: Sacrifice Y2 Mneme\nMove G1 Chimera Yolonda\nMove G1 Chimera Yolonda\nCatastrophe Yolonda G\n\tmneme: gah. I'll learn this game eventaully. \n\n18) TwoShort: Discover G2 Twoshort Y3 Yak\n\n19) mneme: Build G1 Gryphon\n\tTwoShort: Well, you've learned my favorite maxim: When in doubt, blow stuff up.\n\tmneme: Heh. Got that a while ago -- but I just don't have the material to compete at this point.\r\n\n\tTwoShort: Yeah, an advantage in 3 pointers typically does it; and the threat of catastrophe if you grow in your homeworld means your options are pretty limited. Anytime you want to play again, I'm pretty much always willing to play more Homeworlds. \n\n20) TwoShort: Discover Y1 Twoshort G3 Zorak\n\n21) mneme: Discover G1 Gryphon B3 Leviathan\n\n22) TwoShort: Build G1 Twoshort\n\n23) mneme: Build G1 Leviathan\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Zorak\nBuild Y2 Zorak\n\n25) mneme: Trade G1 R1 Leviathan\n\n26) TwoShort: Trade G2 R2 Bluestar\n\n27) mneme: Sacrifice G2 Gryphon\nBuild G1 Leviathan\nBuild G2 Mneme\n\n28) TwoShort: Move Y3 Twoshort Leviathan\n\n29) mneme: Sacrifice G3 Mneme\nBuild G2 Leviathan\nBuild G3 Mneme\nBuild R1 Leviathan\n\n30) TwoShort: Sacrifice R2 Bluestar\nAttack R1 Leviathan\nAttack R1 Leviathan\n\n31) mneme: Trade G2 B2 Leviathan\n\n32) TwoShort: Attack B2 Leviathan\n\n33) mneme: Trade G1 B1 Leviathan\n\n34) TwoShort: Sacrifice Y2 Zorak\nDiscover Y3 Leviathan B1 Banzai\nMove Y3 Banzai Mneme\n\n35) mneme: Trade G1 B1 Leviathan\nCatastrophe Leviathan B\n\tmneme: This would be more interesting if I weren't -so- dead.\n\n36) TwoShort: Trade G3 R3 Twoshort\n\n\tmneme: I figured you'd turn the Y-ship red, but this is cleaner, yeah\r\n\n\nHomeworlds Online (SDG# 2467)\nStarted: 2006.2.9, Ended: 2006.3.8\nParticipants: Jesse (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld B1 G2 Y3\n\n2) Jesse: Homeworld G1 B3 Y3\n\tLexicon: We'll see if I've improved since last time. ;)\n\n3) Lexicon: Build Y1 Lexicon\n\tJesse: Indeed. Do your best.\n\n4) Jesse: Build Y1 Jesse\n\n5) Lexicon: Trade Y1 G1 Lexicon\n\n6) Jesse: Trade Y1 G1 Jesse\n\n7) Lexicon: Discover G1 Lexicon Y3 Glucose\n\n8) Jesse: Discover G1 Jesse B2 Foo\n\n9) Lexicon: Build G2 Glucose\n\n10) Jesse: Build G2 Foo\n\n11) Lexicon: Build G3 Glucose\n\n12) Jesse: Build Y1 Jesse\n\n13) Lexicon: Move G1 Glucose Foo\n\n14) Jesse: Trade G1 R1 Foo\n\n15) Lexicon: Sacrifice G3 Glucose\nBuild G1 Foo\nBuild G3 Foo\nBuild G3 Glucose\nCatastrophe Foo Green\n\n16) Jesse: Discover Y1 Jesse G2 Bar\n\tJesse: (Whups, typo.)\n\n17) Lexicon: Discover G2 Glucose B2 Fructose\n\n18) Jesse: Trade R1 G1 Foo\n\tJesse: I've got to say, that was pretty sharp. I'm going to have to fight hard to come back, here.\n\tLexicon: I must admit I'm pretty pleased with that one. ;)\n\n19) Lexicon: Build Y1 Lexicon\n\n20) Jesse: Build Y1 Jesse\n\n21) Lexicon: Move Y1 Lexicon Glucose\n\n22) Jesse: Move Y1 Jesse Foo\n\n23) Lexicon: Move Y1 Glucose Fructose\n\n24) Jesse: Build Y2 Jesse\n\n25) Lexicon: Build G1 Glucose\n\n26) Jesse: Build G3 Foo\n\n27) Lexicon: Sacrifice G3 Glucose\nBuild G3 Glucose\nBuild G3 Fructose\nBuild Y2 Fructose\n\n28) Jesse: Trade Y2 R2 Jesse\n\n29) Lexicon: Sacrifice G3 Glucose\nBuild G3 Glucose\nBuild Y2 Lexicon\nBuild Y2 Fructose\n\n30) Jesse: Discover Y1 Bar B3 Baz\n\n31) Lexicon: Sacrifice Y2 Lexicon\nMove Y1 Fructose Jesse\nMove Y2 Fructose Jesse\n\n32) Jesse: Trade Y3 R3 Jesse\n\n33) Lexicon: Sacrifice G3 Glucose\nBuild G2 Glucose\nBuild Y2 Fructose\nBuild Y3 Lexicon\n\n34) Jesse: Attack Y2 Jesse\n\tLexicon: Party in the Jesse system!\n\tJesse: This is why I'm not much of a party person.\n\n35) Lexicon: Sacrifice Y2 Fructose\nMove G1 Glucose Foo\nMove G2 Glucose Foo\nCatastrophe Foo Green\n\n\tJesse: There's really nothing I can do now unless you make a serious misstep, which I'm sure you won't. Very nice maneuvering! Well done!\n\nHomeworlds Online (SDG# 2471)\nStarted: 2006.2.10, Ended: 2006.2.17\nParticipants: killerkitty94 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 G2 Y3\n\n2) killerkitty94: Homeworld G3 B1 Y3\n\n3) TwoShort: Build Y1 Twoshort\n\n4) killerkitty94: Build Y1 Killerkitty94\n\n5) TwoShort: Trade Y1 B1 Twoshort\n\n6) killerkitty94: Trade Y1 R1 Killerkitty94\n\n7) TwoShort: Build B2 Twoshort\n\n8) killerkitty94: Build Y1 Killerkitty94\n\n9) TwoShort: Discover B1 Twoshort G3 Grogar\n\n10) killerkitty94: Discover R1 Killerkitty94 B2 Felgrah\n\n11) TwoShort: Build B2 Grogar\n\n12) killerkitty94: Trade Y3 B3 Killerkitty94\n\n13) TwoShort: Build B3 Grogar\n\n14) killerkitty94: Build B3 Killerkitty94\n\n15) TwoShort: Sacrifice Y3 Twoshort\nDiscover B3 Grogar Y2 Doomtown\nMove B1 Grogar Doomtown\nMove B1 Doomtown Killerkitty94\nCatastrophe Killerkitty94 Blue\n\n\nHomeworlds Online (SDG# 2498)\nStarted: 2006.2.11, Ended: 2006.4.21\nParticipants: Jesse (S), mneme (N)\nWinner: Jesse\n\n1) mneme: Homeworld G2 B1 Y3\n\n2) Jesse: Homeworld G1 Y3 B3\n\tJesse: Hello.\n\n3) mneme: Build Y1 Mneme\n\n4) Jesse: Build B1 Jesse\n\n5) mneme: Build Y1 Mneme\n\n6) Jesse: Build B1 Jesse\n\n7) mneme: Discover Y1 Mneme B3 Zebra\n\n8) Jesse: Discover B1 Jesse G2 Infection\n\n9) mneme: Build Y1 Mneme\n\n10) Jesse: Build B2 Infection\n\n11) mneme: Discover Y1 Mneme B3 Bison\n\n12) Jesse: Trade B2 Y2 Infection\n\n13) mneme: Build Y2 Mneme\n\n14) Jesse: Build B2 Infection\n\n15) mneme: Trade Y3 G3 Mneme\n\n16) Jesse: Discover B2 Infection Y3 Tko\n\n17) mneme: Trade Y2 R2 Mneme\n\n18) Jesse: Trade B2 R2 Tko\n\n19) mneme: Sacrifice G3 Mneme\nBuild Y2 Zebra\nBuild Y2 Bison\nBuild Y3 Mneme\n\n20) Jesse: Build B2 Infection\n\n21) mneme: Build R1 Mneme\n\n22) Jesse: Trade B2 R2 Infection\n\n23) mneme: Discover Y2 Bison G2 Parrot\n\n24) Jesse: Build B2 Infection\n\n25) mneme: Trade Y2 B2 Zebra\n\n26) Jesse: Move B1 Infection Tko\n\n27) mneme: Move B2 Zebra Parrot\n\n28) Jesse: Build Y2 Infection\n\n29) mneme: Build B2 Parrot\n\n30) Jesse: Trade B3 G3 Jesse\n\n31) mneme: Build B3 Parrot\n\n32) Jesse: Move B1 Tko Parrot\nCatastrophe Parrot B\n\n33) mneme: Trade Y1 G1 Bison\n\n34) Jesse: Move Y2 Infection Bison\n\n35) mneme: Sacrifice Y1 Mneme\nDiscover G1 Bison G1 Snake\n\n36) Jesse: Sacrifice Y2 Bison\nDiscover Y2 Infection G3 Knives\nDiscover R2 Infection G3 Exogenesis\n\n37) mneme: Build Y1 Parrot\n\n38) Jesse: Sacrifice B2 Infection\nTrade R2 G2 Tko\nTrade B1 R1 Jesse\n\n39) mneme: Trade R1 B1 Mneme\n\n40) Jesse: Build R1 Jesse\n\n41) mneme: Build B1 Mneme\n\n42) Jesse: Discover R1 Jesse B2 Grey17\n\n43) mneme: Move B1 Mneme Zebra\n\n44) Jesse: Build R1 Exogenesis\n\n45) mneme: Move B1 Zebra Parrot\n\n46) Jesse: Sacrifice G3 Jesse\nBuild R2 Grey17\nBuild R3 Jesse\nBuild G3 Tko\n\n47) mneme: Build R3 Mneme\n\n48) Jesse: Sacrifice Y2 Knives\nMove R1 Exogenesis Mneme\nMove R2 Exogenesis Mneme\nCatastrophe Mneme R\n\n49) mneme: Trade B1 R1 Mneme\n\n50) Jesse: Trade R2 Y2 Grey17\n\n51) mneme: Build G3 Snake\n\n52) Jesse: Move G2 Tko Snake\nCatastrophe Snake G\n\n53) mneme: Build Y1 Parrot\n\n54) Jesse: Build G1 Tko\n\n55) mneme: Build Y2 Mneme\n\n56) Jesse: Trade R1 B1 Grey17\n\n57) mneme: Trade Y1 R1 Parrot\n\n58) Jesse: Sacrifice B1 Grey17\nTrade R3 B3 Jesse\n\n59) mneme: Build R2 Parrot\n\n60) Jesse: Build R2 Jesse\n\n61) mneme: Build B1 Parrot\n\n62) Jesse: Move G1 Tko Grey17\n\n63) mneme: Build R2 Mneme\n\n64) Jesse: Move R1 Jesse Grey17\n\n65) mneme: Build R3 Parrot\n\n66) Jesse: Move R2 Jesse Parrot\nCatastrophe Parrot R\n\n67) mneme: Build B2 Parrot\n\n68) Jesse: Trade B3 R3 Jesse\n\n69) mneme: Discover B1 Parrot G3 Monkey\n\n70) Jesse: Build Y1 Grey17\n\n71) mneme: Build B2 Monkey\n\n72) Jesse: Build G1 Grey17\n\n\tJesse: Well, that's long enough. Time to terminate this game. It's too bad; this was a tough one.\n\nHomeworlds Online (SDG# 2497)\nStarted: 2006.2.12, Ended: 2006.2.17\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld B1 G2 Y3\n\n2) TwoShort: Homeworld B1 Y3 G3\n\n3) jeep: Build Y1 Jeep\n\n4) TwoShort: Build G1 Twoshort\n\n5) jeep: Trade Y1 G1 Jeep\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) jeep: Build G1 Jeep\n\n8) TwoShort: Build B2 Twoshort\n\n9) jeep: Discover G1 Jeep Y3 Giant\n\n10) TwoShort: Discover B1 Twoshort Y2 Yolonda\n\tjeep: When I traded for the g1, I thought: I should get the small blue first... then didn't. *sigh*\n\n11) jeep: Build Y1 Jeep\n\tjeep: Don't know how I wound up with G3 there... guess I was thinking about what I was going to chat...\n\n12) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Yolonda\nBuild B2 Yolonda\nBuild B3 Twoshort\n\tTwoShort: Someone surprised me with a similar early blue grab recently; so I'd been looking for an opportunity to try it.\n\n13) jeep: Trade Y3 B3 Jeep\n\n14) TwoShort: Trade B3 Y3 Twoshort\n\n15) jeep: Trade G1 R1 Jeep\n\n16) TwoShort: Discover B2 Yolonda G3 Grogar\n\tjeep: *sigh*\n\n17) jeep: Trade B3 G3 Jeep\n\n18) TwoShort: Build B3 Grogar\n\n19) jeep: Discover Y1 Jeep G3 Jolly\n\n20) TwoShort: Build B3 Grogar\n\n\tjeep: Yeah, this isn't even fun... want to play again? I'm way past ready to concede...\n\tTwoShort: Yeah, I you can make it take a little while if you tried, but I don't think you can stop me from winning. Anyway, I'd love to play again.\n\nHomeworlds Online (SDG# 2528)\nStarted: 2006.2.12, Ended: 2006.3.19\nParticipants: sketchwick (S), jeep (N)\nWinner: sketchwick\n\n1) jeep: Homeworld B1 G2 Y3\n\n2) sketchwick: Homeworld B3 R1 G3\n\n3) jeep: Build Y1 Jeep\n\n4) sketchwick: Build G1 Sketchwick\n\n5) jeep: Trade Y1 G1 Jeep\n\n6) sketchwick: Trade G1 Y1 Sketchwick\n\n7) jeep: Build G1 Jeep\n\n8) sketchwick: Build G1 Sketchwick\n\n9) jeep: Trade G1 R1 Jeep\n\n10) sketchwick: Discover G1 Sketchwick Y2 Sun\n\n11) jeep: Build R1 Jeep\n\n12) sketchwick: Build G1 Sketchwick\n\n13) jeep: Discover R1 Jeep Y3 Daoghter\n\n14) sketchwick: Build G2 Sun\n\tsketchwick: daoghter?\r\n\n\n15) jeep: Build R2 Jeep\n\tjeep: Yeah, you misspelled son... ;)\n\n16) sketchwick: Discover G1 Sun B1 Mum\n\tsketchwick: bah, I asked without even working on the puzzle if it wasn't a typo!\n\n17) jeep: Discover R1 Jeep B3 Pup\n\n18) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Mum\nBuild G3 Mum\nBuild G3 Sketchwick\n\tsketchwick: pop---JUST got it\r\n\n\n19) jeep: Trade Y3 G3 Jeep\n\n20) sketchwick: Trade G2 Y2 Mum\n\n21) jeep: Sacrifice G3 Jeep\nBuild R2 Daoghter\nBuild R2 Pup\nBuild R3 Jeep\n\n22) sketchwick: Sacrifice G3 Mum\nBuild G2 Sketchwick\nBuild G3 Mum\nBuild G3 Mum\n\n23) jeep: Build R3 Jeep\n\n24) sketchwick: Trade G3 R3 Mum\n\tsketchwick: um..I see two lines that say "global reserve stash" but not what's in it\n\tjeep: Me too, I'll contact Aaron.\r\n\n\n25) jeep: Trade R2 Y2 Jeep\n\n26) sketchwick: Sacrifice G3 Sketchwick\nBuild G3 Sketchwick\nBuild G3 Sun\nBuild R2 Mum\n\n27) jeep: Sacrifice Y2 Jeep\nMove R1 Pup Mum\nMove R1 Daoghter Mum\nCatastrophe Mum R\n\n28) sketchwick: Trade G3 R3 Mum\n\n29) jeep: Trade R3 Y3 Jeep\n\n30) sketchwick: Trade G2 R2 Sketchwick\n\n31) jeep: Trade R2 G2 Pup\n\n32) sketchwick: Build G3 Mum\n\n33) jeep: Trade G2 Y2 Pup\n\n34) sketchwick: Move G3 Mum Pup\n\n35) jeep: Discover Y2 Pup G2 Grans\n\n36) sketchwick: Sacrifice G3 Pup\nBuild Y1 Sketchwick\nBuild Y1 Sketchwick\nBuild Y3 Mum\n\n37) jeep: Move Y2 Grans Sketchwick\nCatastrophe Sketchwick Y\n\n38) sketchwick: Move G3 Sun Daoghter\n\n39) jeep: Discover R2 Daoghter Y2 Pup\n\n40) sketchwick: Move G3 Daoghter Jeep\n\n41) jeep: Attack G3S Jeep\n\n42) sketchwick: Sacrifice Y2 Mum\nDiscover G1 Mum Y3 Charge\nMove G1 Charge Jeep\nCatastrophe Jeep Green\n\n43) jeep: Trade Y3 G3 Jeep\n\n44) sketchwick: Move R3 Mum Pup\n\tjeep: Just waiting for the fat lady now...\n\n45) jeep: Sacrifice G3 Jeep\nBuild R1 Pup\nBuild R1 Pup\nBuild R2 Jeep\nCatastrophe Pup R\n\tsketchwick: yeah but if you conceded before I lost that game I thought I had to twoshort it wouldn't hurt you rating as much...\n\n46) sketchwick: Build R1 Sketchwick\n\n47) jeep: Trade R2 G2 Jeep\n\n48) sketchwick: Build G1 Sun\n\n49) jeep: Build R1 Jeep\n\n50) sketchwick: Move G2 Sun Sketchwick\n\n51) jeep: Trade R3 Y3 Jeep\n\n52) sketchwick: Trade G2 Y2 Sketchwick\n\n53) jeep: Move G2 Jeep Sun\n\n54) sketchwick: Move Y3 Mum Sun\n\n55) jeep: Sacrifice G2 Sun\nBuild Y1 Jeep\nBuild R2 Jeep\n\n56) sketchwick: Discover R2 Sketchwick Y2 Ender\n\n57) jeep: Discover R2 Jeep G2 Valentine\n\n58) sketchwick: Move G3 Sketchwick Valentine\n\n59) jeep: Build R2 Valentine\n\n60) sketchwick: Sacrifice R2 Ender\nAttack R2N Valentine\nAttack R2N Valentine\n\n61) jeep: Trade Y1 G1 Jeep\n\n62) sketchwick: Sacrifice Y2 Sketchwick\nMove Y3 Sun Jeep\nMove G3 Valentine Jeep\n\n\nHomeworlds Online (SDG# 2532)\nStarted: 2006.2.17, Ended: 2006.2.27\nParticipants: jeep (S), TwoShort (N)\nWinner: jeep\n\n1) TwoShort: Homeworld B2 Y1 G3\n\n2) jeep: Homeworld B1 G2 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) jeep: Build Y1 Jeep\n\tTwoShort: Hmmm... same-size homeworlds. Out of curiosity, was that intentional? \r\n\n\tjeep: No, it was supposed to be B1, G3, Y3, but I am a moron.\n\n5) TwoShort: Build G1 Twoshort\n\n6) jeep: Build Y1 Jeep\n\tTwoShort: Well, based on my limited experience of having made the same mistake once, I don't actually think it's a disadvantage.\n\n7) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n8) jeep: Discover Y1 Jeep G3 Giant\n\n9) TwoShort: Build G1 Yolonda\n\n10) jeep: Build Y2 Giant\n\n11) TwoShort: Move G1 Yolonda Jeep\n\tjeep: I've finally decided that I'm a Builder. I was trying to play the Traveller game, since I saw you were playing builder, but I never do as well when I try it.\n\tTwoShort: I'm certainly more comfortable with Builder, though I've been switching back and forth since others seem convinced Traveller is superior. I just love the Factory though.\n\n12) jeep: Build Y2 Jeep\n\tjeep: *sigh* I need to start using notes!! I took so long because I was trying to work around that... considered making a Red in my homeworld.\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Jeep\nBuild G3 Twoshort\n\n14) jeep: Trade Y2 R2 Jeep\n\n15) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Jeep\nBuild G3 Yolonda\n\n16) jeep: Sacrifice Y2 Giant\nMove Y3 Jeep Yolonda\nMove Y3 Yolonda Twoshort\n\n17) TwoShort: Move G1 Yolonda Twoshort\n\tTwoShort: Gak! I hates small-universe! Hates it!\n\n18) jeep: Sacrifice R2 Jeep\nAttack G3N Twoshort\nAttack G1N Twoshort\nCatastrophe Jeep G\n\tTwoShort: Well, fooey. Here I was gloating to myself about how clever I was to not call the catastrophe yet, and inconvenience you one tiny bit more, and completely overlooking my doom.\n\n19) TwoShort: Sacrifice G3 Yolonda\nBuild G1 Twoshort\nBuild G2 Twoshort\nBuild G2 Twoshort\n\tjeep: Yeah, I almsot missed it myself. And had I called catastrophe, you could have just built more ships, maybe enough that my one attack couldn't cripple you.\n\tTwoShort: But then or now, being able to grow has a fatal flaw...\n\n20) jeep: Move G3 Twoshort Giant\nCatastrophe Twoshort G\n\tTwoShort: Anyway, good game. Whenever you're ready for a rematch, I need revenge!\n\tjeep: Feel free to challenge me anytime.\n\n\nHomeworlds Online (SDG# 2554)\nVariants: "Unrated"\nStarted: 2006.2.18, Ended: 2006.3.8\nParticipants: JunkMan (S), Laurie_Menke (N)\nWinner: JunkMan\n\n1) Laurie_Menke: Homeworld B1 G2 Y3\n\tLaurie_Menke: Hi, JunkMan...good luck!\n\n2) JunkMan: Homeworld B2 G3 Y3\n\n3) Laurie_Menke: Build Y1 Laurie_menke\n\n4) JunkMan: Build Y1 Junkman\n\n5) Laurie_Menke: Discover Y1 Laurie_menke G3 Forest\n\n6) JunkMan: Trade Y1 R1 Junkman\n\n7) Laurie_Menke: Build Y1 Forest\n\n8) JunkMan: Build Y1 Junkman\n\n9) Laurie_Menke: Build Y2 Laurie_menke\n\n10) JunkMan: Discover Y1 Junkman G1 Garden\n\n11) Laurie_Menke: Trade Y2 B2 Laurie_menke\n\n12) JunkMan: Build Y2 Garden\n\n13) Laurie_Menke: Discover B2 Laurie_menke G3 Envy\n\n14) JunkMan: Discover Y1 Garden B3 Factory\n\n15) Laurie_Menke: Build B1 Envy\n\tLaurie_Menke: Hmmm...not much of a factory without any green. ;o)\n\n16) JunkMan: Build Y2 Garden\n\n17) Laurie_Menke: Discover Y1 Forest Y2 Sunshine\n\n18) JunkMan: Build Y3 Junkman\n\n19) Laurie_Menke: Move Y1 Sunshine Envy\n\n20) JunkMan: Move Y2 Garden Factory\n\n21) Laurie_Menke: Build Y2 Forest\n\n22) JunkMan: Discover Y2 Garden R3 Mars\n\n23) Laurie_Menke: Move B2 Envy Laurie_menke\n\n24) JunkMan: Trade Y1 G1 Factory\n\n25) Laurie_Menke: Discover Y1 Forest Y1 Luella\n\n26) JunkMan: Discover Y3 Junkman R1 Bunker\n\n27) Laurie_Menke: Move Y3 Laurie_menke Mars\n\n28) JunkMan: Move Y2 Mars Laurie_menke\n\n29) Laurie_Menke: Trade B2 R2 Laurie_menke\n\n30) JunkMan: Sacrifice R1 Junkman\nAttack R2N Laurie_menke\n\n\tJunkMan: Good Game\n\nHomeworlds Online (SDG# 2589)\nStarted: 2006.2.22, Ended: 2006.4.17\nParticipants: TwoShort (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld Y2 B1 G3\n\tJesse: I must have my vengeance. :)\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tTwoShort: By all means! But I should note that the blue-freeze out you put on me at the beginning of last game got me thinking...\n\n3) Jesse: Build G1 Jesse\n\tJesse: Interesting idea, but I won't let it work. :)\n\n4) TwoShort: Build B1 Twoshort\n\n5) Jesse: Build G1 Jesse\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) Jesse: Discover G1 Jesse B3 Ham\n\n8) TwoShort: Build B2 Twoshort\n\n9) Jesse: Discover G1 Jesse B3 Bacon\n\n10) TwoShort: Discover B2 Twoshort Y2 Yoyodyne\n\n11) Jesse: Build G1 Jesse\n\n12) TwoShort: Build B2 Twoshort\n\n13) Jesse: Build G2 Ham\n\n14) TwoShort: Trade B2 R2 Twoshort\n\n15) Jesse: Trade G2 R2 Ham\n\n16) TwoShort: Trade Y3 G3 Twoshort\n\n17) Jesse: Discover G1 Jesse B3 Pork\n\n18) TwoShort: Build G2 Twoshort\n\n19) Jesse: Build G2 Jesse\n\n20) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Twoshort\nBuild B2 Yoyodyne\n\n21) Jesse: Trade G2 B2 Jesse\n\n22) TwoShort: Trade G2 Y2 Twoshort\n\n23) Jesse: Discover B2 Jesse Y3 Chitlins\n\n24) TwoShort: Sacrifice Y2 Twoshort\nMove B2 Yoyodyne Bacon\nMove B2 Yoyodyne Pork\n\n25) Jesse: Build G2 Jesse\n\n26) TwoShort: Trade B2 R2 Pork\n\n27) Jesse: Trade G2 Y2 Jesse\n\n28) TwoShort: Sacrifice R2 Twoshort\nAttack G1 Bacon\nAttack G1 Pork\n\n29) Jesse: Build G2 Ham\n\n30) TwoShort: Trade B2 Y2 Bacon\n\n31) Jesse: Move Y2 Jesse Ham\n\n32) TwoShort: Build G2 Bacon\n\n33) Jesse: Discover G1 Ham B2 Saussage\n\n34) TwoShort: Move G1 Bacon Jesse\n\n35) Jesse: Trade G3 R3 Jesse\n\n36) TwoShort: Sacrifice Y2 Bacon\nMove R2 Pork Saussage\nDiscover G2 Bacon Y2 Hashbrowns\n\n37) Jesse: Sacrifice G2 Ham\nBuild B2 Chitlins\nBuild B3 Chitlins\n\n38) TwoShort: Attack G1N Saussage\n\n39) Jesse: Attack G1 Jesse\n\n40) TwoShort: Trade B1 Y1 Twoshort\n\n41) Jesse: Trade B3 G3 Chitlins\n\n42) TwoShort: Trade G1 Y1 Pork\n\n43) Jesse: Discover G1 Jesse Y3 Trotters\n\n44) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Pork\nBuild Y3 Twoshort\nBuild R1 Saussage\n\n45) Jesse: Sacrifice G1 Trotters\nBuild Y3 Ham\n\n46) TwoShort: Sacrifice Y1 Pork\nDiscover R1 Saussage G3 Eggsand\n\n47) Jesse: Move Y3 Ham Saussage\n\n48) TwoShort: Sacrifice Y1 Twoshort\nDiscover R2 Saussage B3 Samiam\n\n49) Jesse: Move Y3 Saussage Samiam\n\n50) TwoShort: Sacrifice G2 Hashbrowns\nBuild Y1 Twoshort\nBuild R1 Eggsand\n\tTwoShort: Hmm, the secret move that lets me turn this game around is proving most elusive...\n\n51) Jesse: Sacrifice R2 Ham\nAttack R2 Samiam\nPass\n\n52) TwoShort: Build R1 Eggsand\n\n53) Jesse: Move G3 Chitlins Jesse\n\n54) TwoShort: Build G1 Saussage\n\n55) Jesse: Trade B2 G2 Chitlins\n\n56) TwoShort: Trade G1 B1 Saussage\n\n57) Jesse: Build G1 Chitlins\n\n58) TwoShort: Build G1 Saussage\n\n59) Jesse: Sacrifice G2 Chitlins\nBuild G2 Jesse\nBuild R2 Samiam\n\n60) TwoShort: Trade G1 Y1 Saussage\n\n61) Jesse: Sacrifice G2 Jesse\nBuild R2 Samiam\nBuild Y2 Samiam\n\n62) TwoShort: Sacrifice Y1 Pork\nMove R1 Eggsand Saussage\n\n63) Jesse: Build R3 Jesse\n\n64) TwoShort: Build R3 Saussage\n\n65) Jesse: Sacrifice Y2 Samiam\nMove R2 Samiam Saussage\nMove R2 Samiam Saussage\nCatastrophe Saussage R\n\n66) TwoShort: Discover G1 Saussage B3 Syrup\n\n67) Jesse: Move R3 Jesse Syrup\n\n68) TwoShort: Move Y1 Saussage Eggsand\n\n69) Jesse: Attack G1 Syrup\n\n70) TwoShort: Trade Y1 R1 Twoshort\n\n71) Jesse: Build R2 Syrup\n\tTwoShort: I always hate to resign when I can't see a short-term, guaraunteed win sequence for my opponent... but my doom does seem inevitable.\n\tJesse: Yeah, I feel the same way. Comebacks are certainly possible. It's hard to find the correct degree of perseverance in the face of gradually increasing odds against you. Do as you will. I'll be happy to continue playing as long as you want to keep at it.\n\n\tJesse: Thanks for the game. 'Til next time...\n\nHomeworlds Online (SDG# 2543)\nStarted: 2006.2.23, Ended: 2006.3.30\nParticipants: jeep (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld Y1 G2 B3\n\n2) jeep: Homeworld B1 Y3 G3\n\tJesse: It's been a while; good to meet you again.\n\n3) Jesse: Build B1 Jesse\n\n4) jeep: Build G1 Jeep\n\tjeep: Thanks, nice to see you again. ;)\n\n5) Jesse: Build B1 Jesse\n\n6) jeep: Discover G1 Jeep B2 Man\n\n7) Jesse: Discover B1 Jesse G3 Plus\n\n8) jeep: Build G1 Jeep\n\n9) Jesse: Build B2 Plus\n\tjeep: I keep getting myself behind in the early game. I guess I need to pay more attention. *sigh*\n\tJesse: It's not easy. The opening at first seems simple because there aren't as many options as later, but it's surprisingly subtle.\n\n10) jeep: Build G1 Man\n\n11) Jesse: Trade B2 Y2 Plus\n\n12) jeep: Discover G3 Jeep Y2 Woman\n\n13) Jesse: Build B2 Plus\n\tJesse: It is almost always a bad idea to leave your homeworld without a large ship to defend it. If you think you can get away with it, more power to you, but I think it's quite dangerous here.\n\n14) jeep: Build G2 Woman\n\n15) Jesse: Discover B1 Jesse G3 Yggdrasil\n\tjeep: Yeah, I know, but I'm so far behind, I need to take a couple risks, I think.\n\n16) jeep: Sacrifice G3 Woman\nBuild G2 Woman\nBuild G3 Jeep\nPass\n\n17) Jesse: Build B2 Yggdrasil\n\n18) jeep: Trade G1 Y1 Man\n\n19) Jesse: Build B3 Jesse\n\n20) jeep: Sacrifice G3 Jeep\nBuild G1 Man\nBuild Y1 Man\nBuild G3 Jeep\n\n21) Jesse: Build B3 Yggdrasil\n\n22) jeep: Discover Y1 Man R3 Stage\n\n23) Jesse: Sacrifice B2 Yggdrasil\nTrade B3 Y3 Yggdrasil\nTrade B3 Y3 Jesse\n\n24) jeep: Build Y2 Man\n\n25) Jesse: Build B2 Yggdrasil\n\n26) jeep: Move G2 Woman Stage\n\n27) Jesse: Trade B3 R3 Jesse\n\n28) jeep: Trade G1 R1 Man\n\n29) Jesse: Build B3 Yggdrasil\n\n30) jeep: Move Y1 Man Stage\n\n31) Jesse: Discover Y3 Jesse B3 Child\n\n32) jeep: Sacrifice G3 Jeep\nBuild G1 Stage\nBuild G3 Jeep\nBuild R1 Man\n\n33) Jesse: Move B3 Yggdrasil Jesse\n\n34) jeep: Move R1 Man Plus\n\n35) Jesse: Build B3 Plus\n\n36) jeep: Sacrifice G2 Woman\nBuild Y2 Stage\nBuild G2 Man\n\n37) Jesse: Move B3 Plus Man\n\n38) jeep: Sacrifice Y2 Man\nMove R1 Man Jeep\nDiscover G2 Stage Y2 Store\n\n39) Jesse: Sacrifice Y3 Yggdrasil\nMove Y3 Child Man\nMove Y3 Man Jeep\nMove B3 Man Jeep\n\n40) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild R1 Jeep\nBuild R2 Plus\n\tjeep: I think I looked at my two one point red ships and thought they were as good as a two point ship, or something. :(\n\tjeep: All over but the singing, now.\n\n41) Jesse: Sacrifice R3 Jesse\nAttack G3 Jeep\nAttack G1 Jeep\nAttack R2 Plus\n\tJesse: In some situations, two one-pointers are better than one two-pointer. Unfortunately for you right now, defending against mass invasions is not one of them. Remember this kind of attack for the future; it is often more effective than trying to destroy the opponent's ships of stars, which can require huge sacrifices.\n\n\tjeep: I've won with this type of attack before. But I thought I was safe- for now. I know I was way behind for most of the game, though. Thanks for the game! \n\nHomeworlds Online (SDG# 2626)\nStarted: 2006.2.27, Ended: 2006.3.2\nParticipants: Uglyfoot (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) Uglyfoot: Homeworld Y3 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n6) Uglyfoot: Discover G1 Uglyfoot B2 Venice\n\n7) TwoShort: Build G1 Twoshort\n\n8) Uglyfoot: Build G2 Venice\n\n9) TwoShort: Build G2 Yolonda\n\n10) Uglyfoot: Trade G2 Y2 Venice\n\n11) TwoShort: Discover G1 Yolonda B2 Bluestar\n\n12) Uglyfoot: Build G2 Uglyfoot\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n14) Uglyfoot: Build Y1 Venice\n\n15) TwoShort: Move G3 Yolonda Venice\n\n16) Uglyfoot: Trade Y1 R1 Venice\n\n17) TwoShort: Trade G2 R2 Bluestar\n\n18) Uglyfoot: Build G2 Venice\n\n19) TwoShort: Sacrifice R2 Bluestar\nAttack R1S Venice\nAttack Y2S Venice\n\n20) Uglyfoot: Move G2 Uglyfoot Venice\nCatastrophe Venice G\n\n21) TwoShort: Build G1 Bluestar\n\n22) Uglyfoot: Build G2 Uglyfoot\n\n23) TwoShort: Sacrifice Y2 Venice\nMove G1 Bluestar Uglyfoot\nMove G1 Bluestar Uglyfoot\nCatastrophe Uglyfoot Green\n\tUglyfoot: and that looks like a win for you.\r\n\n\tTwoShort: Yup. Thanks for the game!\n\n\nHomeworlds Online (SDG# 2643)\nStarted: 2006.2.27, Ended: 2006.3.31\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld Y1 B3 G3\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) jeep: Build G1 Jeep\n\n4) TwoShort: Build G1 Twoshort\n\n5) jeep: Discover G1 Jeep B2 Man\n\n6) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n7) jeep: Build G1 Man\n\n8) TwoShort: Build G2 Twoshort\n\n9) jeep: Trade G1 Y1 Man\n\n10) TwoShort: Trade G2 Y2 Twoshort\n\n11) jeep: Build G1 Jeep\n\n12) TwoShort: Build G2 Twoshort\n\n13) jeep: Trade G3 Y3 Jeep\n\n14) TwoShort: Build G2 Yolonda\n\n15) jeep: Build G2 Jeep\n\n16) TwoShort: Move G2 Yolonda Man\n\n17) jeep: Sacrifice G2 Jeep\nBuild G2 Man\nBuild G3 Jeep\n\n18) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Man\nBuild G3 Twoshort\nCatastrophe Man Green\n\tjeep: Sorry for the delay... That's why I pick 3 day games, though...\n\n19) jeep: Sacrifice G3 Jeep\nBuild Y1 Man\nBuild Y2 Jeep\nBuild Y3 Man\n\n20) TwoShort: Discover Y2 Twoshort B3 Bluestar\n\n21) jeep: Move Y3 Man Yolonda\n\n22) TwoShort: Build G1 Yolonda\n\n23) jeep: Build G2 Jeep\n\n24) TwoShort: Discover G1 Yolonda B2 Boy\n\n25) jeep: Move G2 Jeep Man\n\n26) TwoShort: Move Y2 Bluestar Boy\n\n27) jeep: Discover Y2 Jeep B2 Yolanda\n\n28) TwoShort: Build G2 Boy\n\n29) jeep: Build G2 Man\n\n30) TwoShort: Trade G2 R2 Boy\n\n31) jeep: Trade G2 R2 Man\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Yolonda\nBuild G3 Boy\n\n33) jeep: Build G3 Jeep\n\tTwoShort: Woops, mis-entered that... and now I'm reconsidering \n\n34) TwoShort: Move G2 Yolonda Yolanda\n\n35) jeep: Move Y3 Yolonda Twoshort\n\n36) TwoShort: Sacrifice R2 Boy\nAttack Y3N Twoshort\nAttack Y2N Yolanda\n\n37) jeep: Sacrifice Y3 Jeep\nDiscover G2 Man Y3 Woman\nMove R2 Man Jeep\nMove G1 Jeep Man\n\tjeep: I'm nervous that I mis-calculated here... but we'll see, I guess.\n\tTwoShort: I've been nervous the last dozen moves... it's kind of refreshing to have an obvious move this time.\n\n38) TwoShort: Trade G2 R2 Yolanda\n\tTwoShort: Well, I was worried you had me; but looking at things now, I think you miscalculated... unless I've miscalculated and you weren't planning what I think you were planning... :)\n\tjeep: You did what I expected, now I need to remember my response. I remember thinking it was non-obvious. Too bad there isn't a notebook type feature on the si...? Hmm? There is? Wow, mayby I should use it.\n\tTwoShort: Well, what I thought you might be planning was sacrificing your Y3 to move your G3 all the way to my homeworld now that I have no red. But I wouldn't recommend it.\n\tjeep: Right, I do that and you simply build two larges in your homeworld. I can take two, but then you can get an R3 and destroy me... yeah, that wasn't what it was. What else might destroy you? ;)\n\tTwoShort: If you do that and I build two larges, you could respond by turning your large red, and then you'd be free to sacrifice the r2 even if I got red, and I'd be doomed. So I wouldn't build the two larges.\n\tjeep: Yeah, I know. ;) *sigh* I really do know that I make bad moves at midnight, but I still make them. I think this game is as good as over now. I'm still thinking about it, but I'm thinking I missed that you'd wind up with the Y2 instead of me after the attack.\n\n39) jeep: Discover Y1 Man B3 Stage\n\n40) TwoShort: Move G2 Yolonda Man\n\n41) jeep: Sacrifice G2 Woman\nBuild G2 Man\nBuild Y3 Stage\n\n42) TwoShort: Sacrifice G1 Yolonda\nBuild Y3 Yolanda\n\n43) jeep: Move G1 Man Stage\n\n44) TwoShort: Sacrifice Y3 Yolanda\nMove Y2 Yolanda Stage\nMove Y2 Boy Stage\nMove R2 Yolanda Stage\nCatastrophe Stage Yellow\n\n45) jeep: Sacrifice G2 Man\nBuild G1 Stage\nBuild G2 Stage\n\n46) TwoShort: Sacrifice G3 Boy\nBuild G2 Man\nBuild G3 Boy\nBuild Y1 Twoshort\n\tjeep: When ahead, simplify... always a good plan, I think.\n\n47) jeep: Sacrifice G2 Stage\nBuild Y2 Man\nBuild Y2 Man\n\n48) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Boy Jeep\nMove G2 Man Jeep\nMove G2 Man Jeep\nCatastrophe Jeep Green\n\n49) jeep: Move Y2 Man Jeep\n\n50) TwoShort: Sacrifice Y1 Twoshort\nMove G3 Boy Jeep\n\n\nHomeworlds Online (SDG# 2647)\nStarted: 2006.3.2, Ended: 2006.3.7\nParticipants: sketchwick (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) sketchwick: Homeworld B1 R3 G3\n\tTwoShort: Greetings\n\n3) TwoShort: Build G1 Twoshort\n\n4) sketchwick: Build G1 Sketchwick\n\n5) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n6) sketchwick: Trade G3 Y3 Sketchwick\n\n7) TwoShort: Build G1 Yolonda\n\n8) sketchwick: Build G2 Sketchwick\n\n9) TwoShort: Build G2 Twoshort\n\n10) sketchwick: Discover G1 Sketchwick Y2 Smith\n\tsketchwick: Oh, hi! I just saw your greeting. :)\r\n\n\n11) TwoShort: Move G1 Yolonda Smith\n\n12) sketchwick: Trade G2 R2 Sketchwick\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Smith\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n14) sketchwick: Move R2 Sketchwick Smith\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n16) sketchwick: Attack G2N Smith\n\n17) TwoShort: Move G1 Yolonda Smith\nCatastrophe Smith Green\n\n18) sketchwick: Move R2 Smith Yolonda\n\n19) TwoShort: Trade G2 R2 Twoshort\n\n20) sketchwick: Discover R2 Yolonda Y2 Notgoingwell\n\n21) TwoShort: Move G3 Yolonda Notgoingwell\n\n22) sketchwick: Move R2 Notgoingwell Sketchwick\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G1 Yolonda\nBuild G1 Notgoingwell\n\n24) sketchwick: Trade R2 G2 Sketchwick\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n26) sketchwick: Build Y1 Sketchwick\n\n27) TwoShort: Trade G3 Y3 Twoshort\n\n28) sketchwick: Build G3 Sketchwick\n\n29) TwoShort: Discover G2 Yolonda Y2 Goingfine\n\n30) sketchwick: Discover Y1 Sketchwick R2 Notdead\n\n31) TwoShort: Move G1 Notgoingwell Sketchwick\n\n32) sketchwick: Sacrifice G2 Sketchwick\nBuild Y1 Notdead\nBuild Y2 Sketchwick\n\n33) TwoShort: Sacrifice G2 Goingfine\nBuild G2 Sketchwick\nBuild G2 Sketchwick\nCatastrophe Sketchwick Green\n\n34) sketchwick: Trade Y3 G3 Sketchwick\n\n35) TwoShort: Discover G3 Yolonda B2 Yet\n\n36) sketchwick: Discover Y1 Notdead B3 Ox\n\n37) TwoShort: Trade G3 Y3 Yet\n\n38) sketchwick: Trade Y2 G2 Sketchwick\n\n39) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Yet Sketchwick\nMove G3 Notgoingwell Sketchwick\nPass\n\tTwoShort: I think I had you back when I gained the upper hand on 3 pointers, but you've held me off for an impressively long time. Now, however, I'm afraid the end is nigh...\n\n40) sketchwick: Attack Y3N Sketchwick\n\n41) TwoShort: Sacrifice R2 Twoshort\nAttack G3 Sketchwick\nAttack Y3 Sketchwick\n\tsketchwick: glad I was impressive in SOME way, I'm very inexperienced...I hadn't thought of the power of moving in two big ships when you have at least an r2\n\n\tTwoShort: Well, I hope you'll keep playing; you're obviously good at thinking through the posibilities a couple moves in advance; just need to work on your early game.\n\tTwoShort: A couple tips: 1) Red is the least useful color. Optimally, I never take red except for a single two point ship the turn after my opponent takes red, or the turn before I'm threatening to use it. 2) The early game is about getting 3 pointers. A significant disadvantage in 3 pointer count is usually insurmountable.\n\nHomeworlds Online (SDG# 2627)\nStarted: 2006.3.2, Ended: 2006.4.15\nParticipants: sketchwick (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld G3 B2 Y3\n\tJesse: Hello. How's it going?\n\n2) sketchwick: Homeworld B1 R2 G3\n\n3) Jesse: Build Y1 Jesse\n\tJesse: You should probably go read the strategy tips for beginners on the wiki, if you haven't. Most experienced players prefer not to choose a red system marker. (Or maybe I assume too much, and you have some particular strategy in mind.)\n\n4) sketchwick: Build G1 Sketchwick\n\tsketchwick: I never read any tips, just played a lot of games with jeep as we were both learning. Forgive me if I don't present a challenge\n\n5) Jesse: Trade Y1 G1 Jesse\n\tJesse: It's no problem. Would you like some coaching?\n\n6) sketchwick: Trade G1 Y1 Sketchwick\n\tsketchwick: I'm always open to hearing ideas\n\n7) Jesse: Build Y1 Jesse\n\tJesse: For one thing, it's generally not considered a good idea to use red for one of your system markers. It doesn't help you early on, it can't be sacrificed to use the power in another system (so you still need a red ship somewhere when your opponent gets a red ship), and when your opponent does invade your system, you both have access to the red power.\n\tJesse: On the other hand, it does make it possible for you to freely choose between maintaining either a large green or a large yellow at your homeworld (or, later, both), both of which can be quite useful.\n\n8) sketchwick: Build G1 Sketchwick\n\tsketchwick: Yeah, it's the other hand that made me choose it...you first comment made it sound like you could sacrifice stars...if this is true I'm unaware of the rule.\n\n9) Jesse: Trade Y1 B1 Jesse\n\tJesse: No, you can't sacrifice stars. That was the point. Because you can't, it can only help you in your home system. Once I get into red ships, you'll still need red ships of your own, to protect yourself elsewhere.\n\n10) sketchwick: Discover G1 Sketchwick B3 Ox\n\n11) Jesse: Discover G1 Jesse B1 Gateway\n\n12) sketchwick: Build G1 Sketchwick\n\n13) Jesse: Build G2 Gateway\n\n14) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Ox\nBuild G2 Ox\nBuild G3 Sketchwick\n\n15) Jesse: Build B2 Jesse\n\n16) sketchwick: Trade G3 Y3 Sketchwick\n\n17) Jesse: Trade G1 Y1 Gateway\n\n18) sketchwick: Trade G2 B2 Ox\n\n19) Jesse: Trade B2 R2 Jesse\n\n20) sketchwick: Trade G2 R2 Ox\n\n21) Jesse: Build G1 Gateway\n\n22) sketchwick: Build G2 Ox\n\n23) Jesse: Discover G1 Gateway Y3 Oort\n\n24) sketchwick: Trade G1 Y1 Ox\n\n25) Jesse: Build Y2 Jesse\n\n26) sketchwick: Build Y2 Ox\n\n27) Jesse: Discover Y2 Jesse G1 Peggys\n\n28) sketchwick: Move B2 Ox Gateway\n\n29) Jesse: Discover G2 Gateway Y2 Core\n\n30) sketchwick: Build G2 Ox\n\n31) Jesse: Build G3 Core\n\n32) sketchwick: Build G3 Sketchwick\n\n33) Jesse: Sacrifice G1 Oort\nBuild Y3 Peggys\n\n34) sketchwick: Sacrifice Y3 Sketchwick\nMove Y2 Ox Peggys\nMove Y1 Ox Peggys\nMove G2 Ox Core\nCatastrophe Peggys Yellow\n\n35) Jesse: Sacrifice B1 Jesse\nTrade G3 B3 Core\n\n36) sketchwick: Build R1 Ox\n\n37) Jesse: Build R1 Jesse\n\n38) sketchwick: Move G2 Core Gateway\n\n39) Jesse: Discover Y1 Gateway G3 Neptune\n\tsketchwick: Do you know you will win at this point?\n\tJesse: No, the result is definitely not settled.\n\n40) sketchwick: Trade G2 Y2 Ox\n\n41) Jesse: Build G1 Core\n\tsketchwick: Maybe I'm only good enough to see the advantages you've gained, but not good enough to see my own...\n\tJesse: Well, you have a factory and fairly well distributed pieces. The factory isn't operational right now, but once the greens run out you'll have a production advantage if I can't put a stop to it. For that reason, I think your last move really plays against your strength. It gives me a chance to get more greens with which to threaten you.\n\n42) sketchwick: Discover R2 Ox Y1 Cart\n\n43) Jesse: Discover G2 Core Y3 Foodfactory\n\tsketchwick: Man I should ask you to explain my stengths BEFORE I move. ;)\n\n44) sketchwick: Sacrifice G2 Gateway\nBuild R1 Cart\nBuild R3 Ox\n\n45) Jesse: Discover R1 Jesse G1 Chon\n\tJesse: On the other hand, that's not half bad, either. I should have given more thought to this possibility. <sigh> Did you notice that this is a difficult game? :)\n\tsketchwick: I'm sure you've played a LOT more games than I have...jeep and I learned about the same time if not exactly the same, so our first few games weren't very complicated. :)\n\tJesse: It can get very complicated. I'm definitely going to have to think a bit more on this one...\n\n46) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Sketchwick\nBuild Y2 Ox\nBuild Y3 Sketchwick\n\n47) Jesse: Sacrifice G2 Foodfactory\nBuild Y3 Neptune\nBuild R3 Chon\n\tsketchwick: so paranoid I'll miuss somehting huge at this stage\r\n\n\n48) sketchwick: Move R1 Ox Chon\n\tJesse: It's a very difficult part of the game. You should definitely be careful.\n\n49) Jesse: Build R3 Jesse\n\tsketchwick: bleh bleh bleh\r\nsigh\n\n50) sketchwick: Sacrifice Y2 Ox\nMove R1 Cart Jesse\nMove R2 Cart Jesse\nCatastrophe Jesse Red\n\n51) Jesse: Sacrifice R1 Chon\nAttack R1 Chon\n\n52) sketchwick: Trade B2 Y2 Gateway\n\n53) Jesse: Build G2 Core\n\n54) sketchwick: Sacrifice G2 Sketchwick\nBuild G2 Sketchwick\nBuild Y1 Gateway\n\n55) Jesse: Sacrifice Y3 Neptune\nMove R3 Chon Jesse\nMove Y3 Jesse Chon\nDiscover G2 Core Y3 Wheel\n\tsketchwick: Ok so do you know you win NOW? 4 big ships is daunting :(\n\tJesse: Turning the tables will be a difficult task for you, but there's still a lot for me to do, and it's easy to make a misstep. One clever sneak-attack from you, and I could be done for. (I've got my eye on those Gateway ships, buddy.)\n\n56) sketchwick: Move G2 Sketchwick Neptune\n\n57) Jesse: Sacrifice G2 Wheel\nBuild G2 Core\nBuild Y3 Neptune\n\n58) sketchwick: Build G2 Neptune\n\n59) Jesse: Sacrifice Y3 Neptune\nDiscover G2 Core Y3 Wheel\nDiscover Y1 Neptune B1 Kugelblitz\nMove G1 Core Neptune\nCatastrophe Neptune G\n\n60) sketchwick: Build G1 Sketchwick\n\n61) Jesse: Build G2 Wheel\n\n62) sketchwick: Sacrifice Y2 Ox\nMove G1 Sketchwick Wheel\nMove G1 Sketchwick Wheel\nCatastrophe Wheel Green\n\n63) Jesse: Build Y2 Chon\n\n64) sketchwick: Trade Y3 G3 Sketchwick\n\n65) Jesse: Discover B3 Core Y3 Wheel\n\n66) sketchwick: Build G1 Sketchwick\n\n67) Jesse: Trade Y1 G1 Kugelblitz\n\n68) sketchwick: Sacrifice Y1 Gateway\nMove R3 Ox Kugelblitz\n\n69) Jesse: Sacrifice G1 Kugelblitz\nBuild B2 Wheel\n\n70) sketchwick: Discover Y2 Gateway G3 Momma\n\n71) Jesse: Trade B2 G2 Wheel\n\n72) sketchwick: Move G1 Sketchwick Wheel\n\n73) Jesse: Sacrifice R1 Chon\nAttack G1 Wheel\n\n74) sketchwick: Sacrifice Y1 Sketchwick\nMove R3 Kugelblitz Wheel\n\n75) Jesse: Sacrifice Y2 Chon\nMove Y3 Chon Jesse\nMove G1 Wheel Sketchwick\n\tJesse: That was kind of evil. It took some searching, but I believe I have an answer you won't like one bit.\n\n76) sketchwick: Sacrifice Y2 Momma\nMove R3 Wheel Sketchwick\nDiscover G3 Sketchwick Y3 Sigh\n\n77) Jesse: Sacrifice G1 Sketchwick\nBuild G1 Wheel\n\n78) sketchwick: Build G1 Sigh\n\n79) Jesse: Build B1 Wheel\n\n80) sketchwick: Move G3 Sigh Sketchwick\n\n81) Jesse: Build Y1 Jesse\n\n82) sketchwick: Build G1 Sketchwick\n\n83) Jesse: Sacrifice Y3 Jesse\nMove G2 Wheel Sketchwick\nMove G1 Wheel Sketchwick\nPass\nCatastrophe Sketchwick G\n\n84) sketchwick: Move G1 Sigh Sketchwick\n\n85) Jesse: Trade B3 G3 Wheel\n\n86) sketchwick: Build R1 Sketchwick\n\n87) Jesse: Build R1 Jesse\n\n88) sketchwick: Trade R1 Y1 Sketchwick\n\n89) Jesse: Discover R1 Jesse G1 Lever\n\n\tJesse: Well, thank you for a good game. It didn't work out for you this time, but you've shown me that the red-blue homeworld has more value than I had given it credit for. I'm trying it out for myself in a couple of games, now.\n\nHomeworlds Online (SDG# 2602)\nStarted: 2006.3.2, Ended: 2006.3.27\nParticipants: sketchwick (S), andylooney (N)\nWinner: sketchwick\n\n1) andylooney: Homeworld B1 G2 Y3\n\n2) sketchwick: Homeworld Y3 B1 G3\n\n3) andylooney: Build Y1 Andylooney\n\n4) sketchwick: Build G1 Sketchwick\n\n5) andylooney: Trade Y1 G1 Andylooney\n\n6) sketchwick: Trade G1 R1 Sketchwick\n\n7) andylooney: Build G1 Andylooney\n\n8) sketchwick: Build R1 Sketchwick\n\n9) andylooney: Trade G1 R1 Andylooney\n\n10) sketchwick: Build R2 Sketchwick\n\n11) andylooney: Build R2 Andylooney\n\n12) sketchwick: Discover R1 Sketchwick B2 Berry\n\n13) andylooney: Discover G1 Andylooney Y3 Clampett\n\n14) sketchwick: Build G1 Sketchwick\n\n15) andylooney: Discover R1 Andylooney G3 Garden\n\n16) sketchwick: Trade R1 G1 Berry\n\n17) andylooney: Build G2 Clampett\n\n18) sketchwick: Sacrifice G3 Sketchwick\nBuild G2 Sketchwick\nBuild G3 Sketchwick\nBuild G3 Berry\n\n19) andylooney: Discover G1 Clampett Y2 Plugh\n\n20) sketchwick: Move G2 Sketchwick Plugh\n\tsketchwick: that was handy...do you know how the undo feature works on SDG? once per game or something?\n\n\nHomeworlds Online (SDG# 2720)\nStarted: 2006.3.6, Ended: 2006.3.7\nParticipants: feidoi (S), jlabrozzi (N)\nWinner: feidoi\n\n1) jlabrozzi: Homeworld G1 B2 Y3\n\n2) feidoi: Homeworld G3 B2 R3\n\tjlabrozzi: \n\tjlabrozzi: \n\n3) jlabrozzi: Build Y1 Jlabrozzi\n\n4) feidoi: Build R1 Feidoi\n\tjlabrozzi: go\n\n5) jlabrozzi: Trade Y1 G1 Jlabrozzi\n\n6) feidoi: Trade R1 Y1 Feidoi\n\tjlabrozzi: \n\n7) jlabrozzi: Discover Y3 Jlabrozzi R3 Kansas\n\n8) feidoi: Build Y1 Feidoi\n\n9) jlabrozzi: Build G1 Jlabrozzi\n\n10) feidoi: Discover Y1 Feidoi Y1 Shimina\n\n11) jlabrozzi: Build G2 Jlabrozzi\n\n12) feidoi: Build Y2 Feidoi\nCatastrophe Jlabrozzi Green\n\n\nHomeworlds Online (SDG# 2727)\nStarted: 2006.3.7, Ended: 2006.3.7\nParticipants: feidoi (S), jlabrozzi (N)\nWinner: jlabrozzi\n\n1) jlabrozzi: Pass\n\n2) feidoi: Homeworld Y1 B3 G3\n\n3) jlabrozzi: Homeworld Y2 G3 B3\n\n4) feidoi: Build G1 Feidoi\n\n5) jlabrozzi: Build B1 Jlabrozzi\n\n6) feidoi: Discover G1 Feidoi Y2 Shimina\n\n7) jlabrozzi: Trade B1 Y1 Jlabrozzi\n\n8) feidoi: Build G1 Feidoi\n\n9) jlabrozzi: Build B1 Jlabrozzi\n\n10) feidoi: Trade G1 Y1 Feidoi\n\n11) jlabrozzi: Trade B1 R1 Jlabrozzi\n\n12) feidoi: Build Y2 Feidoi\n\n13) jlabrozzi: Build Y3 Jlabrozzi\n\n14) feidoi: Move Y2 Feidoi Shimina\n\n15) jlabrozzi: Discover Y1 Jlabrozzi R1 Stankonia\n\n16) feidoi: Move Y2 Shimina Stankonia\n\n17) jlabrozzi: Build B1 Jlabrozzi\n\n18) feidoi: Attack Y1 Stankonia\n\n19) jlabrozzi: Build R1 Jlabrozzi\n\n20) feidoi: Build Y3 Feidoi\n\n21) jlabrozzi: Move Y3 Jlabrozzi Stankonia\n\n22) feidoi: Sacrifice Y3 Feidoi\nMove Y1 Feidoi Shimina\nMove Y2 Stankonia Jlabrozzi\nMove Y1 Stankonia Jlabrozzi\n\n23) jlabrozzi: Attack Y2S Jlabrozzi\n\n24) feidoi: Sacrifice G1 Shimina\nBuild Y3 Jlabrozzi\n\n25) jlabrozzi: Sacrifice Y2 Jlabrozzi\nMove Y3 Stankonia Shimina\nMove Y3 Shimina Feidoi\n\n26) feidoi: Sacrifice Y3 Jlabrozzi\nDiscover Y1 Jlabrozzi R1 Fu\nMove Y1 Fu Shimina\nMove Y1 Shimina Feidoi\n\n27) jlabrozzi: Sacrifice R1 Jlabrozzi\nAttack G3 Feidoi\n\n28) feidoi: Move Y1 Shimina Feidoi\n\n29) jlabrozzi: Sacrifice G3 Feidoi\nBuild Y2 Feidoi\nBuild Y2 Feidoi\nBuild Y3 Feidoi\nCatastrophe Feidoi Y\n\n\nHomeworlds Online (SDG# 2665)\nStarted: 2006.3.7, Ended: 2006.3.11\nParticipants: sketchwick (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) sketchwick: Homeworld Y1 B3 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) sketchwick: Build G1 Sketchwick\n\n5) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n6) sketchwick: Discover G1 Sketchwick Y2 Again\n\n7) TwoShort: Build G1 Twoshort\n\n8) sketchwick: Build G2 Sketchwick\n\tsketchwick: is this going badly for me?\n\n9) TwoShort: Discover G1 Twoshort B3 Bluestar\n\tTwoShort: Not so far. A quick rundown of my thinking at this point: I'd like to use the "Factory": sacrifice a g3 to grow 3 peices, including the same g3 you sacrificed in the first place. I could do it now to grab both g2s, but that would let you get the remaining g3, which is what we're really after. So I could grow one g2, but then you could factory and again get the G3. So I won't grow, and must move or trade. \n\n10) sketchwick: Build G2 Again\n\n11) TwoShort: Trade G1 Y1 Bluestar\n\tsketchwick: Oh, do you know how undo works on SDG? Once per game or something?\n\tTwoShort: I beleive it is once per game.\n\n12) sketchwick: Discover G1 Again G1 Good\n\tTwoShort: Continuing my series of tips, the technique I'm demostrating now is called "Blowing It". Sigh.\n\n13) TwoShort: Build G2 Twoshort\n\n14) sketchwick: Build G3 Again\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y2 Bluestar\nBuild G3 Twoshort\n\n16) sketchwick: Trade G2 R2 Sketchwick\n\tTwoShort: Switching to plan B...\n\n17) TwoShort: Sacrifice Y2 Bluestar\nDiscover Y2 Bluestar B2 Bomber\nDiscover Y1 Bluestar Y2 Denial\n\tsketchwick: I thought you'd do that, but no clue how I should respond\n\tTwoShort: I might have moved the large green to a blue system. But taking a red is not a bad choice as evidenced by the fact I'm not sure what to do in response. Andy Looneys "draw your gun" rule says to always immediately take red when your opponent does. It's a good rule; and while I sometimes ignore it, I often regret doing so.\n\n18) sketchwick: Trade G3 Y3 Sketchwick\n\tTwoShort: By the way, on the undo, I now beleive it is once per move, which makes more sense... one could of course ask Aaron for the definitive answer...\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild Y3 Bomber\n\n20) sketchwick: Sacrifice Y3 Sketchwick\nMove G2 Again Sketchwick\nMove G3 Again Yolonda\nMove G3 Yolonda Twoshort\n\n21) TwoShort: Sacrifice Y3 Bomber\nMove G1 Yolonda Twoshort\nDiscover Y2 Bomber R3 Desperation\nMove Y2 Desperation Twoshort\nCatastrophe Twoshort Green\n\tTwoShort: Gack! Why do I insist on ignoring the Gun rule? Did I mention I often regret it? \n\n22) sketchwick: Move R2 Sketchwick Denial\n\tsketchwick: yeah, I didn't even see you could get out of it.\r\n\r\nshucks\n\n23) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Twoshort\nBuild Y3 Denial\n\tTwoShort: Well, I didn't see it at all, so being able to get out of it was just lucky\n\n24) sketchwick: Discover R2 Denial Y3 Bleh\n\n25) TwoShort: Trade Y2 R2 Twoshort\n\n26) sketchwick: Trade G2 Y2 Sketchwick\n\n27) TwoShort: Move Y3 Denial Sketchwick\n\n28) sketchwick: Sacrifice G1 Good\nBuild Y3 Sketchwick\nCatastrophe Sketchwick Yellow\n\n\nHomeworlds Online (SDG# 2749)\nStarted: 2006.3.8, Ended: 2006.3.9\nParticipants: jlabrozzi (S), feidoi (N)\nWinner: feidoi\n\n1) feidoi: Homeworld B1 G2 Y3\n\n2) jlabrozzi: Homeworld B3 Y2 G3\n\n3) feidoi: Build Y1 Feidoi\n\n4) jlabrozzi: Build G1 Jlabrozzi\n\n5) feidoi: Build Y1 Feidoi\n\n6) jlabrozzi: Build G1 Jlabrozzi\n\n7) feidoi: Trade Y1 G1 Feidoi\n\n8) jlabrozzi: Trade G1 R1 Jlabrozzi\n\n9) feidoi: Build G1 Feidoi\n\n10) jlabrozzi: Build R1 Jlabrozzi\n\n11) feidoi: Trade G1 R1 Feidoi\n\n12) jlabrozzi: Trade G1 Y1 Jlabrozzi\n\n13) feidoi: Build R2 Feidoi\n\n14) jlabrozzi: Build G1 Jlabrozzi\n\n15) feidoi: Build R2 Feidoi\n\n16) jlabrozzi: Discover Y1 Jlabrozzi B1 Egypt\n\n17) feidoi: Discover R2 Feidoi G3 Fool\n\n18) jlabrozzi: Move G3 Jlabrozzi Egypt\n\n19) feidoi: Build R2 Fool\n\n20) jlabrozzi: Trade G3 R3 Egypt\n\n21) feidoi: Sacrifice Y1 Feidoi\nDiscover R2 Fool Y1 Istanbul\n\n22) jlabrozzi: Move R1 Jlabrozzi Egypt\n\n23) feidoi: Move R2 Istanbul Jlabrozzi\n\n24) jlabrozzi: Move R3 Egypt Jlabrozzi\n\n25) feidoi: Sacrifice G1 Feidoi\nBuild R3 Jlabrozzi\nCatastrophe Jlabrozzi Red\n\n26) jlabrozzi: Move R1 Egypt Jlabrozzi\n\n27) feidoi: Build Y1 Feidoi\n\n28) jlabrozzi: Build R1 Jlabrozzi\n\n29) feidoi: Sacrifice Y1 Feidoi\nMove R2 Fool Egypt\n\n30) jlabrozzi: Build R2 Jlabrozzi\n\n31) feidoi: Sacrifice Y3 Feidoi\nDiscover R1 Feidoi Y3 Fool2\nMove R1 Fool2 Egypt\nMove R1 Egypt Jlabrozzi\nCatastrophe Jlabrozzi Red\n\n32) jlabrozzi: Build G1 Jlabrozzi\n\n33) feidoi: Attack Y1 Egypt\n\n34) jlabrozzi: Build G1 Jlabrozzi\n\n35) feidoi: Move R2 Egypt Jlabrozzi\n\n\nHomeworlds Online (SDG# 2691)\nStarted: 2006.3.11, Ended: 2006.5.23\nParticipants: Uglyfoot (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld Y1 B2 G3\n\n2) Uglyfoot: Homeworld G3 B1 Y3\n\n3) andylooney: Build G1 Andylooney\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\n5) andylooney: Discover G1 Andylooney Y3 Clampett\n\n6) Uglyfoot: Trade Y1 G1 Uglyfoot\n\tUglyfoot: Welcome back! Was it a good trip?\r\n\n\n7) andylooney: Build G1 Andylooney\n\n8) Uglyfoot: Build G2 Uglyfoot\n\n9) andylooney: Trade G1 Y1 Andylooney\n\n10) Uglyfoot: Discover G2 Uglyfoot B2 Centauri\n\n11) andylooney: Discover Y1 Andylooney G3 Garden\n\n12) Uglyfoot: Build Y1 Uglyfoot\n\n13) andylooney: Build Y2 Garden\n\n14) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n15) andylooney: Build G1 Andylooney\n\n16) Uglyfoot: Build G2 Centauri\n\n17) andylooney: Trade G1 R1 Andylooney\n\n18) Uglyfoot: Trade G2 Y2 Centauri\n\n19) andylooney: Discover Y1 Garden G2 Greendome\n\n20) Uglyfoot: Build G1 Centauri\n\n21) andylooney: Build G2 Andylooney\n\n22) Uglyfoot: Move G2 Centauri Clampett\n\n23) andylooney: Discover G1 Clampett Y2 Yellowdoor\n\n24) Uglyfoot: Trade G1 R1 Uglyfoot\n\n25) andylooney: Build R2 Andylooney\n\n26) Uglyfoot: Build R2 Uglyfoot\n\n27) andylooney: Discover G2 Andylooney Y3 Thurston\n\n28) Uglyfoot: Move R2 Uglyfoot Yellowdoor\n\n29) andylooney: Discover G1 Yellowdoor R3 Bigred\n\n30) Uglyfoot: Move R2 Yellowdoor Clampett\n\n31) andylooney: Build G1 Andylooney\n\n32) Uglyfoot: Build R2 Clampett\n\n33) andylooney: Trade R1 B1 Andylooney\n\n34) Uglyfoot: Move R2 Clampett Greendome\n\n35) andylooney: Discover Y1 Greendome B1 Bomber\n\n36) Uglyfoot: Build Y1 Centauri\n\n37) andylooney: Sacrifice G3 Andylooney\nBuild G3 Andylooney\nBuild Y2 Bomber\nBuild B2 Andylooney\n\n38) Uglyfoot: Build R1 Clampett\n\n39) andylooney: Sacrifice G2 Thurston\nBuild Y3 Garden\nBuild R3 Andylooney\n\n40) Uglyfoot: Sacrifice Y2 Centauri\nMove R1 Clampett Andylooney\nMove R2 Clampett Andylooney\nCatastrophe Andylooney Red\n\n41) andylooney: Trade Y1 R1 Bomber\n\n42) Uglyfoot: Build G2 Clampett\n\n43) andylooney: Move B2 Andylooney Garden\n\n44) Uglyfoot: Move G2 Clampett Andylooney\n\n45) andylooney: Sacrifice G3 Andylooney\nBuild G3 Bigred\nBuild B3 Andylooney\nBuild R2 Bomber\n\n46) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack B1 Andylooney\n\n47) andylooney: Trade B3 R3 Andylooney\n\n48) Uglyfoot: Sacrifice G2 Clampett\nBuild B3 Andylooney\nBuild B3 Andylooney\nCatastrophe Andylooney B\n\n49) andylooney: Attack G2S Andylooney\n\n50) Uglyfoot: Build G2 Centauri\n\tandylooney: Nice job! (But now I must promise revenge...)\n\n51) andylooney: Discover G2 Andylooney Y3 Thurston\n\n52) Uglyfoot: Build R1 Greendome\n\n53) andylooney: Sacrifice G3 Bigred\nBuild G3 Bigred\nBuild R2 Bomber\nBuild R3 Andylooney\n\n54) Uglyfoot: Sacrifice Y1 Centauri\nMove R1 Greendome Bomber\nCatastrophe Bomber R\n\n55) andylooney: Move R3 Andylooney Centauri\n\n56) Uglyfoot: Sacrifice G2 Centauri\nBuild R1 Uglyfoot\nBuild R1 Greendome\n\n57) andylooney: Attack G1S Centauri\n\n58) Uglyfoot: Build R2 Greendome\n\n59) andylooney: Sacrifice G3 Bigred\nBuild G2 Centauri\nBuild R2 Centauri\nBuild G3 Andylooney\n\n60) Uglyfoot: Build Y1 Uglyfoot\n\n61) andylooney: Move Y2 Garden Centauri\n\n62) Uglyfoot: Move R1 Uglyfoot Centauri\n\n63) andylooney: Sacrifice Y2 Bomber\nMove R2 Centauri Thurston\nMove R2 Thurston Greendome\nCatastrophe Greendome Red\n\n64) Uglyfoot: Attack G1 Centauri\n\n65) andylooney: Sacrifice G2 Centauri\nBuild Y1 Garden\nBuild Y2 Centauri\n\n66) Uglyfoot: Trade Y3 B3 Uglyfoot\n\n67) andylooney: Sacrifice G3 Andylooney\nBuild G2 Andylooney\nBuild G2 Bigred\nBuild G3 Thurston\n\n68) Uglyfoot: Build R1 Centauri\n\n69) andylooney: Sacrifice R3 Centauri\nAttack R1S Centauri\nAttack R1S Centauri\nAttack G1S Centauri\n\tUglyfoot: hogging all the green? (too)\n\n70) Uglyfoot: Build Y2 Uglyfoot\n\n71) andylooney: Discover G2 Andylooney Y3 Clampett\n\n72) Uglyfoot: Build R2 Uglyfoot\n\n73) andylooney: Build R2 Andylooney\n\n74) Uglyfoot: Move R1 Uglyfoot Centauri\n\n75) andylooney: Attack R1S Centauri\n\n76) Uglyfoot: Move R2 Uglyfoot Centauri\nCatastrophe Centauri R\n\n77) andylooney: Sacrifice Y2 Centauri\nMove G3 Thurston Centauri\nMove G3 Centauri Uglyfoot\n\n78) Uglyfoot: Build Y2 Uglyfoot\n\n79) andylooney: Sacrifice R3 Andylooney\nAttack Y2S Uglyfoot\nAttack Y2S Uglyfoot\nAttack B3S Uglyfoot\n\tUglyfoot: good game!\r\n\n\n\nHomeworlds Online (SDG# 2799)\nStarted: 2006.3.18, Ended: 2006.3.30\nParticipants: ts52 (S), Uglyfoot (N)\nWinner: ts52\n\n1) Uglyfoot: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tts52: Good luck!\n\n4) ts52: Build G1 Ts52\n\n5) Uglyfoot: Discover G1 Uglyfoot B3 Aquarius\n\n6) ts52: Discover G1 Ts52 B2 R2d2\n\tUglyfoot: Thanks. Win or lose, it will be fun.\r\n\n\tts52: Exactly. I'm so glad Aaron set this up. Now I can play so much more Homeworlds.\n\n7) Uglyfoot: Build G1 Aquarius\n\n8) ts52: Build G2 R2d2\n\n9) Uglyfoot: Build G2 Uglyfoot\n\n10) ts52: Trade G1 Y1 R2d2\n\n11) Uglyfoot: Trade G1 R1 Aquarius\n\n12) ts52: Build G1 Ts52\n\n13) Uglyfoot: Build G1 Aquarius\n\n14) ts52: Sacrifice G3 Ts52\nBuild G2 R2d2\nBuild G3 Ts52\nBuild G3 R2d2\n\n15) Uglyfoot: Trade G1 Y1 Aquarius\n\n16) ts52: Trade G2 R2 R2d2\n\n17) Uglyfoot: Build Y2 Aquarius\n\n18) ts52: Discover G2 R2d2 Y3 Sol\n\n19) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Aquarius\nBuild G2 Aquarius\nBuild G3 Uglyfoot\n\n20) ts52: Move G3 R2d2 Aquarius\nCatastrophe Aquarius Green\n\n21) Uglyfoot: Move G2 Uglyfoot Aquarius\n\n22) ts52: Build G1 Sol\n\n23) Uglyfoot: Build G1 Uglyfoot\n\n24) ts52: Move G1 Sol R2d2\n\n25) Uglyfoot: Build G2 Aquarius\n\n26) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Sol\nBuild R1 R2d2\n\n27) Uglyfoot: Trade G1 R1 Uglyfoot\n\n28) ts52: Build Y2 R2d2\n\n29) Uglyfoot: Discover G2 Aquarius R2 Battlestar\n\n30) ts52: Sacrifice Y2 R2d2\nMove G2 Sol Uglyfoot\nMove G3 Sol Uglyfoot\n\n31) Uglyfoot: Attack G3S Uglyfoot\n\n32) ts52: Sacrifice R1 R2d2\nAttack R1 Uglyfoot\n\n33) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n34) ts52: Trade G1 R1 Ts52\n\n35) Uglyfoot: Move Y1 Aquarius Battlestar\n\n36) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R3 Uglyfoot\nBuild R3 Uglyfoot\n\n37) Uglyfoot: Move R1 Aquarius Uglyfoot\nCatastrophe Uglyfoot R\n\n38) ts52: Build G1 Uglyfoot\n\n39) Uglyfoot: Build G1 Uglyfoot\nCatastrophe Uglyfoot G\n\n40) ts52: Build G1 R2d2\n\n41) Uglyfoot: Build Y2 Battlestar\n\n42) ts52: Move G1 R2d2 Ts52\n\n43) Uglyfoot: Trade Y3 G3 Uglyfoot\n\n44) ts52: Move R2 R2d2 Aquarius\n\n45) Uglyfoot: Sacrifice Y2 Battlestar\nMove G2 Aquarius R2d2\nMove Y2 Aquarius Uglyfoot\n\n46) ts52: Build Y2 R2d2\n\n47) Uglyfoot: Build Y2 Battlestar\n\n48) ts52: Sacrifice R1 Ts52\nAttack G2 R2d2\n\n49) Uglyfoot: Build Y3 Battlestar\n\n50) ts52: Sacrifice Y2 R2d2\nMove Y1 R2d2 Aquarius\nMove Y1 Aquarius Battlestar\nCatastrophe Battlestar Yellow\n\n51) Uglyfoot: Build G1 Uglyfoot\n\n52) ts52: Trade G1 Y1 R2d2\n\n53) Uglyfoot: Discover G1 Uglyfoot Y3 Portal\n\n54) ts52: Build G1 R2d2\n\n55) Uglyfoot: Build Y1 Uglyfoot\n\n56) ts52: Build Y2 R2d2\n\n57) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n58) ts52: Move G1 R2d2 Aquarius\n\n59) Uglyfoot: Build G2 Uglyfoot\n\n60) ts52: Build G3 Ts52\n\n61) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Battlestar\nBuild Y1 Uglyfoot\n\n62) ts52: Sacrifice Y2 R2d2\nMove Y1 R2d2 Aquarius\nMove Y1 Aquarius Uglyfoot\nCatastrophe Uglyfoot Yellow\n\n63) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n64) ts52: Build G3 R2d2\n\n65) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove G2 Battlestar Ts52\nMove G2 Uglyfoot Ts52\nMove G1 Portal Uglyfoot\nCatastrophe Ts52 G\n\n66) ts52: Trade G1 Y1 Aquarius\n\n67) Uglyfoot: Build G1 Battlestar\n\n68) ts52: Move R2 Aquarius Uglyfoot\n\n69) Uglyfoot: Build G1 Uglyfoot\n\n70) ts52: Attack R1 Uglyfoot\n\n71) Uglyfoot: Build G2 Uglyfoot\n\n72) ts52: Attack G2 Uglyfoot\n\tUglyfoot: Thank you for the game.\r\n\n\n73) Uglyfoot: Build G2 Uglyfoot\n\n74) ts52: Build G3 R2d2\nCatastrophe Uglyfoot Green\n\n\nHomeworlds Online (SDG# 2909)\nStarted: 2006.3.27, Ended: 2006.4.13\nParticipants: Lexicon (S), Cerulean (N)\nWinner: Lexicon\n\n1) Cerulean: Homeworld G2 B1 Y3\n\n2) Lexicon: Homeworld G1 B3 Y3\n\n3) Cerulean: Build Y1 Cerulean\n\n4) Lexicon: Build Y1 Lexicon\n\n5) Cerulean: Discover Y1 Cerulean G3 Edison\n\n6) Lexicon: Trade Y1 G1 Lexicon\n\n7) Cerulean: Build Y1 Cerulean\n\n8) Lexicon: Build G1 Lexicon\n\n9) Cerulean: Trade Y1 B1 Cerulean\n\n10) Lexicon: Discover G1 Lexicon Y2 Coffee\n\n11) Cerulean: Build Y1 Edison\n\n12) Lexicon: Build G2 Coffee\n\n13) Cerulean: Move B1 Cerulean Edison\n\n14) Lexicon: Build G2 Lexicon\n\n15) Cerulean: Trade Y1 R1 Edison\n\n16) Lexicon: Build G3 Coffee\n\n17) Cerulean: Move R1 Edison Coffee\n\n18) Lexicon: Discover G1 Coffee R3 Tea\n\n19) Cerulean: Move R1 Coffee Edison\n\n20) Lexicon: Trade G2 B2 Lexicon\n\n21) Cerulean: Build Y1 Cerulean\n\n22) Lexicon: Sacrifice G3 Coffee\nBuild G2 Tea\nBuild G3 Lexicon\nBuild G3 Coffee\n\n23) Cerulean: Discover B1 Edison R2 Kennedy\n\n24) Lexicon: Sacrifice Y3 Lexicon\nMove G1 Tea Cerulean\nMove G2 Tea Cerulean\nMove B2 Lexicon Coffee\n\n25) Cerulean: Sacrifice Y1 Edison\nMove B1 Kennedy Lexicon\n\n26) Lexicon: Sacrifice B2 Coffee\nTrade G1 Y1 Cerulean\nTrade G2 Y2 Cerulean\nCatastrophe Cerulean Yellow\n\n\tLexicon: Heh. Good game. ;)\n\nHomeworlds Online (SDG# 2668)\nStarted: 2006.3.30, Ended: 2006.4.19\nParticipants: jeep (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tJesse: Back for another round? Excellent!\n\n2) jeep: Homeworld Y1 B3 G3\n\tjeep: Uh oh, Red in your homeworld...\n\n3) Jesse: Build G1 Jesse\n\tJesse: Well, I saw from my game with sketchwick that it has some interesting properties, so I thought I'd experiment with it a bit.\n\n4) jeep: Build G1 Jeep\n\tjeep: Yeah, Sketch destryed me with it. ;)\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) jeep: Trade G3 Y3 Jeep\n\n7) Jesse: Build G1 Jesse\n\n8) jeep: Build G1 Jeep\n\n9) Jesse: Discover G1 Jesse Y3 Ichi\n\n10) jeep: Discover G1 Jeep B2 Moon\n\n11) Jesse: Build G2 Jesse\n\n12) jeep: Build Y1 Jeep\n\n13) Jesse: Build Y2 Jesse\n\n14) jeep: Move Y1 Jeep Moon\n\n15) Jesse: Trade G2 R2 Jesse\n\n16) jeep: Trade G1 R1 Moon\n\n17) Jesse: Discover Y2 Jesse G3 Ni\n\n18) jeep: Build G1 Jeep\n\n19) Jesse: Build G2 Jesse\n\n20) jeep: Trade G1 R1 Jeep\n\n21) Jesse: Move R2 Jesse Ni\n\n22) jeep: Build R2 Jeep\n\n23) Jesse: Build Y2 Ni\n\tjeep: Sorry for the delay there...\n\n24) jeep: Build G1 Jeep\n\n25) Jesse: Build G2 Ichi\n\n26) jeep: Move R2 Jeep Moon\n\n27) Jesse: Discover G1 Ichi B2 San\n\n28) jeep: Sacrifice G1 Jeep\nBuild Y2 Moon\n\n29) Jesse: Build Y3 Jesse\n\n30) jeep: Trade R2 G2 Moon\n\n31) Jesse: Sacrifice G3 Jesse\nBuild G1 Ichi\nBuild G3 San\nBuild G3 Jesse\n\tjeep: That was a silly mistake last move, eh? Still, I'm getting so far behind in my games against you... Guess, I'm just not seeing it yet.\n\tJesse: It was kind of a silly mistake. It would have been difficult to avoid me getting the y3 anyway, though, since I could sacrifice (or use my factory) for it when the time was right.\n\tJesse: It's also difficult for you to avoid me getting that last g3, since I've been working towards factorying that one up, too. Removing that g2 from the stash makes that possible now.\n\n32) jeep: Build R2 Jeep\n\tJesse: Sometimes, if you want to stop something like that, you need to remove the large piece from the stash by discovering it as a new system marker. I thought you might park your r2 on it, for instance. That would keep me from using it as a ship. Unfortunately, it would also give you some positional problems.\n\tJesse: At this point, I have much better production capacity than you, on account of my factories. On the other hand, you are better positioned to produce red ships. You may be able to make it difficult for me to actually produce anything without it getting clobbered.\n\n33) Jesse: Move Y2 Ni San\n\tjeep: Yeah, I've felt under the gun from the get go. I have a hard time getting a strategy working for me early. I'm probably too hesitant to commit to one. Trying to be too reactive. I'll have to consider it next time.\n\tJesse: It's usually not so much about about committing to a strategy, as keeping your strategy flexible. If you plan for multiple contingencies, you can have a main plan that allows you to not only react to your opponent's plays, but do so to your own benefit. Sometimes it doesn't work out that way, but it will happen more often as you learn common contingencies to plan for, and things to avoid that make your fleet inflexible.\n\n34) jeep: Build R2 Moon\n\tJesse: One danger to watch for right now is that your large defender is the same color as one of your system markers, putting you in danger of losing both at once. Unfortunately, changing it gives you problems, as well.\n\n35) Jesse: Build R3 Ni\n\tjeep: At least I think I learned something new this time...\n\n36) jeep: Sacrifice Y2 Moon\nMove R1 Moon Ni\nMove R2 Moon Ni\nCatastrophe Ni Red\n\n37) Jesse: Build Y2 San\n\tJesse: Did you intend to blast me (catastrophe)? If not, your plan is either too subtle for me to see, or you missed something that will seem pretty obvious in a moment.\n\tjeep: Yes, I intended to catastrophe and missed typing it in...\n\n\tjeep: I'm not thinking it mattered, though. Sure seems like a lost cause.\n\nHomeworlds Online (SDG# 2728)\nStarted: 2006.3.31, Ended: 2006.5.10\nParticipants: jeep (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\tjeep: Our other game is all over but the crying, I think. :(\n\n2) jeep: Homeworld G3 B1 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) jeep: Build Y1 Jeep\n\n5) TwoShort: Build G1 Twoshort\n\n6) jeep: Trade Y3 G3 Jeep\n\n7) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n8) jeep: Discover Y1 Jeep G2 Thumb\n\n9) TwoShort: Trade G1 B1 Twoshort\n\n10) jeep: Build G1 Jeep\n\n11) TwoShort: Build B1 Twoshort\n\n12) jeep: Trade G1 Y1 Jeep\n\n13) TwoShort: Build G1 Twoshort\n\n14) jeep: Sacrifice G3 Jeep\nBuild Y2 Jeep\nBuild Y2 Thumb\nBuild Y2 Thumb\n\n15) TwoShort: Discover B1 Twoshort G3 Grogar\n\tjeep: Somehow, I thought I'd end up with a non-yellow piece too... Wonder how this will turn out now.\n\n16) jeep: Build Y3 Jeep\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B2 Grogar\nBuild B3 Twoshort\n\tTwoShort: Sometimes doing something that seems obviously bad (like letting you monopolize yellow) is secretly brilliant... I wish I thought this was one of those times.\n\n18) jeep: Trade Y3 B3 Jeep\n\n19) TwoShort: Trade B3 Y3 Twoshort\n\n20) jeep: Build Y3 Jeep\n\n21) TwoShort: Move B1 Twoshort Yolonda\n\n22) jeep: Discover B3 Jeep G2 Bellina\n\n23) TwoShort: Build B3 Yolonda\n\n24) jeep: Build B3 Bellina\n\n25) TwoShort: Sacrifice Y3 Twoshort\nMove B2 Grogar Bellina\nMove B1 Grogar Bellina\nMove B3 Yolonda Twoshort\nCatastrophe Bellina Blue\n\n26) jeep: Discover Y2 Jeep B2 Bellina\n\n27) TwoShort: Trade B3 Y3 Twoshort\n\n28) jeep: Trade Y3 B3 Jeep\n\n29) TwoShort: Build B1 Grogar\n\n30) jeep: Build Y3 Jeep\n\n31) TwoShort: Build B3 Yolonda\n\n32) jeep: Trade Y3 R3 Jeep\n\n33) TwoShort: Build B3 Grogar\n\n34) jeep: Build Y3 Jeep\n\n35) TwoShort: Trade B2 R2 Grogar\n\n36) jeep: Move B3 Jeep Thumb\n\n37) TwoShort: Trade B3 G3 Grogar\n\n38) jeep: Trade Y3 B3 Jeep\n\n39) TwoShort: Build G1 Grogar\n\n40) jeep: Build Y3 Jeep\n\n41) TwoShort: Sacrifice G3 Grogar\nBuild G2 Grogar\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n42) jeep: Trade Y3 R3 Jeep\n\tjeep: This is a tough one...\n\n43) TwoShort: Move Y3 Twoshort Grogar\n\n44) jeep: Build Y3 Jeep\n\n45) TwoShort: Trade B3 R3 Yolonda\n\n46) jeep: Discover Y2 Thumb B3 Stage\n\tjeep: Sorry, it's too late and this is too hard of a game for me to make my move tonight. I'll move tomorrow. ;)\n\n47) TwoShort: Sacrifice G3 Twoshort\nBuild R1 Grogar\nBuild R1 Yolonda\nBuild G3 Twoshort\n\n48) jeep: Move R3 Jeep Thumb\n\n49) TwoShort: Move R2 Grogar Bellina\n\n50) jeep: Move Y2 Bellina Stage\n\n51) TwoShort: Move R1 Yolonda Twoshort\n\n52) jeep: Move Y1 Thumb Stage\n\n53) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild R1 Twoshort\nBuild G3 Twoshort\n\n54) jeep: Build R2 Jeep\n\tTwoShort: I love these simple, straight-forward games, without too many peices in play all at once...\n\tjeep: Me too... I mean it must be simple, right? Only two pyramids in the stash, how many options can there be?\n\tjeep: Yeah, this is a thinker. I'll have to set it up, I think. It's hard to keep scrolling.\n\tTwoShort: I've taken to copying the tough ones into MSPaint and pushing them around there...\n\tjeep: You have more numbers and better position. I have more large ships. You have a complete monopoly on G and I have most of Y. Tough game.\n\tjeep: Sorry this is taking so long. Just leting you know I'm thinking about it.\n\n55) TwoShort: Move Y3 Grogar Bellina\n\tjeep: Pshew... again, I'm hoping I didn't screw up.\n\n56) jeep: Move B3 Thumb Stage\n\tTwoShort: Nice to hear you're worried, since I feel like I'm trying to find a way to make a comeback.\n\tTwoShort: Sorry about that, but I just noticed a possibility... gotta take a look through it...\n\tTwoShort: OK, figured out why my idea was dumb, back to plan A\n\n57) TwoShort: Move Y3 Bellina Stage\nCatastrophe Stage Yellow\n\n58) jeep: Trade B3 Y3 Stage\n\n59) TwoShort: Sacrifice B2 Grogar\nTrade R2 Y2 Bellina\nTrade G2 Y2 Grogar\n\n60) jeep: Discover R3 Thumb B3 Stage2\n\tjeep: Sorry... I found a note I wrote and am trying to deciper it. I have lousy hand writing... but it says to do something if you give up the Y3 like that.\n\n61) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Grogar\nBuild G2 Grogar\nBuild G3 Twoshort\n\n62) jeep: Move B3 Jeep Thumb\n\tTwoShort: "Take it" one assumes :)\r\nI figure I'm better off with two two pointers in this case, and my green advantage only helps if there is stuff in the stash... But your now 5-2 advantage in 3 pointers is not very pleasing to me.\n\tjeep: I'm beginning to regret not blowing up Y in your homeworld now. Seemed like I wanted to hold the near monopoly, though... NOW it doesn't seem that way...\n\tjeep: You do have a 13-8 advantage in ships... and a factory going. So I'm not feeling like my 5-2 (effectively 5-3) advantage in 3-pointers is that huge.\n\n63) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B2 Yolonda\nBuild R2 Yolonda\n\tTwoShort: Oh, I'll agree that this game is reasonably even; which is interesting to me since my usual rule is that 3-pointers and yellow are what matters. You have, of course, found a way to prevent my recovering the B3, which was my next plan.\n\tTwoShort: Push my strength I guess...\n\n64) jeep: Move B3 Thumb Grogar\n\n65) TwoShort: Sacrifice Y2 Grogar\nMove B1 Grogar Thumb\nMove R3 Yolonda Thumb\n\n66) jeep: Sacrifice Y2 Thumb\nMove B3 Grogar Bellina\nMove B3 Bellina Yolonda\n\n67) TwoShort: Sacrifice B1 Thumb\nTrade G1 B1 Yolonda\nCatastrophe Yolonda Blue\n\tTwoShort: Sorry to take so long; definitely a tough game. \n\n68) jeep: Trade Y1 G1 Jeep\n\tjeep: I don't begrudge you all the time you need. Feel free to take it. This one is getting real thinky. ;)\n\n69) TwoShort: Discover G1 Grogar Y2 Yak\n\tTwoShort: No choice on this one\n\n70) jeep: Discover G1 Jeep Y2 Mover\n\n71) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild R2 Thumb\nBuild Y1 Bellina\n\n72) jeep: Trade R2 B2 Jeep\n\n73) TwoShort: Trade R1 B1 Twoshort\n\n74) jeep: Build R1 Jeep\n\n75) TwoShort: Move B1 Twoshort Grogar\n\n76) jeep: Move R1 Jeep Mover\n\n77) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B1 Grogar\nBuild R2 Grogar\n\n78) jeep: Move B2 Jeep Mover\n\n79) TwoShort: Sacrifice Y2 Bellina\nMove R2 Yolonda Mover\nMove B1 Grogar Mover\n\n80) jeep: Attack R2N Mover\n\n81) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild B3 Mover\nBuild G3 Twoshort\n\tjeep: Not sure if you saw my post in the forum... I have company until Wednesday, so will be slow. This game is likely the one hit hardest. I feel like I'm on the downward spiral onw, though. :(\n\tTwoShort: Don't worry about being slow; I understand there's more to life than homeworlds. I am now feeling pretty good about this game; as strategies go, "Take all the peices" seems not so bad :)\n\n82) jeep: Sacrifice Y3 Stage\nDiscover G1 Mover Y3 Saver\nMove B2 Mover Stage2\nDiscover R2 Mover B3 Sigh\n\n83) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Yak\nBuild Y3 Bellina\n\n84) jeep: Sacrifice G1 Saver\nBuild Y3 Jeep\n\tjeep: I knew there was some reason I should have taken them both... \n\n85) TwoShort: Sacrifice Y2 Grogar\nMove G1 Yak Jeep\nMove G2 Yak Jeep\n\tTwoShort: To take them both you had to sacrifice an r3 I could then grow... not much better\n\n86) jeep: Sacrifice R2 Sigh\nAttack G2N Jeep\nAttack G1N Jeep\n\n87) TwoShort: Sacrifice Y3 Bellina\nMove G2 Grogar Bellina\nMove G2 Bellina Jeep\nMove Y1 Bellina Jeep\nCatastrophe Jeep Green\n\n88) jeep: Sacrifice B2 Stage2\nTrade Y3 G3 Jeep\nTrade R3 Y3 Stage2\n\n89) TwoShort: Trade G3 Y3 Twoshort\n\tjeep: I think I was in command when I could have destroyed one of your stars, my hesitation probably cost me the game. :(\n\n90) jeep: Attack Y1N Jeep\n\tTwoShort: I know I was feeling pretty backed into a corner when you had almost all the yellow and more 3-pointers; classically the things that matter. But having a factory going when you didn't was sure nice; whatever sacrifices, catastrophes etc. I felt threatened by, I could just make sure I'd be able to mop up the peices afterwards. Anyway, it was quite interesting and challenging. Thanks for a good game!\n\n91) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Mover Jeep\nMove B1 Mover Jeep\nMove B1 Grogar Jeep\nCatastrophe Jeep Blue\n\n\nHomeworlds Online (SDG# 2980)\nStarted: 2006.4.8, Ended: 2006.5.17\nParticipants: Laurie_Menke (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld Y1 B2 G3\n\n2) Laurie_Menke: Homeworld B3 Y2 G3\n\tLaurie_Menke: Hi, Andy! I'd wish you good luck, but I'm pretty sure I'm the one that needs it. ;o)\n\n3) andylooney: Build G1 Andylooney\n\tandylooney: Hello! Good luck!\r\n\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) andylooney: Discover G1 Andylooney Y3 Howell3\n\n6) Laurie_Menke: Discover G1 Laurie_menke B1 Paintshop\n\n7) andylooney: Build G1 Howell3\n\n8) Laurie_Menke: Build G2 Paintshop\n\n9) andylooney: Build G2 Andylooney\n\n10) Laurie_Menke: Trade G1 Y1 Paintshop\n\n11) andylooney: Trade G2 Y2 Andylooney\n\n12) Laurie_Menke: Build Y1 Paintshop\n\n13) andylooney: Discover Y2 Andylooney G3 Paradise\n\n14) Laurie_Menke: Discover G2 Paintshop Y3 Luella\n\n15) andylooney: Discover G1 Howell3 B1 Bomber\n\n16) Laurie_Menke: Discover Y1 Paintshop Y3 Sharon\n\n17) andylooney: Build Y2 Paradise\n\n18) Laurie_Menke: Build G1 Laurie_menke\n\n19) andylooney: Build G2 Andylooney\n\n20) Laurie_Menke: Move Y1 Sharon Bomber\n\n21) andylooney: Trade G3 Y3 Andylooney\n\n22) Laurie_Menke: Trade Y1 R1 Bomber\n\n23) andylooney: Discover G2 Andylooney G3 Jolly\n\n24) Laurie_Menke: Attack G1 Bomber\n\tLaurie_Menke: LOL...good name. :o)\n\n25) andylooney: Build G2 Howell3\n\n26) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild R1 Bomber\nBuild Y1 Paintshop\n\n27) andylooney: Discover G1 Howell3 B1 Bird\n\n28) Laurie_Menke: Sacrifice Y1 Paintshop\nMove R1 Bomber Luella\n\tLaurie_Menke: The Blue Bird of happiness? :o)\n\n29) andylooney: Move Y2 Paradise Andylooney\n\n30) Laurie_Menke: Move R1 Luella Bird\n\tandylooney: You could say that. The Blue Bird is also one of my favorite Amsterdam Coffeeshops...\n\tLaurie_Menke: Well, then I guess it definitely *is* the Blue Bird of happiness for you! :o)\n\tLaurie_Menke: Sorry about taking it over, then... :o(\n\n31) andylooney: Sacrifice Y3 Andylooney\nMove G2 Howell3 Bird\nMove G1 Bird Laurie_menke\nMove G2 Bird Laurie_menke\nCatastrophe Laurie_menke Green\n\tandylooney: Here's the thing that's really funny about that... Russell and I played a particularly memorable game of Homeworlds one night, at the Bluebird...\n\tandylooney: I lost that game, by doing something which has since become nicknamed, in honor of that night, as the Birdbird Mistake. And you just did the exact same thing!\n\tandylooney: Sorry! Better luck next time!\r\n\n\tLaurie_Menke: Wow...that *is* funny! Well, I guess now I can say I've committed a famous mistake...LOL! Thanks for the fun!\n\n\nHomeworlds Online (SDG# 2990)\nStarted: 2006.4.8, Ended: 2006.4.28\nParticipants: Laurie_Menke (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\n2) Laurie_Menke: Homeworld R3 B2 G3\n\n3) Jesse: Build G1 Jesse\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) Jesse: Build G1 Jesse\n\tLaurie_Menke: That's a very cool trophy in your Trophy Case, Jesse! :o)\n\n8) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\tJesse: Hmm? What trophy case?\n\tLaurie_Menke: Go to your home page. Above the list of games are three links: Games History, Highlight Leaderboard, and Trophy Case...take a look! (It's new.) :o)\n\n9) Jesse: Trade G1 R1 Jesse\n\tJesse: Huh. Nifty!\n\n10) Laurie_Menke: Discover G1 Laurie_menke Y1 Luella\n\tLaurie_Menke: :o)\n\n11) Jesse: Build G1 Jesse\n\n12) Laurie_Menke: Build Y2 Laurie_menke\n\n13) Jesse: Build Y2 Jesse\n\n14) Laurie_Menke: Build G1 Luella\n\n15) Jesse: Discover Y2 Jesse G3 Makemonkeyfast\n\n16) Laurie_Menke: Discover Y2 Laurie_menke B1 Paintshop\n\n17) Jesse: Discover G1 Jesse Y3 Nomonkeydown\n\n18) Laurie_Menke: Build Y2 Laurie_menke\n\tLaurie_Menke: LOL...what's next? "MonkeyDoesn'tGrowOnTrees"? ;o)\n\n19) Jesse: Sacrifice G3 Jesse\nBuild Y3 Jesse\nBuild Y3 Makemonkeyfast\nBuild G2 Nomonkeydown\n\tJesse: Don't be silly. Of course monkey grows on trees! Also, there's a pathetic 15 character limit, which I discovered when I tried "DoubleYourMonkey". Very sad.\n\n20) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove G1 Luella Nomonkeydown\nMove G1 Luella Nomonkeydown\nCatastrophe Nomonkeydown G\n\tLaurie_Menke: ::sigh:: Alas. :o/\n\tLaurie_Menke: BTW...where can I get me one of those trees? I've been doing this all wrong! ;o)\n\n21) Jesse: Trade Y3 G3 Jesse\n\tJesse: That's a tough one. I think they're very hard to import, these days, on account of very strict quarantine requirements. You might have more luck if you move to India.\n\n22) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: :o)\n\n23) Jesse: Move Y2 Makemonkeyfast Paintshop\n\n24) Laurie_Menke: Trade Y2 R2 Paintshop\n\n25) Jesse: Sacrifice R1 Jesse\nAttack R2 Paintshop\n\n26) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tJesse: This is why it's best not to wait too long to get into red after your opponent does.\n\tLaurie_Menke: Ack! I forget about the darn sacrificing thing every time! Grr....\n\n27) Jesse: Build G1 Jesse\n\n28) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Actually, that last move was probably stupid, too. I think my r3 star would have allowed my little 1's to attack your 2 if you came to my homeworld anyway, right? ::sigh::\n\n29) Jesse: Discover G1 Jesse Y3 Colorofmonkey\n\tJesse: Yup. You don't want to do any of the things you could do with that R3, either: You'll be blasted if you build a new red ship, and you'll leave your homeworld undefended if you move it out or sacrifice it (even if you had a target worth sacrificing it for).\n\n30) Laurie_Menke: Discover G1 Laurie_menke Y1 Gettinoutadodge\n\tLaurie_Menke: Yep...I've screwed this up pretty royally. :o( But I'm going to do my best to try to salvage the situation....\n\n31) Jesse: Build G2 Jesse\n\n32) Laurie_Menke: Build G2 Gettinoutadodge\n\n33) Jesse: Sacrifice G3 Jesse\nBuild G2 Jesse\nBuild G3 Jesse\nBuild G3 Colorofmonkey\n\n34) Laurie_Menke: Sacrifice G2 Gettinoutadodge\nBuild G2 Laurie_menke\nBuild Y2 Laurie_menke\n\n35) Jesse: Sacrifice G2 Jesse\nBuild Y2 Paintshop\nBuild Y3 Jesse\n\tJesse: Gettin back inta Dodge, then?\n\n36) Laurie_Menke: Trade Y2 B2 Laurie_menke\n\tLaurie_Menke: LOL...I guess so. ;o)\n\n37) Jesse: Move G1 Colorofmonkey Paintshop\n\n38) Laurie_Menke: Build G2 Gettinoutadodge\n\n39) Jesse: Sacrifice G3 Colorofmonkey\nBuild G3 Paintshop\nBuild Y2 Makemonkeyfast\nBuild Y3 Jesse\n\n40) Laurie_Menke: Move B2 Laurie_menke Gettinoutadodge\n\n41) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R1 Paintshop\nBuild R1 Paintshop\n\n42) Laurie_Menke: Move R3 Laurie_menke Paintshop\n\n43) Jesse: Sacrifice Y3 Jesse\nMove G3 Paintshop Laurie_menke\nMove G1 Paintshop Laurie_menke\nMove Y2 Paintshop Laurie_menke\nCatastrophe Paintshop R\nCatastrophe Laurie_menke G\n\n44) Laurie_Menke: Build B1 Gettinoutadodge\n\tJesse: Coming up on the end, here...\n\tLaurie_Menke: Now that wasn't how that was supposed to happen! ;o) Well, it was fun while it lasted. I still have not figured out the strategy to this game....obviously. LOL! But thanks for the fun and the challenge! :o)\n\n45) Jesse: Attack Y1 Laurie_menke\n\tJesse: I'm glad you enjoyed it, and I hope maybe you've picked up a thing or two for the future while you were at it. Thanks for the game!\n\n\nHomeworlds Online (SDG# 3081)\nStarted: 2006.4.11, Ended: 2007.1.8\nParticipants: andylooney (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tJesse: Up for another go, Andy?\n\n2) andylooney: Homeworld B3 R2 G3\n\tandylooney: (tremble, tremble...) Sure!\n\n3) Jesse: Build G1 Jesse\n\tJesse: My winning streak has been broken. I'm vulnerable to loss now. ;)\n\n4) andylooney: Build G1 Andylooney\n\n5) Jesse: Trade G3 Y3 Jesse\n\n6) andylooney: Trade G3 Y3 Andylooney\n\tJesse: Have you played red-blue homeworlds much, Andy? I had pretty much dismissed all homeworlds with red, but I saw in the game I played against sketchwick that they have some interesting properties, such as the freedom to choose dynamically whether to guard it with a y3 or g3.\n\tandylooney: Not lately. For a long time now, my standard opening was always B1 G2 Y3 (or B3 G2 Y3 if the other guy takes a 1-2 system) but more recently I've been wanted to experiment with other options again and red in the system has late game advances...\n\n7) Jesse: Build Y1 Jesse\n\n8) andylooney: Build Y1 Andylooney\n\n9) Jesse: Discover Y1 Jesse G3 Marmalade\n\n10) andylooney: Discover Y1 Andylooney G1 Emerald\n\n11) Jesse: Build G2 Jesse\n\n12) andylooney: Build G2 Andylooney\n\n13) Jesse: Discover G2 Jesse B3 Butter\n\n14) andylooney: Discover G2 Andylooney B1 Sapphire\n\n15) Jesse: Build Y1 Jesse\n\n16) andylooney: Build Y2 Emerald\n\n17) Jesse: Trade Y1 R1 Jesse\n\n18) andylooney: Trade G1 R1 Andylooney\n\n19) Jesse: Build G1 Butter\n\n20) andylooney: Discover Y1 Emerald G3 Jade\n\n21) Jesse: Build R2 Jesse\n\n22) andylooney: Move R1 Andylooney Emerald\n\n23) Jesse: Move R2 Jesse Marmalade\n\n24) andylooney: Trade Y3 G3 Andylooney\n\tJesse: I know you're busy getting ready for Origins, so feel free to move this game waaaaaay onto the back burner.\n\n25) Jesse: Build G2 Jesse\n\tJesse: Welcome back. Now, to refamiliarize myself with this game...\n\n26) andylooney: Build Y1 Emerald\n\tandylooney: Very sorry to have been away so long, but now that we're done with the summer trade shows, I'll hopefully be able to get back on top of this.\n\tandylooney: Man, this sucks! How did I get into this awful situation?\n\n27) Jesse: Build Y2 Marmalade\n\n28) andylooney: Discover Y1 Emerald B3 Topaz\n\n29) Jesse: Discover Y2 Marmalade B1 Nutella\n\n\nHomeworlds Online (SDG# 3079)\nVariants: "Unrated, Sinister"\nStarted: 2006.4.17, Ended: 2006.5.22\nParticipants: Kermit (S), Cerulean (W), istari (N), xoet (E)\nWinner: istari\n\n1) istari: Homeworld B1 G2 Y3\n\tistari: OK. It's been awhile since I played. How do I write up the command to set up my homeworld.\n\n2) xoet: Homeworld B2 Y1 G3\n\tistari: OK finally figured it out.\n\n3) Kermit: Homeworld B2 Y3 G3\n\n4) Cerulean: Homeworld B1 Y3 G3\n\n5) istari: Build Y1 Istari\n\n6) xoet: Build G1 Xoet\n\n7) Kermit: Build G1 Kermit\n\n8) Cerulean: Build G1 Cerulean\n\n9) istari: Trade Y1 G1 Istari\n\n10) xoet: Trade G1 B1 Xoet\n\n11) Kermit: Build G1 Kermit\n\n12) Cerulean: Discover G1 Cerulean Y2 Castillo\n\n13) istari: Build Y1 Istari\n\n14) xoet: Build G1 Xoet\n\n15) Kermit: Trade G1 Y1 Kermit\n\n16) Cerulean: Discover G1 Castillo B3 Matanzas\n\n17) istari: Trade Y1 R1 Istari\n\n18) xoet: Build B1 Xoet\n\n19) Kermit: Discover G1 Kermit Y1 Gorn\n\n20) Cerulean: Trade G1 Y1 Matanzas\n\n21) istari: Move G1 Istari Matanzas\n\n22) xoet: Move B1 Xoet Matanzas\n\n23) Kermit: Build G1 Kermit\n\n24) Cerulean: Discover Y1 Matanzas G2 Caroline\n\n25) istari: Build R1 Istari\n\n26) xoet: Trade B1 Y1 Matanzas\n\n27) Kermit: Trade G1 B1 Kermit\n\n28) Cerulean: Build Y2 Caroline\n\n29) istari: Build Y2 Istari\n\n30) xoet: Move G1 Xoet Matanzas\n\n31) Kermit: Move B1 Kermit Gorn\n\n32) Cerulean: Build G1 Cerulean\n\n33) istari: Move Y2 Istari Matanzas\n\n34) xoet: Build B1 Xoet\n\n35) Kermit: Build B2 Gorn\n\n36) Cerulean: Trade G1 R1 Cerulean\n\n37) istari: Build Y2 Istari\n\n38) xoet: Build Y2 Matanzas\n\n39) Kermit: Trade B2 R2 Gorn\n\n40) Cerulean: Build G1 Cerulean\n\n41) istari: Sacrifice Y2 Istari\nMove Y2 Matanzas Xoet\nMove G1 Matanzas Xoet\n\n42) xoet: Trade B1 R1 Xoet\n\n43) Kermit: Build B1 Gorn\n\n44) Cerulean: Discover Y2 Caroline B3 Frederica\n\n45) istari: Sacrifice R1 Istari\nAttack R1E Xoet\n\n46) xoet: Build B2 Xoet\n\n47) Kermit: Move B1 Gorn Caroline\n\n48) Cerulean: Move G1 Cerulean Caroline\n\n49) istari: Attack B2E Xoet\n\n50) xoet: Build B2 Xoet\n\n51) Kermit: Sacrifice R2 Gorn\nAttack G1W Caroline\nAttack Y1W Caroline\n\n52) Cerulean: Build R1 Cerulean\n\n53) istari: Build Y2 Xoet\nCatastrophe Xoet B\n\n54) xoet: Move Y2 Matanzas Xoet\n\n55) Kermit: Build Y2 Caroline\n\n56) Cerulean: Build G1 Cerulean\n\n57) istari: Build Y3 Xoet\nCatastrophe Xoet Y\n\txoet: OK this stuff is just a little too abstract for me :)\n\n\tistari: Thanks for the game\n\nHomeworlds Online (SDG# 3086)\nStarted: 2006.4.19, Ended: 2006.6.21\nParticipants: jeep (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tJesse: Hello again.\n\n2) jeep: Homeworld B3 Y1 G3\n\tjeep: Howdy. ;)\n\n3) Jesse: Build G1 Jesse\n\n4) jeep: Build G1 Jeep\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) jeep: Trade G1 R1 Jeep\n\n7) Jesse: Build G1 Jesse\n\n8) jeep: Build R1 Jeep\n\n9) Jesse: Build Y1 Jesse\n\n10) jeep: Build R2 Jeep\n\n11) Jesse: Build Y2 Jesse\n\n12) jeep: Trade R2 Y2 Jeep\n\n13) Jesse: Trade Y2 R2 Jesse\n\n14) jeep: Discover R1 Jeep G2 Hana\n\n15) Jesse: Discover Y1 Jesse G3 Noggin\n\n16) jeep: Build R2 Hana\n\n17) Jesse: Build Y2 Noggin\n\n18) jeep: Move Y2 Jeep Hana\n\n19) Jesse: Discover Y1 Noggin B2 Kneecaps\n\n20) jeep: Sacrifice G3 Jeep\nBuild R2 Hana\nBuild R3 Jeep\nBuild R3 Jeep\n\n21) Jesse: Sacrifice G3 Jesse\nBuild Y2 Noggin\nBuild Y3 Jesse\nBuild Y3 Kneecaps\n\n22) jeep: Build Y3 Hana\n\n23) Jesse: Trade Y3 R3 Kneecaps\n\n24) jeep: Trade R3 G3 Jeep\n\n25) Jesse: Trade Y3 G3 Jesse\n\n26) jeep: Discover R2 Hana Y3 Dul\n\n27) Jesse: Sacrifice G3 Jesse\nBuild G1 Jesse\nBuild R3 Kneecaps\nBuild Y3 Jesse\n\n28) jeep: Sacrifice Y2 Hana\nMove R1 Jeep Kneecaps\nMove R2 Dul Kneecaps\nCatastrophe Kneecaps R\n\n29) Jesse: Discover Y1 Jesse G3 Trouble\n\n30) jeep: Build G1 Jeep\n\n31) Jesse: Build Y2 Trouble\n\tjeep: OK, so here's what I'd love to see from some of you homeworlds experts... an article on the wiki explaining, in general, what kinds of things you try to do in these situations: 1) you have more big ships (esp if your opp has more ships) 2) you have more ships (esp if your opp has more big ships) I think I may have squandered a lead in my game vs. TwoShort where I had a huge lead in big ships. Now I still have more big ships, but he has a gigantic fleet!\n\tJesse: Having more ships gives you more influence to control the economy. Having more large ships gives you more power to seize and control systems and ships.\n\n32) jeep: Discover R2 Hana Y3 Dul\n\n33) Jesse: Move R2 Jesse Trouble\n\n34) jeep: Build G2 Jeep\n\n35) Jesse: Build G2 Jesse\n\n36) jeep: Sacrifice G3 Jeep\nBuild R1 Dul\nBuild R2 Dul\nBuild G3 Jeep\n\n37) Jesse: Build R3 Trouble\n\n38) jeep: Trade G2 B2 Jeep\n\tjeep: This is the point in the game where I need more experience. ;)\n\n39) Jesse: Discover G1 Jesse R3 Snoopy\n\tjeep: Did I leave you too many good options? ;)\n\n40) jeep: Move R1 Dul Jesse\n\n41) Jesse: Attack R1 Jesse\n\n42) jeep: Sacrifice Y3 Hana\nMove R2 Dul Jesse\nMove R2 Dul Jesse\nMove G1 Jeep Hana\nCatastrophe Jesse R\n\tjeep: I had a plan, but I can't for the life of me see what it was.\n\n43) Jesse: Sacrifice G2 Jesse\nBuild Y3 Jesse\nBuild Y3 Kneecaps\n\n44) jeep: Build B1 Jeep\n\tjeep: I think I need to play more aggressively, but I still worry every time I do.\n\n45) Jesse: Move R3 Trouble Jesse\n\n46) jeep: Move B2 Jeep Kneecaps\n\n47) Jesse: Sacrifice R2 Trouble\nAttack B2 Kneecaps\nPass\n\tjeep: This is a thinker.\n\tJesse: Aye. Take your time.\n\n48) jeep: Build G2 Jeep\n\tjeep: I'm not sure I have a chance here.\n\n49) Jesse: Build G2 Jesse\n\n50) jeep: Move B1 Jeep Kneecaps\n\n51) Jesse: Sacrifice Y3 Kneecaps\nDiscover G2 Jesse Y3 Storage\nMove Y1 Kneecaps Snoopy\nMove B2 Kneecaps Snoopy\n\n52) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild R1 Jeep\nBuild R1 Hana\n\n53) Jesse: Build B1 Snoopy\n\n54) jeep: Trade R1 B1 Jeep\n\n55) Jesse: Build B3 Snoopy\n\tJesse: Okay, here's how I see this playing out. The only place you can approach me is from your homeworld to mine, and only one ship at a time. If you send green ships, I'll take them one by one, and it doesn't matter much if you cause a catastrophe. (In fact, it benefits me.) If you send red ships, I capture them one by one. If necessary, I will sacrifice a red ship when doing so, to ensure that you can never cause a red catastrophe. You have no yellow ships, so as long as I don't trade or sacrifice yellow, that's no worry. If you send a blue ship, I capture it. If you create another, I can move a blue ship out of my system to ensure you can't cause a catastrophe. You cannot affort to have two blue ships in your home system at the same time, or I sac a y2 to blast your blue marker. You don't have time to snatch that yellow piece and make use of it, because it only takes two turns to sac my y3s and put 3 yellow ships in your home system. So, I'm safe.\n\tJesse: That just leaves the question of how to win, without giving up that position. First of all, I need enough blues to destroy your blue marker. That's easy. Second, I need to position my ships so I can hit you with a bunch of yellow and a bunch of blue in quick succession. The easiest launch point is my own homeworld, since I know it to be safe. I can't build up blues there, so I'll have to send them in two waves from farther out. That means I should mass my smaller yellows there, while moving the y3s out to my large systems. I can turn Storage into a ship, then sac it and my other two y3s to blast you in three waves.\n\tJesse: I do need to exercise some caution that you can't grab the first y3 and smash me in one blow after my second wave, but I believe that's covered by you not being able to put three blues all one step from my homeworld.\n\tjeep: Nod, it's looked futile to me for a while. I'm interested in seeing this end game though.\n\n56) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild R1 Hana\nBuild R2 Jeep\n\tJesse: Fine by me.\n\n57) Jesse: Sacrifice G2 Storage\nBuild G2 Jesse\nBuild Y3 Jesse\n\n58) jeep: Sacrifice B1 Jeep\nTrade G3 B3 Jeep\n\n59) Jesse: Sacrifice Y2 Noggin\nMove B3 Snoopy Jesse\nMove B3 Jesse Jeep\n\n60) jeep: Attack B3N Jeep\n\tJesse: Okay, I think I have all possibilities covered sufficiently to end this quicker than I had outlined before.\n\n61) Jesse: Sacrifice Y2 Trouble\nMove B1 Snoopy Jesse\nMove B1 Jesse Jeep\nCatastrophe Jeep B\n\n\tjeep: I thought I had a small blue at Hana... I don't think there was anything to do anyway.\n\tJesse: Indeed. Thanks for the game. I hope seeing the endgame played out was helpful to you.\n\tjeep: It was, actually. Thanks for being patient with me. ;)\n\tJesse: No problem at all. It actually helped remind me of some things to pay attention to in homeworld assaults. (I usually go for the ships, rather than the system.)\n\nHomeworlds Online (SDG# 3181)\nVariants: "Unrated"\nStarted: 2006.4.20, Ended: 2006.4.29\nParticipants: cdiffell (S), Aaron (N)\nWinner: Aaron\n\n1) Aaron: Homeworld B1 Y2 G3\n\tcdiffell: I feel bad forcing you to teach me 3 different games...but I guess I have to learn for the tournament. Hope it's OK. Caleb\n\tAaron: It doesn't bother me at all!! This is another toughie. Make sure you've read the rules and the wiki thoroughly. Trust the systems warnings regarding the best Homeworld setup when it's your turn, and don't hesitate to ask any questions!!\n\n2) cdiffell: Homeworld B3 Y1 G3\n\tAaron: Remember that it is not wise to create a homeworld with the same star sizes as your opponent. I can't remember if the system warns you of that or not =)\n\tcdiffell: I read through the rules today, but I will re-read tonight or tomorrow and probably not make my first move till lunch time\n\tAaron: Take your time. I'm in no hurry.\n\tcdiffell: How do I build a homeworld with a different size than yours? There are only 3 sizes, and you've used 2 of them, so by definition I have to double up one of them when I build my homeworld.\n\tcdiffell: OK, I looked at another game of this and will just sort of mimic those starting moves at first.\n\n3) Aaron: Build G1 Aaron\n\tAaron: I mean the exact same sizes. If we both had starts sized 1 and 2 then I'm only 2 moves away from your Homeworld. By using 1 and 3, I'm now at least 3 moves away. Safety first! =)\n\tAaron: This game is all about resource management. You want to manage the global stash to minimize the number of ships I can own.\n\n4) cdiffell: Build G1 Cdiffell\n\n5) Aaron: Trade G1 Y1 Aaron\n\n6) cdiffell: Trade G1 Y1 Cdiffell\n\tAaron: Here's an example. If you choose to take that last small Yellow, then I have access to size-2 yellows. This is sometimes unavoidable, but something you want to be aware of at least.\n\tcdiffell: Why would you take a green and then trade to a yellow? Doesn't that waste a turn? Your green 3 ship supported a build action for a yellow ship, right?\n\tAaron: no, you can only build a ship of certain colour that you currently control in the system. *Now* I can freely build yellows.\n\tcdiffell: OK, I see.\n\n7) Aaron: Build Y2 Aaron\n\n8) cdiffell: Discover Y1 Cdiffell G2 Cdiffell2\n\tcdiffell: Question: if I create a new system that's a "3", are you prohibited from moving directly there due to your system being a "3" in total?\n\tAaron: no, only if one of the individual stars is a 3\n\tcdiffell: ...so I should build a 1 or 2 size system; I guess probably a 2 so I can move back/forth from my home system but you cannot, right?\n\tAaron: You will only be able to build a 2 right now as your system contains a 1 and a 3. I can only discover a 3.\n\n9) Aaron: Discover Y2 Aaron G3 Emeralds\n\n10) cdiffell: Build G1 Cdiffell\n\n11) Aaron: Build Y2 Emeralds\n\n12) cdiffell: Build Y3 Cdiffell2\n\n13) Aaron: Move Y2 Emeralds Cdiffell2\n\n14) cdiffell: Trade G1 B1 Cdiffell\n\n15) Aaron: Build Y3 Cdiffell2\nCatastrophe Cdiffell2 Yellow\n\tcdiffell: About having time - I did the grad school thing while working full-time; it definitely doesn't leave much time for other stuff. I'm just glad I got it finished before my daughter came along...\n\n16) cdiffell: Build G1 Cdiffell\n\n17) Aaron: Build G1 Aaron\n\n18) cdiffell: Discover G1 Cdiffell B2 Cdiffell3\n\n19) Aaron: Trade G1 R1 Aaron\n\n20) cdiffell: Move B1 Cdiffell Cdiffell3\n\n21) Aaron: Build R1 Aaron\n\n22) cdiffell: Build G1 Cdiffell\n\n23) Aaron: Trade R1 B1 Aaron\n\n24) cdiffell: Build B2 Cdiffell3\n\n25) Aaron: Sacrifice Y2 Emeralds\nDiscover B1 Aaron G3 Emeralds\nMove B1 Emeralds Cdiffell3\nCatastrophe Cdiffell3 Blue\n\n26) cdiffell: Trade G1 R1 Cdiffell\n\tcdiffell: I don't remember what the system looked like - did mine disappear due to having 4 blue items in it?\n\tAaron: I moved a blue in there creating 4 and I called a catastrophe, yes.\n\n27) Aaron: Build G1 Aaron\n\n28) cdiffell: Discover R1 Cdiffell Y2 Cdiffell4\n\n29) Aaron: Discover G1 Aaron B3 Sky\n\tcdiffell: <sigh> My systems seem to last a depressingly short time in Known Space.\n\tAaron: =D That's not uncommon. You just have to always watch for that magic number 4.\n\n30) cdiffell: Build G1 Cdiffell\n\n31) Aaron: Build G1 Sky\n\n32) cdiffell: Move G1 Cdiffell Cdiffell4\n\n33) Aaron: Trade G1 Y1 Sky\n\n34) cdiffell: Move R1 Cdiffell4 Sky\n\n35) Aaron: Sacrifice R1 Aaron\nAttack R1 Sky\n\n36) cdiffell: Build G1 Cdiffell\n\tcdiffell: ah, so you can use a ship in one system to capture another? Hmm. didn't realize that.\n\n37) Aaron: Move R1 Sky Cdiffell4\n\tAaron: Once you sacrifice a ship, you can use its power in *any* system in which you have influence. Very powerful tactic.\n\n38) cdiffell: Build G2 Cdiffell\n\tcdiffell: "Influence" defined as the presence of your ship(s) there. I see.\n\tAaron: exactly. Technically you could, for example, sacrifice your g1 in CDIFFELL and build a green in CDIFFELL4.\n\n39) Aaron: Attack G1 Cdiffell4\n\n40) cdiffell: Trade G2 R2 Cdiffell\n\n41) Aaron: Build Y2 Sky\n\n42) cdiffell: Move R2 Cdiffell Cdiffell4\n\n43) Aaron: Move G1 Cdiffell4 Cdiffell\n\n44) cdiffell: Move R2 Cdiffell4 Sky\n\n45) Aaron: Build G2 Cdiffell\nCatastrophe Cdiffell Green\n\tAaron: Thanks for the game! Wanna try again? Feel free to challenge me anytime.\n\n\nHomeworlds Online (SDG# 3080)\nVariants: "Unrated, Sinister"\nStarted: 2006.4.20, Ended: 2006.5.14\nParticipants: jeep (S), istari (N), Uglyfoot (E)\nWinner: jeep\n\n1) istari: Homeworld G3 B1 Y3\n\n2) Uglyfoot: Homeworld Y1 B2 G3\n\n3) jeep: Homeworld R2 B3 G3\n\n4) istari: Build Y1 Istari\n\n5) Uglyfoot: Build G1 Uglyfoot\n\n6) jeep: Build G1 Jeep\n\tjeep: b g1 jeep\n\n7) istari: Build Y1 Istari\n\tjeep: Some mistakes aren't too bad... ;) Sorry about spamming the chat.\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) jeep: Trade G1 Y1 Jeep\n\n10) istari: Trade Y1 R1 Istari\n\n11) Uglyfoot: Discover G1 Uglyfoot Y3 Slingshot\n\n12) jeep: Build G1 Jeep\n\n13) istari: Discover Y1 Istari G2 Greenie\n\n14) Uglyfoot: Trade G1 B1 Uglyfoot\n\n15) jeep: Trade G1 B1 Jeep\n\tjeep: Aha, I just realized I did have a slight advantage in building my homeworld last, but missed out.\n\n16) istari: Build R1 Istari\n\n17) Uglyfoot: Move B1 Uglyfoot Slingshot\n\n18) jeep: Discover B1 Jeep Y1 Submarine\n\n19) istari: Build Y2 Greenie\n\n20) Uglyfoot: Build G1 Slingshot\n\n21) jeep: Build Y2 Jeep\n\n22) istari: Build Y2 Istari\n\n23) Uglyfoot: Discover G1 Slingshot B1 Commerce\n\n24) jeep: Discover Y2 Jeep G1 Thumb\n\n25) istari: Trade Y2 B2 Istari\n\n26) Uglyfoot: Build G1 Commerce\n\n27) jeep: Build G2 Jeep\n\n28) istari: Move B2 Istari Greenie\n\n29) Uglyfoot: Build G2 Uglyfoot\n\n30) jeep: Build Y2 Thumb\n\n31) istari: Move Y2 Greenie Slingshot\n\n32) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Slingshot\n\n33) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y2 Thumb\nBuild Y3 Jeep\n\n34) istari: Build Y3 Istari\n\n35) Uglyfoot: Trade G3 R3 Uglyfoot\n\n36) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Jeep\nBuild B2 Submarine\n\n37) istari: Move Y2 Slingshot Thumb\nCatastrophe Thumb Y\n\n38) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n39) jeep: Sacrifice B2 Submarine\nTrade G3 R3 Jeep\nTrade G2 B2 Jeep\n\n40) istari: Build Y2 Greenie\n\tjeep: I think this plays better IRL. There is usually some negotiation going on...\n\n41) Uglyfoot: Build B2 Slingshot\n\n42) jeep: Move R3 Jeep Submarine\n\n43) istari: Build B3 Greenie\n\n44) Uglyfoot: Move B2 Slingshot Commerce\n\n45) jeep: Build G1 Jeep\n\n46) istari: Trade Y3 B3 Istari\n\n47) Uglyfoot: Build B3 Slingshot\n\n48) jeep: Move Y1 Jeep Submarine\n\n49) istari: Discover B3 Greenie G3 Greenie2\n\n50) Uglyfoot: Discover B1 Slingshot R1 Battlestar\n\n51) jeep: Move R3 Submarine Greenie\n\n52) istari: Sacrifice B2 Greenie\nTrade Y1 R1 Greenie\nTrade Y2 R2 Greenie\n\n53) Uglyfoot: Trade G3 Y3 Slingshot\n\n54) jeep: Build Y1 Jeep\n\n55) istari: Build B2 Greenie2\n\n56) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove B1 Battlestar Jeep\nMove B2 Commerce Jeep\nCatastrophe Jeep Blue\n\n57) jeep: Move B1 Submarine Jeep\n\n58) istari: Build R1 Greenie\nCatastrophe Greenie R\n\n59) Uglyfoot: Sacrifice Y3 Slingshot\nMove G1 Commerce Jeep\nMove G1 Commerce Jeep\nDiscover B3 Slingshot G2 Elliptical\nCatastrophe Jeep Green\n\n60) jeep: Trade Y1 G1 Jeep\n\n61) istari: Trade B2 Y2 Greenie2\n\n62) Uglyfoot: Build G1 Uglyfoot\n\n63) jeep: Build Y1 Jeep\n\n64) istari: Build Y2 Greenie2\n\n65) Uglyfoot: Trade B3 Y3 Elliptical\n\n66) jeep: Build B1 Jeep\n\n67) istari: Trade Y2 R2 Greenie2\n\n68) Uglyfoot: Build Y2 Elliptical\n\n69) jeep: Build G1 Jeep\n\n70) istari: Build R1 Greenie2\n\n71) Uglyfoot: Build G2 Slingshot\n\n72) jeep: Move G1 Jeep Istari\n\n73) istari: Attack G1S Istari\n\n74) Uglyfoot: Move Y3 Elliptical Slingshot\n\n75) jeep: Build G2 Jeep\n\n76) istari: Build G3 Istari\n\n77) Uglyfoot: Build R1 Uglyfoot\n\n78) jeep: Sacrifice Y3 Jeep\nMove B1 Jeep Istari\nMove B1 Jeep Istari\nMove G1 Jeep Istari\nCatastrophe Istari G\nCatastrophe Istari B\n\n\tjeep: Thanks for the game guys. It's pretty weird to have no table talk going... \n\tUglyfoot: Good game guys.\r\n\n\nHomeworlds Online (SDG# 3126)\nStarted: 2006.4.22, Ended: 2007.5.15\nParticipants: andylooney (S), lament (N)\nWinner: andylooney\n\n1) lament: Homeworld G1 B2 Y3\n\n2) andylooney: Homeworld R2 B3 G3\n\tlament: Greetings. I must say I'm rather excited to be playing against the great Andy Looney himself :)\n\tandylooney: Cool, it's always a pleasure to play with a fan!\n\n3) lament: Build Y1 Lament\n\n4) andylooney: Build G1 Andylooney\n\n5) lament: Discover Y1 Lament B3 Rigel\n\n6) andylooney: Trade G3 Y3 Andylooney\n\n7) lament: Build Y1 Lament\n\n8) andylooney: Build G1 Andylooney\n\n\nHomeworlds Online (SDG# 3267)\nStarted: 2006.4.25, Ended: 2006.5.10\nParticipants: lambda (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y2 B1 G3\n\n2) lambda: Homeworld B3 G1 Y3\n\n3) jeep: Build G1 Jeep\n\tjeep: Hello! Good luck.\n\n4) lambda: Build Y1 Lambda\n\tlambda: Hi there! Good luck to you, too. \n\n5) jeep: Build G1 Jeep\n\n6) lambda: Trade Y1 B1 Lambda\n\n7) jeep: Discover G1 Jeep B3 Moon\n\n8) lambda: Build B1 Lambda\n\n9) jeep: Build G2 Jeep\n\n10) lambda: Discover B1 Lambda G2 Rigel\n\n11) jeep: Sacrifice G3 Jeep\nBuild G2 Moon\nBuild G3 Moon\nBuild G3 Jeep\n\n12) lambda: Build B2 Rigel\n\n13) jeep: Discover G2 Jeep Y3 Submarine\n\n14) lambda: Build Y1 Lambda\n\n15) jeep: Trade G3 Y3 Moon\n\n16) lambda: Build B2 Rigel\n\n17) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Submarine\nBuild G3 Moon\n\n\tjeep: You still with us?\n\tjeep: I want to start another game, but it would be too much if this comes back to life too. Looking at your history, it appears you don't finish games once you fall behind. Sorry.\n\tlambda: Sorry about that. I got busy, got behind on SDG, and just stopped playing entirely. I hope to be better about keeping up with SDG this time around.\n\nHomeworlds Online (SDG# 3286)\nStarted: 2006.4.27, Ended: 2006.8.16\nParticipants: andylooney (S), Hedge_o_Matic (N)\nWinner: andylooney\n\n1) Hedge_o_Matic: Homeworld G3 B2 Y3\n\n2) andylooney: Homeworld R2 B1 G3\n\n3) Hedge_o_Matic: Build Y1 Hedge_o_matic\n\tHedge_o_Matic: Huh. That's funny. I did it right the first time.\n\tHedge_o_Matic: Hopefully I'll give you a better game than the last one we played. What a disaster that was!\n\tHedge_o_Matic: Oh, and I'm considering a run on Icehouse pieces to coplete my set before the full stashes go away... I just need Orange, Cyan, Purple and White, and I'll be complete. That, plus my solid brass and steel set I've got a friend milling for me... weight is everything in Icehouse, after all.\n\n4) andylooney: Build G1 Andylooney\n\n5) Hedge_o_Matic: Trade Y1 G1 Hedge_o_matic\n\n6) andylooney: Trade G3 Y3 Andylooney\n\n7) Hedge_o_Matic: Build G1 Hedge_o_matic\n\n8) andylooney: Build G2 Andylooney\n\n9) Hedge_o_Matic: Trade G1 R1 Hedge_o_matic\n\n10) andylooney: Discover G2 Andylooney Y3 Howell\n\n\nHomeworlds Online (SDG# 3287)\nStarted: 2006.4.27, Ended: 2006.6.21\nParticipants: TwoShort (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tJesse: Ready for another go?\n\n2) TwoShort: Homeworld Y3 B2 G3\n\tTwoShort: Certainly... Red homeworld star? A new theory?\n\n3) Jesse: Build G1 Jesse\n\tJesse: To me, yes. Andy had some experience with it, and mentioned vaguely that it has some late-game advantages. I'm not sure what he has in mind, but I noticed when Sketchwick tried it against me, it afforded him some extra flexibility in the early and mid game to choose between yellow and green for his capital ship, and it was always a hindrance to mounting an attack. Also, I figured you were much less likely to do in red what you did in blue last time.\n\n4) TwoShort: Build G1 Twoshort\n\tTwoShort: I've concluded the blue freeze out is the thing to do when the first player uses a blue 1 point star, and a yellow first ship (as Andy always used to); but I don't think it's worth it otherwise. I hadn't thought about the mid-game flexibility oof not having a yellow or green star, but now that you mention it, I can certainly recall being hampered by it.\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Jesse: Build G1 Jesse\n\n8) TwoShort: Build G1 Twoshort\n\n9) Jesse: Build Y1 Jesse\n\n10) TwoShort: Build Y2 Twoshort\n\n11) Jesse: Build Y2 Jesse\n\n12) TwoShort: Discover Y1 Twoshort B1 Bluestar\n\n13) Jesse: Discover Y1 Jesse G3 Purple\n\n14) TwoShort: Discover Y2 Twoshort G1 Grogar\n\n15) Jesse: Discover Y1 Jesse B3 Cranberry\n\n16) TwoShort: Trade Y1 R1 Bluestar\n\n17) Jesse: Build Y1 Purple\n\n18) TwoShort: Build G2 Twoshort\n\tTwoShort: I'm seeing the advantage of that red star... Can't figure out how to counter it at this point though...\n\n19) Jesse: Sacrifice G3 Jesse\nBuild Y2 Jesse\nBuild Y3 Jesse\nBuild Y3 Cranberry\n\n20) TwoShort: Discover G2 Twoshort R1 Rover\n\n21) Jesse: Trade Y2 R2 Jesse\n\n22) TwoShort: Build Y2 Grogar\n\n23) Jesse: Move R2 Jesse Purple\n\n24) TwoShort: Build G2 Rover\n\n25) Jesse: Trade Y3 G3 Cranberry\n\n26) TwoShort: Sacrifice Y2 Grogar\nDiscover G2 Rover Y3 Yolonda\nMove R1 Bluestar Twoshort\n\n27) Jesse: Build G2 Cranberry\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Grogar\nBuild R2 Twoshort\n\n29) Jesse: Sacrifice G3 Cranberry\nBuild G3 Jesse\nBuild R2 Purple\nPass\n\n30) TwoShort: Move R1 Twoshort Grogar\n\n31) Jesse: Discover R2 Purple B1 Chewtoy\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild R3 Twoshort\nBuild R3 Grogar\n\n33) Jesse: Build R3 Purple\n\n34) TwoShort: Sacrifice Y2 Grogar\nMove R3 Grogar Cranberry\nDiscover Y2 Grogar B3 Kick\n\n35) Jesse: Sacrifice Y1 Cranberry\nDiscover G2 Cranberry Y2 Squidger\n\n36) TwoShort: Discover R2 Twoshort Y1 Sweet\n\n37) Jesse: Move G3 Jesse Yolonda\n\n38) TwoShort: Sacrifice G2 Rover\nBuild R1 Cranberry\nBuild G2 Yolonda\n\n39) Jesse: Sacrifice R2 Purple\nAttack G2 Yolonda\nAttack G2 Yolonda\n\n40) TwoShort: Sacrifice Y2 Kick\nDiscover G1 Twoshort B1 Maybeabadidea\nMove G1 Maybeabadidea Yolonda\nCatastrophe Yolonda Green\n\n41) Jesse: Discover G2 Squidger Y3 Squop\n\n42) TwoShort: Discover R2 Sweet B3 Bluestar\n\n43) Jesse: Build R2 Purple\n\n44) TwoShort: Trade R2 Y2 Bluestar\n\n45) Jesse: Move R2 Purple Grogar\n\n46) TwoShort: Trade R3 G3 Cranberry\n\n47) Jesse: Sacrifice G2 Squop\nBuild R2 Grogar\nBuild R3 Chewtoy\n\n48) TwoShort: Trade R1 Y1 Cranberry\n\n49) Jesse: Attack R1 Grogar\n\n50) TwoShort: Sacrifice G3 Cranberry\nBuild Y2 Bluestar\nBuild Y3 Cranberry\nBuild G1 Twoshort\n\n51) Jesse: Move Y2 Jesse Bluestar\n\n52) TwoShort: Sacrifice Y2 Bluestar\nDiscover Y2 Bluestar G2 Retrograde\nMove Y3 Cranberry Grogar\n\n53) Jesse: Build G2 Jesse\n\n54) TwoShort: Build R1 Twoshort\n\n55) Jesse: Trade R3 G3 Chewtoy\n\tTwoShort: Between you and Danner, I feel like I've got a "Monopolize Red" sign on my forehead...\n\tJesse: Wow, it looks like you're royally boned in that one.\n\tJesse: Wow, it looks like you're royally boned in that one.\n\tJesse: Huh. I wonder how that got double-submitted.\n\n56) TwoShort: Move R1 Twoshort Grogar\nCatastrophe Grogar Red\n\n57) Jesse: Sacrifice G2 Jesse\nBuild G2 Chewtoy\nBuild Y2 Bluestar\n\tJesse: Hmm, that was rather a bad case of tunnel-vision.\n\n58) TwoShort: Discover G1 Twoshort B1 Bluto\n\n59) Jesse: Sacrifice G3 Chewtoy\nBuild G2 Jesse\nBuild G3 Chewtoy\nBuild R1 Chewtoy\n\n60) TwoShort: Trade Y1 R1 Cranberry\n\n61) Jesse: Sacrifice G3 Chewtoy\nBuild G3 Chewtoy\nBuild Y1 Jesse\nBuild R2 Purple\n\n62) TwoShort: Move Y2 Retrograde Cranberry\n\n63) Jesse: Move R2 Purple Bluto\n\n64) TwoShort: Sacrifice G1 Bluto\nBuild R2 Cranberry\n\n65) Jesse: Sacrifice G3 Chewtoy\nBuild G1 Chewtoy\nBuild G2 Chewtoy\nBuild R3 Bluto\n\n\tTwoShort: Well done as usual!\n\tJesse: Thanks for another great game.\n\nHomeworlds Online (SDG# 3298)\nStarted: 2006.4.28, Ended: 2006.6.5\nParticipants: babelfish (S), dralius (N)\nWinner: dralius\n\n1) dralius: Homeworld B3 G2 Y3 *\n\tdralius: I am a true novis when it comes to homeworlds. But I do know someone who is not so let's ask for some tutoring.\n\n2) babelfish: Homeworld G3 B1 Y3\n\n3) dralius: Build Y1 Dralius\n\tbabelfish: I hate reading the rules!\n\tdralius: I have asked a friend of mine to advise us but i guess he has not been on in a few days.\r\n\n\n4) babelfish: Build Y1 Babelfish\n\n5) dralius: Trade Y1 R1 Dralius\n\tbabelfish: Well, I guess I'll just keep doing what you do. :)\n\tdralius: That may be ill advised\n\tdralius: in fact i am sure of it.\n\n6) babelfish: Build Y1 Babelfish\n\tdralius: This game is extremely oblique. Everything you need to accomplish requires you to do something else first to prepare for it including preparing for the action you with to take. \n\n7) dralius: Build R1 Dralius\n\n8) babelfish: Trade Y1 R1 Babelfish\n\tbabelfish: You're looking awful hostile.\n\n9) dralius: Discover R1 Dralius G1 Boogie\n\n10) babelfish: Discover Y1 Babelfish G2 Tweety\n\tbabelfish: oh crap, what do i do now?\n\n11) dralius: Build Y1 Dralius\n\n12) babelfish: Build Y1 Babelfish\n\n13) dralius: Trade Y1 B1 Dralius\n\tCDRodeffer: Howdy! Dralius invited me to kibitz here, said it's a teaching game. Is it OK if I offer some suggestions?\n\n14) babelfish: Build Y1 Babelfish\n\tbabelfish: PLEASE DO!!\n\n15) dralius: Move B1 Dralius Boogie\n\tCDRodeffer: Babelfish, you're vulnerable to a yellow catastrophe in your home system and are also in danger of being locked out of the blue economy. Dralius could, in three moves, move his small red ship from Boogie to tweety, attack your small yellow ship there, then move it into your home system to trigger a catastrophe. To prevent it, you might want to either build a medium yellow ship in tweety (to prevent the attack and assure access to medium ships) or trade one of your small yellow ships in babelfish for a small blue ship. Both will buy you time to get into the blue economy, which is important for defense against and, later, for triggering timely catastrophes. But it's Dralius' turn now. You might want to either set up the attack outlined above, or possibly build another small blue ship in Dralius. That would make three blue elements in you home system, but you have tempo now, and babelfish couldn't immediately move in for a catastrophe. To protect your home system, you might then want to trade one of the small blue ships in Dralius for a small green ship to gain access to mobile building technology, especially since green pieces are quickly being depleted. Getting a large green ship and another green ship of any size in the same system (preferably one without a green star) is an investment for the future that will eventually (once the rest of the green pieces are gone) become a "factory", enabling you to build twice as quickly by sacrificing the large green ship, rebuilding the large green ship right where it was, and then building two other ships in any other systems you occupy.\n\tdralius: WOW i could do all that!?!\n\n16) babelfish: Trade Y1 B1 Babelfish\n\n17) dralius: Build R2 Boogie\n\tCDRodeffer: At this point, you both should probably be thinking of building some of those freshly available medium ships. Dralius might be especially interested in getting a medium red ship in Boogie to go after whatever babelfish can get to tweety before Dralius takes it over. I'm sorry, but I don't see any reasonable defense against that now. Moving the large yellow ship from babelfish to tweety would let you keep that system, but it would leave your home system very vulnerable. Alternatively, babelfish could build a medium red ship in babelfish, then move it to tweety on a turn when Dralius has something dire elsewhere to accomplish. This would set up, to borrow from Go, a "ko threat" in tweety.\n\tdralius: I'll take that advice. \r\n\n\n18) babelfish: Build R2 Babelfish\n\n19) dralius: Trade R1 Y1 Boogie\n\n20) babelfish: Move R2 Babelfish Tweety\n\n21) dralius: Discover R2 Boogie Y2 Chacha\n\n22) babelfish: Move R2 Tweety Boogie\n\tCDRodeffer: Babelfish should note that Dralius' R2 in ChaCha is only one step away from the babelfish home world. It's OK for now -- even if he invades, you can attack and take over his R2 before he has a chance to attack any of your ships, and he would be unable to attack your Y3 in any case. However, you probably DON'T want to immediately build another blue or yellow ship in your home system. If you did, it would make the third element of either of those colors. Dralius could then move the R2 to babelfish and, if you don't immediately attack it, sacrifice the B1 in Boogie to change its color to either blue or yellow (whichever you just build) and trigger a catastrophe. This would cost you either your Y3 flag ship or your B1 sun, neither of which would be a very happy prospect. Fortunately for you, Dralius cannot immediately build a second ship in ChaCha. If he were able to build a second ship there, and if he were able to build a Y2 in either Boogie or Dralius and sacrifice it to move both ships into babelfish, you'd have to sacrifice your R2 in tweety to save yourself. Now, what can you do to prevent all that bad stuff from happening? Hint: Try causing a distration elsewhere to which Dralius has to respond. Where and how is he vulnerable?\n\n23) dralius: Move B1 Boogie Chacha\n\tdralius: Oh man what a day i had. I will delay my move until i get some rest.\n\n24) babelfish: Trade Y3 R3 Babelfish\n\n25) dralius: Build Y2 Boogie\n\tbabelfish: Brian helped me with this move. Do you think it is a good one?\n\tdralius: That may put you in danger of a disaster. Heck i am no expert, just winging it as i go.\n\tCDRodeffer: I don't believe that babelfish is in any immediate danger from a disaster due to trading the Y3 for R3. On the other hand, I don't really understand why babelfish made that exchange now, when other moves may have given you more of an immediate advantage, such as build y2 tweety or build y2 babelfish. Build b2 babelfish would have been clearly bad, however, because then Dralius could have done move b1 ChaCha babelfish catastrophe blue. Actually, Dralius could still work toward such an attack, and have it in three if babelfish doesn't do something to prevent Dralius from doing build y2 Dralius, build b2 ChaCha, sacrifice y2 Dralius move b1 babelfish move b2 babelfish catastrophe blue babelfish. Or even more damaging, Dralius could build y2 Dralius, build r1 ChaCha, sacrifice y2 Dralius move r1 ChaCha babelfish move r2 ChaCha babelfish catastrophe red babelfish! It's imperitive that you do something to defend against one of these. There are two paths, each taking three turns, so babelfish has at least one extra tempo to get it done. One thing that would delay this would be to somehow get a y1 back in the stashes to prevent Dralius from building y2.\n\tdralius: Just too much to think about in this game.\r\n\n\n26) babelfish: Attack Y2 Boogie\n\tbigby: I thought that the 3 ship had to be red in order to attack dralius if he entered babelfish. But after reading the rules again, You just have to have a red ship in the sector in order to attack, correct? so babelfish's Y3 could turn back dralius' R2 as long as babelfish leaves R1 in the system? \n\n27) dralius: Build R1 Dralius\n\tbabelfish: i need an inordinate amount of help to play this game.\r\n\n\tbigby: That's okay. We all need to learn it before the triathalon!\n\tdralius: It is unlikly that i will understand how to play by the 28th.\n\n28) babelfish: Build R2 Boogie\n\tbabelfish: I am definately out of the tri. I'd love to do the first one suggested (cannon, pulling strings, fortac)\n\n29) dralius: Build Y2 Dralius\n\tdralius: No new Cannon until it's fixed :(\n\n30) babelfish: Move R2 Boogie Dralius\n\tbabelfish: No Cannon nor Fortac? What's a girl to do?\n\tdralius: Storm the gates!!\n\tbabelfish: Brian proposed on Friday night. Woo hoo!\n\tdralius: Congratulations. \r\n\r\n\n\n31) dralius: Move R1 Dralius Boogie\n\n32) babelfish: Attack Y2 Dralius\n\n33) dralius: Attack R2 Dralius\n\n34) babelfish: Build R3 Boogie\n\n35) dralius: Move R1 Dralius Boogie\nCatastrophe Boogie R\n\tdralius: ever get that sinking feeling?\r\n\n\n36) babelfish: Move Y2 Dralius Boogie\n\tbabelfish: I'm too confused to have any kind of feelings.\n\tdralius: Do you like hard cider?\n\n37) dralius: Build Y3 Dralius\n\n38) babelfish: Move B1 Babelfish Tweety\n\tbabelfish: like Woodchuck? yep.\n\tdralius: just bottled some very tart hard cider last weekend. I will save some for the BBQ.\n\tbabelfish: cool\n\n39) dralius: Trade Y3 R3 Dralius\n\n40) babelfish: Discover B1 Tweety R1 Elmo\n\n41) dralius: Move Y1 Boogie Chacha\n\n42) babelfish: Build Y3 Tweety\n\n43) dralius: Trade Y1 R1 Chacha\n\n44) babelfish: Move Y3 Tweety Elmo\n\n45) dralius: Move R2 Chacha Babelfish\n\tdralius: Danette is working on the 3rd so we can't get together quite as early as i thought. How is 5pm for U?\r\n\n\tbabelfish: Actually, that's better for us too.\n\tdralius: We are planning on BBQ pork ribs. Do you have any dietary restrictions? We can change that, there are plenty of other good things to grill.\n\tbabelfish: Nope, that's what I made for you guys, silly. My fav. I basically eat nearly everything...(in mass quanities.)\n\tdralius: So far the only other items we are set on is corn on the cob and cider. I'll make up my mind on the rest by tommorow\n\tbabelfish: what should we bring?\n\tbabelfish: dessert? \n\tbabelfish: I don't know what the heck to do next, I'm stalling, can't you tell.\n\n46) babelfish: Trade Y3 R3 Elmo\n\n47) dralius: Attack Y1 Babelfish\n\n48) babelfish: Move Y2 Boogie Dralius\n\tdralius: desert is fine\n\n49) dralius: Move R1 Chacha Babelfish\nCatastrophe Babelfish Red\n\tdralius: How was the race?\n\n\tdralius: i hope the SDG Triathalon is less painful\n\nHomeworlds Online (SDG# 3293)\nStarted: 2006.4.30, Ended: 2006.5.4\nParticipants: TwoShort (S), GeepaMoogle (N)\nWinner: TwoShort\n\n1) GeepaMoogle: Homeworld B3 Y1 G3\n\n2) TwoShort: Homeworld B2 R1 G3\n\tGeepaMoogle: Checking out your game with jeep by the way. I may be in over my head..\n\n3) GeepaMoogle: Build G1 Geepamoogle\n\tTwoShort: Well, for what it's worth, I think both Jeep and I feel in over our heads in that game :) Anyway, have you played much Homeworlds before?\n\tGeepaMoogle: Not really. Although I have tried to study some useful tactics to keep in mind, and the relative strengths and weaknesses of things.\n\tGeepaMoogle: A defensive side to your homeworld, eh? Interesting.\n\n4) TwoShort: Build G1 Twoshort\n\n5) GeepaMoogle: Discover G1 Geepamoogle Y2 Vesperoutpost\n\tGeepaMoogle: I really ought to play this by email sometime. Perhaps with a separate account, so I can craft amusing stories as I play. I saw one game that was logged and the text was amusing to say the least. (Russell vs Andy, accessible from Wunderland somewhere)\n\tTwoShort: The red homeworld star is definitely contrary to conventional wisdom. Jesse played it that way in our current game, and did well with it, so I figured I'd try it. The advantage is not so much that it's red, but that it isn't green or yellow, letting you have more ships of those colors before you get close to a disaster... Or that's the theory anyway; first time I've tried it.\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) GeepaMoogle: Build G1 Geepamoogle\n\tGeepaMoogle: Save the choices which would give warnings, all opening star/ship trios might have some benefits. Although I suspect that you want a blue and green somewhere, and you don't want a red ship in the normal setup. (However, a red ship might be useful for a blitz set-up)\n\n8) TwoShort: Build Y1 Twoshort\n\n9) GeepaMoogle: Trade G1 B1 Geepamoogle\n\n10) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n11) GeepaMoogle: Move B1 Geepamoogle Vesperoutpost\n\n12) TwoShort: Build G1 Twoshort\n\tTwoShort: Without gree, the only thing you can do on your first turn is turn you ship green. Without blue, you could theoretically grow, and then move to blue, but it would be pretty crippling.\n\tTwoShort: I can't really see starting twith a shiop that wasn't green or yellow either.\n\n13) GeepaMoogle: Build B1 Vesperoutpost\n\tGeepaMoogle: Keep trying to think of other possible functions for ships (outright destruction comes to mind) but nothing all that great can I come up with.\n\n14) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\tTwoShort: Well, actually, as the second player, I'll start with a b3 ship (and b1 star) if the opponent started with a b1 star, but that's a special case strategy.\n\n15) GeepaMoogle: Trade B1 R1 Vesperoutpost\n\tGeepaMoogle: I will probably be back a bit later. Hungry and I want to get a set of extra trees so I can have two games on table at one time (as well as the dice for a pattern matching game)\n\tGeepaMoogle: Nice.. You seem to have locked me out of yellow for now.\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n17) GeepaMoogle: Trade G3 Y3 Geepamoogle\n\n18) TwoShort: Sacrifice Y2 Grogar\nDiscover Y1 Grogar R2 Doomtown\nMove Y1 Doomtown Geepamoogle\n\tTwoShort: So as long as we're tossing around strategy tips; letting your opponent monopolize a color is bad, and that goes tripple for yellow :)\r\n\n\n19) GeepaMoogle: Trade Y3 R3 Geepamoogle\n\tTwoShort: Sorry, I have a hard time not going for the throat when I see an opening...\n\n20) TwoShort: Discover Y1 Geepamoogle B2 Sentrypost\n\tGeepaMoogle: I didn't consider you might attempt to cripple my people on the eve of crowning the newest cruise vessel. They have demanded your head now. (Space cruises can come later.)\n\n21) GeepaMoogle: Build G1 Vesperoutpost\n\tTwoShort: Clearly a warlike weapon-building people such as yourselves must be contained. I'm afraid we cannot allow you access to hyperdrive technology.\n\n22) TwoShort: Trade Y3 G3 Twoshort\n\tGeepaMoogle: We have done your people no harm, nor have we invaded your space. Our enforcer ships are strictly defensive.\r\n\r\nThat and your scouting ship nearly ran the Queen Mary space cruiser into the planet. The results would have been devestating.\n\n23) GeepaMoogle: Move G1 Vesperoutpost Geepamoogle\n\n24) TwoShort: Build G2 Twoshort\n\tTwoShort: We were simply trying to help out your celebration with an exciting fireworks display. Sorry you got the wrong impression. Hopefully we'll have another opportunity to share our fine fireworks with you soon.\n\n25) GeepaMoogle: Build G2 Geepamoogle\n\tGeepaMoogle: Well, next time, do check with Vesper Defense Outpost. All Federation traffic is supposed to flow through there. Our scientists report a star explosion in the general direction your ship came from. Your pilot might need a vacation.\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild G3 Twoshort\n\tTwoShort: Such beaueaucratic restrictions mean fireworks shows will take considerably more resources to arrange. We'll just have to set up a little factory to speed up production.\n\n27) GeepaMoogle: Trade R3 Y3 Geepamoogle\n\tGeepaMoogle: It's not beaurocratic. We just want to make sure the guy running the fireworks knows how to handle them safely. Our galactic coroners have determined "fireworks" were the reason that one star exploded. Luckily, that planet was only inhabited by telemarketers, so everything ended up OK.\n\tGeepaMoogle: Also curious, do I seem to be on the road to recovery? It's 1L,1M,4S vs 1L,2M,3S at the moment for whatever that is worth.\n\tTwoShort: Well, honestly, I think you're doomed. My basic thought on things to look at is Who has more 3 pointers? and Who has more yellow, particularly 2 & 3 pointers? So I'm slightly ahead now, but I also have a factory going, which I'll use this turn to take the rest of the green so you can't set up your own factory, and in 2-3 turns I'll use it to take 2 of the 3 remaining yellows. On the other hand, I thought I had you finished off when I threw the yellow into your homeworld, so a comeback might well be possible... but it doesn't look good. \n\n28) TwoShort: Trade G2 R2 Twoshort\n\tTwoShort: Um, I mean, production is ramping up, and we look forward to brining the people of GeepaMoogle some fine fireworks displays in the future!\n\n29) GeepaMoogle: Build G2 Vesperoutpost\n\tGeepaMoogle: Sucks to get off to an early bad start. Ah well, it would seem we have reaquired our Queen Mary after a ramp down of security. Politicians were worried to learn someone was buying up all the cocktail napkins, so were motivated to pass the measure restoring her before it was too late.\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Sentrypost\nBuild Y3 Grogar\nBuild G3 Twoshort\n\n31) GeepaMoogle: Build B1 Vesperoutpost\n\n32) TwoShort: Sacrifice Y2 Grogar\nMove Y2 Sentrypost Geepamoogle\nMove Y1 Sentrypost Geepamoogle\nCatastrophe Geepamoogle Yellow\n\n33) GeepaMoogle: Trade G2 Y2 Vesperoutpost\n\tTwoShort: Our forces at sentryPost have grown tired of sitting there watching the exciting goings on on your homeworld, and have decided to come visit. Naturally, they'd like to celebrate this meeting of our cultures with a fine fireworks display!\n\n34) TwoShort: Sacrifice Y3 Grogar\nMove G1 Yolonda Vesperoutpost\nMove G1 Vesperoutpost Geepamoogle\nMove G3 Twoshort Geepamoogle\nCatastrophe Geepamoogle Green\n\tTwoShort: And now I'm sure I have you; I've got 3 pointers and you don't, and I can keep you from getting any before I use mine to take over your homeworld.\n\tGeepaMoogle: Bleh. Is there any place that has a list of useful tactics and traps to watch for?\n\n\tGeepaMoogle: I know it's over, just keeping the game alive until I get a response.\n\tTwoShort: There's the wiki here, and the one at icehousegames.org, but the total amount of strategic advice there isn't that great. Certainly the best way to learn is by playing; I'll certainly be happy to play again any time. If you like, we could play an unrated game- I'll still play the same way, but I'll feel freer to blather on about the strategies I'm trying and what I'm thinking at each stage. I like talking about homeworlds stragtegy about as much as I like playing, but in a rated game I can't bring myself to tell you to look out for the surprise attack you might not be seeing...\n\tTwoShort: Oh, and just so you know, I beleive you can keep chatting in a game even after it ends...\n\nHomeworlds Online (SDG# 3330)\nStarted: 2006.5.1, Ended: 2006.5.14\nParticipants: GeepaMoogle (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld B1 Y2 G3\n\n2) GeepaMoogle: Homeworld Y3 B1 G3\n\n3) jeep: Build G1 Jeep\n\n4) GeepaMoogle: Build G1 Geepamoogle\n\n5) jeep: Trade G1 B1 Jeep\n\n6) GeepaMoogle: Trade G3 B3 Geepamoogle\n\n7) jeep: Build B2 Jeep\n\tGeepaMoogle: Already had TwoShort try locking me out of a color. No thank you..\n\n8) GeepaMoogle: Build B2 Geepamoogle\n\tjeep: Yeah, it's no fun. At least, if you are the one locked out.\n\n9) jeep: Discover B2 Jeep Y3 Ribbon\n\tGeepaMoogle: Well, since my initial MegaMall was such a success, the people have demanded I build a franchise out of it. Behold the new, more convenient Malls'R'Us.\n\n10) GeepaMoogle: Trade B3 G3 Geepamoogle\n\n11) jeep: Sacrifice G3 Jeep\nBuild B2 Ribbon\nBuild B3 Ribbon\nBuild B3 Jeep\n\n12) GeepaMoogle: Build B3 Geepamoogle\n\n13) jeep: Sacrifice B2 Ribbon\nTrade B3 G3 Jeep\nTrade B3 Y3 Ribbon\n\n14) GeepaMoogle: Trade B2 Y2 Geepamoogle\n\n15) jeep: Sacrifice G3 Jeep\nBuild B2 Ribbon\nBuild B2 Ribbon\nBuild B3 Jeep\n\n16) GeepaMoogle: Discover B3 Geepamoogle G2 Gaia\n\n17) jeep: Sacrifice B2 Ribbon\nTrade B3 G3 Jeep\nTrade B2 R2 Ribbon\n\tGeepaMoogle: Well, my first game against TwoShort was a disaster, as evident by the fact it was over in a week.\n\tGeepaMoogle: I chalk it up to ignorance of some of the more advanced ploys and/or potential hazards to take advantage of.\n\n18) GeepaMoogle: Build B2 Gaia\n\n19) jeep: Build G1 Jeep\n\n20) GeepaMoogle: Trade B2 Y2 Gaia\n\n21) jeep: Move G1 Jeep Ribbon\n\n22) GeepaMoogle: Build Y1 Geepamoogle\n\n23) jeep: Build G1 Jeep\n\n24) GeepaMoogle: Move G1 Geepamoogle Gaia\n\n25) jeep: Build B2 Ribbon\n\n26) GeepaMoogle: Build Y1 Gaia\n\n27) jeep: Discover Y3 Ribbon G2 Stage\n\n28) GeepaMoogle: Move Y1 Geepamoogle Gaia\n\n29) jeep: Sacrifice G3 Jeep\nBuild G2 Ribbon\nBuild G3 Jeep\nBuild Y1 Stage\n\n30) GeepaMoogle: Build G3 Geepamoogle\n\n31) jeep: Move Y3 Stage Geepamoogle\n\n32) GeepaMoogle: Trade Y2 R2 Geepamoogle\n\n33) jeep: Sacrifice R2 Ribbon\nAttack R2S Geepamoogle\nAttack G3S Geepamoogle\n\n\tGeepaMoogle: Curses. I missed that possibility. It seems plain enough to me I currently lack the foresight to survive the opening phases.\n\tjeep: Well, making the small universe was the problem, I think. I had the first shot, so the small universe just helped me.\n\tjeep: Uh... ignore my last comment, I thought this was a different game.\n\tGeepaMoogle: I was about to say.. Well, I think I was toast whenever your large piece moved in and you had some reds ready to sacrifice. However, I thought making my own that you would then retreat, and I could then make use of my factories somehow\n\nHomeworlds Online (SDG# 3321)\nStarted: 2006.5.2, Ended: 2007.6.22\nParticipants: andylooney (S), Danner (N)\nWinner: andylooney\n\n1) Danner: Homeworld B2 G1 R3\n\tDanner: hi\n\n2) andylooney: Homeworld B3 R2 G3\n\tDanner: I'm working on a HomeWorlds Visual Basic program :)\n\tandylooney: Cool! \n\n3) Danner: Build R1 Danner\n\n4) andylooney: Build G1 Andylooney\n\n5) Danner: Trade R1 Y1 Danner\n\n6) andylooney: Trade G3 Y3 Andylooney\n\n7) Danner: Build Y1 Danner\n\n8) andylooney: Build G1 Andylooney\n\n9) Danner: Build R1 Danner\n\n10) andylooney: Build G2 Andylooney\n\n11) Danner: Trade Y1 B1 Danner\n\n12) andylooney: Discover G2 Andylooney Y1 Different\n\n13) Danner: Trade R3 G3 Danner\n\tDanner: you have cool strategy :)\n\n14) andylooney: Build G2 Different\n\n15) Danner: Discover Y1 Danner G3 Deepspace\n\n16) andylooney: Discover G2 Different G3 Jolly\n\n17) Danner: Build Y1 Deepspace\n\n18) andylooney: Build G2 Different\n\n19) Danner: Build Y2 Deepspace\n\n20) andylooney: Build Y2 Andylooney\n\n21) Danner: Build B1 Danner\n\n22) andylooney: Trade G1 B1 Andylooney\n\n23) Danner: Sacrifice B1 Danner\nTrade G3 Y3 Danner\n\tDanner: 1. sacrifice Y3 andylooney; move G2 Different Jolly; move G2 Jolly Danner; move G2 Jolly Danner; catastrope Danner G;\r\n2. sacrifice Y2 andylooney; move B1 andylooney Different; move B1 Different Danner; catastrophe Danner B;\r\nThis is your plan, isn't it? :)\n\n24) andylooney: Build G1 Andylooney\n\n25) Danner: Build R1 Danner\n\n26) andylooney: Build G3 Different\n\n27) Danner: Build Y2 Danner\n\n28) andylooney: Discover G3 Different Y3 Howell\n\n\nHomeworlds Online (SDG# 3380)\nVariants: "Unrated"\nStarted: 2006.5.5, Ended: 2006.5.21\nParticipants: Keith (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B3 G3\n\tTwoShort: Well, at least I think I like expounding in unrated games... the one I just started vs. GeepaMoogle is the first unrated game I've played.\n\tTwoShort: So anyway, expounding: always start with a green or yellow ship. I prefer green, and I think it's easier for beginners, but some quite good players (e.g. Andy Looney) prefer yellow, and do quite well with it. One of your stars should be blue; last week I would have said the other should definitely be green or yellow (whichever your ship isn't), but then Jesse started a game against me with it red, and I can see the potential (actually having red is of minor benefit; being able to have more yellow & green ships without aproaching catastrophe is the real advantage.)\n\n2) Keith: Homeworld Y2 B1 G3\n\tTwoShort: Oh, and sizes: the ship should be a 3 pointer, for the stars I'd normally take a 1 & 2 (I'm being nice, and letting you); typically I'd be taking the 1 & 3 because I was going second and my opponent took 1 & 2. It's mainly about what you're moving to; moving to three points gives you a bit of control over their availability; moving to one points can be limiting when they disappear fast.\n\tTwoShort: You could of course also take 1 & 3 for a "small universe" game, or two twos to make us immediately ajacent. But that is widely considered not as much fun, and a disadvantage for the second player in any case.\n\n3) TwoShort: Build G1 Twoshort\n\tKeith: Thank you for accepting my challenge. It was your expounding comment in your unrated game with GeepaMoogle that gave me the idea. \r\n\r\nI saw that Jesse took red and your comment about it but whatever advanced player advantage it offers is beyond my understanding. \r\n\r\nI have only reached my second turn in my only other Homeworld game so I have no sense yet for one pointer depletion speed and game impact. I will take your setup advice and the opportunity for a 1 & 2 homeworld.\n\tTwoShort: build g1 twoshort\n\n4) Keith: Build G1 Keith\n\tTwoShort: Someday I'll stop typing orders in the wrong field... Anyway, here in the early game, we'll both be building and expanding outward. The things to think about are color monopolies and 3 pointers. If all the pieces of one color are gone from the stash, and you don't have any as ships, it will be a problem. If it happens with yellow, it will be crippling. Assuming neither of us allows that to happen, the big deal will be who gets more three pointers when they become available. \n\tKeith: Well at this point I can only build green. Can't see trading it or I would have started with that color. Can't move the g3 and would not want to.\n\tKeith: I can see how you would type your order into the comment field. I just started to. I think it is because of the game board. The order input box is way far away.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Keith: Trade G1 Y1 Keith\n\tTwoShort: Yeah, the first turn is pretty much always the same: grow another of whatever your initial ship is. \n\tTwoShort: Trying to monopolize colors or get 3 pointers are sort of medium-term goals, but the groundwork for them starts coming into play pretty quickly. For example: if I had grown another green 1 point, you could get a green 2 point; not huge deal, but certainly better for you than me. By flipping to yellow, there is only one yellow one point left; if you let me take it, you can't get yellow except by growing to a two point and using blue before I'm able to take both two points, or by flipping your 3 point to yellow and building without letting me get one more yellow into your homeworld to cause a catastrophe; all in all, it will be a pain; so I'd recommend taking the 1 point :) \n\tKeith: Given game lengths averaging 17 turns development would have to be fast. It would seem to be much easier to get a yelllow one point than to wait and see if I get a two pointer in time.\n\n7) TwoShort: Build G1 Twoshort\n\n8) Keith: Discover Y1 Keith G3 Maruko\n\tKeith: Lets see if I can complicate the potential factory.\n\n9) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n10) Keith: Build Y2 Maruko\n\tTwoShort: Well, in the factory, you sacrifice a G3 to grow two other peices, then re-grow the same g3 you sacrificed. \n\tTwoShort: So moving your yellow to a g3 doesn't really impact it dierectly (though it's a fine move in any case)\n\tKeith: Ahh. I was thinking no g3 in the pool no factory. So if my understanding is correct then sacrificing a y3 puts a y3 in the pool that stays and the same for r3. The down side of the sacrifice is a window of piece opportunity for your opponent. A b3 could be pulled back out of the pool but it is a limited cycle process as a 3-pointer is lost every cycle. However, a g3 sacrifice cycle can be repeated as long as a player wants. \n\n11) TwoShort: Build G1 Twoshort\n\n12) Keith: Discover Y1 Maruko B2 Nikos\n\tTwoShort: Yes, sacrifice anything and it immediately goes into the stash. Ditto if you move or sacrifice the last ship at a system: the system immediately goes into the stash. This is what enables the factory, and also the "investment", where you sacrifice a green that is the only ship at it's (generally Y3) system to immediately grow the system as a ship.\n\n13) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n14) Keith: Build G1 Keith\n\tTwoShort: So I imagine you did that so you would have more room to grow yellow at Maruko, which is a fine idea. but that ship isn't doing much for you back at your homeworld. Moving to a new g2 or b2 would probably be a better choice. Growing another green at your homeworld should probably also be on your agenda for this turn or next.\n\tKeith: My concern for growing a new green anywhere is hastening the start of your factory effort. I take it the advantage of a new g2 system is that is is adjacent to your homeworld. A new system did not occur to me at all. In retrospect I think a b2 would fit the ideas I had in mind better. Would there have been a difference between discovering a new g2 and moving to grogar?\n\tTwoShort: Feel free to undo if you want. I'd probably move to a b2, but even if you move to a g2 it will be a few turns at least before I can safely factory. Moving to Grogar doesn't sound so good; you don't have anything you can flip to red right now, while I do and would get the first chance anyway. You could always run away if I did, but why give me the initiative in deciding when/whether to force that? Really, in your shoes, rather than worrying about delaying my factory, I'd make sure your own factory is set up and ready to go.\n\tTwoShort: The advantage of moving to a two (green or blue) is not so much that it's ajacent to my homeworld (though there is nothing wron gwith that), but that it is not your homeworld. Having the y1 at your homeworld does nothing, because you already hve yellow access there. As soon as I have a y2 you won't want to have 3 yellows there, so you can't grow more yellow there. When we start with the factories, you'll want to have as many places to grow as you can.\n\tKeith: I feel a bit a awkward taking the move back because the need is based on my event horizon being only one or two ply so that a one ply screen update makes a difference. I will do so since the game is unrated and it is okay with you.\r\n\r\nBTW thank you for all the advice. The game is starting to make sense. Elements of play like ship creation restrictions, the immediate availability of a sacrificed piece, investments and factories\n\n15) TwoShort: Build G2 Bluestar\n\n16) Keith: Sacrifice G3 Keith\nBuild G2 Keith\nBuild G3 Keith\nBuild Y2 Nikos\n\tTwoShort: My theory on undo generally is that if the opponent doesn't want you to undo, they should make a move. For this game, I figure the idea is to have an instructive game; if you make a move I'm sure is a bad idea, I'll encourage you to undo. If you make a move that seems reasonble, but not quite what I'd do, I'll tell you so, then try to take advantage of the opening.\n\n17) TwoShort: Build Y3 Grogar\n\n18) Keith: Trade G2 B2 Keith\n\tKeith: I guess I will stick my neck out.\n\n19) TwoShort: Trade G2 R2 Bluestar\n\tTwoShort: Well, I can't get a green to your homeworld to cause a catastrophe, so you're safe this turn. But after this turn I'll be able to, so you'll have to spend your next turn dealing with it.\n\n20) Keith: Build Y3 Maruko\n\tKeith: I thought I was probably safe for one turn but was not sure I was seeing all of your possibilities. I was not sure whether to convert a green to a blue before taking a factory turn or after. I decided it would be better to grab the G2 and that you would be limited to adding only on yellow in Grogar. Though it was a Y3.\n\n21) TwoShort: Move Y3 Grogar Maruko\n\tTwoShort: I'm not sure the factory was a bad move, or what I would have done instead. But I consider 3 poiters, particularly yellow ones, to be supremely valuable, so in my opinion the real question is what becomes of the other two. I can't safely grow them this turn, or outright stop you from growing at least one, so I'll look for ways to mess with you if you do, and maybe get the last one.\n\n22) Keith: Trade Y2 R2 Nikos\n\tTwoShort: And now I should mention the gun rule: If your opponent draws their gun, draw your gun. It's very risky to not have a red ship when your opponent has one, because they can move into a system, and get the first shot. Ocasionally you can get away with it briefly, and I actually ignore the gun rule more frequently than most, but I often regret it.\n\tKeith: I dfinately feel under the gun but I want that y3.\n\n23) TwoShort: Move Y3 Maruko Nikos\n\tTwoShort: Exactly the sort of reason I sometimes ignore the rule... now let's see if I can make you regret it :)\n\n24) Keith: Move R2 Nikos Maruko\n\tKeith: I expect that you can. Even more so if I misstep on this move.\n\tKeith: I could convert my b2 to a r2. If you moved the y1 from grogar to Maruko we would both lose y3's and the system link to my homeworld would be eliminated.\n\tKeith: If you sacrificed your R2 unit, afterall I don't have a gun, then you could convert my Y3 in Maruko couldn't you? That is more of a rules operation question than a tactical one since I could then move a Y1 in and trigger a catastrophe.\n\tTwoShort: If I sacrifice the r2, I could take both your peices at Maruko. If you don't get a red or cause the catastrophe, I'll probably move the y3 into your homeworld, in which case I'll either win, or at least completely cripple you. So you definitely want to do one of the two. I'm not sure which is better though. For what it's worth, the system link to your homeworld is pretty irrelevant, as long as there are 3s in the stash, your're reachable.\n\tKeith: Given that Discover is a seperate command from Move, Attack, Build and Trade I was not sure if you could build a link and move through on the same turn. I will need to keep in mind that, just like a ship can move more than once from a sacrifice it can attack more than once.\n\n25) TwoShort: Build G2 Bluestar\n\n26) Keith: Move Y3 Maruko Bluestar\n\n27) TwoShort: Sacrifice Y3 Nikos\nDiscover G2 Bluestar Y3 Larry\nDiscover G1 Bluestar B3 Moe\nDiscover R2 Bluestar B3 Curly\n\n28) Keith: Move R2 Maruko Grogar\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Larry\nBuild Y2 Grogar\nBuild G3 Twoshort\n\n30) Keith: Attack Y2 Grogar\n\tKeith: Well that certainly explains what you would do if I walzed a 3 pointer in among three smaller ships and threatend to convert two.\n\tKeith: I suppose it also puts you in a good position to crank a factory given only one piece per system. Was such a dispersion part of your plan all along?\n\tTwoShort: I didn't like the situation, so I figured I'd make big changes :) Generally, I rarely have a definite plan. I look for various things I could do over the course of a few turns that would be good for me or bad for you, but then I try to find the moves that produce the most different posibilities. I think of it as trying to threaten to do more things thatn you can counter.\n\tTwoShort: So even now, I don't know what those ships are going to do at the 3 points, but: If you keep up the chase with your big yellow, there is only one at each system; being spread out is nice if I want to factory; if I get a big yellow again (which I'll be eager to) the greens could move in for a disaster; if you use your red, the red could move in and cause trouble; Either of the greens might at some point be able to serve as an investment. \n\tKeith: I can't see galavanting around after single ships. BlueStar was the only sector with the density to make a try worthwhile. Not sure what to do now and my work schedule is taking away my free time for a while.\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Grogar\nBuild G3 Twoshort\nBuild R1 Curly\n\n32) Keith: Move Y2 Maruko Grogar\nCatastrophe Grogar Yellow\n\tKeith: If my understanding of the rules is correct I could use the r2 in grogar to convert the y2. It might not be good strategy but I could.\n\tTwoShort: Well, I'm not entirely sure what you should do now, but I'm kind of short on yellow, so keeping it that way is probably a good idea, and moving you red to grogar was a fine way to pursue that. I could have just run away, but this seemd more fun: I've set up the green catastrophe threat if you let me sacrifice the y2, so I assume you'll take it; then I'll grow the y3; then you'll move in from maruko to cause a catastrophe, and those yellows will be back in the stash and maybe I can get some. Of course, I think the results of that little script are slightly in your favor, so if I see something better, I'll do that instead; as might you...\n\tKeith: I see you could move the two g2s at Larry to Keith to create a disaster. With the y2. No y3 required.\n\tKeith: It is tempting to sacrifice my g3 and grow it back pluse the y3 and a b1 or r1. But then your two g2s...\n\n33) TwoShort: Trade R2 Y2 Curly\n\n34) Keith: Move G1 Keith Larry\n\n35) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Moe\nBuild Y1 Curly\n\tTwoShort: Just to keep the pressure on...\n\n36) Keith: Move Y3 Bluestar Larry\n\tKeith: Hopefully that was a good idea. It seems to leave you far away from a y3. I am worried about your factory. You can get another g3 but I could not safely get it.\n\tKeith: You are making your moves so fast I am sure I am walking into a mess you see coming but that I do not.\n\n37) TwoShort: Trade G3 R3 Moe\n\tTwoShort: Not really... It took me a while to think through growing instead of running away from your red a few moves back; since then things have gone about as I expected. I hadn't thought that last move out ahead, but I knew I wanted some yellow, and to keep threatening the green catastrophe. The mess I see coming is that I'm going to disable your factory; either by catastrophe, or by what you'll have to do to prevent it...\n\tTwoShort: So, for example, it never occured to me you'd do that...\r\n\n\n38) Keith: Build G3 Larry\nCatastrophe Larry Green\n\tTwoShort: Funny you should mention my making moves fast... I'm sitting here saying "Isn't this a tutorial game? I'm having to think entirely too hard for that." :)\n\tKeith: Well thank you. Blame the teacher. \r\n\r\nYeah well ships are options and you are fast out optioning me. Which I seem to remember you did somewhere else against a heavy duty player.\n\n39) TwoShort: Move Y2 Curly Keith\n\n40) Keith: Build R1 Grogar\n\tKeith: There seems to be so many possibilities. Grow a g3 in Keith... no then two g2s move and catastrophe. Grow a g3 in Larry and create a catastrophe and maybe delay more factory action with all the greens in the stash. Convert your two greens in Larry but then I have no gun and easy catastrophe. Hmmmm...\n\n41) TwoShort: Sacrifice G1 Moe\nBuild Y2 Keith\n\tTwoShort: Good choice; at least compared to using your red, because if you did I would be free to move my red into your homeworld. Which is why I was wanting to factory up another g3 I could move in to force you to use up your red, but now you shut down the factory... So now I've got to think of a plan B...\n\tTwoShort: Well, there's a thought...\r\n\n\n42) Keith: Trade Y1 G1 Nikos\n\tKeith: And at first impression I don't get it. It does place two yellow elements in my homeworld.\n\tTwoShort: Well, as noted before, if you sacrifice your red before getting another, you're doomed. So next turn I can grow another yellow, and the turn after that I can move in the y1 from curly for the catastrophe, destroying one of your homeworld stars.\n\tTwoShort: or I could sacrifice my r1 to take your b2, and start growing toward both disasters.\n\tKeith: It is tempting to sacrifice the g3 and grow a y2 at Larry, y3 at Nikos and an r1 at Grogar. Partly because it gives me a second red ship but mostly because it takes the y3 you enjoy so much out of the stash. But no three pointer in my home world and your r3 moves in with the same effect as if I had no r2. Tricky.\n\tKeith: Sooner or later one of my "try this and see if I have overlooked something" is going to cost me dearly. \n\n43) TwoShort: Trade G1 R1 Twoshort\n\tTwoShort: Looks good to me; you still lose the star, but I don't think that was avoidable.\n\n44) Keith: Build G1 Nikos\n\n45) TwoShort: Trade R3 G3 Moe\n\tTwoShort: Clever idea! But I thought of it too :) \n\n46) Keith: Build G1 Nikos\n\tKeith: As it was your only real vulnerability it was worth a try.\n\n47) TwoShort: Sacrifice G3 Moe\nBuild Y1 Keith\nBuild R2 Twoshort\nBuild Y3 Curly\n\n48) Keith: Sacrifice Y3 Larry\nMove R1 Grogar Twoshort\nMove G1 Nikos Twoshort\nMove G1 Nikos Twoshort\n\n49) TwoShort: Sacrifice R2 Twoshort\nAttack R1S Twoshort\nAttack B2S Keith\n\n50) Keith: Build G2 Twoshort\nCatastrophe Twoshort Green\n\tKeith: Which I have done in my other learning game with CDRoddefer (which is many many turns less developed than this one)\n\tKeith: Though I like your slow factory idea. Create a 3-pointer, convert it to green, then a one turn factory.\n\tKeith: I think it is all down hill form here for me. I am going to try something wild - the most likely result will be accelrating the end.\n\n51) TwoShort: Trade Y3 G3 Curly\n\tTwoShort: I think it's downhill for you unless I screw up. You're doing an excellent job of giving me oportunities to screw up... This one will take a bit of figuring.\n\tTwoShort: Definitely a lot of ways to get this wrong.. OK I think I've got it.\n\n52) Keith: Sacrifice R2 Grogar\nAttack B2 Keith\nAttack Y2 Keith\n\tTwoShort: By the way, I assume you're aware that you can cause the yellow catastrophe in your own system any time (as can I). I'm not saying you should, but it might not have occurred to you. I haven't just because I can any time, and didn't want to bring you closer yet.\n\tKeith: Hmmm... shoulda moved the r2 into TwoShort. I was hoping to sacrifice my G3 and grow some red and green ships and create a double catasrophy.\n\n53) TwoShort: Sacrifice R1 Curly\nAttack B2S Keith\nCatastrophe Keith Yellow\n\tTwoShort: I could have traded the g3 to yellow or blue if forced to. Still, you can blow up green, and then I'll have no 3 point in my homeworld if you can get some yellow and move the r2 in... but that's assuming you can avoid your own double catastrophe this turn.\n\n\tTwoShort: Anyway, excellent game! Your rate of improvement was quite impressive; by the end here I felt like I had a real fight on my hands, despite having taken advantage of your inexperience in the early game.\n\tKeith: Thank you for the lessons and the positive feedback. I am glad I was able to make you work for it a little near the end. Right now I have a tough time seeing very far ahead but I have learned a lot of things to look out for. ...I'll be back.\n\nHomeworlds Online (SDG# 3367)\nVariants: "Unrated"\nStarted: 2006.5.3, Ended: 2006.6.17\nParticipants: Keith (S), CDRodeffer (N)\nWinner: CDRodeffer\n\n1) CDRodeffer: Homeworld B2 Y1 G3\n\tCDRodeffer: OK, Keith, we're ready to go. I guess I got randomly selected to go first. When creating a home world and deciding upon your first ship, you should probably always include green somewhere (otherwise you'll be delayed in making new ships, which is very important). Whether to include yellow or blue is kind of a toss-up. Blue gives you flexibility in choosing to trade ships for new ones of the same size, but you can't go anywhere without yellow. Having red somewhere is aggressive, and it does give your home system some protection in the off chance that your opponent decides to build his star system using the same two sizes of pieces as you, but it's usually not that big a deal early on. The second player has a slight advantage in knowing what the first player chose, and if he's confident, a red ship is often a good first choice for the 2nd player. One thing you will want to be sure of is to choose a large ship first, no matter what color it is. Starting with anything smaller puts you at a huge disadvantage.\n\n2) Keith: Homeworld G3 Y2 B3\n\tCDRodeffer: Here, I picked a small yellow and a medium blue for my home binary system, and a large green for my flag ship. I can't attack anything, but even so, I can't be attacked by anything else unless you somehow get another large ship into my home system, which generally doesn't happen early in the game. A ship can only attack other ships if you have access to red (either by the star or one of your own ships) AND you're attacking a ship that's no larger than (but may be of equal size to) the largest ship you have in that system. Starting with a large green ship is commonly called "the investment" because it's the first step toward making a "factory" -- a formation of a large green and any other green ship in one system with no more greens in the supply that, via sacrifice, allows a player to build new ships anywhere you already occupy at double the rate normally possible.\n\tCDRodeffer: If you want to be aggressive, you could choose a small and a medium for your binary star, at least one of which should probably be yellow, and a large red ship. If you want to play a more positional game, any other size combination (small plus large or medium plus large) binary star system will give you a bit more space, since systems are only connected to other systems that they do NOT share a star in a common size.\n\tKeith: Yeow! Even the order submission has a learning curve. Thank you for the help. I will be rereading the rules and your advice. Probably take my turn later this evening.\n\n3) CDRodeffer: Build G1 Cdrodeffer\n\tKeith: I decided I wanted my homeworld to be able to create ships and move them out. At least until a catasrophe comes along. I decided to make my size three star green to pull a G3 out of the sacrifice pool you are getting a head start on. I don't quite grasp the factory concept yet. It seems that if you sacrifice size 3 greens you build ships at triple rate and size 2 ships produce double rate.\n\tCDRodeffer: Pulling the G3 out of the sacrifice pool, as you say, actually *helps* me on my way toward the factory, because it depends upon the eventual depletion of green ships. The way the factory works is I sacrifice the G3, immediately rebuild the G3 that I sacrificed in some system where I already have another green ship (this is important!), and then build two more ships of the same color as I have elsewhere. A bit on how the game often goes -- catastrophes are a big deal, and are much more common way to cause your opponent damage than merely attacking. Your large blue is a kind of a future trap for you. If you get *any* three ships into an important system, you can sacrifice the large blue and change them all to one color, then trigger a catastrophe. Since I'll have to have at least two green ships in one of my systems at all times (probably my home system) to make the factory work, this reduces your requirements to getting only two ships in to cause the catastrophe. Yellow ships are always mobile, so they're usually the ones to move in. My general strategy for defending against that would be to try to lock down the green and/or yellow economies to prevent you being able to change the color of the ships and/or move them into my vulnerable system in the first place. But for now, I have to complete my investment.\n\n4) Keith: Build B1 Keith\n\tKeith: Does the green pool have to be completed for the factory to work? Wouldn't it work as long as the one and two point ships were depleted? Your comments on factories did clear up one misconception I had. I had the idea that sacrificed ships went into the pool after the special actions were taken. I.E. into the pool avialable to the other player on their turn.\n\tKeith: I just encountered a rule misreading on my part. I tried to create a Y1 ship based on the idea that I had yellow in the system. But it needs to be a yellow ship. So the only real option I have this turn is to build another blue ship.\n\n5) CDRodeffer: Trade G1 R1 Cdrodeffer\n\tCDRodeffer: Ah, yes. I made that mistake when I first started as well. You can only build a new ship (the smallest available) in the same color as one you already have in that system, and you must have access to green (either one of your own ships or a star). The rules are kind of brief, and could probably use more examples. As for your options, you could have traded your large blue for something else, but that would have immediately lost you a tempo. The first turn is almost always spent building, hence the necessity to have green somewhere. Another thing to think about is that it's almost always good to have access to all four colors in your home system, at least eventually. So I'll temporarily trade in my small green for a small red. This way, if you do manage to get a single ship into my home system, I can defend against it. I would not be able to defend against multiple ships, though, at least not yet.\n\n6) Keith: Trade B1 R1 Keith\n\tCDRodeffer: Now I can build either red or green ships in CDRodeffer, the smallest of whichever is available. Likewise, you'll probably want to trade your small blue for something else. A red would maintain a sort of balance of power, but just as it is for me, it doesn't get me anywhere immediately, except able to defend against a home invasion of a single ship. Alternatively, you could start exploring, probably with your small blue. You could discover a new small world of any color.\n\n7) CDRodeffer: Build G1 Cdrodeffer\n\tKeith: I will go with red too, though more for being four color than defensive.\n\n8) Keith: Build B1 Keith\n\n9) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\n10) Keith: Discover R1 Keith Y1 Maruko\n\n11) CDRodeffer: Build Y2 Cdrodeffer\n\n12) Keith: Trade B3 Y3 Keith\n\tKeith: Ahhh... I see I am in danger of getting locked out of yellow ships.\n\n13) CDRodeffer: Build G1 Cdrodeffer\n\tCDRodeffer: No, you've never been in danger of that. Besides, yellow is one of the colors that always seems more readily available than some of the others, particularly blue and red. I'm just building up a few ships to get ready to go exploring.\n\n14) Keith: Build B1 Keith\n\tKeith: I became concerned about yellow because 5 of the 9 were out of the pool (being all the one pointers and two of the two pointers). I suppose I could have moved out of Maruko to put a y1 back in the pool.\n\n15) CDRodeffer: Trade Y1 B1 Cdrodeffer\n\n16) Keith: Build B2 Keith\n\tCDRodeffer: That would work too. Usually, two items of any one color is pretty safe for a home system, at least until your opponent gets two ships of that color up close and personal. But that usually takes a while, except in games where both players have home systems with the same sizes of stars, where only one system needs to be between them. So in normal games like ours, I usually try to build up a small fleet to build and then explore. Not everybody does this, and the game is new enough that I don't know if it's a viable long-term strategy or not. But my thinking is that having a few ships in a few different worlds gives me more choices for where to move. And in most other types of games, more choices is a good thing. Of course, I say that having lost most of the games of Homeworlds that I've ever played....\n\tKeith: The one potential drawback I noticed to Homeworlds being a game that works for me is the very short average game length of only 17 turns. I tend to prefer games that have more drawn out opening and middle phases. So I sort of hope your explore and develope strategy is a viable one.\n\n17) CDRodeffer: Discover G1 Cdrodeffer Y3 College_fund\n\tCDRodeffer: I don't believe I've ever had a game last less than 30 moves, but I may be mistaken. It seems much longer and involved in practice, at least to me.\n\n18) Keith: Trade B1 G1 Keith\n\tKeith: More turns, at least in this game, means more chances to learn so I am fine with that. I do have a hypothetical question. If my R1 moved to College_Fund wouldn't Maruko disappear and your G1 need to evacuate to avoid conversion?\n\n19) CDRodeffer: Move R1 Cdrodeffer College_fund\n\tCDRodeffer: Ships with different owners may coexist in a system, at least for some time. So if you moved your R1 from Maruko to College_Fund, my G1 would be OK. Attacking takes an action, so provided I didn't evacuate, you could then attack my G1 if you wanted to. But the answer to your other question, yes, if a star is completely abandoned, it immediately returns to the stash.\n\n20) Keith: Build Y1 Keith\n\tCDRodeffer: Or, if I move a red ship into College_Fund, it can defend against your attack by attacking first if you move your R1 in. This is because I'll have tempo there. Even had I not moved an R1 in, I could still have attacked by sacrificing my R1 elsewhere (it was originally in CDRodeffer, but could have been anywhere) to perform the attack. The difference between moving first for defense and sacrifice for defense is one small ship minus one tempo.\n\tKeith: Right. Sacrificing allows actions in any system occupied. Intellectually I know this but I don't see the possibilities yet when looking ahead.\n\n21) CDRodeffer: Build Y2 Cdrodeffer\n\n22) Keith: Sacrifice Y3 Keith\nMove Y1 Keith Maruko\nMove Y1 Maruko College_fund\nMove Y1 College_fund Cdrodeffer\nCatastrophe Cdrodeffer Yellow\n\tKeith: I am worried about you getting that y3. My first thought was to move my r1 to Keith abandoning Maruko and putting a y1 in the pool. However, at least for next turn, you can only build a y3 at CDRodeffer and I could sacrifice my Y3 to get a y1 there for a catastrophe... Right?\n\tKeith: This is more aggressive than I inended a learning game to be but I think I just saw a heavy hitting move.\n\n23) CDRodeffer: Trade B1 Y1 Cdrodeffer\n\tCDRodeffer: I would not have been able to build the y3 anyway, at least for another couple of turns, because I aready had three yellow elements in CDRodeffer. A sacrifice such as this is usually better as a late game tactic than this early, because as you can see, it has left you with no large ships and no immediate way to get any, and it still doesn't give you any numerical advantage in terms of fleet size.\n\n24) Keith: Trade B2 G2 Keith\n\tKeith: I see what you mean. I can't even get a 2 pointer. And I have not gained any functionality over you. We both have all four colors.\n\n25) CDRodeffer: Build G1 Cdrodeffer\n\n26) Keith: Build B1 Keith\n\n27) CDRodeffer: Build G2 College_fund\n\n28) Keith: Move G2 Keith Maruko\n\tCDRodeffer: You know that you *are* allowed to trade a solitary blue ship in for one of another color, right? So even if you had not built the B1 in Keith, you could have traded it in for the available R1 or Y1.\n\tKeith: I do. I was thinking that if I took a Y1, G2 or R1 you could take a Y2, G3 or R2. From a stash point of view B1 was the safest to create.\n\tKeith: Actually there was another G2. Taking a G2 would have put you one step closer to an operating factory.\n\n29) CDRodeffer: Trade G1 Y1 Cdrodeffer\n\tCDRodeffer: It will be a while before I can bring the factory into operation.\n\n30) Keith: Move B1 Keith Maruko\n\n31) CDRodeffer: Build Y2 Cdrodeffer\n\n32) Keith: Trade G2 Y2 Maruko\n\n33) CDRodeffer: Sacrifice Y2 Cdrodeffer\nMove Y1 Cdrodeffer Maruko\nMove Y1 Cdrodeffer Maruko\nCatastrophe Maruko Yellow\n\tCDRodeffer: I did not mean to hit the undo button. My three year old daughter is doing her best to make my computer time difficult.....\n\n34) Keith: Trade G1 R1 Keith\n\n35) CDRodeffer: Discover G2 College_fund Y1 Duckling\n\tKeith: I don't even remember what yellow ships I had in the Maruko system except a y2.\n\n36) Keith: Build B1 Keith\n\tKeith: FWIW my learning game with TwoShort went 53 moves (27 turns).\n\tCDRodeffer: The Maruko system was a small yellow. But you also had at least two other ships in the system that were lost when it went nova. I should have warned you about that one, I think. Anyway, 53 moves isn't too short, I don't think. We'll see how this one goes. I won't try to intentionally draw things out, but it might take a while to finish things. Back to having four colors in your home system is a good place to be, even if the ships are small. I need to rebuild after that sacrifice, so while I'm ahead two ships in material, I'm behind in tempo in terms of protecting my home system.\n\n37) CDRodeffer: Move G2 Duckling Keith\n\n38) Keith: Build R1 Keith\n\n39) CDRodeffer: Build R2 College_fund\n\tKeith: And then you grow one green a turn until there is a green catastrophe?\n\n40) Keith: Build R2 Keith\n\n41) CDRodeffer: Sacrifice R1 College_fund\nAttack R2 Keith\n\tCDRodeffer: The grow green until a catastrophe is one way to go, but it ultimately wouldn't help me much other than to blow up one of your stars. You don't currently have any green ships in Keith, so the loss would be all mine. Your building an R1 in Keith was probably the only move that could save you, else I could have sacrificed R1 in College_Fund to attack your R1 in Keith, then simply used the next few turns to progressively attack your ships until you didn't control anything in your home system. In an annotated game, you get an exclamation point for building the R1 at just the right time. That move puts me behind an attack tempo. Had I done the sacrifice, you could just attack back with no loss, and I'd be out both a ship and a tempo, so I had to find another way. You have two R1 in Keith, which is soon going to become a liability. If you build R2 in Keith, there's no way you can stop me from eventually either building a B1 in CDRodeffer to sacrifice to change G2 to R2 for a red catastrophe or just moving my extra R1 from College_Fund in via some Y1 discovery as I did with the G2. But either of those is still at least two or three turns away. What can you do to turn my attention elsewhere?\n\tKeith: Since you have a g2 I can't attack and now a r2 it seems your in position to sacrifice the r2 and convert both of my r1s. Then you convert one per turn there after using an r1 without sacrificing and I can only grow ships to stay ahead till I grow myself into a catastrophe.\n\tKeith: The other reason I can't grow an r2 is that you could convert it with your g2 and an r1 sacrifice.\n\tKeith: I could build a g1 threatening to eliminate your g2 and my green star with another green build. But you could sacrifice your r2 and convert the g1 and ...\n\tCDRodeffer: Yes, you could do that. Losing green technology would be a bad thing for you, long term, but it might be one way to save yourself in the short term. You could build R2 and hope that I don't capture both of your B1 ships, then change one of your ships to green (red or blue, I don't see how it would really matter), then build another G1 to cause the catastrophe. Hmmm. As an aside, I wonder -- would sacrificing multiple ships, even if they are not used, fall within the rules? Probably not, but it's an effective, if costly, way to prevent either a catastrophe or your opponent taking control of something. Better no one have something than your enemy sort of thing, the scorched earth retreat. Have you considered exploring with one of your blue ships? I haven't thought about it much, but it might be a way to do something. If you're willing to intentionally move toward a red catastrophe in your home system, you can go ahead and build the R2 -- even with my R2 sacrifice I could only take two of the ships, then you could build another and cause the red catastrophe on the following turn. It would leave me with only one R1 available to go after one of your B1 ships, but you'd still be "alive" as such.\n\tKeith: It seems to me that if I do move a B1 out you just sacrifice your R2 and convert both of my R1s. Then I must grow a b1 every turn to stay ahead of the one per turn conversion rate of the R1s. Eventually I catastrophy myself with blue growth.\n\n42) Keith: Trade B1 G1 Keith\n\n43) CDRodeffer: Discover G2 Keith Y1 Lonely_retreat\n\tKeith: Well that is pretty much that. Awhile back you wrote " What can you do to turn my attention elsewhere?" Did you have something in mind?\n\n44) Keith: Build R1 Keith\nCatastrophe Keith Red\n\n45) CDRodeffer: Build R1 College_fund\n\n46) Keith: Build B1 Keith\n\tCDRodeffer: Since this is a learning game, winning or losing doesn't matter, so I thought it might be fun to give us both some leeway to try out some ideas. Sound OK to you?\n\n47) CDRodeffer: Move R2 College_fund Cdrodeffer\n\tKeith: Sounds good to me. I certainly learned a good lesson about overextending too early to remove your homeworld's binary status. And the value of three-pointers. \n\tKeith: And the value of two pointers...\n\n48) Keith: Trade B1 R1 Keith\n\n49) CDRodeffer: Trade R2 B2 Cdrodeffer\n\n50) Keith: Discover G1 Keith Y1 Bab4\n\n51) CDRodeffer: Build B1 Cdrodeffer\n\n52) Keith: Build B1 Keith\n\n53) CDRodeffer: Trade B1 Y1 Cdrodeffer\n\n54) Keith: Move B1 Keith Bab4\n\n55) CDRodeffer: Move B2 Cdrodeffer College_fund\n\tCDRodeffer: The type of tactic I've been using the past few turns is to try to prevent you from having access to medium sized pieces, by whatever means necessary. It includes trading and building the ships as they become available, but mainly it involves leaving small ships in the supply as possible, preferably only one small ship per color that you have available to build. That way when you build a small, I have access to a medium immediately, which I could then sacrifice (if needed) before you have a chance to move any medium you could build.\n\tKeith: And its working. Mediums continue to elude me for the moment.\n\n56) Keith: Build B1 Keith\n\n57) CDRodeffer: Build Y2 Cdrodeffer\n\n58) Keith: Build B2 Bab4\n\n59) CDRodeffer: Build B3 College_fund\n\tCDRodeffer: Great! Now that you're in position to get medium pieces, I can try to prevent your access to large pieces, while trying to secure them for myself. The keys to this sort of economic manipulation are first, to leave only ONE piece of the lower size available and second, to have at least two places where you can build the next larger size once pieces once they become available. Do you see how this is going to work out? Right now you can't build yellow, but in two turns you might be able to trade for a y2 if you decide to go that route (say build b2 Bab4 then trade b2 y2 Bab4). It would be risky for you to build b2 or b3 in Keith at the moment, at least while I have a y2 available for, say, sacrifice y2, move b2 College_Fund - Bab4 - Keith, catastrophe blue Keith. But you can (for now) either safely build blue in Bab4, or -- discover a new system somewhere. Yellow has become a bit of a strange resource in this game, which is a strange game anyway because we're not really playing to win or lose, but to learn tactics. But anyway, note that all of the star systems except CDRodeffer now have yellow suns. For mobility, I'm dependent on having at least one yellow ship in CDRodeffer. Right now there are two, but that may suggest a possible avenue of attack for you....\n\tKeith: The lack of a yellow ship has felt odd. I have seen comments in other games about the difficulty of being locked out of yellow. Though really I have just been yellow impaired. I did put a b1 out at Bab4 so that when I got the B1s out of the way I could safely build a B2 there.\n\tKeith: Thank you for the extended teaching game. With Cannon now down and out for a month it has been nice to explore Homeworlds. I have certainly learned about the disadvantage of going without a large ship (or a medium ship).\n\tKeith: It does seem that if I build a B2 at Bab4 then I could not safely follow with a B3 at either Bab4 or Keith. So I guess I will move out another b1 givng me at least two safe grow systems.\n\tKeith: Wait.... I can only discover a G1 or R1 both of which put you in line for a medium ship. Hmmmm...\n\n60) Keith: Move B1 Bab4 Cdrodeffer\n\tCDRodeffer: But building the b2 leaves a very tasty b3 for me to build as well. Of course, you can also now, and we'll both be in positions where we can trade it for any other large ship we need at the time. This is a good sort of combination to work toward -- a large ship of any color and access to both blue and yellow somewhere in the system. That's why that particular combination of colors is most recommended for the home system at the beginning of the game. It's both mobile and easy to change.\n\n61) CDRodeffer: Sacrifice R1 College_fund\nAttack B1 Cdrodeffer\n\n62) Keith: Move B2 Bab4 Cdrodeffer\n\n63) CDRodeffer: Trade B1 R1 Cdrodeffer\n\tCDRodeffer: If I understand your plans correctly (move b2 Bab4 CDRodeffer, sacrifice g1 Bab4 to grow another blue in CDRodeffer), then I need some way to get rid of these pesky blue aliens....\n\n64) Keith: Sacrifice R1 Keith\nAttack R1 Cdrodeffer\n\tKeith: Right about the B2. Also I did not feel I could safely build a B3 in Bab4. Now I can. If you build a second B3 you will have three blue elements in either College fund or CDRodeffer and I can create a catasrophe.\n\tKeith: Though I suppose if I do build the B3 you can sacrifice the Y2 and move two B1s in.\n\n65) CDRodeffer: Trade G3 R3 Cdrodeffer\n\n66) Keith: Attack Y2 Cdrodeffer\n\tCDRodeffer: There is almost always another way to block slow (i.e., one ship at a time) invasions from leading to a catastrophe. Here's one of them.\n\n67) CDRodeffer: Attack R1 Cdrodeffer\n\tCDRodeffer: Now, at most you can build one more blue in CDRodeffer, but I'll eventually take them both over if you do. I also could have simply moved the ship out of the system, or better, discovered a new system with the b1, probably a g3 to try to deny you access to green technology. Building a b3 in Bab4 probably would have been a better move for you. Sure, I could have sacrificed y2 to move in two blue ships from College_Fund, but it would have cost me three ships (two mediums and a large) and you only two (one medium and one large). If it had been in your home system, it may have been worth it, but usually not in an external system.\n\tKeith: And it puts a B1 back in the pool.\n\n68) Keith: Discover Y2 Cdrodeffer G1 Greenleaf\n\n69) CDRodeffer: Attack B2 Cdrodeffer\n\tKeith: I did consider the B3 in Bab4. I even tried it and took it back. While it is true you would have lost three ships to my two you would have ended up with two large ships, out numbering me overall, and I would have only 4 small ships.\n\tKeith: I did not think of your large ship going red.\n\tKeith: I think I needed to have a green medium in hand before starting this sequence. Before to threaten to grow to blue ships. Now to threaten to grow two red ones.\n\n70) Keith: Build G2 Bab4\n\n71) CDRodeffer: Move B2 Cdrodeffer Lonely_retreat\n\n72) Keith: Sacrifice B1 Keith\nTrade B1 R1 Keith\n\n73) CDRodeffer: Move B2 Lonely_retreat Keith\n\n\tCDRodeffer: You're in a tough spot, Keith. I could sacrifice r1 CDRodeffer to simply attack r1 Keith, and even if you sacrifice g2 Bab4 to grow two more red ships (r1 and r2) in Keith, I could instead sacrifice r3 CDRodeffer to get all three. So anyway, given that this game isn't rated, would you rather end it or continue and explore more tactics?\n\tCDRodeffer: Hmm. If you had one more tempo, you could sacrifice g2 Bab4 to build y2 and y3 in Greenleaf, then move the y3 to Keith. I'd need a large ship to attack that, and the nearest is two steps away.\n\tKeith: I think we can wrap this up. It has been very helpful to me. Thank you very much. I have my first chance to apply what I have learned right now in my game against Cobalt. I can sacrifice a Y2 to move a G1 to his homeworld where I can trigger a disaster taking out all of his green including one star. I would still have a Y3 at my homeworld. However, I would only have two ships left to his four.\n\tKeith: I will look over this game again tomorrow morning sometime and then resign.\n\nHomeworlds Online (SDG# 3372)\nVariants: "Unrated"\nStarted: 2006.5.4, Ended: 2006.5.18\nParticipants: GeepaMoogle (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\tTwoShort: I figure it's more fun this way; I enjoy expounding on my homeworlds strategy theories, and the game could use more players, so I'd like to help you out, but in a rated game I don't want to help so much that I might lose...\n\tTwoShort: Anyway, lesson 1: Homeworld selection. As first player, unless I'm trying a wacky experiment, I'll always go with y1 b2 g3. Others like g1 b2 y3. Either a yellow or green ship is reasonable, but I think the green is more straightforward. You certainly want access to blue, so thats one star, and the other star is whichever of green/yellow you didn't take for the ship. (As noted in our last game, I'm toying with the other-star-red theory, which is a fine example of the fact that strategies in this game are still in a pretty early stage of evolution, so don't take anything I say as gospel)\n\n2) GeepaMoogle: Homeworld G3 B1 Y3\n\tTwoShort: So, as second player, the same advice holds, except that you presumably want to use different size stars than me, typically a 1 and a 3. The thing to consider in star-size selection is what you'll be moving to. Moving to 3s is nice because it makes it a bit easier to influence the availability of 3s in the stash. Moving to 1s is not as nice, because they'll be gone fairly quickly and limit your options.\n\tGeepaMoogle: I knew there was some reason why 2/3 homeworlds weren't often used in Binary Homeworlds.\n\n3) TwoShort: Build G1 Twoshort\n\n4) GeepaMoogle: Build Y1 Geepamoogle\n\tGeepaMoogle: We'll try starting with mobility this time. Is there any advice on whether or not to match an exact piece in color/size combo?\n\tTwoShort: Not really; besides getting access to the colors you want, and having the two sizes you want, the only other consideration is what's left in the stash. If you drain the little guys of a particular color, it will make getting to the bigger ones slightly easier, which might be good for your oponent (if you had taken a small green for example) \n\n5) TwoShort: Trade G1 Y1 Twoshort\n\tTwoShort: Stash management is really what much of the strategy is about. Here in the early game, we'll be building a buch of small stuff, but mainly jockeying for the chance to build the bigger stuff. If you build the last 1 pointer of a color, I'll get first chance to build 2 pointers, and so again with 3 pointers. Before long we'll rip through one or more colors (most likely green and/or yellow) and at that point we both want to be the guy with more three pointers, or a monopoly on a color (particularly yellow).\n\n6) GeepaMoogle: Build Y2 Geepamoogle\n\n7) TwoShort: Build G1 Twoshort\n\n8) GeepaMoogle: Trade Y2 G2 Geepamoogle\n\tGeepaMoogle: Was gonna do a trade for green to deny you a y2, but then I figured this way I get a y2 before I clear possible catastrophe in yellow. Besides, either way next move is likely a swap for green.\n\tTwoShort: Yeah, the common way to lock the other guy out of a color is to take all the one points before he gets either that color or access to two points. So that's probably not going to happen to either of us.\n\n9) TwoShort: Discover Y1 Twoshort G3 Grogar\n\tTwoShort: A couple stratagems to be aware of- \r\nThe Factory: If green is sufficiently depleted one can sacrifice my G3, grow twice, and re-grow the same G3 I sacrificed. Technically, one can do this if there are two g2s left assuming one has room to grow that much green without a catastrophe. Practically, I won't do it if it just leaves another G3 available for you to take.\r\nThe Investment: in this strategem, one moves a green to a Y3 system. The other guy won't be able to get that y3 as a ship. After all the yellow is gone, if that green is still alone at the system, you can "cash in" by sacrificeing the green, and growing the Y3.\n\n10) GeepaMoogle: Build Y2 Geepamoogle\n\n11) TwoShort: Build Y2 Grogar\n\tGeepaMoogle: Denying me a large mobile facoty, eh?\n\n12) GeepaMoogle: Discover Y2 Geepamoogle B2 Alpha\n\tGeepaMoogle: Well, my thoughts are that I can use the yellow to get to another medium green. Still not sure how to combat a factory.\n\tGeepaMoogle: Btw, been thinking of possible types of pieces that might be intersting.. Came up with 3 possiblilities.\r\n\r\n1) Summon - Allows any ship in the system to summon any of their other ships of equal or lesser size to their side. Potentially useful as a homeworld color, and may reduce the need for yellow (although yellow are still needed to discover and invade)\r\n\r\n2) Explosives - Any ship in the system will self-destruct if captured, rather than converted. When sacrificed, it gives 1 use per size, reduced by 1 each turn.\r\n\r\n3) Stealth - Allows the use of any enemy technology in the system. Of limited use as prolonged contact between any two sides tends to be short-lived.\r\n\r\nNot sure how these would work out in actual play, but they could present some interesting possiblities.\n\tGeepaMoogle: Forgot to clarify. Ship abilities can only be used by the owner. Planet abilities could be used by anyone in the system.\n\n13) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n14) GeepaMoogle: Discover Y1 Geepamoogle B2 Beta\n\tTwoShort: Combatting a factory is tough short of having your own, which is one reason I like to play green :) Come to think of it, it might be a reason not to start with a G3 in your homeworld. But mostly with yellow you want to threaten catastrophes. By sacrificeing a big yellow you can leap way across the galaxy, or move several ships all at once. Not that you'll actually do it, but you'll constrain my options with the threat of it. Note for example, that I can't grow in either of my systems this turn.\n\n15) TwoShort: Discover Y1 Grogar G2 Gobble\n\tTwoShort: Note though, that while my having a factory might be a factor later, I can't use until those little greens are gone from the stash. At best I could deplete in four turns, which is a long time, especially considering the only thing I'm focussed on for the next few turns is who gets the yellow 3 pointers. (We each get one if neither of us sees a better move than I currently do)\n\tGeepaMoogle: Hmmm, choices.. Send the small yellow to a new b2 planet perhaps? That would allow me some space to try and snatch the yellow, then try to build some greens afterward\n\tTwoShort: That's what I imagined you would do. THen you're ready to grow that y3 if I take the y2, or even sacrtifice the g2 to grow both Ys. I'll presumably split up my yellows next turn so I can cash in my investment at Yolonda once you take the yellows. \n\n16) GeepaMoogle: Build Y2 Geepamoogle\n\n17) TwoShort: Build Y3 Gobble\n\tGeepaMoogle: And now a moment of truth. I would sacrifice the green for yellow, but I have yellow covered well ehough, and need green more. It isn't safe to spawn another at HQ, since there's a green at Yolanda in range. Possibilities to look at. {1} Shift the green to a safer spot. {2} Go ahead and spawn a yellow to change into another color later, giving up the second y3\n\n18) GeepaMoogle: Move Y2 Geepamoogle Beta\n\tTwoShort: Well, I think you should have sacrificed, and traded the y2 at aplpha for a g2 next turn. 3 pointers are just that valuable. It's true that getting locked out of a color makes things difficult, but if that color isn't yellow it's not disasterous all by itself.\n\n19) TwoShort: Sacrifice G1 Yolonda\nBuild Y3 Grogar\n\tTwoShort: So now I'll note that unless you move/trade one of those yellows, I could cause a yellow disaster in your homeworld. Expensively for me, but if there is any move that leaves me with a 3 point, and you with none, I'll almost certainly do it.\n\n20) GeepaMoogle: Sacrifice Y2 Alpha\nMove Y2 Beta Grogar\nMove Y1 Beta Grogar\nCatastrophe Grogar Yellow\n\n21) TwoShort: Build G1 Twoshort\n\tGeepaMoogle: I could take out Grogar, and lose Alhpa and Beta.. The result would be you'd be ahead, but it might mean I gain ground, and ruin whatever plans you might have.\n\n22) GeepaMoogle: Discover G2 Geepamoogle B2 Alpha\n\n23) TwoShort: Build G1 Twoshort\n\tGeepaMoogle: Almost forgot to trigger catastrophe\n\n24) GeepaMoogle: Build Y1 Geepamoogle\n\tTwoShort: You lost two y2s and a y1 to take out my y3 and y2; definitely worth it from a material standpoint. The downside is, catastrophes tend to simplify the game, which tends to favor the leader. Still, I think it was the thing to do.\n\n25) TwoShort: Discover G1 Twoshort B3 Bluestar\n\tGeepaMoogle: Well, it gives me a bit of a chance to try and regroup.\n\n26) GeepaMoogle: Build G1 Alpha\n\tTwoShort: Certainly. As I said, in this case I think it was the way to go. I just mention it because the debate on when to cause a catastrophe is one of the interesting strategic aspects of the game. More stuff can mean more options, and more chances for the underdog to find something clever or the leader to do something dumb. You can now fall back and build some more, but I'll build more and faster because I've got a head start. But then you need to balance that against the pure material balance in the catastrophe. I rate Y3s as so valuable that I think your catastrophe was certainly worth it on those grounds. For whatever it's worth, I should note that every experienced player I've played says I'm way more eager to blow stuff up than they would be. :)\n\n27) TwoShort: Move Y1 Gobble Geepamoogle\n\n28) GeepaMoogle: Trade Y3 R3 Geepamoogle\n\n29) TwoShort: Build Y2 Geepamoogle\n\tTwoShort: I didn't see this before just now, but here's a nasty little move you won't like very much...\n\n30) GeepaMoogle: Trade G1 B1 Alpha\n\tTwoShort: Though it usually isn't there, that's the sort of move I look for every turn: one that does a couple things at once. I get more options (room to grow yellow), and you get less. You basically have to spend next turn flipping your 3 point to red.\n\tTwoShort: Hmm... the more I look at it, I think that's the game. \n\tGeepaMoogle: Plan on cattin the homeworld away, eh? Just as I was going to try to do the same to you. Where did I go wrong?\n\tGeepaMoogle: What if I flip my small yellow instead?\n\tTwoShort: I'll sacrifice my g3 to grow 2 Ys in your homeworld, (and one at gobble) causing the catastrophe anyway. This will leave me with a 3 point and you without one, and unable to immediately build one. Then I just need to make sure you remain unable to build one while I move mine in, turn to red, and take over. Which is why I think you went wrong way back when you let me take the lead in 3 pointers...\n\tTwoShort: Note that when I say "I think that's the game" I don't mean you can't hold me off a little while longer. Rather, I think what you'll need to do to hold me off in the short term will let me get enough of a lead that you won't be able to recover.\n\tGeepaMoogle: Aaah, well, it would seem I am doomed then. Even with advice I am losing badly and quickly.. Believe me, from my POV you are an expert..\n\n31) TwoShort: Build Y2 Gobble\n\n32) GeepaMoogle: Move Y1 Geepamoogle Gobble\n\n33) TwoShort: Sacrifice Y2 Geepamoogle\nMove Y1 Geepamoogle Gobble\nMove Y3 Gobble Bluestar\n\n34) GeepaMoogle: Build G1 Alpha\n\n35) TwoShort: Build G2 Bluestar\n\tGeepaMoogle: My intentions are probably very obvious, but it's my hope to get you to back off.\n\tTwoShort: When I've got an advantage is when I tend to try and push it. I really should have just caused the catastrophe last turn. Your intentions may be obvious now, but I didn't see that move last turn. So now I'm forced to react; I can't let you catch my y3 in a catastrophe.\n\n36) GeepaMoogle: Build Y2 Gobble\nCatastrophe Gobble Yellow\n\tTwoShort: Not that I object to catching your only yellow in a catastrophe, of course.\n\n37) TwoShort: Discover G2 Bluestar Y2 Yolonda\n\tTwoShort: build g2 bluestar\n\n38) GeepaMoogle: Build R1 Geepamoogle\n\n39) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n\tGeepaMoogle: Sadly, at this point, the best I can do is to attempt to chase away the invader green. Not really worth playing out.\n\nHomeworlds Online (SDG# 3382)\nStarted: 2006.5.6, Ended: 2006.6.26\nParticipants: Aaron (S), Laurie_Menke (N)\nWinner: Aaron\n\n1) Laurie_Menke: Homeworld R1 G2 Y3 *\n\tLaurie_Menke: Hi again, Aaron...I think this is the game I most need to practice for the tournament.\n\n2) Aaron: Homeworld Y2 B3 G3\n\tAaron: Same here! Good luck!\n\n3) Laurie_Menke: Build Y1 Laurie_menke\n\tLaurie_Menke: Thanks! You too!\n\n4) Aaron: Build G1 Aaron\n\n5) Laurie_Menke: Discover Y1 Laurie_menke B3 Bigblue\n\n6) Aaron: Discover G1 Aaron B1 Sea\n\n7) Laurie_Menke: Build Y1 Laurie_menke\n\n8) Aaron: Build G1 Aaron\n\n9) Laurie_Menke: Trade Y1 B1 Bigblue\n\n10) Aaron: Trade G1 Y1 Aaron\n\n11) Laurie_Menke: Sacrifice Y1 Laurie_menke\nMove B1 Bigblue Laurie_menke\n\n12) Aaron: Move Y1 Aaron Sea\n\n13) Laurie_Menke: Build B1 Laurie_menke\n\n14) Aaron: Build G1 Aaron\n\n15) Laurie_Menke: Build B2 Laurie_menke\n\n16) Aaron: Trade G1 R1 Aaron\n\n17) Laurie_Menke: Discover B1 Laurie_menke G3 Park\n\n18) Aaron: Build Y1 Sea\n\n19) Laurie_Menke: Build Y1 Laurie_menke\n\n20) Aaron: Trade Y1 R1 Sea\n\n21) Laurie_Menke: Build B2 Park\n\n22) Aaron: Build R2 Sea\n\n23) Laurie_Menke: Trade B2 R2 Park\n\n24) Aaron: Build G1 Aaron\n\n25) Laurie_Menke: Build B2 Park\n\n26) Aaron: Discover R1 Sea G3 Emerald\n\n27) Laurie_Menke: Trade B2 Y2 Park\n\n28) Aaron: Build R2 Emerald\n\n29) Laurie_Menke: Build R3 Park\n\n30) Aaron: Build R3 Sea\n\n31) Laurie_Menke: Discover R2 Park G1 Yard\n\n32) Aaron: Build R3 Aaron\n\n33) Laurie_Menke: Build B2 Park\n\n34) Aaron: Discover R2 Sea B3 Ocean\n\n35) Laurie_Menke: Move R3 Park Yard\n\n36) Aaron: Trade G3 Y3 Aaron\n\n37) Laurie_Menke: Sacrifice Y2 Park\nMove R3 Yard Emerald\nMove R2 Yard Emerald\nCatastrophe Emerald R\n\n38) Aaron: Move R3 Sea Park\n\tLaurie_Menke: I am SOOO glad I saw what you were doing last turn and was able to prepare for it. That was almost the end for me!\n\tAaron: *chuckles evily* Good catch!\n\n39) Laurie_Menke: Sacrifice Y1 Laurie_menke\nMove B2 Park Sea\n\n40) Aaron: Build R1 Park\n\n41) Laurie_Menke: Trade B2 R2 Sea\n\n42) Aaron: Sacrifice Y3 Aaron\nMove R2 Ocean Laurie_menke\nMove R1 Park Laurie_menke\nMove R3 Park Laurie_menke\nCatastrophe Laurie_menke R\n\n43) Laurie_Menke: Trade Y3 R3 Laurie_menke\n\tLaurie_Menke: Well, shoot! I didn't see it coming that time. :o(\n\n44) Aaron: Move Y1 Sea Park\n\n45) Laurie_Menke: Attack G1 Sea\n\n46) Aaron: Sacrifice R1 Aaron\nAttack B1 Park\n\n47) Laurie_Menke: Trade G1 Y1 Sea\n\n48) Aaron: Move R3 Aaron Sea\n\n49) Laurie_Menke: Move R2 Sea Aaron\n\tLaurie_Menke: Hmmm....unless I'm missing something, I think that was a fatal move for you....\n\n50) Aaron: Sacrifice Y1 Park\nMove R3 Sea Aaron\n\tAaron: Not fatal, but possibly draw-inducing.\n\tAaron: doh! I forgot I didn't own yellow there! Good thing I have one in Park. O man, not smart.\n\n51) Laurie_Menke: Move R2 Aaron Sea\n\n52) Aaron: Build B2 Park\n\n53) Laurie_Menke: Move R2 Sea Park\n\n54) Aaron: Build G1 Aaron\n\n55) Laurie_Menke: Attack B2 Park\n\n56) Aaron: Build R1 Aaron\n\n57) Laurie_Menke: Attack B1 Park\n\n58) Aaron: Move R1 Aaron Sea\n\n59) Laurie_Menke: Move Y1 Sea Park\n\n60) Aaron: Trade G1 Y1 Aaron\n\n61) Laurie_Menke: Move R2 Park Sea\n\n62) Aaron: Sacrifice Y1 Aaron\nDiscover R1 Sea Y3 Bananas\n\n63) Laurie_Menke: Move B2 Park Sea\n\n64) Aaron: Discover R1 Bananas Y2 Postit\n\n65) Laurie_Menke: Trade B1 R1 Park\n\n66) Aaron: Build G1 Aaron\n\n67) Laurie_Menke: Build Y1 Park\n\n68) Aaron: Trade G1 B1 Aaron\n\n69) Laurie_Menke: Trade R3 Y3 Laurie_menke\n\n70) Aaron: Discover B1 Aaron G1 Emeralds\n\n71) Laurie_Menke: Discover B1 Laurie_menke Y1 Luella\n\n72) Aaron: Build B2 Emeralds\n\n73) Laurie_Menke: Build Y2 Laurie_menke\n\n74) Aaron: Trade B2 R2 Emeralds\n\n75) Laurie_Menke: Trade Y3 R3 Laurie_menke\n\n76) Aaron: Build B2 Emeralds\n\n77) Laurie_Menke: Move B2 Laurie_menke Luella\n\n78) Aaron: Trade B2 G2 Emeralds\n\n79) Laurie_Menke: Build Y3 Laurie_menke\n\n80) Aaron: Build G1 Aaron\n\n81) Laurie_Menke: Sacrifice Y3 Laurie_menke\nMove B2 Sea Aaron\nMove B2 Luella Aaron\nMove B1 Luella Aaron\nCatastrophe Aaron Blue\n\n82) Aaron: Build G2 Aaron\n\n83) Laurie_Menke: Trade R2 B2 Sea\n\n84) Aaron: Discover G2 Aaron Y3 Bananas\n\n85) Laurie_Menke: Move R3 Laurie_menke Emeralds\n\n86) Aaron: Sacrifice G2 Emeralds\nBuild G2 Aaron\nBuild G3 Bananas\n\n87) Laurie_Menke: Sacrifice Y1 Park\nMove R3 Emeralds Bananas\n\n88) Aaron: Sacrifice R1 Postit\nAttack R3 Bananas\n\tAaron: I'm so sorry, Laurie, but this is a necessary lesson to learn about sacrificing =/\n\n89) Laurie_Menke: Build Y1 Laurie_menke\n\tLaurie_Menke: Argh! You're right...I really need to learn that lesson. I forget about sacrificing reds all the time. Grrr... ;o)\n\tLaurie_Menke: Well, this is not looking too good for me right now, is it? ;o)\n\n90) Aaron: Move R3 Bananas Laurie_menke\n\n91) Laurie_Menke: Move Y2 Laurie_menke Sea\n\tAaron: Sorry =/\n\tAaron: You did superbly well blocking me out of certain colours, btw. You really had me searching for good moves.\n\tLaurie_Menke: :o) Thanks. I just need to keep an eye out for that sacrificing red move. ;o) Thanks for the lesson!\n\tLaurie_Menke: See you in the tourney! :o)\n\n92) Aaron: Attack Y1 Laurie_menke\n\tAaron: Cheers!\n\n\nHomeworlds Online (SDG# 3426)\nStarted: 2006.5.10, Ended: 2006.5.16\nParticipants: Danner (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld B2 Y3 G3\n\n2) Danner: Homeworld Y1 G1 R3 *\n\n3) jeep: Build G1 Jeep\n\tjeep: Hmm... small universe...\n\n4) Danner: Build R1 Danner\n\n5) jeep: Trade G1 R1 Jeep\n\tDanner: :)\n\n6) Danner: Discover R1 Danner B3 Tradecenter\n\n7) jeep: Build G1 Jeep\n\n8) Danner: Trade R1 G1 Tradecenter\n\n9) jeep: Build G2 Jeep\n\n10) Danner: Build G2 Tradecenter\n\n11) jeep: Sacrifice G2 Jeep\nBuild R1 Jeep\nBuild R1 Jeep\n\n12) Danner: Trade G1 Y1 Tradecenter\n\n13) jeep: Move R1 Jeep Danner\n\n14) Danner: Attack R1N Danner\n\n15) jeep: Move R1 Jeep Danner\n\n16) Danner: Move R1 Danner Tradecenter\n\n17) jeep: Sacrifice G3 Jeep\nBuild R2 Danner\nBuild R2 Danner\nBuild R2 Jeep\nCatastrophe Danner R\n\tDanner: :)\n\tjeep: Nod, it was a lost cause. Thanks for the game.\n\tjeep: You could have sac'd the red 1 to take over the other, I guess...\n\tDanner: wow, you are great! :)\n\tDanner: create catastrophe with moving in ships.\r\nbut with building directly im the enemy system? :D Cool strategy :)\n\tDanner: thx for the experience :)\n\tjeep: Heh, not sure I'm "great" but yeah, you have to look for catastrophes with both building and moving. And, of course, color changing... ;) Lots of ways to make catastrophes.\n\n\nHomeworlds Online (SDG# 3408)\nStarted: 2006.5.13, Ended: 2006.9.12\nParticipants: HappyWulf (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld R2 B1 G3\n\n2) HappyWulf: Homeworld B2 Y1 G3\n\n3) andylooney: Build G1 Andylooney\n\n4) HappyWulf: Build G1 Happywulf\n\n5) andylooney: Trade G3 Y3 Andylooney\n\n6) HappyWulf: Trade G1 B1 Happywulf\n\n7) andylooney: Build Y1 Andylooney\n\n8) HappyWulf: Build B1 Happywulf\n\n9) andylooney: Build Y1 Andylooney\n\n10) HappyWulf: Discover B1 Happywulf G3 Coffee\n\n11) andylooney: Discover Y1 Andylooney B3 Doughnuts\n\n12) HappyWulf: Build B2 Coffee\n\n13) andylooney: Build Y2 Andylooney\n\n14) HappyWulf: Trade B2 Y2 Coffee\n\n15) andylooney: Trade Y1 R1 Andylooney\n\n16) HappyWulf: Build B2 Happywulf\n\n17) andylooney: Discover Y2 Andylooney B3 Milk\n\n18) HappyWulf: Build B2 Coffee\n\n19) andylooney: Discover R1 Andylooney B3 Cookies\n\n20) HappyWulf: Trade B2 R2 Happywulf\n\n21) andylooney: Build G1 Andylooney\n\n22) HappyWulf: Build B2 Happywulf\n\n23) andylooney: Discover G1 Andylooney Y3 Money\n\n24) HappyWulf: Move R2 Happywulf Money\n\n25) andylooney: Sacrifice G1 Money\nBuild R1 Cookies\n\n26) HappyWulf: Trade B2 R2 Happywulf\n\n27) andylooney: Discover G1 Andylooney Y3 Thesun\n\n28) HappyWulf: Sacrifice Y2 Coffee\nMove B1 Coffee Andylooney\nMove B2 Coffee Andylooney\n\n29) andylooney: Attack B2S Andylooney\n\n30) HappyWulf: Trade R2 Y2 Happywulf\n\n31) andylooney: Discover B2 Andylooney G3 Chocolate\n\n32) HappyWulf: Trade B1 R1 Happywulf\n\n33) andylooney: Attack B1S Andylooney\n\n34) HappyWulf: Build R2 Happywulf\n\n35) andylooney: Trade R1 G1 Cookies\n\n36) HappyWulf: Move Y2 Happywulf Money\n\n37) andylooney: Trade B1 G1 Andylooney\n\n38) HappyWulf: Move R2 Happywulf Cookies\n\n39) andylooney: Build G2 Thesun\n\n40) HappyWulf: Move G3 Happywulf Doughnuts\n\n41) andylooney: Sacrifice G2 Thesun\nBuild Y1 Milk\nBuild Y2 Andylooney\n\n42) HappyWulf: Attack R1 Cookies\n\n43) andylooney: Trade Y1 R1 Milk\n\n44) HappyWulf: Move R2 Money Andylooney\n\n45) andylooney: Sacrifice G1 Cookies\nBuild R3 Milk\n\n46) HappyWulf: Sacrifice R1 Cookies\nAttack Y1 Doughnuts\n\n47) andylooney: Move R3 Milk Happywulf\n\n48) HappyWulf: Sacrifice G3 Doughnuts\nBuild R1 Happywulf\nBuild R3 Cookies\nBuild R3 Andylooney\n\tHappyWulf: Good game in Martian Chess! =3 It was quite close for a long while. *Offers a paw in sportsmanship*\n\tandylooney: yup, it was a good game!\r\n\n\n49) andylooney: Move R1 Milk Happywulf\nCatastrophe Happywulf Red\n\n\tandylooney: Thanks for playing!\n\nHomeworlds Online (SDG# 3430)\nVariants: "No undo"\nStarted: 2006.5.14, Ended: 2006.5.15\nParticipants: Danner (S), Uglyfoot (N)\nWinner: Danner\n\n1) Uglyfoot: Homeworld Y1 B3 G3\n\n2) Danner: Homeworld G2 Y2 R3 *\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) Danner: Build R1 Danner\n\n5) Uglyfoot: Discover G1 Uglyfoot Y2 Waystation\n\tUglyfoot: That is an interesting start.\r\n\n\n6) Danner: Move R3 Danner Uglyfoot\n\tDanner: :)\n\n\tDanner: thx the game:)\n\nHomeworlds Online (SDG# 3462)\nVariants: "No undo"\nStarted: 2006.5.14, Ended: 2006.5.14\nParticipants: Sztyuni (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld Y1 G2 R3 *\n\n2) Sztyuni: Homeworld R3 Y3 B3 *\n\tDanner: hi :)\n\tSztyuni: szai :)\n\n3) Danner: Build R1 Danner\n\n4) Sztyuni: Trade B3 G3 Sztyuni\n\n5) Danner: Move R3 Danner Sztyuni\n\n6) Sztyuni: Attack R3 Sztyuni\n\n7) Danner: Build R1 Danner\n\n8) Sztyuni: Build G1 Sztyuni\n\n9) Danner: Discover R1 Danner B3 Deathstar\n\n10) Sztyuni: Move R3 Sztyuni Danner\n\n11) Danner: Build R1 Danner\n\n12) Sztyuni: Attack R1 Danner\n\n13) Danner: Build R2 Danner\n\n14) Sztyuni: Attack R2 Danner\n\n15) Danner: Trade R1 Y1 Deathstar\n\n16) Sztyuni: Pass\n\n17) Danner: Move Y1 Deathstar Danner\nCatastrophe Danner R\n\n18) Sztyuni: Discover G1 Sztyuni B2 Oreglyuk\n\n19) Danner: Build Y1 Danner\n\n20) Sztyuni: Build G1 Oreglyuk\n\n21) Danner: Discover Y1 Danner B3 Tradecenter\n\n22) Sztyuni: Build G1 Oreglyuk\n\n23) Danner: Build Y2 Danner\n\n24) Sztyuni: Build G2 Oreglyuk\n\n25) Danner: Move Y1 Danner Tradecenter\nCatastrophe Oreglyuk G\n\n26) Sztyuni: Build G1 Sztyuni\n\n27) Danner: Build Y2 Danner\n\n28) Sztyuni: Discover G3 Sztyuni B2 Nemlyuk\n\n29) Danner: Trade Y1 R1 Tradecenter\n\n30) Sztyuni: Build G1 Nemlyuk\n\n31) Danner: Move Y2 Danner Sztyuni\n\n32) Sztyuni: Trade G1 Y1 Nemlyuk\n\n33) Danner: Attack G1S Sztyuni\n\tDanner: :)\n\n\nHomeworlds Online (SDG# 3464)\nVariants: "No undo"\nStarted: 2006.5.14, Ended: 2006.5.15\nParticipants: Sztyuni (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld G1 B2 R3\n\n2) Sztyuni: Homeworld G3 B2 R3\n\n3) Danner: Build R1 Danner\n\n4) Sztyuni: Build R1 Sztyuni\n\n5) Danner: Trade R1 Y1 Danner\n\n6) Sztyuni: Build R1 Sztyuni\n\n7) Danner: Build R1 Danner\n\n8) Sztyuni: Build R2 Sztyuni\n\n9) Danner: Build R2 Danner\n\n10) Sztyuni: Sacrifice R3 Sztyuni\nPass\nPass\nPass\n\n11) Danner: Discover R2 Danner G3 Constructcenter\n\n12) Sztyuni: Trade R1 Y1 Sztyuni\n\n13) Danner: Trade R1 B1 Danner\n\n14) Sztyuni: Discover R2 Sztyuni G1 Ja\n\n15) Danner: Move B1 Danner Constructcenter\n\n16) Sztyuni: Build R1 Sztyuni\n\n17) Danner: Build R1 Constructcenter\n\n18) Sztyuni: Build R2 Sztyuni\n\n19) Danner: Build R3 Danner\n\n20) Sztyuni: Build R3 Ja\n\n21) Danner: Build B1 Constructcenter\n\n22) Sztyuni: Build Y1 Sztyuni\n\n23) Danner: Build Y2 Danner\n\n24) Sztyuni: Move Y1 Sztyuni Ja\n\n25) Danner: Sacrifice Y2 Danner\nMove R1 Constructcenter Ja\nMove R2 Constructcenter Ja\nCatastrophe Ja R\n\n26) Sztyuni: Trade R1 B1 Sztyuni\n\n27) Danner: Build Y2 Danner\n\n28) Sztyuni: Move B1 Sztyuni Ja\n\n29) Danner: Build Y2 Danner\n\n30) Sztyuni: Build R1 Sztyuni\n\n31) Danner: Trade B1 R1 Constructcenter\n\n32) Sztyuni: Move R1 Sztyuni Ja\n\n33) Danner: Build R2 Constructcenter\n\n34) Sztyuni: Build B1 Ja\n\n35) Danner: Build B2 Constructcenter\n\n36) Sztyuni: Move B1 Ja Sztyuni\n\n37) Danner: Sacrifice Y2 Danner\nMove R3 Danner Constructcenter\nMove R3 Constructcenter Ja\n\n38) Sztyuni: Build B3 Sztyuni\n\tDanner: Ma kivételesen csak két órám van, így napközben is lehetek.\n\tDanner: mék kajáni majd jövök :)\n\tDanner: re\n\tDanner: na most mán foglalt lesz a gépterem asszem, szal majd délután harcolunk :) (függõ vok :D)\n\n39) Danner: Sacrifice Y2 Danner\nMove B1 Constructcenter Ja\nMove B1 Ja Sztyuni\nCatastrophe Sztyuni B\n\n40) Sztyuni: Build Y2 Sztyuni\n\n41) Danner: Build Y2 Danner\n\n42) Sztyuni: Build R2 Ja\n\n43) Danner: Build R3 Danner\n\n44) Sztyuni: Sacrifice Y2 Sztyuni\nMove R1 Sztyuni Danner\nMove R2 Sztyuni Danner\nCatastrophe Danner R\n\n45) Danner: Sacrifice Y1 Danner\nMove R3 Ja Sztyuni\n\n46) Sztyuni: Move R1 Ja Sztyuni\n\tDanner: Oh no, I will be destroyed!\n\n47) Danner: Sacrifice R2 Constructcenter\nAttack Y1S Sztyuni\nAttack R1S Sztyuni\n\n\nHomeworlds Online (SDG# 3469)\nVariants: "No undo"\nStarted: 2006.5.15, Ended: 2006.7.30\nParticipants: Uglyfoot (S), Danner (N)\nWinner: Uglyfoot\n\n1) Danner: Homeworld R3 B2 G3\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\tUglyfoot: Shall we try that again?\n\n3) Danner: Build G1 Danner\n\tDanner: yes :)\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Uglyfoot: Discover G1 Uglyfoot B2 Gateway\n\n7) Danner: Build Y1 Danner\n\n8) Uglyfoot: Build G1 Gateway\n\n9) Danner: Build Y2 Danner\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) Danner: Trade Y2 R2 Danner\n\n12) Uglyfoot: Trade G1 R1 Gateway\n\n13) Danner: Build R1 Danner\n\n14) Uglyfoot: Build G1 Gateway\n\n15) Danner: Build Y2 Danner\n\n16) Uglyfoot: Build G2 Gateway\n\n17) Danner: Build G2 Danner\n\n18) Uglyfoot: Trade G2 Y2 Gateway\n\n19) Danner: Discover R2 Danner B1 Gate\n\n20) Uglyfoot: Discover G1 Gateway R1 Epsilon\n\n21) Danner: Move G2 Danner Gate\n\n22) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Epsilon\nBuild G2 Gateway\nBuild G3 Uglyfoot\n\n23) Danner: Build G3 Gate\n\n24) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y2 Gateway\nBuild Y3 Gateway\n\n25) Danner: Sacrifice Y2 Danner\nMove Y1 Danner Gate\nMove Y1 Gate Gateway\nCatastrophe Gateway Y\n\n26) Uglyfoot: Trade G1 Y1 Gateway\n\n27) Danner: Build Y2 Danner\n\n28) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Gateway\nBuild R2 Gateway\nBuild G3 Uglyfoot\n\n29) Danner: Sacrifice Y1 Danner\nMove G3 Gate Gateway\n\n30) Uglyfoot: Move G1 Uglyfoot Gateway\nCatastrophe Gateway G\n\n31) Danner: Build G1 Danner\n\n32) Uglyfoot: Trade R1 G1 Gateway\n\n33) Danner: Build Y1 Danner\n\n34) Uglyfoot: Build G2 Uglyfoot\n\n35) Danner: Build G3 Gate\n\n36) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild R1 Gateway\nBuild Y2 Gateway\n\tDanner: Sorry, I had net problems, but now it's ok.\n\n37) Danner: Sacrifice Y2 Danner\nMove G3 Danner Gate\nMove G3 Gate Gateway\n\n38) Uglyfoot: Sacrifice Y2 Gateway\nMove R2 Gateway Epsilon\nMove R2 Epsilon Danner\n\n39) Danner: Sacrifice Y1 Danner\nMove G3 Gateway Uglyfoot\n\n40) Uglyfoot: Sacrifice R1 Gateway\nAttack G3 Uglyfoot\n\n41) Danner: Trade G2 Y2 Gate\n\n42) Uglyfoot: Trade G3 R3 Uglyfoot\n\n43) Danner: Move G3 Gate Danner\n\n44) Uglyfoot: Attack R1 Danner\n\n45) Danner: Attack R2S Danner\n\n46) Uglyfoot: Attack G1 Danner\n\n47) Danner: Attack G1S Danner\n\n48) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Gateway\nBuild G3 Uglyfoot\nBuild R1 Uglyfoot\n\n49) Danner: Attack R1S Danner\n\n50) Uglyfoot: Discover G2 Gateway Y1 Eradani\n\n51) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild R2 Gate\nBuild R3 Gate\n\n52) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Gateway\nBuild Y2 Gateway\n\n53) Danner: Trade G3 Y3 Danner\n\n54) Uglyfoot: Sacrifice Y2 Gateway\nMove R1 Uglyfoot Gateway\nMove R1 Gateway Gate\nCatastrophe Gate R\n\n55) Danner: Build G3 Danner\n\n56) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Eradani\nBuild Y2 Gateway\nBuild R1 Uglyfoot\n\n57) Danner: Move G3 Danner Epsilon\n\n58) Uglyfoot: Move R1 Uglyfoot Gateway\n\n59) Danner: Move R1 Danner Gate\n\n60) Uglyfoot: Sacrifice G3 Gateway\nBuild G3 Gateway\nBuild R2 Gateway\nBuild R2 Uglyfoot\n\n61) Danner: Build Y2 Danner\n\n62) Uglyfoot: Move G3 Gateway Gate\n\n\nHomeworlds Online (SDG# 3456)\nStarted: 2006.5.15, Ended: 2006.6.3\nParticipants: Lexicon (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y2 B1 G3\n\n2) Lexicon: Homeworld G2 B3 Y3\n\n3) jeep: Build G1 Jeep\n\n4) Lexicon: Build Y1 Lexicon\n\n5) jeep: Build G1 Jeep\n\n6) Lexicon: Build Y1 Lexicon\n\n7) jeep: Trade G1 Y1 Jeep\n\n8) Lexicon: Trade Y1 G1 Lexicon\n\n9) jeep: Discover G1 Jeep B3 Moon\n\n10) Lexicon: Trade Y1 B1 Lexicon\n\n11) jeep: Build G1 Jeep\n\n12) Lexicon: Discover G1 Lexicon B1 Blue\n\n13) jeep: Build G2 Moon\n\n14) Lexicon: Build G2 Blue\n\n15) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Moon\nBuild Y1 Jeep\n\n16) Lexicon: Build Y1 Lexicon\n\n17) jeep: Trade G3 Y3 Moon\n\n18) Lexicon: Sacrifice Y1 Lexicon\nDiscover G1 Blue Y3 Yellow\n\n19) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y1 Moon\nBuild Y2 Moon\n\n20) Lexicon: Build G3 Yellow\n\n21) jeep: Build G3 Moon\n\n22) Lexicon: Sacrifice G3 Yellow\nBuild G3 Yellow\nBuild B2 Lexicon\nBuild Y2 Lexicon\n\n23) jeep: Trade G3 R3 Moon\n\n24) Lexicon: Sacrifice B2 Lexicon\nTrade Y2 R2 Lexicon\nTrade G2 Y2 Blue\n\n25) jeep: Sacrifice Y3 Moon\nMove G1 Jeep Yellow\nMove G1 Moon Blue\nMove G1 Blue Yellow\nCatastrophe Yellow G\n\n26) Lexicon: Build Y3 Lexicon\n\n27) jeep: Discover Y1 Moon G1 Stage\n\n28) Lexicon: Sacrifice Y3 Lexicon\nMove Y2 Blue Moon\nMove Y2 Moon Jeep\nPass\nCatastrophe Jeep Yellow\n\n29) jeep: Build G1 Jeep\n\n30) Lexicon: Build Y1 Lexicon\n\n31) jeep: Sacrifice G3 Jeep\nBuild G1 Moon\nBuild G2 Moon\nBuild G3 Jeep\n\n32) Lexicon: Discover B1 Lexicon Y1 Yellow\n\n33) jeep: Build Y2 Stage\n\n34) Lexicon: Discover B1 Yellow G3 Green\n\n35) jeep: Build G3 Jeep\n\n36) Lexicon: Build B1 Green\n\n37) jeep: Sacrifice Y2 Stage\nMove R3 Moon Stage\nMove R3 Stage Green\n\n38) Lexicon: Sacrifice Y3 Lexicon\nMove B1 Green Jeep\nMove B1 Green Jeep\nMove R2 Lexicon Jeep\n\tLexicon: That icy barren dessert and accompanying greenopoly you have wasn't worth it, it seems.\n\tLexicon: This'll probably be the end of me... my timing was too slow.\n\n39) jeep: Sacrifice R3 Green\nAttack B1S Jeep\nAttack B1S Jeep\nAttack R2S Jeep\n\tLexicon: toga party at jeep's place!\n\n\tLexicon: Am I screwed or totally screwed, that is the question. :)\n\tjeep: Uh... totally.\n\nHomeworlds Online (SDG# 3494)\nStarted: 2006.5.17, Ended: 2006.5.31\nParticipants: Danner (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y2 B3 G3\n\n2) Danner: Homeworld Y1 B2 G3\n\n3) jeep: Build G1 Jeep\n\tDanner: Almost the same. :)\n\n4) Danner: Build G1 Danner\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Danner: Trade G1 Y1 Danner\n\tjeep: Sorry, forgot my pledge to not move in HW while at work...\n\n7) jeep: Build Y2 Jeep\n\tDanner: no problem :)\n\n8) Danner: Build G1 Danner\n\n9) jeep: Discover Y2 Jeep B1 Moon\n\n10) Danner: Discover Y1 Danner G3 Earth\n\n11) jeep: Build G1 Jeep\n\n12) Danner: Trade G1 R1 Danner\n\n13) jeep: Move G1 Jeep Moon\n\n14) Danner: Build G1 Danner\n\n15) jeep: Build G1 Jeep\n\n16) Danner: Move G1 Danner Earth\n\tDanner: ooops, sorry\n\n17) jeep: Discover Y1 Jeep B1 Stars\n\n\tDanner: I give up :)\n\nHomeworlds Online (SDG# 3491)\nVariants: "No undo"\nStarted: 2006.5.18, Ended: 2006.5.21\nParticipants: Sztyuni (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld Y1 B2 G3\n\n2) Sztyuni: Homeworld B2 G3 R3\n\n3) Danner: Build G1 Danner\n\n4) Sztyuni: Build R1 Sztyuni\n\n5) Danner: Trade G1 R1 Danner\n\n6) Sztyuni: Trade R1 Y1 Sztyuni\n\n7) Danner: Build G1 Danner\n\n8) Sztyuni: Build Y1 Sztyuni\n\n9) Danner: Build R1 Danner\n\n10) Sztyuni: Build Y2 Sztyuni\n\n11) Danner: Discover G1 Danner Y3 Wormhole\n\n12) Sztyuni: Discover Y1 Sztyuni G1 Joskabacsi\n\n13) Danner: Build G1 Wormhole\n\n14) Sztyuni: Move R3 Sztyuni Joskabacsi\n\n15) Danner: Discover G1 Wormhole B1 Market\n\n16) Sztyuni: Build Y2 Sztyuni\n\n17) Danner: Build G2 Market\n\n18) Sztyuni: Trade Y2 R2 Sztyuni\n\n19) Danner: Trade G2 Y2 Market\n\n20) Sztyuni: Move R3 Joskabacsi Wormhole\n\n21) Danner: Move G1 Wormhole Danner\n\n22) Sztyuni: Trade Y2 G2 Sztyuni\n\n23) Danner: Build Y2 Market\n\n24) Sztyuni: Move G2 Sztyuni Joskabacsi\n\n25) Danner: Discover Y2 Market G3 Earth\n\n26) Sztyuni: Move G2 Joskabacsi Wormhole\n\n27) Danner: Sacrifice G3 Danner\nBuild Y2 Market\nBuild Y3 Market\nBuild Y3 Earth\n\n28) Sztyuni: Move G2 Wormhole Danner\n\n29) Danner: Move Y2 Earth Danner\n\n30) Sztyuni: Move R3 Wormhole Danner\n\n31) Danner: Build R1 Danner\nCatastrophe Danner R\n\n32) Sztyuni: Build Y3 Joskabacsi\n\n33) Danner: Trade Y2 R2 Danner\n\n34) Sztyuni: Move Y3 Joskabacsi Sztyuni\n\n35) Danner: Build Y2 Earth\n\n36) Sztyuni: Move Y1 Sztyuni Market\nCatastrophe Market Y\n\n37) Danner: Attack G2S Danner\n\n38) Sztyuni: Build Y1 Joskabacsi\n\n39) Danner: Move Y3 Earth Market\n\n40) Sztyuni: Build Y2 Sztyuni\n\n41) Danner: Sacrifice G2 Danner\nBuild Y2 Earth\nBuild Y3 Market\n\n42) Sztyuni: Trade Y3 R3 Sztyuni\n\n43) Danner: Discover Y2 Earth R1 Mars\n\n44) Sztyuni: Move R3 Sztyuni Market\n\n45) Danner: Sacrifice R2 Danner\nAttack R3S Market\nPass\n\n46) Sztyuni: Build Y3 Sztyuni\n\n47) Danner: Sacrifice Y2 Earth\nMove Y2 Mars Sztyuni\nMove Y3 Market Sztyuni\n\n48) Sztyuni: Trade Y3 R3 Sztyuni\n\n49) Danner: Sacrifice R3 Market\nAttack R2S Sztyuni\nAttack R3S Sztyuni\nAttack Y2S Sztyuni\n\n\nHomeworlds Online (SDG# 3465)\nStarted: 2006.5.19, Ended: 2007.8.31\nParticipants: ratonlaveurgarou (S), andylooney (N)\nWinner: andylooney\n\n1) andylooney: Homeworld R2 B1 G3\n\n2) ratonlaveurgarou: Homeworld G1 B2 R3\n\n3) andylooney: Build G1 Andylooney\n\n4) ratonlaveurgarou: Build R1 Ratonlaveurgarou\n\n5) andylooney: Trade G1 R1 Andylooney\n\n6) ratonlaveurgarou: Pass\n\n7) andylooney: Build G1 Andylooney\n\n8) ratonlaveurgarou: Trade R1 Y1 Ratonlaveurgarou\n\n9) andylooney: Trade G3 Y3 Andylooney\n\n10) ratonlaveurgarou: Discover R3 Ratonlaveurgarou Y3 Sunflower\n\n11) andylooney: Discover R1 Andylooney G3 Paradise\n\n12) ratonlaveurgarou: Build Y1 Ratonlaveurgarou\n\n13) andylooney: Build G1 Andylooney\n\tandylooney: Very sorry to have been away so long, but now that we're done with the summer trade shows, I'll hopefully be able to get back on top of this.\n\n14) ratonlaveurgarou: Build Y1 Ratonlaveurgarou\n\n15) andylooney: Build Y2 Andylooney\n\n16) ratonlaveurgarou: Discover Y1 Ratonlaveurgarou R3 Coquelicot\n\n17) andylooney: Build G2 Andylooney\n\n\nHomeworlds Online (SDG# 3538)\nStarted: 2006.5.22, Ended: 2006.7.19\nParticipants: cobalt (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld G2 B1 Y3\n\n2) cobalt: Homeworld G3 B2 Y3\n\n3) Keith: Build Y1 Keith\n\n4) cobalt: Build Y1 Cobalt\n\n5) Keith: Build Y1 Keith\n\n6) cobalt: Trade Y1 G1 Cobalt\n\n7) Keith: Trade Y1 B1 Keith\n\n8) cobalt: Build G1 Cobalt\n\n9) Keith: Trade Y1 G1 Keith\n\n10) cobalt: Trade G1 B1 Cobalt\n\n11) Keith: Build B2 Keith\n\n12) cobalt: Build B2 Cobalt\n\n13) Keith: Trade B2 Y2 Keith\n\n14) cobalt: Discover B1 Cobalt G1 Persephone\n\n15) Keith: Discover B1 Keith G3 Greenleaf\n\n16) cobalt: Build Y1 Cobalt\n\n\n17) Keith: Move Y2 Keith Greenleaf\n\n18) cobalt: Build G2 Cobalt\n\n19) Keith: Discover G1 Keith B3 Miranda\n\n20) cobalt: Trade B1 Y1 Persephone\n\n21) Keith: Build G2 Miranda\n\n22) cobalt: Discover G1 Cobalt Y1 Lobsterback\n\n23) Keith: Sacrifice G2 Miranda\nBuild Y2 Keith\nBuild B1 Greenleaf\n\n24) cobalt: Discover G1 Lobsterback Y3 Labrador\n\n25) Keith: Discover B1 Greenleaf B2 Bluesun\n\n26) cobalt: Move B2 Cobalt Persephone\n\tcobalt: I have a Blue Sun t-shirt\n\n27) Keith: Trade Y2 R2 Keith\n\tKeith: Cool. I had noticed the Firefly/Serenity system naming. \n\n28) cobalt: Build B3 Persephone\n\tcobalt: I actually didn't do that on purpose, Persephone is just a lovely name.\n\n29) Keith: Build B3 Greenleaf\n\tKeith: Oh. Well, that is why there is a Miranda and a Greenleaf. Labrador seemed to be a break in the pattern that I was largely responsible for but then I don't know Firefly/Serenity that well.\n\n30) cobalt: Trade B3 G3 Persephone\n\tcobalt: I don't remember Greenleaf. Which episode was that?\n\n31) Keith: Move B3 Greenleaf Persephone\n\tKeith: Ariel. Greenleaf is mentioned in "Safe" as a location likely to have medical facilities. http://en.wikipedia.org/wiki/List_of_Firefly_planets_and_moons\n\tKeith: My memory was Ariel. Wikipedia says otherwise.\n\n32) cobalt: Sacrifice Y1 Persephone\nMove G3 Persephone Greenleaf\n\tcobalt: This turn will be dealt with by Tuesday.\n\tKeith: No problem. Thank you for the notice.\n\n33) Keith: Build B3 Greenleaf\n\tKeith: I had not thought of that.\n\n34) cobalt: Sacrifice G3 Greenleaf\nBuild G2 Cobalt\nBuild G3 Labrador\nPass\n\n35) Keith: Sacrifice Y2 Greenleaf\nMove G1 Miranda Persephone\nMove G1 Persephone Cobalt\nCatastrophe Cobalt Green\n\n\tKeith: Thank you for the game. I think I gained my advantage when I had a red ship while you did not.\n\nHomeworlds Online (SDG# 3542)\nStarted: 2006.5.22, Ended: 2007.2.19\nParticipants: TwoShort (S), andylooney (N)\nWinner: TwoShort\n\n1) andylooney: Homeworld B2 R1 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Here I was all set to spring my surprise homeworld selection on you. \n\n3) andylooney: Build G1 Andylooney\n\n4) TwoShort: Build G1 Twoshort\n\n5) andylooney: Trade G3 Y3 Andylooney\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) andylooney: Build G1 Andylooney\n\n8) TwoShort: Build Y1 Twoshort\n\n9) andylooney: Discover G1 Andylooney Y3 Money\n\n10) TwoShort: Discover Y1 Twoshort G2 Garden\n\n11) andylooney: Build G1 Andylooney\n\n12) TwoShort: Build G2 Twoshort\n\n13) andylooney: Discover G1 Andylooney Y3 Gold\n\tandylooney: Very sorry to have been away so long, but now that we're done with the summer trade shows, I'll hopefully be able to get back on top of this.\n\n14) TwoShort: Discover G2 Twoshort Y2 Yoyo\n\n15) andylooney: Build Y1 Andylooney\n\n16) TwoShort: Build Y2 Twoshort\n\n17) andylooney: Discover Y1 Andylooney G3 Paradise\n\n18) TwoShort: Trade Y1 R1 Twoshort\n\n\nHomeworlds Online (SDG# 3541)\nStarted: 2006.5.23, Ended: 2006.8.31\nParticipants: Danner (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tTwoShort: Greetings\n\n2) Danner: Homeworld Y1 B2 G3\n\tDanner: Hi :)\n\n3) TwoShort: Build G1 Twoshort\n\n4) Danner: Build G1 Danner\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Danner: Build G1 Danner\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Danner: Trade G1 R1 Danner\n\n9) TwoShort: Build Y2 Twoshort\n\n10) Danner: Build R1 Danner\n\n11) TwoShort: Build G1 Twoshort\n\n12) Danner: Build R2 Danner\n\n13) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n14) Danner: Move R1 Danner Grogar\n\n15) TwoShort: Trade Y2 R2 Twoshort\n\n16) Danner: Attack Y1N Grogar\n\n17) TwoShort: Move R2 Twoshort Grogar\n\n18) Danner: Move G3 Danner Grogar\n\n19) TwoShort: Sacrifice Y1 Twoshort\nDiscover R2 Grogar G1 Glork\n\n20) Danner: Sacrifice G3 Grogar\nBuild R2 Grogar\nBuild R3 Grogar\nBuild R3 Danner\n\n21) TwoShort: Build G2 Twoshort\n\n22) Danner: Move R3 Grogar Glork\n\n23) TwoShort: Trade G2 Y2 Twoshort\n\n24) Danner: Attack R2N Glork\n\n25) TwoShort: Build G2 Twoshort\n\n26) Danner: Build R3 Grogar\n\n27) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n28) Danner: Trade R3 G3 Danner\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n30) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild Y1 Grogar\nBuild Y2 Grogar\n\n31) TwoShort: Sacrifice Y2 Twoshort\nMove G2 Yolonda Danner\nMove G1 Yolonda Danner\nCatastrophe Danner Green\n\n\nHomeworlds Online (SDG# 3484)\nVariants: "No undo"\nStarted: 2006.5.23, Ended: 2006.5.27\nParticipants: Danner (S), Calavera (N)\nWinner: Calavera\n\n1) Calavera: Homeworld B2 Y3 G3\n\n2) Danner: Homeworld Y1 B2 G3\n\n3) Calavera: Build G1 Calavera\n\n4) Danner: Build G1 Danner\n\n5) Calavera: Trade G1 Y1 Calavera\n\n\tDanner: Sorry, I had net problems.\n\nHomeworlds Online (SDG# 3549)\nVariants: "No undo"\nStarted: 2006.5.24, Ended: 2006.8.21\nParticipants: Cerulean (S), Danner (N)\nWinner: Cerulean\n\n1) Danner: Homeworld Y1 B2 G3\n\n2) Cerulean: Homeworld Y3 B1 G3\n\n3) Danner: Build G1 Danner\n\n4) Cerulean: Build G1 Cerulean\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Cerulean: Build G1 Cerulean\n\n7) Danner: Build G1 Danner\n\n8) Cerulean: Trade G1 Y1 Cerulean\n\n9) Danner: Build Y2 Danner\n\n10) Cerulean: Build Y2 Cerulean\n\n11) Danner: Trade Y1 R1 Danner\n\n12) Cerulean: Discover Y2 Cerulean G2 Freedonia\n\n13) Danner: Discover Y2 Danner G3 Stargate :)\n\n14) Cerulean: Trade G1 R1 Cerulean\n\n15) Danner: Build R1 Danner\n\n16) Cerulean: Build R2 Cerulean\n\n17) Danner: Move R1 Danner Stargate\n\n18) Cerulean: Trade R1 B1 Cerulean\n\n19) Danner: Build Y1 Stargate\n\n20) Cerulean: Build G1 Cerulean\n\n21) Danner: Discover Y1 Stargate G2 Xx\n\n22) Cerulean: Discover G1 Cerulean B2 Sylvania\n\n23) Danner: Trade G1 B1 Danner\n\n24) Cerulean: Build G1 Cerulean\n\n25) Danner: Build G1 Danner\n\n26) Cerulean: Build G2 Sylvania\n\n\tCerulean: sorry, danner, but it's been two months. i'm pulling the plug.\n\tDanner: no, I'm sorry for becoming inactive.\n\tCerulean: Hey, welcome back. If you're ready for full-time Homeworlds, you're welcome to challenge me to a re-match.\n\tDanner: Ok :)\n\nHomeworlds Online (SDG# 4021)\nStarted: 2006.8.13, Ended: 2006.8.31\nParticipants: zoltar (S), Uglyfoot (N)\nWinner: zoltar\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) zoltar: Homeworld R1 B2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) zoltar: Build G1 Zoltar\n\n5) Uglyfoot: Discover G1 Uglyfoot B1 Porch\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) zoltar: Build Y1 Zoltar\n\n9) Uglyfoot: Trade G1 R1 Uglyfoot\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) Uglyfoot: Build R2 Uglyfoot\n\n12) zoltar: Build R2 Zoltar\n\tzoltar: b r2 zoltar\n\n13) Uglyfoot: Build G1 Uglyfoot\n\n14) zoltar: Build Y1 Zoltar\n\n15) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n16) zoltar: Build Y2 Zoltar\n\n17) Uglyfoot: Build R2 Uglyfoot\n\n18) zoltar: Discover R2 Zoltar G3 Greenbelt\n\n19) Uglyfoot: Discover R2 Uglyfoot G1 Tree\n\n20) zoltar: Build R3 Greenbelt\n\n21) Uglyfoot: Build R3 Tree\n\n22) zoltar: Build R3 Zoltar\n\n23) Uglyfoot: Build Y2 Uglyfoot\n\n24) zoltar: Discover R3 Zoltar Y3 Yellowstone\n\n25) Uglyfoot: Move Y2 Uglyfoot Porch\n\n26) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Zoltar Greenbelt\nMove R3 Greenbelt Porch\n\n27) Uglyfoot: Sacrifice Y1 Uglyfoot\nMove R3 Tree Greenbelt\n\n28) zoltar: Sacrifice R2 Greenbelt\nAttack Y2 Porch\nAttack G1 Porch\n\n29) Uglyfoot: Attack Y1 Greenbelt\n\n30) zoltar: Build R2 Porch\n\n31) Uglyfoot: Build G1 Uglyfoot\n\n32) zoltar: Build G2 Zoltar\n\n33) Uglyfoot: Trade R2 Y2 Uglyfoot\n\n34) zoltar: Sacrifice G2 Zoltar\nBuild G2 Zoltar\nBuild R2 Yellowstone\n\n35) Uglyfoot: Move Y2 Uglyfoot Tree\n\n36) zoltar: Move R3 Yellowstone Tree\n\n37) Uglyfoot: Build Y1 Tree\n\n38) zoltar: Sacrifice R3 Porch\nAttack R2 Tree\nAttack Y2 Tree\nAttack Y1 Tree\n\n39) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild R3 Uglyfoot\nBuild Y3 Greenbelt\nBuild G2 Uglyfoot\n\tzoltar: Red Alert! All handz to battle stay shunz! Lock awl batteries onto alien sheepz and open fire!\n\n40) zoltar: Sacrifice Y2 Tree\nMove R2 Porch Uglyfoot\nMove R2 Tree Uglyfoot\nCatastrophe Uglyfoot R\n\n41) Uglyfoot: Sacrifice Y3 Greenbelt\nMove R3 Greenbelt Tree\nMove R3 Tree Uglyfoot\nMove G1 Uglyfoot Porch\n\tzoltar: zee tree ease mine!!!!! whew who!!!!\n\n42) zoltar: Sacrifice R1 Zoltar\nAttack G1 Porch\n\n43) Uglyfoot: Build Y2 Greenbelt\n\tzoltar: Zee Uglyfoot defenz greed haz bean dizzaybulled! Awl sheepz storm zee Uglyfoot homeworld. Attack!\n\n44) zoltar: Sacrifice G2 Zoltar\nBuild Y3 Porch\nBuild Y3 Zoltar\n\tUglyfoot: hit me.\n\n45) Uglyfoot: Build R1 Uglyfoot\n\n46) zoltar: Build G2 Zoltar\n\n47) Uglyfoot: Discover R1 Uglyfoot B1 Rightout\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G2 Porch\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n\tUglyfoot: We could see the roller building steam.\r\n\n\nHomeworlds Online (SDG# 3547)\nStarted: 2006.5.30, Ended: 2006.6.8\nParticipants: Subhan64 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld Y3 B2 G3\n\tTwoShort: Greetings.\n\n3) TwoShort: Build G1 Twoshort\n\tSubhan64: howdy! Good luck!\r\n\n\n4) Subhan64: Build G1 Subhan64\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Subhan64: Build G1 Subhan64\n\n7) TwoShort: Build G1 Twoshort\n\n8) Subhan64: Trade G1 Y1 Subhan64\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) Subhan64: Discover Y1 Subhan64 R1 Omicronpersei8\n\n11) TwoShort: Build G1 Twoshort\n\n12) Subhan64: Build G2 Subhan64\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n14) Subhan64: Move G2 Subhan64 Omicronpersei8\n\n15) TwoShort: Trade G2 Y2 Twoshort\n\n16) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Omicronpersei8\nBuild G3 Subhan64\nBuild Y1 Omicronpersei8\n\n17) TwoShort: Discover G1 Yolonda B1 Bluestar\n\n18) Subhan64: Discover G2 Omicronpersei8 B3 Magrathea\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Bluestar\nBuild Y2 Twoshort\n\tTwoShort: I can win right now if you do that, but it wouldn't not very satisfying, so I'd be happy to have you undo and try something else if you like.\n\tSubhan64: what is the win move?\n\tTwoShort: I can sacrifice my y2 to move one of the greens from yolonda all the way to your homeworld, and cause a catastrophe.\n\tSubhan64: ahh, I see. I missed that one! Thanks for the break!\r\n\n\tTwoShort: No problem; Leaving your homeworld vulnerable to a catastrophe is kind of the classic early-game mistake. I've made it myself a few times. But it's not all that fun to win that way.\n\n\tSubhan64: I think I'm pretty well licked here, good game!\n\tTwoShort: I'm not sure I'd agree, but OK\n\tSubhan64: well, what would you have suggested as a move?\n\tTwoShort: Either moving out or trading one of the greens at your homeworld would avoid the immediate threat. Trading the small to red would probably have been my choice. To be sure, I had the advantage and your chances of staging a comeback were pretty slim. But this game is full of surprises, and so I generally won't resign until I can see how my opponent can definitely force victory with a specific series of moves. \n\nHomeworlds Online (SDG# 3607)\nVariants: "Unrated"\nStarted: 2006.6.2, Ended: 2006.6.8\nParticipants: apollotiger (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G1 B2 Y3\n\tMatrixFrog: It says "There are no pieces left in the stash to take."\n\n2) apollotiger: Homeworld G3 B2 Y3\n\tMatrixFrog: Nevermind, Aaron! My fault.\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) apollotiger: Build Y1 Apollotiger\n\n5) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n6) apollotiger: Trade Y1 B1 Apollotiger\n\n7) MatrixFrog: Build Y1 Matrixfrog\n\n8) apollotiger: Build B1 Apollotiger\n\n9) MatrixFrog: Build B2 Matrixfrog\n\n10) apollotiger: Trade B1 G1 Apollotiger\n\n11) MatrixFrog: Discover B2 Matrixfrog G3 Grove\n\n12) apollotiger: Discover G1 Apollotiger Y1 Zeta\n\n13) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n14) apollotiger: Build Y1 Apollotiger\n\n15) MatrixFrog: Build Y1 Matrixfrog\n\n16) apollotiger: Build G2 Zeta\n\n17) MatrixFrog: Discover G1 Matrixfrog B3 Child\n\n18) apollotiger: Discover Y1 Apollotiger R1 Phosphorus\n\n19) MatrixFrog: Build G2 Child\n\n20) apollotiger: Build Y2 Apollotiger\n\n21) MatrixFrog: Trade G2 Y2 Child\n\n22) apollotiger: Move Y1 Phosphorus Grove\n\n23) MatrixFrog: Trade B2 R2 Grove\n\n24) apollotiger: Trade Y2 R2 Apollotiger\n\n25) MatrixFrog: Attack Y1S Grove\n\n26) apollotiger: Build B1 Apollotiger\n\n27) MatrixFrog: Discover G1 Child R1 Arr Won\n\n28) apollotiger: Sacrifice B1 Apollotiger\nTrade G2 R2 Zeta\n\n29) MatrixFrog: Move R2 Grove Matrixfrog\n\n30) apollotiger: Move R2 Zeta Child\n\n31) MatrixFrog: Move Y2 Child Arr\n\n32) apollotiger: Build R1 Apollotiger\n\n33) MatrixFrog: Build Y2 Arr\n\n34) apollotiger: Discover R1 Apollotiger B1 Chronos\n\n35) MatrixFrog: Build G2 Arr\n\n36) apollotiger: Move G1 Zeta Grove\n\n37) MatrixFrog: Move Y1 Grove Arr\n\n38) apollotiger: Build B2 Apollotiger\n\n39) MatrixFrog: Build B3 Matrixfrog\n\n40) apollotiger: Trade B1 Y1 Apollotiger\n\tMatrixFrog: The point of SDG's setup is that you don't have to both be online at the same time. So if you're online, and I'm not, just go ahead and make one move and I'll do the same next time I come back.\n\n41) MatrixFrog: Sacrifice B1 Matrixfrog\nTrade Y1 B1 Arr\n\n42) apollotiger: Move Y1 Apollotiger Chronos\n\tMatrixFrog: So you see how sacrifices work, yes?\n\n43) MatrixFrog: Build B1 Arr\n\n44) apollotiger: Move Y1 Chronos Child\n\n45) MatrixFrog: Sacrifice Y2 Arr\nMove B1 Arr Apollotiger\nMove B1 Arr Apollotiger\nCatastrophe Apollotiger Blue\n\n46) apollotiger: Build R1 Apollotiger\n\n47) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n48) apollotiger: Move R1 Apollotiger Chronos\n\n49) MatrixFrog: Sacrifice Y2 Arr\nMove G1 Arr Apollotiger\nMove G2 Arr Apollotiger\n\n50) apollotiger: Build G2 Grove\n\n51) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild B1 Matrixfrog\nBuild B1 Matrixfrog\nBuild G2 Apollotiger\nCatastrophe Matrixfrog B\nCatastrophe Apollotiger G\n\n\nHomeworlds Online (SDG# 3576)\nStarted: 2006.6.7, Ended: 2006.6.24\nParticipants: Subhan64 (S), andylooney (N)\nWinner: Subhan64\n\n1) andylooney: Homeworld B1 R2 G3\n\n2) Subhan64: Homeworld R3 B2 G3\n\n3) andylooney: Build G1 Andylooney\n\n4) Subhan64: Build G1 Subhan64\n\n\nHomeworlds Online (SDG# 3639)\nStarted: 2006.6.12, Ended: 2008.2.22\nParticipants: randrews (S), andylooney (N)\nWinner: randrews\n\n1) andylooney: Homeworld R1 B3 G3\n\n2) randrews: Homeworld R1 B2 G3\n\n3) andylooney: Build G1 Andylooney\n\n4) randrews: Build G1 Randrews\n\tandylooney: Hi Ross! It was good seeing you at Origins!\r\n\n\n5) andylooney: Trade G3 Y3 Andylooney\n\trandrews: Good seeing you too! I hope this game goes a little better for me than our last one...\n\n6) randrews: Trade G3 Y3 Randrews\n\n7) andylooney: Build Y1 Andylooney\n\trandrews: I'm not actually intending to copy you, it's just sorta happening...\n\n8) randrews: Discover G1 Randrews Y3 Gardner\n\n9) andylooney: Discover Y1 Andylooney G2 Lime\n\n10) randrews: Trade Y3 G3 Randrews\n\n11) andylooney: Build Y1 Lime\n\n12) randrews: Build G1 Randrews\n\n13) andylooney: Build G2 Andylooney\n\n14) randrews: Build G2 Gardner\n\n15) andylooney: Build G3 Andylooney\n\tandylooney: Very sorry to have been away so long, but now that we're done with the summer trade shows, I'll hopefully be able to get back on top of this.\n\n16) randrews: Move G1 Gardner Lime\n\trandrews: That's fine. Hope they went well for you!\n\n17) andylooney: Trade G1 R1 Andylooney\n\n18) randrews: Trade G1 Y1 Randrews\n\n19) andylooney: Sacrifice R1 Andylooney\nAttack G1S Lime\n\n20) randrews: Build Y2 Randrews\n\n21) andylooney: Build Y2 Andylooney\n\n22) randrews: Build G1 Randrews\n\n23) andylooney: Discover G1 Lime Y3 Lemon\n\n24) randrews: Discover G1 Randrews B3 Slinky\n\n25) andylooney: Build Y2 Andylooney\n\n26) randrews: Sacrifice G3 Randrews\nBuild G1 Slinky\nBuild G3 Slinky\nBuild G3 Gardner\n\n27) andylooney: Sacrifice Y2 Andylooney\nMove G1 Lemon Lime\nMove G1 Lime Slinky\nCatastrophe Slinky Green\n\n28) randrews: Move G3 Gardner Randrews\n\n29) andylooney: Discover Y1 Lime G3 Shamrock\n\n30) randrews: Trade Y2 R2 Randrews\n\n31) andylooney: Trade Y2 R2 Andylooney\n\n32) randrews: Move R2 Randrews Shamrock\n\n33) andylooney: Discover Y1 Shamrock G1 Bean\n\n34) randrews: Build Y2 Randrews\n\n35) andylooney: Build Y2 Lime\n\n36) randrews: Sacrifice Y1 Randrews\nMove R2 Shamrock Bean\n\n\trandrews: Is the "extreme timeout" thing new? The game was actually over 500 days old, not 60...\r\n\n\tAaron: It's not automated is the thing. Before killing games I like to see for myself what is happening. I just haven't had time to do all the DB maintenance stuff. For this round of cleanup I looked for all games that had clocks more than 60 days in the red.\n\nHomeworlds Online (SDG# 3690)\nVariants: "Unrated"\nStarted: 2006.6.17, Ended: 2006.6.18\nParticipants: fnord (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 G1 Y3\n\n2) fnord: Homeworld B2 Y1 G3\n\tzoltar: Hi, this is my second game. I lost on the 4th move yesterday, not used to all the rules yet.\n\n3) zoltar: Build Y1 Zoltar\n\tfnord: Then, hopefully, this will be good experience for both of us.\n\n4) fnord: Build G1 Fnord\n\n5) zoltar: Discover Y1 Zoltar B2 Z1\n\n6) fnord: Trade G1 R1 Fnord\n\n7) zoltar: Build Y1 Zoltar\n\n8) fnord: Build G1 Fnord\n\n9) zoltar: Move Y1 Zoltar Z1\n\n10) fnord: Build G1 Fnord\n\n11) zoltar: Build Y2 Zoltar\n\n12) fnord: Discover G1 Fnord R3 Discordia\n\n13) zoltar: Trade Y2 R2 Zoltar\n\n14) fnord: Build G2 Fnord\n\n15) zoltar: Build Y2 Zoltar\n\n16) fnord: Trade G2 Y2 Fnord\n\n17) zoltar: Trade Y2 G2 Zoltar\n\n18) fnord: Build Y2 Fnord\n\n19) zoltar: Build Y2 Zoltar\n\n20) fnord: Sacrifice Y2 Fnord\nMove Y2 Fnord Discordia\nMove R1 Fnord Discordia\n\n21) zoltar: Discover G2 Zoltar Y2 Z2\n\n22) fnord: Build Y3 Discordia\n\n23) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Z1 Discordia\nMove Y1 Z1 Discordia\nCatastrophe Discordia Y\n\n24) fnord: Move G3 Fnord Discordia\n\n25) zoltar: Build G2 Z2\n\tfnord: Well done... that puts a crimp in my plans.\n\n26) fnord: Trade G1 Y1 Fnord\n\n27) zoltar: Build Y1 Zoltar\n\n28) fnord: Move Y1 Fnord Discordia\n\n\tzoltar: Moving your huge green ship didn't make sense to me, as the rules say it's best to keep a big ship at your homeworld.\n\tfnord: Actually, it was because of a misundertanding of the rules, on my part, I think.\n\tfnord: Oh, frell me!\n\tfnord: Couldn't the game have warned me I was gonna destroy my homeworld?\n\tfnord: The reason I moved my big ship there was to (attempt) to prevent you from attacking any ship I owned there. I misread the rules, thinking you couldn't attack me if I had a larger ship in there. \n\tzoltar: Ouch! It didn't let you take back the move? Oh well. We can start another one if you wish. And this was my first victory in the game, after an awful blowout where I died in the 5th move or so. Thanks for the game!\n\tfnord: No, it didn't. I looked for it, that's for sure.\r\n\n\nHomeworlds Online (SDG# 3592)\nStarted: 2006.6.13, Ended: 2006.6.16\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld Y3 B1 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) zoltar: Build G1 Zoltar\n\tTwoShort: Greetings\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Build G1 Zoltar\n\n6) TwoShort: Build G2 Twoshort\n\n7) zoltar: Discover G1 Zoltar B2 Z1\n\n8) TwoShort: Trade G2 Y2 Twoshort\n\tzoltar: Greetings Earthling\n\n9) zoltar: Build G2 Zoltar\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n11) zoltar: Trade G2 R2 Zoltar\n\n12) TwoShort: Build G2 Twoshort\n\n13) zoltar: Build G2 Zoltar\n\n14) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Yolonda Z1\nMove G1 Z1 Zoltar\nCatastrophe Zoltar Green\n\n\tzoltar: Thanks, this was my first game. I'm not even sure what happened!\n\tTwoShort: Well you were doing fine until you built a third green at your homeworld when I had one in striking distance. It's sort of the classic early-game blunder. Anyway, anytime you'd like to play again, just let me know; I'll even try to be a bit less cut-throat :)\n\nHomeworlds Online (SDG# 3685)\nStarted: 2006.6.17, Ended: 2006.6.19\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld B1 G3 Y3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\tzoltar: Ok, I'll try again!\r\n\n\n3) zoltar: Build Y1 Zoltar\n\n4) TwoShort: Build B1 Twoshort\n\n5) zoltar: Build Y1 Zoltar\n\n6) TwoShort: Trade B3 G3 Twoshort\n\n7) zoltar: Discover Y1 Zoltar B2 Z2\n\n8) TwoShort: Build B2 Twoshort\n\n9) zoltar: Build Y1 Zoltar\n\n10) TwoShort: Trade B2 Y2 Twoshort\n\n11) zoltar: Discover Y1 Zoltar G2 Z1\n\n12) TwoShort: Build B2 Twoshort\n\n13) zoltar: Build Y2 Zoltar\n\n14) TwoShort: Discover B2 Twoshort Y3 Yolonda\n\n15) zoltar: Trade Y2 B2 Zoltar\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Twoshort\nBuild B3 Yolonda\nBuild B3 Yolonda\n\n17) zoltar: Build Y2 Z1\n\n18) TwoShort: Sacrifice B2 Yolonda\nTrade B3 R3 Twoshort\nTrade B3 G3 Yolonda\n\n19) zoltar: Move B2 Zoltar Z1\n\n20) TwoShort: Discover B1 Twoshort G3 Grogar\n\n\tzoltar: I think my position is lost.\n\tzoltar: I think I was lost; I couldn't find any moves that save me. Thanks.\n\nHomeworlds Online (SDG# 3697)\nVariants: "Unrated"\nStarted: 2006.6.18, Ended: 2006.6.19\nParticipants: fnord (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y1 B2 G3\n\n2) fnord: Homeworld G1 B3 Y3\n\tzoltar: Prepare for battle, Earthling!\n\n3) zoltar: Build G1 Zoltar\n\n4) fnord: Build Y1 Fnord\n\n5) zoltar: Discover G1 Zoltar B3 Z1\n\n6) fnord: Trade Y1 B1 Fnord\n\n7) zoltar: Build G1 Z1\n\n8) fnord: Build Y1 Fnord\n\n9) zoltar: Build G2 Zoltar\n\n10) fnord: Discover Y1 Fnord G2 Discordia\n\n11) zoltar: Discover G2 Zoltar B3 Z2\n\n12) fnord: Build B1 Fnord\n\n13) zoltar: Build G2 Zoltar\n\n14) fnord: Trade B1 R1 Fnord\n\n15) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Z2\n\n16) fnord: Build Y1 Fnord\n\tzoltar: I am in the Green!\n\tfnord: You're looking a little green around the gills there, Zoltar.\r\nYou sure you're doing okay?\n\n17) zoltar: Trade G2 Y2 Z2\n\n18) fnord: Move R1 Fnord Discordia\n\tzoltar: Heh heh heh, I suppose I'll have to trade away my greens before I explode! \n\n19) zoltar: Trade G3 R3 Zoltar\n\n20) fnord: Trade Y3 G3 Fnord\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G2 Z1\nBuild G3 Zoltar\nBuild Y2 Z2\n\n22) fnord: Build Y2 Fnord\n\tzoltar: stealing my green factory, eh? oh well!\n\n23) zoltar: Discover Y2 Z2 B2 Z3\n\tfnord: Hmmm... I don't think I'm very good at this game yet.\n\n24) fnord: Trade Y2 R2 Fnord\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Z2\nBuild Y3 Z3\n\n26) fnord: Move R2 Fnord Discordia\n\tzoltar: Prepare to be boarded!\n\n27) zoltar: Trade Y2 B2 Z2\n\n28) fnord: Move R2 Discordia Z1\n\n29) zoltar: Sacrifice B2 Z2\nTrade G3 R3 Z2\nTrade Y3 R3 Z3\n\n30) fnord: Build G3 Fnord\n\tzoltar: For the first time, I have ships of all 4 colors! The Death Star is nearly complete...\n\n31) zoltar: Sacrifice Y2 Z2\nMove G2 Z1 Z3\nMove G2 Z3 Fnord\nCatastrophe Fnord Green\n\tzoltar: Retreat!!!\n\tzoltar: Nah! Attack!!!!\n\n32) fnord: Attack G1 Z1\n\tzoltar: RED Alert!\n\n33) zoltar: Move R3 Z3 Fnord\n\n34) fnord: Build Y2 Discordia\n\tzoltar: Kaboom!!!!\n\n35) zoltar: Sacrifice R3 Z2\nAttack B1 Fnord\nAttack Y1 Fnord\nPass\n\n\tfnord: I think that this last move is, at best, a delaying maneuver.\n\tfnord: Doh! Forgot that... *chuckle* Nicely done.\n\tzoltar: I think there was no defence, as I could sac a big red ship for 3 attacks on the homeworld, even if you created or moved another ship to the homeworld. I think I had an advantage but you were ok until the green catastrophe. I've now won twice to you and lost twice to an advanced player. Play again?\n\tfnord: Sure... but, am I gonna get trounced again? *grin* \n\nHomeworlds Online (SDG# 3699)\nStarted: 2006.6.19, Ended: 2006.6.21\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\tzoltar: Ok, I finally won a game against another beginner so I'm ready to try again! Maybe I'll get the hang of this game.\n\n2) zoltar: Homeworld B3 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build Y2 Zoltar\n\tzoltar: I already feel like I have a big disadvantage on the second move. You got to take the two smaller stars, and maybe I should have taken a medium and large because you now are getting medium yellows already, and switching to a big yellow ship means I'm likely to be destroyed by a catastrophe as in our previous game as I have a yellow star. I suppose I'm safe to build more yellow until you get a large yellow, or if you get a medium yellow and move out your small yellow one step, but that could be two moves away, and then I'll have to change the color of my big ship again. Is this normal, or have I lost a tempo or two?\n\tzoltar: b y2 zoltar\n\n9) TwoShort: Build Y2 Twoshort\n\n10) zoltar: Discover Y2 Zoltar G2 Green2\n\n11) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n12) zoltar: Build G1 Zoltar\n\n13) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n14) zoltar: Trade G1 B1 Zoltar\n\n15) TwoShort: Build G1 Twoshort\n\tTwoShort: Sorry, I somehow missed your questions until now. The 1-2 homeworld is (I think) a very slight advantage. You might have switched the colors of your stars to not deplete small yellows so far, but either way, I've got only a slight advantage by getting more twos than you, as long as you avoid getting locked out of yellow entirely, which you did. For a really big advantage, I need to get more 3 pointers than you. Your latest move means I can grow a Y3 at Grogar. Then once I move one of the tyellows to a new star, I can sacrifice the g1 at yolonda to grow that y3 too, and then you'll really be in a bad way. So I think you've been doing pretty much OK until this latest move... which I'd be happy to have you undo if you like.\n\tzoltar: Ok, thanks, I undid that. Maybe I'll take some time and think about this, as I didn't see any of your analysis before I made the move. I'm especially fuzzy on tactics that involves sacrifices and seeing the possibilities and outcomes. I'll take a break and think and come back to it fresh this evening and see if I can find some better plan of action that doesn't give you the upper hand building the monster sized ships.\n\n16) zoltar: Build B1 Zoltar\n\tzoltar: This is what I came up with. By not building a yellow, you don't get the y3, but if I build a green, you could either sacrifice for a catastrophe or you could take the bigger greens by sacking your G3 and building both G2s and your G3 again; so if I trade for a blue, I avoid all of the above and have a new color I can build. Getting a red didn't seem to be as important yet, so I got into the blue market. I hope that is sound reasoning and I haven't blown it again.\n\tTwoShort: That's pretty good; another alternative would have been moving the g1 out, thus threatening to move into one of my systems and cause a catastrophe if I build too many greens. As you've correctly noted, I'm threatening to set up a "factory" where I repeatedly sacrifice and re-grow the g3. You probably can't stop that entirely, but if at all possible you want to force the tempo such that you get a g3 for your own factory too.\n\n17) TwoShort: Build G2 Yolonda\n\n18) zoltar: Trade Y3 G3 Zoltar\n\tzoltar: I seem to be doomed. You can sac your G3 and then grow it back, plus another g2 in your homeworld and the last g3 in yolanda, giving you two green 'factories' and leaving me with only small greens. Did I make a serious blunder, and if so, was there a defence?\n\n19) TwoShort: Discover G1 Yolonda B2 Bluestar\n\tTwoShort: Well, I'd caution you against giving up too easily; comebacks are certainly possible in this game. In any case, if you want good practice at seeing possibilities, try to see how long you can hold me off. As for the current situation, you might consider flipping your y3 back to green; it's hard to be inefficient that way, but you don't want to miss the factory boat. Note that I don't dare grow 3 greens at Yolonda, because you could sacrifice your y2 to move in and cause a catastrophe there. It would eventually be nice for you to have a green somewhere beyond your homeworld, so you could pose the same threat to my homeworld, without having to sacrifice your 3 (which you don't want to do except to get another or win).\n\n20) zoltar: Discover G1 Zoltar B2 Blue2\n\tzoltar: Ok, I wouldn't have thought of that, but it makes sense. I did see that if you get 3 greens I could sac my y2 if I ever got my green out of my homeworld, so perhaps that will do. I understand the principle of the factory, but I don't quite get it. I seem to have to have a g3 plus one other green ship at my 'factory' system, so that the other green can support my rebuilding the g3 after I make my other 2 builds. Is that it, or is there more to it than that?\n\n21) TwoShort: Trade Y2 R2 Twoshort\n\tTwoShort: That's it, except that the other green could be at a different system so that your g3 jumps there as part of the bargain. Either way, you get two grows anywhere without giving anything up.\n\tTwoShort: That's it, except that the other green could be at a different system so that your g3 jumps there as part of the bargain. Either way, you get two grows anywhere without giving anything up.\n\tTwoShort: Hmm, not sure why that happened\r\n\n\n22) zoltar: Trade B1 R1 Zoltar\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild Y2 Grogar\nBuild G3 Twoshort\n\tzoltar: But even with a factory I can't grow a ship in a system without another ship of that color, right? I just don't need any green in the system where I do one of the builds?\n\tTwoShort: Exactly. Note that if you factory now, you won't be able to regrow the g3 in your homeworld, and it can be dangerous to leave your homeworld without a 3 pointer once your opponent has red. Luckily, I don't want to factory this turn either, since I can only grow yellow & green, which would give you access to the Y3s. \n\n24) zoltar: Move B1 Zoltar Green2\n\n25) TwoShort: Move Y2 Grogar Blue2\n\tzoltar: I assume that I must get a red ship here, even if only an itty-bitty one, so that you can't bully me by coming to any of my systems with any one of your ships and threatening to sac your red to take over my ships.\n\tTwoShort: Yeah, it's pretty much always a good idea to get a red ship if your opponent has one. \n\n26) zoltar: Trade B1 R1 Green2\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Blue2\nBuild Y3 Grogar\nBuild G3 Twoshort\n\n28) zoltar: Build Y3 Green2\n\tzoltar: In another game against another beginner like myself, I got a red ship, my opponent ignored it, and the next move now I sacrificed my home Y3 ship to teleport my R3 from my homeworld into his, and I think that there is no defence, as with even an R1 anywhere, he could have defended by sacking the R1 and taking my ship in his homeworld, but now if he trades for a red ship, I can just capture it on my move. What a powerful weapon, even a single unopposed red ship!\n\n29) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Bluestar\nBuild Y3 Blue2\n\tTwoShort: Yeah, Ocasionally you get a situation where you can ignore your opponent having taken red for a turn or two because they can't reach you, but you've got to be careful; as you say, if they attack, it will be too late.\n\tTwoShort: Oh, you don't want to do that... I can sacrifice my y2 to move two gs into your homeworld for a catastrophe. I'm not entirely sure what you should do instead, but note that it's pretty unlikely I'll sacrifice to attack the g1 if you leave it at Blue2; for reasons just discussed, I don't want to be without red while you have one, and a 2 pointer sac for just a 1 pointer isn't that great a trade in any case. I wanted to spread the yellows out for growing options; being randomly threatening by moving into your system was just a side bonus :)\n\n30) zoltar: Discover Y2 Green2 B3 Blue3\n\tzoltar: Ok, I didn't see that. I wanted a factory! But I can't build a Y2, or you use the factory to instantly get both Y3s. I am doomed already it seems.\n\n31) TwoShort: Sacrifice Y3 Blue2\nMove G1 Bluestar Zoltar\nMove G2 Bluestar Zoltar\nMove G2 Bluestar Zoltar\nCatastrophe Zoltar Green\n\n32) zoltar: Move R1 Zoltar Green2\n\tzoltar: Again, you are getting 2 ships for every one of mine...\n\tTwoShort: Well, to be frank, you are probably doomed. It's definitely a deep game that rewards experience, which I've got lots of.\n\n\tzoltar: Yeah, I knew that, but I resigned too early last game, so I want to see how you force the win. I just realized you could sac your Y3 and wipe out my greens any time you want, for starters.\n\tzoltar: Oops, that wasn't very smart... D'oh!\r\nPlay again?\n\tTwoShort: Weird; it really shouldn't let you do that.\n\tzoltar: Not only does it let you do that, but it doesn't allow a take-back either. A pathetic way to die!\n\nHomeworlds Online (SDG# 3700)\nVariants: "Unrated"\nStarted: 2006.6.19, Ended: 2006.6.21\nParticipants: zoltar (S), fnord (N)\nWinner: zoltar\n\n1) fnord: Homeworld Y2 B1 G3\n\n2) zoltar: Homeworld G2 B3 Y3\n\n3) fnord: Build G1 Fnord\n\n4) zoltar: Build Y1 Zoltar\n\n5) fnord: Trade G1 Y1 Fnord\n\n6) zoltar: Trade Y1 G1 Zoltar\n\n7) fnord: Build Y1 Fnord\n\n8) zoltar: Discover G1 Zoltar B1 Blue1\n\n9) fnord: Discover Y1 Fnord R3 Eris\n\tzoltar: As you can see, I'm clueless about openings, and took back and changed both moves so far. Except that I so far have always started with some b-g-y combo, as it seems only in advanced strategy could an early red be helpful, perhaps to force the opponent to waste time trading and getting reds to maintain the balance. \n\tfnord: Yeah.. .the strategy guide I read said that Reds weren't that useful until mid-game, at the earliest, since at the beginning of the game you should worry about developing your fleet.\n\n10) zoltar: Build G1 Blue1\n\n11) fnord: Build Y1 Fnord\n\n12) zoltar: Build Y2 Zoltar\n\n13) fnord: Move Y1 Fnord Eris\n\n14) zoltar: Trade Y3 R3 Zoltar\n\n15) fnord: Build G1 Fnord\n\n16) zoltar: Build Y2 Zoltar\n\n17) fnord: Move G1 Fnord Eris\n\tfnord: I'm not feeling well, so I'm gonna go lie down for a while, I probably won't be able to make a move again for the rest of the day.\n\n18) zoltar: Build Y3 Zoltar\n\n19) fnord: Build G2 Fnord\n\tzoltar: Ok, I did that anyway, for lack of anything better...\n\tzoltar: Take your time, then -- we can continue tonight or tomorrow -- hope you feel better.\n\n20) zoltar: Sacrifice Y3 Zoltar\nMove R3 Zoltar Blue1\nMove R3 Blue1 Eris\nMove R3 Eris Fnord\n\n21) fnord: Sacrifice G3 Fnord\nBuild Y3 Fnord\nBuild G2 Fnord\nBuild G3 Fnord\n\n22) zoltar: Sacrifice Y2 Zoltar\nMove G1 Blue1 Eris\nMove G1 Eris Fnord\nCatastrophe Fnord G\n\n23) fnord: Move Y1 Eris Blue1\n\n24) zoltar: Attack Y3 Fnord\n\tzoltar: b y3 zoltar\n\n25) fnord: Trade Y1 R1 Blue1\n\n26) zoltar: Sacrifice G1 Blue1\nBuild Y1 Fnord\nCatastrophe Fnord Y\n\n\tzoltar: Yes, the game is wonderfully complex, and we have to weigh getting big pieces, getting all colors, and not having too many of one color in one place. The trick with the G3 I learned from the games I lost; it's called "The Factory", where I have a G3 and just one other green in a system, and there are no small greens and no more than 2 medium greens in the stash. Then you can sack the G3, rebuild it in place with the other small green, and you get two other builds, meaning two builds instead of one, anywhere you have ships. \n\tzoltar: Well, while I could have just overpowered your last defender, I thought I'd do one more sac and end with a big bang, since you couldn't do it!\n\nHomeworlds Online (SDG# 3695)\nStarted: 2006.6.20, Ended: 2006.6.25\nParticipants: zoltar (S), Gort (N)\nWinner: Gort\n\n1) Gort: Homeworld G1 Y2 B3\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) Gort: Build B1 Gort\n\n4) zoltar: Build G1 Zoltar\n\n5) Gort: Discover B3 Gort Y3 Gorn\n\n6) zoltar: Build G1 Zoltar\n\n7) Gort: Trade B3 G3 Gorn\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) Gort: Build B1 Gort\n\n10) zoltar: Build Y1 Zoltar\n\n11) Gort: Build G1 Gorn\n\n12) zoltar: Discover Y1 Zoltar G3 Hydra\n\n13) Gort: Trade B1 R1 Gort\n\n14) zoltar: Trade G3 R3 Zoltar\n\n15) Gort: Move G3 Gorn Gort\n\n16) zoltar: Build Y2 Zoltar\n\n17) Gort: Build G2 Gorn\n\n18) zoltar: Build G2 Zoltar\n\n19) Gort: M G2 Gorn Zoltar\n\n20) zoltar: Sacrifice Y2 Zoltar\nMove G2 Zoltar Gorn\nMove G1 Zoltar Gorn\n\n21) Gort: S G2 Zoltar\nBuild G2 Gorn\nBuild G2 Gort\nCatastrophe Gorn G\n\n22) zoltar: Build Y2 Hydra\n\n23) Gort: Trade G2 R2 Gort\n\tGort: I thought your previous "undid" move was mugh better. I couldn't figure out an appropriate response.\n\n24) zoltar: Trade Y1 G1 Zoltar\n\tzoltar: Oh, that was an oversight. I was afraid that you would destroy one of my homeworld stars if I did the first move. I had a Y1 and Y2 and a Y1 star in my homeworld. If I sac my G2 and build Y2 and Y3 in the hydra system, my green tech was safe, but now I was afraid you would trade your G2 for a y2, but all the y2s were used up and I only realized that after I changed the move. A silly oversight on my part.\n\tGort: it's cool. You'll get me in the end. I can sense a disturbance in the fork. :)\n\n25) Gort: Move R2 Gort Hydra\n\n26) zoltar: Sacrifice Y1 Hydra\nMove Y2 Hydra Zoltar\n\n\tzoltar: I've already screwed up terribly. I'm probably quite lost, and it won't take my move back again. If I make another ridiculous mistake I'll resign so we can start over and I can give you a real game. \n\tGort: OK, though I still think you had some options. Never give up! Gort makes mistakes, too! Anyway, Zoltar had Gort on the ropes there for a while. Our robot gaurdians will be kind to your people.\n\tzoltar: In the middle game I wouldn't give up, but it was the opening and I'd put you four moves ahead, and I'm a beginner so I need the practise and would rather not waste time and just start again, which is what I'd ask to do in an over the board game. \n\nHomeworlds Online (SDG# 3702)\nStarted: 2006.6.20, Ended: 2007.2.10\nParticipants: Gort (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R2 B1 G3\n\n2) Gort: Homeworld G3 Y1 B3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Gort: Build B1 Gort\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Gort: Discover B1 Gort G2 Grot\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Gort: Build B1 Grot\n\n9) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n10) Gort: B B2 Grot\n\n11) TwoShort: Build Y2 Twoshort\n\n12) Gort: Build B2 Gort\n\n13) TwoShort: Discover Y2 Twoshort B3 Bluestar\n\n14) Gort: Trade B2 Y2 Grot\n\n15) TwoShort: Build G1 Twoshort\n\n16) Gort: Trade B2 G2 Gort\n\n17) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n18) Gort: Trade B3 R3 Gort\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Grogar\nBuild Y3 Twoshort\n\n20) Gort: Move B1 Grot Grogar\n\n21) TwoShort: Trade Y2 R2 Bluestar\n\n22) Gort: Build Y2 Grot\n\n23) TwoShort: Sacrifice G1 Yolonda\nBuild Y3 Bluestar\n\n24) Gort: Move Y2 Grot Bluestar\n\n25) TwoShort: Move Y3 Bluestar Grot\n\n26) Gort: Sacrifice R3 Gort\nAttack R2 Bluestar\nAttack Y2 Bluestar\nAttack Y1 Grogar\n\n27) TwoShort: Trade Y3 R3 Twoshort\n\n28) Gort: Sacrifice Y2 Grot\nMove Y2 Bluestar Twoshort\nMove R2 Bluestar Twoshort\n\n29) TwoShort: Trade R3 G3 Twoshort\n\n30) Gort: Build B2 Grogar\n\n31) TwoShort: Sacrifice Y1 Twoshort\nDiscover Y3 Grogar B2 Trog\n\n32) Gort: Move B1 Grogar Twoshort\n\n33) TwoShort: Trade Y3 R3 Trog\n\n34) Gort: Sacrifice B2 Grogar\nTrade B1 G1 Twoshort\nTrade R2 G2 Twoshort\n\n35) TwoShort: Sacrifice R3 Trog\nAttack Y2S Twoshort\nAttack G2S Twoshort\nAttack G1S Twoshort\n\n36) Gort: Build Y1 Grogar\n\n37) TwoShort: Trade G2 R2 Twoshort\n\n38) Gort: Sacrifice Y2 Bluestar\nMove Y1 Grogar Grot\nMove Y1 Grogar Grot\n\n39) TwoShort: Move Y3 Grot Gort\n\tGort: Man, I think procrastination is my only reasonable strategy. Sorry.\n\n\nHomeworlds Online (SDG# 3716)\nVariants: "Unrated"\nStarted: 2006.6.21, Ended: 2006.6.27\nParticipants: fnord (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y1 B2 G3\n\n2) fnord: Homeworld Y3 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) fnord: Build G1 Fnord\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) fnord: Build G1 Fnord\n\n7) zoltar: Build Y1 Zoltar\n\n8) fnord: Discover G1 Fnord G1 Eris\n\tfnord: hmmm... critical flaw in my plan.\n\n9) zoltar: Build G2 Zoltar\n\n10) fnord: Build G2 Fnord\n\n11) zoltar: Discover Y1 Zoltar G3 Nix\n\n12) fnord: Trade G2 Y2 Fnord\n\n13) zoltar: Build G2 Zoltar\n\n14) fnord: Sacrifice Y2 Fnord\nMove G1 Eris Nix\nMove G1 Nix Zoltar\nCatastrophe Zoltar G\n\n15) zoltar: Build Y2 Nix\n\tfnord: Sorry, but was too tempting to pass up.\n\tzoltar: I never even saw that coming. I'm still bad at sacrifices, though it's easier for me to see my own possible sacs but I miss opponents' ones. I think the game is pretty much over\r\n\n\n16) fnord: Trade G1 R1 Fnord\n\tfnord: I don't know, you seemed to have used sacrifices well against me. I didn't see some of the ones coming that you used against me, though I know I was forced to make moves that wouldn't let you use others.\n\tfnord: And I wouldn't say the game is over, I still have a long way to go.\n\n17) zoltar: Build Y2 Nix\n\n18) fnord: Build G1 Fnord\n\tzoltar: Ok, I won't resign and will play it out -- I doubt I can last more than a few moves.\n\n19) zoltar: Discover Y2 Nix Y2 Hydra\n\n20) fnord: Trade G3 Y3 Fnord\n\tfnord: Interesting defence... deny me Yellow ships, so I can't cause a catastrophe in your system. Very ingenious.\n\n21) zoltar: Build Y3 Nix\n\n22) fnord: Sacrifice Y3 Fnord\nDiscover R1 Fnord B1 Discordia\nMove R1 Discordia Nix\nMove R1 Nix Zoltar\n\n23) zoltar: Move Y3 Nix Zoltar\n\n24) fnord: Build G1 Fnord\n\tzoltar: YIKES!\n\tfnord: Foo! Hadn't thought of that... thought I had you there.\n\n25) zoltar: Trade Y3 R3 Zoltar\n\n26) fnord: Discover R1 Zoltar G3 Route\n\n27) zoltar: Build Y3 Nix\n\n28) fnord: Trade G1 R1 Fnord\n\n29) zoltar: Move Y3 Nix Zoltar\n\tzoltar: I'm still not quite out of the hole, but seeing that I could defend, your sac nullified your advantage, and a slow build up instead would have kept you in the lead, as it would be longer for me to get green ships again.\n\n30) fnord: Build G1 Fnord\n\n31) zoltar: Trade Y3 G3 Zoltar\n\tzoltar: Now I'm threatening to sac my Y3 and move my big gun into your homeworld!!! What a turn of events!\n\tfnord: Possibly. I was likely blinded by not wanting to risk building up slowly and letting you pull something out of your hat like you've done before, so I tried for the quick kill.\n\n32) fnord: Build R1 Route\n\tzoltar: Well, I'm going to learn from your mistake and pass by a possible quick kill and strengthen my position. I'm going to be away from my computer and will move again in an hour or so.\n\n33) zoltar: Build Y3 Zoltar\n\n34) fnord: Build R2 Route\n\n35) zoltar: Move R3 Zoltar Route\nCatastrophe Route R\n\n36) fnord: Build R1 Fnord\n\tzoltar: Looks like a fair trade to me, leaving me with a monopoly on the wormhole technology...\n\tzoltar: My super-safe defensive build-up play is working better that I had imagined.\n\n37) zoltar: Trade Y3 R3 Zoltar\n\tfnord: No, not exactly a monopoly... I can get out of my system, I just can't go anywhere else.\n\n38) fnord: Discover G1 Fnord G1 Kallisti\n\n39) zoltar: Build G2 Zoltar\n\tfnord: Another lesson... make at least one of your homeworld stars a 1-point, so that you have a better chance of creating stars one step away from your homeworld in the mid-game.\n\n40) fnord: Build G2 Fnord\n\n41) zoltar: Build Y3 Zoltar\n\n42) fnord: Discover G1 Fnord B1 Sink\n\tzoltar: Actually, I just learned today that the most preferable setup for the first player is a 1-point star and a 2-point star, with colors y & b (either combination) with a g3 ship, and then you have more control over the 3-point pieces later in the game when you create stars one-step from your homeworld. \n\n43) zoltar: Trade Y3 R3 Zoltar\n\n44) fnord: Move R1 Fnord Sink\n\tfnord: seems good, though you've put Y3 ships to good use often enough.\n\n45) zoltar: Build Y3 Zoltar\n\n46) fnord: Build G2 Sink\n\n47) zoltar: Build G3 Zoltar\n\n48) fnord: Build R1 Fnord\n\n49) zoltar: Sacrifice Y3 Zoltar\nMove R3 Zoltar Nix\nMove R3 Nix Sink\nMove R3 Zoltar Nix\n\tfnord: Yeah, couldn't figure out how to get that G3. *sigh*\r\nAnd you were worried about being out of the game. *chuckle*\n\tzoltar: Yes, your sac backfired terribly. I notice that had your sac sent an R3 rather than a puny R1 into my homeworld, the game would be over. Shows how important the big ships are.\n\n50) fnord: Sacrifice G2 Sink\nBuild R2 Sink\nBuild R2 Sink\nCatastrophe Sink R\n\n51) zoltar: Trade G2 B2 Zoltar\n\tfnord: Yeah, but back then I couldn't have gotten an R3, and by the time I could have gotten to it, you would have had a 3 ship as well, most likely. Well, it certainly was worth a try.\n\n52) fnord: Build G2 Sink\n\tzoltar: Nice move! That ruined my plans....\n\n53) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild Y3 Nix\n\n54) fnord: Move R1 Fnord Kallisti\n\tfnord: Thank you... it was a desperation move, that's for sure.\r\n\n\n55) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Hydra\nBuild B1 Zoltar\n\n56) fnord: Build R1 Fnord\n\n57) zoltar: Sacrifice Y3 Hydra\nMove B2 Zoltar Nix\nMove G2 Zoltar Nix\nMove G2 Nix Hydra\n\n58) fnord: Build R2 Kallisti\n\n59) zoltar: Sacrifice G3 Zoltar\nBuild G3 Hydra\nBuild Y3 Hydra\nBuild R2 Nix\n\n60) fnord: Sacrifice G2 Fnord\nBuild R2 Fnord\nBuild R3 Fnord\n\tzoltar: The Death Star is nearing completion...\n\n61) zoltar: Sacrifice G3 Hydra\nBuild G2 Zoltar\nBuild R3 Nix\nBuild B1 Nix\n\n62) fnord: Move R2 Fnord Sink\n\n63) zoltar: Sacrifice G3 Zoltar\nBuild G3 Hydra\nBuild G3 Hydra\nBuild B3 Nix\n\n\n64) fnord: Move R1 Fnord Sink\n\n65) zoltar: Sacrifice B3 Nix\nTrade G3 B3 Hydra\nTrade R3 G3 Nix\nTrade G3 R3 Hydra\n\n66) fnord: Build G3 Sink\n\n67) zoltar: Sacrifice G3 Nix\nBuild G3 Hydra\nBuild B3 Hydra\nBuild B3 Hydra\n\tfnord: Whoops... Just noticed I had 4 reds in my homeworld... better move one.\n\n68) fnord: Pass\n\n69) zoltar: Move Y3 Hydra Kallisti\n\tzoltar: I saw that too, but simply passing and blowing them seemed pretty rude, so I just went ahead with my play to grab most of the pieces before I attack...\n\tzoltar: I just lost a game 1 minute ago to TwoShort with very few pieces on the board (just the two original homeworlds and 4 of his pieces left in the final position) -- I suppose the minimum possible would be to blow up your opps homeworld and have one piece left in your homeworld with only one star. This is the opposite of that game in just about every way possible -- I wonder if I can win with every piece on the board, all owned by me! \n\n70) fnord: Sacrifice G3 Sink\nBuild G3 Kallisti\nPass\nPass\n\n71) zoltar: Sacrifice R2 Nix\nAttack G3 Kallisti\nAttack G1 Kallisti\n\tzoltar: ok -- you get one and I get the last two!\n\n72) fnord: Build R2 Sink\n\n73) zoltar: Sacrifice R3 Hydra\nAttack R2 Kallisti\nAttack R1 Kallisti\nPass\n\tzoltar: Yay! The stash is depleted and I think I have you slightly outnumbered.\n\tfnord: Just a bit...\n\n74) fnord: Pass\n\n75) zoltar: Sacrifice G3 Kallisti\nBuild G3 Zoltar\nBuild R3 Nix\nPass\n\n76) fnord: Pass\n\n77) zoltar: Move R1 Kallisti Hydra\n\n78) fnord: Pass\n\tzoltar: Soon kallisti will be MINE! All Mine!!!!!!!!!!!!!!! \r\n(Demonic Laugh)\n\n79) zoltar: Move G1 Kallisti Nix\n\n80) fnord: Pass\n\n81) zoltar: Move R3 Nix Hydra\n\n82) fnord: Sacrifice G1 Sink\nPass\n\tfnord: Hmmm.... now that I think about it, maybe you should have resigned earlier in the game. *grin*\n\n83) zoltar: Build G1 Zoltar\n\n84) fnord: Pass\n\tzoltar: I want more pieces!\n\n85) zoltar: Move R1 Hydra Sink\nCatastrophe Sink R\n\n86) fnord: Pass\n\tzoltar: Prepare to be boarded, Earthling!\n\n87) zoltar: Move R3 Hydra Sink\n\tzoltar: m r3 nix hydra\n\n88) fnord: Pass\n\tzoltar: The fleet is now in position for the assault on sink!\n\n89) zoltar: Attack G2 Sink\n\n90) fnord: Pass\n\n91) zoltar: Sacrifice G3 Zoltar\nBuild G3 Sink\nBuild R1 Kallisti\nBuild R1 Sink\n\n92) fnord: Pass\n\n93) zoltar: Sacrifice G3 Hydra\nBuild G3 Sink\nBuild R2 Nix\nBuild R2 Nix\n\n94) fnord: Pass\n\n95) zoltar: Move Y3 Nix Sink\n\n96) fnord: Pass\n\n97) zoltar: Move R1 Kallisti Fnord\n\tzoltar: Sink has been annexed to zee Zoltarian empire!\n\n98) fnord: Move R1 Fnord Sink\n\n99) zoltar: Move R1 Sink Fnord\n\n100) fnord: Attack R1 Fnord\n\tzoltar: My starfleet is now complete! You are surrounded!\n\n101) zoltar: Move R2 Kallisti Fnord\nCatastrophe Fnord R\n\n\tzoltar: Well, that was fun, but I didn't get to end the game with all the pieces on the board, and all mine. :)\n\nHomeworlds Online (SDG# 3696)\nStarted: 2006.6.22, Ended: 2006.6.23\nParticipants: Keith (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B1 Y2 G3\n\tKeith: Hello Zoltar. I have played two unrated learning games with experts and I am now playing my first rated game (which I limited to an opponent not one of the top ten ranked players).\n\n2) Keith: Homeworld B3 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Keith: Build G1 Keith\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Keith: Trade G1 B1 Keith\n\tzoltar: Hi Keith. I've lost every game to experts, and have won 2 unrated games against another brand new player. I'm still getting a basic feel for the game, but I like it a lot.\n\n7) zoltar: Build Y1 Zoltar\n\n8) Keith: Discover B1 Keith G2 Midworld\n\n9) zoltar: Discover Y1 Zoltar G3 Nix\n\n10) Keith: Build G1 Keith\n\n11) zoltar: Build Y2 Nix\n\n12) Keith: Trade G1 B1 Keith\n\tKeith: You do seem to have grasped the concept of color denial... like yellow.\n\n13) zoltar: Build Y2 Zoltar\n\tzoltar: Well, I was trying to get to the larger size upgrades faster than you, and yellow seemed to be the shortest path, so I got the first medium sized ship. In my game against good players, they literally get 2 ships for 1 of mine and I find myself hopelessly outnumbered by the middlegame. Don't quite know how I get tricked -- I'll have to review my games. For now, I'm going for grabbing the bigger ships first.\n\n14) Keith: Build B2 Midworld\n\tKeith: I did review your games before accepting your challenge. TwoShort is the top ranked player and quite adept at getting a factory up and running with safe places to build in. That and TwoShort's willingness to give advice in an unranked game is why I chose TwoShort for one of my mentoring/learning games.\n\n15) zoltar: Build Y3 Nix\n\n16) Keith: Trade B1 R1 Keith\n\n17) zoltar: Trade Y2 R2 Zoltar\n\n18) Keith: Trade B2 Y2 Midworld\n\tzoltar: I have learned that as soon as your opponent gets a red, get a red immediately somewhere, or else you will get bushwhacked!\n\tKeith: That is true. More importantly (for me) it puts me in the yellow game.\n\n19) zoltar: Move Y3 Nix Midworld\n\tzoltar: I'm confused as to how getting a red puts you in the yellow game, as it seems about the same if we both have a red or if neither of us does -- I hope I haven't missed something big!\n\tKeith: To get a red you had to trade a yellow for it (or your G3 and temporarily give up a factory effort). Then I picked up that yellow.\n\n20) Keith: Build B1 Midworld\n\tzoltar: now that you have a yellow, I have to worry about you blowing up all my yellows if I would have let you join the party at nix! Two games ago I might have missed that, but now I'm older and wiser! \n\n21) zoltar: Sacrifice R2 Zoltar\nAttack Y2 Midworld\nAttack B1 Midworld\n\n22) Keith: Build B2 Midworld\n\tzoltar: I'm back in the Yellow business again!\n\tKeith: Hey...what happend to the theory of having a red ship if I have one? In other words I did not think of your doing that.\n\n23) zoltar: Build B2 Midworld\nCatastrophe Midworld B\n\n24) Keith: Build G1 Keith\n\tzoltar: Well, I'm playing "Palestinian style", and I can always grow a red back again. After all the destruction, I end up once again with -- Yellow!\n\n25) zoltar: Build Y3 Zoltar\n\n26) Keith: Build R1 Keith\n\n27) zoltar: Trade Y3 R3 Zoltar\n\tzoltar: t y3 r3 zoltar\n\n28) Keith: Discover G1 Keith B2 Bell\n\tzoltar: ok, ok, I get the message -- reds it is!\n\tzoltar: I have to go will move again later this evening!\n\n29) zoltar: Build Y3 Zoltar\n\n30) Keith: Build G1 Keith\n\tKeith: You now have a 4 to 1 lead in large ships and an 8 to 4 lead in ships overall. It should be just a matter of time before you figure out how to defeat me.\n\n31) zoltar: Trade Y3 R3 Zoltar\n\tzoltar: t y3 r3 zoltar\n\tzoltar: Yes, I'm usually on the other end of this situation, so I'll do what the good players do against me and play solid and slowly consolodate my lead\n\n32) Keith: Discover G1 Keith B2 Bird\n\n33) zoltar: Build Y3 Zoltar\n\n34) Keith: Build G1 Keith\n\n35) zoltar: Build G2 Zoltar\n\n36) Keith: Trade G3 Y3 Keith\n\n37) zoltar: Sacrifice Y3 Zoltar\nMove Y1 Nix Midworld\nMove Y1 Midworld Keith\nMove Y2 Midworld Keith\nCatastrophe Keith Yellow\n\n\n38) Keith: Build G2 Keith\n\n39) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Midworld\n\n40) Keith: Trade R1 Y1 Keith\n\tKeith: Which is why I had been hesitant to trade for a Y3. Growing another imobile green ship wasn't working for me either.\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Nix\nBuild Y3 Nix\n\tzoltar: Yup, I figured if you stopped me from taking the Y3, I could cause another catastrophe and then start building my yellows again from scratch, but now my big ships outnumber you 4-0\n\n42) Keith: Move G1 Keith Zoltar\nCatastrophe Zoltar Green\n\n43) zoltar: Move R3 Zoltar Keith\n\n44) Keith: Sacrifice G2 Keith\nBuild R1 Keith\nBuild R1 Keith\nCatastrophe Keith Red\n\n45) zoltar: Sacrifice Y3 Nix\nMove Y1 Midworld Keith\nMove Y3 Midworld Keith\nMove R3 Zoltar Keith\n\tKeith: Probably just a defiant gesture on my way out.\n\tKeith: Probably just a defiant gesture on my way out.\n\n46) Keith: Trade Y1 R1 Keith\n\tzoltar: I never saw that coming, as I forgot that by rudely blowing up one of your stars, your homeworld is just a step away. Of course, that also means it's a step away for my red battlecruisers, and in big ships I still have the edge...\n\tKeith: A big red enemy battle cruiser at my homeworld is a disadvantage to pointing out our homeworlds are now adjacent. At least I reduced the big ship ratio from 6 to 0 to 4 to 0... on my way out. You still have a huge advantage.\n\tKeith: I have to head off for a 12 hour work shift. \n\tzoltar: Yes, I think it's checkmate in 2 moves\n\tKeith: I was not sure how long I could wait before you noticed the adjacent homeworlds or started moving green ships out. I thought about building the Y3 at keith and seeing if you went for another destruction cycle. That would have put large ship ratios at 3 to 0 if I still was able to pull off the green catastrophe at Zoltar. \n\n47) zoltar: Attack R1 Keith\n\tzoltar: Very nice defence!\n\n\tzoltar: Good Game, my first rated win ever! Play again?\n\tKeith: Hey, I made it to move 47! Very good game. You had me in trouble from very early on. Yes I would like to play again.\n\tzoltar: Most of my games have been against good players who have me outplayed from the 3rd move and it only gets worse. It's great practice for me to play with another beginner so I can learn to attack and press an advantage when I get one. So let's play again; the practice will help us both learn the tricks to this clever game.\n\nHomeworlds Online (SDG# 3721)\nStarted: 2006.6.23, Ended: 2006.6.23\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B2 R3 G3\n\n2) zoltar: Homeworld B1 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Build Y1 Twoshort\n\n10) zoltar: Build Y2 Zoltar\n\n11) TwoShort: Discover Y1 Twoshort G1 Gloria\n\n12) zoltar: Discover Y1 Zoltar G3 Hydra\n\n13) TwoShort: Discover Y1 Gloria B3 Borbor\n\n14) zoltar: Trade Y2 B2 Zoltar\n\n15) TwoShort: Build Y2 Twoshort\n\n16) zoltar: Build B1 Zoltar\n\n17) TwoShort: Discover Y1 Twoshort G1 Gonzo\n\n18) zoltar: Trade B2 R2 Zoltar\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Borbor\nBuild Y3 Twoshort\nBuild Y3 Borbor\n\n20) zoltar: Build Y3 Hydra\n\n21) TwoShort: Move Y2 Borbor Zoltar\n\n22) zoltar: Trade G1 B1 Zoltar\n\tzoltar: Nice move -- my y2 star is dead whether I capture your ship or not. \n\tzoltar: Oh wow and if I build a g2, you can even sack your y3 and take out all my green, and blow up my star the next turn!\n\n23) TwoShort: Trade Y2 B2 Zoltar\nCatastrophe Zoltar Blue\n\tTwoShort: Well, if you liked that, you'll love this... :)\n\n24) zoltar: Build Y2 Hydra\n\tzoltar: Whoa! Never saw that one coming! Wow!\n\n25) TwoShort: Move Y3 Borbor Zoltar\n\tzoltar: Uh-oh, it looks like checkmate if you sac your y3 in your homeworld to move the other 3 yellow ships into my homeworld. At least I saw this one coming, even though there is no defence...\n\n26) zoltar: Sacrifice Y3 Hydra\nMove R2 Zoltar Borbor\nMove Y2 Hydra Zoltar\nMove Y1 Hydra Zoltar\nCatastrophe Zoltar Y\n\tzoltar: I don't get it -- was I wrong? Wouldn't have sacrifing your Y3 in your homeworld to move the y1 from Gonzo and the y1 and y3 from BorBor all to Zoltar have blown up my star? Well if you won't -- I will!\n\tTwoShort: the y1 at Gonzo would have had to move to a 3 first, and from there to your homeworld, using up 2 moves. Next turn I could do that, and the y1 from BorBor. It was still checkmate, it just needed 2 turns to make the 4 moves required.\n\tzoltar: I -still- don't get it! Gonzo was a G1 star, and my remaining home star was a Y2 star, so why couldn't the y1 at Gonzo move directly into my homeworld in one step? \n\tTwoShort: Because I'm an idiot :) You're absolutely right. I had been planning how to move in the yellows before I got the chance to blow up the blue first, and never adjusted my thinking.\n\n\nHomeworlds Online (SDG# 3725)\nStarted: 2006.6.23, Ended: 2006.6.26\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B2 R3 B3 *\n\tTwoShort: Here, you can go first this time...\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) TwoShort: Trade B3 G3 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n5) TwoShort: Build G1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build Y1 Zoltar\n\n9) TwoShort: Trade G3 Y3 Twoshort\n\n10) zoltar: Trade Y1 G1 Zoltar\n\tTwoShort: Nice move\r\n\n\n11) TwoShort: Discover G1 Twoshort B1 Bonanza\n\n12) zoltar: Build G2 Zoltar\n\tzoltar: Thanks -- couldn't let you get that factory going\n\n13) TwoShort: Build G2 Bonanza\n\n14) zoltar: Discover G1 Zoltar Y3 Nix\n\n15) TwoShort: Trade G2 Y2 Bonanza\n\n16) zoltar: Discover G2 Zoltar Y3 Hydra\n\n17) TwoShort: Trade Y3 G3 Twoshort\n\n18) zoltar: Build G2 Zoltar\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bonanza\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n20) zoltar: Move G2 Hydra Bonanza\n\tzoltar: I suppose you can factory here and get an extra build as well as take all the greens that are left, but what else could I do? Yet again, I feel utterly lost at this point in the game. Am I missing any key concepts here?\n\tTwoShort: At this point I can take the remaining greens, and that's it (which I may). Often there are moves where you can't do anything right away, and you want to think about what things you could be threatening to do in the future. Ideally, I want to advance as many potential agendas as possible. You could advance a green, so as to threaten disater in my homeworld if I grow a third. You could threaten the same thing with a 2 point yellow, so you might move your 1 point out to somewhere you can safely grow (it won't have to be green if the factories come on line); that would also help burn through the yellows. If the 1 & 2 yellows are gone, you'll be able to sacrifice your g's at Nix and/or hydra to grow the system markers as ships. That's a strategy called "cashing an investment". The key concept at this point is who winds up with more 3 point ships as the first couple colors run out. And of course, not letting the other guy surprise you and blow up your homeworld :)\n\n21) TwoShort: Trade G3 Y3 Twoshort\n\n22) zoltar: Sacrifice G2 Zoltar\nBuild G2 Bonanza\nBuild G3 Zoltar\nCatastrophe Bonanza G\n\n23) TwoShort: Move G1 Twoshort Bonanza\n\n24) zoltar: Build G1 Nix\n\tzoltar: I suppose that was my only reasonable defence -- Well at least I have 2 big ships like you and I'm only behind one ship for now...\n\tTwoShort: Good move. I only saw it after my move and was wondering if you would. \n\n25) TwoShort: Build G2 Twoshort\n\n26) zoltar: Discover G1 Nix Y1 Hydra\n\n27) TwoShort: Build G2 Bonanza\n\n28) zoltar: Discover Y1 Zoltar B3 Charon\n\n29) TwoShort: Move G2 Bonanza Charon\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G2 Hydra\nBuild G3 Nix\nBuild Y2 Charon\n\n31) TwoShort: Trade G2 R2 Twoshort\n\n32) zoltar: Sacrifice G3 Nix\nBuild G2 Zoltar\nBuild G3 Nix\nBuild Y2 Charon\n\n33) TwoShort: Build Y3 Bonanza\n\n34) zoltar: Trade G2 R2 Zoltar\n\n35) TwoShort: Sacrifice R2 Twoshort\nAttack Y2S Charon\nAttack Y2S Charon\n\n36) zoltar: Move G3 Nix Bonanza\n\n37) TwoShort: Sacrifice Y3 Bonanza\nMove Y2 Bonanza Charon\nMove Y2 Charon Zoltar\nMove Y2 Charon Zoltar\n\n38) zoltar: Move G1 Hydra Twoshort\n\n39) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild G2 Bonanza\nBuild G3 Charon\n\n40) zoltar: Sacrifice G3 Bonanza\nBuild G3 Zoltar\nBuild R1 Zoltar\nBuild R1 Zoltar\n\n41) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Bonanza Charon\nMove G1 Charon Zoltar\nMove G2 Charon Zoltar\nCatastrophe Zoltar Green\n\n42) zoltar: Attack Y2 Zoltar\n\tzoltar: Never saw the Yellow attack coming, as usual...\n\tTwoShort: Well, it's an attack out of semi-desperation; destroying half your homeworld doesn't finish you off, and leaves you with an advantage in ships... but with you presuring me with your sacrificeable red threat, it seemed like time to use 'em or lose 'em. So now it's a question of whether you can take control before I can get together the blues to finish you. Of course, you're not forcing me to pull the trigger on the yellow catastrophe, so I naturally think about whether it's better to wait; and that 1 pointer in my homeworld certainly makes me nervous, though so far I don't see how it can do more than take out my G3, which would be painful, but I think recoverable so long as I keep the other 3 there and some green elsewhere. In short, you have hearby graduated from "enthusiastic beginner" to "interesting opponent"... So now I need to think a bit to figure out what to do here.\n\n43) TwoShort: Trade Y2 R2 Zoltar\nCatastrophe Zoltar Red\n\tzoltar: Well, I'm afraid I haven't a clue what to do here, nor how to attack, and you've sidestepped my green threat, so I suppose I'll sleep on it and look at the position tomorrow. And thanks, I'm glad I'm putting up a bit of a fight, as I was worried I was going to be boring you after a while; I hope I can make things interesting. My goal now is to knock out one of your stars before I die!\n\n44) zoltar: Sacrifice G1 Twoshort\nBuild Y2 Charon\n\n45) TwoShort: Move G3 Charon Zoltar\n\n46) zoltar: Sacrifice G1 Nix\nBuild Y3 Charon\nCatastrophe Charon Y\n\n47) TwoShort: Trade G2 R2 Bonanza\n\n48) zoltar: Move G2 Hydra Twoshort\n\tTwoShort: woops, missed your undo there\n\n49) TwoShort: Sacrifice R2 Bonanza\nAttack G2S Twoshort\nAttack Y2S Zoltar\n\n\tTwoShort: Cool, this way I get to take all your ships :) Anyway, I'll be happy to play again, but probably not until this evening...\n\nHomeworlds Online (SDG# 3728)\nStarted: 2006.6.23, Ended: 2006.6.25\nParticipants: zoltar (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld B2 R3 G3\n\n3) Keith: Build G1 Keith\n\n4) zoltar: Build G1 Zoltar\n\n5) Keith: Trade G1 Y1 Keith\n\n6) zoltar: Build G1 Zoltar\n\n7) Keith: Build Y1 Keith\n\tKeith: A red homeworld star. Did you pick that up from TwoShort?\n\n8) zoltar: Trade G3 Y3 Zoltar\n\n9) Keith: Discover Y1 Keith G3 Greenleaf\n\n10) zoltar: Build Y2 Zoltar\n\n11) Keith: Build Y2 Greenleaf\n\n12) zoltar: Discover G1 Zoltar B1 Betazed\n\n13) Keith: Discover Y1 Greenleaf B2 Bell\n\n14) zoltar: Move Y2 Zoltar Betazed\n\n15) Keith: Discover Y1 Keith G3 Midworld\n\n16) zoltar: Build Y2 Betazed\n\tKeith: Well it seemed like a good idea at the time. Grab the last three yellows with two y3s. But you could sacrifice your y3, move your y2 to Keith and instant win.\n\n17) Keith: Build G1 Keith\n\tzoltar: Yes, I've lost just that way before! Sacrifices are the easiest moves to miss and get blindsided by.\n\n18) zoltar: Trade Y2 R2 Betazed\n\n19) Keith: Sacrifice G3 Keith\nBuild Y2 Bell\nBuild Y3 Greenleaf\nBuild Y3 Midworld\n\n20) zoltar: Trade Y3 R3 Zoltar\n\tKeith: You just had to go and pull a gun.\n\tzoltar: I'm gonna blast'ya!\n\tKeith: I have to think about this and I have to get up in 6 hours so I will be at it again tomorrow.\n\tzoltar: Ok, goodnight, will look forward to part 2 tomorrow.\n\n21) Keith: Move Y3 Greenleaf Keith\n\n22) zoltar: Build Y3 Betazed\n\n23) Keith: Sacrifice Y2 Bell\nMove Y1 Bell Betazed\nMove Y1 Midworld Betazed\nCatastrophe Betazed Yellow\n\tzoltar: Looks like I had pulled the gun in the wrong place -- this is where I need it.\n\n24) zoltar: Build G2 Betazed\n\n25) Keith: Build G2 Keith\n\n26) zoltar: Trade R2 Y2 Betazed\n\n27) Keith: Trade G1 R1 Keith\n\n28) zoltar: Trade G2 Y2 Betazed\n\n29) Keith: Build R1 Keith\n\n30) zoltar: Discover Y2 Betazed G3 Balderdash\n\n31) Keith: Build R1 Keith\n\n32) zoltar: Build Y1 Balderdash\n\n33) Keith: Trade Y3 B3 Keith\n\n34) zoltar: Build Y1 Balderdash\n\n35) Keith: Move G2 Keith Balderdash\n\n36) zoltar: Build Y3 Betazed\n\n37) Keith: Sacrifice R1 Keith\nAttack Y2 Balderdash\n\n38) zoltar: Sacrifice Y2 Betazed\nMove Y1 Balderdash Keith\nMove Y1 Balderdash Keith\n\n39) Keith: Attack Y1 Keith\n\n40) zoltar: Sacrifice G1 Zoltar\nBuild Y2 Keith\nCatastrophe Keith Y\n\n41) Keith: Sacrifice Y2 Balderdash\nMove R1 Keith Betazed\nMove R1 Betazed Zoltar\n\tKeith: This has been an excellent struggle. Sorry but I must head off to a nine hour workshift.\n\n42) zoltar: Trade R3 Y3 Zoltar\n\tzoltar: Ok, maybe we can continue late tonight -- I think I'm losing. I can at least force the supernova of one of your stars, but it has been at considerable cost. Whether or not that can compensate for your lead in development we'll soon see.\n\tKeith: I have a development lead but so far I am not on offense. All my ships are at least two away from your homeworld and my ship colors are not much of a catastrophe threat to your homeworld stars.\n\n43) Keith: Sacrifice G2 Balderdash\nBuild R1 Zoltar\nBuild R2 Zoltar\nCatastrophe Zoltar Red\n\tKeith: I think I can make it difficult for you to get that fourth yellow at my homeworld.\n\n44) zoltar: Build G1 Betazed\n\tKeith: Or maybe not. An expensive catastrophe indeed. A y2, y1, y1, and g1 of yours. Though I did waste a turn converting your y1.\n\n45) Keith: Move Y3 Midworld Zoltar\n\n\tzoltar: Oh you're right, I meant to change my Y3 back to red, but I spaced out. Good game. Play again?\n\tKeith: Yes we should play again. If you had changed your Y3 back to a R3 then I could have moved my R1 in an catastrophied all the ships at your homeworld.\n\nHomeworlds Online (SDG# 3735)\nStarted: 2006.6.25, Ended: 2006.6.26\nParticipants: zoltar (S), Keith (N)\nWinner: zoltar\n\n1) Keith: Homeworld G1 B2 Y3\n\n2) zoltar: Homeworld Y3 B2 G3\n\n3) Keith: Build Y1 Keith\n\n4) zoltar: Build G1 Zoltar\n\n5) Keith: Build Y1 Keith\n\n6) zoltar: Discover G1 Zoltar G1 Gamma\n\n7) Keith: Discover Y1 Keith Y3 Brickroad\n\n8) zoltar: Build G2 Zoltar\n\n9) Keith: Trade Y1 R1 Keith\n\n10) zoltar: Trade G2 R2 Zoltar\n\n11) Keith: Build Y1 Keith\n\tzoltar: Aggression on only the 4th move, eh?\n\tKeith: I was trying to keep you away from a y2. Since in our first game you taught me how inconvenient it can be to be yellow poor (or broke). Besides, it was only a little one. A defensive move.\n\n12) zoltar: Build G2 Zoltar\n\n13) Keith: Trade Y3 G3 Keith\n\tKeith: Once again you are racing up a color track while I struggle to get one.\n\n14) zoltar: Build G2 Gamma\n\n15) Keith: Build G2 Keith\n\tzoltar: Well, you ended up kicking my butt last game, so I'm not so confident.\n\tKeith: I am going to have to shut it down for the night soon. It is 1:3AM where I am and I have a fence to build tomorrow in the cool of the morning before it get hot. BTW what time is it where you are?\n\tzoltar: And I'm sure you'll send some jihadist into the delta quadrant and blow up all my extra greens before I can do anything about it.\n\n16) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Zoltar\n\tzoltar: It's also 1:35 a.m. here too! We must be located in the same Star System. I live on Sol-3 in the Milky Way Galaxy. How about you? :)\n\n17) Keith: Build Y1 Keith\n\n18) zoltar: Trade G2 Y2 Zoltar\n\tKeith: Sol-3 North American continent\n\n19) Keith: Trade G3 Y3 Keith\n\n20) zoltar: Sacrifice Y2 Zoltar\nMove G2 Gamma Brickroad\nMove R1 Zoltar Gamma\n\tzoltar: I'm in Greenbelt of the Milky Way\n\tKeith: Greenbelt?\n\tKeith: Maryland?\n\n21) Keith: Move Y3 Keith Brickroad\n\tKeith: And here I was all set to sacrifice my Y3 to eliminate your G3s and give us a game with no large ships in play.\n\tKeith: This looks like a good point to stop and think. That and it is 2:00AM.\n\tzoltar: Yes, the one in Maryland, not the one on Beta Lyra.\n\tzoltar: Ok, goodnight. Hopefully we can continue tomorrow.\n\tKeith: Whitsett, North Carolina is my location. Tomorrow night then if not sooner.\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild G2 Brickroad\nBuild G3 Zoltar\nBuild G3 Gamma\n\n23) Keith: Move R1 Keith Brickroad\n\n24) zoltar: Sacrifice R1 Gamma\nAttack R1 Brickroad\n\n25) Keith: Trade Y1 R1 Keith\n\tKeith: Duh! Should not have moved tired. Now I have a crises.\n\n26) zoltar: Attack Y1 Brickroad\n\tzoltar: Attack!\n\tKeith: Back in about 1/2 an hour.\n\n27) Keith: Sacrifice R1 Keith\nAttack R1 Brickroad\n\tzoltar: The Yellow Brick Road will soon be mine! Next stop, Oz! Whew Who!\n\n28) zoltar: Sacrifice G2 Brickroad\nBuild Y1 Brickroad\nBuild G2 Zoltar\nCatastrophe Brickroad Y\n\n29) Keith: Build G2 Keith\n\tzoltar: Elton John's "Goodbye Yellow Brick Road" plays in the background as splinters of Yellow Bricks go flying in all directions....\n\tKeith: Oh wow. One mistake after another on my part. Somehow I had the idea I was safe from a yellow catastrophe. Three large ships to my none. Six ships to my two. The end is just a matter of time. I will hold off a turn or two before I resign.\n\n30) zoltar: Trade G3 Y3 Zoltar\n\n31) Keith: Trade G2 R2 Keith\n\tzoltar: Yes, I was going to move my g2 into your homeworld, and then if you captured it, move the other g2 in and blow up your star; or if you captured the other g2 on BrickRoad, sac my g1 on gamma and rebuild it in your homeworld and still blow up the star. But with my g2 ship and my y1 I could build the 4th yellow to supernova; furthermore I had a finesse by sacking the g2, building the y1, and then rebuilding the (would be) doomed g2 back in my homeworld, thus giving me yet another piece. The overwhelming lead in development now is surely better than knocking out your green star but leaving you with lots of ships and counterplay. \n\tzoltar: Had you captured my y1 (to stop me from supernoving the Y3 star) instead of my r1, then with my r1 I could have captured it right back, except that you sacked an r1 for the attack and I didn't, so that we're in the same position again except you're missing your r1 (ditto with capturing a g2 instead). I think your only defence was to run back your y3 to your homeworld 2 moves ago. Now I'm really getting why they say always leave a 3-pip ship in your homeworld unless you have an extraordinary good reason to move or sac it. \n\n32) zoltar: Trade G3 B3 Zoltar\n\tKeith: I am going to take a quick time out to issue some Cannon challanges now that is back online.\n\n33) Keith: Build Y1 Keith\n\tzoltar: Well, you can play with your cannons -- I'm going to get one of each color so I have a complete team, and a solid base to build my forces!\n\n34) zoltar: Build R1 Zoltar\n\n35) Keith: Discover G2 Keith B3 Velvet\n\n36) zoltar: Sacrifice G3 Gamma\nBuild G2 Gamma\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n37) Keith: Build G3 Velvet\n\n38) zoltar: Sacrifice Y3 Zoltar\nMove R2 Zoltar Gamma\nMove G2 Gamma Velvet\nMove G1 Gamma Velvet\nCatastrophe Velvet G\n\n39) Keith: Trade Y1 G1 Keith\n\n40) zoltar: Discover G2 Zoltar Y1 Mellow\n\tzoltar: A Palestinian wearing a backpack was last seen on Blue Velvet, with a Koran in one hand and a push-button detonator in the other...\n\n41) Keith: Build G2 Keith\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Mellow\n\n43) Keith: Trade G2 Y2 Keith\n\n44) zoltar: Sacrifice B3 Zoltar\nTrade G3 Y3 Zoltar\nTrade G3 R3 Zoltar\nTrade R1 B1 Zoltar\n\n45) Keith: Discover G1 Keith Y3 Macadam\n\n46) zoltar: Build R1 Zoltar\n\n47) Keith: Build G2 Macadam\n\n48) zoltar: Sacrifice G3 Mellow\nBuild G3 Mellow\nBuild G3 Zoltar\nBuild B1 Zoltar\n\tKeith: I ended up building fences from my mid-day move until dark. I am about ready to crash and I am going to sign off until mid-morning.\n\n49) Keith: Trade Y1 B1 Keith\n\tzoltar: Ok, we'll continue tomorrow then!\n\n50) zoltar: Discover G3 Zoltar Y1 Submarine\n\n51) Keith: Build B2 Keith\n\n52) zoltar: Sacrifice Y3 Zoltar\nMove B1 Zoltar Submarine\nMove B1 Submarine Macadam\nMove B1 Macadam Keith\nCatastrophe Keith B\n\n53) Keith: Build G3 Macadam\n\n54) zoltar: Move G2 Mellow Macadam\nCatastrophe Macadam G\n\n55) Keith: Build Y1 Keith\n\n56) zoltar: Move R3 Zoltar Keith\n\n57) Keith: Build R1 Keith\n\n58) zoltar: Sacrifice R2 Gamma\nAttack Y2 Keith\nAttack Y1 Keith\n\tzoltar: The Death Star is now fully functional. \r\n"We have the rebel base in sight."\n\n59) Keith: Build R1 Keith\n\n60) zoltar: Sacrifice G3 Mellow\nBuild R2 Keith\nBuild Y1 Keith\nBuild Y2 Keith\nCatastrophe Keith Y\nCatastrophe Keith R\n\n\tKeith: I think you are going to have to blow up your own Death Star.\n\tzoltar: But this happens to be a Palestinian Death Star! Engage self-destruct sequence! Fire! Play again?\n\tKeith: Yes, play again. Though at this point I will have five Cannon games competing for my play time.\n\nHomeworlds Online (SDG# 3717)\nStarted: 2006.6.25, Ended: 2006.7.15\nParticipants: Gort (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\tGort: Sorry, I didn't see your challenge until after I signed up for this game.\n\n2) Gort: Homeworld G3 B2 Y3\n\tzoltar: Ok, now it all makes sense! I'll try to pay attention this time, and give you a run for your money!\n\n3) zoltar: Build G1 Zoltar\n\tGort: looking at your other games, you very well might beat me. let the war begin!\n\n4) Gort: Build Y1 Gort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Gort: Build Y1 Gort\n\n7) zoltar: Discover Y1 Zoltar G3 Greengiant\n\n8) Gort: Trade Y1 R1 Gort\n\n9) zoltar: Build G1 Zoltar\n\n10) Gort: Trade Y1 G1 Gort\n\n11) zoltar: Trade G1 R1 Zoltar\n\n12) Gort: Build Y1 Gort\n\n13) zoltar: Build G1 Zoltar\n\n14) Gort: Discover G1 Gort B1 Booberry\n\tzoltar: Ok, I've learned my lesson about not having a red ship when your opponent builds one!\n\n15) zoltar: Discover G1 Zoltar B3 Boysenberry\n\n16) Gort: Build G1 Booberry\n\n17) zoltar: Build G2 Zoltar\n\n18) Gort: Sacrifice Y1 Gort\nMove G1 Booberry Boysenberry\n\n19) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G2 Boysenberry\nBuild G3 Zoltar\n\n20) Gort: Sacrifice Y3 Gort\nMove G1 Boysenberry Zoltar\nMove G1 Booberry Boysenberry\nPass\nCatastrophe Zoltar G\n\n21) zoltar: Sacrifice Y1 Greengiant\nMove G2 Boysenberry Zoltar\n\n22) Gort: Build R1 Gort\n\n23) zoltar: Sacrifice R1 Zoltar\nAttack G1 Boysenberry\n\tzoltar: nice move!\n\tGort: Thanks... we'll see how it goes. Thanks for not forcing a surrender when I was late!\n\n24) Gort: Trade R1 Y1 Gort\n\n25) zoltar: Build G1 Zoltar\n\n26) Gort: Discover R1 Gort Y1 Yellowstar\n\tzoltar: Looks like this is going to be a long game...\n\tGort: not if i keep up with this recklessness.\n\n27) zoltar: Trade G2 R2 Zoltar\n\n28) Gort: Build Y1 Gort\n\n29) zoltar: Build G2 Boysenberry\n\n30) Gort: Build Y2 Gort\n\tzoltar: It was Calavera who had me beat when I pulled a fast one and blew up his homeworld in an almost resignable position yesterday. So this is cool, Gort -- you are like "Racer X", who unbeknownst to the world is secretly Speed Racer's long lost brother...\n\n31) zoltar: Trade G2 Y2 Boysenberry\n\tGort: I think I'm in big trouble here... I need you to make a mistake!\n\n32) Gort: Sacrifice Y2 Gort\nMove Y1 Gort Yellowstar\nMove Y1 Yellowstar Boysenberry\n\tzoltar: The Galaxy will be mine! All mine! Brewhoohoohahaha!\n\n33) zoltar: Move Y2 Boysenberry Yellowstar\n\n34) Gort: Build Y2 Gort\n\n35) zoltar: Sacrifice R2 Zoltar\nAttack R1 Yellowstar\nAttack Y1 Boysenberry\n\n36) Gort: Trade Y2 R2 Gort\n\n37) zoltar: Build G2 Zoltar\n\n38) Gort: Build Y2 Gort\n\n39) zoltar: Build Y3 Boysenberry\n\tzoltar: I don't like that move, but I see nothing else.\n\tGort: yeah, i think that was right.\n\n40) Gort: Move Y1 Gort Yellowstar\n\n41) zoltar: Sacrifice Y2 Yellowstar\nMove Y3 Boysenberry Yellowstar\nMove Y3 Yellowstar Gort\n\n42) Gort: Build R1 Gort\n\n43) zoltar: Trade G2 R2 Zoltar\n\n44) Gort: Build Y2 Gort\n\n45) zoltar: Sacrifice R2 Zoltar\nAttack R2 Gort\nAttack R1 Gort\n\tzoltar: The Death Star is now fully functional! Prepare to open fire on the rebel base! \n\tzoltar: I've learned a couple of basic tactics in Homeworld endgames, such as: if your opponent fails to have a 3-pip starship in his homeworld at any time, sac anything to stick your 3-pip ship in his homeworld, and usually it is checkmate in a couple of moves.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\n\n46) Gort: Build Y3 Gort\n\n47) zoltar: Move R1 Yellowstar Gort\nCatastrophe Gort Y\n\tzoltar: Your puny fleet is no match for Zoltar'z Battle Cruiser! Prepare to meet your DOOM!!! [Insert Evil Overlord sinister laughter here]\n\n\tGort: Can't we all just get along?\n\tzoltar: Sure, as long as we're all on my side!\n\nHomeworlds Online (SDG# 3751)\nStarted: 2006.6.26, Ended: 2006.6.29\nParticipants: zoltar (S), TwoShort (N)\nWinner: zoltar\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld B3 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Discover G1 Twoshort Y3 Yoyo\n\n10) zoltar: Discover G1 Zoltar B1 Bozo\n\n11) TwoShort: Build Y1 Twoshort\n\n12) zoltar: Build Y2 Zoltar\n\n13) TwoShort: Discover Y1 Twoshort G3 Yodel\n\n14) zoltar: Discover Y2 Zoltar G1 Pea\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Yodel\nBuild Y3 Twoshort\n\n16) zoltar: Build G2 Zoltar\n\n17) TwoShort: Trade Y2 R2 Twoshort\n\n18) zoltar: Move Y1 Zoltar Bozo\n\n19) TwoShort: Move Y3 Yodel Bozo\n\n20) zoltar: Trade G2 R2 Zoltar\n\tTwoShort: Well, I guess I won't undo, but I just realized I should have sac'd a y3 to put the other y3 in your homeworld...\n\tzoltar: Wow -- I didn't even see that. I did remember the principle that I should immediately get a red when you do, but I looked and didn't see any threats. But if you have a red piece and I don't, then sticking a 3-size anything in my homeworld is a major threat, isn't it?! Still learning basic principles here.\n\n21) TwoShort: Build Y2 Yodel\n\n22) zoltar: Build G2 Zoltar\n\tTwoShort: Yeah, I didn't see it at first, because it would have meant leaving my homeworld without a 3, which is typically bad, so my brain discards such moves without much consideration. But in this cae I could have won before you could do anything to me. \n\n23) TwoShort: Sacrifice G1 Yoyo\nBuild Y3 Twoshort\n\n24) zoltar: Sacrifice Y2 Pea\nMove Y1 Bozo Yodel\nMove Y1 Yodel Twoshort\nCatastrophe Twoshort Y\n\n25) TwoShort: Trade Y3 R3 Bozo\n\n26) zoltar: Sacrifice G1 Bozo\nBuild R1 Zoltar\n\tzoltar: Ok, I gotta try to play as agressively as possible -- can't let you just take all the 3-pip ships, so here goes...\n\n27) TwoShort: Move Y1 Yodel Bozo\n\n28) zoltar: Trade G2 Y2 Zoltar\n\tzoltar: Yikes!\n\n29) TwoShort: Trade R3 G3 Bozo\n\n30) zoltar: Build G1 Zoltar\n\n31) TwoShort: Sacrifice G3 Bozo\nBuild Y1 Bozo\nBuild Y1 Yodel\nBuild Y3 Yodel\n\n32) zoltar: Discover Y2 Zoltar G1 Eggs & Ham\n\n33) TwoShort: Sacrifice Y2 Yodel\nMove Y3 Yodel Twoshort\nDiscover Y1 Yodel G1 Ham\n\n34) zoltar: Build G2 Zoltar\n\n35) TwoShort: Build Y2 Ham\n\n36) zoltar: Move G2 Zoltar Bozo\n\n37) TwoShort: Sacrifice Y2 Ham\nMove Y1 Bozo Zoltar\nMove Y1 Bozo Zoltar\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bozo\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n39) TwoShort: Move Y1 Ham Zoltar\n\n40) zoltar: Discover G1 Zoltar G1 Ham\n\tzoltar: Grrrrrr\n\n41) TwoShort: Trade Y3 G3 Twoshort\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Bozo\nBuild Y2 Eggs\n\n43) TwoShort: Trade R2 B2 Twoshort\nCatastrophe Zoltar Yellow\n\tzoltar: Aha -- going for my greens too? Yikes!\n\n44) zoltar: Discover Y2 Eggs B3 Samiam\n\tTwoShort: I gotta try and weasel out of this somehow :)\n\n45) TwoShort: Build B1 Twoshort\n\n46) zoltar: Sacrifice G3 Bozo\nBuild G3 Bozo\nBuild R1 Zoltar\nBuild Y1 Samiam\n\n47) TwoShort: Trade B2 Y2 Twoshort\n\n48) zoltar: Trade R2 B2 Zoltar\n\n49) TwoShort: Discover B1 Twoshort Y3 Futility\n\n50) zoltar: Sacrifice G3 Bozo\nBuild G3 Bozo\nBuild R2 Zoltar\nBuild Y1 Eggs\n\n51) TwoShort: Build Y1 Twoshort\n\n52) zoltar: Sacrifice Y2 Eggs\nMove Y2 Samiam Twoshort\nMove Y1 Samiam Twoshort\nCatastrophe Twoshort Y\n\n53) TwoShort: Move B1 Futility Twoshort\n\n54) zoltar: S G3 Bozo\nBuild G3 Bozo\nBuild Y1 Eggs\nBuild Y1 Eggs\n\n\tTwoShort: Excellent game, well done.\n\tzoltar: Thanks! This was my first win ever against an experienced player. Whew Who!\n\nHomeworlds Online (SDG# 3754)\nStarted: 2006.6.26, Ended: 2006.6.27\nParticipants: Keith (S), zoltar (N)\nWinner: Keith\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) Keith: Homeworld G3 Y3 R3 *\n\n3) zoltar: Build G1 Zoltar\n\tzoltar: Wow! That looks crazy! I'll have to think for a bit!\n\n4) Keith: Build R1 Keith\n\tKeith: Given your fondness for R3s I thought I would try one.\n\n5) zoltar: Trade G1 R1 Zoltar\n\n6) Keith: Discover R1 Keith B1 Berry\n\tKeith: An R1 is enough to keep me from a quick win.\n\n7) zoltar: Build G1 Zoltar\n\n8) Keith: Trade R1 G1 Berry\n\n9) zoltar: Build R1 Zoltar\n\tKeith: Whoops. Typo.\n\n10) Keith: Build G1 Berry\n\n11) zoltar: Build G2 Zoltar\n\n12) Keith: Trade G1 Y1 Berry\n\n13) zoltar: Trade G2 Y2 Zoltar\n\n14) Keith: Discover G1 Berry Y3 Atlast\n\n15) zoltar: Build G1 Zoltar Y3 Crayon\n\n\tzoltar: sorry the computer made the wrong move: I typed in discover and it built\r\n\n\tKeith: I am confused. You could not undo? It looks like you hit resign.\n\tzoltar: It wouldn't let me undo so I clicked resign, so we could start over.\n\nHomeworlds Online (SDG# 3756)\nStarted: 2006.6.27, Ended: 2006.7.1\nParticipants: Keith (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) Keith: Homeworld B2 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Keith: Build G1 Keith\n\n5) zoltar: Trade G1 Y1 Zoltar\n\tKeith: It is getting late for me. I work 10AM to 10PM tomorrow and Wednesday.\n\n6) Keith: Trade G1 Y1 Keith\n\n7) zoltar: Build Y2 Zoltar\n\n8) Keith: Discover Y1 Keith G3 Wagtail\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) Keith: Build G1 Keith\n\n11) zoltar: Move R1 Zoltar Wagtail\n\n12) Keith: Discover Y1 Wagtail G2 Goaway\n\n13) zoltar: Build G1 Zoltar\n\n14) Keith: Trade G1 Y1 Keith\n\n15) zoltar: Move Y2 Zoltar Wagtail\n\n16) Keith: Trade Y1 R1 Keith\n\n17) zoltar: Trade G1 Y1 Zoltar\n\tKeith: Alright alright I have a gun too.\n\n18) Keith: Build G1 Keith\n\n19) zoltar: Build G1 Zoltar\n\n20) Keith: Discover G1 Keith Y3 Bend\n\n21) zoltar: Trade G1 B1 Zoltar\n\n22) Keith: Build G1 Keith\n\n23) zoltar: Trade Y1 R1 Zoltar\n\n24) Keith: Build G1 Bend\n\n25) zoltar: Build G2 Zoltar\n\n26) Keith: Move G1 Bend Zoltar\n\n27) zoltar: Trade G3 Y3 Zoltar\n\n28) Keith: Sacrifice G3 Keith\nBuild G2 Zoltar\nBuild G3 Bend\nBuild G3 Keith\n\tzoltar: uh-oh\n\n29) zoltar: Attack G2 Zoltar\n\tKeith: It will give you something to think about. I am sure there are multiple ways out of it.\n\tKeith: I just sent in a move to your move. But by the time I hit send you had undone your move.\n\n30) Keith: Move G1 Bend Zoltar\nCatastrophe Zoltar Green\n\tzoltar: oh well, I wanted to change it because my first move didn't work very well. I think I may be in big trouble in any case.\n\n31) zoltar: Trade B1 G1 Zoltar\n\tKeith: With your first move I could have sacrificed my g3, built two g2s in Zoltar and my G3 back in Keith. Boom. Changing your G3 to some other color was the way out I saw.\n\tzoltar: Yes, that's just how I saw it. But I lose anyway, it seems...\r\n\n\n32) Keith: Move Y1 Goaway Bend\n\tzoltar: all I can do.\n\n33) zoltar: Build G1 Zoltar\n\tKeith: But you keep a 3 pointer in your homeworld. I did gain in ship production.\n\n34) Keith: Build Y1 Bend\n\tKeith: I will leave you in suspense about my next move while I get some sleep. Another 12 hour work day tomorrow.\n\n35) zoltar: Build Y2 Wagtail\n\n36) Keith: Move Y1 Bend Zoltar\n\n37) zoltar: Trade Y3 R3 Zoltar\n\n38) Keith: Sacrifice G3 Bend\nBuild Y3 Zoltar\nBuild Y3 Bend\nBuild R2 Keith\n\n39) zoltar: Attack Y3 Zoltar\n\n40) Keith: Move Y1 Bend Zoltar\nCatastrophe Zoltar Yellow\n\n41) zoltar: Build R2 Wagtail\n\n42) Keith: Move R1 Keith Bend\n\tzoltar: Yup, I think it's just about over -- there goes one star, and there's no way for me to stop it.\n\n43) zoltar: Trade R3 Y3 Zoltar\n\n44) Keith: Discover Y3 Bend G2 Greenway\n\tKeith: It might not be over just yet. You have 7 ships to my 5. We both occupy two sectors and our homeworlds remaing two apart. I do have two large ships to your one.\n\tzoltar: True, but the extra star and extra big ship count for a lot. I'll have to be extra clever or you'll have to be extra clumbsy for me to win.\n\n45) zoltar: Discover G1 Zoltar Y2 Jacket\n\tKeith: Looks to me like you had a good threat to move in two reds.\n\n46) Keith: Trade G1 B1 Keith\n\n47) zoltar: Trade R1 B1 Zoltar\n\n48) Keith: Move B1 Keith Bend\n\n49) zoltar: Move B1 Zoltar Jacket\n\n50) Keith: Build G1 Keith\n\n51) zoltar: Build G2 Jacket\n\n52) Keith: Move G1 Keith Bend\n\n53) zoltar: Build B2 Jacket\n\n54) Keith: Move Y3 Greenway Wagtail\n\n55) zoltar: Build Y1 Wagtail\nCatastrophe Wagtail Y\n\n56) Keith: Build G2 Keith\n\n57) zoltar: Build G2 Zoltar\n\n58) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild G3 Bend\nBuild B2 Bend\n\n59) zoltar: Move G1 Jacket Bend\n\n60) Keith: Move G3 Bend Jacket\n\n61) zoltar: Sacrifice R2 Wagtail\nAttack R1 Bend\nAttack G1 Bend\n\n62) Keith: Move B1 Bend Zoltar\n\n63) zoltar: Sacrifice R1 Bend\nAttack B1 Zoltar\n\n64) Keith: Move B2 Bend Zoltar\n\n65) zoltar: Sacrifice R1 Wagtail\nAttack B2 Zoltar\n\tzoltar: That doesn't work -- you just move your g3 into my homeworld and it's checkmate in two, so I have to rethink this.\n\n66) Keith: Sacrifice R2 Keith\nAttack B1 Jacket\nAttack B2 Jacket\n\n67) zoltar: Sacrifice Y3 Zoltar\nMove B1 Zoltar Bend\nMove G1 Bend Keith\nMove G1 Bend Keith\nCatastrophe Keith G\n\tzoltar: Yep -- I'm DOOOOOOOMED\n\n\tzoltar: Wow. That's a blunder. You have to save your r2, and move your g3 into my homeworld. You forced me to use up all my reds, so I can't capture your g3 and I'm in trouble. but this sack let's me sac your greens.\n\tzoltar: maybe it still works though, I don't know\r\n\n\tKeith: If I moved my G3 to your homeworld you grow a green and boom its gone.\n\tKeith: Huh?\n\tzoltar: I did have a defence if you move your g3 in for the kill: I sac my b2 and trade the b1 in jacket for an r1, and the b2 in jacket for a y2. Now I have one less blue ship in my homeworld, so trading your G3 for a B3 doesn't blow it up, and if you sac your red and take out my y3 and one of the other ships, then I sac my newly made y2 in jacket and send in both g1's as I did in our game, so I do have a defence and am threatening to blow up your greens at home as well as capture your g3 in my homeworld. Don't know what you can do next, but it was your only line to pursue.\n\tKeith: Well that is darn dissapointing. A bad end to a bad day for me. Only one actual win so far in a handful of games. I have had enough Homeworlds for a while. \n\tzoltar: That's true, I could just grow a green in my homeworld -- I forgot about that!\n\tzoltar: Sorry to spoil your day. I just had another win against a really good player -- I'm on a roll. We seem to be evenly matched; I hope you don't get discouraged, as you're a really good player, and it's a fun game! Please challenge me as soon as you are rested and ready for another space battle, Keith.\n\tKeith: Homeworld is a good game and we are good at making each other think hard. It is a great comeback victory for you. I will eventually be back.\n\nHomeworlds Online (SDG# 3736)\nStarted: 2006.6.27, Ended: 2006.7.9\nParticipants: Uglyfoot (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\tzoltar: Greetingz from Greenbelt, Milky Way\n\n3) zoltar: Build G1 Zoltar\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Uglyfoot: Discover G1 Uglyfoot B1 Commerce\n\n7) zoltar: Build G1 Zoltar\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) Uglyfoot: Trade G1 R1 Uglyfoot\n\n11) zoltar: Build G1 Zoltar\n\n12) Uglyfoot: Build G1 Commerce\n\n13) zoltar: Discover G1 Zoltar Y3 Ribbon\n\n14) Uglyfoot: Trade G1 Y1 Commerce\n\n15) zoltar: Build Y2 Zoltar\n\n16) Uglyfoot: Discover Y1 Commerce G3 Industry\n\n17) zoltar: Move Y2 Zoltar Industry\n\n18) Uglyfoot: Build Y2 Industry\n\n19) zoltar: Build Y3 Industry\nCatastrophe Industry Y\n\n20) Uglyfoot: Build G1 Uglyfoot\n\n21) zoltar: Build G2 Zoltar\n\n22) Uglyfoot: Discover G1 Uglyfoot B1 Fleamarket\n\n23) zoltar: Build G2 Ribbon\n\n24) Uglyfoot: Build G2 Uglyfoot\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\n\n26) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n27) zoltar: Discover G3 Zoltar B3 Investment\n\n28) Uglyfoot: Build G2 Uglyfoot\n\n29) zoltar: Discover Y1 Zoltar B3 Stocks\n\n30) Uglyfoot: Move Y2 Uglyfoot Commerce\n\n31) zoltar: Discover Y1 Zoltar R3 Redgiant\n\n32) Uglyfoot: Build Y2 Commerce\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Redgiant\nBuild Y3 Stocks\n\n34) Uglyfoot: Sacrifice Y2 Commerce\nMove G1 Commerce Ribbon\nMove G1 Fleamarket Ribbon\nCatastrophe Ribbon G\n\n35) zoltar: Trade Y3 R3 Stocks\n\n36) Uglyfoot: Move G2 Uglyfoot Commerce\n\tzoltar: Pretty sneaky -- destroying my factory! You will pay for your insolence, Earthling!\n\n37) zoltar: Move Y3 Redgiant Commerce\n\n38) Uglyfoot: Discover G2 Commerce Y3 Outreach\n\n39) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Stocks\nBuild Y3 Redgiant\n\n40) Uglyfoot: Build G1 Outreach\n\n41) zoltar: Trade Y3 R3 Commerce\n\n42) Uglyfoot: Sacrifice Y2 Commerce\nMove G2 Outreach Zoltar\nMove G1 Outreach Zoltar\n\n43) zoltar: Sacrifice R3 Stocks\nAttack G2 Zoltar\nAttack G1 Zoltar\nPass\n\n44) Uglyfoot: Build R1 Uglyfoot\n\n45) zoltar: Sacrifice Y2 Stocks\nMove G1 Zoltar Stocks\nMove G1 Stocks Commerce\n\tUglyfoot: Wow, I overreached last turn. So how will I die?\n\n46) Uglyfoot: Discover R1 Uglyfoot B1 Caprica2\n\tzoltar: Yeah, it's a matter of time as I move my big guys in.\n\n47) zoltar: Move Y1 Redgiant Commerce\n\n48) Uglyfoot: Build R2 Uglyfoot\n\n49) zoltar: Build G1 Investment\n\n50) Uglyfoot: Trade R2 G2 Uglyfoot\n\n51) zoltar: Sacrifice Y3 Redgiant\nMove G1 Investment Commerce\nMove G1 Commerce Uglyfoot\nMove G1 Commerce Uglyfoot\nCatastrophe Uglyfoot G\n\n52) Uglyfoot: Trade R1 G1 Uglyfoot\n\tzoltar: Time to make my move, before you had a chance to rebuild.\n\n53) zoltar: Move R3 Commerce Uglyfoot\n\n54) Uglyfoot: Build G1 Uglyfoot\n\tzoltar: The Death Star is in range of the Rebel Base. Prepare to Fire!!!\n\n55) zoltar: Trade G3 R3 Investment\n\tUglyfoot: Red-5 standing by...\r\n\n\n56) Uglyfoot: Build G1 Uglyfoot\n\n57) zoltar: Sacrifice R3 Investment\nAttack G1 Uglyfoot\nAttack G1 Uglyfoot\nAttack G1 Uglyfoot\n\tzoltar: Resistance is futile -- you have been assimilated! :) Thanks. Play again?\n\tUglyfoot: Sure.\n\n\nHomeworlds Online (SDG# 3766)\nVariants: "Unrated"\nStarted: 2006.6.27, Ended: 2006.7.5\nParticipants: zoltar (S), fnord (N)\nWinner: zoltar\n\n1) fnord: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) fnord: Build G1 Fnord\n\tfnord: Interesting choice for homeworld... saves a bit of time, perhaps.\n\n4) zoltar: Build G1 Zoltar\n\n5) fnord: Trade G1 Y1 Fnord\n\tzoltar: I've never tried this homeworld before. Since I won against you I thought I'd try something new and experiment. In my other games I try to take the setup you have if I can.\n\tfnord: Gee, thanks, I think.\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) fnord: Build G1 Fnord\n\n8) zoltar: Build G1 Zoltar\n\n9) fnord: Trade G1 R1 Fnord\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) fnord: Build G1 Fnord\n\n12) zoltar: Discover R1 Zoltar G1 Eggs\n\n13) fnord: Trade G1 B1 Fnord\n\n14) zoltar: Build Y1 Zoltar\n\tzoltar: Rats -- I guess you get the first medium piece no matter what I do\n\n15) fnord: Build G1 Fnord\n\n16) zoltar: Build G2 Zoltar\n\tfnord: I could have, but chose not to.\n\n17) fnord: Discover G1 Fnord Y3 Kallisti\n\n18) zoltar: Trade G1 B1 Zoltar\n\n19) fnord: Discover Y1 Fnord B3 Eris\n\n20) zoltar: Build Y2 Zoltar\n\n21) fnord: Build G1 Fnord\n\n22) zoltar: Build G2 Zoltar\n\n23) fnord: Sacrifice G3 Fnord\nBuild G2 Kallisti\nBuild G3 Fnord\nBuild Y2 Eris\n\n24) zoltar: Discover Y2 Zoltar B1 Blueberry\n\n25) fnord: Move G1 Fnord Eris\n\n26) zoltar: Move G2 Zoltar Blueberry\n\n27) fnord: Move G1 Kallisti Blueberry\n\n28) zoltar: Build G3 Zoltar\n\n29) fnord: Trade Y2 R2 Eris\n\n30) zoltar: Sacrifice G2 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\n\n31) fnord: Discover G2 Kallisti B2 Sink\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B3 Zoltar\nBuild Y2 Blueberry\n\n33) fnord: Build R1 Eris\n\n34) zoltar: Discover G2 Blueberry B3 Boysenberry\n\n35) fnord: Build R2 Fnord\n\n36) zoltar: Sacrifice Y2 Blueberry\nMove Y1 Zoltar Eggs\nMove B3 Zoltar Eggs\n\n37) fnord: Move R2 Eris Blueberry\n\n38) zoltar: Sacrifice R1 Eggs\nAttack R2 Blueberry\n\n39) fnord: Sacrifice G1 Blueberry\nBuild R1 Eris\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild G1 Blueberry\nBuild G3 Zoltar\nBuild R2 Blueberry\n\n41) fnord: Move R1 Eris Eggs\n\n42) zoltar: Move R2 Blueberry Eris\n\tzoltar: Soon blueberry will be mine, all mine!\n\n43) fnord: Build R3 Eris\n\n44) zoltar: Sacrifice G3 Zoltar\nBuild G3 Boysenberry\nBuild R3 Blueberry\nBuild Y2 Eggs\n\tfnord: hmmm... there just seems to be something about this game I'm just not grokking.\n\n45) fnord: Move R3 Eris Eggs\n\n46) zoltar: Sacrifice R3 Blueberry\nAttack R3 Eggs\nAttack R1 Eggs\nAttack R1 Eris\n\tzoltar: You get the little ships; I get the big ships: sounds fair to me! :)\n\n47) fnord: Sacrifice G2 Sink\nBuild Y2 Eris\nBuild Y3 Eris\n\n48) zoltar: Sacrifice Y3 Zoltar\nMove R1 Eris Fnord\nMove R2 Eris Fnord\nMove G3 Boysenberry Fnord\nCatastrophe Fnord R\n\n49) fnord: Sacrifice Y3 Eris\nMove Y2 Eris Fnord\nMove G1 Eris Fnord\nMove Y1 Eris Fnord\n\n50) zoltar: Sacrifice R3 Eggs\nAttack G3 Fnord\nAttack Y2 Fnord\nAttack G1 Fnord\n\tzoltar: What I did was setup a board at home and go over the archived games among the top players (only after a certain date though, as the first ones didn't mark what pieces were used for the initial homeworlds) and then study all the tricks and tactics they use. That has catapulted me past the beginner phase now.\n\n51) fnord: Trade Y1 R1 Fnord\n\n52) zoltar: Sacrifice R2 Blueberry\nAttack R1 Fnord\nAttack B1 Fnord\n\tzoltar: Checkmate!\n\n\tzoltar: The Large ships are mine! All mine! Prepare to be boarded, Earthling!\n\nHomeworlds Online (SDG# 3787)\nStarted: 2006.6.29, Ended: 2006.7.1\nParticipants: TwoShort (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) zoltar: Build G1 Zoltar\n\n4) TwoShort: Build B1 Twoshort\n\n5) zoltar: Build G1 Zoltar\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) zoltar: Discover G1 Zoltar Y3 Yucca\n\n8) TwoShort: Build B2 Twoshort\n\n9) zoltar: Discover G1 Zoltar B3 Birch\n\n10) TwoShort: Discover B2 Twoshort Y2 Yew\n\n11) zoltar: Build G1 Zoltar\n\n12) TwoShort: Trade B2 R2 Yew\n\n13) zoltar: Build G2 Zoltar\n\n14) TwoShort: Move R2 Yew Yucca\n\n15) zoltar: Sacrifice G3 Zoltar\nBuild G2 Yucca\nBuild G2 Yucca\nBuild G3 Zoltar\n\tzoltar: You meanie!\n\n16) TwoShort: Move R2 Yucca Zoltar\n\n17) zoltar: Trade G3 R3 Zoltar\n\n18) TwoShort: Move R2 Zoltar Birch\n\n19) zoltar: Sacrifice G2 Yucca\nBuild G2 Birch\nBuild G3 Birch\n\n20) TwoShort: Build B2 Twoshort\n\n21) zoltar: Sacrifice G3 Birch\nBuild G3 Birch\nBuild G3 Yucca\nBuild R1 Zoltar\n\n22) TwoShort: Discover B2 Twoshort Y2 Yoyo\n\n23) zoltar: Sacrifice R1 Zoltar\nAttack R2 Birch\n\n24) TwoShort: Build B2 Twoshort\n\n25) zoltar: Trade G3 Y3 Birch\n\n26) TwoShort: Trade B2 R2 Twoshort\n\n27) zoltar: Sacrifice G3 Yucca\nBuild G3 Birch\nBuild G3 Yucca\nBuild Y1 Birch\n\n28) TwoShort: Build B2 Twoshort\n\tTwoShort: Hmm, sometimes my comments seem to get dropped... I had said a few moves back that after you beat me with the All-out-Factory-push, and thus cemented my beleif that it is the optimal strategy, I went for something completely different this game. Not sure what I was thinking...\n\n29) zoltar: Sacrifice G3 Yucca\nBuild G3 Yucca\nBuild R1 Zoltar\nBuild R1 Birch\n\n30) TwoShort: Discover B2 Twoshort B2 Oyoy\n\tzoltar: My comments get dropped if I try to send them at the same time I am sending a move. My thinking was along chess lines, that it is better to develop more pieces than move the same piece again in the opening, so I ignored your chasing me around moving your red ship over and over, and then somehow I simply won it outright.\n\n31) zoltar: Move G3 Birch Yoyo\n\tzoltar: I'm going to wait and come back to this after dinner..\n\tTwoShort: The idea was to get in there fast and prevent you from getting the factory going, so you couldn't monopolize green. Obviously, it worked brilliantly :)\n\n32) TwoShort: Build B3 Twoshort\n\tzoltar: Ok, I'll still do my original move. I was in a hurry and didn't want to blow my lead with some silly blunder, but this looks safe enough. The Factory rules! Except -- I want that last g3!\n\n33) zoltar: Move Y3 Birch Oyoy\n\tTwoShort: You'll have to come and get it. (Not that it looks like that will present much difficulty...)\n\tTwoShort: Hmmm, if this is "after dinner" are you on the east coast?\n\tzoltar: Affirmative. I live in Greenbelt, Milky Way\n\n34) TwoShort: Sacrifice Y3 Twoshort\nMove B2 Oyoy Birch\nMove B2 Yoyo Birch\nDiscover B1 Twoshort Y2 Desperation\n\tTwoShort: Aha... I live in Boulder, Colorado now, but ten years ago I lived in College Park...\n\n35) zoltar: Move R2 Birch Desperation\n\n36) TwoShort: Build B3 Twoshort\n\n37) zoltar: Sacrifice R3 Zoltar\nAttack B2 Birch\nAttack B2 Birch\nAttack B1 Desperation\n\n38) TwoShort: Trade B3 Y3 Twoshort\n\n39) zoltar: Sacrifice G3 Yucca\nBuild G3 Zoltar\nBuild Y1 Birch\nBuild Y1 Oyoy\n\tzoltar: Well, when you start naming your star systems "Desperation", I figure I must be doing something right!\n\n40) TwoShort: Build B3 Twoshort\n\n41) zoltar: Move B1 Desperation Twoshort\nCatastrophe Twoshort B\n\n42) TwoShort: Build R1 Twoshort\n\tzoltar: Ok, I will violate cardinal rule number one and get rid of my only 3-pip ship in my homeworld, as it'll take you at least two turns to trade for a y3 and then do something annoying.\n\n43) zoltar: Sacrifice Y3 Oyoy\nMove G1 Zoltar Twoshort\nMove G2 Zoltar Twoshort\nMove G3 Zoltar Twoshort\nCatastrophe Twoshort G\n\n\tzoltar: The Death Star is almost in position...\n\tzoltar: Wait a second!\n\tzoltar: The Death Star is Fully Functional! Ass stations, fire on the Rebel Base!!!\n\tzoltar: That was supposed to be, "All Stations, fire on the Rebel Base!" :) I suddenly remembered that our homeworlds were connected after blowing your b3 star!\n\nHomeworlds Online (SDG# 3715)\nStarted: 2006.6.30, Ended: 2006.6.30\nParticipants: zoltar (S), Calavera (N)\nWinner: zoltar\n\n1) Calavera: Homeworld G1 B3 Y3\n\n2) zoltar: Homeworld Y2 B1 G3\n\tCalavera: Hi there. Good luck.\n\n3) Calavera: Build Y1 Calavera\n\n4) zoltar: Build G1 Zoltar\n\n5) Calavera: Build Y1 Calavera\n\n6) zoltar: Build G1 Zoltar\n\n7) Calavera: Discover Y1 Calavera G2 Camelot\n\n8) zoltar: Discover G1 Zoltar Y3 Stocks\n\n9) Calavera:\nDiscover Y1 Camelot B3 Tintagel\n\tCalavera: d y1 camelot b3 Tintagel\n\n10) zoltar: Build G2 Zoltar\n\n11) Calavera: Trade Y3 G3 Calavera\n\n12) zoltar: Move G2 Zoltar Tintagel\n\n\tCalavera: Damn, lokks like I've screwed up royally here. Thanks for the game.\n\tzoltar: It was far from over, but I had acquired a big advantage. Thanks. Play again?\n\tCalavera: If you like. I've set up a challenge if you're interested.\r\n\n\nHomeworlds Online (SDG# 3792)\nStarted: 2006.6.30, Ended: 2006.7.1\nParticipants: zoltar (S), Calavera (N)\nWinner: zoltar\n\n1) Calavera: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld Y3 B2 G3\n\n3) Calavera: Build G1 Calavera\n\n4) zoltar: Build G1 Zoltar\n\n5) Calavera: Trade G1 Y1 Calavera\n\n6) zoltar: Build G1 Zoltar\n\n7) Calavera: Build G1 Calavera\n\n8) zoltar: Discover G1 Zoltar B1 Boysenberry\n\n9) Calavera: Discover G1 Calavera B3 El Marrow\n\n10) zoltar: Build G2 Boysenberry\n\n11) Calavera: Build Y1 Calavera\n\n12) zoltar: Trade G1 R1 Zoltar\n\n13) Calavera: Move Y1 Calavera El\n\n14) zoltar: Trade G2 Y2 Boysenberry\n\n15) Calavera: Trade Y1 R1 El\n\n16) zoltar: Build Y1 Boysenberry\n\n17) Calavera: Build G1 Calavera\n\n18) zoltar: Build G2 Zoltar\n\tCalavera: Sorry. (It was a typo)\n\n19) Calavera: Sacrifice G3 Calavera\nBuild G2 El\nBuild G2 Calavera\nBuild G3 Calavera\n\n20) zoltar: Sacrifice Y2 Boysenberry\nMove G1 Boysenberry El\nMove G1 El Calavera\nCatastrophe Calavera G\n\n21) Calavera: Trade Y1 G1 Calavera\n\n22) zoltar: Move G2 Zoltar Boysenberry\n\n23) Calavera: Trade G2 Y2 El\n\n24) zoltar: Discover G2 Boysenberry Y3 Banana\n\tzoltar: Ouch!\n\tzoltar: Greetings from Greenbelt, btw!\n\tCalavera: Er... oops:) Greenbelt?\n\n25) Calavera: Move Y2 El Calavera\n\tzoltar: Yes, it was a pun, since I took out all your greens with a green, but I also do live in Greenbelt, MD!\n\n26) zoltar: Discover Y1 Boysenberry G3 Greengiant\n\n27) Calavera: Build G1 Calavera\n\n28) zoltar: Build G2 Zoltar\n\n29) Calavera: Trade Y2 R2 Calavera\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Banana\n\n\tzoltar: Oops, I got my 2's and 3's mixed up there\n\tCalavera: Thanks for the games. I think I'll pass on waiting for the Greenbelt fleet to come and crush me though.\r\n\r\nCheers\n\tzoltar: There was no way to really recover after I took out your three greens in your homeworld. I could build up too fast before you could do anything. Thanks for the game. Play again?\n\nHomeworlds Online (SDG# 3793)\nStarted: 2006.7.1, Ended: 2006.7.5\nParticipants: zoltar (S), MatrixFrog (N)\nWinner: zoltar\n\n1) MatrixFrog: Homeworld G1 B3 Y3\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) zoltar: Build G1 Zoltar\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) zoltar: Build G1 Zoltar\n\n7) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n8) zoltar: Discover G1 Zoltar Y3 Banana\n\n9) MatrixFrog: Discover Y1 Matrixfrog G2 Lemon\n\n10) zoltar: Build G2 Zoltar\n\n11) MatrixFrog: Build Y1 Lemon\n\n12) zoltar: Discover G1 Zoltar B3 Boysenberry\n\n13) MatrixFrog: Build B1 Matrixfrog\n\n14) zoltar: Sacrifice G3 Zoltar\nBuild G2 Boysenberry\nBuild G3 Banana\nBuild G3 Zoltar\n\n15) MatrixFrog: Discover Y1 Lemon G3 Grape\n\n16) zoltar: Trade G2 Y2 Zoltar\n\n17) MatrixFrog: Build Y1 Grape\n\n18) zoltar: Trade G2 B2 Boysenberry\n\n19) MatrixFrog: Move B1 Matrixfrog Lemon\n\n20) zoltar: Move Y2 Zoltar Grape\n\n21) MatrixFrog: Move Y1 Grape Lemon\n\n22) zoltar: Sacrifice G3 Banana\nBuild G2 Boysenberry\nBuild G2 Zoltar\nBuild G3 Banana\n\n23) MatrixFrog: Build Y2 Matrixfrog\n\n24) zoltar: Sacrifice B2 Boysenberry\nTrade Y2 R2 Grape\nTrade G2 Y2 Boysenberry\n\n25) MatrixFrog: Build Y3 Grape\n\n26) zoltar: Sacrifice Y2 Boysenberry\nMove G3 Banana Lemon\nMove G3 Lemon Matrixfrog\n\n27) MatrixFrog: Build Y2 Matrixfrog\n\n28) zoltar: Trade G3 R3 Zoltar\n\tzoltar: Prepare to be boarded, Earthling!\n\n29) MatrixFrog: Build B2 Matrixfrog\n\n30) zoltar: Sacrifice R2 Grape\nAttack Y3 Matrixfrog\nAttack B2 Matrixfrog\n\tzoltar: "The Death Star is now fully functional."\n\n31) MatrixFrog: Build B2 Matrixfrog\n\n32) zoltar: Sacrifice G2 Zoltar\nBuild G2 Matrixfrog\nBuild G2 Matrixfrog\nCatastrophe Matrixfrog B\nCatastrophe Matrixfrog G\n\tMatrixFrog: I think I lose.\n\n\tzoltar: Yep, without a red ship, there was no defense. Play again?\n\nHomeworlds Online (SDG# 3804)\nStarted: 2006.7.1, Ended: 2006.7.2\nParticipants: zoltar (S), Calavera (N)\nWinner: zoltar\n\n1) Calavera: Homeworld B1 Y3 G3\n\n2) zoltar: Homeworld B2 Y1 G3\n\n3) Calavera: Build G1 Calavera\n\n4) zoltar: Build G1 Zoltar\n\n5) Calavera: Discover G1 Calavera B2 El_marrow\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Calavera: Build G1 Calavera\n\n8) zoltar: Build Y1 Zoltar\n\n9) Calavera: Build G1 El_marrow\n\n10) zoltar: Build G2 Zoltar\n\n11) Calavera: Trade G1 R1 El_marrow\n\n12) zoltar: Trade Y1 R1 Zoltar\n\n13) Calavera: Build R1 El_marrow\n\n14) zoltar: Build R2 Zoltar\n\n15) Calavera: Build R2 El_marrow\n\n16) zoltar: Discover R2 Zoltar Y3 Banana\n\n17) Calavera: Trade R1 Y1 El_marrow\n\n18) zoltar: Build Y2 Zoltar\n\n19) Calavera: Trade G1 B1 Calavera\n\n20) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n21) Calavera: Discover R2 El_marrow Y3 Rubacava\n\n22) zoltar: Build Y2 Greenbelt\n\n23) Calavera: Build Y2 El_marrow\n\n24) zoltar: Discover Y2 Greenbelt B2 Blueberry\n\n25) Calavera: Trade Y1 B1 El_marrow\n\n26) zoltar: Discover G2 Zoltar B3 Boysenberry\n\n27) Calavera: Build B3 Calavera\n\n28) zoltar: Build G1 Zoltar\n\n29) Calavera: Build B3 El_marrow\n\n30) zoltar: Move Y2 Blueberry Greenbelt\n\n31) Calavera: Sacrifice Y2 El_marrow\nMove B3 El_marrow Rubacava\nMove G1 El_marrow Rubacava\n\n32) zoltar: Sacrifice G2 Boysenberry\nBuild R1 Banana\nBuild R2 Zoltar\n\n33) Calavera: Sacrifice G3 Calavera\nBuild B2 El_marrow\nBuild B3 Rubacava\nBuild R3 Rubacava\n\n34) zoltar: Move R1 Zoltar Rubacava\n\n35) Calavera: Sacrifice B2 El_marrow\nTrade R2 Y2 Rubacava\nTrade B3 G3 Rubacava\n\n36) zoltar: Sacrifice Y2 Greenbelt\nMove R1 Banana El_marrow\nMove G1 Zoltar Rubacava\n\n37) Calavera: Attack G1 Rubacava\n\tzoltar: Very nice move. I'm dead now!\n\n38) zoltar: Sacrifice R2 Banana\nAttack B1 El_marrow\nAttack G1 Rubacava\n\tCalavera: Well, I'm glad *you've* got confidence in my position. At least that way one of us has :)\n\n39) Calavera: Sacrifice R3 Rubacava\nAttack R1 Rubacava\nAttack R1 El_marrow\nAttack G1 Rubacava\n\n40) zoltar: Sacrifice Y1 Zoltar\nMove B1 El_marrow Calavera\nCatastrophe Calavera B\n\tzoltar: Ok, then I'll wait another move if you insist (I was going to simply resign here).\n\n\tzoltar: Wow, you let me get you with the only trap I could possibly think of! You just needed to trade your b3 for g3 and my position is still resignable! I do tend to resign too early -- this is a lesson that there are always chances if your opponent isn't paying close attention. What a swindle!\n\tCalavera: Ohhh. You wascally wabbit!\r\n\r\nThanks for all the games. I'll take a break now, but I'll be glad to play you again later if you're interested.\n\nHomeworlds Online (SDG# 3797)\nStarted: 2006.7.1, Ended: 2006.7.3\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld Y3 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) zoltar: Discover G1 Zoltar B1 Boar\n\n11) TwoShort: Build Y1 Twoshort\n\n12) zoltar: Build Y2 Zoltar\n\n13) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n14) zoltar: Move Y2 Zoltar Boar\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y2 Twoshort\nBuild Y3 Twoshort\n\n16) zoltar: Trade Y1 R1 Zoltar\n\n17) TwoShort: Trade Y2 R2 Twoshort\n\tzoltar: Wow, what a move!\n\n18) zoltar: Build G1 Zoltar\n\n19) TwoShort: Trade Y3 G3 Twoshort\n\n20) zoltar: Build G2 Boar\n\n21) TwoShort: Build G2 Twoshort\n\n22) zoltar: Trade G2 R2 Boar\n\n23) TwoShort: Build G2 Yolonda\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild G2 Boar\nBuild G3 Zoltar\nBuild R1 Boar\n\n25) TwoShort: Discover G1 Yolonda Y1 Different\n\n26) zoltar: Discover G2 Boar Y3 Yippiekiyay\n\n27) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Different\nBuild Y2 Twoshort\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild G3 Boar\nBuild R2 Boar\nBuild R3 Zoltar\n\n29) TwoShort: Build Y3 Twoshort\n\tTwoShort: Quite a thinker, this one....\n\n30) zoltar: Move R2 Boar Yippiekiyay\n\n31) TwoShort: Move Y3 Twoshort Yippiekiyay\n\n32) zoltar: Move R2 Yippiekiyay Twoshort\n\n33) TwoShort: Sacrifice R2 Twoshort\nAttack R2S Twoshort\nAttack G2S Yippiekiyay\n\n34) zoltar: Sacrifice G3 Boar\nBuild G3 Boar\nBuild R2 Boar\nBuild R3 Zoltar\n\n35) TwoShort: Move R2 Twoshort Grogar\n\n36) zoltar: Move R3 Zoltar Different\n\n37) TwoShort: Sacrifice G2 Different\nBuild G2 Yippiekiyay\nBuild R3 Grogar\n\tzoltar: Looks like I'm back to losing again -- back to my original strategy of taking out one of your stars before I die.\n\n38) zoltar: Attack G1 Different\n\tzoltar: Well, I missed that totally too. I'll try another move or two before I resign.\n\n39) TwoShort: Move R2 Grogar Boar\nCatastrophe Boar Red\n\tTwoShort: I made a big effort to to tighten up my game this time... still, these last 4 moves or so were skull-crushers. \n\n40) zoltar: Sacrifice G3 Boar\nBuild G3 Different\nBuild R1 Different\nBuild R2 Different\n\n41) TwoShort: Build R2 Grogar\n\tzoltar: wow -- you could have sacked your y3 and destroyed all the reds in my homeworld -- I would have resigned if you had done that. I'm still dead now.\n\tTwoShort: I considered it, but then I'd have had no sacrificeable red, so movign in to gfinish you off would be a muklti turn operation, and you could have used the slack to take the y3 I'd sac'd (which I could then catastrophe, but that would break the yellow embargo)... anyway, it didn't look like a done deal... More than once I've seen a game take a surprise turn around because the stronger player just trying to finish the other guy off makes some over-confident blunder. Which is why I when I'm losing I often like to play it out until I see for sure how the other guy can force checkmate... Speaking of which, how am I going to force checkmate here?\n\n42) zoltar: Move R1 Different Grogar\n\tzoltar: Have you every played shogi? It seems to me to be the best form of chess, combining the best things in chess with homeworlds but without the most annoying features of chess. I just figured out last week how to make a shogi set with 4 stashes of pyramids. I think it is better than the original, which has pieces with Japanese characters on them that initially turn people off of the game. It could be called "Martian Shogi".\n\n43) TwoShort: Move R3 Grogar Boar\n\n44) zoltar: Sacrifice Y2 Boar\nMove R1 Zoltar Different\nMove R2 Different Grogar\n\n45) TwoShort: Sacrifice R2 Grogar\nAttack R2S Grogar\nAttack R1S Grogar\n\n46) zoltar: Move G3 Different Grogar\n\n47) TwoShort: Sacrifice Y2 Grogar\nMove R2 Grogar Different\nMove R1 Grogar Different\nCatastrophe Different Red\n\n48) zoltar: Sacrifice G1 Boar\nBuild G1 Different\n\n49) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Yippiekiyay Boar\nMove G2 Yippiekiyay Boar\n\n50) zoltar: Discover G1 Different B3 Same\n\n51) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Boar\nBuild Y2 Twoshort\nBuild Y2 Boar\n\n52) zoltar: Trade G1 B1 Zoltar\n\tTwoShort: I haven't played Shogi, though I've skimmed the rules at some point. It struck me as stylistically very much like chess. What do you see as it's advantages? My main problem with chess is that it's strategy has been analyzed so extensively; if I'm doing something weird and different that no one has tried before, it's because it's dumb. With Homeworlds it still might be brilliant :) And the aesthetics of the pyramids & boardlessness appeals as well.\n\n53) TwoShort: Sacrifice Y2 Boar\nMove G3 Boar Zoltar\nMove Y3 Boar Zoltar\n\tzoltar: First, in Shogi there are no weird moves (pawn move and capture only 1 space forward, and you can't double them); second, pieces you capture can be dropped back in as your pieces. The orientations changing, as in homeworlds, gave me the idea to use pyramids. In chess, you simply trade down when ahead, to increase your ratio of material; in shogi, that doesn't work, as the pieces get recycled, so you have to do something very much like the 'factory' in homeworlds, where you drop in a pawn, promote it (to a 'tokin'), then trade the promoted pawn for a real piece; your opponent only gets a pawn to drop in his stash, whereas you get a piece. As it turns out, there are a lot more sacrifices for mate, as in homeworlds and the most exciting of chess games. Whereas in chess, where engames are boring and simplified and the goal is to get a past pawn and trade all your pieces so you can make a queen, in shogi the endgame is intense, complicated, and you have to go for actual checkmate to win. It's an amazing game, far superior to chess. Also, because the pieces are slower moving, you can't memorize set openings, and the advantage for the first player goes from 10% to 1%. I'd love to have a pyramid version of it here. I wonder how hard that would be? Do you know the guy that runs the site?\n\n\tzoltar: Yes, I am toast. Can't sac my red or you just move your red in -- very clever.\n\tzoltar: Nice finish!\n\nHomeworlds Online (SDG# 3801)\nStarted: 2006.7.1, Ended: 2006.7.21\nParticipants: zoltar (S), Laurie_Menke (N)\nWinner: zoltar\n\n1) Laurie_Menke: Homeworld B2 G3 Y3\n\tLaurie_Menke: LOL, Zoltar...it's hard to tell, but do you maybe like Homeworlds! ;o) Thanks for the invitation...good luck! :o)\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) Laurie_Menke: Build Y1 Laurie_menke\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: Greetingz Earthling, from Greenbelt, Milky Way. May the farce be with you!\n\n5) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\tLaurie_Menke: And also with you. ;o)\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) zoltar: Build Y1 Zoltar\n\n9) Laurie_Menke: Build Y1 Laurie_menke\n\n10) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\tzoltar: I just learned this game 2 weeks ago, lost my first few games, and then started to catch on; yesterday I won against a good player for the first time (after losing to him 5 times), and so I'm trying to play as much as I can over the weekend/holiday so that there will always be moves waiting for me when I click on my computer.\n\n11) Laurie_Menke: Discover G1 Laurie_menke G1 Park\n\tLaurie_Menke: Wow! I'm very impressed that you've caught on so quickly! Good job! And sorry about timing out, especially since you were trying to play a lot over the weekend/holiday. :o( Please forgive me. :o(\n\n12) zoltar: Build G2 Zoltar\n\n13) Laurie_Menke: Build G2 Laurie_menke\n\tzoltar: Thanks. I looked at the games among the top players and studied over a half dozen of them carefully to see if I could learn some of the tactical tricks, as I was getting swindled and blown up all over the place my first few games. I've now got the basics down. And I figured you (as well as my other opps) were out having fun for the 4th of July, as was I, so no problem.\n\n14) zoltar: Discover G2 Zoltar Y3 Yellowstone\n\n15) Laurie_Menke: Discover G2 Laurie_menke B1 Phonebooth\n\n16) zoltar: Build G2 Zoltar\n\n17) Laurie_Menke: Build Y2 Laurie_menke\n\n18) zoltar: Discover Y1 Zoltar B3 Blueridge\n\n19) Laurie_Menke: Move Y2 Laurie_menke Phonebooth\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Blueridge\n\n21) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n22) zoltar: Trade Y3 R3 Blueridge\n\n23) Laurie_Menke: Trade Y3 R3 Laurie_menke\n\n24) zoltar: Move R3 Blueridge Phonebooth\n\n25) Laurie_Menke: Sacrifice Y2 Phonebooth\nMove B1 Laurie_menke Park\nDiscover G2 Phonebooth R3 Mars\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G1 Yellowstone\nBuild G3 Zoltar\nBuild R1 Phonebooth\n\tzoltar: Attack!!!!\n\tzoltar: Prepare to be boarded, Earthling!\n\tLaurie_Menke: We are peace-loving people....we will fleeeeeeee!!!!!\n\n27) Laurie_Menke: Sacrifice G2 Mars\nBuild R1 Laurie_menke\nBuild Y2 Laurie_menke\n\n28) zoltar: Sacrifice G2 Yellowstone\nBuild Y3 Blueridge\nBuild Y3 Blueridge\n\tzoltar: Zee Phonebooth ease mine! Awl mine!\n\n29) Laurie_Menke: Discover Y1 Laurie_menke R1 Ready\n\tzoltar: Wow! That waz unexpected. Very sneaky, hyu-maahn bean. Eye deed knot eggs pecked sew cleaver a move!\n\n30) zoltar: Sacrifice Y3 Blueridge\nDiscover G2 Zoltar Y3 Yosemite\nMove R1 Phonebooth Laurie_menke\nMove R3 Phonebooth Laurie_menke\nCatastrophe Laurie_menke R\n\tzoltar: Ok, eye wheel dew zee same thing and double-build.\n\tLaurie_Menke: We humans love peace...AND a challenge. ;o) Don't count us out yet! ;o)\n\n31) Laurie_Menke: Trade Y2 G2 Laurie_menke\n\tLaurie_Menke: Ooops...that was almost a deadly mistake. :o(\n\n32) zoltar: Build G2 Zoltar\n\n33) Laurie_Menke: Sacrifice G1 Park\nBuild Y2 Ready\n\tzoltar: Yup, it's still really bad -- but the other way you would be dead without your y2 ship left in your homeworld\n\tzoltar: In any case, since you hyu-maahn beanz love peace, Zoltar decided to destroy all zee guns in zee galaxy...\n\tLaurie_Menke: :o) Fine with me...if we keep it that way. ;o)\n\n34) zoltar: Sacrifice Y2 Greenbelt\nMove Y3 Blueridge Park\nMove Y3 Park Laurie_menke\n\n35) Laurie_Menke: Build B1 Park\n\n36) zoltar: Trade G3 R3 Zoltar\n\n37) Laurie_Menke: Build B2 Park\n\tzoltar: Prepare to be boarded!\n\tzoltar: My ships are bigger than yours! The galaxy will soon me mine! All mine!\n\tLaurie_Menke: Alright...we peaceable humans will give up without a fight. We know when we're licked. :o( Good game, zoltar! Thanks for the fun! :o)\n\n38) zoltar: Sacrifice R3 Zoltar\nAttack G2 Laurie_menke\nPass\nPass\n\n\tzoltar: Ok. I'll open a new challenge; when you are free, you can accept and start a new game. Hope your friend gets well quickly.\n\tLaurie_Menke: Thanks...me, too. :o)\n\nHomeworlds Online (SDG# 3802)\nStarted: 2006.7.1, Ended: 2006.7.17\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld Y3 B2 G3\n\n2) zoltar: Homeworld B3 Y1 G3\n\n3) Personman: Build G1 Personman\n\tzoltar: Greetingz Earthling Personman, from Greenbelt, Milky Way\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n5) Personman: Discover G1 Personman Y1 Athiba\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Personman: Build G1 Personman\n\n8) zoltar: Build Y2 Zoltar\n\n9) Personman: Trade G1 B1 Personman\n\n10) zoltar: Discover Y2 Zoltar G2 Greenbelt\n\n11) Personman: Build G1 Personman\n\n12) zoltar: Build Y2 Greenbelt\n\n13) Personman: Build G1 Personman\n\n14) zoltar: Build G2 Zoltar\n\n15) Personman: Sacrifice G3 Personman\nBuild G2 Athiba\nBuild G3 Athiba\nBuild G3 Personman\n\n16) zoltar: Sacrifice Y2 Greenbelt\nMove G2 Zoltar Greenbelt\nMove G2 Greenbelt Athiba\nCatastrophe Athiba G\n\n17) Personman: Trade G1 Y1 Personman\n\n18) zoltar: Build Y2 Greenbelt\n\n19) Personman: Discover Y1 Personman G1 A2ba\n\n20) zoltar: Trade Y1 R1 Zoltar\n\n21) Personman: Trade G1 R1 Personman\n\n22) zoltar: Build G1 Zoltar\n\n23) Personman: Build G1 Personman\n\n24) zoltar: Build G2 Zoltar\n\n25) Personman: Sacrifice G3 Personman\nBuild G2 Personman\nBuild G3 Personman\nBuild Y1 A2ba\n\n26) zoltar: Discover G2 Zoltar B2 Blueridge\n\n27) Personman: Discover Y1 A2ba B2 Fhutwos\n\n28) zoltar: Sacrifice Y2 Greenbelt\nMove G2 Blueridge A2ba\nMove G2 A2ba Personman\nCatastrophe Personman G\n\n29) Personman: Build Y2 A2ba\n\n30) zoltar: Build Y2 Greenbelt\n\n31) Personman: Move Y2 A2ba Fhutwos\n\n32) zoltar: Sacrifice Y2 Greenbelt\nMove Y2 Greenbelt A2ba\nMove Y2 A2ba Personman\n\n33) Personman: Trade B1 G1 Personman\n\n34) zoltar: Trade G3 R3 Zoltar\n\n35) Personman: Build G2 Personman\n\n36) zoltar: Sacrifice R3 Zoltar\nAttack G2 Personman\nAttack G1 Personman\nAttack R1 Personman\n\tzoltar: The Death Star is now fully functional. Prepare to fire on the Rebel Base. Stand by...\n\tPersonman: good game :)\n\n\tzoltar: thanks -- the green catastrophe led to an early and decisive attack, and there was no way for you to recover an get a big ship back in your homeworld in time. Play again?\n\nHomeworlds Online (SDG# 3832)\nVariants: "Unrated"\nStarted: 2006.7.7, Ended: 2006.7.13\nParticipants: zoltar (S), fnord (N)\nWinner: zoltar\n\n1) fnord: Homeworld B3 Y2 G3\n\tzoltar: Greetingz, Earthling!\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) fnord: Build G1 Fnord\n\n4) zoltar: Build G1 Zoltar\n\n5) fnord: Trade G1 B1 Fnord\n\n6) zoltar: Build G1 Zoltar\n\n7) fnord: Discover B1 Fnord Y1 Nothingness\n\n8) zoltar: Discover G1 Zoltar Y3 Yellowstone\n\n9) fnord: Build G1 Fnord\n\n10) zoltar: Build G2 Zoltar\n\n11) fnord: Trade G1 R1 Fnord\n\n12) zoltar: Trade G2 R2 Zoltar\n\n13) fnord: Move B1 Nothingness Yellowstone\n\n14) zoltar: Discover G1 Yellowstone R1 Redriver\n\n15) fnord: Build G1 Fnord\n\n16) zoltar: Build G2 Redriver\n\n17) fnord: Move G1 Fnord Redriver\n\n18) zoltar: Build G2 Zoltar\n\n19) fnord: Build G2 Redriver\nCatastrophe Redriver G\n\n20) zoltar: Discover G2 Zoltar B3 Blueridge\n\n21) fnord: Build G1 Fnord\n\n22) zoltar: Build R1 Zoltar\n\n23) fnord: Discover G1 Fnord Y1 Orary\n\n24) zoltar: Move R2 Zoltar Yellowstone\n\n25) fnord: Move B1 Yellowstone Orary\n\n26) zoltar: Move R2 Yellowstone Orary\n\n27) fnord: Build G1 Orary\n\tzoltar: Attack!!!\n\n28) zoltar: Attack B1 Orary\n\n29) fnord: Build G2 Fnord\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueridge\nBuild G3 Blueridge\nBuild G3 Zoltar\n\n31) fnord: Move G1 Orary Blueridge\nCatastrophe Blueridge G\n\n32) zoltar: Attack G1 Orary\n\tzoltar: You're really into blowing things up this game!\n\n33) fnord: Build R1 Fnord\n\tzoltar: Though after each sequence when things got blown up, I ended up gaining an extra move or two after everything settled down, especially here, where at the end of the sequence I get to convert your last outpost at orary and end up with the extra small pieces.\n\tfnord: I know, I just have to try to get in my hits where I can... even if it means more work for me later.\n\n34) zoltar: Build R2 Orary\n\n35) fnord: Trade R1 Y1 Fnord\n\n36) zoltar: Trade R2 Y2 Orary\n\n37) fnord: Move Y1 Fnord Orary\n\n38) zoltar: Attack Y1 Orary\n\n39) fnord: Build R1 Fnord\n\tzoltar: I didn't get that move.\n\tfnord: Sure you did, you just took it... Or did you mean you didn't understand the move?\n\n40) zoltar: Build R2 Orary\n\tzoltar: I meant I didn't understand why you would simply move a piece where I could take it? That gives me yet another extra little ship for free.\n\n41) fnord: Trade R1 Y1 Fnord\n\n42) zoltar: Trade Y2 G2 Orary\n\tfnord: Now that I think of it, it probably was a stupid move. I hadn't thought of you attacking it.\n\n43) fnord: Discover G2 Fnord B1 Temp\n\n44) zoltar: Discover G2 Orary B3 Investment\n\n45) fnord: Move Y1 Fnord Temp\n\n46) zoltar: Move Y1 Orary Investment\n\n47) fnord: Build Y2 Temp\n\n48) zoltar: Build Y3 Investment\n\n49) fnord: Trade Y2 R2 Temp\n\n50) zoltar: Move Y3 Investment Temp\n\n51) fnord: Build Y2 Temp\n\n52) zoltar: Sacrifice R2 Orary\nAttack G2 Temp\nAttack R2 Temp\n\n53) fnord: Discover Y2 Temp Y3 Sink\n\n54) zoltar: Build Y3 Investment\n\n55) fnord: Discover Y2 Sink B2 Hole\n\n56) zoltar: Move Y3 Investment Hole\n\n57) fnord: Discover Y2 Hole G3 Eris\n\n58) zoltar: Build Y3 Investment\n\n59) fnord: Build R1 Fnord\n\n60) zoltar: Sacrifice G3 Zoltar\nBuild G1 Orary\nBuild G2 Temp\nBuild G3 Zoltar\n\n61) fnord: Move Y1 Temp Investment\n\n62) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Orary\nBuild R3 Temp\n\n63) fnord: Move R1 Fnord Temp\n\n64) zoltar: Sacrifice Y3 Investment\nMove G1 Orary Fnord\nMove R2 Orary Fnord\nMove R3 Temp Fnord\n\tzoltar: I think I have you outnumbered...\n\tzoltar: The 'factory' move of sacking the g3 and then rebuilding it along with two other builds seems to be the single most powerful weapon in this game.\n\tfnord: Yeah, I think so... on both counts.\n\n65) fnord: Sacrifice Y1 Investment\nMove R1 Temp Fnord\nCatastrophe Fnord R\n\n66) zoltar: Sacrifice Y3 Temp\nMove G2 Temp Fnord\nMove G2 Temp Fnord\nMove R2 Temp Fnord\nCatastrophe Fnord G\n\n\tfnord: Of course, I don't know how I'm going to clean up this mess, but at least most of the partygoers are gone.\n\tzoltar: Well, it was fun while it lasted. :)\n\tzoltar: It was a real blast!\n\nHomeworlds Online (SDG# 3799)\nStarted: 2006.7.3, Ended: 2006.7.11\nParticipants: zoltar (S), Cerulean (N)\nWinner: zoltar\n\n1) Cerulean: Homeworld Y3 B1 G3\n\n2) zoltar: Homeworld B2 Y1 G3\n\n3) Cerulean: Build G1 Cerulean\n\n4) zoltar: Build G1 Zoltar\n\n5) Cerulean: Discover G1 Cerulean B2 Bitou\n\n6) zoltar: Discover G1 Zoltar B3 Boysenberry\n\n7) Cerulean: Trade G1 Y1 Bitou\n\n8) zoltar: Build G1 Zoltar\n\n9) Cerulean: Build G1 Cerulean\n\n10) zoltar: Build G2 Boysenberry\n\n11) Cerulean: Build G2 Cerulean\n\n12) zoltar: Sacrifice G3 Zoltar\nBuild G2 Boysenberry\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n13) Cerulean: Move G1 Cerulean Bitou\n\n14) zoltar: Trade G2 Y2 Boysenberry\n\n15) Cerulean: Discover G1 Bitou Y3 Wythrii\n\n16) zoltar: Trade G1 R1 Zoltar\n\n17) Cerulean: Trade G2 Y2 Cerulean\n\n18) zoltar: Build R1 Zoltar\n\n19) Cerulean: Build G1 Wythrii\n\n20) zoltar: Trade G3 Y3 Zoltar\n\n21) Cerulean: Build G2 Cerulean\n\n22) zoltar: Move G2 Boysenberry Bitou\n\n23) Cerulean: Move Y1 Bitou Wythrii\n\n24) zoltar: Build G2 Zoltar\n\n25) Cerulean: Sacrifice Y2 Cerulean\nMove G1 Wythrii Zoltar\nMove Y1 Wythrii Zoltar\n\n26) zoltar: Sacrifice Y3 Zoltar\nMove G1 Boysenberry Bitou\nMove G1 Bitou Cerulean\nMove G2 Bitou Cerulean\nCatastrophe Cerulean G\n\n\tzoltar: Play again?\n\tCerulean: I try to be in one game of each of SDG's offerings at a time. No game at SDG is to my credit, though I've had a hand in the modification of Generatorb and Numica.\n\tCerulean: Yikes! I did not see that coming, but I did learn from it. Time to whip out the pyramids and reconstruct that for an instant replay.\n\tzoltar: Yes, you should not leave just one color left in your homeworld, as a catastrophe will instantly be checkmate. Hence your y2 piece was 'pinned'.\n\nHomeworlds Online (SDG# 3794)\nStarted: 2006.7.3, Ended: 2006.7.27\nParticipants: Jesse (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\tJesse: Hello. Sorry to take so long responding to your challenge; I've been busy with Origins.\n\n2) Jesse: Homeworld R1 B3 G3\n\tzoltar: Greetings from Greenbelt, Milky Way! Hope Origins was a lot of fun. Did you get to play any Homeworlds there? I wish I could have gone.\n\tJesse: Origins was, indeed, a lot of fun. I didn't get to play as much Homeworlds as I would have liked, but the games I did play were excellent. I very nearly won the tournament, but I pushed too hard at a critical point and Andy turned the attack and wiped me out in a very intense final game.\n\n3) zoltar: Build G1 Zoltar\n\tJesse: Okay, just testing.\n\n4) Jesse: Build G1 Jesse\n\n5) zoltar: Discover G1 Zoltar Y3 Banana\n\n6) Jesse: Trade G3 Y3 Jesse\n\n7) zoltar: Build G1 Zoltar\n\n8) Jesse: Build G2 Jesse\n\n9) zoltar: Build G2 Banana\n\n10) Jesse: Discover G2 Jesse B2 Republic\n\n11) zoltar: Discover G2 Banana B2 Grape\n\tJesse: Nice record. I see you've even beat TwoShort once. From the commentary there, it sounds like you haven't been playing long, either. Is that right?\n\n12) Jesse: Build G2 Republic\n\tzoltar: Two weeks, and yes I caught TwoShort off guard, but now he's back to pounding me again. Still, it was my first win against an experienced player. Also, in one game against Andy Looney (over the table last week), I blew up one of his stars before I died -- another first for me. I'm a chess player, and my favorite game is shogi, which is like a cross between chess and homeworlds, as the pieces you capture you get to drop in again later on the board as your own. This is a really fun game and I'm trying to learn it quickly, so I can take on Andy!\n\n13) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Banana\nBuild G3 Grape\n\tJesse: Excellent! I hope you rise in skill to where you can give us all a run for our money. It will be nice to have a bigger pool of strong players to engage. Climb on up the heap!\n\tJesse: I also like Shogi, though I have not had the opportunity to play with anyone who really knew what they were doing. I even made my own Shogi set with westernized icons, which I quite like.\n\n14) Jesse: Trade G2 Y2 Republic\n\n15) zoltar: Trade G2 Y2 Grape\n\tzoltar: Hey, so have I: I've developed a shogi set out of Looney Labs pyramids that uses exactly 4 stashes, plus another stash of some solid color for promotions. We should play shogi sometime, too!\n\tzoltar: Do you know the easiest place to play shogi online? I haven't actually played a game in years, except when teaching people the game.\n\tJesse: Hmm, that's what I get for getting distracted and playing incautiously. I'll have to start thinking seriously now.\n\tJesse: No, I don't know of anyplace to play Shogi online.\n\tzoltar: Yes, I learned about "the Factory" from TwoShort. I'll check online -- I think there are servers in Japan that are free for playing shogi. I'll let you know when I find out.\n\n16) Jesse: Build G2 Republic\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild G2 Grape\nBuild Y1 Grape\nBuild G3 Zoltar\n\tzoltar: Hey, I found a shogi site, after a long, tough internet search: there were several, but all in Japanese, so I had no idea how to sign up; finally I found a free one with an English option. I boldly chose a starting rating of 1500, and then got trounced by two 1200 rated players. Anyway, sign up and we'll play a game! the site is http://www.shogidojo.com/eng/engindex.htm \n\tzoltar: Wow, those shogi players are all good. I'm now 0-6 and my rating has dropped from 1500 to 1358. Cool site. Didn't seen anyone else from the USA there either. I thought I was better, but I guess my shogi rating is somewhere near the bottom as I've yet to win a game -- maybe I haven't played in a while.\n\n18) Jesse: Discover G2 Republic Y3 Johny\n\tJesse: Looking at the equivalency between rating points and kyu/dan ranks, 1500 would be pretty darn good. Their interface seems a little clunky to me, and they don't seem to have a real downloadable client, which is a drag for me on dial-up. And, of course, there's a reason I made my set with westernized icons. I have a great deal of difficulty distinguishing many of the pieces with the traditional markings.\n\tzoltar: Well, I'm now at 1200, and have a record of 2-12! I seem to be able to have a good game with those around 1000, and get clobbered by anyone over 1200. You get used to the pieces really fast -- that's not so much a problem. Dial-up? That's sort of like having a phonograph instead of CD's isn't it? :) Do you have a picture of your set online? I'd like to see. In other news, I plan to take on Home-World Champion Andy Looney in person tonight...\n\n19) zoltar: Trade G1 R1 Zoltar\n\tzoltar: Well, if I know you are online, and you wait a minute for the client to load, we can try a game of shogi on the clunky site. \n\tzoltar: My shogi rating has now dropped to 976 -- if I keep this up I will soon be in the negative numbers.\n\n20) Jesse: Trade G2 R2 Republic\n\tJesse: I hope you don't mind if I take my time in this game. You've got me in rather a bad situation.\n\tJesse: I don't have any pictures of my Shogi set online, but I should. I'll take some.\n\n21) zoltar: Move G3 Banana Republic\n\n22) Jesse: Sacrifice G2 Johny\nBuild R1 Republic\nBuild Y1 Jesse\n\n23) zoltar: Build R2 Zoltar\n\n24) Jesse: Sacrifice Y2 Republic\nMove R2 Republic Banana\nDiscover R1 Republic G1 Plato's\n\n25) zoltar: Move Y2 Grape Plato's\n\n26) Jesse: Attack G1 Banana\n\n27) zoltar: Sacrifice R1 Zoltar\nAttack R1 Plato's\n\n28) Jesse: Build G2 Banana\n\n29) zoltar: Sacrifice G3 Grape\nBuild G2 Republic\nBuild G3 Grape\nBuild Y1 Grape\n\n30) Jesse: Build R1 Banana\n\n31) zoltar: Sacrifice G3 Republic\nBuild G3 Republic\nBuild Y2 Plato's\nBuild Y3 Plato's\n\n\tzoltar: You are outnumbered, Earthling!\n\tJesse: Yeah. I really need to resign this one. Sorry to take so long.\n\nHomeworlds Online (SDG# 3795)\nStarted: 2006.7.4, Ended: 2006.7.11\nParticipants: zoltar (S), JunkMan (N)\nWinner: zoltar\n\n1) JunkMan: Homeworld G1 B2 Y3\n\n2) zoltar: Homeworld Y2 B3 G3\n\n\tzoltar: Greetingz Earthling, from Greenbelt, Milky Way\n\nHomeworlds Online (SDG# 3827)\nStarted: 2006.7.5, Ended: 2006.7.22\nParticipants: zoltar (S), Aaron (N)\nWinner: zoltar\n\n1) Aaron: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld Y2 B3 G3\n\n3) Aaron: Build G1 Aaron\n\n4) zoltar: Build G1 Zoltar\n\n5) Aaron: Trade G1 Y1 Aaron\n\n6) zoltar: Discover G1 Zoltar B1 Blueberry\n\n7) Aaron: Build G1 Aaron\n\n8) zoltar: Build G1 Zoltar\n\n9) Aaron: Trade G1 B1 Aaron\n\n10) zoltar: Discover G1 Zoltar R1 Raspberry\n\n11) Aaron: Discover B1 Aaron G3 Emeralds\n\n12) zoltar: Build G1 Zoltar\n\n13) Aaron: Build G2 Aaron\n\n14) zoltar: Trade G1 R1 Zoltar\n\n15) Aaron: Trade G2 R2 Aaron\n\n16) zoltar: Build G1 Zoltar\n\n17) Aaron: Move R2 Aaron Emeralds\n\n18) zoltar: Build G2 Raspberry\n\n19) Aaron: Build G2 Aaron\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\nBuild R1 Zoltar\n\n21) Aaron: Sacrifice G3 Aaron\nBuild G3 Aaron\nBuild R2 Emeralds\nBuild Y1 Aaron\n\n22) zoltar: Trade G2 Y2 Blueberry\n\n23) Aaron: Move Y1 Aaron Emeralds\n\n24) zoltar: Move R1 Zoltar Blueberry\n\n25) Aaron: Move R2 Emeralds Aaron\n\n26) zoltar: Trade G1 B1 Zoltar\n\n27) Aaron: Build B2 Emeralds\n\n28) zoltar: Move B1 Zoltar Raspberry\n\n29) Aaron: Discover G2 Aaron Y3 Bananas\n\n30) zoltar: Discover G1 Blueberry Y3 Pineapple\n\n31) Aaron: Build R2 Aaron\n\n32) zoltar: Build G1 Zoltar\n\n33) Aaron: Build G2 Aaron\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Zoltar\nBuild R3 Blueberry\n\n35) Aaron: Sacrifice G3 Aaron\nBuild G3 Aaron\nBuild R3 Emeralds\nBuild Y2 Emeralds\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Blueberry\nBuild B2 Raspberry\n\n37) Aaron: Move R2 Aaron Pineapple\n\n38) zoltar: Move Y3 Blueberry Pineapple\n\n39) Aaron: Move R2 Pineapple Aaron\n\n40) zoltar: Move G1 Pineapple Aaron\n\n41) Aaron: Sacrifice G2 Aaron\nBuild G2 Bananas\nPass\n\n42) zoltar: Sacrifice G1 Zoltar\nBuild G1 Aaron\n\n43) Aaron: Sacrifice R2 Aaron\nAttack G1 Aaron\nAttack G1 Aaron\n\n44) zoltar: Sacrifice Y2 Blueberry\nMove G1 Raspberry Pineapple\nMove G1 Pineapple Aaron\nCatastrophe Aaron G\n\n45) Aaron: Move R3 Emeralds Raspberry\n\n46) zoltar: Sacrifice B2 Raspberry\nTrade Y3 G3 Pineapple\nTrade R3 Y3 Blueberry\n\n47) Aaron: Sacrifice G2 Bananas\nBuild R2 Emeralds\nBuild R3 Aaron\n\tzoltar: Well, I guess I'm committed now!\n\n48) zoltar: Sacrifice G2 Raspberry\nBuild Y2 Blueberry\nBuild G1 Pineapple\n\n49) Aaron: Attack B1 Raspberry\n\n50) zoltar: Move Y3 Blueberry Emeralds\n\n51) Aaron: Sacrifice Y1 Emeralds\nMove R3 Raspberry Bananas\n\tzoltar: Wow. I totally missed your last move, Aaron. This game is fascinating, and the most interesting and complex homeworlds game I've played to date. We almost exhausted the stash of pieces before I (prematurely) went bananas and started sacking things. I've recently learned and now have won a few games, even racking up an upset victory against a good player who played too fast, but I still can't even see one move ahead sometimes. You play lots here: what are your favorite games? This site is fantastic, and I ought to learn more of them. I play japanese chess (shogi) and this reminds me of it. I have even come up for a model of shogi that uses looneylabs pyramids, 4 stashes exactly, for a shogi set, which I think is preferable to the originals with japanese characters. Do you know how hard it would be to add a pyramid game like that on this site? It would use a 9x9 board. As in this game, you can capture pieces and use them as yours, and the orientation of the piece determines to whom it belongs. \n\tAaron: Homeworlds is one of the most difficult games to to wrap your head around. This is one of my worst games, actually, but I do enjoy it occasionally. I've been watching your winning streak and am most impressed. You have done remarkably well, especially now that I know you are just learning. One day you'll have to have a go against AndyLooney, the creator and almost undefeated Homeworlds champion. My favourite games would have to be Cannon and Alien City. I do play often here as I am the site creator and maintainer. I am very pleased that you are enjoying yourself. That was the goal =) I am always looking for new games to add and would be happy to have a look at your Icehouse Shogi. Send me the rules if you can. If you program in Perl, you can also have a go at it yourself by visiting the wiki and the API page.\n\n52) zoltar: Sacrifice R3 Zoltar\nAttack R2 Emeralds\nAttack R2 Emeralds\nAttack Y2 Emeralds\n\n53) Aaron: Sacrifice R2 Aaron\nAttack R2 Emeralds\nAttack R2 Emeralds\n\tzoltar: I will take at Canon and Alien City. I plan to take on the champ Andy Looney soon. Andy taught me the game in person, insisting that my chess and shogi enthusiasm would spill over to homeworlds; I lost every game easily, and then came here to play and study the game. Only after setting up a board and going over all of Andy, Jesse, and TwoShort's games did I start to win, so I'm almost ready to try taking on Andy Looney again. Btw, while Andy Looney is the creator of the Icehouse pyramids, I just won a game online against the actual creator of the Homeworlds game itself, John "Gort" Cooper! As for Shogi, I don't program in Perl, so you or someone else would have to do all the hard work, but I'll send you an email with the rules and my mapping of icehouse pieces to shogi pieces. I think it would be perfect for this site.\n\n54) zoltar: Sacrifice G3 Pineapple\nBuild R2 Zoltar\nBuild R3 Blueberry\nBuild Y1 Blueberry\n\n55) Aaron: Attack Y2 Emeralds\n\tAaron: ooo, didn't expect that.\n\n56) zoltar: Sacrifice R2 Zoltar\nAttack R2 Emeralds\nAttack R2 Emeralds\n\tzoltar: Well, I didn't expect -that- either! What a game!\n\n57) Aaron: Sacrifice R3 Bananas\nAttack R2 Emeralds\nAttack R2 Emeralds\nPass\n\tzoltar: Luckily, I can sac more than you can, if we keep this up!\n\n58) zoltar: Sacrifice R3 Blueberry\nAttack R2 Emeralds\nAttack R2 Emeralds\nAttack Y2 Emeralds\n\n59) Aaron: Sacrifice R3 Aaron\nAttack R2 Emeralds\nAttack R2 Emeralds\nAttack Y2 Emeralds\n\n60) zoltar: Move Y3 Emeralds Aaron\n\n\tAaron: *sighs* I am so blind sometimes =/ *ponders deeply...*\n\tAaron: Nope. If I had one more yellow piece I'd have had a chance. Very well done, zoltar! You remain SDG's uber-champion =) Thanks for the game!\n\nHomeworlds Online (SDG# 3831)\nStarted: 2006.7.5, Ended: 2006.7.13\nParticipants: MatrixFrog (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y1 B2 G3\n\tMatrixFrog: I think I'm usually pretty bad, but I don't think I'm usually THAT bad. Here goes.\n\n2) MatrixFrog: Homeworld B3 G1 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) zoltar: Discover G1 Zoltar Y3 Banana\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) zoltar: Build G1 Zoltar\n\n8) MatrixFrog: Discover Y1 Matrixfrog G2 Jeetoo\n\n9) zoltar: Build G2 Zoltar\n\n10) MatrixFrog: Build Y2 Jeetoo\n\n11) zoltar: Discover G2 Zoltar B3 Blueberry\n\n12) MatrixFrog: Discover Y1 Jeetoo B3 Bumble\n\n13) zoltar: Sacrifice G3 Zoltar\nBuild G2 Banana\nBuild G3 Zoltar\nBuild G3 Blueberry\n\n14) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n15) zoltar: Trade G2 Y2 Blueberry\n\n16) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y2 Matrixfrog\nBuild Y3 Bumble\nBuild Y3 Matrixfrog\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\nBuild G3 Banana\n\n18) MatrixFrog: Discover Y1 Matrixfrog B2 Earth\n\n19) zoltar: Trade G3 R3 Zoltar\n\n20) MatrixFrog: Trade Y2 R2 Matrixfrog\n\n21) zoltar: Sacrifice G3 Banana\nBuild G3 Banana\nBuild G3 Zoltar\nBuild Y2 Blueberry\n\n22) MatrixFrog: Move Y1 Earth Bumble\n\n23) zoltar: Discover Y2 Blueberry B2 Boysenberry\n\n24) MatrixFrog: Build R1 Matrixfrog\n\n25) zoltar: Move Y2 Boysenberry Bumble\nCatastrophe Bumble Y\n\n26) MatrixFrog: Build Y1 Matrixfrog\n\n27) zoltar: Trade G3 R3 Blueberry\n\tMatrixFrog: Why did I not see that coming?!\n\n28) MatrixFrog: Discover Y1 Matrixfrog B2 Zip\n\n29) zoltar: Sacrifice G3 Banana\nBuild G3 Banana\nBuild G3 Blueberry\nBuild R1 Blueberry\n\n30) MatrixFrog: Move Y1 Zip Banana\n\n31) zoltar: Move R3 Blueberry Jeetoo\n\n32) MatrixFrog: Discover Y2 Jeetoo R3 Mordor\n\n33) zoltar: Trade G3 Y3 Blueberry\n\n34) MatrixFrog: Trade Y3 G3 Matrixfrog\n\tzoltar: Prepare to be boarded, Earthling!\n\n35) zoltar: Sacrifice G3 Banana\nBuild G3 Blueberry\nBuild R1 Jeetoo\nBuild R2 Blueberry\n\n36) MatrixFrog: Discover Y1 Banana R2 D2\n\n37) zoltar: Move G3 Blueberry D2\n\n38) MatrixFrog: Discover Y1 D2 B3 Alpha\n\n39) zoltar: Sacrifice Y3 Blueberry\nMove G1 Banana D2\nMove G1 D2 Matrixfrog\nMove G3 D2 Matrixfrog\nCatastrophe Matrixfrog G\n\n40) MatrixFrog: Trade R1 G1 Matrixfrog\n\n41) zoltar: Move R3 Zoltar Matrixfrog\n\n42) MatrixFrog: Build G1 Matrixfrog\n\tzoltar: Prepare to be boarded, Earthling!\n\n43) zoltar: Sacrifice R3 Jeetoo\nAttack R2 Matrixfrog\nAttack G1 Matrixfrog\nAttack G1 Matrixfrog\n\n\tzoltar: Rezizztanz ease few tile. You have been assimilated. :) Play again?\n\nHomeworlds Online (SDG# 3835)\nStarted: 2006.7.7, Ended: 2006.8.4\nParticipants: josh (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) josh: Homeworld R1 B2 G3\n\tzoltar: Greetingz, Earthling!\n\n3) zoltar: Build G1 Zoltar\n\n4) josh: Build G1 Josh\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) josh: Trade G3 Y3 Josh\n\tzoltar: Wear ease Josh? Pray pair four battle, hyu-maahn bean!\n\n7) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\tjosh: Sorry for the delay--I lost this email, and haven't spent enough time playing with this to figure out how to get here without clicking the email link :)\n\n8) josh: Build G1 Josh\n\tzoltar: No problem -- I figured you'd just been very busy.\n\n9) zoltar: Build G1 Zoltar\n\n10) josh: Discover G1 Josh Y3 Jinx\n\n11) zoltar: Trade G1 R1 Zoltar\n\n12) josh: Build G1 Josh\n\n13) zoltar: Build G2 Zoltar\n\n14) josh: Build G2 Jinx\n\n15) zoltar: Move G2 Zoltar Jinx\n\n16) josh: Build G2 Jinx\nCatastrophe Jinx Green\n\n17) zoltar: Build R1 Zoltar\n\tzoltar: Jeez -- I just realized we're playing in the symmetrical small universe -- yuck!\n\n18) josh: Trade G1 B1 Josh\n\n19) zoltar: Build R2 Zoltar\n\n20) josh: Build G1 Josh\n\n21) zoltar: Trade R2 B2 Zoltar\n\tzoltar: Guns! Guns! I want Guns! \n\n\tzoltar: Then again, shape-shifters are nice too...\n\nHomeworlds Online (SDG# 3800)\nStarted: 2006.7.9, Ended: 2006.7.19\nParticipants: Uglyfoot (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) Uglyfoot: Homeworld G3 B1 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\n5) zoltar: Build G1 Zoltar\n\n6) Uglyfoot: Build Y1 Uglyfoot\n\n7) zoltar: Discover G1 Zoltar B3 Blueberry\n\n8) Uglyfoot: Discover Y1 Uglyfoot B2 Altair\n\n9) zoltar: Build G1 Zoltar\n\n10) Uglyfoot: Build Y2 Uglyfoot\n\n11) zoltar: Build G2 Blueberry\n\n12) Uglyfoot: Move Y2 Uglyfoot Altair\n\n13) zoltar: Trade G2 Y2 Blueberry\n\n14) Uglyfoot: Trade Y2 G2 Altair\n\n15) zoltar: Trade G1 R1 Zoltar\n\n16) Uglyfoot: Build Y2 Altair\n\n17) zoltar: Build Y2 Blueberry\n\n18) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n19) zoltar: Discover Y2 Blueberry B2 Boysenberry\n\n20) Uglyfoot: Discover Y2 Altair G3 Sinclair\n\n21) zoltar: Trade G1 B1 Zoltar\n\n22) Uglyfoot: Build G1 Altair\n\n23) zoltar: Build G1 Zoltar\n\n24) Uglyfoot: Discover G2 Altair R3 Eradani\n\n25) zoltar: Build G2 Blueberry\n\n26) Uglyfoot: Build G2 Eradani\n\n27) zoltar: Discover G1 Zoltar Y3 Proxima_iii\n\n28) Uglyfoot: Sacrifice G2 Eradani\nBuild Y1 Altair\nBuild Y3 Sinclair\n\n29) zoltar: Sacrifice G1 Proxima_iii\nBuild Y3 Boysenberry\n\n30) Uglyfoot: Build G1 Altair\n\n31) zoltar: Trade G1 B1 Blueberry\n\n32) Uglyfoot: Move Y1 Altair Eradani\n\n33) zoltar: Build B3 Blueberry\n\n34) Uglyfoot: Trade Y3 B3 Uglyfoot\n\n35) zoltar: Build Y3 Blueberry\n\n36) Uglyfoot: Move Y1 Eradani Boysenberry\n\n37) zoltar: Sacrifice Y2 Blueberry\nMove Y3 Boysenberry Eradani\nMove B3 Blueberry Altair\n\n38) Uglyfoot: Sacrifice G2 Eradani\nBuild Y2 Boysenberry\nBuild G1 Altair\n\n39) zoltar: Sacrifice Y3 Eradani\nMove B1 Blueberry Altair\nMove B1 Altair Uglyfoot\nMove B3 Altair Uglyfoot\nCatastrophe Uglyfoot B\n\n40) Uglyfoot: Sacrifice Y2 Sinclair\nMove Y3 Sinclair Altair\nMove Y3 Altair Uglyfoot\n\n41) zoltar: Sacrifice Y3 Blueberry\nMove G2 Blueberry Boysenberry\nMove G2 Boysenberry Uglyfoot\nMove G3 Zoltar Uglyfoot\n\n42) Uglyfoot: Attack G3 Uglyfoot\n\n43) zoltar: Build G2 Uglyfoot\nCatastrophe Uglyfoot G\n\n\tzoltar: Great Party! Thanks. Play again?\n\nHomeworlds Online (SDG# 3825)\nVariants: "Sinister"\nStarted: 2006.7.9, Ended: 2006.8.13\nParticipants: Jesse (S), game_lover (N)\nWinner: Jesse\n\n1) game_lover: Homeworld Y3 G1 B3\n\n2) Jesse: Homeworld B3 R2 G3\n\n3) game_lover: Build B1 Game_lover\n\tJesse: Hello, there. Welcome to SDG. Have you played much Homeworlds, before?\n\tgame_lover: I've played a little, but never on Super Duper Games.\n\n4) Jesse: Build G1 Jesse\n\n5) game_lover: Trade B1 G1 Game_lover\n\tJesse: Is there any chance I've played you before, maybe at Origins?\n\tgame_lover: No. I've never been to Origins.\n\n6) Jesse: Build G2 Jesse\n\n7) game_lover: Discover G1 Game_lover Y2 Origins\n\tJesse: OK, just curious.\n\tgame_lover: I think I'll name the systems after the gaming conventions (Origins, GenCon, Dragon*Con, etc.) since I can't think of anything else.\n\n8) Jesse: Trade G2 Y2 Jesse\n\n9) game_lover: Build B1 Game_lover\n\n10) Jesse: Build G2 Jesse\n\n11) game_lover: Move B1 Game_lover Origins\n\n12) Jesse: Discover G2 Jesse Y1 Katamari\n\n13) game_lover: Trade B1 R1 Origins\n\tgame_lover: What is "Katamari"? Or is it just a name?\n\n14) Jesse: Build G2 Jesse\n\tJesse: It's Japanese for "lump" or "clod". Also, Katamari Damashii ("lump spirit") is one of the best video games ever.\n\n15) game_lover: Build R1 Origins\n\tgame_lover: how do I grow the R1 ship in Origins to an R2 ship. I tried "build R2 Origins" but that didn't work. Do you know how?\n\tgame_lover: "trade R1 R2 Origins" didn't work either\n\tgame_lover: Uh...nvm...apparently Homeworlds doesn't have a "build-up" power, just a "build the smallest available ship" power. I was thinking of IceTraders, the precessor to Homeworlds. Sorry!\n\n16) Jesse: Discover G2 Jesse B1 N_\n\tJesse: Yeah, this makes it much more about managing the piece economy. Fortunately, I have no prior experience with IceTraders to distract me. :)\n\n17) game_lover: Build G2 Origins\n\n18) Jesse: Build G3 N_\n\n19) game_lover: Build G3 Origins\n\n20) Jesse: Move G2 Katamari Origins\nCatastrophe Origins G\n\n21) game_lover: Build B1 Game_lover\n\n22) Jesse: Build G1 N_\n\tgame_lover: I wasn't sure if you'd cath that, which is why I undid my last move. I decided to create a G3 at game_lover, but I couldn't do that, so I just made a G3 at Origins, and you saw the catastophe.\n\n23) game_lover: Trade B3 G3 Game_lover\n\n24) Jesse: Trade G2 R2 N_\n\tJesse: It's usually best not to rely on your opponent missing something, unless you're desperate.\n\n25) game_lover: Trade G3 R3 Game_lover\n\n26) Jesse: Build R1 N_\n\n27) game_lover: Trade R3 B3 Game_lover\n\tgame_lover: I'm going to try this and see how it works...\n\n28) Jesse: Build G2 N_\n\n29) game_lover: Move B3 Game_lover Origins\n\tJesse: OK, you do realize that you just gave me 3 free moves, I hope.\n\n30) Jesse: Sacrifice Y2 Jesse\nMove G3 N_ Origins\nMove G3 Origins Game_lover\n\n\tJesse: I'd offer to rewind the game, but at this point I think it would be better to begin again.\n\tgame_lover: OK. Well, I'll surrender. YOU WIN!\n\nHomeworlds Online (SDG# 3850)\nStarted: 2006.7.10, Ended: 2006.8.1\nParticipants: Keith (S), gluco (N)\nWinner: Keith\n\n1) gluco: Homeworld G3 B2 Y3\n\tKeith: Hello gluco. My win/loss record is 2/5. Though I think I can still give you something to kick and scream about. Read the wiki for some good setup help.\n\tgluco: Thanks Keith. Been dying to play this for a while now...\n\n2) Keith: Homeworld Y1 B3 G3\n\n3) gluco: Build Y1 Gluco\n\n4) Keith: Build G1 Keith\n\n5) gluco: Trade Y3 R3 Gluco\n\n6) Keith: Trade G1 Y1 Keith\n\n7) gluco: Discover Y1 Gluco G1 Alphacent\n\n8) Keith: Build G1 Keith\n\n9) gluco: Build Y2 Alphacent\n\n10) Keith: Trade G1 R1 Keith\n\n11) gluco: Build Y2 Alphacent\n\n12) Keith: Discover Y1 Keith G2 Midworld\n\n13) gluco: Move Y1 Alphacent Gluco\n\n14) Keith: Build G1 Keith\n\n15) gluco: Trade Y1 B1 Gluco\n\n16) Keith: Discover G1 Keith B2 Miranda\n\n17) gluco: Move Y2 Alphacent Gluco\n\n18) Keith: Build G1 Keith\n\n19) gluco: Move B1 Gluco Alphacent\n\n20) Keith: Build R1 Keith\n\n21) gluco: Trade Y2 R2 Alphacent\n\n22) Keith: Sacrifice G3 Keith\nBuild G2 Miranda\nBuild G2 Miranda\nBuild G3 Keith\n\n23) gluco: Build Y1 Gluco\n\tKeith: Are you familiar with "the factory" for accelerating ship building?\n\tgluco: No actually. I take it that's what you just did with the sacrifice?\n\n24) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild G3 Keith\nBuild Y2 Midworld\n\tKeith: Correct. If this were an unrated game I would be a bit more helpful in advance.\n\n25) gluco: Move Y1 Gluco Alphacent\n\tKeith: By helpful I mean informative. I am now trying to deny you access to green ships and limiting your green access in general.\n\n26) Keith: Discover Y1 Midworld B1 Mist\n\tgluco: OK, helpful/informative is good. If you sacrifice a size 3, you can only get it back if there are no smaller ones left in the reserve stash of that color, right?\n\tKeith: Sort of. There could be up to two smaller green ships. There were two G2s that I had to recruit back first to get to the G3. No smaller green ships is better since I could have gone for other colors. As it was I have 3 green ships in each sector. That would be a severe catasrophe risk if you had a green ship.\n\n27) gluco: Build Y2 Alphacent\n\n28) Keith: Sacrifice G3 Keith\nBuild Y3 Midworld\nBuild Y3 Mist\nBuild G3 Keith\n\n29) gluco: Build Y3 Gluco\n\n30) Keith: Sacrifice Y2 Midworld\nMove Y1 Mist Gluco\nMove Y3 Mist Gluco\nCatastrophe Gluco Yellow\n\n31) gluco: Build R1 Alphacent\n\n32) Keith: Sacrifice Y3 Midworld\nMove G2 Miranda Alphacent\nMove G2 Miranda Alphacent\nMove G1 Miranda Alphacent\nCatastrophe Alphacent Green\n\tKeith: I am not sure you understand how the red ships work. I can sacrfice an R1 in Keith and attack your R2 at Miranda with a G2.\n\tgluco: I didn't realize you could attack with a green ship\n\n33) gluco: Build R1 Gluco\n\tgluco: Thanks! I'll try something else...\n\tKeith: The sacrifice gives me the power of that color in any sector.\n\tKeith: For example sacrificing a Y3 in Midworld would give me the power to make three ship moves anywhere. I feel kind of bad about being heavy handed with my moves. Think of them as lessons. Hard ones though. I prefer learning/teaching in unranked games. The best way to take out a group of ships around a star is to take out the star.\n\n34) Keith: Discover R1 Keith Y2 Mote\n\n35) gluco: Trade R1 Y1 Gluco\n\tgluco: No prob - this is fun! Thanks for your tips and your patience. I will continue scheming...\n\tKeith: We could set up a non-ranked game sometime and take more time to develope our positions (and possible schemes).\n\n36) Keith: Move G1 Keith Mote\n\n37) gluco: Discover Y1 Gluco G1 Paloverde\n\tgluco: OK. Let's do that after this game. Thanks!\n\n38) Keith: Build G1 Keith\n\n39) gluco: Build R1 Gluco\n\n40) Keith: Discover G1 Mote Y1 Jacket\n\n41) gluco: Build Y2 Paloverde\n\n42) Keith: Sacrifice G3 Keith\nBuild G2 Jacket\nBuild G2 Jacket\nBuild R2 Mote\n\n43) gluco: Move Y2 Paloverde Gluco\n\n44) Keith: Move G1 Jacket Gluco\n\n45) gluco: Attack G1 Gluco\n\tKeith: Time to demo another destruction technique.\n\n46) Keith: Move G2 Jacket Gluco\n\tgluco: things are looking bad but must try something...\n\n47) gluco: Move G1 Gluco Paloverde\n\n48) Keith: Sacrifice G3 Keith\nBuild G2 Gluco\nBuild G3 Keith\nBuild G3 Gluco\nCatastrophe Gluco Green\n\n49) gluco: Trade R3 G3 Gluco\n\n50) Keith: Move R2 Mote Paloverde\n\n51) gluco: Discover Y1 Paloverde G2 Antietam\n\n52) Keith: Attack G1 Paloverde\n\n53) gluco: Build G2 Gluco\n\n54) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild G3 Jacket\nBuild R2 Paloverde\n\n55) gluco: Sacrifice Y2 Gluco\nMove G2 Gluco Keith\nMove G3 Gluco Keith\nCatastrophe Keith G\n\n56) Keith: Move G3 Jacket Gluco\n\n57) gluco: Build Y2 Antietam\n\tKeith: Wow. I did not think you would be willing to lose your 3-pointer on defense at your home system. \n\tKeith: You do have to be careful about exhausting your resources. You lost a Y2, G3, and G2 while I lost a G3 and G1. Also you now only have two one point ships and I have a 3-pointer and three two-pointers. Though having only an r1 at home makes me nervous.\n\n58) Keith: Sacrifice R2 Paloverde\nAttack R1 Gluco\nPass\n\n\tKeith: Sacrificing a red gave me attack power in any sector I had ships. Like the gluco sector. Shall we try another game with slower development. Perhaps unrated or with some restriction like no catastrophies until after turn 10 or 12?\n\tgluco: yea, it was a desperate move. Alternatively, I could have taken the 2 red shis at the other star. Maybe that would have been a better choice.\r\nThanks for the cool game!\n\tKeith: Shall we try another game with slower development. Perhaps unrated or with some restriction like no catastrophies until after turn 10 or 12?\n\tgluco: By all means! Would prefer to keep the rules unchanged, but we could keep it unrated.\n\tKeith: Okay, you have been challenged.\n\nHomeworlds Online (SDG# 3796)\nStarted: 2006.7.11, Ended: 2006.10.25\nParticipants: jeep (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) jeep: Homeworld Y3 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) jeep: Build G1 Jeep\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) zoltar: Build G1 Zoltar\n\n8) jeep: Build G1 Jeep\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) jeep: Discover G1 Jeep B1 Moon\n\n11) zoltar: Build G1 Zoltar\n\n12) jeep: Build G1 Jeep\n\n13) zoltar: Build G2 Zoltar\n\n14) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G2 Moon\nBuild G3 Jeep\n\n15) zoltar: Discover G2 Zoltar Y3 Investment\n\n16) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y1 Jeep\nBuild G3 Moon\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild R1 Zoltar\n\n18) jeep: Trade G2 Y2 Moon\n\n19) zoltar: Sacrifice Y2 Zoltar\nMove G2 Investment Moon\nMove G2 Moon Jeep\nCatastrophe Jeep G\n\n20) jeep: Trade Y1 R1 Jeep\n\n21) zoltar: Build R2 Zoltar\n\n22) jeep: Sacrifice G3 Moon\nBuild Y1 Moon\nBuild Y2 Moon\nBuild Y3 Jeep\n\tjeep: I need to pay more attention. I totally missed that.\n\n23) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\tzoltar: Well, everything ended up about even after the fireworks.\n\n24) jeep: Trade Y2 R2 Moon\n\tzoltar: Actually, looks like you came out way ahead.\n\n25) zoltar: Trade R2 Y2 Zoltar\n\n26) jeep: Trade Y1 B1 Jeep\n\tjeep: I don't think I am way ahead...\n\n27) zoltar: Discover Y2 Zoltar B3 Blueridge\n\tzoltar: Well, I lost three or four moves: you have an extra 2-pip ship, you have two more ships moved out of your homeworld than I, and it's your move -- I've still yet to do that well in the openings -- I thought my sack would put me up, but it seems to have cost me a couple of moves instead.\n\tzoltar: I'm doing very well in my games, in fact, except in the opening -- where I often tend to end up playing catch up.\n\tzoltar: I'll have caught up if I can grab that huge yellow ship before you do.\n\n28) jeep: Build G1 Moon\n\n29) zoltar: Move R1 Zoltar Greenbelt\n\n30) jeep: Move G1 Moon Jeep\n\n31) zoltar: Build R2 Greenbelt\n\n32) jeep: Build G2 Moon\n\n33) zoltar: Discover R1 Greenbelt Y1 Yellowstone\n\n34) jeep: Discover G2 Moon Y3 Nationalpark\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild R2 Greenbelt\nBuild R3 Yellowstone\nBuild R3 Zoltar\n\n36) jeep: Build R3 Moon\n\n37) zoltar: Move R3 Yellowstone Nationalpark\n\n38) jeep: Sacrifice G2 Nationalpark\nBuild G2 Moon\nBuild G2 Jeep\n\tzoltar: I think I'm toast now.\n\n39) zoltar: Sacrifice Y2 Blueridge\nMove R2 Greenbelt Moon\nMove R2 Greenbelt Moon\nCatastrophe Moon R\n\tzoltar: Ok, I can at put up a fight this way instead!\n\n40) jeep: Trade Y2 R2 Moon\n\n41) zoltar: Trade R3 G3 Zoltar\n\tjeep: There's a small chance I'll miss the deadline on this game. I won't miss it by much, if you can be patient for this move. Sorry if I do.\n\tzoltar: No problem; take all the time you need -- this is my most exciting game right now.\n\n42) jeep: Build Y2 Moon\n\tjeep: Squeaked in under the wire\n\n43) zoltar: Build Y2 Greenbelt\n\tjeep: But I should have taken some time, it appears...\n\n44) jeep: Discover Y2 Moon B3 Stage\n\n45) zoltar: Move G1 Zoltar Nationalpark\n\n46) jeep: Move G2 Moon Stage\n\n47) zoltar: Build R2 Nationalpark\n\n48) jeep: Sacrifice G2 Jeep\nBuild R2 Moon\nBuild R3 Jeep\n\n49) zoltar: Build R3 Zoltar\n\n50) jeep: Trade R3 G3 Jeep\n\n51) zoltar: Move R3 Nationalpark Moon\n\n52) jeep: Sacrifice G3 Jeep\nBuild G2 Stage\nBuild G2 Stage\nBuild G3 Jeep\n\n53) zoltar: Build R3 Nationalpark\n\n54) jeep: Sacrifice Y2 Stage\nMove R2 Moon Nationalpark\nMove R2 Moon Nationalpark\n\n55) zoltar: Sacrifice R2 Nationalpark\nAttack R2 Nationalpark\nAttack R2 Nationalpark\n\n56) jeep: Trade G2 R2 Stage\n\n57) zoltar: Move R3 Zoltar Stage\n\n58) jeep: Sacrifice G2 Stage\nBuild G2 Moon\nBuild Y2 Moon\n\n59) zoltar: Sacrifice R2 Nationalpark\nAttack Y2 Moon\nAttack Y1 Moon\n\tjeep: Haha, I'm dumb...\n\n60) jeep: Sacrifice R2 Stage\nAttack Y2N Moon\nAttack Y1N Moon\n\n61) zoltar: Sacrifice R2 Nationalpark\nAttack G1 Moon\nAttack G2 Moon\n\n62) jeep: Sacrifice Y2 Moon\nDiscover G2 Stage B2 Bleh\nDiscover Y1 Moon B3 Bleck\n\tjeep: ?? Holy crap! I SWEAR I typed catastrophe in that system!\n\tjeep: Well, I guess I'll just call foul and drag out the game hoping to get back into the game.\n\n63) zoltar: Sacrifice Y2 Greenbelt\nMove G2 Moon Jeep\nMove G1 Moon Jeep\nCatastrophe Jeep G\n\n64) jeep: Sacrifice G2 Bleh\nBuild Y2 Jeep\nBuild Y2 Bleck\n\n65) zoltar: Move Y1 Greenbelt Moon\n\tjeep: ?? That seems quite rude. I printed out the game and was looking at it throughout the day and now I come in to find that you undid a day after you made the move? Nice.\n\tjeep: FWIW, my opinion is that undo is fine if it happens relatively soon... but it shouldn't take a day to undo your move.\n\tzoltar: Sorry, I guess you're right -- I didn't realize you were looking at it, and figured you were out of town, and then thought, hey, that looks cooler. Sorry about that. I'd undo it and do the other move now, but it won't let me do it again.\n\tjeep: Apology accepted. I wasted quite a bit of time yesterday, though. I often print out my homeworlds games in the morning and check in on it when I have time. I then try to make my moves after work.\n\tjeep: Well, I suppose it doesn't really matter since I now have no shot because of the missed catastrophe (which I still think I typed in).\n\n66) jeep: Trade Y2 G2 Jeep\n\n67) zoltar: Trade R3 G3 Moon\n\tzoltar: That sucks about the catastrophe -- it's too bad there isn't an option to undo several moves and go on from there. Though it's cool you actually print out the games -- I didn't realize anyone was so dedicated! That's great.\n\n68) jeep: Build R2 Jeep\n\n69) zoltar: Sacrifice G3 Moon\nBuild R2 Stage\nBuild R2 Nationalpark\nBuild R3 Yellowstone\n\n70) jeep: Discover Y1 Bleck Y2 Store\n\n71) zoltar: Move R3 Nationalpark Store\n\n72) jeep: Discover Y1 Store G3 Whatever\n\n73) zoltar: Build G1 Nationalpark\n\n74) jeep: Build B2 Jeep\n\n75) zoltar: Trade R3 B3 Stage\n\n76) jeep: Discover Y2 Bleck G1 Sigh\n\n77) zoltar: Build R3 Nationalpark\n\n78) jeep: Move B1 Jeep Sigh\n\n79) zoltar: Move Y1 Moon Stage\n\n80) jeep: Build B1 Sigh\n\n81) zoltar: Move B3 Stage Yellowstone\n\n82) jeep: Build G2 Jeep\n\n83) zoltar: Move G1 Nationalpark Yellowstone\n\n84) jeep: Move G2 Jeep Sigh\n\tjeep: I should have just resigned this game after the missed catastrophe... I haven't had fun with it since. \n\n85) zoltar: Move R3 Nationalpark Sigh\n\n86) jeep: Discover Y2 Sigh B3 Apathy\n\n87) zoltar: Sacrifice R3 Yellowstone\nAttack G2 Sigh\nAttack B1 Sigh\nAttack B1 Sigh\n\tjeep: I'm here debating my move. I'll move in minutes.\r\n\n\n88) jeep: Build G2 Jeep\n\n89) zoltar: Sacrifice G2 Sigh\nBuild G2 Zoltar\nBuild R3 Yellowstone\n\n90) jeep: Move G2 Jeep Yellowstone\n\n91) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Nationalpark\nBuild B2 Yellowstone\n\n92) jeep: Move G2 Yellowstone Apathy\n\n93) zoltar: Move G1 Nationalpark Store\n\n94) jeep: Sacrifice G2 Jeep\nBuild G2 Apathy\nPass\n\n95) zoltar: Move G2 Zoltar Stage\n\n96) jeep: Move R1 Jeep Yellowstone\n\n97) zoltar: Sacrifice R1 Yellowstone\nAttack R1 Yellowstone\n\n98) jeep: Sacrifice G2 Apathy\nBuild R1 Jeep\nBuild G2 Apathy\n\n99) zoltar: Move R2 Nationalpark Store\n\n100) jeep: Move R1 Jeep Yellowstone\n\n101) zoltar: Sacrifice R1 Yellowstone\nAttack R1 Yellowstone\n\n102) jeep: Sacrifice G2 Apathy\nBuild R1 Jeep\nBuild G2 Apathy\n\n103) zoltar: Sacrifice G3 Nationalpark\nBuild G3 Store\nBuild Y3 Stage\nPass\n\n104) jeep: Sacrifice G2 Apathy\nBuild G2 Apathy\nPass\n\n105) zoltar: Move R3 Store Apathy\n\n106) jeep: Sacrifice Y2 Apathy\nMove G2 Apathy Sigh\nMove G2 Sigh Jeep\n\n107) zoltar: Build Y2 Stage\n\n108) jeep: Sacrifice G2 Apathy\nBuild G2 Jeep\nPass\n\n109) zoltar: Move Y1 Stage Sigh\n\n110) jeep: Sacrifice G2 Jeep\nBuild G2 Jeep\nPass\n\n111) zoltar: Move Y2 Stage Sigh\n\n112) jeep: Sacrifice G2 Jeep\nBuild G2 Jeep\nPass\n\n113) zoltar: Sacrifice Y3 Stage\nMove Y1 Sigh Jeep\nMove Y2 Sigh Jeep\nMove B3 Yellowstone Jeep\nCatastrophe Jeep Y\n\tjeep: Wow, trying to drag the game on as long as possible? I know that I'm just playing because I'm hoping you make an error as big as mine...\n\tjeep: Wow, trying to drag the game on as long as possible? I know that I'm just playing because I'm hoping you make an error as big as mine...\n\n\nHomeworlds Online (SDG# 3854)\nStarted: 2006.7.12, Ended: 2006.9.4\nParticipants: Cerulean (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) Cerulean: Homeworld B3 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Cerulean: Build G1 Cerulean\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Cerulean: Trade G1 B1 Cerulean\n\n7) zoltar: Build G1 Zoltar\n\n8) Cerulean: Build G1 Cerulean\n\n9) zoltar: Build Y1 Zoltar\n\tCerulean: And away I go! http://forums.superdupergames.org/viewtopic.php?t=294\n\n10) Cerulean: Trade G1 R1 Cerulean\n\n11) zoltar: Trade G1 R1 Zoltar\n\n12) Cerulean: Build G1 Cerulean\n\n13) zoltar: Build G1 Zoltar\n\n14) Cerulean: Discover G1 Cerulean Y2 Wytou\n\n15) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n16) Cerulean: Discover G1 Wytou Y3 Wythrii\n\n17) zoltar: Build Y2 Zoltar\n\n18) Cerulean: Build G1 Wythrii\n\n19) zoltar: Trade G1 B1 Zoltar\n\n20) Cerulean: Build B2 Cerulean\n\n21) zoltar: Build Y2 Greenbelt\n\n22) Cerulean: Discover B1 Cerulean G2 Jetou\n\n23) zoltar: Move Y2 Greenbelt Jetou\n\n24) Cerulean: Build G1 Wythrii\n\n25) zoltar: Build Y3 Jetou\n\n26) Cerulean: Move G1 Wythrii Zoltar\n\n27) zoltar: Trade Y2 R2 Zoltar\n\n28) Cerulean: Build G2 Zoltar\n\n29) zoltar: Attack G2 Zoltar\n\tzoltar: Uh-ooh!\n\n30) Cerulean: Build G2 Zoltar\nCatastrophe Zoltar G\n\n31) zoltar: Build Y2 Greenbelt\n\tzoltar: Yup I think I'm dead\n\n32) Cerulean: Sacrifice B1 Jetou\nTrade G1 B1 Wythrii\n\tzoltar: As Kermit said, "It's not easy being green"\n\n33) zoltar: Move Y3 Jetou Wythrii\n\tzoltar: Nope, I have nothing better.\n\n34) Cerulean: Trade G1 R1 Wythrii\n\n35) zoltar: Sacrifice R2 Zoltar\nAttack B1 Wythrii\nAttack R1 Wythrii\n\tzoltar: ouch\n\n36) Cerulean: Build G1 Cerulean\n\n37) zoltar: Build Y3 Greenbelt\n\n38) Cerulean: Build R2 Cerulean\n\n39) zoltar: Trade B1 G1 Zoltar\n\n40) Cerulean: Discover R1 Cerulean B2 Bitou\n\n41) zoltar: Build R2 Zoltar\n\tzoltar: Zee Yellow fleet ease mine, awl mine! Whew Who!\n\n42) Cerulean: Move G1 Cerulean Bitou\n\n43) zoltar: Move R1 Zoltar Greenbelt\n\n44) Cerulean: Build R2 Bitou\n\n45) zoltar: Build R3 Zoltar\n\n46) Cerulean: Build R3 Cerulean\n\n47) zoltar: Build R3 Greenbelt\n\n48) Cerulean: Trade R1 B1 Bitou\n\n49) zoltar: Build R1 Greenbelt\n\n50) Cerulean: Move R3 Cerulean Jetou\n\n51) zoltar: Move Y2 Jetou Wythrii\n\n52) Cerulean: Build G1 Bitou\n\n53) zoltar: Build G2 Zoltar\n\n54) Cerulean: Build G2 Cerulean\n\n55) zoltar: Build G3 Zoltar\n\n56) Cerulean: Pass\n\tzoltar: Yikes! Retreat!!!\n\n57) zoltar: Sacrifice G2 Zoltar\nBuild B2 Wythrii\nBuild B3 Wythrii\n\n58) Cerulean: Build G2 Bitou\n\n59) zoltar: Move B3 Wythrii Zoltar\n\n60) Cerulean: Pass\n\n61) zoltar: Build B3 Zoltar\n\n62) Cerulean: Pass\n\n63) zoltar: Move B3 Zoltar Greenbelt\n\n64) Cerulean: Pass\n\n65) zoltar: Move G1 Zoltar Wythrii\n\n66) Cerulean: Pass\n\n67) zoltar: Move Y3 Greenbelt Bitou\n\tzoltar: m b3 zoltar greenbelt\n\n68) Cerulean: Sacrifice B1 Bitou\nTrade G1 B1 Bitou\n\n69) zoltar: Build G1 Zoltar\n\n70) Cerulean: Sacrifice B1 Bitou\nTrade G1 B1 Bitou\n\n71) zoltar: Sacrifice R3 Zoltar\nAttack R2 Bitou\nAttack G2 Bitou\nAttack B1 Bitou\n\n72) Cerulean: Build R3 Cerulean\n\tzoltar: Zoltarian forces storm zee Bitou beach...\n\n73) zoltar: Sacrifice Y3 Wythrii\nMove B1 Wythrii Bitou\nMove B1 Bitou Cerulean\nMove B1 Bitou Cerulean\nCatastrophe Cerulean B\n\n74) Cerulean: Move R3 Cerulean Wythrii\n\n75) zoltar: Sacrifice Y3 Bitou\nMove Y2 Wythrii Cerulean\nMove Y2 Greenbelt Cerulean\nMove Y1 Greenbelt Cerulean\nCatastrophe Cerulean Y\n\n\tzoltar: Thanx4 zee game, hyu-maahn bean. That was fun!\n\nHomeworlds Online (SDG# 3877)\nStarted: 2006.7.17, Ended: 2006.7.21\nParticipants: Personman (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) Personman: Homeworld B3 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Personman: Build G1 Personman\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Personman: Trade G3 Y3 Personman\n\n7) zoltar: Build Y2 Zoltar\n\n8) Personman: Build Y2 Personman\n\n9) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n10) Personman: Discover Y2 Personman G2 Alves\n\n11) zoltar: Build G1 Zoltar\n\n12) Personman: Build G1 Personman\n\n13) zoltar: Discover G1 Zoltar Y3 Investment\n\n14) Personman: Discover G1 Personman B2 Cobaltmere\n\n15) zoltar: Build G2 Zoltar\n\n16) Personman: Build G2 Cobaltmere\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Investment\nBuild Y2 Greenbelt\n\n18) Personman: Sacrifice G2 Cobaltmere\nBuild Y3 Alves\nBuild G2 Personman\n\n19) zoltar: Discover Y1 Greenbelt B2 Blueberry\n\n20) Personman: Trade G1 R1 Personman\n\n21) zoltar: Trade G2 R2 Zoltar\n\n22) Personman: Build R1 Personman\n\n23) zoltar: Sacrifice G3 Investment\nBuild G1 Investment\nBuild G2 Investment\nBuild G3 Zoltar\n\n24) Personman: Sacrifice Y2 Alves\nMove G1 Cobaltmere Investment\nMove R1 Personman Blueberry\nCatastrophe Investment G\n\n25) zoltar: Move Y1 Blueberry Personman\n\n26) Personman: Move Y3 Personman Blueberry\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Personman\nBuild R1 Zoltar\n\n28) Personman: Discover Y3 Alves G3 Luitpold\n\n29) zoltar: Sacrifice R2 Zoltar\nAttack G2 Personman\nAttack R1 Personman\n\tzoltar: Oh what the heck: let's go for the wild, exciting variation!\n\n\tzoltar: Whoops! I think you needed to move back to your homeworld with that Y3 instead, in order to blow up my yellow ships! \n\tPersonman: Oh. Indeed. I completely missed the R2. Oh well, that's how you learn. Thanks for these games, by the way!\n\nHomeworlds Online (SDG# 3888)\nStarted: 2006.7.20, Ended: 2006.7.25\nParticipants: Uglyfoot (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) Uglyfoot: Homeworld Y1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) zoltar: Build G1 Zoltar\n\n8) Uglyfoot: Discover G1 Uglyfoot Y2 Nexus\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) Uglyfoot: Trade G1 R1 Uglyfoot\n\n11) zoltar: Build G1 Zoltar\n\n12) Uglyfoot: Build G1 Uglyfoot\n\n13) zoltar: Build G2 Zoltar\n\n14) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Nexus\nBuild G2 Nexus\nBuild G3 Uglyfoot\n\n15) zoltar: Trade G2 Y2 Zoltar\n\n16) Uglyfoot: Discover G2 Nexus R3 Sanguine\n\n17) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n18) Uglyfoot: Discover G2 Nexus B3 Extension\n\n19) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n20) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Greenbelt\nBuild Y3 Greenbelt\n\n22) Uglyfoot: Build G3 Extension\n\n23) zoltar: Trade Y1 B1 Zoltar\n\n24) Uglyfoot: Sacrifice G3 Extension\nBuild Y1 Uglyfoot\nBuild R1 Uglyfoot\nBuild G3 Extension\n\n25) zoltar: Sacrifice Y3 Greenbelt\nMove Y1 Zoltar Greenbelt\nMove Y1 Greenbelt Nexus\nMove Y1 Nexus Uglyfoot\nCatastrophe Uglyfoot Y\n\n26) Uglyfoot: Trade G3 Y3 Extension\n\n27) zoltar: Sacrifice Y3 Greenbelt\nMove B1 Zoltar Uglyfoot\nMove G1 Zoltar Uglyfoot\nMove G2 Zoltar Uglyfoot\n\n28) Uglyfoot: Sacrifice G2 Sanguine\nBuild G2 Uglyfoot\nBuild G3 Extension\nCatastrophe Uglyfoot G\n\tzoltar: Party at Uglyfoot's! Party at Uglyfoot's! All ships welcome!\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild B1 Uglyfoot\nBuild B2 Uglyfoot\nBuild B2 Uglyfoot\nCatastrophe Uglyfoot B\n\tUglyfoot: Die invading scum!\n\tzoltar: What a blast! Play again, Earthling?\n\n\nHomeworlds Online (SDG# 3857)\nStarted: 2006.7.21, Ended: 2006.9.16\nParticipants: Gort (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y2 G3\n\n2) Gort: Homeworld G3 Y1 R3 *\n\tzoltar: Greetingz, primitive carbon waterbag unit!\n\tGort: Hey, Zoltar. I got yer mail. Lots of ads from Alpha Centuri and a few bills from the Intergalactic Overlord Guild.\n\n3) zoltar: Build G1 Zoltar\n\n4) Gort: Build R1 Gort\n\n5) zoltar: Build G1 Zoltar\n\n6) Gort: Discover R1 Gort Y2 Yoohoo\n\n7) zoltar: Trade G1 R1 Zoltar\n\n8) Gort: Discover R1 Yoohoo Y1 Yippee\n\n9) zoltar: Trade G1 Y1 Zoltar\n\n10) Gort: Discover R1 Yippee B3 Boohoo\n\tzoltar: All reds this game so far? What are you up to, Gort?\n\n11) zoltar: Build Y1 Zoltar\n\n12) Gort: Build R1 Gort\n\n13) zoltar: Build R2 Zoltar\n\n\tzoltar: You can't even make a move in 10 daze, Gort? You musta fallen into a wormhole or something. Heh!\n\tzoltar: Eat haz now bean 17 daze scenes dare haz bean any activity buy zee Gortianz. Perhapz day hour een a regenerashun cycle.\n\tzoltar: Eat haz now bean 38 daze scenes dare haz bee nanny act tea vitty buy Gort. Zoltar haz lozz pay shins! Zoltar veal now terminate zee Gortian Univerz! Bwahahaha!\n\nHomeworlds Online (SDG# 3896)\nStarted: 2006.7.21, Ended: 2006.7.29\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld Y3 B2 G3\n\n3) Personman: Build G1 Personman\n\n4) zoltar: Build G1 Zoltar\n\n5) Personman: Trade G1 Y1 Personman\n\n6) zoltar: Build G1 Zoltar\n\n7) Personman: Discover Y1 Personman G3 Serpolet\n\n8) zoltar: Trade G3 Y3 Zoltar\n\n9) Personman: Discover Y1 Serpolet R1 Vriko\n\n10) zoltar: Discover G1 Zoltar B1 Blueridge\n\n11) Personman: Move Y1 Vriko Zoltar\n\n12) zoltar: Trade Y3 R3 Zoltar\n\tzoltar: Yikes! That's pretty early to attack!\n\n13) Personman: Discover Y1 Zoltar B1 Soubridge\n\tzoltar: Red Alert!\n\n14) zoltar: Build R1 Zoltar\n\n15) Personman: Build G1 Personman\n\n16) zoltar: Build G2 Blueridge\n\n17) Personman: Trade G1 R1 Personman\n\n18) zoltar: Trade G2 Y2 Blueridge\n\n19) Personman: Build R1 Personman\n\n20) zoltar: Trade R1 B1 Zoltar\n\n21) Personman: Build G1 Personman\n\n22) zoltar: Build G2 Blueridge\n\n23) Personman: Discover G1 Personman Y3 Hope\n\n24) zoltar: Trade G2 B2 Blueridge\n\n25) Personman: Build G2 Personman\n\n26) zoltar: Build B3 Blueridge\n\n27) Personman: Discover G2 Personman Y3 Thing_50\n\n28) zoltar: Trade B3 R3 Blueridge\n\n29) Personman: Build G2 Personman\n\n30) zoltar: Move R3 Blueridge Thing_50\n\n31) Personman: Move G2 Thing_50 Blueridge\n\n32) zoltar: Build B3 Blueridge\n\n33) Personman: Trade G2 Y2 Blueridge\n\n34) zoltar: Trade B3 R3 Blueridge\n\n35) Personman: Discover Y2 Blueridge B3 Run\n\n36) zoltar: Build B3 Blueridge\n\tzoltar: Warning! Warning! Danger Will Robinson!\n\tPersonman: Wait woah. That is totally not what I meant to do last turn. It was supposed to be an r2, no a y2... oh well.\n\n37) Personman: Discover G1 Hope Y2 Montrouge\n\n38) zoltar: Trade B3 Y3 Blueridge\n\tzoltar: Hmm. I might have still made the same move, and traded for an R3: if you sacked your R2 to attack two ships (or kept the R2 and attacked one of them), I would sack my new R3 and take back the two ships; I would have lost my R3 for your R2 but in two turns I could build a B3 and trade it for the R3 again. I love the way this game makes us think!\n\tzoltar: Btw, I've learned to look at the board after I make my move. Then if it's wrong, or now that the piece has moved, I see a flaw in my analysis, then I can change the move. It would be an improvement to see your move first and then click to either finalize it or change it, and also be able to change it as many times as you'd like before you finalize it. \n\n39) Personman: Build G2 Montrouge\n\n40) zoltar: Build B3 Zoltar\n\n41) Personman: Move G2 Montrouge Run\n\n42) zoltar: Move Y3 Blueridge Run\n\n43) Personman: Sacrifice G2 Run\nBuild G2 Montrouge\nBuild Y1 Run\n\n44) zoltar: Trade B3 G3 Zoltar\n\n45) Personman: Move Y1 Soubridge Zoltar\n\n46) zoltar: Sacrifice R3 Zoltar\nAttack Y1 Zoltar\nAttack Y1 Run\nAttack Y2 Run\n\n47) Personman: Trade R1 B1 Personman\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild B3 Blueridge\n\n49) Personman: Build R1 Personman\n\tzoltar: Zee Yellow shipz are mine! Awl mine!\n\n50) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B3 Zoltar\nBuild G3 Blueridge\n\n51) Personman: Discover G2 Montrouge R3 Ha\n\n52) zoltar: Move B3 Blueridge Ha\n\n53) Personman: Build R1 Personman\n\n54) zoltar: Move B2 Blueridge Thing_50\n\n55) Personman: Move R1 Personman Run\n\n56) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Thing_50\nBuild R2 Blueridge\n\tzoltar: Very sneaky, trying to deny the Great Galactic Overlord Zoltar of zee last Red battle cruiser! Soon zee Galaxy will be mine! (Insert Evil Overlord Laughter here)\n\n57) Personman: Attack Y1 Run\n\n58) zoltar: Sacrifice R3 Blueridge\nAttack G2 Ha\nAttack R1 Run\nAttack Y1 Run\n\n59) Personman: Build R2 Personman\n\n60) zoltar: Sacrifice G2 Zoltar\nBuild G2 Ha\nBuild R3 Run\n\n61) Personman: Sacrifice B1 Personman\nPass\n\n62) zoltar: S Y3 Run\nMove R1 Run Personman\nMove G2 Ha Personman\nMove G2 Ha Personman\nCatastrophe Personman R\nCatastrophe Personman G\n\tzoltar: Resistance is futile: You will be assimilated!\n\n\tPersonman: In hopes for kind treatment in the aftermath, I offer up a sacrifice for my new leaders. \n\tzoltar: In that case, we will have a big party at Personman! All ships welcome! Lots of food, beer, and green Star Trek Orion belly dancers! It will be a blast! Play again? \n\nHomeworlds Online (SDG# 3897)\nStarted: 2006.7.21, Ended: 2006.8.8\nParticipants: Keith (S), MrStickman (N)\nWinner: Keith\n\n1) MrStickman: Homeworld G1 B2 Y3\n\n2) Keith: Homeworld Y3 B1 G3\n\tMrStickman: Hi, Keith! Good luck!\n\tKeith: Hello MrStickman. I am more familiar with your forum posts than your game playing. \n\n3) MrStickman: Build Y1 Mrstickman\n\n4) Keith: Build G1 Keith\n\tMrStickman: I guees we haven't played each other yet. Well met, then.\n\n5) MrStickman: Build Y1 Mrstickman\n\n6) Keith: Trade G1 Y1 Keith\n\n7) MrStickman: Trade Y1 B1 Mrstickman\n\n8) Keith: Build G1 Keith\n\n9) MrStickman: Discover B1 Mrstickman G3 Lorem\n\n10) Keith: Discover Y1 Keith G2 Midworld\n\n11) MrStickman: Trade Y1 R1 Mrstickman\n\n12) Keith: Trade G1 R1 Keith\n\n13) MrStickman: Build Y1 Mrstickman\n\n14) Keith: Build G1 Keith\n\n15) MrStickman: Move Y1 Mrstickman Lorem\n\tMrStickman: Sorry for delays. Moving == spotty internet.\n\n16) Keith: Trade G1 B1 Keith\n\tKeith: Darn! I was hoping it was the strength of my play that was giving you pause. ;-) Moving is a drag even when it is an opportunity. You have my sympathy. Thank you for the notice. I had wondered.\n\n17) MrStickman: Build B2 Lorem\n\n18) Keith: Move B1 Keith Midworld\n\n19) MrStickman: Trade B1 G1 Lorem\n\n20) Keith: Trade B1 G1 Midworld\n\tMrStickman: To make matters worse, I think I may have broken my personal PC earlier recently. There was swearing. OTOH, I *think* I have an antique that'll be functional enough for internet and possibly even a little coding project (I want to try my hand at coding for SDG.) But that can all wait a few weeks.\n\tKeith: Uh-oh. How broke is broke? What kind of coding project for SDG. Do you have a game you are going to get put on the site? You are doing a very good job of resource management. I bit the bullet and knew you would get a two pointer but you have immediately put me back in the same situation.\n\n21) MrStickman: Discover B2 Lorem G2 Ipsum\n\n22) Keith: Build G2 Keith\n\tMrStickman: "Broken" in this case means "the motherboard started comitting child abuse." It managed to kill the hard drive before Child Services stepped in and put the other components in foster care.\r\n"Antique" in this case means the old Pentium I can put Windows 95 (eww) on and use to write Perl (which runs everywhere).\r\n"Coding Project" refers to the handful of games I'd really love to see implemented. Aaron (bless his heart for making this site) seems to have his hands full with maintenance, and I'm a programmer who's been kinda curious about Perl anyway, so I'll try my hand at it.\r\nThank you for the kind words. I've learned Homeworlds is really played in the stash.\n\tMrStickman: Drat. The chat window doesn't preserve newlines.\n\tMrStickman: This is a test please ignore it.\r\n< gt > lt & amp ' apos " quot\n\n23) MrStickman: Build B1 Ipsum\n\tKeith: I have never been able to get line breaks which is why I had my topics all mashed together. I think that may have been fixed.\r\n\r\nTime to test.\r\n\n\tKeith: "Broken" - I am on my third mother board..\r\n\r\n"Coding Project" - I am not a programmer. My second to last programming class used punch cards. However, in the interest of extracting information from the Cannon game database I have, with Aaron's guidence, acquired Perl, the database, and the "lama book" Learning Perl.\n\n24) Keith: Sacrifice G2 Keith\nBuild G2 Midworld\nBuild G3 Keith\n\tMrStickman: The newlines are fixed. Thank God (or just Aaron). One of my internet pet peeves are self-publishers that don't ever hit the Enter key.\n\n25) MrStickman: Move G1 Lorem Midworld\nCatastrophe Midworld Green\n\n26) Keith: Trade G3 R3 Keith\n\n27) MrStickman: Build Y1 Lorem\n\n28) Keith: Move R3 Keith Ipsum\n\n29) MrStickman: Sacrifice Y1 Lorem\nDiscover B2 Ipsum G1 Dolor\n\n30) Keith: Attack B1 Ipsum\n\n31) MrStickman: Build Y1 Lorem\n\n32) Keith: Trade B1 Y1 Ipsum\n\n33) MrStickman: Build Y2 Mrstickman\n\n34) Keith: Build Y2 Ipsum\n\n35) MrStickman: Sacrifice Y2 Mrstickman\nMove Y1 Lorem Ipsum\nMove Y1 Lorem Ipsum\nCatastrophe Ipsum Yellow\n\n36) Keith: Build G1 Keith\n\n37) MrStickman: Build B1 Dolor\n\n38) Keith: Trade G1 Y1 Keith\n\n39) MrStickman: Build B1 Dolor\n\n40) Keith: Move Y1 Keith Ipsum\n\n41) MrStickman: Trade B2 Y2 Dolor\n\n42) Keith: Move R3 Ipsum Dolor\n\n43) MrStickman: Sacrifice Y2 Dolor\nDiscover B1 Dolor G2 Sit\nDiscover B1 Dolor Y2 Amet\n\n44) Keith: Build G1 Keith\n\n45) MrStickman: Build B2 Sit\n\n46) Keith: Trade G1 Y1 Keith\n\n47) MrStickman: Trade Y3 B3 Mrstickman\n\n48) Keith: Sacrifice Y1 Keith\nMove R3 Dolor Sit\n\tKeith: I have not yet fathomed what is going on with all the blue.\n\n49) MrStickman: Build B2 Sit\n\n50) Keith: Attack B2 Sit\n\n51) MrStickman: Build B3 Sit\n\n52) Keith: Attack B3 Sit\n\n53) MrStickman: Build B3 Mrstickman\nCatastrophe Sit Blue\n\n54) Keith: Build G1 Keith\n\tKeith: ahh... I should have triggered the catastrophe to keep you away from the b3.\n\n55) MrStickman: Trade B3 Y3 Mrstickman\n\n56) Keith: Trade G1 Y1 Keith\n\n57) MrStickman: Build B1 Mrstickman\n\n58) Keith: Move Y1 Keith Sit\n\n59) MrStickman: Discover B3 Mrstickman R3 Adipiscing\n\n60) Keith: Build G1 Keith\n\n61) MrStickman: Build B2 Mrstickman\n\n62) Keith: Build Y1 Sit\n\n63) MrStickman: Trade B2 G2 Mrstickman\n\n64) Keith: Build Y2 Ipsum\n\n65) MrStickman: Build B2 Mrstickman\n\n66) Keith: Discover Y1 Sit B3 Belle\n\n67) MrStickman: Move G2 Mrstickman Adipiscing\n\n68) Keith: Discover Y2 Ipsum B3 Ping\n\n69) MrStickman: Build B2 Adipiscing\n\n70) Keith: Sacrifice G1 Keith\nBuild Y2 Belle\n\n71) MrStickman: Trade B3 Y3 Adipiscing\n\n72) Keith: Move Y1 Belle Mrstickman\n\n73) MrStickman: Attack Y1 Mrstickman\n\n74) Keith: Sacrifice Y1 Sit\nMove Y2 Belle Mrstickman\n\n75) MrStickman: Discover Y1 Mrstickman G3 Elit\n\tMrStickman: I'm not sure where you're going with this. I suppose that means you deserve whatever you're trying to get...\n\tKeith: I said the same thing about your blue intentions... and bobbled it. Maybe the next move will make it more obvious.\n\n76) Keith: Sacrifice R3 Sit\nAttack B2 Mrstickman\nAttack B1 Mrstickman\nAttack R1 Mrstickman\n\n77) MrStickman: Trade Y3 R3 Mrstickman\n\tMrStickman: Well, I think I caught it, but I'm not sure I'm fast enough to stop it all....\n\tKeith: Maybe. If I move another y2 in and you convert it I build one and create a yellow catastrophe. (Thus the sacrifice of a y1 to move a y2 so I had a yellow to build.) If you move the Y3 out I move my R3 in and start converting. However, if you let me move a fourth yellow in and catastrophe you can then move your Y3 back home before my R3 can get there. Hmmmm....\n\n78) Keith: Sacrifice G3 Keith\nBuild R1 Mrstickman\nBuild R2 Mrstickman\nBuild B3 Mrstickman\nCatastrophe Mrstickman Red\n\n\tMrStickman: Very well done! I was totally not expecting that final shot.\n\tKeith: Whew! Thank you for the great game. What a struggle. I did not feel safe from the time you got all those blues. I would like to play you again sometime either rated or unrated.\n\tMrStickman: Yes, absolutely. But not for a while. Homeworlds makes my head hurt.\n\tKeith: I feel worn down myself. Sometime later then. \n\nHomeworlds Online (SDG# 3916)\nStarted: 2006.7.26, Ended: 2006.8.13\nParticipants: Uglyfoot (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) Uglyfoot: Homeworld Y3 B1 G3\n\tUglyfoot: Greetings Emporer. Ready for incoming invaders.\n\n3) zoltar: Build G1 Zoltar\n\n4) Uglyfoot: Build G1 Uglyfoot\n\tzoltar: Primitive carbon waterbag unitz, ewe hour know match four Zoltar!\n\tzoltar: Zee galaxy wheel bee mine! Awl mine!\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n7) zoltar: Build Y2 Zoltar\n\n8) Uglyfoot: Build Y2 Uglyfoot\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) zoltar: Build G1 Zoltar\n\n12) Uglyfoot: Discover Y2 Uglyfoot G2 Hera\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) Uglyfoot: Trade G1 R1 Uglyfoot\n\n15) zoltar: Build G1 Zoltar\n\n16) Uglyfoot: Build G1 Uglyfoot\n\n17) zoltar: Discover Y2 Zoltar G3 Rhea\n\n18) Uglyfoot: Discover Y1 Uglyfoot B2 Hermes\n\n19) zoltar: Discover G1 Zoltar B3 Artemis\n\n20) Uglyfoot: Move G1 Uglyfoot Hermes\n\n21) zoltar: Move B1 Zoltar Rhea\n\n22) Uglyfoot: Build G1 Uglyfoot\n\n23) zoltar: Build G2 Zoltar\n\n24) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Hermes\nBuild G3 Uglyfoot\nBuild Y1 Hera\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Rhea\nBuild B2 Rhea\n\n26) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y2 Hera\nBuild Y3 Hermes\n\n27) zoltar: Discover B2 Rhea R2 Hephaestus\n\n28) Uglyfoot: Discover Y2 Hera B3 Apollo\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Rhea\nBuild B3 Rhea\n\n30) Uglyfoot: Sacrifice Y2 Apollo\nMove Y1 Hermes Rhea\nMove Y1 Hera Rhea\nCatastrophe Rhea Y\n\n31) zoltar: Trade B3 Y3 Rhea\n\n32) Uglyfoot: Discover Y3 Hermes B3 Zeus\n\tUglyfoot: Emporer, your twice vanquished vassal begs your permission to dwell on his turn...\n\tzoltar: Hey, take all the time you need. I'd rather play a longer thought-out game than a faster sloppy one. Gort is so slow that when I challenged him for a rematch, I made the interval 10 days instead of 3 so the game wouldn't show him to be past the deadline every move!\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Rhea\nBuild B3 Hephaestus\n\tUglyfoot: It's a good thing I did. My favored move would have allowed you to blow up one of my stars...\r\n\n\n34) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y1 Hera\nBuild Y2 Zeus\n\tzoltar: Ah, that means you were planning to trade your G3 for a B3 in your homeworld! Yes, that would have been unwise.\n\n35) zoltar: Trade B2 Y2 Hephaestus\n\n36) Uglyfoot: Sacrifice Y2 Zeus\nMove Y1 Hera Rhea\nMove Y2 Hera Rhea\nCatastrophe Rhea Y\n\tUglyfoot: I'm trainable. Slow but trainable.\n\n37) zoltar: Sacrifice G3 Zoltar\nBuild G2 Artemis\nBuild G3 Zoltar\nBuild B2 Hephaestus\n\n38) Uglyfoot: Trade G2 R2 Hermes\n\n39) zoltar: Trade B3 R3 Hephaestus\n\n40) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Hermes\nBuild G3 Uglyfoot\nBuild R1 Uglyfoot\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild B3 Rhea\nBuild Y1 Hephaestus\nBuild G3 Zoltar\n\n42) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild R2 Hermes\nBuild Y1 Zeus\n\n43) zoltar: Trade B3 R3 Rhea\n\n44) Uglyfoot: Move R1 Uglyfoot Hephaestus\n\n45) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B3 Rhea\nBuild R3 Rhea\n\n46) Uglyfoot: Move R1 Uglyfoot Hephaestus\nCatastrophe Hephaestus R\n\n47) zoltar: Trade B3 Y3 Rhea\n\n48) Uglyfoot: Trade R2 B2 Hermes\n\n49) zoltar: Move R3 Rhea Hermes\n\n50) Uglyfoot: Trade G1 R1 Hermes\n\tzoltar: Ouch! There went half my fleet...\n\tzoltar: All forces, regroup in rhea & prepare for counterattack!\n\n51) zoltar: Sacrifice R3 Rhea\nAttack G2 Hermes\nAttack R2 Hermes\nAttack R1 Hermes\n\tUglyfoot: I win! I got a blue ship!\n\n52) Uglyfoot: Trade B2 R2 Hermes\nCatastrophe Hermes R\n\tzoltar: Blue Alert! Blue Alert! Stop blue ship at all cost!\n\n53) zoltar: Sacrifice Y3 Rhea\nMove G2 Artemis Hermes\nMove G2 Hermes Uglyfoot\nMove G2 Hermes Uglyfoot\nCatastrophe Uglyfoot G\n\n\tUglyfoot: kaboom. There was a nice satisfying kaboom.\n\tzoltar: Yep, and now for an even more satisfying kaboom...\n\nHomeworlds Online (SDG# 3939)\nStarted: 2006.7.30, Ended: 2006.8.11\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld Y1 B3 G3\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) Personman: Build G1 Personman\n\n4) zoltar: Build G1 Zoltar\n\n5) Personman: Trade G1 Y1 Personman\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Personman: Build Y2 Personman\n\n8) zoltar: Build Y2 Zoltar\n\n9) Personman: Build G1 Personman\n\n10) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n11) Personman: Discover Y1 Personman G2 Basin\n\n12) zoltar: Build Y3 Greenbelt\n\n13) Personman: Build Y3 Basin\n\n14) zoltar: Move Y1 Greenbelt Basin\n\n15) Personman: Move Y1 Basin Greenbelt\n\tzoltar: The symmetry is really cool!\n\n16) zoltar: Trade Y2 R2 Zoltar\n\n17) Personman: Trade G1 R1 Personman\n\n18) zoltar: Build R1 Zoltar\n\n19) Personman: Build R1 Personman\n\n20) zoltar: Build Y2 Basin\n\n21) Personman: Sacrifice R1 Personman\nAttack Y2S Basin\n\tzoltar: Ok, I have to think about this crazy symmetry\n\n22) zoltar: Build Y3 Basin\nCatastrophe Basin Y\n\tzoltar: Yeah, let's go for the craziest variation! Something that will break the symmetry.\n\n23) Personman: Build Y1 Greenbelt\n\n24) zoltar: Sacrifice R2 Zoltar\nAttack Y1 Greenbelt\nAttack Y1 Greenbelt\n\n25) Personman: Discover Y2 Personman G2 Mayenne\n\tzoltar: Ahhh... back to symmetry -- except I have the big yellow ship! Whew Who! \n\n26) zoltar: Move Y3 Greenbelt Mayenne\n\n27) Personman: Build Y2 Mayenne\n\tzoltar: Greenbelt haz been purged of zee infidelz!\n\tzoltar: Yellow fleet, proceed with assault on Personman Homeworld!\n\n28) zoltar: Build Y3 Greenbelt\n\n29) Personman: Sacrifice Y2 Mayenne\nMove Y2 Mayenne Greenbelt\nPass\nCatastrophe Greenbelt Y\n\tzoltar: Attack! I'll chase him 'round the moons of Nibia and 'round the Antares Maelstrom, and 'round perdition's flames before I give him up!\n\n30) zoltar: Build Y1 Mayenne\n\n31) Personman: Build G1 Personman\n\tzoltar: There has to be some way where I end up with all the Y3 ships and you end up with nothing...\n\n32) zoltar: Build Y1 Mayenne\n\tzoltar: Ok, well, I'll settle for one of the Y3 ships, I suppose.\n\n33) Personman: Build R1 Personman\n\n34) zoltar: Build R2 Zoltar\n\n35) Personman: Build R2 Personman\n\n36) zoltar: Discover Y1 Mayenne G3 Greenbelt\n\n37) Personman: Trade R2 Y2 Personman\n\n38) zoltar: Build Y2 Greenbelt\n\n39) Personman: Discover Y2 Personman G2 Cairhien\n\n40) zoltar: Build Y3 Mayenne\n\n41) Personman: Build Y3 Cairhien\n\tzoltar: Yellow fleet, proceed with assault on Personman Homeworld!\n\n42) zoltar: Sacrifice Y3 Mayenne\nMove Y1 Mayenne Greenbelt\nMove Y1 Greenbelt Cairhien\nMove Y1 Greenbelt Cairhien\nCatastrophe Cairhien Y\n\n43) Personman: Build R2 Personman\n\n44) zoltar: Move R2 Zoltar Greenbelt\n\n45) Personman: Trade R2 Y2 Personman\n\n46) zoltar: Build R2 Zoltar\n\tzoltar: Once again, my plans have been temorarily thwarted...\n\n47) Personman: Build R2 Personman\n\n48) zoltar: Build R3 Greenbelt\n\n49) Personman: Trade R2 B2 Personman\n\n50) zoltar: Trade R1 Y1 Zoltar\n\n51) Personman: Discover B2 Personman G2 Cp\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Mayenne\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n53) Personman: Move Y2 Personman Cp\n\n54) zoltar: Move R3 Greenbelt Cp\n\tzoltar: Red Alert! Red Alert! All hands to Battlestations!\n\n55) Personman: Discover Y2 Cp G3 Trask\n\n\n56) zoltar: Move Y3 Zoltar Trask\n\n57) Personman: Discover Y2 Trask B2 Caemlyn\n\n58) zoltar: Attack B2 Cp\n\tzoltar: At last, zee Yellow Fleet hath been restored! Whew Who!\n\n59) Personman: Build G1 Personman\n\n60) zoltar: Build B1 Cp\n\tzoltar: The R3 Death Star is now fully functional. Prepare to fire!\n\n61) Personman: Build G1 Personman\n\n62) zoltar: Sacrifice Y3 Greenbelt\nMove R2 Greenbelt Cp\nMove R2 Cp Personman\nMove R3 Cp Personman\nCatastrophe Personman G\nCatastrophe Personman R\n\tzoltar: All ships: pursue and attack! Whew Who!\n\n\tzoltar: Uh-oh! Party at Personman's! Party at Personman's! This one will be even a bigger blast than last time!\n\nHomeworlds Online (SDG# 3949)\nVariants: "Unrated"\nStarted: 2006.8.2, Ended: 2006.8.13\nParticipants: Keith (S), gluco (N)\nWinner: Keith\n\n1) gluco: Homeworld B1 Y2 G3\n\n2) Keith: Homeworld Y1 B3 G3\n\n3) gluco: Build G1 Gluco\n\n4) Keith: Build G1 Keith\n\n5) gluco: Trade G1 Y1 Gluco\n\n6) Keith: Trade G1 Y1 Keith\n\n7) gluco: Discover Y1 Gluco G3 Zx\n\tKeith: I did not intend to mimic your moves but if I did not grab a y1 you could grab it and it would be very difficult for me to get yellow (except for converting my g3).\n\tgluco: Couldn't you build a b1 and trade for y2 later? granted that is 2 moves though\n\n8) Keith: Build Y2 Keith\n\tKeith: I need a b2 to trade for a y2. So it would take a while to work through the b1s and you might work through the y2s at the same time.\n\n9) gluco: Build Y2 Zx\n\n10) Keith: Discover Y2 Keith G2 Midworld\n\n11) gluco: Discover Y1 Zx G2 Yptl\n\n12) Keith: Trade Y1 B1 Keith\n\n13) gluco: Build Y1 Yptl\n\n14) Keith: Build Y3 Midworld\n\n15) gluco: Build Y3 Yptl\n\n16) Keith: Trade G3 R3 Keith\n\n17) gluco: Discover Y2 Zx G2 Yert\n\n18) Keith: Sacrifice Y3 Midworld\nMove R3 Keith Midworld\nDiscover R3 Midworld Y3 Redalert\nMove R3 Redalert Gluco\n\n19) gluco: Trade G3 R3 Gluco\n\n\tKeith: Lets see if this will work.\n\n20) Keith: Attack R3 Gluco\n\tKeith: I think you were focused on sending three yellow ships into Keith and did not realize why I had pulled a gun.\n\tgluco: kewl move...not sure the situation is salvagable the way I understand the rules, but I will try something...\n\n\tKeith: The only way I saw to draw it out was to keep building new ships because I can only convert one per turn.\n\tKeith: As a general rule of thumb if the other guy has a red then you had better have one too.\n\tKeith: Then again, as a general rule never move your 3-pointer out of your homeworld system.\n\tgluco: My thoughts were you would sacrifice the r3 and make 3 captures, so building more ships would not help. Was I right? \r\nAlso, I could not sacrifice the g3 'cause then I had no build capability.\n\tKeith: You are right. I overlooked that. I was thinking you build a green I convert a green until there were four greens.\r\n\r\nYou are also right about not being able to sacrifice the g3. I think the game would prevent you from even trying.\r\n\r\nI am all for trying another game if you are.\n\tgluco: OK, let's start another one.\n\nHomeworlds Online (SDG# 3956)\nStarted: 2006.8.4, Ended: 2006.12.22\nParticipants: josh (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y1 G3\n\n2) josh: Homeworld R2 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) josh: Build G1 Josh\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) josh: Trade G3 Y3 Josh\n\n7) zoltar: Build G1 Zoltar\n\n8) josh: Build G1 Josh\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) josh: Trade G1 R1 Josh\n\n11) zoltar: Build G1 Zoltar\n\n12) josh: Build Y1 Josh\n\n13) zoltar: Build Y2 Zoltar\n\n14) josh: Build Y2 Josh\n\n15) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n16) josh: Discover Y2 Josh G1 First\n\n17) zoltar: Discover Y2 Zoltar G2 Greenhills\n\n18) josh: Build G2 Josh\n\n19) zoltar: Build Y2 Greenhills\n\n20) josh: Build Y3 First\n\tzoltar: Earth to Josh! Come in Josh!\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Zoltar\nBuild Y3 Greenbelt\n\n\nHomeworlds Online (SDG# 3858)\nStarted: 2006.8.7, Ended: 2006.8.7\nParticipants: zoltar (S), Wkr (N)\nWinner: zoltar\n\n1) Wkr: Homeworld G3 B1 R3\n\n2) zoltar: Homeworld B2 Y1 G3\n\n3) Wkr: Build R1 Wkr\n\tzoltar: Wow, so you are in Spain? That's great! I'm in Greenbelt (near Washington DC). I have been playing for 2 months, but I've played a lot of games so far.\n\tWkr: Yes, I from Zaragoza (Spain). Mi web is http://www.labsk.net and http://icehouse.labsk.net\n\tWkr: Excuse me. How I make reference to my homeworld? What coordinates I must put? Thanks\n\n4) zoltar: Build G1 Zoltar\n\tWkr: Ok. My homeworld is Wkr. I wrote Wkr(N). :D \n\n5) Wkr: Trade R1 Y1 Wkr\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Wkr: Build Y2 Wkr\n\n8) zoltar: Build Y2 Zoltar\n\n9) Wkr: Trade Y2 R2 Wkr\n\n10) zoltar: Trade Y2 R2 Zoltar\n\n11) Wkr: Build Y2 Wkr\n\n12) zoltar: Build Y2 Zoltar\n\n13) Wkr: Discover R2 Wkr B2 Caesar\n\n14) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n15) Wkr: Move Y2 Wkr Caesar\n\n16) zoltar: Trade Y1 B1 Zoltar\n\n17) Wkr: Move R2 Caesar Greenbelt\n\n18) zoltar: Sacrifice R2 Zoltar\nAttack R2 Greenbelt\nPass\n\n19) Wkr: Build R1 Wkr\n\n20) zoltar: Build R1 Greenbelt\n\n21) Wkr: Trade Y2 R2 Caesar\n\n22) zoltar: Build B1 Zoltar\n\n23) Wkr: Build R1 Wkr\n\n24) zoltar: Sacrifice Y2 Greenbelt\nMove R1 Greenbelt Caesar\nMove R1 Caesar Wkr\nCatastrophe Wkr R\n\n25) Wkr: Build Y1 Wkr\n\n26) zoltar: Move B1 Zoltar Greenbelt\n\tzoltar: The sacrifices are the hardest part of the game and the most easy to overlook.\n\n27) Wkr: Build Y2 Wkr\n\tzoltar: You are now in trouble until you build another 3-size ship in your homeworld\n\tWkr: Yeah. Double movement = boom !!!. \n\n28) zoltar: Sacrifice G3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Greenbelt\nBuild B3 Zoltar\n\n29) Wkr: Move Y1 Wkr Caesar\n\n30) zoltar: Sacrifice B2 Greenbelt\nTrade B3 Y3 Greenbelt\nTrade B3 G3 Zoltar\n\n31) Wkr: Build Y2 Wkr\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Greenbelt\nBuild B3 Zoltar\n\n33) Wkr: Discover Y2 Wkr G2 Beatles\n\n34) zoltar: Sacrifice B2 Greenbelt\nTrade B3 R3 Greenbelt\nTrade B3 G3 Zoltar\n\n35) Wkr: Trade Y2 G2 Wkr\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Greenbelt\nBuild B3 Zoltar\n\n37) Wkr: Sacrifice G2 Wkr\nBuild Y2 Wkr\nBuild Y2 Wkr\n\n38) zoltar: Sacrifice Y3 Greenbelt\nMove B3 Greenbelt Beatles\nMove R3 Greenbelt Beatles\nMove R3 Beatles Wkr\n\n39) Wkr: Move R2 Caesar Wkr\n\n40) zoltar: Sacrifice R2 Greenbelt\nAttack R2 Wkr\nAttack Y2 Wkr\n\tzoltar: I was able to build 3-sized ships using the trick of sacrificing the g3 and b2 alternatively, and then building them again, so that I could get an R3 ship into your homeworld before you could build another 3-sized ship there to defend. Once someone gets a 3-sized ship in your homeworld and you don't have another 3-sized ship in your homeworld to defend, there is rarely any defence.\n\n41) Wkr: Trade Y2 G2 Wkr\n\tzoltar: Note that if you had any 3-sized ship in your homeworld, you could have simply sacrificed your R2 ship and captured my R3! However, without a 3-sized ship, your R2 was worthless, even if you retreated it to defend.\n\tWkr: Yes. I'm prolonging my agony. I must improve my strategy enough. \n\n42) zoltar: Sacrifice R2 Wkr\nAttack G2 Wkr\nAttack Y1 Wkr\n\tzoltar: I just lost a game to the 'World Champion' Andy Looney in person last week. I've never beaten him, and he does tricks like this that I never see coming. That is why I like the game so much -- the tactics are very complex.\n\tzoltar: I'm leaving for an hour to eat dinner, but if you wish to start another game, I can play again after thast. Thanks for the game!\n\tWkr: Anihiliation. :D\n\n\nHomeworlds Online (SDG# 3981)\nStarted: 2006.8.9, Ended: 2006.10.15\nParticipants: Wkr (S), zoltar (W), Subhan64 (N), aSoso (E)\nWinner: zoltar\n\n1) Subhan64: Homeworld G3 B2 Y3\n\tWkr: hello all\n\taSoso: hello, my first game online :)\n\tzoltar: Greetingz Earthlingz! I've been playing for 2 months but this is my first multi-player game.\n\n2) aSoso: Homeworld G3 Y1 B3\n\tSubhan64: gl,all! Sorry for my slowness is starting\n\tWkr: aSoso, your turn. # homeworld star1 star2 ship\n\tWkr: Hello again, zoltar. :D\n\tzoltar: Hello!\n\n3) Wkr: Homeworld B1 Y3 G3\n\n4) zoltar: Homeworld Y1 B2 G3\n\n5) Subhan64: Build Y1 Subhan64\n\tzoltar: This is going to be a long, long game, isn't it? :)\n\n6) aSoso: Build B1 Asoso\n\tWkr: Yes. 7 hours of difference. aSoso & Wkr living in Spain.\n\n7) Wkr: Build G1 Wkr\n\n8) zoltar: Build G1 Zoltar\n\n9) Subhan64: Build Y1 Subhan64\n\n10) aSoso: Discover B1 Asoso G2 Ekonos\n\n11) Wkr: Trade G1 R1 Wkr\n\n12) zoltar: Trade G1 Y1 Zoltar\n\n13) Subhan64: Trade Y1 G1 Subhan64\n\n14) aSoso: Build B1 Asoso\n\n15) Wkr: Build G1 Wkr\n\n16) zoltar: Build G1 Zoltar\n\n17) Subhan64: Build G1 Subhan64\n\n18) aSoso: Trade B1 R1 Ekonos\n\n19) Wkr: Build G1 Wkr\n\n20) zoltar: Build G2 Zoltar\n\n21) Subhan64: Trade G1 R1 Subhan64\n\tSubhan64: trade g1 r1 Subhan64\n\n22) aSoso: Build R1 Ekonos\n\n23) Wkr: Discover G1 Wkr Y2 Caesaraugusta\n\n24) zoltar: Trade G2 R2 Zoltar\n\n25) Subhan64: Build Y1 Subhan64\n\n26) aSoso: Build B1 Asoso\n\n27) Wkr: Build G1 Caesaraugusta\n\n28) zoltar: Build G2 Zoltar\n\n29) Subhan64: Build G2 Subhan64\n\n30) aSoso: Trade B3 Y3 Asoso\n\n31) Wkr: Sacrifice G3 Wkr\nBuild G2 Wkr\nBuild G2 Caesaraugusta\nBuild G3 Wkr\n\n32) zoltar: Discover G2 Zoltar B3 Blueberry\n\n33) Subhan64: Discover Y3 Subhan64 R1 Perseiomicron8\n\n34) aSoso: Build Y2 Asoso\n\n35) Wkr: Trade G2 Y2 Wkr\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\nBuild Y2 Zoltar\n\n37) Subhan64: Sacrifice G2 Subhan64\nBuild R2 Subhan64\nBuild R2 Subhan64\n\n38) aSoso: Build R2 Ekonos\n\n39) Wkr: Discover G1 Caesaraugusta B3 Babylon\n\n40) zoltar: Sacrifice G2 Blueberry\nBuild R2 Zoltar\nBuild R3 Zoltar\n\n41) Subhan64: Move Y3 Perseiomicron8 Subhan64\n\n42) aSoso: Trade Y3 G3 Asoso\n\n43) Wkr: Sacrifice G3 Wkr\nBuild G2 Babylon\nBuild R1 Wkr\nBuild R3 Wkr\n\n44) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Zoltar Blueberry\nMove R3 Zoltar Blueberry\n\n45) Subhan64: Build G2 Subhan64\n\n46) aSoso: Build G3 Asoso\n\n47) Wkr: Move R1 Wkr Caesaraugusta\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Blueberry\nBuild Y2 Blueberry\n\n49) Subhan64: Pass\n\tSubhan64: build g2 subhan64\n\n50) aSoso: Trade G3 R3 Asoso\n\n51) Wkr: Build G3 Wkr\n\n52) zoltar: Discover Y1 Blueberry B1 Boysenberry\n\n53) Subhan64: Sacrifice Y3 Subhan64\nMove R1 Subhan64 Boysenberry\nMove R1 Boysenberry Blueberry\nMove R1 Blueberry Ekonos\nCatastrophe Ekonos Red\n\n54) aSoso: Discover B1 Asoso G2 Ekonos2\n\n55) Wkr: Sacrifice G2 Caesaraugusta\nBuild R1 Caesaraugusta\nBuild Y2 Wkr\n\n56) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild Y3 Blueberry\nBuild G3 Zoltar\n\n57) Subhan64: Discover Y1 Subhan64 B1 Romulus\n\n58) aSoso: Build B2 Ekonos2\n\n59) Wkr: Sacrifice Y2 Wkr\nMove G2 Babylon Zoltar\nMove G1 Babylon Zoltar\nCatastrophe Zoltar Green\n\n60) zoltar: Sacrifice Y2 Blueberry\nMove R3 Blueberry Ekonos2\nMove G2 Blueberry Caesaraugusta\n\n61) Subhan64: Build Y2 Subhan64\n\n62) aSoso: Trade B2 R2 Ekonos2\n\n63) Wkr: Sacrifice Y2 Wkr\nDiscover R1 Caesaraugusta Y3 Hive\nMove R1 Caesaraugusta Hive\n\tzoltar: I'm gonna need at least one blue ship in blueberry!\n\n64) zoltar: Sacrifice R2 Zoltar\nAttack R2E Ekonos2\nAttack G1S Caesaraugusta\n\n65) Subhan64: Build Y2 Subhan64\n\n66) aSoso: Build B2 Ekonos2\n\n67) Wkr: Trade R3 Y3 Wkr\n\tzoltar: Ouch! I'm in big trouble now...\n\n68) zoltar: Sacrifice G2 Caesaraugusta\nBuild Y2 Blueberry\nBuild Y3 Boysenberry\n\n69) aSoso: Build B2 Asoso\n\n70) Wkr: Move R1 Wkr Caesaraugusta\n\tWkr: Sorry.\n\n71) zoltar: Sacrifice R2 Ekonos2\nAttack B2E Ekonos2\nAttack R1S Caesaraugusta\n\tzoltar: I'm having problems: the program isn't accepting my move\n\tSubhan64: what is the move & the message? Perhaps the move is not valid?\r\n\n\tzoltar: s r2 zoltar\r\na r2 Ekonos2\r\na g1 CaesarAugusta\n\tzoltar: The message is that neither the r2 at Ekonos2 nor the g1 at CaesarAugusta exist.\n\tzoltar: maybe I'll just make a different move. :(\n\n72) aSoso: Build B2 Ekonos2\n\tzoltar: Ok I got some help in the help forum. To attack in a multi-player game, you must place the direction letter of the opponent after the ship:\r\ns r2 zoltar\r\na r2E Ekonos2\r\na g1S CaesarAugusta\r\n\r\nThis is my first multi-player game, so I didn't know that!\n\n73) Wkr: Trade G3 B3 Wkr\n\n74) zoltar: Sacrifice Y3 Boysenberry\nMove Y3 Blueberry Zoltar\nMove Y2 Blueberry Ekonos2\nDiscover B2 Ekonos2 G1 Lime\n\n75) aSoso: Build B3 Ekonos2\n\n76) Wkr: Build B3 Wkr\n\n77) zoltar: Move R3 Ekonos2 Hive\n\n78) aSoso: Trade B3 R3 Ekonos2\n\n79) Wkr: Build Y3 Wkr\n\n80) zoltar: Sacrifice Y2 Ekonos2\nMove B2 Lime Ekonos2\nMove B2 Ekonos2 Wkr\nCatastrophe Wkr B\n\n81) aSoso: Sacrifice Y2 Asoso\nMove R3 Ekonos2 Hive\nMove R3 Hive Zoltar\n\n82) Wkr: Discover Y3 Wkr B1 Kenny\n\n83) zoltar: Attack R3E Zoltar\n\n84) aSoso: Trade B2 Y2 Asoso\n\n85) Wkr: Trade Y3 G3 Kenny\n\n86) zoltar: Sacrifice G1 Caesaraugusta\nBuild Y2 Boysenberry\n\n\tzoltar: Well, I clicked to end the game, but it just kicked him out as well. I'll open up a new one, then, and Wkr and I could finish this one too, then.\n\nHomeworlds Online (SDG# 3983)\nStarted: 2006.8.9, Ended: 2006.8.10\nParticipants: zoltar (S), tesla (N)\nWinner: zoltar\n\n1) tesla: Homeworld R3 G2 Y3 *\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) tesla: Build Y1 Tesla\n\n4) zoltar: Build G1 Zoltar\n\n5) tesla: Build Y1 Tesla\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) tesla: Discover Y1 Tesla B1 Tales\n\n8) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n9) tesla: Trade Y1 G1 Tales\n\n10) zoltar: Build G1 Zoltar\n\n11) tesla: Trade G1 B1 Tales\n\n12) zoltar: Build G1 Zoltar\n\n13) tesla: Move Y1 Tesla Tales\n\n\nHomeworlds Online (SDG# 4013)\nStarted: 2006.8.11, Ended: 2006.9.1\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld Y3 B1 G3\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) Personman: Build G1 Personman\n\n4) zoltar: Build G1 Zoltar\n\n5) Personman: Discover G1 Personman Y2 Rasque\n\n6) zoltar: Trade G1 R1 Zoltar\n\n7) Personman: Build G1 Personman\n\n8) zoltar: Build R1 Zoltar\n\n9) Personman: Trade G1 B1 Personman\n\n10) zoltar: Trade R1 Y1 Zoltar\n\n11) Personman: Build G1 Personman\n\n12) zoltar: Build Y1 Zoltar\n\n13) Personman: Build B1 Personman\n\n14) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n15) Personman: Move B1 Personman Rasque\n\n16) zoltar: Build Y2 Greenbelt\n\n17) Personman: Build B2 Personman\n\n18) zoltar: Build Y2 Greenbelt\n\n19) Personman: Trade B2 R2 Personman\n\n20) zoltar: Move Y2 Greenbelt Rasque\n\n21) Personman: Discover B1 Rasque Y3 Celric\n\n22) zoltar: Build Y3 Zoltar\n\n23) Personman: Build B2 Personman\n\n24) zoltar: Trade Y3 B3 Zoltar\n\n25) Personman: Move G1 Rasque Celric\n\n26) zoltar: Move B3 Zoltar Greenbelt\n\n27) Personman: Build B2 Celric\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild B3 Greenbelt\nBuild B3 Greenbelt\n\n29) Personman: Discover B2 Personman G2 Pazodrite\n\n30) zoltar: Move B3 Greenbelt Pazodrite\n\tzoltar: Blue Fleet: your mission -- proceed to Personman homeworld for Supernova Party! Whewww Whoooo!\n\n31) Personman: Move B1 Personman Rasque\n\tzoltar: An excellent move, removing the threat! \n\n32) zoltar: Sacrifice R1 Zoltar\nAttack B2 Pazodrite\n\tzoltar: Zee Zoltarian fleet wheel confront zee rebel blue sheep!\r\n\n\n33) Personman: Move B1 Rasque Celric\n\tzoltar: An unexpected aggressive move, PersonMan!\r\n\n\n34) zoltar: Trade B3 R3 Pazodrite\n\n35) Personman: Move B1 Celric Zoltar\n\n36) zoltar: Sacrifice Y1 Zoltar\nMove B2 Pazodrite Celric\n\n37) Personman: Sacrifice G1 Celric\nBuild B3 Zoltar\n\tzoltar: Red Alert! Red Alert! \n\tzoltar: Mistake on Zoltar'z part! Had to move my b2 into Celric and blow up blue fleet. Now must think of something clever, or homeworld star go boom-boom!\n\n38) zoltar: Sacrifice R3 Pazodrite\nAttack B3 Zoltar\nAttack B2 Celric\nAttack B1 Celric\n\n39) Personman: Move B1 Zoltar Celric\nCatastrophe Celric B\n\n40) zoltar: Trade B3 R3 Greenbelt\n\tPersonman: Woah. That was scary. I made my move based on the board before you undid yours, so when I made it, my b3 appeared to have eaten your y1... I think I might do the same thing again but I wanted to go back and study the new board to make sure.\n\tzoltar: Better late than never.\n\n41) Personman: Discover G1 Personman B2 Shroumb\n\n42) zoltar: Build B1 Greenbelt\n\tPersonman: Oops. I screwed up. I thought there was still a blue piece left for me to make. I needed to move a blue piece in instead of making the 3, I think.\n\n43) Personman: Build G1 Shroumb\n\n44) zoltar: Build Y1 Greenbelt\n\tzoltar: Celric is Mine! Awl Mine!!! Whew Who!\n\tzoltar: Well it was mine for a moment...\n\n45) Personman: Trade G1 R1 Shroumb\n\n46) zoltar: Trade B3 G3 Zoltar\n\tzoltar: Zee Zoltarian Empire hath survived zee brutal assault uv zee blue alienz and ease stronger zan ever! Yay!\n\n47) Personman: Build G1 Shroumb\n\n48) zoltar: Build Y3 Zoltar\n\n49) Personman: Build G1 Personman\n\n50) zoltar: Build G2 Zoltar\n\n51) Personman: Build G2 Shroumb\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild R1 Greenbelt\n\n53) Personman: Build R1 Personman\n\n54) zoltar: Move R1 Greenbelt Rasque\n\tzoltar: Zee Yellow Fleet ease complete! Now onto Faze Too uv my sea knee star plan!\n\tzoltar: (Looks like your mistake with the blue pieces was very costly, now giving me a lock on Yellow tech.)\n\n55) Personman: Discover R2 Personman B2 Lova\n\n56) zoltar: Move B3 Greenbelt Rasque\n\n57) Personman: Build R2 Personman\n\n58) zoltar: Sacrifice G3 Zoltar\nBuild R2 Greenbelt\nBuild R3 Greenbelt\nBuild R3 Rasque\n\n59) Personman: Move R2 Personman Rasque\n\n60) zoltar: Sacrifice R1 Rasque\nAttack R2 Rasque\n\n61) Personman: Build R1 Personman\n\n62) zoltar: Build G3 Zoltar\n\n63) Personman: Move R1 Personman Rasque\n\n64) zoltar: Sacrifice R2 Rasque\nAttack R1 Rasque\nPass\n\tzoltar: Zee Red and Yellow Fleetz are now complete. All sheepz commence final assault of Personman Homeworld! Engage!\n\n65) Personman: Build R2 Personman\n\n66) zoltar: Sacrifice G3 Zoltar\nBuild B1 Rasque\nBuild B3 Rasque\nBuild B3 Greenbelt\n\tzoltar: Warning! Warning! Danger Will Robinson! Enemy suicide jihadist has breached the perimeter and is threatening zee Red Fleet! Evasive Action!\n\n67) Personman: Build G3 Personman\n\tzoltar: Zee threat haz bean newtralized -- proceed with zee invasion!\n\tzoltar: Rezizztanz ease few tile: ewe wheel be assimilated!\n\n68) zoltar: Sacrifice Y3 Zoltar\nMove G2 Zoltar Greenbelt\nMove G2 Greenbelt Rasque\nMove G2 Rasque Personman\nCatastrophe Personman G\n\n69) Personman: Trade R2 G2 Personman\n\n70) zoltar: Sacrifice Y2 Greenbelt\nMove B3 Rasque Personman\nMove R3 Rasque Personman\n\n71) Personman: Sacrifice G2 Shroumb\nBuild G1 Personman\nBuild G2 Personman\n\tzoltar: Awl sheepz rezoom attack on Personman Homeworld! Engage!\n\n72) zoltar: Trade B3 G3 Personman\nCatastrophe Personman G\n\n73) Personman: Trade R1 G1 Personman\n\tzoltar: Blue squadron reporting in for final assault on Personman homeworld! Awl sheepz, engage!\n\n74) zoltar: Attack G1 Personman\n\n\tzoltar: Thanx for zee game, Personman! Let's play again sometime. I'm expanding out to new games (trying Pikeman and Zendo now, and want to try others, such as Martian Chess), so if you have any favorites feel free to challenge me.\n\nHomeworlds Online (SDG# 3892)\nStarted: 2006.8.12, Ended: 2006.8.19\nParticipants: Laurie_Menke (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R2 B3 G3\n\n2) Laurie_Menke: Homeworld Y1 B3 G3\n\tzoltar: Greetingz, Earthling! Nice to see you again. I usually take the two smaller stars and start with yellow and blue, but now that I've played a lot, I'll try a new opening, as I notice that good players often start with a red star for defence. Btw, how is your sick friend doing?\n\tLaurie_Menke: Greetings, zoltar. This Earthling wishes you all that is good and for peace between us. ;o)\r\n\r\nMy friend is doing much better...thanks for asking! This was her third cancer surgery and her odds were pretty grim, but it looks like she beat the odds again. Woo-hoo! She'll have to do another round of chemo, but nothing had spread, so she should fully recover. :o)\n\n3) zoltar: Build G1 Zoltar\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Laurie_Menke: Discover G1 Laurie_menke G2 Forest\n\tzoltar: Zoltar is glad to hear that your friend is recovering.\n\tLaurie_Menke: Thanks. :o)\n\n7) zoltar: Build Y1 Zoltar\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\tzoltar: A green ship to a green world? A strange, redundant move, but perhaps the Earthling is up to something...\n\tLaurie_Menke: Perhaps.... ;o)\n\n9) zoltar: Build Y2 Zoltar\n\n10) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G1 Forest\nBuild G2 Laurie_menke\nBuild G2 Laurie_menke\n\n11) zoltar: Build G3 Zoltar\n\n12) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n13) zoltar: Discover G3 Zoltar B1 Blueberry\n\n14) Laurie_Menke: Sacrifice Y2 Laurie_menke\nDiscover G1 Forest B1 Ocean\nMove G1 Forest Ocean\n\n15) zoltar: Sacrifice Y2 Zoltar\nDiscover G3 Blueberry Y2 Wormhole\nMove G3 Wormhole Laurie_menke\n\n16) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Ocean\n\tzoltar: It looks like the strange moves turned out to be fatal!\n\tzoltar: Since you sacrificed your defending G3 ship, rendering your homeworld defenseless, there seems to be no reason not to immediately invade with my big ship. Resistance is futile!\n\tLaurie_Menke: Yeah, my plan was definitely flawed. :o( Oh, well...live and learn. But I don't think you have any way to attack me yet, do you?\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild G2 Laurie_menke\nBuild G3 Laurie_menke\nBuild G3 Laurie_menke\nCatastrophe Laurie_menke G\n\tzoltar: Yes. If you would have traded one of your green ships, I would trade my g3 in the Zoltar homeworld for an R3, then sac it next turn and capture all your pieces. However, in this case, I only needed to build a green ship in your homeworld to create a catastraphe, which leaves your homeworld empty, ending the game.\n\tLaurie_Menke: Alas...you're right again. :o( I seem to be getting worse at this game the more I play instead of better. :o( Oh, well...it's still a very enjoyable game. Thanks for the fun, and congrats!\n\n\nHomeworlds Online (SDG# 4011)\nStarted: 2006.8.13, Ended: 2006.9.18\nParticipants: zoltar (S), mtwomey (N)\nWinner: zoltar\n\n1) mtwomey: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) mtwomey: Build G1 Mtwomey\n\n4) zoltar: Build G1 Zoltar\n\n5) mtwomey: Trade G1 Y1 Mtwomey\n\n6) zoltar: Build G1 Zoltar\n\n7) mtwomey: Build G1 Mtwomey\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) mtwomey: Discover G1 Mtwomey B1 Beakstar\n\n10) zoltar: Build Y2 Zoltar\n\n11) mtwomey: Build Y2 Mtwomey\n\n12) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n13) mtwomey: Build G1 Beakstar\n\n14) zoltar: Trade G1 R1 Zoltar\n\n15) mtwomey: Trade G1 R1 Beakstar\n\n16) zoltar: Trade Y1 B1 Zoltar\n\n17) mtwomey: Move Y2 Mtwomey Beakstar\n\n18) zoltar: Build B1 Zoltar\n\n19) mtwomey: Trade Y2 B2 Beakstar\n\n20) zoltar: Trade B1 G1 Zoltar\n\n21) mtwomey: Build Y1 Mtwomey\n\n22) zoltar: Build Y2 Greenbelt\n\n23) mtwomey: Build Y2 Mtwomey\n\n24) zoltar: Discover Y2 Greenbelt G2 Greenwich\n\n25) mtwomey: Trade Y1 B1 Mtwomey\n\n26) zoltar: Move B1 Zoltar Greenbelt\n\n27) mtwomey: Trade B1 G1 Mtwomey\n\n28) zoltar: Trade G1 B1 Zoltar\n\n29) mtwomey: Sacrifice Y1 Mtwomey\nDiscover B2 Beakstar G2 Jellybeast\n\n30) zoltar: Build B3 Greenbelt\n\n31) mtwomey: Build B3 Jellybeast\n\n32) zoltar: Trade B3 R3 Greenbelt\n\n33) mtwomey: Build B3 Jellybeast\n\tmtwomey: I'll have to pick this up tomorrow - have to get up for work :-)\n\n34) zoltar: Move B1 Greenbelt Jellybeast\nCatastrophe Jellybeast B\n\n35) mtwomey: Trade R1 Y1 Beakstar\n\n36) zoltar: Move R3 Greenbelt Beakstar\n\tzoltar: No choice there but to send a jihadist to disrupt zee blue fleet!\n\n37) mtwomey: Trade G3 R3 Mtwomey\n\tmtwomey: Yes - well done. I should have seen that :-)\n\n38) zoltar: Attack Y1 Beakstar\n\tzoltar: Red Alert! The puny Earthling vessels are no match for Zoltar's Big Red Battle Cruiser! All batteries lock onto alien vessels and fire at will! Engage!\n\n39) mtwomey: Sacrifice G1 Beakstar\nBuild Y1 Mtwomey\n\n40) zoltar: Build G1 Zoltar\n\tzoltar: Rezizztanzz ease few tile: ewe wheel bee assimilated!\n\tzoltar: Yellow alien vezzel haz bean subdued: Awl batteries open fire on puny green vezzel. Engage!\n\n41) mtwomey: Discover Y1 Mtwomey B1 Kalmar\n\tzoltar: zee alien vezzel haz ezcaped...\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Beakstar\nBuild Y3 Greenwich\nBuild Y3 Greenbelt\n\n43) mtwomey: Discover Y2 Mtwomey G1 Canfield\n\n44) zoltar: Build B2 Zoltar\n\tzoltar: Zoltar'z mighty Yellow Fleet rules zee Galaxy!!!\n\n45) mtwomey: Build G2 Mtwomey\n\n46) zoltar: Move B2 Zoltar Greenbelt\n\n47) mtwomey: Move Y1 Kalmar Mtwomey\n\n48) zoltar: Build B1 Greenbelt\n\n\nHomeworlds Online (SDG# 4043)\nVariants: "Unrated"\nStarted: 2006.8.15, Ended: 2006.9.25\nParticipants: Keith (S), gluco (N)\nWinner: Keith\n\n1) gluco: Homeworld B1 Y2 G3\n\n2) Keith: Homeworld G3 B3 Y3 *\n\n3) gluco: Build G1 Gluco\n\n4) Keith: Build Y1 Keith\n\n5) gluco: Trade G1 R1 Gluco\n\n6) Keith: Trade Y1 R1 Keith\n\n7) gluco: Build G1 Gluco\n\n8) Keith: Build Y1 Keith\n\n9) gluco: Trade G1 Y1 Gluco\n\n10) Keith: Trade Y1 G1 Keith\n\n11) gluco: Build G1 Gluco\n\n12) Keith: Build Y1 Keith\n\n13) gluco: Build R1 Gluco\n\n14) Keith: Build R2 Keith\n\n15) gluco: Discover Y1 Gluco G3 Erty\n\n16) Keith: Discover R2 Keith Y2 Ventura\n\n17) gluco: Trade R1 Y1 Gluco\n\n18) Keith: Trade Y1 B1 Keith\n\tKeith: Hmmm... I must be losing it. I don't remember naming a system Ventura\n\n19) gluco: Build Y1 Erty\n\tgluco: Seemed like a good move at the time...\n\n20) Keith: Move R2 Ventura Erty\n\n21) gluco: Discover Y1 Erty Y2 Iop\n\n22) Keith: Sacrifice R1 Keith\nAttack Y1 Erty\n\n23) gluco: Trade G3 R3 Gluco\n\n24) Keith: Build Y2 Erty\n\tgluco: Sorry for the delay. Next week or so might be awkward.\n\tKeith: Thank you for letting me know. Make moves if you can and do not worry if you can't.\n\n25) gluco: Build G1 Gluco\n\tgluco: Yeah, I will be out of email touch until Saturday. Well see if I get timed-out by superduper. Looks like you're winning anyway!\n\n26) Keith: Build Y3 Keith\n\tKeith: Superduper will give notice if you time out but nothing will happen to terminate the game unless I take affirmative action to do so and I won't.\n\n27) gluco: Move R3 Gluco Erty\n\tgluco: OK, Im back. Thanks for your patience.\n\n28) Keith: Sacrifice Y3 Keith\nMove Y1 Erty Gluco\nMove Y2 Erty Gluco\nMove R2 Erty Gluco\nCatastrophe Gluco Yellow\n\tKeith: Your welcome. Moving your R3 out. Risky. Since I have an extra 3 pointer lets try this.\n\n29) gluco: Sacrifice Y1 Iop\nMove R3 Erty Gluco\n\tgluco: Nice. I was trying to accomplish the same thing.\n\n30) Keith: Sacrifice G1 Keith\nBuild R1 Gluco\nCatastrophe Gluco Red\n\n31) gluco: Trade G1 Y1 Gluco\n\tgluco: Kewl. You made a catastrphe with both our ships\n\n32) Keith: Move Y3 Keith Gluco\n\tKeith: Better than using just my ships. Better for me anyway.\n\n33) gluco: Build G1 Gluco\n\n34) Keith: Trade Y3 R3 Gluco\n\n35) gluco: Discover Y1 Gluco G2 Iopy\n\n36) Keith: Attack G1 Gluco\n\tgluco: Yikes!\n\n37) gluco: Move Y1 Iopy Keith\n\tKeith: Yikes indeed. When you other home system went boom we ended up one move apart. If you had had a red you could have threatened my little b2 or to make a red catastrophe in your home system. That is why I had to catastrophe red first.\n\n38) Keith: Attack G1 Gluco\n\n\tgluco: Congrats! Not much left to do. I don't believe I'm allowed to trade my y1 for a red in your homeworld.\n\tKeith: Actually you can since the world there has blue....\n\tKeith: You just don't have enough time.\n\tKeith: Thank you for the game. \n\tgluco: Thank you! Will be travelling again, but returning in October. Maybe we can do another game then. \n\tKeith: That would be welcome.\n\nHomeworlds Online (SDG# 4053)\nStarted: 2006.8.18, Ended: 2006.8.28\nParticipants: Keith (S), antihero (N)\nWinner: Keith\n\n1) antihero: Homeworld G3 B2 Y3\n\tKeith: Hello antihero. I have been peeking in on your Cannon game against Dralius. Have you played Homeworlds before?\n\n2) Keith: Homeworld B1 Y2 G3\n\n3) antihero: Build Y1 Antihero\n\n4) Keith: Build G1 Keith\n\tantihero: I have played a few times in real life. I am still learning for sure.\n\tantihero: You're the cannon expert, right?\n\tKeith: I am probably considered a Cannon expert. Though part of my secret is simply looking farther ahead than my opponent. Dralius is a good teacher. \n\n5) antihero: Trade Y1 G1 Antihero\n\n6) Keith: Trade G1 Y1 Keith\n\n7) antihero: Discover G1 Antihero Y1 Next_one_over\n\n8) Keith: Discover Y1 Keith G3 Midworld\n\n9) antihero: Build G1 Next_one_over\n\n10) Keith: Build G1 Keith\n\n11) antihero: Build G2 Next_one_over\n\n12) Keith: Move G1 Keith Midworld\n\n13) antihero: Move G2 Next_one_over Antihero\n\n14) Keith: Build G2 Keith\n\n15) antihero: Build G2 Antihero\n\n16) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild Y1 Midworld\nBuild Y2 Midworld\n\n17) antihero: Trade G2 R2 Antihero\n\n18) Keith: Move Y1 Midworld Next_one_over\n\tantihero: whoops, sneaky y2 hiding behind the system label. :)\n\n19) antihero: Discover G1 Next_one_over B3 Big_star\n\tantihero: alright to bed with me. see you tomorrow.\n\tKeith: I wish this were an unrated game so I could more easily point things out without risking my position. You can learn in an rated game but usually it is the hard way. I created that y2 so I could move a g1 into your homeworld and create a green catastrophe. I am okay with your taking your move back.\n\tantihero: I think I already did before you wrote that? I think my new move is better? And I don't get any more undos. So let's see what happens.\n\tKeith: You took back your move while I was commenting. So it works out well. That is the better move.\n\n20) Keith: Trade G2 R2 Keith\n\n21) antihero: Build G2 Big_star\n\n22) Keith: Build G2 Keith\n\tantihero: damn, you've played homeworlds before and saw through my feeble ploy. :)\n\n23) antihero: Sacrifice Y3 Antihero\nMove G2 Big_star Keith\nMove G1 Big_star Keith\nPass\nCatastrophe Keith Green\n\tKeith: Well I had been pushing it by breking two rules of thumb. 1) if your opponent has a red you should too. 2) Don't have just one ship type at your homeoworld.\r\n\r\nThat and I could not get my own ploys into action before you got yours.\n\n24) Keith: Move G1 Midworld Keith\n\tantihero: hmmm tough decision, sort of.\n\n25) antihero: Trade G2 Y2 Antihero\n\tKeith: I thought so too. An expensive move for both of us.\n\tantihero: aye\n\n26) Keith: Build Y3 Midworld\n\n27) antihero: Build Y3 Antihero\n\tantihero: alright to bed with me. see you later.\n\tantihero: don't do anything too crazy while, I'm gone, ya hear? :)\n\tKeith: Tomorrow then, eventually anyway. I have a 12 hour work shift to get through first.\n\tantihero: oh rough, what do you do?\n\tKeith: Assistant manager at a restaurant. Which in reality means 11 hours on my feet as a fry cook in high heat and humidity with no breaks or meals and an hour of counting money and paperwork at the end of the day.\n\n28) Keith: Sacrifice Y3 Midworld\nMove Y1 Next_one_over Antihero\nMove Y1 Midworld Next_one_over\nMove Y1 Next_one_over Antihero\nCatastrophe Antihero Yellow\n\n29) antihero: Build R1 Antihero\n\n30) Keith: Build R1 Keith\n\n31) antihero: Trade R1 Y1 Antihero\n\tantihero: that doesn't sound like too much fun, man. Have a good day anyways, though!\n\tKeith: It is not any fun. Too much time away from my family. On the positive side I do make as much I did when I was an attorney.\n\n32) Keith: Trade R1 B1 Keith\n\n33) antihero: Build R1 Antihero\n\n34) Keith: Build R1 Keith\n\tantihero: whoops, that _is_ actually what I want to do.\n\n35) antihero: Move R1 Antihero Next_one_over\n\tKeith: Okay, I am heading out to work. Back in about 12.5 hours.\n\n36) Keith: Move Y2 Midworld Next_one_over\n\n37) antihero: Discover R1 Next_one_over Y3 Sun\n\n38) Keith: Sacrifice R1 Keith\nAttack G1 Next_one_over\n\n39) antihero: Build R1 Antihero\n\n40) Keith: Build B1 Keith\n\n41) antihero: Trade R1 G1 Antihero\n\n42) Keith: Build G2 Next_one_over\n\n43) antihero: Move G1 Antihero Next_one_over\n\n44) Keith: Build G2 Keith\n\tantihero: I'm learning that I'm not great at homeworlds. I think I see moves easier in RL, too, but I have a lot to learn.\n\tKeith: I find that I play any game much better when I can think ahead by moving pieces around the board.\n\n45) antihero: Build G2 Next_one_over\n\n46) Keith: Build G3 Keith\nCatastrophe Next_one_over Green\n\n47) antihero: Build R1 Antihero\n\n48) Keith: Move G3 Keith Sun\n\n49) antihero: Build Y1 Antihero\n\tantihero: wow that was about the dumbest thing i could have done...\n\n50) Keith: Sacrifice Y2 Next_one_over\nDiscover G3 Sun Y1 Temp\nMove G3 Temp Antihero\n\tKeith: I did expect, given the way we have been doing away with both side's ships that you would have triggered the catastrophe first.\n\tKeith: I felt kind of bad taking advantage of it. In an unrated game I would have pointed it out so you could take back your move.\n\n51) antihero: Trade Y1 G1 Antihero\n\tantihero: well, let's play some unrated after this so I can get better.\n\tantihero: if you are willing, of course\n\n52) Keith: Sacrifice R2 Keith\nAttack R2 Antihero\nAttack R1 Antihero\n\tKeith: Very willing. I would rather focus on a mutually enjoyable game rather than rating points.\n\tKeith: I am a bit weak in the end game as Zoltar and Eugman have discovered.\n\n53) antihero: Build G1 Antihero\nCatastrophe Antihero Green\n\tantihero: twice in a row now I have beaten zoltar out of the gate and then had him come back and made some stupid mistakes and down I go.\n\tantihero: i can drag this out :)\n\n54) Keith: Attack Y1 Antihero\n\tKeith: Go ahead and drag. \r\n\r\nI took out one of Zoltar's home stars, had more ships overall, had more three pointers, and after a dozen turns of trying to wear him down I left only one ship color in my homeworld as I moved in for the kill and boom... lost to Zoltar when I should have won.\n\n\tKeith: A very unusual game. Lets try another one.\n\nHomeworlds Online (SDG# 4061)\nStarted: 2006.8.18, Ended: 2006.10.2\nParticipants: antihero (S), JIMBO (N)\nWinner: antihero\n\n1) JIMBO: Homeworld B2 G3 Y3\n\n2) antihero: Homeworld G1 B3 Y3\n\n\nHomeworlds Online (SDG# 4065)\nVariants: "Unrated"\nStarted: 2006.8.19, Ended: 2006.8.21\nParticipants: eugman (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 G2 B3\n\n2) eugman: Homeworld B2 G1 Y3\n\n3) zoltar: Build B1 Zoltar\n\teugman: I've never played before so feel free to point out any blantantly bad moves.\n\tzoltar: Ok. Your start was excellent: the two small stars is considered the strongest opening move. I usually start with that one, but now that I've been playing for a couple of months I'm experimenting with new openings, such as this one with a red star and a blue ship, which I've never played before.\n\n4) eugman: Build Y1 Eugman\n\teugman: Experiment away. It might work as a bit of a handicap. The hints I've been able to find so far think starting with red is bad since you don't use it for a while.\r\n\r\nThen again it could provide for a constant defense so what do I know.\r\n\n\n5) zoltar: Trade B1 Y1 Zoltar\n\n6) eugman: Trade Y1 B1 Eugman\n\tzoltar: Yes, usually gby should be your starting colors, and red gives the other player an opening advantage, but it is strong for defense later in the game.\n\n7) zoltar: Build B1 Zoltar\n\n8) eugman: Build Y1 Eugman\n\n9) zoltar: Trade B1 G1 Zoltar\n\n10) eugman: Build B1 Eugman\n\n11) zoltar: Build Y1 Zoltar\n\n12) eugman: Build Y2 Eugman\n\n13) zoltar: Discover Y1 Zoltar G1 Greenbelt\n\n14) eugman: Trade Y1 R1 Eugman\n\tzoltar: Remember not to build a 4th ship of any one color in the same system or they will blow up.\n\n15) zoltar: Build G2 Zoltar\n\n16) eugman: Trade Y2 G2 Eugman\n\n17) zoltar: Trade G1 R1 Zoltar\n\n18) eugman: Discover B1 Eugman G3 Flapjack\n\teugman: Hmm, building anything new would give you an advantage, correct?\n\n19) zoltar: Discover G2 Zoltar Y1 Yellowstone\n\tzoltar: Yes and No. For example, if build red, so do I but you can build red again, and I have to move a red ship out to build another one, so it's even. You can always move a piece to a new system though, in a situation like this, as that is always a safe option.\n\n20) eugman: Build Y2 Eugman\n\n21) zoltar: Build Y2 Greenbelt\n\n22) eugman: Move Y2 Eugman Flapjack\n\n23) zoltar: Discover Y1 Greenbelt G3 Greendale\n\n24) eugman: Trade Y2 R2 Flapjack\n\n25) zoltar: Build Y2 Zoltar\n\teugman: The planet of flapjack shall crush your obviously named planets!\n\n26) eugman: Build Y2 Eugman\n\n27) zoltar:\nBuild Y3 Greenbelt\n\n28) eugman: Move Y2 Eugman Flapjack\n\teugman: I really want to make that last yellow but I think you could force a catarophe if you wanted. Right?\n\teugman: Sorry for spelling errors. Happens if I type too fast.\n\tzoltar: Yes, I'd move my y1 into your homeworld and BOOM!\n\n29) zoltar: Build Y3 Greendale\n\n30) eugman: Build B1 Flapjack\n\n31) zoltar: Build B2 Zoltar\n\tzoltar: You may want to undo that -- I'll wait a few minutes, as I can sacrifice my R1 in my homeworld and take your R2 in Yellowstone, just as if my G2 had been an R2. You lose the piece for nothing.\n\teugman: Hmm you are right. I sometimes forget about some of the more indirect stuff you can do.\n\n32) eugman: Build R1 Eugman\n\tzoltar: Btw, that's why you always need to get a red ship once your opponent has one: had I no r1 to sacrifice, your R2 could chase me around and capture pieces at will.\n\n33) zoltar: Move R1 Zoltar Yellowstone\n\n34) eugman: Move B1 Flapjack Greenbelt\n\n35) zoltar: Build R2 Yellowstone\n\n36) eugman: Move B1 Flapjack Greenbelt\n\n37) zoltar: Sacrifice R2 Yellowstone\nAttack B1 Greenbelt\nAttack B1 Greenbelt\n\tzoltar: Of course, you can't capture a bigger ship than your own, only one of equal or smaller size, even with a sacrifice.\n\n38) eugman: Build R2 Flapjack\n\tzoltar: I don't know if your blue move will work, but it's definitely the type of move to look for; if I capture it, then you could make your red move.\n\teugman: No but I can do something else. Then again you are too smart to fall for such a simple trap.\n\tzoltar: This second blue move looks more dubious, but it does make threats...\n\n39) zoltar: Trade Y2 R2 Greenbelt\n\teugman: Well unfortunately I've got some stuff to take care of so my losing will have to wait till monday.\n\tzoltar: I'd expected you to grow a b2 in flapjack instead, and then if I captured the b1 move the other b1 in.\n\tzoltar: Ok see you then\n\n40) eugman: Move B1 Eugman Flapjack\n\n41) zoltar: Move B1 Greenbelt Greendale\n\n42) eugman: Move R1 Eugman Greendale\n\teugman: Was that an accident or did you realize some grave error you failed to notice?\n\tzoltar: It was an accident: I had decided to trade the y2 for b2 before, then when I looked at it now I thought about moving a blue ship out, and as soon as I did, I remembered my original plan -- no grave error or anything like that.\n\teugman: Hmmm should we contine? It's very clear that I'm trapped. I can't really ault any of your areas since my only three has to stay back and guard. I could make a new system but with the limited colors in the new system I'd still be in a very weak position. Do you want this to be carried out to it's end?\n\teugman: Hmmm Looks like I'm done for tonight. Basically I'm asking if there is much left for me to learn by finishing a doomed endgame.\n\tzoltar: Up to you. I have the advantage, but I haven't won yet. You may want to play it out. Whenever you think there is no hope, you can resign and we can start another if you'd like.\n\tKeith: Hello eugman and zoltar,\r\n\r\nEugman - I was going to take up your learning request if a day went by without someone else taking it up. Zoltar has quickly risen to become one of the strongest Homeworlds players. Given his material advantage there is probably not much left of this game as a competition. As a learning exercise the game is not over. Though I am not going to point out my ideas unless it is okay with Zoltar. --Keith\n\tzoltar: That's okay with me, and yes, I would play on as an exercise.\n\teugman: Ok, I'll keep playing then. I'll figure out my next move in the morning.\n\n43) zoltar: Sacrifice G2 Yellowstone\nBuild R3 Yellowstone\nBuild R3 Greenbelt\n\teugman: or I could do that. I'll see how that works out.\n\n44) eugman: Sacrifice R2 Flapjack\nAttack Y1N Greendale\nAttack B1N Greendale\n\tKeith: I think eugman's assessment is right that with only one 3-pointer there is not much opportunity for offense. I believe there is a way for eugman to secure an r3 in two moves and possibly two r3s in four moves. Assuming Zoltar isn't able to intiate a game ending attack in the next move or so.\r\n\r\nWhat happens if eugman moves an r2 from flapjack to greenbelt? It seems to me that zoltar must attack the r2 with his r2 in greenbelt to avoid having his r2 attacked and converted. Then eugman can build an r3 in flapjack. Zoltar can create a red catastrophie in flapjack by sacrificing the y2 in zoltar and moving the two r2's from greenbelt to flapjack. Eugman loses two ships, Zoltar loses three and is down to one red ship.\r\n\r\nAlternatively if eugman moves an r1 from eugman to greendale then zoltar must sacrifice a red ship to attack it or face attacks on the b1 or y1 in greendale. Whether Zoltar attacks the r1 in greendale or not eugman can now build an r3 in eugman.\r\n\r\nCombined these two sequences might leave Zoltar with no red ships. I might be wrong. I am not as strong a player as Zoltar.\r\n\n\tzoltar: Actually, if eugman moves an R2 to greenbelt, I would simply sacrifice my own R2 in greenbelt and capture the R2 and pass, rendering the situation the same as now, except for one of eugman's R2's being in the stash instead of in flapjack.\n\tKeith: One thing eugman should keep in mind is that zoltar's red star in his home system can only attack one ship per turn. If eugman can move in enough ships in one turn into zoltars homeworld so that one survives then that ship can grow more of its kind and create a catastrophe in Zoltar's homeworld. The best color to do this with is red, the one color area eugman as an advantage in. For example if eugman moves that r2 from flapjack to green belt and Zoltar does not attack it then eugman will attack and get two r2s in greenbelt. Sacrifice a y2 and move both r2s to zoltar's home system. The red star can only convert one r2, the other grows an r3 and boom, red catastrophe.\r\n\r\nSorry to be so wordy. \n\n45) zoltar: Sacrifice R2 Greenbelt\nAttack R1 Greendale\nAttack B1 Greendale\n\n46) eugman: Sacrifice B1 Flapjack\nTrade Y1 G1 Greendale\n\teugman: Greendale Shall crumble and fall!\n\n47) zoltar: Discover Y3 Greendale B1 Greenhills\n\teugman: Oh wait, comments. I should have read those.\n\teugman: Oh and wordy isn't too much of a problem. As long as you are clear and remeber to avoid the giant paragraph of doom.\r\n\n\teugman: Yes, please make a large and entirely ignore my ship in your system.\n\n48) eugman: Build Y1 Flapjack\n\tzoltar: Not a bad move, btw -- made me think. Ok, I sacrificed my only green piece (not something I like to do) to get maximum firepower, so you can only target one of my three bases at one time. Your puny ship will be dealt with later. [Insert Evil Overlord Laugh here]\n\teugman: Yes I thought it was rather clever. You either have to ignore my tiny ship in your system or basically do the equivalent of moving one of your small reds over there and make it harder to get three sized reds.\r\n\r\nNow I just need to decide if I should capture something or cower in fear.\n\n49) zoltar: Trade B3 G3 Zoltar\n\n50) eugman: Build G2 Greendale\n\teugman: I think that was a better move since you can't rebuild that r2 right now without risking a catastrophe and you can't just sace a red to get total control of greendale.\r\n\r\nLet me know if I make some error in my thinking.\n\teugman: I mean you can't sacrifice a medium at least.\n\tzoltar: No, it was reasonable. The other choice was to sac your y2 and send your r1 and one of your r2's into either greenbelt or yellowstone and destroy my reds there. That's why I sacked and built an R3 in each one, as either sac and you are vulnerable with me still having an R3 left. Now I probably have to sac an R2 or something to deal with this latest incursion.\n\n51) zoltar: Build B2 Greendale\n\teugman: I'm really not sure if what I'm about to do is a good idea but it's worth a shot. Please let me know if it has any merit.\n\teugman: Oh wait, nvm I don't have a red in greendale.\n\n52) eugman: Sacrifice G2 Greendale\nBuild Y2 Eugman\nBuild R2 Flapjack\n\tzoltar: Yes, I sacked my R2 to take your R1 in greendale. I sacked the R2 rather than the R1 in yellowstone because I figured it would be useful to have the blue, and I could get both in one turn. Of course, you can build reds again, but now I can also build a red in greendale.\n\tzoltar: Now that is downright sneaky, trying to blow up the nice town of greendale (and I haven't even built greenhills yet)! Ok, how can I save my green star -- I'll have to think about this.\n\n53) zoltar: Attack G1 Greendale\n\tzoltar: \n\tzoltar: Nope, that won't work either. You've made a good move.\n\teugman: How unusual.\n\n54) eugman: Build R2 Eugman\n\tzoltar: Ok, we're heading for the hills.\n\teugman: Hmm, you took that small blue I wanted. I'm going to have to think about this a little bit. Also I see no green on your not-obviously-named new colony.\n\n55) zoltar: Sacrifice G3 Zoltar\nBuild B3 Zoltar\nBuild B3 Greenbelt\nBuild B3 Greenbelt\n\tzoltar: Well, it was going to be green, but I figured it was a better move to take that blue you wanted; and now I have the three "garden city" towns built by FDR in the 30's (I live in Greenbelt). Google all three of them together to read the cool story.\n\n56) eugman: Sacrifice Y2 Flapjack\nMove R2 Flapjack Greenhills\nMove R2 Flapjack Greenhills\n\teugman: Well that ruins my plan. I thought you were going to change the yellow to green. Hmmm,\n\n57) zoltar: Build Y2 Greenbelt\n\teugman: I thought greendale was connected to your home and I could force you to sacrifice your three. Now I need to ponder.\n\teugman: Heck why not.\n\n58) eugman: Move G2 Eugman Flapjack\n\n59) zoltar: Move B3 Greenbelt Flapjack\n\tzoltar: oops, mistyped that\n\n60) eugman: Move G2 Flapjack Greenhills\n\n61) zoltar: Sacrifice R3 Yellowstone\nAttack R2 Greenhills\nAttack R2 Greenhills\nAttack G2 Greenhills\n\teugman: Run away!!!!!\n\tKeith: Wow. The game did go on... and on. I am not sure if that had anything to do with my ideas. Eugman, do you feel like your learning anything (since that was your goal)? Keith\n\n62) eugman: Trade R2 G2 Eugman\n\tzoltar: Eugman has come up with some very good ideas on his own and has really made me think, though I still have maintained a material lead.\n\teugman: Yeah, I even got in a few clever moves. The whole game was annoying though because for most of it I felt like my back was up against the wall.\n\teugman: Zoltars, post wasn't there when I was typing this. Ok keith I'm ready to magically defeat zoltar. Quick ! Your insightful move that will let me win in 5 turns is needed.\n\n63) zoltar: Build G3 Greenhills\n\n64) eugman: Build R2 Eugman\n\tzoltar: Blue squadron reporting for duty...\n\teugman: Hat I'd give for a blue.\r\n\r\nAlso, is there a way to look back through the comments?\n\teugman: You know zoltar, it's clear I'm going to annilate you. You should clearly resign now before it's too late. \n\n65) zoltar: Build R3 Greenbelt\n\n66) eugman: Pass\n\tzoltar: Well, I can always use another yellow ship\n\teugman: Hmmm, it won't let me send my two ships to your place and immediately after cause a catastrophe.\n\teugman: oh wait.....\n\teugman: Ok, now I just feel dumb.\n\n67) zoltar: Sacrifice Y3 Greenbelt\nMove G2 Greenhills Greendale\nMove G2 Greendale Eugman\nMove G1 Greendale Eugman\nCatastrophe Eugman G\n\teugman: Hey, you should um... move a red back into your base. Image the havoc that could happen if it had nothing there to protect it. Um, yeah that's it.\n\tzoltar: If you make this move, I can sacrifice my y1 in Zoltar (or a y2 and make another movement as well) and move my g1 from greendale to your homeworld and blow up your green ships and your green star, in which case you would be in serious trouble. If you want to have any chance, you need to undo this move!\n\tzoltar: Ironic that it's your homeworld star that you've put in danger, not mine. Btw, with a red star, all I need is a 3-size ship of a different color in my homeworld, and no red ships. If you moved 2 ships into my homeworld, I'd sack an R3 and capture them both. \n\teugman: Twas but a joke. If you moved back a red I could probably make your star asplode. And really I think cleverness has come to an end. Does it really matter if I endanger myself now instead of losing in 8 or so turns?\n\n68) eugman: Sacrifice Y3 Eugman\nMove Y2 Eugman Greenhills\nMove R2 Eugman Greenhills\nMove R1 Eugman Greenhills\nCatastrophe Greenhills Red\n\n\teugman: How often does a two player game end with no pieces?\n\tzoltar: Or two moves, if you consider a move to be one move by each player, like in chess. This is an important endgame trick, even if you don't have an overwhelming advantage. You set things up so with 2 successive yellow sacs you blow up the two homeworld stars. It's important in a close game if after you blow up one star, the opponent can move into your homeworld and threaten to win. You then blow up the other star before he can capture anything. \n\tzoltar: I've lost games where I have no pieces left, but I don't know how often it happens; besides, you're going to have your y1 left, since I don't need to waste time capturing it!\n\teugman: I thought I'd lose in style.\n\tzoltar: Good game. I'll play again later if you wish.\n\teugman: I mean how often does the stash get emptied during the endgame.\n\tzoltar: Oh, not that often. Maybe about 10-20% of my games all the pieces were used at one point.\n\nHomeworlds Online (SDG# 4052)\nStarted: 2006.8.20, Ended: 2006.11.12\nParticipants: JIMBO (S), tesla (W), zoltar (N), antihero (E)\nWinner: antihero\n\n1) zoltar: Homeworld Y1 B2 G3\n\tzoltar: h y1 b2 g3\n\n2) antihero: Homeworld G3 B2 Y3\n\tzoltar: Oops, I'm using the wrong field to enter my moves. Btw, Greetingz from Greenbelt, Milky Way!\n\tJIMBO: Word up from Eugene, OR\n\n3) tesla: Homeworld B1 Y3 G3\n\tzoltar: ok, where's Jimbo?\n\ttesla: yes, where is he? Maybe he's on vacation\n\tantihero: I know him in RL and text messaged him this morning asking what is up. No response, yet. So hmmm... You guys wanna start another game in the meantime?\n\tzoltar: Sure, we can start another one as well...\n\tzoltar: antihero started another 4 player game and I've joined\n\n4) zoltar: Build G1 Zoltar\n\n5) antihero: Build Y1 Antihero\n\n6) tesla: Build G1 Tesla\n\n7) zoltar: Trade G1 Y1 Zoltar\n\n8) antihero: Trade Y1 G1 Antihero\n\n9) tesla: Trade G1 Y1 Tesla\n\n10) zoltar: Build G1 Zoltar\n\n11) antihero: Build Y1 Antihero\n\n12) tesla: Build G1 Tesla\n\n13) zoltar: Trade G1 R1 Zoltar\n\n14) antihero: Trade Y1 R1 Antihero\n\n15) tesla: Trade G1 R1 Tesla\n\n16) zoltar: Build G1 Zoltar\n\n17) antihero: Build Y1 Antihero\n\n18) tesla: Build Y1 Tesla\n\n19) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n20) antihero: Discover Y1 Antihero G1 Drop\n\n21) tesla: Trade Y1 B1 Tesla\n\n22) zoltar: Build G1 Zoltar\n\n23) antihero: Build R1 Antihero\n\n24) tesla: Discover Y1 Tesla B2 Salte\n\n25) zoltar: Trade G1 B1 Zoltar\n\n26) antihero: Build G1 Antihero\n\n27) tesla: Build G1 Tesla\n\n28) zoltar: Build G2 Zoltar\n\n29) antihero: Sacrifice Y3 Antihero\nMove G1 Antihero Drop\nDiscover G1 Drop R3 Suicidemission\nMove G1 Suicidemission Zoltar\nCatastrophe Zoltar Green\n\n30) tesla: Discover G1 Tesla Y2 Telas\n\n31) zoltar: Trade B1 G1 Zoltar\n\n32) antihero: Trade R1 Y1 Antihero\n\n33) tesla: Build G1 Telas\n\n34) zoltar: Build G2 Zoltar\n\n35) antihero: Build G2 Antihero\n\n36) tesla: Move G1 Telas Tesla\n\n37) zoltar: Trade G2 Y2 Zoltar\n\n38) antihero: Trade G2 Y2 Antihero\n\n39) tesla: Move G1 Tesla Salte\n\n40) zoltar: Build G2 Zoltar\n\n41) antihero: Build Y2 Drop\n\n42) tesla: Build G2 Telas\n\n43) zoltar: Trade G1 B1 Zoltar\n\n44) antihero: Discover Y2 Drop G2 Jump\n\n45) tesla: Move B1 Tesla Telas\n\n46) zoltar: Move B1 Zoltar Greenbelt\n\n47) antihero: Build R1 Antihero\n\n48) tesla: Build Y2 Salte\n\n49) zoltar: Build Y3 Greenbelt\n\n50) antihero: Build Y3 Jump\n\n51) tesla: Move Y1 Salte Tesla\n\n52) zoltar: Move Y1 Greenbelt Jump\n\n53) antihero: Sacrifice Y2 Antihero\nDiscover Y3 Jump B1 Wormhole\nMove Y3 Wormhole Antihero\n\n54) tesla: Build Y2 Tesla\n\n55) zoltar: Move Y1 Jump Tesla\nCatastrophe Tesla Y\n\n56) antihero: Move Y1 Drop Greenbelt\n\n57) zoltar: Move Y3 Greenbelt Tesla\n\n58) antihero: Build Y1 Greenbelt\n\tantihero: oh wow. bye tesla! good playing with you...\n\tantihero: wait what happened?\n\tzoltar: One of tesla's stars was destroyed; there remains one.\n\tzoltar: I don't know why Tesla's name is crossed out.\n\tantihero: weird...\n\tantihero: Hey Aaron, Tesla should still be in the game. His star should be in the top of the image, rather than in the middle, his name shouldn't be crossed out, etc.\n\ttesla: sorry, I can't to continue this game (I'm going to a new house and I won't have INERNET conexion for two or three weeks) Now I'm in a public center with INTERNET conexion.\n\n59) zoltar: Trade Y2 R2 Zoltar\n\tzoltar: m y3 greenbelt tesla\n\n60) antihero: Sacrifice R1 Antihero\nAttack B1N Greenbelt\n\n61) zoltar: Sacrifice R2 Zoltar\nAttack G3W Tesla\nAttack R1W Tesla\n\n62) antihero: Build Y1 Greenbelt\n\n63) zoltar: Build Y2 Tesla\n\n64) antihero: Move Y1 Greenbelt Zoltar\n\n65) zoltar: Discover Y3 Tesla B2 Death\n\tantihero: things are not looking good!\n\n66) antihero: Build R1 Antihero\n\n\tzoltar: Yeah, there's no hope. gg.\r\n\n\tantihero: gg.\n\nHomeworlds Online (SDG# 4066)\nStarted: 2006.8.20, Ended: 2006.8.31\nParticipants: Laurie_Menke (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld G3 R2 B3\n\n2) Laurie_Menke: Homeworld G1 B2 Y3\n\tLaurie_Menke: Hi, again, Zoltar. Thanks for the invite! :o)\n\n3) zoltar: Build B1 Zoltar\n\n4) Laurie_Menke: Build Y1 Laurie_menke\n\tzoltar: Greetingz, primitive carbon waterbag unit!\n\n5) zoltar: Trade B1 Y1 Zoltar\n\n6) Laurie_Menke: Build Y1 Laurie_menke\n\n7) zoltar: Build Y2 Zoltar\n\n8) Laurie_Menke: Trade Y1 B1 Laurie_menke\n\n9) zoltar: Discover Y1 Zoltar G1 Greenbelt\n\n10) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\n11) zoltar: Build Y1 Zoltar\n\n12) Laurie_Menke: Build G2 Laurie_menke\n\n13) zoltar: Build Y1 Greenbelt\n\n14) Laurie_Menke: Build Y2 Laurie_menke\n\n15) zoltar: Build Y2 Greenbelt\n\n16) Laurie_Menke: Build Y3 Laurie_menke\n\n17) zoltar: Sacrifice Y2 Greenbelt\nDiscover Y1 Greenbelt Y3 Wormhole\nMove Y1 Wormhole Laurie_menke\nCatastrophe Laurie_menke Y\n\tzoltar: oops, typed in zee wrong name\n\tLaurie_Menke: Wow...I never realized before that Homeworlds doesn't have an UNDO button. :o( What did you *mean* to do? I'll try not to take advantage of the situation...\n\n18) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\tzoltar: What do you mean? Homeworlds does have an UNDO button, but you can only change your move once.\n\n19) zoltar: Build Y2 Greenbelt\n\tzoltar: Zoltar cannot let you hog up zee yellow technology!\n\tLaurie_Menke: Oh! I see! I didn't read down far enough to see that you had used the UNDO...duh...I guess I'm still a little sluggish from my cold. :o(\n\tLaurie_Menke: I was afraid you'd do that. :o(\n\n20) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y2 Laurie_menke\nBuild Y3 Laurie_menke\n\n21) zoltar: Sacrifice Y2 Greenbelt\nDiscover Y1 Greenbelt Y3 Wormhole\nMove Y1 Wormhole Laurie_menke\nCatastrophe Laurie_menke Y\n\tzoltar: Then you shouldn't have built the 3rd Yellow ship, and instead could've moved one of your yellow ships to a new star! Now you are in big trouble, as if I can build a 3-sized ship, get it to your homeworld, and make a red ship before you can DOOMED. So the race is on...\n\tLaurie_Menke: Not a problem, oh violent alien friend. ;o)\n\n22) Laurie_Menke: Build B1 Laurie_menke\n\tLaurie_Menke: Of course, you're probably about to repeat the catastrophe, but it'll cost you, too. ;o)\n\tzoltar: Don't you ever learn? <sigh> Primitive hyu-maahn beanz!\n\tLaurie_Menke: And yes, I know I'm doomed...but we Earthlings like to have as much fun along the way as possible. ;o)\n\n23) zoltar: Build B1 Zoltar\n\n24) Laurie_Menke: Trade B1 Y1 Laurie_menke\n\tzoltar: Looks like yer having a BLAST! [Insert Evil Overlord Laughter here]\n\n25) zoltar: Trade B1 G1 Zoltar\n\tzoltar: Btw, I think you'd really enjoy a game with 'eugman'. He just played his first two games (he lost, and the second very badly), and told me he's looking for players he has a chance with. His third game he's playing much better, and I think he'd give you a run for your money, though you'd have the advantage having more experience. You ought to challenge him to a Homeworlds game. You can look at our game in progress as well.\n\tLaurie_Menke: LOL...I *think* I'll take that as a compliment. ;o) And thanks for the tip...I'll challenge him right now. :o)\n\n26) Laurie_Menke: Discover Y1 Laurie_menke G3 Jolly\n\tzoltar: \n\n27) zoltar: Discover Y1 Zoltar G1 Kermit\n\tzoltar: OK, but don't build unstable systems because he's learned how to sac pieces and blow things up... heh heh \n\n28) Laurie_Menke: Build B1 Laurie_menke\n\tLaurie_Menke: I wonder who taught him that? ;o)\r\n\r\nOK, I'm off to bed...see you tomorrow. :o)\n\n29) zoltar: Build G2 Zoltar\n\n30) Laurie_Menke: Build Y1 Jolly\n\n31) zoltar: Move B3 Zoltar Kermit\n\n32) Laurie_Menke: Trade B1 R1 Laurie_menke\n\n33) zoltar: Discover G2 Zoltar B1 Blueberry\n\n34) Laurie_Menke: Move Y1 Jolly Laurie_menke\n\n35) zoltar: Build G2 Blueberry\n\tzoltar: Hey, after this do you want to play Pikeman? Like Homeworlds, it's author is someone I know in person, but unlike homeworlds, I have no idea how to play. I'm playing my first game now, and and already way behind after about 5 moves. It looks like a fun game though, and I want to learn how to play.\n\tLaurie_Menke: Sure, I'm happy to play with you. I've played a few games, but I pretty much suck at it, too. You'll probably be beating me in no time. ;o)\n\n36) Laurie_Menke: Build Y2 Laurie_menke\n\n37) zoltar: Build G2 Blueberry\n\n38) Laurie_Menke: Build Y2 Jolly\n\n39) zoltar: Build G3 Zoltar\n\n40) Laurie_Menke: Build Y3 Laurie_menke\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Kermit\n\n42) Laurie_Menke: Trade Y3 R3 Laurie_menke\n\n43) zoltar: Move Y3 Zoltar Blueberry\n\n44) Laurie_Menke: Discover R1 Laurie_menke Y3 Luella\n\n45) zoltar: Build B1 Kermit\n\n46) Laurie_Menke: Move B1 Laurie_menke Luella\n\n47) zoltar: Trade B3 R3 Kermit\n\n48) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove Y2 Jolly Kermit\nMove Y1 Jolly Kermit\nCatastrophe Kermit Y\n\n49) zoltar: Move G2 Blueberry Luella\n\n50) Laurie_Menke: Move R1 Luella Laurie_menke\n\n51) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\nBuild B2 Kermit\n\n52) Laurie_Menke: Move B1 Luella Laurie_menke\n\n53) zoltar: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y1 Zoltar\nBuild R1 Kermit\n\n54) Laurie_Menke: Build Y1 Laurie_menke\n\n55) zoltar: Sacrifice G3 Blueberry\nBuild Y2 Blueberry\nBuild Y2 Blueberry\nBuild Y3 Zoltar\n\n56) Laurie_Menke: Discover B1 Laurie_menke G3 Rebuilding\n\n57) zoltar: Sacrifice Y2 Zoltar\nMove R3 Kermit Rebuilding\nMove Y2 Blueberry Rebuilding\n\n58) Laurie_Menke: Build B2 Rebuilding\n\tzoltar: Zee Yellow fleet ease mine, awl mine! Zoltarian sheepz dominate zee Warp Drive Technology. Yippee! Zoo nigh shell rain nova zee hole galaxy!\n\tLaurie_Menke: Your sheepz dominate, eh? LOL....baaaaa. ;o)\n\tLaurie_Menke: It's the greens that are killing me. :o/\n\n59) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Rebuilding\nBuild R2 Kermit\n\n60) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack R1 Rebuilding\n\tzoltar: Ewe may kin fun uv Zoltar'z act scent? baaahahaha\n\n61) zoltar: Sacrifice R3 Rebuilding\nAttack R1 Rebuilding\nAttack B2 Rebuilding\nAttack B1 Rebuilding\n\tLaurie_Menke: I think you're just toying with me like a cat with a mouse now. ;o)\n\n62) Laurie_Menke: Build R1 Laurie_menke\n\tzoltar: Yes, ewe primitive carbon waterbag unitz hour know match four zee my tea four says uv Zoltar!\n\n63) zoltar: Sacrifice Y3 Zoltar\nMove R1 Kermit Rebuilding\nMove R1 Rebuilding Laurie_menke\nMove R1 Rebuilding Laurie_menke\nCatastrophe Laurie_menke R\n\n64) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n65) zoltar: Sacrifice Y3 Blueberry\nMove G2 Luella Laurie_menke\nMove B2 Rebuilding Laurie_menke\nMove B1 Rebuilding Laurie_menke\n\n66) Laurie_Menke: Attack B1 Laurie_menke\n\n67) zoltar: Sacrifice G2 Blueberry\nBuild G2 Laurie_menke\nBuild B3 Laurie_menke\n\n68) Laurie_Menke: Build B3 Laurie_menke\n\tzoltar: Awl sheepz storm zee Laurie_Menke homeworld for big finale party! Eat wheel bee a blast!\n\n69) zoltar: Sacrifice G2 Blueberry\nBuild G2 Laurie_menke\nBuild B3 Laurie_menke\n\n70) Laurie_Menke: Trade B3 R3 Laurie_menke\n\n71) zoltar: Sacrifice R2 Kermit\nAttack R3 Laurie_menke\nAttack R1 Laurie_menke\n\n72) Laurie_Menke: Build Y1 Laurie_menke\nCatastrophe Laurie_menke Blue\nCatastrophe Laurie_menke Green\n\n\tLaurie_Menke: Thanks for the game, Zoltar...congrats on the win. :o)\n\nHomeworlds Online (SDG# 4067)\nStarted: 2006.8.21, Ended: 2006.8.21\nParticipants: eugman (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y1 G3\n\teugman: Will probably continue to learn a lot by playing people who whomp me.I also made an open challenge for someone a bit easier.\n\n2) eugman: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) eugman: Build G1 Eugman\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) eugman: Trade G1 B1 Eugman\n\n7) zoltar: Build Y1 Zoltar\n\n8) eugman: Build G1 Eugman\n\n9) zoltar: Discover Y1 Zoltar G2 Spinach\n\n10) eugman: Build B1 Eugman\n\n11) zoltar: Build Y2 Spinach\n\n12) eugman: Trade G3 Y3 Eugman\n\n13) zoltar: Discover Y1 Spinach G3 Kale\n\n14) eugman: Move B1 Eugman Kale\n\teugman: Well this is certainly a bad situation.\n\n15) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Kale\nBuild Y3 Spinach\nBuild Y3 Zoltar\n\tzoltar: I've noticed I've already taken advantage of an early monopoly on Yellow technology: notice you can't build another yellow now that I'm in range to cause a catastrophe. you needed to grab a y1 early, even if it meant my getting a y2 first, I think. I don't know that much about openings yet -- it's my weakest part of the game -- but when I see the chance to lock someone out of a color, especially yellow, I go for it. Maybe Yellow is the most important starting color, but I'm not sure.\n\n16) eugman: Discover Y3 Eugman R3 Owie\n\tzoltar: I couldn't resist!\r\n\n\n17) zoltar: Trade Y3 R3 Zoltar\n\teugman: I had a plan to deal with the color lockout so I wasn't too worried. What I didn't expect was you using your green and getting me in a position to get a catastrophe. I'll have to rethink a bit now.\n\tzoltar: got my orders backwards -- anyway, may as well go for the total yellow lockout. \n\teugman: Wait, what just happened.\n\teugman: oh ok\n\n18) eugman: Build B2 Kale\n\n19) zoltar: Sacrifice Y2 Kale\nMove Y3 Spinach Kale\nMove Y3 Kale Eugman\n\tzoltar: Ok, I'm making a super-efficient move here: I'd usually trade for a g3, but a y3 not only stops you from threatening my homeworld by moving your y3 closer, but it also threatens to win if I get my other y3 into your homeworld (I'd then sac my r3 and gobble up everything in your homeworld).\r\n\n\teugman: Hmm.\n\teugman: Have you ever seen someone win who had at one point no three's?\n\n20) eugman: Pass\n\n21) zoltar: Sacrifice R3 Zoltar\nAttack G1 Eugman\nAttack B1 Eugman\nAttack B1 Kale\n\tzoltar: I've seen people sac their last 3-size ship for a checkmate. Usually, if you ever leave your homeworld without a 3-sized ship, you are toast. That's the number 1 defensive rule. In your case, you were in big trouble no matter what - you had to trade your y3 back to a green or a red ship to defend your homeworld -- bringing it out now ends the game quickly.\n\teugman: Yeah I definately made a big mistake in not changing it back.\n\n\nHomeworlds Online (SDG# 4077)\nStarted: 2006.8.21, Ended: 2006.8.25\nParticipants: Keith (S), eugman (N)\nWinner: Keith\n\n1) eugman: Homeworld Y3 B1 G3\n\n2) Keith: Homeworld B1 Y2 G3\n\tKeith: Hello eugman. That was a very complex first game you played.\n\n3) eugman: Build G1 Eugman\n\n4) Keith: Build G1 Keith\n\teugman: But a bit understandable once you know what's going on. I noticed you have a very similar configuration to mine.\n\n5) eugman: Trade G1 Y1 Eugman\n\n6) Keith: Discover G1 Keith Y3 Sihnon\n\tKeith: Yes. I don't care to start out with red in my home system. That leaves one each of blue, green, and yellow. I consider having green as one of the stars inferior because 1) if an enemy invades my home world they can grow ships using my star and 2) I can't sacrifice the star for the factory effect.\n\n7) eugman: Build Y1 Eugman\n\teugman: He was trying something different. Also if you can make it into the midgame it can provide for a strong defense.\n\n8) Keith: Build G1 Keith\n\n9) eugman: Trade Y1 B1 Eugman\n\n10) Keith: Build G1 Sihnon\n\n11) eugman: Build B2 Eugman\n\teugman: Actually I'm going to wait till tomorrow to continue playing. There is no way I can play two games at once and have any chance of winning either.\n\tKeith: Okay. I will just peek in on your game with Zoltar.\n\n12) Keith: Build G2 Keith\n\n13) eugman: Trade B2 G2 Eugman\n\n14) Keith: Discover G1 Sihnon Y2 Whitefall\n\tKeith: I see Zoltar educated you on factories.\n\n15) eugman: Trade Y1 R1 Eugman\n\teugman: Educated sounds far too gentle.\n\n16) Keith: Build G2 Whitefall\n\tKeith: Learning from Zoltar is like drinking from a firehose.\n\n17) eugman: Discover B1 Eugman Y2 Someplace\n\teugman: But afterwards being thristy is the least of your problems.\n\n18) Keith: Trade G2 R2 Keith\n\n19) eugman: Move G2 Eugman Someplace\n\n20) Keith: Sacrifice G3 Keith\nBuild G2 Sihnon\nBuild G3 Keith\nBuild G3 Whitefall\n\n21) eugman: Move G2 Someplace Eugman\n\teugman: Darnit.\n\n22) Keith: Move G1 Whitefall Eugman\n\teugman: I definately don't have control of the momentum.\n\tKeith: I am struggling hard to try to keep you from getting it.\n\n23) eugman: Move G2 Eugman Whitefall\n\teugman: Sigh. I expected you'd try to blow me up. Natural thing to do given the opportunity and the green advantage.\n\n24) Keith: Sacrifice R2 Keith\nAttack R1 Eugman\nAttack G2 Whitefall\n\tKeith: Actually I don't expect you would let me get a green catastrophe. Change the G3 to something else and that ploy threatens neither ship nor planet. I have another idea...\n\teugman: But if I change it I risk letting you have factory access all by yourself.\n\n25) eugman: Trade B1 R1 Someplace\n\tKeith: I am not just going for the green. I am going for all the marbles.\n\n26) Keith: Move G3 Whitefall Eugman\n\teugman: Well you've certainly got a good collection.\n\tKeith: And a remote r1 has unraveled my plan.\n\tKeith: I was thinking I could no longer aford to move my g3 to eugman. Maybe I still can.\n\n\teugman: You could have won already if you took bigger risks and saw the whole picture. I'd tell you how but it's still doable.\n\teugman: Hmm\n\teugman: If I leave Home I lose right?\n\tKeith: You would lose. No ships of your at your homeworld. Though I think the game won't let you. \r\n\r\nDo let me know, post game, what I could have done earlier.\n\teugman: You stayed all green for the most part. On turn 20 you had two large greens. You could have changed to yellow and you would have had greater mobility and still retained acess to the factory effect. It also would have made bombing me much easier since you could concievably do it in one turn and wipe out my singular large theyby securing victory.\n\tKeith: Thank you the advice. I could have changed the g3 at my homeworld. The other did not have access to blue. I was a little leary about doing so then sacrificing my homeworld 3 pointer to attack your ship since a simple color change on your part would leave me attacking nothing and giving you something to convert.\n\teugman: That's true but in theory if you forced me to change color that would be great for you since you could then sacrifice one of your twos so the 1 back at home could regrow two greens locking me out entirely.\n\teugman: Whoops slight mistake in what I just said. But you would have a large green at home again.\n\tKeith: I see your point. \r\n\r\nI did play a game against Zoltar where I had destroyed one of his two homeworld systems and had a substantial ship advantage. I lost the game when I rushed on offense. So I tend to go a little slower now.\n\nHomeworlds Online (SDG# 4081)\nStarted: 2006.8.21, Ended: 2006.8.22\nParticipants: zoltar (S), eugman (N)\nWinner: zoltar\n\n1) eugman: Homeworld G2 B1 Y3\n\n2) zoltar: Homeworld B3 Y1 G3\n\tzoltar: Pray pair two meat yore DOOM, hyu-mahn bean!\n\n3) eugman: Build Y1 Eugman\n\teugman: (shouting to crew) Joe, the interpreter is on the fritz! You told them we come in peace right?\n\n4) zoltar: Build G1 Zoltar\n\n5) eugman: Build Y1 Eugman\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) eugman: Trade Y3 G3 Eugman\n\tzoltar: so I have to trade to yellow now or never...\n\n8) zoltar: Build Y2 Zoltar\n\n9) eugman: Discover Y1 Eugman G3 Lime\n\n10) zoltar: Discover Y2 Zoltar G2 Swisschard\n\n11) eugman: Build Y2 Eugman\n\n12) zoltar: Trade G1 R1 Zoltar\n\n13) eugman: Trade Y2 R2 Eugman\n\tzoltar: Well, you're catching on fast -- now I have to scramble to make sure you don't get all the big yellows\n\n14) zoltar: Build Y2 Swisschard\n\teugman: I can't wait for the homeworlds ladder.\n\n15) eugman: Build R1 Eugman\n\n16) zoltar: Trade Y3 G3 Zoltar\n\n17) eugman: Move R2 Eugman Lime\n\n18) zoltar: Discover Y2 Swisschard G1 Collards\n\n19) eugman: Trade R1 B1 Eugman\n\n20) zoltar: Build G1 Zoltar\n\n21) eugman: Build B1 Eugman\n\n22) zoltar: Build G1 Zoltar\n\tzoltar: Well, so far you have the advantage, I think -- galaxies better than the last game.\n\n23) eugman: Trade B1 R1 Eugman\n\tzoltar: nothing else I can do\n\n24) zoltar: Discover G1 Zoltar G2 Kale\n\n25) eugman: Build B1 Eugman\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Zoltar\nBuild R2 Zoltar\n\n27) eugman: Move R2 Lime Kale\n\n28) zoltar: Discover R2 Zoltar Y2 Lemon\n\n29) eugman: Sacrifice G3 Eugman\nBuild Y3 Eugman\nBuild Y3 Lime\nBuild R2 Kale\n\teugman: Hmmm I forgot I really can't get back now. Hmm this will take a bit of thinking.\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Kale\nBuild R3 Lemon\n\tzoltar: My only reasonable chance to catch up has been to build a 'factory': I have a g3 and one other green piece in my homeworld (or another star, but that is more rare), and all the greens are used up. I can then sack my G3 and then rebuild it immediately in place, plus two other builds.\n\teugman: Ah so that's what's meant exactly by factory.\n\n31) eugman: Sacrifice Y3 Lime\nMove R2 Kale Lime\nMove R2 Kale Lime\nMove R2 Lime Eugman\n\tKeith: FWIW you have an audience. This game is quite the spectator sport. --Keith\n\teugman: I have a feeling this is going to go downhill for me and fast.\r\n\n\teugman: Please let me know if what I'm about to do it very clever or not.\n\n32) zoltar: Sacrifice G3 Kale\nBuild G3 Kale\nBuild Y3 Collards\nBuild Y3 Swisschard\n\teugman: actually that may have been a bad idea.\n\teugman: hmm\n\teugman: This can wait a day. This is a very bad situation so I need a move that is very good.\n\tzoltar: Yes, it would leave me with an advantage in red tech. Remember, I don't need red ships in my homeworld to defend, as I can sac one of my reds elsewhere. The perfect 'castle' in a yb star system, btw, would be to have a g3 and r1 and nothing else; that way the red could defend against any one piece, an r2 or r3 elsewhere could be sacked to stop multiple invaders, and with one of each color, the system would be maximally stable and thus hardest to create a catastrophe. Here blowing up my two r1's would be a waste of your resources.\n\teugman: Well I'm going to lose most of my red tech soon anyways since you can just sac a red 2 and cap my 2 reds there.\n\tzoltar: Yes, it was an unfortunate side-effect of your sacking your G3, as not only could I build the G3 immediately, but I could threaten your red ships as well before they could disperse and build R3s. Notice also that if you move one of them, I can capture the other with an R1 sac, so that you can't build an R3 right away as there is then an R1 in the stash. Given all that, I think your G3 sack was a mistake. However, I didn't expect it, and it was a very clever try, something that usually makes for a great move but in this case had severe tactical drawbacks.\n\teugman: It doesn't look like something I'm going to be able to recover from. I think I'll carry this out to it's near end tomorrow and then see if I can beat someone who isn't omniscient.\n\tzoltar: If it makes you feel any better, I played world champion Andy Looney in person just last week, and lost for the nth time, though for the first time I actually blew up one of his homeworld stars before I died. Heh.\n\n33) eugman: Build R3 Lime\n\teugman: Couldn't see what much else I could do.\n\n34) zoltar: Sacrifice Y3 Swisschard\nMove R2 Lemon Lime\nMove R1 Zoltar Lemon\nMove R1 Lemon Lime\nCatastrophe Lime R\n\n35) eugman: Build Y3 Lime\n\teugman: At least now I know about the factory effect so I can deal with Keiths attempt to do the same thing.\n\n36) zoltar: Sacrifice G3 Kale\nBuild G3 Kale\nBuild R1 Lemon\nBuild R2 Zoltar\n\tzoltar: Yes, the factory is a really powerful tool, if you can set one up. I don't mind sacrificing here, as I can build reds faster than you can.\n\n37) eugman: Move R1 Eugman Lime\n\n38) zoltar: Sacrifice Y2 Collards\nMove R2 Zoltar Kale\nMove R1 Lemon Collards\n\tzoltar: Of course I did give you yet another Y3, but I like my advantage\n\teugman: Well I'm pretty sure I've lost. I can't assault you because you have suffiecent red tech. If I sit around you'll keep hitting me with your exploding ships(tm).\n\n39) eugman: Move B1 Eugman Lime\n\teugman: The only way I could win would be o expand out, and find a way to bomb both of your homeworlds. An unlikely proposition\n\n40) zoltar: Sacrifice G3 Kale\nBuild R2 Lemon\nBuild R3 Kale\nBuild R3 Collards\n\n\tzoltar: Yes, you have to expand, but I can expand faster, with my factory, and I have all the big red ships now.\n\teugman: Well I've essentially lost. I'm going to resign to lighten my load since I've got four other games on the stack and two are homeworlds. I definately learned something that will help me in my game against keith. At least I had the momentum for a while this time.\n\tzoltar: You played quite well. When you have less games going on, let's play again!\n\nHomeworlds Online (SDG# 4083)\nStarted: 2006.8.22, Ended: 2006.9.9\nParticipants: Laurie_Menke (S), eugman (N)\nWinner: Laurie_Menke\n\n1) eugman: Homeworld B2 Y1 G3\n\n2) Laurie_Menke: Homeworld Y1 B3 G3\n\teugman: Yeah I'm really new to homeworlds but apparently learning fast. I'm in a game with zoltar and in one with keith right now so I don't know if I'll be able to do any of the quick back and forth while that is the case.\n\tLaurie_Menke: No problem. I'm usually only able to play in the evenings anyway. And although I've played a fair amount of games of Homeworlds, I'm still pretty rotten at it. ;o)\n\n3) eugman: Build G1 Eugman\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\teugman: From playing playing against zoltar I've figured out that in order to win you need to be brutally offensive. Is that a problem at all?\n\tLaurie_Menke: No...you're right. That's the way to play the game. I joke around with zoltar about being peaceful and all, and I am in real life, but this game is about destroying the enemy quickly and efficiently. ;o) Good luck!\n\n5) eugman: Trade G1 Y1 Eugman\n\n6) Laurie_Menke: Discover G1 Laurie_menke B2 Hill\n\n7) eugman: Discover Y1 Eugman G3 Dale\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: LOL...I love playing around with the names of the star systems. :oD\n\teugman: Well you started a theme so I figured I should continue it.\n\n9) eugman: Build G1 Eugman\n\teugman: Just curious, what time zone are you in.\n\n10) Laurie_Menke: Build G2 Hill\n\tLaurie_Menke: Pacific...I'm in Woodland, California...near Sacramento. How about yourself?\n\n11) eugman: Trade G1 B1 Eugman\n\teugman: I'm in western pennsylvannia. I figured you had to be on the west coast or have an exaggerated sense of "evening".\n\n12) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Ah...I see what you mean. Yeah, I meant from around 5ish to around 8 or 9, but that would make it...um...I think 8ish to 11 or 12.\n\n13) eugman: Move B1 Eugman Dale\n\n14) Laurie_Menke: Discover G1 Laurie_menke Y2 Chip\n\n15) eugman: Build G2 Eugman\n\n16) Laurie_Menke: Trade G2 Y2 Hill\n\n17) eugman: Move G2 Eugman Dale\n\n18) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Chip\nBuild G2 Hill\nBuild G3 Laurie_menke\n\n19) eugman: Move G2 Dale Eugman\n\n20) Laurie_Menke: Build Y2 Hill\n\n21) eugman: Sacrifice G3 Eugman\nBuild G3 Eugman\nBuild Y3 Dale\nBuild B1 Dale\n\n22) Laurie_Menke: Sacrifice Y2 Hill\nDiscover G2 Hill Y3 Luella\nDiscover G1 Hill Y3 Sharon\n\teugman: School starts tomorrow so I may go over the time limit since I'm busy getting evrything together and would like to think enough to make sure I have a good move.\n\tLaurie_Menke: No problem...take your time. Good luck with your classes!\n\n23) eugman: Trade Y3 R3 Dale\n\n24) Laurie_Menke: Sacrifice Y2 Hill\nMove G1 Sharon Eugman\nMove G2 Luella Eugman\nCatastrophe Eugman Green\n\n\teugman: That's right. Wasn't thinking quite straight it would seem.\n\teugman: Oh, by the way were you the one who did the drawing for the oasis sentence?\n\tLaurie_Menke: Nope...not me. Mine are the boring stick figure drawings. ;o)\n\tLaurie_Menke: Sorry to end this game so abruptly, but here goes....\r\n\r\nThanks a lot for the fun...challenge me any time you'd like! And good luck with your classes! :o)\n\nHomeworlds Online (SDG# 4087)\nVariants: "Unrated"\nStarted: 2006.8.22, Ended: 2006.8.22\nParticipants: charlie (S), Wkr (N)\nWinner: Wkr\n\n1) Wkr: Homeworld B1 Y2 G3\n\n2) charlie: Homeworld G1 Y2 B3\n\tcharlie: homeworld g1 y2 b3\r\n\n\n3) Wkr: Build G1 Wkr\n\n4) charlie: Discover B3 Charlie G3 Charlie2\n\n\nHomeworlds Online (SDG# 4082)\nStarted: 2006.8.24, Ended: 2006.8.26\nParticipants: antihero (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y1 G3\n\n2) antihero: Homeworld G3 B2 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) antihero: Build Y1 Antihero\n\tantihero: Hello zoltar. How's it going?\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) antihero: Discover Y1 Antihero G1 Maine\n\n7) zoltar: Build Y2 Zoltar\n\n8) antihero: Build Y2 Antihero\n\n9) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n10) antihero: Trade Y3 R3 Antihero\n\tzoltar: I'm doing fine. I learned Homeworlds two months ago and have been playing a lot and am expanding my gaming by trying out Pikeman and Zendo games, which I just started. I love this site!\n\n11) zoltar: Trade Y2 R2 Zoltar\n\n12) antihero: Build Y2 Maine\n\tantihero: there's a metro stop (sort of) near where I live called greenbelt. Same one?\n\tantihero: um... I live in DC... haha\n\n13) zoltar: Build G1 Zoltar\n\tantihero: I definitely like this site. Just started playing here a few days ago. It's great. I've played homeworlds a couple of times in RL, but not too much.\n\n14) antihero: Build R1 Antihero\n\tzoltar: Affirmative. I live a 20 minute walk from that station.\n\tantihero: I'm in Columbia Heights right now...\n\n15) zoltar: Move R2 Zoltar Greenbelt\n\tantihero: well, actually I'm downtown right now, but I live in ColumbiaHeights.\n\n16) antihero: Move R1 Antihero Maine\n\n17) zoltar: Trade G1 R1 Zoltar\n\n18) antihero: Discover Y2 Maine Y2 Petworth\n\n19) zoltar: Build Y3 Greenbelt\n\tzoltar: Well, you are a lot better at openings than I. You've outpaced me so far every step of the way!\n\n20) antihero: Build Y3 Maine\n\tantihero: really? I don't really feel that way...\n\n21) zoltar: Build G1 Zoltar\n\tantihero: I'm making an okay play now, but things are still early.\n\tzoltar: well, you're getting an extra Y3 ship for free -- that's a huge advantage, and I don't even know what I did wrong.\n\n22) antihero: Build Y3 Antihero\n\n23) zoltar: Build G1 Zoltar\n\n24) antihero: Trade Y2 B2 Antihero\n\n25) zoltar: Discover G1 Zoltar B2 Blueridge\n\n26) antihero: Move B2 Antihero Maine\n\n27) zoltar: Build G2 Blueridge\n\n28) antihero: Sacrifice Y2 Petworth\nMove R3 Antihero Maine\nMove R3 Maine Blueridge\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueridge\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n30) antihero: Attack G2 Blueridge\n\tzoltar: Yeah, I'm pretty much dead.\n\tzoltar: Wait -- an idea!!!!\n\n31) zoltar: Move G1 Zoltar Blueridge\nCatastrophe Blueridge G\n\tzoltar: I at least get the two big greenies\n\tantihero: nice.\n\n32) antihero: Trade Y1 G1 Maine\n\n33) zoltar: Discover G3 Zoltar Y2 Yellowstone\n\tzoltar: Well, after all the fireworks, I have to go, will check back on the game late tonight...\n\n34) antihero: Discover B2 Maine G2 Greenstar\n\n35) zoltar: Build G1 Yellowstone\n\tzoltar: After all the tactics, I've caught up in firepower, and have avoided making a total mess of things!\n\n36) antihero: Move Y3 Maine Greenstar\n\n37) zoltar: Move Y3 Greenbelt Maine\n\n38) antihero: Sacrifice G1 Maine\nBuild B1 Greenstar\n\tantihero: homeworlds is such a great game.\n\n39) zoltar: Sacrifice G3 Yellowstone\nBuild G1 Yellowstone\nBuild G2 Zoltar\nBuild G3 Yellowstone\n\tzoltar: Yep!\n\n40) antihero: Build B1 Greenstar\n\n41) zoltar: Sacrifice G3 Yellowstone\nBuild Y1 Maine\nBuild Y2 Maine\nBuild Y2 Greenbelt\n\n42) antihero: Attack Y1 Maine\n\tzoltar: Looks like somebody is after my blue star...\n\n43) zoltar: Sacrifice R2 Greenbelt\nAttack R1 Maine\nAttack Y1 Maine\n\n44) antihero: Sacrifice Y3 Greenstar\nDiscover R3 Blueridge R1 Wormhole\nMove R3 Wormhole Antihero\nPass\n\tantihero: Not quite yet, though. it looks like I may be in some trouble here...\n\n45) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowstone\nBuild Y3 Greenbelt\n\tzoltar: I'm counting on that...\r\n\n\n46) antihero: Move Y3 Antihero Maine\nCatastrophe Maine Y\n\tantihero: All right, I'm out, I might play a couple moves tomorrow, but maybe not. Later man.\n\tantihero: Oh, and good game so far.\n\n47) zoltar: Sacrifice G3 Yellowstone\nBuild R1 Maine\nBuild R2 Maine\nBuild G3 Yellowstone\n\tzoltar: Yup, I thought I was toast for a while, but now I am on the attack and have the advantage, with my swarm of green and yellow ships. You can sack your other yellow ship for either half my yellow fleet or my blue star, but eitherway I'm the only one left with yellow and green ships on the board, which should allow me to cause lots of trouble.\n\n48) antihero: Trade R3 Y3 Antihero\n\n49) zoltar: Sacrifice Y2 Greenbelt\nMove Y3 Greenbelt Maine\nMove Y3 Maine Antihero\n\tzoltar: Red Fleet: we wheel avenge zee sacrifice uv hour Yellow brotherz: awl sheepz storm zee antihero homeworld! Attack!\n\tzoltar: Sacking both your Y3s has left you too vulnerable. I don't think there is any adequate defense.\n\tantihero: yeah, this is about over. is it good form to resign at this point or to play it out?\n\n50) antihero: Build Y1 Antihero\n\tantihero: meh, it won't take too long anyways.\n\n51) zoltar: Sacrifice R2 Maine\nAttack Y1 Antihero\nAttack Y3 Antihero\n\tzoltar: Yeah, might as well play it out, it's only 1 more move. Thanks for the game. Play again?\n\tantihero: for sure.\n\n\tantihero: might as well give you options. :)\n\tzoltar: Rezzizztanz ease few tile: ewe have been assimilated!\n\nHomeworlds Online (SDG# 3720)\nStarted: 2006.8.25, Ended: 2007.2.18\nParticipants: andylooney (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y3 B1 G3\n\n2) andylooney: Homeworld R2 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) andylooney: Build G1 Andylooney\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) andylooney: Trade G3 Y3 Andylooney\n\n7) zoltar: Build G1 Zoltar\n\n8) andylooney: Build Y1 Andylooney\n\n9) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n10) andylooney: Discover Y1 Andylooney G1 Collegepark\n\n11) zoltar: Trade G1 R1 Zoltar\n\n\nHomeworlds Online (SDG# 4108)\nStarted: 2006.8.26, Ended: 2006.8.28\nParticipants: zoltar (S), antihero (N)\nWinner: zoltar\n\n1) antihero: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld G3 B1 Y3\n\n3) antihero: Build G1 Antihero\n\n4) zoltar: Build Y1 Zoltar\n\tzoltar: oops, didn't want to make the star sizes symmetrical.\n\n5) antihero: Discover G1 Antihero Y3 Sun\n\n6) zoltar: Build Y1 Zoltar\n\n7) antihero: Build G1 Sun\n\n8) zoltar: Discover Y1 Zoltar G2 Earth\n\n9) antihero: Build G1 Sun\n\n10) zoltar: Build Y2 Zoltar\n\n11) antihero: Build G2 Antihero\n\n12) zoltar: Trade Y2 G2 Zoltar\n\n13) antihero: Trade G2 Y2 Antihero\n\tantihero: got im?\n\n14) zoltar: Discover G2 Zoltar Y2 Venus\n\n15) antihero: Discover G1 Sun B2 Neptune\n\n16) zoltar: Build Y2 Zoltar\n\n17) antihero: Move G1 Sun Antihero\n\n18) zoltar: Trade Y3 G3 Zoltar\n\n19) antihero: Discover G1 Antihero Y3 Alpha\n\n20) zoltar: Build Y3 Zoltar\n\n21) antihero: Build G2 Neptune\n\n22) zoltar: Discover G3 Zoltar B2 Mercury\n\tzoltar: You've got the opening lead again, but I will rely on my Zoltarian middle-game powers to pull through again!\n\n23) antihero: Discover Y2 Antihero B3 Pluto\n\n24) zoltar: Trade Y2 R2 Zoltar\n\n25) antihero: Trade G1 R1 Neptune\n\n26) zoltar: Build Y2 Earth\n\n27) antihero: Sacrifice G1 Alpha\nBuild Y3 Pluto\n\n28) zoltar: Trade Y3 R3 Zoltar\n\n29) antihero: Move Y3 Pluto Neptune\n\n30) zoltar: Build Y3 Zoltar\n\n31) antihero: Sacrifice G1 Sun\nBuild Y3 Pluto\n\n32) zoltar: Move Y3 Zoltar Mercury\n\n33) antihero: Build G1 Antihero\n\n34) zoltar: Sacrifice Y2 Earth\nMove G3 Mercury Pluto\nMove G3 Pluto Antihero\n\n35) antihero: Sacrifice Y3 Pluto\nMove G2 Neptune Pluto\nMove G2 Pluto Antihero\nMove Y2 Pluto Antihero\nCatastrophe Antihero Green\n\n36) zoltar: Build Y2 Earth\n\n37) antihero: Trade Y2 G2 Antihero\n\tzoltar: Party at antihero's! Party at antihero's! All ships invited. 3 bands, food, beer, and green Orion Star Trek belly dancers! It's gonna be a blast!\n\tantihero: bummer. I don't like this party.\n\n38) zoltar: Sacrifice Y2 Earth\nDiscover Y3 Mercury G3 Wormhole\nMove Y3 Wormhole Antihero\n\tantihero: "This party's over."\n\tzoltar: aw shukz -- eye waz juzz star tin two half fun!\n\n39) antihero: Build G1 Antihero\n\n40) zoltar: Sacrifice R2 Zoltar\nAttack G2 Antihero\nAttack G1 Antihero\n\n\tantihero: my midgame needs work. :)\n\tzoltar: Yep, you should have two colors in your homeworld whenever possible, for one. Good game. Play again?\n\nHomeworlds Online (SDG# 4112)\nStarted: 2006.8.26, Ended: 2006.8.29\nParticipants: zoltar (S), tesla (N)\nWinner: zoltar\n\n1) tesla: Homeworld B2 G3 Y3\n\n2) zoltar: Homeworld Y3 B1 G3\n\tzoltar: Before I move, you should undo your move and start with a 3-sized ship, such as a Y3. Why did you build a Y1?\n\tzoltar: Greetingz, from Greenbelt, Milky Way!\n\n3) tesla: Build Y1 Tesla\n\ttesla: Sorry, I have to play more\n\n4) zoltar: Build G1 Zoltar\n\n5) tesla: Discover Y3 Tesla G1 Tales\n\n6) zoltar: Build G1 Zoltar\n\n7) tesla: Build Y1 Tesla\n\n8) zoltar: Discover G1 Zoltar B2 Blueridge\n\tzoltar: btw, moving your 3-sized piece away from your homeworld is very dangerous. The reason is that if I move a 3-sized ship into your homeworld, you cannot capture it, even if you have red ships there, unless you have a 3-sized ship in your homeworld defending. So later in the game, having an opponent get a large ship into your homeworld which you cannot capture usually is fatal. In this case, I can't do anything for several moves, but when I get some pieces built and moved out, you will have to waste a move moving your Y3 back, unless you can quickly build another 3-sized ship there before I can threaten to move a big piece in.\n\n9) tesla: Trade Y1 B1 Tesla\n\n10) zoltar: Build G2 Blueridge\n\n11) tesla: Move B1 Tesla Tales\n\n12) zoltar: Trade G2 Y2 Blueridge\n\n13) tesla: Build Y1 Tales\n\n14) zoltar: Build G2 Blueridge\n\n15) tesla: Trade Y3 R3 Tales\n\n16) zoltar: Trade G2 R2 Blueridge\n\n17) tesla: Move R3 Tales Blueridge\n\n18) zoltar: Sacrifice Y2 Blueridge\nMove R2 Blueridge Tales\nMove R2 Tales Tesla\n\n19) tesla: Move Y1 Tales Blueridge\n\n20) zoltar: Attack Y1 Tesla\n\n\ttesla: ok, I think we finished the game\n\tzoltar: I sacrificed my Y2, and that sacrifice gives me two yellow powers, or two moves. If I sacrificed my G3, I could then make three grows at once. That's why I was saying that you had to return your 3-sized ship to your homeworld before I build some ships. Moving your Y3 out was terrible, and every move after that, moving your Y3 (or R3) back would have been the best move.\n\nHomeworlds Online (SDG# 4120)\nStarted: 2006.8.28, Ended: 2006.9.8\nParticipants: antihero (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 G1 B3\n\n2) antihero: Homeworld B3 Y1 G3\n\n3) zoltar: Build B1 Zoltar\n\n4) antihero: Build G1 Antihero\n\n5) zoltar: Trade B1 Y1 Zoltar\n\n6) antihero: Discover G1 Antihero Y2 Huntington\n\n7) zoltar: Build Y1 Zoltar\n\n8) antihero: Build G1 Antihero\n\n9) zoltar: Build Y2 Zoltar\n\n10) antihero: Build G2 Antihero\n\n11) zoltar: Trade Y2 R2 Zoltar\n\n12) antihero: Trade G2 R2 Antihero\n\n13) zoltar: Move R2 Zoltar Huntington\n\n14) antihero: Build G2 Antihero\n\n15) zoltar: Attack G1 Huntington\n\n16) antihero: Discover G2 Antihero B2 Arlington\n\n17) zoltar: Build Y2 Zoltar\n\n18) antihero: Build G2 Arlington\n\n19) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n20) antihero: Trade G2 Y2 Arlington\n\n21) zoltar: Build Y3 Greenbelt\n\n22) antihero: Build Y3 Arlington\n\n23) zoltar: Build Y3 Greenbelt\n\n24) antihero: Sacrifice Y3 Arlington\nMove Y2 Arlington Zoltar\nMove Y2 Zoltar Greenbelt\nDiscover G1 Antihero B2 Smith\nCatastrophe Greenbelt Yellow\n\n25) zoltar: Build G2 Huntington\n\n26) antihero: Build G2 Smith\n\n27) zoltar: Build G3 Huntington\n\n28) antihero: Build R1 Antihero\n\n29) zoltar: Build R1 Huntington\n\tzoltar: sigh -- I figured you'd go jihadist on me!\n\n30) antihero: Trade R1 Y1 Antihero\n\n31) zoltar: Discover Y1 Zoltar Y2 Melloyellow\n\n32) antihero: Move Y1 Antihero Smith\n\n33) zoltar: Sacrifice G3 Huntington\nBuild G3 Huntington\nBuild Y3 Zoltar\nBuild Y3 Melloyellow\n\n34) antihero: Build Y3 Smith\n\n35) zoltar: Discover Y3 Melloyellow G3 Greenbelt\n\n36) antihero: Discover G2 Smith B1 Blue\n\n37) zoltar: Move G3 Huntington Blue\n\n38) antihero: Sacrifice G2 Blue\nBuild G2 Smith\nBuild R1 Antihero\n\n39) zoltar: Move R2 Huntington Blue\n\n40) antihero: Trade R1 B1 Antihero\n\n41) zoltar: Sacrifice G2 Huntington\nBuild G2 Blue\nBuild B1 Zoltar\n\n42) antihero: Build R1 Antihero\n\n43) zoltar: Move B1 Zoltar Huntington\n\n44) antihero: Sacrifice Y3 Smith\nMove G1 Smith Zoltar\nMove G2 Smith Zoltar\nMove Y1 Smith Zoltar\n\tantihero: sorry about that, was gone for the weekend.\n\n45) zoltar: Attack Y1 Zoltar\n\n46) antihero: Sacrifice R2 Antihero\nAttack Y1 Zoltar\nAttack Y2 Zoltar\n\n47) zoltar: Sacrifice R2 Blue\nAttack Y2 Zoltar\nAttack Y1 Zoltar\n\n48) antihero: Sacrifice G2 Arlington\nBuild G2 Zoltar\nPass\nCatastrophe Zoltar Green\n\n49) zoltar: Build Y3 Greenbelt\n\n50) antihero: Build R1 Antihero\n\n51) zoltar: Sacrifice G3 Blue\nBuild B2 Huntington\nBuild R2 Huntington\nBuild B2 Zoltar\n\tzoltar: nah -- I guess I can't ignore your annoying jihadists!\n\n52) antihero: Move R1 Antihero Melloyellow\n\n53) zoltar: Sacrifice Y3 Greenbelt\nMove B2 Huntington Antihero\nMove B1 Huntington Antihero\nMove Y1 Melloyellow Antihero\nCatastrophe Antihero B\n\n\tzoltar: Of course I could have stopped to capture the r1 in melloyello for 'free' by sacking my r1 in huntington, but no need to waste a move, when checkmate is forced...\n\tzoltar: Thanx for the game, Earthling. Play again?\n\tantihero: I think I need to play some less competitive games and figure things out a bit more before I keep playing you. Good game, though.\n\nHomeworlds Online (SDG# 4125)\nVariants: "Unrated"\nStarted: 2006.8.28, Ended: 2006.10.10\nParticipants: Keith (S), antihero (N)\nWinner: antihero\n\n1) antihero: Homeworld G3 B2 Y3\n\tKeith: Hello again. I think unrated will work out better.\n\n2) Keith: Homeworld Y1 B2 G3\n\n3) antihero: Build Y1 Antihero\n\tantihero: hehe. I won't lose so stupidly :)\n\n4) Keith: Build G1 Keith\n\tKeith: Ha! I knew you were going to make that move. ;-)\n\n5) antihero: Trade Y1 G1 Antihero\n\n6) Keith: Trade G1 Y1 Keith\n\n7) antihero: Build G1 Antihero\n\n8) Keith: Build G1 Keith\n\tantihero: alright, I'm headed to bed now. I'll see you tomorra'.\n\tKeith: Looking forward to it.\n\n9) antihero: Discover G1 Antihero Y1 Huntington\n\n10) Keith: Discover Y1 Keith G3 Notfar\n\n11) antihero: Build G2 Huntington\n\n12) Keith: Build Y2 Notfar\n\n13) antihero: Build Y2 Antihero\n\n14) Keith: Trade G1 R1 Keith\n\n15) antihero: Trade Y2 R2 Antihero\n\n16) Keith: Build R1 Keith\n\n17) antihero: Build Y2 Antihero\n\n18) Keith: Build G1 Keith\n\n19) antihero: Build G2 Antihero\n\n20) Keith: Trade G1 B1 Keith\n\n21) antihero: Trade G1 B1 Antihero\n\n22) Keith: Move B1 Keith Notfar\n\n23) antihero: Move B1 Antihero Huntington\n\n24) Keith: Trade Y1 G1 Notfar\n\n25) antihero: Discover G1 Huntington Y3 Close\n\n26) Keith: Move R1 Keith Notfar\n\n27) antihero: Move G2 Huntington Notfar\n\n28) Keith: Sacrifice Y2 Notfar\nMove G1 Notfar Huntington\nMove R1 Notfar Huntington\n\n29) antihero: Sacrifice Y2 Antihero\nMove G1 Close Keith\nMove G2 Notfar Keith\n\n30) Keith: Trade G3 R3 Keith\n\n31) antihero: Trade G1 R1 Keith\n\n32) Keith: Attack G2 Keith\n\n33) antihero: Sacrifice G2 Antihero\nBuild R2 Antihero\nBuild R2 Keith\nCatastrophe Keith Red\n\tKeith: Well I am in deep trouble. If I convert the g2 you sacrifice a green, grow a red and boom. Game over. If I convert the r1 you sacrifice your y3, move a red in and boom, game over. \n\tKeith: No,wait. Deep trouble yes but I could still have the g2.\n\n34) Keith: Build R1 Huntington\n\n35) antihero: Sacrifice R2 Antihero\nAttack R1 Huntington\nAttack R1 Huntington\n\n36) Keith: Build G1 Keith\n\n37) antihero: Attack G1 Huntington\n\n38) Keith: Trade G1 R1 Keith\n\n39) antihero: Build R2 Antihero\n\n40) Keith: Build R2 Keith\n\n41) antihero: Discover R1 Huntington Y3 Bigstar\n\n42) Keith: Move R2 Keith Bigstar\n\n43) antihero: Build R3 Huntington\n\n44) Keith: Build R3 Keith\n\n45) antihero: Sacrifice Y3 Antihero\nMove R1 Huntington Bigstar\nMove R1 Bigstar Keith\nMove R1 Bigstar Keith\nCatastrophe Keith Red\n\n46) Keith: Build G1 Keith\n\tKeith: Whew... back in the 3-pointer game, at least for a little bit.\n\n47) antihero: Trade R2 Y2 Antihero\n\tantihero: I don't know if that was a wise move, but it seems necessary. Whaddya think?\n\tKeith: So much for having a 3-pointer. That was an expensive move for you but a good move. You can afford the loss, still have a 3-pointer, and any 2-pointer I have is not threat to your home system. \n\tKeith: It also manipulates the stash to put me very very far away from regaining a 3-pointer.\n\n48) Keith: Sacrifice G2 Keith\nBuild R1 Bigstar\nBuild R1 Bigstar\n\n49) antihero: Build Y1 Antihero\n\n50) Keith: Move R1 Bigstar Keith\n\n51) antihero: Sacrifice Y2 Antihero\nMove R3 Huntington Bigstar\nMove R3 Bigstar Keith\n\tantihero: I may be messing this up, but I think I'm gonna get you here. Please let me know if I do anything exceptionally stupid. Feel free to respond to it anyways, but I'd like to get better here.\n\tKeith: Sacrifice the y2, move the r3 to my homeworld and then it is just a matter of time? Once a size 2 or 3 ship shows up in my homeworld I am done for. I think I can slow down your getting such a ship there.\n\tKeith: No I can't but I want to try this.\n\n52) Keith: Build R1 Keith\n\n53) antihero: Attack G1 Keith\n\n54) Keith: Attack G1 Keith\n\n55) antihero: Sacrifice R2 Antihero\nAttack G1 Keith\nAttack R1 Keith\n\n56) Keith: Sacrifice R2 Bigstar\nAttack G1 Keith\nAttack R1 Keith\n\n57) antihero: Move R3 Keith Notfar\n\n58) Keith: Trade B1 G1 Notfar\n\tantihero: hmmm i'm running out of ideas here\n\tKeith: I think you started your finish me off attack just a little to soon. You needed another red or green or something. It has been a good practice game. I am learning. Intersting game you have going with Uglyfoot.\n\tKeith: It does not look like we can agree to a draw.\n\tantihero: hmm? It doesn't?\n\n59) antihero: Attack G1 Notfar\n\tKeith: Cannon has an offer draw button under the movement entry box. None here.\n\n60) Keith: Move R1 Bigstar Huntington\n\tantihero: oh yeah.\n\n61) antihero: Build Y2 Antihero\n\n62) Keith: Move R1 Huntington Antihero\n\n63) antihero: Trade Y2 R2 Antihero\n\tKeith: I am having trouble deciding whether to move my r1 to your homeworld and try to make things difficult for you or stay in huntington and attack a ship.\n\n64) Keith: Build R2 Antihero\n\n65) antihero: Attack R2 Antihero\n\tantihero: this could go poorly...\n\tKeith: I am trying to force you to give up that very threatening r3.\n\n66) Keith: Build R2 Antihero\nCatastrophe Antihero Red\n\n67) antihero: Build Y2 Antihero\n\tKeith: '''and it is not going to work. I should have taken the easy ship grap in huntinton. Now if I built a red and catstrophe you end up with an y1 at your homeworld jus like before and I have lost an r1.\n\n68) Keith: Build G2 Keith\n\n69) antihero: Build Y2 Antihero\n\n70) Keith: Trade G2 Y2 Keith\n\n71) antihero: Trade Y1 R1 Antihero\n\n72) Keith: Build R2 Keith\n\n73) antihero: Build G2 Huntington\n\n74) Keith: Build G2 Keith\n\n75) antihero: Sacrifice Y2 Antihero\nMove R3 Notfar Huntington\nMove R3 Huntington Antihero\n\n76) Keith: Move R2 Keith Notfar\n\n77) antihero: Sacrifice G1 Notfar\nBuild B1 Huntington\n\tantihero: retreat!\n\n78) Keith: Build R2 Notfar\n\n79) antihero: Trade B1 Y1 Huntington\n\tKeith: hmmm... I do not see what you are up to yet.\n\n80) Keith: Sacrifice Y2 Keith\nMove R2 Notfar Huntington\nMove R2 Notfar Huntington\n\tantihero: that's because I don't know what I'm doing :)\n\n81) antihero: Discover G2 Huntington Y3 Sol\n\tKeith: Then I would say that learning more about end games is a good way to boost your overall Homeworlds ability.\n\n82) Keith: Move R2 Huntington Antihero\n\n83) antihero: Sacrifice R1 Antihero\nAttack R2 Antihero\n\n84) Keith: Attack G1 Huntington\n\tantihero: oooooh\n\n85) antihero: Discover Y1 Huntington G3 Archives\n\n86) Keith: Build R1 Huntington\n\tantihero: better, I think.\n\tKeith: That is better. I thought I was headed for getting rid of your r3. I simply lost an r2 unit instead.\n\n87) antihero: Discover R2 Antihero G1 Shaw\n\n88) Keith: Discover G1 Keith G3 Midworld\n\n89) antihero: Build Y2 Archives\n\n90) Keith: Build G2 Huntington\n\n91) antihero: Build R2 Shaw\n\n92) Keith: Move G1 Huntington Antihero\n\n93) antihero: Attack G1 Antihero\n\n94) Keith: Move R1 Huntington Antihero\n\n95) antihero: Attack R1 Antihero\n\n96) Keith: Build R3 Huntington\n\n97) antihero: Build R3 Shaw\n\tantihero: hmmm... some master plan I'm not seeing...\n\n98) Keith: Move R2 Huntington Antihero\n\tantihero: wait, I get it, never mind.\n\tKeith: A clumsy master plan at best. I had intended to sacrifice the green at Midworld releasing the g3 to the bank and building the g3 using the sacrifice. Except that I put a g1 there instead of the g2 I needed.\n\tKeith: I am just sort of giving you a mild density problem in the antihero system. I need another green, red, or even a y2 to make real trouble.\n\n99) antihero: Sacrifice R1 Antihero\nAttack R2 Antihero\n\n100) Keith: Attack B1 Huntington\n\n101) antihero: Build Y2 Antihero\n\n102) Keith: Move R3 Huntington Sol\n\n103) antihero: Sacrifice Y2 Antihero\nMove R2 Shaw Midworld\nMove R2 Midworld Keith\n\n104) Keith: Attack R2 Keith\n\n105) antihero: Sacrifice Y2 Antihero\nMove R2 Shaw Midworld\nMove R2 Midworld Keith\nCatastrophe Keith Red\n\n106) Keith: Move R3 Sol Keith\n\n107) antihero: Trade R2 Y2 Antihero\n\n108) Keith: Sacrifice G2 Huntington\nBuild B1 Huntington\nBuild B1 Huntington\n\tKeith: Ouch.\n\n109) antihero: Build Y2 Archives\n\n110) Keith: Move B1 Huntington Antihero\n\n111) antihero: Move Y1 Archives Keith\n\n112) Keith: Attack Y1 Keith\n\n113) antihero: Sacrifice G2 Sol\nBuild Y3 Antihero\nBuild Y3 Antihero\n\n114) Keith: Sacrifice G2 Keith\nBuild B2 Antihero\nBuild B3 Antihero\n\n115) antihero: Sacrifice Y2 Antihero\nMove Y2 Archives Keith\nMove Y2 Archives Keith\nCatastrophe Keith Yellow\nCatastrophe Antihero Blue\n\n116) Keith: Trade B1 R1 Huntington\n\n117) antihero: Sacrifice Y3 Antihero\nMove R3 Antihero Keith\nMove Y3 Antihero Keith\nMove R3 Shaw Antihero\n\n118) Keith: Attack R3 Keith\n\tantihero: wow that was a hell of a turn. Not often do you get to destroy your own homeworld and your opponent's at the same time!\n\tKeith: That was a quick way to go through, what, 9 ships? I have enjoyed this game at lot. \n\n119) antihero: Sacrifice R3 Antihero\nAttack R3 Keith\nAttack R3 Keith\nPass\n\n\tantihero: good game! glad you didn't resign me. :)\n\tKeith: You deserved it. I did make you earn it, look how many moves are in the game report.\n\nHomeworlds Online (SDG# 4124)\nStarted: 2006.8.30, Ended: 2006.12.4\nParticipants: Tuxhedoh (S), Keith (W), zoltar (N), antihero (E)\nWinner: antihero\n\n1) zoltar: Homeworld B2 Y1 G3\n\n2) antihero: Homeworld G3 B1 Y3\n\n3) Tuxhedoh: Homeworld B2 Y3 G3\n\n4) Keith: Homeworld Y3 B2 G3\n\n5) zoltar: Build G1 Zoltar\n\n6) antihero: Build Y1 Antihero\n\n7) Tuxhedoh: Build G1 Tuxhedoh\n\n8) Keith: Build G1 Keith\n\n9) zoltar: Trade G1 Y1 Zoltar\n\n10) antihero: Build Y1 Antihero\n\n11) Tuxhedoh: Build G1 Tuxhedoh\n\n12) Keith: Trade G1 Y1 Keith\n\n13) zoltar: Build Y2 Zoltar\n\n14) antihero: Discover Y1 Antihero G2 Jungle\n\n15) Tuxhedoh: Trade G1 B1 Tuxhedoh\n\n16) Keith: Build Y2 Keith\n\n17) zoltar: Trade Y1 R1 Zoltar\n\n18) antihero: Build Y1 Jungle\n\n19) Tuxhedoh: Build G1 Tuxhedoh\n\n20) Keith: Build G1 Keith\n\n21) zoltar: Build Y2 Zoltar\n\n22) antihero: Trade Y1 R1 Antihero\n\n23) Tuxhedoh: Trade G1 R1 Tuxhedoh\n\n24) Keith: Trade Y1 R1 Keith\n\tKeith: Well, if everyone else is going to pull a gun I guess I had better too.\n\n25) zoltar: Discover Y2 Zoltar G3 Forest\n\n26) antihero: Build Y1 Antihero\n\n27) Tuxhedoh: Discover B1 Tuxhedoh G1 Tundra\n\n28) Keith: Discover G1 Keith Y1 Mountains\n\n29) zoltar: Build Y2 Zoltar\n\n30) antihero: Discover Y1 Jungle B3 Plains\n\n31) Tuxhedoh: Build B1 Tundra\n\n32) Keith: Build G1 Mountains\n\n33) zoltar: Move Y2 Zoltar Plains\n\n34) antihero: Trade Y1 B1 Antihero\n\n35) Tuxhedoh: Trade B1 Y1 Tundra\n\n36) Keith: Sacrifice Y2 Keith\nMove G1 Mountains Tuxhedoh\nMove G1 Mountains Tuxhedoh\nCatastrophe Tuxhedoh Green\n\tKeith: Forest, jungle, mountains, plains, tundra = Titan/Colossus players in the group?\n\tKeith: There really is no incentive to attack in this Last Man Standing variant like there is in the Sinister variant. If I lose a ship in the process one opponent I have improved the position of the other two players against the person I attacked and myself.\n\tKeith: That should read "If I lose a ship in the process of attacking one opponent...."\n\tzoltar: Yes, and the Sinister has problems as well. I spoke to the awesome creator of Homeworlds, John Cooper, who said he is still working on an acceptable variation to make the 4 person game work, and that he's not pleased with any of the current variants.\n\tKeith: Any word on what the problems with Sinister are. Other than the hazard of finding Zoltar on your left, or worse, your right?\r\n\r\nHere goes an attack then. Sorry Tuxhedoh.\n\n37) zoltar: Sacrifice Y2 Plains\nMove Y2 Forest Tundra\nMove Y2 Tundra Tuxhedoh\n\n38) antihero: Build Y1 Antihero\n\tzoltar: In Sinister, as soon as one player is weak, the others gang up on the one who can win, and the game can go on endlessly.\n\n39) Tuxhedoh: Build Y2 Tundra\n\n40) Keith: Build G1 Keith\n\tantihero: I've played some three, four and five player homeworlds before, and we always had the same problem. Clearly, I'm not especially good at the game, but it usually came down to one person throwing themselves into an attack on someone else and leaving themselves weak. If that _didn't_ happen, then the remaining players would quickly gang up on the potential winner. It was still fun, though.\n\tTuxhedoh: This is my first 4 player attempt, and I've never quite gotten the hang of sacrificing... or moving from deployment/building/discovering to midgame-attacking etc... but I keep plodding away hoping that I'l learn, I really want the replay feature, it'd be especially handy for 4 players. Of course, being the victim of the first attack has severely hampered me.\n\n41) zoltar: Sacrifice R1 Zoltar\nAttack R1S Tuxhedoh\n\tzoltar: I lost my first few games. Then I went into the archive, set up my IceHouse pieces (you can make your own facsimiles if you don't own a set) and played over every game by the best player (TwoShort). You can't play over the first few of them because of a flaw which didn't record what the starting stars in the homeworlds were, but after the point that that was fixed, I went over all of his games, and of the games of the other two good players (AndyLooney and Jesse). After that, I started to win most games against everyone else, but I've only gotten lucky against Andy Looney and TwoShort once, and they still beat me almost every single game. But I still win the other 90% of my games. Except today -- where a beginner who is an experienced gamer is kicking my butt in his very first game of Homeworlds!\n\tKeith: Tuxhedoh: I do feel bad about taking advantage of an opening and discouraging you. I had a Homeworlds game earlier that was so discouraging that I stopped playing Homeworlds for a while.\r\n\r\nIn my case I learned Homeworlds by playing two experienced players, one of them TwoShort, in unrated games where they did not rush to victory over me and made many comments about what they were doing with their moves and why.\n\tKeith: Tuxhedoh: FWIW After your move Zoltar is in position to eliminate you from the game by sacrificing his r1 and attacking your r1 with his y2 at your homeworld. The only way for you to survive past this turn is to undo your turn and build a second r1 at your homeworld.\n\tzoltar: But Tuxhedoh has neither green technology in his homeworld nor a green piece to sacrifice. He can however move a piece back to his homeworld. It doesn't do as much good as if he could build another red piece though.\n\tKeith: Duh, right, no green. \n\tTuxhedoh: Thanks for the tips everyone...\r\nI hadn't thought through other's turns, but had intended to move my y2 back and trade it for an r2. But that's at least 2 moves away. \n\tKeith: That would take too long. I have not moved so you could undo if you want to. FWIW I had no plans to finish you off.\n\tzoltar: Unfortunately, Keith's move made Tuxedo's position so weak that I could finish off Tuxedo the next move, so it made the most sense to do so, as the cost is very minimal.\n\tzoltar: The only problem will be that antihero will have a very strong position, and control over most of the yellow industry, as Keith and I both weakened ourselves to take out Tuxhedoh.\n\tKeith: I guess Tuxhedoh is not going to take the undo opportunity.\n\n42) antihero: Build Y2 Jungle\n\n43) Keith: Build R1 Keith\n\n44) zoltar: Discover Y2 Zoltar G3 Forest\n\tKeith: I did not realize that Tuxhedoh's other ships would stay in the game and not return to the stash.\n\n45) antihero: Trade Y1 G1 Antihero\n\n46) Keith: Move R1 Keith Tundra\n\n47) zoltar: Build G1 Zoltar\n\n48) antihero: Move B1 Antihero Jungle\n\n49) Keith: Attack Y1S Tundra\n\n50) zoltar: Trade Y2 G2 Tuxhedoh\n\n51) antihero: Discover G1 Antihero Y2 Desert\n\n52) Keith: Attack B1S Tundra\n\n53) zoltar: Build R1 Tuxhedoh\n\n54) antihero: Build R2 Antihero\n\n55) Keith: Build R2 Tundra\n\n56) zoltar: Trade R1 Y1 Tuxhedoh\n\n57) antihero: Build B1 Jungle\n\n58) Keith: Move Y1 Tundra Forest\n\n59) zoltar: Trade G1 R1 Zoltar\n\n60) antihero: Discover G1 Desert Y3 Sol\n\n61) Keith: Attack Y2S Tundra\n\n62) zoltar: Build R2 Tuxhedoh\n\n63) antihero: Move R2 Antihero Jungle\n\n64) Keith: Move R1 Tundra Tuxhedoh\n\n65) zoltar: Sacrifice R1 Tuxhedoh\nAttack Y1W Forest\n\n66) antihero: Move Y1 Jungle Forest\n\n67) Keith: Attack Y1N Tuxhedoh\n\n68) zoltar: Discover Y1 Forest G1 Oasis\n\n69) antihero: Build Y2 Forest\n\n70) Keith: Sacrifice Y1 Tuxhedoh\nMove R1 Tuxhedoh Oasis\n\n71) zoltar: Move Y2 Forest Oasis\n\n72) antihero: Move B1 Jungle Sol\n\n73) Keith: Attack Y1N Oasis\n\n74) zoltar: Sacrifice R2 Tuxhedoh\nAttack Y1W Oasis\nAttack R1W Oasis\n\n75) antihero: Move Y1 Forest Oasis\n\n76) Keith: Discover Y2 Tundra G3 Behemoth\n\n77) zoltar: Move Y2 Oasis Plains\n\n78) antihero: Sacrifice R2 Jungle\nAttack Y1N Oasis\nAttack R1N Oasis\n\n79) Keith: Build Y1 Behemoth\n\n80) zoltar: Discover Y2 Plains G1 Hills\n\n81) antihero: Move B1 Jungle Forest\n\n82) Keith: Move Y1 Behemoth Tundra\n\n83) zoltar: Build G2 Zoltar\n\n84) antihero: Move G1 Sol Zoltar\n\tKeith: Let me re-toss out a question here. Am I in the presence of Titan/Colossus players?\n\n85) Keith: Move Y2 Behemoth Zoltar\n\tantihero: nope, not me. just picking random names :)\n\tzoltar: Me neither. I've seen Titan, but never have played.\n\n86) zoltar: Trade G3 R3 Zoltar\n\n87) antihero: Move Y1 Plains Zoltar\n\tKeith: Oh well. Titan is one of my old favorites. We just happened to name a lot of the tactical battlemap terrains.\n\tKeith: My avatar in the forums is from Titan. (A behemoth).\n\n88) Keith: Trade Y2 R2 Zoltar\n\n89) zoltar: Sacrifice R3 Zoltar\nAttack R2W Zoltar\nAttack G1E Zoltar\nAttack Y1E Zoltar\n\tzoltar: looks like I may be toast...\n\n90) antihero: Move Y2 Forest Zoltar\n\tKeith: And you have made us both work hard together to bring you to that point.\n\tKeith: Zoltar, why have you not joined the Homeworlds ladder yet?\n\n91) Keith: Discover Y1 Tundra Y3 Tower\n\n92) antihero: Trade Y2 R2 Zoltar\n\tzoltar: Because I don't even know what a Homeworlds ladder is. How do I join?\n\tKeith: Top of this page. Click on ladders. I recommend checking out the forums link too.\n\tKeith: In retrospect antihero and I would have been much better off if we had both flipped a ship red.\r\n\r\nZoltar, did you find the forum sections about the ladder system? Do you understand how it works?\n\tzoltar: Actually, your flipping your ship red was your downfall! You had two yellows in the system, so you needed to simply build a yellow and blow up my star.\r\n\r\nAnd yes I found it and signed up -- I'll figure out how it works as I go, but I've got the basics: challenge the highest person you are allowed to, and beat them, and then repeat the process.\n\tKeith: Flipping one red was my downfall. I meant that antihero and I should have both flipped to red knocking out your r3. Our first plan was to rush in yellow and catastrophe followed by blue. We did not consult before the last turn and the plan twisted to attacking ship colors and then we went after different colors. D'oh!\n\tzoltar: Well you managed to knock out my R3 as I had to sac it to survive. Were there more 3-sized ships flying around the board, that would've been enough to kill me.\n\n93) Keith: Build G2 Keith\n\n94) antihero: Build Y2 Jungle\n\n95) Keith: Discover G2 Keith R1 Eye\n\tzoltar: Since I was left crippled, I figured if anyone attacked a ship of mine I'd save you the trouble and resign\n\tKeith: Uhm... okay. I expected it to take a lot more work and a lot more turns to take you out, and then you might find another mistake (on my part) or opening.\r\n\r\nAs it is antihero has me vastly outnumbered and has the only ship at Zoltar and will easily pick up quite a few more. Your resignation is a worst case scenerio for me.\n\tzoltar: What? when you move your Y1 from Tower to Zoltar next move, which you were going to do even if I didn't resign, you will blow up his ship and the yellow star. I was dead in the water. Only if you two, both knowing that, ignored me and went after each other would I have considered staying in the game.\n\tzoltar: In multiple player homeworlds I always resign if two players gang up on me, and try to blow up my stars with the ships of the weaker of the two in them if I can. \n\n96) antihero: Attack G2N Zoltar\n\n97) Keith: Trade R2 Y2 Tundra\n\n98) antihero: Move B1 Sol Oasis\n\n99) Keith: Build G2 Eye\n\n100) antihero: Discover G2 Zoltar Y3 Keep\n\n101) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild R2 Keith\nBuild Y2 Tundra\n\n102) antihero: Build G3 Keep\n\n103) Keith: Move R2 Keith Oasis\n\n104) antihero: Attack G1N Zoltar\n\n105) Keith: Attack R1E Oasis\n\n106) antihero: Sacrifice G3 Keep\nBuild G3 Zoltar\nBuild G3 Keep\nBuild R2 Antihero\n\tKeith: So much board space, so many pieces, so many of then yours!\n\n107) Keith: Sacrifice Y2 Tundra\nMove G2 Eye Keep\nMove G2 Eye Keep\nCatastrophe Keep Green\n\n108) antihero: Move Y2 Jungle Hills\n\n109) Keith: Build Y2 Tundra\n\n110) antihero: Build Y3 Antihero\n\n111) Keith: Attack Y1E Oasis\n\n112) antihero: Move G3 Zoltar Tower\n\n113) Keith: Attack Y1E Oasis\n\n114) antihero: Move G3 Tower Oasis\n\n115) Keith: Sacrifice Y2 Tundra\nMove Y1 Oasis Jungle\nMove Y1 Jungle Antihero\n\n116) antihero: Discover Y3 Antihero G2 Another\n\n117) Keith: Build Y2 Antihero\n\tantihero: hey I'm just trying to recover from two days of near-inactivity. You can't be making moves that bump your game back to the top of my queue when I'm only half done! :)\n\n118) antihero: Trade Y3 B3 Antihero\n\tKeith: Awww thats because you have a social life and I am pathetically sitting around waiting for someone in one of my games to make a move. ;)\n\n119) Keith: Sacrifice R2 Oasis\nAttack R2E Antihero\nAttack R1E Antihero\n\n120) antihero: Sacrifice R2 Zoltar\nAttack Y2W Antihero\nAttack R2W Antihero\n\n121) Keith: Sacrifice G3 Keith\nBuild Y3 Oasis\nBuild R1 Antihero\nBuild R2 Antihero\nCatastrophe Antihero Red\n\n122) antihero: Trade Y2 R2 Antihero\n\n123) Keith: Move Y3 Oasis Keith\n\tKeith: That should get your attention.\n\n124) antihero: Discover Y3 Another B1 Uhoh\n\tKeith: Well darn.\n\tantihero: oh you still have good moves...\n\n125) Keith: Trade Y3 R3 Keith\n\n126) antihero: Sacrifice Y2 Jungle\nMove G3 Oasis Keith\nMove Y3 Uhoh Keith\n\tKeith: I don't have time to grab the g3 in Oasis.\n\n127) Keith: Attack G3E Keith\n\n128) antihero: Sacrifice R2 Antihero\nAttack G3W Keith\nAttack R3W Keith\n\n129) Keith: Sacrifice Y2 Tundra\nDiscover B1 Tundra B2 Stopantihero\nMove B1 Stopantihero Antihero\n\n130) antihero: Sacrifice R3 Keith\nAttack G1W Keith\nAttack R1W Keith\nPass\n\tKeith: Where did you learn that trick?\n\tKeith: Hmmm.... I don't see where you are going with this. One of us has a hole in their logic. Hope its you.\n\n\tantihero: yeah it was kind of weird with so many pieces. Not bad, though. I think it really means that once you have an advantage it's easier to hold it.\n\nHomeworlds Online (SDG# 4113)\nStarted: 2006.8.30, Ended: 2006.9.8\nParticipants: Tuxhedoh (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) Tuxhedoh: Homeworld B1 G3 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) Tuxhedoh: Build Y1 Tuxhedoh\n\tzoltar: Greetings from Greenbelt, Milky Way\n\n5) zoltar: Trade G1 Y1 Zoltar\n\tTuxhedoh: And greetings to you.\n\n6) Tuxhedoh: Trade Y1 G1 Tuxhedoh\n\n7) zoltar: Build G1 Zoltar\n\n8) Tuxhedoh: B Y1 Tuxhedoh\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) Tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n11) zoltar: Build G1 Zoltar\n\n12) Tuxhedoh: Build Y1 Tuxhedoh\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) Tuxhedoh: Build G1 Tuxhedoh\n\n15) zoltar: Build G1 Zoltar\n\n16) Tuxhedoh: Discover G1 Tuxhedoh R2 Barney\n\n17) zoltar: Discover G1 Zoltar Y1 Yellowstone\n\n18) Tuxhedoh: Build G2 Tuxhedoh\n\n19) zoltar: Build G2 Zoltar\n\n20) Tuxhedoh: Move Y1 Tuxhedoh Barney\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowstone\n\n22) Tuxhedoh: Move G1 Barney Yellowstone\n\n23) zoltar: Sacrifice R1 Zoltar\nAttack G1 Yellowstone\n\tTuxhedoh: doh\n\n24) Tuxhedoh: Build Y2 Tuxhedoh\n\n25) zoltar: Move G3 Yellowstone Barney\n\n26) Tuxhedoh: Move Y1 Barney Yellowstone\n\tzoltar: I forgot I could capture it!\n\tTuxhedoh: i've never quite gotten my head around sacrificing.... but you seem to be using it quite effectively\n\tTuxhedoh: and have me locked out of green.\n\n27) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild G2 Barney\n\n28) Tuxhedoh: Build R1 Tuxhedoh\n\n29) zoltar: Trade G2 R2 Zoltar\n\tzoltar: Yes, I've built a green 'factory'.\n\n30) Tuxhedoh: Build Y2 Tuxhedoh\n\n31) zoltar: Discover Y1 Zoltar B1 Blueridge\n\tTuxhedoh: you got all kinds of tricks... with that sacrifice\n\n32) Tuxhedoh: Trade Y2 B2 Tuxhedoh\n\n33) zoltar: Sacrifice G3 Barney\nBuild Y2 Blueridge\nBuild Y3 Blueridge\nBuild Y3 Zoltar\n\tzoltar: That one I call the "teleport". You can teleport a g2 to another green base for free when you do a build.\n\tzoltar: The third green trick is called "the investment", which would be where I'd stick a g1 or g2 on a lone 3-sized star, such as a Y3 or R3, and then when that color is used up, I sac the green ship and build the 3-sized ship in a crucial place (with the g2 sac, you also get to build the g2 back again).\n\tTuxhedoh: and this is where I flake out... I have no idea what to do next.\n\n34) Tuxhedoh: Trade B2 R2 Tuxhedoh\n\n35) zoltar: Sacrifice Y3 Blueridge\nMove R2 Zoltar Blueridge\nMove R2 Blueridge Barney\nMove R2 Barney Tuxhedoh\nCatastrophe Tuxhedoh R\n\n36) Tuxhedoh: Discover G1 Tuxhedoh B2 Leroy\n\n37) zoltar: Discover Y1 Blueridge B2 Bluemountains\n\n38) Tuxhedoh: Move Y2 Tuxhedoh Leroy\n\n39) zoltar: Sacrifice G1 Yellowstone\nBuild Y3 Bluemountains\n\n40) Tuxhedoh: Build G1 Leroy\n\tTuxhedoh: any suggestions for recovery?\n\tzoltar: well, after my sacrifice, I'm ahead some extra pieces, and I'm going to threaten to blow up your green star, so you need to build ships as fast as possible and avoid more catastrophes.\n\tzoltar: moving a green ship out so that you could build more green as well as avoid a green star catastrophe would be a good idea. And as soon as I get a red ship again, you will need one as well.\n\n41) zoltar: Build B3 Zoltar\n\tTuxhedoh: Sorry for my abscence...\n\n\tTuxhedoh: in order to get any of those blues? I have to trade my y3 in huh?\n\tzoltar: Yep, which probably would be giving me the y3...\n\tTuxhedoh: well fart. It's my inclination to give up, mostly cause I dont' know what to do next... I'm willing to hang around if you have any pointers.\n\tzoltar: As someone who myself gets easily discouraged and tends to resign too soon (usually by intentionally blowing up my system to go out with a bang), I would be a hypocrite to tell you to endure more. If you want to resign and start over, that might be better, unless you want pointers on how to bully someone when you've got them totally outnumbered (for example, you get two Y3's set up so you can sac them on two consecutive turns and invade and take out both stars one after another). Here, I'm going to move a blue ship out, then sac my g2 and build the other b3's, then exchange them for r3's, then build b3's again, and so forth, and it's hard for you to stop me.\n\nHomeworlds Online (SDG# 4130)\nStarted: 2006.8.31, Ended: 2006.9.5\nParticipants: tesla (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y1 G3\n\ttesla: Hi, I hope playing better than last time. I've read the rules again\n\n2) tesla: Homeworld G3 B2 Y3\n\tzoltar: OK -- good luck!\n\n3) zoltar: Build G1 Zoltar\n\n4) tesla: Build Y1 Tesla\n\n5) zoltar: Trade G3 Y3 Zoltar\n\n6) tesla: Trade Y1 G1 Tesla\n\n7) zoltar: Build Y1 Zoltar\n\n8) tesla: Build Y1 Tesla\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) tesla: Discover Y1 Tesla G1 Salte\n\n11) zoltar: Build G2 Zoltar\n\n12) tesla: Build G2 Tesla\n\n13) zoltar: Discover G2 Zoltar Y2 Bananas\n\n14) tesla: Trade G2 B2 Tesla\n\n15) zoltar: Build G2 Bananas\n\n16) tesla: Move B2 Tesla Salte\n\n17) zoltar: Move G2 Bananas Salte\n\n18) tesla: Move G1 Tesla Salte\n\n19) zoltar: Build G2 Salte\nCatastrophe Salte G\n\n20) tesla: Build Y1 Tesla\n\n21) zoltar: Build G1 Bananas\n\n22) tesla: Build Y1 Tesla\n\n23) zoltar: Build Y2 Zoltar\n\n24) tesla: Discover Y1 Tesla G1 Telas\n\n25) zoltar: Discover Y2 Zoltar G2 Limes\n\n26) tesla: Trade Y3 G3 Tesla\n\n27) zoltar: Build G2 Bananas\n\n28) tesla: Build G3 Tesla\n\n29) zoltar: Sacrifice Y2 Limes\nMove G1 Bananas Telas\nMove G1 Telas Tesla\nCatastrophe Tesla G\n\n30) tesla: Build Y2 Telas\n\n31) zoltar: Move G2 Bananas Telas\n\n32) tesla: Move Y2 Telas Tesla\n\n33) zoltar: Move Y3 Zoltar Tesla\n\n34) tesla: Trade Y1 G1 Tesla\n\n35) zoltar: Sacrifice R1 Zoltar\nAttack Y2 Tesla\n\tzoltar: Building that second g3 was a fatal mistake, leaving your homeworld indefensible after the catastrophe.\n\ttesla: ok, it's true, thanks\n\n36) tesla: Build G2 Tesla\n\ttesla: Homeworld it's a very interesting game, one day I'll learn to play it\n\n37) zoltar: Sacrifice Y3 Tesla\nMove G2 Bananas Telas\nMove G2 Telas Tesla\nMove G2 Telas Tesla\nCatastrophe Tesla G\n\n\tzoltar: Wait -- there's a more elegant ending. Thanx! Play again?\n\ttesla: congratulations\n\nHomeworlds Online (SDG# 4138)\nStarted: 2006.9.1, Ended: 2006.9.17\nParticipants: antihero (S), Tuxhedoh (N)\nWinner: antihero\n\n1) Tuxhedoh: Homeworld B2 Y1 G3\n\n2) antihero: Homeworld Y3 B1 G3\n\tTuxhedoh: FWIW, I'm out of town from this evening, and travelling home on Tuesday. I'll probably be able to get some moves in, but just wanted to let you know\n\tantihero: hey no problem. I might be heading to NYC for the weekend, in which case I probably won't get many moves in.\n\n3) Tuxhedoh: Build G1 Tuxhedoh\n\n4) antihero: Build G1 Antihero\n\n5) Tuxhedoh: Trade G1 R1 Tuxhedoh\n\n6) antihero: Trade G1 R1 Antihero\n\n7) Tuxhedoh: Build G1 Tuxhedoh\n\n8) antihero: Build G1 Antihero\n\n9) Tuxhedoh: Trade G1 B1 Tuxhedoh\n\n10) antihero: Trade G1 Y1 Antihero\n\n11) Tuxhedoh: Build G1 Tuxhedoh\n\n12) antihero: Build G1 Antihero\n\n13) Tuxhedoh: Discover G1 Tuxhedoh B3 Zeke\n\n14) antihero: Discover G1 Antihero Y2 Yolena\n\n15) Tuxhedoh: Build B1 Tuxhedoh\n\n16) antihero: Build Y1 Antihero\n\n17) Tuxhedoh: Move B1 Tuxhedoh Zeke\n\n18) antihero: Discover Y1 Antihero G2 Jacob\n\n19) Tuxhedoh: Build B2 Tuxhedoh\n\n20) antihero: Build Y2 Jacob\n\n21) Tuxhedoh: Trade B2 Y2 Tuxhedoh\n\n22) antihero: Build Y3 Antihero\n\n23) Tuxhedoh: Build Y3 Tuxhedoh\n\n24) antihero: Sacrifice Y2 Jacob\nDiscover Y1 Jacob G3 Wormhole\nMove Y1 Wormhole Tuxhedoh\nCatastrophe Tuxhedoh Yellow\n\n25) Tuxhedoh: Trade B1 Y1 Zeke\n\tTuxhedoh: DOH\n\n26) antihero: Trade Y1 B1 Antihero\n\n27) Tuxhedoh: Build B2 Tuxhedoh\n\n28) antihero: Move B1 Antihero Tuxhedoh\nCatastrophe Tuxhedoh Blue\n\tantihero: After I stared long enough, I noticed that our homeworlds were directly connected. Good game.\n\n\nHomeworlds Online (SDG# 4136)\nStarted: 2006.9.3, Ended: 2006.9.5\nParticipants: jerzy (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y2 G3\n\n2) jerzy: Homeworld G3 Y2 B3\n\n3) zoltar: Build G1 Zoltar\n\n4) jerzy: Build B1 Jerzy\n\n5) zoltar: Trade G1 R1 Zoltar\n\n6) jerzy: Trade B1 R1 Jerzy\n\n7) zoltar: Build G1 Zoltar\n\n8) jerzy: Build B1 Jerzy\n\n9) zoltar: Trade G1 Y1 Zoltar\n\n10) jerzy: Trade B1 G1 Jerzy\n\n11) zoltar: Build G1 Zoltar\n\n12) jerzy: Build B1 Jerzy\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) jerzy: Trade B1 Y1 Jerzy\n\n15) zoltar: Build G1 Zoltar\n\n16) jerzy: Build G1 Jerzy\n\n17) zoltar: Discover G1 Zoltar B1 Blueberry\n\n18) jerzy: Move R1 Jerzy Blueberry\n\n19) zoltar: Sacrifice R1 Zoltar\nAttack R1 Blueberry\n\n20) jerzy: Trade G1 R1 Jerzy\n\n21) zoltar: Move Y1 Zoltar Blueberry\n\n22) jerzy: Discover Y1 Jerzy G1 Galathea\n\tzoltar: m y1 zoltar blueberry\n\n23) zoltar: Build G2 Zoltar\n\n24) jerzy: Build G2 Jerzy\n\n25) zoltar: Move G1 Blueberry Jerzy\nCatastrophe Jerzy G\n\n26) jerzy: Build Y1 Galathea\n\n27) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Blueberry\n\n28) jerzy: Discover Y1 Galathea G3 Xugaton\n\n29) zoltar: Move Y3 Blueberry Xugaton\n\n30) jerzy: Build Y3 Galathea\n\n31) zoltar: Sacrifice R1 Blueberry\nAttack Y1 Xugaton\n\n32) jerzy: Move Y3 Galathea Zoltar\n\n33) zoltar: Sacrifice Y3 Xugaton\nMove Y1 Xugaton Jerzy\nMove Y1 Blueberry Jerzy\nMove Y2 Blueberry Jerzy\nCatastrophe Jerzy Y\n\n\tzoltar: Thanks for the game! Play again?\n\tjerzy: Nice playing with you too. This was my first time at this game. Let's play again, sure.\n\nHomeworlds Online (SDG# 4147)\nStarted: 2006.9.4, Ended: 2006.10.12\nParticipants: antihero (S), Uglyfoot (N)\nWinner: antihero\n\n1) Uglyfoot: Homeworld B3 Y1 G3\n\n2) antihero: Homeworld B2 Y3 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) antihero: Build G1 Antihero\n\n5) Uglyfoot: Discover G1 Uglyfoot B2 Trader\n\n6) antihero: Trade G1 Y1 Antihero\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) antihero: Build Y1 Antihero\n\n9) Uglyfoot: Build G1 Uglyfoot\n\n10) antihero: Build G2 Antihero\n\n11) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Trader\nBuild G2 Trader\nBuild G3 Uglyfoot\n\n12) antihero: Build G3 Antihero\n\n13) Uglyfoot: Trade G2 Y2 Trader\n\tantihero: I'm sorry that took so long.\n\n14) antihero: Discover G3 Antihero B1 Switch\n\n15) Uglyfoot: Discover G1 Trader R1 Battlestar\n\tUglyfoot: Please reconsider your last move (undo). You traded for your 4th yellow ship in your homeworld which will let me cause a catastrophe there. Setting you back while I continue my mad scheming.\n\tantihero: oh geez. thanks.\n\tantihero: Why did I want to do that anyways, I wonder?\n\n16) antihero: Build G2 Switch\n\n17) Uglyfoot: Trade G1 R1 Uglyfoot\n\n18) antihero: Trade G2 R2 Antihero\n\n19) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Trader\nBuild G2 Battlestar\nBuild G3 Uglyfoot\n\n20) antihero: Move Y1 Antihero Switch\n\n21) Uglyfoot: Sacrifice Y2 Trader\nMove G1 Trader Switch\nMove G2 Trader Switch\nCatastrophe Switch G\n\n22) antihero: Build Y2 Antihero\n\n23) Uglyfoot: Trade G1 B1 Uglyfoot\n\n24) antihero: Move Y2 Antihero Switch\n\n25) Uglyfoot: Sacrifice B1 Uglyfoot\nTrade G2 Y2 Battlestar\n\n26) antihero: Trade Y1 G1 Switch\n\n27) Uglyfoot: Build G1 Uglyfoot\n\n28) antihero: Build G2 Antihero\n\n29) Uglyfoot: Build G2 Battlestar\n\n30) antihero: Move G2 Antihero Switch\n\n31) Uglyfoot: Discover G1 Uglyfoot Y2 Movin'out\n\n32) antihero: Discover G2 Switch Y3 Chillin'\n\n33) Uglyfoot: Build R1 Uglyfoot\n\n34) antihero: Build R2 Antihero\n\n35) Uglyfoot: Trade R1 B1 Uglyfoot\n\n36) antihero: Move G2 Chillin' Movin'out\n\n37) Uglyfoot: Build G2 Movin'out\n\n38) antihero: Build G3 Switch\n\n39) Uglyfoot: Move G1 Movin'out Switch\n\n40) antihero: Trade G1 B1 Switch\n\n41) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack G2 Movin'out\n\n42) antihero: Sacrifice Y2 Switch\nMove G3 Switch Movin'out\nMove G3 Movin'out Uglyfoot\n\n43) Uglyfoot: Trade G3 R3 Uglyfoot\n\n44) antihero: Sacrifice R2 Antihero\nAttack B1 Uglyfoot\nAttack R3 Uglyfoot\n\n\tantihero: Thanks for the game. It was pretty even up until that move, I thought.\n\nHomeworlds Online (SDG# 4150)\nStarted: 2006.9.5, Ended: 2006.9.6\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld Y3 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G3 Y3 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build Y1 Zoltar\n\n9) TwoShort: Discover G1 Twoshort Y3 Yoyodyne\n\n10) zoltar: Discover Y1 Zoltar G2 Greenhills\n\n11) TwoShort: Build G1 Twoshort\n\n12) zoltar: Build G2 Zoltar\n\n13) TwoShort: Build G2 Twoshort\n\n14) zoltar: Discover G2 Zoltar Y2 Yellowstone\n\n15) TwoShort: Build G3 Yoyodyne\n\n16) zoltar: Build G3 Yellowstone\n\n17) TwoShort: Discover G1 Twoshort B3 Volyova\n\n18) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild Y1 Greenhills\nBuild Y2 Zoltar\n\n19) TwoShort: Sacrifice G1 Yoyodyne\nBuild Y2 Twoshort\n\tzoltar: Hello again! I was hoping to play you again soon. As you see, my rating is inflated from beating up on beginners. Though I finally won a game (for the first time ever) with world champion Andy Looney in person last week. Whew who! Though I had the advantage you have in this game: I went first and played "the banker" setup. Which means I'll have an uphill battle the whole game here.\n\n20) zoltar: Trade Y1 R1 Zoltar\n\n21) TwoShort: Trade G2 R2 Twoshort\n\n22) zoltar: Move R1 Zoltar Yellowstone\n\tTwoShort: I've lost 4 out of 4 against Andy in person, despite beating him 3 out of 3 online. He's got the "banker" set up nicely in our current game though. I've started from this homwworld before, but this is my first experiment with the early trade of my capital ship to lock up the y3s. \n\n23) TwoShort: Build G1 Volyova\n\n24) zoltar: Sacrifice G3 Yellowstone\nBuild G2 Zoltar\nBuild G3 Yellowstone\nBuild R1 Yellowstone\n\n25) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Volyova Yellowstone\nMove G1 Volyova Yellowstone\nCatastrophe Yellowstone Green\n\n26) zoltar: Discover G2 Zoltar Y2 Bananas\n\tzoltar: Yep, I didn't see how I could avoid that one.\n\tzoltar: As usual with you, I'm pretty much lost after a few moves!\n\n27) TwoShort: Build G1 Yoyodyne\n\n28) zoltar: Move R1 Yellowstone Yoyodyne\n\n29) TwoShort: Move R2 Twoshort Yoyodyne\n\n30) zoltar: Sacrifice G2 Bananas\nBuild R2 Yoyodyne\nBuild R2 Yoyodyne\nCatastrophe Yoyodyne R\n\n31) TwoShort: Build G1 Twoshort\n\n32) zoltar: Build G2 Zoltar\n\n33) TwoShort: Trade G1 R1 Twoshort\n\n34) zoltar: Discover G2 Zoltar Y2 Bananas\n\n35) TwoShort: Discover G1 Yoyodyne B2 Illia\n\n36) zoltar: Build Y1 Zoltar\n\n37) TwoShort: Build G1 Yoyodyne\n\n38) zoltar: Build G2 Zoltar\n\n39) TwoShort: Sacrifice G3 Yoyodyne\nBuild G3 Twoshort\nBuild G3 Illia\nPass\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Yellowstone\nBuild R2 Yellowstone\n\n41) TwoShort: Sacrifice G1 Yoyodyne\nBuild Y3 Twoshort\n\n\tzoltar: Aha -- the factory. That gives you 4 battlestars to my one. Well, I think I blew this game. Glad to be reminded I'm still a beginner! We should play more, TwoShort. I'm going to take on Andy again tomorrow night, but I think it will be another dozen games before I beat him again...\n\tzoltar: The 'investment' part of the banker setup seems to be a crucial middle game strategy. My position is already lost. \n\tTwoShort: And here I was thinking you had more abiltiy to move your shipd around, and were in a better position to get the big reds. Call them like you see them I guess, but it didn't feel over to me...\n\nHomeworlds Online (SDG# 4159)\nStarted: 2006.9.5, Ended: 2006.9.11\nParticipants: zoltar (S), jerzy (N)\nWinner: zoltar\n\n1) jerzy: Homeworld Y3 B2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) jerzy: Build G1 Jerzy\n\n4) zoltar: Build G1 Zoltar\n\n5) jerzy: Trade G1 R1 Jerzy\n\n6) zoltar: Trade G1 R1 Zoltar\n\n7) jerzy: Build R2 Jerzy\n\n8) zoltar: Build R2 Zoltar\n\n9) jerzy: Build R2 Jerzy\n\n10) zoltar: Trade R2 Y2 Zoltar\n\n11) jerzy: Trade R2 G2 Jerzy\n\n12) zoltar: Build R2 Zoltar\n\n13) jerzy: Build R2 Jerzy\n\n14) zoltar: Discover R1 Zoltar Y2 Yellowstone\n\n15) jerzy: Trade R2 Y2 Jerzy\n\tjerzy: Where are you from?\n\n16) zoltar: Discover Y2 Zoltar G2 Greenbelt\n\n17) jerzy: Discover G2 Jerzy B1 Tinyspot\n\n18) zoltar: Build R2 Zoltar\n\n19) jerzy: Build R3 Jerzy\n\n20) zoltar: Sacrifice Y2 Greenbelt\nMove R1 Yellowstone Tinyspot\nMove R1 Tinyspot Jerzy\nCatastrophe Jerzy R\n\n21) jerzy: Build G1 Jerzy\n\n22) zoltar: Trade R2 Y2 Zoltar\n\n23) jerzy: Trade G1 R1 Jerzy\n\n24) zoltar: Discover R2 Zoltar G2 Greenbelt\n\n25) jerzy: Move R1 Jerzy Tinyspot\n\n26) zoltar: Build G1 Zoltar\n\n27) jerzy: Build G1 Tinyspot\n\n28) zoltar: Discover G1 Zoltar Y2 Yellowsprings\n\n29) jerzy: Trade G1 Y1 Tinyspot\n\n30) zoltar: Build G1 Zoltar\n\n31) jerzy: Trade Y2 R2 Jerzy\n\n32) zoltar: Build Y1 Zoltar\n\n33) jerzy: Build G1 Jerzy\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowsprings\n\n35) jerzy: Trade R2 Y2 Jerzy\n\n36) zoltar: Discover G2 Zoltar B2 Blueridge\n\n37) jerzy: Trade G1 R1 Jerzy\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G1 Blueridge\nBuild G3 Zoltar\nBuild R2 Greenbelt\n\n39) jerzy: Build R2 Tinyspot\n\n40) zoltar: Sacrifice Y2 Zoltar\nMove G3 Yellowsprings Tinyspot\nDiscover R2 Greenbelt B1 Blueberry\n\n41) jerzy: Build R3 Jerzy\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Greenbelt\nBuild R3 Blueberry\n\n43) jerzy: Move R2 Tinyspot Blueridge\n\n44) zoltar: Sacrifice R3 Greenbelt\nAttack R2 Blueridge\nAttack R1 Tinyspot\nAttack Y1 Tinyspot\n\n45) jerzy: Discover R3 Jerzy Y1 Goldie\n\n46) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Tinyspot\nBuild R3 Blueridge\n\n47) jerzy: Move R3 Goldie Yellowsprings\n\n48) zoltar: Discover G1 Yellowsprings Y1 Goldie\n\n49) jerzy: Sacrifice Y2 Jerzy\nMove R3 Yellowsprings Goldie\nMove R3 Goldie Greenbelt\n\n50) zoltar: Attack G2 Tinyspot\n\tjerzy: Let's play it out anyway.\n\n51) jerzy: Attack R2 Greenbelt\n\tzoltar: It's tough when you're up against the green 'factory'.\n\n52) zoltar: Sacrifice Y2 Tinyspot\nMove R2 Blueberry Greenbelt\nMove R1 Tinyspot Greenbelt\nCatastrophe Greenbelt R\n\n53) jerzy: Build G2 Jerzy\n\n54) zoltar: Sacrifice G3 Tinyspot\nBuild G3 Goldie\nBuild Y2 Tinyspot\nBuild Y2 Zoltar\n\tzoltar: Yikes! Big red mean alien machine spotted off zee port bow -- evasive action -- run for your lives!\n\n55) jerzy: Build R1 Jerzy\n\tjerzy: Just learning how to sacrifice -- that's something I haven't got the knack of just yet.\n\n56) zoltar: Sacrifice Y2 Zoltar\nMove G3 Goldie Jerzy\nMove G2 Tinyspot Jerzy\nCatastrophe Jerzy G\n\tzoltar: There are lots of tricks that deal with sacrifices -- they are the hardest moves to find and to anticipate, I think.\n\n57) jerzy: Move R1 Jerzy Goldie\n\n58) zoltar: Sacrifice Y1 Tinyspot\nMove R3 Blueberry Jerzy\n\n59) jerzy: Pass\n\n60) zoltar: Sacrifice R2 Blueridge\nAttack R1 Goldie\nAttack R1 Jerzy\n\n\tjerzy: yes, let's..\n\nHomeworlds Online (SDG# 4135)\nStarted: 2006.9.6, Ended: 2006.10.13\nParticipants: Aaron (S), zoltar (W), tesla (N), jerzy (E)\nWinner: zoltar\n\n1) tesla: Homeworld B1 Y2 G3\n\n2) jerzy: Homeworld B3 Y2 G3\n\n3) Aaron: Homeworld B2 Y1 G3\n\n4) zoltar: Homeworld R3 B1 G3\n\tAaron: sorry...hit the wrong button\n\n5) tesla: Build G1 Tesla\n\n6) jerzy: Build G1 Jerzy\n\n7) Aaron: Build G1 Aaron\n\n8) zoltar: Build G1 Zoltar\n\n9) tesla: Trade G1 Y1 Tesla\n\n10) jerzy: Trade G1 Y1 Jerzy\n\n11) Aaron: Trade G1 Y1 Aaron\n\n12) zoltar: Trade G3 Y3 Zoltar\n\n13) tesla: Build G1 Tesla\n\n14) jerzy: Build G1 Jerzy\n\tzoltar: I like to break traditions...\n\n15) Aaron: Build G1 Aaron\n\n16) zoltar: Build Y1 Zoltar\n\tjerzy: Just to make things clear: this multiplayer implementation is Sinister HW, right?\n\tjerzy: ops, it's not. So, does one actually have to eliminate all oponents?\n\tAaron: Nay, Sinister is a variant. The default implementation is "Last Man Standing." If that's a problem for everyone, I can go ahead and change it.\n\tjerzy: Ok, get it. Not a problem for me.\n\n17) tesla: Build Y2 Tesla\n\n18) jerzy: Build Y2 Jerzy\n\n19) Aaron: Discover G1 Aaron Y3 Bananas\n\n20) zoltar: Discover Y1 Zoltar Y2 Lemons\n\n21) tesla: Trade Y2 R2 Tesla\n\n22) jerzy: Trade G1 R1 Jerzy\n\n23) Aaron: Build G1 Aaron\n\n24) zoltar: Build Y2 Zoltar\n\n25) tesla: Build Y3 Tesla\n\n26) jerzy: Discover Y1 Jerzy G1 Lime\n\n27) Aaron: Trade G1 R1 Aaron\n\n28) zoltar: Trade Y2 R2 Zoltar\n\tjerzy: Anyone fancy a POVRay Homeworlds game via e-mail?\n\n29) tesla: Discover Y1 Tesla G3 Apple\n\n30) jerzy: Build Y2 Lime\n\n31) Aaron: Build Y3 Aaron\n\n32) zoltar: Build Y3 Zoltar\n\n33) tesla: Trade G1 B1 Tesla\n\n34) jerzy: Build G1 Jerzy\n\n35) Aaron: Discover Y3 Aaron G3 Avocado\n\n36) zoltar: Discover Y3 Zoltar B2 Grapes\n\n37) tesla: Move B1 Tesla Apple\n\n38) jerzy: Trade G1 B1 Jerzy\n\tjerzy: Hey folks, \r\nI'll be away for the weekend, so please be patient: I may take a while to make my move, ok?\n\tAaron: No worries here =)\n\n39) Aaron: Build R1 Aaron\n\n40) zoltar: Move R2 Zoltar Lemons\n\n41) tesla: Build R1 Tesla\n\n42) jerzy: Move B1 Jerzy Lime\n\n43) Aaron: Move R1 Aaron Avocado\n\n44) zoltar: Build G1 Zoltar\n\n45) tesla: Move G3 Tesla Apple\n\n46) jerzy: Trade Y1 G1 Lime\n\n47) Aaron: Build G2 Bananas\n\n48) zoltar: Move G1 Zoltar Lemons\n\n49) tesla: Discover G3 Apple Y1 Peach\n\n50) jerzy: Trade Y2 R2 Lime\n\n51) Aaron: Build Y2 Avocado\n\n52) zoltar: Build G2 Zoltar\n\n53) tesla: Build G2 Peach\n\n54) jerzy: Build G2 Jerzy\n\n55) Aaron: Build G2 Aaron\n\n56) zoltar: Move Y3 Grapes Lime\n\n57) tesla: Move G3 Peach Apple\n\n58) jerzy: Build R1 Lime\n\n59) Aaron: Build R2 Avocado\n\n60) zoltar: Sacrifice R2 Lemons\nAttack R2E Lime\nAttack R1E Lime\n\n61) tesla: Move R1 Tesla Apple\n\n62) Aaron: Build R2 Aaron\n\n63) zoltar: Move Y3 Lime Jerzy\n\n64) tesla: Build R2 Apple\n\n65) Aaron: Move R1 Aaron Bananas\n\n66) zoltar: Sacrifice R2 Lime\nAttack G3E Jerzy\nAttack R1E Jerzy\n\n67) tesla: Move R1 Apple Peach\n\n68) Aaron: Build R2 Bananas\n\n69) zoltar: Sacrifice G2 Zoltar\nBuild R3 Lime\nBuild R3 Jerzy\n\n70) tesla: Sacrifice G2 Peach\nBuild R3 Peach\nBuild R3 Apple\n\n71) Aaron: Move Y1 Aaron Bananas\n\n72) zoltar: Attack Y2E Jerzy\n\n73) tesla: Move R3 Apple Lemons\n\n74) Aaron: Sacrifice Y2 Avocado\nMove Y1 Bananas Peach\nMove Y1 Peach Jerzy\nCatastrophe Jerzy Y\n\n75) zoltar: Attack G2E Jerzy\n\n76) tesla: Attack G1W Lemons\n\n77) Aaron: Trade G2 Y2 Aaron\n\n78) zoltar: Trade R1 Y1 Jerzy\n\n79) tesla: Move R3 Lemons Zoltar\n\n80) Aaron: Trade Y2 B2 Aaron\n\n81) zoltar: Attack R3N Zoltar\n\n82) tesla: Move G1 Lemons Peach\n\n83) Aaron: Build Y2 Avocado\n\n84) zoltar: Sacrifice G3 Jerzy\nBuild Y2 Lemons\nBuild Y2 Jerzy\nBuild Y3 Zoltar\n\n85) tesla: B G2 Peach\n\n86) Aaron: Move B2 Aaron Avocado\n\n87) zoltar: Sacrifice Y3 Zoltar\nMove Y1 Jerzy Tesla\nMove Y2 Jerzy Tesla\nMove R3 Jerzy Tesla\nCatastrophe Tesla Y\n\n88) tesla: Move R3 Peach Lemons\n\n89) Aaron: Move Y2 Avocado Lemons\nCatastrophe Lemons Y\n\n90) zoltar: Attack R2N Tesla\n\n91) Aaron: Discover R2 Avocado Y2 Lemons\n\n92) zoltar: Build G2 Jerzy\n\n93) Aaron: Move R1 Bananas Lemons\n\n94) zoltar: Discover R3 Zoltar Y2 Pineapples\n\n95) Aaron: Move R2 Lemons Peach\n\n96) zoltar: Move R3 Pineapples Apple\n\n97) Aaron: Attack R1N Peach\n\n98) zoltar: Attack G3N Apple\n\n99) Aaron: Attack G2N Peach\n\n100) zoltar: Attack Y1N Apple\n\n101) Aaron: Attack G1N Peach\n\n102) zoltar: Sacrifice Y1 Apple\nMove G2 Jerzy Lemons\n\n103) Aaron: Sacrifice Y3 Avocado\nMove G2 Peach Apple\nMove G1 Peach Apple\nMove R1 Lemons Tesla\nCatastrophe Apple Green\n\n104) zoltar: Trade R2 Y2 Tesla\n\n105) Aaron: Build B1 Avocado\n\n106) zoltar: Attack R1S Tesla\n\n107) Aaron: Trade B1 Y1 Avocado\n\n108) zoltar: Attack B1E Lime\n\n109) Aaron: Move R1 Avocado Lime\n\n110) zoltar: Trade R3 Y3 Lime\n\n111) Aaron: Build R1 Lime\n\n112) zoltar: Move R3 Tesla Avocado\n\n113) Aaron: Sacrifice B2 Avocado\nTrade R1 G1 Lime\nTrade G1 B1 Bananas\n\n114) zoltar: Move Y3 Lime Bananas\n\n115) Aaron: Build G1 Lime\nCatastrophe Lime Green\n\n116) zoltar: Sacrifice R1 Tesla\nAttack R2S Bananas\n\n117) Aaron: Sacrifice R1 Peach\nAttack R2W Bananas\n\n118) zoltar: Attack Y1S Avocado\n\n119) Aaron: Move R2 Bananas Lemons\n\n120) zoltar: Sacrifice R3 Avocado\nAttack R2S Lemons\nAttack G2S Bananas\nAttack B1S Bananas\n\n121) Aaron: Build R1 Aaron\n\n122) zoltar: Sacrifice G2 Jerzy\nBuild Y1 Avocado\nBuild Y1 Avocado\n\n123) Aaron: Discover R2 Peach Y2 Tulips\n\n124) zoltar: Sacrifice G2 Lemons\nBuild B1 Bananas\nBuild B1 Bananas\n\tAaron: This is the other problem with "Last man standing" games...the economy gets way off-balance in the endgame.\n\n\tzoltar: Zee Death Star ease now fooly funkshunall...\n\tAaron: Thanks for the game!\n\nHomeworlds Online (SDG# 4166)\nStarted: 2006.9.6, Ended: 2006.9.8\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 R2 G3\n\n2) zoltar: Homeworld B3 Y3 G3 *\n\n3) TwoShort: Build G1 Twoshort\n\tzoltar: I suppose this might be the only defence against the banker...\n\tTwoShort: Gack! The micro-verse! Well, I've contemplated trying it in the past, but couldn't really figure out how it would go. I guess we'll see...\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\tzoltar: what else could I do?\n\n6) zoltar: Trade G1 Y1 Zoltar\n\tTwoShort: Well, I don't really consider the banker as overwhelming as you do. Even a merely small universe would let you move right to the 3 points to attack my investments or make your own. In any case, I've never played with adjacent homeworlds, so I'm eager to see how it goes.\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Move G1 Twoshort Zoltar\n\n10) zoltar: Trade G3 R3 Zoltar\n\n11) TwoShort: Build G1 Zoltar\n\tzoltar: Am I dead already on the third move? Geesh!\n\n12) zoltar: Attack G1 Zoltar\n\tzoltar: Better to have a big one, I guess,,,\n\n13) TwoShort: Trade G1 Y1 Zoltar\n\n14) zoltar: Sacrifice Y1 Zoltar\nDiscover G1 Zoltar Y2 Yuck\n\n15) TwoShort: Build Y1 Twoshort\n\n16) zoltar: Attack Y1 Zoltar\n\tTwoShort: Hey, I thought if I submitted a move not having seen your undo, my move shouldn't go through?\n\tTwoShort: Guess I want to do that anyway...\r\n\n\n17) TwoShort: Move Y1 Twoshort Zoltar\n\n18) zoltar: Discover Y1 Zoltar G2 Grok\n\tzoltar: One would think that there would be a safeguard so that your move would be rejected if it was in response to a move which had been changed. Is there such a safeguard on this site? I've never been in the situation.\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Twoshort\nCatastrophe Zoltar Yellow\n\n20) zoltar: Build Y1 Grok\n\n21) TwoShort: Trade Y1 G1 Twoshort\n\n22) zoltar: Build G2 Yuck\n\n23) TwoShort: Build G2 Twoshort\n\n24) zoltar: Build G3 Zoltar\n\tzoltar: very sneaky\n\n25) TwoShort: Trade G1 B1 Twoshort\n\tTwoShort: Not sure if I can finish you off though; I think those seperate outposts will give you flexibility\n\n26) zoltar: Discover Y1 Grok B3 Blah\n\n27) TwoShort: Build B1 Twoshort\n\tzoltar: I hope so. Though in retrospect a double-middle-star system may have been interesting, as I could both contest the big stars for the 'investment', as well as take key small stars to control the change of size at crucial times.\n\n28) zoltar: Sacrifice G2 Yuck\nBuild Y1 Blah\nBuild Y2 Grok\n\n29) TwoShort: Discover B1 Twoshort Y3 Stash\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blah\nBuild Y3 Grok\nBuild G1 Zoltar\n\n31) TwoShort: Build B2 Twoshort\n\n32) zoltar: Trade Y2 B2 Blah\n\n33) TwoShort: Sacrifice Y3 Twoshort\nMove B1 Twoshort Zoltar\nMove B2 Twoshort Zoltar\nDiscover B1 Stash Y2 Checkmate\n\tzoltar: It's over -- can't stop you from trashing my blue star\n\n34) zoltar: Trade R3 B3 Zoltar\nCatastrophe Zoltar B\n\tTwoShort: Looks that way...\n\n\tTwoShort: As for abandoning one's homeworld, I had a conversation with John Cooper a while ago to the effect that that rule should really be eliminated. You'd still lose if you do it, but you might be able to wrest a draw out of an otherwise losing position by simutaneously destroying your opponent. Since all the rule really does is eliminate what is otherwise an interesting emergent posibility, perhaps it should be done away with...\n\tzoltar: Hmm. I can't even sac my r3 to capture these, can I?\r\nOh well. I'm now convinced that the banker is a forced win. \n\tTwoShort: Well, I'm not. When you traded your yellow to blue, you could have instead sac'd your y3 to move in 3 ys from blah, causing a catastrophe and leaving me with no 3 pointer, while you'd still have had the R3... I was already planning to get a red so I could destroy half my homeworld in a desperate defense...\n\tzoltar: Hmm. I never saw any of that.\n\nHomeworlds Online (SDG# 4192)\nVariants: "Unrated"\nStarted: 2006.9.7, Ended: 2006.9.11\nParticipants: Fabi (S), jerzy (N)\nWinner: jerzy\n\n1) jerzy: Homeworld B2 R1 G3\n\n2) Fabi: Homeworld B3 Y1 G3\n\n3) jerzy: Build G1 Jerzy\n\n4) Fabi: Build G1 Fabi\n\tjerzy: Se você tiver alguma dúvida, só escrever nesse espaço que diz "Send", tá?\n\n5) jerzy: Trade G1 Y1 Jerzy\n\n6) Fabi: Trade G1 R1 Fabi\n\n7) jerzy: Build G1 Jerzy\n\n8) Fabi: Build G1 Fabi\n\n9) jerzy: Trade G1 Y1 Jerzy\n\tFabi: Nossa, que jogo hein? hehhe\n\n10) Fabi: Trade G1 R1 Fabi\n\n11) jerzy: Build Y2 Jerzy\n\n12) Fabi: Build R2 Fabi\n\tjerzy: Tudo bem com você?\n\n13) jerzy: Discover Y1 Jerzy G3 Darwin\n\n14) Fabi: Trade R2 Y2 Fabi\n\n15) jerzy: Build Y2 Darwin\n\n16) Fabi: Discover Y2 Fabi G2 Lamarck\n\tjerzy: Pode construir um y3 no teu sistema sem medo! Eu não consigo chegar até ele no meu turno seguinte!\n\n\tjerzy: ?????????\n\nHomeworlds Online (SDG# 4160)\nStarted: 2006.9.8, Ended: 2006.9.9\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld Y2 B1 G3\n\tTwoShort: Let's see if I can convince you the Banker is defeatable...\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) zoltar: Build G1 Zoltar\n\tzoltar: Ok, though your skill probably more than makes up for the difference here, as I'm the worst at openings anyway, but I think it's a huge advantage, worth a few tempi I suppose.\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Build G1 Twoshort\n\n7) zoltar: Build Y1 Zoltar\n\n8) TwoShort: Trade G1 B1 Twoshort\n\n9) zoltar: Build G1 Zoltar\n\n10) TwoShort: Build B2 Twoshort\n\n11) zoltar: Trade Y1 R1 Zoltar\n\tzoltar: Well, you've already got an advantage. Given any opening, you're always going to have a couple extra 2-sized ships than I, as I can't grasp the openings yet and trade correctly, it seems.\n\n12) TwoShort: Trade B2 Y2 Twoshort\n\tzoltar: ugh, that's no good at all.\n\tzoltar: I'll have to think some more about this.\n\n13) zoltar: Trade G3 B3 Zoltar\n\n14) TwoShort: Discover B1 Twoshort G2 Grogar\n\n15) zoltar: Build B2 Zoltar\n\n16) TwoShort: Sacrifice Y2 Twoshort\nDiscover B1 Grogar G3 Boom\nMove B1 Boom Zoltar\nCatastrophe Zoltar Blue\n\n\tzoltar: Oops. Yep, I definitely need to work on openings -- this is like the fool's mate in chess!\n\nHomeworlds Online (SDG# 4211)\nStarted: 2006.9.11, Ended: 2006.9.14\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld B3 R1 G3\n\n2) zoltar: Homeworld Y3 B2 G3\n\n3) Personman: Build G1 Personman\n\n4) zoltar: Build G1 Zoltar\n\n5) Personman: Trade G1 Y1 Personman\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Personman: Build G1 Personman\n\n8) zoltar: Build G1 Zoltar\n\n9) Personman: Discover G1 Personman Y2 Particle\n\n10) zoltar: Discover G1 Zoltar B1 Blueberry\n\n11) Personman: Trade Y1 B1 Personman\n\n12) zoltar: Build G1 Zoltar\n\n13) Personman: Build B1 Personman\n\n14) zoltar: Build G2 Blueberry\n\n15) Personman: Move G1 Particle Blueberry\n\n16) zoltar: Trade G2 R2 Blueberry\n\n17) Personman: Build G2 Personman\n\n18) zoltar: Attack G1 Blueberry\n\n19) Personman: Build G2 Personman\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n21) Personman: Trade G2 Y2 Personman\n\n22) zoltar: Trade G1 Y1 Blueberry\n\n23) Personman: Discover G2 Personman Y2 Letterbox\n\n24) zoltar: Trade G1 R1 Zoltar\n\n25) Personman: Trade B1 R1 Personman\n\tzoltar: Zoltar haz 2 g3s and Personman only haz one! Whew Who!\n\n26) zoltar: Build R2 Blueberry\n\n27) Personman: Build B1 Personman\n\n28) zoltar: Discover R2 Blueberry Y2 Lemon\n\n29) Personman: Move B1 Personman Letterbox\n\n30) zoltar: Build R2 Blueberry\n\n31) Personman: Build B2 Letterbox\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild R3 Zoltar\nBuild R3 Zoltar\nBuild R3 Lemon\n\n33) Personman: Sacrifice G2 Letterbox\nBuild B2 Personman\nBuild B3 Letterbox\n\tzoltar: Red Alert! Red Alert! Red fleet, commence pre-emptive strike on personman fleet! Yippee!\n\n34) zoltar: Trade R3 B3 Zoltar\n\n35) Personman: Discover B2 Letterbox G1 Start\n\n36) zoltar: Build R3 Zoltar\n\n37) Personman: Trade B3 G3 Letterbox\n\n38) zoltar: Move B3 Zoltar Start\n\n39) Personman: Build B3 Letterbox\n\n40) zoltar: Sacrifice R1 Zoltar\nAttack B2 Start\n\n41) Personman: Move B1 Letterbox Start\n\n42) zoltar: Sacrifice B2 Start\nTrade R3 Y3 Lemon\nTrade R3 Y3 Zoltar\n\tzoltar: You are putting up a good fight, Personman. Zoltar will have to find something clever and tricky. \n\tPersonman: Why thank you!\n\n43) Personman: Trade B2 G2 Personman\n\tzoltar: Zoltar to minions: Abandon blue fleet; Abandon red fleet; Yellow fleet rulez! \n\n44) zoltar: Sacrifice G3 Zoltar\nBuild R1 Lemon\nBuild R3 Zoltar\nBuild R3 Zoltar\n\n45) Personman: Build Y1 Personman\n\tzoltar: Knew ore deers: Abandon green fleet; Red fleet rulz!\n\n46) zoltar: Sacrifice Y1 Zoltar\nMove B3 Start Lemon\n\n47) Personman: Move B3 Letterbox Blueberry\n\tzoltar: Nope -- better keep 4 big sheeps in homeworld to be extra safe.\n\n48) zoltar: Sacrifice Y3 Lemon\nMove B3 Lemon Personman\nMove R2 Lemon Personman\nMove R1 Lemon Personman\nCatastrophe Personman R\n\tzoltar: My double-sack has given zee Zoltarian fleet zee advantage once again! With 4 Battleships protecting zee homeworld, nothing can stop Zoltar from galactic dominion!\n\n49) Personman: Sacrifice G2 Personman\nBuild B2 Blueberry\nBuild B2 Blueberry\nCatastrophe Blueberry B\n\tzoltar: Yikes! Blueberry is under attack! The only defense is a good offense! Awl sheeps storm zee Personman homeworld and blow up awl gunz! Attack!\n\n50) zoltar: Sacrifice R3 Zoltar\nAttack G3 Personman\nAttack Y2 Personman\nAttack B1 Personman\n\n51) Personman: Sacrifice G3 Letterbox\nBuild Y1 Personman\nBuild Y1 Personman\nBuild Y2 Personman\n\n52) zoltar: Sacrifice G3 Personman\nBuild Y2 Personman\nBuild Y3 Personman\nBuild B1 Personman\n\n53) Personman: Sacrifice Y1 Personman\nMove B1 Start Personman\nCatastrophe Personman Y\nCatastrophe Personman B\n\tPersonman: At least this way I get to see five ships of the same color in one system... Good game!\n\n\tzoltar: Make that 7! Those two sacks of mine not only got me out of trouble but gave me an unstoppable lead, with command of most of the red and yellow. I only saw them one move at a time, and didn't realize how powerful my position was until after I'm made them. Good game.\n\tPersonman: Whee!\n\nHomeworlds Online (SDG# 4213)\nVariants: "No undo"\nStarted: 2006.9.11, Ended: 2006.9.14\nParticipants: zoltar (S), unic (N)\nWinner: zoltar\n\n1) unic: Homeworld G1 B2 Y3\n\n2) zoltar: Homeworld B3 Y2 G3\n\tunic: Hello - my first game here :) Bear with me if I make bad moves - I just learned this game yesterday.\n\n3) unic: Build Y1 Unic\n\tzoltar: Sure -- I learned in June, lost my first dozen games or so, then got better, and now am near the top, though the top three players can still beat me most of the time. It's really fun, but the sacrifices are the hardest moves to find as well as anticipate, especially yellow sacrifices allowing someone to move more than once and cause a catastrophe with 4 of the same color. I love this game -- it's simple and has chess-like tactics and really makes you think, though it takes a while to get used to it and learn all the basic tactics. Good luck.\n\n4) zoltar: Build G1 Zoltar\n\n5) unic: Discover Y1 Unic G3 Stella\n\n6) zoltar: Build G1 Zoltar\n\n7) unic: Build Y1 Unic\n\n8) zoltar: Discover G1 Zoltar B1 Harcourt\n\n9) unic: Build Y1 Stella\n\n10) zoltar: Build G2 Harcourt\n\n11) unic: Trade Y3 G3 Unic\n\n12) zoltar: Sacrifice G3 Zoltar\nBuild G2 Harcourt\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n13) unic: Build Y2 Unic\n\tunic: Nice maneuver! I shall bear that one in mind :)\n\n14) zoltar: Trade G2 Y2 Harcourt\n\tzoltar: I think you had more of an advantage if you continued to build yellow, as movement is crucial. I have now achieved 'the factory' where I can sacrifice my g3 and then grow it right back with two extra grows, which is a powerful tactical tool. I still need to get into the yellow industry , but now I will have some tricks, because with both your g3 and a green star, if you grow another green (after I trade one of mine for a yellow), I would be able to blow up your greens if I sacrifice my yellow to move a fourth green into your homeworld, so you'll have to look out for that.\n\n15) unic: Build Y3 Unic\n\tzoltar: I think you have the advantage, though, because of your lead in yellow (I'm terrible at openings, even with beginners).\n\n16) zoltar: Trade G3 Y3 Zoltar\n\n17) unic: Sacrifice Y2 Unic\nMove Y1 Unic Stella\nMove Y1 Stella Harcourt\n\tzoltar: You're playing very well. That last move threatened checkmate (if I ignored the threat, you sac your Y3 and move your G3 all the way from your homeworld to mine, creating a catastrophe that wipes out all my green pieces and wins the game.)\n\n18) zoltar: Trade Y3 R3 Zoltar\n\n19) unic: Build Y2 Unic\n\tzoltar: Excellent move, showing me that my last move was wasted, giving you yet another free move. But I'm not ready to resign yet.\n\n20) zoltar: Trade G2 R2 Harcourt\n\n21) unic: Build Y3 Unic\n\tzoltar: You must be a chess player, as you play much better than I at this game!\n\n22) zoltar: Attack Y1 Harcourt\n\tunic: No, not a chess player. I used to play Othello competitively a few years back though... and play all sorts of abstract games just for fun. Traditional western chess has never caught my fancy however.\n\n23) unic: Sacrifice Y2 Unic\nMove Y1 Stella Harcourt\nMove Y1 Stella Harcourt\nCatastrophe Harcourt Y\n\n24) zoltar: Build G2 Harcourt\n\n25) unic: Trade Y3 G3 Unic\n\tzoltar: I played chess first, then switched to the Japanese varient Shogi, which I liked even better; then when planning on teaching chess to my cousins (age ranging 4-12), I looked for simpler abstract games to start them with, and discovered a world of wonderful games I never knew existed. Then, to my even greater suprise, the author of several of the games I subsequently purchased lived in my neighborhood! I met Andy Looney (creator of the IceHouse pieces) and the gaming author of homeworlds, John Cooper, who both live a mile from me in either direction! John Cooper gave me some games, such as "Lost Cities", one of his favorites -- he likes the author Reiner Knizia, and at his house I've played other great Knizia games, such as Ra, John's favorite. John told me next time I visit, he is going to teach me another of his favorites: Lord of the Rings - The Confrontation. I love having a rocket scientist and game author neighbor who has such fun games that I've never heard of.\r\n\r\nSince then, I've gotten a couple dozen games, (I buy them used on eBay, then resell ones neither I nor my cousins find really fun). Our favorites: Flux and SET card games (set is amazing for young kids, as a sharp 6 year old cousin can beat me, and that wouldn't happen with, say, chess); Blokus (a rare 4-player game without randomizers or hidden information that actually works and is pretty), Cathedral (beautiful wooden pieces), Quarto and then the even better Quoridor from Gigamic (I bought a bunch of games from that company, Gigamic); Gobblet (another tic-tac-toe improvement like Quarto, but you can make your own set with IceHouse pieces); Ticket to Ride (a fun game that is a favorite with the 6 and 10 year old cousins, but for adults the similar but more complicated Thurn and Taxis is nicer); 10 Days in the USA/Africa/Europe -- all three are the same except for the names of pieces (states or countries), but thanks to this game, which has nice strategy as well, my 6-year-old cousin knows every state in the USA and where every country is in Europe of Africa!\r\n\r\nAndy Looney directed me to this site in June, when I learned John Cooper's game Homeworlds that we are playing. I just last week learned another IceHouse game, Pikemen, which is authored by another game author (a Bridge Master turned game author) that I know and play games with on Thursday's at LooneyLabs' game night. All my chess skills seem to help, as I've won my first three games (against other beginners). I want to learn more IceHouse games, as I love the shape and feel of the pyramids, and I'm trying another one online here, Martian Chess, and just started my first game of it. \r\n\r\nThat's the extent of my gaming experience. And as a rather new abstract gamer (except for chess) who has suddenly fallen into a new world of gaming, especially when I get to play with game authors and even beta-test games every week, I'm always open to know the top picks of another gamer. While the best Homeworlds players (Andy Looney and Jesse) can beat me almost every game, you're the first beginner that is trouncing me, as I usually mop up on all the other beginners and advanced beginners. That tells me you are an experienced abstract gamer (hence I wondered if you were a chess master). I'm impressed. So I'd be happy to have any recommendations from you on games that I haven't heard of but which are like the ones I've mentioned that I have played and liked. My only constraint is money - I like to buy them used and cheap on eBay rather than say, import them new from Germany.\n\n26) zoltar: Trade G2 Y2 Harcourt\n\tunic: Wow, that was a long message! :)\r\n\r\nKnizia is my favourite designer for german-style games. He's also made several "abstracts" - games that have no luck or hidden information and work well on two.\r\n\r\nGame recommendations - I'll have a ponder. I've made a list with a bit over 200 abstracts one can improvize pieces for (well, or steal pieces from various games in my collection) which my wife and I are gradually trying out to see which ones we like.\r\n\r\nGigamic does make nice games - though often with a tendency towards short and rather tactical ones. Cathedral is one of their better, I think... I'm not keen on Quarto. \r\n\r\nIf you like Blokus, have you tried Blokus Trigon? Me and the wife both prefer that to standard Blokus... the pieces are all shapes made out of up to 6 triangles.\r\n\r\nWell, I'll have a ponder on what to recommend.\n\n27) unic: Discover G3 Unic B3 Astra\n\tzoltar: I have lots of Gigamic games: Cathedral is fun and the prettiest, but the first player has an advantage (good for playing with kids) and I'm experimenting by having the first player not allowed to start with a big piece; Quarto is short and purely tactical, so it's a great tactics-trainer for young kids with a short attention span who won't focus for an entire game of chess, but I don't play it with adults; Quoridor is short and tactical, but much more fun with adults as well, and interesting ideas emerge, as with this game Homeworlds; Batik is pretty and fun for 4 year olds and up and kids too lazy or unwilling to do the thinking in tactical games.\r\n\r\nKnizia seems to be a favorite among game designers I've met, who all seem to favor the recent surge in German games. \r\n\r\nAnd I've been waiting to pounce on a cheap half-priced Blokus Trigon as soon as some boring person gets it for a present, doesn't like it, and sells it on eBay, but I might just buy it outright for a cousin for Christmas if I can't find it by then -- I've seen the reviews for it and it looks great. \r\n\r\nI have a game with 6-sided pieces from Australia called Tantrix that I haven't played but which looks cool, and a Thailand game called Fire and Ice that I've played twice, which is mostly tactical but was really fun.\n\n28) zoltar: Build G2 Harcourt\n\tunic: I'm in the camp that isn't convinced about the first-player advantage in Cathedral. But if the advantage is real, playing pairs of games and counting points work to even things out.\r\n\r\nHave you tried Quads from Gigamic?\n\tzoltar: Yes, I have Quads as well and played it once and remember liking it but haven't got back to it yet. I also have Quivive, Quits, Pyraos, and Bataclan from Gigamic. I discoved Gigamic first with Quoridor and Quarto, and so I grabbed a bunch of their games before I found most of the others. \n\n29) unic: Build Y1 Unic\n\n30) zoltar: Discover G1 Zoltar Y1 Lemon\n\n31) unic: Discover Y3 Unic G3 Prima\n\n32) zoltar: Build G2 Lemon\n\n33) unic: Sacrifice G3 Unic\nBuild G3 Astra\nBuild Y1 Prima\nBuild Y2 Unic\n\n34) zoltar: Sacrifice Y2 Harcourt\nMove G1 Harcourt Astra\nMove G1 Lemon Astra\nCatastrophe Astra G\n\n35) unic: Build Y2 Unic\n\n36) zoltar: Discover G2 Lemon Y3 Banana\n\n37) unic: Discover Y1 Unic Y3 Secunda\n\n38) zoltar: Build R1 Zoltar\n\n39) unic: Build Y1 Unic\n\tzoltar: I think you're moving your G3 out was a big mistake btw. First, it let me blow up both your g3's (I'm not sure if you saw that I could do that), and second, it's dangerous to leave your homeworld without a 3-sized piece. Because you had a big lead, and have successfully controlled most of the yellow technology, you're still in very good shape, and your Y3 can always come back to defend your homeworld. But your lead was much greater before, and now I have a lot more chances.\n\n40) zoltar: Move G2 Banana Unic\n\tunic: You might be right. I did see that you could blow up my green ships - but this leaves you without any yellow ships at all. At the time, I thought it was worth it.\n\n41) unic: Trade Y1 R1 Unic\n\n42) zoltar: Sacrifice R3 Zoltar\nAttack R1 Unic\nAttack Y2 Unic\nAttack Y2 Unic\n\tzoltar: Your play is outstanding at the beginning -- and you had a clearly winning position -- probably from your general gaming experience and intuitions. The middle and endgame of homeworlds is very tricky though, and you probably need several games to grasp the various themes and tactics. \r\n\r\nThere are two very important middle-game rules. The first good general principle to never leave your homeworld without a 3-pip piece (unless you are forcing checkmate or a material gain that gives your opponent no chance at counter-attacking). The second principle is to always get a 'gun' (a red ship) as soon as your opponent does. It can be an R1 anywhere, as that way you can sacrifice it for a capture if an enemy piece moves in to bully you. Note that if any of your y1 pieces were instead a r1 piece, you could now simply sacrifice the r1 from anywhere on the board and capture my g2. So I could not have made this devastating move. Instead, I'm threatening to capture all of your homeworld pieces at once by sacking my R3 for three attacks, and you can't even bring back your Y3 in defence, as being the 4th yellow in the system, a catastrophe would follow and eliminate all of your ships. Your only move in retrospect was to trade a Y2 for an R2 in your homeworld.\n\tzoltar: You played better than any other first time player I've encountered! I hope you like the game and want to play more. Thanks.\n\tunic: Nicely done - I didn't bear in mind that sacrificing a ship would give you the power to use that colour in any system.\r\n\r\nAnother game? I liked this and sure want to play more!\n\n\nHomeworlds Online (SDG# 4221)\nVariants: "Unrated"\nStarted: 2006.9.11, Ended: 2006.9.21\nParticipants: jerzy (S), Fabi (N)\nWinner: Fabi\n\n1) Fabi: Homeworld B3 Y1 G3\n\n2) jerzy: Homeworld B2 R1 G3\n\n3) Fabi: Build G1 Fabi\n\n4) jerzy: Build G1 Jerzy\n\n5) Fabi: Trade G1 R1 Fabi\n\n6) jerzy: Trade G1 Y1 Jerzy\n\n7) Fabi: Build G1 Fabi\n\n8) jerzy: Build G1 Jerzy\n\n9) Fabi: Trade G1 R1 Fabi\n\n10) jerzy: Trade G1 Y1 Jerzy\n\n11) Fabi: Build R2 Fabi\n\n12) jerzy: Build Y2 Jerzy\n\n13) Fabi: Trade R2 Y2 Fabi\n\n14) jerzy: Discover Y1 Jerzy G3 Darwin\n\n15) Fabi: Discover Y2 Fabi G2 Lamarck\n\n16) jerzy: Build Y2 Darwin\n\n17) Fabi: Move R1 Fabi Lamarck\n\n18) jerzy: Build Y3 Jerzy\n\tFabi: Acho que vou perder esse jogo.\n\tjerzy: Por quê?\n\n19) Fabi: Build Y3 Lamarck\n\n20) jerzy: Trade Y1 B1 Jerzy\n\n21) Fabi: Build R2 Lamarck\n\n22) jerzy: Discover B1 Jerzy Y3 Buffon\n\n23) Fabi: Move R2 Lamarck Darwin\n\n24) jerzy: Sacrifice Y2 Darwin\nMove Y1 Darwin Lamarck\nMove Y1 Lamarck Buffon\n\tjerzy: Uh-oh... Alienígena vermelho detectado no quadrante quatro em Darwin! Câmbio!\n\n25) Fabi: Build R2 Darwin\n\tjerzy: Run awaaaaaaaaaaay!\n\n26) jerzy: Trade Y2 R2 Jerzy\n\tjerzy: Olha só: vou sacrificar a minha G3 no meu sistema para construir três naves, tá?\n\n27) Fabi: Build R3 Fabi\n\tjerzy: Ops, não consegui! Acabei só trocando a minha y2 por uma r2.\n\n28) jerzy: Discover Y1 Buffon Y2 Bernard\n\n29) Fabi: Sacrifice Y2 Lamarck\nMove R2 Darwin Jerzy\nMove R2 Darwin Jerzy\nCatastrophe Jerzy Red\n\n30) jerzy: Move B1 Buffon Bernard\n\tjerzy: Como é que você fez isso?!?!?!?! Parabéns!\n\n31) Fabi: Trade R1 B1 Fabi\n\n32) jerzy: Build G1 Jerzy\n\n33) Fabi: Build Y1 Lamarck\n\n34) jerzy: Trade G1 B1 Jerzy\n\n35) Fabi: Move B1 Fabi Lamarck\n\n36) jerzy: Trade B1 G1 Bernard\n\n37) Fabi: Build B1 Lamarck\n\n38) jerzy: Build Y2 Jerzy\n\n39) Fabi: Move B1 Lamarck Fabi\n\n40) jerzy: Move B1 Jerzy Fabi\n\n41) Fabi: Attack B1 Fabi\n\n42) jerzy: Trade Y2 R2 Jerzy\n\n43) Fabi: Move B1 Fabi Lamarck\n\n44) jerzy: Discover G1 Bernard Y3 Gould\n\n45) Fabi: Move R1 Lamarck Gould\n\n46) jerzy: Discover G1 Gould Y2 Kauffman\n\n47) Fabi: Move B1 Lamarck Gould\n\n48) jerzy: Build Y2 Jerzy\n\n49) Fabi: Move B1 Fabi Lamarck\n\n50) jerzy: Trade Y3 R3 Jerzy\n\n51) Fabi: Move B1 Lamarck Gould\n\n52) jerzy: Build Y3 Jerzy\n\n53) Fabi: Move B1 Lamarck Gould\n\n54) jerzy: Pass\n\n55) Fabi: Sacrifice Y3 Lamarck\nMove B1 Gould Jerzy\nMove B1 Gould Jerzy\nMove B1 Gould Jerzy\nCatastrophe Jerzy Blue\n\n\nHomeworlds Online (SDG# 4222)\nVariants: "Unrated"\nStarted: 2006.9.11, Ended: 2006.9.14\nParticipants: jerzy (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) jerzy: Homeworld Y1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\tjerzy: Could you tell me more about openings, i.e., what are their names and what one should be doing after each of them?\n\n4) jerzy: Build G1 Jerzy\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) jerzy: Trade G1 Y1 Jerzy\n\tzoltar: Actually, openings are my biggest weakness! But I know the names. The strongest is "the banker" which is a small and medium star. It allows you to go to large stars first, and you can 'invest' in a large star by placing a g1 or g2 on it. When the color is used up, (e.g., suppose you had a g2 on a y3 star), you could sack the g2, and build the y3 somewhere you have a yellow piece, and rebuild the g2 at the same time, somewhere you have a green piece. Because large pieces are next to your homeworld and easy to 'invest' in, small-medium systems are called "The Banker".\r\n\r\nI'm playing "The Fortress" which is the best defensive position later on, because only small stars are connected to my homeworld, and you run out of small pieces in the middlegame, so it's harder to attack the homeworld. The disadvantage is that I have to use small pieces to expand, and my opponent can more easily calculate so that he will get the first middle-sized piece in a particular color.\r\n\r\nYou're playing the third kind, called "goldilox" because your homeworld is adjacent to middle-sized pieces. Some players prefer this one most of all, but I don't know yet the advantages or disadvantages.\r\n\r\nThe top player of all time, Andy Looney, swears that the banker is the strongest, and gives a strong advantage; the second best player in the world, who goes here by TwoShort, disagrees and doesn't think the banker gives anyone more than a minimal edge. However, the banker is the easiest for beginners, so I used it for all my first dozen or so games, and recommend you get familiar with it.\r\n\r\nUsually any ybg color combo is good to start, which ships usually being y or g, but recently the top players are using red stars. I'm trying them out (as in this game). It's harder in the opening, but later on, you have a strong defence, as you don't need a red ship in your homeworld to defend, but it is tougher for beginners because red is used least in the opening, so you have to build more ships before you can use the other three color powers, all of which are used in the opening.\r\n\r\nThat's about all I know about openings. \n\tjerzy: Man, thanks a lot! That clarifies a lot of things! I thought the names refered to the colors you chose to start with, rather than color/size combinations. I thought I was playing the banker!\r\n\r\nMaybe we could add a section about openings to the Wiki, that would be very helpful for newbies!\n\n7) zoltar: Build Y2 Zoltar\n\tzoltar: The publisher of the game (and world champ) Andy Looney of Looney Labs, and the author of the game, John Cooper, are working on that now, in a new booklet that will introduce 3 Looney Labs games together. We can get them to transfer the final version to the Wiki perhaps. I'll suggest it to them (they are both my neighbors).\n\n8) jerzy: Build Y2 Jerzy\n\n9) zoltar: Build Y2 Zoltar\n\n10) jerzy: Discover Y1 Jerzy G2 Darwin\n\tjerzy: Ah, you're talking about '3house' perhaps? I'm looking forward to it... Do suggest the Wiki transfer!\n\n11) zoltar: Trade Y1 R1 Zoltar\n\tzoltar: Yes, I am talking about 3house!\n\n12) jerzy: Trade Y2 B2 Jerzy\n\n13) zoltar: Discover Y2 Zoltar G1 Greenbelt\n\tjerzy: It must be a priviledge for you to be neighbour to the two greatest game designers IMO! I am from Brazil, and it's nearly impossible cost-wise for us to import Icehouse pieces... \r\n\r\nI have made my own set of flat wooden pieces, much like Zarf's Zarcana ones.\n\tzoltar: Yes, it is quite a priviledge. I only wish I'd known them longer, as they were neighbors for years before I met any of them or heard of any of these games.\n\n14) jerzy: Build B1 Jerzy\n\n15) zoltar: Build G1 Zoltar\n\tjerzy: I've been trying to figure how to use the blue pieces to my advantage, since it's such an unused color...\n\tzoltar: If you can get all of the small ones on the board, then you can build large blue pieces, trade them for other large pieces, then build them again and repeat the process. Also, a large blue can always threaten to capture a smaller piece if you have a red piece somewhere to sacrifice.\n\n16) jerzy: Build G1 Jerzy\n\n17) zoltar: Discover G1 Zoltar Y1 Lemon\n\n18) jerzy: Discover G1 Jerzy Y2 Mango\n\n19) zoltar: Build G2 Zoltar\n\n20) jerzy: Build G2 Jerzy\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Lemon\nBuild Y3 Greenbelt\n\n22) jerzy: Sacrifice G2 Jerzy\nBuild G2 Jerzy\nBuild Y3 Darwin\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild R1 Zoltar\n\n24) jerzy: Move B1 Jerzy Mango\n\tjerzy: Hehe what a stupid way to may a straightforward move.\n\tjerzy: Should've recreated that g2 in mango.\n\n25) zoltar: Sacrifice Y3 Zoltar\nMove R1 Zoltar Lemon\nMove G3 Lemon Mango\nMove G3 Mango Jerzy\n\n26) jerzy: Sacrifice B2 Jerzy\nTrade G3 Y3 Jerzy\nTrade G2 R2 Jerzy\n\n27) zoltar: Sacrifice R1 Zoltar\nAttack R2 Jerzy\n\tzoltar: You made the mistake of not trading one of your blue ships for a red ship. Now you are in a bit of trouble.\n\n\tzoltar: Actually, it's checkmate in a move or two. Your only way to stay alive was to move your own g1 back to your homeworld and blow up your greens and mine with them. Or trade your b1 in mango for an r1, (threatening to sac and capture my g3), forcing me to sac a green and rebuild it in your homeworld and blow up your greens (I would sac my g2 in Zoltar, and rebuild it in your homeworld using that 'teleport' trick you discovered, and use the extra build to rebuild my y3 in Zoltar -- I would end up with three big ships to your one, and your y3 would have to immediately run back to your homeworld to defend -- not a pretty outcome, but the only scenerio where you survive. And all this because you didn't get a red ship after I did.\n\tjerzy: I see... Gonna accept your pending challenge now, I'll try the Banker...\n\nHomeworlds Online (SDG# 4187)\nStarted: 2006.9.11, Ended: 2006.9.15\nParticipants: TwoShort (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 G1 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tzoltar: Ok, I'm going to try this again -- and be more mindful.\n\n3) zoltar: Build Y1 Zoltar\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Build Y1 Zoltar\n\n6) TwoShort: Build G1 Twoshort\n\n7) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) zoltar: Build Y2 Greenbelt\n\n10) TwoShort: Build G1 Twoshort\n\n11) zoltar: Build Y2 Greenbelt\n\n12) TwoShort: Build Y2 Twoshort\n\n13) zoltar: Discover Y2 Greenbelt G2 Greenhills\n\n14) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort G2 Greenland\nDiscover G1 Twoshort B2 Bluestar\n\n15) zoltar: Trade Y3 G3 Zoltar\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild Y2 Greenland\nBuild G3 Twoshort\n\n17) zoltar: Build Y3 Greenhills\n\n18) TwoShort: Discover Y1 Greenland B3 Bluonia\n\n19) zoltar: Build Y3 Zoltar\n\n20) TwoShort: Sacrifice G2 Bluestar\nBuild Y3 Bluonia\nBuild G2 Bluestar\n\n21) zoltar: Trade Y1 R1 Zoltar\n\n22) TwoShort: Sacrifice Y3 Bluonia\nMove Y1 Bluonia Greenhills\nMove Y2 Greenland Greenbelt\nMove Y2 Greenbelt Greenhills\nCatastrophe Greenhills Yellow\n\n23) zoltar: Build G2 Zoltar\n\n24) TwoShort: Trade G2 Y2 Bluestar\n\n25) zoltar: Discover G2 Zoltar Y3 Investment\n\n26) TwoShort: Build G2 Bluestar\n\n27) zoltar: Build G2 Investment\n\n28) TwoShort: Trade G2 R2 Bluestar\n\n29) zoltar: Discover G2 Investment B2 Blueberry\n\n30) TwoShort: Trade G1 Y1 Twoshort\n\n31) zoltar: Move Y1 Greenbelt Blueberry\n\n32) TwoShort: Discover G1 Bluestar Y3 Cash\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G1 Investment\nBuild G2 Investment\nBuild G3 Blueberry\n\n34) TwoShort: Sacrifice G1 Cash\nBuild R1 Bluestar\n\n35) zoltar: Sacrifice G3 Blueberry\nBuild G1 Blueberry\nBuild G3 Blueberry\nBuild R2 Zoltar\n\n\tzoltar: Wow, just when I thought it would be another dozen games or so before I beat you again, I came up with a victory. I thought you had the upper hand for a while -- I'm not sure when I got the advantage there.\n\nHomeworlds Online (SDG# 4227)\nStarted: 2006.9.13, Ended: 2006.10.6\nParticipants: zoltar (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld G2 B1 Y3\n\tzoltar: I'm ready. Do you still want to play?\n\n2) zoltar: Homeworld B3 R1 G3\n\n3) mneme: Build Y1 Mneme\n\n4) zoltar: Build G1 Zoltar\n\n5) mneme: Build Y1 Mneme\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) mneme: Trade Y1 G1 Mneme\n\n8) zoltar: Build G1 Zoltar\n\n9) mneme: Discover Y1 Mneme G3 Houston\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) mneme: Build G1 Mneme\n\tmneme: Yes. :)\n\n12) zoltar: Build R1 Zoltar\n\n13) mneme: Trade Y3 R3 Mneme\n\n14) zoltar: Trade R1 B1 Zoltar\n\tmneme: fast play!\r\n\n\n15) mneme: Trade G1 Y1 Mneme\n\n16) zoltar: Build Y2 Zoltar\n\n17) mneme: Build Y2 Mneme\n\n18) zoltar: Discover Y1 Zoltar G2 Greengelt\n\n19) mneme: Build G1 Mneme\n\n20) zoltar: Build G1 Zoltar\n\n21) mneme: Discover G1 Mneme G3 Bleeker\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild B1 Zoltar\n\n23) mneme: Sacrifice Y2 Mneme\nMove G1 Bleeker Greengelt\nMove G1 Greengelt Zoltar\nCatastrophe Zoltar Green\n\n24) zoltar: Build Y2 Greengelt\n\n25) mneme: Build Y2 Houston\n\n26) zoltar: Trade B1 G1 Zoltar\n\tzoltar: Ouch! I wasn't paying attention. I'm probably toast, now.\n\tmneme: did you miss the catastrophe?\n\tmneme: ah -- yes. Yeah, probably, though if so, this will be the first game of BH I win.\n\n27) mneme: Build Y3 Mneme\n\n28) zoltar: Build Y3 Zoltar\n\tzoltar: It took at least a dozen games before I won one -- this is a very hard game to learn, and the tactics are very tricky. \n\n29) mneme: Discover Y2 Houston B2 Prince\n\n30) zoltar: Trade Y2 G2 Zoltar\n\tzoltar: well, yes, I I did miss that previous catastrophe, but I've been able to quickly get a 3-pip ship in my homeworld, so I'm safe now, and only a tempo or two behind. Had you been able to stick a 3-pip ship in my homeworld before I could get my defences back, I would have lost in two or three moves. Luckily, I picked a pretty safe position to make such a key blunder!\n\n31) mneme: Build Y2 Houston\n\n32) zoltar: Build Y3 Zoltar\n\n33) mneme: Sacrifice Y3 Mneme\nMove Y1 Houston Prince\nMove Y2 Prince Zoltar\nMove Y1 Prince Zoltar\nCatastrophe Zoltar Y\n\tmneme: It's true -- it just seemed like too much trouble to "waste" multiple moves stopping you from getting that 3 (and it might not have worked in any case). But yeah.\r\n\n\n34) zoltar: Move Y1 Greengelt Zoltar\n\n35) mneme: Build R1 Mneme\n\n36) zoltar: Discover G1 Zoltar Y2 Bananas\n\tzoltar: Of course I had to force you to sac there or you end up with most of the yellow pieces. \n\tmneme: I know. As it is, not sure where we are, realy.\n\n37) mneme: Build R2 Mneme\n\n38) zoltar: Move R1 Zoltar Bananas\n\n39) mneme: Sacrifice Y2 Houston\nDiscover R3 Mneme R3 Sictransit\nMove R3 Sictransit Bananas\n\n40) zoltar: Sacrifice G2 Zoltar\nBuild R2 Bananas\nBuild R2 Bananas\nCatastrophe Bananas R\n\n41) mneme: Build R1 Mneme\n\n42) zoltar: Trade B1 G1 Zoltar\n\tzoltar: Well, you left me no choice -- else you march right into my homeworld with that R3.\n\tmneme: true. Should have gone to the y2. \n\n43) mneme: Discover G1 Mneme B3 Rector\n\n44) zoltar: Build G2 Bananas\n\tzoltar: I have so little to work with! Luckily, you don't have a fleet of R3 ships...\n\n45) mneme: Build G3 Rector\n\n46) zoltar: Build G3 Zoltar\n\n47) mneme: Trade G3 Y3 Rector\n\n48) zoltar: Trade G3 Y3 Zoltar\n\n49) mneme: Build G3 Rector\n\n50) zoltar: Build G3 Zoltar\n\n51) mneme: Sacrifice G3 Rector\nBuild Y1 Mneme\nBuild Y2 Rector\nBuild Y3 Mneme\n\n52) zoltar: Trade G3 R3 Zoltar\n\n53) mneme: Build G3 Rector\n\n54) zoltar: Build G3 Zoltar\n\n55) mneme: Discover R1 Mneme G3 Stone\n\n56) zoltar: Sacrifice Y2 Greengelt\nMove G2 Bananas Rector\nMove G1 Bananas Rector\nCatastrophe Rector G\n\n57) mneme: Move Y1 Mneme Stone\n\n58) zoltar: Discover Y3 Zoltar G2 Greenbelt\n\n59) mneme: Build Y2 Stone\n\n60) zoltar: Build Y2 Zoltar\n\n61) mneme: Discover R1 Stone G2 Wall\n\n62) zoltar: Move R3 Zoltar Greenbelt\n\n63) mneme: Move Y2 Rector Wall\n\n64) zoltar: Discover Y2 Zoltar B2 Blueridge\n\n65) mneme: Build R2 Wall\n\n66) zoltar: Build R2 Greenbelt\n\n67) mneme: Discover R2 Mneme G3 Pearl\n\n68) zoltar: Move R3 Greenbelt Stone\n\n69) mneme: Sacrifice Y2 Stone\nDiscover Y1 Stone B2 Bridge\nMove Y3 Rector Bridge\n\n70) zoltar: Build R3 Greenbelt\n\n71) mneme: Build R3 Pearl\n\n72) zoltar: Build Y2 Greenbelt\n\n73) mneme: Trade Y1 G1 Bridge\n\n74) zoltar: Build Y1 Zoltar\n\n75) mneme: Build G1 Bridge\n\n76) zoltar: Move G1 Zoltar Blueridge\n\n77) mneme: Sacrifice Y1 Mneme\nMove R3 Pearl Blueridge\n\n78) zoltar: Sacrifice Y2 Blueridge\nDiscover G1 Blueridge B1 Blueberry\nMove Y3 Greenbelt Pearl\n\n79) mneme: Trade G1 B1 Bridge\n\n80) zoltar: Sacrifice R2 Greenbelt\nAttack R2 Pearl\nPass\n\tmneme: I have, by the way, no idea who is winning. I'm assuming you are, but it's interesting.\n\n81) mneme: Build B2 Bridge\n\n82) zoltar: Move Y3 Pearl Wall\n\n83) mneme: Sacrifice Y2 Wall\nMove R2 Wall Zoltar\nMove R2 Zoltar Bridge\n\n84) zoltar: Build G1 Zoltar\n\n85) mneme: Build R2 Bridge\n\n86) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Greenbelt\nBuild Y2 Wall\n\n87) mneme: Trade R3 B3 Blueridge\n\n88) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Greenbelt\nBuild Y2 Greenbelt\n\n89) mneme: Sacrifice Y3 Bridge\nMove R1 Wall Zoltar\nMove R2 Bridge Zoltar\nMove R2 Bridge Zoltar\nCatastrophe Zoltar Red\n\n\tmneme: I think that's game, no? I don't see a save.\n\tmneme: (I think someone got greedy)\n\tzoltar: yes, it's been over for a while, I was waiting for you to do something before I resigned. Good game.\n\tmneme: Thanks -- good game! (I -think- if you'd taken my small red ship before I activated the doomsday device, you might have been able to keep me at bay long enough for your superior numbers to tell -- but I could be wrong)\n\tzoltar: Yeah, you're probably right, but I had to sack an R2 to take it, and then you immediately rebuild the R2 again -- that's what I was thinking, so I'd sort of given up at that point. I'm still an advanced beginner at this game, even though I have an inflated rating because I beat up on total beginners most of the time. And unlike chess, etc., there are no books to read or download with puzzles and annotated games to increase my strength. I'd like to get better at the game and I wish there were a lot of amazing tough players to spar with, or even computer opponents, like there are in chess.\n\tmneme: Hmm. Point -- ish. There are -some- amazing tough players -- Andy is ver good, frex. But playing against new players doesn't sharpen your skills much, I suppose (haven't done much of that, actually).\r\n\n\nHomeworlds Online (SDG# 4252)\nStarted: 2006.9.14, Ended: 2006.9.16\nParticipants: zoltar (S), unic (N)\nWinner: zoltar\n\n1) unic: Homeworld Y2 B1 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\n3) unic: Build G1 Unic\n\n4) zoltar: Build G1 Zoltar\n\n5) unic: Trade G1 R1 Unic\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) unic: Build R1 Unic\n\n8) zoltar: Build Y1 Zoltar\n\n9) unic: Build R2 Unic\n\n10) zoltar: Build Y1 Zoltar\n\n11) unic: Discover R2 Unic Y3 Prima\n\n12) zoltar: Discover Y1 Zoltar G2 Greendale\n\n13) unic: Discover R1 Unic G3 Secunda\n\n14) zoltar: Build Y2 Zoltar\n\n15) unic: Build R2 Secunda\n\n16) zoltar: Trade Y2 R2 Zoltar\n\n17) unic: Build R3 Unic\n\n18) zoltar: Build R3 Zoltar\n\n19) unic: Build R3 Unic\n\n20) zoltar: Discover R3 Zoltar Y2 Lemon\n\tunic: ... so, that's all the red pyramids gone for now.\n\n21) unic: Trade R3 Y3 Unic\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild R3 Lemon\nBuild Y2 Greendale\nBuild Y3 Zoltar\n\tzoltar: Yes, and you managed to get most of them!\n\n23) unic: Move Y3 Unic Secunda\n\tzoltar: Another good move, making sure you don't get locked out of the Yellow tech, and threatening to build your R3 back. I can't build the R3 in my homeworld, or else you now sack your Y3 and move an R1 into my homeworld, destroying my R3 as well as my red star. I am forced to sacrifice my G3 here, as there is no other reasonable move.\n\n24) zoltar: Trade Y1 G1 Zoltar\n\tzoltar: Now the game is very close, as I've got both yellow and red tech and have as many large ships, with my extra R3 vs your G3. All sorts of things could tip the scale one way or another, and there can be quick attacks and sacrifices or slow development in a game like this. It makes the game quite interesting and allows for different styles of play.\n\n25) unic: Build Y1 Secunda\n\tunic: This is where I start feeling a bit lost - the possibilities that arise from sacrificing ships are difficult for me to get an overview of.\n\tzoltar: Yes, I know the feeling: this is where the top players get the advantage against me. It takes several games to get a feel for complex positions and even see all the various candidate moves, much less choose among them.\n\n26) zoltar: Move R3 Lemon Prima\n\tzoltar: My choices are more limited: I had to get a green ship before I can build anything else.\n\n27) unic: Move R2 Prima Greendale\n\n28) zoltar: Sacrifice R2 Zoltar\nAttack R2 Greendale\nPass\n\n29) unic: Build G1 Unic\n\tunic: Run! Their ship is bigger than ours!\n\tzoltar: You may want to redo that move: I can sacrifice my r2 in zoltar and attack your r2 in greendale. \n\tunic: No, done is done.\n\n30) zoltar: Trade Y3 G3 Zoltar\n\n31) unic: Discover R3 Unic Y3 Tertia\n\n32) zoltar: Build R2 Greendale\n\n33) unic: Move Y1 Secunda Unic\n\n34) zoltar: Trade G1 B1 Zoltar\n\n35) unic: Move R3 Tertia Greendale\n\n36) zoltar: Build Y3 Zoltar\n\n37) unic: Sacrifice R2 Secunda\nAttack R2 Greendale\nAttack R2 Greendale\n\n38) zoltar: Sacrifice Y1 Greendale\nMove R3 Prima Greendale\nCatastrophe Greendale R\n\n39) unic: Build R2 Secunda\n\n40) zoltar: Sacrifice B1 Zoltar\nTrade Y2 R2 Greendale\n\tzoltar: oops -- I typed that in wrongly.\n\n41) unic: Trade R1 B1 Unic\n\n42) zoltar: Build G1 Zoltar\n\n43) unic: Move R1 Secunda Unic\n\n44) zoltar: Move Y1 Zoltar Greendale\n\n45) unic: Build B1 Unic\n\n46) zoltar: Move G1 Zoltar Lemon\n\n47) unic: Move B1 Unic Secunda\n\n48) zoltar: Build G1 Zoltar\n\n49) unic: Build B2 Secunda\n\n50) zoltar: Build G2 Lemon\n\tunic: Seems this game is in a bit of a slow phase currently.\n\n51) unic: Discover B2 Secunda B2 Prima\n\tzoltar: Yes, though that can change at any moment.\n\tzoltar: Yes, though that can change at any moment.\n\tzoltar: Yes, though that can change at any moment.\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G2 Lemon\nBuild G3 Zoltar\nBuild Y1 Greendale\n\tzoltar: hmm, somehow it repeated that 3 times\n\n53) unic: Sacrifice G3 Unic\nBuild G3 Unic\nBuild B2 Secunda\nBuild B3 Prima\n\n54) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Greendale\nBuild Y3 Zoltar\n\n55) unic: Sacrifice G3 Unic\nBuild G3 Unic\nBuild B3 Unic\nBuild R1 Unic\n\n56) zoltar: Discover G1 Lemon R3 Bigred\n\n57) unic: Trade B3 R3 Prima\n\n58) zoltar: Sacrifice G2 Lemon\nBuild G2 Bigred\nBuild R2 Greendale\n\n59) unic: Build B3 Secunda\n\tzoltar: I meant to say g1 there\n\n60) zoltar: Move Y1 Greendale Bigred\n\n61) unic: Sacrifice Y1 Unic\nMove B3 Unic Bigred\n\n62) zoltar:\nSacrifice Y3 Zoltar\nMove Y1 Bigred Unic\nMove G1 Bigred Unic\nMove G2 Bigred Unic\nCatastrophe Unic G\n\tzoltar: Unfortunately, I couldn't find a way to get into the Blue industry, which has built up your advantage.\n\n63) unic: Sacrifice Y3 Secunda\nMove B3 Bigred Unic\nMove B3 Secunda Greendale\nDiscover B1 Secunda G2 Tertia\n\tunic: I can't really see how to exploit my blue ships for anything useful though. Oh well... perhaps I'll spot something eventually.\n\n64) zoltar: Sacrifice G3 Zoltar\nBuild R3 Lemon\nBuild Y1 Unic\nBuild Y3 Zoltar\n\tzoltar: Even if you don't, after some fighting and explosions, you'll be able to trade them for ships you can find useful things to do with. That's what I'm afraid of.\n\tzoltar: Now I have to hope you make some mistakes and give me pieces and opportunities, like you did in the last game!\n\n65) unic: Sacrifice R3 Prima\nAttack Y2 Greendale\nAttack Y1 Greendale\nAttack Y1 Unic\n\tzoltar: Well, it's now or never -- I either have to exercise sharp tactics or else slowly get stangled. I've got to think about this for a few minutes.\n\tzoltar: s y3 zoltar\r\nm y1 bigred unic\r\nm g1 bigred unic\r\nm g2 bigred unic\r\nc unic g\n\n66) zoltar: Sacrifice R3 Lemon\nAttack Y2 Greendale\nAttack Y1 Greendale\nAttack B1 Unic\n\tzoltar: It's going to be big finish, one way or the other.\n\n67) unic: Sacrifice R2 Secunda\nAttack R2 Greendale\nAttack R2 Greendale\n\n68) zoltar: Sacrifice R3 Lemon\nAttack R2 Greendale\nAttack R2 Greendale\nAttack Y1 Unic\n\tzoltar: This is a very tough position, and makes for a really interesting game. Since I'm also rather new to the game, I still get lost in the possibilities here. This is one game that, after it's over, I'll replay on a board with Andy Looney when he has the time, so he can show me ideas that we missed. Anyway, this is the best I can come up with tonight.\n\n69) unic: Attack B1 Unic\n\n70) zoltar: Sacrifice R2 Greendale\nAttack R1 Unic\nAttack B1 Unic\n\tzoltar: Hey, the server's back up. I was worried we'd be down the whole weekend. Wow -- 6 sacrifices in a row, and 5 3-pip ships sacked in a row! That's a record for me. The most exciting games I've played have had multiple 3-pip sacrifices at the crucial stage in the endgame.\n\tunic: I've been compulsively checking the server all day! Finally back up :) It feels you're definitely ahead in this game... I'll have to ponder my options a while.\n\n71) unic: Sacrifice R1 Unic\nAttack R2 Greendale\n\tunic: Yet another sacrifice... this game feels like a real rollercoaster currently!\n\tunic: If you do end up getting any comments from Andy Looney or some other good player, please feel free to share them!\n\n72) zoltar: Sacrifice R1 Unic\nAttack R2 Greendale\n\tzoltar: That's 8 sacrifices in a row. Well, you have two more red ships and so do I... I finally feel that I'm ahead in the game, too, but I think I was losing up until the wild sacrificing frenzy. In any case, this is one of the most fun homeworlds games I've played, and regardless of how it ends, I'm replaying this for Andy Looney and John Cooper next Thursday on game night. If he has lots of comments on all the sacrifices and interesting options that we missed, I'll write them down and let you know. Btw, I just (yesterday) won a game from TwoShort, which is no small feat, as he is the best active player here, and second only to Andy. I lose most of my games to him. In fact, if you have a set of pyramids, I'd suggest you check out the archives and replay all of TwoShort's and games. You need to view the PGN files ( http://superdupergames.org/pgn.html?id=homeworlds ). That's what I did after my first couple disorienting games (I didn't play as well as you at first), and then I was able to defeat just about everyone but TwoShort and Andy Looney. It's worth it if you like the game and want to play a lot. If you study a bunch of games, and play me some more, I'd then suggest you challenge TwoShort and give him a run for his money. He'll be shocked to have a second new player (besides me) learn the game and be able to deal with all his tricks.\n\n73) unic: Sacrifice B2 Prima\nTrade B3 R3 Greendale\nTrade B3 R3 Unic\n\n74) zoltar: Sacrifice G2 Lemon\nBuild B2 Unic\nBuild B2 Unic\nCatastrophe Unic B\n\n75) unic: Sacrifice R3 Greendale\nAttack Y1 Unic\nAttack Y1 Unic\nPass\n\n76) zoltar: Sacrifice Y2 Greendale\nMove Y1 Greendale Zoltar\nMove Y1 Zoltar Unic\nCatastrophe Unic Y\n\n\tzoltar: Sure! Excellent game.\n\nHomeworlds Online (SDG# 4226)\nStarted: 2006.9.14, Ended: 2006.9.21\nParticipants: zoltar (S), jerzy (N)\nWinner: zoltar\n\n1) jerzy: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) jerzy: Build G1 Jerzy\n\n4) zoltar: Build G1 Zoltar\n\n5) jerzy: Trade G1 Y1 Jerzy\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) jerzy: Build G1 Jerzy\n\n8) zoltar: Build Y1 Zoltar\n\n9) jerzy: Build Y2 Jerzy\n\n10) zoltar: Build Y2 Zoltar\n\n11) jerzy: Trade Y1 R1 Jerzy\n\n12) zoltar: Trade Y2 R2 Zoltar\n\tjerzy: Which is more useful: a r2 or a y2?\n\n13) jerzy: Build Y1 Jerzy\n\n14) zoltar: Build Y2 Zoltar\n\tzoltar: It depends upon the position. Early in the game, a Y2 is definitely more useful, as spreading your pieces out in order to grow is crucial. You have to get a red ship when your opponent does (as you saw in the last game), but once you have a red ship, then it entirely depends upon the position. The general principle is to try to take whatever allows you to build 3-pip ships as soon as possible, and then you can always trade among the colors on a blue star or sacrifice a blue piece to get the one most needed. Having more large ships of any kind is a huge advantage, as a large ship of any color can bully any smaller ships as long as there is even just a single R1 parked somewhere at any star that can be sacrificed.\n\n15) jerzy: Trade Y1 B1 Jerzy\n\tzoltar: Note that here I could have made a classic beginners' mistake and sacked my Y3 to send my Y1 into your homeworld and blow up your yellow star and ships. It would leave me without a large ship in my homeworld. In fact, in this case, as with only the blue star left our homeworlds would become directly connected, you could build a yellow ship and march your G3 into my homeworld and win before I would have a chance to rebuild. The principle is: don't sacrifice a lot to blow up one star if you can't attack the other one and will be vulnerable to counter-attack.\n\n16) zoltar: Trade Y2 B2 Zoltar\n\n17) jerzy: Discover G1 Jerzy Y3 Sol\n\tjerzy: Likewise, should I not sac my y2 to destroy your "lemons" in game #4135?\n\tjerzy: Likewise, should I not sac my y2 to destroy your "lemons" in game 4135?\n\n18) zoltar: Build R1 Zoltar\n\n19) jerzy: Build G1 Jerzy\n\n20) zoltar: Build G2 Zoltar\n\n21) jerzy: Build G2 Sol\n\n22) zoltar: Discover G1 Zoltar Y2 Lemon\n\n23) jerzy: Sacrifice B1 Jerzy\nTrade G2 B2 Sol\n\n24) zoltar: Build G2 Lemon\n\n25) jerzy: Build B1 Sol\n\n26) zoltar: Move G1 Lemon Sol\n\tjerzy: I'll be away for the weekend, so please be patient if I take a while to make my move...\n\n27) jerzy: Trade B2 R2 Sol\n\n28) zoltar: Move R2 Zoltar Lemon\n\n29) jerzy: Move G1 Sol Lemon\n\n30) zoltar: Attack G1 Lemon\n\n31) jerzy: Attack G1 Sol\n\n32) zoltar: Discover G2 Lemon G3 Banana\n\n33) jerzy: Sacrifice G3 Jerzy\nBuild G2 Sol\nBuild G3 Jerzy\nPass\n\n34) zoltar: Build G3 Zoltar\n\n35) jerzy: Trade G2 Y2 Sol\n\n36) zoltar: Discover Y1 Zoltar G2 Lime\n\n37) jerzy: Build R1 Sol\n\n38) zoltar: Sacrifice Y3 Zoltar\nMove G1 Lemon Banana\nMove G2 Banana Jerzy\nMove G1 Banana Jerzy\nCatastrophe Jerzy G\n\n39) jerzy: Build G1 Sol\n\n40) zoltar: Sacrifice B2 Zoltar\nTrade R1 Y1 Zoltar\nTrade Y1 R1 Lime\n\n41) jerzy: Move G1 Sol Jerzy\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild R2 Lime\nBuild R3 Lime\nBuild R3 Lemon\n\n43) jerzy: Move R1 Sol Lime\nCatastrophe Lime Red\n\n44) zoltar: Move R3 Lemon Sol\n\n45) jerzy: Sacrifice Y2 Sol\nMove R2 Sol Jerzy\nMove G1 Sol Jerzy\n\tjerzy: I don't quite understand how is the large yellow supposed to act as a "bank" in this opening.\n\tzoltar: The idea would be that you would have a lone g2 (or g1) sitting on the y3 star. Later in the game, when all the yellow is taken, you sack your g2, destroying the star; you then on the same turn build that y3 from the star in one of your systems, and (if it was a g2 and not a g1 you sacked) you rebuild the g2 somewhere else. The small and medium star combo is called "the banker" because you are one step from large stars, which can become "investments" when you park green ships on them.\n\n46) zoltar: Attack B1 Sol\n\n47) jerzy: Build R1 Jerzy\n\tzoltar: well that wuz mighty un-neighborly uvya!\n\n48) zoltar: Trade B1 G1 Sol\n\tzoltar: Zoltar to fleet: move zee Death Star into zee Sol System and spread death and destruction! Whew Who!\n\tjerzy: Run awaaaaaaaaaaaaay!\n\n49) jerzy: Discover R2 Jerzy Y3 Blobiv\n\n50) zoltar: Build G2 Zoltar\n\tzoltar: Zee spinelezz hyu-maahn beanz have fled! Sol ease mine -- awl mine!!! Yippppeeee!\n\n51) jerzy: Move G1 Jerzy Blobiv\n\tjerzy: Suicide measures: move one red ship into my system and we're both done with it!\n\tzoltar: And destroy my Death Star!? Never!\n\n52) zoltar: Move G2 Zoltar Lemon\n\n53) jerzy: Build G2 Jerzy\n\n54) zoltar: Build G3 Zoltar\n\n55) jerzy: Sacrifice G2 Jerzy\nBuild G2 Blobiv\nBuild G3 Jerzy\n\n56) zoltar: Sacrifice G2 Zoltar\nBuild G2 Sol\nBuild G3 Zoltar\n\n57) jerzy: Sacrifice G3 Jerzy\nBuild G3 Jerzy\nBuild Y1 Jerzy\nBuild R1 Blobiv\n\n58) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Zoltar\n\n59) jerzy: Sacrifice G3 Jerzy\nBuild G3 Jerzy\nBuild R2 Blobiv\nBuild R3 Jerzy\n\n60) zoltar: Sacrifice Y2 Zoltar\nMove R2 Lemon Sol\nMove R2 Sol Jerzy\nCatastrophe Jerzy R\n\n61) jerzy: Move R2 Blobiv Lemon\n\n62) zoltar: Sacrifice G2 Lemon\nBuild Y2 Zoltar\nBuild R1 Sol\n\n63) jerzy: Move Y1 Jerzy Blobiv\n\tjerzy: Dammit! Those alien pirates stole the ship I was about to buy!\n\n64) zoltar: Sacrifice Y2 Zoltar\nMove G2 Sol Jerzy\nMove G1 Sol Jerzy\nCatastrophe Jerzy G\n\n\tzoltar: Hey jerzy, I started a zendo game, but no one else has signed up for the harder one that you signed up for. Want me to add you to the one I just got going?\n\nHomeworlds Online (SDG# 4258)\nVariants: "No undo"\nStarted: 2006.9.16, Ended: 2006.9.21\nParticipants: unic (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) unic: Homeworld B2 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) unic: Build G1 Unic\n\tunic: By the way, if you fancy playing anything else besides Homeworlds, feel free to throw a challenge my way - I'm up for more or less any pure abstract (no luck, no hidden information, no simultaneous choices).\n\n5) zoltar: Trade G1 Y1 Zoltar\n\tzoltar: Sure. That is an interesting distinction, btw. Having played chess since I was barely able to read, I have a special liking for pure abstract games; most of the game developers I play with at LooneyLabs however prefer games with some random chance mechanism or hidden information. I like both kinds. I have just learned Pikemen, and I know the developer of that game as well, Jacob Davenport. I won my first two games so far, which were against other beginners. I'll challenge you to that one.\n\n6) unic: Trade G1 R1 Unic\n\n7) zoltar: Build Y1 Zoltar\n\n8) unic: Build R1 Unic\n\n9) zoltar: Build Y2 Zoltar\n\n10) unic: Build R2 Unic\n\n11) zoltar: Trade Y2 R2 Zoltar\n\n12) unic: Discover R2 Unic Y3 Alpha\n\n13) zoltar: Build Y2 Zoltar\n\n14) unic: Sacrifice G3 Unic\nBuild R2 Alpha\nBuild R3 Unic\nBuild R3 Alpha\n\n15) zoltar: Sacrifice Y2 Zoltar\nDiscover R2 Zoltar Y2 Wormhole\nMove R2 Wormhole Alpha\nCatastrophe Alpha R\n\tzoltar: Good heavens! RED ALERT!\n\n16) unic: Trade R3 G3 Unic\n\tunic: I was wondering if you would do that...\n\n17) zoltar: Build Y2 Zoltar\n\n18) unic: Build R2 Unic\n\tzoltar: I had no choice. If I build the last r3, you just move your red ships to blue stars and trade them and you are way u in material.\n\n19) zoltar: Trade Y2 R2 Zoltar\n\n20) unic: Discover R2 Unic G3 Alpha\n\n21) zoltar: Build Y2 Zoltar\n\n22) unic: Build R2 Unic\n\n23) zoltar: Discover R2 Zoltar G2 Beta\n\n24) unic: Trade R2 Y2 Unic\n\n25) zoltar: Move Y1 Zoltar Beta\n\n26) unic: Discover R1 Unic B3 Gamma\n\n27) zoltar: Discover Y1 Zoltar G2 Delta\n\n28) unic: Sacrifice G3 Unic\nBuild R2 Alpha\nBuild R3 Gamma\nBuild R3 Unic\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Delta\nBuild Y3 Beta\nBuild Y3 Zoltar\n\n30) unic: Sacrifice Y2 Unic\nMove R3 Gamma Delta\nMove R2 Alpha Delta\n\n31) zoltar: Build R3 Beta\n\n32) unic: Trade R3 G3 Unic\n\n33) zoltar: Trade Y3 G3 Zoltar\n\n34) unic: Build R3 Unic\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Delta\nBuild Y3 Zoltar\nBuild Y3 Zoltar\n\n36) unic: Sacrifice R2 Delta\nAttack Y2 Delta\nAttack Y2 Delta\n\n37) zoltar: Move Y2 Zoltar Delta\nCatastrophe Delta Y\n\n38) unic: Trade R1 Y1 Unic\n\n39) zoltar: Trade Y3 G3 Zoltar\n\n40) unic: Move Y1 Unic Alpha\n\n41) zoltar: Move Y3 Beta Alpha\n\n42) unic: Sacrifice G3 Unic\nBuild Y2 Alpha\nBuild Y2 Alpha\nBuild R1 Delta\nCatastrophe Alpha Y\n\n43) zoltar: Build R2 Beta\n\n44) unic: Trade R3 G3 Unic\n\n45) zoltar: Trade Y3 R3 Zoltar\n\n46) unic: Build G1 Unic\n\n47) zoltar: Move R2 Beta Gamma\n\n48) unic: Trade G1 Y1 Unic\n\n49) zoltar: Build Y2 Beta\n\n50) unic: Move Y1 Unic Alpha\n\n51) zoltar: Move R3 Beta Alpha\n\n52) unic: Discover R2 Alpha Y2 Epsilon\n\n53) zoltar: Attack Y1 Alpha\n\n54) unic: Build G1 Unic\n\n55) zoltar: Move Y2 Beta Gamma\n\n56) unic: Trade G1 B1 Unic\n\n57) zoltar: Trade R3 Y3 Zoltar\n\n58) unic: Discover B1 Unic Y3 Zeta\n\n59) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Gamma\nBuild R3 Beta\n\n60) unic: Build G1 Unic\n\n61) zoltar: Trade Y2 G2 Zoltar\n\tzoltar: I couldn't resist trying to monopolize the rest of the yellow and red tech. It's very hard to make many threats if you get locked out of yellow.\n\n62) unic: Move B1 Zeta Delta\n\tunic: I've noticed - not having any yellow is a pain.\n\n63) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Alpha\n\n64) unic: Build G1 Unic\n\n65) zoltar: Trade Y2 G2 Zoltar\n\n66) unic: Trade G1 B1 Unic\n\tzoltar: I suppose I can repeat the same trick again.\n\n67) zoltar: Build Y2 Beta\n\n68) unic: Build B1 Delta\n\n69) zoltar: Trade Y2 B2 Gamma\n\n70) unic: Trade B1 G1 Delta\n\tzoltar: And another variation on the same theme...\n\n71) zoltar: Build Y2 Alpha\n\tunic: I'm just waiting for you to use your overwhelming advantage in ships to actually win the game...\n\n72) unic: Build B1 Delta\n\n73) zoltar: Move Y3 Alpha Epsilon\n\n74) unic: Discover R2 Epsilon B3 Zeta\n\n75) zoltar: Attack R1 Gamma\n\n76) unic: Build B2 Delta\n\n77) zoltar: Move B2 Gamma Delta\nCatastrophe Delta B\n\n78) unic: Move G1 Unic Zeta\n\n79) zoltar: Move R3 Beta Zeta\n\n\tunic: Can't see much to do... might as well get it over with.\n\nHomeworlds Online (SDG# 4325)\nStarted: 2006.9.20, Ended: 2006.11.13\nParticipants: unic (S), Cerulean (N)\nWinner: Cerulean\n\n1) Cerulean: Homeworld B2 Y1 G3\n\n2) unic: Homeworld R1 B3 G3\n\n3) Cerulean: Build G1 Cerulean\n\n4) unic: Build G1 Unic\n\n5) Cerulean: Discover G1 Cerulean Y3 Wythrii\n\n6) unic: Trade G1 Y1 Unic\n\n7) Cerulean: Build G1 Cerulean\n\n8) unic: Build Y1 Unic\n\n9) Cerulean: Trade G3 Y3 Cerulean\n\n10) unic: Build Y2 Unic\n\n11) Cerulean: Build Y2 Cerulean\n\n12) unic: Discover Y1 Unic G2 Amani\n\n13) Cerulean: Trade Y2 R2 Cerulean\n\n14) unic: Trade Y2 R2 Unic\n\n15) Cerulean: Build Y2 Cerulean\n\n16) unic: Build Y2 Amani\n\n17) Cerulean: Move Y2 Cerulean Wythrii\n\n18) unic: Discover Y1 Amani G3 Barumba\n\n19) Cerulean: Build G1 Wythrii\n\n20) unic: Build Y2 Barumba\n\n21) Cerulean: Trade Y3 G3 Cerulean\n\n22) unic: Sacrifice G3 Unic\nBuild Y3 Barumba\nBuild Y3 Unic\nBuild R1 Unic\n\n23) Cerulean: Build G2 Wythrii\n\n24) unic: Move Y1 Barumba Cerulean\n\n25) Cerulean: Trade G1 R1 Cerulean\n\n26) unic: Move Y3 Barumba Cerulean\n\n27) Cerulean: Attack Y3S Cerulean\n\n28) unic: Move Y2 Barumba Cerulean\nCatastrophe Cerulean Yellow\n\n29) Cerulean: Sacrifice Y2 Wythrii\nMove G1 Wythrii Cerulean\nMove R1 Cerulean Unic\nCatastrophe Unic R\n\n30) unic: Trade Y1 R1 Unic\n\n31) Cerulean: Sacrifice G3 Cerulean\nBuild G1 Cerulean\nBuild G2 Wythrii\nBuild G3 Cerulean\n\n32) unic: Trade Y3 G3 Unic\n\n33) Cerulean: Trade G3 Y3 Cerulean\n\n34) unic: Build G3 Unic\n\n35) Cerulean: Discover G1 Wythrii Y1 Wywun\n\n36) unic: Trade G3 Y3 Unic\n\n37) Cerulean: Build G3 Wywun\n\n38) unic: Discover Y2 Amani G3 Frz\n\n39) Cerulean: Trade G1 B1 Cerulean\n\n40) unic: Build G1 Unic\n\n41) Cerulean: Build G2 Cerulean\n\n42) unic: Sacrifice G3 Unic\nBuild G3 Unic\nBuild Y1 Unic\nBuild Y1 Frz\n\n43) Cerulean: Move B1 Cerulean Wywun\n\n44) unic: Trade Y1 B1 Unic\n\n45) Cerulean: Trade G1 B1 Cerulean\n\n46) unic: Move B1 Unic Wywun\n\n47) Cerulean: Sacrifice Y3 Cerulean\nMove B1 Wywun Unic\nMove B1 Cerulean Unic\nMove G1 Wywun Unic\n\n\nHomeworlds Online (SDG# 4249)\nStarted: 2006.9.21, Ended: 2006.9.21\nParticipants: gundam_blade (S), zoltar (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 4339)\nStarted: 2006.9.21, Ended: 2006.9.25\nParticipants: gundam_blade (S), unic (N)\nWinner: unic\n\n1) unic: Homeworld G1 Y2 B3\n\tunic: Hi and good luck!\n\n2) gundam_blade: Homeworld B3 G2 R3\n\n3) unic: Build B1 Unic\n\n4) gundam_blade: Build R1 Gundam_blade\n\n5) unic: Build B1 Unic\n\n6) gundam_blade: Build R1 Gundam_blade\n\n7) unic: Discover B1 Unic G3 Prima\n\n8) gundam_blade: Trade R1 Y1 Gundam_blade\n\n9) unic: Build B1 Unic\n\n10) gundam_blade: Discover R1 Gundam_blade Y1 Gundam1\n\n11) unic: Trade B1 R1 Unic\n\n12) gundam_blade: Build Y1 Gundam_blade\n\n\nHomeworlds Online (SDG# 4341)\nStarted: 2006.9.21, Ended: 2006.9.30\nParticipants: unic (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y2 G3\n\n2) unic: Homeworld Y1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) unic: Build G1 Unic\n\tunic: Time for me to lose at Homeworlds again, then...\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) unic: Trade G1 Y1 Unic\n\n7) zoltar: Build Y2 Zoltar\n\n8) unic: Build Y2 Unic\n\n9) zoltar: Discover Y1 Zoltar G1 Lime\n\n10) unic: Discover Y1 Unic G2 Cicero\n\n11) zoltar: Build Y3 Lime\n\n12) unic: Build Y3 Cicero\n\n13) zoltar: Move Y1 Lime Cicero\n\n14) unic: Discover Y2 Unic B2 Catullus\n\n15) zoltar: Build Y3 Cicero\nCatastrophe Cicero Y\n\n16) unic: Build G1 Unic\n\n17) zoltar: Build G1 Zoltar\n\n18) unic: Trade G1 Y1 Unic\n\n19) zoltar: Trade G1 R1 Zoltar\n\n20) unic: Trade Y1 R1 Unic\n\n21) zoltar: Build G1 Zoltar\n\n22) unic: Build G1 Unic\n\n23) zoltar: Build G2 Zoltar\n\n24) unic: Move G1 Unic Catullus\n\n25) zoltar: Trade G1 B1 Zoltar\n\n26) unic: Build Y1 Catullus\n\n27) zoltar: Discover Y2 Zoltar B1 Blueberry\n\n28) unic: Discover Y1 Catullus G1 Petronius\n\n29) zoltar: Move G2 Zoltar Blueberry\n\n30) unic: Build G2 Unic\n\n31) zoltar: Build G2 Zoltar\n\n32) unic: Sacrifice G3 Unic\nBuild G3 Unic\nBuild G3 Catullus\nBuild R1 Unic\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Lime\nBuild Y3 Blueberry\n\n34) unic: Build Y3 Petronius\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Zoltar\nBuild B1 Zoltar\n\n36) unic: Trade G3 B3 Catullus\n\n37) zoltar: Move B1 Zoltar Lime\n\n38) unic: Build G3 Catullus\n\n39) zoltar: Sacrifice Y3 Lime\nMove B1 Zoltar Lime\nMove B1 Lime Catullus\nMove B1 Lime Catullus\nCatastrophe Catullus B\n\n40) unic: Trade G3 Y3 Unic\n\n41) zoltar: Build Y2 Lime\n\n42) unic: Discover Y1 Petronius B2 Lucretius\n\n43) zoltar: Move Y2 Lime Lucretius\n\n44) unic: Trade Y3 G3 Unic\n\n45) zoltar: Sacrifice G3 Zoltar\nBuild G1 Blueberry\nBuild G3 Zoltar\nBuild Y3 Lime\n\n46) unic: Trade R1 B1 Unic\n\n47) zoltar: Sacrifice G2 Zoltar\nBuild G2 Blueberry\nBuild G3 Zoltar\n\n48) unic: Build B1 Unic\n\n49) zoltar: Trade G3 B3 Zoltar\n\n50) unic: Move G2 Unic Lucretius\n\n51) zoltar: Sacrifice R1 Zoltar\nAttack G2 Lucretius\n\n52) unic: Build G3 Unic\n\n53) zoltar: Sacrifice Y3 Blueberry\nMove G1 Blueberry Lucretius\nMove G2 Lucretius Unic\nMove G1 Lucretius Unic\nCatastrophe Unic G\n\n54) unic: Build Y3 Petronius\n\n55) zoltar: Sacrifice Y3 Lime\nMove Y1 Lime Lucretius\nMove Y1 Lucretius Petronius\nMove Y2 Lucretius Petronius\nCatastrophe Petronius Y\n\n56) unic: Trade B1 G1 Unic\n\n57) zoltar: Sacrifice Y2 Blueberry\nMove G2 Blueberry Lucretius\nMove G2 Lucretius Unic\n\n\tzoltar: In two moves you let me destroy your entire fleet!\n\tzoltar: You'll need more practice before you can take on Darth TwoShort. :)\n\tunic: I need more practice before I can take on you! :)\n\nHomeworlds Online (SDG# 4336)\nVariants: "Unrated"\nStarted: 2006.9.21, Ended: 2006.10.5\nParticipants: Fabi (S), jerzy (N)\nWinner: Fabi\n\n1) jerzy: Homeworld Y1 B2 G3\n\n2) Fabi: Homeworld B2 Y1 G3 *\n\n3) jerzy: Build G1 Jerzy\n\n4) Fabi: Build G1 Fabi\n\n5) jerzy: Build G1 Jerzy\n\tjerzy: Você sabe que estamos apenas a uma estrela de distância entre nós, né?\n\n6) Fabi: Trade G1 Y1 Fabi\n\n7) jerzy: Trade G1 R1 Jerzy\n\n8) Fabi: Build Y2 Fabi\n\n9) jerzy: Build R1 Jerzy\n\n10) Fabi: Trade Y1 R1 Fabi\n\n11) jerzy: Discover R1 Jerzy Y3 Fatoldsun\n\n12) Fabi: Build Y1 Fabi\n\n13) jerzy: Build R2 Jerzy\n\n14) Fabi: Build R2 Fabi\n\tFabi: Você deveria ter aproveitado e trocado uma pecinha tua pelo amarelo.\n\n15) jerzy: Trade R2 Y2 Jerzy\n\tjerzy: No problem... já vou conseguir um y2...\n\n16) Fabi: Discover R1 Fabi G3 Thinyoungmoon\n\n17) jerzy: Build R2 Jerzy\n\n18) Fabi: Move Y2 Fabi Thinyoungmoon\n\n19) jerzy: Move G1 Jerzy Fatoldsun\n\n20) Fabi: Build Y2 Thinyoungmoon\n\n21) jerzy: Move Y2 Jerzy Fatoldsun\n\n22) Fabi: Build R2 Fabi\n\n23) jerzy: Move R1 Jerzy Fatoldsun\n\n24) Fabi: Move R2 Fabi Thinyoungmoon\n\n25) jerzy: Build R3 Jerzy\n\n26) Fabi: Build G1 Fabi\n\n27) jerzy: Move R3 Jerzy Thinyoungmoon\n\tjerzy: Não me diga que o e-mail do yahoo não está funcionando de novo!\n\n28) Fabi: Sacrifice Y2 Thinyoungmoon\nDiscover Y2 Thinyoungmoon G2 Adalimumab\nMove R2 Thinyoungmoon Adalimumab\n\n29) jerzy: Build R3 Jerzy\n\n30) Fabi: Discover G1 Fabi Y3 Cetuximab\n\tFabi: aaaaahhh, meu Deus.. estou udida\n\n31) jerzy: Trade R3 Y3 Jerzy\n\n32) Fabi: Build G1 Fabi\n\tjerzy: Mhwa ha ha ha ha! Dominarei o universo!\n\n33) jerzy: Build G2 Fatoldsun\n\n34) Fabi: Trade G1 B1 Fabi\n\n35) jerzy: Build G1 Fatoldsun\n\n36) Fabi: Sacrifice Y2 Adalimumab\nMove G1 Cetuximab Adalimumab\nMove G1 Adalimumab Fatoldsun\nCatastrophe Fatoldsun Green\n\n37) jerzy: Attack R1 Thinyoungmoon\n\n38) Fabi: Build R3 Adalimumab\n\n39) jerzy: Sacrifice Y3 Jerzy\nMove R1 Fatoldsun Fabi\nMove R1 Fatoldsun Fabi\nMove R1 Thinyoungmoon Fabi\nCatastrophe Fabi Red\n\n40) Fabi: Trade B1 R1 Fabi\n\tjerzy: Wow! você me pegou!\n\n41) jerzy: Build R1 Thinyoungmoon\n\n42) Fabi: Build R1 Fabi\n\n43) jerzy: Move Y2 Fatoldsun Jerzy\n\n44) Fabi: Trade R1 B1 Fabi\n\n45) jerzy: Build G1 Jerzy\n\n46) Fabi: Build Y2 Fabi\n\n47) jerzy: Trade G1 B1 Jerzy\n\n48) Fabi: Sacrifice Y2 Fabi\nMove R3 Adalimumab Thinyoungmoon\nMove R2 Adalimumab Thinyoungmoon\nCatastrophe Thinyoungmoon Red\n\n49) jerzy: Build G1 Jerzy\n\n50) Fabi: Discover Y1 Fabi G3 Acarbose\n\n51) jerzy: Move R2 Jerzy Acarbose\n\n52) Fabi: Move Y1 Acarbose Fabi\n\n53) jerzy: Build R1 Acarbose\n\tjerzy: ?????\n\n54) Fabi: Build Y2 Fabi\n\n55) jerzy: Move B1 Jerzy Acarbose\n\n56) Fabi: Build G1 Fabi\n\n57) jerzy: Trade R1 B1 Acarbose\n\n58) Fabi: Discover B1 Fabi R3 Bigo\n\n59) jerzy: Trade R2 Y2 Acarbose\n\n60) Fabi: Move Y2 Fabi Bigo\n\n61) jerzy: Move G3 Jerzy Bigo\n\n62) Fabi: Move Y2 Bigo Jerzy\n\tjerzy: Cheque-mate em 3 jogadas...\n\n\nHomeworlds Online (SDG# 4343)\nStarted: 2006.9.21, Ended: 2006.9.25\nParticipants: zoltar (S), gundam_blade (N)\nWinner: zoltar\n\n1) gundam_blade: Homeworld G3 B2 R3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) gundam_blade: Build R1 Gundam_blade\n\n4) zoltar: Build G1 Zoltar\n\n5) gundam_blade: Trade R1 Y1 Gundam_blade\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) gundam_blade: Discover Y1 Gundam_blade R1 Gundam1\n\n8) zoltar: Build Y1 Zoltar\n\n9) gundam_blade: Build R1 Gundam_blade\n\n10) zoltar: Discover Y1 Zoltar G1 Greenbelt\n\tzoltar: I just realized that I chose the same star sizes as you, rendering this a "small" world. I didn't mean to do that, as we are only two steps instead of three from each other's homeworlds. I would have redone that move had I noticed it in time. The game will still be ok, but a lot of the interesting themes will be missing.\n\n11) gundam_blade: Move Y1 Gundam1 Gundam_blade\n\n12) zoltar: Build Y2 Greenbelt\n\n13) gundam_blade: Build Y2 Gundam_blade\n\n14) zoltar: Build Y2 Zoltar\n\n15) gundam_blade: Discover Y2 Gundam_blade B1 Gundam1\n\n16) zoltar: Trade Y1 R1 Zoltar\n\tgundam_blade: i wish the game was live like yahoo or something\n\n17) gundam_blade: Trade Y2 G2 Gundam1\n\n18) zoltar: Build Y1 Zoltar\n\n19) gundam_blade: Move R1 Gundam_blade Greenbelt\n\n20) zoltar: Sacrifice R1 Zoltar\nAttack R1 Greenbelt\n\n21) gundam_blade: Build G1 Gundam1\n\n22) zoltar: Move Y2 Zoltar Gundam1\n\tgundam_blade: I'm new to this and confused. I know you sacrificed your red, but I thought you can only use actions in the system you start with, therefore I thought I would be safe because you didn't have any red to start with in greenbelt.\n\n23) gundam_blade: Trade G2 R2 Gundam1\n\n24) zoltar: Sacrifice R1 Greenbelt\nAttack R2 Gundam1\n\n25) gundam_blade: Build Y2 Gundam_blade\n\tzoltar: no, you can use that power anywhere on the board. The requirement is that I had to have a medium (or large) ship in the system to capture your medium ship. Think of it this way: when you sacrifice, it's as if any star you want can become the color of the piece you sacrifice, so here the gundam1 system becomes for the move as if it were a red star instead of the blue star. I just read your comment after my move, or I would have suggested you undo the move. They will not let you roll back the position more than 1/2 move (you can undo your move once). \n\n26) zoltar: Build Y3 Zoltar\n\n27) gundam_blade: Discover Y2 Gundam_blade R1 Gundam2\n\n28) zoltar: Trade Y1 R1 Zoltar\n\n29) gundam_blade: Build R1 Gundam_blade\n\n30) zoltar: Attack G1 Gundam1\n\n31) gundam_blade: Move R1 Gundam_blade Gundam2\n\n32) zoltar: Build R2 Gundam1\n\n33) gundam_blade: Build Y1 Gundam_blade\n\n34) zoltar: Build Y3 Zoltar\n\n35) gundam_blade: Trade Y1 G1 Gundam_blade\n\n36) zoltar: Build G2 Gundam1\n\n37) gundam_blade: Build G2 Gundam_blade\n\n38) zoltar: Move G1 Gundam1 Gundam_blade\nCatastrophe Gundam_blade G\n\n39) gundam_blade: Trade Y1 G1 Gundam_blade\n\n40) zoltar: Discover R2 Gundam1 G3 Greenhills\n\n41) gundam_blade: Build G1 Gundam_blade\n\n42) zoltar: Build G2 Zoltar\n\n43) gundam_blade: Build G2 Gundam_blade\n\n\nHomeworlds Online (SDG# 4358)\nStarted: 2006.9.23, Ended: 2006.9.25\nParticipants: maka (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R2 G3\n\n2) maka: Homeworld B3 G1 Y3\n\n3) zoltar: Build G1 Zoltar\n\tmaka: Hello.\n\tzoltar: Greetingz from Greenbelt, Milky Way.\n\n4) maka: Build Y1 Maka\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) maka: Trade Y1 G1 Maka\n\n7) zoltar: Build Y1 Zoltar\n\n8) maka: Discover G1 Maka B2 Tolok\n\n9) zoltar: Discover Y1 Zoltar B1 Blueberry\n\n10) maka: Build G1 Tolok\n\n11) zoltar: Build G2 Zoltar\n\n12) maka: Build G2 Tolok\n\n13) zoltar: Move G2 Zoltar Blueberry\n\n14) maka: Trade G2 Y2 Tolok\n\n15) zoltar: Build G2 Zoltar\n\n16) maka: Trade G1 R1 Tolok\n\n17) zoltar: Trade G2 R2 Zoltar\n\n18) maka: Build R1 Tolok\n\n19) zoltar: Move R2 Zoltar Blueberry\n\n20) maka: Move R1 Tolok Maka\n\n21) zoltar: Build G1 Blueberry\n\n22) maka: Build G2 Tolok\n\n23) zoltar: Discover G1 Blueberry Y2 Lemon\n\n24) maka: Move R1 Maka Lemon\n\n25) zoltar: Build G2 Lemon\n\n26) maka: Attack G1 Lemon\n\n27) zoltar: Sacrifice R2 Blueberry\nAttack G1 Lemon\nAttack R1 Lemon\n\n28) maka: Move R1 Tolok Maka\n\n29) zoltar: Build G3 Zoltar\n\n30) maka: Trade G1 B1 Tolok\n\n31) zoltar: Sacrifice G3 Zoltar\nBuild G1 Lemon\nBuild G3 Blueberry\nBuild G3 Zoltar\n\n32) maka: Discover G2 Tolok Y1 Sol\n\n33) zoltar: Sacrifice G3 Blueberry\nBuild Y2 Zoltar\nBuild Y3 Blueberry\nBuild Y3 Zoltar\n\n34) maka: Build G3 Sol\n\tmaka: sorry about that...\n\n35) zoltar: Sacrifice Y2 Zoltar\nMove G1 Lemon Sol\nMove G1 Lemon Sol\nCatastrophe Sol G\n\tzoltar: no problem, that's what the undo is for.\n\n36) maka: Discover Y2 Tolok G1 Frog\n\n37) zoltar: Move Y1 Blueberry Tolok\n\n38) maka: Trade B1 R1 Tolok\n\n39) zoltar: Sacrifice R1 Lemon\nAttack R1 Tolok\n\n40) maka: Build Y1 Frog\n\tmaka: Well... I'm off to bed now. It's almost 2am here :)\n\tzoltar: You're in Europe then! Goodnight from Washington DC\n\n41) zoltar: Build Y2 Blueberry\n\n42) maka: Sacrifice Y2 Frog\nMove R1 Maka Tolok\nMove R1 Tolok Frog\n\tmaka: Yep. In Spain. \n\n43) zoltar: Sacrifice G3 Zoltar\nBuild G1 Lemon\nBuild G2 Zoltar\nBuild G3 Blueberry\n\n44) maka: Trade Y3 R3 Maka\n\n45) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Tolok\n\n46) maka: Build R1 Frog\n\n47) zoltar: Sacrifice G3 Blueberry\nBuild G2 Lemon\nBuild G3 Blueberry\nBuild G3 Zoltar\n\n48) maka: Move R1 Frog Zoltar\n\n49) zoltar: Attack R1 Zoltar\n\n50) maka: Build R2 Frog\n\n51) zoltar: Move R1 Zoltar Blueberry\n\n52) maka: Move R2 Frog Lemon\n\n53) zoltar: Sacrifice R1 Tolok\nAttack R2 Lemon\n\tmaka: Well... Seems to me it is quite clear you're going to win, and if you want, I'm ready to resign. I still have much to learn about this game... but really like it :) Also, any comments and tips will be appreciated...\n\n54) maka: Discover Y1 Frog R2 Lava\n\n55) zoltar: Move Y2 Blueberry Lava\n\n56) maka: Move Y1 Lava Maka\n\tzoltar: The sacrifices are the trickiest thing for a beginner to learn. For example, I just 'traded' my r1 for your r2 with the r1 sacrifice. Yellow sacrifices are the most deadly, as you can move several ships at once or one ship all the way from one homeworld to another to cause a catastrophe. Green sacrifices are good for growing when there are only large ships left of some color. \r\n\r\nI lost my first dozen games or so, and I set up my icehouse pieces on a table and went over the games of the top players (andylooney and TwoShort are the best, much better than I, even though I happen to have an over-inflated rating right now). By going over their games and seeing the kind of things they did, I soon was able to beat just about everyone but them. That's how good chess players improve, by studying master's games, and it works with this game too, if you have the enthusiasm to do so. As far as I know, this is the only place anywhere that you can find a record of homeworlds games to study.\n\n57) zoltar: Sacrifice G3 Zoltar\nBuild R1 Lemon\nBuild R3 Blueberry\nBuild R3 Blueberry\n\n58) maka: Pass\n\tmaka: Yeah. Sacrifices are tricky. I'm not good at planning them well and seeing when they will be good to use them... Thanks for the tips :) I didn't know you could read old games here... I'll investigate it...\r\n\r\nSo... Do you want to play this game through to the end? \n\n59) zoltar: Build G3 Zoltar\n\n60) maka: Pass\n\tzoltar: Sure, I don't mind playing it to the end -- and you get to see sacrifices and so forth in the endgame. Here I sacked my G3 to get all the remaining red pieces. I can then build my G3 back next move. Or I could do the 'factory', which would have been to sack my G3, build two red pieces (or any other builds) and then build my G3 back in place. In this case it would let you build the remaining R3, so I built all three reds, but when you get a G3 and another green ship on on star and there is no more green in the stash, you can get two builds instead of one with the factory move of sacking your G3 and immediately rebuilding it in place, along with two other builds anywhere on the board. I would have done this last move, but since you threatened to catastrophe my yellow pieces, I had to chase your yellow ship away first.\n\n61) zoltar: Trade G3 B3 Blueberry\n\tmaka: ok. there's not much I can do now... just wait \n\n62) maka: Pass\n\n63) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\nBuild B1 Blueberry\n\n64) maka: Pass\n\n65) zoltar: Move B1 Blueberry Lemon\n\tmaka: I've also ended up with so few options for building... I didn't really know about that aspect of the game\n\n66) maka: Pass\n\n67) zoltar: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild B1 Lemon\nBuild B2 Lemon\n\n68) maka: Pass\n\n69) zoltar: Sacrifice Y3 Zoltar\nMove B2 Lemon Maka\nMove B1 Lemon Maka\nMove B1 Lemon Maka\n\n70) maka: Pass\nCatastrophe Maka Blue\n\n71) zoltar: Sacrifice Y3 Blueberry\nMove G2 Lemon Maka\nMove G2 Lemon Maka\nMove G1 Lemon Maka\nCatastrophe Maka G\n\tzoltar: It's the Grand Finale Supernova party at maka's! All ships invited! It will be a blast!\n\n\tmaka: he he :) and you let me trigger the catastrophe...\n\tzoltar: Actually, I was going to trigger both the blue and green together. In a close game, my play here to blow up the two stars one after another, comes in handy: if you wait to sacrifice until you can destroy both stars, your opponent won't have time to counterattack.\r\n\r\nPlay again?\n\tmaka: I see...\r\n\r\nyeah... I wish the zendo game would also move at this pace :)\n\nHomeworlds Online (SDG# 4375)\nStarted: 2006.9.24, Ended: 2006.9.24\nParticipants: zoltar (S), mjbuyck (N)\nWinner: zoltar\n\n1) mjbuyck: Homeworld G1 Y2 B3\n\tmjbuyck: Hi! To let you know, this is really my first time playing.\n\n2) zoltar: Homeworld B3 Y1 G3\n\n3) mjbuyck: Discover B3 Mjbuyck G3 Bacon\n\tzoltar: Well, I hope you enjoy it. I learned in June, and lost my first dozen games or so, and then got pretty good at it. The hardest tactics to learn are the sacrifices, because they look strange at first and it's easy to overlook them. This has become my favorite game here, and I think it's a wonderful chess-like game.\n\tmjbuyck: ...oops.\r\n>_<\n\tzoltar: Btw, the first rule is to never, ever abandon your homeworld. :) Also, even if you had other ships, it's usually very bad to leave your homeworld without a 3-pip sized ship defending it at all times. While usually you can undo your move, there is a flaw in the program, so that if you blow up your homeworld like that, you can't take it back. Want to start over and try again?\n\tmjbuyck: Just did with your other open challenge.\n\n\nHomeworlds Online (SDG# 4383)\nStarted: 2006.9.24, Ended: 2006.9.25\nParticipants: mjbuyck (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar:\nHomeworld B3 Y1 G3\n\tmjbuyck: Well that had to have been the shortest game of HW ever... let's try that again.\r\nI totally forgot that rule.\n\tzoltar: h b3 y1 g3\n\n2) mjbuyck: Homeworld B2 G3 Y3\n\tzoltar: It takes a long time to get the 'feel' for this game (unlike say, Pikemen, where you can get most of the strategy after a game or two), but I think it is well worth it, once you figure out how to build and organize your pieces well.\n\n3) zoltar: Build G1 Zoltar\n\n4) mjbuyck: Build Y1 Mjbuyck\n\n5) zoltar: Build G1 Zoltar\n\n6) mjbuyck: Discover Y1 Mjbuyck G1 Winterfell\n\n7) zoltar: Discover G1 Zoltar B2 Blueridge\n\n8) mjbuyck: Build Y1 Mjbuyck\n\n9) zoltar: Build G2 Blueridge\n\n10) mjbuyck: Build Y2 Mjbuyck\n\n11) zoltar: Trade G2 Y2 Blueridge\n\n12) mjbuyck: Discover Y2 Mjbuyck B1 Riverrun\n\n13) zoltar: Build G2 Blueridge\n\n14) mjbuyck: Trade Y1 B1 Mjbuyck\n\n15) zoltar: Trade G2 B2 Blueridge\n\n16) mjbuyck: Move B1 Mjbuyck Winterfell\n\tzoltar: Btw, just want to make sure you see the 'trap' here. If you build another blue ship right now in your homeworld, I can sacrifice my Y2 ship for two movements, and move my B2 ship into your homeworld : this would create a fourth blue so that I could blow up all the blue ships and your blue homeworld star.\n\n17) zoltar: Discover B2 Blueridge G3 Greenhills\n\tmjbuyck: I understand that, but how? I would have only had three blues in the system then.\n\tmjbuyck: Oh, nm.\n\n18) mjbuyck: Build Y1 Mjbuyck\n\n19) zoltar: Build G2 Blueridge\n\n20) mjbuyck: Trade Y2 G2 Riverrun\n\n21) zoltar: Trade G1 R1 Blueridge\n\n22) mjbuyck: Build Y2 Winterfell\n\n23) zoltar: Trade B2 Y2 Greenhills\n\n24) mjbuyck: Build Y3 Mjbuyck\n\n25) zoltar: Sacrifice Y2 Blueridge\nMove Y2 Greenhills Winterfell\nMove Y2 Winterfell Mjbuyck\nCatastrophe Mjbuyck Y\n\tzoltar: Ouch! Building a third Yellow when I could sack and blow them up was very bad, but having nothing but yellow ships in your system was fatal. Sorry, I should have warned you and had you taken it back, but like the other game, it doesn't give me a choice now to take back my move once a homeworld has blown up. \n\tmjbuyck: ah... I thought you couldn't put the fourth yellow in my system. I thought that the moving piece had to be in the same system. That'll teach me to read the rules better.\n\tzoltar: It's any 4 of the same color, whether your ships, my ships, or a star, and my sacrifice allowed me to to so. Again, I was playing fast jumping from game to game, and I forgot I should tell you this and have you undo it, which I would have done if I had taken some time. Don't get discouraged, though: it's a great game and I lost a bunch of games before I ever won one and got the hang of it.\n\tmjbuyck: That's what I meant, I knew what would happen if you stuck in a fourth, but due to a rule misconception I figured that it wasn't possible that turn.\n\n\nHomeworlds Online (SDG# 4385)\nStarted: 2006.9.24, Ended: 2006.9.25\nParticipants: zoltar (S), mjbuyck (N)\nWinner: zoltar\n\n1) mjbuyck: Homeworld Y1 G2 B3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) mjbuyck: Build B1 Mjbuyck\n\n4) zoltar: Build G1 Zoltar\n\n5) mjbuyck: Discover B1 Mjbuyck G3 Lamp\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) mjbuyck: Build B1 Mjbuyck\n\n8) zoltar: Build Y1 Zoltar\n\n9) mjbuyck: Build B1 Mjbuyck\n\n10) zoltar: Build Y2 Zoltar\n\n11) mjbuyck: Discover B1 Mjbuyck B3 Baxter\n\n12) zoltar: Trade Y2 B2 Zoltar\n\n13) mjbuyck: Discover B1 Mjbuyck B3 Panda\n\n14) zoltar: Build B2 Zoltar\n\n15) mjbuyck: Trade B3 G3 Mjbuyck\n\n16) zoltar: Discover B2 Zoltar G1 Greendale\n\n17) mjbuyck: Build B3 Lamp\n\n18) zoltar: Build Y2 Zoltar\n\n19) mjbuyck: Build G1 Mjbuyck\n\n20) zoltar: Move Y1 Zoltar Greendale\n\n21) mjbuyck: Move G1 Mjbuyck Panda\n\n22) zoltar: Build Y2 Greendale\n\n23) mjbuyck: Trade B3 Y3 Lamp\n\n24) zoltar: Build B3 Greendale\n\n25) mjbuyck: Move B1 Lamp Mjbuyck\n\n26) zoltar: Trade Y1 R1 Greendale\n\n27) mjbuyck: Build Y1 Lamp\n\n28) zoltar: Move B3 Greendale Lamp\n\n29) mjbuyck: Build G1 Mjbuyck\n\tzoltar: The other major rule is that you need to build a red ship as soon as your opponent does. Note that if you had even a lowly R1 in any of your systems, you could now simply sacrifice the R1 and capture my B3. But I'm now threatening to sacrifice my R1 and capture your Y3.\n\n30) zoltar: Sacrifice R1 Greendale\nAttack Y3 Lamp\n\n31) mjbuyck: Move Y1 Lamp Mjbuyck\n\tmjbuyck: aaah... I totally forgot about the sacrifice rule again. That takes some getting used to, the idea that you can sacrifice one ship to have another one do something on the other side of the solar system/galaxy.\n\n32) zoltar: Build G2 Zoltar\n\n33) mjbuyck: Trade G1 R1 Mjbuyck\n\n34) zoltar: Build Y2 Lamp\n\tzoltar: Yes, it takes several games to get a feel for sacrifices. Think of it as giving the power of the color of the sacrificed piece to any star in the system where you have a ship, so you can act as if that star were of the sacrificed color. The hardest part is the multiple sacrifice rule, such as sacking a Y3 to move a piece three times, all the way from my homeworld to yours.\n\tmjbuyck: which I do realize that I just avoided, thank you.\n\n35) mjbuyck: Move Y1 Mjbuyck Panda\n\tzoltar: Now normally here I would instinctively trade a ship somewhere for a red ship to balance yours. I instead decided to rapidly build yellow ships for several reasons: I have more large ships; you don't have large yellow ships to threaten to move pieces to attack me; the red star gives me defence of a red ship in my homeworld (red stars are an advantage in the middle game because of this but a disadvantage in the opening, where red isn't used); and I can secure a lasting advantage if I control most of the yellow technology.\n\tmjbuyck: And I can't store yellow because I you'll just blow me up, nice.\n\tmjbuyck: I've probably hurt myself too much by trying to keep the b1 pieces away from you. :P\n\n36) zoltar: Sacrifice G2 Zoltar\nBuild Y3 Greendale\nBuild Y3 Lamp\n\n37) mjbuyck: Build R1 Mjbuyck\n\tzoltar: Note that I couldn't get away with this trick if you had a Y2 somewhere (you would sacrifice the Y2 to move your Y1 twice and cause a catastrophe in Lamp, destroying both my Y3 ships).\n\n38) zoltar: Move Y3 Greendale Panda\n\n39) mjbuyck: Move Y1 Panda Greendale\n\n40) zoltar: Trade Y2 R2 Lamp\n\tzoltar: Oops, I typed that in wrong.\n\tzoltar: Btw, a beginners mistake would have been to sacrifice my Y3 at greendale to move the Y3,Y3, and Y2 from Lamp to your homeworld and cause a catastrophe. While it would blow up one of your stars, it would liquidate my entire yellow fleet, and I would have only a slight advantage; whereas if I keep most of the yellows, I have a much larger advantage with all the added mobility and the threats of sacrificing.\n\n41) mjbuyck: Build Y2 Greendale\n\n42) zoltar: Sacrifice R2 Lamp\nAttack Y2 Greendale\nAttack Y1 Greendale\n\n43) mjbuyck: Move R1 Mjbuyck Baxter\n\n44) zoltar: Trade Y3 R3 Lamp\n\tmjbuyck: hmm... just kill me?\n\n45) mjbuyck: Trade B1 G1 Baxter\n\n46) zoltar: Build G2 Zoltar\n\tzoltar: my best option is to simply use my advantage to get the rest of the large pieces before you can, and then attack, as you can't stop my buildup.\n\n47) mjbuyck: Build G2 Baxter\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Panda\nBuild B1 Greendale\n\n49) mjbuyck: Build R1 Mjbuyck\n\tmjbuyck: night\n\n50) zoltar: Trade Y3 R3 Panda\n\n51) mjbuyck: Trade G3 Y3 Mjbuyck\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Panda\n\n53) mjbuyck: Move R1 Mjbuyck Baxter\n\n54) zoltar: Sacrifice R2 Panda\nAttack G1 Panda\nAttack B1 Panda\n\n55) mjbuyck: Build R2 Mjbuyck\n\tmjbuyck: not falling for that trap.\n\n56) zoltar: Sacrifice G3 Zoltar\nBuild G3 Panda\nBuild R2 Panda\nBuild R2 Lamp\n\n57) mjbuyck: Pass\n\n58) zoltar: Sacrifice Y3 Panda\nMove Y1 Zoltar Greendale\nMove Y1 Greendale Panda\nMove Y1 Greendale Panda\n\n59) mjbuyck: Move R1 Mjbuyck Baxter\n\n60) zoltar: Sacrifice Y3 Lamp\nMove Y1 Panda Mjbuyck\nMove Y1 Panda Mjbuyck\nMove R3 Panda Mjbuyck\nCatastrophe Mjbuyck Y\n\tmjbuyck: There's not too much more I can do to avoid this, is there?\n\n61) mjbuyck: Pass\n\n62) zoltar: Sacrifice R2 Lamp\nAttack R2 Mjbuyck\nAttack B1 Mjbuyck\n\n\tzoltar: gg -- ready to try again?\n\tmjbuyck: gg\n\nHomeworlds Online (SDG# 4393)\nStarted: 2006.9.25, Ended: 2006.10.18\nParticipants: Aaron (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y2 G3\n\n2) Aaron: Homeworld B2 Y3 G3\n\tKeith: Hello Aaron. Nice to have you accept my challenge.\n\tAaron: Nice to see somebody other than world champions offering one! =) Best of luck!\n\n3) Keith: Build G1 Keith\n\n4) Aaron: Build G1 Aaron\n\n5) Keith: Trade G1 B1 Keith\n\n6) Aaron: Trade G1 R1 Aaron\n\n7) Keith: Discover B1 Keith G3 Zesst\n\n8) Aaron: Discover R1 Aaron G1 Limes\n\n9) Keith: Build G1 Keith\n\tKeith: Well if you are going to pull an early red and move it out.\n\n10) Aaron: Build R1 Limes\n\n11) Keith: Trade G1 R1 Keith\n\n12) Aaron: Build G1 Aaron\n\n13) Keith: Build R2 Keith\n\n14) Aaron: Trade G1 Y1 Aaron\n\n15) Keith: Move R1 Keith Zesst\n\n16) Aaron: Move Y1 Aaron Limes\n\n17) Keith: Build R2 Zesst\n\n18) Aaron: Build G1 Aaron\n\n19) Keith: Build B1 Zesst\n\n20) Aaron: Discover G1 Aaron Y1 Bananas\n\n21) Keith: Sacrifice G3 Keith\nBuild R2 Zesst\nBuild R3 Keith\nBuild R3 Keith\n\n22) Aaron: Move R1 Limes Zesst\nCatastrophe Zesst R\n\n23) Keith: Trade R3 G3 Keith\n\n24) Aaron: Build R1 Limes\n\n25) Keith: Trade R2 Y2 Keith\n\n26) Aaron: Build G1 Bananas\n\n27) Keith: Build G2 Keith\n\n28) Aaron: Build G2 Aaron\n\n29) Keith: Sacrifice G3 Keith\nBuild G2 Keith\nBuild G3 Keith\nBuild B2 Zesst\n\n30) Aaron: Discover G1 Bananas Y3 Lemons\n\n31) Keith: Discover G2 Keith Y3 Mellow\n\n32) Aaron: Move G1 Bananas Lemons\n\n33) Keith: Move G2 Keith Lemons\n\n34) Aaron: Trade G2 B2 Aaron\n\n35) Keith: Sacrifice Y2 Keith\nMove B2 Zesst Limes\nDiscover B1 Zesst Y1 Brick\n\n36) Aaron: Build G2 Aaron\n\n37) Keith: Sacrifice R3 Keith\nAttack R1 Limes\nAttack R1 Limes\nAttack G1 Lemons\n\n38) Aaron: Trade B2 R2 Aaron\n\n39) Keith: Attack Y1 Limes\n\n40) Aaron: Move G2 Aaron Brick\n\tKeith: Hmmm... probably should not have done the undo an stuck with the setup that prevented you from getting to a b3.\n\n41) Keith: Discover G1 Lemons R1 Eye\n\tAaron: well, I just made a critical error in judgement so...shouldn't take you much longer at this point.\n\n42) Aaron: Build R2 Aaron\n\n43) Keith: Sacrifice R1 Limes\nAttack G1 Lemons\n\n44) Aaron: Move R2 Aaron Brick\n\n45) Keith: Move G1 Lemons Keith\n\n46) Aaron: Attack B1 Brick\n\n47) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild Y1 Limes\nBuild Y2 Limes\n\n48) Aaron: Move R2 Brick Zesst\n\tKeith: Well, whatever critical error you made and opportunity you gave me escaped me. Now I have made my own minor error in giving you an easier in to blue.\n\n49) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild B2 Limes\nBuild B3 Zesst\n\tAaron: I really hate that factory thing =)\n\n50) Aaron: Build B3 Brick\n\tKeith: I do not care for the factory "feature" of the game. I find it is too effective to ignore from either side of the factory floor and attending to it constrains my choices starting witht he initial setup and continuing through the mid-game. \n\n51) Keith: Sacrifice R1 Limes\nAttack R2 Zesst\n\n52) Aaron: Move B3 Brick Lemons\n\n53) Keith: Move Y1 Limes Aaron\n\n54) Aaron: Attack Y1 Aaron\n\n55) Keith: Move Y1 Limes Aaron\n\n56) Aaron: Sacrifice Y1 Aaron\nPass\n\n57) Keith: Sacrifice G2 Lemons\nBuild Y1 Aaron\nBuild Y2 Aaron\nCatastrophe Aaron Yellow\n\n58) Aaron: Build G2 Aaron\n\n59) Keith: Move B2 Limes Aaron\n\n60) Aaron: Attack B2 Aaron\n\n61) Keith: Sacrifice Y2 Limes\nMove B2 Limes Aaron\nMove B1 Zesst Aaron\nCatastrophe Aaron Blue\n\n\tKeith: Thank you for the enjoyable struggle.\n\tAaron: Very well done, Keith! Always a pleasure.\n\nHomeworlds Online (SDG# 4404)\nStarted: 2006.9.25, Ended: 2006.9.28\nParticipants: zoltar (S), maka (N)\nWinner: zoltar\n\n1) maka: Homeworld G3 B2 Y3\n\n2) zoltar: Homeworld Y2 B1 G3\n\n3) maka: Build Y1 Maka\n\n4) zoltar: Build G1 Zoltar\n\n5) maka: Build Y1 Maka\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) maka: Trade Y1 B1 Maka\n\n8) zoltar: Build G1 Zoltar\n\n9) maka: Trade Y1 G1 Maka\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) maka: Build B2 Maka\n\n12) zoltar: Discover B1 Zoltar G3 Greenbelt\n\n13) maka: Discover B2 Maka Y1 Sol\n\n14) zoltar: Build G1 Zoltar\n\n15) maka: Trade B2 G2 Sol\n\n16) zoltar: Build B2 Greenbelt\n\n17) maka: Move Y3 Maka Sol\n\n18) zoltar: Trade B2 Y2 Greenbelt\n\n19) maka: Trade B1 Y1 Maka\n\tzoltar: That is a very dangerous move, leaving your homeworld with out a 3-pip-size piece to defend it.\n\n20) zoltar: Trade Y1 R1 Zoltar\n\n21) maka: Trade G1 R1 Maka\n\tmaka: I know :) \n\n22) zoltar: Build B1 Greenbelt\n\n23) maka: Move Y3 Sol Greenbelt\n\n24) zoltar: Discover Y2 Greenbelt G1 Runforyourlife\n\n25) maka: Move Y3 Greenbelt Runforyourlife\n\tzoltar: Moving your Y3 which should be defending your homeworld to chase little ships is madness!\n\tmaka: The thing is, I keep thinking up plans that then I realize I cannot actually play, but I guess I've played too few games... :) \n\n26) zoltar: Move Y2 Runforyourlife Maka\n\n27) maka: Build R1 Maka\n\tzoltar: Yes, it takes several games to get the feel of what's going on, but you're never going to get off the ground if you move your defending 3-pip ship out of your homeworld! Now look what trouble I can make for you...\n\tzoltar: It's as if you marched your King out in the middle of the board the first three or four moves in chess.\n\tmaka: i see :)\n\n28) zoltar: Build R2 Zoltar\n\n29) maka: Move Y3 Runforyourlife Maka\n\tmaka: allright :)\r\n\n\n30) zoltar: Sacrifice R2 Zoltar\nAttack R1 Maka\nAttack R1 Maka\n\n31) maka: Trade Y3 R3 Maka\n\tzoltar: And now that I have three ships in your homeworld and you have no red ships, even your Y3 can't save you now...\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild R2 Maka\nBuild Y1 Maka\nBuild Y2 Maka\nCatastrophe Maka Y\nCatastrophe Maka R\n\tzoltar: And I get to finish off with a bang -- a sacrifice with a double catastrophe for checkmate! Hopefully, you'll never let your defending big ship wander out of your castle again after this...\r\n\r\nGG. Play again?\n\n\nHomeworlds Online (SDG# 4388)\nStarted: 2006.9.28, Ended: 2006.9.29\nParticipants: zoltar (S), Manny (N)\nWinner: zoltar\n\n1) Manny: Homeworld B3 Y1 G3\n\n2) zoltar: Homeworld R2 B3 G3\n\n3) Manny: Build G1 Manny\n\n4) zoltar: Build G1 Zoltar\n\n5) Manny: Discover G1 Manny B2 Flux\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Manny: Build G1 Manny\n\n8) zoltar: Build Y1 Zoltar\n\n9) Manny: Trade G3 Y3 Manny\n\n10) zoltar: Build Y2 Zoltar\n\n11) Manny: Build Y2 Manny\n\n12) zoltar: Discover Y1 Zoltar G1 Greenbelt\n\n13) Manny: Move Y2 Manny Flux\n\n14) zoltar: Build G2 Zoltar\n\n15) Manny: Build G2 Flux\n\n16) zoltar: Discover Y1 Zoltar B1 Blueridge\n\n17) Manny: Build G2 Manny\n\n18) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Blueridge\nBuild Y3 Zoltar\n\n19) Manny: Trade G1 R1 Manny\n\n20) zoltar: Trade Y1 R1 Blueridge\n\n21) Manny: Discover G2 Flux Y1 Amber\n\n22) zoltar: Discover Y1 Greenbelt B2 Blueberry\n\n23) Manny: Build R1 Manny\n\n24) zoltar: Move Y3 Blueridge Flux\n\n\nHomeworlds Online (SDG# 4448)\nVariants: "Unrated"\nStarted: 2006.9.30, Ended: 2006.10.5\nParticipants: Personman (S), Manny (N)\nWinner: Manny\n\n1) Manny: Homeworld Y1 B2 G3\n\n2) Personman: Homeworld Y2 B3 G3\n\n3) Manny: Build G1 Manny\n\n4) Personman: Build G1 Personman\n\n5) Manny: Trade G1 Y1 Manny\n\n6) Personman: Trade G1 B1 Personman\n\n7) Manny: Build G1 Manny\n\n8) Personman: Build G1 Personman\n\n9) Manny: Discover G1 Manny B3 Flux\n\n10) Personman: Discover G1 Personman B1 Fluxx\n\tManny: Sorry about that, I missed the email. Didn't realise it was my turn.\n\tPersonman: No worries! Though if you start playing lots of games here, I *highly* recommend turning email notifications off and just checking your SDG homepage regularly. With one or two slow games I'm sure it's nice, but with ten it fills up your inbox rather quickly :)\n\n11) Manny: Build Y1 Manny\n\n12) Personman: Build B1 Personman\n\n13) Manny: Move Y1 Manny Flux\n\n14) Personman: Move B1 Personman Fluxx\n\n15) Manny: Sacrifice G3 Manny\nBuild Y2 Flux\nBuild Y2 Flux\nBuild Y3 Manny\n\n16) Personman: Build B2 Fluxx\n\n17) Manny: Trade Y3 G3 Manny\n\n18) Personman: Build B2 Personman\n\n19) Manny: Discover Y1 Flux G1 Growth\n\n20) Personman: Trade B1 R1 Personman\n\n21) Manny: Sacrifice G3 Manny\nBuild Y3 Manny\nBuild Y3 Growth\nBuild Y3 Growth\n\n22) Personman: Move B2 Personman Growth\n\n23) Manny: Discover Y1 Growth B3 Whirlpool\n\n24) Personman: Build B1 Growth\n\n25) Manny: Trade Y3 R3 Manny\n\n26) Personman: Trade G3 Y3 Personman\n\n27) Manny: Sacrifice Y2 Flux\nMove Y3 Growth Personman\nMove Y3 Growth Personman\nCatastrophe Personman Y\n\n28) Personman: Build G2 Fluxx\n\n29) Manny: Move R3 Manny Personman\n\n30) Personman: Sacrifice G2 Fluxx\nBuild R1 Personman\nBuild G2 Fluxx\n\n31) Manny: Sacrifice G1 Flux\nBuild R1 Personman\nCatastrophe Personman R\n\n\tManny: Cheers. Thanks for the game.\n\tPersonman: gg.\n\nHomeworlds Online (SDG# 4386)\nStarted: 2006.10.2, Ended: 2006.10.5\nParticipants: zoltar (S), Papipo (N)\nWinner: zoltar\n\n1) Papipo: Homeworld G2 B1 Y3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) Papipo: Build Y1 Papipo\n\n4) zoltar: Build G1 Zoltar\n\n5) Papipo: Discover Y1 Papipo B3 Bluemoon\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Papipo: Trade Y1 G1 Bluemoon\n\n8) zoltar: Build G1 Zoltar\n\tPapipo: This is my first game :S\n\tzoltar: Good luck! It's a very hard game to learn, I found out. I learned in June and it took me several games to understand all the tactics. The sacrifices are the most tricky and the hardest to get used to and anticipate. However, after a few games, this has become my favorite of all the games here, and I've gotten pretty good at it.\n\n9) Papipo: Build Y1 Papipo\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) Papipo: Build G1 Bluemoon\n\n12) zoltar: Build R1 Zoltar\n\n13) Papipo: Trade Y3 G3 Papipo\n\n14) zoltar: Trade R1 B1 Zoltar\n\n15) Papipo: Trade G1 R1 Bluemoon\n\n16) zoltar: Build B1 Zoltar\n\n17) Papipo: Trade G3 B3 Papipo\n\n18) zoltar: Discover B1 Zoltar G1 Greenbelt\n\tPapipo: I think that you have an advantage atm\n\tzoltar: Not quite yet. The trick here is to try to make your opponent take the last of any size of one color, as there is always an advantage to having larger ships. Here I haven't yet found a way to get an advantage and secure larger ships. \n\n19) Papipo: Build B2 Papipo\n\n20) zoltar: Build B2 Greenbelt\n\n21) Papipo: Trade B2 Y2 Papipo\n\n22) zoltar: Trade B2 Y2 Greenbelt\n\n23) Papipo: Move Y1 Papipo Bluemoon\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild B2 Greenbelt\nBuild B2 Greenbelt\nBuild B3 Zoltar\n\n25) Papipo: Trade B3 G3 Papipo\n\tzoltar: Uh oh! Since it's your first game, I want to tell you to undo that move, as it's a classic beginner's mistake and would be just about the end of the game:\r\n\r\nI can sacrifice my newly made Y2 in Greenbelt for 2 movements; I use the 2 movements to move my B1 from Greenbelt to Bluemoon to Papino, and I destroy your blue star and your 2 blue ships, which include your only large ship, leaving your homeworld half-destroyed and without a large defending ship. At that point your game is pretty much lost. \r\n\r\nThis is where things are tricky. I now have a slight advantage precisely because you can't build a blue ship here. So you need to either move a yellow ship out, or trade one of your ships to a different color. But always check before building a third of any color to see if your opponent can sacrifice any yellow pieces (Y3's are the most dangerous) to create a catastrophe.\n\tPapipo: Ahahah, i see, thanks\n\n26) zoltar: Trade B3 G3 Zoltar\n\tzoltar: Because of that threat, I now can do a clever sacrifice to grab more of the blue pieces.\n\n27) Papipo: Sacrifice G3 Papipo\nBuild Y1 Papipo\nBuild Y2 Bluemoon\nBuild Y3 Papipo\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild B3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\n\n\nHomeworlds Online (SDG# 4470)\nVariants: "Unrated"\nStarted: 2006.10.2, Ended: 2006.10.5\nParticipants: frixuelin (S), Papipo (N)\nWinner: Papipo\n\n1) Papipo: Homeworld G1 B2 Y3\n\n2) frixuelin: Homeworld B1 G2 Y3\n\n3) Papipo: Build Y1 Papipo\n\n4) frixuelin: Build Y1 Frixuelin\n\n5) Papipo: Trade Y3 G3 Papipo\n\n\nHomeworlds Online (SDG# 4472)\nStarted: 2006.10.2, Ended: 2006.10.9\nParticipants: Papipo (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y3 B1 G3\n\n2) Papipo: Homeworld G2 Y1 B3\n\n3) zoltar: Build G1 Zoltar\n\n4) Papipo: Build B1 Papipo\n\n5) zoltar: Trade G1 B1 Zoltar\n\n6) Papipo: Build B2 Papipo\n\n7) zoltar: Build B2 Zoltar\n\n8) Papipo: Trade B1 Y1 Papipo\n\n9) zoltar: Trade B2 Y2 Zoltar\n\n10) Papipo: Discover Y1 Papipo G3 Gaia\n\n11) zoltar: Discover Y2 Zoltar G2 Greenhills\n\n12) Papipo: Trade B2 R2 Papipo\n\n13) zoltar: Build G1 Zoltar\n\n14) Papipo: Move R2 Papipo Gaia\n\n15) zoltar: Trade G1 R1 Zoltar\n\n16) Papipo: Build R1 Gaia\n\n17) zoltar: Build G1 Zoltar\n\n18) Papipo: Move R2 Gaia Greenhills\n\n19) zoltar: Sacrifice R1 Zoltar\nAttack R2 Greenhills\n\tzoltar: This is another case where you should undo this move. Note that I can simply sacrifice my R1 in the zoltar homeworld and by doing so, capture your R2 in greenhills, which essentially trades my R1 for an R1 and destroys your R2, making the move doubly bad for you. Remember that a sacrificed piece gives you that color's power in any star system. It's as if by sacrificing my R1, the star in greenhills becomes a red star for that turn.\n\tzoltar: I meant to say "trades my R1 for an R2". Note that a single R1 anywhere protects all my ships everywhere from an attack of ships the same size. That's why it's always important to have one red ship once your opponent gets red ships, but having more than one isn't as important for defence.\n\n\tPapipo: I must play more times :]\n\nHomeworlds Online (SDG# 4481)\nStarted: 2006.10.3, Ended: 2006.10.29\nParticipants: unic (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld G1 B2 Y3\n\n2) unic: Homeworld B3 R2 G3\n\n3) Lexicon: Build Y1 Lexicon\n\n4) unic: Build G1 Unic\n\n5) Lexicon: Build Y1 Lexicon\n\n6) unic: Trade G1 Y1 Unic\n\n7) Lexicon: Trade Y1 G1 Lexicon\n\n8) unic: Build Y1 Unic\n\n9) Lexicon: Build Y2 Lexicon\n\n10) unic: Discover Y1 Unic G1 Susan\n\n11) Lexicon: Build G2 Lexicon\n\n12) unic: Build Y2 Susan\n\n13) Lexicon: Sacrifice Y2 Lexicon\nDiscover G2 Lexicon Y3 Titan\nDiscover G2 Titan B1 Titus\n\n14) unic: Build G2 Unic\n\n15) Lexicon: Build G2 Titus\n\n16) unic: Trade G2 R2 Unic\n\n17) Lexicon: Trade G2 R2 Titus\n\n18) unic: Build G2 Unic\n\n19) Lexicon: Build G2 Titus\n\n20) unic: Discover Y2 Susan G3 Laura\n\n21) Lexicon: Build G3 Lexicon\n\n22) unic: Sacrifice G3 Unic\nBuild Y2 Laura\nBuild Y2 Susan\nBuild Y3 Unic\n\n23) Lexicon: Sacrifice G1 Lexicon\nBuild R1 Titus\n\n24) unic: Discover R2 Unic B1 Paula\n\n25) Lexicon: Move Y1 Lexicon Laura\n\n26) unic: Move Y2 Laura Lexicon\n\n27) Lexicon: Discover Y3 Lexicon R3 Gladiator\n\n28) unic: Build Y3 Laura\n\tunic: build y3 Laura\n\tunic: Oops - typed that into the wrong text box!\n\n29) Lexicon: Move Y3 Gladiator Titus\n\n30) unic: Build G1 Unic\n\n31) Lexicon: Sacrifice R1 Titus\nAttack Y2 Lexicon\n\n32) unic: Move G2 Unic Susan\n\n33) Lexicon: Move Y2 Lexicon Laura\nCatastrophe Laura Y\n\n34) unic: Discover Y1 Susan Y3 Desdemona\n\n35) Lexicon: Discover G2 Titus B3 Midas\n\n36) unic: Build G3 Unic\n\n37) Lexicon: Build G3 Titus\n\n38) unic: Move G1 Unic Paula\n\n39) Lexicon: Sacrifice G3 Titus\nBuild G3 Titus\nBuild R1 Titus\nBuild R1 Titus\n\n40) unic: Sacrifice Y2 Susan\nMove R2 Paula Desdemona\nMove R2 Desdemona Titus\nCatastrophe Titus Red\n\n41) Lexicon: Build Y1 Titus\n\n42) unic: Trade Y1 B1 Unic\n\n43) Lexicon: Move Y1 Titus Midas\n\n44) unic: Sacrifice G2 Susan\nBuild G1 Paula\nBuild G2 Unic\n\n45) Lexicon: Sacrifice G3 Titus\nBuild G3 Titus\nBuild Y1 Titus\nBuild Y2 Midas\n\n46) unic: Trade G2 R2 Unic\n\n47) Lexicon: Move Y2 Midas Lexicon\n\n48) unic: Move R2 Unic Titus\n\n49) Lexicon: Sacrifice G3 Titus\nBuild G2 Midas\nBuild G3 Titus\nBuild Y2 Lexicon\n\n50) unic: Move G3 Unic Titus\n\n51) Lexicon: Sacrifice Y2 Lexicon\nMove Y1 Titus Unic\nMove Y3 Titus Unic\n\n52) unic: Attack G3 Titus\n\n53) Lexicon: Attack B1 Unic\n\n54) unic: Sacrifice R2 Titus\nAttack Y3 Unic\nAttack B1 Unic\n\n55) Lexicon: Sacrifice G2 Midas\nBuild Y2 Unic\nBuild G2 Titus\nCatastrophe Unic Y\nCatastrophe Titus G\n\n56) unic: Trade G1 Y1 Paula\n\tLexicon: BOOM!\r\nBOOM! \r\nYou snuck past me this time, but at least I got to make a double supernova! :)\n\n57) Lexicon: Sacrifice Y2 Lexicon\nMove G2 Midas Paula\nMove G2 Paula Unic\n\n\nHomeworlds Online (SDG# 4479)\nStarted: 2006.10.3, Ended: 2006.12.28\nParticipants: Laurie_Menke (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) Laurie_Menke: Homeworld Y3 B1 G3\n\tjeep: Wow, how did 3 days go by? Sheesh. I thought this had jsut started!!\n\tLaurie_Menke: Yeah, time does fly. Good luck!\n\n3) jeep: Build G1 Jeep\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n7) jeep: Build Y2 Jeep\n\n8) Laurie_Menke: Build Y2 Laurie_menke\n\n9) jeep: Trade Y2 R2 Jeep\n\n10) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\n11) jeep: Build Y2 Jeep\n\n12) Laurie_Menke: Build Y2 Laurie_menke\n\n13) jeep: Discover Y1 Jeep G3 Thumb\n\tLaurie_Menke: Hey, jeep....I just read that you were injured. Are you OK?\n\tjeep: I'm ok now. Took a while for me to be able to sit at a computer for more than a few minutes at a time, though.\n\n14) Laurie_Menke: Discover Y2 Laurie_menke G2 Acres\n\tLaurie_Menke: Sorry to hear that. But glad you're doing better. :o)\n\n15) jeep: Sacrifice G3 Jeep\nBuild Y2 Thumb\nBuild Y3 Thumb\nBuild Y3 Jeep\n\n16) Laurie_Menke: Move Y2 Acres Thumb\nCatastrophe Thumb Yellow\n\n17) jeep: Trade Y3 G3 Jeep\n\n18) Laurie_Menke: Discover Y1 Laurie_menke Y2 Luella\n\n19) jeep: Build G1 Jeep\n\n20) Laurie_Menke: Build G1 Laurie_menke\n\n21) jeep: Discover G1 Jeep Y3 Submarine\n\n22) Laurie_Menke: Discover G1 Laurie_menke Y2 Sharon\n\n23) jeep: Build G1 Jeep\n\n24) Laurie_Menke: Build G2 Laurie_menke\n\n25) jeep: Discover Y2 Jeep G3 Fertilizer\n\n26) Laurie_Menke: Build G2 Sharon\n\n27) jeep: Build G2 Jeep\n\n28) Laurie_Menke: Discover G1 Sharon Y3 Roses\n\n29) jeep: Build R1 Jeep\n\n30) Laurie_Menke: Move G1 Roses Jeep\nCatastrophe Jeep Green\n\n31) jeep: Build Y1 Fertilizer\n\tjeep: Gah! I didn't even notice that was connected.\n\tLaurie_Menke: ;o)\n\n32) Laurie_Menke: Discover G2 Sharon B3 Berries\n\n33) jeep: Build G1 Submarine\n\tLaurie_Menke: Man, I just thought of a better name for that star. I should have called it Berry Hill. Then I could say I found my thrill on Blue Berry Hill. ;o)\n\n34) Laurie_Menke: Move G3 Laurie_menke Luella\n\n35) jeep: Discover G1 Submarine Y2 Sigh\n\n36) Laurie_Menke: Move G3 Luella Berries\n\n37) jeep: Build Y3 Fertilizer\n\n38) Laurie_Menke: Move Y1 Luella Fertilizer\nCatastrophe Fertilizer Yellow\n\n39) jeep: Trade R1 G1 Jeep\n\n40) Laurie_Menke: Trade G3 R3 Berries\n\n41) jeep: Build G2 Sigh\n\n42) Laurie_Menke: Trade G2 Y2 Berries\n\n43) jeep: Build G2 Jeep\n\n44) Laurie_Menke: Move R3 Berries Jeep\n\n45) jeep: Sacrifice G2 Sigh\nBuild R1 Jeep\nBuild R1 Jeep\nCatastrophe Jeep Red\n\n46) Laurie_Menke: Build G2 Laurie_menke\n\n47) jeep: Sacrifice G2 Jeep\nBuild G2 Sigh\nBuild G3 Jeep\n\n48) Laurie_Menke: Discover G2 Laurie_menke Y2 Roses\n\n49) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Submarine\nBuild G3 Sigh\n\n50) Laurie_Menke: Move G2 Laurie_menke Sigh\nCatastrophe Sigh Green\n\n51) jeep: Discover G3 Submarine Y2 Salvation\n\n52) Laurie_Menke: Build G1 Roses\n\n53) jeep: Trade G3 R3 Jeep\n\tLaurie_Menke: Merry Christmas, Jeep! I'm visiting family as well. Hope you're having a great time! :o)\n\n54) Laurie_Menke: Move G2 Roses Laurie_menke\n\tjeep: It's fun. It's midnight in 6 minutes (here, anyway) so Merry Xmas! Tomorrow is going to be insane. My Mom went overboard on gifts for my daughter (4 years old).\n\tLaurie_Menke: Another 53 minutes to midnight here (California). Enjoy the chaos with your daughter tomorrow (later today!). :o)\n\n55) jeep: Move G3 Salvation Laurie_menke\n\n56) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild R1 Laurie_menke\nBuild G2 Roses\n\tjeep: Today was fun. Willow was great. She got a lot of stuff and was really appreciative. She played hard today and had great manners. I'm very proud of her. I'll be back on the west coast in a week.\n\tLaurie_Menke: Glad all went well. She sounds like a keeper. :o) Our Christmas was good as well. My niece and nephew are older now...14 & 16. They got a computer for Christmas...very exciting. :o) We had 10 for dinner. A nice time was had by all.\n\n57) jeep: Sacrifice R3 Jeep\nAttack R2S Laurie_menke\nAttack R1S Laurie_menke\nPass\n\n\tjeep: Thanks for the game! I thought I was a goner when I had no larges and you had one.\n\tLaurie_Menke: Nawww...you're definitely the better player. It was just a matter of time. ;o) Thanks for the fun, and congrats!\n\nHomeworlds Online (SDG# 4509)\nStarted: 2006.10.4, Ended: 2006.10.16\nParticipants: zoltar (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld B1 Y3 G3\n\tJesse: Ah, Homeworlds. It's been a while. I see you've done rather well, in the meantime.\n\n3) Jesse: Build G1 Jesse\n\tzoltar: Well, Andy Looney and TwoShort can still beat me almost every game, but I've been playing mostly beginners these days.\n\n4) zoltar: Build G1 Zoltar\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Jesse: Build G1 Jesse\n\n8) zoltar: Build G1 Zoltar\n\n9) Jesse: Trade G1 B1 Jesse\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) Jesse: Discover B1 Jesse G3 Gout\n\n12) zoltar: Build B2 Zoltar\n\n13) Jesse: Build B2 Gout\n\n14) zoltar: Trade B2 R2 Zoltar\n\n15) Jesse: Trade B2 R2 Gout\n\n16) zoltar: Build B2 Zoltar\n\n17) Jesse: Build B2 Gout\n\n18) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n19) Jesse: Trade B2 Y2 Gout\n\n20) zoltar: Discover B2 Zoltar Y2 Yellowstone\n\n21) Jesse: Build Y1 Gout\n\n\tJesse: Not going to fight for it, huh?\n\tzoltar: I have a one in ten chance with you even without giving you the monster handicap with 'the banker' which is unbeatable (by me at least).\n\nHomeworlds Online (SDG# 4534)\nStarted: 2006.10.5, Ended: 2006.10.10\nParticipants: zoltar (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y2 G3\n\tzoltar: Prepare to meat your DOOM, lowly Earthling!\n\tKeith: I know, I know. It was either you or antihero and he had a day to challenge me before you signed up and did not.\n\n2) zoltar: Homeworld B1 R3 G3\n\n3) Keith: Build G1 Keith\n\n4) zoltar: Build G1 Zoltar\n\n5) Keith: Discover G1 Keith Y3 Hydra\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Keith: Build G1 Keith\n\n8) zoltar: Build Y1 Zoltar\n\n9) Keith: Trade G1 B1 Keith\n\n10) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n11) Keith: Build B2 Keith\n\n12) zoltar: Build Y1 Greenbelt\n\n13) Keith: Move B1 Keith Hydra\n\n14) zoltar: Discover Y1 Greenbelt B3 Blueridge\n\n15) Keith: Build G1 Keith\n\n16) zoltar: Build Y2 Greenbelt\n\n17) Keith: Discover B2 Keith Y3 Drift\n\n18) zoltar: Build G1 Zoltar\n\n19) Keith: Trade G1 R1 Keith\n\n20) zoltar: Trade G1 R1 Zoltar\n\n21) Keith: Build B2 Hydra\n\n22) zoltar: Build Y2 Zoltar\n\n23) Keith: Sacrifice G3 Keith\nBuild B2 Drift\nBuild B3 Drift\nBuild B3 Hydra\n\n24) zoltar: Build Y3 Greenbelt\n\n25) Keith: Move B3 Drift Keith\n\n26) zoltar: Build R1 Zoltar\n\n27) Keith: Sacrifice B3 Hydra\nTrade B2 R2 Hydra\nTrade B2 R2 Drift\nTrade B3 G3 Keith\n\n28) zoltar: Move R1 Zoltar Greenbelt\n\n29) Keith: Sacrifice G3 Keith\nBuild R2 Drift\nBuild R3 Hydra\nBuild R3 Keith\n\tKeith: I was playing a dangerous game by not trading into a yellow ship. I miscalculated that I could force one out of greenbelt.\n\n30) zoltar: Build G1 Zoltar\n\n31) Keith: Build B2 Hydra\n\tzoltar: You'll probably win this, as you can now easily get all the blue ships and at least one of the big greens. Since I have a lock on the yellow's, I won't resign, and I'll see if I can hold out. I've lost just about every homeworlds game these days. My beginner's winning streak seems to be over!\n\tKeith: Actually I think I have figured out a way to get a yellow but it will take 5 turns and cost me 4 reds.\r\n\r\nI did have most of the blues at one time. Was it a mistake to trade them in?\n\tzoltar: No, that's what they're good for: trading them for big ships in other colors. Now I have to figure out a way to do something before you get yellow ships and overrun my fleet.\n\tKeith: I found a flaw in my plan for a yellow in five turns at the cost of four reds. I am going to have to proceed some other way that is not clear to me yet. \n\n32) zoltar: Move G1 Zoltar Greenbelt\n\n33) Keith: Sacrifice B2 Hydra\nTrade R2 G2 Hydra\nTrade R2 G2 Drift\n\n34) zoltar: Build R2 Zoltar\n\n35) Keith: Move G2 Drift Greenbelt\n\tKeith: Time to find out what I am overlooking.\n\n36) zoltar: Sacrifice Y2 Greenbelt\nMove R1 Greenbelt Blueridge\nDiscover R1 Zoltar B2 Desperation\n\n37) Keith: Sacrifice G2 Hydra\nBuild B2 Hydra\nBuild G1 Greenbelt\nCatastrophe Greenbelt Green\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Blueridge\nBuild Y3 Blueridge\n\n39) Keith: Trade R3 B3 Keith\n\tKeith: I don't know. The last time I made a move after my bedtime against you and left one color of ships in my homeworld was a disaster.\n\tzoltar: And the Yellow Fleet is still mine! Yay!\n\tzoltar: Yep, with one color in your homeworld and my retaining the yellow fleet, you'd better watch out!\n\tKeith: Darn you clever Zoltar! I did not go for the y2 because I thought bumbing the number of yellows to three in the stash would keep one in reach while you took a big ship hit.\n\tKeith: And it is not like all the ships in blueridge were going to slip away.\n\tzoltar: Zoltar will defeat you yet, primitive carbon waterbag unit! Without Yellow warp-drive technology, you will never reach the Zoltarian Homeworld! Bwahahaha!\n\n40) zoltar: Move Y3 Blueridge Desperation\n\n41) Keith: Sacrifice G1 Hydra\nBuild B3 Drift\n\tKeith: Ahhh.... Zoltar speech. You finally feel like your are winning.\n\n42) zoltar: Trade R2 G2 Zoltar\n\tKeith: No green anywhere on the board.\n\n43) Keith: Discover B2 Drift G2 Ghaaa\n\tzoltar: At least Zoltar got to threaten mate-in-one last move!\n\tzoltar: Zee only gude hyu-maahn bean ease a dead hyu-maahn bean!\n\tKeith: Did not and do not see that mate-in-one or how discovering a b3 with an r2 diffused one.\n\tKeith: Wait, that was the other plan. How did sacrificing a g1 to build an r3 avoid a mate-in-one?\n\n44) zoltar: Move R1 Desperation Zoltar\n\n45) Keith: Move R2 Drift Ghaaa\n\n46) zoltar: Build R2 Zoltar\n\tzoltar: Trading the R3 for B3 avoided the mate-in-one.\n\n47) Keith: Sacrifice B3 Drift\nTrade R3 Y3 Hydra\nPass\nPass\n\n\tKeith: Yellow, at least for half a turn.\n\tzoltar: Wow, that was a great move! gg.\n\tKeith: Thank you. I am exhausted.\n\nHomeworlds Online (SDG# 4510)\nStarted: 2006.10.8, Ended: 2006.12.8\nParticipants: zoltar (S), Kermit (W), mjbuyck (N), maka (E)\nWinner: maka\n\n1) mjbuyck: Homeworld G1 B3 Y3\n\n2) maka: Homeworld G3 B2 Y3\n\n3) zoltar: Homeworld R1 B2 G3\n\n4) Kermit: Homeworld B2 Y3 G3\n\n5) mjbuyck: Build Y1 Mjbuyck\n\n6) maka: Build Y1 Maka\n\n7) zoltar: Build G1 Zoltar\n\n8) Kermit: Build G1 Kermit\n\tmaka: I'm going on holidays until Sunday...\n\n9) mjbuyck: Trade Y1 G1 Mjbuyck\n\n10) maka: Trade Y1 R1 Maka\n\n11) zoltar: Trade G1 Y1 Zoltar\n\n12) Kermit: Trade G1 B1 Kermit\n\n13) mjbuyck: Build G1 Mjbuyck\n\n14) maka: Build Y1 Maka\n\n15) zoltar: Build G1 Zoltar\n\n16) Kermit: Build B1 Kermit\n\n17) mjbuyck: Trade G1 B1 Mjbuyck\n\n18) maka: Trade Y1 B1 Maka\n\n19) zoltar: Trade G1 B1 Zoltar\n\n20) Kermit: Trade B1 Y1 Kermit\n\n21) mjbuyck: Build Y1 Mjbuyck\n\n22) maka: Build Y1 Maka\n\n23) zoltar: Build G1 Zoltar\n\n24) maka: Discover Y1 Maka G1 Kiko\n\n\tmjbuyck: I suppose not.\n\tmaka: isn't there a way to ending the game without resigning? \n\tzoltar: Hey guys, wait for someone's time to run out, and then the other person can end the game and choose to terminate it without rating, but I actually don't think 4-player games get rated anyway. I resigned because we were down to 3 and the game had just started. We can start another if you'd like.\n\tmaka: ok. done\n\tKermit: multiplayer games are not rated, unfortunately, as I win more of those than two player. sorry for my delay see the general forum.\n\nHomeworlds Online (SDG# 4589)\nStarted: 2006.10.8, Ended: 2007.3.23\nParticipants: noel45424 (S), Personman (N)\nWinner: Personman\n\n1) Personman: Homeworld B3 Y1 G3\n\n2) noel45424: Homeworld G3 B1 Y3\n\n3) Personman: Build G1 Personman\n\n4) noel45424: Build Y1 Noel45424\n\n5) Personman: Trade G1 Y1 Personman\n\n6) noel45424: Discover Y1 Noel45424 G2 P4x-639\n\n7) Personman: Build G1 Personman\n\n8) noel45424: Build Y2 Noel45424\n\n9) Personman: Move Y1 Personman P4x-639\n\n10) noel45424: Trade Y3 R3 Noel45424\n\n11) Personman: Trade G1 R1 Personman\n\n12) noel45424: Build Y2 Noel45424\n\n13) Personman: Build G1 Personman\n\n14) noel45424: Trade Y2 G2 Noel45424\n\n15) Personman: Discover Y1 P4x-639 G1 G1a\n\n16) noel45424: Trade G2 B2 Noel45424\n\n17) Personman: Build Y2 G1a\n\tnoel45424: heh, I'm having fun. trying to figure out why you do what you do, and even more, trying to figure out why the heck I do what I do! --paul\n\n18) noel45424: Build B1 Noel45424\n\n19) Personman: Move R1 Personman P4x-639\n\n20) noel45424: Trade B2 R2 Noel45424\n\n21) Personman: Attack Y1 P4x-639\n\n22) noel45424: Move R2 Noel45424 P4x-639\n\n23) Personman: Build R1 P4x-639\n\tnoel45424: heya, I'm going camping ... will be back and will move Monday evening.\n\n24) noel45424: Attack R1N P4x-639\n\n25) Personman: Build R1 P4x-639\nCatastrophe P4x-639 R\n\n26) noel45424: Build Y2 Noel45424\n\n27) Personman: Trade G1 R1 Personman\n\n28) noel45424: Move Y2 Noel45424 P4x-639\n\n29) Personman: Build Y3 P4x-639\n\n30) noel45424: Build Y3 P4x-639\nCatastrophe P4x-639 Y\n\n31) Personman: Build R1 Personman\n\n32) noel45424: Build R1 Noel45424\n\n33) Personman: Build G1 Personman\n\n34) noel45424: Trade R1 G1 Noel45424\n\n35) Personman: Discover G1 Personman Y2 Y2a\n\n36) noel45424: Build R1 Noel45424\n\n37) Personman: Build G2 Y2a\n\n38) noel45424: Move R1 Noel45424 Y2a\n\n39) Personman: Move G1 Y2a Noel45424\n\n40) noel45424: Trade G1 Y1 Noel45424\n\n41) Personman: Build G1 Noel45424\n\n42) noel45424: Build Y3 Noel45424\n\n43) Personman: Sacrifice Y2 G1a\nMove Y1 G1a Y2a\nMove Y1 Y2a Noel45424\nCatastrophe Noel45424 Y\n\n44) noel45424: Build R2 Noel45424\n\n45) Personman: Build G1 Noel45424\nCatastrophe Noel45424 G\n\n46) noel45424: Trade R3 G3 Noel45424\n\n47) Personman: Sacrifice R1 Personman\nAttack R1 Y2a\n\n48) noel45424: Build G1 Noel45424\n\n49) Personman: Build G1 Personman\n\n50) noel45424: Build B1 Noel45424\n\n51) Personman: Build G1 Y2a\n\n52) noel45424: Trade B1 Y1 Noel45424\n\n53) Personman: Move G1 Y2a Noel45424\n\n54) noel45424: Trade G1 Y1 Noel45424\n\n55) Personman: Sacrifice G2 Y2a\nBuild G1 Noel45424\nBuild G2 Noel45424\nCatastrophe Noel45424 G\n\n56) noel45424: Trade Y1 G1 Noel45424\n\n57) Personman: Sacrifice G1 Personman\nBuild R1 Y2a\n\n58) noel45424: Build G1 Noel45424\n\n59) Personman: Build R2 Personman\n\n60) noel45424: Build Y1 Noel45424\n\n61) Personman: Trade R2 Y2 Personman\n\n62) noel45424: Build R2 Noel45424\n\n63) Personman: Build Y2 Personman\n\n64) noel45424: Move R2 Noel45424 Y2a\n\tnoel45424: sorry for the delay; I realize if this were a... typical game between knowledgeable players, I probably would have resigned after losing my yellow homestar ... but I'm still learning a lot, and enjoying. many thanks.\n\tPersonman: oh, no worries! I'm all for playing things out. And I've lost games where I'd destroyed one homestar, so don't be so sure...\n\n65) Personman: Move G3 Personman Y2a\n\tnoel45424: ohyeah, I haven't given up hope (but I'm scratching my head a bit).\n\n66) noel45424: Move R2 Y2a Personman\n\n67) Personman: Attack R2 Personman\n\n68) noel45424: Move Y1 Noel45424 Y2a\n\n69) Personman: Attack Y1 Y2a\n\n70) noel45424: Build Y3 Noel45424\n\n71) Personman: Discover Y2 Personman G2 G2a\n\n72) noel45424: Trade Y3 G3 Noel45424\n\n73) Personman: Build Y3 G2a\n\n74) noel45424: Sacrifice G1 Noel45424\nBuild Y3 Noel45424\n\n75) Personman: Move Y3 G2a Noel45424\n\n76) noel45424: Attack Y3 Noel45424\n\n77) Personman: Move Y1 Y2a Noel45424\nCatastrophe Noel45424 Y\n\n78) noel45424: Trade B1 Y1 Noel45424\n\n79) Personman: Build G1 Y2a\n\n80) noel45424: Discover G1 Noel45424 Y3 Peace\n\n81) Personman: Move G1 Y2a Personman\n\n82) noel45424: Build G1 Noel45424\n\n83) Personman: Trade G1 B1 Personman\n\n84) noel45424: Build R2 Noel45424\n\n85) Personman: Trade R1 G1 Personman\n\n86) noel45424: Move R2 Noel45424 G2a\n\n87) Personman: Sacrifice R1 Y2a\nAttack R2 G2a\n\n88) noel45424: Move G1 Noel45424 Peace\n\tnoel45424: Take all the time you need; rest & get well! ---paul\n\n89) Personman: Move R2 G2a Peace\n\n\tnoel45424: hey I've been getting ready for a trip -- and am headed out until Friday. I'll do my next turn then.\n\nHomeworlds Online (SDG# 4592)\nVariants: "Unrated"\nStarted: 2006.10.8, Ended: 2006.10.24\nParticipants: Personman (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y2 G3\n\tKeith: I took a look at your previous Homeworlds games. Wow, you have no qualms about taking on the heavies.\n\n2) Personman: Homeworld Y1 B3 G3\n\tPersonman: Yeah... zoltar challenged me to a game once, and I kept thinking I was getting better and maybe had a chance. I was wrong, of course, but it was fun.\n\n3) Keith: Build G1 Keith\n\n4) Personman: Build G1 Personman\n\n5) Keith: Discover G1 Keith Y3 Serpent\n\tKeith: I got as far against Zoltar as eliminating one of his home systems and having a superior force of ships before he beat me anyway.\r\n\r\nWhen you play against Zoltar the less "Zoltar speak" you hear the better you are doing.\n\n6) Personman: Trade G1 Y1 Personman\n\n7) Keith: Build G1 Keith\n\n8) Personman: Build Y1 Personman\n\n9) Keith: Trade G1 B1 Keith\n\n10) Personman: Discover Y1 Personman G2 Theme\n\n11) Keith: Build G1 Keith\n\tKeith: It did not take me long to get into a yellow problem.\n\n12) Personman: Build Y2 Personman\n\n13) Keith: Build B1 Keith\n\n14) Personman: Trade Y2 B2 Personman\n\n15) Keith: Move B1 Keith Serpent\n\n16) Personman: Build Y2 Theme\n\n17) Keith: Discover B1 Serpent Y2 Hydra\n\n18) Personman: Build Y3 Personman\n\n19) Keith: Discover B1 Keith G3 Behemoth\n\n20) Personman: Build G1 Personman\n\n21) Keith: Trade G1 R1 Keith\n\n22) Personman: Discover Y2 Theme B3 Genre\n\n23) Keith: Build G1 Serpent\n\n24) Personman: Sacrifice Y3 Personman\nMove Y1 Theme Genre\nMove Y1 Genre Keith\nMove Y2 Genre Keith\n\n25) Keith: Attack Y2 Keith\n\n26) Personman: Sacrifice G1 Personman\nBuild Y3 Keith\nCatastrophe Keith Y\n\n27) Keith: Trade R1 Y1 Keith\n\n28) Personman: Build Y2 Personman\n\n29) Keith: Build G1 Keith\n\n30) Personman: Discover Y2 Personman G2 Type\n\n31) Keith: Build B2 Behemoth\n\n32) Personman: Move B2 Personman Type\n\n33) Keith: Sacrifice G3 Keith\nBuild G2 Keith\nBuild G2 Serpent\nBuild G3 Keith\n\n34) Personman: Move B2 Type Keith\n\n35) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild B2 Hydra\nBuild B3 Hydra\n\n36) Personman: Trade B2 R2 Keith\n\n37) Keith: Trade B2 R2 Hydra\n\n38) Personman: Attack G2 Keith\n\n39) Keith: Sacrifice R2 Hydra\nAttack G2 Keith\nAttack R2 Keith\n\n40) Personman: Discover Y2 Type B3 Class\n\n41) Keith: Build Y2 Keith\n\n42) Personman: Trade Y1 R1 Personman\n\n43) Keith: Discover Y2 Keith G2 Cyclops\n\n44) Personman: Build R1 Personman\n\n45) Keith: Sacrifice G3 Keith\nBuild Y1 Cyclops\nBuild Y3 Keith\nBuild G3 Keith\n\n46) Personman: Move R1 Personman Hydra\n\n47) Keith: Sacrifice Y3 Keith\nMove B3 Hydra Personman\nMove B1 Hydra Personman\nMove Y1 Cyclops Personman\n\n48) Personman: Attack B3 Personman\n\n49) Keith: Sacrifice G3 Keith\nBuild Y3 Personman\nBuild Y3 Personman\nBuild B2 Personman\nCatastrophe Personman Yellow\nCatastrophe Personman Blue\n\tKeith: It has been a tough and challenging game. I felt like I was in trouble from about the third turn and then I lost one of my home system stars.\n\tKeith: Thank you for the good game.\n\tPersonman: Indeed! Good game. \n\n\nHomeworlds Online (SDG# 4591)\nStarted: 2006.10.10, Ended: 2006.11.19\nParticipants: antihero (S), Personman (N)\nWinner: antihero\n\n1) Personman: Homeworld B2 Y1 G3\n\n2) antihero: Homeworld B3 Y2 G3\n\n3) Personman: Build G1 Personman\n\n4) antihero: Build G1 Antihero\n\n5) Personman: Discover G1 Personman B3 B3a\n\n6) antihero: Discover G1 Antihero Y1 Y1a\n\tantihero: haha, i like your naming system. :)\n\n7) Personman: Build G1 Personman\n\n8) antihero: Build G2 Antihero\n\n9) Personman: Build G2 B3a\n\n10) antihero: Discover G1 Y1a Y3 Y3a\n\n11) Personman: Trade G1 Y1 Personman\n\n12) antihero: Trade G2 Y2 Antihero\n\n13) Personman: Trade G2 Y2 B3a\n\n14) antihero: Build G1 Y3a\n\n15) Personman: Trade Y2 R2 B3a\n\n16) antihero: Trade Y2 R2 Antihero\n\n17) Personman: Build G2 B3a\n\n18) antihero: Build G2 Antihero\n\n19) Personman: Build Y1 Personman\n\n20) antihero: Trade G2 Y2 Antihero\n\n21) Personman: Discover Y1 Personman G3 G3a\n\n22) antihero: Build G2 Antihero\n\n23) Personman: Build Y2 Personman\n\n24) antihero: Discover Y2 Antihero B1 B1a\n\n25) Personman: Build Y3 G3a\n\n26) antihero: Sacrifice G1 Y3a\nBuild Y3 B1a\n\n27) Personman: Trade Y1 R1 Personman\n\n28) antihero: Move Y3 B1a B3a\n\n29) Personman: Sacrifice Y2 Personman\nDiscover R2 B3a Y1 Y1a\nMove G2 B3a Y1a\n\n30) antihero: Move G2 Antihero B1a\n\n31) Personman: Build R1 Personman\n\n32) antihero: Move G2 B1a B3a\n\n33) Personman: Trade R1 B1 Personman\n\n34) antihero: Build Y2 B3a\n\n35) Personman: Move Y3 G3a B1a\n\n36) antihero: Move Y2 B1a G3a\n\n37) Personman: Move Y3 B1a G3a\n\n38) antihero: Sacrifice G1 Y3a\nBuild Y3 G3a\nCatastrophe G3a Yellow\n\n39) Personman: Move B1 Personman B3a\n\n40) antihero: Move Y3 B3a Y1a\n\n41) Personman: Sacrifice G2 Y1a\nBuild B1 B3a\nBuild B1 B3a\nCatastrophe B3a B\n\n42) antihero: Sacrifice R2 Antihero\nAttack R2 Y1a\nPass\n\n43) Personman: Build G1 Personman\n\n44) antihero: Build G1 Antihero\n\n45) Personman: Build R1 Personman\n\n46) antihero: Trade G1 B1 Antihero\n\tPersonman: Well, I usually can't win at homeworlds when both players start off even, so I guess the obvious next step is to restart the game, but give you several extra pieces. Right? :p\n\tantihero: haha, that's right.\n\n47) Personman: Trade R1 Y1 Personman\n\n48) antihero: Move B1 Antihero Y1a\n\n49) Personman: Build Y2 Personman\n\n50) antihero: Build G1 Antihero\n\n51) Personman: Discover Y1 Personman G3 G3a\n\n52) antihero: Move R2 Y1a G3a\n\n53) Personman: Discover Y1 G3a G2 G2a\n\n54) antihero: Move Y3 Y1a G3a\n\n55) Personman: Build R1 Personman\n\n56) antihero: Discover B1 Y1a G2 G2b\n\n57) Personman: Discover R1 Personman B3 B3a\n\n58) antihero: Build B1 G2b\n\n59) Personman: Trade R1 G1 B3a\n\n60) antihero: Trade B1 Y1 G2b\n\n61) Personman: Sacrifice G3 Personman\nBuild G2 B3a\nBuild Y2 G2a\nBuild G3 Personman\n\n62) antihero: Sacrifice G3 Antihero\nBuild G3 Antihero\nBuild Y3 G2b\nBuild Y3 G3a\n\n63) Personman: Sacrifice Y2 Personman\nMove Y2 G2a G3a\nMove Y1 G2a G3a\nCatastrophe G3a Y\n\n64) antihero: Build G2 Antihero\n\n65) Personman: Trade G2 Y2 B3a\n\n66) antihero: Trade G1 R1 Antihero\n\n67) Personman: Build Y1 B3a\n\n68) antihero: Move Y3 G2b G3a\n\n69) Personman: Discover Y1 B3a G1 G1a\n\n70) antihero: Sacrifice G3 Antihero\nBuild G2 Antihero\nBuild Y2 G2b\nBuild Y3 G3a\n\n71) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild G3 B3a\nBuild Y3 B3a\n\n72) antihero: Sacrifice B1 G2b\nTrade Y3 R3 G3a\n\n73) Personman: Sacrifice Y2 B3a\nMove G1 B3a G1a\nMove G1 G1a Antihero\n\n74) antihero: Sacrifice Y2 G2b\nMove Y3 G3a Personman\nMove R3 G3a Personman\n\n75) Personman: Attack R3 Personman\n\n76) antihero: Sacrifice R2 G3a\nAttack G3 Personman\nAttack R3 Personman\n\n77) Personman: Sacrifice G3 B3a\nBuild G3 Personman\nBuild R1 Personman\nBuild R2 Personman\nCatastrophe Personman R\n\n78) antihero: Trade Y3 G3 Personman\nCatastrophe Personman Green\n\n\tantihero: whoops, forgot the catastrophe, that was almost catastrophic. Good game, sir.\n\tPersonman: Good game! Well won.\n\nHomeworlds Online (SDG# 4537)\nStarted: 2006.10.11, Ended: 2006.10.17\nParticipants: zoltar (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld Y2 B1 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) mneme: Build G1 Mneme\n\n4) zoltar: Build G1 Zoltar\n\n5) mneme: Discover G1 Mneme B3 Emerald\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) mneme: Build G1 Emerald\n\n8) zoltar: Build G2 Zoltar\n\n9) mneme: Build G2 Mneme\n\n10) zoltar: Discover G1 Zoltar Y2 Yellowstone\n\n11) mneme: Trade G1 Y1 Emerald\n\n12) zoltar: Build Y1 Zoltar\n\n13) mneme: Discover G2 Mneme G3 Jade\n\n14) zoltar: Trade Y1 R1 Zoltar\n\n15) mneme: Build G1 Mneme\n\n\tzoltar: Well, I'm already about to resign this one...\n\tzoltar: Yeah, I don't have a chance in this one. \n\tmneme: Er. If you say so -- I'm a very weak player (why I've been playing banker later) and I had many, many opportunities to fail utterly at stoping my booted food into your face. \n\tmneme: Ok, getting a second large green soon was very strong, but still losable given sufficient blunders.\n\tzoltar: I figured that after the last game, you're as good as I am, and I can't stop you from getting the 'factory' with that next large green, so that you can make 2 builds every move, so I figured I am lost for sure. I've lost 5 or 6 straight games now (not including silly 4-player ones, which are sort of random), and it's been a while since I've played well at this game. \n\tmneme: True. But you could still have put me on the defensive nicely, especially since there was no way for me to suck up all the green without giving you an opportunity to cause a catastrophe. I still had a monocolored homeworld, which was badness.\n\tzoltar: Yes, that makes sense -- I didn't think about that but just figured I was doomed again. :)\n\nHomeworlds Online (SDG# 4667)\nStarted: 2006.10.16, Ended: 2006.11.11\nParticipants: antihero (S), gundam_blade (N)\nWinner: antihero\n\n1) gundam_blade: Homeworld G3 B2 Y3\n\n2) antihero: Homeworld B1 G2 Y3\n\n3) gundam_blade: Build Y1 Gundam_blade\n\tantihero: Hello again. Have you played homeworlds much before?\n\n4) antihero: Build Y1 Antihero\n\n5) gundam_blade: Trade Y1 R1 Gundam_blade\n\n6) antihero: Trade Y1 G1 Antihero\n\n7) gundam_blade: Build Y1 Gundam_blade\n\n8) antihero: Build Y1 Antihero\n\n9) gundam_blade: Trade Y1 G1 Gundam_blade\n\n10) antihero: Discover G1 Antihero Y3 Sol\n\n11) gundam_blade: Discover G1 Gundam_blade B1 Jdogg\n\n12) antihero: Trade Y1 R1 Antihero\n\n13) gundam_blade: Build G1 Jdogg\n\n14) antihero: Build G2 Sol\n\n15) gundam_blade: Trade G1 Y1 Jdogg\n\n16) antihero: Discover G1 Sol B1 Switch\n\n17) gundam_blade: Build Y1 Jdogg\n\n18) antihero: Build G1 Switch\n\n19) gundam_blade: Build R1 Gundam_blade\n\n20) antihero: Build R2 Antihero\n\n21) gundam_blade: Build R2 Gundam_blade\n\n22) antihero: Move R2 Antihero Sol\n\n23) gundam_blade: Move R2 Gundam_blade Jdogg\n\n24) antihero: Discover R2 Sol Y2 Sink\n\n25) gundam_blade: Build R2 Jdogg\n\n26) antihero: Build R3 Antihero\n\n27) gundam_blade: Build R3 Gundam_blade\n\n28) antihero: Sacrifice G1 Switch\nBuild R3 Sink\n\n29) gundam_blade: Move R3 Gundam_blade Switch\n\n30) antihero: Sacrifice G1 Switch\nBuild G1 Sol\n\n\nHomeworlds Online (SDG# 4665)\nStarted: 2006.10.16, Ended: 2006.10.16\nParticipants: gundam_blade (S), antihero (N)\nWinner: antihero\n\n1) antihero: Homeworld G1 B2 Y3\n\n2) gundam_blade: Homeworld G3 B2 Y3\n\n3) antihero: Build Y1 Antihero\n\n4) gundam_blade: Build Y1 Gundam_blade\n\n5) antihero: Build Y1 Antihero\n\n6) gundam_blade: Build Y2 Gundam_blade\n\n7) antihero: Sacrifice Y3 Antihero\nDiscover Y1 Antihero B3 Hole1\nDiscover Y1 Hole1 B1 Hole2\nMove Y1 Hole2 Gundam_blade\nCatastrophe Gundam_blade Yellow\n\tantihero: Another, hopefully longer, game?\n\tgundam_blade: sure. I didn't know you could do that. I do now.\n\n\nHomeworlds Online (SDG# 4666)\nStarted: 2006.10.16, Ended: 2006.10.30\nParticipants: gundam_blade (S), bigby (N)\nWinner: bigby\n\n1) bigby: Homeworld Y2 B3 G3\n\n2) gundam_blade: Homeworld G2 B1 Y3\n\n3) bigby: Build G1 Bigby\n\n4) gundam_blade: Build Y1 Gundam_blade\n\n5) bigby: Discover G1 Bigby G1 Cassini\n\n6) gundam_blade: Trade Y1 R1 Gundam_blade\n\n7) bigby: Build G1 Bigby\n\n8) gundam_blade: Build Y1 Gundam_blade\n\n9) bigby: Build G2 Bigby\n\n10) gundam_blade: Trade Y1 B1 Gundam_blade\n\n11) bigby: Trade G2 B2 Bigby\n\n12) gundam_blade: Discover B1 Gundam_blade G3 Planethollywood\n\n13) bigby: Build G2 Bigby\n\n14) gundam_blade: Build B1 Planethollywood\n\n15) bigby: Discover G2 Bigby R1 Logan\n\n16) gundam_blade: Build B2 Planethollywood\n\n17) bigby: Build B2 Bigby\n\n18) gundam_blade: Trade B2 Y2 Planethollywood\n\n19) bigby: Move B2 Bigby Cassini\n\n20) gundam_blade: Build B2 Planethollywood\n\n21) bigby: Build B3 Cassini\n\n22) gundam_blade: Sacrifice Y2 Planethollywood\nMove B1 Planethollywood Cassini\nMove B1 Planethollywood Cassini\nCatastrophe Cassini Blue\n\n23) bigby: Build B1 Bigby\n\n24) gundam_blade: Build B1 Planethollywood\n\n25) bigby: Move B1 Bigby Logan\n\n26) gundam_blade: Build Y1 Gundam_blade\n\n27) bigby: Build B2 Logan\n\n28) gundam_blade: Build B3 Planethollywood\n\n29) bigby: Trade B1 Y1 Logan\n\n30) gundam_blade: Trade B3 Y3 Planethollywood\n\n31) bigby: Sacrifice G3 Bigby\nBuild G2 Logan\nBuild G3 Bigby\nBuild G3 Bigby\n\n32) gundam_blade: Move B1 Planethollywood Cassini\n\n33) bigby: Move B2 Bigby Cassini\n\n34) gundam_blade: Sacrifice R1 Gundam_blade\nAttack G1 Cassini\n\tbigby: Sweet!\n\n35) bigby: Move G3 Bigby Cassini\n\n\tbigby: Sorry about that. I realized I gave the game away, so I tried again.\n\nHomeworlds Online (SDG# 4668)\nStarted: 2006.10.19, Ended: 2006.10.20\nParticipants: zoltar (S), Manny (N)\nWinner: zoltar\n\n1) Manny: Homeworld Y2 B3 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) Manny: Build G1 Manny\n\n4) zoltar: Build G1 Zoltar\n\n5) Manny: Trade G1 Y1 Manny\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Manny: Build G1 Manny\n\n8) zoltar: Build G1 Zoltar\n\n9) Manny: Discover G1 Manny B1 Flux\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) Manny: Build G1 Manny\n\n12) zoltar: Build B2 Zoltar\n\n13) Manny: Trade G3 B3 Manny\n\n14) zoltar: Trade B1 R1 Zoltar\n\n15) Manny: Build G1 Manny\n\n16) zoltar: Build G2 Zoltar\n\n17) Manny: Trade G1 R1 Manny\n\n18) zoltar: Discover G2 Zoltar B2 Chrononauts\n\n19) Manny: Build G1 Manny\n\n20) zoltar: Build G2 Zoltar\n\n21) Manny: Trade G1 B1 Manny\n\n22) zoltar: Build B2 Zoltar\n\n23) Manny: Discover B1 Manny G1 Slavelabour\n\n24) zoltar: Trade B2 Y2 Zoltar\n\n25) Manny: Build G2 Manny\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Chrononauts\n\n27) Manny: Sacrifice G2 Manny\nBuild B2 Slavelabour\nBuild B3 Manny\n\n28) zoltar: Trade G3 Y3 Chrononauts\n\n29) Manny: Build G2 Flux\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Chrononauts\nBuild Y1 Chrononauts\n\n\tManny: Thanks for the game. I think I'll give up now though.\n\nHomeworlds Online (SDG# 4737)\nStarted: 2006.10.27, Ended: 2006.12.5\nParticipants: Keith (S), antihero (N)\nWinner: Keith\n\n1) antihero: Homeworld G2 B1 Y3\n\n2) Keith: Homeworld Y3 B1 G3\n\tantihero: Here we go again!\n\tKeith: I am looking forward to it. You are a good opponent.\n\n3) antihero: Build Y1 Antihero\n\n4) Keith: Build G1 Keith\n\n5) antihero: Trade Y1 G1 Antihero\n\n6) Keith: Trade G1 Y1 Keith\n\n7) antihero: Build Y1 Antihero\n\n8) Keith: Build G1 Keith\n\n9) antihero: Discover Y1 Antihero G3 Forest\n\n10) Keith: Discover Y1 Keith G2 Centaur\n\n11) antihero: Build G1 Antihero\n\n12) Keith: Trade G1 B1 Keith\n\n13) antihero: Discover G1 Antihero Y3 Desert\n\n14) Keith: Build B2 Keith\n\n15) antihero: Build G1 Antihero\n\n16) Keith: Move B2 Keith Centaur\n\tantihero: I must remember this situation where when we both have small blue in our homeworld then blue is ripe for the taking...\n\n17) antihero: Trade G1 Y1 Antihero\n\n18) Keith: Build Y2 Centaur\n\n19) antihero: Build Y2 Forest\n\n20) Keith: Sacrifice G3 Keith\nBuild B2 Centaur\nBuild B2 Centaur\nBuild B3 Keith\n\tKeith: And since I started down the blue line I feel like I should go to great effort dominate it.\n\n21) antihero: Discover Y1 Antihero B3 Stopkeith\n\n22) Keith: Trade B3 G3 Keith\n\tKeith: Very amusing system name.\n\n23) antihero: Build Y2 Antihero\n\tantihero: now i just have to figure out how to do it.\n\n24) Keith: Build B3 Keith\n\n25) antihero: Sacrifice G1 Desert\nBuild Y3 Stopkeith\n\n26) Keith: Trade B3 R3 Keith\n\n27) antihero: Trade Y3 R3 Stopkeith\n\tantihero: man this is tough. I'm in bad shape here. Gotta think gotta think gotta think. I'll be a little late on this one, sorry.\n\tKeith: No problem. Take your time.\n\n28) Keith: Sacrifice Y2 Centaur\nMove B2 Centaur Stopkeith\nMove B2 Centaur Stopkeith\n\n29) antihero: Move R3 Stopkeith Centaur\n\n30) Keith: Sacrifice G3 Keith\nBuild B3 Centaur\nBuild B3 Centaur\nBuild Y2 Centaur\n\n31) antihero: Sacrifice Y1 Forest\nMove R3 Centaur Forest\n\n32) Keith: Trade B3 G3 Centaur\n\tantihero: wow I'm getting destroyed here. This game is not going well.\n\tKeith: It does look bad for you, and yet it has been a struggle for me. Your strong grip on the yellow supply and the threat of having that r3 prance through Centaur while it was chock full of my lesser ships has had me putting a lot of time into each of my turns because if my grip on blue falls apart so does my entire game. \n\n33) antihero: Discover Y2 Antihero B3 Ahhhh\n\n34) Keith: Move G3 Centaur Keith\n\tantihero: If you wanna see something crazy check out my HW game with unic... (#5098)\n\tKeith: Wow. All the 3 pointers makes a big visual splash. The small universe it really going to change the game. Any ship that moves out of your homeworld system moves further away from your opponent's homeworld.\n\n35) antihero: Build R1 Forest\n\tKeith: That does put a nice dent in my recruit a 3 pointer every other turn program.\n\tantihero: I'm amazed I'm not down by more, here.\n\n36) Keith: Build R1 Keith\n\n37) antihero: Build Y1 Forest\n\n38) Keith: Trade R3 Y3 Keith\n\n39) antihero: Build G1 Antihero\n\n40) Keith: Sacrifice Y2 Centaur\nMove B2 Stopkeith Antihero\nMove B2 Stopkeith Antihero\n\n41) antihero: Sacrifice G1 Antihero\nBuild Y2 Ahhhh\n\n42) Keith: Build G1 Keith\n\n43) antihero: Discover Y1 Forest R2 Don'tmindme\n\n\n44) Keith: Sacrifice Y3 Keith\nMove B2 Centaur Stopkeith\nMove B2 Stopkeith Antihero\nMove B3 Centaur Forest\nCatastrophe Antihero Blue\n\tKeith: That was a good offensive and defensive move. I was going to put a fourth blue and a fourth green in your homeworld.\n\n45) antihero: Sacrifice Y2 Ahhhh\nMove R3 Forest Centaur\nMove Y2 Ahhhh Antihero\n\tantihero: It's 1 move a day, which is faster, but this setting means I will run out of time less I think. Do you mind?\n\tKeith: No problem. I have not tried the console thingie yet. Not that computer sophisticated. I will click on the box in my console message.\n\n46) Keith: Move G1 Keith Antihero\n\tKeith: I just learned that you can't execute any orders after a catastrophe. I was going to sacrifice my Y3, move a B2 into your homeworld, catastrophe, then, with our systems one apart move in a green.\n\n\tantihero: yes it certainly is...\n\tantihero: that was my last turn, I believe. Do you see any move that gives me any longer life?\n\tantihero: The way I see it, I have two options to save my homeworld, both of which will fail:\r\n\r\n1. Take your g1. Your response, m g3 keith antihero; catastrophe antihero green.\r\n\r\n2. Move my g1 out of antihero. Your response: sac g3 keith; build g1 antihero; build g1 antihero; build g2 antihero; massive catastrophe antihero green.\n\tantihero: Good game. I'll have to remember that blue thing -- it really killed me here.\n\tKeith: You saw right that you were out of options. I was headed for creating a green catastrophe regardless. If your prior move had been to evacuate the r3 and the g1 then I think I would have gained material but not had a catastrophe threat going.\n\tKeith: I am not sure about the blue thing. It seems to me that blue is a weak color. The further dimished the stash the further dimished its power...\r\nAnd yet in my last three games I have grabbed enough blue to at least prevent a blue catastrophe in my homeworld and sometimes to prevent any blue aqusition at all. I have fallen way behind in yellow while doing so every time but held on to some. It seems like a risky but viable strategy.\n\tantihero: when I say "the blue thing" I mean a grab for blue is *very* viable when both homeworlds include a small blue. If you are the first to trade for blue and your opponent doesn't have any medium pieces yet they will either have to trade their large for blue (slows them down some) or allow you to own blue.\n\nHomeworlds Online (SDG# 4771)\nStarted: 2006.10.29, Ended: 2006.11.20\nParticipants: Keith (S), unic (N)\nWinner: Keith\n\n1) unic: Homeworld R2 B3 G3\n\n2) Keith: Homeworld B1 Y2 G3\n\tKeith: Hello Unic. If you are as tough a Homeworlds player as you are a Cannon player then I am in trouble.\n\n3) unic: Build G1 Unic\n\tunic: Sadly, I'm not... of the games I've tried so far here on the server, Homeworlds is the one I have the worst record in. Cannon uses much more familiar thought patterns from other abstracts... much easier to draw on experience from them.\n\n4) Keith: Build G1 Keith\n\n5) unic: Trade G1 Y1 Unic\n\n6) Keith: Discover G1 Keith Y3 Hydra\n\n7) unic: Build Y1 Unic\n\n8) Keith: Build G1 Keith\n\n9) unic: Discover Y1 Unic G1 Zebra\n\n10) Keith: Build G2 Hydra\n\n11) unic: Build G2 Unic\n\n12) Keith: Sacrifice G3 Keith\nBuild G2 Hydra\nBuild G3 Keith\nBuild G3 Keith\n\n13) unic: Sacrifice G3 Unic\nBuild G3 Unic\nBuild Y1 Zebra\nBuild Y2 Zebra\n\n14) Keith: Trade G1 R1 Keith\n\n15) unic: Discover Y1 Zebra R3 Lion\n\n16) Keith: Move G2 Hydra Zebra\n\n17) unic: Move Y2 Zebra Lion\n\n18) Keith: Trade G3 Y3 Keith\n\n19) unic: Sacrifice G2 Unic\nBuild Y2 Zebra\nBuild Y3 Unic\n\n20) Keith: Sacrifice R1 Keith\nAttack Y2 Zebra\n\tKeith: You certainly seem like a tough Homeworlds to me.\n\tKeith: Opponent. Tough opponent.\n\tunic: My rating (16th percentile... so near the bottom) and record so far (1 win, 6 losses) tell a different story.\r\n\r\nThough I do hope I'm learning from all those losses :)\n\n21) unic: Sacrifice Y3 Unic\nMove Y1 Zebra Lion\nMove Y1 Lion Keith\nMove Y1 Lion Keith\nCatastrophe Keith Yellow\n\tKeith: 16th percentile huh? Oh well in that case I feel much better about this being such a close match. ;)\r\n\r\nFWIW I beat Zoltar in our last matchup. So you must be learning something.\n\n22) Keith: Build G1 Keith\n\tunic: I got into a reasonable position in my very first game against Zoltar... but lost it in the end. The times I've played him since then, he's beaten me soundly!\n\tKeith: I missed that completley. Was focused on sacrificing my Y3 to catastrophe you.\r\n\r\nI had Zoltar down one system and I had more and better ships... and lost.\n\n23) unic: Build Y1 Unic\n\n24) Keith: Sacrifice Y2 Zebra\nMove G1 Keith Unic\nMove G2 Zebra Unic\n\tKeith: Maybe I can deliver a setback to you too. If I am reading this wrong I may be shooting myself in the foot.\n\n25) unic: Trade G3 R3 Unic\n\n26) Keith: Trade G2 R2 Unic\n\n27) unic: Attack G1 Unic\n\n28) Keith: Sacrifice G1 Hydra\nBuild R1 Unic\nCatastrophe Unic Red\n\n29) unic: Move Y2 Lion Keith\n\n30) Keith: Trade G3 R3 Keith\n\n31) unic: Move Y2 Keith Unic\n\n32) Keith: Move G2 Hydra Keith\n\n33) unic: Trade Y1 B1 Unic\n\n34) Keith: Build R1 Keith\n\n35) unic: Build B1 Unic\n\n36) Keith: Trade G2 Y2 Keith\n\n37) unic: Discover B1 Unic Y2 Centaur\n\n38) Keith: Move R3 Keith Unic\n\n39) unic: Move B1 Unic Keith\n\n40) Keith: Attack B1 Keith\n\n41) unic: Sacrifice G1 Unic\nBuild B2 Centaur\n\n42) Keith: Trade B1 G1 Keith\n\n\nHomeworlds Online (SDG# 4669)\nStarted: 2006.10.30, Ended: 2006.10.30\nParticipants: zoltar (S), b00jum (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 4873)\nStarted: 2006.11.6, Ended: 2006.11.8\nParticipants: antihero (S), method7 (N)\nWinner: antihero\n\n1) method7: Homeworld G3 B2 Y3\n\n2) antihero: Homeworld B1 G2 Y3\n\n3) method7: Build Y1 Method7\n\n\n4) antihero: Build Y1 Antihero\n\n5) method7: Trade Y1 B1 Method7\n\n6) antihero: Trade Y1 G1 Antihero\n\n7) method7: Build Y1 Method7\n\n8) antihero: Discover G1 Antihero Y3 Sun\n\n9) method7: Trade Y1 G1 Method7\n\n10) antihero: Build Y1 Antihero\n\n11) method7: Build Y1 Method7\n\n12) antihero: Discover Y1 Antihero G3 Green\n\n13) method7: Discover G1 Method7 R1 Mars\n\n14) antihero: Build Y1 Green\n\n15) method7: Build Y2 Method7\n\n16) antihero: Build Y2 Antihero\n\n17) method7: Move Y2 Method7 Mars\n\n18) antihero: Trade Y2 R2 Antihero\n\n19) method7: Move B1 Method7 Mars\n\n20) antihero: Build Y2 Antihero\n\n21) method7: Trade Y2 R2 Mars\n\n22) antihero: Discover Y1 Green G1 Little\n\n23) method7: Build G2 Mars\n\n24) antihero: Sacrifice Y3 Antihero\nMove Y1 Green Little\nMove Y1 Little Method7\nMove Y1 Little Method7\nCatastrophe Method7 Y\n\n\nHomeworlds Online (SDG# 4893)\nStarted: 2006.11.8, Ended: 2006.11.12\nParticipants: antihero (S), method7 (N)\nWinner: antihero\n\n1) method7: Homeworld G2 B3 Y3\n\n2) antihero: Homeworld G1 B2 Y3\n\n3) method7: Build Y1 Method7\n\n4) antihero: Build Y1 Antihero\n\n5) method7: Trade Y1 G1 Method7\n\n6) antihero: Discover Y1 Antihero G3 Green\n\n7) method7: Build Y1 Method7\n\n8) antihero: Discover Y1 Green B1 Method6\n\n9) method7: Trade Y1 B1 Method7\n\n10) antihero: Build Y1 Antihero\n\n11) method7: Build Y1 Method7\n\n12) antihero: Trade Y1 G1 Antihero\n\n13) method7: Build G2 Method7\n\n14) antihero: Build Y1 Antihero\n\n15) method7: Trade G2 R2 Method7\n\n16) antihero: Trade Y1 R1 Antihero\n\n17) method7: Build R1 Method7\n\n18) antihero: Build Y1 Antihero\n\n19) method7: Move R2 Method7 Method6\n\n20) antihero: Discover Y1 Antihero G3 Green\n\n21) method7: Attack Y1 Method6\n\n22) antihero: Build Y2 Green\n\n23) method7: Build G2 Method7\n\n24) antihero: Discover G1 Antihero Y3 Yellow\n\n25) method7: Sacrifice G2 Method7\nBuild R1 Method6\nBuild R2 Method7\n\n26) antihero: Build G2 Yellow\n\n27) method7: Sacrifice G1 Method7\nBuild Y2 Method6\n\n28) antihero: Build Y2 Antihero\n\n29) method7: Move Y1 Method6 Yellow\n\n30) antihero: Discover Y2 Antihero G3 Another\n\n31) method7: Sacrifice R1 Method7\nAttack G1 Yellow\n\n32) antihero: Discover Y1 Green R1 Closer\n\tmethod7: that was a much better move\n\n33) method7: Trade R2 B2 Method7\n\n34) antihero: Build R2 Antihero\n\n35) method7: Move G1 Yellow Method6\n\n36) antihero: Move Y1 Closer Method7\n\n37) method7: Move Y1 Method7 Method6\n\n38) antihero: Trade Y1 B1 Method7\nCatastrophe Method7 B\n\n\tmethod7: Fuck! why do I continue to make moves over the weekend!\r\nAm I an idiot??\n\tantihero: woah, you didn't need to resign, dude! But your call, I guess. Good game.\n\tmethod7: The game was over. You could have moved in your two y2s and built the last y1 before I could do anything else. Without blue I had no way to defend against such an attck. GG.\n\tantihero: alright, true. I guess I didn't even notice. But I would have if you had given me the chance. :)\n\nHomeworlds Online (SDG# 4949)\nStarted: 2006.11.13, Ended: 2006.11.16\nParticipants: antihero (S), method7 (N)\nWinner: antihero\n\n1) method7: Homeworld Y1 B2 G3\n\n2) antihero: Homeworld B1 G3 Y3\n\tmethod7: Let's mix up my starting set here and see what happens.\n\n3) method7: Build G1 Method7\n\n4) antihero: Build Y1 Antihero\n\n5) method7: Build G1 Method7\n\n6) antihero: Build Y1 Antihero\n\n7) method7: Trade G1 B1 Method7\n\n8) antihero: Discover Y1 Antihero G2 Greenbelt\n\n9) method7: Build G1 Method7\n\n10) antihero: Build Y2 Antihero\n\n11) method7: Trade G3 Y3 Method7\n\n12) antihero: Build Y2 Greenbelt\n\n13) method7: Discover G1 Method7 Y3 Blonde\n\n14) antihero: Trade Y2 B2 Antihero\n\n15) method7: Build B1 Method7\n\tantihero: punk.\n\n16) antihero: Build Y2 Antihero\n\n17) method7: Move B1 Method7 Blonde\n\n18) antihero: Move B2 Antihero Greenbelt\n\n19) method7: Discover B1 Blonde Y2 Sun\n\n20) antihero: Trade Y1 R1 Antihero\n\n21) method7: Trade B1 R1 Method7\n\n22) antihero: Trade Y2 R2 Antihero\n\n23) method7: Build G1 Blonde\n\n24) antihero: Move R1 Antihero Sun\n\n25) method7: Sacrifice R1 Method7\nAttack R1 Sun\n\n26) antihero: Discover Y1 Greenbelt G3 Big\n\n27) method7: Build G2 Method7\n\n28) antihero: Move Y1 Big Method7\n\n29) method7: Sacrifice R1 Sun\nAttack Y1 Method7\n\n30) antihero: Build Y1 Greenbelt\n\n31) method7: Move Y1 Method7 Blonde\n\n32) antihero: Build B1 Greenbelt\n\n33) method7: Build G2 Blonde\n\n34) antihero: Move B2 Greenbelt Blonde\n\n35) method7: Move G2 Blonde Sun\n\n36) antihero: Build B2 Greenbelt\n\n37) method7: Build G3 Sun\n\n38) antihero: Build B3 Greenbelt\n\n39) method7: Sacrifice Y3 Method7\nMove B1 Sun Blonde\nMove B1 Blonde Greenbelt\nMove Y1 Blonde Method7\nCatastrophe Greenbelt Blue\n\n40) antihero: Sacrifice Y2 Greenbelt\nDiscover Y1 Greenbelt G3 Wormhole\nMove Y1 Wormhole Method7\n\n41) method7: Trade G1 B1 Method7\n\n42) antihero: Move B2 Blonde Method7\n\n43) method7: Sacrifice G3 Sun\nBuild G1 Sun\nBuild G2 Method7\nBuild G3 Method7\n\n44) antihero: Trade Y3 G3 Antihero\n\n45) method7: Move G1 Sun Antihero\n\n46) antihero: Sacrifice G3 Antihero\nBuild Y2 Method7\nBuild B1 Method7\nPass\nCatastrophe Method7 B\nCatastrophe Method7 Y\n\n\tantihero: good game, method7.\n\nHomeworlds Online (SDG# 4955)\nStarted: 2006.11.14, Ended: 2006.11.27\nParticipants: Dangrodzi (S), method7 (N)\nWinner: method7\n\n1) method7: Homeworld B1 G2 Y3\n\n\nHomeworlds Online (SDG# 4998)\nStarted: 2006.11.16, Ended: 2006.11.24\nParticipants: antihero (S), Manny (N)\nWinner: antihero\n\n1) Manny: Homeworld Y1 B3 G3\n\n2) antihero: Homeworld Y1 B2 G3\n\n3) Manny: Build G1 Manny\n\n4) antihero: Build G1 Antihero\n\n5) Manny: Discover G1 Manny B2 Flux\n\tantihero: hello, good luck to you!\n\tManny: Thanks, same to you.\n\n6) antihero: Discover G1 Antihero Y3 Sun\n\n7) Manny: Build G1 Manny\n\n8) antihero: Build G2 Antihero\n\n9) Manny: Trade G1 R1 Manny\n\n10) antihero: Trade G2 R2 Antihero\n\n11) Manny: Build R1 Manny\n\n12) antihero: Build R1 Antihero\n\n13) Manny: Trade R1 Y1 Manny\n\n14) antihero: Trade R2 Y2 Antihero\n\n15) Manny: Move Y1 Manny Flux\n\n16) antihero: Build Y2 Antihero\n\n17) Manny: Build Y2 Flux\n\n18) antihero: Discover Y2 Antihero G3 Ice\n\n19) Manny: Discover Y2 Flux B3 Whirlpool\n\n20) antihero: Build Y3 Ice\n\n21) Manny: Build Y3 Flux\n\n22) antihero: Discover Y2 Ice G2 Forest\n\n23) Manny: Move G1 Flux Whirlpool\n\tantihero: sorry.\n\n24) antihero: Build G1 Antihero\n\n25) Manny: Build G2 Whirlpool\n\tManny: No problem\n\n26) antihero: Trade G1 B1 Antihero\n\n27) Manny: Trade G1 R1 Whirlpool\n\tManny: Sorry. My PC broke Sunday.\n\tantihero: ah, that sucks man. I'm sorry.\n\n28) antihero: Sacrifice G1 Sun\nBuild Y3 Forest\n\n29) Manny: Build R2 Whirlpool\n\n30) antihero: Move Y3 Forest Whirlpool\n\n\nHomeworlds Online (SDG# 5083)\nStarted: 2006.11.19, Ended: 2006.12.3\nParticipants: Lexicon (S), Personman (N)\nWinner: Personman\n\n1) Personman: Homeworld B2 Y3 G3\n\n2) Lexicon: Homeworld G1 B3 Y3\n\n3) Personman: Build G1 Personman\n\n4) Lexicon: Build Y1 Lexicon\n\n5) Personman: Build G1 Personman\n\n6) Lexicon: Build Y1 Lexicon\n\tLexicon: I see I rapidly put myself at a disadvantage. Oh well. :)\n\n7) Personman: Discover G1 Personman Y1 Y1a\n\n8) Lexicon: Discover Y1 Lexicon G2 Madcow\n\n9) Personman: Sacrifice G3 Personman\nBuild G2 Y1a\nBuild G2 Y1a\nBuild G3 Personman\n\n10) Lexicon: Trade Y3 G3 Lexicon\n\n11) Personman: Build G3 Personman\n\n12) Lexicon: Build Y2 Madcow\n\n13) Personman: Discover G2 Y1a Y2 Y2a\n\n14) Lexicon: Build Y2 Madcow\n\n15) Personman: Move G2 Y2a Lexicon\n\n16) Lexicon: Trade G3 R3 Lexicon\n\n17) Personman: Build G3 Lexicon\n\n18) Lexicon: Build Y2 Lexicon\n\n19) Personman: Trade G3 R3 Personman\n\n20) Lexicon: Attack G3 Lexicon\n\n21) Personman: Build G3 Lexicon\nCatastrophe Lexicon G\n\n22) Lexicon: Discover Y2 Madcow G1 Birdflu\n\n23) Personman: Sacrifice G3 Personman\nBuild G2 Personman\nBuild G3 Personman\nBuild R1 Personman\n\n24) Lexicon: Build Y3 Birdflu\n\n25) Personman: Move G3 Personman Birdflu\n\n26) Lexicon: Sacrifice Y2 Lexicon\nMove Y3 Birdflu Personman\nMove Y2 Birdflu Personman\n\n27) Personman: Attack Y3 Personman\n\n28) Lexicon: Sacrifice Y2 Madcow\nMove Y1 Madcow Birdflu\nMove Y1 Birdflu Personman\nCatastrophe Personman Y\n\n29) Personman: Trade G2 Y2 Personman\n\n\tLexicon: a less than stellar performance on my part. :)\n\nHomeworlds Online (SDG# 5098)\nStarted: 2006.11.20, Ended: 2006.11.22\nParticipants: unic (S), antihero (N)\nWinner: antihero\n\n1) antihero: Homeworld B1 Y2 G3\n\n2) unic: Homeworld G3 Y3 R3 *\n\n3) antihero: Build G1 Antihero\n\tantihero: woah, interesting opening!\n\n4) unic: Build R1 Unic\n\n5) antihero: Trade G1 R1 Antihero\n\n6) unic: Discover R1 Unic B2 Babylon\n\n7) antihero: Build R1 Antihero\n\n8) unic: Build R2 Unic\n\n9) antihero: Move R1 Antihero Unic\n\n10) unic: Discover R2 Unic Y2 Alexandria\n\n11) antihero: Sacrifice G3 Antihero\nBuild R2 Unic\nBuild R2 Unic\nBuild R3 Unic\nCatastrophe Unic R\n\tantihero: Good game. I think your opening almost decided the game, though.\n\n\nHomeworlds Online (SDG# 4763)\nVariants: "Sinister"\nStarted: 2006.11.23, Ended: 2007.1.9\nParticipants: Lexicon (S), Uglyfoot (W), Kenchi (N), Keith (E)\nWinner: Uglyfoot\n\n1) Kenchi: Homeworld G1 B3 Y3\n\n2) Keith: Homeworld Y2 B1 G3\n\n3) Lexicon: Homeworld G2 B3 Y3\n\tKeith: Hello all. This is my first Sinister game.\n\tKenchi: This is my first game on this site, actually. Hope you don't beat me too soon!\n\tKeith: Don't worry about me. In the Sinister version the goal is to take out the person on your left. You are not on my left, I am on yours.\n\n4) Uglyfoot: Homeworld B2 Y1 G3\n\n5) Kenchi: Build Y1 Kenchi\n\n6) Keith: Build G1 Keith\n\n7) Lexicon: Build Y1 Lexicon\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) Kenchi: Trade Y1 G1 Kenchi\n\n10) Keith: Trade G1 Y1 Keith\n\n11) Lexicon: Trade Y1 G1 Lexicon\n\n12) Uglyfoot: Trade G1 R1 Uglyfoot\n\n13) Kenchi: Build Y1 Kenchi\n\n14) Keith: Build G1 Keith\n\n15) Lexicon: Build Y1 Lexicon\n\n16) Uglyfoot: Build G1 Uglyfoot\n\n17) Kenchi: Build G2 Kenchi\n\n18) Keith: Discover G1 Keith Y3 Daikiro\n\n19) Lexicon: Build G2 Lexicon\n\n20) Uglyfoot: Discover G1 Uglyfoot Y3 Nexus\n\n21) Kenchi: Trade G2 R2 Kenchi\n\n22) Keith: Discover G1 Daikiro Y1 Chisaikiro\n\n23) Lexicon: Trade G1 R1 Lexicon\n\n24) Uglyfoot: Build G1 Uglyfoot\n\n25) Kenchi: Trade Y1 B1 Kenchi\n\n26) Keith: Build G2 Keith\n\n27) Lexicon: Move R1 Lexicon Chisaikiro\n\n28) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Nexus\nBuild G2 Nexus\nBuild G3 Uglyfoot\n\n29) Kenchi: Build G3 Kenchi\n\n30) Keith: Build G3 Chisaikiro\n\tKeith: Kenchi? Still there? You are past time to move almost double the turn limit.\n\n31) Lexicon: Attack G1E Chisaikiro\n\n32) Uglyfoot: Discover G2 Nexus Y2 Onward\n\n33) Kenchi: Trade G1 Y1 Kenchi\n\n34) Keith: Trade G2 R2 Keith\n\n35) Lexicon: Build Y2 Lexicon\n\n36) Uglyfoot: Discover G2 Nexus B2 Themall\n\tKenchi: Yeah, I was really busy last week forgot all about it. :p\n\n37) Keith: Sacrifice R2 Keith\nAttack G1S Chisaikiro\nAttack R1S Chisaikiro\n\n38) Lexicon: Discover Y2 Lexicon G1 Liveoak\n\n39) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Themall\nBuild G3 Uglyfoot\nBuild G3 Nexus\n\tKeith: Kenchi, this time your 11 days over. If you are going to be unavailable, for the holidays or whatever, let us know so we wait with a purpose. I will wait till January 2nd my time.\n\tKeith: 18 days over in two turns. That is too much for me even accounting for the holiday season. I will be the heavy and pull the plug on Kenchi.\n\n40) Keith: Sacrifice G3 Chisaikiro\nBuild G3 Chisaikiro\nBuild R1 Chisaikiro\nBuild R1 Chisaikiro\n\n41) Lexicon: Trade Y1 R1 Lexicon\n\n42) Uglyfoot: Trade G2 Y2 Themall\n\n43) Keith: Move G3 Chisaikiro Themall\n\n44) Lexicon: Build R2 Lexicon\n\tLexicon: I am so dead. D-E-D.\n\n45) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Themall\nBuild G3 Uglyfoot\nBuild R2 Uglyfoot\n\n46) Keith: Sacrifice R1 Chisaikiro\nAttack Y2W Themall\n\tKeith: Because there are two factories out there? Heck, I have no room to crank mine. Uglyfoot on the other hand... \n\tKenchi: I apologize. I've been very swamped and haven't been able to give this the proper attention. I commend Keith for taking me out when he did.\n\n47) Lexicon: Move R2 Lexicon Chisaikiro\n\n48) Uglyfoot: Move R2 Uglyfoot Nexus\n\n49) Keith: Sacrifice Y2 Themall\nMove G3 Themall Kenchi\nDiscover R1 Chisaikiro B3 Temp\n\n50) Lexicon: Build Y1 Liveoak\n\n51) Uglyfoot: Move G2 Onward Kenchi\nCatastrophe Kenchi G\n\n52) Keith: Build G1 Keith\n\n53) Lexicon: Attack G1E Chisaikiro\n\n54) Uglyfoot: Trade G2 Y2 Themall\n\n55) Keith: Trade G3 R3 Keith\n\n56) Lexicon: Attack R1E Chisaikiro\n\tLexicon: Ha! I forgot I had an R2 in chisaikiro. Doh.\n\n57) Uglyfoot: Build Y2 Themall\n\n58) Keith: Move Y1 Keith Temp\n\n59) Lexicon: Build G2 Chisaikiro\n\n60) Uglyfoot: Move G3 Nexus Liveoak\n\n61) Keith: Trade R3 G3 Keith\n\n62) Lexicon: Sacrifice Y2 Liveoak\nDiscover G2 Chisaikiro Y3 Mesquite\nMove R2 Chisaikiro Mesquite\n\n63) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Liveoak\nBuild G3 Themall\nBuild G3 Uglyfoot\n\n64) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild Y2 Temp\nBuild R1 Temp\n\n65) Lexicon: Build G3 Mesquite\n\n66) Uglyfoot: Move G3 Themall Temp\n\n67) Keith: Move Y1 Temp Themall\n\n68) Lexicon: Move G2 Mesquite Liveoak\nCatastrophe Liveoak G\n\n69) Uglyfoot: Sacrifice Y2 Themall\nMove G3 Temp Keith\nMove G1 Nexus Keith\nCatastrophe Keith G\n\n\tLexicon: Phew. Glad that's not hanging over me anymore. \n\tLexicon: I'm frankly surprised you didn't nuke me already.\n\tKeith: I am so out of it in this game I am not sure what you are talking about Lexicon. \n\tKeith: Congratulations Uglyfoot. Sorry Lexicon. I gave the game away.\r\n\r\nI have definately decided that 4 player Homeworlds does not work for me. 80% of the time one of the four players is a no show or bails within a few turns. I have never had a clear sense of how to proceed in the remaining multiplayer game and as such go nowhere.\n\tLexicon: Aha! This game went on pause for so long I forgot it was sinister. Another reason 4 person games are bad. :(\n\tUglyfoot: Thanks. I can see where having one person either slow things down or skew it is bad. For some reason I win a multiplayer (even when it is not delayed) but lose at two player. Time to study this one more.\n\nHomeworlds Online (SDG# 5164)\nVariants: "Unrated"\nStarted: 2006.11.23, Ended: 2007.1.2\nParticipants: Kenchi (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld Y1 B2 G3\n\n2) Kenchi: Homeworld G3 Y1 B3\n\n3) Keith: Build G1 Keith\n\tKeith: Hello Kenchi. Thank you for taking me up on unrated game\n\tKeith: That should read "on my unrated game offer."\n\n4) Kenchi: Build B1 Kenchi\n\tKenchi: Thank you for the offer, I need the practice.\n\n5) Keith: Trade G1 Y1 Keith\n\tKeith: Here is a good initial thing to watch out for, at least in a two player game. I deliberately chose a y1 as part of my home system in the hopes that you would too. What happens to your ability to develop yellow when I grab the last y1? How would it differ if your home system was y2 g1?\n\n6) Kenchi: Discover B1 Kenchi G2 Aldune\n\n7) Keith: Build G1 Keith\n\n8) Kenchi: Build B1 Kenchi\n\n9) Keith: Build Y2 Keith\n\tKenchi: I build y2s? I have no idea how having a y2 star would change anything.\n\tKenchi: Oh, great, I can't build y.\n\n10) Kenchi: Trade B1 R1 Kenchi\n\tKeith: Right. You can't build Y without having a Y ship. You can convert your b3 to a y3 but then you have lost a turn. If you had a y2 star at the start there would have been 2 y1s in the pool and when I grabbed one then you would grab the other.\r\n\r\nI am not going to strangle your game by hoarding the y's. After I build a y2 I will put my y1 back in the pool for you to use.\n\n11) Keith: Trade Y1 R1 Keith\n\n12) Kenchi: Build B1 Kenchi\n\tKeith: One of the rules of thumb is that if your opponent pulls a gun (builds a red) you had better have one too. I will throw that y1 back in the pool for now and pick up a r1.\n\n13) Keith: Discover Y2 Keith G3 Behemoth\n\tKenchi: *Groan*\n\n14) Kenchi: Trade B1 Y1 Kenchi\n\tKeith: Groan?\n\tKenchi: Now we have guns out and I'm still not sure what I'm doing.\n\tKeith: Well how focusing on getting into yellow? Build a b1 or r1 in Aldune or a b1 in Kenchi and the turn after that convert it to a y1. To get the y1 one turn faster undo you move and build a r1 or b1 in Kenchi this turn and convert it next turn.\n\tKenchi: Ok, I'll try that.\n\n15) Keith: Trade G1 B1 Keith\n\n16) Kenchi: Build Y2 Kenchi\n\n17) Keith: Build G1 Keith\n\tKeith: There you go. You have access to all the colors. I see in the 4 player game you have already applied what you have learned here and grabbed a green ship.\n\n18) Kenchi: Move Y1 Kenchi Aldune\n\tKenchi: Yes, right. Guess I am learning after all.\n\n19) Keith: Move Y2 Behemoth Aldune\n\tKeith: Be careful about putting three items of the same color in a system. If I put a fourth I can trigger a catastrophe. You are safe for the moment. The Y2 at Behemoth is two moves away from you homeworld.\n\n20) Kenchi: Sacrifice Y1 Aldune\nMove B1 Aldune Kenchi\n\n21) Keith: Build R1 Keith\n\tKenchi: Thanks, I'll watch out for that.\r\nAnd thanks for the other game's advice.\n\n22) Kenchi: Build R2 Kenchi\n\tKenchi: Hmmm....\n\n23) Keith: Discover R1 Keith Y3 Okikiro\n\tKeith: You should probably undo that move. If I move my y2 from Aldune to Kenchi I can create a yellow catastrophe in Kenchi and you will lose all of your yellow pieces there.\r\n\r\nOne threat you are facing is that if I sacrifice my r1 in Keith then I can attack and take one of your ships in Aldune. You can move the y1 or b1 out of Aldune or even sacrifice the y1 in Aldune and more out the b1 so I can't sacrifice my r1 and take your ship. Of course sacrificing my ship to get a ship means I don't gain a ship but you would lose one.\n\tKenchi: I forgot about sacrificing...\n\n24) Kenchi: Move R2 Kenchi Aldune\n\tKeith: Sacrificing and gaining extra moves and flexibility is the key to strong play.\n\n25) Keith: Sacrifice Y2 Aldune\nMove G1 Keith Okikiro\nMove B1 Keith Okikiro\n\n26) Kenchi: Build Y1 Kenchi\n\n27) Keith: Build R2 Okikiro\n\n28) Kenchi: Build R2 Kenchi\n\tKeith: Here is where the advantage of sacrificing comes in. If I sacrifice my r1 I can attack anywhere on the board as long as I have a ship as big or larger than an enemy ship in a sector. I can take your r2 in Aldune.\n\tKeith: For example:\n\n29) Keith: Build G1 Keith\n\tKeith: However, I will do something else instead.\n\n30) Kenchi: Build R3 Kenchi\n\n31) Keith: Trade R2 Y2 Okikiro\n\n\tKeith: No moves, no polite message to wait. No more game.\n\nHomeworlds Online (SDG# 4800)\nStarted: 2006.11.24, Ended: 2006.12.2\nParticipants: zoltar (S), tcerier (N)\nWinner: zoltar\n\n\tzoltar: Greetingz Earthling!\n\nHomeworlds Online (SDG# 5174)\nStarted: 2006.11.25, Ended: 2006.12.8\nParticipants: Aunguna (S), unic (N)\nWinner: unic\n\n1) unic: Homeworld B3 Y2 G3\n\n\nHomeworlds Online (SDG# 5177)\nStarted: 2006.11.25, Ended: 2007.3.6\nParticipants: Jesse (S), Cerulean (N)\nWinner: Jesse\n\n1) Cerulean: Homeworld B1 Y3 G3\n\t_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\n2) Jesse: Homeworld Y3 B2 G3\n\n3) Cerulean: Build G1 Cerulean\n\n4) Jesse: Build G1 Jesse\n\n5) Cerulean: Trade G1 Y1 Cerulean\n\n6) Jesse: Trade G1 B1 Jesse\n\n7) Cerulean: Build G1 Cerulean\n\n8) Jesse: Build B1 Jesse\n\n9) Cerulean: Discover G1 Cerulean Y2 Wytou\n\n10) Jesse: Discover B1 Jesse G1 Gumby\n\n11) Cerulean: Build Y1 Cerulean\n\n12) Jesse: Build B2 Gumby\n\n13) Cerulean: Trade Y1 R1 Cerulean\n\n14) Jesse: Trade B2 R2 Gumby\n\n15) Cerulean: Build R1 Cerulean\n\n16) Jesse: Build B2 Jesse\n\n17) Cerulean: Build Y1 Cerulean\n\n18) Jesse: Build B2 Gumby\n\n19) Cerulean: Move Y1 Cerulean Wytou\n\n20) Jesse: Trade B2 Y2 Gumby\n\n21) Cerulean: Move R1 Cerulean Wytou\n\n22) Jesse: Trade B2 Y2 Jesse\n\n23) Cerulean: Build R1 Cerulean\n\n24) Jesse: Build B2 Gumby\n\n25) Cerulean: Build R2 Wytou\n\n26) Jesse: Build Y1 Gumby\n\n27) Cerulean: Trade R1 G1 Cerulean\n\n28) Jesse: Build G2 Jesse\n\n29) Cerulean: Build G2 Wytou\n\n30) Jesse: Sacrifice Y2 Jesse\nMove Y1 Gumby Wytou\nMove Y2 Gumby Wytou\nCatastrophe Wytou Y\n\n31) Cerulean: Build R1 Cerulean\n\n32) Jesse: Build B2 Gumby\n\n33) Cerulean: Build Y1 Cerulean\n\n34) Jesse: Build B3 Jesse\n\n35) Cerulean: Discover Y1 Cerulean G2 Jetou\n\n36) Jesse: Trade B3 Y3 Jesse\n\n37) Cerulean: Move R1 Cerulean Jetou\n\n38) Jesse: Trade B2 Y2 Gumby\n\n39) Cerulean: Pass\n\n40) Jesse: Discover B2 Gumby G3 Gojira\n\tJesse: Sure about that?\n\tCerulean: I'd rather not, but my novice eye sees few options that won't end up hosing me.\n\tJesse: Yes, naturally I'm trying to make things difficult for you. Still, it is almost never better to pass than do some little thing that could benefit your position. Maybe moving out your home y1, for instance.\n\n41) Cerulean: Discover R1 Jetou Y1 Wywun\n\tJesse: It doesn't seem right for me to help you too much, it being a tounrament game, but I'll also point out that while things look bad for you, one place where you do have a slight advantage is distribution of reds. Better distribution usually means a production advantage, as well.\n\n42) Jesse: Build G1 Jesse\n\n43) Cerulean: Build Y2 Jetou\n\n44) Jesse: Move G2 Jesse Wywun\n\n45) Cerulean: Move R1 Wywun Jesse\n\n46) Jesse: Sacrifice G3 Jesse\nBuild G2 Wywun\nBuild G3 Jesse\nBuild Y2 Gumby\n\n47) Cerulean: Attack B1S Jesse\n\n48) Jesse: Sacrifice R2 Gumby\nAttack R1 Jesse\nAttack B1 Jesse\n\n49) Cerulean: Build R1 Cerulean\n\n50) Jesse: Sacrifice G3 Jesse\nBuild B2 Gumby\nBuild B3 Jesse\nBuild G3 Jesse\n\n51) Cerulean: Move R1 Cerulean Jetou\n\n52) Jesse: Trade B2 R2 Gumby\n\n53) Cerulean: Build R2 Cerulean\n\n54) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild B2 Gumby\nBuild B3 Gojira\n\n55) Cerulean: Move R1 Cerulean Jetou\n\n56) Jesse: Trade B3 R3 Gojira\n\n57) Cerulean: Sacrifice G3 Cerulean\nBuild G3 Cerulean\nBuild R2 Jetou\nBuild R3 Cerulean\n\n58) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R3 Jesse\nBuild B3 Gumby\n\n59) Cerulean: Discover R1 Jetou B3 Bethrii\n\n60) Jesse: Move B3 Jesse Wywun\n\n61) Cerulean: Move Y2 Jetou Bethrii\n\n62) Jesse: Move Y2 Gumby Gojira\n\n63) Cerulean: Move G1 Cerulean Jetou\n\n64) Jesse: Move G2 Wywun Jetou\n\n65) Cerulean: Sacrifice R1 Jetou\nAttack G2S Jetou\n\n66) Jesse: Move G2 Wywun Jetou\nCatastrophe Jetou G\n\n67) Cerulean: Build G1 Cerulean\n\n68) Jesse: Build Y1 Gumby\n\n69) Cerulean: Discover G1 Cerulean R2 Artou\n\n70) Jesse: Move B3 Wywun Artou\n\n71) Cerulean: Sacrifice G1 Artou\nBuild Y1 Bethrii\n\n72) Jesse: Build R1 Gojira\n\n73) Cerulean: Discover Y1 Bethrii G1 Jiwun\n\n74) Jesse: Move Y3 Jesse Jiwun\n\n75) Cerulean: Move Y1 Jiwun Bethrii\n\n76) Jesse: Move Y2 Gumby Artou\n\n77) Cerulean: Build G2 Cerulean\n\n78) Jesse: Move B1 Gumby Artou\n\n79) Cerulean: Discover R3 Cerulean G2 Jetou\n\n80) Jesse: Discover B3 Gumby G2 Sputum\n\n81) Cerulean: Move Y1 Bethrii Jetou\n\n82) Jesse: Move Y2 Gojira Sputum\n\n83) Cerulean: Move Y1 Cerulean Jetou\n\n84) Jesse: Move B3 Sputum Cerulean\n\n85) Cerulean: Attack B3S Cerulean\n\n86) Jesse: Move B3 Artou Cerulean\n\n87) Cerulean: Attack B3S Cerulean\n\n88) Jesse: Move B1 Artou Cerulean\nCatastrophe Cerulean B\n\n89) Cerulean: Move R3 Jetou Gumby\n\n90) Jesse: Sacrifice Y3 Jiwun\nMove Y2 Artou Cerulean\nMove Y1 Gumby Cerulean\nMove Y2 Sputum Cerulean\nCatastrophe Cerulean Y\n\n\nHomeworlds Online (SDG# 5178)\nStarted: 2006.11.25, Ended: 2006.12.16\nParticipants: jeep (S), Hedge_o_Matic (N)\nWinner: jeep\n\n1) Hedge_o_Matic: Homeworld G3 Y1 B3\n\t_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\n2) jeep: Homeworld B2 G1 Y3\n\n3) Hedge_o_Matic: Build B1 Hedge_o_matic\n\n4) jeep: Build Y1 Jeep\n\tHedge_o_Matic: Darn! I started with the wrong color ship! Grr...\n\n5) Hedge_o_Matic: Trade B3 Y3 Hedge_o_matic\n\n6) jeep: Trade Y1 R1 Jeep\n\n7) Hedge_o_Matic: Build Y1 Hedge_o_matic\n\n8) jeep: Build Y1 Jeep\n\n9) Hedge_o_Matic: Build Y2 Hedge_o_matic\n\n10) jeep: Build R1 Jeep\nCatastrophe Hedge_o_matic Yellow\n\n\tHedge_o_Matic: Geh! Peak Oil did me in. I really suck at this game, online, it seems. Without physical pyramids, I'm totally lost. I'd say "good game", but this can't have been a very satisfying victory for you.\r\nI'll do better next time!\n\tjeep: :( I was actually hoping that there was some sneak attack in there someplace that I didn't see. Thanks for the game.\n\tHedge_o_Matic: I'll play a few more online games, and challenge you when I think I can actually offer a challenge...\n\tjeep: I'm not very good at the game, so it shouldn't take long. ;)\n\nHomeworlds Online (SDG# 5179)\nStarted: 2006.11.25, Ended: 2006.12.16\nParticipants: Aaron (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld B3 G2 Y3\n\t_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\n2) Aaron: Homeworld Y1 B2 G3\n\tLexicon: Good luck!\n\tAaron: And to you!\n\n3) Lexicon: Build Y1 Lexicon\n\n4) Aaron: Build G1 Aaron\n\n5) Lexicon: Trade Y1 G1 Lexicon\n\n6) Aaron: Trade G1 R1 Aaron\n\n7) Lexicon: Build G1 Lexicon\n\n8) Aaron: Build R1 Aaron\n\n9) Lexicon: Discover G1 Lexicon Y1 Gopher\n\n10) Aaron: Discover R1 Aaron Y3 Bananas\n\n11) Lexicon: Build Y1 Lexicon\n\n12) Aaron: Move R1 Bananas Gopher\n\n13) Lexicon: Discover G1 Gopher B3 Ftp\n\tAaron: uhm, how on earth did I miss that shutout?\n\n14) Aaron: Move R1 Gopher Ftp\n\n15) Lexicon: Build G1 Ftp\n\tLexicon: Sneakiness. :)\n\n16) Aaron: Attack G1 Ftp\n\n17) Lexicon: Build G2 Ftp\n\n18) Aaron: Build G2 Ftp\nCatastrophe Ftp Green\n\n19) Lexicon: Build Y1 Lexicon\n\n20) Aaron: Build G1 Aaron\n\tLexicon: OK, we'll try that again...\n\n21) Lexicon: Discover Y1 Lexicon G1 Gopher\n\n22) Aaron: Trade G3 Y3 Aaron\n\n23) Lexicon: Build G2 Lexicon\n\n24) Aaron: Build Y2 Aaron\n\n25) Lexicon: Build Y2 Gopher\n\n26) Aaron: Move Y2 Aaron Ftp\n\n27) Lexicon: Move G2 Lexicon Gopher\n\n28) Aaron: Sacrifice Y2 Ftp\nMove R1 Ftp Gopher\nMove R1 Gopher Lexicon\n\n29) Lexicon: Trade Y3 R3 Lexicon\n\n30) Aaron: Attack G1 Lexicon\n\tAaron: Not many people remember what Gopher was =)\n\tLexicon: It was just dying when I first got on the internet in 1994. It worked, but kinda barely. But kinda like a treasure chest. :)\n\tLexicon: I just don't know what to make of that move.\n\tAaron: gotta keep you on your toes! I never said I was any *good* at this game =D\n\n31) Lexicon: Attack G1 Lexicon\n\n32) Aaron: Attack G1 Lexicon\n\n33) Lexicon: Sacrifice Y2 Gopher\nDiscover G2 Gopher B3 Http\nMove Y1 Gopher Http\n\tLexicon: Uh oh. This may prove difficult. \n\n34) Aaron: Build G1 Lexicon\n\n35) Lexicon: Build Y2 Lexicon\n\n36) Aaron: Build G2 Lexicon\nCatastrophe Lexicon G\n\n37) Lexicon: Sacrifice Y2 Lexicon\nMove Y1 Lexicon Aaron\nMove Y1 Http Aaron\nCatastrophe Aaron Y\n\n38) Aaron: Build G1 Aaron\n\tAaron: oh what the heck...I'm in a destructive mood.\n\n39) Lexicon: Attack R1 Lexicon\n\tLexicon: You just have too many game commitments and want to be risky. :)\n\n40) Aaron: Trade G1 Y1 Aaron\n\tLexicon: BOOM\n\tAaron: all too true\n\tAaron: I neglected to see how I would be the one with no 3's. That pretty much ends the game for me. I'll slog through a little bit.\n\n41) Lexicon: Trade R1 Y1 Lexicon\n\n42) Aaron: Build G1 Aaron\n\tLexicon: I made the same trade once thinking I could pull it off, but it didn't work out so well for me.\n\n43) Lexicon: Build G1 Http\n\n44) Aaron: Discover G1 Aaron Y3 Archie\n\n45) Lexicon: Sacrifice G1 Http\nBuild R1 Lexicon\n\n46) Aaron: Pass\n\n47) Lexicon: Sacrifice Y1 Lexicon\nMove G2 Http Aaron\n\n\tAaron: All over. Thanks for the game Lexicon! Sorry I sucked =D\n\tLexicon: Thanks for the game. :)\n\nHomeworlds Online (SDG# 5180)\nStarted: 2006.11.25, Ended: 2007.2.8\nParticipants: ldd23 (S), bigby (N)\nWinner: bigby\n\n1) bigby: Homeworld G1 B2 Y3\n\t_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\n2) ldd23: Homeworld B3 Y2 G3\n\n3) bigby: Build Y1 Bigby\n\n4) ldd23: Build G1 Ldd23\n\n5) bigby: Trade Y1 G1 Bigby\n\n6) ldd23: Discover G1 Ldd23 B1 Balas\n\n7) bigby: Build G2 Bigby\n\n8) ldd23: Build G2 Ldd23\n\n9) bigby: Discover G2 Bigby Y3 Webster\n\n10) ldd23: Trade G2 R2 Ldd23\n\n11) bigby: Build G2 Webster\n\n12) ldd23: Build G2 Balas\n\n13) bigby: Build G3 Bigby\n\n14) ldd23: Build G3 Ldd23\n\n15) bigby: Trade G1 B1 Bigby\n\tldd23: Sorry I'm going so slow. Trying to deal with the end of the semester and the game keeps slipping my mind.\n\n16) ldd23: Trade G3 R3 Ldd23\n\n17) bigby: Move B1 Bigby Webster\n\tldd23: Woah, sorry about that. I've been without internet access for the past several days. I should be able to be more prompt now.\n\tbigby: No problem. End of the year is always busy.\n\n18) ldd23: Trade G1 Y1 Balas\n\n19) bigby: Trade G2 R2 Webster\n\n20) ldd23: Move R3 Ldd23 Balas\n\n21) bigby: Build G1 Webster\n\n22) ldd23: Build R1 Balas\n\n23) bigby: Discover G2 Webster Y1 Roget\n\n24) ldd23: Move R3 Balas Webster\n\n25) bigby: Sacrifice G2 Roget\nBuild R1 Webster\nBuild R1 Webster\nCatastrophe Webster Red\n\n26) ldd23: Build Y1 Balas\n\tbigby: Wasn't expecting you to attack so soon.\n\tldd23: I figured hey, why not? Nice response\n\n27) bigby: Build B1 Webster\n\tbigby: build r1 webster\n\tbigby: haha\n\tbigby: Doesn't work anyway. Hmmm...\n\n28) ldd23: Build R1 Ldd23\n\n29) bigby: Trade B1 R1 Webster\n\n30) ldd23: Trade R2 B2 Ldd23\n\n31) bigby: Build B1 Webster\n\n32) ldd23: Move B2 Ldd23 Balas\n\n33) bigby: Sacrifice Y3 Bigby\nMove B1 Webster Balas\nMove B1 Webster Balas\nPass\nCatastrophe Balas Blue\n\n34) ldd23: Trade R1 B1 Ldd23\n\tldd23: Oops\n\n35) bigby: Build G1 Bigby\n\n36) ldd23: Build G2 Ldd23\n\n37) bigby: Trade G3 Y3 Bigby\n\n\nHomeworlds Online (SDG# 5181)\nStarted: 2006.11.25, Ended: 2007.1.6\nParticipants: Uglyfoot (S), Personman (N)\nWinner: Personman\n\n1) Personman: Homeworld B2 Y1 G3\n\t_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\n2) Uglyfoot: Homeworld Y3 B2 G3\n\tUglyfoot: greetings and good luck!\r\n\n\n3) Personman: Build G1 Personman\n\tPersonman: To you as well!\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Personman: Trade G1 Y1 Personman\n\n6) Uglyfoot: Discover G1 Uglyfoot R1 Battlestar\n\n7) Personman: Build G1 Personman\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) Personman: Build G2 Personman\n\n10) Uglyfoot: Build G2 Battlestar\n\n11) Personman: Discover G2 Personman Y3 Y3a\n\n12) Uglyfoot: Trade G1 R1 Uglyfoot\n\n13) Personman: Build Y1 Personman\n\n14) Uglyfoot: Build G1 Uglyfoot\n\n15) Personman: Sacrifice G3 Personman\nBuild G2 Y3a\nBuild G3 Y3a\nBuild G3 Personman\n\n16) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild R1 Uglyfoot\nBuild R2 Uglyfoot\n\n17) Personman: Discover Y1 Personman B3 B3a\n\n18) Uglyfoot: Trade R2 Y2 Uglyfoot\n\n19) Personman: Sacrifice G3 Personman\nBuild Y2 Personman\nBuild Y2 B3a\nBuild G3 Personman\n\n20) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove G1 Battlestar Y3a\nMove G2 Battlestar B3a\nCatastrophe Y3a G\n\n21) Personman: Trade Y2 R2 B3a\n\n22) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R2 B3a\n\n23) Personman: Discover Y1 B3a B1 B1a\n\n24) Uglyfoot: Trade R2 Y2 B3a\n\n25) Personman: Trade Y1 R1 Personman\n\n26) Uglyfoot: Discover G1 Uglyfoot B1 Welcomemat\n\n27) Personman: Build R1 Personman\n\n28) Uglyfoot: Build G1 Uglyfoot\n\n29) Personman: Sacrifice G1 Personman\nBuild R2 Personman\n\n30) Uglyfoot: Build G1 Welcomemat\n\n31) Personman: Build G2 Personman\n\n32) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 B3a\n\n33) Personman: Discover G2 Personman Y3 Y3a\n\n34) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n35) Personman: Move G2 Y3a B1a\n\n36) Uglyfoot: Trade G2 R2 B3a\n\n37) Personman: Trade R1 B1 Personman\n\n38) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 B3a\nBuild G2 Welcomemat\nBuild G3 Uglyfoot\n\n39) Personman: Build B2 Personman\n\n40) Uglyfoot: Trade G3 B3 B3a\n\n41) Personman: Sacrifice Y2 Personman\nMove B1 Personman B3a\nMove B2 Personman B3a\nCatastrophe B3a B\n\n42) Uglyfoot: Trade G1 Y1 Welcomemat\n\n43) Personman: Build G1 Personman\n\tUglyfoot: Wow. That sure cleaned up the board...\n\n44) Uglyfoot: Discover G1 Welcomemat Y3 Forward\n\n45) Personman: Sacrifice G3 Personman\nBuild G2 B1a\nBuild G3 Personman\nBuild Y2 B1a\n\n46) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Forward\nBuild Y2 Welcomemat\n\n47) Personman: Move G2 B1a Uglyfoot\n\n48) Uglyfoot: Attack G2 Uglyfoot\n\n49) Personman: Move G2 B1a Uglyfoot\nCatastrophe Uglyfoot G\n\n50) Uglyfoot: Sacrifice Y2 Welcomemat\nMove G1 Forward Personman\nMove G3 Forward Personman\nCatastrophe Personman G\n\n51) Personman: Move Y2 B1a Uglyfoot\n\n52) Uglyfoot: Attack Y2 Uglyfoot\n\tUglyfoot: one good turn deserves another...\n\n53) Personman: Move Y1 B1a Uglyfoot\nCatastrophe Uglyfoot Y\n\n54) Uglyfoot: Build G1 Welcomemat\n\n55) Personman: Trade R1 G1 Personman\n\n56) Uglyfoot: Discover G1 Welcomemat Y3 Nexus\n\n57) Personman: Build R1 Personman\n\n58) Uglyfoot: Move G2 Welcomemat Uglyfoot\n\n59) Personman: Trade R1 B1 Personman\n\n60) Uglyfoot: Build G1 Nexus\n\n61) Personman: Build R1 Personman\n\n62) Uglyfoot: Build G2 Uglyfoot\n\n63) Personman: Move R2 Personman Nexus\n\n64) Uglyfoot: Build G2 Nexus\n\n65) Personman: Attack G2 Nexus\n\n66) Uglyfoot: Build G3 Nexus\n\n67) Personman: Build G3 Personman\nCatastrophe Nexus G\n\n68) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n69) Personman: Move G3 Personman Nexus\n\n70) Uglyfoot: Build G1 Uglyfoot\n\n71) Personman: Build G1 Nexus\n\n72) Uglyfoot: Discover G1 Uglyfoot Y3 Breakout\n\n73) Personman: Move G3 Nexus Uglyfoot\n\n74) Uglyfoot: Build G2 Uglyfoot\n\n75) Personman: Sacrifice R1 Personman\nAttack R1 Uglyfoot\n\n76) Uglyfoot: Build G2 Uglyfoot\nCatastrophe Uglyfoot G\n\n77) Personman: Move R2 Nexus Uglyfoot\n\n\nHomeworlds Online (SDG# 5182)\nStarted: 2006.11.25, Ended: 2007.1.6\nParticipants: Subhan64 (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld Y2 B1 G3\n\t_SYSTEM_: Welcome to round 5 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\r\n\r\nP.S. There will be a clock freeze over the Christmas break: Dec 23 through Jan 1.\n\tLaurie_Menke: Good luck, Subhan! :o)\n\n2) Subhan64: Homeworld B2 Y1 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) Subhan64: Build G1 Subhan64\n\n5) Laurie_Menke: Discover G1 Laurie_menke Y3 Luella\n\n6) Subhan64: Trade G1 R1 Subhan64\n\n7) Laurie_Menke: Build G1 Luella\n\n8) Subhan64: Build R1 Subhan64\n\n9) Laurie_Menke: Move G1 Luella Laurie_menke\n\n10) Subhan64: Move R1 Subhan64 Luella\n\n11) Laurie_Menke: Discover G1 Luella Y2 Sharon\n\n12) Subhan64: Move R1 Luella Sharon\n\n13) Laurie_Menke: Discover G1 Sharon R3 Mars\n\n14) Subhan64: Build G1 Subhan64\n\n15) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n16) Subhan64: Discover G1 Subhan64 Y3 Omicronpersei8\n\n17) Laurie_Menke: Build G1 Mars\n\n18) Subhan64: Build G2 Subhan64\n\n19) Laurie_Menke: Build G2 Laurie_menke\n\n20) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Subhan64\nBuild R1 Subhan64\nBuild R2 Subhan64\n\n21) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n22) Subhan64: Move G2 Subhan64 Omicronpersei8\n\n23) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove G3 Laurie_menke Mars\nMove G3 Mars Subhan64\n\n24) Subhan64: Trade G2 Y2 Subhan64\n\n25) Laurie_Menke: Build G2 Subhan64\n\n26) Subhan64: Sacrifice Y2 Subhan64\nMove G2 Omicronpersei8 Subhan64\nMove G1 Omicronpersei8 Subhan64\nCatastrophe Subhan64 Green\n\n27) Laurie_Menke: Trade B1 G1 Laurie_menke\n\n28) Subhan64: Move R2 Subhan64 Mars\n\tSubhan64: I think that will be the game for me\n\tSubhan64: or maybe not, I'm not actually sure on second thought\n\n29) Laurie_Menke: Build G2 Laurie_menke\n\tLaurie_Menke: I can't remember what the playing field looked like before, but I do remember that I expected you to do what you did the first time, and wasn't worried. So I think you were right to change your move.\n\tLaurie_Menke: I'm now officially worried. ;o)\n\n30) Subhan64: Attack G1 Mars\n\n31) Laurie_Menke: Trade G2 R2 Laurie_menke\n\tLaurie_Menke: OK, you've got me now. Would you rather play it out or accept my resignation?\n\n32) Subhan64: Trade R1 Y1 Subhan64\n\tLaurie_Menke: Well, actually...I may have a trick or two left up my sleeve. Do you mind if we play a little longer?\n\tSubhan64: no, certainly let's play it out! I'm not convinced it's a lost cause for you either!\n\tSubhan64: move r2 mars laurie_menke\n\n33) Laurie_Menke: Attack G1 Mars\n\n34) Subhan64: Attack G1 Mars\n\n35) Laurie_Menke: Build G2 Laurie_menke\n\n36) Subhan64: Attack G1 Mars\n\tLaurie_Menke: Just curious...do you know why the timer is frozen?\n\tSubhan64: not a clue\r\n\n\tLaurie_Menke: Oh...I just visited the Forums...Aaron froze all the tournament clocks for the holidays.\n\tSubhan64: Oh, OK\n\n37) Laurie_Menke: Discover G1 Laurie_menke Y3 Luella\n\n38) Subhan64: Move Y1 Subhan64 Mars\n\n39) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild G2 Luella\nBuild G2 Luella\n\n40) Subhan64: Move R2 Mars Sharon\n\tSubhan64: move y1 subhan64 mars\n\n41) Laurie_Menke: Move G2 Luella Laurie_menke\n\n42) Subhan64: Move R2 Sharon Luella\n\n43) Laurie_Menke: Sacrifice G2 Luella\nBuild R1 Laurie_menke\nBuild G2 Laurie_menke\n\n44) Subhan64: Attack G1 Luella\n\n45) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n46) Subhan64: Sacrifice G1 Mars\nBuild R2 Subhan64\n\n47) Laurie_Menke: Discover R1 Laurie_menke Y3 Old\n\n48) Subhan64: Move R2 Subhan64 Mars\n\tSubhan64: D'oh! That looks like it for me now\n\n49) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove R2 Laurie_menke Old\nMove R2 Old Subhan64\n\tSubhan64: OK, maybe I should stop saying that! ;-)\n\tLaurie_Menke: Darn! I thought I had you, too. :o/\n\n50) Subhan64: Sacrifice G1 Mars\nBuild R3 Subhan64\n\n51) Laurie_Menke: Move R1 Old Subhan64\nCatastrophe Subhan64 Red\n\n\tLaurie_Menke: Wow, that one was a nailbiter! Thanks for the fun, Subhan! :o)\n\tSubhan64: D'oh! Thought that move was going to save me, forgot about a couple of details though!\r\nGood game!\r\n\n\nHomeworlds Online (SDG# 5284)\nStarted: 2006.12.1, Ended: 2007.1.23\nParticipants: antihero (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B1 G3\n\n2) antihero: Homeworld B2 G1 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) antihero: Build Y1 Antihero\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) antihero: Trade Y1 G1 Antihero\n\n7) zoltar: Build Y1 Zoltar\n\n8) antihero: Discover G1 Antihero Y3 Bigyella\n\n9) zoltar: Discover Y1 Zoltar G2 Banana\n\n10) antihero: Build Y1 Antihero\n\n11) zoltar: Build Y2 Zoltar\n\n12) antihero: Trade Y1 R1 Antihero\n\n13) zoltar: Trade Y1 R1 Zoltar\n\n14) antihero: Build Y1 Antihero\n\n15) zoltar: Move R1 Zoltar Banana\n\n16) antihero: Discover Y1 Antihero G3 Biggreen\n\n17) zoltar: Build G1 Zoltar\n\n18) antihero: Build G2 Bigyella\n\n19) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\n\n20) antihero: Build Y2 Antihero\n\n21) zoltar: Discover G1 Zoltar B2 Blueberry\n\n22) antihero: Move G2 Bigyella Blueberry\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\nBuild Y2 Banana\n\n24) antihero: Move G1 Bigyella Blueberry\nCatastrophe Blueberry Green\n\n25) zoltar: Sacrifice G2 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Banana\n\n26) antihero: Move Y1 Biggreen Banana\nCatastrophe Banana Yellow\n\n27) zoltar: Move Y3 Zoltar Banana\n\tzoltar: Hey, you keep blowin' up my stuff! :)\n\n28) antihero: Trade Y2 G2 Antihero\n\tantihero: well, you're coming out of it all alright. :)\n\n29) zoltar: Build G1 Zoltar\n\n30) antihero: Build Y1 Antihero\n\n31) zoltar: Build G1 Zoltar\n\tzoltar: Yes, I ended up with an advanced outpost for free!\n\n32) antihero: Discover G2 Antihero Y3 Oldyeller\n\n33) zoltar: Discover G1 Zoltar Y2 New_caprica\n\n34) antihero: Build R1 Antihero\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild G2 New_caprica\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n36) antihero: Build G3 Oldyeller\n\n37) zoltar: Sacrifice Y2 Zoltar\nMove G2 New_caprica Oldyeller\nMove G1 New_caprica Oldyeller\nCatastrophe Oldyeller G\n\n38) antihero: Trade Y1 G1 Antihero\n\tantihero: I am in sooo much trouble.\n\n39) zoltar: Discover G3 Zoltar B2 Blueberry\n\tzoltar: Yes, I think so, as you force me to sacrifice, leaving me with a distinct edge in firepower.\n\n40) antihero: Build G2 Antihero\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\n\n\tantihero: gah this is silly. Good game, sir. You outplayed me from the very beginning.\n\nHomeworlds Online (SDG# 5300)\nStarted: 2006.12.2, Ended: 2006.12.3\nParticipants: Keith (S), DavidF (N)\nWinner: Keith\n\n\tKeith: Hello DavidF. Have you played Homeworlds before?\n\nHomeworlds Online (SDG# 4726)\nStarted: 2006.12.7, Ended: 2007.1.11\nParticipants: Lexicon (S), DavidF (W), tcerier (N), Uglyfoot (E)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B3 Y1 G3\n\tDavidF: Hello All - I've played Homeworlds a number of times in the materail world, but never in Cyberspace before, so please be frogiving in my awkwardness with some of the movement of pieces. Also, in the material game a key element to the fun is the desgination of players being either "good" or "evil". I'm not seeing anything like that here. Am I missing something?\r\n\r\n\n\tLexicon: Wow, I didn't even notice this game had started. Wonder where tcerier is. Anyway, DavidF, this variant is Last Man Standing, so you have to kill everyone else. There is also the sinister variant, where you have to kill the player to your left.\n\tLexicon: Anyway, tcerier isn't around anymore, so I'm just going to resign him.\n\n2) Lexicon: Homeworld B2 Y3 G3\n\n3) DavidF: Homeworld G3 B1 Y3\n\n4) Uglyfoot: Build G1 Uglyfoot\n\tDavidF: Can someone give me lesson on how to submit orders? I can't seem to find any better reference than what's on this page. I've tried a number of variations but keep getting "nothing left in stash" messages. Here's what i most recently typed: Homeworld (G3, B1, Y3)\n\tLexicon: no parentheses or commas. every command on a separate line. so your first command would be\r\nhomeworld g3 b1 y3\n\tLexicon: And actually, you just have to type the first letter of each command, so "h g3 b1 y3" would work. A lot of stuff about homeworlds here is discussed in its wiki, which is linked at the top of the page. \n\n5) Lexicon: Build G1 Lexicon\n\tDavidF: Thanx\n\n6) DavidF: Build Y1 Davidf\n\n7) Uglyfoot: Discover G1 Uglyfoot B2 Welcomemat\n\n8) Lexicon: Trade G1 R1 Lexicon\n\n9) DavidF: Discover Y1 Davidf G2 Yorn\n\n10) Uglyfoot: Build G1 Uglyfoot\n\tDavidF: So how do i create a new systme called Yorn? I've tried different perambulations of "discover y1 DavidF g1 yorn" and i keep being refused? Help?\n\tLexicon: You can't move to a size 1 system, only a size 2. So try "d y1 DavidF g1 yorn"\n\tLexicon: ack. I mean, 'd y1 DavidF g2 yorn"\n\tDavidF: I tried that. I geta "these systmes aren't connected message." I'm confused; I'm trying to create a new system.\n\tLexicon: Hm. if "discover y1 DavidF g2 yorn" doesn't work, I don't know what to tell you. Your system is definitely connected to a g2, but not a g1.\n\n11) Lexicon: Build G1 Lexicon\n\tDavidF: thanx again, Lexicon. i think i'm beginning to understand, although i've never played this way. i've always played with the direct capacity to send a ship and create whatever size system, without taking into consideration the size i'm sending from. an interesting difference in rules. \n\tLexicon: If the last time you played was with the older version rules, then you have a lot to learn. I did the same thing; it was quite confusing for a while.\n\n12) DavidF: Build Y1 Davidf\n\n13) Uglyfoot: Trade G1 R1 Uglyfoot\n\n14) Lexicon: Discover G1 Lexicon Y1 Hydrogen\n\tDavidF: UglyFoot and Lexicon - i'll be out of town 5-6 days and at house with no computer. There's a chance i can get to mysister's computer but not definite. Might be a slow go as well until i'm back.\n\tUglyfoot: no problem. I'm on vacation but with ready access to computers. I'm a member of a really geeky family... :>\n\n15) DavidF: Trade Y3 R3 Davidf\n\tLexicon: My family's geekiness did not extend all the way to grandma's house. Sorry to be late myself. :)\n\n16) Uglyfoot: Build G1 Uglyfoot\n\n17) Lexicon: Build G1 Lexicon\n\n18) DavidF: Build Y1 Davidf\n\n19) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n20) Lexicon: Trade G1 B1 Lexicon\n\n21) DavidF: Trade Y1 R1 Davidf\n\n22) Uglyfoot: Build Y1 Uglyfoot\n\n23) Lexicon: Move B1 Lexicon Hydrogen\n\n24) DavidF: Build Y2 Davidf\n\n25) Uglyfoot: Move Y1 Uglyfoot Welcomemat\n\n26) Lexicon: Build B1 Hydrogen\n\n27) DavidF: Move R1 Davidf Welcomemat\n\n28) Uglyfoot: Build Y2 Welcomemat\n\tLexicon: DavidF: Unless I'm mistaken, you could have nuked Uglyfoot last round by putting a yellow in his system. Very sporting of you not to. :)\n\n29) Lexicon: Build G1 Hydrogen\n\n30) DavidF: Move R3 Davidf Welcomemat\n\n31) Uglyfoot: Sacrifice Y2 Welcomemat\nMove G1 Welcomemat Davidf\nMove Y1 Welcomemat Davidf\n\n32) Lexicon: Discover G1 Hydrogen Y2 Helium\n\tDavidF: Lexicon, oh yes, i see what you mean. Can't quite take credit for being sporting. Now i'm a bit overextended but it promises to be fun anyway.\n\n33) DavidF: Sacrifice Y2 Davidf\nMove R1 Welcomemat Davidf\nMove R3 Welcomemat Uglyfoot\n\tUglyfoot: ok. we'll commence with the invasion!\n\n34) Uglyfoot: Attack R3W Uglyfoot\n\n35) Lexicon: Move B1 Hydrogen Helium\n\n36) DavidF: Attack Y1E Davidf\n\tDavidF: Lexicon, I probably should have asked for a rules clarification before my last move, but i was needing to get some stuff done around here, work, etc. So, does a little red ship in Uglyfoot's system enable Uglyfoot to attack my R3 with his Y3? If so, that would be a good move on his/her part and not good news for you either. If so, sorry and good luck\n\tLexicon: That is correct. He will own your R3. Feel free to undo your move and try something else, as far as I'm concerned.\n\tUglyfoot: DavidF, Please go ahead and undo that. We can continue from there...\n\tDavidF: UglyFoot, that's very generous of you. It would make the game more interesting, particularly for me, but it's a moot point now, it seems. I have lost the 'undo' move function. I tried to call an administrator, to have it reinstated but the operator has timed out. Uglyfoot and lexicon, i suggest we go ahead, and i'll chalk this up as an aflo (another frigging learning opportunity). \n\tDavidF: Okay, I clearly don't know what I'm doing.An administrator e-mailed back, and so I'll send this out, with another Administrator call. \n\tDavidF: Administrator - we are all agreed, Lexicon, Uglyfoot and myself, for me, DavidF, to undo my last move. Could you reinstate my "Undo Last Move" button?\n\tDavidF: Thanks for the offer, Uglyfoot. I cannot connect with the administator. If someone else is willing and wanting me to undo my last move, please feel free to contact the Adminsitrator. I'm okay with proceeding. \n\n37) Uglyfoot: Sacrifice R3 Uglyfoot\nAttack R1W Davidf\nAttack Y1W Davidf\nAttack Y1W Davidf\n\n38) Lexicon: Build G1 Hydrogen\n\tDavidF: Do either of you know a better command for attacking the y1 ship in my system. a y1 DavidF doesn't work and i suspect the presence of two y1 ships in the sytem is complicating things.\n\tLexicon: read the little text below the command list. a y1e davidf\n\n39) Uglyfoot: Build G2 Uglyfoot\n\tDavidF: thanx\n\n40) Lexicon: Build G2 Helium\n\n41) Uglyfoot: Move G1 Davidf Helium\n\n42) Lexicon: Move G1 Helium Uglyfoot\n\n43) Uglyfoot: Trade G2 R2 Uglyfoot\n\n44) Lexicon: Build G2 Uglyfoot\n\n45) Uglyfoot: Build G2 Helium\n\n46) Lexicon: Trade G1 B1 Uglyfoot\n\n47) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack G2S Uglyfoot\nAttack G2S Helium\n\n48) Lexicon: Sacrifice G1 Hydrogen\nBuild B1 Uglyfoot\n\n49) Uglyfoot: Move G2 Helium Hydrogen\n\n50) Lexicon: Sacrifice G1 Hydrogen\nBuild B2 Uglyfoot\n\n51) Uglyfoot: Build Y2 Davidf\n\n52) Lexicon: Trade B1 G1 Uglyfoot\n\n53) Uglyfoot: Attack G1S Uglyfoot\n\n54) Lexicon: Build G1 Lexicon\n\n55) Uglyfoot: Move G1 Helium Hydrogen\n\n56) Lexicon: Sacrifice R1 Lexicon\nAttack R1E Uglyfoot\n\n57) Uglyfoot: Sacrifice R1 Davidf\nAttack R1S Uglyfoot\n\n58) Lexicon: Trade G3 R3 Lexicon\n\n59) Uglyfoot: Trade Y2 R2 Davidf\n\n60) Lexicon: Move B1 Hydrogen Helium\n\n61) Uglyfoot: Sacrifice R2 Davidf\nAttack B1S Helium\nAttack B1S Helium\n\n62) Lexicon: Sacrifice R3 Lexicon\nAttack R1E Uglyfoot\nAttack G2E Uglyfoot\nAttack G1E Uglyfoot\n\n63) Uglyfoot: Move G2 Hydrogen Lexicon\n\n64) Lexicon: Trade B2 Y2 Uglyfoot\n\n65) Uglyfoot: Trade Y3 R3 Uglyfoot\n\n66) Lexicon: Attack G1E Uglyfoot\n\n67) Uglyfoot: Attack R1S Uglyfoot\n\n68) Lexicon: Build G1 Uglyfoot\nCatastrophe Uglyfoot G\n\n69) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack G1S Lexicon\n\n\tLexicon: OK this has gone on too long. :)\n\tUglyfoot: Let me solve that. Good game.\n\nHomeworlds Online (SDG# 5422)\nStarted: 2006.12.10, Ended: 2007.5.19\nParticipants: apollotiger (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G2 Y1 B3\n\n2) apollotiger: Homeworld G1 B2 Y3\n\n3) MatrixFrog: Build B1 Matrixfrog\n\n4) apollotiger: Build Y1 Apollotiger\n\n5) MatrixFrog: Build B1 Matrixfrog\n\n6) apollotiger: Discover Y3 Apollotiger G3 Quercorium\n\tMatrixFrog: The conventional wisdom is that you don't want your homeworld to be size-identical to your opponent's, because it effectively puts you closer together. But the disadvantage is symmetrical, so it works out.\n\n7) MatrixFrog: Trade B1 G1 Matrixfrog\n\n8) apollotiger: Build Y1 Apollotiger\n\n9) MatrixFrog: Build B1 Matrixfrog\n\tMatrixFrog: it's generally considered a bad idea to leave your homeworld without a large ship, especially if you can't build a new large ship in the near future\n\n10) apollotiger: Trade Y1 R1 Apollotiger\n\n11) MatrixFrog: Build G1 Matrixfrog\n\tMatrixFrog: Already? Are you expecting to be invaded?\n\n12) apollotiger: Trade R1 B1 Apollotiger\n\tapollotiger: I could. I want to have ships of different types.\n\n13) MatrixFrog: Trade B1 Y1 Matrixfrog\n\n14) apollotiger: Build Y2 Apollotiger\n\n15) MatrixFrog: Discover B1 Matrixfrog Y3 Alpha\n\n16) apollotiger: Trade Y2 G2 Apollotiger\n\tMatrixFrog: you just traded y1->r1->b1...\n\n17) MatrixFrog: Trade G1 R1 Matrixfrog\n\n18) apollotiger: Move B1 Apollotiger Alpha\n\n19) MatrixFrog: Move B1 Alpha Apollotiger\n\n20) apollotiger: Move B1 Alpha Matrixfrog\n\n21) MatrixFrog: Attack B1 Matrixfrog\n\n22) apollotiger: Move G2 Apollotiger Quercorium\n\n23) MatrixFrog: Build B1 Apollotiger\n\tMatrixFrog: What's the problem?\n\n24) apollotiger: Trade Y1 R1 Apollotiger\n\n25) MatrixFrog: Build B2 Apollotiger\n\n26) apollotiger: Attack B1 Apollotiger\n\n27) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R1 Apollotiger\n\n28) apollotiger: Move Y3 Quercorium Apollotiger\n\n29) MatrixFrog: Build B2 Apollotiger\n\n30) apollotiger: Move B1 Apollotiger Quercorium\n\n31) MatrixFrog: Build B3 Apollotiger\n\n\tMatrixFrog: I think you have a really interesting choice to make here.\n\nHomeworlds Online (SDG# 5390)\nStarted: 2006.12.15, Ended: 2007.1.2\nParticipants: Keith (S), papa_bear (N)\nWinner: Keith\n\n1) papa_bear: Homeworld G2 B1 Y3\n\tpapa_bear: Hi.\n\n2) Keith: Homeworld B1 Y3 G3\n\tKeith: Hello papa_bear.\n\n3) papa_bear: Build Y1 Papa_bear\n\tpapa_bear: Have you played this before? I know I could check your profile, but it would take so long to load :)\n\n4) Keith: Build G1 Keith\n\tKeith: The page load times can be a bear. This is my 23rd game. My track record is 15-7.\n\n5) papa_bear: Trade Y1 G1 Papa_bear\n\tpapa_bear: Intimidating. I'm watching and learning...\n\n6) Keith: Trade G1 B1 Keith\n\tKeith: Have you played before? We can make it an unrated game if you want.\n\n7) papa_bear: Build Y1 Papa_bear\n\tpapa_bear: build y1 papa_bear\n\tpapa_bear: Boy that was stupid.\n\n8) Keith: Build G1 Keith\n\tpapa_bear: It is my first time, but I am happy to leave it rated. I came to SDG to play Castle Danger. That's the only game in which my rating matters much to me. I will try my best in other games, though, for the sport of it if not for the rating. I think I figured out why your first ship was a g3. Are you going to sacrifice it relatively early to get ahead on production?\n\tKeith: I will leave the game a rated one then. I came to SDG to play Cannon and discovered Homeworlds which has become my strong second interest. Matt is currently schooling me in the ways of Castle Danger.\r\n\r\nYou are sort of on the right track with the g3. I will eventually sacrifice it for growth but not now for two reasons. 1) it would leave me without a 3-pointer to defend my homeworld and 2) If I did it now it is a one shot deal. I want to be able to recruit a g3 when I sacrifice it so I can repeat the process.\r\n\r\nI started off this game playing hardball. For example I just made it more difficult for you to develop blue.\r\n\n\n9) papa_bear: Build Y1 Papa_bear\n\tpapa_bear: I think I can just begin to see the kind of complexities involved in playing this game well. I have not been thinking seriously about the limitations on the global reserve stash. I have little notion what to do next, but I will think of something...\n\n10) Keith: Trade G1 Y1 Keith\n\tKeith: Resource management (both acquisition and distribution) is a substantial part of the game. The resource management aspect is part of why I tried Castle Danger. \r\n\r\nWhat to do in Homeworlds after you get started comes up often enough that there is an entry on it in the wiki.\n\n11) papa_bear: Build G1 Papa_bear\n\tpapa_bear: build g1 papa_bear\n\tpapa_bear: Oops. Second time for that idiocy. By the way, did you enjoy Castle Danger?\n\n12) Keith: Build G1 Keith\n\tKeith: I am enjoying Castle Danger. I like the piece entry decision each turn and the space management.\n\n13) papa_bear: Trade Y1 R1 Papa_bear\n\n14) Keith: Build B2 Keith\n\tpapa_bear: I am very happy if you like Castle Danger. I hope it will catch on. Personally, I think it's a great game.\n\n15) papa_bear: Build R1 Papa_bear\n\tpapa_bear: Oh... I thought all the 1-point pieces had to go before we could build 2-point ships.\n\n16) Keith: Trade B2 R2 Keith\n\tKeith: All the 1-point pieces of that color. To put it another way you build the smallest available piece of the color being built.\n\tKeith: A green 2-pointer is available to you but your green piece density in your homeworld does not allow you to safely build one there.\n\n17) papa_bear: Build R1 Papa_bear\n\n18) Keith: Discover G1 Keith R2 Mustafar\n\n19) papa_bear: Discover R1 Papa_bear B3 Mahalalel\n\n20) Keith: Build G2 Keith\n\tKeith: Mahalalel = Genesis 5:12-17\n\n21) papa_bear: Move G1 Papa_bear Mahalalel\n\tpapa_bear: Do you celebrate Christmas because you celebrate Christ?\n\n22) Keith: Sacrifice G3 Keith\nBuild G2 Mustafar\nBuild G3 Keith\nBuild B2 Keith\n\tKeith: Yes. Though I am no longer the Bible thumping no smoking, no drinking, no dancing, sin and damnation hard core Southern Baptist I was raised to be.\n\n23) papa_bear: Build G3 Mahalalel\n\tKeith: I am now operating what is known as "the factory."\n\tpapa_bear: Now, if I were a hardcore Southern Baptist I might feel insulted. I'm not, though. But to compare to your checklist: I'm cool with moderate drinking. I can't justify even moderate smoking, as hard as I've tried. I used to be a smoker, and even after I came to the conclusion that there was no justification for it, it took me a long time to quit. I don't dance, but that's not an ethical thing. Well, maybe it is: it would be wrong to subject people to seeing me try to dance :). I take sin and damnation very seriously, but I think that doing nothing but yelling at people about their sins is itself a sinful thing to do, as well as counterproductive and unbiblical. I'm not positive what Bible-thumping is, but I'm probably guilty of that one. I derive all my doctrine, as much as possible, from the Bible rather than from other sources. That might make me a thumper.\r\nBy naming that new system "Mahalalel" I was putting up a flag. I'm glad to know that we celebrate Christmas for the same reason.\r\nWill you be sacrificing those g2's soon? I need to think a bit before I proceed with my next turn.\n\tKeith: Moderate drinking is okay. I never get around to it much because I don't like beer.\r\n\r\nSmoking is flat out. I have seen what it does to lung tissue, the amount of money people spend in a year on smoking instead of their families and what it does to work productivity (smoke breaks, working one handed). \r\n\r\nDancing. I have tried it. Never liked it. Even with more than moderate drink in me.\r\n\r\nI grew up with hell fire and damnation sermons. One example of my Bible thumping was going out to Mardi Gras parades and trying to convert parade goers.\r\n\r\n\n\tKeith: I am not likely to sacrifice a g2 soon. I need to keep a second green with the g3 so I can sacrifice and re-build the g3.\n\tpapa_bear: Wow. That is hardcore. If Bible-thumping involves thumping others with the Bible, then I'm not in that camp. I am a hundred percent with you on smoking. I hate to think how much money I wasted on cigarrettes. Every dollar could have gone to my kids instead, or to any of the millions of people around the world with insufficient food, medical care, and other necessities. I have a confession: I like whiskey. I drink only rarely and never much, but I feel I have to be very careful with a strong drink. It would be easy to consume more than I intend.\r\nAbout the sacrificing ships, I see now. I had forgotten that new g3 was destined for sacrifice.\n\n24) Keith: Move B2 Keith Mustafar\n\tKeith: We are on the same page when it comes to whiskey. I do drink sake. I usually get a bottle on my birthday and for Christmas.\n\tKeith: I have worked myself into a bit of a corner. If I build the g3 in Keith then you can sacrifice your y3, move a g1 into Keith and cause a catastrophe destroying all my green in Keith. More importantly it would leave me without a 3-pointer. If I don't grab the g3 you will and you will have three 3-pointers to my one. If I build the g3 in Mustafar you can sacrifice a y1 and cause a green catastrophe.\n\n25) papa_bear: Sacrifice G3 Mahalalel\nBuild G3 Mahalalel\nBuild Y1 Papa_bear\nBuild R2 Papa_bear\n\tpapa_bear: Well, giving your opponent advice may not be part of a healthy strategy ;)\n\n26) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild R3 Keith\nBuild Y2 Keith\n\tKeith: True. Can't really describe it as wise. I am more interested in your learning curve than my rating points.\n\n27) papa_bear: Move Y1 Papa_bear Mahalalel\n\tpapa_bear: That's very much appreciated, Keith. However, in the unlikely event that this game terminates in my favor, I would insist it do so unrated. As when Solomon received both wisdom and riches, so you would enjoy both the opportunity to help me and also that for which you had not asked: a safe rating :)\n\tKeith: My concern is that this game is has run on the dull side for you. There is a certain common experience of "Okay I am building a bunch of ships now what" though it is usually punctuated by more threats and less buildup than the present case.\n\tKeith: Your offer if the game goes in your favor is appreciated. I will endeavor to not have the issue come up.\n\n28) Keith: Move Y1 Keith Mustafar\n\tpapa_bear: I expect nothing less from you :)\r\nI hope this turn was safe enough. Sacrificing either my g3 or my y3 was tempting, but in either case I think I would have been falling into a trap. Let me know if I'm thinking along the right lines. If I sacrifice y3 and move a y1 into Keith and trigger the catastrophe, your r3 can then, thanks to the collapse of your y3 star, enter Mahalalel and reorient my g3. If I sacrifice my g3, any combination of 3 ships I might build would necessarily leave one or the other of my systems vulnerable to catastrophe.\r\nThere's no danger of boredom here. I can feel the tension in the game. Non-chessplayers sometimes think it involves tremendous patience to play chess, but when you're really playing it no patience is required. I think it's the same here. I'm new to the game, but -- thanks in large part to a kind and instructive opponent -- I am gaining some sense of the thrusts and parries which can occur under the surface of a "buildup" game of Homeworlds.\n\tKeith: It is best you did not make either sacrifice. You are right about the g3 sacrifice. I am going to go ahead and go into a lengthy explanation, even thought this is a rated game since the move is past. I will leave the explanation up until I make my move tomorrow to make it easier to track with the current board position.\r\n\r\nThe y3 is more complicated. It is good that your are keeping in mind that distances between systems would change. However, if I followed a yellow homeworld catastrophe by moving my r3 into Mahalalel you would be able to reorient my r3. Your r1 in Mahalalel gives any of your ships in that system the power to attack just as a yellow ship gives any friendly local ship the power to move, in this case your g3. \r\n\r\nThe y3 sacrifice would be expensive for you. You would lose a y3 and y1, I would lose a y2, y1, and a system. I follow up by trading for a y2 in Mustafar. If you retreat your g3 I sacrifice my y2, move a g1 into your homeworld and green catastrophe. You have are down one system, your remaining system is blue and I have a head start on blue ships and you have no 3-pointers while I have two. The end is near. If you don't move your g3 back then I sacrifice my y2 and move in one of my 3-pointers in. If I move in the g3 you have to destroy it or I will sacrifice my r2 next attack your r2 and g1 and the end is near. Your only defense would be to build a green and blow up your own ships and system along with my g3. Alternatively I move the r3 in and trigger a red catastrophe and your home system is down to only a g1 ship. Your in a lot more trouble than your original yellow catastrophe put me in.\r\n\n\tpapa_bear: Immediately after I made the move and sent the message, I realized that you couldn't move the r3 and attack the g3 on the same turn. But I wasn't sure whether that meant the y3 sacrifice was a good idea. I was pretty sure you wouldn't have allowed it if it was. Thanks for your explanation.\n\n29) papa_bear: Trade R2 B2 Papa_bear\n\n30) Keith: Move G2 Mustafar Mahalalel\n\n31) papa_bear: Sacrifice Y1 Mahalalel\nMove G3 Mahalalel Mustafar\n\tpapa_bear: Am I correct in thinking that I'm in trouble here?\n\tpapa_bear: Don't answer that, actually.\n\n32) Keith: Sacrifice R2 Keith\nAttack R1 Mahalalel\nAttack G1 Mahalalel\n\tpapa_bear: Most unsatisfactory, but I couldn't see much else.\n\tKeith: You were going to suffer some loss. Though I am not sure why you moved the g1 and b2 into Mahalalel. I can attack them by sacrificing my r3. Here were a few possibile alternatives.\r\n\r\nmove g3 mahalalel mustafar - you threaten to attack my ships in mustafar while I attack your ships in Mahalalel. \r\n\r\nSacrifice your g1 in Mahalalel and pass on the build leaving only two greens in Mahalalel and I can't cause a green catastrophe next turn.\r\n\r\nSacrifice the y1 in Mahalalel and discover a new system with the g3. The g3 is safe and only two 1-point ships of yours remain for me to attack.\r\n\r\nSacrifice the g3, build two green ships in Mahalalel and either a y2 or r2. Cause a green catastrophe in Mahalalel.\n\tKeith: Feel free to undo and give any of these a try if you want. The g1 sacrifice below also puts the g1 back in the stash and prevents my building a g3 in Mustafar.\n\tpapa_bear: Ah. I forgot that a sacrifice allows you to perform activities in any system you occupy. I also had not considered sacrificing one of my ships and passing on the available activity. I did consider discovering with my g3 or moving it to Mustafar, but I felt uncomfortable having to put it in a 2-pt system where it is closer to your Homeworld than to mine. Would discovering with the g3 require the sacrifice of the y1? Can't it move anyway since I have access to yellow technology in that system? I will undo, but I'm not sure which course I'll choose. Preventing you from building a g3 sounds good, but so does moving g3 to Mustafar and attacking. I'll think about it some more while I await your next message.\n\tKeith: You don't really need to sacrifice the y1 to move the g3 out. It is just a way of denying me the y1. I could catastrophe the g3 if it ends up at Mustafar. I could not build two more green ships there to cause the catastrophe because there is only one left in the stash. To do so I would need to sacrfice a y2, a g2, another g2 and lose the g1 already there. Expensive. \n\tpapa_bear: Cool. That y1 sacrifice is a nifty finesse. But I'm still not sure which course I want to choose. I'll probably move tomorrow morning (GMT+8).\n\tKeith: No rush. I am plenty busy. You see there is this other finished game where I am consuming lots of time with some very enjoyable analysis...\n\tpapa_bear: Sounds familiar. Odd that a game in progress is sitting, while a finished game is consuming time and energy...\n\n33) papa_bear: Attack B2 Mustafar\n\tKeith: I just spotted another way to go after your g3 at Mustafar. Since I did not mention it I before I won't take it. There is only one green in the stash now but if I sacrifice the g2 at Keith there is now two greens in the stash and I can build them both in Mustafar and create a green catasrophe.\n\n34) Keith: Move Y1 Mustafar Mahalalel\n\n35) papa_bear: Build B2 Mustafar\n\n36) Keith: Sacrifice Y2 Keith\nMove Y1 Mahalalel Papa_bear\nMove G1 Mahalalel Papa_bear\n\n37) papa_bear: Trade Y3 B3 Papa_bear\n\tKeith: Looks like I am headed for a blue catastrophe in Keith. Here is a distraction for you.\n\n38) Keith: Sacrifice G2 Mahalalel\nBuild G2 Papa_bear\nBuild Y1 Papa_bear\nCatastrophe Papa_bear Green\n\tpapa_bear: That certainly gives me something to think about. However, I wasn't so much planning a blue catastrophe. It seems to me that two 2pt ships would be a heavy cost, and I'm not sure that closing the distance between our homeworlds would be in my favor. Of course, that's all history. Now I need to do something about your invasion before it has catastrophic consequences... \n\n39) papa_bear: Trade B3 G3 Papa_bear\n\tKeith: I commend you on keeping the change in distance between homeworlds in mind. Most players learn that one the hard way.\r\n\r\nAnother thing to keep in mind in choosing how to deal with my invastion of your homeworld system is that I can use your system piece colors as well as my ship colors without having to resort to sacrifices.\n\n40) Keith: Sacrifice B1 Keith\nTrade Y1 B1 Papa_bear\n\tpapa_bear: Oh that's ugly.\n\n41) papa_bear: Attack Y1 Papa_bear\n\tKeith: It is. It was tempting last turn to trade the y1 for a blue and blue catastrophe instead. I see that you have taken the move that directly avoids that.\n\n42) Keith: Sacrifice R3 Keith\nAttack R1 Papa_bear\nAttack R1 Papa_bear\nAttack Y1 Papa_bear\n\n43) papa_bear: Trade B2 G2 Papa_bear\n\n44) Keith: Sacrifice G2 Keith\nBuild B2 Papa_bear\nBuild B3 Papa_bear\nCatastrophe Papa_bear Blue\n\tpapa_bear: Argh.\n\n\tKeith: Once there gets to be a lot of ships the possiblities two or three moves out get pretty wild.\n\tKeith: Thank you for the game. You see things better than most first time Homeworlds players.\r\n\r\nI hope this game gave you a good glimpse of Homeworlds and you found it worth further play. I don't want my playing rough the last three turns to be discouraging.\n\tpapa_bear: I keep overlooking that sacrifices give you access to that technology in all occupied systems.\r\nNo, your playing rough is not discouraging. If I may quote another of my pearls of wisdom which I so graciously bestow upon my young students: Always play your best moves, even against beginners; it's the best way for them to learn.\r\nSo far from being discouraging, your playing hard was encouraging, in the sense that it helped me see the possibilities in this game. My interest is definitely excited.\r\nHowever, I have not long to go before my next semester of classes starts (I'm a student myself), and I think I'm going to hold off getting into Homeworlds for a while. My time is going to running very short very soon.\n\nHomeworlds Online (SDG# 5553)\nStarted: 2006.12.19, Ended: 2007.2.2\nParticipants: dsheldon (S), gundam_blade (N)\nWinner: dsheldon\n\n1) gundam_blade: Homeworld B3 G2 Y3\n\n2) dsheldon: Homeworld B1 Y2 G3\n\n3) gundam_blade: Build Y1 Gundam_blade\n\n4) dsheldon: Build G1 Dsheldon\n\n5) gundam_blade: Trade Y1 R1 Gundam_blade\n\n6) dsheldon: Discover G1 Dsheldon B3 Sirius\n\n7) gundam_blade: Build Y1 Gundam_blade\n\n8) dsheldon: Build G1 Sirius\n\n9) gundam_blade: Trade Y1 B1 Gundam_blade\n\n10) dsheldon: Trade G1 Y1 Sirius\n\n11) gundam_blade: Discover B1 Gundam_blade G1 Boobies\n\n12) dsheldon: Build G1 Dsheldon\n\n13) gundam_blade: Build B1 Boobies\n\n14) dsheldon: Build G2 Sirius\n\n\tdsheldon: Are we still playing? I'll give another week before I force your resignation.\n\nHomeworlds Online (SDG# 5615)\nStarted: 2006.12.28, Ended: 2007.1.12\nParticipants: Keith (S), Preacher (W), GameBrain42 (N), akiva (E)\nWinner: Preacher\n\n\nHomeworlds Online (SDG# 5649)\nVariants: "Unrated"\nStarted: 2006.12.29, Ended: 2007.1.3\nParticipants: Keith (S), Preacher (N)\nWinner: Keith\n\n1) Preacher: Homeworld B2 Y1 G3\n\n2) Keith: Homeworld B1 Y3 G3\n\tKeith: Hello Preacher,\r\nLet me know if you have any questions as the game progresses.\n\n3) Preacher: Build G1 Preacher\n\n4) Keith: Build G1 Keith\n\tPreacher: I will, Keith. This is my very first go at this one (i am in another game but awaiting my first turn). I've read the rules - of course :) - multiple times. Also, I found some strategy articles at the wiki sites last night that i read through. Additionally, I followed the log of one of your games where you were teaching a fella to play. All those things have been very helpful ... I think :).\n\tKeith: You have certainly done a more extensive preparation for your first game than most have. This game will help clarify what you have read.\n\n5) Preacher: Trade G1 B1 Preacher\n\n6) Keith: Trade G1 Y1 Keith\n\n7) Preacher: Discover B1 Preacher G3 Orion\n\n8) Keith: Build Y1 Keith\n\tKeith: So what happens if I build and take the last y1? How do you develop yellow pieces?\n\tPreacher: Trade in other pieces for yellow, I think. Aren't you in the same situation re: blue? (??) :)\n\tKeith: Yes to trading and yes I am in the same situation.\n\n9) Preacher: Build B1 Orion\n\n10) Keith: Discover Y1 Keith G2 Midworld\n\n11) Preacher: Build B2 Orion\n\n12) Keith: Build Y2 Keith\n\n13) Preacher: Trade B2 Y2 Orion\n\n14) Keith: Trade Y2 B2 Keith\n\n15) Preacher: Build Y2 Orion\n\n16) Keith: Trade Y1 R1 Keith\n\n17) Preacher: Trade Y2 R2 Orion\n\n18) Keith: Move B2 Keith Midworld\n\n19) Preacher: Trade B1 Y1 Orion\n\n20) Keith: Build G1 Keith\n\n21) Preacher: Move Y1 Orion Preacher\n\n22) Keith: Build Y2 Midworld\n\n23) Preacher: Build Y2 Orion\n\n24) Keith: Sacrifice Y2 Midworld\nMove Y1 Midworld Orion\nMove Y1 Orion Preacher\n\tKeith: You seem to have a better grasp of the game than most first time players. You avoid dangerous buildups of one color in a system, avoid getting locked out of a color, and manipulate the stash to your advantage.\n\n25) Preacher: Trade Y1 R1 Preacher\n\tPreacher: Thanks, Keith. Be prepared for some major rookie blunders, though :).\n\n26) Keith: Sacrifice R1 Keith\nAttack R1 Preacher\n\tKeith: That is okay. I just made one of my own. I can't build yellow ships in your homeworld to pressure you into sacrificing your r2.\n\n27) Preacher: Sacrifice R2 Orion\nAttack R1 Preacher\nAttack Y1 Preacher\n\n28) Keith: Trade G1 R1 Keith\n\n29) Preacher: Trade Y2 R2 Orion\n\n30) Keith: Build G1 Keith\n\n31) Preacher: Build G1 Preacher\n\n32) Keith: Trade G1 Y1 Keith\n\n33) Preacher: Build Y2 Orion\n\n34) Keith: Move Y1 Keith Midworld\n\tPreacher: Hitting the sack here, Keith. I'm learning a lot here. This is great!\n\tKeith: Okay, tommorrow then.\n\n35) Preacher: Trade Y2 R2 Orion\n\n36) Keith: Build G1 Keith\n\tPreacher: REALLY the last one tonight this time :).\n\n37) Preacher: Build Y2 Orion\n\n38) Keith: Build Y2 Midworld\n\tKeith: I will temp you with a quick response so you have time for just one more.\n\tKeith: That should be tempt not temp.\n\n39) Preacher: Discover Y2 Orion B1 Mars\n\n40) Keith: Trade Y1 R1 Midworld\n\n41) Preacher: Move G1 Preacher Orion\n\n42) Keith: Build R2 Keith\n\n43) Preacher: Build R3 Preacher\n\n44) Keith: Build R3 Midworld\n\tPreacher: build r3 preacher\n\n45) Preacher: Move G3 Preacher Orion\n\tPreacher: lol. :)\n\tKeith: Yeah, that order entry box is so far away it is easy, and fairly common, to chat an order at least once.\n\n46) Keith: Move R1 Midworld Orion\n\n47) Preacher: Move G3 Orion Preacher\n\tKeith: You might want to rethink that move. Let me demonstrate. I will undo in a few minutes.\n\n48) Keith: Sacrifice Y2 Midworld\nMove R1 Keith Midworld\nMove R1 Midworld Orion\nCatastrophe Orion Red\n\n49) Preacher: Move R3 Preacher Orion\n\tKeith: I was going to undo my move.\n\tPreacher: can i undo and then you undo?\n\tKeith: Lets try it.\n\tPreacher: now you try\n\tKeith: That worked. I can make a different move now but we are limited to one undo each so you can't undo the g3 move.\n\n50) Keith: Trade G1 Y1 Keith\n\n51) Preacher: Build Y2 Preacher\n\n52) Keith: Move Y1 Keith Midworld\n\tKeith: I am attempting to enter the following order:\r\nsacrifice y2 midworld\r\nmove r1 keith midworld\r\nmove r1 keith orion\r\ncatastrophe orion red\r\nI get an error that I do not own an R1 in keith.\n\tAaron: once you move the r2 from keith to midworld you no longer have an r1 in keith. I assume one of those r1's needs to be an r2.\n\tAaron: once you move the r1 from keith, that is.\n\tKeith: Doh! User error. Sorry for the interruption Aaron. Thanks.\n\n53) Preacher: Build Y3 Orion\n\n54) Keith: Build Y3 Midworld\n\n55) Preacher: Discover Y1 Preacher B3 Pluto\n\tKeith: You are just not going to let me get a 3-pointer safely into Orion are you?\n\n56) Keith: Build G1 Keith\n\n57) Preacher: Build R1 Preacher\n\n58) Keith: Move R3 Midworld Mars\n\n59) Preacher: Move Y2 Mars Midworld\n\n60) Keith: Move Y3 Midworld Mars\n\n61) Preacher: Build B2 Orion\n\n62) Keith: Build B3 Midworld\n\n63) Preacher: Build G1 Preacher\n\n64) Keith: Discover B3 Midworld R3 Miranda\n\n65) Preacher: Trade G3 B3 Preacher\n\n66) Keith: Build R1 Keith\n\n67) Preacher: Build G2 Preacher\n\n68) Keith: Sacrifice R1 Keith\nAttack Y2 Midworld\n\n69) Preacher: Discover G1 Preacher G3 Tatooine\n\n70) Keith: Sacrifice Y3 Mars\nMove B2 Midworld Miranda\nMove B2 Miranda Preacher\nMove B3 Miranda Preacher\nCatastrophe Preacher Blue\n\n71) Preacher: Move B2 Orion Midworld\n\n72) Keith: Move Y2 Midworld Preacher\n\n\tPreacher: I think that probably does it. :).\r\n\r\nThanks for the game Keith!\n\tKeith: Yes it does. You have been tough to pin down. You put your pre-game prep to good use. Thank you for the good game.\n\tPreacher: Thanks, Keith. I look forward to learning more from you if you're interested...\n\nHomeworlds Online (SDG# 5639)\nStarted: 2007.1.1, Ended: 2007.3.14\nParticipants: jeep (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y2 G3\n\tKeith: Hello Jeep. Did you have a good holiday?\n\n2) jeep: Homeworld B3 Y1 G3\n\tjeep: Hey! Yes, I had a great time. Very tiring, though. I am glad to have a couple days before going to work.\n\n3) Keith: Build G1 Keith\n\tKeith: Same here. I had visitors - 2 siblings, 3 cousins, 3 dogs for 4 days.\n\n4) jeep: Build G1 Jeep\n\n5) Keith: Trade G1 Y1 Keith\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) Keith: Build G1 Keith\n\n8) jeep: Build G1 Jeep\n\n9) Keith: Discover Y1 Keith G3 Behemoth\n\n10) jeep: Build Y2 Jeep\n\n11) Keith: Build Y2 Behemoth\n\n12) jeep: Discover Y1 Jeep G2 Grower\n\n13) Keith: Move Y2 Behemoth Grower\n\n14) jeep: Sacrifice G3 Jeep\nBuild Y3 Grower\nBuild Y3 Grower\nBuild Y3 Jeep\nCatastrophe Grower Yellow\n\n15) Keith: Discover Y1 Behemoth G2 Bend\n\n16) jeep: Trade Y2 R2 Jeep\n\n17) Keith: Build Y1 Bend\n\n18) jeep: Trade Y3 G3 Jeep\n\tjeep: I see now that I made a poor play last move. Hmm...\n\n19) Keith: Trade G1 R1 Keith\n\tKeith: Sorry to take so long to move.\n\n20) jeep: Trade G1 B1 Jeep\n\tjeep: No problem\n\n21) Keith: Build G1 Keith\n\n22) jeep: Discover B1 Jeep Y2 Yonkers\n\n23) Keith: Build Y2 Bend\n\n24) jeep: Build R1 Jeep\n\tjeep: I never understand how I manage to get myself into this position... Which means it's something my opponent does that I don't see. I need to review my games where I end up like this.\n\n25) Keith: Discover Y1 Bend G1 Prineville\n\n26) jeep: Move G3 Jeep Bend\n\n27) Keith: Sacrifice Y1 Bend\nDiscover Y2 Bend G3 Madras\n\tjeep: You're building Oregon... ;)\n\tKeith: At one time I was a big frog in the small pond of Prineville.\n\tKeith: You moved your 3-pointer out of your homeworld! Gutsy move. Even when it looks safe I am always worried that I am overlooking something and making a game ending mistake.\n\n28) jeep: Sacrifice B1 Yonkers\nTrade G3 Y3 Bend\n\tjeep: Yeah, it frightens me too, but not as much as you having a Yellow Monopoly.\n\tjeep: Of course, I got "unlucky" and forgot to consider something.\r\n\r\nWe had some cousins who lived in Prineville. Wonder if you knew them... It was a no-stoplight town when they first lived there and just moved away a year or two ago...\n\n29) Keith: Build Y1 Prineville\n\n30) jeep: Move Y3 Bend Jeep\n\tKeith: I left Prineville 8 years ago. They had 3 stoplights and one blinker at that time. Wheeler county still had only one blinking light.\n\n31) Keith: Build Y2 Madras\n\n32) jeep: Discover R2 Jeep B2 Tigard\n\n33) Keith: Build Y3 Prineville\n\n34) jeep: Trade R2 G2 Tigard\n\n35) Keith: Sacrifice Y3 Prineville\nDiscover Y1 Prineville B2 Beaverton\nMove Y1 Beaverton Jeep\nMove Y2 Madras Tigard\n\n36) jeep: Trade Y3 G3 Jeep\n\n37) Keith: Sacrifice R1 Keith\nAttack R1 Jeep\n\n38) jeep: Trade G3 R3 Jeep\n\tjeep: *sigh* I am just not thinking this game. \n\n39) Keith: Sacrifice G3 Keith\nBuild G1 Keith\nBuild R1 Jeep\nBuild R1 Jeep\nCatastrophe Jeep Red\n\tKeith: You have not played at your usual level this game. Between moving and trading you have spent 5 turns juggling your 3-pointer in your home system. This time it has caught up with you. \n\tjeep: Yeah, no idea what happened. In HW and Alien City, it seems that once I make a mistake, I get over flustered and can't recover. Most likely a mental thing on my part.\n\n\nHomeworlds Online (SDG# 5645)\nStarted: 2007.1.2, Ended: 2007.1.15\nParticipants: Keith (S), Uglyfoot (N)\nWinner: Keith\n\n1) Uglyfoot: Homeworld Y3 B1 G3\n\n2) Keith: Homeworld Y1 B2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tUglyfoot: hey, keith. Good Luck!\n\n4) Keith: Build G1 Keith\n\tKeith: Hello Uglyfoot. Have a good game.\n\n5) Uglyfoot: Trade G1 R1 Uglyfoot\n\n6) Keith: Trade G1 Y1 Keith\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) Keith: Build Y1 Keith\n\n9) Uglyfoot: Discover G1 Uglyfoot B2 Themall\n\n10) Keith: Discover Y1 Keith G3 Behemoth\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) Keith: Build Y2 Behemoth\n\n13) Uglyfoot: Build G1 Themall\n\n14) Keith: Build G2 Keith\n\n15) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Themall\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\n\n16) Keith: Move G2 Keith Behemoth\n\n17) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n18) Keith: Move G2 Behemoth Themall\nCatastrophe Themall Green\n\n19) Uglyfoot: Discover Y2 Uglyfoot G2 Work\n\n20) Keith: Trade Y1 R1 Keith\n\n21) Uglyfoot: Move G1 Uglyfoot Work\n\n22) Keith: Build G1 Keith\n\n23) Uglyfoot: Build G1 Uglyfoot\n\n24) Keith: Trade G1 B1 Keith\n\n25) Uglyfoot: Discover G1 Work B3 Commerce\n\n26) Keith: Move B1 Keith Behemoth\n\n27) Uglyfoot: Build G1 Commerce\n\n28) Keith: Build G2 Keith\n\n29) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y1 Work\n\n30) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild B1 Behemoth\nBuild B2 Behemoth\n\n31) Uglyfoot: Sacrifice Y2 Work\nMove G1 Commerce Keith\nMove G1 Commerce Keith\nCatastrophe Keith G\n\n32) Keith: Trade B1 G1 Behemoth\n\n33) Uglyfoot: Build Y2 Work\n\tKeith: Ouch. I should have seen that coming. Better stop to think... if it is not too late already.\n\n34) Keith: Sacrifice Y2 Behemoth\nMove G1 Behemoth Work\nMove G1 Work Uglyfoot\nCatastrophe Uglyfoot Green\n\n35) Uglyfoot: Move Y2 Work Uglyfoot\n\n36) Keith: Build Y2 Behemoth\n\n37) Uglyfoot: Trade Y2 G2 Uglyfoot\n\n38) Keith: Move Y2 Behemoth Keith\n\n39) Uglyfoot: Build Y2 Work\n\n40) Keith: Trade Y2 G2 Keith\n\n41) Uglyfoot: Discover Y2 Work Y3 Moving\n\n42) Keith: Move B2 Behemoth Work\n\n43) Uglyfoot: Build Y2 Work\n\n44) Keith: Trade B2 Y2 Work\n\n45) Uglyfoot: Move Y2 Work Behemoth\n\tKeith: I guess I had better not take the y2 bait.\n\n46) Keith: Build Y3 Work\n\n47) Uglyfoot: Move Y2 Moving Work\nCatastrophe Work Y\n\n48) Keith: Build B1 Behemoth\n\n49) Uglyfoot: Build R1 Uglyfoot\n\n50) Keith: Build Y1 Behemoth\n\n51) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack B1 Behemoth\n\n52) Keith: Build B2 Behemoth\n\n53) Uglyfoot: Build B2 Behemoth\nCatastrophe Behemoth B\n\n54) Keith: Discover Y1 Behemoth G2 Midworld\n\n55) Uglyfoot: Build G1 Uglyfoot\n\n56) Keith: Build Y2 Behemoth\n\n57) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack Y2 Behemoth\n\n58) Keith: Build Y2 Behemoth\nCatastrophe Behemoth Yellow\n\n59) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n60) Keith: Build Y2 Midworld\n\n61) Uglyfoot: Build G1 Uglyfoot\n\n62) Keith: Move Y2 Midworld Uglyfoot\n\n63) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n64) Keith: Sacrifice R1 Keith\nAttack R1 Uglyfoot\n\n65) Uglyfoot: Trade G2 R2 Uglyfoot\n\n66) Keith: Attack R2 Uglyfoot\n\n67) Uglyfoot: Build G1 Uglyfoot\n\n68) Keith: Sacrifice R2 Uglyfoot\nAttack G1 Uglyfoot\nAttack G1 Uglyfoot\n\n\tKeith: And unusual and tough game. We both knocked eash other down multiple times. It came down to I had a red ship and you did not. Good game.\n\tUglyfoot: Thank you. It was quite a struggle.\n\nHomeworlds Online (SDG# 5768)\nStarted: 2007.1.4, Ended: 2007.1.27\nParticipants: Keith (S), GreedyAlgorithm (N)\nWinner: GreedyAlgorithm\n\n1) GreedyAlgorithm: Homeworld Y1 B2 G3\n\n2) Keith: Homeworld B1 Y3 G3\n\tGreedyAlgorithm: Hi, I haven't played a lot, but don't go easy on me. :)\r\n\r\nFirst time playing online, though, or any game on SDG, so hopefully there won't be any problems there.\n\tKeith: Then welcome to SDG. Plenty of friendly opponents and a bunch of good games. I recommend checking out the forums and giving Cannon a Castle Danger a try.\r\n\r\nAs for this game. Feel free to ask questions. I won't give advice on future moves but I would be happy to explain or give feedback on past moves.\n\n3) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n4) Keith: Build G1 Keith\n\n5) GreedyAlgorithm: Trade G1 B1 Greedyalgorithm\n\n6) Keith: Trade G1 B1 Keith\n\n7) GreedyAlgorithm: Build G1 Greedyalgorithm\n\tKeith: Not that I want to mimic your moves. I just don't want you putting me in a bind by grabbing the last b1.\n\n8) Keith: Build B2 Keith\n\n9) GreedyAlgorithm: Discover B1 Greedyalgorithm G3 Cornucopia\n\n10) Keith: Discover B2 Keith G2 Midworld\n\n11) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n12) Keith: Build G1 Keith\n\n13) GreedyAlgorithm: Discover G1 Greedyalgorithm Y3 Extension\n\n14) Keith: Sacrifice G3 Keith\nBuild B2 Midworld\nBuild B3 Midworld\nBuild B3 Keith\n\n15) GreedyAlgorithm: Build B3 Cornucopia\n\n16) Keith: Sacrifice B2 Midworld\nTrade B3 Y3 Midworld\nTrade B3 G3 Keith\n\n17) GreedyAlgorithm: Trade B1 Y1 Cornucopia\n\n18) Keith: Discover B1 Keith R2 Akai\n\n19) GreedyAlgorithm: Discover B3 Cornucopia Y2 Interloper\n\n20) Keith: Trade G1 R1 Keith\n\n21) GreedyAlgorithm: Build Y1 Cornucopia\n\n22) Keith: Build G1 Keith\n\n23) GreedyAlgorithm: Build Y2 Cornucopia\n\n24) Keith: Move Y3 Midworld Cornucopia\nCatastrophe Cornucopia Yellow\n\n25) GreedyAlgorithm: Trade G1 Y1 Greedyalgorithm\n\n26) Keith: Trade G1 Y1 Keith\n\n27) GreedyAlgorithm: Build Y2 Greedyalgorithm\n\tGreedyAlgorithm: build y2 GreedyAlgorithm\n\n28) Keith: Move Y1 Keith Midworld\n\tGreedyAlgorithm: Heh, wrong box. :)\n\tKeith: A fairly frequent event during ones first game online. That order box is so far way from the text of your opponents last turn or chat.\n\n29) GreedyAlgorithm: Discover Y1 Greedyalgorithm G3 Horn-of-plenty\n\n30) Keith: Build G1 Keith\n\n31) GreedyAlgorithm: Sacrifice G3 Greedyalgorithm\nBuild Y2 Horn-of-plenty\nBuild Y3 Greedyalgorithm\nBuild B1 Interloper\n\n32) Keith: Move B2 Midworld Horn-of-plenty\n\n33) GreedyAlgorithm: Sacrifice Y2 Greedyalgorithm\nDiscover Y1 Horn-of-plenty Y2 Alpha\nDiscover Y2 Horn-of-plenty G2 Beta\n\n34) Keith: Build B2 Horn-of-plenty\n\n35) GreedyAlgorithm: Build G1 Extension\n\tKeith: What a yellow denial sequence. Good job.\n\tKeith: I was going to start stocking up on yellow this turn.\n\tGreedyAlgorithm: Thanks. I'm not 100% sure where I'm going with the line, but it was too cute to pass up.\n\n36) Keith: Move G1 Keith Akai\n\n37) GreedyAlgorithm: Move B1 Interloper Horn-of-plenty\n\n38) Keith: Build B3 Akai\n\n39) GreedyAlgorithm: Sacrifice G1 Extension\nBuild B3 Interloper\n\n40) Keith: Build R1 Keith\n\n41) GreedyAlgorithm: Trade B3 R3 Interloper\n\n42) Keith: Sacrifice Y1 Midworld\nMove B2 Horn-of-plenty Alpha\n\n43) GreedyAlgorithm: Build B3 Horn-of-plenty\n\n44) Keith: Trade B1 Y1 Akai\n\n45) GreedyAlgorithm: Sacrifice G1 Extension\nBuild Y3 Beta\n\tKeith: Oh wow. You have four 3-pointers to my two, I have lost my grip on blue and you still have most of your control over yellow. Good thing for me you havn't played Homeworlds a lot. ;) \n\n46) Keith: Build B1 Horn-of-plenty\nCatastrophe Horn-of-plenty Blue\n\tGreedyAlgorithm: I'd played chess a good bit before, and this strikes me as very similar to amateur-level chess (I mean before you can tell that moving you bishop innocuously move 3 will have such-and-such an impact 10 moves from now). Also I think I've pretty much lost my yellow control based on akai and Alpha, but 4-2 does seem pretty helpful.\n\n47) GreedyAlgorithm: Sacrifice Y2 Beta\nMove Y3 Beta Keith\nMove B3 Interloper Keith\n\tKeith: I did not think I could get to Extension before you harvested it. Too shy of yellow ships. Better do something about the now five to two 3-pointer situation.\n\tKeith: I did not think I could get to Extension before you harvested it. Too shy of yellow ships. Better do something about the now five to two 3-pointer situation.\n\n\tKeith: If there is a way out of this it is beyond my ability to see it. Well done. Have you considered joining the Homeworlds ladder? I think you could make a good run at the top rung.\n\tGreedyAlgorithm: Thanks. I just joined! We'll see. :) Good game!\n\nHomeworlds Online (SDG# 5719)\nStarted: 2007.1.5, Ended: 2007.1.19\nParticipants: GameBrain42 (S), Preacher (N)\nWinner: Preacher\n\n1) Preacher: Homeworld B2 Y1 G3\n\n2) GameBrain42: Homeworld Y3 G1 B3\n\n3) Preacher: Build G1 Preacher\n\tPreacher: looks like you got it :)\n\n4) GameBrain42: Build B1 Gamebrain42\n\n5) Preacher: Build G1 Preacher\n\tGameBrain42: Sorry bout the wait. The GameBrain Consul apparently thought that they would like you to make a free move before constucting another of our transmogrifier ships..\r\n\n\tPreacher: build g1 preacher\n\n6) GameBrain42: Discover B1 Gamebrain42 G2 Alderaan\n\n7) Preacher: Trade G3 R3 Preacher\n\tGameBrain42: Ahhhh Alderaan.. And oh look! It has a small Moon! (that is a moon right?).\n\n8) GameBrain42: Build B1 Alderaan\n\n9) Preacher: Build G2 Preacher\n\n10) GameBrain42: Build B1 Gamebrain42\n\n11) Preacher: Trade G2 B2 Preacher\n\n12) GameBrain42: Build B2 Alderaan\n\n13) Preacher: Build B3 Preacher\n\n14) GameBrain42: Trade B1 Y1 Alderaan\n\n15) Preacher: Trade B3 Y3 Preacher\n\n\nHomeworlds Online (SDG# 5849)\nVariants: "Unrated"\nStarted: 2007.1.10, Ended: 2007.1.16\nParticipants: MatrixFrog (S), papa_bear (N)\nWinner: MatrixFrog\n\n1) papa_bear: Homeworld Y1 B2 G3\n\n2) MatrixFrog: Homeworld Y1 B3 G3\n\n3) papa_bear: Build G1 Papa_bear\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) papa_bear: Trade G1 Y1 Papa_bear\n\n6) MatrixFrog: Build G1 Matrixfrog\n\n7) papa_bear: Build G1 Papa_bear\n\n8) MatrixFrog: Discover G1 Matrixfrog Y2 Candlelight\n\n9) papa_bear: Trade G1 B1 Papa_bear\n\n10) MatrixFrog: Trade G1 B1 Matrixfrog\n\n11) papa_bear: Build G1 Papa_bear\n\n12) MatrixFrog: Build G1 Candlelight\n\n13) papa_bear: Build G2 Papa_bear\n\tpapa_bear: build g2 papa_bear\n\tpapa_bear: I'm an idiot.\r\n\n\n14) MatrixFrog: Build G2 Matrixfrog\n\n15) papa_bear: Discover G2 Papa_bear R3 Mahalalel\n\n16) MatrixFrog: Trade G3 Y3 Matrixfrog\n\n17) papa_bear: Build Y2 Papa_bear\n\n18) MatrixFrog: Build B1 Matrixfrog\n\n19) papa_bear: Build B2 Papa_bear\n\n20) MatrixFrog: Build G2 Matrixfrog\n\n21) papa_bear: Move B2 Papa_bear Mahalalel\n\n22) MatrixFrog: Sacrifice B1 Matrixfrog\nTrade G1 B1 Candlelight\n\n23) papa_bear: Move Y1 Papa_bear Mahalalel\n\n24) MatrixFrog: Build B2 Candlelight\n\n25) papa_bear: Build G1 Mahalalel\n\n26) MatrixFrog: Build G3 Candlelight\n\n27) papa_bear: Build B3 Mahalalel\n\n28) MatrixFrog: Discover B2 Candlelight Y3 Grumblecakes\n\n29) papa_bear: Trade B1 R1 Papa_bear\n\n30) MatrixFrog: Move G1 Candlelight Grumblecakes\n\n31) papa_bear: Sacrifice G3 Papa_bear\nBuild G3 Papa_bear\nBuild R1 Papa_bear\nBuild Y2 Mahalalel\n\n32) MatrixFrog: Sacrifice G3 Candlelight\nBuild B1 Grumblecakes\nBuild B3 Grumblecakes\nBuild G3 Grumblecakes\n\n33) papa_bear: Sacrifice Y2 Mahalalel\nMove B2 Mahalalel Candlelight\nMove B2 Candlelight Grumblecakes\nCatastrophe Grumblecakes Blue\n\n34) MatrixFrog: Trade B1 R1 Candlelight\n\n35) papa_bear: Move G1 Papa_bear Mahalalel\n\n36) MatrixFrog: Trade G2 R2 Matrixfrog\n\n37) papa_bear: Trade G1 B1 Mahalalel\n\n38) MatrixFrog: Trade B1 G1 Matrixfrog\n\n39) papa_bear: Sacrifice G2 Mahalalel\nBuild Y2 Papa_bear\nBuild Y3 Mahalalel\n\n40) MatrixFrog: Discover Y3 Matrixfrog R2 Flame\n\n41) papa_bear: Sacrifice Y2 Papa_bear\nMove G3 Papa_bear Mahalalel\nMove B3 Mahalalel Papa_bear\n\n42) MatrixFrog: Build R2 Matrixfrog\n\n43) papa_bear: Move G1 Mahalalel Papa_bear\n\n44) MatrixFrog: Build R3 Matrixfrog\n\n45) papa_bear: Move R1 Papa_bear Mahalalel\n\n46) MatrixFrog: Sacrifice Y3 Flame\nMove R2 Matrixfrog Candlelight\nMove R1 Candlelight Mahalalel\nMove R2 Candlelight Mahalalel\nCatastrophe Mahalalel R\n\tMatrixFrog: I'm not sure if this is going to turn out to be a bad idea or not, but I'm going for it.\n\n47) papa_bear: Build G2 Papa_bear\n\tpapa_bear: Wow. I'd say that the resulting position looks favorable for you. Wow.\n\n48) MatrixFrog: Trade G1 B1 Matrixfrog\n\n49) papa_bear: Move G1 Papa_bear Grumblecakes\n\n50) MatrixFrog: Discover G3 Grumblecakes Y2 Alpha\n\n51) papa_bear: Trade B3 G3 Papa_bear\n\n52) MatrixFrog: Build B1 Matrixfrog\n\n53) papa_bear: Sacrifice G2 Papa_bear\nBuild G1 Grumblecakes\nBuild G2 Papa_bear\n\n54) MatrixFrog: Discover G3 Alpha Y3 Beta\n\n55) papa_bear: Trade G2 B2 Papa_bear\n\n56) MatrixFrog: Discover B1 Matrixfrog Y2 Gamma\n\n57) papa_bear: Build B1 Papa_bear\n\n58) MatrixFrog: Move B1 Gamma Beta\n\n59) papa_bear: Move B2 Papa_bear Grumblecakes\n\n60) MatrixFrog: Sacrifice R2 Matrixfrog\nAttack G1 Grumblecakes\nAttack G1 Grumblecakes\n\n61) papa_bear: Trade B2 G2 Grumblecakes\nCatastrophe Grumblecakes Green\n\tpapa_bear: I don't know what part of the world you're in, but if you hear the faint echoes of a slapping sound, that was me smacking my forehead. I keep forgetting that a sacrificed red ship allows you to attack in systems where you otherwise have no access to red technology.\r\n\r\nI am taking the family out for dinner tonight. When I get back, I'll decide whether to resign yet or not :)\r\n\r\nAnd I'll start thinking about what game to challenge you to next...\n\tMatrixFrog: No! Don't resign. That's deeply unsatisfying for both players. And I may be winning (though I'm not even sure about that) but it's hardly reached the point of being inevitable. I think concepts of "who's winning" and such are very hard to define in this game.\n\tpapa_bear: Ok. I'll hang in there.\n\tpapa_bear: However, I should note that I have a philosophy about resignation. In a truly hopeless position, I consider it rude not to resign. I'll trust your judgment on this matter for now, but I don't play on in positions I recognise as hopeless. Part of good play, in my view, is being able to tell when a game is lost. Sometimes resignation is the strongest move.\r\n\r\nThis may come from my background in chess, and perhaps other gaming cultures are different. However, I have internalized the concept of timely resignation as an integral part of good sportsmanship, honor, and respect for my opponent. So I reserve the right to resign when I see fit, though I won't do it just yet.\n\n62) MatrixFrog: Build B2 Beta\n\tMatrixFrog: That makes sense.\n\n63) papa_bear: Build R1 Papa_bear\n\n64) MatrixFrog: Move B1 Beta Papa_bear\n\n65) papa_bear: Discover B1 Papa_bear R3 Aleph\n\n66) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild B2 Papa_bear\nBuild B3 Papa_bear\nCatastrophe Papa_bear B\n\n67) papa_bear: Build G1 Papa_bear\n\n68) MatrixFrog: Trade B2 Y2 Beta\n\n69) papa_bear: Move G1 Papa_bear Aleph\n\n70) MatrixFrog: Discover Y2 Beta G2 Gamma\n\n71) papa_bear: Move Y2 Papa_bear Aleph\n\n72) MatrixFrog: Build Y1 Gamma\n\n73) papa_bear: Build Y2 Aleph\n\n74) MatrixFrog: Discover Y1 Gamma R3 Delta\n\n75) papa_bear: Move Y2 Aleph Gamma\n\n76) MatrixFrog: Build G1 Beta\n\n77) papa_bear: Build Y3 Aleph\n\n78) MatrixFrog: Discover Y2 Gamma Y3 Epsilon\n\tpapa_bear: Well, it still looks pretty grim, but I must concede that it was not as dire as I had thought. Thanks for sparing me the unnecessary resignation.\n\n79) papa_bear: Trade Y2 B2 Aleph\n\n80) MatrixFrog: Build G1 Beta\n\n81) papa_bear: Sacrifice Y2 Gamma\nMove G1 Aleph Papa_bear\nMove G1 Papa_bear Beta\nCatastrophe Beta Green\n\n82) MatrixFrog: Trade R3 G3 Matrixfrog\n\tMatrixFrog: Uh oh.\n\n83) papa_bear: Build G1 Papa_bear\n\n84) MatrixFrog: Build G1 Matrixfrog\n\n85) papa_bear: Move B1 Aleph Papa_bear\n\n86) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild Y2 Delta\n\n87) papa_bear: Build B1 Papa_bear\n\n88) MatrixFrog: Sacrifice Y2 Epsilon\nMove Y2 Delta Papa_bear\nMove Y1 Delta Papa_bear\n\n89) papa_bear: Attack Y2 Papa_bear\n\n90) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y2 Papa_bear\nPass\nPass\nCatastrophe Papa_bear Y\n\n\tpapa_bear: That was pretty cool. Would you like to play another game?\n\tMatrixFrog: Yeah. I thought you were going to challenge me to something else, right? So go ahead and do that, in addition to another Homeworlds game, or instead of it... whatever you want to do.\n\nHomeworlds Online (SDG# 5861)\nVariants: "Hard time"\nStarted: 2007.1.11, Ended: 2007.3.28\nParticipants: Laurie_Menke (S), unic (N)\nWinner: unic\n\n1) unic: Homeworld B3 Y2 G3\n\n2) Laurie_Menke: Homeworld Y1 B3 G3\n\tLaurie_Menke: Hi unic! Good luck! :o)\n\n3) unic: Build G1 Unic\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) unic: Discover G1 Unic Y1 Gul\n\n6) Laurie_Menke: Discover G1 Laurie_menke Y2 Roses\n\n7) unic: Build G1 Unic\n\n8) Laurie_Menke: Build G2 Laurie_menke\n\n9) unic: Build G2 Gul\n\n10) Laurie_Menke: Discover G2 Laurie_menke Y2 Ribbon\n\n11) unic: Trade G1 Y1 Unic\n\n12) Laurie_Menke: Discover G2 Ribbon Y3 Bellied\n\n13) unic: Build Y2 Unic\n\n14) Laurie_Menke: Move G1 Roses Gul\n\n15) unic: Trade Y1 R1 Unic\n\n16) Laurie_Menke: Sacrifice G2 Bellied\nBuild G1 Gul\nBuild G2 Laurie_menke\nCatastrophe Gul G\n\n17) unic: Discover Y2 Unic G1 Lego\n\n18) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n19) unic: Discover R1 Unic Y1 Clay\n\n20) Laurie_Menke: Discover Y2 Laurie_menke R2 Mars\n\tLaurie_Menke: Again, I'm very sorry for the long delay, unic. Please forgive me. :o(\n\n21) unic: Build G1 Unic\n\n22) Laurie_Menke: Build G1 Laurie_menke\n\n23) unic: Build G2 Unic\n\n24) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n25) unic: Build Y1 Lego\n\n26) Laurie_Menke: Move G3 Laurie_menke Mars\n\n27) unic: Discover G1 Unic B1 Ground\n\n28) Laurie_Menke: Sacrifice G3 Mars\nBuild R1 Laurie_menke\nBuild Y3 Mars\nBuild R2 Laurie_menke\n\n29) unic: Sacrifice Y2 Lego\nDiscover R1 Clay Y2 Temp\nMove R1 Temp Laurie_menke\nCatastrophe Laurie_menke Red\n\tunic: That was a bit sudden! Thanks for the game.\n\tLaurie_Menke: Wow...yeah, it was! I sure didn't see that coming! Congratulations, unic...nicely played! Thanks for the fun! :o)\n\n\nHomeworlds Online (SDG# 5869)\nStarted: 2007.1.11, Ended: 2007.1.15\nParticipants: clockwise (S), Uglyfoot (N)\nWinner: clockwise\n\n1) Uglyfoot: Homeworld B1 Y3 G3\n\tUglyfoot: Greetings! I'm looking to change my standings as the worst player in Homeworlds... Good luck.\n\n2) clockwise: Homeworld G1 B2 Y3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tclockwise: Hello, this is my very first game on sdg, but not my first of Homeworlds. GL\n\tUglyfoot: let me know when I do something stupid. I keep missing something...\n\n4) clockwise: Build Y1 Clockwise\n\n5) Uglyfoot: Discover G1 Uglyfoot B2 Xchg\n\n6) clockwise: Trade Y1 G1 Clockwise\n\n7) Uglyfoot: Build G2 Xchg\n\n8) clockwise: Discover G1 Clockwise Y3 Peanut\n\n9) Uglyfoot: Build G2 Uglyfoot\n\n10) clockwise: Build Y1 Clockwise\n\n11) Uglyfoot: Trade G2 Y2 Xchg\n\n12) clockwise: Build G2 Peanut\n\n13) Uglyfoot: Build G2 Xchg\n\n14) clockwise: Move G1 Peanut Xchg\n\n15) Uglyfoot: Trade G2 R2 Xchg\n\n16) clockwise: Sacrifice Y3 Clockwise\nMove G1 Xchg Uglyfoot\nMove G2 Peanut Xchg\nMove G2 Xchg Uglyfoot\nCatastrophe Uglyfoot Green\n\tclockwise: So your mistake here was that you didn't recognize that my prior move was a double threat. With the primary threat being the annihilation of your homeworld and the secondary threat being a subsequent catastrophy in xchg. You saw and responded to the secondary threat, but did not see the primary threat.\n\tclockwise: Always pay attention to your opponents large pieces and what they are capable of. Here the fact that my y3 gave me near instant access to your homeworld meant you should have played more defensively.\n\n\nHomeworlds Online (SDG# 5897)\nStarted: 2007.1.12, Ended: 2007.2.1\nParticipants: jbj77 (S), Uglyfoot (N)\nWinner: jbj77\n\n1) Uglyfoot: Homeworld Y1 B3 G3\n\tUglyfoot: Greetings and well met.\n\n2) jbj77: Homeworld B1 G2 Y3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tjbj77: Thank you.\n\n4) jbj77: Build Y1 Jbj77\n\n5) Uglyfoot: Build G1 Uglyfoot\n\n6) jbj77: Trade Y1 G1 Jbj77\n\n7) Uglyfoot: Discover G1 Uglyfoot B2 Library\n\n8) jbj77: Build G2 Jbj77\n\n9) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Library\nBuild G3 Library\nBuild G3 Uglyfoot\n\n10) jbj77: Discover G1 Jbj77 Y3 Alpha\n\n11) Uglyfoot: Trade G3 Y3 Library\n\n12) jbj77: Build G3 Alpha\n\n13) Uglyfoot: Move G1 Library Alpha\n\n14) jbj77: Discover G3 Alpha Y2 Beta\n\n15) Uglyfoot: Sacrifice Y3 Library\nMove G1 Alpha Jbj77\nMove G2 Library Alpha\nMove G2 Alpha Jbj77\nCatastrophe Jbj77 G\n\n16) jbj77: Build G1 Beta\n\tUglyfoot: I just had that one used on me (and I lost).\n\n17) Uglyfoot: Trade G1 R1 Uglyfoot\n\n18) jbj77: Move G1 Beta Jbj77\n\n19) Uglyfoot: Build G1 Uglyfoot\n\n20) jbj77: Trade G1 R1 Jbj77\n\n21) Uglyfoot: Discover G1 Uglyfoot B2 Nyse\n\n22) jbj77: Build G1 Beta\n\n23) Uglyfoot: Build G2 Nyse\n\n24) jbj77: Build G2 Beta\n\n25) Uglyfoot: Trade G2 Y2 Nyse\n\n26) jbj77: Move G2 Beta Jbj77\n\n27) Uglyfoot: Build G2 Nyse\n\n28) jbj77: Sacrifice G3 Beta\nBuild G2 Alpha\nBuild G3 Beta\nBuild G3 Jbj77\n\n29) Uglyfoot: Build Y1 Nyse\n\n30) jbj77: Sacrifice G2 Jbj77\nBuild R1 Jbj77\nBuild R2 Jbj77\n\n31) Uglyfoot: Build R2 Uglyfoot\n\n32) jbj77: Move R1 Jbj77 Beta\n\n33) Uglyfoot: Discover R2 Uglyfoot Y2 Djia\n\n34) jbj77: Trade R1 B1 Jbj77\n\n35) Uglyfoot: Trade G1 B1 Nyse\n\n36) jbj77: Sacrifice G3 Beta\nBuild G1 Beta\nBuild G2 Beta\nBuild G3 Jbj77\n\n37) Uglyfoot: Sacrifice Y2 Nyse\nMove G2 Nyse Jbj77\nMove G2 Jbj77 Beta\nCatastrophe Beta G\n\n38) jbj77: Move R2 Jbj77 Nyse\n\tjbj77: Oh no, you killed my factory!\n\n39) Uglyfoot: Build G1 Uglyfoot\n\n40) jbj77: Attack Y1 Nyse\n\n41) Uglyfoot: Move G1 Uglyfoot Djia\n\n42) jbj77: Sacrifice G3 Jbj77\nBuild Y1 Jbj77\nBuild Y2 Nyse\nBuild Y3 Nyse\n\n43) Uglyfoot: Build G1 Uglyfoot\n\n44) jbj77: Move G2 Alpha Nyse\n\n45) Uglyfoot: Move G1 Djia Jbj77\n\n46) jbj77: Sacrifice Y3 Jbj77\nMove G2 Nyse Uglyfoot\nMove G1 Alpha Beta\nMove G1 Beta Uglyfoot\nCatastrophe Uglyfoot Green\n\n47) Uglyfoot: Move R2 Djia Uglyfoot\n\n48) jbj77: Move Y3 Nyse Uglyfoot\n\n49) Uglyfoot: Build G1 Jbj77\n\n50) jbj77: Sacrifice R2 Nyse\nAttack R2 Uglyfoot\nAttack R1 Uglyfoot\n\tUglyfoot: Thank you for the game.\n\tjbj77: Thank you. It was fun. It was unexpected when you blew up half of my homeworld. You had me scared for a little bit.\n\tUglyfoot: I just couldn't get the momentum back toweard your system. I am working on improving my play...\n\tjbj77: Yah, I think you sacrificed too much to blow me up.\n\n\nHomeworlds Online (SDG# 5893)\nStarted: 2007.1.12, Ended: 2007.1.22\nParticipants: zoltar (S), jbj77 (N)\nWinner: jbj77\n\n1) jbj77: Homeworld Y1 B2 G3\n\n2) zoltar:\nHomeworld B3 Y1 G3\n\tzoltar: h b3 y1 g3\n\n3) jbj77: Build G1 Jbj77\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n5) jbj77: Trade G1 Y1 Jbj77\n\tzoltar: Oops! I keep putting the moves in the wrong field!\n\n6) zoltar: Trade G3 Y3 Zoltar\n\tjbj77: Np problem. I thought you just wanted to make doubly sure I knew what move you were making.\n\n7) jbj77: Build Y2 Jbj77\n\n8) zoltar: Build Y2 Zoltar\n\n9) jbj77: Trade Y2 R2 Jbj77\n\n10) zoltar: Trade Y2 R2 Zoltar\n\n11) jbj77: Build Y2 Jbj77\n\n12) zoltar: Build Y2 Zoltar\n\n13) jbj77: Discover Y2 Jbj77 B3 Alpha\n\n14) zoltar: Discover Y2 Zoltar G2 Greenbelt\n\n15) jbj77: Build G1 Jbj77\n\n16) zoltar: Build G1 Zoltar\n\n17) jbj77: Move G1 Jbj77 Alpha\n\n18) zoltar: Trade G1 B1 Zoltar\n\n19) jbj77: Build R1 Jbj77\n\n20) zoltar: Build R1 Zoltar\n\n21) jbj77: Trade R1 B1 Jbj77\n\n22) zoltar: Move B1 Zoltar Greenbelt\n\n23) jbj77: Build G1 Alpha\n\n24) zoltar: Build G2 Zoltar\n\n25) jbj77: Build G2 Alpha\n\n26) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Greenbelt\n\n27) jbj77: Sacrifice G2 Alpha\nBuild Y3 Alpha\nBuild G2 Jbj77\n\n28) zoltar: Trade Y3 G3 Zoltar\n\n29) jbj77: Discover Y2 Alpha G2 Gamma\n\n30) zoltar: Sacrifice Y2 Greenbelt\nDiscover G1 Zoltar B2 Beta\nMove Y2 Zoltar Beta\n\tjbj77: Oops, I guess I skipped beta. So much for my predictable names.\n\n31) jbj77: Sacrifice G3 Jbj77\nBuild G3 Jbj77\nBuild Y2 Alpha\nBuild Y3 Gamma\n\tzoltar: I seem to be falling behind! I think I'm in trouble.\n\n32) zoltar: Build G3 Zoltar\n\tjbj77: We'll see whether I can keep this slim edge.\n\n33) jbj77: Discover B1 Jbj77 R3 Delta\n\n34) zoltar: Move R2 Zoltar Greenbelt\n\n35) jbj77: Trade G1 R1 Alpha\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G1 Zoltar\nBuild G3 Beta\nBuild R1 Greenbelt\n\n37) jbj77: Move Y3 Gamma Delta\n\tjbj77: I hated to lose that green.\n\n38) zoltar: Discover R1 Greenbelt B1 Blueberry\n\n39) jbj77: Move B1 Delta Gamma\n\n40) zoltar: Sacrifice G3 Beta\nBuild R2 Zoltar\nBuild R3 Blueberry\nBuild R3 Greenbelt\n\n41) jbj77: Sacrifice G3 Jbj77\nBuild G3 Jbj77\nBuild B2 Gamma\nBuild B3 Gamma\n\n42) zoltar: Sacrifice Y3 Greenbelt\nMove B1 Greenbelt Blueberry\nMove B1 Blueberry Gamma\nMove R3 Blueberry Gamma\nCatastrophe Gamma B\n\n43) jbj77: Sacrifice G3 Jbj77\nBuild G3 Jbj77\nBuild G3 Alpha\nBuild Y3 Delta\n\n44) zoltar: Attack Y2 Gamma\n\n45) jbj77: Move Y3 Delta Beta\n\tzoltar: This is useless; I think I'm toast no matter what, but this is my best try.\n\n\tzoltar: Ok, I have no chance. gg\n\tjbj77: Thanks for the great game. We'll have to have a rematch some time.\n\tzoltar: Ok. That would be great. I could have played longer, as I have the red ships, but your advantage with the Yellow, and you're eventually going to get the Blues again and blow up my star and I can't prevent it, so I figured it was hopeless.\n\tjbj77: Yah, I was really worried about you having all of the reds, but my plan was to deprive you of all yellows so you would be immobilized and couldn't really use your red advantage. I'm still not certain I would have won had you not resigned.\n\nHomeworlds Online (SDG# 5965)\nVariants: "Hard time"\nStarted: 2007.1.16, Ended: 2007.2.1\nParticipants: Kermit (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B1 Y3 G3\n\n2) Kermit: Homeworld G2 Y3 B3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) Kermit: Build B1 Kermit\n\n5) Uglyfoot: Discover G1 Uglyfoot B2 Amex\n\n6) Kermit: Trade B1 G1 Kermit\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) Kermit: Discover G1 Kermit Y1 Nymex\n\n9) Uglyfoot: Build G2 Amex\n\n10) Kermit: Build G2 Nymex\n\n11) Uglyfoot: Trade G2 Y2 Amex\n\n12) Kermit: Build B1 Kermit\n\n13) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Amex\n\n14) Kermit: Discover G1 Nymex B2 Nyse\n\n15) Uglyfoot: Move G2 Uglyfoot Nyse\n\tAaron: Howdy...what seems to be the problem?\n\tKermit: well I was trying to do the following... sac g2 nymex ~ b g2 amex ~ b g3 amex ~ Cat amex green but i get the error that I cannot build in amex. I should be able to after I sacrifice. (or so i thought.\n\tKermit: I would still like to do that even though I should have done it in his home system (hint/warning to Uglyfoot)\n\tKermit: I just realized the bit about his home system but will stick with my original intended move since if it had executed i wouldn't be able to take it back now.\n\tAaron: I'm afraid you are misunderstanding how green sacrifices work. You don't own any ships in Amex, therefore you can't build there, no matter the sacrifice. The sacrifice simply lets you build in other sectors, but only sectors where you already own a ship of the appropriate colour (such as blue in Kermit). Page me again if this is unclear or if you have other questions. Cheers!\n\n16) Kermit: Sacrifice G2 Nymex\nBuild G2 Nyse\nBuild G3 Nyse\nCatastrophe Nyse Green\n\n17) Uglyfoot: Discover G3 Amex R1 Mars\n\n18) Kermit: Build B1 Kermit\n\n19) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Amex\nBuild G2 Mars\nBuild G2 Uglyfoot\n\n20) Kermit: Discover B1 Kermit Y1 Apollo\n\tKermit: btw i didn't mean to sound like a pompous ass earlier. i just didn't know how much experience you had with the game. One time I played a multi game (which I prefer to the binary) and when I used sacrifice two of the players quit because They thought I was being mean (they were new to the game, I didn't know). now i realize you know what you're doing so nevermind me.\n\tUglyfoot: Don't worry about it. I have a rather thick skin (& skull ;> ). I also realize that I am the worst player of Homeworlds on the site and will listen to any advice. It HAS to be better than mine...\n\n21) Uglyfoot: Sacrifice G3 Mars\nBuild G3 Mars\nBuild G3 Uglyfoot\nBuild G3 Amex\n\n22) Kermit: Build B2 Kermit\n\tKermit: I don't do as well in binary homeworlds. I have won the multi-game once or twice. The sacrifice is often the key ( for instance when you had three green ships at your home were I able to sac a yellow to make multiple moves it would have been the game. Another strategy is to move a small green to a 3 pip piece of another color just as storeage and when tht color is all gone you can sac the green 1 pip and build a 3 pip anywhere on the board you have a ship of that color.\n\tKermit: but seeing those opportunities ahead of time is the trick. I don't always do that so well\n\n23) Uglyfoot: Trade G3 B3 Amex\n\n24) Kermit: Trade B3 Y3 Kermit\n\n25) Uglyfoot: Move B3 Amex Apollo\n\n26) Kermit: Trade B1 R1 Kermit\n\n27) Uglyfoot: Trade G1 R1 Uglyfoot\n\n28) Kermit: Trade B1 G1 Apollo\n\n29) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild R2 Uglyfoot\nBuild B1 Apollo\n\n30) Kermit: Build G3 Apollo\n\n31) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack G3 Apollo\nAttack G1 Apollo\n\n32) Kermit: Build B1 Kermit\n\n33) Uglyfoot: Move B3 Apollo Kermit\n\n34) Kermit: Trade Y3 R3 Kermit\n\n35) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R3 Kermit\n\tKermit: Ouch, I seriously misread the rules on attacks. Oh well. From here on down its all uphill.\n\n\tUglyfoot: did you guess it?\r\n\n\tKermit: nope...I thought you were going to move the other b1 in and catostrophe the blues. I thought you were going to do that or something like it a while back (with the 2 pip yellow). If I had thought of that I could have done the same with my 1 pip red. ( a sign i wasn't thinking that way)\n\tKermit: in any case my BIGGEST mistake was sacrificing my greens for the catastrophe wayyyy back and allowing you to build so many I couldn't really get back into the game. \n\tKermit: Good game.\n\tUglyfoot: Thanks for the game!\n\nHomeworlds Online (SDG# 5980)\nStarted: 2007.1.16, Ended: 2007.1.19\nParticipants: MatrixFrog (S), papa_bear (N)\nWinner: papa_bear\n\n1) papa_bear: Homeworld B2 Y1 G3\n\n2) MatrixFrog: Homeworld B3 G1 Y3\n\tpapa_bear: If you choose to accept Castle Danger, it is unrated I have set it for you to play first player, which is a significant advantage. I am also prepared to suggest undos in case of serious mistakes, especially in the opening. Certain mistakes which are bad enough to ruin a game can nevertheless be difficult for new players to spot. If you accept it and prefer for me to keep my suggestions to myself, I can do that too :) Finally, if for any reason you'd rather not accept that challenge, there would be no hard feelings.\n\tMatrixFrog: I'm a little busy for a few days. I'll read the rules sometime this weekend probably and get that started.\n\n3) papa_bear: Build G1 Papa_bear\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) papa_bear: Build G1 Papa_bear\n\n6) MatrixFrog: Discover Y1 Matrixfrog G2 Mat\n\n7) papa_bear: Discover G1 Papa_bear R3 Bet\n\n8) MatrixFrog: Build Y1 Matrixfrog\n\n9) papa_bear: Build G2 Papa_bear\n\n10) MatrixFrog: Build Y2 Matrixfrog\n\n11) papa_bear: Trade G2 Y2 Papa_bear\n\n12) MatrixFrog: Discover Y1 Mat G3 Rix\n\n13) papa_bear: Move Y2 Papa_bear Bet\n\n14) MatrixFrog: Build Y2 Rix\n\n15) papa_bear: Discover Y2 Bet G2 Gimmel\n\n16) MatrixFrog: Trade Y1 B1 Matrixfrog\n\tpapa_bear: How did you come up with the name MatrixFrog?\n\tMatrixFrog: i used to really like the movie, and then i played a frog in Honk\n\n17) papa_bear: Build G2 Papa_bear\n\n18) MatrixFrog: Trade Y2 G2 Matrixfrog\n\tpapa_bear: I'm afraid I'm unfamiliar with Honk. What is it?\r\n\r\nI enjoyed The Matrix, although I thought the sequels left a bit to be desired. Great action and sound effects, but the story grew in disappointing ways in the sequels.\n\tMatrixFrog: It's a musical based on the Ugly Duckling.\n\n19) papa_bear: Trade G1 B1 Papa_bear\n\n20) MatrixFrog: Move Y1 Rix Papa_bear\n\tpapa_bear: Ah... I must confess that musicals are mostly outside my familiarity. I did, in high school, participate in the "pit orchestra" for three of them. Apparently, shoving an adolescent marching band into a dark cave under a stage transforms them into an "orchestra" :)\n\tMatrixFrog: No, it doesn't. You also need to have music stands and pencils and wear black. THEN you're an orchestra.\n\n21) papa_bear: Move Y2 Gimmel Rix\n\tpapa_bear: Aha! I knew we weren't an orchestra. We didn't wear black.\r\n\r\nGuys and Dolls, Anything Goes, Oklahoma. I've never actually seen any of them, because the view from the pit was no good.\n\n22) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild Y1 Papa_bear\nBuild Y2 Papa_bear\nCatastrophe Papa_bear Y\n\n23) papa_bear: Sacrifice Y2 Rix\nMove B1 Papa_bear Matrixfrog\nMove G1 Bet Papa_bear\n\tpapa_bear: Argh.\n\n24) MatrixFrog: Trade B1 R1 Matrixfrog\n\n25) papa_bear: Build B1 Matrixfrog\n\n26) MatrixFrog: Build Y1 Matrixfrog\n\tMatrixFrog: I think perhaps t y3 r3 matrixfrog is what I should have done.\n\n27) papa_bear: Build B1 Matrixfrog\nCatastrophe Matrixfrog Blue\n\tpapa_bear: Probably. I would likely have sacrificed my g2 to get the catastrophe, but then you'd be standing better anyway.\n\n28) MatrixFrog: Discover Y1 Matrixfrog B3 Frog\n\n29) papa_bear: Trade G2 Y2 Papa_bear\n\n30) MatrixFrog: Build Y1 Rix\n\n31) papa_bear: Build G1 Papa_bear\n\n32) MatrixFrog: Build Y1 Matrixfrog\n\n33) papa_bear: Sacrifice Y2 Papa_bear\nMove G1 Papa_bear Matrixfrog\nMove G1 Papa_bear Matrixfrog\n\n34) MatrixFrog: Attack G1 Matrixfrog\n\n35) papa_bear: Build G2 Matrixfrog\nCatastrophe Matrixfrog Green\n\tpapa_bear: Thanks for another great game. Feel free to send another if you like.\n\n\nHomeworlds Online (SDG# 5901)\nStarted: 2007.1.17, Ended: 2007.1.28\nParticipants: zoltar (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\tclockwise: Hello, I anticipate being soundly beaten, but will try to put up a valiant struggle. \n\n3) clockwise: Build G1 Clockwise\n\tzoltar: Good luck, then!\n\n4) zoltar: Build G1 Zoltar\n\n5) clockwise: Trade G1 B1 Clockwise\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) clockwise: Build B1 Clockwise\n\n8) zoltar: Build Y1 Zoltar\n\n9) clockwise: Discover B1 Clockwise G3 Smurftopia\n\n10) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n11) clockwise: Build B2 Clockwise\n\n12) zoltar: Build Y1 Greenbelt\n\tclockwise: Hmm, I just saw a bad wrinkle in plan A, enacting plan B, possibly just as foolhardy.\n\n13) clockwise: Discover B2 Clockwise Y3 Umbrella\n\n14) zoltar: Build Y2 Zoltar\n\n15) clockwise: Build B2 Smurftopia\n\n16) zoltar: Discover Y1 Greenbelt B3 Blueridge\n\n17) clockwise: Trade B2 Y2 Smurftopia\n\n18) zoltar: Trade Y2 B2 Zoltar\n\tclockwise: I'm not sure if this is a good idea or not, but I seem to have painted myself into a bit of a corner... we'll see how it turns out.\n\n19) clockwise: Build B2 Smurftopia\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blueridge\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\tclockwise: Sorry for the undo, need to think about this a bit longer\n\n21) clockwise: Discover B2 Smurftopia G2 Earth\n\n22) zoltar: Move B2 Zoltar Greenbelt\n\tzoltar: No problem. \n\n23) clockwise: Build B3 Earth\n\n24) zoltar: Trade Y1 R1 Greenbelt\n\tzoltar: Now I need to think longer!\n\n25) clockwise: Sacrifice B2 Umbrella\nTrade B3 Y3 Earth\nTrade B1 R1 Clockwise\n\n26) zoltar: Trade Y1 G1 Zoltar\n\n27) clockwise: Build R2 Clockwise\n\tclockwise: \n\tclockwise: I need to think about this position, but probably won't have time to sit down with it until Wed evening.\n\n28) zoltar: Build R2 Greenbelt\n\n29) clockwise: Build Y1 Earth\n\n30) zoltar: Trade Y1 G1 Blueridge\n\n31) clockwise: Move Y3 Earth Blueridge\n\n32) zoltar: Move Y3 Greenbelt Smurftopia\n\n33) clockwise: Build Y1 Smurftopia\n\n34) zoltar: Sacrifice B2 Greenbelt\nTrade Y3 R3 Smurftopia\nTrade Y3 G3 Zoltar\n\n35) clockwise: Sacrifice Y2 Smurftopia\nDiscover Y1 Smurftopia G2 Flight\nMove B1 Smurftopia Flight\n\n\tzoltar: Yeah, it's hopeless. gg.\n\tclockwise: Thanks for the game!\n\nHomeworlds Online (SDG# 5999)\nStarted: 2007.1.20, Ended: 2007.2.11\nParticipants: eriinfo (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B1 Y2 G3\n\n2) eriinfo: Homeworld B3 Y1 G3\n\tUglyfoot: greetings and good luck\r\n\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) eriinfo: Build G1 Eriinfo\n\n5) Uglyfoot: Discover G1 Uglyfoot R3 Defender\n\n6) eriinfo: Discover G1 Eriinfo B2 Cire\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) eriinfo: Build G2 Eriinfo\n\n9) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Defender\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\n\teriinfo: Sorry I did not see your earlier message, as this is my first time playing online. Good luck to you as well.\n\n10) eriinfo: Build G3 Cire\n\n11) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n12) eriinfo: Trade G2 B2 Eriinfo\n\n13) Uglyfoot: Move Y2 Uglyfoot Defender\n\n14) eriinfo: Build G2 Eriinfo\n\n15) Uglyfoot: Move G2 Defender Cire\n\n16) eriinfo: Trade G1 R1 Cire\n\n17) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Cire\nBuild G2 Defender\nBuild G3 Uglyfoot\n\n18) eriinfo: Attack G2 Cire\n\n19) Uglyfoot: Move G1 Defender Cire\nCatastrophe Cire G\n\n20) eriinfo: Move G2 Eriinfo Cire\n\n21) Uglyfoot: Build G1 Defender\n\n22) eriinfo: Build G1 Eriinfo\n\n23) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Defender\n\n24) eriinfo: Trade G1 R1 Eriinfo\n\n25) Uglyfoot: Move G3 Defender Cire\n\n26) eriinfo: Build G1 Eriinfo\n\n27) Uglyfoot: Trade G2 R2 Uglyfoot\n\n28) eriinfo: Trade G2 Y2 Cire\n\n29) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack Y2 Cire\nAttack R1 Cire\n\n30) eriinfo: Trade G1 Y1 Eriinfo\n\n31) Uglyfoot: Build G1 Cire\n\n32) eriinfo: Build R1 Eriinfo\n\n33) Uglyfoot: Trade G1 B1 Cire\n\n34) eriinfo: Discover R1 Eriinfo G2 Rice\n\n35) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Cire\nBuild G2 Cire\nBuild G3 Uglyfoot\n\n36) eriinfo: Build R2 Eriinfo\n\n37) Uglyfoot: Trade G3 Y3 Cire\n\n38) eriinfo: Move Y1 Eriinfo Rice\n\n39) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Cire\nBuild R2 Cire\n\n40) eriinfo: Move R1 Eriinfo Rice\n\n41) Uglyfoot: Move G3 Cire Eriinfo\n\n42) eriinfo: Attack G3 Eriinfo\n\n43) Uglyfoot: Sacrifice Y2 Cire\nMove G1 Cire Eriinfo\nMove G2 Cire Eriinfo\nCatastrophe Eriinfo G\n\n44) eriinfo: Trade B2 G2 Eriinfo\n\n45) Uglyfoot: Move Y3 Cire Eriinfo\n\n46) eriinfo: Build R2 Eriinfo\n\n47) Uglyfoot: Sacrifice R2 Cire\nAttack R2 Eriinfo\nAttack R2 Eriinfo\n\n48) eriinfo: Move R1 Rice Eriinfo\n\n49) Uglyfoot: Sacrifice R2 Eriinfo\nAttack G2 Eriinfo\nAttack R1 Eriinfo\n\n\tUglyfoot: Thanks for the game.\r\n\n\teriinfo: Thank you, I had fun.\n\nHomeworlds Online (SDG# 6014)\nVariants: "Hard time"\nStarted: 2007.1.20, Ended: 2007.6.13\nParticipants: jeep (S), eriinfo (N)\nWinner: jeep\n\n1) eriinfo: Homeworld Y3 B1 G3\n\n2) jeep: Homeworld Y1 B2 G3\n\tjeep: Hello. Good luck.\n\n3) eriinfo: Build G1 Eriinfo\n\n4) jeep: Build G1 Jeep\n\n5) eriinfo: Trade G1 B1 Eriinfo\n\n6) jeep: Trade G1 B1 Jeep\n\n7) eriinfo: Build B2 Eriinfo\n\n8) jeep: Build B2 Jeep\n\n9) eriinfo: Discover B2 Eriinfo G2 Wise\n\n10) jeep: Trade B2 Y2 Jeep\n\teriinfo: Sorry I did not see your message earlier, as this is my first time playing online. Good luck to you as well.\n\n11) eriinfo: Build G1 Eriinfo\n\n12) jeep: Discover B1 Jeep Y3 Cowardly\n\n13) eriinfo: Trade G1 R1 Eriinfo\n\n14) jeep: Build Y1 Jeep\n\n15) eriinfo: Trade B2 Y2 Wise\n\n16) jeep: Build G1 Jeep\n\n17) eriinfo: Build Y1 Wise\n\n18) jeep: Discover Y1 Jeep Y3 Lion\n\n19) eriinfo: Build G1 Eriinfo\n\n20) jeep: Trade G1 R1 Jeep\n\n21) eriinfo: Discover Y2 Wise G3 Owl\n\n22) jeep: Build G1 Jeep\n\n23) eriinfo: Build Y2 Wise\n\n24) jeep: Move G1 Jeep Cowardly\n\n25) eriinfo: Move B1 Eriinfo Wise\n\n26) jeep: Build B2 Cowardly\n\n27) eriinfo: Move B1 Wise Owl\n\n28) jeep: Build G1 Jeep\n\n29) eriinfo: Discover G1 Eriinfo B2 Cire\n\n30) jeep: Discover B1 Cowardly G2 Tin\n\n31) eriinfo: Build B3 Owl\n\n32) jeep: Build B3 Tin\n\n33) eriinfo: Build G2 Cire\n\n34) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild B3 Cowardly\nBuild R1 Jeep\n\n35) eriinfo: Build R2 Eriinfo\n\teriinfo: No problem. Get better.\n\n36) jeep: Trade B3 R3 Tin\n\n37) eriinfo: Move R1 Eriinfo Cire\n\n38) jeep: Move G1 Jeep Lion\n\n39) eriinfo: Move B1 Owl Cire\n\n40) jeep: Build B3 Tin\n\n41) eriinfo: Build R2 Cire\n\n42) jeep: Move Y1 Lion Tin\n\n43) eriinfo: Move Y2 Wise Lion\n\n44) jeep: Move R1 Jeep Cowardly\n\n45) eriinfo: Move Y2 Owl Cire\n\n46) jeep: Move G1 Lion Jeep\n\n47) eriinfo: Move G1 Cire Eriinfo\n\n48) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild R2 Tin\nBuild R3 Jeep\n\n49) eriinfo: Build R3 Eriinfo\n\n50) jeep: Move G3 Jeep Lion\n\n51) eriinfo: Move G2 Cire Owl\n\n52) jeep: Sacrifice R1 Jeep\nAttack Y2N Lion\n\n53) eriinfo: Move R2 Cire Owl\n\n54) jeep: Move Y2 Lion Tin\n\n55) eriinfo: Move Y2 Cire Owl\n\n56) jeep: Discover Y1 Tin R1 Baron\n\n57) eriinfo: Move G2 Owl Wise\n\n58) jeep: Sacrifice G3 Lion\nBuild Y3 Baron\nBuild G3 Cowardly\nPass\n\n59) eriinfo: Move Y1 Wise Owl\n\n60) jeep: Move B3 Cowardly Wise\n\n61) eriinfo: Move Y1 Owl Cire\n\n62) jeep: Move R1 Cowardly Wise\n\n63) eriinfo: Sacrifice R1 Cire\nAttack R1 Wise\n\n64) jeep: Sacrifice R2 Tin\nAttack R1N Wise\nAttack G2N Wise\n\n65) eriinfo: Move G1 Eriinfo Cire\n\n66) jeep: Sacrifice G3 Cowardly\nBuild G3 Cowardly\nBuild R1 Wise\nBuild R2 Jeep\n\n67) eriinfo: Move R3 Eriinfo Cire\n\n68) jeep: Move Y1 Baron Wise\n\n69) eriinfo: Move R3 Cire Owl\n\n70) jeep: Sacrifice Y3 Baron\nMove R1 Wise Owl\nMove R1 Wise Owl\nDiscover G2 Wise Y3 Bank\nCatastrophe Owl Red\n\n71) eriinfo: Move G1 Cire Bank\n\n72) jeep: Sacrifice R2 Jeep\nAttack G1N Bank\nPass\n\n73) eriinfo: Build R1 Eriinfo\n\n74) jeep: Move G1 Bank Wise\n\n75) eriinfo: Move R1 Eriinfo Wise\n\n76) jeep: Sacrifice G3 Cowardly\nBuild G3 Cowardly\nBuild R1 Tin\nBuild R1 Jeep\n\n77) eriinfo: Attack Y1 Wise\n\n78) jeep: Sacrifice R3 Tin\nAttack Y1N Wise\nAttack R1N Wise\nPass\n\n79) eriinfo: Move Y2 Owl Cire\n\n80) jeep: Move G3 Cowardly Cire\n\n81) eriinfo: Move Y2 Cire Cowardly\n\tjeep: Sorry, thought one thing, typed another.\n\n82) jeep: Sacrifice R3 Jeep\nAttack Y2N Cowardly\nAttack Y1N Cire\nAttack B1N Cire\n\n83) eriinfo: Discover R2 Eriinfo R2 Rice\n\n84) jeep: Sacrifice G3 Cire\nBuild G3 Jeep\nBuild R2 Tin\nBuild R3 Wise\n\n\tjeep: Thanks for the game.\n\nHomeworlds Online (SDG# 6114)\nVariants: "Hard time"\nStarted: 2007.1.24, Ended: 2007.2.11\nParticipants: antihero (S), Personman (N)\nWinner: antihero\n\n1) Personman: Homeworld B2 Y3 G3\n\n2) antihero: Homeworld B1 Y2 G3\n\n3) Personman: Build G1 Personman\n\n4) antihero: Build G1 Antihero\n\n5) Personman: Trade G1 Y1 Personman\n\n6) antihero: Build G1 Antihero\n\n7) Personman: Build G1 Personman\n\n8) antihero: Trade G1 Y1 Antihero\n\n\nHomeworlds Online (SDG# 6167)\nStarted: 2007.1.27, Ended: 2007.4.23\nParticipants: jan (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y2 G3\n\n2) jan: Homeworld G2 Y3 B3\n\tKeith: Hello jan. Welcome to SDG and have a good game.\n\tjan: Hey Kieth, i am excited to try this. i have played the table top version of homeworlds before. i think im getting how to write orders. thanks jan\n\tjan: Kieth, Do you know why i am getting the message that there are no G2 or Y3pieces in the stash left?\n\tKeith: That is a mystery to me. My order looked like this:\r\n\r\nhomeworld b1 y2 g3\n\n3) Keith: Build G1 Keith\n\n4) jan: Build B1 Jan\n\tjan: hey thanks i got it! is there a way to name your systems? also what does the setting 2/2/8 mean? \n\n5) Keith: Discover G1 Keith Y3 Midworld\n\tKeith: Whenever you discover a new system you will get to name it. For example "discover g1 keith y3 Midworld"\n\n6) jan: Build B1 Jan\n\tKeith: The 2/2/8 means you start with two days to make a move, each move adds to days to your remaining time, the maximum is 8 days. That way if you run into an emergency or even take a week off you don't run out of time to move. Though I won't force a surrender if I know the other player needs extra time.\n\n7) Keith: Build G1 Keith\n\n8) jan: Trade B1 G1 Jan\n\n9) Keith: Trade G1 B1 Keith\n\tjan: hey Kieth i saw someone posted a homeworlds challenge that says "hard time" and ladder challenge or something and it didn't have a join game option on the right do you know what this means?\n\n10) jan: Build B2 Jan\n\n11) Keith: Build B2 Keith\n\tKeith: There is a Homeworlds ladder. Sort of like an ongoing king of the hill competition Homeworlds style. GreedyAlgorithm has directly challenged eugman to a match. Hard time means there would be an automatic forfeit if someone ran out of time to make their move.\n\n12) jan: Discover B2 Jan G1 Gio\n\n13) Keith: Trade B1 Y1 Keith\n\n14) jan: Build G2 Jan\n\n15) Keith: Build G2 Midworld\n\n16) jan: Discover G1 Jan B1 Droo\n\n17) Keith: Build G3 Keith\n\n18) jan: Build G3 Droo\n\n19) Keith: Move B2 Keith Midworld\n\n20) jan: Trade G3 R3 Droo\n\n21) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild G3 Midworld\nBuild Y1 Keith\n\n22) jan: Trade B2 Y2 Gio\n\n23) Keith: Trade G1 R1 Midworld\n\n24) jan: Move B1 Jan Gio\n\n25) Keith: Discover G2 Midworld Y1 Darebase\n\n26) jan: Build R1 Droo\n\n27) Keith: Build R1 Midworld\n\n28) jan:\nBuild Y2 Gio\n\n29) Keith: Move Y1 Keith Midworld\n\n30) jan: Discover Y2 Gio B3 Fenu\n\n31) Keith: Move R1 Midworld Droo\n\n32) jan: Trade R1 G1 Droo\n\n33) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild R1 Droo\nBuild R2 Droo\nCatastrophe Droo Red\n\n34) jan: Build Y3 Gio\n\n35) Keith: Move Y1 Midworld Gio\n\n36) jan: Trade G2 R2 Jan\n\n37) Keith: Sacrifice G2 Darebase\nBuild Y1 Gio\nBuild R1 Midworld\nCatastrophe Gio Yellow\n\n38) jan: Build G2 Droo\n\n39) Keith: Move G3 Midworld Droo\nCatastrophe Droo Green\n\tjan: that looks a little more reasonable ...\n\tKeith: The homeworld yellow catastrophe would have been a disadvantage for me but not as much as my being able to put a g3 in your home system backed by an r1. Now that you have a red backup I better do something about the yellow situation.\n\n40) jan: Build R1 Jan\n\n41) Keith: Move G3 Keith Fenu\n\n42) jan: Move Y2 Fenu Gio\n\n43) Keith: Build G1 Keith\n\n44) jan: Build Y1 Gio\n\n45) Keith: Sacrifice Y1 Keith\nMove G3 Fenu Gio\n\n46) jan: Discover Y2 Gio G3 Eden\n\tjan: well i guess so\n\n47) Keith: Sacrifice R1 Midworld\nAttack B1 Gio\n\n48) jan: Sacrifice R1 Jan\nAttack B1 Gio\n\n49) Keith: Sacrifice R1 Midworld\nAttack B1 Gio\n\n50) jan: Build B1 Jan\n\n51) Keith: Trade G1 R1 Keith\n\n52) jan: Move Y1 Gio Eden\n\n53) Keith: Trade G3 Y3 Gio\n\n54) jan: Trade B3 G3 Jan\n\n55) Keith: Build G1 Keith\n\n56) jan: Build B2 Jan\n\n57) Keith: Move G1 Keith Midworld\n\n58) jan: Sacrifice B1 Jan\nTrade Y1 B1 Eden\n\n59) Keith: Build G1 Keith\n\n60) jan: Sacrifice Y2 Eden\nMove B1 Eden Keith\nMove R2 Jan Gio\n\n61) Keith: Sacrifice R1 Keith\nAttack R2 Gio\n\n62) jan: Build B2 Jan\n\n63) Keith: Sacrifice G3 Keith\nBuild G2 Midworld\nBuild G2 Midworld\nBuild G3 Keith\n\n64) jan: Trade B2 R2 Jan\n\n65) Keith: Sacrifice R2 Gio\nAttack B1 Keith\nPass\n\n66) jan: Build B2 Jan\n\n67) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild B3 Gio\nBuild B3 Midworld\n\n68) jan: Discover B2 Jan Y1 Elf\n\n69) Keith: Move G1 Midworld Gio\n\n70) jan: Move B2 Elf Midworld\n\n71) Keith: Sacrifice Y3 Gio\nMove B3 Gio Jan\nMove G1 Gio Jan\nMove B1 Gio Jan\n\n72) jan: Attack B3 Jan\n\n73) Keith: Sacrifice G2 Midworld\nBuild G1 Jan\nBuild B3 Jan\nCatastrophe Jan Green\nCatastrophe Jan Blue\n\n74) jan: Discover B2 Midworld G1 Goblin\n\n75) Keith: Trade B3 R3 Midworld\n\n76) jan: Trade B2 Y2 Goblin\n\n77) Keith: Move G3 Keith Jan\n\n78) jan: Build Y1 Goblin\n\n79) Keith: Sacrifice R3 Midworld\nAttack R2 Jan\nPass\nPass\n\tjan: sorry my internet has been down \n\tKeith: Glad to see you made it back and that it was not something like your health going down.\n\n\tjan: good game\n\tjan: i will start a new life on the lovely planet of goblin\n\tKeith: Thank you for the game. Have you thought about joining the Ladder?\n\tjan: Im afraid im a poor play by internet player. i find that i am constantly getting sucked up into other aspects of life and keep going over time.\r\n\n\tKeith: Your going overtime was not a problem for me. Perhaps we will have that SDG face to face gathering some day and you can have at me in real time.\n\nHomeworlds Online (SDG# 6174)\nVariants: "Hard time"\nStarted: 2007.1.28, Ended: 2007.2.25\nParticipants: eugman (S), GreedyAlgorithm (N)\nWinner: eugman\n\n1) GreedyAlgorithm: Homeworld Y1 B2 G3\n\n2) eugman: Homeworld B3 G2 Y3\n\tGreedyAlgorithm: Hi. Keith suggested I join the ladder, so here I am. Have fun!\n\teugman: Haven't played in a while so I may be rusty at first.\r\n\n\n3) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n4) eugman: Build Y1 Eugman\n\n5) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n6) eugman: Discover Y1 Eugman G1 Newireland\n\n7) GreedyAlgorithm: Discover G1 Greedyalgorithm Y3 Motieprime\n\n8) eugman: Build Y1 Eugman\n\n9) GreedyAlgorithm: Sacrifice G3 Greedyalgorithm\nBuild G2 Motieprime\nBuild G2 Greedyalgorithm\nBuild G3 Greedyalgorithm\n\teugman: Talk about last minute decision.\n\n10) eugman: Trade Y3 G3 Eugman\n\n11) GreedyAlgorithm: Trade G2 Y2 Greedyalgorithm\n\n12) eugman: Build Y2 Newireland\n\n\nHomeworlds Online (SDG# 6182)\nStarted: 2007.1.29, Ended: 2007.2.13\nParticipants: clockwise (S), GreedyAlgorithm (N)\nWinner: clockwise\n\n1) GreedyAlgorithm: Homeworld Y1 B2 G3\n\n2) clockwise: Homeworld B3 G1 Y3\n\n3) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n4) clockwise: Build Y1 Clockwise\n\n5) GreedyAlgorithm: Trade G1 B1 Greedyalgorithm\n\n6) clockwise: Build Y1 Clockwise\n\n7) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n8) clockwise: Trade Y3 G3 Clockwise\n\n9) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n10) clockwise: Build G2 Clockwise\n\n11) GreedyAlgorithm: Discover G1 Greedyalgorithm Y3 Tosystem\n\n12) clockwise: Discover G2 Clockwise Y2 Gyro\n\n13) GreedyAlgorithm: Build G2 Tosystem\n\n14) clockwise: Build Y2 Clockwise\n\n15) GreedyAlgorithm: Move G2 Tosystem Gyro\n\n16) clockwise: Discover G2 Gyro G3 Denial\n\n17) GreedyAlgorithm: Sacrifice G3 Greedyalgorithm\nBuild G2 Gyro\nBuild G3 Greedyalgorithm\nBuild B1 Greedyalgorithm\n\tclockwise: I should have paid more attention in the opening...\n\n18) clockwise: Sacrifice Y1 Clockwise\nMove G2 Denial Greedyalgorithm\n\n19) GreedyAlgorithm: Sacrifice G2 Gyro\nBuild G2 Tosystem\nBuild G3 Gyro\n\n20) clockwise: Trade G2 B2 Greedyalgorithm\nCatastrophe Greedyalgorithm Blue\n\n21) GreedyAlgorithm: Discover G2 Tosystem B2 Blue\n\n22) clockwise: Discover Y1 Clockwise G2 Hovercraft\n\n23) GreedyAlgorithm: Trade G2 R2 Blue\n\n24) clockwise: Sacrifice G3 Clockwise\nBuild Y1 Hovercraft\nBuild Y2 Hovercraft\nBuild Y3 Clockwise\n\n25) GreedyAlgorithm: Move G3 Gyro Clockwise\n\n26) clockwise: Sacrifice Y3 Clockwise\nMove Y1 Hovercraft Greedyalgorithm\nMove Y1 Hovercraft Greedyalgorithm\nMove Y2 Hovercraft Greedyalgorithm\nCatastrophe Greedyalgorithm Yellow\n\tGreedyAlgorithm: What is correct etiquette at SDG, to resign like chess or play to the end like Warcraft?\n\tclockwise: I'm not entirely sure, this is only my third game on SDG. In my game against Zoltar (who has been around awhile) he resigned quite early in the endgame.\n\tclockwise: My own feeling is that Homeworlds is very unforgiving of mistakes so playing to the end is pretty reasonable.\n\tclockwise: Thanks for the game, I thought you had me for a while there!\n\tGreedyAlgorithm: Yeah, I'm not sure how I missed the blue catastrophe. But it is _very_ unforgiving. :)\n\tGreedyAlgorithm: Good game!\n\n\nHomeworlds Online (SDG# 6204)\nStarted: 2007.1.30, Ended: 2007.2.6\nParticipants: dsheldon (S), wmreed (N)\nWinner: dsheldon\n\n1) wmreed: Homeworld B2 G1 Y3\n\n2) dsheldon: Homeworld B3 R2 G3\n\twmreed: Interesting that the north seat is at the bottom. Or does the game orient itself to me? Hmm. This will take some getting used to. I'm new to SuperDuper, and Homeworlds! LOL.\n\tdsheldon: Yes, you are always at the bottom and your pieces always point up.\n\n3) wmreed: Trade Y3 R3 Wmreed\n\n4) dsheldon: Build G1 Dsheldon\n\n5) wmreed: Build R1 Wmreed\n\tdsheldon: You said you were new to both SDG and Homeworlds, right? Would you like me to try and teach you some strategy? I can't guarantee that it will be great; even though I've been playing Homeworlds for a long time, I don't play it very often.\r\n\r\nThat being said, I don't think your last move (G3->R3) was very good. Only in very rare situations do you want to do anything but build a second ship on your first regular move. If you're worried about my red star and are trying to defend yourself, don't be. Neither of us has the capacity to begin an offensive yet.\n\twmreed: Strategy hints will be much appreciated. I'll remember your suggestion here.\r\n\r\nNot really knowing what to do, I thought that I should have had a red to begin with (an error in my opening), and this was a way to get a large red before the game went too much farther.\n\n6) dsheldon: Trade G1 Y1 Dsheldon\n\tdsheldon: There are several schools of thought on that. Firstly (and the one I subscribe to, generally) is that red is among the least useful colors as it is only useful once you and your opponent are physically near each other. At this point neither of us could easily get our ship near each other, hence red is useless in the early game. All other colors are necessary for sustained growth and, therefore, you want to start with them.\r\n\r\nThe second school (which I'm trying out here) is that red has great defensive powers as a deterrent. As I have a red star I will always be able to defend myself in my homeworld. I also will probably have a large ship in my homeworld at most points in the game, making that defense even stronger.\r\n\r\nThe third school (and there may be more still) is that a red ship gives you a jump on the attack. This would probably only be greatly useful if you were able to engineer your homeworld to be closer than normal (say your opponent has a 1-2 world, like yours in this game. if you make a 3-3 world then they are actually adjacent. having a red ship in that case could be very advantageous).\r\n\r\nAt least, that's how I figure it.\n\n7) wmreed: Trade R1 Y1 Wmreed\n\n8) dsheldon: Build G1 Dsheldon\n\n9) wmreed: Discover Y1 Wmreed B3 Andy\n\n10) dsheldon: Discover G1 Dsheldon B1 Lichen\n\tdsheldon: That was a good change for your last move. Diversification of your Homeworld is a great way to start.\n\n11) wmreed: Build R1 Wmreed\n\n12) dsheldon: Build G1 Dsheldon\n\n13) wmreed: Trade R1 Y1 Wmreed\n\n14) dsheldon: Discover G1 Dsheldon B1 Tooth\n\n15) wmreed: Build Y2 Wmreed\n\n16) dsheldon: Build G2 Dsheldon\n\tdsheldon: You're in a pretty bad position here because you don't have any green ships. Early on, green is key because it's how you get more ships. There are also no small greens left, so you can't swap your other small ships to get greens that way. What I strongly recommend you do is build a medium yellow this turn and swap it for a medium green next turn. Otherwise I will rapidly overcome you in fleet size.\n\twmreed: I see. Thanks!\r\n\n\n17) wmreed: Trade Y2 G2 Wmreed\n\n18) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Lichen\nBuild G3 Tooth\nBuild G3 Dsheldon\n\n19) wmreed: Build G3 Wmreed\n\n20) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Dsheldon\nBuild Y2 Dsheldon\nBuild Y2 Dsheldon\n\n21) wmreed: Build Y2 Wmreed\n\n22) dsheldon: Sacrifice Y2 Dsheldon\nMove G1 Lichen Andy\nMove G1 Andy Wmreed\nCatastrophe Wmreed G\n\n23) wmreed: Move R3 Wmreed Tooth\n\n24) dsheldon: Sacrifice Y2 Dsheldon\nDiscover G3 Tooth Y3 Bus\nDiscover G1 Tooth Y3 Jerome\n\twmreed: nice move\r\n\n\n25) wmreed: Trade R3 Y3 Tooth\n\tdsheldon: Be careful now, losing one of the stars in your homeworld changes the shape of the board. Our homeworlds are now just two moves from each other instead of three.\r\n\r\nAlso, in case it wasn't already obvious, Catastrophies are the killer move of the game. Unlike Red actions, there's no chance to fight back. Catastrophies let you "move and shoot" all in one turn.\n\tdsheldon: Good move! Way to go on the aggressive.\n\twmreed: yeah, i know. i was so busy setting up a similar move on you that I wasn't paying attention to how many jumps away you were.\r\n\n\n26) dsheldon: Build G1 Lichen\n\n27) wmreed: Trade Y2 G2 Wmreed\n\n28) dsheldon: Move G1 Jerome Wmreed\n\tdsheldon: My next move will take a while, I have to go pick up my wife at work now.\n\n29) wmreed: Trade Y1 R1 Andy\n\n30) dsheldon: Trade G1 B1 Wmreed\n\n31) wmreed: Sacrifice Y1 Wmreed\nMove R1 Andy Wmreed\n\n32) dsheldon: Sacrifice G2 Dsheldon\nBuild B2 Wmreed\nBuild B2 Wmreed\nCatastrophe Wmreed B\n\n\tdsheldon: Good game. I look forward to playing against you again.\n\twmreed: Thank you!\r\n\n\nHomeworlds Online (SDG# 6227)\nStarted: 2007.1.30, Ended: 2007.2.22\nParticipants: Preacher (S), NateStraight (N)\nWinner: NateStraight\n\n1) NateStraight: Homeworld B3 G2 R3\n\n2) Preacher: Homeworld Y2 G1 B3\n\tNateStraight: Hey! :)\r\n\r\nI'm glad I started with Alien City before trying to play this game. I think I would have been scared away from the site entirely. I can see why they chose a command-line system instead of something simple like a drag-and-drop from the reserve, but it'll probably take me a minute to figure it out. :)\n\n3) NateStraight: Build R1 Natestraight\n\tPreacher: you get used to it pretty quickly :)\n\n4) Preacher: Build B1 Preacher\n\n5) NateStraight: Trade R1 Y1 Natestraight\n\n6) Preacher: Trade B1 R1 Preacher\n\n7) NateStraight: Discover Y1 Natestraight B1 Blue\n\n8) Preacher: Build R1 Preacher\n\n9) NateStraight: Trade Y1 G1 Blue\n\n10) Preacher: Trade R1 Y1 Preacher\n\n11) NateStraight: Build R1 Natestraight\n\n12) Preacher: Build B1 Preacher\n\n13) NateStraight: Trade R1 Y1 Natestraight\n\n14) Preacher: Trade B1 G1 Preacher\n\n15) NateStraight: Build G2 Blue\n\n16) Preacher: Discover G1 Preacher B3 Sol\n\n17) NateStraight: Trade G2 R2 Blue\n\n18) Preacher: Trade G1 Y1 Sol\n\n19) NateStraight: Build Y2 Natestraight\n\n20) Preacher: Build B1 Preacher\n\n21) NateStraight: Move Y2 Natestraight Blue\n\n22) Preacher: Build R1 Preacher\n\n23) NateStraight: Build Y2 Natestraight\n\n24) Preacher: Discover Y1 Preacher G3 Mars\n\n25) NateStraight: Build Y3 Blue\n\n26) Preacher: Build Y3 Mars\n\n27) NateStraight: Move Y2 Blue Sol\n\n28) Preacher: Move Y1 Mars Preacher\n\n29) NateStraight: Build Y3 Blue\n\n30) Preacher: Move R1 Preacher Mars\n\n31) NateStraight: Move R2 Blue Sol\n\n32) Preacher: Sacrifice Y3 Mars\nMove Y1 Sol Blue\nMove Y1 Preacher Sol\nMove Y1 Sol Blue\nCatastrophe Blue Yellow\n\n33) NateStraight: Trade Y2 G2 Sol\n\tNateStraight: Ahahahaha... that was fun. :p\n\n34) Preacher: Trade B1 Y1 Preacher\n\n35) NateStraight: Move Y1 Natestraight Blue\n\n36) Preacher: Build B1 Preacher\n\n37) NateStraight: Build R1 Sol\n\n38) Preacher: Build R2 Preacher\n\n39) NateStraight: Trade R2 Y2 Sol\n\n40) Preacher: Build R2 Mars\n\n41) NateStraight: Build G1 Sol\n\n42) Preacher: Move Y1 Preacher Mars\n\n43) NateStraight: Trade G2 B2 Sol\n\n44) Preacher: Move R1 Mars Blue\n\n45) NateStraight: Sacrifice Y1 Blue\nMove G1 Blue Sol\n\n46) Preacher: Build R2 Mars\n\n47) NateStraight: Build R3 Sol\n\n48) Preacher: Trade B3 Y3 Preacher\n\n49) NateStraight: Sacrifice Y2 Sol\nMove R1 Sol Preacher\nMove R3 Sol Preacher\nCatastrophe Preacher Red\n\n50) Preacher: Move R2 Mars Blue\n\n51) NateStraight: Trade B2 R2 Sol\n\n52) Preacher: Build Y1 Mars\n\n53) NateStraight: Build G2 Sol\n\n54) Preacher: Trade R2 G2 Blue\n\n55) NateStraight: Trade G2 Y2 Sol\n\n56) Preacher: Build G2 Blue\n\n57) NateStraight: Build Y1 Sol\n\n58) Preacher: Trade G2 R2 Blue\n\n59) NateStraight: Sacrifice Y2 Natestraight\nMove Y1 Sol Preacher\nMove Y2 Sol Preacher\nCatastrophe Preacher Yellow\n\n\nHomeworlds Online (SDG# 6258)\nStarted: 2007.2.1, Ended: 2007.2.28\nParticipants: jbj77 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B2 R1 G3\n\n2) jbj77: Homeworld R3 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) jbj77: Build G1 Jbj77\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) jbj77: Trade G1 Y1 Jbj77\n\n7) TwoShort: Build G1 Twoshort\n\n8) jbj77: Build G1 Jbj77\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) jbj77: Discover G1 Jbj77 Y2 Alpha\n\n11) TwoShort: Build Y1 Twoshort\n\n12) jbj77: Build Y2 Jbj77\n\tTwoShort: So, looking at your game history, I notice that in your first game you beat Zoltar, who I know to be a pretty good player. May I conclude you've played a bit of "in person" Homeworlds before?\n\tjbj77: I've played four in-person games. I didn't think I had any chance against Zoltar...maybe just beginner's luck?!\n\n13) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n14) jbj77: Discover Y1 Jbj77 B2 Beta\n\n15) TwoShort: Build G1 Twoshort\n\n16) jbj77: Trade Y1 R1 Beta\n\n17) TwoShort: Build Y1 Twoshort\n\n18) jbj77: Move G1 Alpha Yolonda\n\n19) TwoShort: Discover G1 Yolonda Y2 Yellonia\n\n20) jbj77: Build G2 Jbj77\n\n21) TwoShort: Move Y1 Twoshort Yolonda\n\n22) jbj77: Sacrifice R1 Beta\nAttack Y1 Yolonda\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bluestar\nBuild Y3 Twoshort\n\n24) jbj77: Sacrifice Y2 Jbj77\nMove Y1 Yolonda Twoshort\nMove Y1 Twoshort Bluestar\nCatastrophe Bluestar Yellow\n\n25) TwoShort: Build G2 Yellonia\n\n26) jbj77: Trade G2 Y2 Jbj77\n\n27) TwoShort: Build G2 Twoshort\n\tjbj77: I hate to have to do this...\n\tTwoShort: I was hoping you'd hate to have to do it so much that you wouldn't...\n\n28) jbj77: Build G2 Yolonda\n\n29) TwoShort: Trade G2 R2 Twoshort\n\n30) jbj77: Build Y1 Jbj77\n\n31) TwoShort: Move R2 Twoshort Yolonda\n\n32) jbj77: Discover G2 Yolonda B2 Beta\n\n33) TwoShort: Trade Y3 G3 Twoshort\n\n34) jbj77: Sacrifice G3 Jbj77\nBuild G2 Beta\nBuild G3 Beta\nBuild G3 Yolonda\n\tjbj77: I seem to have fallen behind.\n\n35) TwoShort: Move G1 Yellonia Yolonda\n\n36) jbj77: Move G3 Yolonda Twoshort\n\n37) TwoShort: Sacrifice R2 Yolonda\nAttack G1S Yolonda\nAttack G3S Twoshort\n\n38) jbj77: Sacrifice Y2 Jbj77\nMove G2 Beta Yolonda\nMove G2 Yolonda Twoshort\nCatastrophe Twoshort Green\n\n39) TwoShort: Move G2 Yellonia Jbj77\n\n40) jbj77: Sacrifice Y1 Jbj77\nMove G3 Beta Jbj77\n\n41) TwoShort: Build G1 Jbj77\n\n42) jbj77: Trade G3 Y3 Jbj77\n\n43) TwoShort: Build G2 Jbj77\n\n44) jbj77: Build G3 Beta\n\n45) TwoShort: Build G3 Yolonda\n\n46) jbj77: Trade G3 Y3 Beta\n\n47) TwoShort: Move G1 Yolonda Twoshort\n\n48) jbj77: Build G3 Beta\n\n49) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Twoshort\nBuild G3 Yolonda\nBuild Y1 Twoshort\n\n50) jbj77: Trade G2 R2 Beta\n\n51) TwoShort: Trade G1 R1 Twoshort\n\n52) jbj77: Attack G2 Jbj77\n\n53) TwoShort: Sacrifice G3 Yolonda\nBuild G1 Jbj77\nBuild G2 Yolonda\nBuild G3 Twoshort\nCatastrophe Jbj77 Green\n\n54) jbj77: Build G1 Beta\n\n55) TwoShort: Discover G1 Yolonda B2 Banzai\n\n56) jbj77: Discover G3 Beta B3 Gamma\n\n57) TwoShort: Trade Y1 B1 Twoshort\n\n58) jbj77: Build Y1 Beta\n\n59) TwoShort: Trade G1 B1 Banzai\n\n60) jbj77: Trade Y3 B3 Beta\n\n61) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Banzai\nBuild Y1 Twoshort\nBuild Y2 Twoshort\n\n62) jbj77: Discover B3 Beta Y3 Delta\n\n63) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n64) jbj77: Sacrifice G3 Gamma\nBuild B3 Delta\nBuild Y2 Jbj77\nBuild Y2 Beta\n\n65) TwoShort: Sacrifice Y2 Twoshort\nMove B1 Twoshort Delta\nMove B1 Banzai Delta\nCatastrophe Delta Blue\n\n66) jbj77: Trade Y2 G2 Jbj77\n\n67) TwoShort: Build Y2 Grogar\n\n68) jbj77: Discover G1 Beta Y3 Epsilon\n\n69) TwoShort: Move Y1 Grogar Banzai\n\n70) jbj77: Move Y1 Beta Yolonda\n\n71) TwoShort: Trade B3 R3 Banzai\n\n72) jbj77: Build Y2 Jbj77\n\n73) TwoShort: Move R3 Banzai Epsilon\n\n74) jbj77: Move G1 Epsilon Beta\n\n75) TwoShort: Sacrifice R1 Twoshort\nAttack Y1S Yolonda\n\n76) jbj77: Move R2 Beta Yolonda\n\n77) TwoShort: Move Y1 Yolonda Beta\n\n78) jbj77: Trade Y2 R2 Jbj77\n\n79) TwoShort: Move R3 Epsilon Beta\n\n80) jbj77: Attack G2 Yolonda\n\tjbj77: I knew I was dead meat when I made that blunder with the blues.\n\n81) TwoShort: Attack Y2S Beta\n\n\tjbj77: There is no need to prolong my misery.\r\nGreat game. Thanks a ton.\n\nHomeworlds Online (SDG# 6256)\nStarted: 2007.2.1, Ended: 2007.2.8\nParticipants: jbj77 (S), morganfitzp (N)\nWinner: morganfitzp\n\n1) morganfitzp: Homeworld G3 Y1 B3\n\n2) jbj77: Homeworld B2 R1 G3\n\n3) morganfitzp: Build B1 Morganfitzp\n\n4) jbj77: Build G1 Jbj77\n\n5) morganfitzp: Discover B1 Morganfitzp G2 Sourdough\n\n6) jbj77: Trade G1 Y1 Jbj77\n\n7) morganfitzp: Build B1 Morganfitzp\n\n8) jbj77: Build Y1 Jbj77\n\n9) morganfitzp: Trade B3 G3 Morganfitzp\n\n10) jbj77: Discover Y1 Jbj77 B3 Alpha\n\n11) morganfitzp: Build B1 Morganfitzp\n\n12) jbj77: Trade G3 B3 Jbj77\n\n13) morganfitzp: Sacrifice G3 Morganfitzp\nBuild B2 Sourdough\nBuild B2 Sourdough\nBuild B3 Morganfitzp\n\n14) jbj77: Trade Y1 G1 Jbj77\n\tjbj77: Ouch!\n\n15) morganfitzp: Trade B1 Y1 Sourdough\n\n16) jbj77: Build G1 Jbj77\n\n17) morganfitzp: Build Y2 Sourdough\n\n18) jbj77: Sacrifice G1 Jbj77\nBuild Y2 Alpha\n\tjbj77: I think I'm toast.\n\tmorganfitzp: ...Toast is better than stale bread.\n\n19) morganfitzp: Discover B2 Sourdough G3 Kvass\n\n20) jbj77: Discover Y1 Alpha G2 Beta\n\n21) morganfitzp: Trade B3 G3 Morganfitzp\n\n22) jbj77: Build Y2 Beta\n\n23) morganfitzp: Build B1 Kvass\n\n24) jbj77: Trade B3 R3 Jbj77\n\n25) morganfitzp: Trade B2 R2 Kvass\n\tjbj77: You seem to like blue.\n\n26) jbj77: Sacrifice G1 Jbj77\nBuild Y3 Alpha\n\n27) morganfitzp: Sacrifice Y2 Sourdough\nMove B1 Kvass Jbj77\nMove R2 Kvass Jbj77\n\tmorganfitzp: Yes. Blue feels very calm and peaceful. Mix it with yellow, and you get green. But you don't have to mix it with anything in this game to make it green, yellow, or even red.\n\n28) jbj77: Sacrifice Y2 Beta\nMove Y3 Alpha Jbj77\nMove R3 Jbj77 Alpha\n\tjbj77: Normally I would agree that blue is very peaceful, but in this game it has made me uneasy. Red seems very threatening right now too. Yellow is looking a bit better to me.\n\n29) morganfitzp: Sacrifice G3 Morganfitzp\nBuild R1 Jbj77\nBuild R1 Jbj77\nBuild B2 Jbj77\nCatastrophe Jbj77 Red\n\n30) jbj77: Sacrifice R3 Alpha\nAttack B2 Jbj77\nAttack B1 Jbj77\nPass\n\tjbj77: I almost made a big blunder there. I didn't see this coming...things are not looking good for South.\n\n31) morganfitzp: Move B1 Morganfitzp Jbj77\nCatastrophe Jbj77 Blue\n\n\tmorganfitzp: Now your people have been set free!\n\nHomeworlds Online (SDG# 6259)\nVariants: "Hard time"\nStarted: 2007.2.1, Ended: 2007.3.18\nParticipants: Kermit (S), jbj77 (N)\nWinner: jbj77\n\n1) jbj77: Homeworld B2 G3 Y3\n\n2) Kermit: Homeworld G1 B3 Y3\n\n3) jbj77: Build Y1 Jbj77\n\n4) Kermit: Build Y1 Kermit\n\n5) jbj77: Trade Y1 R1 Jbj77\n\n6) Kermit: Discover Y1 Kermit B2 Ipaq\n\n7) jbj77: Build R1 Jbj77\n\n8) Kermit: T Y1 G1 Ipaq\n\n9) jbj77: Trade R1 G1 Jbj77\n\n10) Kermit: Build G2 Ipaq\n\n11) jbj77: Discover G1 Jbj77 Y1 Alpha\n\n12) Kermit: Build Y1 Kermit\n\n13) jbj77: Build G2 Alpha\n\n14) Kermit: Trade Y1 B1 Kermit\n\n15) jbj77: Build G2 Alpha\n\n16) Kermit: Trade G1 Y1 Ipaq\n\n17) jbj77: Discover G1 Alpha B2 Beta\n\n18) Kermit: Build B1 Kermit\n\n19) jbj77: Discover G2 Alpha Y2 Gamma\n\n20) Kermit: Trade B1 R1 Kermit\n\n21) jbj77: Trade G1 B1 Beta\n\n22) Kermit: Build G1 Ipaq\n\n23) jbj77: Build G1 Alpha\n\n24) Kermit: Discover G1 Ipaq B3 Visor\n\n25) jbj77: Discover G1 Alpha B3 Delta\n\n26) Kermit: Build G3 Visor\n\n27) jbj77: Build G3 Alpha\n\n28) Kermit: Trade G2 Y2 Ipaq\n\n29) jbj77: Move G2 Alpha Beta\n\n30) Kermit: Sacrifice Y1 Ipaq\nMove G1 Visor Alpha\n\n31) jbj77: Discover G3 Alpha Y3 Epsilon\n\n32) Kermit: Build G2 Alpha\n\n33) jbj77: Trade G2 Y2 Beta\n\n34) Kermit: Sacrifice G2 Alpha\nBuild R1 Kermit\nBuild R2 Kermit\n\n35) jbj77: Discover B1 Beta R3 Phi\n\n36) Kermit: Build Y1 Kermit\n\n37) jbj77: Build R2 Jbj77\n\n38) Kermit: Build G2 Alpha\n\n39) jbj77: Build G2 Gamma\n\n40) Kermit: Move R2 Kermit Ipaq\n\n41) jbj77: Discover R2 Jbj77 Y1 Zeta\n\n42) Kermit: Sacrifice Y2 Ipaq\nMove G2 Alpha Gamma\nMove G1 Alpha Gamma\nCatastrophe Gamma Green\n\n43) jbj77: Sacrifice G3 Epsilon\nBuild R2 Jbj77\nBuild R3 Jbj77\nBuild R3 Zeta\n\tKermit: a mild reset. :{)}\n\tjbj77: Yah, I was hoping you weren't going to do that.\n\n44) Kermit: Sacrifice Y1 Kermit\nMove G3 Visor Ipaq\n\n45) jbj77: Discover R3 Jbj77 B1 Theta\n\n46) Kermit: Build Y1 Kermit\n\n47) jbj77: Sacrifice G1 Delta\nBuild B3 Phi\n\n48) Kermit: Discover Y1 Kermit G2 Snark\n\n49) jbj77: Trade B3 G3 Phi\n\n50) Kermit: Move R1 Kermit Snark\n\n51) jbj77: Build B3 Phi\n\n52) Kermit: Discover B1 Kermit G2 Weasel\n\n53) jbj77: Move R3 Zeta Weasel\n\n54) Kermit: Sacrifice Y1 Snark\nDiscover B1 Weasel G1 Xerxes\n\n55) jbj77: Move Y2 Beta Xerxes\n\n56) Kermit: Build B2 Xerxes\n\n57) jbj77: Sacrifice R2 Jbj77\nAttack B2 Xerxes\nAttack B1 Xerxes\n\n\nHomeworlds Online (SDG# 6269)\nStarted: 2007.2.2, Ended: 2007.2.12\nParticipants: eriinfo (S), jbj77 (N)\nWinner: jbj77\n\n1) jbj77: Homeworld B1 G2 R3\n\teriinfo: Hey.\n\n2) eriinfo: Homeworld Y3 B1 G3\n\n3) jbj77: Build R1 Jbj77\n\n4) eriinfo: Build G1 Eriinfo\n\tjbj77: Oh man, bet you weren't expecting that move!\n\n5) jbj77: Trade R3 Y3 Jbj77\n\n6) eriinfo: Trade G1 R1 Eriinfo\n\n7) jbj77: Build Y1 Jbj77\n\teriinfo: Red ships are comin' out, yo'\n\n8) eriinfo: Build G1 Eriinfo\n\n9) jbj77: Trade Y1 G1 Jbj77\n\n10) eriinfo: Trade G1 Y1 Eriinfo\n\n11) jbj77: Build Y1 Jbj77\n\n12) eriinfo: Build G1 Eriinfo\n\n13) jbj77: Trade Y1 B1 Jbj77\n\n14) eriinfo: Trade G3 B3 Eriinfo\n\n15) jbj77: Build B2 Jbj77\n\n16) eriinfo: Build Y1 Eriinfo\n\n17) jbj77: Discover B1 Jbj77 G3 Alpha\n\n18) eriinfo: Discover Y1 Eriinfo B2 Cire2\n\n19) jbj77: Build B2 Alpha\n\n20) eriinfo: Trade B3 G3 Eriinfo\n\n21) jbj77: Build B3 Alpha\n\n22) eriinfo: Build R1 Eriinfo\n\n23) jbj77: Trade B2 Y2 Alpha\n\n24) eriinfo: Build R2 Eriinfo\n\n25) jbj77: Build R2 Jbj77\n\n26) eriinfo: Move R2 Eriinfo Cire2\n\n27) jbj77: Move R1 Jbj77 Alpha\n\n28) eriinfo: Move G1 Eriinfo Cire2\n\n29) jbj77: Trade B3 G3 Alpha\n\n30) eriinfo: Move R1 Eriinfo Cire2\n\n31) jbj77: Move G3 Alpha Cire2\n\n32) eriinfo: Build G1 Cire2\n\n33) jbj77: Sacrifice R2 Jbj77\nAttack R2 Cire2\nAttack R1 Cire2\n\n34) eriinfo: Build R2 Eriinfo\n\n35) jbj77: Sacrifice Y3 Jbj77\nMove G3 Cire2 Eriinfo\nMove R1 Cire2 Eriinfo\nMove R2 Cire2 Eriinfo\nCatastrophe Eriinfo Red\n\n36) eriinfo: Build G2 Eriinfo\n\n37) jbj77: Trade G3 R3 Eriinfo\n\n38) eriinfo: Sacrifice G3 Eriinfo\nBuild G2 Eriinfo\nBuild G3 Cire2\nBuild Y1 Cire2\n\n39) jbj77: Attack G2 Eriinfo\n\n40) eriinfo: Sacrifice G3 Cire2\nBuild G3 Cire2\nBuild G3 Eriinfo\nBuild Y2 Eriinfo\n\n41) jbj77: Attack G3 Eriinfo\n\n42) eriinfo: Move G1 Cire2 Eriinfo\nCatastrophe Eriinfo G\n\n43) jbj77: Attack Y2 Eriinfo\n\n44) eriinfo: Move G3 Cire2 Eriinfo\n\n45) jbj77: Attack G3 Eriinfo\n\n46) eriinfo: Move G1 Cire2 Eriinfo\n\n47) jbj77: Sacrifice R3 Eriinfo\nAttack G1 Eriinfo\nAttack Y1 Eriinfo\nPass\n\n\tjbj77: Thanks for the game. It was fun.\n\teriinfo: Thank you. I had a good time.\n\nHomeworlds Online (SDG# 6284)\nStarted: 2007.2.2, Ended: 2007.2.10\nParticipants: jan (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 R2 G3\n\n2) jan: Homeworld G1 B2 Y3\n\tTwoShort: Howdy...\r\n\n\n3) TwoShort: Build G1 Twoshort\n\tjan: Hi, nice to be playing with you. how did you come up with the name two short , are there two of you? \n\n4) jan: Build Y1 Jan\n\tTwoShort: Sadly, there's only one of me. There are *supposed* to be three of me, but currently I'm two short.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) jan: Trade Y1 G1 Jan\n\tTwoShort: Seriously though, TwoShort doesn't actually mean anything. Many years ago I signed up for an account somewhere that would only allow a 6 charachter username, and none of my ususal handles fit. In frustration, I came up with "2Short", as in 6 letters was too short, and eventually I decided I liked the sound of it. Then when I ran into places (like here) that wouldn't let you start with a digit, I decied to spell out the 2 just to stay cryptic. At at this point TwoShort has been my informal online persona for years, so I'm kind of attached to it, even thought the origin is sort of silly.\n\tjan: Thats great! I love that story. i had a similar experience trying to get my first email account. i tried many different versions of my name Jan Burger but to my suprise they were all taken. the closest i could get was jan burger 116 or something. my sweety sugested janthehero and it wasn't taken so i said i guess that's it.\n\n7) TwoShort: Build Y1 Twoshort\n\n8) jan: Build G1 Jan\n\n9) TwoShort: Build G2 Twoshort\n\tTwoShort: Eek. I just realized we're in a small universe. Was that intentional?\n\n10) jan: Discover G1 Jan Y3 Wolo\n\tjan: i noticed that to. but no it wasn't concious on my part.\n\n11) TwoShort: Move G2 Twoshort Wolo\n\n12) jan: Build G2 Wolo\n\n13) TwoShort: Move G2 Wolo Jan\n\n14) jan: Discover G1 Jan B3 Zed\n\n15) TwoShort: Build G2 Jan\n\n16) jan: Build G3 Zed\n\n17) TwoShort: Trade G2 B2 Jan\n\n18) jan: Sacrifice G3 Zed\nBuild G2 Zed\nBuild G3 Wolo\nBuild G3 Zed\n\tjan: Whoops. i made a mistake. i learned to play homeworlds from a fellow who plays with his kids in school. some of the rules he simplifys for them. there was one that we always played with that for some reason i didn't question, and check the rulebook. i thought you couldn't use another players homeworld powers. i guess me and my friend just played that way. \n\n19) TwoShort: Sacrifice Y1 Twoshort\nMove G2 Jan Zed\nCatastrophe Zed Green\n\n20) jan: Trade Y3 R3 Jan\n\n21) TwoShort: Build B1 Jan\n\n22) jan: Move G2 Wolo Jan\n\n23) TwoShort: Build B1 Jan\nCatastrophe Jan Blue\n\n24) jan: Discover G3 Wolo B2 New Zed\n\n25) TwoShort: Build G1 Twoshort\n\n26) jan: Build G2 New\n\tjan: You sent me back to the stone age!\n\n27) TwoShort: Discover G1 Twoshort Y3 Yoyodyne\n\n28) jan: Sacrifice G3 New\nBuild G2 New\nBuild G3 Wolo\nBuild R1 Jan\n\n29) TwoShort: Build G3 Yoyodyne\n\n30) jan: Trade G2 Y2 New\n\n31) TwoShort: Move G1 Yoyodyne Jan\n\n32) jan: Sacrifice G2 Jan\nBuild G2 New\nBuild G2 New\n\tTwoShort: gotcha. :)\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Jan\nPass\nPass\n\n34) jan: Sacrifice Y2 New\nMove G3 Wolo Twoshort\nMove G1 Wolo Twoshort\n\n35) TwoShort: Move G3 Yoyodyne Jan\nCatastrophe Jan Green\n\tjan: wow looks like you got me. one last move.... that was a strange game being so close you did a great job keeping me guessing.\n\n\tTwoShort: Yeah, usually my problem is being too agressive, but the small universe really rewards that. Thanks for the game!\n\nHomeworlds Online (SDG# 6308)\nVariants: "Hard time"\nStarted: 2007.2.4, Ended: 2007.2.20\nParticipants: Uglyfoot (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\tTwoShort: Howdy...\n\n3) TwoShort: Build G1 Twoshort\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Uglyfoot: Discover G1 Uglyfoot B2 Bflat\n\n7) TwoShort: Build G1 Twoshort\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) TwoShort: Build G2 Twoshort\n\n10) Uglyfoot: Build G2 Bflat\n\n11) TwoShort: Trade G2 Y2 Twoshort\n\n12) Uglyfoot: Trade G2 Y2 Bflat\n\n13) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n14) Uglyfoot: Build G2 Bflat\n\n15) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n16) Uglyfoot: Trade G1 R1 Uglyfoot\n\n17) TwoShort: Build G1 Twoshort\n\n18) Uglyfoot: Build G2 Uglyfoot\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild Y1 Grogar\nBuild G3 Twoshort\n\n20) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y2 Bflat\nBuild R1 Uglyfoot\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n22) Uglyfoot: Move Y2 Bflat Grogar\nCatastrophe Grogar Y\n\n23) TwoShort: Trade Y2 R2 Twoshort\n\n24) Uglyfoot: Trade G2 R2 Bflat\n\n25) TwoShort: Discover G1 Yolonda Y2 Yellonia\n\n26) Uglyfoot: Discover R2 Bflat Y3 Gminor\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yellonia\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n28) Uglyfoot: Move R1 Uglyfoot Yellonia\n\n29) TwoShort: Sacrifice Y3 Twoshort\nMove G2 Yellonia Uglyfoot\nMove G1 Yellonia Uglyfoot\nMove G3 Yolonda Yellonia\nCatastrophe Uglyfoot Green\n\n30) Uglyfoot: Move G1 Bflat Uglyfoot\n\n31) TwoShort: Move G3 Yellonia Uglyfoot\n\n32) Uglyfoot: Build G1 Uglyfoot\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Uglyfoot\nBuild G2 Yolonda\nBuild G3 Twoshort\n\tUglyfoot: I'll keep struggling even though it looks like I'm finished.\n\n34) Uglyfoot: Build R2 Uglyfoot\nCatastrophe Uglyfoot G\n\tTwoShort: Hmm... It sure looks like you're finished, but I can't come up with bullet proof way to finish you off.\n\n35) TwoShort: Trade G1 Y1 Twoshort\n\n36) Uglyfoot: Trade R2 G2 Uglyfoot\n\n37) TwoShort: Discover R2 Twoshort Y3 Yak\n\n38) Uglyfoot: Build R2 Uglyfoot\n\n39) TwoShort: Sacrifice G2 Yolonda\nBuild R3 Yak\nBuild Y1 Twoshort\n\n40) Uglyfoot: Build R3 Uglyfoot\n\n41) TwoShort: Discover Y1 Twoshort R3 Rosie\n\n42) Uglyfoot: Trade R3 G3 Uglyfoot\n\n43) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Twoshort\nBuild Y3 Rosie\n\n44) Uglyfoot: Sacrifice G2 Uglyfoot\nBuild R3 Gminor\nBuild G1 Uglyfoot\n\n45) TwoShort: Move R3 Yak Bflat\n\n46) Uglyfoot: Move Y2 Bflat Gminor\n\n47) TwoShort: Trade Y2 G2 Twoshort\n\n48) Uglyfoot: Trade R2 B2 Uglyfoot\n\n49) TwoShort: Build Y2 Twoshort\n\n50) Uglyfoot: Sacrifice B2 Uglyfoot\nTrade R2 G2 Gminor\nTrade R3 B3 Gminor\n\n51) TwoShort: Discover Y1 Rosie G2 Gloria\n\n52) Uglyfoot: Build G1 Gminor\n\n53) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Twoshort Gminor\nMove Y1 Gloria Gminor\nCatastrophe Gminor Yellow\n\n54) Uglyfoot: Move G1 Uglyfoot Yellonia\n\n55) TwoShort: Move R2 Yak Yellonia\n\tUglyfoot: So your saying I had too much stacked in gminor? ;>\n\n56) Uglyfoot: Build R2 Yellonia\n\tTwoShort: Something like that :) You were way over the effective limit of "what it will cost me to blow it up."\n\n57) TwoShort: Sacrifice G2 Twoshort\nBuild R2 Yellonia\nBuild R3 Bflat\nCatastrophe Yellonia Red\n\n58) Uglyfoot: Build R1 Uglyfoot\n\n59) TwoShort: Trade R3 G3 Bflat\n\tUglyfoot: nicely played\n\n60) Uglyfoot: Move R1 Uglyfoot Yellonia\n\n61) TwoShort: Build R2 Bflat\n\n62) Uglyfoot: Build R2 Yellonia\n\n63) TwoShort: Move Y3 Rosie Yellonia\n\n64) Uglyfoot: Build R2 Uglyfoot\n\n65) TwoShort: Sacrifice R3 Bflat\nAttack R2S Yellonia\nAttack R1S Yellonia\nAttack G1S Yellonia\n\n66) Uglyfoot: Trade R2 Y2 Uglyfoot\n\n67) TwoShort: Build G1 Twoshort\n\n68) Uglyfoot: Build R2 Uglyfoot\n\n69) TwoShort: Sacrifice Y3 Yellonia\nMove R1 Yellonia Uglyfoot\nMove R2 Bflat Uglyfoot\nMove G3 Bflat Uglyfoot\nCatastrophe Uglyfoot Red\n\n70) Uglyfoot: Build G1 Uglyfoot\n\n71) TwoShort: Sacrifice R2 Yellonia\nAttack G3S Uglyfoot\nAttack Y2S Uglyfoot\n\tTwoShort: Thanks for the game... I thought I had you early on there, but it turned into quite an epic!\n\n72) Uglyfoot: Build G2 Uglyfoot\n\n73) TwoShort: Pass\nCatastrophe Uglyfoot Green\n\n\nHomeworlds Online (SDG# 6318)\nStarted: 2007.2.4, Ended: 2007.3.28\nParticipants: jbj77 (S), larry (N)\nWinner: jbj77\n\n1) larry: Homeworld G3 B1 R3\n\tjbj77: Is this my long lost Texan brother Larry?\n\n2) jbj77: Homeworld Y1 B2 G3\n\tlarry: Yep, Larry from Texas. Hey, I don't remember any strategies, and despite our three day playing period, I don't spend a lot of time thinking about it. So, tell me if I've done something obviously retarded.\n\tjbj77: OK. I just realized I've gotten myself into 5 simultaneous games, so I won't have much time to think either.\n\n3) larry: Build R1 Larry\n\n4) jbj77: Build G1 Jbj77\n\n5) larry: Trade R1 Y1 Larry\n\n6) jbj77: Trade G1 R1 Jbj77\n\tlarry: Sorry Bro, I went over on my time. Thanks for not forcing my surrender.\n\n7) larry: Build R1 Larry\n\tjbj77: No problem.\n\n8) jbj77: Build G1 Jbj77\n\tlarry: All right, looks like I was late again, but I did try to get on yesterday and the website wouldn't let me.\n\n9) larry: Trade R3 G3 Larry\n\tjbj77: That's OK. I'm stuck in Baltimore right now.\n\tlarry: I didn't know you were going to Baltimore, are you doing the polygraph for NSA or something? Did you get snowed in?\n\n10) jbj77: Build G1 Jbj77\n\tlarry: By the way, I don't get how the timing works. I guess that's why I always run out of time.\n\tjbj77: Yah, I got snowed in.\n\n11) larry: Discover G3 Larry Y2 Clubron\n\n12) jbj77: Trade G3 Y3 Jbj77\n\tjbj77: Wow, that's an unorthodox move. Almost like moving your queen out early in chess. Of course I have no way to threaten your unprotected homeworld, so it's probably not a bad move.\n\n13) larry: Build Y1 Larry\n\n14) jbj77: Build Y2 Jbj77\n\tlarry: Do you like the name Clubron?\n\tjbj77: Umm. I don't think I get it.\n\n15) larry: Build Y2 Larry\n\n16) jbj77: Sacrifice Y2 Jbj77\nDiscover G1 Jbj77 Y3 Alpha\nDiscover G1 Jbj77 Y3 Beta\n\tlarry: There's nothing to get-I just thought it was a funny name.\n\tjbj77: Oh, well it is a good name.\n\n17) larry: Build G1 Clubron\n\n18) jbj77: Build G2 Beta\n\tlarry: I finally went.\n\n19) larry: Move R1 Larry Clubron\n\n20) jbj77: Sacrifice G2 Beta\nBuild Y2 Jbj77\nBuild G2 Beta\n\n21) larry: Build R1 Clubron\n\n22) jbj77: Sacrifice Y3 Jbj77\nMove Y2 Jbj77 Alpha\nMove Y2 Alpha Clubron\nMove Y2 Clubron Larry\nCatastrophe Larry Yellow\n\n\nHomeworlds Online (SDG# 6271)\nStarted: 2007.2.5, Ended: 2007.3.26\nParticipants: Uglyfoot (S), zoltar (W), morganfitzp (N), jan (E)\nWinner: jan\n\n1) morganfitzp: Homeworld G2 Y1 B3\n\n2) jan: Homeworld B3 Y2 G3\n\tmorganfitzp: Good morning!\n\n3) Uglyfoot: Homeworld B3 Y1 G3\n\tjan: hey folks . Zoltar is that movie on the website "zoltar from zoron" one that you made or one that you are a fan of ? it looks amazing!\n\n4) zoltar: Homeworld R2 B1 G3\n\n5) morganfitzp: Build B1 Morganfitzp\n\tzoltar: No, I've never seen it, much less had anything to do with making it, but it looked cool to me as well, so I chose it as my alias here for fun.\n\n6) jan: Build G1 Jan\n\n7) Uglyfoot: Build G1 Uglyfoot\n\tUglyfoot: Greetings everyone!\n\n8) zoltar: Build G1 Zoltar\n\n9) morganfitzp: Build B1 Morganfitzp\n\n10) jan: Build G1 Jan\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) zoltar: Build G2 Zoltar\n\tzoltar: b g2 zoltar\n\n13) morganfitzp: Trade B3 G3 Morganfitzp\n\tzoltar: Let's see, build one more ship each, and we could all blow up together!\n\n14) jan: Discover G1 Jan B1 First World\n\tmorganfitzp: (i just guffawed at zoltar's message)\n\n15) Uglyfoot: Discover G1 Uglyfoot B2 Nyse\n\n16) zoltar: Trade G1 Y1 Zoltar\n\n17) morganfitzp: Build B1 Morganfitzp\n\n18) jan: Build G1 First\n\n19) Uglyfoot: Build G2 Nyse\n\n20) zoltar: Discover G2 Zoltar Y3 Yellowstone\n\n21) morganfitzp: Discover B1 Morganfitzp G3 Brasil\n\n22) jan: Trade G1 Y1 First\n\n23) Uglyfoot: Trade G1 R1 Nyse\n\n24) zoltar: Build G1 Zoltar\n\n25) morganfitzp: Build B2 Brasil\n\n26) jan: Build G1 Jan\n\n27) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Nyse\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n29) morganfitzp: Trade B1 R1 Morganfitzp\n\n30) jan: Trade G1 R1 Jan\n\n31) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n32) zoltar: Discover Y2 Zoltar B3 Blueridge\n\n33) morganfitzp: Trade B2 Y2 Brasil\n\n34) jan: Build Y2 First\n\n35) Uglyfoot: Build Y3 Uglyfoot\n\n36) zoltar: Sacrifice G1 Zoltar\nBuild Y3 Blueridge\n\n37) morganfitzp: Sacrifice G3 Morganfitzp\nBuild Y3 Brasil\nBuild B1 Morganfitzp\nBuild B2 Brasil\n\n38) jan: Discover Y1 First G3 Triclops\n\n39) Uglyfoot: Discover Y3 Uglyfoot R2 Guardian\n\n40) zoltar: Trade Y1 G1 Zoltar\n\n41) morganfitzp: Move Y3 Brasil Nyse\n\n42) jan: Build R1 Jan\n\n43) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove G2 Nyse Yellowstone\nMove G2 Yellowstone Morganfitzp\n\n44) zoltar: Trade Y2 B2 Blueridge\n\n45) morganfitzp: Sacrifice R1 Morganfitzp\nAttack R1S Nyse\n\n46) jan: Sacrifice G3 Jan\nBuild G1 First\nBuild G2 First\nBuild G3 Jan\n\n47) Uglyfoot: Trade G1 R1 Uglyfoot\n\n48) zoltar: Discover B2 Blueridge G1 Greenbelt\n\n49) morganfitzp: Attack G2S Nyse\n\n50) jan: Trade G2 B2 First\n\n51) Uglyfoot: Build G2 Uglyfoot\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Blueridge\nBuild Y2 Zoltar\n\n53) morganfitzp: Sacrifice G2 Nyse\nBuild Y2 Nyse\nBuild Y3 Brasil\n\n54) jan: Move B2 First Triclops\n\n55) Uglyfoot: Trade G2 R2 Uglyfoot\n\n56) zoltar: Discover Y2 Zoltar B3 Bluemoon\n\n57) morganfitzp: Sacrifice Y3 Nyse\nMove Y3 Brasil Morganfitzp\nMove B1 Brasil Zoltar\nMove B2 Brasil Zoltar\n\n58) jan: Build Y3 Triclops\n\n59) Uglyfoot: Build G2 Morganfitzp\n\n60) zoltar: Sacrifice Y3 Blueridge\nMove Y1 Blueridge Morganfitzp\nMove Y2 Bluemoon Morganfitzp\nMove G2 Yellowstone Morganfitzp\nCatastrophe Morganfitzp Y\nCatastrophe Morganfitzp G\n\n61) jan: Move B2 Triclops Zoltar\nCatastrophe Zoltar Blue\n\n62) Uglyfoot: Build R1 Uglyfoot\n\n63) zoltar: Trade B2 R2 Greenbelt\n\n64) jan: Move R1 Jan First\n\tzoltar: Hey wait a second -- can't let morgan attack my homeworld like that without repercussions! \n\n65) Uglyfoot: Sacrifice Y3 Guardian\nMove R1 Uglyfoot Zoltar\nMove R1 Uglyfoot Zoltar\nMove R2 Uglyfoot Zoltar\nCatastrophe Zoltar R\n\n66) jan: Sacrifice Y2 First\nMove G1 First Nyse\nMove G1 First Nyse\n\tjan: hey wait a second -- you can't destroy Morgan without reprecussions!\n\n67) Uglyfoot: Build G1 Uglyfoot\n\tzoltar: Yeah, I'm dead too, I see. Oh well.\r\n\n\n68) jan: Sacrifice Y3 Triclops\nMove G1 Nyse Uglyfoot\nMove G1 Nyse Uglyfoot\nPass\nCatastrophe Uglyfoot Green\n\tzoltar: But I avoided last place in a four player game for the first time ever, so I'm happy to die now.\n\tmorganfitzp: Yeah, looks like those sacrifices may have cost more than just my game...Enjoy the rest—I'm with you all in spirit!\n\tmorganfitzp: Question: What happens to those pieces in the nyse system? Nothing?\n\tzoltar: They just sit there until someone captures them\n\n\tjan: BOOOOOOOOOOOOOOOOOMMMMM!!!! (sorry but that was satisfying) thanks guys\n\tUglyfoot: Thanks for the game.\n\tzoltar: You too. We all fell in one turn. Wow.\n\nHomeworlds Online (SDG# 6334)\nStarted: 2007.2.5, Ended: 2007.2.23\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld Y2 B1 G3\n\n2) TwoShort: Homeworld G3 B1 B3 *\n\tzoltar: Hi, TwoShort! Ok, I'll try this silly opening again which I still think is the best but which I can't seem to win with. :)\n\tTwoShort: In that case, I'll have to try my response to that opening that I think should be good, but can't seem to make work.\n\n3) zoltar: Build G1 Zoltar\n\tTwoShort: You know it's a good idea when the system makes you put in an asterix to prove you really want to do it :)\r\n\n\n4) TwoShort: Build B1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) zoltar: Build Y1 Zoltar\n\n8) TwoShort: Build B2 Twoshort\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) TwoShort: Trade B2 R2 Twoshort\n\n11) zoltar: Build Y1 Zoltar\n\n12) TwoShort: Build B2 Twoshort\n\tzoltar: Looks like my position is already lost after the 4th move!\n\n13) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n14) TwoShort: Discover B1 Twoshort G2 Grogar\n\n15) zoltar: Build Y1 Greenbelt\n\n16) TwoShort: Build B2 Twoshort\n\n17) zoltar: Discover Y1 Greenbelt B2 Blueberry\n\n18) TwoShort: Discover B2 Twoshort G2 Globulus\n\n19) zoltar: Build Y2 Greenbelt\n\n20) TwoShort: Build B3 Grogar\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n22) TwoShort: Build B3 Globulus\n\n23) zoltar: Move R1 Zoltar Greenbelt\n\tTwoShort: Dammit! I thought you wouldn't do that. Not sure why.\n\n24) TwoShort: Build B3 Twoshort\n\tzoltar: I figured it was a trap and I was about to die, but as I was lost if I didn't do it, my only choice besides resigning was to grab the rest of the yellow pieces, as now at least you are contained for a while.\n\n25) zoltar: Build R1 Greenbelt\n\n26) TwoShort: Build R1 Twoshort\n\n27) zoltar: Build R2 Greenbelt\n\n28) TwoShort: Move Y3 Twoshort Blueberry\n\n\tzoltar: Yep, there's nothing I can do to stop you at this point. I analyzed the game, and figured that if you move your Y3 out, even if I blow up the star, then you trade a B3 immediately for a Y3 again, and I'm out that many yellow ships, etc. I now realize that the first person can never build a small blue star, given the opening response of yours. GG.\n\tTwoShort: Um, OK... I would have said I narrowly snuck out of the total domination you had imposed on me, and that after you blew up the star and we broke each others monopolies, I'd be up by a couple ships, but nothing devastating. I certainly don't see how I could possibly have won in any kind of short term. Sorry, but it's really frustrating to have you resign at the first reversal; I've played games that have covered 4 or 5 lead-changes of this magnitude. This game was just about to get interesting. \n\tzoltar: I didn't see that I had anything; also I was over at Andy Looney's, and showed him the position, and he said also that I was toast and didn't have a chance. You have the blue industry, you can get all the rest of the big ships, and now I can't stop you from getting Yellow ones either. I have nothing I can do at this point, as your yellow ship can march down and if I blow it up, you trade a blue ship for the Y3, and build your B3 again, and then you can always trade your B3's for R3's and rebuild your B3's whenever you want, and then just march them into my homeworld. I don't have anything I can do to attack you except to sit around and get the r1's while you get more of the 3-sized ships. \n\tTwoShort: It seems to me after you blow it up and I trade a B3 to get my only yellow back, you can trade for the B3 at your homeworld or move from Greenbelt to the b2. I don't know, maybe you thought it through further than me, maybe I had you. But I didn't see it, and I'd have liked to. Personally, I never resign until I can see the exact, short series of moves that will finish me off. I don't know, I guess you've got to call them like you see them, but I think you'd be surprised ocasionally if you kept trying even when it seemed hopeless. If nothing else, you give me the chance to screw it up :)\n\nHomeworlds Online (SDG# 6344)\nVariants: "Hard time"\nStarted: 2007.2.5, Ended: 2007.2.11\nParticipants: dsheldon (S), morganfitzp (N)\nWinner: morganfitzp\n\n1) morganfitzp: Homeworld B1 Y2 G3\n\n2) dsheldon: Homeworld B3 R2 G3\n\n3) morganfitzp: Build G1 Morganfitzp\n\n4) dsheldon: Build G1 Dsheldon\n\n5) morganfitzp: Trade G1 Y1 Morganfitzp\n\n6) dsheldon: Build G1 Dsheldon\n\n7) morganfitzp: Build Y1 Morganfitzp\n\n8) dsheldon: Trade G1 Y1 Dsheldon\n\n9) morganfitzp: Discover Y1 Morganfitzp G3 Ur\n\n10) dsheldon: Discover G1 Dsheldon B1 Frankfurt\n\n11) morganfitzp: Build Y2 Ur\n\n12) dsheldon: Build G1 Frankfurt\n\n13) morganfitzp: Build Y2 Morganfitzp\n\n14) dsheldon: Build Y3 Dsheldon\n\n15) morganfitzp: Trade Y1 B1 Morganfitzp\n\n16) dsheldon: Discover Y1 Dsheldon G1 Kermit\n\n17) morganfitzp: Build G2 Morganfitzp\n\n18) dsheldon: Build G2 Dsheldon\n\n19) morganfitzp: Discover Y1 Ur G2 Babylon\n\tdsheldon: You are much better than my last opponent. The system says this is your first game of Homeworlds, but I suspect that you have some face-to-face experience ;)\n\n20) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Dsheldon\nBuild Y1 Kermit\nBuild Y3 Dsheldon\n\tmorganfitzp: True, I'm new to Homeworlds, though I've been acquainted with these colors and shapes for most of my life.\n\n21) morganfitzp: Sacrifice G3 Morganfitzp\nBuild G3 Morganfitzp\nBuild B2 Morganfitzp\nBuild Y3 Ur\n\n22) dsheldon: Trade G1 R1 Frankfurt\n\n23) morganfitzp: Trade B2 R2 Morganfitzp\n\n24) dsheldon: Sacrifice Y3 Dsheldon\nMove Y1 Kermit Ur\nMove Y1 Kermit Ur\nDiscover G1 Frankfurt Y3 Memphis\nCatastrophe Ur Y\n\n25) morganfitzp: Move R2 Morganfitzp Memphis\n\tdsheldon: It was getting too crowded out there.\n\n26) dsheldon: Move G1 Memphis Morganfitzp\n\tmorganfitzp: Yes, overpopulation was a problem in Ur. But there seems to be lots of room in Memphis.\n\n27) morganfitzp: Trade G3 R3 Morganfitzp\n\tdsheldon: I thought Ur's problems were mostly floods... and that Memphis was the same.\n\n28) dsheldon: Sacrifice G3 Dsheldon\nBuild G1 Morganfitzp\nBuild G1 Morganfitzp\nBuild G3 Dsheldon\nCatastrophe Morganfitzp G\n\tmorganfitzp: My only problems with Memphis have involved humorless administrators, flaky anarchists, and inebriated punks listening to country music.\n\n29) morganfitzp: Trade R3 G3 Morganfitzp\n\tdsheldon: Different Memphis, but valid concerns to be sure. I'm starting to wonder if I'm overly fond of catastrophies. What do you think?\n\n30) dsheldon: Discover G3 Dsheldon Y1 Cairo\n\tmorganfitzp: I think that my ships think that they're traffic lights.\n\n31) morganfitzp: Build B2 Morganfitzp\n\n32) dsheldon: Build G1 Dsheldon\n\n33) morganfitzp: Move B2 Morganfitzp Memphis\n\n34) dsheldon: Move G1 Dsheldon Frankfurt\n\n35) morganfitzp: Build B2 Morganfitzp\n\n36) dsheldon: Build Y1 Dsheldon\n\n37) morganfitzp: Move B1 Morganfitzp Memphis\n\n38) dsheldon: Move Y1 Dsheldon Frankfurt\n\n39) morganfitzp: Discover B2 Memphis G1 Beirut\n\n40) dsheldon: Build Y2 Frankfurt\n\n41) morganfitzp: Build Y3 Babylon\n\n42) dsheldon: Discover Y1 Frankfurt G3 Eridu\n\n43) morganfitzp: Discover Y2 Morganfitzp B3 Beijing\n\n44) dsheldon: Sacrifice G3 Cairo\nBuild G1 Frankfurt\nBuild G2 Frankfurt\nBuild G3 Dsheldon\n\n45) morganfitzp: Sacrifice Y3 Babylon\nMove B2 Beirut Dsheldon\nMove B1 Memphis Frankfurt\nMove B1 Frankfurt Dsheldon\n\n\n46) dsheldon: Sacrifice Y2 Frankfurt\nDiscover G1 Frankfurt B3 Paris\nDiscover G1 Frankfurt B2 Versailles\n\n47) morganfitzp: Sacrifice Y2 Beijing\nMove R2 Memphis Frankfurt\nMove R2 Frankfurt Dsheldon\n\n48) dsheldon: Sacrifice G2 Dsheldon\nBuild Y1 Eridu\nBuild Y2 Eridu\n\n49) morganfitzp: Sacrifice G3 Morganfitzp\nBuild B3 Dsheldon\nBuild R1 Dsheldon\nBuild R1 Dsheldon\nCatastrophe Dsheldon Red\nCatastrophe Dsheldon Blue\n\n\tdsheldon: This is getting pretty intense.\n\tmorganfitzp: Yes. Intense like a super nova.\n\tdsheldon: I knew I was losing one star. I failed to recognize I was going to lose both. I might have been able to hold you off for another turn or two, but my defeat was assured a good while ago.\r\n\r\nMy major blunder was in failing to diversify my fleet sooner (or at all really...). Thanks for a very eye-opening defeat.\n\tmorganfitzp: Yeah - That was an amazing game! Very interesting moves on your part. I was sure that I was getting your blue star a turn earlier. Thanks for playing!\n\nHomeworlds Online (SDG# 6367)\nStarted: 2007.2.8, Ended: 2007.2.10\nParticipants: nycavri (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 Y1 G3\n\tnycavri: Hi, Z. My first shot at Homeworlds. I'm happy to be playing someone who clearly knows what they're doing - please mention any blinding errors I make. Thanks! a\n\tzoltar: Sure, no problem. Good luck.\n\n2) nycavri: Homeworld Y3 G2 R3 *\n\n3) zoltar: Build G1 Zoltar\n\tnycavri: You too. By the way, playing GRY rather than BGY for an opening is intentional, rather than an error. I understand the reasons for starting with access to Blue, but humor me.....\n\n4) nycavri: Build R1 Nycavri\n\tzoltar: No problem. The point is that you are forced to build red, and then to move a red out (probably to a blue star) or else build one more red and then move a red out, before you can switch colors. You have few options, whereas I can trade my g1 to any of the 3 colors or build another green or move my green out next turn, so I have more options to start with, and hopefully (for me) can manipulate exhausting smalls of one color and building larger ships sooner than you. But there are so many tricks I haven't learned yet, maybe you can find one this way. I'll be interested to see what you are up to here!\n\n5) zoltar: Build G1 Zoltar\n\tnycavri: Yup. Unorthodox, but since I'm all but flying blind anyway, I'm just looking to have a little fun. Success would just be gravy.....\n\tzoltar: b g1 zoltar\n\n6) nycavri: Discover R1 Nycavri B1 Downtown\n\tzoltar: Oops, I typed that in the wrong field!\n\tzoltar: If your large star were a blue instead of a yellow, you could now trade the r1 for a y1, and you'd have yellow as well as blue tech in your system. But as it stands, you can't get blue tech for a while, which will limit your options considerably.\n\n7) zoltar: Trade G1 R1 Zoltar\n\n8) nycavri: Trade R1 G1 Downtown\n\tnycavri: As I said, i understand the theory, but after just 3 turns I now have access to Blue, and I figure an R3 on the Homeworld is a solid defence for a rookie to have up his sleeve.....\n\n9) zoltar: Trade G1 Y1 Zoltar\n\tzoltar: Yes, though it would be nice to have a blue on your homeworld as well, as you can only build reds there until you get one. In the meantime, I'm going to follow the standard opening rule that if your opponent builds a red, you should build one immediately, and considering that *all* your ships are red, it's never too soon to have a defensive piece at home, even though you are many moves from making any threat.\n\n10) nycavri: Build G1 Downtown\n\tnycavri: Long way to go. I'm a big Icehouse fan, and have read all the Homeworld strategy. Want to put some of it into practice, but need to be convinced first-hand of the insistence of a BGY opening. Likely you'll be the one to show me, but in the meantime, the game seems as intuitive and fun as I had hoped.\n\n11) zoltar: Build Y1 Zoltar\n\n12) nycavri: Trade G1 B1 Downtown\n\n13) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\tzoltar: Well, obviously I wanted to build the last y1 piece here, so that you couldn't immediately trade a green piece for it. Now your pieces on 'downtown' are grounded or landlocked until you get a yellow piece, which will take more moves. So you have to either build more red in your homeworld, or build another green, letting me get the first mid-sized green, or trade your green for a blue, a tech you already have at Downtown, or trade a green for a red, a tech you already can make anyway back in your homeworld. None of them are great options, though you aren't in bad shape yet, but without even trying yet, I'm able to slow down your getting yellow tech to expand, so you're gonna be cramped for a while. \r\n\r\nThis is similar to a chess game where you've locked your own Bishops in with pawn moves so that they don't have much scope and your position has thus become rather cramped. Again, I have no threats or anything, but later on, this will be trouble if you don't get yellow to expand further. \n\n14) nycavri: Build G1 Downtown\n\tnycavri: Yup again. I see that you've stalled me. You can tell it's my first game - I wasn't expecting you to grab that last y1, and I should have been. \n\n15) zoltar: Build Y2 Zoltar\n\tzoltar: b g2 zoltar\n\n16) nycavri: Trade G1 B1 Downtown\n\n17) zoltar: Trade Y2 B2 Zoltar\n\tzoltar: Oops, I used the wrong field again, and I meant to say Y2 anyway. \r\n\r\nYep, building the Y1 was my only reasonable move, given that you could use one and there was only one left. When you have more flexibility, you have an option of different pieces to make, so that your opponent can't easily block you by taking the single piece that you need.\n\n18) nycavri: Build R1 Nycavri\n\tzoltar: Now I can build any of the four colors in my homeworld.\n\tnycavri: I really feel like rookie. Keep trying to do things and running into the rules head first..... But I don't know that I've ever enjoyed being thrashed as much as this. (Although the thrashing hasn't actually begun, we both know it's coming)\n\n19) zoltar: Build B2 Zoltar\n\tzoltar: Btw, trading your R3 for a Y3 here, and then building a Y2 next move may look like a simple way out, but it would be a horrible game-ending blunder. I would build a Y2 (at either star) and then when you built a Y2, I would sacrifice my Y2 that I had built for two movements, and I would move my Y1 from Greenbelt to nycavri immediately, cause a catastrophe (with four yellows total), destroy all your ships at nycavri, and the game would be over!\n\tzoltar: I meant to say if you sacrificed a b1 so you could trade your R3 for a Y3 that it wouldn't have worked. Building reds and eventually getting a r2 to your blue star and trading it for a y2 is the only way to get yellow for now, but I might have them all by the time you do it.\n\n20) nycavri: Trade B1 R1 Downtown\n\tnycavri: Thanks for the sacrifice tip. Not sure I would have spotted it as an option, but can see why it's a game ender. There may be a way to open GRY, but I sure didn't find it!\n\n21) zoltar: Move B2 Zoltar Greenbelt\n\n22) nycavri: Build R2 Downtown\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y2 Greenbelt\nBuild Y2 Greenbelt\n\tnycavri: Sorry - gotta run. I'll be back tomorrow to pick up. Thanks again for talking strategy with a newbie - it's appreciated. \n\n24) nycavri: Build R2 Nycavri\n\tzoltar: ...just in time\n\n25) zoltar: Discover Y2 Greenbelt G3 Greendale\n\tzoltar: You may wish to take that move back, as it's now mate in three or so.\r\n\r\nI can sac my Y2 in zoltar to move a Y2 from Greenbelt to nycavri. As you are defenseless without the R3, you can't capture the Y2, nor can you move your R3 back to your homeworld. So next move I sac my R1 in Zoltar and take your R1 and win the game. Or you can build an R2 in your homeworld and I sac my R1 and take your R2 and it's checkmate the move after that!\n\n26) nycavri: Discover R2 Nycavri G1 Sunset\n\tnycavri: Thanks again - spending too much time worrying about my position, and too little about yours. Good lesson to learn.\n\n27) zoltar: Trade B2 G2 Zoltar\n\tzoltar: It's almost always deadly to move or sacrifice your defending 3-size piece in your homeworld. The only reason I've got away with it is to keep you out of yellow production, so while you can't reach my homeworld, I'm safe without a large piece, but eventually I'll want to restore one there as well.\n\n28) nycavri: Build R2 Sunset\n\n29) zoltar: Sacrifice G2 Zoltar\nBuild R3 Zoltar\nBuild R3 Zoltar\n\n30) nycavri: Trade R2 G2 Downtown\n\n31) zoltar: Trade R3 G3 Zoltar\n\n32) nycavri: Sacrifice B1 Downtown\nTrade R3 Y3 Nycavri\n\tnycavri: So, you successfully demonstrated why a Yellow is necessary in the opening! Happy to play it out anyway....\n\n33) zoltar: Move R3 Zoltar Greenbelt\n\tzoltar: Actually, it was the blue that was necessary, along with green, as if you created another green or blue, you could immediately trade it for a yellow piece.\n\tnycavri: Right, right, that's what I said. ;)\n\n34) nycavri: Build Y3 Nycavri\n\n35) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Greenbelt Downtown\nMove Y1 Downtown Nycavri\nCatastrophe Nycavri Y\n\tzoltar: Oops, I want to think about this for a minute or two first, actually.\n\n36) nycavri: Trade G1 Y1 Downtown\n\tzoltar: Well, at least you finally got your yellow ship!\n\n37) zoltar: Sacrifice G3 Zoltar\nBuild R2 Zoltar\nBuild R3 Zoltar\nBuild R3 Greenbelt\n\n38) nycavri: Discover Y1 Downtown G3 Ues\n\tzoltar: Of course if you try to get a third yellow, I can blow up all your yellow ships and your star, but you had few other options\n\n39) zoltar: Move R2 Zoltar Nycavri\n\n40) nycavri: Move Y1 Ues Sunset\n\tzoltar: I think I can win right away my moving my y2 ship into your homeworld, but I'll retract that and play it more slowly as I usually would.\n\tnycavri: Ooooh. You got in just in time - I had entered my move.....\n\tnycavri: But yes, I assumed you had the win next turn with y2 to my Homeworld.\n\n41) zoltar: Attack R1 Nycavri\n\tzoltar: Actually, moving my G3 from my homeworld to yours (which is possible now that your small star is gone) would have won the most decisively. But getting all the red ships first is the safe way to proceed as I can attack next move if I wish.\n\n\tnycavri: If you are happy to continue playing a rookie, send me a direct challenge. I'm flying back to New York tomorrow, and will be back at my computer regularly after Tuesday. Thanks for taking the time to coach me - it's appreciated. And yes, you can bet on seeing a BGY opening from me in future!\n\nHomeworlds Online (SDG# 6403)\nStarted: 2007.2.9, Ended: 2007.3.16\nParticipants: zoltar (S), GreedyAlgorithm (N)\nWinner: zoltar\n\n1) GreedyAlgorithm: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld B3 Y2 G3\n\n3) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n4) zoltar: Build G1 Zoltar\n\n5) GreedyAlgorithm: Trade G1 Y1 Greedyalgorithm\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n8) zoltar: Build G1 Zoltar\n\n9) GreedyAlgorithm: Trade G1 B1 Greedyalgorithm\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) GreedyAlgorithm: Build G1 Greedyalgorithm\n\n12) zoltar: Build B2 Zoltar\n\n13) GreedyAlgorithm: Build B2 Greedyalgorithm\n\n14) zoltar: Trade B2 R2 Zoltar\n\n15) GreedyAlgorithm: Discover B1 Greedyalgorithm B3 Teh\n\n16) zoltar: Build B2 Zoltar\n\n17) GreedyAlgorithm: Build B2 Greedyalgorithm\n\n18) zoltar: Discover B1 Zoltar Y1 Yellowstone\n\n\nHomeworlds Online (SDG# 6440)\nStarted: 2007.2.10, Ended: 2007.2.15\nParticipants: zoltar (S), nycavri (N)\nWinner: zoltar\n\n1) nycavri: Homeworld G3 Y2 B3\n\tnycavri: Thanks for the long start time - I'm going to need some of it.\n\n2) zoltar: Homeworld B3 Y1 G3\n\n3) nycavri: Build B1 Nycavri\n\tzoltar: Well, you said you'd be away, so I figure I'd change the start time so we could get underway.\n\n4) zoltar: Build G1 Zoltar\n\tnycavri: Back home in New York now. Should be reasonably active M-F, 9-5 EST now that I'm back at work. Where are you based?\n\tzoltar: I'm in Greenbelt, MD, just outside of the Washington, DC Beltway.\n\n5) nycavri: Discover B1 Nycavri G1 Deacon\n\n6) zoltar: Discover G1 Zoltar B2 Blues\n\n7) nycavri: Build B1 Deacon\n\n8) zoltar: Build G1 Zoltar\n\n9) nycavri: Trade B1 Y1 Deacon\n\n10) zoltar: Build G2 Blues\n\n11) nycavri: Build Y1 Deacon\n\n12) zoltar: Trade G2 Y2 Blues\n\n13) nycavri: Build B1 Nycavri\n\n14) zoltar: Build G2 Blues\n\n15) nycavri: Trade Y1 R1 Deacon\n\n16) zoltar: Trade G2 R2 Blues\n\n17) nycavri: Build R1 Deacon\n\n18) zoltar: Build G2 Blues\n\tnycavri: Homeworlds is a fascinating game when I don't needlessly handicap myself.\n\n19) nycavri: Trade B1 Y1 Nycavri\n\tzoltar: Yes, I know the feeling. Right now I'm playing against a much better player, and he already has the upper hand after 5 moves and is into the middle sized pieces as I am here, and is going to get a bigger advantage, and I have no idea where I went wrong. The game seems to have the complexity almost of chess, though it is mostly tactics.\n\n20) zoltar: Move G2 Blues Deacon\n\n21) nycavri: Build Y2 Nycavri\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blues\nBuild G2 Deacon\nBuild G3 Zoltar\n\n23) nycavri: Move B1 Deacon Nycavri\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blues\nBuild Y3 Blues\n\n25) nycavri: Trade B3 R3 Nycavri\n\n26) zoltar: Discover Y2 Blues B1 Blueberry\n\n27) nycavri: Build Y3 Deacon\n\n28) zoltar: Sacrifice G2 Blues\nBuild Y3 Blueberry\nBuild G2 Deacon\nCatastrophe Deacon G\n\n29) nycavri: Trade Y1 G1 Nycavri\n\tzoltar: How was that for a sophisticated tactical move: I sacked my g2, grew the last y3, then grew my g2 back in the system with all your pieces and created a catastrophe, leaving a simplified position where I have 3 extra large ships!\n\n30) zoltar: Discover Y2 Blueberry G2 Greenbelt\n\tnycavri: Yes, but I thought you were going to blow up my y2 planet, so we'll call it a push. *grin*\n\tzoltar: I had that choice, but this way I had such a material advantage at the end that it seemed to be a much safer move, and now you even had to spend a move to stop the threat to your yellow star; the other way, I take out one of your binary stars, but you have the Y3 which you could do trouble with. \n\tnycavri: I'm still expecting to lose, but at least now it will take a couple of turns longer. I hope.....\n\n31) nycavri: Move Y2 Nycavri Blueberry\n\n32) zoltar: Sacrifice R2 Blues\nAttack Y2 Blueberry\nPass\n\tzoltar: Well, I'm playing slowly now, spreading out my forces so I can build up more forces before I attack.\n\n33) nycavri: Build R1 Nycavri\n\n34) zoltar: Sacrifice G3 Blues\nBuild G2 Zoltar\nBuild G2 Blues\nBuild G3 Blues\n\tnycavri: You're able to do that when your opponent appears incapable of creating any offense of his own.....\n\n35) nycavri: Discover R3 Nycavri Y1 May\n\n36) zoltar: Trade Y3 R3 Blueberry\n\n37) nycavri: Move R3 May Nycavri\n\tzoltar: That is an insane move, leaving your homeworld undefendend. You're lucky that I don't have any red pieces!\n\n38) zoltar: Sacrifice G3 Blues\nBuild G3 Blues\nBuild R1 Blueberry\nBuild Y1 Blueberry\n\tnycavri: You're just toying with me now - you can blow me up almost at will. The fact is you have no Reds, and I'm going to try and steal a move from you somewhere to try and make some sort of comeback. Again, not expecting it to work, but what do I have to lose?\n\tzoltar: Well, if you don't run your r3 back to your homeworld, it's all over.\n\tnycavri: Yup. I keep looking for you to make a mistake, but no.....\n\n39) nycavri: Trade R1 Y1 Nycavri\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Blues\nBuild Y3 Greenbelt\n\n41) nycavri: Discover Y1 Nycavri R1 Mercury\n\n42) zoltar: Move Y2 Greenbelt Blueberry\n\n43) nycavri: Move G1 Nycavri Mercury\n\n44) zoltar: Move G2 Blues Mercury\n\n45) nycavri: Sacrifice Y1 Mercury\nDiscover G1 Mercury B2 Taylor\n\n46) zoltar: Sacrifice Y3 Blues\nMove Y1 Blueberry Nycavri\nMove Y2 Blueberry Nycavri\nMove Y2 Blueberry Nycavri\nCatastrophe Nycavri Y\n\n47) nycavri: Trade G1 Y1 Taylor\n\n48) zoltar: Sacrifice Y3 Blues\nMove G1 Blues Nycavri\nMove G2 Mercury Nycavri\nMove G3 Blues Nycavri\nCatastrophe Nycavri G\n\tzoltar: Too bad you don't have another y1 ship, or you'd be threatening "the blueberry" checkmate, as all my homeworld ships are green (the ideal setup would be to have a large green and one other ship red, so all four colors are represented, and no more than one of each color for maximum stability. I haven't traded, say my g2 to r2, which I would have done the move after I built the third green ship, only because you didn't have any yellow tech to reach it.\n\tzoltar: Sorry, that would be called the 'bluebird' checkmate, when you sacrifice to move to an opponent's homeworld where they have only one color, and you destroy all of their ships\n\n\tzoltar: Here the story from the Homeworlds World Champion himself:\r\n\r\nhttp://www.youtube.com/profile?user=AndrewLooney\r\n\r\nAnd look for the video called "The Bluebird Mistake" \n\tzoltar: Well, gg again. You're doing great as a beginner. Took me a dozen games till I won one, as this is hard, like chess, but worth the initial frustration as it's a wonderful fun game.\n\tnycavri: Thanks. This is one of the few gamse I seem to enjoy even when being trounced. Looking forward to eventually being able to teach this face to face - I imagine it's even *more* fun with players getting into the space opera theme.\n\nHomeworlds Online (SDG# 6420)\nStarted: 2007.2.12, Ended: 2007.2.22\nParticipants: dsheldon (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\tdsheldon: So you're like... the best there is, huh? I'm looking forward to a good whupin'.\n\n2) dsheldon: Homeworld B3 R2 G3\n\tTwoShort: Hmmm... I'll be the first to say I think Jesse is better than me. I've driven my rating higher than his because I spend more time than him handing out whupin's... :)\n\n3) TwoShort: Build G1 Twoshort\n\n4) dsheldon: Build G1 Dsheldon\n\n5) TwoShort: Discover G1 Twoshort Y3 Yoyo\n\n6) dsheldon: Trade G1 Y1 Dsheldon\n\n7) TwoShort: Build G1 Twoshort\n\n8) dsheldon: Build G1 Dsheldon\n\n9) TwoShort: Build G2 Twoshort\n\n10) dsheldon: Discover G1 Dsheldon Y1 Buttercup\n\n11) TwoShort: Discover G2 Twoshort B3 Bluestar\n\n12) dsheldon: Build G2 Dsheldon\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yoyo\nBuild G3 Bluestar\nBuild G3 Twoshort\n\n14) dsheldon: Build Y2 Dsheldon\n\n15) TwoShort: Trade G2 Y2 Bluestar\n\n16) dsheldon: Build G2 Buttercup\n\n17) TwoShort: Trade G1 R1 Twoshort\n\n18) dsheldon: Discover Y2 Dsheldon B1 Capillary\n\n19) TwoShort: Move G1 Yoyo Buttercup\n\n20) dsheldon: Trade G2 B2 Dsheldon\n\n21) TwoShort: Sacrifice G3 Bluestar\nBuild G1 Buttercup\nBuild G2 Yoyo\nBuild G3 Twoshort\nCatastrophe Buttercup Green\n\n22) dsheldon: Build G1 Dsheldon\n\n23) TwoShort: Move G2 Yoyo Capillary\n\n24) dsheldon: Trade Y2 R2 Capillary\n\n25) TwoShort: Sacrifice R1 Twoshort\nAttack R2S Capillary\n\n26) dsheldon: Discover G1 Dsheldon G1 Vinyard\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yoyo\nBuild G2 Capillary\nBuild G3 Twoshort\n\n28) dsheldon: Build Y1 Dsheldon\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild R1 Capillary\nBuild G3 Twoshort\n\tdsheldon: Hmm, having half the ships definitely has me worried.\n\n30) dsheldon: Move Y1 Dsheldon Vinyard\n\n31) TwoShort: Move Y2 Bluestar Vinyard\n\n32) dsheldon: Sacrifice G3 Dsheldon\nBuild Y2 Vinyard\nBuild Y3 Dsheldon\nBuild G3 Vinyard\n\n33) TwoShort: Sacrifice Y2 Vinyard\nMove G1 Yoyo Vinyard\nMove Y2 Bluestar Capillary\nCatastrophe Vinyard Green\n\n34) dsheldon: Trade Y3 G3 Dsheldon\n\n35) TwoShort: Build R1 Capillary\n\n36) dsheldon: Discover B2 Dsheldon G1 Escape Hatch\n\n37) TwoShort: Sacrifice Y2 Capillary\nMove R1 Capillary Dsheldon\nMove R1 Capillary Dsheldon\n\n38) dsheldon: Build B1 Escape\n\n39) TwoShort: Sacrifice G2 Yoyo\nBuild R1 Dsheldon\nBuild R2 Capillary\nCatastrophe Dsheldon Red\n\n40) dsheldon: Trade B2 Y2 Escape\n\n41) TwoShort: Move G3 Twoshort Dsheldon\n\n42) dsheldon: Move Y2 Escape Dsheldon\n\n43) TwoShort: Sacrifice R2 Capillary\nAttack G3S Dsheldon\nAttack Y2S Dsheldon\n\n44) dsheldon: Build B1 Escape\n\n45) TwoShort: Sacrifice R2 Capillary\nAttack Y1S Dsheldon\nPass\n\tdsheldon: You've got me. It might take you two moves, but I'm as good as dead.\n\tTwoShort: Yeah, if you'd taken a red last turn instead of yellow, you might have drawn it out more; but behind on ships I don't think you could have stopped me from amassing enough blues to take out your other star. Anyway, thanks for the game!\n\n\nHomeworlds Online (SDG# 6498)\nVariants: "Hard time"\nStarted: 2007.2.13, Ended: 2007.2.20\nParticipants: dsheldon (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld R1 B2 G3\n\n2) dsheldon: Homeworld Y3 B2 G3\n\tclockwise: Greetings dsheldonites, the people of Clockwise Prime wish to challenge you to a little game we like to call "destroying your homeworld". May the best triangular lifeform win.\n\n3) clockwise: Build G1 Clockwise\n\n4) dsheldon: Build G1 Dsheldon\n\tdsheldon: Destruction is not necessary, simply depopulation. But I do agree that I find destruction to be easier. Allow me to demonstrate...\r\n\r\n(mmm, semi-rp homeworlds trashtalking. fun.)\n\n5) clockwise: Trade G1 Y1 Clockwise\n\n6) dsheldon: Discover G1 Dsheldon Y1 Babycorn\n\n7) clockwise: Build G1 Clockwise\n\n8) dsheldon: Build G1 Dsheldon\n\n9) clockwise: Build G2 Clockwise\n\n10) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Babycorn\nBuild G2 Babycorn\nBuild G3 Dsheldon\n\n11) clockwise: Discover G2 Clockwise G3 Kermit\n\n12) dsheldon: Discover G2 Babycorn B2 Reststop\n\n13) clockwise: Sacrifice G3 Clockwise\nBuild G3 Clockwise\nBuild Y1 Clockwise\nBuild Y2 Clockwise\n\n14) dsheldon: Trade G2 Y2 Reststop\n\n15) clockwise: Discover Y1 Clockwise B3 Cookie\n\n16) dsheldon: Move G1 Babycorn Cookie\n\n17) clockwise: Sacrifice G3 Clockwise\nBuild G2 Kermit\nBuild G3 Clockwise\nBuild Y2 Cookie\n\n18) dsheldon: Move G2 Babycorn Kermit\nCatastrophe Kermit G\n\n19) clockwise: Trade Y2 R2 Cookie\n\tclockwise: You monster! All those frogs... wasted...\n\n20) dsheldon: Sacrifice G1 Cookie\nBuild Y1 Reststop\n\n21) clockwise: Discover Y1 Clockwise G3 Kermit\n\n22) dsheldon: Trade Y1 R1 Reststop\n\n23) clockwise: Build Y1 Kermit\n\n24) dsheldon: Build G1 Dsheldon\n\n25) clockwise: Sacrifice G3 Clockwise\nBuild Y2 Clockwise\nBuild Y3 Clockwise\nBuild Y3 Cookie\n\n26) dsheldon: Discover G1 Dsheldon R1 Skirmish\n\n27) clockwise: Trade Y3 G3 Clockwise\n\n28) dsheldon: Sacrifice G3 Dsheldon\nBuild Y3 Reststop\nBuild R2 Reststop\nBuild G2 Dsheldon\n\n29) clockwise: Sacrifice Y2 Clockwise\nMove Y1 Kermit Reststop\nMove Y1 Cookie Reststop\nCatastrophe Reststop Yellow\n\n30) dsheldon: Trade R2 Y2 Reststop\n\n31) clockwise: Sacrifice Y2 Clockwise\nMove Y3 Cookie Skirmish\nMove Y3 Skirmish Dsheldon\n\n32) dsheldon: Sacrifice Y2 Reststop\nMove R1 Reststop Skirmish\nMove R1 Skirmish Dsheldon\n\tclockwise: The move I should have made last turn.\n\n33) clockwise: Sacrifice R2 Cookie\nAttack G2S Dsheldon\nAttack R1S Dsheldon\n\tdsheldon: Wait... no, you have other non-explodey avenues of attack. Oh, this'll be hard.\n\n34) dsheldon: Build G2 Dsheldon\n\tdsheldon: This could go a couple different ways, all of them bad.\n\n35) clockwise: Sacrifice G3 Clockwise\nBuild G2 Dsheldon\nBuild G3 Clockwise\nBuild G3 Clockwise\nCatastrophe Dsheldon Green\n\tclockwise: Your move actually makes this a little easier.\n\tdsheldon: I figured you'd either nuke my Y3 star, or switch your Y3 to an R3 and just take over everything. At least this way you lose a ship in the process.\r\n\r\nSo I have one ship that can't move, and one small in my homeworld. All I can do is make green ships and all the ones I'll make you can steal until there are four and all my forces die...\r\n\r\nI've lost, do you want to play it through or should I just resign?\n\n\tclockwise: Actually, this way I get an extra g3 in the process, not that it really matters.\n\tclockwise: Thanks for the game!\n\tdsheldon: You're quite welcome. Every time I lose I learn something.\r\n\r\nI've been learning a lot lately...\n\nHomeworlds Online (SDG# 6463)\nVariants: "Hard time"\nStarted: 2007.2.13, Ended: 2007.4.5\nParticipants: zoltar (S), Personman (N)\nWinner: zoltar\n\n1) Personman: Homeworld B3 Y1 G3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) Personman: Build G1 Personman\n\n4) zoltar: Build G1 Zoltar\n\n5) Personman: Discover G1 Personman Y2 Y2a\n\tzoltar: Greetingz Earthling: We meet again, Personman!\n\tPersonman: :) Hi! It has been a while, hasn't it? I wonder if I've learned anything since last time. Probably not!\n\tzoltar: Well, I was on a losing streak for a while, but all that's about to change, I hope! \n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Personman: Build G1 Personman\n\n8) zoltar: Build Y1 Zoltar\n\n9) Personman: Build G1 Y2a\n\n10) zoltar: Discover Y1 Zoltar B1 Blueberry\n\n11) Personman: Build G2 Personman\n\n12) zoltar: Build G2 Zoltar\n\n13) Personman: Trade G2 Y2 Personman\n\n14) zoltar: Build Y2 Zoltar\n\n15) Personman: Build G2 Personman\n\n16) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Blueberry\nBuild Y3 Blueberry\n\n17) Personman: Trade G1 R1 Personman\n\n18) zoltar: Trade Y3 R3 Zoltar\n\n19) Personman: Trade G2 B2 Personman\n\n20) zoltar: Trade Y3 G3 Blueberry\n\tzoltar: Yeah, gotta go for the Yellow superiority.\n\n21) Personman: Move G1 Y2a Blueberry\n\n22) zoltar: Sacrifice G3 Blueberry\nBuild Y3 Blueberry\nBuild Y3 Zoltar\nBuild R1 Zoltar\n\n23) Personman: Build G1 Blueberry\n\n24) zoltar: Move Y3 Blueberry Y2a\n\n25) Personman: Sacrifice Y2 Personman\nDiscover R1 Personman Y2 Y2b\nDiscover G1 Y2a B1 B1a\n\n26) zoltar: Move R3 Zoltar B1a\n\n27) Personman: Trade G1 R1 Blueberry\n\n28) zoltar: Trade Y3 G3 Zoltar\n\n29) Personman: Attack Y1 Blueberry\n\n30) zoltar: Sacrifice G2 Zoltar\nBuild R2 B1a\nBuild Y3 Blueberry\n\n31) Personman: Sacrifice G1 B1a\nBuild R2 Y2b\n\n32) zoltar: Sacrifice R3 B1a\nAttack R1 Blueberry\nAttack G1 Blueberry\nAttack Y1 Blueberry\n\n33) Personman: Build G1 Personman\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild R2 Zoltar\nBuild R3 B1a\nBuild R3 Blueberry\n\n35) Personman: Move R1 Y2b Personman\n\n36) zoltar: Move R3 Blueberry Y2b\n\n37) Personman: Discover R2 Y2b G1 G1a\n\n38) zoltar: Move Y1 Zoltar B1a\n\n39) Personman: Build B1 Personman\n\n40) zoltar: Move R1 Zoltar Blueberry\n\n41) Personman: Discover B1 Personman G2 G2a\n\n42) zoltar: Move R3 B1a G2a\n\n43) Personman: Build B2 G2a\n\n44) zoltar: Move Y3 Blueberry Zoltar\n\n45) Personman: Build G2 Personman\n\n46) zoltar: Sacrifice Y3 Blueberry\nMove G1 Blueberry Y2a\nMove G1 Y2a Personman\nMove Y3 Y2a Personman\nCatastrophe Personman G\n\n47) Personman: Build B3 G2a\n\n48) zoltar: Sacrifice R3 Y2b\nAttack B3 G2a\nAttack B2 Personman\nAttack R1 Personman\n\n\tzoltar: gg Earthling!\n\nHomeworlds Online (SDG# 6481)\nStarted: 2007.2.14, Ended: 2007.2.20\nParticipants: eriinfo (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) eriinfo: Homeworld B1 Y3 G3\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: howdy...\r\n\n\n4) eriinfo: Build G1 Eriinfo\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\teriinfo: hello, good luck.\n\n6) eriinfo: Trade G1 B1 Eriinfo\n\n7) TwoShort: Build G1 Twoshort\n\n8) eriinfo: Build G1 Eriinfo\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) eriinfo: Discover G1 Eriinfo Y2 Cire\n\n11) TwoShort: Build G1 Twoshort\n\n12) eriinfo: Build G2 Cire\n\n13) TwoShort: Build G2 Twoshort\n\n14) eriinfo: Move G1 Cire Eriinfo\n\n15) TwoShort: Discover G2 Twoshort G3 Landgrab\n\n16) eriinfo: Build G2 Eriinfo\n\n17) TwoShort: Sacrifice G2 Landgrab\nBuild G2 Twoshort\nBuild G3 Yolonda\n\n18) eriinfo: Trade G2 Y2 Eriinfo\n\n19) TwoShort: Trade G2 R2 Twoshort\n\n20) eriinfo: Build G2 Cire\n\n21) TwoShort: Discover G3 Yolonda Y2 Threat\n\n22) eriinfo: Trade G1 R1 Eriinfo\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Threat\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n24) eriinfo: Discover G2 Cire Y3 Rice\n\n25) TwoShort: Build Y1 Twoshort\n\n26) eriinfo: Build Y1 Eriinfo\n\n27) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n28) eriinfo: Move Y1 Eriinfo Cire\n\n29) TwoShort: Move G3 Threat Rice\n\n30) eriinfo: Move B1 Eriinfo Cire\n\n31) TwoShort: Sacrifice G1 Threat\nBuild Y2 Bluestar\n\n32) eriinfo: Build G1 Eriinfo\n\n33) TwoShort: Build R1 Twoshort\n\n34) eriinfo: Build R2 Eriinfo\n\n35) TwoShort: Sacrifice R1 Twoshort\nAttack G2S Rice\n\n36) eriinfo: Trade R1 B1 Eriinfo\n\n37) TwoShort: Trade Y2 R2 Bluestar\n\n38) eriinfo: Build B2 Eriinfo\n\n39) TwoShort: Move G3 Rice Cire\n\n40) eriinfo: Discover B2 Eriinfo Y2 Icer\n\n41) TwoShort: Sacrifice G2 Rice\nBuild Y3 Bluestar\nBuild R1 Bluestar\n\n42) eriinfo: Sacrifice G2 Cire\nBuild B2 Eriinfo\nBuild B3 Icer\n\n43) TwoShort: Sacrifice R2 Bluestar\nAttack Y1S Cire\nAttack B1S Cire\n\n44) eriinfo: Sacrifice Y2 Eriinfo\nMove G1 Eriinfo Icer\nDiscover B1 Eriinfo G2 Crie\n\n45) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Cire\nBuild B3 Cire\nBuild G3 Twoshort\n\n46) eriinfo: Trade B3 R3 Icer\n\n47) TwoShort: Sacrifice G1 Yolonda\nBuild Y2 Twoshort\n\n48) eriinfo: Move B2 Eriinfo Icer\n\n49) TwoShort: Sacrifice G2 Yolonda\nBuild B3 Cire\nBuild Y3 Cire\n\n50) eriinfo: Build G1 Eriinfo\n\n51) TwoShort: Sacrifice Y3 Cire\nMove B1 Cire Eriinfo\nMove B3 Cire Eriinfo\nMove B3 Cire Eriinfo\nCatastrophe Eriinfo Blue\n\n52) eriinfo: Build B1 Crie\n\n53) TwoShort: Sacrifice Y3 Bluestar\nMove Y1 Cire Eriinfo\nMove Y2 Twoshort Eriinfo\nMove Y1 Twoshort Eriinfo\nCatastrophe Eriinfo Yellow\n\tTwoShort: Your resistance to being finished off is quite impressive, but now I think I've got you. :)\n\n\nHomeworlds Online (SDG# 6465)\nStarted: 2007.2.14, Ended: 2007.2.18\nParticipants: nycavri (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B1 Y3 G3\n\n2) nycavri: Homeworld G2 Y1 B3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) nycavri: Build B1 Nycavri\n\n5) Uglyfoot: Discover G1 Uglyfoot B2 Thestrip\n\n6) nycavri: Build B1 Nycavri\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) nycavri: Trade B1 G1 Nycavri\n\n9) Uglyfoot: Build G2 Thestrip\n\n10) nycavri: Build G2 Nycavri\n\tnycavri: Hello again! This is only my third attempt at playing Homeworlds, and I was severely thumped in my first two games! I hope I've learned something from those losses, though. What's your Icehouse background?\n\n11) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Thestrip\n\tUglyfoot: I have been a Mad Lab Rabbit for 3 years, doing several conventions around the Kansas City area. I've been learning as many games as possible to support my 10+ stashes. Volcano is a face-to-face favorite.\r\n\n\tUglyfoot: For Homeworlds, I have been getting thumped at it for over a year now and last time I checked I had the worst rating.\n\n12) nycavri: Trade B3 Y3 Nycavri\n\n13) Uglyfoot: Trade G3 Y3 Uglyfoot\n\tnycavri: Rabbit since December, when I discovered the Icehouse games at BGG, bought a bunch of Treehouse sets, Volcano caps, boards, books, stickers, coasters, and awndered over to SDG to play smoe of the more complicated games on a regular basis. Homeworlds is clearly my favorite, despite my mediocre play, but I've loved playing Pikemen and BBT, both of which I had played elsewhere. I've introduced everyone I've met to Icehouse, played Treehouse in bars and restaurants on 2 continents and will be whipping them out next week at the slightest provocation at the NY ComicCon. Pity the Looneys can't be there.\n\tnycavri: I should read my posts before hitting send, 'specially when I'm excited. I "sound" like a teenager.....\n\n14) nycavri: Discover G1 Nycavri B3 Mv\n\n15) Uglyfoot: Trade G2 R2 Thestrip\n\n16) nycavri: Trade G1 Y1 Mv\n\n17) Uglyfoot: Trade G1 Y1 Thestrip\n\n18) nycavri: Sacrifice G2 Nycavri\nBuild Y2 Mv\nBuild B1 Nycavri\n\n19) Uglyfoot: Move G3 Thestrip Mv\n\tnycavri: Any interest in my Blam! challenge? That's the only Icehouse game I haven't played on SDG.\n\n20) nycavri: Trade Y3 R3 Nycavri\n\n21) Uglyfoot: Sacrifice R2 Thestrip\nAttack Y2 Mv\nAttack Y1 Mv\n\n22) nycavri: Build B2 Nycavri\n\n23) Uglyfoot: Trade Y1 R1 Mv\n\n24) nycavri: Trade B2 R2 Nycavri\n\n25) Uglyfoot: Build R1 Mv\n\n26) nycavri: Discover R2 Nycavri Y3 Iw\n\n27) Uglyfoot: Build R1 Mv\n\n28) nycavri: Trade R3 G3 Nycavri\n\n29) Uglyfoot: Move R1 Mv Nycavri\n\n30) nycavri: Move R2 Iw Nycavri\n\n31) Uglyfoot: Build R2 Nycavri\n\n32) nycavri: Attack R2 Nycavri\n\n33) Uglyfoot: Build R2 Nycavri\nCatastrophe Nycavri R\n\n34) nycavri: Trade B1 R1 Nycavri\n\n35) Uglyfoot: Build G1 Mv\n\n36) nycavri: Build B1 Nycavri\n\n37) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove G1 Mv Nycavri\nMove G3 Mv Nycavri\nMove Y2 Mv Nycavri\nCatastrophe Nycavri G\n\n38) nycavri: Trade B1 G1 Nycavri\n\n39) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild Y1 Nycavri\nBuild Y2 Nycavri\nBuild G1 Uglyfoot\nCatastrophe Nycavri Y\n\tUglyfoot: Thank you for the game. Annihilation turned out to be key...\n\tnycavri: Well played. I'm sure we'll play again in future.\n\n\nHomeworlds Online (SDG# 6478)\nVariants: "Unrated, Sinister"\nStarted: 2007.2.15, Ended: 2007.6.18\nParticipants: jan (S), dsheldon (W), Gort (N), zoltar (E)\nWinner: zoltar\n\n1) Gort: Homeworld G3 B2 Y3\n\tdsheldon: OK! This game filled up sooner than I expected. This should be great.\r\n\r\nPhooey, why do I /always/ go last?\n\n2) zoltar: H B2 R1 G3\n\tGort: If I take too long to move, send me an email, Zoltar. Then don't wait long before you resign me. Thanks, and Good Skill!\n\n3) jan: Homeworld B3 Y1 G3\n\tzoltar: Ok. How do you play 'sinister' btw? \n\n4) dsheldon: Homeworld R2 B1 G3\n\tjan: yes what are the differences with sinister? dsheldon. ...playing this game i can't being reminded of H. Sheldon. Harry Sheldon from Issac Asimov's Foundation trilogy. have you read it?\n\tjan: or was it Harry Seldon?\n\tzoltar: No, I haven't read it. But I think you have to destroy one particular opponent to win, and each has to destroy a different one, but I don't know which one. \n\tdsheldon: Everyone has to destroy the player to their left (sinister:left::dexter:right, get it?). If someone else destroys the player to your left, play continues and you now target the new person to your left (your former target's target).\r\n\r\nAnd no, I haven't read The Foundation Trilogy, but I do have a cat named Asimov. ;)\n\n5) Gort: Build Y1 Gort\n\n6) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n7) jan: Build G1 Jan\n\tzoltar: Ok, that makes sense! I suppose that makes the opponent across from you your ally, unless they are about to kill your worst enemy, and which case ironically you'd want to save the team trying to destroy you.\n\tdsheldon: Less of an ally, more of a guy that really doesn't care. It's not like he's going to intentionally destroy huge numbers of his own ships to help you out.\r\n\r\nFor additionally irony, if the player to your left is about to win, it is very likely that you will want to destroy the player across from you. That way, the game continues with three players.\r\n\r\nSo yeah, not an ally at all.\n\n8) dsheldon: Build G1 Dsheldon\n\n9) Gort: Discover Y1 Gort G1 Gone\n\n10) zoltar: Trade G3 Y3 Zoltar\n\n11) jan: Trade G1 R1 Jan\n\n12) dsheldon: Trade G1 Y1 Dsheldon\n\tdsheldon: Just looking at this board and seeing four players is so awesome. I don't mean to gush, but wow.\n\n13) Gort: Build Y1 Gort\n\n14) zoltar: Build G1 Zoltar\n\n15) jan: Build G1 Jan\n\n16) dsheldon: Build G1 Dsheldon\n\n17) Gort: Trade Y3 G3 Gort\n\n18) zoltar: Build G2 Zoltar\n\n19) jan: Discover G1 Jan B2 Dolphin\n\n20) dsheldon: Discover G1 Dsheldon B3 Deep\n\n21) Gort: Build G2 Gort\n\n22) zoltar: Trade G1 R1 Zoltar\n\n23) jan: Build G1 Dolphin\n\tGort: Didn't think you'd do it, Zol... I'm in trouble now!\n\tzoltar: Yup. The problem is that dsheldon can checkmate you in 3 moves or so, and the game is over, so weakening myself to weaken you more doesn't help me.\n\n24) dsheldon: Build G2 Deep\n\tzoltar: So I'll just make a wimpy move instead...\n\tGort: I figured three moves gave enough time for me to come up with something... but no matter; our people persevere. Your alien ways are strange and disturbing to us. We must eradicate you.\n\tGort: PS: Thanks for using your time machine.\n\n25) Gort: Trade G2 R2 Gort\n\n26) zoltar: Discover G2 Zoltar B3 Bluemoon\n\n27) jan: Build G2 Jan\n\n28) dsheldon: Trade G2 Y2 Deep\n\n29) Gort: Build R1 Gort\n\tjan: sorry i took so long im not such an avid computer user. but if you want to move faster i don't mind if you nix me.\n\tzoltar: In no hurry is Zoltar.\n\n30) zoltar: Build G2 Bluemoon\n\n31) jan: Discover G2 Jan B2 Exos\n\n32) dsheldon: Build G2 Dsheldon\n\n33) Gort: Move R2 Gort Gone\n\n34) zoltar: Trade G2 Y2 Bluemoon\n\n35) jan: Build G2 Exos\n\n36) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Deep\nBuild G3 Deep\nBuild G3 Dsheldon\n\tdsheldon: Once Jan goes I won't be moving until at least Tuesday. I'll be out of town all weekend and then some. Sorry in advance for the delay that will cause.\n\n37) Gort: Move Y1 Gone Deep\n\n38) zoltar: Move G1 Zoltar Deep\nCatastrophe Deep G\n\n39) jan: Trade G2 Y2 Exos\n\n40) dsheldon: Move G2 Dsheldon Deep\n\tdsheldon: zoltar, buddy, pal, why'd you have to go and do that? You're, um... just making your true enemies more powerful. Yeah, that's it!\n\tzoltar: It would be irrational to allow you to maintain a lead of a large ship when I could neutralize your advanced fleet with only the sacrifice of a pawn.\n\n41) Gort: Trade Y1 G1 Deep\n\n42) zoltar: Move R1 Zoltar Bluemoon\n\n43) jan: Build G1 Jan\n\n44) dsheldon: Build G2 Dsheldon\n\n45) Gort: Build G2 Deep\n\n46) zoltar: Build G3 Bluemoon\n\n47) jan: Sacrifice G3 Jan\nBuild R1 Jan\nBuild Y1 Exos\nBuild G3 Jan\n\n48) dsheldon: Trade G2 R2 Deep\n\n49) Gort: Sacrifice R2 Gone\nAttack R2W Deep\nAttack Y2W Deep\n\n50) zoltar: Move G3 Bluemoon Zoltar\n\n51) jan: Move R1 Jan Exos\n\n52) dsheldon: Build Y1 Dsheldon\n\n53) Gort: Sacrifice Y2 Deep\nMove R2 Deep Zoltar\nMove G1 Deep Zoltar\n\tdsheldon: Woah. Sucks to be me.\n\n54) zoltar: Attack R2N Zoltar\n\tGort: Just need to use the Deep system as a hyperspace bypass.\n\n55) jan: Build R2 Exos\n\n56) dsheldon: Discover G2 Dsheldon R3 Apple\n\n57) Gort: Sacrifice G3 Gort\nBuild G1 Zoltar\nBuild G2 Zoltar\nBuild G3 Deep\n\n58) zoltar: Sacrifice G3 Zoltar\nBuild G3 Bluemoon\nBuild Y2 Bluemoon\nBuild R2 Bluemoon\n\n59) jan: Discover R1 Exos Y3 Plato\n\n60) dsheldon: Trade Y1 B1 Dsheldon\n\n61) Gort: Sacrifice G3 Deep\nBuild G3 Deep\nBuild R2 Gort\nBuild R3 Gort\n\tzoltar: Geez Gort, with an undefended homeworld, aren't you dead in 2 moves?\n\tzoltar: Then again, it's dsheldon that would have to kill you to win, and he's weak right now. That explains your crazy aggression.\n\tdsheldon: hey, just because I've got four ships to jan's nine, uh... yeah, little help here?\n\tzoltar: Perhaps Gort will help you and is planning to invade Exos, in which case I have no reason to attack him; but as he has three ships in my homeworld, if he attacks further I'll have to place my G3 in his homeworld next turn; as for now, Jan is still not an immediate threat to you, having no ships within one jump of your homeworld.\n\tzoltar: Then again, Gort has only one yellow piece and can't attack anyone right now; if jan moves tons of pieces into orbits of large stars, by then my homeworld crisis will hopefully be over and Gort will have yellow ships, so we can attack the ships right outside your homeworld. \n\n62) zoltar: Sacrifice Y2 Bluemoon\nDiscover R1 Bluemoon Y1 Wormhole\nMove R1 Wormhole Gort\nCatastrophe Gort R\n\n63) jan: Sacrifice G3 Jan\nBuild G3 Jan\nBuild R1 Jan\nBuild R1 Plato\n\n64) dsheldon: Move B1 Dsheldon Apple\n\n65) Gort: Trade G2 B2 Deep\n\n66) zoltar: Attack G2N Zoltar\n\tjan: im realy sorry folks my internet has been down all this time . hopefully it will be fine now.\n\n67) jan: Sacrifice Y2 Exos\nMove R1 Plato Dsheldon\nMove R1 Plato Dsheldon\n\n68) dsheldon: Attack R1S Dsheldon\n\n69) Gort: Build G2 Deep\n\n70) zoltar: Move G3 Bluemoon Exos\n\n71) jan: Sacrifice G3 Jan\nBuild G3 Jan\nBuild R2 Dsheldon\nBuild Y1 Exos\nCatastrophe Dsheldon Red\n\tzoltar: Wow -- I accidentally attacked my own ship by mistake and it worked! I suppose that is technically isomorphic to passing one's turn. Anyway, I undid it and swallowed a green ship instead. Yum. \n\n72) dsheldon: Build Y2 Dsheldon\n\n73) Gort: Build Y2 Gort\n\n74) zoltar: Sacrifice R2 Zoltar\nAttack R2S Exos\nAttack G2S Exos\n\n75) jan: Trade G3 B3 Jan\n\tzoltar: jan's internet must still be down\n\n76) dsheldon: Move Y1 Dsheldon Gort\n\n77) Gort: Trade Y2 R2 Gort\n\n78) zoltar: Sacrifice G3 Exos\nBuild G3 Exos\nBuild G3 Bluemoon\nBuild Y2 Bluemoon\n\n79) jan: Sacrifice Y1 Exos\nMove Y1 Exos Jan\n\tzoltar: Wear ease Jan????\n\n80) dsheldon: Discover Y1 Gort B1 Harumph\n\tjan: here i am , sorry\n\tzoltar: Jan is back! Whew Who!!!\n\n81) Gort: Sacrifice Y1 Gort\nMove B2 Deep Dsheldon\n\n82) zoltar: Move G2 Bluemoon Harumph\n\n83) dsheldon: Sacrifice G2 Apple\nBuild B1 Apple\nBuild B1 Apple\n\n84) Gort: Sacrifice G3 Deep\nBuild B3 Dsheldon\nBuild G2 Zoltar\nBuild R1 Gort\n\n85) zoltar: Sacrifice G3 Exos\nBuild G3 Exos\nBuild G3 Harumph\nBuild Y1 Zoltar\nCatastrophe Zoltar G\n\n86) dsheldon: Trade G3 R3 Dsheldon\n\n87) Gort: Sacrifice R2 Gort\nAttack Y2W Dsheldon\nAttack R3W Dsheldon\n\n88) zoltar: Sacrifice Y2 Bluemoon\nMove G3 Harumph Gort\nMove G3 Bluemoon Zoltar\n\tzoltar: Jan has been gone for 4 days again...\n\tdsheldon: I've noticed. I am loathe to eject him from the game however, as he's the one trying to kill me and I don't want to appear vindictive. That, and you (Zoltar) will likely annihilate me in short order.\n\tzoltar: I'd hate to eject anyone because their time was up. Jan had internet trouble before. This is my first "Sinister" game -- and it's rather interesting.\n\tGort: I certainly don't mind waiting.\n\tzoltar: Attention: Jan hazz knot moved in one cycle of Earth's moon, Luna. Perhaps the Earthling hazz been sucked into a black hole. Shall we terminate Jan's fleet now?\n\n89) Gort: Sacrifice Y2 Dsheldon\nMove R3 Dsheldon Gort\nMove B2 Dsheldon Gort\n\tdsheldon: Woah, good thing I came and checked on the game. I didn't get any email notification when Jan resigned.\r\n\r\nAlso: now we're down to three players, and that's sad.\n\n90) zoltar: Sacrifice R2 Exos\nAttack R1N Gort\nAttack R3N Gort\n\tGort: I thought Jan had excellent position. Sorry to see the species begin its slow tumble into the dark ages. Our race intends to die out sooner, but more gloriously.\n\n91) Gort: Sacrifice G2 Deep\nBuild B3 Gort\nPass\n\n92) zoltar: Sacrifice R2 Bluemoon\nAttack B2N Gort\nAttack B3N Gort\n\tGort: that'll teach me to wait on catastrophes.\n\tdsheldon: I got nuthin'. Looks like I'm done for.\n\n\tzoltar: Very well. Zoltar will not destroy your species and supernova your homeworld, but will instead claim your ships for the Zoronian Armada, and make your species loyal minions under the protection of the Great Galactic Emperor Zoltar!!!\n\nHomeworlds Online (SDG# 6541)\nStarted: 2007.2.15, Ended: 2007.2.17\nParticipants: zoltar (S), nycavri (N)\nWinner: zoltar\n\n1) nycavri: Homeworld B2 Y3 G3\n\tnycavri: "Hey, didn't we just leave this patry?"\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) nycavri: Build G1 Nycavri\n\tzoltar: Did you watch the 'bluebird' video?\n\tnycavri: I did, thanks - good stuff. And the "real" game looks so pretty in progress.\n\n4) zoltar: Build G1 Zoltar\n\n5) nycavri: Trade G1 R1 Nycavri\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) nycavri: Build G1 Nycavri\n\n8) zoltar: Build Y1 Zoltar\n\n9) nycavri: Trade G1 Y1 Nycavri\n\n10) zoltar: Build Y2 Zoltar\n\n11) nycavri: Build Y2 Nycavri\n\n12) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n13) nycavri: Sacrifice Y2 Nycavri\nDiscover R1 Nycavri R1 Hop\nMove R1 Hop Greenbelt\n\n14) zoltar: Discover Y1 Greenbelt G1 Greendale\n\n15) nycavri: Build G1 Nycavri\n\n16) zoltar: Build Y2 Greendale\n\n17) nycavri: Move Y1 Nycavri Greendale\n\n18) zoltar: Discover Y2 Zoltar B2 Blueridge\n\n19) nycavri: Build Y2 Greendale\n\n20) zoltar: Build G1 Zoltar\n\n21) nycavri: Build Y3 Greendale\n\n22) zoltar: Build Y3 Zoltar\nCatastrophe Greendale Y\n\n23) nycavri: Trade G1 Y1 Nycavri\n\tnycavri: And I've gone and given you the edge again.....\n\n24) zoltar: Move G1 Zoltar Blueridge\n\n25) nycavri: Build G1 Nycavri\n\tzoltar: yes, you have!\n\n26) zoltar: Build G1 Blueridge\n\n27) nycavri: Trade G1 B1 Nycavri\n\n28) zoltar: Trade G1 B1 Blueridge\n\n29) nycavri: Discover B1 Nycavri Y1 Jw\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y2 Blueridge\nBuild Y3 Blueridge\n\n31) nycavri: Move B1 Jw Greenbelt\n\tzoltar: hold on a sec, I need to think for a minute about this -- I may have an interesting sacrifice\n\n32) zoltar: Trade Y3 G3 Zoltar\n\tzoltar: This would usually be suicidal, leaving two of my systems so vulnerable with three yellows in each, especially my homeworld, but as you only have a y1, I can get away with it and then separate my pieces or change colors if you threaten to blow up a system.\n\tnycavri: I saw this move, and figured it was 50/50 you doing it. Gives you strong color position, but leaves you potentially vulnerable. I took into account my response if you did go for it..... \n\n33) nycavri: Trade R1 Y1 Greenbelt\n\tnycavri: At this point in my Homeworlds career, I understand the game, I see dangers one (or sometimes 2) move away, but haven't yet enough experience to spot problems before that, or to disguise my attacks against you. I feel like I've improved in each of my 3 games, but at some point I lose ground in the "arms race" and spend the rest of the time unsuccessfully trying to catch up again. Usually ends with me hoping you make a mistake, which to date you have avoided. In all, this speaks to a well designed game.....\n\n34) zoltar: Trade Y1 R1 Zoltar\n\n35) nycavri: Build Y1 Greenbelt\n\n36) zoltar: Build Y3 Zoltar\n\tzoltar: I can get a red ship and stop you from getting a Y3 all in one move, so that was a very efficient move, I figure!\n\n37) nycavri: Build B2 Greenbelt\n\n38) zoltar: Build B3 Blueridge\n\n39) nycavri: Discover Y1 Greenbelt G1 Fr\n\n40) zoltar: Sacrifice Y2 Blueridge\nMove B3 Blueridge Fr\nMove B3 Fr Nycavri\n\tzoltar: Well, I'm grabbing the big ships, and now have to hope I can stop you from blowing them up before I can spread them out...\n\n41) nycavri: Build Y2 Fr\n\n42) zoltar: Sacrifice R1 Zoltar\nAttack G3 Nycavri\n\tzoltar: Hey wait a second, you got rid of your red ship and you don't have a red star in your homeworld -- no need to chase the pawns when I can go for the checkmate!\n\n43) nycavri: Sacrifice B1 Greenbelt\nTrade Y2 R2 Fr\n\n44) zoltar: Trade B3 R3 Nycavri\n\tzoltar: You needed to trade your yellow for a red again that last move, as with my having a red ship and you without one, and my having 3-sized ships that can reach your homeworld in one move with a yellow sacrifice, I have checkmate if you don't build a 'gun' somewhere to defend your homeworld.\n\n45) nycavri: Build Y2 Fr\n\n46) zoltar: Attack Y1 Nycavri\n\tnycavri: I hear what you're saying, but it's not like I'd have been in any better shape if I'd traded for red last turn....\n\tzoltar: Sure you would, as you could sac your r1 and capture my B3 if I put it in your homeworld! Now it's mate in 1.\n\n\tzoltar: The crucial thing to remember is to always have a 3-sized ship in your homeworld and a red ship somewhere, so that you are defended from 3-sized ships attacking.\n\tnycavri: Right, a turn or two earlier I could have rebuilt a red.\n\nHomeworlds Online (SDG# 6551)\nStarted: 2007.2.17, Ended: 2007.2.19\nParticipants: zoltar (S), nycavri (N)\nWinner: zoltar\n\n1) nycavri: Homeworld B1 Y2 G3\n\tnycavri: Hello again. You can tell a good game when you want to play again even after being thrashed 3 games in a row.....\n\n2) zoltar: Homeworld G3 B1 B3 *\n\tnycavri: One game at a time, I think. *grin*\n\n3) nycavri: Build G1 Nycavri\n\n4) zoltar: Build B1 Zoltar\n\tzoltar: Ah, I think you accepted my generic challenge while I was issuing a personal one. Ok, I'll just create another generic one for other players again. Meanwhile, going to try a 'trick' opening that a better player just pulled on me for the first time, which is this one, where you start with two blues and a green, the idea being to try to get into 2-sized ships first by using up all the b1's. I don't know if it works, but I didn't make the best moves and got behind early.\n\n5) nycavri: Build G1 Nycavri\n\n6) zoltar: Trade B3 Y3 Zoltar\n\tnycavri: And you threw me with your Red opening last game. I'm trying to go by the book for now - builder opening with a G3.\n\n7) nycavri: Trade G1 Y1 Nycavri\n\n8) zoltar: Build B2 Zoltar\n\n9) nycavri: Build Y1 Nycavri\n\n10) zoltar: Discover B2 Zoltar G2 Greendale\n\tzoltar: Yes, the red stars are more tricky, and are difficult in the opening, as red comes into play only in the later stages of the game (as you just saw), so that you have a slower start with a red star because it's the least used in the opening.\r\n\r\nThe strongest, safest opening is the one you have now, with yellow, blue, and green, and the small and medium stars, and this is called "the banker" because you can put green ships on 3-sized stars, and then when the color of the star is gone, you can sack your green, destroying the star, then build the 3-sized color that was the star, thus cashing in your 'investment'. If you play the blue as small star and yellow as medium as you did, it allows this new trick response, which I just saw for the first time and am trying now. If my trick is successful, then maybe a yellow small star and blue medium star would prevent any tricks. We'll have to see. I know very little about openings, and am learning them as I go.\n\n11) nycavri: Build G1 Nycavri\n\n12) zoltar: Build B2 Greendale\n\tnycavri: Yup - I meant banker, not builder. Concentrating hard of the stash right now, but you're off to a flyer this time.\n\n13) nycavri: Discover Y1 Nycavri B3 Hl\n\n14) zoltar: Build B2 Zoltar\n\n15) nycavri: Move G1 Nycavri Hl\n\tzoltar: I think I'm going to call this response to the banker the "bankrobber"!\n\n16) zoltar: Build B3 Greendale\n\n17) nycavri: Build Y1 Hl\n\tnycavri: Not sure how much more I could be doing to stop you hoarding blue.....\n\tnycavri: Bankrobber is a good name, though!\n\n18) zoltar: Trade B3 Y3 Greendale\n\n19) nycavri: Discover Y1 Nycavri B3 Tl\n\n20) zoltar: Build B3 Greendale\n\n21) nycavri: Build G1 Nycavri\n\n22) zoltar: Sacrifice B2 Zoltar\nTrade B2 R2 Greendale\nTrade B3 G3 Greendale\n\n23) nycavri: Trade G1 R1 Nycavri\n\n24) zoltar: Sacrifice G3 Greendale\nBuild Y2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Greendale\n\tzoltar: You avoided my sneaky bluebird checkmate, I see!\n\tnycavri: I do *try* to pay attention. *grin*\n\n25) nycavri: Discover Y1 Hl B2 Bh\n\n26) zoltar: Move Y2 Zoltar Bh\n\n27) nycavri: Move Y1 Bh Zoltar\n\n28) zoltar: Discover Y2 Zoltar B2 Blueberry\n\n29) nycavri: Move Y1 Tl Bh\n\n30) zoltar: Build B3 Zoltar\n\n31) nycavri: Trade G3 B3 Nycavri\n\n32) zoltar: Trade B3 R3 Zoltar\n\n33) nycavri: Move Y1 Bh Zoltar\n\n34) zoltar: Sacrifice R2 Greendale\nAttack Y1 Zoltar\nAttack Y1 Zoltar\n\n35) nycavri: Move Y1 Hl Bh\n\n36) zoltar: Move Y3 Zoltar Blueberry\n\n37) nycavri: Sacrifice G1 Hl\nBuild R1 Nycavri\n\n38) zoltar: Build B3 Greendale\n\n39) nycavri: Build R1 Nycavri\n\n40) zoltar: Trade B3 G3 Greendale\n\n41) nycavri: Discover R1 Nycavri B3 Sw\n\n42) zoltar: Sacrifice G3 Greendale\nBuild B3 Greendale\nBuild R2 Zoltar\nBuild R2 Zoltar\n\n43) nycavri: Move Y1 Bh Sw\n\tnycavri: I have to run. Back tonight or tomorrow. Lots to think about for me in this position - none of it good!\n\n44) zoltar: Move Y2 Blueberry Sw\n\n45) nycavri: Build G1 Nycavri\n\n46) zoltar: Sacrifice R2 Zoltar\nAttack Y1 Sw\nAttack R1 Sw\n\n47) nycavri: Build R2 Nycavri\n\n48) zoltar: Sacrifice Y3 Greendale\nMove R1 Sw Nycavri\nMove Y3 Blueberry Sw\nMove Y3 Sw Nycavri\nCatastrophe Nycavri R\n\n49) nycavri: Build G1 Nycavri\n\n50) zoltar: Sacrifice R3 Zoltar\nAttack G1 Nycavri\nAttack G1 Nycavri\nAttack G1 Nycavri\n\tnycavri: Have to biuld or I lose this turn. If I build blue you blow up half my world. So I build a green, which just delays the inevitable by a turn. Did I miss anything?\n\n51) nycavri: Pass\n\tzoltar: No, it's mate in two no matter what at this point.\n\tnycavri: I lost this one very early - when I did nothing to prevent your Bankrobber. Have to look at that offline to see if there's a defense.\n\n52) zoltar: Sacrifice R2 Zoltar\nAttack B3 Nycavri\nPass\n\n\nHomeworlds Online (SDG# 6570)\nStarted: 2007.2.19, Ended: 2007.2.27\nParticipants: nycavri (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) nycavri: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) nycavri: Build G1 Nycavri\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) nycavri: Trade G1 Y1 Nycavri\n\n7) zoltar: Build Y2 Zoltar\n\n8) nycavri: Build G1 Nycavri\n\tnycavri: Didn't think that one through.....\n\n9) zoltar: Discover Y1 Zoltar G2 Greenhills\n\n10) nycavri: Discover Y1 Nycavri G3 Jd\n\n11) zoltar: Build Y2 Greenhills\n\n12) nycavri: Build Y2 Jd\n\n13) zoltar: Discover Y2 Greenhills B3 Bluemoon\n\n14) nycavri: Build Y3 Jd\n\n15) zoltar: Move Y1 Greenhills Jd\nCatastrophe Jd Y\n\n16) nycavri: Build G1 Nycavri\n\n17) zoltar: Build Y1 Zoltar\n\n18) nycavri: Trade G1 R1 Nycavri\n\n19) zoltar: Trade Y2 R2 Zoltar\n\n20) nycavri: Build R1 Nycavri\n\n21) zoltar: Build R2 Zoltar\n\n22) nycavri: Trade R1 Y1 Nycavri\n\n23) zoltar: Build Y2 Zoltar\n\n24) nycavri: Discover Y1 Nycavri G3 Sk\n\n25) zoltar: Discover Y2 Zoltar G2 Greenbelt\n\n26) nycavri: Trade G1 B1 Nycavri\n\n27) zoltar: Build G1 Zoltar\n\n28) nycavri: Build Y2 Sk\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Bluemoon\nBuild Y3 Greenbelt\n\n30) nycavri: Build R1 Nycavri\n\tzoltar: Yellow power!\n\n31) zoltar: Move Y3 Greenbelt Sk\n\tnycavri: Just another Homeworlds humiliation.....\n\n32) nycavri: Move R1 Nycavri Sk\n\n33) zoltar: Sacrifice R2 Zoltar\nAttack Y2 Sk\nAttack R1 Sk\n\n34) nycavri: Discover Y1 Sk B2 Klf\n\n35) zoltar: Trade Y3 G3 Zoltar\n\n36) nycavri: Sacrifice G3 Nycavri\nBuild Y3 Klf\nBuild R2 Nycavri\nBuild R2 Nycavri\n\tnycavri: Ouch.....\n\tzoltar: The Death Star is almost fully functional...\n\tnycavri: Where's Luke when you need him? Or Lando? Hell, I'd take Jar Jar at this point.....\n\n37) zoltar: Sacrifice Y2 Bluemoon\nMove R1 Sk Nycavri\nMove Y3 Sk Nycavri\nCatastrophe Nycavri R\n\tzoltar: Actually I meant to trade the Y3 at zoltar, but it makes no difference: either way, zee Zoronian fleet has monopolized zee warp drive technology and plans to expand and expel zee earthlingz from zee galaxy! Whew Who!\n\n38) nycavri: Sacrifice Y3 Klf\nMove Y1 Klf Sk\nMove Y1 Sk Nycavri\nPass\n\n39) zoltar: Sacrifice R2 Zoltar\nAttack B1 Nycavri\nAttack Y1 Nycavri\n\tzoltar: The nycavri homeworld has fallen to the great Zoltarian fleet!\n\tnycavri: Yup - that's game. I think I'm done with Homeworlds on SDG for a little while. 0 for 6 is a little depressing. Thanks for schooling me again, though. *grin*\n\n\tzoltar: Hey, try playing someone else at it, as I'm one of the three best players -- you now have the experience to have an even game against many of the other players. Also, try a 4 player homeworlds game, as there is less pressure, and you can lay low and build your fleet while the others attack each other sometimes.\n\nHomeworlds Online (SDG# 6582)\nStarted: 2007.2.19, Ended: 2007.3.1\nParticipants: Uglyfoot (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B1 G3\n\n2) Uglyfoot: Homeworld Y1 B2 G3\n\tUglyfoot: Oh no. I just moved out of last place. ;> How's it goin' Emporer?\n\n3) zoltar: Build G1 Zoltar\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n7) zoltar: Build Y2 Zoltar\n\n8) Uglyfoot: Build Y2 Uglyfoot\n\n9) zoltar: Build Y2 Zoltar\n\n10) Uglyfoot: Discover Y2 Uglyfoot G3 Lee\n\n11) zoltar: Trade Y1 R1 Zoltar\n\n12) Uglyfoot: Build G1 Uglyfoot\n\tzoltar: I've been on a losing streak, but I'm trying to make my comeback. \n\n13) zoltar: Discover Y2 Zoltar G2 Greenhills\n\tUglyfoot: Please forgive me if I try to continue your streak... ;>\n\n14) Uglyfoot: Trade G1 R1 Uglyfoot\n\n15) zoltar: Build G1 Zoltar\n\n16) Uglyfoot: Build G1 Uglyfoot\n\n17) zoltar: Trade G1 B1 Zoltar\n\n18) Uglyfoot: Build G1 Uglyfoot\n\n19) zoltar: Build B1 Zoltar\n\n20) Uglyfoot: Trade G3 B3 Uglyfoot\n\n21) zoltar: Move B1 Zoltar Greenhills\n\n22) Uglyfoot: Discover G1 Uglyfoot B3 Bigun\n\n23) zoltar: Build B2 Greenhills\n\n24) Uglyfoot: Discover Y1 Uglyfoot B3 Largess\n\n25) zoltar: Build B2 Greenhills\n\n26) Uglyfoot: Build Y1 Lee\n\n27) zoltar: Build Y3 Greenhills\n\n28) Uglyfoot: Build G1 Uglyfoot\n\n29) zoltar: Build Y3 Zoltar\n\n30) Uglyfoot: Build G2 Bigun\n\n31) zoltar: Move Y3 Greenhills Largess\n\n32) Uglyfoot: Move Y2 Lee Greenhills\n\n33) zoltar: Build Y3 Greenhills\n\n34) Uglyfoot: Move Y1 Largess Greenhills\nCatastrophe Greenhills Y\n\n35) zoltar: Trade B2 Y2 Greenhills\n\n36) Uglyfoot: Trade G2 Y2 Bigun\n\n37) zoltar: Trade Y3 G3 Zoltar\n\n38) Uglyfoot: Build G2 Bigun\n\n39) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Largess\nBuild Y3 Greenhills\nBuild Y3 Zoltar\n\n40) Uglyfoot: Trade G2 B2 Bigun\n\n41) zoltar: Move B2 Greenhills Bigun\n\n42) Uglyfoot: Discover B2 Bigun R2 Battlestar\n\n43) zoltar: Sacrifice R1 Zoltar\nAttack Y2 Bigun\n\n44) Uglyfoot: Trade B3 G3 Uglyfoot\n\tzoltar: The Death Star is now fully functional. Prepare to fire on the rebel base....stand by...\n\n45) zoltar: Build B3 Greenhills\n\n46) Uglyfoot: Move G1 Uglyfoot Lee\n\n47) zoltar: Move Y3 Zoltar Battlestar\n\n48) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Bigun\nBuild G2 Bigun\nBuild G3 Uglyfoot\n\n49) zoltar: Trade B3 R3 Greenhills\n\n50) Uglyfoot: Build R1 Uglyfoot\n\n51) zoltar: Build B3 Greenhills\n\n\nHomeworlds Online (SDG# 6612)\nVariants: "Hard time"\nStarted: 2007.2.20, Ended: 2007.3.4\nParticipants: TwoShort (S), antihero (N)\nWinner: TwoShort\n\n1) antihero: Homeworld G2 B1 Y3\n\n2) TwoShort: Homeworld G3 B1 B3 *\n\n3) antihero: Build Y1 Antihero\n\tTwoShort: Greetings...\r\n\n\tantihero: Hello. I fear I am in much trouble here. ;)\n\n4) TwoShort: Build B1 Twoshort\n\n5) antihero: Build Y1 Antihero\n\tTwoShort: Hmm, we'll see. Against the particular homeworld set up you picked, I feel compelled to yet again attempt my wacky "Blue freeze-out" opening, which I like becaus it's different, and seems like it should be effective. My record with it so far has been considerably less than stellar though.\n\tantihero: It is wacky. After a beating at Keith's hands I made a mental note to always watch out when small blues are in both towers, but I didn't imagine playing an opening like that. It looks like it could work pretty well. We'll see.\n\tantihero: towers = homeworlds. I just lost horribly at alien city, so it's on my mind.\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) antihero: Discover Y1 Antihero G3 Evergreen\n\n8) TwoShort: Build B2 Twoshort\n\n9) antihero: Build Y1 Evergreen\n\n10) TwoShort: Discover B1 Twoshort B2 Bluestar\n\n11) antihero: Trade Y3 B3 Antihero\n\n12) TwoShort: Build B2 Twoshort\n\tantihero: this could go badly very quickly\n\n13) antihero: Build Y2 Antihero\n\n14) TwoShort: Trade B2 Y2 Twoshort\n\n15) antihero: Discover Y1 Evergreen G2 Greenstar\n\n16) TwoShort: Discover Y2 Twoshort B2 Bluesville\n\n17) antihero: Move Y1 Greenstar Twoshort\n\n18) TwoShort: Trade B2 R2 Twoshort\n\n19) antihero: Build Y2 Twoshort\n\n20) TwoShort: Trade Y3 G3 Twoshort\n\n21) antihero: Build Y3 Evergreen\n\tantihero: snap, didn't see that. Should pay more attention.\n\n22) TwoShort: Sacrifice R2 Twoshort\nAttack Y2N Twoshort\nAttack Y1N Twoshort\n\tTwoShort: You had me worried for a bit there\n\n23) antihero: Sacrifice Y2 Antihero\nMove Y1 Evergreen Bluesville\nMove Y1 Bluesville Twoshort\n\tantihero: I realize this is a competitive game and all, but did I have a better follow up move than b y3 evergreen?\n\tTwoShort: Not necessarily; When you first put the y1 in my homeworld, I figured the whole point was to give yourself room to grow the y3 and throw a wrench in my plans to grab the b3s; both of which you've now done. What I was worried you might do last turn is sacrifice your b3 to turn both of the ys in my homeworld to green and cause a catastrophe, taking my 3 point and one of my stars. The result of that might have been to your advantage, but any game with the 3 pointers gone is going to be pretty volatile. In any case, getting a Y3 is hard to argue with.\n\n24) TwoShort: Trade Y2 R2 Twoshort\n\tantihero: <-- flying by the seat of his pants!\n\tTwoShort: Hmm... That one I don't think was such a good idea.\n\n\tantihero: yeah, I'm making backwards progress here.. woo!\n\tantihero: whoops. Sorry. I wish I hadn't done that.\n\nHomeworlds Online (SDG# 6568)\nStarted: 2007.2.21, Ended: 2007.3.16\nParticipants: zoltar (S), beanbagboy (N)\nWinner: zoltar\n\n1) beanbagboy: Homeworld B2 G1 Y3\n\n2) zoltar: Homeworld R3 B1 G3\n\tbeanbagboy: Hi, I'm new to SuperDuperGames (but not to Homeworlds. ;)) so how do you name your homeworld?\r\nThanks.\n\n3) beanbagboy: Build Y1 Beanbagboy\n\n4) zoltar: Build G1 Zoltar\n\tbeanbagboy: I just realized that you can't name the homesystem. So never mind.\n\n5) beanbagboy: Discover Y1 Beanbagboy G3 Megafactory\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) beanbagboy: Trade Y3 G3 Beanbagboy\n\n8) zoltar: Build G1 Zoltar\n\n\nHomeworlds Online (SDG# 6649)\nStarted: 2007.2.23, Ended: 2007.3.4\nParticipants: papa_bear (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld B2 Y1 G3\n\n2) papa_bear: Homeworld Y3 B2 G3\n\tclockwise: Hello, and good luck.\n\tpapa_bear: You too. Are you fairly new to SDG?\n\n3) clockwise: Build G1 Clockwise\n\n4) papa_bear: Build G1 Papa_bear\n\tclockwise: Relatively yes, I just signed up in January.\n\tpapa_bear: Welcome. What do you think of it?\n\n5) clockwise: Trade G1 Y1 Clockwise\n\n6) papa_bear: Trade G1 B1 Papa_bear\n\tclockwise: I've enjoyed it thusfar, though I haven't done anything other than Homeworlds yet.\n\n7) clockwise: Build G1 Clockwise\n\n8) papa_bear: Build B1 Papa_bear\n\n9) clockwise: Trade G1 B1 Clockwise\n\n10) papa_bear: Trade B1 Y1 Papa_bear\n\tpapa_bear: Do you play Homeworlds offline, with physical pieces?\n\n11) clockwise: Build Y2 Clockwise\n\tclockwise: Yes, though not very often. It's hard to convince my friends to start playing when I beat them all the time. Plus my preferred icehous game is really Gnostica.\n\n12) papa_bear: Build Y2 Papa_bear\n\tpapa_bear: Sounds like you won't have much trouble beating me in Homeworlds, then. But my understanding is that some of the guys here at SDG are very sharp players.\r\n\r\nI'm unfamiliar with Gnostica. I'll do a search later and have a look at it. Homeworlds is the only Icehouse game I've ever played, and I've only played it here.\n\n13) clockwise: Discover Y1 Clockwise G3 Ham\n\tclockwise: If the forums are to be believed there are a couple people working on an sdg adaption of Gnostica. But we'll see, it's a pretty complicated game.\n\n14) papa_bear: Discover Y1 Papa_bear R1 Shem\n\tpapa_bear: It does look complicated. I have a low threshhold for complexity when first coming to a game. I prefer a game in which I can get my head around the rules in a matter of minutes, and then spend years or decades trying to get my head around actually playing well. Homeworlds and Chase are about the most complicated games I think I've tried out here at SDG.\n\n15) clockwise: Build G1 Clockwise\n\tclockwise: And aside from it's complexity it also doesn't work particularly well as a two player game, which I think is a second mark against it for being a good candidate for sdg. But it's a good game.\n\n16) papa_bear: Build G1 Papa_bear\n\tpapa_bear: Is there something about the processing of multiple players' turns which would be more difficult to program than in the cases of other 3+ player games on SDG?\n\n17) clockwise: Discover G1 Clockwise Y3 Spam\n\tclockwise: No, not really. I just find that asynchronous play gets more annoying the more people you add, esp with the possibility of dropouts disrupting the game.\n\tpapa_bear: Ah, yes. Dropouts would be a problem. I have yet to play any 3+ player games here, and I'm not really excited about trying it.\n\n18) papa_bear: Move G1 Papa_bear Shem\n\n19) clockwise: Build G1 Clockwise\n\tclockwise: Yes, that rather sums up my thoughts.\n\n20) papa_bear: Build B1 Papa_bear\n\n21) clockwise: Build B2 Clockwise\n\n22) papa_bear: Move B1 Papa_bear Shem\n\n23) clockwise: Trade B1 R1 Clockwise\n\n24) papa_bear: Build Y2 Shem\n\n25) clockwise: Build Y3 Ham\n\n26) papa_bear: Build G2 Shem\n\n27) clockwise: Sacrifice Y2 Clockwise\nDiscover Y3 Ham R1 Viper\nMove Y3 Viper Papa_bear\n\n28) papa_bear: Trade Y2 R2 Papa_bear\n\n29) clockwise: Sacrifice R1 Clockwise\nAttack R2S Papa_bear\n\n\tpapa_bear: Doh! I always forget about sacrificing red ones. I better think about this for a bit...\n\tpapa_bear: I can't see a way to survive. Thanks for the game!\n\tclockwise: The two main mistakes you made were not following me into red and letting me build the y3, both of which compounded each other. \n\tclockwise: Thanks for the game!\n\tpapa_bear: I didn't feel comfortable letting you have the y3, so I should have "gone with my gut" that time. As for not developing red, I didn't realize the problem until it was too late :)\n\tpapa_bear: Oh, thanks for the feedback, by the way.\n\nHomeworlds Online (SDG# 6615)\nVariants: "Hard time"\nStarted: 2007.2.23, Ended: 2007.3.3\nParticipants: TwoShort (S), Greo (N)\nWinner: TwoShort\n\n1) Greo: Homeworld B3 Y2 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) Greo: Build G1 Greo\n\n4) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy.\n\n5) Greo: Discover G1 Greo Y1 Loller\n\tGreo: Hello :D\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Greo: Build G1 Loller\n\n8) TwoShort: Build G1 Twoshort\n\n9) Greo: Build G2 Greo\n\n10) TwoShort: Build Y1 Twoshort\n\n11) Greo: Trade G2 B2 Greo\n\n12) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n13) Greo: Build G2 Loller\n\n14) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n15) Greo: Move B2 Greo Loller\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n\tTwoShort: ???!?\n\nHomeworlds Online (SDG# 6725)\nVariants: "Hard time"\nStarted: 2007.2.26, Ended: 2007.3.15\nParticipants: eugman (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld R1 B2 G3\n\n2) eugman: Homeworld Y3 B1 G3\n\tclockwise: Hello, and good luck!\n\teugman: Interesting start. You are either very foolish or very smart.\n\n3) clockwise: Build G1 Clockwise\n\n4) eugman: Build G1 Eugman\n\tclockwise: Oh good, I was hoping I wouldn't win this by timing you out before you built your homeworld.\n\n5) clockwise: Trade G1 Y1 Clockwise\n\n6) eugman: Build G1 Eugman\n\n7) clockwise: Build G1 Clockwise\n\teugman: Well that should give me a decent buffer of time.\n\n8) eugman: Trade G1 B1 Eugman\n\teugman: Will make a move tomorrow.\n\n9) clockwise: Build Y1 Clockwise\n\n\teugman: Oh shoot. I must apologize. My graduation project has taken up my focus.\n\tclockwise: Ah, that's understandable, perhaps we can have another game sometime when you have more time.\n\nHomeworlds Online (SDG# 6696)\nVariants: "Hard time"\nStarted: 2007.2.27, Ended: 2007.3.2\nParticipants: lurker123 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 6754)\nVariants: "Sinister"\nStarted: 2007.2.27, Ended: 2008.3.9\nParticipants: kteague (S), A_TRAIN (N), josser (E)\nWinner: josser\n\n1) A_TRAIN: Homeworld G2 B1 Y3\n\tjosser: Hi guys. Just reminding you that this is sinister homeworlds so you have to kill the next person in player order. Adam you lucky guy, you get to kill Kev.\n\n2) josser: Homeworld Y3 G2 B3\n\tA_TRAIN: I think I'm killing you, cause your next. Your the lucky one.\n\tjosser: You're right Adam, I was looking at the play list. Yay! I get to kill Kev!\n\n3) kteague: Homeworld R1 G2 B3\n\n4) A_TRAIN: Build Y1 A_train\n\tkteague: i forget how to play ...\n\tkteague: does this game system allow you to say fuck? I like to say fuck.\n\tjosser: looks like you can say fuck!\n\n5) josser: Build B1 Josser\n\n6) kteague: Build B1 Kteague\n\n7) A_TRAIN: Trade Y1 G1 A_train\n\n8) josser: Discover B1 Josser R1 Kevsux\n\n9) kteague: Trade B1 Y1 Kteague\n\n10) A_TRAIN: Build Y1 A_train\n\n11) josser: Build B1 Josser\n\n\nHomeworlds Online (SDG# 6790)\nVariants: "Hard time"\nStarted: 2007.3.1, Ended: 2007.5.4\nParticipants: nycavri (S), dsheldon (N)\nWinner: dsheldon\n\n1) dsheldon: Homeworld R1 B2 G3\n\n2) nycavri: Homeworld B2 Y3 G3\n\tdsheldon: Don't I remember you from the Icehouse list?\n\tnycavri: Could be - I recently signed up. I asked about literature on openings for a couple of games.\n\n3) dsheldon: Build G1 Dsheldon\n\n4) nycavri: Build G1 Nycavri\n\n5) dsheldon: Trade G1 Y1 Dsheldon\n\n6) nycavri: Build G1 Nycavri\n\n7) dsheldon: Build G1 Dsheldon\n\n8) nycavri: Trade G1 Y1 Nycavri\n\n9) dsheldon: Discover G1 Dsheldon Y3 Jerome\n\n10) nycavri: Discover Y1 Nycavri B1 Deacon\n\n11) dsheldon: Build G1 Jerome\n\n12) nycavri: Build G2 Nycavri\n\n13) dsheldon: Build G2 Dsheldon\n\n14) nycavri: Trade G2 Y2 Nycavri\n\n15) dsheldon: Move G1 Jerome Deacon\n\n16) nycavri: Trade Y1 R1 Deacon\n\n17) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Deacon\nBuild G2 Jerome\nBuild G3 Dsheldon\n\n18) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild R1 Deacon\nBuild R2 Deacon\n\n19) dsheldon: Trade G2 R2 Deacon\nCatastrophe Deacon R\n\n20) nycavri: Trade G1 R1 Nycavri\n\tdsheldon: I'm going away for the weekend and a bit more. I might not make another move until Tuesday, so don't worry if I'm a little late.\n\n21) dsheldon: Sacrifice G3 Dsheldon\nBuild G1 Jerome\nBuild G2 Deacon\nBuild G3 Dsheldon\n\tnycavri: No problem. Have a good trip.\n\n22) nycavri: Build G3 Nycavri\n\tdsheldon: ok... maybe one more, but that's it.\n\n23) dsheldon: Trade G2 Y2 Deacon\n\n24) nycavri: Move Y2 Nycavri Deacon\n\tnycavri: Welcome back!\n\n25) dsheldon: Discover G1 Jerome Y1 Buttercup\n\tdsheldon: Thanks. I had actually forgotten how much I like my family. 15 months will do that, I suppose.\n\n26) nycavri: Sacrifice R1 Nycavri\nAttack Y2 Deacon\n\n27) dsheldon: Move G1 Buttercup Nycavri\n\n28) nycavri: Trade G3 R3 Nycavri\n\n29) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Nycavri\nBuild G3 Nycavri\nBuild G3 Dsheldon\nCatastrophe Nycavri G\n\n30) nycavri: Trade R3 G3 Nycavri\n\n31) dsheldon: Build G1 Deacon\n\n32) nycavri: Trade Y2 R2 Deacon\n\n33) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Jerome\nBuild G3 Dsheldon\nBuild G3 Dsheldon\n\n34) nycavri: Attack G1 Deacon\n\n35) dsheldon: Trade G3 Y3 Dsheldon\n\n36) nycavri: Move G1 Deacon Jerome\nCatastrophe Jerome G\n\n37) dsheldon: Sacrifice Y1 Dsheldon\nMove G1 Deacon Nycavri\n\tnycavri: *Not* smart.....\n\n38) nycavri: Move R2 Deacon Nycavri\n\n39) dsheldon: Build G1 Nycavri\n\n40) nycavri: Trade G3 R3 Nycavri\n\n41) dsheldon: Build G1 Nycavri\n\n42) nycavri: Attack G1 Nycavri\n\n43) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Nycavri\nBuild G2 Dsheldon\nBuild G3 Dsheldon\nCatastrophe Nycavri G\n\n44) nycavri: Trade R3 G3 Nycavri\n\n45) dsheldon: Trade G2 R2 Dsheldon\n\n46) nycavri: Build G1 Nycavri\n\n47) dsheldon: Discover R2 Dsheldon Y3 Busstop\n\n48) nycavri: Move G1 Nycavri Deacon\n\n49) dsheldon: Move R2 Busstop Deacon\n\n50) nycavri: Sacrifice R2 Nycavri\nAttack R2 Deacon\nPass\n\n51) dsheldon: Discover G2 Dsheldon R3 Caution\n\n52) nycavri: Build G1 Nycavri\n\tdsheldon: I didn't expect you to leave your homeworld so undefended. But now that I look at it, I'm in no condition to make an attack, so I guess you made the right choice.\n\n53) dsheldon: Build Y1 Dsheldon\n\tnycavri: That's what I'm hoping anyway. In this, my seventh Homeworlds game, I've still yet to be on the front foot. Needless to say, I'm 0-6 so far.....\n\n54) nycavri: Build Y1 Deacon\n\tdsheldon: My record's not much better. The one win I do have was against an exceedingly unskilled opponent.\n\n55) dsheldon: Trade Y1 B1 Dsheldon\n\n56) nycavri: Trade Y1 B1 Deacon\n\tnycavri: Yup. The quality of Homeworlds play on SDG is seriously high!\n\n57) dsheldon: Move B1 Dsheldon Caution\n\n58) nycavri: Discover R2 Deacon Y3 May\n\n59) dsheldon: Build B2 Caution\n\n60) nycavri: Discover Y2 Deacon G3 Mercury\n\n61) dsheldon: Trade B2 Y2 Caution\n\n62) nycavri: Trade B1 Y1 Deacon\n\n63) dsheldon: Discover G2 Caution R1 Pom\n\n64) nycavri: Trade G1 R1 Nycavri\n\n65) dsheldon: Build G1 Pom\n\n66) nycavri: Move G1 Deacon May\n\n67) dsheldon: Trade Y2 R2 Caution\n\n68) nycavri: Build R2 Nycavri\n\n69) dsheldon: Build Y1 Dsheldon\n\n70) nycavri: Build R3 May\n\n71) dsheldon: Build G1 Dsheldon\n\n72) nycavri: Build G2 May\n\n73) dsheldon: Trade G1 B1 Dsheldon\n\n74) nycavri: Move R1 Nycavri Deacon\n\n75) dsheldon: Sacrifice B1 Dsheldon\nTrade G1 B1 Pom\n\n76) nycavri: Build R3 Nycavri\n\n77) dsheldon: Build B2 Pom\n\n78) nycavri: Move R3 Nycavri Pom\n\n79) dsheldon: Sacrifice Y3 Dsheldon\nMove G2 Pom Caution\nDiscover B1 Pom B3 Chase\nDiscover B2 Pom G2 Pacific\n\n80) nycavri: Move R1 Deacon Chase\n\n81) dsheldon: Build B3 Caution\n\n82) nycavri: Attack B1 Chase\n\n83) dsheldon: Build B3 Pacific\n\n84) nycavri: Sacrifice B1 Chase\nTrade R3 Y3 Pom\n\n85) dsheldon: Sacrifice B2 Pacific\nTrade B3 R3 Pacific\nTrade B1 Y1 Caution\n\n86) nycavri: Sacrifice Y3 Pom\nMove R1 Chase Dsheldon\nMove R2 May Dsheldon\nMove R3 May Dsheldon\nCatastrophe Dsheldon R\n\tdsheldon: Uh oh. I didn't think much of your trade in Chase, but now I am quite worried.\n\tdsheldon: Err, not trade, move to. I am so kicking myself for not seeing that.\n\n87) dsheldon: Build Y2 Dsheldon\n\n88) nycavri: Move G1 May Dsheldon\n\tnycavri: Worried with good reason it turned out.... First time I've taken out an opponent's home planet on SDG. Apparently I *was* learning something in all those previous thrashings!\n\n89) dsheldon: Sacrifice B3 Caution\nTrade G3 R3 Dsheldon\nTrade Y1 B1 Dsheldon\nTrade Y1 B1 Caution\n\n90) nycavri: Build G1 Nycavri\n\n91) dsheldon: Attack G1S Dsheldon\n\n92) nycavri: Move Y2 Mercury Deacon\n\tdsheldon: I'm a big fan of unorthodox defenses\n\n93) dsheldon: Build B2 Caution\n\n94) nycavri: Move G1 Nycavri Deacon\n\tdsheldon: y'know what, that's the first time I ever captured a ship. huh.\n\n95) dsheldon: Build B3 Dsheldon\n\n96) nycavri: Build G1 Nycavri\n\n97) dsheldon: Move B3 Dsheldon Deacon\n\n98) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild G3 Deacon\nBuild G3 May\n\n99) dsheldon: Sacrifice R3 Pacific\nAttack G3S Deacon\nAttack Y2S Deacon\nAttack G1S Deacon\n\n100) nycavri: Trade G1 Y1 Nycavri\n\n101) dsheldon: Trade G3 R3 Deacon\n\n102) nycavri: Trade G3 B3 Nycavri\n\n103) dsheldon: Attack Y1S Deacon\n\tnycavri: Ooops.....\n\n104) nycavri: Trade Y1 R1 Nycavri\n\n105) dsheldon: Sacrifice Y1 Deacon\nDiscover B1 Caution G1 Penny\n\n106) nycavri: Discover G3 May Y2 Mercury\n\tnycavri: That wasn't it. Don't know why I thought Deacon had a Yellow star.....\n\n107) dsheldon: Build B3 Penny\n\n108) nycavri: Trade B3 Y3 Nycavri\n\n109) dsheldon: Move R3 Deacon May\n\n110) nycavri: Discover G2 May Y1 Taylor\n\n111) dsheldon: Build G2 Dsheldon\n\n112) nycavri: Build G3 Taylor\n\n113) dsheldon: Sacrifice Y2 Deacon\nMove G2 Caution Taylor\nMove G1 Dsheldon Taylor\nCatastrophe Taylor G\n\tdsheldon: That was a really good move. Very frustrating ;)\n\n114) nycavri: Build G1 Mercury\n\n115) dsheldon: Sacrifice B3 Penny\nTrade R3 G3 May\nTrade R2 Y2 Caution\nTrade B3 R3 Deacon\n\n116) nycavri: Discover G3 Mercury B3 Taylor\n\n117) dsheldon: Trade B1 Y1 Penny\n\n118) nycavri: Sacrifice G3 Taylor\nBuild R1 Nycavri\nBuild G2 Mercury\nBuild G2 Mercury\n\n119) dsheldon: Sacrifice Y2 Caution\nMove G1 Deacon Mercury\nMove R3 Deacon Nycavri\nCatastrophe Nycavri R\nCatastrophe Mercury G\n\n120) nycavri: Trade Y3 R3 Nycavri\n\n121) dsheldon: Build R1 Dsheldon\n\n\tnycavri: Ah, right you are. Well played. I'm now 0 for 9.....\n\nHomeworlds Online (SDG# 6856)\nStarted: 2007.3.3, Ended: 2007.3.3\nParticipants: josser (S), guymauve (N)\nWinner: guymauve\n\n1) guymauve: Homeworld G3 B2 Y3\n\n2) josser: Homeworld G3 B2 Y3\n\n3) guymauve: Build Y1 Guymauve\n\n4) josser: Build Y1 Josser\n\n5) guymauve: Discover Y3 Guymauve R1 Kaka\n\n6) josser: Trade Y3 G3 Josser\n\n7) guymauve: Build Y1 Guymauve\n\n8) josser: Sacrifice G3 Josser\nBuild Y2 Josser\nBuild Y2 Josser\nPass\n\n9) guymauve: Build Y2 Guymauve\n\n10) josser: Build Y3 Josser\n\n11) guymauve: Move Y2 Guymauve Kaka\nCatastrophe Josser Y\n\n\nHomeworlds Online (SDG# 6823)\nStarted: 2007.3.3, Ended: 2008.2.22\nParticipants: kteague (S), josser (N)\nWinner: josser\n\n1) josser: Homeworld G3 B2 Y3\n\n2) kteague: Homeworld G3 B1 R3\n\n3) josser: Build Y1 Josser\n\n4) kteague: Build R1 Kteague\n\n5) josser: Trade Y1 R1 Josser\n\n6) kteague: Trade R1 Y1 Kteague\n\n7) josser: Build Y1 Josser\n\n\nHomeworlds Online (SDG# 6862)\nVariants: "Hard time"\nStarted: 2007.3.5, Ended: 2007.5.3\nParticipants: antihero (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B3 R1 G3\n\n2) antihero: Homeworld B1 Y2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) antihero: Build G1 Antihero\n\n5) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n6) antihero: Trade G1 Y1 Antihero\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) antihero: Build G1 Antihero\n\n9) Uglyfoot: Trade G1 R1 Uglyfoot\n\n10) antihero: Trade G1 R1 Antihero\n\n11) Uglyfoot: Discover R1 Uglyfoot G2 Aleph\n\n12) antihero: Build G1 Antihero\n\n13) Uglyfoot: Build R2 Aleph\n\n14) antihero: Build R2 Antihero\n\n15) Uglyfoot: Build G1 Uglyfoot\n\n16) antihero: Discover G1 Antihero Y3 Gamma\n\n17) Uglyfoot: Build Y1 Uglyfoot\n\n18) antihero: Build Y2 Antihero\n\n19) Uglyfoot: Move Y1 Uglyfoot Aleph\n\n20) antihero: Discover Y2 Antihero G3 Biggreen\n\n21) Uglyfoot: Move R2 Aleph Gamma\n\n22) antihero: Discover G1 Gamma B2 Switch\n\n23) Uglyfoot: Build R2 Aleph\n\n24) antihero: Build G1 Switch\n\n25) Uglyfoot: Move G1 Uglyfoot Switch\n\n26) antihero: Build G2 Antihero\n\n27) Uglyfoot: Sacrifice R2 Aleph\nAttack G1 Switch\nAttack G1 Switch\n\n28) antihero: Build G2 Antihero\n\n29) Uglyfoot: Build Y2 Aleph\n\n30) antihero: Sacrifice G2 Antihero\nBuild Y3 Biggreen\nPass\n\n31) Uglyfoot: Build Y3 Uglyfoot\n\n32) antihero: Discover G2 Antihero B3 Delta\n\n33) Uglyfoot: Move Y2 Aleph Biggreen\n\n34) antihero: Sacrifice Y2 Biggreen\nMove R2 Antihero Delta\nMove R2 Delta Switch\n\n35) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove G1 Switch Gamma\nMove G1 Switch Delta\nMove G1 Switch Biggreen\n\n\nHomeworlds Online (SDG# 6859)\nStarted: 2007.3.6, Ended: 2007.3.18\nParticipants: TwoShort (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld Y2 B1 G3\n\n2) TwoShort: Homeworld R3 B1 G3\n\tclockwise: Greetings\n\n3) clockwise: Build G1 Clockwise\n\tTwoShort: Howdy.\n\n4) TwoShort: Build G1 Twoshort\n\n5) clockwise: Trade G1 B1 Clockwise\n\n6) TwoShort: Build G1 Twoshort\n\n7) clockwise: Build B2 Clockwise\n\tTwoShort: I was wondering if you would go for that... \n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) clockwise: Discover B2 Clockwise G3 Spawningpool\n\tclockwise: I generally think it's a terrible idea to start with a small of the same color as the starting player. If you were a weaker player I'd assume it was just bad play, but right now I'm wondering if instead it is some sort of trap.\n\tTwoShort: Lately I've been responding to your opening (or any with a b1 star) with G3 B1 B3, enabling me to grow the final B1 on the first turn before the opponent can do anything about it. This has been fairly effective, but I theorize that this is because my opponents don't handle it well. So in order to test this theory, I was somewhat interested in having someone put the freeze-out on me for a change. So, a trap? Not really. I wanted you to do it, but I don't have a concrete plan what to do next, and I'm wondering if it was really a bad idea...\n\n10) TwoShort: Build Y1 Twoshort\n\tclockwise: In this case I think I have three main advantages that the G3 B1 B3 opening doesn't have: Tempo, immediate access to yellow, and the ability to safely factory in my homesystem. I guess we'll see how it turns out.\n\n11) clockwise: Build B2 Spawningpool\n\n12) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n13) clockwise: Build B3 Spawningpool\n\n14) TwoShort: Build Y1 Twoshort\n\n15) clockwise: Trade B3 Y3 Spawningpool\n\tTwoShort: Did I say something about having any theory whatsoever about what the bleep I'm doing? \r\nHeh.\n\n16) TwoShort: Discover Y1 Twoshort Y2 Yolonda\n\tclockwise: Well two good things about this game are that it is different from most, and that it is moving quickly...\n\n17) clockwise: Build Y2 Spawningpool\n\tclockwise: Nice play\n\tTwoShort: Well, my basic theory for dealing with the blue freeze-out (mostly ignore it, and push yellow) seems to be working out; but I hope your delay in making the next move isn't from discouragement, because I think your position is still pretty strong. I'm having to resist posting an extensive analysis of what I think you should do :) \n\tclockwise: No, not discouragement, but need to sit down and work things through, and I've been pretty busy with other things.\n\tclockwise: You can give me an analysis of what you think I should do at this point once the game is done ;)\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Bluestar\nBuild Y3 Twoshort\nBuild G1 Twoshort\n\tclockwise: My own analysis is that unless I have a second yellow it will be very hard to win... though I don't like letting you into the large pieces.\n\tTwoShort: That's essentially what I was thinking, except to note that letting me into the Y3s was not avoidable :)\n\n19) clockwise: Build B3 Spawningpool\n\n20) TwoShort: Discover Y1 Yolonda B3 Borbor\n\n21) clockwise: Build B3 Clockwise\n\n22) TwoShort: Sacrifice G1 Twoshort\nBuild Y2 Borbor\n\n23) clockwise: Discover Y3 Spawningpool G2 Ultralisk\n\tclockwise: So, I'm guessing you're Robert over on the icehouse list. Does that mean I could win the zpips if I win this game, or would that only apply to a game where you hadn't intentionally crippled yourself at the start? :)\n\tTwoShort: Yes I am, but sorry, you'll have to start a new game if you want the ZPIPs. I think "pursued a dubious experimental strategy" sounds better than "intentionally crippled yourself", but yeah... :)\n\tclockwise: Only reasonable I suppose.\n\n24) TwoShort: Trade Y2 R2 Borbor\n\n25) clockwise: Trade B2 R2 Spawningpool\n\n26) TwoShort: Trade Y3 G3 Twoshort\n\n27) clockwise: Move B3 Clockwise Borbor\n\n28) TwoShort: Sacrifice Y1 Borbor\nDiscover R2 Borbor G1 Glenwood\n\n29) clockwise: Build R1 Spawningpool\n\n30) TwoShort: Trade Y1 G1 Bluestar\n\n31) clockwise: Move R1 Spawningpool Ultralisk\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G2 Bluestar\nBuild G3 Twoshort\n\n33) clockwise: Build R1 Ultralisk\n\n34) TwoShort: Sacrifice Y3 Bluestar\nMove G1 Bluestar Spawningpool\nMove G2 Bluestar Spawningpool\nMove G2 Bluestar Spawningpool\nCatastrophe Spawningpool Green\n\n35) clockwise: Build G1 Clockwise\n\n36) TwoShort: Discover G1 Twoshort B2 Bluonia\n\tclockwise: doh!\r\n\n\tclockwise: Well, I guess this game isn't just about over afterall.\n\n37) clockwise: Build R1 Ultralisk\n\n38) TwoShort: Sacrifice Y1 Twoshort\nMove R2 Glenwood Ultralisk\nCatastrophe Ultralisk Red\n\tTwoShort: I can't say I'm thrilled with my chances, but I imagine I can make you work for it :)\n\n39) clockwise: Build Y1 Ultralisk\n\tclockwise: Yeah I do still have a strong advantage; I just have to be careful so that I don't make some little mistake which lets you turn the tides... For the tides, they are fickle in homeworlds.\n\n40) TwoShort: Build G1 Twoshort\n\tclockwise: I was wondering if you'd accept that exchange.\n\n41) clockwise: Build B2 Clockwise\n\n42) TwoShort: Build G2 Bluonia\n\tTwoShort: I wasn't crazy about it, but if I let you blow up my red star, I wasn't going to be able to stop you from taking out the blue one in short order.\n\n43) clockwise: Trade B2 R2 Clockwise\n\n44) TwoShort: Trade G2 Y2 Bluonia\n\n45) clockwise: Trade G3 Y3 Clockwise\n\n46) TwoShort: Trade Y2 R2 Bluonia\n\n47) clockwise: Sacrifice Y1 Ultralisk\nMove B3 Borbor Bluonia\n\tclockwise: You'd have been better off trading the g1.\n\tTwoShort: And you'd have been better off not saying anything... I might not have seen it :) The wasted turn isn't what I needed though.\r\n\n\n\tclockwise: I probably would have kept quiet, except that I believe it was already to late.\n\tTwoShort: Ahh... so it is. Great game. Whenever you're ready for a rematch, let me know!\n\nHomeworlds Online (SDG# 6915)\nStarted: 2007.3.9, Ended: 2007.4.28\nParticipants: Personman (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld Y3 B1 G3\n\t_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\n\tJesse: Have a good game.\n\n2) Personman: Homeworld Y2 B1 G3\n\tPersonman: Ganbatte.\n\n3) Jesse: Build G1 Jesse\n\n4) Personman: Build G1 Personman\n\n5) Jesse: Trade G1 B1 Jesse\n\n6) Personman: Trade G1 Y1 Personman\n\n7) Jesse: Build B2 Jesse\n\n8) Personman: Build Y1 Personman\n\tPersonman: \n\n9) Jesse: Discover B2 Jesse G2 Wens\n\n10) Personman: Discover Y1 Personman G3 G3a\n\n11) Jesse: Build B2 Wens\n\n12) Personman: Move Y1 G3a Wens\n\n13) Jesse: Trade B2 R2 Wens\n\n14) Personman: Move Y1 Wens Jesse\n\n15) Jesse: Sacrifice R2 Wens\nAttack Y1 Jesse\nPass\n\n16) Personman: Build G1 Personman\n\n17) Jesse: Build B2 Wens\n\n18) Personman: Build G1 Personman\n\n19) Jesse: Trade B2 Y2 Wens\n\n20) Personman: Discover G1 Personman B3 B3a\n\n21) Jesse: Build B2 Wens\n\n22) Personman: Build G1 B3a\n\n23) Jesse: Build G2 Jesse\n\n24) Personman: Trade G1 Y1 B3a\n\n25) Jesse: Discover B2 Wens G3 Scrim\n\n26) Personman: Sacrifice G3 Personman\nBuild G1 B3a\nBuild G2 Personman\nBuild G3 Personman\n\n27) Jesse: Sacrifice G3 Jesse\nBuild B2 Wens\nBuild B3 Scrim\nBuild G3 Jesse\n\n28) Personman: Sacrifice G3 Personman\nBuild Y2 Personman\nBuild Y3 B3a\nBuild G3 Personman\n\n29) Jesse: Trade B3 R3 Scrim\n\n30) Personman: Sacrifice Y2 Personman\nDiscover Y1 B3a R2 Temp\nMove Y1 Temp Jesse\n\n31) Jesse: Sacrifice Y1 Jesse\nMove R3 Scrim Personman\n\n\nHomeworlds Online (SDG# 6916)\nStarted: 2007.3.9, Ended: 2007.4.15\nParticipants: Lexicon (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld Y1 B2 G3\n\t_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\n\n2) Lexicon: Homeworld Y1 B3 G3\n\n3) jeep: Build G1 Jeep\n\tjeep: b g1 jeep\n\tjeep: *laugh* I suck.. I shouldn't be making moves right now I guess. Still pretty out of it. Had the flu all week.\n\n4) Lexicon: Build G1 Lexicon\n\tLexicon: I have at least half a dozen chat messages saved in my Notebook. :)\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Lexicon: Build G1 Lexicon\n\n7) jeep: Build Y2 Jeep\n\n8) Lexicon: Discover G1 Lexicon G2 Alanine\n\n9) jeep: Discover Y1 Jeep G3 Thumb\n\n10) Lexicon: Trade G1 R1 Lexicon\n\n11) jeep: Build Y2 Jeep\n\n12) Lexicon: Build G1 Lexicon\n\n13) jeep: Build G1 Jeep\n\n14) Lexicon: Discover G1 Lexicon B2 Candle\n\n15) jeep: Discover Y2 Jeep B3 Wind\n\n16) Lexicon: Build G2 Lexicon\n\n17) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G3 Jeep\nBuild Y2 Thumb\n\n18) Lexicon: Trade G1 B1 Candle\n\n19) jeep: Sacrifice G3 Jeep\nBuild Y3 Jeep\nBuild Y3 Wind\nBuild Y3 Wind\n\n20) Lexicon: Sacrifice G3 Lexicon\nBuild G1 Alanine\nBuild G3 Lexicon\nBuild B1 Candle\n\n21) jeep: Build G3 Jeep\n\n22) Lexicon: Sacrifice B1 Candle\nTrade G1 B1 Alanine\n\n23) jeep: Trade G2 B2 Jeep\n\n24) Lexicon: Discover G2 Lexicon R2 Lysine\n\n25) jeep: Move G1 Jeep Wind\n\n26) Lexicon: Build G1 Lexicon\n\n27) jeep: Build G2 Wind\n\n28) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Lexicon\nBuild R1 Lexicon\nBuild R1 Lexicon\n\n29) jeep: Trade G2 R2 Wind\n\n30) Lexicon: Move R1 Lexicon Alanine\n\n31) jeep: Sacrifice G3 Jeep\nBuild G2 Wind\nBuild G3 Wind\nBuild R2 Wind\n\n32) Lexicon: Sacrifice G3 Lexicon\nBuild B1 Candle\nBuild B3 Alanine\nBuild G3 Lexicon\n\n33) jeep: Build R3 Wind\n\n34) Lexicon: Build R3 Alanine\n\tLexicon: I feel a hurtin' comin' on.\n\n35) jeep: Move R2 Wind Candle\n\n36) Lexicon: Move R1 Lexicon Lysine\n\tjeep: Yeah, I think so. I'm just paranoid that I'm going to give up what looks like a locked up game.\n\n37) jeep: Sacrifice G2 Wind\nBuild G2 Wind\nBuild R3 Candle\n\n38) Lexicon: Pass\n\n39) jeep: Move G2 Wind Candle\n\tLexicon: I honestly would have resigned like ten moves ago (whenever you hoarded the yellows), but tournament etiquette suggests I shouldn't I suppose and hey, maybe you'll screw up. :)\n\tjeep: I won't be offended if you resign. But yeah, I might screw up...\n\n\tLexicon: meh. I doubt this is much fun for either of us. I have been trounced. Good game! :)\n\tjeep: Yeah, not really, but I think I had it in hand. I think I could have won it faster, but I was paranoid I'd screw up.\n\tLexicon: Better safe than sorry for the tournament. :)\n\nHomeworlds Online (SDG# 6917)\nStarted: 2007.3.9, Ended: 2007.3.20\nParticipants: Uglyfoot (S), bigby (N)\nWinner: bigby\n\n1) bigby: Homeworld B1 G2 Y3\n\t_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\n3) bigby: Build Y1 Bigby\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) bigby: Trade Y1 G1 Bigby\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n7) bigby: Build G1 Bigby\n\n8) Uglyfoot: Discover Y1 Uglyfoot B2 Leo\n\n9) bigby: Build Y1 Bigby\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) bigby: Build Y2 Bigby\n\n12) Uglyfoot: Move G1 Uglyfoot Leo\n\n13) bigby: Discover Y2 Bigby R3 Fallback\n\n14) Uglyfoot: Build G2 Uglyfoot\n\n15) bigby: Move G1 Bigby Fallback\n\n16) Uglyfoot: Build Y2 Leo\n\n17) bigby: Discover G1 Fallback B2 Roget\n\n18) Uglyfoot: Discover Y2 Leo G3 Geo\n\n19) bigby: Build G2 Roget\n\n20) Uglyfoot: Build G3 Leo\n\n21) bigby: Sacrifice Y2 Fallback\nMove G1 Roget Uglyfoot\nMove G2 Roget Uglyfoot\nCatastrophe Uglyfoot G\n\tbigby: By the skin of my teeth. Thanks for the game!\n\tUglyfoot: Nicely played. \n\n\nHomeworlds Online (SDG# 6918)\nStarted: 2007.3.9, Ended: 2007.4.28\nParticipants: Aaron (S), ldd23 (N)\nWinner: Aaron\n\n1) ldd23: Homeworld B3 Y1 G3\n\t_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\n\n2) Aaron: Homeworld B2 Y1 G3\n\tAaron: You live! Welcome back! I hope all is well.\n\n\tAaron: Sorry, ldd. I sure hope all is well!\n\nHomeworlds Online (SDG# 6919)\nStarted: 2007.3.9, Ended: 2007.4.13\nParticipants: Cerulean (S), Subhan64 (N)\nWinner: Cerulean\n\n1) Subhan64: Homeworld B1 Y3 G3\n\t_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\n\n2) Cerulean: Homeworld G2 B1 Y3\n\tSubhan64: good luck!\r\n\n\n3) Subhan64: Build G1 Subhan64\n\n4) Cerulean: Build Y1 Cerulean\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) Cerulean: Trade Y1 G1 Cerulean\n\n7) Subhan64: Build G1 Subhan64\n\n8) Cerulean: Build Y1 Cerulean\n\n9) Subhan64: Discover G1 Subhan64 G2 Omicronpersei8\n\n10) Cerulean: Discover Y1 Cerulean G3 Jithrii\n\n11) Subhan64: Build G1 Subhan64\n\n12) Cerulean: Build Y1 Cerulean\n\n13) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Omicronpersei8\nBuild G3 Subhan64\nBuild G3 Subhan64\n\n14) Cerulean: Move G1 Cerulean Jithrii\n\n15) Subhan64: Trade G3 R3 Subhan64\n\n16) Cerulean: Build Y2 Jithrii\n\n17) Subhan64: Trade G1 B1 Subhan64\n\n18) Cerulean: Build Y2 Cerulean\n\n19) Subhan64: Sacrifice B1 Subhan64\nTrade G2 Y2 Omicronpersei8\n\n20) Cerulean: Trade Y2 R2 Cerulean\n\n21) Subhan64: Move R3 Subhan64 Omicronpersei8\n\n22) Cerulean: Discover Y1 Jithrii B2 Betou\n\n23) Subhan64: Sacrifice Y2 Omicronpersei8\nMove R3 Omicronpersei8 Jithrii\nMove R3 Jithrii Cerulean\n\n24) Cerulean: Attack R3N Cerulean\n\n25) Subhan64: Trade Y1 R1 Subhan64\n\n26) Cerulean: Trade R2 G2 Cerulean\n\tCerulean: uh, thanks!\n\tSubhan64: D'oh! Misread the rules I guess, was thinking you couldn't capture it as it was bigger than your red ship :-(\n\n27) Subhan64: Build R1 Subhan64\n\n28) Cerulean: Move Y1 Cerulean Jithrii\n\n29) Subhan64: Trade R1 Y1 Subhan64\n\n30) Cerulean: Build Y2 Cerulean\n\n31) Subhan64: Build Y2 Subhan64\n\n32) Cerulean: Move Y1 Betou Subhan64\nCatastrophe Subhan64 Y\n\n\tSubhan64: Ouch. At this point I think I should just resign,rather than drag this on & on\n\tSubhan64: gg!\n\nHomeworlds Online (SDG# 6920)\nStarted: 2007.3.9, Ended: 2007.4.19\nParticipants: Hedge_o_Matic (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld B1 Y3 G3\n\t_SYSTEM_: Welcome to round 6 of "SDG Triathlon 2006"! Your tournament directors include: Aaron. Please contact them if you have any questions or problems. For detailed information as to the rules and state of this tournament, please visit the wiki. Good luck!\n\tLaurie_Menke: Have a good game, Hedge!\n\n2) Hedge_o_Matic: Homeworld Y3 B1 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tHedge_o_Matic: Thanks! Sorry for that delay!\n\tLaurie_Menke: No problem.\n\n4) Hedge_o_Matic: Build G1 Hedge_o_matic\n\n5) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n6) Hedge_o_Matic: Build G1 Hedge_o_matic\n\n7) Laurie_Menke: Build B2 Laurie_menke\n\n8) Hedge_o_Matic: Trade G1 Y1 Hedge_o_matic\n\n9) Laurie_Menke: Discover B1 Laurie_menke Y2 Luella\n\n10) Hedge_o_Matic: Discover G1 Hedge_o_matic R2 Penrose\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) Hedge_o_Matic: Build G1 Penrose\n\n13) Laurie_Menke: Move G1 Laurie_menke Luella\n\n14) Hedge_o_Matic: Build G2 Hedge_o_matic\n\n15) Laurie_Menke: Move G1 Luella Hedge_o_matic\n\n16) Hedge_o_Matic: Trade G2 R2 Hedge_o_matic\n\tHedge_o_Matic: Alert! Alert! Bug-eyed monsters have invaded!\n\tLaurie_Menke: Hey now! Who you calling bug-eyed?!? ;o)\n\n17) Laurie_Menke: Move G1 Hedge_o_matic Luella\n\n18) Hedge_o_Matic: Move R2 Hedge_o_matic Luella\n\n19) Laurie_Menke: Move G1 Luella Hedge_o_matic\n\tHedge_o_Matic: Ha! My tracking device worked!\n\tLaurie_Menke: For now...we're just orbiting the planet. ;o)\n\n20) Hedge_o_Matic: Discover Y1 Hedge_o_matic G2 Phi\n\n21) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Hedge_o_matic\nBuild G2 Hedge_o_matic\nBuild G3 Hedge_o_matic\nCatastrophe Hedge_o_matic Green\n\tLaurie_Menke: Surprise! ;o) Thanks for the fun, Hedge_o_Matic! :o)\n\n\nHomeworlds Online (SDG# 6882)\nStarted: 2007.3.11, Ended: 2007.3.11\nParticipants: TwoShort (S), colodo (N)\nWinner: TwoShort\n\n1) colodo: Pass\n\tTwoShort: Howdy.\n\n\nHomeworlds Online (SDG# 6815)\nStarted: 2007.3.11, Ended: 2007.3.22\nParticipants: Uglyfoot (S), MikeYarrum (N)\nWinner: Uglyfoot\n\n1) MikeYarrum: Homeworld G2 Y1 B3\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\n3) MikeYarrum: Build B1 Mikeyarrum\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) MikeYarrum: Trade B1 Y1 Mikeyarrum\n\n6) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) Uglyfoot: Build Y2 Uglyfoot\n\n9) MikeYarrum: Trade Y2 G2 Mikeyarrum\n\n10) Uglyfoot: Discover Y2 Uglyfoot B2 Thestrip\n\n11) MikeYarrum: Build Y2 Mikeyarrum\n\n12) Uglyfoot: Build G1 Uglyfoot\n\n13) MikeYarrum: Discover Y2 Mikeyarrum B3 Zone\n\n14) Uglyfoot: Move G1 Uglyfoot Thestrip\n\n15) MikeYarrum: Move G2 Mikeyarrum Zone\n\n16) Uglyfoot: Build G1 Thestrip\n\n17) MikeYarrum: Build Y2 Zone\n\n18) Uglyfoot: Build G2 Uglyfoot\n\n19) MikeYarrum: Trade Y2 R2 Zone\n\n20) Uglyfoot: Trade G2 R2 Uglyfoot\n\n21) MikeYarrum: Build R1 Zone\n\n22) Uglyfoot: Build G2 Uglyfoot\n\n23) MikeYarrum: Move R1 Zone Thestrip\n\n24) Uglyfoot: Move G1 Thestrip Zone\n\n25) MikeYarrum: Attack G1 Zone\n\n26) Uglyfoot: Build G3 Thestrip\n\n27) MikeYarrum: Attack G1 Thestrip\n\n28) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack R1 Thestrip\nAttack G1 Thestrip\n\n29) MikeYarrum: Sacrifice Y2 Zone\nMove G1 Zone Thestrip\nMove G2 Zone Thestrip\nCatastrophe Thestrip Green\n\n30) Uglyfoot: Build Y2 Uglyfoot\n\n31) MikeYarrum: Trade B3 G3 Mikeyarrum\n\n32) Uglyfoot: Move G2 Uglyfoot Thestrip\n\n33) MikeYarrum: Move G3 Mikeyarrum Zone\n\n34) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove Y2 Thestrip Zone\nMove Y2 Zone Mikeyarrum\n\n35) MikeYarrum: Sacrifice Y1 Mikeyarrum\nMove R2 Zone Mikeyarrum\n\n36) Uglyfoot: Sacrifice R1 Thestrip\nAttack R2 Mikeyarrum\n\n\nHomeworlds Online (SDG# 6774)\nStarted: 2007.3.11, Ended: 2007.3.24\nParticipants: MikeYarrum (S), dsheldon (N)\nWinner: dsheldon\n\n1) dsheldon: Homeworld Y1 B2 G3\n\tdsheldon: Woah, I don't even remember placing this challenge. Sorry for the slow response, I was out of town all weekend and yesterday.\n\n2) MikeYarrum: Homeworld Y1 B3 G3\n\tMikeYarrum: No problem.\n\n3) dsheldon: Build G1 Dsheldon\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) dsheldon: Trade G1 Y1 Dsheldon\n\n6) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n7) dsheldon: Build G1 Dsheldon\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) dsheldon: Build Y2 Dsheldon\n\n10) MikeYarrum: Build B1 Mikeyarrum\n\n11) dsheldon: Discover G1 Dsheldon Y3 Jerome\n\n12) MikeYarrum: Discover B1 Mikeyarrum G2 Eugene\n\n13) dsheldon: Move Y2 Dsheldon Jerome\n\n14) MikeYarrum: Build B1 Mikeyarrum\n\n15) dsheldon: Build Y2 Jerome\n\n16) MikeYarrum: Build B2 Eugene\n\n17) dsheldon: Build G1 Dsheldon\n\n18) MikeYarrum: Trade B2 Y2 Eugene\n\n19) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Jerome\nBuild G2 Dsheldon\nBuild G3 Dsheldon\n\n20) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Mikeyarrum\nBuild Y3 Eugene\nBuild B2 Eugene\n\n21) dsheldon: Trade G3 R3 Dsheldon\n\n22) MikeYarrum: Trade Y3 R3 Eugene\n\n23) dsheldon: Discover Y2 Jerome R2 Phobos\n\n24) MikeYarrum: Move R3 Eugene Jerome\n\n25) dsheldon: Sacrifice Y2 Jerome\nMove G1 Jerome Eugene\nMove G2 Jerome Eugene\n\n26) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n27) dsheldon: Build G3 Dsheldon\n\n28) MikeYarrum: Trade B2 R2 Eugene\n\n29) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Eugene\nBuild Y2 Dsheldon\nBuild Y3 Phobos\nCatastrophe Eugene G\n\n30) MikeYarrum: Trade B1 G1 Mikeyarrum\n\n31) dsheldon: Trade Y2 B2 Dsheldon\n\n32) MikeYarrum: Build G2 Mikeyarrum\n\n33) dsheldon: Sacrifice G2 Dsheldon\nBuild Y2 Phobos\nBuild G2 Dsheldon\n\n34) MikeYarrum: Discover G1 Mikeyarrum B2 Apollo\n\n35) dsheldon: Sacrifice B2 Dsheldon\nTrade Y2 B2 Phobos\nTrade Y2 G2 Phobos\n\n36) MikeYarrum: Build G3 Apollo\n\n37) dsheldon: Build G3 Phobos\n\n38) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n39) dsheldon: Trade G3 B3 Phobos\n\n40) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove R3 Jerome Phobos\nMove R3 Mikeyarrum Phobos\n\n41) dsheldon: Sacrifice Y3 Phobos\nMove B2 Phobos Mikeyarrum\nMove B3 Phobos Mikeyarrum\nMove G2 Phobos Mikeyarrum\nCatastrophe Mikeyarrum B\n\n42) MikeYarrum: Build G2 Mikeyarrum\n\n43) dsheldon: Build G3 Mikeyarrum\nCatastrophe Mikeyarrum G\n\n\tdsheldon: Any time is fine. I wouldn't force you to continue if you felt you had no chance, but I would also gladly play through with you just for the experience. In any event, it will be moot in about thirty seconds.\n\tdsheldon: I was actually quite worried until you over extended yourself into Phobos right near the end.\n\nHomeworlds Online (SDG# 6956)\nVariants: "Hard time"\nStarted: 2007.3.12, Ended: 2007.3.26\nParticipants: Werebear (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) Werebear: Homeworld G2 Y1 B3\n\tTwoShort: Howdy.\n\n3) TwoShort: Build G1 Twoshort\n\tWerebear: Greetings!\n\n4) Werebear: Build B1 Werebear\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Werebear: Discover B1 Werebear G3 Harvest\n\n7) TwoShort: Build G1 Twoshort\n\n8) Werebear: Build B1 Harvest\n\n9) TwoShort: Build Y1 Twoshort\n\n10) Werebear: Build B1 Werebear\n\n11) TwoShort: Discover Y1 Twoshort B3 Borbor\n\n12) Werebear: Build B2 Werebear\n\n13) TwoShort: Build Y2 Twoshort\n\tTwoShort: Dangit, the blue freeze-out is supposed to be my trademark tactic.\n\n14) Werebear: Build B2 Harvest\n\n15) TwoShort: Discover Y1 Twoshort G3 Grogar\n\tWerebear: Hrm... Well, I've had a bit of practice at it...\n\tTwoShort: Clearly :)\n\n16) Werebear: Trade B2 Y2 Harvest\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Borbor\nBuild Y3 Twoshort\n\n18) Werebear: Discover B2 Werebear G3 Charity\n\n19) TwoShort: Move Y1 Grogar Werebear\n\n20) Werebear: Build Y3 Harvest\n\n21) TwoShort: Sacrifice Y2 Twoshort\nMove Y2 Grogar Werebear\nMove Y1 Borbor Werebear\nCatastrophe Werebear Yellow\n\n22) Werebear: Trade B3 G3 Werebear\n\n23) TwoShort: Build G1 Twoshort\n\n24) Werebear: Sacrifice G3 Werebear\nBuild B2 Charity\nBuild B3 Harvest\nBuild B3 Werebear\n\n25) TwoShort: Build G1 Twoshort\n\n\nHomeworlds Online (SDG# 6972)\nVariants: "Hard time"\nStarted: 2007.3.12, Ended: 2007.4.15\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld B1 Y2 G3\n\tjeep: ZPIP challenge? I suspect that that challenge could gain you a handful more rating points. ;)\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tTwoShort: Well, the idea was to get me more games :) \n\n3) jeep: Build G1 Jeep\n\tjeep: I like that start, if I was you. Hmm...\n\n4) TwoShort: Build B1 Twoshort\n\n5) jeep: Trade G3 B3 Jeep\n\tTwoShort: I'm rather fond of it, because it's different. I've been doing it lately when my opponent starts with a b1 star, and gone back and forth about it's true worthiness. I debated this time, since I'm intending to avoid wacky experiments and just play my best game for the ZPIP challenge. But my current theory is that it really is a good idea, so here we go...\n\n6) TwoShort: Trade B1 Y1 Twoshort\n\n7) jeep: Build G1 Jeep\n\n8) TwoShort: Build Y1 Twoshort\n\n9) jeep: Discover G1 Jeep Y3 Brickroad\n\n10) TwoShort: Build Y1 Twoshort\n\n11) jeep: Build B1 Jeep\n\n12) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n13) jeep: Trade B3 Y3 Jeep\n\n14) TwoShort: Build Y2 Grogar\n\n15) jeep: Build B2 Jeep\n\tjeep: Gah, how did I get myself here?\n\n16) TwoShort: Build Y2 Twoshort\n\n17) jeep: Trade B2 R2 Jeep\n\n18) TwoShort: Build Y3 Grogar\n\n19) jeep: Build B2 Jeep\n\n20) TwoShort: Trade Y2 R2 Twoshort\n\n21) jeep: Build G1 Jeep\n\n22) TwoShort: Build Y2 Twoshort\n\n23) jeep: Build G2 Brickroad\n\n24) TwoShort: Discover Y2 Grogar B3 Bluzilla\n\n25) jeep: Discover B1 Jeep G3 Builder\n\n26) TwoShort: Sacrifice Y3 Grogar\nMove Y1 Grogar Bluzilla\nMove Y1 Bluzilla Jeep\nMove Y2 Bluzilla Jeep\nCatastrophe Jeep Yellow\n\n\tjeep: Thanks for the game. I got myself in a fix early... I liked your opening.\n\nHomeworlds Online (SDG# 6962)\nVariants: "Unrated"\nStarted: 2007.3.12, Ended: 2007.3.15\nParticipants: Cinnibar (S), MikeYarrum (N)\nWinner: Cinnibar\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) Cinnibar: Homeworld Y1 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Cinnibar: Build G1 Cinnibar\n\n5) MikeYarrum: Discover G1 Mikeyarrum B3 Deep\n\n6) Cinnibar: Trade G1 R1 Cinnibar\n\tMikeYarrum: This should be a quick game - we're right next door to each other.\n\n7) MikeYarrum: Build G1 Deep\n\tCinnibar: Indeed, See what happens. :)\n\n8) Cinnibar: Move R1 Cinnibar Deep\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) Cinnibar: Build G2 Cinnibar\n\n11) MikeYarrum: Build G2 Mikeyarrum\n\n12) Cinnibar: Attack G1 Deep\n\n13) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n14) Cinnibar: Build R1 Deep\n\n15) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n16) Cinnibar: Trade G2 Y2 Cinnibar\n\n17) MikeYarrum: Discover Y1 Mikeyarrum G3 Mean\n\n18) Cinnibar: Build G1 Cinnibar\n\n19) MikeYarrum: Sacrifice G1 Deep\nBuild Y1 Mean\n\n20) Cinnibar: Move Y2 Cinnibar Mean\n\n21) MikeYarrum: Build G1 Mikeyarrum\n\n22) Cinnibar: Build G2 Deep\n\n23) MikeYarrum: Move Y1 Mean Cinnibar\n\tMikeYarrum: Would you mind if I resigned? You've had me on the defensive for awhile, and I don't think I can recover.\n\n24) Cinnibar: Sacrifice Y2 Mean\nMove G1 Deep Mikeyarrum\nMove G2 Deep Mikeyarrum\nCatastrophe Mikeyarrum G\n\tCinnibar: No problem, Mike. Thanks for the game!\n\n\nHomeworlds Online (SDG# 6977)\nVariants: "Hard time"\nStarted: 2007.3.13, Ended: 2007.4.5\nParticipants: Lexicon (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tLexicon: I'm guessing this is just a ploy to get you more Homeworlds games. :)\n\n2) Lexicon: Homeworld R1 B3 G3\n\tTwoShort: Uh oh, he's on to me...\n\n3) TwoShort: Build G1 Twoshort\n\n4) Lexicon: Build G1 Lexicon\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Lexicon: Trade G1 R1 Lexicon\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Lexicon: Build R2 Lexicon\n\n9) TwoShort: Build Y1 Twoshort\n\n10) Lexicon: Trade R2 Y2 Lexicon\n\n11) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n12) Lexicon: Build Y2 Lexicon\n\n13) TwoShort: Discover Y1 Twoshort B3 Bluonia\n\n14) Lexicon: Build R2 Lexicon\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Twoshort\nBuild Y3 Twoshort\n\n16) Lexicon: Discover Y2 Lexicon G2 Pyori\n\n17) TwoShort: Discover Y1 Twoshort Y3 Canary\n\n18) Lexicon: Move R1 Lexicon Pyori\n\n19) TwoShort: Trade Y2 R2 Bluonia\n\n20) Lexicon: Build Y2 Pyori\n\n21) TwoShort: Discover R2 Bluonia G2 Glenda\n\n22) Lexicon: Discover Y2 Pyori B3 Pombe\n\n23) TwoShort: Move Y3 Twoshort Pombe\n\n24) Lexicon: Move Y2 Pyori Bluonia\n\n25) TwoShort: Trade Y3 R3 Pombe\n\n26) Lexicon: Build Y3 Lexicon\n\n27) TwoShort: Attack Y2S Pombe\n\n28) Lexicon: Sacrifice Y2 Lexicon\nMove R2 Lexicon Pyori\nMove R2 Pyori Bluonia\n\n29) TwoShort: Discover Y1 Bluonia G2 Gorgon\n\n30) Lexicon: Sacrifice G3 Lexicon\nBuild R2 Pyori\nBuild R3 Bluonia\nBuild Y2 Bluonia\n\n31) TwoShort: Build R3 Glenda\n\n32) Lexicon: Sacrifice Y2 Bluonia\nMove R1 Pyori Bluonia\nMove R1 Bluonia Twoshort\n\n33) TwoShort: Build Y2 Gorgon\n\n34) Lexicon: Move R2 Bluonia Twoshort\n\n35) TwoShort: Discover Y1 Canary B2 Blaze\n\n36) Lexicon: Trade Y3 G3 Lexicon\n\n37) TwoShort: Build Y3 Grogar\n\n38) Lexicon: Build G1 Lexicon\n\n39) TwoShort: Build Y3 Grogar\n\n40) Lexicon: Move R3 Bluonia Gorgon\n\n41) TwoShort: Sacrifice Y2 Gorgon\nDiscover Y1 Gorgon G1 Lupus\nDiscover Y3 Grogar Y2 Yonderboy\n\n42) Lexicon: Move Y2 Bluonia Gorgon\n\n43) TwoShort: Attack R2S Twoshort\n\n44) Lexicon: Move R3 Gorgon Lupus\n\n45) TwoShort: Move Y1 Lupus Pombe\n\tLexicon: this was a fairly interesting game for a while, but it's looking grim now.\n\n46) Lexicon: Sacrifice Y2 Gorgon\nMove R2 Pyori Pombe\nMove R2 Pombe Twoshort\nCatastrophe Twoshort Red\n\n47) TwoShort: Build Y2 Grogar\n\tTwoShort: Yeah, I was pretty worried a little while back; but at this point you are looking at a slight disadvantage in material. :)\n\n48) Lexicon: Trade G1 B1 Lexicon\n\tLexicon: at least I have the satisfaction of taking out half your system. of course, I can't move anymore.......\n\n49) TwoShort: Trade Y2 B2 Pombe\n\n50) Lexicon: Build R1 Lupus\n\n51) TwoShort: Move B2 Pombe Glenda\n\n52) Lexicon: Sacrifice B1 Lexicon\nTrade R1 B1 Lupus\n\n53) TwoShort: Trade R3 G3 Pombe\n\n54) Lexicon: Build G1 Lexicon\n\n55) TwoShort: Sacrifice G3 Pombe\nBuild R1 Glenda\nBuild B1 Glenda\nBuild B1 Glenda\n\n56) Lexicon: Build B3 Lupus\n\n57) TwoShort: Sacrifice Y3 Grogar\nMove B1 Glenda Lexicon\nMove B1 Glenda Lexicon\nMove B2 Glenda Lexicon\nCatastrophe Lexicon Blue\n\n58) Lexicon: Sacrifice G3 Lexicon\nBuild G1 Lexicon\nBuild G2 Lexicon\nBuild G2 Lexicon\n\tLexicon: Looks like you've got this pretty well sorted out now. :)\n\tTwoShort: Yeah, once I got you entirely locked out of yellow, there wasn't much chance of my letting you make a comeback :)\n\n59) TwoShort: Pass\nCatastrophe Lexicon Green\n\tLexicon: Funny thing is, jeep locked me out of yellow the next day in another game. I don't think I'll ever forget this lesson. :)\n\n\nHomeworlds Online (SDG# 6980)\nVariants: "Hard time"\nStarted: 2007.3.13, Ended: 2007.3.28\nParticipants: Cochise (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) Cochise: Homeworld B1 G2 Y3\n\tCochise: This is my first time trying to play this, so please bear with me as I fuddle moves. :)\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy\n\n4) Cochise: Build Y1 Cochise\n\n5) TwoShort: Build G1 Twoshort\n\tCochise: Hey there. This looks like a fun game. I only have one TreeHouse set so far, but wanted to try the game out to get a better grasp on the rules. Nothing like a few games of actually playing to help solidify some learning.\n\tTwoShort: Well, I certainly think it's a fun game, but it does have a bit of a learning curve. I don't know if it was intentional, but one thing to note is that by choosing both the same size stars as me, you've put us in a "small universe", with our Homeworlds only 2 moves from each other. Not necessarily a bad idea, but it does make the game more quick and brutal.\n\n6) Cochise: Build Y1 Cochise\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\tCochise: Hmm, now I'm confused. I thought that travel between stars had to be of different sizes, so by choosing the same size as you have I was making the trip longer. Did I read or understand that rule wrong?\n\tTwoShort: We can each move from our homeworlds only to 3 point stars, and from there to the other homeworld. If you had chosen a 1 and a 3, we would still not be ajacent thanks to the 1s, and I for example, would have to go to a 3 then a 2 then to your world. \n\n8) Cochise: Trade Y1 G1 Cochise\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\tTwoShort: You should undo that. With 4 of the same color in one system, I can call a catastrophe and remove them all. \n\tCochise: Oops! Many thanks on that \n\n10) Cochise: Move G1 Cochise Yolonda\n\n11) TwoShort: Build G1 Twoshort\n\n12) Cochise: Build G2 Yolonda\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild G3 Twoshort\nCatastrophe Yolonda Green\n\n14) Cochise: Build Y1 Cochise\n\tTwoShort: well, this is too fun to resist...\n\n15) TwoShort: Discover G3 Twoshort B3 Bluonia\n\n16) Cochise: Trade Y1 G1 Cochise\n\n17) TwoShort: Trade G3 R3 Bluonia\n\n18) Cochise: Move G1 Cochise Bluonia\n\n19) TwoShort: Sacrifice Y1 Twoshort\nMove R3 Bluonia Cochise\n\n20) Cochise: Trade Y3 R3 Cochise\n\n21) TwoShort: Attack R3S Cochise\n\n22) Cochise: Build G1 Bluonia\n\n23) TwoShort: Attack Y1S Cochise\n\n\nHomeworlds Online (SDG# 6995)\nVariants: "Hard time"\nStarted: 2007.3.13, Ended: 2007.3.16\nParticipants: TwoShort (S), ts52 (N)\nWinner: TwoShort\n\n1) ts52: Homeworld B1 G2 Y3\n\tts52: I'm sure I don't have a shot in heck at the ZPIPs, but I'd love to get back into playing Homeworlds.\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) ts52: Build Y1 Ts52\n\tTwoShort: Well, I'm glad to have lured you back in! I hadn't actually played in a while, and when I came back, couldn't find many opponents; Hence the challenge...\n\tts52: Seems like a good way to get opponents.\n\n4) TwoShort: Build B1 Twoshort\n\n5) ts52: Discover Y1 Ts52 B3 Blueberry\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) ts52: Build Y1 Ts52\n\n8) TwoShort: Build B2 Twoshort\n\n9) ts52: Trade Y1 G1 Blueberry\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) ts52: Build Y1 Ts52\n\n12) TwoShort: Build B2 Twoshort\n\n13) ts52: Move Y1 Ts52 Blueberry\n\n14) TwoShort: Discover B2 Twoshort B2 Blutacular\n\n15) ts52: Discover Y1 Ts52 G3 Oscar\n\n16) TwoShort: Build B3 Grogar\n\n17) ts52: Build G1 Blueberry\n\tts52: Wow, how did I not notice the blues go so quickly...\n\n18) TwoShort: Build B3 Twoshort\n\tTwoShort: They were gone when I set up my homeworld :) Or at least, that guaranteed I could get the last b1 before you got a chance at it.\n\n19) ts52: Move G1 Blueberry Ts52\n\n20) TwoShort: Trade B3 R3 Grogar\n\tts52: Which just goes to show, there's still a lot I need to learn about this game.\n\tTwoShort: Well, it's only recently I've gotten this startegy to the point where I think starting with a small blue star as first player is inherently a bad idea.\n\n21) ts52: Trade Y3 B3 Ts52\n\tts52: Ok then, time to try something different.\n\n22) TwoShort: Sacrifice Y3 Twoshort\nMove R3 Grogar Blueberry\nMove R3 Blueberry Ts52\nPass\n\tTwoShort: The Gun Rule: When the other guy draws a gun, draw your gun. \r\nSorry. :)\n\n23) ts52: Trade G1 R1 Ts52\n\tts52: No problem. That's what I get for trying something different. Thanks for the game.\n\n24) TwoShort: Attack B3N Ts52\n\n25) ts52: Build R1 Ts52\n\tts52: So, is it better to resign, or play it out?\r\nIt's only one more turn, I guess. Thanks again for the game.\n\n26) TwoShort: Sacrifice R3 Ts52\nAttack R1N Ts52\nAttack R1N Ts52\nPass\n\tTwoShort: Thanks for the game :)\n\n\nHomeworlds Online (SDG# 7017)\nVariants: "Hard time"\nStarted: 2007.3.14, Ended: 2007.6.6\nParticipants: TwoShort (S), Keith (N)\nWinner: TwoShort\n\n1) Keith: Homeworld B1 Y2 G3\n\tKeith: When I last met you I was but the learner. Now I am ...?\r\n\r\nHello TwoShort. Don't count this game as part of your ZPIP challenge. I had already decided not to enter that fray because, while it would be a nice trophy, others are more likely to get to play a face to face game with the pocket set. \n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tTwoShort: If you don't want to count it, that's no problem. I've been enjoying my ZPIPs even thought I can count the in-person opponents I've had on my thumbs. It's that much less space to clear on my notoriously messy desk when I want to set up a tricky position.\n\n3) Keith: Build G1 Keith\n\tKeith: Good point about using the ZPIP to set up tricky problems. I use a virtual piece set in Illustrator for the same purpose.\n\n4) TwoShort: Build B1 Twoshort\n\n5) Keith: Build G1 Keith\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) Keith: Discover G1 Keith Y3 Amazons\n\tKeith: I am interested in seeing how your Homeworld startng setup works out. I had actually typed in the command window for a y1 b2 g3 start when I remembered your chat in your game with jeep and changed it so I had a b1.\n\n8) TwoShort: Build B2 Twoshort\n\n9) Keith: Build G1 Amazons\n\n10) TwoShort: Discover B1 Twoshort B2 Blitz\n\n11) Keith: Build G2 Keith\n\n12) TwoShort: Build B2 Twoshort\n\n13) Keith: Discover G1 Amazons G2 Fanorona\n\tKeith: I am going to continue on my risky course. I was interested in seeing how your blue ploy went because I had two games (one against Zoltar) where going for blue worked out in my favor. Tried it in a third game against a relatively new player and it all fell apart.\r\n\r\nAt this point I find your blue efforts quite threatening. I am going to continue on my course. Can't tell if it will make for an interesting game or a very short one in your favor.\n\n14) TwoShort: Discover B2 Twoshort G2 Grogar\n\n15) Keith: Build G3 Amazons\n\n16) TwoShort: Build B3 Grogar\n\n17) Keith: Trade G3 B3 Keith\n\n18) TwoShort: Trade B3 G3 Grogar\n\n19) Keith: Trade G2 R2 Keith\n\n20) TwoShort: Trade B2 R2 Twoshort\n\n21) Keith: Build G2 Amazons\n\n22) TwoShort: Sacrifice G3 Grogar\nBuild B2 Blitz\nBuild B3 Grogar\nBuild B3 Grogar\n\n23) Keith: Build G3 Keith\n\tKeith: Sigh. I should have gone with move g3 Amazons Grogar. If you attacked it I send in another green and destroy the system. Otherwise I could have attacked ships. Grabbing that g2 with the idea of not having to lose a g3 just put your blue strategy in high gear.\n\n24) TwoShort: Trade B3 Y3 Grogar\n\n25) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild R1 Keith\nBuild R1 Keith\n\n26) TwoShort: Trade B3 R3 Grogar\n\n27) Keith: Trade R2 Y2 Keith\n\n28) TwoShort: Build Y1 Grogar\n\n29) Keith: Sacrifice Y2 Keith\nMove G3 Amazons Grogar\nMove G2 Amazons Grogar\n\n30) TwoShort: Sacrifice Y3 Grogar\nMove R3 Grogar Amazons\nMove B2 Grogar Twoshort\nMove R2 Twoshort Fanorona\n\tTwoShort: Well that looks like trouble...\n\n31) Keith: Sacrifice G2 Grogar\nBuild G2 Fanorona\nBuild B3 Keith\n\n32) TwoShort: Sacrifice Y1 Grogar\nDiscover B1 Blitz Y3 Yoyodyne\n\n33) Keith: Move B3 Keith Yoyodyne\n\n34) TwoShort: Build B3 Twoshort\n\n35) Keith: Sacrifice R1 Keith\nAttack R2 Fanorona\n\n36) TwoShort: Attack G1N Amazons\n\n37) Keith: Sacrifice B3 Keith\nTrade G2 Y2 Fanorona\nTrade G1 Y1 Fanorona\nTrade G1 Y1 Keith\n\n38) TwoShort: Move B3 Twoshort Fanorona\n\n39) Keith: Move Y2 Fanorona Twoshort\n\n40) TwoShort: Sacrifice R3 Amazons\nAttack Y2N Twoshort\nAttack R2N Fanorona\nAttack Y1N Fanorona\n\n41) Keith: Build R1 Keith\n\tKeith: Wow, talk about brain lock. I never considered your applying your sacrificed R3 to more than one sector. I think your move will turn out to be the decisive move of the game.\n\n42) TwoShort: Build B3 Fanorona\n\n43) Keith: Sacrifice R1 Keith\nAttack B1 Yoyodyne\n\n44) TwoShort: Move B3 Fanorona Yoyodyne\n\n45) Keith: Build R1 Keith\n\n46) TwoShort: Sacrifice R2 Fanorona\nAttack B3N Yoyodyne\nAttack B1N Yoyodyne\n\n\tKeith: Forgot about the threat to my B3. I am just not able to give this game the time and energy it deserves. Welcome to the top rung of the Homeworlds ladder.\n\nHomeworlds Online (SDG# 7027)\nVariants: "Sinister"\nStarted: 2007.3.16, Ended: 2007.4.16\nParticipants: jimpurbrick (S), Cinnibar (N), MikeYarrum (E)\nWinner: Cinnibar\n\n1) Cinnibar: Homeworld G3 B2 Y3\n\n2) MikeYarrum: Homeworld B1 Y2 G3\n\n3) jimpurbrick: Homeworld B3 G1 Y3\n\tjimpurbrick: homeworld B3 G1 Y3\n\n4) Cinnibar: Build Y1 Cinnibar\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) jimpurbrick: Build Y1 Jimpurbrick\n\n7) Cinnibar: Discover Y1 Cinnibar G1 Vivat\n\n8) MikeYarrum: Discover G1 Mikeyarrum B3 Connie\n\n9) jimpurbrick: Discover Y1 Jimpurbrick G2 Disco\n\n10) Cinnibar: Build Y1 Vivat\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) jimpurbrick: Build Y1 Disco\n\n13) Cinnibar: Build Y2 Cinnibar\n\n14) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Mikeyarrum\nBuild G2 Mikeyarrum\nBuild G2 Connie\n\n15) jimpurbrick: Build Y2 Jimpurbrick\n\n16) Cinnibar: Trade Y3 G3 Cinnibar\n\n17) MikeYarrum: Trade G2 Y2 Connie\n\n18) jimpurbrick: Trade Y3 G3 Jimpurbrick\n\n19) Cinnibar: Build Y3 Cinnibar\n\n20) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n21) jimpurbrick: Build Y3 Jimpurbrick\n\n22) Cinnibar: Trade Y3 R3 Cinnibar\n\n23) MikeYarrum: Move G1 Connie Disco\n\n24) jimpurbrick: Trade Y3 R3 Jimpurbrick\n\n25) Cinnibar: Build Y3 Cinnibar\n\n26) MikeYarrum: Sacrifice R2 Mikeyarrum\nAttack Y1S Disco\nAttack Y1S Disco\n\n27) jimpurbrick: Build Y3 Jimpurbrick\n\n28) Cinnibar: Sacrifice Y2 Cinnibar\nMove Y1 Vivat Connie\nMove Y1 Connie Mikeyarrum\n\n29) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n30) jimpurbrick: Trade Y3 R3 Jimpurbrick\n\n31) Cinnibar: Sacrifice G3 Cinnibar\nBuild Y2 Mikeyarrum\nBuild Y3 Mikeyarrum\nBuild Y3 Cinnibar\nCatastrophe Mikeyarrum Y\n\n32) MikeYarrum: Build G2 Mikeyarrum\n\n33) jimpurbrick: Move R3 Jimpurbrick Disco\n\n34) Cinnibar: Trade Y3 R3 Cinnibar\n\n35) MikeYarrum: Sacrifice Y1 Disco\nMove G1 Disco Connie\n\n36) jimpurbrick: Attack Y1E Disco\n\n37) Cinnibar: Build Y1 Cinnibar\n\n38) MikeYarrum: Build G2 Mikeyarrum\n\n39) jimpurbrick: Build R1 Disco\n\n40) Cinnibar: Discover Y1 Vivat G3 Osmosis\n\n41) MikeYarrum: Build G1 Connie\n\n42) jimpurbrick: Build R1 Jimpurbrick\n\n43) Cinnibar: Build Y1 Osmosis\n\n44) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n45) jimpurbrick: Discover R1 Jimpurbrick B2 Funk\n\n46) Cinnibar: Discover Y1 Osmosis G2 Gemini\n\n47) MikeYarrum: Discover G1 Mikeyarrum G3 Yomi\n\n48) jimpurbrick: Build Y2 Disco\n\n49) Cinnibar: Build Y3 Osmosis\n\n50) MikeYarrum: Sacrifice G2 Mikeyarrum\nBuild Y3 Connie\nBuild Y3 Mikeyarrum\n\n51) jimpurbrick: Move Y2 Jimpurbrick Funk\n\n52) Cinnibar: Move Y1 Gemini Mikeyarrum\n\n53) MikeYarrum: Attack Y1N Mikeyarrum\n\n54) jimpurbrick: Trade Y2 G2 Funk\n\n55) Cinnibar: Move Y1 Osmosis Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n56) MikeYarrum: Sacrifice Y2 Connie\nMove Y3 Connie Mikeyarrum\nMove G1 Yomi Mikeyarrum\n\n57) jimpurbrick: Build G2 Funk\n\n58) Cinnibar: Trade Y1 B1 Cinnibar\n\n59) MikeYarrum: Build G2 Mikeyarrum\n\n60) jimpurbrick: Trade G2 Y2 Funk\n\n61) Cinnibar: Sacrifice B1 Cinnibar\nTrade Y3 B3 Osmosis\n\n62) MikeYarrum: Discover G1 Mikeyarrum Y3 Chihiro\n\n63) jimpurbrick: Build R1 Jimpurbrick\n\n64) Cinnibar: Trade R3 G3 Cinnibar\n\n65) MikeYarrum: Build G2 Mikeyarrum\n\n66) jimpurbrick: Trade R1 Y1 Jimpurbrick\n\n67) Cinnibar: Sacrifice G3 Cinnibar\nBuild B1 Osmosis\nBuild B1 Osmosis\nBuild Y1 Cinnibar\n\n68) MikeYarrum: Build G3 Chihiro\n\n69) jimpurbrick: Build R1 Funk\n\n70) Cinnibar: Sacrifice Y3 Cinnibar\nMove B1 Osmosis Mikeyarrum\nMove B1 Osmosis Mikeyarrum\nMove B3 Osmosis Mikeyarrum\nCatastrophe Mikeyarrum B\n\n\nHomeworlds Online (SDG# 7061)\nVariants: "Hard time"\nStarted: 2007.3.17, Ended: 2007.3.20\nParticipants: TwoShort (S), timotab (N)\nWinner: TwoShort\n\n1) timotab: Homeworld G1 B2 Y3\n\ttimotab: relative newbie here. played 3 games on Binary Homeworlds so far, and I got your name from the IceHouse list in the ZPIP discussion.\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) timotab: Build Y1 Timotab\n\n4) TwoShort: Build G1 Twoshort\n\n5) timotab: Discover Y1 Timotab B3 Treehouse\n\tTwoShort: Howdy. Always nice to have more homeworlds players!\n\n6) TwoShort: Build G1 Twoshort\n\ttimotab: I think I like the game so far. I really haven't got a clue, having played only 3 games. So, analysis after the game welcomed :)\r\n\n\n7) timotab: Build Y1 Timotab\n\ttimotab: oops. mistake number 1 :)\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) timotab: Build Y2 Timotab\n\n10) TwoShort: Build G1 Twoshort\n\tTwoShort: You're doing OK so far... As general strategic advice, the early game is largely about stash management: jockeying for position so that you'll get to grab more 3 pointers when they become available in some particular color.\n\n11) timotab: Trade Y2 G2 Timotab\n\n12) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n13) timotab: Move G2 Timotab Treehouse\n\n14) TwoShort: Build G2 Twoshort\n\n15) timotab: Build Y2 Treehouse\n\n16) TwoShort: Discover G2 Twoshort Y2 Yolonda\n\n17) timotab: Build G2 Treehouse\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Bluonia\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n19) timotab: Sacrifice Y2 Treehouse\nMove G2 Treehouse Bluonia\nMove G2 Treehouse Bluonia\nCatastrophe Bluonia Green\n\ttimotab: ahh... nicely done. I like it.\n\n20) TwoShort: Move G3 Yolonda Treehouse\n\tTwoShort: If I were giving you a proper tutorial, I'd have mentioned a couple basic tactics before we got there, including "the Factory", wherein a sacrificed g3 leads to growing itself back again.\n\n21) timotab: Trade Y1 G1 Treehouse\n\n22) TwoShort: Trade G3 R3 Treehouse\n\ttimotab: well, tell you what, how about we just play this one, and once you've beaten me, we can do a tutorial :)\r\n\n\n23) timotab: Trade Y1 R1 Timotab\n\n24) TwoShort: Attack G1N Treehouse\n\n25) timotab: Build R1 Timotab\n\tTwoShort: Well, I really just mean that I usually throw in a little more discussion, particularly when playing newer players. I still play to win because I'm not really capable of making anything but the best move I see. But with the ZPIP challenge I've got a few more games going at once than I'm used to :)\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Yolonda\nBuild G3 Twoshort\n\ttimotab: oh, yes, that's fine, I'm happy with more discussion next game :)\r\n\n\n27) timotab: Build Y1 Timotab\n\tTwoShort: woops...\n\n28) TwoShort: Discover G2 Yolonda Y3 Yoyodyne\n\n29) timotab: Move R1 Timotab Yoyodyne\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yoyodyne\nBuild G3 Treehouse\n\n31) timotab: Build R2 Timotab\n\n32) TwoShort: Trade G3 Y3 Twoshort\n\ttimotab: I can't see any way to recover. You've monopolised all the greens. Nicely done.\n\n33) timotab: Move R2 Timotab Yoyodyne\n\n34) TwoShort: Sacrifice R3 Treehouse\nAttack R2 Yoyodyne\nAttack R1 Yoyodyne\nPass\n\tTwoShort: Yeah, I think you're pretty doomed. I'll be happy to play it out if you want to see how long you can fend me off.\n\n\ttimotab: heh. OK. I'd done that myself on other people, but didn't expect you to pass one of your attacks, so thought I was safe for another turn. I'm very hosed\r\n\n\nHomeworlds Online (SDG# 7073)\nStarted: 2007.3.21, Ended: 2007.3.29\nParticipants: ts52 (S), MikeYarrum (N)\nWinner: ts52\n\n1) MikeYarrum: Homeworld Y2 B3 G3\n\n2) ts52: Homeworld G2 B1 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tts52: Have a good game!\n\tMikeYarrum: Thanks! You too.\n\n4) ts52: Build Y1 Ts52\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) ts52: Trade Y1 G1 Ts52\n\n7) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n8) ts52: Build Y1 Ts52\n\n9) MikeYarrum: Discover G1 Mikeyarrum B1 Dot\n\n10) ts52: Trade Y1 B1 Ts52\n\n11) MikeYarrum: Build Y1 Mikeyarrum\n\n12) ts52: Discover B1 Ts52 G3 Kermit\n\n13) MikeYarrum: Build G1 Dot\n\n14) ts52: Build G2 Ts52\n\n15) MikeYarrum: Build G2 Mikeyarrum\n\n16) ts52: Discover G2 Ts52 G3 Oscar\n\n17) MikeYarrum: Trade G1 R1 Dot\n\n18) ts52: Trade G1 R1 Ts52\n\n19) MikeYarrum: Build G1 Dot\n\n20) ts52: Trade B1 G1 Kermit\n\n21) MikeYarrum: Trade G1 Y1 Dot\n\n22) ts52: Build Y2 Ts52\n\n23) MikeYarrum: Build Y2 Dot\n\n24) ts52: Move Y2 Ts52 Kermit\n\n25) MikeYarrum: Move Y2 Dot Oscar\n\n26) ts52: Sacrifice G2 Oscar\nBuild Y3 Ts52\nBuild Y3 Kermit\n\n27) MikeYarrum: Move Y1 Mikeyarrum Dot\n\n28) ts52: Discover Y3 Kermit B1 Gonzo\n\n29) MikeYarrum: Move Y1 Dot Kermit\n\n30) ts52: Trade Y3 R3 Ts52\n\n31) MikeYarrum: Build Y3 Dot\n\n32) ts52: Move R3 Ts52 Oscar\n\n33) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n34) ts52: Attack Y2N Oscar\n\n35) MikeYarrum: Build R1 Dot\n\n36) ts52: Build R2 Ts52\n\n37) MikeYarrum: Build R2 Mikeyarrum\n\n38) ts52: Move R2 Ts52 Kermit\n\n39) MikeYarrum: Build G1 Dot\n\n40) ts52: Move G1 Kermit Gonzo\n\n41) MikeYarrum: Move R1 Dot Oscar\n\n42) ts52: Attack R1N Oscar\n\n43) MikeYarrum: Discover Y3 Dot R3 Piggy\n\n44) ts52: Build R2 Kermit\n\n45) MikeYarrum: Move G1 Dot Piggy\n\n46) ts52: Move R3 Oscar Dot\n\n47) MikeYarrum: Move G1 Dot Piggy\n\n48) ts52: Attack Y1N Dot\n\n49) MikeYarrum: Move G1 Piggy Ts52\n\n50) ts52: Attack G1N Ts52\n\n51) MikeYarrum: Build G2 Piggy\n\n52) ts52: Move G1 Ts52 Oscar\n\n\tMikeYarrum: You've got me. How about a new game?\n\tts52: Sure, I'd be happy to start another.\n\nHomeworlds Online (SDG# 7110)\nVariants: "Hard time"\nStarted: 2007.3.21, Ended: 2007.3.26\nParticipants: MikeYarrum (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld Y1 B2 G3\n\n2) MikeYarrum: Homeworld B3 G2 Y3\n\tTwoShort: Howdy.\n\n3) TwoShort: Build G1 Twoshort\n\tMikeYarrum: Hey.\n\n4) MikeYarrum: Build Y1 Mikeyarrum\n\n5) TwoShort: Build G1 Twoshort\n\n6) MikeYarrum: Build Y1 Mikeyarrum\n\n7) TwoShort: Discover G1 Twoshort Y3 Yellonia\n\n8) MikeYarrum: Discover Y1 Mikeyarrum B1 Bluey\n\n9) TwoShort: Build G1 Twoshort\n\n10) MikeYarrum: Build Y2 Mikeyarrum\n\n11) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n12) MikeYarrum: Move Y1 Mikeyarrum Bluey\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n14) MikeYarrum: Build Y2 Mikeyarrum\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Bluonia\nBuild G3 Yellonia\n\n16) MikeYarrum: Move Y1 Bluey Bluonia\n\n17) TwoShort: Trade G3 R3 Bluonia\n\n18) MikeYarrum: Move Y2 Mikeyarrum Bluey\n\n19) TwoShort: Attack Y1S Bluonia\n\n20) MikeYarrum: Trade Y2 R2 Bluey\n\n21) TwoShort: Discover G2 Twoshort Y3 Yonderboy\n\n22) MikeYarrum: Trade Y3 G3 Mikeyarrum\n\n23) TwoShort: Trade G3 Y3 Twoshort\n\n24) MikeYarrum: Move R2 Bluey Yonderboy\n\n25) TwoShort: Sacrifice G3 Yellonia\nBuild Y2 Bluonia\nBuild G3 Twoshort\nBuild G3 Yonderboy\n\n26) MikeYarrum: Attack G2 Yonderboy\n\n27) TwoShort: Sacrifice R3 Bluonia\nAttack R2S Yonderboy\nAttack G2S Yonderboy\nPass\n\n\tMikeYarrum: Well, I fought to the last. Thanks for the game!\n\nHomeworlds Online (SDG# 7130)\nStarted: 2007.3.22, Ended: 2007.3.22\nParticipants: MikeYarrum (S), Moueska (N)\nWinner: MikeYarrum\n\n1) Moueska: Homeworld G2 R3 B3\n\n\n\n2) MikeYarrum: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 7131)\nVariants: "Hard time"\nStarted: 2007.3.22, Ended: 2007.3.28\nParticipants: MikeYarrum (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B2 G1 Y3\n\n2) MikeYarrum: Homeworld B3 Y1 G3\n\n3) mneme: Build Y1 Mneme\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) mneme: Discover Y1 Mneme G3 Fir\n\n6) MikeYarrum: Discover G1 Mikeyarrum Y2 Thor\n\n7) mneme: Build Y1 Fir\n\tmneme: We are so not continuing at this pace. But that's ok.\n\n8) MikeYarrum: Build G1 Thor\n\n9) mneme: Build Y2 Mneme\n\tMikeYarrum: Heh, that's okay... as long as I'm playing.\n\n10) MikeYarrum: Build G2 Mikeyarrum\n\n11) mneme: Trade Y2 G2 Mneme\n\n12) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n13) mneme: Discover G2 Mneme B3 Pine\n\n14) MikeYarrum: Build Y2 Mikeyarrum\n\n15) mneme: Build Y3 Mneme\n\n16) MikeYarrum: Discover Y2 Mikeyarrum G2 Loki\n\n17) mneme: Build Y3 Fir\n\n18) MikeYarrum: Move Y2 Loki Fir\nCatastrophe Fir Yellow\n\n19) mneme: Build G2 Pine\n\n20) MikeYarrum: Build G2 Mikeyarrum\n\n21) mneme: Trade G2 Y2 Pine\n\n22) MikeYarrum: Discover G1 Thor Y3 Frigg\n\n23) mneme: Trade Y3 R3 Mneme\n\n24) MikeYarrum: Build G2 Frigg\n\n25) mneme: Build G3 Pine\n\n26) MikeYarrum: Build G3 Thor\n\n27) mneme: Sacrifice Y2 Pine\nMove R3 Mneme Frigg\nMove R3 Frigg Thor\n\n28) MikeYarrum: Move G3 Thor Frigg\n\n29) mneme: Move R3 Thor Mikeyarrum\n\n30) MikeYarrum: Build Y1 Mikeyarrum\n\n31) mneme: Attack G3 Mikeyarrum\n\tMikeYarrum: I'm not quite clear on the rules here - Can you now sacrifice your r3 to attack the ships in my homeworld?\n\tmneme: no -- I'd need to have another ship in your system for that. but I can keep taking your ships until they're all gone, and there's pretty much no way out. (play it out, to see how it works, I think)\n\n32) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove G1 Frigg Mneme\nMove G2 Frigg Mneme\n\tMikeYarrum: Ouch, that's right. I was hoping I could at least take out one of your stars before too long.\n\tmneme: unless I'm miscalculating or you do something unexpected, I win next turn -- build, and I cause a catastrophe. anything else, and I sac the red and take your home system.\n\n33) mneme: Sacrifice R3 Mikeyarrum\nAttack G2 Mikeyarrum\nAttack Y1 Mikeyarrum\nAttack G2 Mneme\n\tmneme: good game! Again?\n\tMikeYarrum: Definitely.\n\n\nHomeworlds Online (SDG# 7137)\nVariants: "Hard time"\nStarted: 2007.3.22, Ended: 2007.4.2\nParticipants: morganfitzp (S), jbj77 (N)\nWinner: jbj77\n\n1) jbj77: Homeworld Y1 B2 G3\n\tjbj77: A chance to redeem myself after our last game! I hope I don't mess it up.\n\n2) morganfitzp: Homeworld B3 Y2 G3\n\tmorganfitzp: Yup. Welcome back.\n\n3) jbj77: Build G1 Jbj77\n\n4) morganfitzp: Build G1 Morganfitzp\n\n5) jbj77: Trade G1 Y1 Jbj77\n\n6) morganfitzp: Trade G1 Y1 Morganfitzp\n\n7) jbj77: Discover Y1 Jbj77 G3 Alpha\n\n8) morganfitzp: Build Y2 Morganfitzp\n\n9) jbj77: Build Y2 Alpha\n\n10) morganfitzp: Discover Y1 Morganfitzp G1 Ri\n\n11) jbj77: Discover Y1 Alpha G1 Beta\n\n12) morganfitzp: Trade Y2 G2 Morganfitzp\n\n13) jbj77: Build G1 Jbj77\n\n14) morganfitzp: Discover G2 Morganfitzp B1 Cn\n\n15) jbj77: Trade G1 B1 Jbj77\n\n16) morganfitzp: Build G1 Morganfitzp\n\n17) jbj77: Build G2 Jbj77\n\n18) morganfitzp: Sacrifice G3 Morganfitzp\nBuild G2 Cn\nBuild G3 Morganfitzp\nBuild Y2 Ri\n\n19) jbj77: Sacrifice G3 Jbj77\nBuild Y3 Alpha\nBuild Y3 Beta\nBuild G3 Jbj77\n\n20) morganfitzp: Trade G2 R2 Cn\n\n21) jbj77: Sacrifice B1 Jbj77\nTrade Y3 R3 Alpha\n\n22) morganfitzp: Sacrifice G3 Morganfitzp\nBuild G2 Cn\nBuild Y3 Ri\nBuild G3 Morganfitzp\n\n23) jbj77: Build Y3 Alpha\n\n24) morganfitzp: Sacrifice Y2 Ri\nMove G2 Cn Alpha\nMove G2 Cn Alpha\n\tjbj77: I struggled with this one, but in the end I couldn't overcome my greed.\n\tmorganfitzp: I must say, I am surprised.\n\n25) jbj77: Sacrifice R3 Alpha\nAttack G2 Alpha\nAttack G2 Alpha\nPass\n\n26) morganfitzp: Sacrifice Y3 Ri\nMove G1 Morganfitzp Ri\nMove G1 Ri Alpha\nDiscover R2 Cn B3 Me\nCatastrophe Alpha Green\n\tjbj77: I don't think that I had much choice here.\n\n27) jbj77: Discover Y1 Beta B3 Gamma\n\tmorganfitzp: Neither did I.\n\n28) morganfitzp: Build G1 Morganfitzp\n\tjbj77: I suspected you were going to do that.\n\n29) jbj77: Build G2 Jbj77\n\n30) morganfitzp: Sacrifice G1 Morganfitzp\nBuild R1 Me\n\n31) jbj77: Trade G2 R2 Jbj77\n\n32) morganfitzp: Trade R1 G1 Me\n\n33) jbj77: Move Y3 Beta Me\n\n34) morganfitzp: Sacrifice G1 Me\nBuild Y2 Ri\n\n35) jbj77: Sacrifice R2 Jbj77\nAttack R2 Me\nPass\n\n36) morganfitzp: Discover Y2 Ri B2 Nh\n\n37) jbj77: Discover Y3 Me G1 Delta\n\n38) morganfitzp: Trade Y2 R2 Nh\n\n39) jbj77: Build Y2 Delta\n\n40) morganfitzp: Build G1 Morganfitzp\n\n41) jbj77: Move Y2 Delta Me\n\n42) morganfitzp: Trade G1 B1 Morganfitzp\n\n43) jbj77: Build G1 Jbj77\n\n44) morganfitzp: Build G2 Morganfitzp\n\n45) jbj77: Move G1 Jbj77 Me\n\n46) morganfitzp: Move B1 Morganfitzp Ri\n\n47) jbj77: Sacrifice G3 Jbj77\nBuild G2 Jbj77\nBuild G3 Jbj77\nBuild G3 Me\n\n48) morganfitzp: Sacrifice G3 Morganfitzp\nBuild G3 Morganfitzp\nBuild B1 Ri\nBuild B1 Ri\n\n49) jbj77: Sacrifice G3 Jbj77\nBuild Y2 Me\nBuild Y3 Gamma\nBuild Y3 Delta\n\n50) morganfitzp: Sacrifice G2 Morganfitzp\nBuild G2 Morganfitzp\nBuild R1 Nh\n\n51) jbj77: Sacrifice Y2 Me\nMove G3 Me Ri\nMove G3 Ri Morganfitzp\n\n52) morganfitzp: Trade G3 R3 Morganfitzp\n\tmorganfitzp: Slow death, or quick death?\n\n53) jbj77: Sacrifice R2 Me\nAttack R3 Morganfitzp\nAttack G2 Morganfitzp\n\tmorganfitzp: Slow death.\n\tjbj77: Quick death. This makes us one and one, so we'll have to have another match-up sometime.\n\tmorganfitzp: Ah! Didn't see it. Nice work, though it felt inevitable from the get-go.\n\tjbj77: That's OK, because I totally missed the death blow that you dealt me on our first game.\n\n\nHomeworlds Online (SDG# 7072)\nStarted: 2007.3.25, Ended: 2007.3.31\nParticipants: ts52 (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\tclockwise: Hello and good luck\n\n3) clockwise: Build G1 Clockwise\n\tts52: thanks. Good luck to you too.\n\n4) ts52: Build G1 Ts52\n\n5) clockwise: Trade G1 Y1 Clockwise\n\n6) ts52: Discover G1 Ts52 B3 Gonzo\n\n7) clockwise: Build Y1 Clockwise\n\n8) ts52: Build G1 Gonzo\n\n9) clockwise: Build Y2 Clockwise\n\n10) ts52: Trade G1 R1 Gonzo\n\n11) clockwise: Trade Y2 R2 Clockwise\n\n12) ts52: Build G1 Gonzo\n\n13) clockwise: Build Y2 Clockwise\n\n14) ts52: Build G1 Ts52\n\n15) clockwise: Move Y2 Clockwise Gonzo\n\n16) ts52: Build G2 Gonzo\n\n17) clockwise: Sacrifice R2 Clockwise\nAttack G2S Gonzo\nAttack R1S Gonzo\n\n18) ts52: Trade G1 R1 Ts52\n\n19) clockwise: Trade G2 R2 Gonzo\n\n20) ts52: Build R2 Ts52\n\n21) clockwise: Sacrifice R2 Gonzo\nAttack G1S Gonzo\nAttack G1S Gonzo\n\n22) ts52: Trade R2 Y2 Ts52\n\n23) clockwise: Build Y2 Gonzo\n\n24) ts52: Discover Y2 Ts52 G3 Oscar\n\n25) clockwise: Build Y3 Gonzo\n\n26) ts52: Build Y3 Oscar\n\n27) clockwise: Sacrifice Y2 Gonzo\nMove Y1 Clockwise Oscar\nMove Y1 Clockwise Oscar\nCatastrophe Oscar Yellow\n\n28) ts52: Build R2 Ts52\n\n29) clockwise: Build G1 Clockwise\n\n30) ts52: Discover R2 Ts52 B3 Grover\n\n31) clockwise: Build G2 Gonzo\n\n32) ts52: Trade G3 R3 Ts52\n\n33) clockwise: Build R2 Gonzo\n\n34) ts52: Discover R1 Ts52 Y3 Bigbird\n\n35) clockwise: Build R2 Gonzo\n\n36) ts52: Trade R3 Y3 Ts52\n\tclockwise: Heh, I don't think I've ever overdeveloped a system so much. :)\n\tts52: It is pretty impressive.\n\n37) clockwise: Move Y3 Gonzo Ts52\n\tts52: I'm pretty sure this is just about over, but I have to try...\n\n38) ts52: Sacrifice R1 Bigbird\nAttack Y3N Ts52\n\tclockwise: The correct choice was blue, but I think that would have just given a few more turns.\n\tts52: Ah right, as you didn't have any blue ships. Ah well. Thanks for playing.\n\n39) clockwise: Move Y2 Gonzo Ts52\nCatastrophe Ts52 Yellow\n\tclockwise: Thanks for the game\n\n\nHomeworlds Online (SDG# 7202)\nVariants: "Hard time"\nStarted: 2007.3.28, Ended: 2007.4.4\nParticipants: TwoShort (S), MikeYarrum (N)\nWinner: TwoShort\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) TwoShort: Build B1 Twoshort\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) MikeYarrum: Discover G1 Mikeyarrum Y3 Chiyo\n\n8) TwoShort: Build B2 Twoshort\n\n9) MikeYarrum: Build G1 Chiyo\n\n10) TwoShort: Discover B1 Twoshort B2 Blitz\n\n11) MikeYarrum: Build G2 Mikeyarrum\n\n12) TwoShort: Build B2 Twoshort\n\n13) MikeYarrum: Discover G2 Mikeyarrum B3 Osa\n\n14) TwoShort: Discover B2 Twoshort G2 Grogar\n\n15) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Chiyo\nBuild G3 Osa\nBuild G3 Mikeyarrum\n\n16) TwoShort: Build B3 Grogar\n\n17) MikeYarrum: Trade G3 R3 Osa\n\n18) TwoShort: Build B3 Twoshort\n\n19) MikeYarrum: Discover G1 Chiyo Y2 Tomo\n\n20) TwoShort: Trade B3 G3 Grogar\n\n21) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild R1 Osa\nBuild R1 Osa\nBuild G3 Mikeyarrum\n\n22) TwoShort: Build B3 Grogar\n\n23) MikeYarrum: Trade R1 Y1 Osa\n\n24) TwoShort: Trade B3 R3 Grogar\n\n25) MikeYarrum: Move R1 Osa Blitz\n\n26) TwoShort: Sacrifice G3 Grogar\nBuild B3 Blitz\nBuild R1 Grogar\nBuild Y1 Twoshort\n\n27) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Mikeyarrum\nBuild G3 Tomo\nBuild R1 Osa\n\n28) TwoShort: Sacrifice R1 Grogar\nAttack R1N Blitz\n\n29) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n30) TwoShort: Build R1 Grogar\n\n31) MikeYarrum: Sacrifice G3 Tomo\nBuild Y2 Osa\nBuild G1 Tomo\nBuild G3 Tomo\n\n32) TwoShort: Sacrifice Y3 Twoshort\nMove R1 Grogar Osa\nMove R1 Blitz Osa\nMove R3 Grogar Chiyo\nCatastrophe Osa Red\n\n33) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n34) TwoShort: Attack G2N Chiyo\n\n35) MikeYarrum: Sacrifice Y2 Osa\nMove G1 Tomo Twoshort\nMove G1 Tomo Twoshort\n\tMikeYarrum: According to the SDG wiki, you are the second-best Homeworlds player in the world. I knew you were good, but I can't help but feel a little intimidated now.\r\n\r\nHopefully I'll learn some good strategies! =D\n\tTwoShort: Hmm... I don't really agree with that; there's at least two people I'd expect to lose to next time we played. In any case, you've been playing an excellent game, I've really been feeling the pressure. \r\n In fact, you've only made one move I'd say was a mistake; unfortunately, it's the one you just made :)\n\n36) TwoShort: Build G3 Chiyo\n\n37) MikeYarrum: Move G3 Tomo Chiyo\nCatastrophe Chiyo Green\n\n38) TwoShort: Sacrifice R3 Chiyo\nAttack G1N Twoshort\nAttack G1N Twoshort\nPass\n\n39) MikeYarrum: Build Y2 Osa\n\n40) TwoShort: Trade G1 R1 Twoshort\n\n41) MikeYarrum: Discover Y1 Osa G2 Yomi\n\n42) TwoShort: Trade B3 Y3 Blitz\n\n43) MikeYarrum: Sacrifice G2 Osa\nBuild Y2 Yomi\nBuild Y3 Osa\n\n44) TwoShort: Build B3 Grogar\n\n45) MikeYarrum: Discover Y1 Yomi G3 Nyamo\n\n46) TwoShort: Build Y3 Twoshort\n\n47) MikeYarrum: Trade Y3 G3 Osa\n\n48) TwoShort: Sacrifice Y1 Twoshort\nMove B3 Grogar Nyamo\n\n49) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n50) TwoShort: Trade B3 R3 Twoshort\n\n51) MikeYarrum: Build G1 Osa\n\n52) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Nyamo Mikeyarrum\nMove Y3 Blitz Nyamo\nMove Y3 Nyamo Mikeyarrum\n\n53) MikeYarrum: Sacrifice Y2 Osa\nMove G3 Osa Mikeyarrum\nMove G1 Osa Mikeyarrum\n\n54) TwoShort: Sacrifice R3 Twoshort\nAttack R3N Mikeyarrum\nAttack G3N Mikeyarrum\nAttack G1N Mikeyarrum\n\n55) MikeYarrum: Move Y1 Nyamo Mikeyarrum\n\n56) TwoShort: Sacrifice R3 Mikeyarrum\nAttack R1N Mikeyarrum\nAttack Y1N Mikeyarrum\nPass\n\n\tTwoShort: I'm a big fan of trying to put off the end as long as possible, though in this case the end is here. But anyway, thanks for an excellent game! You really made me work for it.\n\tMikeYarrum: No problem. I usually resign when I'm doomed, but I figured you'd want me to fight it out. =D\n\nHomeworlds Online (SDG# 7226)\nVariants: "Hard time"\nStarted: 2007.3.28, Ended: 2007.4.20\nParticipants: MikeYarrum (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld B3 R2 G3\n\n2) MikeYarrum: Homeworld Y3 B1 G3\n\n3) Lexicon: Build G1 Lexicon\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Lexicon: Trade G1 Y1 Lexicon\n\n6) MikeYarrum: Discover G1 Mikeyarrum Y2 Kagu\n\n7) Lexicon: Build G1 Lexicon\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) Lexicon: Build G2 Lexicon\n\n10) MikeYarrum: Build G2 Kagu\n\n11) Lexicon: Discover G2 Lexicon Y1 Nature\n\n12) MikeYarrum: Discover G1 Kagu B1 Tomo\n\n13) Lexicon: Sacrifice G3 Lexicon\nBuild G2 Lexicon\nBuild G3 Nature\nBuild G3 Lexicon\n\n14) MikeYarrum: Trade G1 R1 Mikeyarrum\n\tMikeYarrum: I just pulled that same trick in another homeworlds game... I'm learning, but still a n00b.\n\n15) Lexicon: Discover G2 Nature B2 Science\n\tLexicon: Factories are Fun! So long as you're the one who has one, anyway. :)\n\n16) MikeYarrum: Build R1 Mikeyarrum\n\n17) Lexicon: Sacrifice G2 Lexicon\nBuild G1 Science\nBuild G2 Science\n\n18) MikeYarrum: Move R1 Mikeyarrum Science\n\n19) Lexicon: Trade G2 R2 Science\n\n20) MikeYarrum: Attack G1 Science\n\n21) Lexicon: Attack R1 Science\n\n22) MikeYarrum: Trade G1 R1 Science\n\n23) Lexicon: Sacrifice G3 Lexicon\nBuild G1 Nature\nBuild G2 Science\nBuild G3 Lexicon\n\n24) MikeYarrum: Build R2 Mikeyarrum\n\n25) Lexicon: Trade R2 Y2 Science\n\n26) MikeYarrum: Attack R1 Science\n\n27) Lexicon: Sacrifice G3 Nature\nBuild G3 Nature\nBuild Y1 Science\nBuild Y2 Science\n\n28) MikeYarrum: Attack Y1 Science\n\n29) Lexicon: Sacrifice Y2 Science\nMove G2 Science Mikeyarrum\nMove G2 Science Mikeyarrum\n\n30) MikeYarrum: Trade G3 B3 Mikeyarrum\n\n31) Lexicon: Trade G2 B2 Mikeyarrum\n\n32) MikeYarrum: Sacrifice R2 Mikeyarrum\nAttack G2 Mikeyarrum\nAttack B2 Mikeyarrum\n\n33) Lexicon: Discover G3 Nature Y2 Cell\n\n34) MikeYarrum: Move B2 Mikeyarrum Science\n\tLexicon: somehow I planned that attack all wrong. :)\n\n35) Lexicon: Sacrifice G3 Lexicon\nBuild G2 Cell\nBuild G3 Lexicon\nBuild G3 Nature\n\tMikeYarrum: At first, I thought you had something sneaky planned. You almost had me.\n\n36) MikeYarrum: Build R2 Mikeyarrum\n\tLexicon: Yeah, I think I was over confident or something. I'll have to reevaluate the situation a bit before proceeding. :)\n\n37) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Lexicon\nBuild Y3 Lexicon\nBuild Y3 Science\n\n38) MikeYarrum: Attack Y2 Science\n\n39) Lexicon: Trade G1 B1 Lexicon\n\n40) MikeYarrum: Move B2 Science Tomo\n\n41) Lexicon: Sacrifice B1 Lexicon\nTrade G3 B3 Cell\n\n42) MikeYarrum: Trade B2 R2 Tomo\n\n43) Lexicon: Sacrifice G3 Nature\nBuild G1 Lexicon\nBuild G3 Cell\nBuild B1 Cell\n\n44) MikeYarrum: Build G3 Kagu\n\n45) Lexicon: Move B1 Cell Mikeyarrum\n\n46) MikeYarrum: Move B3 Mikeyarrum Science\n\n47) Lexicon: Sacrifice G1 Nature\nBuild Y1 Science\nCatastrophe Science Yellow\n\n48) MikeYarrum: Trade B3 Y3 Science\n\n49) Lexicon: Sacrifice G2 Cell\nBuild B2 Mikeyarrum\nBuild B2 Mikeyarrum\nCatastrophe Mikeyarrum Blue\n\n50) MikeYarrum: Sacrifice G3 Kagu\nBuild G1 Kagu\nBuild G2 Tomo\nBuild G3 Mikeyarrum\n\n51) Lexicon: Trade G3 R3 Cell\n\n52) MikeYarrum: Discover R1 Science Y1 Chiyo\n\n53) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Lexicon\nBuild R3 Cell\nBuild Y1 Lexicon\n\n54) MikeYarrum: Trade G2 Y2 Tomo\n\n55) Lexicon: Discover Y1 Lexicon B1 Plos\n\n56) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Kagu\nBuild G3 Tomo\nBuild G3 Mikeyarrum\n\n57) Lexicon: Move R3 Cell Chiyo\n\n58) MikeYarrum: Sacrifice Y3 Science\nMove G1 Kagu Tomo\nMove G1 Tomo Lexicon\nMove G1 Tomo Lexicon\nCatastrophe Lexicon Green\n\n59) Lexicon: Trade B3 G3 Cell\n\n60) MikeYarrum: Build R3 Tomo\n\n61) Lexicon: Build G1 Cell\n\n62) MikeYarrum: Build Y3 Tomo\n\n63) Lexicon: Move G3 Cell Mikeyarrum\n\n64) MikeYarrum: Attack G3 Mikeyarrum\n\n65) Lexicon: Move G1 Cell Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n66) MikeYarrum: Move G3 Tomo Mikeyarrum\n\n67) Lexicon: Trade Y3 G3 Lexicon\n\n68) MikeYarrum: Move R1 Chiyo Lexicon\n\n69) Lexicon: Build Y3 Lexicon\n\n70) MikeYarrum: Sacrifice Y3 Tomo\nMove R2 Tomo Lexicon\nMove R3 Tomo Lexicon\nMove R1 Science Plos\nCatastrophe Lexicon R\n\n71) Lexicon: Sacrifice G3 Lexicon\nBuild Y3 Plos\nBuild R1 Cell\nBuild R2 Chiyo\n\n72) MikeYarrum: Discover G2 Kagu B1 Koneko\n\n73) Lexicon: Sacrifice R1 Cell\nAttack R1 Plos\n\n74) MikeYarrum: Build G1 Koneko\n\tMikeYarrum: Ugh, I was afraid you'd do that.\r\n\r\nAnyway, I tried taking my turn, but Homeworlds won't let me name my new system, even though it's a legal name. Last time something like this happened, it cleared up on its own...\n\n75) Lexicon: Move R3 Chiyo Mikeyarrum\n\tMikeYarrum: There, it worked.\n\n76) MikeYarrum: Attack R3 Mikeyarrum\n\n77) Lexicon: Move R2 Chiyo Mikeyarrum\nCatastrophe Mikeyarrum Red\n\n78) MikeYarrum: Trade G2 R2 Koneko\n\n79) Lexicon: Move R3 Cell Tomo\n\n80) MikeYarrum: Build R1 Koneko\n\n81) Lexicon: Attack Y2 Tomo\n\n82) MikeYarrum: Trade R2 Y2 Koneko\n\n83) Lexicon: Sacrifice Y3 Lexicon\nMove Y1 Plos Mikeyarrum\nMove Y3 Plos Mikeyarrum\nMove Y2 Tomo Mikeyarrum\nCatastrophe Mikeyarrum Yellow\n\n\tLexicon: Thanks for the game! :)\n\tMikeYarrum: My pleasure.\n\nHomeworlds Online (SDG# 7227)\nStarted: 2007.3.28, Ended: 2007.4.3\nParticipants: mneme (S), MikeYarrum (N)\nWinner: mneme\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) mneme: Homeworld G3 Y2 B3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tmneme: Oh, good -- you took banker. I was going to ask you to do that to help with the experience gap, since it's a slightly easier position. You should seek down and read Andy Looney's strategy guide if you get a chance -- it's short and good.\n\n4) mneme: Build B1 Mneme\n\tMikeYarrum: It's my usual opening move. Now that I've had time to get a handle on the game, that's really not a bad idea. Thank you!\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) mneme: Discover B1 Mneme G1 Emerald\n\n7) MikeYarrum: Discover G1 Mikeyarrum Y3 Saka\n\n8) mneme: Build B1 Mneme\n\n9) MikeYarrum: Build G2 Saka\n\n10) mneme: Trade B3 G3 Mneme\n\n11) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Saka\nBuild G2 Mikeyarrum\nBuild G3 Mikeyarrum\n\tmneme: s b3 g3 mneme\n\tmneme: s b3 g3 mneme\n\n12) mneme: Build B2 Mneme\n\n13) MikeYarrum: Discover G2 Saka B2 Yuka\n\n14) mneme: Build B2 Mneme\n\n15) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n16) mneme: Build B3 Emerald\n\n17) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Yuka\nBuild G3 Mikeyarrum\nBuild R1 Mikeyarrum\n\n18) mneme: Discover B2 Mneme Y1 Jacinth\n\n19) MikeYarrum: Move R2 Mikeyarrum Saka\n\n20) mneme: Build B3 Mneme\n\n21) MikeYarrum: Build R1 Mikeyarrum\n\n22) mneme: Trade B3 R3 Emerald\n\n23) MikeYarrum: Trade G2 Y2 Yuka\n\n24) mneme: Build B3 Emerald\n\n25) MikeYarrum: Build G2 Yuka\n\n26) mneme: Trade B3 Y3 Emerald\n\n27) MikeYarrum: Move G2 Yuka Jacinth\n\n28) mneme: Discover B2 Jacinth Y3 Jasper\n\n29) MikeYarrum: Move G2 Yuka Jacinth\n\n30) mneme: Discover G3 Mneme Y1 Tigereye\n\n31) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n32) mneme: Build B3 Emerald\n\n33) MikeYarrum: Move G2 Jacinth Mneme\n\n34) mneme: Trade B3 R3 Mneme\n\n35) MikeYarrum: Build G1 Mneme\n\n36) mneme: Move R3 Emerald Saka\n\n37) MikeYarrum: Move G2 Jacinth Mneme\nCatastrophe Mneme Green\n\n38) mneme: Attack R2 Saka\n\n39) MikeYarrum: Move G2 Saka Yuka\n\tmneme: It's an interesting matchup -- green factory vs mean blue machine.\n\tMikeYarrum: Definitely. You are an interesting opponent. =D\n\n40) mneme: Sacrifice Y3 Emerald\nMove B3 Emerald Saka\nMove B3 Saka Mikeyarrum\nMove R3 Saka Mikeyarrum\n\n41) MikeYarrum: Build R1 Mikeyarrum\nCatastrophe Mikeyarrum Red\n\tmneme: planning on making a move some time soon?\r\n/me is impatient. :)\r\n\r\nBTW, trying MC as a 4p game is a good idea -- it's very different; lighter, and easier, as a multiplayer game than as a duel.\r\n\n\n42) mneme: Sacrifice R2 Saka\nAttack G3 Mikeyarrum\nAttack Y1 Mikeyarrum\n\tMikeYarrum: Sorry about that. Sometimes I wait a bit before I take my turn, 'cuz I'm "not in the mood".\r\n\r\nAnd I'm easily frustrated sometimes, but I kind of calmed down about MC and I'd heard it's different with 4 players.\n\tmneme: It's ok -- I was just getting impatient because my brain was spinning circles in planning ahead -- witch is kinda stupid, but there it is. \n\tmneme: It's ok -- I was just getting impatient because my brain was spinning circles in planning ahead -- which is kinda stupid, but there it is. \n\n\tMikeYarrum: Doomsday device?\n\tmneme: doomsday device = the setup for blowing up a player's homeworld in two moves. Yours was slower, but the same concept.\r\n\r\nGood game -- again?\n\tMikeYarrum: I'm always up for another game!\n\nHomeworlds Online (SDG# 7220)\nVariants: "Hard time"\nStarted: 2007.3.29, Ended: 2007.5.11\nParticipants: jeep (S), unic (N)\nWinner: jeep\n\n1) unic: Homeworld B3 Y2 G3\n\n2) jeep: Homeworld Y1 B2 G3\n\n3) unic: Build G1 Unic\n\n4) jeep: Build G1 Jeep\n\n5) unic: Discover G1 Unic Y1 Zato\n\n6) jeep: Trade G1 Y1 Jeep\n\n7) unic: Build G1 Unic\n\n8) jeep: Build Y2 Jeep\n\n9) unic: Trade G1 R1 Unic\n\n10) jeep: Discover Y1 Jeep G3 Bob\n\n11) unic: Build G1 Unic\n\n12) jeep: Build G1 Jeep\n\n13) unic: Build G2 Unic\n\n14) jeep: Sacrifice G3 Jeep\nBuild Y2 Bob\nBuild Y3 Bob\nBuild Y3 Jeep\n\n\nHomeworlds Online (SDG# 7159)\nStarted: 2007.3.29, Ended: 2007.4.13\nParticipants: MikeYarrum (S), ts52 (N), morganfitzp (E)\nWinner: morganfitzp\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) morganfitzp: Homeworld R2 B3 G3\n\tts52: Have a great game everyone!\n\tMikeYarrum: I like playing this with three players, so thanks for joining.\n\tmorganfitzp: Aye!\n\n3) MikeYarrum: Homeworld Y1 B3 G3\n\n4) ts52: Build G1 Ts52\n\n5) morganfitzp: Build G1 Morganfitzp\n\n6) MikeYarrum: Build G1 Mikeyarrum\n\n7) ts52: Discover G1 Ts52 B3 Gonzo\n\n8) morganfitzp: Trade G1 Y1 Morganfitzp\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) ts52: Build G1 Gonzo\n\n11) morganfitzp: Build G2 Morganfitzp\n\n12) MikeYarrum: Discover G1 Mikeyarrum Y2 Tomo\n\n13) ts52: Trade G1 Y1 Gonzo\n\n14) morganfitzp: Build Y2 Morganfitzp\n\n15) MikeYarrum: Build G1 Tomo\n\n16) ts52: Build G2 Ts52\n\n17) morganfitzp: Discover Y1 Morganfitzp B1 Prospero\n\n18) MikeYarrum: Build G2 Mikeyarrum\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Ts52\n\n20) morganfitzp: Sacrifice G3 Morganfitzp\nBuild Y2 Morganfitzp\nBuild Y2 Prospero\nBuild G3 Morganfitzp\n\n21) MikeYarrum: Discover G1 Tomo Y3 Kagu\n\n22) ts52: Discover G3 Ts52 Y3 Bigbird\n\n23) morganfitzp: Build Y3 Morganfitzp\n\n24) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\n25) ts52: Discover G2 Ts52 G3 Kermit\n\n26) morganfitzp: Discover Y2 Morganfitzp B1 Miranda\n\n27) MikeYarrum: Discover Y3 Mikeyarrum B2 Kao\n\n28) ts52: Discover G2 Gonzo B2 Grover\n\n29) morganfitzp: Trade Y1 B1 Prospero\n\n30) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n31) ts52: Sacrifice G3 Bigbird\nBuild Y3 Gonzo\nBuild G1 Ts52\nBuild G3 Grover\n\n32) morganfitzp: Sacrifice G2 Morganfitzp\nBuild G2 Morganfitzp\nBuild B1 Prospero\n\n33) MikeYarrum: Sacrifice G1 Kagu\nBuild Y3 Kao\n\n34) ts52: Trade G1 R1 Ts52\n\n35) morganfitzp: Trade B1 R1 Prospero\n\n36) MikeYarrum: Trade Y3 R3 Kao\n\n37) ts52: Move Y1 Gonzo Grover\n\n38) morganfitzp: Sacrifice G2 Morganfitzp\nBuild Y3 Prospero\nBuild G1 Morganfitzp\n\n39) MikeYarrum: Sacrifice G1 Tomo\nBuild Y2 Kao\n\n40) ts52: Build G1 Ts52\n\n41) morganfitzp: Move G1 Morganfitzp Prospero\n\n42) MikeYarrum: Move Y3 Kao Kermit\n\n43) ts52: Trade G3 R3 Grover\n\n44) morganfitzp: Build G1 Morganfitzp\n\n45) MikeYarrum: Build G2 Mikeyarrum\n\n46) ts52: Move R3 Grover Mikeyarrum\n\n47) morganfitzp: Sacrifice Y2 Morganfitzp\nDiscover Y2 Miranda G3 Caliban\nDiscover Y2 Prospero B3 Ariel\n\n48) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n49) ts52: Attack R1S Mikeyarrum\n\n50) morganfitzp: Build Y1 Caliban\n\n51) MikeYarrum: Move R3 Kao Mikeyarrum\n\n52) ts52: Attack R3S Mikeyarrum\n\n53) morganfitzp: Sacrifice G3 Morganfitzp\nBuild R1 Prospero\nBuild Y2 Morganfitzp\nBuild G3 Morganfitzp\n\n54) MikeYarrum: Trade G2 R2 Mikeyarrum\nCatastrophe Mikeyarrum Red\n\n55) ts52: Discover Y3 Gonzo B1 Jax\n\tts52: Sorry about the undo. I confused two games I'm in because my browser went back a page unexpectedly. Re-made the same move.\n\tMikeYarrum: No problem. Well, I have a problem, but it's in-game, not out-of-game. :)\n\n56) morganfitzp: Sacrifice Y3 Morganfitzp\nMove Y2 Ariel Ts52\nMove Y2 Caliban Ts52\nMove Y1 Caliban Ts52\nCatastrophe Ts52 Yellow\n\tmorganfitzp: Your problems are interesting to me, and for every problem there is a solution. Even in Homeworlds two wrongs don't make a right, but three rights do make a left. And four of any one thing makes....\n\tMikeYarrum: Nice point, Morgan. :)\r\n\r\nI feel a little like I'm playing king maker by not just accepting this attack... I'll be pretty weakened after it. On the other hand, if I just gave in, it really WOULD be playing king maker.\n\n57) MikeYarrum: Build G2 Mikeyarrum\n\n58) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild Y1 Jax\n\tmorganfitzp: Well, how about I make it easier for you two to access each other's homeworlds?\n\n59) morganfitzp: Discover B1 Prospero Y3 Boatswain\n\tMikeYarrum: For some reason, I thought we were playing Sinister Homeworlds instead of standard last-man-standing. Kind of explains a few things.\n\n60) MikeYarrum: Build Y1 Kermit\n\n61) ts52: Trade G1 B1 Gonzo\n\n62) morganfitzp: Sacrifice G3 Morganfitzp\nBuild G1 Prospero\nBuild G3 Morganfitzp\nBuild Y2 Prospero\n\n63) MikeYarrum: Trade Y2 R2 Kao\n\tMikeYarrum: As long as we're being chatty, I appreciate your naming system, morgan. ;)\n\n64) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Grover\nBuild R1 Ts52\n\n65) morganfitzp: Sacrifice Y2 Prospero\nMove G1 Prospero Ts52\nMove G1 Prospero Ts52\nCatastrophe Ts52 Green\n\n66) MikeYarrum: Move Y1 Kermit Kao\n\n67) ts52: Sacrifice Y1 Grover\nMove G3 Gonzo Ts52\n\n68) morganfitzp: Trade R1 G1 Prospero\n\n69) MikeYarrum: Trade Y1 R1 Kao\n\n70) ts52: Trade Y1 G1 Jax\n\n71) morganfitzp: Build R2 Prospero\n\n72) MikeYarrum: Sacrifice R1 Kao\nAttack G2N Kermit\n\n73) ts52: Trade R1 Y1 Ts52\n\n74) morganfitzp: Discover R1 Prospero G3 Trinculo\n\tMikeYarrum: The game keeps insisting that there's no system named "kermit". Yes, I'm sure I spelled it right.\n\tMikeYarrum: Should I Call an Admin?\n\tMikeYarrum: Thanks. :)\n\tAaron: Could you please post the orderset? I'll run an offline test and see what happens.\n\n75) MikeYarrum: Build Y1 Kermit\n\tMikeYarrum: I tried to submit the same order to double-check, but for some reason it's working now. Thanks a lot for getting to us so quickly!\n\tMikeYarrum: If you were wondering, it was\r\n\r\nsacrifice r1 kao\r\nattack g2n kermit\r\n\r\nI tried a few other orders regarding the same system and checked the spelling before realizing something was wrong.\n\tAaron: how odd =/ I apologize. If it happens again beep me. Cheers!\n\n76) ts52: Build G1 Grover\n\n77) morganfitzp: Sacrifice G3 Morganfitzp\nBuild Y1 Prospero\nBuild Y2 Morganfitzp\nBuild G3 Morganfitzp\n\n78) MikeYarrum: Move Y3 Kermit Grover\n\n79) ts52: Sacrifice Y2 Grover\nMove G2 Grover Mikeyarrum\nMove G1 Grover Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n80) morganfitzp: Move Y3 Prospero Grover\n\n81) ts52: Build G1 Ts52\n\n82) morganfitzp: Sacrifice R1 Trinculo\nAttack Y3S Grover\n\n83) ts52: Build G2 Jax\n\n84) morganfitzp: Sacrifice G1 Morganfitzp\nBuild B2 Boatswain\n\n85) ts52: Move G1 Jax Gonzo\n\n86) morganfitzp: Trade Y3 B3 Grover\n\n87) ts52: Trade B1 Y1 Gonzo\n\n88) morganfitzp: Sacrifice Y2 Morganfitzp\nMove B1 Boatswain Ts52\nMove B2 Boatswain Ts52\n\n89) ts52: Attack B2E Ts52\n\n90) morganfitzp: Sacrifice G1 Prospero\nBuild B1 Ts52\nCatastrophe Ts52 Blue\n\n\tmorganfitzp: Good game y'all! Thanks for playing!\n\tMikeYarrum: My pleasure!\n\tts52: Thanks again. 3 is much different from 2.\n\nHomeworlds Online (SDG# 7116)\nStarted: 2007.3.29, Ended: 2007.4.13\nParticipants: MikeYarrum (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) MikeYarrum: Homeworld B3 Y2 G3\n\tts52: Have a good game!\n\tMikeYarrum: You too.\n\n3) ts52: Build G1 Ts52\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) ts52: Discover G1 Ts52 G3 Kermit\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) ts52: Build G1 Ts52\n\n8) MikeYarrum: Discover Y1 Mikeyarrum G1 Chi\n\n9) ts52: Build G2 Ts52\n\n10) MikeYarrum: Build G2 Mikeyarrum\n\n11) ts52: Trade G2 Y2 Ts52\n\n12) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n13) ts52: Build G2 Ts52\n\n14) MikeYarrum: Build G2 Mikeyarrum\n\n15) ts52: Discover G1 Ts52 B3 Gonzo\n\n16) MikeYarrum: Build Y1 Mikeyarrum\n\n17) ts52: Move Y2 Ts52 Gonzo\n\n18) MikeYarrum: Build Y3 Chi\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y3 Gonzo\n\n20) MikeYarrum: Discover Y1 Chi Y3 Saka\n\n21) ts52: Discover G2 Gonzo B1 Grover\n\n22) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n23) ts52: Trade G2 R2 Ts52\n\n24) MikeYarrum: Move G2 Mikeyarrum Grover\n\n25) ts52: Build G2 Grover\n\n26) MikeYarrum: Sacrifice G2 Grover\nBuild Y1 Chi\nBuild G2 Mikeyarrum\n\n27) ts52: Move Y2 Gonzo Grover\n\n28) MikeYarrum: Move Y3 Chi Kermit\n\n29) ts52: Build R1 Ts52\n\n30) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack G1 Kermit\n\n31) ts52: Move R1 Ts52 Saka\n\n32) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n33) ts52: Attack Y1S Saka\n\n34) MikeYarrum: Move Y3 Kermit Grover\n\n35) ts52: Sacrifice Y2 Grover\nMove G2 Grover Mikeyarrum\nMove G2 Grover Mikeyarrum\n\n36) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n37) ts52: Sacrifice G2 Mikeyarrum\nBuild Y2 Gonzo\nBuild G2 Gonzo\n\n38) MikeYarrum: Attack G2 Mikeyarrum\n\n39) ts52: Build R1 Ts52\n\n40) MikeYarrum: Build G2 Mikeyarrum\n\n41) ts52: Build G3 Ts52\n\n42) MikeYarrum: Move Y3 Grover Saka\n\n43) ts52: Discover R1 Saka B1 Berry\n\n44) MikeYarrum: Move R2 Mikeyarrum Chi\n\n45) ts52: Move R2 Ts52 Kermit\n\n46) MikeYarrum: Sacrifice G1 Kermit\nBuild R1 Chi\n\n47) ts52: Move Y2 Gonzo Berry\n\n48) MikeYarrum: Discover Y3 Saka G1 Osaka\n\n49) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Kermit\nBuild R3 Berry\n\n50) MikeYarrum: Build R3 Mikeyarrum\n\n51) ts52: Move G3 Ts52 Saka\n\n52) MikeYarrum: Move R3 Mikeyarrum Osaka\n\n53) ts52: Discover Y1 Saka B1 Fozzie\n\n54) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove R2 Chi Kermit\nMove R1 Chi Kermit\nCatastrophe Kermit Red\n\n55) ts52: Build G3 Saka\n\n56) MikeYarrum: Discover R3 Osaka B3 Yukari\n\n57) ts52: Move G3 Saka Fozzie\n\n58) MikeYarrum: Build Y2 Chi\n\n59) ts52: Move G1 Gonzo Berry\n\n60) MikeYarrum: Build R1 Mikeyarrum\n\n61) ts52: Sacrifice G3 Saka\nBuild G3 Gonzo\nBuild Y3 Fozzie\nBuild R2 Ts52\n\n62) MikeYarrum: Move R1 Mikeyarrum Osaka\n\n63) ts52: Sacrifice Y2 Berry\nMove G1 Berry Mikeyarrum\nMove G3 Fozzie Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n64) MikeYarrum: Move Y3 Osaka Mikeyarrum\n\n65) ts52: Move Y3 Fozzie Mikeyarrum\n\n66) MikeYarrum: Trade Y3 G3 Mikeyarrum\n\n67) ts52: Sacrifice R2 Ts52\nAttack R3S Mikeyarrum\nAttack G3S Mikeyarrum\n\n\tts52: Thanks for the game!\n\tMikeYarrum: My pleasure.\n\nHomeworlds Online (SDG# 7246)\nStarted: 2007.3.29, Ended: 2007.5.1\nParticipants: ts52 (S), nycavri (N)\nWinner: ts52\n\n1) nycavri: Homeworld Y1 B2 G3\n\tnycavri: Looking to find another opponent to beat me at Homeworlds..... TaGG.\n\n2) ts52: Homeworld Y1 B3 G3\n\tts52: I'm happy to try...\n\n3) nycavri: Build G1 Nycavri\n\n4) ts52: Build G1 Ts52\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) ts52: Build G1 Ts52\n\n7) nycavri: Build Y2 Nycavri\n\n8) ts52: Discover G1 Ts52 B2 Berry\n\n9) nycavri: Discover Y2 Nycavri B3 Deacon\n\n10) ts52: Build G1 Berry\n\n11) nycavri: Sacrifice G3 Nycavri\nBuild Y2 Deacon\nBuild Y2 Deacon\nBuild Y3 Nycavri\n\n12) ts52: Build G2 Berry\n\n13) nycavri: Trade Y2 G2 Deacon\n\n14) ts52: Trade G2 Y2 Berry\n\n15) nycavri: Sacrifice Y2 Deacon\nMove G2 Deacon Berry\nMove G2 Berry Ts52\n\n16) ts52: Trade G3 R3 Ts52\n\n17) nycavri: Trade Y1 R1 Nycavri\n\n18) ts52: Attack G2N Ts52\n\n19) nycavri: Trade Y2 G2 Deacon\n\n20) ts52: Discover G1 Berry B3 Grover\n\n21) nycavri: Build G2 Deacon\n\n22) ts52: Build G3 Grover\n\n23) nycavri: Trade G2 Y2 Deacon\n\n24) ts52: Trade G1 Y1 Berry\n\n25) nycavri: Build Y2 Deacon\n\n26) ts52: Move Y2 Berry Grover\n\n27) nycavri: Trade Y3 R3 Nycavri\n\n28) ts52: Sacrifice G2 Ts52\nBuild Y3 Berry\nBuild Y3 Grover\n\n29) nycavri: Trade Y2 B2 Deacon\n\n30) ts52: Sacrifice Y2 Grover\nMove G3 Grover Nycavri\nMove Y3 Grover Nycavri\n\n31) nycavri: Attack G3 Nycavri\n\n32) ts52: Sacrifice R3 Ts52\nAttack G3N Nycavri\nAttack R3N Nycavri\nAttack R1N Nycavri\n\tts52: Thanks for the game!\n\tnycavri: Well played.\n\n\nHomeworlds Online (SDG# 7230)\nVariants: "Hard time"\nStarted: 2007.3.30, Ended: 2007.4.6\nParticipants: mneme (S), eugman (N)\nWinner: mneme\n\n1) eugman: Homeworld B3 Y1 G3\n\n2) mneme: Homeworld G3 Y2 B3\n\n\nHomeworlds Online (SDG# 7228)\nVariants: "Hard time"\nStarted: 2007.4.1, Ended: 2007.4.4\nParticipants: TwoShort (S), colodo (N)\nWinner: TwoShort\n\n\nHomeworlds Online (SDG# 7273)\nVariants: "Hard time"\nStarted: 2007.4.1, Ended: 2007.4.21\nParticipants: TwoShort (S), nycavri (N)\nWinner: TwoShort\n\n1) nycavri: Homeworld Y1 B2 G3\n\tnycavri: Hi, there. I'll pass on the ZPIPs challenge in exchange for a "friendly" game. I've had my butt handed to me in 6 straight, although I look to have my first ladder match sewn up and feel comfortable early in my other current game. I would appreciate any words of wisdom as we proceed, thanks. TaGG.\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) nycavri: Build G1 Nycavri\n\n4) TwoShort: Build G1 Twoshort\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\tTwoShort: So I guess I should be coming up with some words of wisdom here... \n\n7) nycavri: Build Y2 Nycavri\n\tTwoShort: Much of the game, particularly the early game, is about jockeying for access to the bigger peices in the stash. But I'm thinking you know that and that you took the y1 despite having access to yellow just to force me to let you have the 2 pointer.\n\n8) TwoShort: Build Y2 Twoshort\n\tnycavri: That, and stalling you from getting the first g2. Now I need to make my Homeworld a little less catastrophe-ready..... \n\n9) nycavri: Trade Y2 R2 Nycavri\n\n10) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n11) nycavri: Discover Y1 Nycavri G3 Deacon\n\n12) TwoShort: Build Y2 Grogar\n\n13) nycavri: Build G1 Nycavri\n\n14) TwoShort: Discover Y2 Grogar B3 Bluonia\n\n15) nycavri: Build Y2 Deacon\n\tTwoShort: So I'm setting a bit of a bad example here; I'd generally recommend obtaining a sacrificeable red ship immediately when your opponent does. But I frequently flaunt that rule when I think I can get away with it, and I think you took red a bit early; it doesn't really help you much until you can threaten to move in with stuff it would be worth sacrificing you r2 for.\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\nBuild Y3 Bluonia\n\tnycavri: I have heard that before, and understand the wisdom, but see why you didn't need to respond yet. How about now?\n\tTwoShort: Well, I was going to mention that the reason I didn't want to respond was to chase the really big prize of the early game (or even in general): 3 pointers, particularly yellow ones. So, sorry, not yet... :)\n\n17) nycavri: Move Y2 Deacon Grogar\n\n18) TwoShort: Trade Y2 R2 Bluonia\n\n19) nycavri: Build Y2 Deacon\n\n20) TwoShort: Trade Y3 G3 Twoshort\n\n21) nycavri: Discover Y2 Deacon B2 May\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild R1 Bluonia\nBuild R1 Bluonia\n\n23) nycavri: Build R2 Nycavri\n\n24) TwoShort: Sacrifice Y3 Grogar\nMove Y3 Bluonia Nycavri\nMove R1 Bluonia Nycavri\nMove R1 Bluonia Nycavri\nCatastrophe Nycavri Red\n\tTwoShort: Very well played game to this point, but that last move was a mistake I'm afraid...\n\n25) nycavri: Build G1 Nycavri\n\n26) TwoShort: Sacrifice R2 Bluonia\nAttack G3N Nycavri\nAttack G1N Nycavri\n\tnycavri: I had to build or lose to an r2 attack, right? Although I guess I could have moved in a Yellow. Either way, this is all but done..... \n\tnycavri: Building the r2 was clearly a game breaker, but if I recall correctly, it was over if I didn't get access to Red at home..... Did I miss something?\n\tTwoShort: Well, you had the first r2 at home, the game breaker was building the second, thus allowing me to blow up your red while keeping one of my own and getting a three into your homeworld. If you hit the "history" link at the top of the page you can step through stuff... I'm not entirely sure what you should have done instead of building the second red, maybe moved the first out to Bluonia to blow up all our red.\n\n27) nycavri: Build Y3 Grogar\n\n28) TwoShort: Build G1 Nycavri\nCatastrophe Nycavri Green\n\tnycavri: Ooops! Well played, and thanks for the tips.\n\n\nHomeworlds Online (SDG# 7286)\nVariants: "Hard time"\nStarted: 2007.4.2, Ended: 2007.5.6\nParticipants: morganfitzp (S), Kermit (N)\nWinner: morganfitzp\n\n1) Kermit: Homeworld Y3 G1 B3\n\n2) morganfitzp: Homeworld G2 Y1 B3\n\n3) Kermit: Build B1 Kermit\n\tmorganfitzp: Hi Kermit\n\tKermit: hello, prepare to win. I like Homeworlds a lot but I suck (generally) at the binary version, doing much better at multiplayer.\n\n4) morganfitzp: Build B1 Morganfitzp\n\n5) Kermit: Discover B1 Kermit G2 Chronos\n\n6) morganfitzp: Discover B1 Morganfitzp G3 Couve\n\n7) Kermit: Build B1 Chronos\n\n8) morganfitzp: Build B2 Couve\n\n9) Kermit: Trade B1 Y1 Chronos\n\n10) morganfitzp: Trade B2 Y2 Couve\n\n11) Kermit: Build B1 Kermit\n\n12) morganfitzp: Build B2 Couve\n\n13) Kermit: Trade B1 G1 Kermit\n\n14) morganfitzp: Discover B2 Couve Y2 Aboborinha\n\n15) Kermit: Trade B1 R1 Chronos\n\n16) morganfitzp: Build B1 Couve\n\n17) Kermit: Discover Y1 Chronos B3 Phobos\n\n18) morganfitzp: Trade B1 R1 Couve\n\n19) Kermit: Build B1 Kermit\n\n20) morganfitzp: Build B1 Couve\n\n\nHomeworlds Online (SDG# 7290)\nStarted: 2007.4.3, Ended: 2007.6.12\nParticipants: jeep (S), jbj77 (N)\nWinner: jeep\n\n1) jbj77: Homeworld B1 Y2 G3\n\n2) jeep: Homeworld B1 G3 B3 *\n\n3) jbj77: Build G1 Jbj77\n\n4) jeep: Build B1 Jeep\n\n5) jbj77: Discover G1 Jbj77 Y3 Alpha\n\n6) jeep: Trade B3 Y3 Jeep\n\n7) jbj77: Build G1 Jbj77\n\n8) jeep: Build B2 Jeep\n\n9) jbj77: Build G1 Jbj77\n\n10) jeep: Trade B2 G2 Jeep\n\n11) jbj77: Trade G1 Y1 Jbj77\n\n12) jeep: Build B2 Jeep\n\n13) jbj77: Build G1 Alpha\n\n14) jeep: Trade B2 R2 Jeep\n\n15) jbj77: Trade G1 R1 Jbj77\n\n16) jeep: Build B2 Jeep\n\n17) jbj77: Build G1 Alpha\n\n18) jeep: Discover B2 Jeep Y2 Wanderer\n\n19) jbj77: Build G2 Jbj77\n\n20) jeep: Build G2 Jeep\n\n21) jbj77: Discover G1 Alpha Y2 Beta\n\n22) jeep: Discover B2 Wanderer G3 Gamma\n\n23) jbj77: Move G1 Beta Jeep\nCatastrophe Jeep Green\n\n24) jeep: Trade B1 G1 Jeep\n\tjeep: I didn't notice they were connected. *sigh*\n\n25) jbj77: Trade G2 B2 Jbj77\n\tjbj77: I thought it was a blunder, or else I was walking into a very well concealed trap.\n\n26) jeep: Build G2 Jeep\n\n27) jbj77: Build G2 Jbj77\n\tjeep: I've looked and looked and I see nothing good coming. :(\n\n28) jeep: Build Y1 Jeep\n\n29) jbj77: Discover G1 Alpha Y2 Delta\n\n30) jeep: Move Y1 Jeep Gamma\n\n31) jbj77: Sacrifice G3 Jbj77\nBuild G2 Alpha\nBuild G3 Delta\nBuild G3 Jbj77\n\n32) jeep: Build Y1 Gamma\n\n33) jbj77: Sacrifice B2 Jbj77\nTrade G2 Y2 Alpha\nTrade G3 Y3 Delta\n\n34) jeep: Discover G1 Jeep B3 Stage\n\n\tjeep: Thanks for the game... did you resign or lose on time?\n\nHomeworlds Online (SDG# 7302)\nVariants: "Hard time"\nStarted: 2007.4.3, Ended: 2007.4.27\nParticipants: jbj77 (S), clockwise (N)\nWinner: clockwise\n\n1) clockwise: Homeworld B2 R1 G3\n\n2) jbj77: Homeworld B1 Y2 G3\n\n3) clockwise: Build G1 Clockwise\n\n4) jbj77: Build G1 Jbj77\n\n5) clockwise: Trade G1 Y1 Clockwise\n\n6) jbj77: Trade G1 Y1 Jbj77\n\tjbj77: Oops, I really meant that to be a y3 instead of a y2, oh well. I never have bought the argument that you should always be distance 3 from your opponent's homeworld. In fact, I think I'm glad that I used a y2 instead of a y3.\n\n7) clockwise: Build G1 Clockwise\n\tclockwise: Ah, I was wondering about that. The last game I played someone did the same thing, though I don't know if it was intentional or not. Hopefully I can show you why it's a bad idea ;)\n\n8) jbj77: Discover Y1 Jbj77 G3 Alpha\n\n9) clockwise: Trade G1 R1 Clockwise\n\tjbj77: In any case I should learn something here.\n\tjbj77: I notice that you are doing quite well with Homeworlds: no losses so far.\n\n10) jbj77: Build G1 Jbj77\n\n11) clockwise: Build R1 Clockwise\n\n12) jbj77: Trade G3 R3 Jbj77\n\tclockwise: I'm going to be out of town for the weekend, so you shouldn't expect any more moves from me before Monday.\n\n13) clockwise: Move R1 Clockwise Alpha\n\n14) jbj77: Discover Y1 Alpha G2 Beta\n\n15) clockwise: Trade R1 B1 Clockwise\n\n16) jbj77: Build Y1 Beta\n\n17) clockwise: Build Y2 Clockwise\n\n18) jbj77: Build Y2 Beta\n\n19) clockwise: Sacrifice Y2 Clockwise\nDiscover Y1 Clockwise Y3 Flux\nMove Y1 Flux Beta\nCatastrophe Beta Yellow\n\n20) jbj77: Build G1 Jbj77\n\n21) clockwise: Build B1 Clockwise\n\n22) jbj77: Build G1 Jbj77\n\n23) clockwise: Build G2 Clockwise\n\n24) jbj77: Discover G1 Jbj77 B3 Gamma\n\n25) clockwise: Trade G2 Y2 Clockwise\n\n26) jbj77: Trade G1 Y1 Jbj77\n\n27) clockwise: Move B1 Clockwise Alpha\n\n28) jbj77: Build R1 Jbj77\n\n29) clockwise: Build B2 Clockwise\n\n30) jbj77: Move R1 Jbj77 Gamma\n\n31) clockwise: Move B2 Clockwise Gamma\n\n32) jbj77: Build R2 Jbj77\n\n33) clockwise: Sacrifice G3 Clockwise\nBuild B2 Alpha\nBuild R2 Alpha\nBuild B3 Clockwise\n\n34) jbj77: Discover R2 Jbj77 B3 Delta\n\n35) clockwise: Sacrifice R2 Alpha\nAttack R1S Gamma\nAttack G1S Gamma\n\n36) jbj77: Build G1 Jbj77\n\n37) clockwise: Trade B3 G3 Clockwise\n\n38) jbj77: Discover G1 Jbj77 B3 Epsilon\n\n39) clockwise: Build Y1 Clockwise\n\tclockwise: Out of curiosity... do you still feel that the proximity of our homeworlds is not to your disadvantage? \r\n\r\nOr do you feel the added pressure that it has enabled me to place you under? If so, do you feel that the advantage it gives in control over the large pieces is adequate compensation?\n\tjbj77: Hmmm...I'll just say that I'm not yet convinced that it is to my disadvantage.\n\n40) jbj77: Move Y1 Jbj77 Delta\n\tjbj77: I do feel that my efforts are rather futile at this point. But, I don't blame it on the proximity of our homeworlds. I think that I would be toast without the ability to keep these large pieces out of your hands.\n\tclockwise: You are definitely suffering more from my blue monopoly, but I feel that the reason that came about was back when I first assaulted the alpha system with my r1 forcing you to lose tempo retreating. With the extra tempo I was able to push both blue and red and you were only able to prevent one of the monopolies.\r\n\r\nSimilarly I was able to use the proximity and tempo advantage in overtaking gamma. Which was mostly an even exchange from my perspective except that it also gave me additional development while taking away what was your only developed system. Plus even exchanges almost always favor the leader.\n\tclockwise: So, yes, at the moment it is helping you a bit, but on the other hand it's also part of how we got to this situation to begin with.\n\n41) clockwise: Move Y1 Clockwise Gamma\n\tjbj77: Well yes, I suppose so. I can see how being closer amplifies the tempo advantage of the first player. So in that case, why doesn't the first player choose her/his homeworld markers to be of the same size? Then the other player can be at most distance 2.\n\n42) jbj77: Build G2 Epsilon\n\n43) clockwise: Sacrifice G3 Clockwise\nBuild Y1 Gamma\nBuild Y2 Gamma\nBuild Y3 Clockwise\n\tclockwise: Good question. It's actually something I've been wondering about testing, but have not yet done so. I'm guessing that it starts out as an advantage, but if the game goes on too long you will start suffering from the fact that your opponent has more choices for staging attacks. So if it gives enough of an early advantage it may be worthwhile, otherwise it is probably a net disadvantage. One of these days I'll give it a try.\n\n44) jbj77: Sacrifice G2 Epsilon\nBuild G2 Epsilon\nBuild Y3 Delta\n\n45) clockwise: Sacrifice Y2 Clockwise\nMove Y1 Gamma Jbj77\nMove Y1 Gamma Jbj77\n\n46) jbj77: Sacrifice Y3 Delta\nMove R2 Delta Jbj77\nMove R3 Jbj77 Gamma\nMove G2 Epsilon Jbj77\n\n47) clockwise: Sacrifice B2 Alpha\nTrade B2 R2 Gamma\nTrade Y2 R2 Gamma\nCatastrophe Gamma Red\n\n48) jbj77: Move R2 Jbj77 Alpha\n\n49) clockwise: Build G2 Gamma\n\tclockwise: Hmm, nice move\n\tjbj77: Very much an act of desperation. I was about to resign when I thought of this.\n\n50) jbj77: Trade G1 R1 Jbj77\n\n51) clockwise: Sacrifice R1 Alpha\nAttack R1S Jbj77\n\tclockwise: The B2 move was more elegant, but sadly flawed. Claiming your yellow star was also tempting, but ultimately I'll just have to accept being a large ship up even though this position is less than ideal.\n\tjbj77: I'm going to have to think about this one for a little bit.\n\n52) jbj77: Attack B1 Alpha\n\n53) clockwise: Sacrifice G2 Gamma\nBuild Y2 Jbj77\nBuild Y2 Clockwise\nCatastrophe Jbj77 Yellow\n\n54) jbj77: Build B2 Alpha\n\n55) clockwise: Move Y3 Clockwise Alpha\n\n56) jbj77: Sacrifice R2 Alpha\nAttack R1 Jbj77\nPass\n\n57) clockwise: Trade Y2 R2 Clockwise\n\n58) jbj77: Build R1 Jbj77\n\n59) clockwise: Sacrifice R2 Clockwise\nAttack B1S Alpha\nAttack B2S Alpha\n\n60) jbj77: Sacrifice Y1 Delta\nMove R1 Jbj77 Gamma\n\n61) clockwise: Build B2 Alpha\n\n62) jbj77: Attack G1 Gamma\n\n63) clockwise: Sacrifice Y3 Alpha\nMove B1 Alpha Jbj77\nMove B2 Alpha Jbj77\nMove B2 Alpha Jbj77\nCatastrophe Jbj77 Blue\n\tclockwise: Isn't blue pretty?\n\tclockwise: The red build is a nice counter, I had been expecting you to move the y1 back. Of course my response would have been the same. I think you loose in 2 turns (3 if you do a failed kamakazi on my homeworld), but you've surprised me once already so perhaps you have another trick to pull out.\n\n\tjbj77: Thanks for allowing me that. And thanks for the game. I guess you did teach me some things! :)\n\tclockwise: Great game, thanks\n\nHomeworlds Online (SDG# 7287)\nStarted: 2007.4.4, Ended: 2007.4.24\nParticipants: jbj77 (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B1 Y2 G3\n\n2) jbj77: Homeworld B1 G3 B3 *\n\tjbj77: I think I'll try this TwoShort response to that opening (it seems to work for him).\n\n3) mneme: Build G1 Mneme\n\n4) jbj77: Build B1 Jbj77\n\tmneme: I'm curious as to how this will work. I've played b3 vs g3 and won, but not starting with Y in your home system is pretty ballsy.\n\tjbj77: Yah, it's a bit scary for me. I hope I'm not messing it up already.\n\n5) mneme: Build G1 Mneme\n\tmneme: messing it up on the second move would be tricky, I'd think.\n\n6) jbj77: Trade B3 Y3 Jbj77\n\n7) mneme: Discover G1 Mneme Y3 Diamant\n\tmneme: hmm. Intrestnng. I see some of the logic here.\n\n8) jbj77: Build B2 Jbj77\n\tjbj77: Yup, look at those blues, ripe for the picking.\n\n9) mneme: Build G1 Diamant\n\n10) jbj77: Discover B2 Jbj77 B2 Alpha\n\n11) mneme: Build G2 Mneme\n\tjbj77: Of course I have this sinking feeling that I'm going to be hard pressed to get any greens...\n\n12) jbj77: Build B2 Jbj77\n\tmneme: I'm going to have problems backing my way into blues, though.\n\tmneme: eh. should have scooped 2. or maybe not\n\n13) mneme: Discover G2 Mneme B3 Bazaar\n\n14) jbj77: Discover B1 Jbj77 G2 Beta\n\n15) mneme: Sacrifice G3 Mneme\nBuild G2 Mneme\nBuild G3 Mneme\nBuild G3 Bazaar\n\n16) jbj77: Build B3 Jbj77\n\n17) mneme: Discover G2 Mneme B3 Alhambra\n\n18) jbj77: Trade B3 R3 Jbj77\n\n19) mneme: Trade G3 R3 Bazaar\n\n20) jbj77: Build B3 Beta\n\n21) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild G3 Bazaar\nBuild R1 Bazaar\n\n22) jbj77: Trade B3 Y3 Beta\n\n23) mneme: Discover G1 Mneme B3 Hacienda\n\n24) jbj77: Move R3 Jbj77 Beta\n\n25) mneme: Trade G2 Y2 Bazaar\n\n26) jbj77: Move R3 Beta Alhambra\n\n27) mneme: Sacrifice G2 Alhambra\nBuild G2 Bazaar\nBuild Y1 Bazaar\n\n28) jbj77: Trade B2 G2 Alpha\n\n29) mneme: Discover Y1 Bazaar B2 Ingenious\n\n30) jbj77: Build Y1 Beta\n\n31) mneme: Sacrifice G3 Bazaar\nBuild Y1 Ingenious\nBuild Y2 Ingenious\nBuild G3 Bazaar\n\n32) jbj77: Move Y1 Beta Alhambra\n\n33) mneme: Move Y1 Ingenious Jbj77\n\n34) jbj77: Trade B2 R2 Jbj77\n\n35) mneme: Sacrifice Y2 Bazaar\nMove Y1 Ingenious Jbj77\nMove Y2 Ingenious Jbj77\nCatastrophe Jbj77 Y\n\n36) jbj77: Build B2 Beta\n\n37) mneme: Trade G2 Y2 Bazaar\n\n38) jbj77: Move Y3 Beta Jbj77\n\n39) mneme: Sacrifice G3 Bazaar\nBuild G2 Mneme\nBuild G3 Hacienda\nBuild Y1 Bazaar\n\n40) jbj77: Sacrifice G2 Alpha\nBuild Y1 Alhambra\nBuild Y2 Alhambra\n\n41) mneme: Trade G3 Y3 Hacienda\n\n42) jbj77: Trade Y2 G2 Alhambra\n\n43) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild G3 Hacienda\nBuild Y2 Hacienda\n\n44) jbj77: Build B2 Beta\n\tjbj77: Darn, I didn't think of that.\n\n45) mneme: Move Y3 Hacienda Beta\n\n46) jbj77: Build B2 Beta\n\tmneme: I've got a pretty good position now. the question is whether I can keep it, given my lack of 1337 endgame skills.\n\n47) mneme: Move G1 Diamant Beta\nCatastrophe Beta B\n\tjbj77: I agree that you do have a very good position.\n\n48) jbj77: Build R1 Jbj77\n\n49) mneme: Sacrifice G1 Diamant\nBuild Y3 Hacienda\n\tjbj77: Half a league, half a league,\r\n Half a league onward,\n\n50) jbj77: Build G1 Alhambra\n\n51) mneme: Sacrifice Y2 Hacienda\nMove G2 Mneme Alhambra\nMove G1 Beta Alhambra\nCatastrophe Alhambra G\n\n52) jbj77: Build R1 Jbj77\n\n53) mneme: Sacrifice Y2 Bazaar\nMove R1 Bazaar Beta\nMove R1 Beta Jbj77\nCatastrophe Jbj77 R\n\n54) jbj77: Trade Y1 G1 Alhambra\n\n55) mneme: Build Y1 Beta\n\n56) jbj77: Build Y2 Alhambra\n\n57) mneme: Discover G3 Hacienda B2 Niagra\n\n58) jbj77: Discover Y1 Alhambra G2 Gamma\n\n59) mneme: Trade G3 R3 Mneme\n\n60) jbj77: Build Y2 Gamma\n\n61) mneme: Move Y1 Bazaar Niagra\n\n62) jbj77: Sacrifice Y2 Gamma\nMove R3 Alhambra Gamma\nMove R3 Gamma Jbj77\n\n63) mneme: Build Y2 Niagra\n\n\tjbj77: I might as well give it up. I have no chance. Good game though. I'm going to have to study this B1 G3 B3 opening some more. I'm not sure if I just messed it up or what. In any case you played very well, and deserve the victory.\n\tmneme: thanks -- good game! You mean b1 g3 Y3?\r\n\n\tjbj77: No I mean Homeworldd (B1 G3 B3) which was my opening move. Trying to get a blue monopoly quickly. It seems difficult to get it to work.\n\tmneme: Not sure. Looking at the full log, it did let you get three large ships early, but you weren't able to capitalize on the advantage (and then I started causing catastrophes)\n\nHomeworlds Online (SDG# 7311)\nVariants: "Hard time"\nStarted: 2007.4.4, Ended: 2007.4.13\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) mneme: Homeworld G3 B1 Y3\n\tTwoShort: Howdy.\n\tmneme: Hey! I figure my butt needs some more kicking, after a several-seson gap. Has anyone won that ultra-small challenge?\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Not so far...\n\n4) mneme: Build Y1 Mneme\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) mneme: Trade Y1 B1 Mneme\n\n7) TwoShort: Build G1 Twoshort\n\n8) mneme: Build B1 Mneme\n\n9) TwoShort: Build G1 Twoshort\n\n10) mneme: Discover B1 Mneme B2 Azure\n\tTwoShort: Trying to turn my favorite blue freeze-out tactic against me eh?\n\tmneme: Might as well. (actially, I used it before it was used against me, so...)\n\n11) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n12) mneme: Build B2 Mneme\n\tTwoShort: I just mean I've been playing it a lot lately; It's a great tactic, and I'm annoyed I let you get it started. I guess I get to test my latest theory on how to respond...\n\tmneme: we'll see how it works -- I'm playing against it in another game, so I'm curious as to how your response will work.\n\n13) TwoShort: Discover G1 Twoshort B3 Bluotron\n\n14) mneme: Discover B2 Mneme G2 John\n\tmneme: I was wondering if you'd do that.\n\n15) TwoShort: Discover Y1 Twoshort B3 Bluzilla\n\tTwoShort: Well, this wasn't actually my plan, but it looks too fun to resist :)\n\n16) mneme: Trade B2 R2 John\n\tmneme: Heh. No way I could have predicted that. :)\r\n\r\nI should have moved to green before building -- that would have been, well, smarter. :)\n\n17) TwoShort: Build G1 Twoshort\n\n18) mneme: Build Y1 Mneme\n\tmneme: and this...is where it gets ugly. Ah well\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Bluotron\nBuild G3 Twoshort\n\n20) mneme: Sacrifice Y1 Mneme\nMove R2 John Bluotron\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluotron\nBuild G3 Bluonia\nBuild G3 Twoshort\n\n22) mneme: Attack G2 Bluotron\n\n23) TwoShort: Trade G2 R2 Bluonia\n\n24) mneme: Sacrifice R2 Bluotron\nAttack G1 Bluotron\nAttack G2 Bluotron\n\n25) TwoShort: Sacrifice Y1 Bluzilla\nMove G1 Twoshort Bluotron\nCatastrophe Bluotron Green\n\n26) mneme: Build B2 Mneme\n\tTwoShort: Dangit; I was hoping you'd do what you did first :)\n\n27) TwoShort: Trade G1 Y1 Bluonia\n\tmneme: heh. Yeah. That one lets you get away with a cheap solution, if one that doesn't cost me as much either. Despite the insane amount by which I'm losing...one of my choices lets me get into blue freeze mode again, and is therefore clearly superior.\n\n28) mneme: Discover B2 Mneme G2 Emerald\n\n29) TwoShort: Move G3 Bluonia Emerald\n\n30) mneme: Build B3 Mneme\n\n31) TwoShort: Sacrifice R2 Bluonia\nAttack B2 Emerald\nPass\n\tmneme: yeah, I was afraid of that. This game is over -- but it's interesting, at least.\n\n32) mneme: Trade B3 R3 Mneme\n\n33) TwoShort: Trade G3 R3 Emerald\n\n34) mneme: Trade B1 G1 Azure\n\n35) TwoShort: Build B1 Emerald\n\n36) mneme: Discover B1 Mneme G2 Forest\n\n37) TwoShort: Trade B2 Y2 Emerald\n\n38) mneme: Build Y1 Mneme\n\n39) TwoShort: Build G1 Twoshort\n\n40) mneme: Trade Y3 G3 Mneme\n\n41) TwoShort: Trade G1 Y1 Twoshort\n\n42) mneme: Build Y2 Mneme\n\n43) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Emerald\nBuild Y3 Twoshort\nBuild Y3 Bluonia\n\n44) mneme: Move Y2 Mneme Forest\n\n45) TwoShort: Discover R3 Emerald Y3 Yonderboy\n\n46) mneme: Build G1 Mneme\n\n47) TwoShort: Sacrifice Y2 Emerald\nMove Y2 Emerald Mneme\nMove B1 Emerald Mneme\n\tmneme: yeah -- knew that was a mistake at the time -- but too late now.\n\n48) mneme: Sacrifice G3 Mneme\nBuild B2 Forest\nBuild Y2 Forest\nBuild G1 Azure\n\n49) TwoShort: Build B3 Mneme\n\tTwoShort: Hmmm... I'm always suspicious of the plan that jumps into my head before coffee in the morning :) but I don't see why it won't work...\n\n50) mneme: Attack B3 Mneme\n\n51) TwoShort: Build B3 Mneme\n\tmneme: we'll see. it certainly forces the green sac (or I lose green in my home system, which is...ungood). I don't see a checkmate here, but I may be missing something.\n\tTwoShort: I didn't see a checkmate either; I just thought I was forcing you to lose green :) I hadn't really considered the green sac... so we'll see...\n\n52) mneme: Attack Y2 Mneme\nCatastrophe Mneme B\n\tTwoShort: DO NOT BLUEBIRD!\n\tTwoShort: Oops, that was supposed to go in the notebook. :) I guess I've given away my cunning plan to avoid screwing up.\n\tmneme: hmm. Now I need to figure out wtf that means...\n\n53) TwoShort: Trade Y3 G3 Twoshort\n\tTwoShort: It means I need to be sure I don't let you get to where you can throw two yellows into my homeworld and win. I picked up this name for such a blunder from Andy Looney, who named it after an Amsterdam cofeehouse he once made it in, as detailed in his YouTube video "The Bluebird Mistake".\n\n54) mneme: Sacrifice Y2 Mneme\nMove Y2 Forest Bluonia\nMove Y2 Forest Bluonia\nCatastrophe Bluonia Y\n\tmneme: Ah. I was kinda hoping you'd let me get two yellows into your homeworld and win. :)\n\n55) TwoShort: Build G2 Twoshort\n\tTwoShort: Between the blue catastrophe suddenly putting your homeworld next to mine, and me getting all over-eager to finish you off, it's exactly where I might have screwed that up...\n\n56) mneme: Sacrifice B1 Forest\nTrade G1 B1 Mneme\n\tmneme: *nod*. I was keeping it (and the threat forcing you to take non-growing action) in mind. I didn't expect you to fall for it, but it was worth a try. :)\n\n57) TwoShort: Build G1 Twoshort\n\n58) mneme: Build B1 Mneme\n\tmneme: *@*#@. The system should force you to pass if you don't cause a catastrophe and one is available, just like it forces you to pass to avoid other optional moves. Is that why you didn't catastrophe my home system, or did you decide that if I didn't, it was a win for you anyway?\n\tTwoShort: I agree it should force you to explicitly pass. In my case, I intentionally skipped it because I figured you had to trigger it or waste a move capturing my B3 if you really wanted to force me to trigger it. By making you do it, the pieces aren't in the stash and your homeworlds adjacency doesn't change until the end of your turn. I don't know that it made any difference in this case, but I just habitually try to inflict whatever inconveniences I can :)\n\n59) TwoShort: Move G1 Twoshort Mneme\n\n60) mneme: Attack G1 Mneme\n\n61) TwoShort: Move G2 Twoshort Mneme\n\n62) mneme: Discover G1 Mneme G2 Emerald\n\n63) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Mneme\nBuild G3 Mneme\nPass\nCatastrophe Mneme Green\n\n\tTwoShort: Yeah, I'm afraid so. Excellent game though, thanks!\n\nHomeworlds Online (SDG# 7322)\nVariants: "Unrated, Sinister"\nStarted: 2007.4.5, Ended: 2007.4.5\nParticipants: Cinnibar (S), Magni (N)\nWinner: Cinnibar\n\n1) Magni: Homeworld B3 Y2 G3\n\n2) Cinnibar: Homeworld Y1 B2 G3\n\n3) Magni: Discover G3 Magni Y1 Void\n\n\nHomeworlds Online (SDG# 7323)\nVariants: "Unrated, Sinister"\nStarted: 2007.4.5, Ended: 2007.4.29\nParticipants: Magni (S), Cinnibar (N)\nWinner: Cinnibar\n\n1) Cinnibar: Homeworld B3 G1 Y3\n\n2) Magni: Homeworld Y2 B1 G3\n\n3) Cinnibar: Build Y1 Cinnibar\n\n4) Magni: Build G1 Magni\n\n5) Cinnibar: Build Y1 Cinnibar\n\n6) Magni: Trade G1 Y1 Magni\n\n7) Cinnibar: Discover Y1 Cinnibar G2 Vivat\n\n8) Magni: Build G1 Magni\n\n9) Cinnibar: Build Y2 Vivat\n\n10) Magni: Build G1 Magni\n\n11) Cinnibar: Build Y2 Cinnibar\n\n12) Magni: Discover G1 Magni Y3 Void\n\n13) Cinnibar: Build Y3 Vivat\n\n14) Magni: Discover Y1 Magni R3 Fire\n\n15) Cinnibar: Move Y2 Vivat Fire\n\n16) Magni: Discover G1 Magni B3 Water\n\n17) Cinnibar: Attack Y1 Fire\n\n\nHomeworlds Online (SDG# 7329)\nStarted: 2007.4.5, Ended: 2007.4.10\nParticipants: MikeYarrum (S), Magni (N)\nWinner: MikeYarrum\n\n1) Magni: Homeworld B2 Y3 G3\n\n2) MikeYarrum: Homeworld Y1 B2 G3\n\n3) Magni: Build G1 Magni\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Magni: Build G1 Magni\n\n6) MikeYarrum: Build G2 Mikeyarrum\n\n7) Magni: Trade G1 R1 Magni\n\n8) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n9) Magni: Discover G1 Magni Y1 Shangrala\n\n10) MikeYarrum: Build G1 Mikeyarrum\n\n11) Magni: Build G1 Shangrala\n\tMikeYarrum: You play aggressively, I notice.\n\n12) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n\nHomeworlds Online (SDG# 7341)\nVariants: "Hard time"\nStarted: 2007.4.9, Ended: 2007.4.13\nParticipants: Personman (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld G3 Y1 B3\n\n\nHomeworlds Online (SDG# 7425)\nVariants: "Unrated"\nStarted: 2007.4.12, Ended: 2007.4.17\nParticipants: dsheldon (S), gypsydog (N)\nWinner: dsheldon\n\n1) gypsydog: Homeworld G3 B2 Y3\n\n2) dsheldon: Homeworld Y1 B2 G3\n\n3) gypsydog: Build Y1 Gypsydog\n\n4) dsheldon: Build G1 Dsheldon\n\tdsheldon: Good so far. I'm holding back from spewing forth the various theories on how to play the midgame until we get there.\r\n\r\nIn the beginning you want to get a good spread of ships, both colorwise and locationwise.\r\n\r\nYou also want to try and finagle things such that you get more large ships than I do.\r\n\r\nMake sure you understand Sacrifice actions and Catastrophies (these mostly come up later, I'll point them out when we get closer), re-read those parts of the rules since they're pretty much how the game is won and lost.\n\n5) gypsydog: Build Y1 Gypsydog\n\n6) dsheldon: Discover G1 Dsheldon Y3 Jerome\n\tdsheldon: See, right now you've got what is normally considered a dangerous situation: having three pieces of the same color in a system.\r\n\r\nRight now it's OK because there is no way I could get a fourth there (and destroy them all), but after the opening rush of the game it would be a Bad Idea (tm) to repeat that.\n\n7) gypsydog: Trade Y1 G1 Gypsydog\n\n8) dsheldon: Build G1 Dsheldon\n\n9) gypsydog: Discover G1 Gypsydog Y1 Yzerman\n\tgypsydog: so how exactly do I get larger ships?\n\n10) dsheldon: Trade G1 B1 Dsheldon\n\tdsheldon: When you build ships you get the smallest one available in the color you are making. The way to get large ships is run out of smaller pieces.\r\n\r\nThe game, in the end, is about manipulating the global stash. Board position is a close second, but it's all about the stash.\n\n11) gypsydog: Build Y2 Gypsydog\n\n12) dsheldon: Build G1 Dsheldon\n\n13) gypsydog: Build G2 Yzerman\n\n14) dsheldon: Discover G1 Dsheldon G3 Bank\n\n15) gypsydog: Discover G2 Yzerman R2 Datsyuk\n\n16) dsheldon: Build G2 Dsheldon\n\n17) gypsydog: Trade Y1 B1 Gypsydog\n\n18) dsheldon: Trade B1 Y1 Dsheldon\n\n19) gypsydog: Build G2 Datsyuk\n\n20) dsheldon: Sacrifice G2 Dsheldon\nBuild G2 Bank\nBuild Y2 Dsheldon\n\n21) gypsydog: Move B1 Gypsydog Yzerman\n\tdsheldon: now, I've set up two dangerous situations for myself. see if you can do some damage (if you want to).\n\n22) dsheldon: Sacrifice Y1 Dsheldon\nDiscover G1 Bank B1 Colony\n\n23) gypsydog: Move B1 Yzerman Datsyuk\n\n24) dsheldon: Sacrifice G2 Bank\nBuild G2 Dsheldon\nBuild G3 Colony\n\tdsheldon: A note on topography: Because of the nature of the rules, the galaxy ends up being kind of triangular. All the ones can get to all the twos and threes, all the twos to the ones and threes, and so on - but a two can't get to a two. Homeworlds are a special case because they have two stars. Usually (and this is true for this game as well) each of our Homeworlds only connects to one size of star. Yours goes to ones, mine goes to threes. Twos then, are kinda out in no-man's land. Now, this can change if one of our home stars is lost to a catastrophe, but that looks to be a ways off.\r\n\r\nYou're building up all these guys at Datsyuk and they can't get anywhere. Now, it can be good to have them out there for sacrifice actions, but that's pretty much it. Comprende?\n\n25) gypsydog: Trade G2 R2 Datsyuk\n\tgypsydog: I was actually kinda counting on that. I don't know if this strategy will work or not, but we're about to find out.\n\n26) dsheldon: Trade G2 R2 Dsheldon\n\n27) gypsydog: Build R1 Datsyuk\n\tgypsydog: Wait a sec! I thought you needed one of a color to build that color in a system! How'd you do that?\n\n28) dsheldon: Sacrifice G3 Colony\nBuild G2 Dsheldon\nBuild G2 Jerome\nBuild G3 Colony\n\tdsheldon: Where, in dsheldon? I built a g2 there last turn (which I could do because I had a g3 even though the actual action came from the sacrifice of that same g2 in a system which no longer exists) and then this turn traded it for an r2 (which I can do because there is a blue star).\r\n\r\nTrading (with the blue action) lets you go to any color, even ones you don't have access to yet. Was that your point of confusion?\n\tdsheldon: And now, a lesson in denying your enemy pieces:\n\n29) gypsydog: Trade R1 Y1 Datsyuk\n\n30) dsheldon: Discover G2 Jerome R1 Striker\n\tgypsydog: Yeah, I thought you could only trade for colors of ships you had colors in a system. Ugh. That would have made planning much easier. Ah well.\n\n31) gypsydog: Build R1 Datsyuk\n\tdsheldon: Now, what I've done here is position myself with three Green ships all one hop away from your homeworld (2 at Colony and 1 at Striker). The plan is, once I have a large Yellow ship, to sacrifice it and move all three green ships to gypsydog and triggering a Green catastrophe (because 3 ships + 1 star = 4 = BOOM!). This will obliterate half of your stars and make your homeworld (theoretically) much more vulnerable. It will also change the shape of the board because gypsydog will now be adjacent to 1s AND 3s because there will only be a size 2 star left in it.\r\n\r\nAlso, you really should diversify your homeworld fleet (yeah, I know, you thought you couldn't) because one catastrophe of the right color can knock you out completely.\n\n32) dsheldon: Sacrifice Y2 Dsheldon\nMove R2 Dsheldon Jerome\nMove R2 Jerome Datsyuk\nCatastrophe Datsyuk R\n\tdsheldon: Now it's time to learn about sacrifice and catastrophe first hand:\n\n33) gypsydog: Trade Y2 R2 Gypsydog\n\n34) dsheldon: Trade G2 R2 Dsheldon\n\n35) gypsydog: Move R2 Gypsydog Striker\n\n36) dsheldon: Attack R2N Striker\n\tdsheldon: Do you realize that this was a poor decision?\n\n37) gypsydog: Build G2 Yzerman\n\tdsheldon: Because Striker is a red star, any ships there can make attacks.\n\tgypsydog: ah crap. yeah, i lost this one. this can only end badly now.\n\n38) dsheldon: Sacrifice G3 Colony\nBuild G2 Striker\nBuild G3 Colony\nBuild R1 Dsheldon\n\tdsheldon: Yeah, well, that was true a while ago. But do you understand enough to play a /real/ game yet? We haven't even begun the really deep stash manipulation stuff yet.\r\n\r\nI lied, there isn't really anything that deep about, but it's a ton of fun to say stuff like that.\n\n\tgypsydog: yeah, i think i could.\n\nHomeworlds Online (SDG# 7317)\nVariants: "Hard time"\nStarted: 2007.4.12, Ended: 2007.5.11\nParticipants: lambda (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tlambda: Hello! I look forward to playing you again, and hope that I can keep up with SDG this time around. Have a great game!\n\n2) lambda: Homeworld G3 B2 Y3\n\tTwoShort: Howdy... A great game to you too.\n\n3) TwoShort: Build G1 Twoshort\n\n4) lambda: Build Y1 Lambda\n\n5) TwoShort: Build G1 Twoshort\n\n6) lambda: Build Y1 Lambda\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) lambda: Trade Y1 G1 Lambda\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) lambda: Discover G1 Lambda B1 Rigel\n\n11) TwoShort: Build Y1 Twoshort\n\n12) lambda: Build Y2 Lambda\n\n13) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n14) lambda: Discover Y1 Lambda G1 Deneb\n\n15) TwoShort: Build Y2 Grogar\n\n16) lambda: Build G2 Rigel\n\n17) TwoShort: Move Y1 Grogar Deneb\n\n18) lambda: Trade Y2 R2 Lambda\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Deneb\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n20) lambda: Build R1 Lambda\n\n21) TwoShort: Discover Y2 Grogar B1 Jeans\n\n22) lambda: Sacrifice R1 Lambda\nAttack Y1 Deneb\n\n23) TwoShort: Trade Y2 R2 Jeans\n\n24) lambda: Discover Y1 Deneb G3 Antares\n\n25) TwoShort: Sacrifice R2 Jeans\nAttack Y1S Deneb\nPass\n\n26) lambda: Build Y2 Antares\n\n27) TwoShort: Trade Y1 R1 Twoshort\n\n28) lambda: Move Y1 Antares Rigel\n\n29) TwoShort: Build G2 Yolonda\n\n30) lambda: Discover G1 Rigel B3 Arcturus\n\n31) TwoShort: Discover G1 Yolonda B1 Blewstar\n\n32) lambda: Trade Y1 B1 Rigel\n\n33) TwoShort: Build G2 Blewstar\n\n34) lambda: Build Y1 Antares\n\n35) TwoShort: Sacrifice G2 Yolonda\nBuild Y1 Twoshort\nBuild Y3 Grogar\n\n36) lambda: Build B2 Rigel\n\n37) TwoShort: Sacrifice Y2 Grogar\nMove G2 Blewstar Lambda\nMove G1 Blewstar Lambda\n\n\tlambda: Sorry, I don't think I have the time for this game any more.\n\nHomeworlds Online (SDG# 7426)\nVariants: "Hard time"\nStarted: 2007.4.13, Ended: 2007.5.1\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tmneme: *g* I'm nothing if not persistent. :) Will you be at Origins?\n\n2) mneme: Homeworld Y1 B3 G3\n\tTwoShort: I'm afraid not; I live in Colorado and have 2 small children...\n\n3) TwoShort: Build G1 Twoshort\n\n4) mneme: Build G1 Mneme\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) mneme: Build G1 Mneme\n\n7) TwoShort: Build Y1 Twoshort\n\n8) mneme: Discover G1 Mneme B2 Aramis\n\n9) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n10) mneme: Build G1 Mneme\n\n11) TwoShort: Build Y2 Twoshort\n\n12) mneme: Build G2 Aramis\n\tmneme: distance isn't always a showstopper -- it's not like transportation is the largest expense. Children can be, of course.\n\n13) TwoShort: Discover Y2 Twoshort B3 Bluonia\n\tTwoShort: I went to various cons "back in the day", but now I occasionally go to cons I can drive to for the day, (which these days means "in Denver"); but anything far enough away that you have to stay overnight is a radically different proposition in terms of budget and time away from family. It's just not that kind of priority for me at this point in my life. Come to think of it, even when I've driven to Denver recently, one or more old friends was a guest of honor...\n\n14) mneme: Trade G2 Y2 Aramis\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n16) mneme: Build Y3 Aramis\n\tmneme: *nod* If you haven't done Origins, it's worth doing when/if life intervenes less, as the big LL con. And, of course, organized sf, gaming, and other styles have very different whys and wherefores. (which isn't to say that I, as a fairly heavily con-going 30-something, don't have a bit much con on the brain, but then, I'm not planning on kids).\n\tTwoShort: Yeah, Origins is the one I would do if I did... I went once long ago when it was in Philadelphia, and before that I used to go to Disclave because that was the big Icehouse Games con... When it was Icehouse Games and Disclave existed :) \n\n17) TwoShort: Trade Y3 G3 Twoshort\n\n18) mneme: Discover G1 Mneme B2 Portho\n\n19) TwoShort: Build Y3 Twoshort\n\tmneme: Yup! I played Icehouse then (and east coast cons) but never did Disclave before it, er, washed out.\n\n20) mneme: Discover Y2 Aramis B3 D'artanian\n\n21) TwoShort: Build G2 Twoshort\n\n22) mneme: Sacrifice G3 Mneme\nBuild G2 Aramis\nBuild G2 Portho\nBuild G3 Mneme\n\n23) TwoShort: Trade Y3 R3 Bluonia\n\n24) mneme: Trade G3 R3 Mneme\n\n25) TwoShort: Move R3 Bluonia Portho\n\n26) mneme: Build Y3 Aramis\n\n27) TwoShort: Sacrifice Y2 Bluonia\nMove Y2 Grogar Aramis\nMove Y1 Grogar Aramis\nCatastrophe Aramis Yellow\n\n28) mneme: Build G3 Mneme\n\n29) TwoShort: Attack G2S Portho\n\n30) mneme: Sacrifice G2 Aramis\nBuild G2 Portho\nBuild G3 Portho\nCatastrophe Portho G\n\n31) TwoShort: Discover Y1 Twoshort G3 Planchet\n\n32) mneme: Build R1 Mneme\n\n33) TwoShort: Build Y1 Planchet\n\n34) mneme: Move R3 Mneme Aramis\n\n35) TwoShort: Discover Y1 Planchet Y2 Cyrano\n\n36) mneme: Trade R3 Y3 Aramis\n\n37) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Planchet\n\n38) mneme: Build R1 Mneme\n\n39) TwoShort: Build G1 Twoshort\n\n40) mneme: Build G2 Aramis\n\n41) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Twoshort D'artanian\nMove R3 Portho D'artanian\n\n42) mneme: Discover Y2 D'artanian G2 Portho\n\n43) TwoShort: Build R2 D'artanian\n\n44) mneme: Move R1 Mneme Aramis\n\n45) TwoShort: Sacrifice Y3 Planchet\nMove G3 D'artanian Aramis\nMove R3 D'artanian Aramis\nMove G3 Aramis Mneme\n\n46) mneme: Attack G3 Mneme\n\n47) TwoShort: Sacrifice R2 D'artanian\nAttack Y3S Aramis\nAttack G2S Aramis\n\tmneme: clever\n\n48) mneme: Sacrifice G3 Mneme\nBuild R2 Aramis\nBuild R2 Aramis\nBuild R2 Mneme\nCatastrophe Aramis R\n\n49) TwoShort: Trade G2 R2 Aramis\n\tTwoShort: With so many pieces in play, I was sure there was something good there. I was pretty pleased when I finally saw it :) \n\n50) mneme: Discover G1 Mneme B2 Athos\n\n51) TwoShort: Build G2 Twoshort\n\n52) mneme: Trade G1 B1 Aramis\n\n53) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Planchet\n\n54) mneme: Build G1 Mneme\n\n55) TwoShort: Attack B1S Aramis\n\n56) mneme: Discover R1 Mneme G2 Dewinter\n\n57) TwoShort: Trade Y3 G3 Aramis\n\n58) mneme: Sacrifice G3 Mneme\nBuild G2 Athos\nBuild G3 Mneme\nBuild Y3 Portho\n\n59) TwoShort: Sacrifice Y3 Planchet\nMove Y1 Cyrano Planchet\nMove Y1 Planchet Portho\nMove Y1 Planchet Portho\nCatastrophe Portho Yellow\n\n60) mneme: Trade G2 Y2 Athos\n\tTwoShort: My favorite Homeworlds strategy maxim: It's better to be slightly ahead in a simpler game than slightly ahead in a more complex one. Also, it's fun to blow stuff up :)\n\n61) TwoShort: Build G2 Aramis\n\tmneme: It's very true.\r\n\n\n62) mneme: Sacrifice G3 Mneme\nBuild G2 Athos\nBuild G3 Athos\nBuild G3 Mneme\n\n63) TwoShort: Sacrifice Y2 Twoshort\nMove G2 Aramis Mneme\nMove G2 Mneme Athos\nCatastrophe Athos Green\n\n64) mneme: Build R1 Dewinter\n\n65) TwoShort: Build G1 Aramis\n\n66) mneme: Sacrifice G3 Mneme\nBuild R2 Dewinter\nBuild R3 Mneme\nBuild Y1 Athos\n\n67) TwoShort: Build R3 Aramis\n\n68) mneme: Trade R3 G3 Mneme\n\n69) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Aramis Mneme\nMove G1 Aramis Mneme\nMove R3 Aramis Mneme\nCatastrophe Mneme Green\n\n\tmneme: see: blunder. A really nice one, too.\n\nHomeworlds Online (SDG# 7439)\nVariants: "Hard time"\nStarted: 2007.4.14, Ended: 2007.4.19\nParticipants: zoltar (S), mneme (N)\nWinner: zoltar\n\n1) mneme: Homeworld Y1 G2 B3\n\n2) zoltar: Homeworld B3 G1 Y3\n\n3) mneme: Build B1 Mneme\n\n4) zoltar: Build Y1 Zoltar\n\n5) mneme: Build B1 Mneme\n\n6) zoltar: Build Y1 Zoltar\n\n7) mneme: Discover B1 Mneme Y3 Canary\n\n8) zoltar: Trade Y1 B1 Zoltar\n\n9) mneme: Trade B1 Y1 Mneme\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) mneme: Build B1 Mneme\n\n12) zoltar: Build B2 Zoltar\n\n13) mneme: Trade B1 R1 Mneme\n\n14) zoltar: Discover B2 Zoltar G2 Greenbelt\n\n15) mneme: Discover Y1 Mneme G3 Parrot\n\n16) zoltar: Discover B1 Zoltar G2 Greenhills\n\n17) mneme: Trade B1 G1 Canary\n\n18) zoltar: Trade B2 Y2 Greenbelt\n\n19) mneme: Build G1 Canary\n\n20) zoltar: Move Y2 Greenbelt Canary\n\n21) mneme: Build G2 Canary\n\n22) zoltar: Sacrifice R1 Zoltar\nAttack G2 Canary\n\n23) mneme: Build G3 Canary\nCatastrophe Canary G\n\n24) zoltar: Build B1 Greenhills\n\n25) mneme: Build R1 Mneme\n\n26) zoltar: Trade B1 R1 Greenhills\n\n27) mneme: Build R2 Mneme\n\n28) zoltar: Build R2 Greenhills\n\n29) mneme: Move R2 Mneme Parrot\n\n30) zoltar: Trade R2 Y2 Greenhills\n\n31) mneme: Build R2 Parrot\n\n32) zoltar: Build R2 Greenhills\n\n33) mneme: Discover R2 Parrot G2 Sparrow\n\n34) zoltar: Trade R1 G1 Greenhills\n\n35) mneme: Build B1 Mneme\n\n36) zoltar: Build G1 Greenhills\n\n37) mneme: Trade B3 G3 Mneme\n\n38) zoltar: Move G1 Greenhills Canary\n\n39) mneme: Discover R1 Mneme G3 Crow\n\n40) zoltar: Discover G1 Greenhills Y3 Vulture\n\n41) mneme: Sacrifice G3 Mneme\nBuild R1 Crow\nBuild R3 Mneme\nBuild R3 Parrot\n\tmneme: nice\n\n42) zoltar: Build R3 Greenhills\n\n43) mneme: Discover R1 Mneme G3 Fledge\n\n44) zoltar: Move R2 Greenhills Fledge\n\n45) mneme: Discover R3 Parrot Y2 Frank\n\n46) zoltar: Attack R1 Fledge\n\n47) mneme: Move R3 Frank Canary\n\n48) zoltar: Build Y1 Canary\n\n49) mneme: Attack G1 Canary\n\n50) zoltar: Build Y2 Greenhills\n\n51) mneme: Attack Y2 Canary\n\n52) zoltar: Sacrifice G1 Vulture\nBuild Y3 Zoltar\n\n53) mneme: Move Y2 Canary Sparrow\n\n54) zoltar: Move Y3 Zoltar Sparrow\n\n55) mneme: Attack Y1 Canary\n\n56) zoltar: Sacrifice R2 Fledge\nAttack R2 Sparrow\nAttack Y2 Sparrow\n\n57) mneme: Build R2 Parrot\n\n58) zoltar: Move Y3 Sparrow Parrot\n\n59) mneme: Move R3 Canary Sparrow\n\n60) zoltar: Sacrifice R2 Sparrow\nAttack R2 Parrot\nAttack R2 Parrot\n\n61) mneme: Attack Y2 Sparrow\n\n62) zoltar: Move R3 Greenhills Canary\n\n63) mneme: Sacrifice Y2 Sparrow\nMove R3 Sparrow Parrot\nMove R3 Parrot Greenhills\n\n64) zoltar: Sacrifice Y2 Greenhills\nMove Y2 Greenhills Crow\nMove B1 Greenhills Zoltar\n\n65) mneme: Move Y1 Parrot Greenhills\n\n66) zoltar: Sacrifice Y3 Parrot\nMove R1 Fledge Mneme\nMove R2 Parrot Mneme\nMove R2 Parrot Mneme\nCatastrophe Mneme R\n\n67) mneme: Build Y2 Canary\n\tmneme: I'm clearly doomed, of course. But playing this out isn't necessarily a bad learning experience\n\n68) zoltar: Move R3 Canary Mneme\n\n\nHomeworlds Online (SDG# 7437)\nStarted: 2007.4.15, Ended: 2007.4.24\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: H Y1 B3 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\tts52: Have a good game!\r\n\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) zoltar: Build Y2 Zoltar\n\tzoltar: Greetingz Earthling!\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) ts52: Build G1 Ts52\n\n11) zoltar: Build R1 Zoltar\n\tzoltar: Red Alert! Prepare for Battle!\n\n12) ts52: Trade G1 R1 Ts52\n\tzoltar: b r1 zoltar\n\n13) zoltar: Discover R1 Zoltar G2 Greenbelt\n\n14) ts52: Build R2 Ts52\n\n15) zoltar: Build R2 Zoltar\n\n16) ts52: Move R2 Ts52 Kermit\n\n17) zoltar: Move Y2 Zoltar Greenbelt\n\n18) ts52: Build G1 Ts52\n\n19) zoltar: Discover R1 Zoltar G2 Greenhills\n\n20) ts52: Build G1 Ts52\n\n21) zoltar: Build G1 Zoltar\n\n22) ts52: Discover G1 Ts52 Y3 Bigbird\n\n23) zoltar: Build G2 Zoltar\n\n24) ts52: Discover G1 Bigbird Y2 Sol\n\n25) zoltar: Move G2 Zoltar Sol\n\n26) ts52: Move G1 Sol Kermit\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild R2 Greenhills\nBuild R3 Greenbelt\nBuild R3 Zoltar\n\n28) ts52: Build R3 Ts52\n\n29) zoltar: Build G3 Zoltar\n\n30) ts52: Discover R3 Ts52 Y3 Lemon\n\n31) zoltar: Trade G3 Y3 Zoltar\n\n32) ts52: Move R3 Lemon Sol\n\n33) zoltar: Sacrifice G2 Sol\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n34) ts52: Move G1 Kermit Sol\n\n35) zoltar: Move G1 Zoltar Greenbelt\n\n36) ts52: Discover G1 Sol Y3 Daffodil\n\n37) zoltar: Move R3 Greenbelt Kermit\n\n38) ts52: Move Y1 Kermit Sol\n\n39) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Greenbelt\nBuild Y3 Greenbelt\n\n40) ts52: Discover Y1 Sol B3 Gonzo\n\n41) zoltar: Move Y3 Greenbelt Daffodil\n\n42) ts52: Move R3 Sol Gonzo\n\n43) zoltar: Sacrifice R2 Greenhills\nAttack G1 Daffodil\nAttack R2 Kermit\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild Y2 Gonzo\n\n45) zoltar: Sacrifice Y3 Zoltar\nMove G1 Greenbelt Daffodil\nMove G1 Daffodil Ts52\nMove G1 Daffodil Ts52\nCatastrophe Ts52 G\n\n46) ts52: Trade R1 G1 Ts52\n\n47) zoltar: Sacrifice Y2 Greenbelt\nMove Y3 Daffodil Ts52\nMove R3 Kermit Ts52\n\n48) ts52: Build R1 Ts52\n\tzoltar: All ships: storm zee ts52 Homeworld! Attack!\n\tts52: Ouch!\n\tts52: Well, this wont last long. Thanks for the game.\n\n49) zoltar: Sacrifice R3 Zoltar\nAttack G1 Ts52\nAttack R1 Ts52\nAttack R2 Ts52\n\tzoltar: s y2 greenbelt\r\nm y3 daffodil ts52\r\nm r3 kermit ts52\n\n\tts52: Sure.\n\nHomeworlds Online (SDG# 7434)\nVariants: "Hard time"\nStarted: 2007.4.17, Ended: 2007.4.20\nParticipants: sordros (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) sordros: Homeworld Y1 G3 B3\n\tTwoShort: Howdy.\n\n3) TwoShort: Build G1 Twoshort\n\tsordros: Hello there!\r\nWhere are you from?\n\n4) sordros: Build B1 Sordros\n\tTwoShort: I'm in Boulder, Colorado... How about you?\n\n5) TwoShort: Build G1 Twoshort\n\tsordros: I'm in Heredia, Costa Rica.\n\n6) sordros: Build B1 Sordros\n\tTwoShort: Are you a student? I had a friend in school who spent a year in Heredia, so I know it's a college town, but that's the extent of my knowledge :), except that my friend thought it was great. \n\n7) TwoShort: Trade G1 B1 Twoshort\n\n8) sordros: Trade B1 G1 Sordros\n\tsordros: Nope, I'm not a student anymore. Heredia is both the town name and the "province" name. I'm in the province Heredia but not exactly in the town. This is a very small country anyway, so I'm close college you refer. Sorry about the undo. This is my first homeworld game, so I'm kind of confused :-)\n\n9) TwoShort: Trade G1 Y1 Twoshort\n\n10) sordros: Build G1 Sordros\n\n11) TwoShort: Build G1 Twoshort\n\n12) sordros: Trade G1 R1 Sordros\n\n13) TwoShort: Build Y1 Twoshort\n\n14) sordros: Build R1 Sordros\n\n15) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n16) sordros: Build R2 Sordros\n\n17) TwoShort: Build Y2 Grogar\n\n18) sordros: Trade R2 Y2 Sordros\n\n19) TwoShort: Discover Y1 Grogar Y2 Yolonda\n\n20) sordros: Build Y3 Sordros\n\n21) TwoShort: Move Y1 Yolonda Sordros\nCatastrophe Sordros Yellow\n\n22) sordros: Build R2 Sordros\n\n23) TwoShort: Sacrifice Y2 Grogar\nMove G1 Twoshort Sordros\nMove G3 Twoshort Sordros\nCatastrophe Sordros Green\n\n\nHomeworlds Online (SDG# 7473)\nStarted: 2007.4.18, Ended: 2007.4.23\nParticipants: dsheldon (S), gypsydog (N)\nWinner: dsheldon\n\n1) gypsydog: Homeworld Y1 B2 G3\n\n2) dsheldon: Homeworld R2 B3 G3\n\n3) gypsydog: Build G1 Gypsydog\n\tgypsydog: Interesting. I'll be rather fascinated to find out how you develop that. I saw mention that using a red star was in vogue with the "pros" but I'll watch with fascination, I'm sure, as I get pwnzor'd ;)\n\n4) dsheldon: Build G1 Dsheldon\n\n5) gypsydog: Discover G1 Gypsydog B3 Howe\n\n6) dsheldon: Trade G1 Y1 Dsheldon\n\tdsheldon: My theory red home stars is that it allows me to always defend myself without appearing aggressive. It's not like I can bring the thing with me.\n\n7) gypsydog: Build G1 Gypsydog\n\n8) dsheldon: Build Y1 Dsheldon\n\tdsheldon: ugh. I can't believe I mistyped that...\n\n9) gypsydog: Build G1 Howe\n\n10) dsheldon: Discover Y1 Dsheldon B1 Berry\n\tgypsydog: right. other than catastrophes, you'll always get first shot off in your home system. highly defensive. seems compatible with the style people are talking about for the Fortress opening. i kinda like it in a way.\n\n11) gypsydog: Build G2 Howe\n\tgypsydog: also, you are a jerk and i hate you and your superior strategy knowledge :P\n\n12) dsheldon: Build G2 Dsheldon\n\n13) gypsydog: Trade G2 Y2 Howe\n\n14) dsheldon: Sacrifice G2 Dsheldon\nBuild G2 Dsheldon\nBuild Y2 Berry\n\n15) gypsydog: Build G2 Gypsydog\n\n16) dsheldon: Trade Y2 G2 Berry\n\tdsheldon: and I'm only 50/50 in my record. competition around here is tough. i once read through the log of the top two players against each other (TwoShort and, uh, I forget the other guy's name). wow. let me see if I can find the text around here some place. it was quite long.\n\n17) gypsydog: Build Y2 Howe\n\n18) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Dsheldon\nBuild Y2 Dsheldon\nBuild Y3 Berry\n\n19) gypsydog: Move Y2 Howe Gypsydog\n\n20) dsheldon: Sacrifice Y2 Dsheldon\nMove G2 Berry Howe\nMove G2 Howe Gypsydog\nCatastrophe Gypsydog G\n\n21) gypsydog: Trade G1 R1 Howe\n\n22) dsheldon: Discover Y1 Berry B3 Bruise\n\n23) gypsydog: Build R1 Howe\n\n24) dsheldon: Sacrifice G3 Dsheldon\nBuild Y2 Berry\nBuild Y3 Bruise\nBuild Y3 Dsheldon\n\n25) gypsydog: Trade Y2 G2 Gypsydog\n\n26) dsheldon: Move Y3 Bruise Gypsydog\n\n27) gypsydog: Build R1 Howe\n\n28) dsheldon: Trade Y3 R3 Dsheldon\n\n29) gypsydog: Move R1 Howe Gypsydog\n\n30) dsheldon: Sacrifice R3 Dsheldon\nAttack G2N Gypsydog\nAttack R1N Gypsydog\nPass\n\tdsheldon: You really need to have defended your homeworld better.\n\n\tdsheldon: There was nothing you could have done in your last turn.\n\nHomeworlds Online (SDG# 7463)\nStarted: 2007.4.18, Ended: 2007.5.11\nParticipants: lambda (S), morganfitzp (N)\nWinner: morganfitzp\n\n1) morganfitzp: Homeworld B1 R2 G3\n\n2) lambda: Homeworld B2 Y3 G3\n\tmorganfitzp: Hello "^" !\n\n3) morganfitzp: Build G1 Morganfitzp\n\tlambda: Hi! Have a great game!\n\n4) lambda: Build G1 Lambda\n\n5) morganfitzp: Trade G1 Y1 Morganfitzp\n\n6) lambda: Build G1 Lambda\n\n7) morganfitzp: Build Y1 Morganfitzp\n\n8) lambda: Trade G1 Y1 Lambda\n\n9) morganfitzp: Discover Y1 Morganfitzp G3 Cama\n\n10) lambda: Discover Y1 Lambda G1 Altair\n\n11) morganfitzp: Build Y2 Morganfitzp\n\n12) lambda: Build Y2 Altair\n\n13) morganfitzp: Build Y2 Cama\n\n14) lambda: Discover Y1 Altair B3 Betelgeuse\n\n15) morganfitzp: Trade Y1 B1 Morganfitzp\n\n16) lambda: Trade G1 B1 Lambda\n\n17) morganfitzp: Move B1 Morganfitzp Cama\n\n18) lambda: Build G1 Lambda\n\n19) morganfitzp: Build B2 Cama\n\n20) lambda: Discover B1 Lambda G1 Mira\n\n21) morganfitzp: Trade B1 R1 Cama\n\n22) lambda: Build G2 Lambda\n\n23) morganfitzp: Move Y2 Cama Mira\n\n24) lambda: Trade G2 R2 Lambda\n\n25) morganfitzp: Build G2 Morganfitzp\n\n26) lambda: Build G2 Lambda\n\n27) morganfitzp: Sacrifice G3 Morganfitzp\nBuild Y1 Cama\nBuild Y3 Mira\nBuild Y3 Morganfitzp\n\n28) lambda: Discover G2 Lambda B1 Sirius\n\n29) morganfitzp: Discover Y1 Cama R1 Fogo\n\n30) lambda: Sacrifice G3 Lambda\nBuild G2 Sirius\nBuild G3 Sirius\nBuild G3 Lambda\n\n31) morganfitzp: Sacrifice Y2 Mira\nMove G2 Morganfitzp Cama\nMove G2 Cama Sirius\nCatastrophe Sirius Green\n\n32) lambda: Build Y2 Altair\n\n33) morganfitzp: Trade Y2 G2 Morganfitzp\n\n34) lambda: Discover G1 Lambda B1 Sirius\n\n35) morganfitzp: Trade Y3 G3 Morganfitzp\n\n\tlambda: Sorry, I don't think I have enough time for this game any more.\n\nHomeworlds Online (SDG# 7460)\nVariants: "Hard time"\nStarted: 2007.4.20, Ended: 2007.5.25\nParticipants: Nupanick (S), sordros (W), Cinnibar (N), MikeYarrum (E)\nWinner: Cinnibar\n\n1) Cinnibar: Homeworld G2 B3 Y3\n\n2) MikeYarrum: Homeworld Y1 B2 G3\n\n3) Nupanick: Homeworld B1 G3 Y3\n\tNupanick: This is my first time with this engine, hope I entered it right.\n\n4) sordros: Homeworld G1 Y2 B3\n\n5) Cinnibar: Build Y1 Cinnibar\n\n6) MikeYarrum: Build G1 Mikeyarrum\n\n7) Nupanick: Build Y1 Nupanick\n\n8) sordros: Build B1 Sordros\n\n9) Cinnibar: Build Y1 Cinnibar\n\n10) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n11) Nupanick: Build Y1 Nupanick\n\n12) sordros: Build B1 Sordros\n\n13) Cinnibar: Trade Y1 R1 Cinnibar\n\n14) MikeYarrum: Build G1 Mikeyarrum\n\tCinnibar: So tempting\n\n15) Nupanick: Trade Y1 G1 Nupanick\n\n16) sordros: Trade B1 G1 Sordros\n\n17) Cinnibar: Build R1 Cinnibar\n\n18) MikeYarrum: Build G2 Sakaki\n\n19) Nupanick: Discover G1 Nupanick B2 Damogran\n\n20) sordros: Trade B1 Y1 Sordros\n\tNupanick: Damogran consists of a few small islands seperated by inconveniently large stretches of ocean. Because of this trade is vital to its inhabitants' survival.\n\n21) Cinnibar: Build R1 Cinnibar\n\n22) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n23) Nupanick: Trade Y1 R1 Nupanick\n\n24) sordros: Build B1 Sordros\n\n25) Cinnibar: Discover R1 Cinnibar Y1 Hyperion\n\n26) MikeYarrum: Discover G2 Sakaki B2 Kaorin\n\n27) Nupanick: Build Y2 Nupanick\n\n28) sordros: Discover B1 Sordros G3 Verdega\n\n29) Cinnibar: Move R1 Hyperion Verdega\n\n30) MikeYarrum: Trade G2 R2 Kaorin\n\n31) Nupanick: Build G1 Damogran\n\n32) sordros: Move B3 Sordros Verdega\n\n33) Cinnibar: Sacrifice Y1 Cinnibar\nMove R1 Verdega Sordros\n\n34) MikeYarrum: Build G2 Sakaki\n\n35) Nupanick: Build G2 Damogran\n\n36) sordros: Build G2 Sordros\n\n37) Cinnibar: Attack Y1W Sordros\n\tCinnibar: I tried to 'attack Y1 sordros' and got error that ship Y1 is not in system sordros. I see it though.\n\n38) MikeYarrum: Move G1 Sakaki Kaorin\n\tCinnibar: Never mind, found the small print showing the correct format. My bad. Sorry.\n\n39) Nupanick: Move Y2 Nupanick Damogran\n\n40) sordros: Move G1 Sordros Verdega\n\n41) Cinnibar: Build Y1 Sordros\n\n42) MikeYarrum: Trade G1 B1 Kaorin\n\n43) Nupanick: Trade G1 R1 Damogran\n\n44) sordros: Sacrifice B1 Verdega\nTrade G2 R2 Sordros\n\n45) Cinnibar: Build Y1 Sordros\nCatastrophe Sordros Y\n\n46) MikeYarrum: Build G1 Sakaki\n\n47) Nupanick: Build R2 Damogran\n\n48) sordros: Trade G1 Y1 Verdega\n\n49) Cinnibar: Build R2 Sordros\n\n50) MikeYarrum: Build G1 Mikeyarrum\n\n51) Nupanick: Move R1 Damogran Sordros\nCatastrophe Sordros Red\n\n52) Cinnibar: Build Y1 Cinnibar\n\tNupanick: Take that, SordroS and Cinnibar!\n\n53) MikeYarrum: Move G1 Sakaki Kaorin\n\tMikeYarrum: Shoot, what do I do now?\n\n54) Nupanick: Build R1 Damogran\n\n55) Cinnibar: Discover R1 Cinnibar Y1 Hyperion\n\n56) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n57) MikeYarrum: Build Y2 Yomi\n\n58) Cinnibar: Move R1 Hyperion Damogran\n\tMikeYarrum: Resignation? Why are his pieces still around? Don't leave me all alone against Cinnibar!\n\n59) MikeYarrum: Build B1 Kaorin\n\n60) Cinnibar: Attack G1S Damogran\n\tCinnibar: Hard time. :) Forced surrender when time rounds out. I imagine Nupanick will be surprised when finally logs back in. :)\n\n61) MikeYarrum: Trade B1 Y1 Kaorin\n\tMikeYarrum: Oh! I missed that thing about Hard Time.\n\n62) Cinnibar: Attack R1S Damogran\n\n63) MikeYarrum: Build Y2 Kaorin\n\n64) Cinnibar: Sacrifice Y1 Cinnibar\nMove R1 Damogran Nupanick\n\n65) MikeYarrum: Build B1 Kaorin\n\n66) Cinnibar: Attack R1S Nupanick\n\n67) MikeYarrum: Build G1 Kaorin\n\n68) Cinnibar: Build Y1 Cinnibar\n\n69) MikeYarrum: Build Y2 Kaorin\n\n70) Cinnibar: Trade R1 B1 Nupanick\n\n71) MikeYarrum: Build R1 Kaorin\n\n72) Cinnibar: Sacrifice Y1 Cinnibar\nMove B1 Nupanick Kaorin\nCatastrophe Kaorin B\n\n73) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n74) Cinnibar: Build Y1 Cinnibar\n\n75) MikeYarrum: Build G1 Sakaki\n\n76) Cinnibar: Build R1 Cinnibar\n\n77) MikeYarrum: Build R2 Mikeyarrum\n\n78) Cinnibar: Build R2 Damogran\n\n79) MikeYarrum: Trade R1 B1 Mikeyarrum\n\n80) Cinnibar: Sacrifice R1 Damogran\nAttack R2S Damogran\n\n81) MikeYarrum: Build R1 Mikeyarrum\n\n82) Cinnibar: Sacrifice R2 Damogran\nAttack G2S Damogran\nAttack Y2S Damogran\n\n83) MikeYarrum: Build G1 Mikeyarrum\n\n84) Cinnibar: Build R1 Damogran\n\n85) MikeYarrum: Move R2 Mikeyarrum Yomi\n\n86) Cinnibar: Build R2 Nupanick\n\n87) MikeYarrum: Build R2 Mikeyarrum\n\n88) Cinnibar: Move R2 Damogran Verdega\n\n89) MikeYarrum: Move B1 Mikeyarrum Yomi\n\n90) Cinnibar: Sacrifice G2 Damogran\nBuild R2 Damogran\nBuild R3 Verdega\n\n91) MikeYarrum: Build R3 Yomi\n\n92) Cinnibar: Sacrifice R2 Damogran\nAttack B3W Verdega\nAttack Y1W Verdega\n\n93) MikeYarrum: Move R3 Yomi Damogran\n\n94) Cinnibar: Trade Y2 R2 Damogran\n\n95) MikeYarrum: Build R3 Yomi\n\n96) Cinnibar: Trade R2 B2 Nupanick\n\n97) MikeYarrum: Attack G1N Damogran\n\n98) Cinnibar: Attack G1E Damogran\n\n99) MikeYarrum: Attack R2N Damogran\n\n100) Cinnibar: Build R2 Damogran\nCatastrophe Damogran R\n\n101) MikeYarrum: Move R2 Yomi Damogran\n\n102) Cinnibar: Sacrifice Y1 Cinnibar\nMove G1 Damogran Verdega\n\n103) MikeYarrum: Move G1 Sakaki Damogran\n\n104) Cinnibar: Build Y1 Cinnibar\n\n105) MikeYarrum: Build G1 Sakaki\n\n106) Cinnibar: Move R3 Verdega Damogran\n\n107) MikeYarrum: Build B1 Yomi\n\n108) Cinnibar: Attack R2E Damogran\n\n109) MikeYarrum: Build B1 Yomi\n\n110) Cinnibar: Attack G1E Damogran\n\n111) MikeYarrum: Discover Y2 Yomi G1 Osaka\n\n112) Cinnibar: Sacrifice Y1 Cinnibar\nMove R3 Damogran Osaka\n\n113) MikeYarrum: Sacrifice Y2 Osaka\nMove B1 Yomi Osaka\nMove B1 Osaka Sakaki\n\n114) Cinnibar: Build Y1 Verdega\n\n115) MikeYarrum: Discover G1 Sakaki Y2 Kaorin\n\n116) Cinnibar: Sacrifice Y1 Verdega\nMove R3 Osaka Kaorin\n\n\tNupanick: wtf is hard time? I didn't get a warning or anything? I didn't even know it was my turn!\n\tMikeYarrum: Hard Time means you are automatically resigned when your time is up. Sorry if you didn't know.\n\nHomeworlds Online (SDG# 7489)\nStarted: 2007.4.21, Ended: 2007.4.26\nParticipants: zoltar (S), sordros (N)\nWinner: zoltar\n\n1) sordros: Homeworld G1 B2 Y3\n\n2) zoltar: Homeworld B3 Y1 G3\n\n3) sordros: Build Y1 Sordros\n\n4) zoltar: Build G1 Zoltar\n\n5) sordros: Build Y1 Sordros\n\n6) zoltar: Build G1 Zoltar\n\n7) sordros: Discover Y1 Sordros G3 Picolino\n\n8) zoltar: Discover G1 Zoltar B2 Bluemoon\n\n9) sordros: Build Y2 Picolino\n\n10) zoltar: Build G2 Bluemoon\n\n11) sordros: Build Y2 Sordros\n\n12) zoltar: Trade G2 Y2 Bluemoon\n\n13) sordros: Trade Y2 B2 Sordros\n\n14) zoltar: Build Y2 Bluemoon\n\n15) sordros: Build B1 Sordros\n\n16) zoltar: Discover Y2 Bluemoon G3 Greengiant\n\n17) sordros: Move Y2 Picolino Bluemoon\n\n18) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild Y3 Bluemoon\nBuild Y3 Greengiant\n\n19) sordros: Move Y1 Picolino Bluemoon\nCatastrophe Bluemoon Yellow\n\tsordros: Nice move. I'll have to take note of that :-)\n\n20) zoltar: Build G2 Bluemoon\n\n21) sordros: Trade Y1 R1 Sordros\n\tzoltar: Thanx, Earthling!\n\n22) zoltar: Trade G2 R2 Zoltar\n\n23) sordros: Trade B2 G2 Sordros\n\n24) zoltar: Build G2 Bluemoon\n\n25) sordros: Discover G2 Sordros Y3 Mugie\n\n26) zoltar: B G3 Zoltar\n\n27) sordros: Move G2 Mugie Bluemoon\nCatastrophe Bluemoon Green\n\n28) zoltar: Discover Y3 Greengiant G1 Greenpea\n\n29) sordros: Build B1 Sordros\n\n30) zoltar: Build G2 Zoltar\n\n31) sordros: Discover B1 Sordros G3 Verdega\n\n32) zoltar: Trade G2 B2 Zoltar\n\n33) sordros: Build Y1 Sordros\n\n34) zoltar: Build G2 Zoltar\n\n35) sordros: Build B1 Verdega\n\n36) zoltar: Discover B2 Zoltar Y2 Banana\n\n37) sordros: Trade B1 Y1 Verdega\n\n38) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Greengiant\nBuild Y3 Greenpea\n\n39) sordros: Build B1 Verdega\n\n40) zoltar: Sacrifice Y3 Greenpea\nMove Y3 Greenpea Verdega\nMove Y2 Greengiant Sordros\nMove Y2 Greengiant Sordros\nCatastrophe Sordros Y\n\n41) sordros: Build Y1 Verdega\n\n42) zoltar: Move Y3 Verdega Sordros\n\n43) sordros: Build B2 Sordros\n\n44) zoltar: Sacrifice R2 Zoltar\nAttack R1 Sordros\nAttack B2 Sordros\n\n45) sordros: Build B3 Sordros\n\n46) zoltar: Sacrifice Y3 Sordros\nMove B2 Banana Verdega\nMove B2 Verdega Sordros\nMove R1 Sordros Verdega\nCatastrophe Sordros B\n\tzoltar: gg. Play again?\n\tsordros: GG.\r\nPlay again? Sure! This was my second game, and even though I'm getting all beaten up, I really like it! :-)\n\n\nHomeworlds Online (SDG# 7470)\nVariants: "Hard time"\nStarted: 2007.4.23, Ended: 2007.7.25\nParticipants: TwoShort (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B1 Y2 G3\n\tJesse: It's been a while since I've played you. This should be fun.\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tJesse: Ooh, I just noticed your ZPip challenge. Obviously, I haven't been following either the Icehouse list or SDG forums much, lately. This is the first I've heard of Andy's video. I believe it's the first time I've ever been mentioned on YouTube, and it feels good. :D\r\n\r\nIs your challenge still on? If so, let me just declare myself ineligible up front. I've already got a set, you see.\n\n3) Jesse: Build G1 Jesse\n\tTwoShort: Good to be playing you again too. The ZPip challenge is still on... At some point I noted that the two people on SDG I'd give a better than 50-50 chance of beating me the next time we played were the same two people who already had ZPips, i.e. you and Andy. \n\tJesse: Heh heh. Well, we'll see how this game goes...\n\n4) TwoShort: Build B1 Twoshort\n\n5) Jesse: Trade G3 B3 Jesse\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) Jesse: Build B2 Jesse\n\n8) TwoShort: Build B2 Twoshort\n\n9) Jesse: Discover B2 Jesse G3 Gruber\n\n10) TwoShort: Discover B2 Twoshort G2 Ed\n\n11) Jesse: Build G1 Jesse\n\n12) TwoShort: Build Y1 Twoshort\n\n13) Jesse: Trade G1 Y1 Jesse\n\n14) TwoShort: Move Y1 Twoshort Ed\n\n15) Jesse: Move Y1 Jesse Gruber\n\n16) TwoShort: Trade B2 R2 Ed\n\n17) Jesse: Build B2 Gruber\n\n18) TwoShort: Move R2 Ed Gruber\n\tJesse: I should have waited, last night, instead of playing hastily.\n\n19) Jesse: Trade G1 R1 Jesse\n\n20) TwoShort: Attack B2N Gruber\n\tTwoShort: Speaking of playing too hastily...\n\tJesse: This has its drawbacks for me, as well. I think I would have been better off if I'd done something like building another green at the HW, or a blue at Gruber, instead of moving out my y2, a couple of turns back.\n\tJesse: But yeah, I looked at this sequence before I decided it was okay to build another blue instead of swapping for a red. I really couldn't afford losing the moves that would have cost me, especially after scrambling into blue like I did.\n\n21) Jesse: Sacrifice R1 Jesse\nAttack R2 Gruber\n\n22) TwoShort: Build B2 Gruber\n\n23) Jesse: Sacrifice R2 Gruber\nAttack B2 Gruber\nAttack B2 Gruber\n\n24) TwoShort: Build B3 Twoshort\n\n25) Jesse: Discover B2 Gruber G2 Munch\n\n26) TwoShort: Trade B3 R3 Twoshort\n\n27) Jesse: Trade B2 R2 Gruber\n\n28) TwoShort: Move R3 Twoshort Munch\n\n29) Jesse: Build B2 Munch\n\n30) TwoShort: Attack B2N Munch\n\n31) Jesse: Build B3 Gruber\n\n32) TwoShort: Attack B2N Munch\n\n33) Jesse: Trade B3 G3 Jesse\n\tJesse: I wish I'd discovered a y2 instead of a g2, there. Oh well.\n\n34) TwoShort: Build B3 Twoshort\n\n35) Jesse: Discover B2 Gruber G2 Bjorn\n\n36) TwoShort: Sacrifice B2 Munch\nTrade B2 Y2 Munch\nTrade B3 R3 Twoshort\n\n37) Jesse: Build Y1 Gruber\n\n38) TwoShort: Move R3 Twoshort Bjorn\n\n39) Jesse: Build G1 Jesse\n\n40) TwoShort: Build Y2 Ed\n\n41) Jesse: Discover Y1 Gruber G1 Leroy\n\n42) TwoShort: Build Y3 Munch\n\n43) Jesse: Sacrifice G3 Jesse\nBuild G1 Jesse\nBuild G3 Jesse\nBuild Y3 Leroy\n\n44) TwoShort: Sacrifice Y2 Munch\nMove Y2 Ed Leroy\nMove Y1 Ed Leroy\nCatastrophe Leroy Yellow\n\n45) Jesse: Discover G1 Jesse B3 Harvey\n\n46) TwoShort: Move R3 Munch Harvey\n\n47) Jesse: Sacrifice G1 Harvey\nBuild B2 Gruber\n\n48) TwoShort: Attack B2N Bjorn\n\n49) Jesse: Trade B2 R2 Gruber\n\n50) TwoShort: Build B2 Bjorn\n\n51) Jesse: Move R2 Gruber Jesse\n\n52) TwoShort: Trade B2 Y2 Bjorn\n\n53) Jesse: Build B2 Gruber\n\n54) TwoShort: Sacrifice Y3 Munch\nMove B1 Twoshort Bjorn\nMove B1 Bjorn Gruber\nMove B2 Bjorn Gruber\nCatastrophe Gruber Blue\n\n55) Jesse: Build R1 Gruber\n\n56) TwoShort: Build Y1 Twoshort\n\n57) Jesse: Build Y1 Gruber\n\tJesse: I'm torm between sticking it out and giving in to the apparently inevitable.\n\n58) TwoShort: Build Y2 Twoshort\n\n59) Jesse: Discover Y1 Gruber G2 Sam\n\n60) TwoShort: Trade Y2 G2 Twoshort\n\tTwoShort: Sorry for the slow play... that "life" thing...\r\nAs far as sticking it out or not, it's your call... I certainly like my position, but I can't find any short route to victory.\n\tJesse: No, sometimes the most reliable victory is a long, slow process. Still, it's not over yet. It's just Very Long Odds(TM).\r\n\r\nThe slow play is not a problem, except that I would hate to win this one on time.\n\n61) Jesse: Discover R1 Gruber G1 Johnny\n\n62) TwoShort: Trade R3 Y3 Harvey\n\n63) Jesse: Discover R2 Jesse Y3 Rrrrr\n\n64) TwoShort: Build Y2 Bjorn\n\n65) Jesse: Trade G1 B1 Jesse\n\n66) TwoShort: Move R3 Bjorn Gruber\n\n67) Jesse: Build R1 Gruber\n\n68) TwoShort: Sacrifice Y1 Twoshort\nMove R3 Gruber Sam\n\n69) Jesse: Move Y1 Sam Johnny\n\n70) TwoShort: Build R1 Sam\n\n71) Jesse: Build Y1 Johnny\n\n\tJesse: Aw, that's a shame. Let me know when you're finished traveling. We can start a fresh game.\n\tTwoShort: Sorry about that; I thought I'd get a chance to get online and make some moves while on the road, then it didn't work out that way.\n\nHomeworlds Online (SDG# 7527)\nStarted: 2007.4.24, Ended: 2007.5.4\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld Y3 B1 G3\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade G1 B1 Ts52\n\n6) zoltar: Trade G1 B1 Zoltar\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) zoltar: Build B2 Zoltar\n\n9) ts52: Build B2 Kermit\n\n10) zoltar: Trade B2 R2 Zoltar\n\n11) ts52: Trade B1 R1 Kermit\n\n12) zoltar: Build R1 Zoltar\n\n13) ts52: Build G1 Ts52\n\n14) zoltar: Trade R1 Y1 Zoltar\n\n15) ts52: Build B1 Kermit\n\n16) zoltar: Discover B1 Zoltar G2 Greendale\n\n17) ts52: Trade B2 G2 Kermit\n\n18) zoltar: Build B2 Greendale\n\n19) ts52: Trade G1 Y1 Ts52\n\n20) zoltar: Trade B2 Y2 Greendale\n\n21) ts52: Build Y2 Ts52\n\n22) zoltar: Build Y2 Greendale\n\n23) ts52: Move Y1 Ts52 Kermit\n\n24) zoltar: Trade Y1 G1 Zoltar\n\n25) ts52: Build G1 Ts52\n\n26) zoltar: Build B2 Greendale\n\n27) ts52: Discover G1 Ts52 Y3 Zoe\n\n28) zoltar: Move B2 Greendale Zoe\n\n29) ts52: Build G1 Ts52\n\n30) zoltar: Build R1 Zoltar\n\n31) ts52: Discover Y2 Ts52 B3 Gonzo\n\n32) zoltar: Trade Y2 R2 Greendale\n\n33) ts52: Discover G1 Zoe Y2 Bert\n\n34) zoltar: Move R2 Zoltar Bert\n\n35) ts52: Sacrifice G3 Ts52\nBuild G2 Bert\nBuild G3 Ts52\nBuild R1 Kermit\n\n36) zoltar: Sacrifice R2 Greendale\nAttack G1 Bert\nAttack G2 Bert\n\n37) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild Y3 Gonzo\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Zoe\nBuild B3 Greendale\n\n39) ts52: Build B3 Kermit\n\n40) zoltar: Sacrifice Y2 Greendale\nMove G1 Bert Kermit\nMove G2 Bert Kermit\nCatastrophe Kermit G\n\n41) ts52: Trade G1 R1 Ts52\n\n42) zoltar: Trade B2 G2 Zoe\n\n43) ts52: Build G1 Ts52\n\n44) zoltar: Build G1 Zoe\n\n45) ts52: Move G1 Ts52 Gonzo\n\n46) zoltar: Discover G1 Zoe Y1 Yellowstone\n\n47) ts52: Trade Y3 R3 Gonzo\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoe\nBuild G3 Yellowstone\nBuild G3 Zoltar\n\n49) ts52: Move R3 Gonzo Bert\n\n50) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild R1 Bert\nBuild R2 Bert\nCatastrophe Bert R\n\n51) ts52: Build Y1 Gonzo\n\tzoltar: Jihadists strike in Bert! \n\n52) zoltar: Trade B3 Y3 Greendale\n\n53) ts52: Trade Y1 R1 Gonzo\n\n54) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild B1 Zoe\nBuild B2 Greendale\n\n55) ts52: Build R2 Ts52\n\n56) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild B3 Greendale\nBuild B3 Zoe\n\n57) ts52: Build R2 Gonzo\n\n58) zoltar: Sacrifice B2 Zoe\nTrade B3 R3 Zoe\nTrade B3 R3 Greendale\n\n59) ts52: Build Y1 Gonzo\n\n60) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Zoe\nBuild R3 Zoltar\n\n61) ts52: Discover R1 Gonzo Y2 Sol\n\n62) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild Y2 Greendale\nBuild B2 Zoe\n\n63) ts52: Move R2 Gonzo Sol\n\n64) zoltar: Sacrifice Y2 Greendale\nMove R1 Zoltar Sol\nMove R2 Zoe Sol\nCatastrophe Sol R\n\n65) ts52: Move R1 Ts52 Gonzo\n\n66) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild B3 Greendale\nBuild B3 Zoe\n\n67) ts52: Build R1 Ts52\n\n68) zoltar: Move B3 Greendale Gonzo\n\tzoltar: The Blue Fleet is mine, all mine!!! [Insert sinister Evil Overlord laughter here.]\n\tts52: Ah yes, I wont be much longer for this world then. Thanks for the game.\n\n69) ts52: Discover Y2 Gonzo R2 Deetoo\n\tzoltar: m b3 greendale gonzo\n\n70) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild R1 Greendale\nBuild R2 Zoltar\n\tzoltar: oops\n\tzoltar: Let me know if you wish to play another after this.\n\tzoltar: Thanks for the game too.\n\n71) ts52: Build Y2 Gonzo\n\n72) zoltar: Sacrifice R3 Zoltar\nAttack Y2 Gonzo\nAttack Y1 Gonzo\nAttack R1 Gonzo\n\n73) ts52: Sacrifice G1 Gonzo\nBuild Y2 Deetoo\n\n74) zoltar: Sacrifice G3 Yellowstone\nBuild G1 Zoe\nBuild G3 Yellowstone\nBuild R3 Gonzo\n\n\tts52: I don't think I've ever seen the reserve run out before. Thanks again for the game.\n\tzoltar: gg -- play again?\n\nHomeworlds Online (SDG# 7523)\nVariants: "Hard time"\nStarted: 2007.4.24, Ended: 2007.4.25\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld B2 Y2 G3 *\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) TwoShort: Trade G1 Y1 Bluonia\n\n12) zoltar: Move Y1 Zoltar Bluonia\n\n13) TwoShort: Build Y2 Twoshort\n\n14) zoltar: Sacrifice R1 Zoltar\nAttack Y1 Bluonia\n\n15) TwoShort: Trade Y2 R2 Twoshort\n\n16) zoltar: Discover Y1 Bluonia G1 Greenpea\n\n17) TwoShort: Build Y2 Twoshort\n\n18) zoltar: Build Y2 Greenpea\n\n19) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Twoshort Bluonia\nMove G3 Bluonia Zoltar\n\n\tzoltar: Oops, I should have stuck with my first try. Well that sucks! gg.\n\nHomeworlds Online (SDG# 7531)\nVariants: "Hard time"\nStarted: 2007.4.24, Ended: 2007.5.1\nParticipants: mneme (S), zoltar (N)\nWinner: mneme\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) mneme: Homeworld R2 B1 G3\n\n3) zoltar: Build G1 Zoltar\n\tmneme: bah. I'd been planning on trying out the "no yellows" opening for a while, but I didn't really want a nigh-identical setup.\n\n4) mneme: Build G1 Mneme\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n8) mneme: Build G1 Mneme\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) mneme: Build G1 Mneme\n\tzoltar: I'm not used to the red star setup either, and I don't think I've played a symmetrical red-blue star game before.\n\n11) zoltar: Build R1 Zoltar\n\tmneme: Nor have I. Should be interesting, at least.\n\n12) mneme: Discover G1 Mneme R3 Hunter\n\n13) zoltar: Trade R1 B1 Zoltar\n\n14) mneme: Discover G1 Mneme B3 Harper\n\n15) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n16) mneme: Build G1 Mneme\n\n17) zoltar: Move R1 Zoltar Greenbelt\n\n18) mneme: Build G2 Harper\n\tzoltar: I think I'm way behind in this one -- probably in big trouble here.\n\n19) zoltar: Build G2 Zoltar\n\tmneme: I hope so... :) We'll see\n\n20) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild G3 Hunter\nBuild Y1 Mneme\n\tzoltar: I just lost a Homeworlds game in 8 moves. That must be a record.\n\tmneme: wow. To whom?\r\n\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y2 Zoltar\n\n22) mneme: Move Y1 Mneme Harper\n\n23) zoltar: Discover Y2 Zoltar B2 Blueberry\n\n24) mneme: Sacrifice G3 Mneme\nBuild Y2 Mneme\nBuild Y3 Mneme\nBuild Y3 Harper\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Blueberry\nBuild R1 Greenbelt\n\n26) mneme: Move Y2 Mneme Hunter\n\n27) zoltar: Sacrifice Y2 Zoltar\nMove G2 Zoltar Blueberry\nMove Y2 Blueberry Harper\n\tzoltar: I'm pretty much doomed unless you make a major mistake.\n\tmneme: true, but that's not that unlikely.\n\n28) mneme: Sacrifice G3 Hunter\nBuild G3 Hunter\nBuild G3 Mneme\nBuild Y2 Hunter\n\n29) zoltar: Build R2 Greenbelt\n\n30) mneme: Trade Y3 R3 Harper\n\n31) zoltar: Build Y3 Zoltar\n\n32) mneme: Attack Y2 Harper\n\n33) zoltar: Sacrifice Y3 Blueberry\nMove R1 Greenbelt Hunter\nMove R1 Greenbelt Hunter\nMove R2 Greenbelt Hunter\nCatastrophe Hunter R\n\n34) mneme: Move R3 Harper Blueberry\n\n35) zoltar: Sacrifice G2 Blueberry\nBuild B1 Greenbelt\nBuild B2 Greenbelt\n\n36) mneme: Sacrifice Y2 Harper\nMove R3 Blueberry Harper\nMove R3 Harper Greenbelt\n\n37) zoltar: Sacrifice B2 Greenbelt\nTrade B1 R1 Greenbelt\nTrade B1 R1 Greenbelt\n\n38) mneme: Sacrifice Y1 Mneme\nMove R3 Greenbelt Harper\n\n39) zoltar: Move Y3 Zoltar Greenbelt\n\n40) mneme: Build R2 Harper\n\n41) zoltar: Discover R1 Greenbelt Y1 Yellowstone\n\n42) mneme: Discover R2 Harper G2 Grocer\n\n43) zoltar: Build Y2 Greenbelt\n\n44) mneme: Discover G2 Harper B2 Archer\n\n45) zoltar: Build G1 Zoltar\n\n46) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild G3 Archer\nBuild Y2 Mneme\n\n47) zoltar: Discover Y3 Greenbelt B3 Desperation\n\n48) mneme: Sacrifice Y3 Mneme\nMove G1 Harper Archer\nMove G2 Archer Zoltar\nMove G1 Archer Zoltar\nCatastrophe Zoltar G\n\n49) zoltar: Sacrifice Y3 Desperation\nMove R1 Yellowstone Greenbelt\nMove Y1 Zoltar Greenbelt\nPass\n\n\tzoltar: gg -- well done.\n\tmneme: Cool game (and nice to win one occasionally) -- thanks!\n\nHomeworlds Online (SDG# 7529)\nVariants: "Hard time"\nStarted: 2007.4.24, Ended: 2007.4.28\nParticipants: MikeYarrum (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) MikeYarrum: Homeworld Y1 B3 G3\n\tTwoShort: Howdy.\n\tMikeYarrum: Hello again. (darn, I wanted banker...)\n\n3) TwoShort: Build G1 Twoshort\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\tTwoShort: I noticed if you go through the "New Challenge" screen you can specify who goes first. If you challenge me that way next time, I'll be happy to go second.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\tMikeYarrum: Thanks, but it's no big deal. =D I need to learn to be flexible.\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) TwoShort: Build Y2 Twoshort\n\n8) MikeYarrum: Build Y2 Mikeyarrum\n\n9) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n10) MikeYarrum: Discover Y1 Mikeyarrum Y2 Kaorin\n\n11) TwoShort: Build Y3 Grogar\n\tMikeYarrum: Kaorin is relatively isolated in space, and colonists must rely on advanced transport technology for contact with other worlds.\n\n12) MikeYarrum: Build G1 Mikeyarrum\n\tTwoShort: They should be careful; advanced technology can be dangerous.\n\n13) TwoShort: Build Y3 Twoshort\n\n14) MikeYarrum: Discover Y2 Mikeyarrum G2 Yomi\n\n15) TwoShort: Discover Y2 Twoshort Y3 Niroak\n\tMikeYarrum: Yomi is rich in natural resources and an ideal system for construction.\n\n16) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n17) TwoShort: Build G1 Twoshort\n\n18) MikeYarrum: Build G1 Mikeyarrum\n\n19) TwoShort: Move G1 Twoshort Niroak\n\n20) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n21) TwoShort: Discover Y2 Niroak B2 Bluonia\n\n22) MikeYarrum: Build G1 Mikeyarrum\n\n23) TwoShort: Sacrifice G1 Niroak\nBuild Y3 Bluonia\n\n24) MikeYarrum: Discover G1 Mikeyarrum B2 Chihiro\n\n25) TwoShort: Trade Y2 R2 Bluonia\n\n26) MikeYarrum: Build Y2 Yomi\n\n27) TwoShort: Trade Y3 R3 Bluonia\n\n\tMikeYarrum: I know this probably seems like a really short game, but I think I made way too many mistakes, and you're really far ahead. Mind if we start over?\n\tTwoShort: I'd be happy to. For what it's worth, I believe it's mate in 3: Next turn I sacrifice my y3 at twoshort to move my other y3 and my r3 into your homeworld. You can only take one of them, so next I sac my r2 to take it back and your g3 as well. Finally I sac the r3 to take whatever is left. I'm pretty sure there's nothing you can do to derail that. I don't mean to gloat, it's just that I almost never can figure things out that far in advance, so if you're going to resign I had to at least tell you about it :)\n\tMikeYarrum: No, I don't mind. =D Explaining how something is a mistake is the best way to learn.\n\nHomeworlds Online (SDG# 7530)\nVariants: "Hard time"\nStarted: 2007.4.24, Ended: 2007.4.29\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld B1 G3 B3 *\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build B1 Zoltar\n\n5) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n6) zoltar: Trade B3 Y3 Zoltar\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\tMikeYarrum: The lovely but perilous mountains of Sakaki have made her inhabitants naturals at transport technology\n\n8) zoltar: Build B2 Zoltar\n\n9) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n10) zoltar: Trade B2 R2 Zoltar\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) zoltar: Build B2 Zoltar\n\n13) MikeYarrum: Discover G1 Mikeyarrum Y3 Kagura\n\n14) zoltar: Discover B2 Zoltar G2 Greenhills\n\n15) MikeYarrum: Build G1 Mikeyarrum\n\n16) zoltar: Trade Y3 G3 Zoltar\n\n17) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Sakaki\nBuild G2 Sakaki\nBuild G3 Mikeyarrum\n\n18) zoltar: Sacrifice G3 Zoltar\nBuild B2 Greenhills\nBuild B2 Greenhills\nBuild B3 Zoltar\n\n19) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Kagura\nBuild Y1 Mikeyarrum\nBuild G3 Mikeyarrum\n\n20) zoltar: Trade B3 Y3 Zoltar\n\n21) MikeYarrum: Discover Y1 Mikeyarrum B3 Nyamo\n\n22) zoltar: Build B3 Zoltar\n\n23) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n24) zoltar: Trade B3 R3 Zoltar\n\n25) MikeYarrum: Sacrifice G2 Sakaki\nBuild Y1 Nyamo\nBuild Y2 Nyamo\n\n26) zoltar: Trade B2 Y2 Greenhills\n\n27) MikeYarrum: Discover Y2 Nyamo B2 Yukari\n\n28) zoltar: Build B3 Greenhills\n\n29) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n30) zoltar: Trade B3 R3 Greenhills\n\n31) MikeYarrum: Move G2 Sakaki Yukari\n\n32) zoltar: Move R3 Zoltar Yukari\n\n33) MikeYarrum: Sacrifice Y2 Yukari\nMove G2 Yukari Nyamo\nMove G3 Kagura Mikeyarrum\n\n34) zoltar: Move R3 Greenhills Nyamo\n\n35) MikeYarrum: Trade Y1 R1 Nyamo\n\n36) zoltar: Build B3 Greenhills\n\n37) MikeYarrum: Move G2 Nyamo Greenhills\n\n38) zoltar: Sacrifice R2 Zoltar\nAttack G2 Greenhills\nAttack R1 Nyamo\n\n39) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G1 Kagura\nBuild G2 Sakaki\nBuild Y1 Nyamo\n\n40) zoltar: Sacrifice G2 Greenhills\nBuild B3 Zoltar\nBuild Y2 Greenhills\n\n41) MikeYarrum: Move G1 Kagura Greenhills\n\n42) zoltar: Sacrifice R3 Yukari\nAttack G1 Greenhills\nAttack Y1 Nyamo\nAttack Y1 Nyamo\n\n43) MikeYarrum: Move G1 Kagura Greenhills\n\n44) zoltar: Sacrifice Y2 Greenhills\nMove Y1 Nyamo Mikeyarrum\nMove Y1 Nyamo Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n45) MikeYarrum: Move G1 Sakaki Greenhills\nCatastrophe Greenhills Green\n\n46) zoltar: Sacrifice Y3 Zoltar\nMove R1 Nyamo Mikeyarrum\nMove R3 Nyamo Mikeyarrum\nPass\nCatastrophe Mikeyarrum R\n\tzoltar: Zoltar to fleet: all ships storm the MikeYarrum homeworld! Attack!\n\n\tMikeYarrum: But we're not going down without a fight! Kamikaze Green, this is your finest hour! Move all 'zig' for great justice!\r\n\r\n(oh, and yes please to the new game!)\n\nHomeworlds Online (SDG# 7535)\nVariants: "Hard time"\nStarted: 2007.4.26, Ended: 2007.5.4\nParticipants: sordros (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld Y2 B3 G3\n\n2) sordros: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) sordros: Build G1 Sordros\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) sordros: Trade G1 Y1 Sordros\n\n7) zoltar: Build Y2 Zoltar\n\n8) sordros: Discover Y1 Sordros G3 Gamma\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) sordros: Build G1 Sordros\n\n11) zoltar: Discover Y2 Zoltar G1 Greenpea\n\n12) sordros: Trade G1 B1 Sordros\n\n13) zoltar: Build R1 Zoltar\n\n14) sordros: Build B1 Sordros\n\n15) zoltar: Trade R1 B1 Zoltar\n\n16) sordros: Trade B1 R1 Sordros\n\n17) zoltar: Build G1 Zoltar\n\n18) sordros: Move B1 Sordros Gamma\n\n19) zoltar: Move B1 Zoltar Greenpea\n\n20) sordros: Build G1 Sordros\n\n21) zoltar: Build G2 Zoltar\n\n22) sordros: Build G2 Sordros\n\n23) zoltar: Discover G2 Zoltar Y1 Yellowstone\n\n24) sordros: Discover G2 Sordros Y3 Flavega\n\n25) zoltar: Build G2 Yellowstone\n\n26) sordros: Build Y2 Gamma\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Greenpea\nBuild B1 Greenpea\n\n28) sordros: Discover Y2 Gamma R1 Rugeta\n\n29) zoltar: Move G2 Yellowstone Flavega\n\tzoltar: I am soooo stuck. I'll have to sleep on this one and take a break and come back tomorrow to find something to do here.\n\n30) sordros: Sacrifice G3 Sordros\nBuild Y3 Rugeta\nBuild B2 Gamma\nBuild G3 Sordros\n\n31) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Zoltar\nBuild R2 Zoltar\n\n32) sordros: Sacrifice G3 Sordros\nBuild G3 Sordros\nBuild R2 Sordros\nBuild R3 Sordros\n\n33) zoltar: Sacrifice R1 Zoltar\nAttack G2 Flavega\n\n34) sordros: Move R3 Sordros Flavega\n\n35) zoltar: Sacrifice Y2 Greenpea\nMove G2 Flavega Sordros\nMove G2 Flavega Sordros\nCatastrophe Sordros G\n\n36) sordros: Build Y2 Gamma\n\n37) zoltar: Sacrifice Y3 Greenpea\nMove G3 Zoltar Yellowstone\nMove G3 Yellowstone Flavega\nMove G3 Flavega Sordros\n\n38) sordros: Move R3 Flavega Sordros\n\n39) zoltar: Trade G3 R3 Sordros\nCatastrophe Sordros R\n\tzoltar: Thanks for the game. You were winning all the way to last two moves when you blundered by building that y2 instead of sacking your other y2 and sending your y3 back to your homeworld. You can't leave your homeworld without a 3-pip ship even for one turn in a situation like this!\n\tsordros: Thanks for the game and for the feedback Zoltar!\r\nI'm liking this game more and more. Should buy some pyramids and get a live partner as well. Hopefully our next game I'll be a little more challenging. \n\n\nHomeworlds Online (SDG# 7537)\nVariants: "Hard time"\nStarted: 2007.4.26, Ended: 2007.5.16\nParticipants: TwoShort (S), sordros (N)\nWinner: TwoShort\n\n1) sordros: Homeworld Y2 B3 G3\n\n2) TwoShort: Homeworld Y1 B2 G3\n\n3) sordros: Build G1 Sordros\n\n4) TwoShort: Build G1 Twoshort\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) TwoShort: Build G1 Twoshort\n\n7) sordros: Build Y1 Sordros\n\n8) TwoShort: Discover G1 Twoshort Y3 Yellonia\n\n9) sordros: Discover Y1 Sordros G1 Verdeto\n\n10) TwoShort: Build G2 Twoshort\n\n11) sordros: Sacrifice G3 Sordros\nBuild Y2 Verdeto\nBuild Y2 Verdeto\nBuild Y3 Sordros\n\n12) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yellonia\nBuild G2 Yellonia\nBuild G3 Twoshort\n\n13) sordros: Trade Y3 G3 Sordros\n\n14) TwoShort: Discover G2 Twoshort G3 Greensville\n\n15) sordros: Build Y3 Sordros\n\n16) TwoShort: Trade G1 R1 Twoshort\n\n17) sordros: Trade Y1 R1 Sordros\n\n18) TwoShort: Build G1 Twoshort\n\n19) sordros: Build Y1 Sordros\n\n20) TwoShort: Move G2 Yellonia Verdeto\n\n21) sordros: Sacrifice R1 Sordros\nAttack G2 Verdeto\n\n22) TwoShort: Move G1 Yellonia Verdeto\n\n23) sordros: Sacrifice Y2 Verdeto\nDiscover G2 Verdeto B3 Zuleo\nMove Y2 Verdeto Zuleo\n\n24) TwoShort: Sacrifice R1 Twoshort\nAttack Y1N Verdeto\n\n25) sordros: Trade Y1 R1 Sordros\n\n26) TwoShort: Trade G1 R1 Twoshort\n\n27) sordros: Move Y3 Sordros Verdeto\n\n28) TwoShort: Build G1 Verdeto\n\n29) sordros: Build Y1 Verdeto\n\n30) TwoShort: Sacrifice G2 Greensville\nBuild G2 Verdeto\nBuild G3 Twoshort\nCatastrophe Verdeto Green\n\n31) sordros: Build Y1 Zuleo\n\n32) TwoShort: Move G3 Twoshort Zuleo\n\n33) sordros: Build G1 Sordros\n\n34) TwoShort: Sacrifice R1 Twoshort\nAttack G2N Zuleo\n\n35) sordros: Trade Y2 G2 Zuleo\n\n36) TwoShort: Trade G3 R3 Zuleo\n\n37) sordros: Build G1 Zuleo\n\n38) TwoShort: Sacrifice R3 Zuleo\nAttack G2N Zuleo\nAttack G1N Zuleo\nAttack Y1N Zuleo\n\n39) sordros: Build R1 Sordros\n\n40) TwoShort: Discover G1 Zuleo G1 Greedo\n\n41) sordros: Discover G1 Sordros Y1 Flaveta\n\n42) TwoShort: Sacrifice G2 Zuleo\nBuild G2 Twoshort\nBuild G3 Zuleo\n\n43) sordros: Trade R1 B1 Sordros\n\n44) TwoShort: Sacrifice G3 Zuleo\nBuild G3 Zuleo\nBuild Y2 Zuleo\nBuild Y2 Zuleo\n\n45) sordros:\nBuild R1 Sordros\n\n46) TwoShort: Move Y2 Zuleo Greedo\n\n47) sordros: Build B1 Sordros\n\n48) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y3 Greedo\nBuild Y3 Greedo\n\n49) sordros: Move B1 Sordros Flaveta\n\n50) TwoShort: Trade G3 R3 Zuleo\n\n51) sordros:\nBuild G3 Sordros\n\n52) TwoShort: Sacrifice Y2 Greedo\nMove Y3 Greedo Sordros\nMove Y3 Greedo Sordros\n\n53) sordros: Attack Y3 Sordros\n\n54) TwoShort: Sacrifice R3 Zuleo\nAttack R1N Sordros\nAttack R1N Sordros\nAttack G3N Sordros\n\n\tsordros: Thanks for the game!\n\nHomeworlds Online (SDG# 7500)\nVariants: "Sinister"\nStarted: 2007.4.26, Ended: 2007.6.6\nParticipants: Jesse (S), sordros (W), MikeYarrum (N), zoltar (E)\nWinner: Jesse\n\n1) MikeYarrum: Homeworld R3 G2 B3\n\tJesse: Yah! Look at all those pieces. Heh heh. It's been a while since I've played anything other than Binary. Have a good game, all.\n\tMikeYarrum: Yep! Nice to meet you Jesse, I don't think we've played before.\n\tMikeYarrum: My first try playing something besides b-y-g banker.\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) Jesse: Homeworld R1 B3 G3\n\n4) sordros: Homeworld B1 Y2 G3\n\n5) MikeYarrum: Build B1 Mikeyarrum\n\n6) zoltar: Build G1 Zoltar\n\n7) Jesse: Build G1 Jesse\n\n8) sordros: Build G1 Sordros\n\n9) MikeYarrum: Trade B1 Y1 Mikeyarrum\n\n10) zoltar: Trade G1 Y1 Zoltar\n\n11) Jesse: Trade G1 Y1 Jesse\n\n12) sordros: Trade G1 Y1 Sordros\n\n13) MikeYarrum: Build Y2 Mikeyarrum\n\n14) zoltar: Build Y2 Zoltar\n\n15) Jesse: Build Y2 Jesse\n\n16) sordros: Discover Y1 Sordros G3 Verdosia\n\n17) MikeYarrum: Build B1 Mikeyarrum\n\n18) zoltar: Trade Y1 R1 Zoltar\n\n19) Jesse: Discover Y2 Jesse G2 Boz\n\n20) sordros: Build G1 Sordros\n\n21) MikeYarrum: Trade B1 R1 Mikeyarrum\n\n22) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n23) Jesse: Build Y1 Boz\n\n24) sordros: Build Y2 Verdosia\n\n25) MikeYarrum: Discover Y2 Mikeyarrum G1 Chiyo\n\n26) zoltar: Build Y3 Greenbelt\n\n27) Jesse: Build Y3 Jesse\n\n28) sordros: Discover Y2 Verdosia G1 Galatea\n\n29) MikeYarrum: Build Y3 Mikeyarrum\n\n30) zoltar: Move Y3 Greenbelt Chiyo\n\n31) Jesse: Build Y3 Jesse\n\n32) sordros: Build Y3 Galatea\n\n33) MikeYarrum: Move Y2 Chiyo Verdosia\n\n34) zoltar: Build R1 Zoltar\n\n35) Jesse: Trade Y1 R1 Jesse\n\n36) sordros: Trade G1 B1 Sordros\n\n37) MikeYarrum: Discover R1 Mikeyarrum G1 Osaka\n\n38) zoltar: Sacrifice Y2 Greenbelt\nMove Y3 Chiyo Verdosia\nMove Y3 Verdosia Sordros\n\n39) Jesse: Discover Y3 Jesse G2 Squa\n\n40) sordros: Build G1 Sordros\n\n41) MikeYarrum: Build R2 Osaka\n\n42) zoltar: Sacrifice R1 Zoltar\nAttack G3W Sordros\n\n43) Jesse: Move R1 Jesse Squa\n\n44) sordros: Build G1 Sordros\n\n45) MikeYarrum: Build B1 Mikeyarrum\n\n46) zoltar: Discover G3 Sordros B3 Bluemoon\n\n47) Jesse: Build G1 Jesse\n\n48) sordros: Build B1 Sordros\n\n49) MikeYarrum: Sacrifice R1 Osaka\nAttack Y1W Verdosia\n\n50) zoltar: Move Y3 Sordros Bluemoon\n\n51) Jesse: Discover G3 Jesse B2 Schnook\n\n52) sordros: Discover B1 Sordros G3 Verdesia\n\n53) MikeYarrum: Move B1 Mikeyarrum Osaka\n\n54) zoltar: Build G2 Bluemoon\n\n55) Jesse: Build G2 Schnook\n\n56) sordros: Sacrifice Y2 Galatea\nMove Y3 Galatea Verdesia\nMove Y3 Verdesia Sordros\n\n57) MikeYarrum: Trade B1 Y1 Osaka\n\n58) zoltar: Sacrifice G3 Bluemoon\nBuild Y2 Bluemoon\nBuild G1 Zoltar\nBuild G3 Bluemoon\n\n59) Jesse: Sacrifice G3 Schnook\nBuild R1 Squa\nBuild R1 Squa\nBuild G3 Schnook\n\n60) sordros: Build B1 Verdesia\n\n61) MikeYarrum: Build Y2 Osaka\n\n62) zoltar: Discover Y3 Bluemoon B2 Blueberry\n\n63) Jesse: Trade G3 R3 Schnook\n\n64) sordros: Build G3 Sordros\n\n65) MikeYarrum: Build R2 Osaka\n\n66) zoltar: Build R2 Zoltar\n\n67) Jesse: Sacrifice Y2 Boz\nMove R3 Schnook Bluemoon\nMove R3 Bluemoon Sordros\n\n68) Jesse: Attack G3W Sordros\n\n69) MikeYarrum: Discover Y1 Osaka R3 Kimura\n\tJesse: Hrm. That's pretty uncool, in a sinister game. At least I didn't have to make a big, crippling sacrifice to get in there.\n\n70) zoltar: Move G2 Bluemoon Sordros\nCatastrophe Sordros G\n\tsordros: Oops, my mistake Jesse... This is my first sinister game. I thought it would grant you the win if I resigned. I apologize.\n\n71) Jesse: Attack Y3W Sordros\n\n72) MikeYarrum: Sacrifice Y2 Osaka\nMove Y1 Kimura Sordros\nMove Y1 Verdosia Sordros\nCatastrophe Sordros Yellow\n\tJesse: Okay, Sordros. Now you know. Of course, if it *had* given me the win, that would have been unfair to someone who might have been able to defeat their target before me. (You never know!) In a sinister game, it's best to stick it out.\n\tJesse: On another topic, you do know what your big mistake was, don't you?\n\tzoltar: Not as big as mine, which was to weaken but not obliterate Sordros after his big mistake!\n\n73) zoltar: Move R2 Zoltar Verdesia\n\tJesse: Indeed, Zoltar. That's risky business. You did profit well from it, however.\n\n74) Jesse: Discover R1 Squa G1 Rutabaga\n\n75) MikeYarrum: Move Y1 Mikeyarrum Osaka\n\n76) zoltar: Move Y3 Blueberry Rutabaga\n\n77) Jesse: Attack B1W Sordros\n\n78) MikeYarrum: Move R2 Osaka Boz\n\n79) zoltar: Build R2 Verdesia\n\n80) Jesse: Move Y1 Boz Sordros\n\n81) MikeYarrum: Build Y1 Osaka\n\n82) zoltar: Sacrifice R2 Verdesia\nAttack B1W Verdesia\nAttack R1S Rutabaga\n\n83) Jesse: Build Y1 Jesse\n\n84) MikeYarrum: Build Y2 Verdosia\n\n85) zoltar: Attack B1W Verdesia\n\n86) Jesse: Move B1 Sordros Squa\n\n87) MikeYarrum: Build Y2 Mikeyarrum\n\n88) zoltar: Build R2 Rutabaga\n\n89) Jesse: Trade Y3 G3 Jesse\n\n90) MikeYarrum: Sacrifice Y2 Verdosia\nMove Y1 Osaka Squa\nMove Y1 Osaka Squa\n\tzoltar: Can anyone see the stashes at the top? I click on refresh and then tried another computer, but they don't show up for me.\n\tMikeYarrum: I can't. It's a bug that's hit another Homeworlds game I'm in.\n\tAaron: Had a major permissions snafu the other day. I missed this directory. Fixed.\n\n91) zoltar: Move Y2 Bluemoon Squa\nCatastrophe Squa Y\n\n92) Jesse: Sacrifice G2 Schnook\nBuild R2 Sordros\nBuild R3 Squa\n\n93) MikeYarrum: Build R3 Osaka\n\n94) zoltar: Move R1 Rutabaga Squa\nCatastrophe Squa R\n\tJesse: <sigh> Nothing like being consistently teamed against to spoil my game. Congratulations to Zoltar on his impending win. I only hope it's premature. XD\n\tMikeYarrum: Well, he wins pretty much every game he and I play against each other. Why should this be any different?\n\tzoltar: Actually, up until this move, I thought Jesse had the game, but seeing those two y1 ships, I had no choice but to sac my y2. Now I'm stronger, but it's far from over, as now that I've prevented you from wiping out the yellows of MikeYarrum's homeworld, Mike is stronger as well, and has a chance to attack me if I'm overtaxed going after the Jesse homeworld. Btw, I've never won one of these multi-player games yet, and Mike, I'm having as hard a time with Jesse in one-to-one games as you are with me (wait till you play TwoShort -- you won't even see it coming and then BOOM), so you have a reasonable chance here. I have less of an advantage now than Jesse had 3 moves ago. My biggest advantage is that you might not get the timing and sharp tactics right to attack me just when I'm weak and sacrificing to attack Jesse, but if you do, you could pull off the win, letting us go at it while you build and then striking at me at the right moment when I'm weak.\n\n95) Jesse: Move R3 Sordros Verdesia\n\tJesse: Mike, I believe it's in both of our interests for everyone to get stronger at this point. That may even make what Zoltar says about not having a big advantage true.\r\n\r\nZoltar, I think you're nuts to think I had a big advantage, before. Maybe I could have, if Mike hadn't blasted yellow at Sordros. After that, I'd spent about 4 turns on that attack with no profit (and minus a Y2 sacrifice) to show for it, and had ship distribution problems besides. Having that b1 at Sordros was a particular problem, given your then-impending collection of blues at Verdesia. Besides that, you had a significant lead in production potential (close to achieving a factory lock-out).\n\n96) MikeYarrum: Build Y1 Verdosia\n\n97) zoltar: Trade B1 R1 Verdesia\n\tJesse: Argh. I'm blind. That'll teach me to chat and play at the same time, I suppose. :P\n\tzoltar: Well, it's not like it's a real time game and you don't have time for both! Now Mike has the strongest fleet...\n\n98) Jesse: Sacrifice B1 Squa\nTrade R3 Y3 Verdesia\n\n99) MikeYarrum: Build R1 Boz\n\n100) zoltar: Sacrifice G3 Zoltar\nBuild R1 Verdesia\nBuild R3 Rutabaga\nBuild R3 Zoltar\n\n101) Jesse: Sacrifice G1 Jesse\nBuild R3 Sordros\n\n102) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove R1 Boz Rutabaga\nMove R2 Boz Rutabaga\nCatastrophe Rutabaga Red\n\n103) zoltar: Sacrifice Y3 Rutabaga\nMove R1 Zoltar Bluemoon\nMove R1 Verdesia Sordros\nMove R1 Verdesia Sordros\nCatastrophe Sordros R\n\n104) Jesse: Trade Y1 R1 Sordros\n\n105) MikeYarrum: Sacrifice Y1 Verdosia\nMove R3 Osaka Verdosia\n\n106) zoltar: Sacrifice R2 Verdesia\nPass\nPass\n\n107) Jesse: Build G1 Jesse\n\n108) MikeYarrum: Build R1 Verdosia\n\n109) zoltar: Build G1 Zoltar\n\n110) Jesse: Trade G1 R1 Jesse\n\n111) MikeYarrum: Build R2 Osaka\n\n112) zoltar: Build R2 Bluemoon\n\tMikeYarrum: I hate it when this happens - three pointers are so hard to get.\n\tzoltar: Hey, you do have three of them, you know!\n\tzoltar: b g1 zoltar\n\n113) Jesse: Sacrifice R1 Jesse\nAttack B1E Verdesia\n\n114) MikeYarrum: Build Y1 Verdosia\n\n115) zoltar: Trade R2 Y2 Bluemoon\n\n116) Jesse: Build G1 Jesse\n\n117) MikeYarrum: Build Y1 Mikeyarrum\n\n118) zoltar: Trade G1 B1 Zoltar\n\n119) Jesse: Build B1 Verdesia\n\n120) MikeYarrum: Move Y1 Verdosia Osaka\n\n121) zoltar: Move B1 Zoltar Bluemoon\n\n122) Jesse: Discover B1 Verdesia G1 Gortisol\n\n123) MikeYarrum: Discover R2 Osaka B3 Yukari\n\n124) zoltar: Discover B1 Bluemoon G1 Greenpea\n\n125) Jesse: Discover G1 Jesse Y2 Bert\n\n126) MikeYarrum: Build B1 Mikeyarrum\n\n127) zoltar: Build G2 Bluemoon\n\n128) Jesse: Build G2 Jesse\n\n129) MikeYarrum: Move B1 Mikeyarrum Osaka\n\n130) zoltar: Build B2 Greenpea\n\n131) Jesse: Build B2 Gortisol\n\n132) MikeYarrum: Build B2 Osaka\n\n133) zoltar: Trade B1 Y1 Greenpea\n\n134) Jesse: Trade B2 Y2 Gortisol\n\n135) MikeYarrum: Move Y3 Mikeyarrum Osaka\n\n136) zoltar: Sacrifice G2 Bluemoon\nBuild Y2 Bluemoon\nBuild Y3 Greenpea\n\n137) Jesse: Sacrifice G2 Jesse\nBuild Y3 Jesse\nBuild Y3 Gortisol\n\n138) MikeYarrum: Trade B2 G2 Osaka\n\n139) zoltar: Build G2 Zoltar\n\n140) Jesse: Build G2 Jesse\n\n141) MikeYarrum: Build R1 Osaka\n\tMikeYarrum: This is more complicated than I expected it would get...\n\n142) zoltar: Discover G2 Zoltar B3 Regula\n\n143) Jesse: Trade Y2 R2 Gortisol\n\n144) MikeYarrum: Build Y2 Verdosia\n\n145) zoltar: Build R2 Bluemoon\n\n146) Jesse: Sacrifice G2 Jesse\nBuild R2 Gortisol\nBuild R3 Sordros\n\n147) MikeYarrum: Sacrifice Y2 Verdosia\nMove R3 Verdosia Zoltar\nMove R2 Yukari Zoltar\n\n148) zoltar: Attack R3N Zoltar\n\n149) Jesse: Trade R3 G3 Sordros\n\n150) MikeYarrum: Sacrifice Y3 Osaka\nMove R2 Osaka Verdosia\nMove Y2 Verdosia Zoltar\nMove R1 Verdosia Zoltar\nCatastrophe Zoltar Red\n\n151) zoltar: Sacrifice G3 Bluemoon\nBuild G2 Regula\nBuild G2 Regula\nBuild G3 Zoltar\n\n152) Jesse: Sacrifice Y3 Jesse\nMove R2 Gortisol Bert\nDiscover G1 Bert Y3 Superbert\nMove Y3 Gortisol Regula\n\n153) MikeYarrum: Sacrifice G2 Osaka\nBuild Y2 Osaka\nBuild Y3 Mikeyarrum\n\n154) zoltar: Sacrifice Y2 Bluemoon\nMove B2 Greenpea Mikeyarrum\nMove Y1 Greenpea Mikeyarrum\n\n155) Jesse: Sacrifice G3 Sordros\nBuild G2 Superbert\nBuild R1 Gortisol\nBuild R2 Sordros\n\n156) MikeYarrum: Sacrifice R2 Verdosia\nAttack Y1E Mikeyarrum\nAttack B2E Mikeyarrum\n\n157) zoltar: Sacrifice Y2 Bluemoon\nMove R1 Bluemoon Zoltar\nMove Y3 Greenpea Mikeyarrum\nCatastrophe Mikeyarrum Y\n\tzoltar: Well. since you crippled me and now I am doomed in any case, I will emotionally counterattack your homeworld in a blind jihad, Mike!\n\n158) Jesse: Sacrifice Y3 Verdesia\nMove B1 Gortisol Mikeyarrum\nMove B1 Verdesia Gortisol\nMove B1 Gortisol Mikeyarrum\nCatastrophe Mikeyarrum B\n\n\tJesse: Here, I've got my doomsday machine all set up, but need to take a couple of extra turns to make sure Zoltar can't blast the green marker after I blast the red... and he opens up the opportunity for me to blast ships instead, making my last few moves irreleant.\n\tJesse: Good game, guys.\n\tMikeYarrum: Well, it was wait until you got your machine in gear, or try to catch zoltar with a surprise move. In retrospect, it might not have been the best idea, but things were sticky in this game since way back.\n\nHomeworlds Online (SDG# 7555)\nVariants: "Sinister"\nStarted: 2007.4.27, Ended: 2007.5.15\nParticipants: Jesse (S), mneme (N)\nWinner: Jesse\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Jesse: Homeworld B1 R3 G3\n\n3) mneme: Build G1 Mneme\n\tJesse: Hello, and have a good game.\n\tmneme: You too. (hmm. Another symetrical game.)\n\n4) Jesse: Build G1 Jesse\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) mneme: Build G1 Mneme\n\n8) Jesse: Build G1 Jesse\n\n9) mneme: Discover G1 Mneme B3 Tsalmoth\n\n10) Jesse: Discover G1 Jesse B2 Eliot\n\n11) mneme: Build Y1 Mneme\n\tJesse: Now the little asymmetries begin to build.\n\n12) Jesse: Build Y2 Jesse\n\tmneme: Yup.\r\n\n\tmneme: You've got tempo here. Interesting.\n\n13) mneme: Build Y2 Mneme\n\n14) Jesse: Build Y2 Jesse\n\n15) mneme: Move Y1 Mneme Tsalmoth\n\n16) Jesse: Trade Y1 B1 Jesse\n\n17) mneme: Discover Y1 Mneme B3 Jhegalla\n\n18) Jesse: Move Y2 Jesse Eliot\n\n19) mneme: Build G1 Mneme\n\n20) Jesse: Build G2 Jesse\n\n21) mneme: Discover G1 Mneme Y3 Yendi\n\n22) Jesse: Discover G2 Jesse B2 Tommy\n\n23) mneme: Sacrifice G3 Mneme\nBuild Y1 Jhegalla\nBuild Y3 Mneme\nBuild Y3 Tsalmoth\n\n24) Jesse: Build G2 Jesse\n\n25) mneme: Trade Y1 R1 Tsalmoth\n\n26) Jesse: Trade G2 R2 Jesse\n\n27) mneme: Build G2 Tsalmoth\n\n28) Jesse: Build G2 Jesse\n\n29) mneme: Build G3 Yendi\n\n30) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild G3 Eliot\nBuild Y1 Eliot\n\n31) mneme: Trade Y1 B1 Jhegalla\n\n32) Jesse: Sacrifice Y2 Eliot\nMove G1 Eliot Yendi\nMove G2 Tommy Yendi\nCatastrophe Yendi G\n\n33) mneme: Sacrifice G2 Tsalmoth\nBuild R1 Tsalmoth\nBuild B2 Jhegalla\n\n34) Jesse: Discover B1 Jesse Y2 Emmet\n\n35) mneme: Discover Y2 Mneme B3 Holdout\n\n36) Jesse: Move R2 Jesse Eliot\n\n37) mneme: Trade B2 G2 Jhegalla\n\n38) Jesse: Sacrifice G3 Jesse\nBuild Y1 Eliot\nBuild Y3 Jesse\nBuild R2 Eliot\n\n39) mneme: Move R1 Tsalmoth Emmet\n\n40) Jesse: Sacrifice R2 Eliot\nAttack R1 Emmet\nPass\n\n41) mneme: Build R2 Tsalmoth\n\tmneme: bah. was wondering about that.\n\n42) Jesse: Build G1 Jesse\n\n43) mneme: Discover R2 Tsalmoth G2 Orca\n\tmneme: ok, that was fairly dumb. \n\n44) Jesse: Sacrifice G2 Jesse\nBuild R2 Eliot\nBuild R3 Emmet\n\n45) mneme: Build R3 Orca\n\n46) Jesse: Move R3 Emmet Jhegalla\n\n47) mneme: Sacrifice Y2 Holdout\nMove G2 Jhegalla Emmet\nMove B1 Jhegalla Emmet\n\tJesse: That's weird; my move got rolled back.\n\n48) Jesse: Attack Y1 Jhegalla\n\n49) mneme: Sacrifice R2 Orca\nAttack B1 Emmet\nAttack R1 Emmet\n\n50) Jesse: Move R3 Jhegalla Emmet\n\n51) mneme: Sacrifice G2 Emmet\nBuild R2 Orca\nBuild B2 Emmet\n\tmneme: It probably crossed with my undo.\r\n\n\tJesse: I kind of doubt that's it. Another of my games was rolled back 3 moves, all of which occurred within a few minutes of my move in this game which was rolled back. But who knows?\n\n52) Jesse: Build Y2 Eliot\n\n53) mneme: Move G1 Tsalmoth Mneme\n\tmneme: dunno. maybe a db hiccough?\r\n\n\n54) Jesse: Build G1 Eliot\n\n55) mneme: Sacrifice Y3 Tsalmoth\nMove R3 Orca Jesse\nMove B2 Emmet Jesse\nMove R1 Emmet Jesse\n\n56) Jesse: Sacrifice R2 Eliot\nAttack R3 Jesse\nAttack B1 Emmet\n\n57) mneme: Sacrifice Y3 Mneme\nMove R1 Tsalmoth Orca\nMove R1 Orca Jesse\nMove B1 Emmet Jesse\nCatastrophe Jesse R\n\n58) Jesse: Sacrifice R2 Eliot\nAttack B1 Jesse\nAttack B2 Jesse\n\n\tJesse: I know I can save a turn by leaving them there. I just feel better this way.\n\tmneme: You were winning sufficiently that I figured it was worth launching a suicide attack on the hope that you'd make a mistake -- thanks for the game! (You making Origins?)\n\tJesse: I certainly can't blame you for launching a desperation attack. I was in a fine position to squeeze you slowly out of the game. It was a good game, thanks.\n\tJesse: And yes, I do plan to attend Origins. Do I know you?\n\tmneme: We've met. Joshua Kronengold. I made the Dicehouse set.\n\tJesse: Ah, yes. It's nice to make the connection between you and your SDG name. See you at Origins!\n\tmneme: Heh. I actually use "mneme" nearly everywhere (including my username on the lists). And definitely.\r\n\n\nHomeworlds Online (SDG# 7570)\nVariants: "Hard time"\nStarted: 2007.4.28, Ended: 2007.5.24\nParticipants: TwoShort (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld Y1 B3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) TwoShort: Build G1 Twoshort\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) TwoShort: Build G1 Twoshort\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n9) MikeYarrum: Discover Y2 Mikeyarrum B3 Nyamo\n\n10) TwoShort: Build G1 Twoshort\n\n11) MikeYarrum: Build G2 Mikeyarrum\n\n12) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n13) MikeYarrum: Build G3 Mikeyarrum\n\n14) TwoShort: Trade G2 Y2 Bluonia\n\n15) MikeYarrum: Move G3 Mikeyarrum Nyamo\n\n16) TwoShort: Discover G1 Twoshort B2 Borbor\n\n17) MikeYarrum: Build G2 Nyamo\n\n18) TwoShort: Trade G1 B1 Bluonia\n\n19) MikeYarrum: Discover G2 Mikeyarrum Y3 Sakaki\n\n20) TwoShort: Discover B1 Bluonia Y3 Yoyodyne\n\n21) MikeYarrum: Sacrifice G2 Nyamo\nBuild Y2 Nyamo\nBuild Y3 Mikeyarrum\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Bluonia\nBuild G2 Borbor\nBuild G3 Twoshort\n\n23) MikeYarrum: Trade G3 R3 Nyamo\n\n24) TwoShort: Trade G2 R2 Bluonia\n\tTwoShort: I'll be travelling on and off for the next week. Just so you don't think my slow play is *exclusively* stalling because you're kicking my ass :)\n\n25) MikeYarrum: Discover Y2 Nyamo R2 Tadakichi\n\tMikeYarrum: No problem. Thanks for the heads-up!\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Borbor\nBuild G3 Bluonia\nBuild G3 Twoshort\n\n27) MikeYarrum: Move R3 Nyamo Borbor\n\n28) TwoShort: Sacrifice B1 Yoyodyne\nTrade G3 Y3 Bluonia\n\n29) MikeYarrum: Build G3 Sakaki\n\n30) TwoShort: Sacrifice Y3 Bluonia\nMove Y2 Bluonia Nyamo\nMove Y2 Nyamo Mikeyarrum\nMove R2 Bluonia Twoshort\nCatastrophe Mikeyarrum Yellow\n\n31) MikeYarrum: Attack G2 Borbor\n\n32) TwoShort: Trade G1 B1 Twoshort\n\n33) MikeYarrum: Attack G2 Borbor\n\n34) TwoShort: Build B1 Twoshort\n\n35) MikeYarrum: Sacrifice Y2 Tadakichi\nMove G2 Borbor Twoshort\nMove G2 Borbor Twoshort\n\n\tTwoShort: OK, now I'm just stalling... Excellent game, well done! I'm not sure whether you're even aware of my "ZPIP Challenge", but this makes you the probable winner... (My game vs. Keith started before this one, but I'm pretty confident I'll win that one.)\n\tMikeYarrum: Cool, thanks! As you probably figured out, I learned almost everything I know about Homeworlds through trial and (mostly) error on SDG, so it's cool to finally see myself making a bit of progress.\r\n\r\nIt's funny how zoltar has warned me about playing against you, when I've yet to win a game against him. \r\n\r\nAnd a quick Google led me to a blog which I guess is yours. Good job on those zero pointers! I'd make some myself, but I'm not ready to butcher my 3-pointers.\n\nHomeworlds Online (SDG# 7582)\nStarted: 2007.4.29, Ended: 2007.5.1\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld B1 G3 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build Y1 Zoltar\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) zoltar: Build Y1 Zoltar\n\n7) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n8) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n9) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n10) zoltar: Build Y2 Zoltar\n\n11) MikeYarrum: Build B1 Mikeyarrum\n\n12) zoltar: Discover Y1 Zoltar G2 Greendale\n\n13) MikeYarrum: Discover B1 Mikeyarrum G3 Yomi\n\n14) zoltar: Build Y2 Greendale\n\n15) MikeYarrum: Build B2 Yomi\n\n16) zoltar: Build Y2 Zoltar\n\n17) MikeYarrum: Discover B1 Mikeyarrum Y3 Kagura\n\n18) zoltar: Trade Y3 R3 Zoltar\n\n19) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n20) zoltar: Build Y3 Zoltar\n\n21) MikeYarrum: Trade B2 G2 Yomi\n\n22) zoltar: Trade Y3 G3 Zoltar\n\n23) MikeYarrum: Sacrifice G2 Yomi\nBuild B2 Kagura\nBuild B2 Yomi\n\n24) zoltar: Build Y3 Greendale\n\n25) MikeYarrum: Build B3 Yomi\n\n26) zoltar: Move Y3 Greendale Yomi\n\n\tMikeYarrum: Your game. I figured you wouldn't mind, since we've got a few others going.\n\tzoltar: That's cool. I didn't see the winning move at first, and then when I realized that your R3 was 'pinned' and thus just like not having any red pieces at all, I saw that I could simply win all three blue ships the next move and you could do nothing to stop me!\n\tMikeYarrum: I really should have moved another ship to my homeworld, but I kept putting it off with the idea that I had to utilize every move.\n\nHomeworlds Online (SDG# 7591)\nStarted: 2007.4.30, Ended: 2007.5.1\nParticipants: Forscyvus (S), lackerhill (N)\nWinner: lackerhill\n\n1) lackerhill: Homeworld G1 B3 R3\n\n2) Forscyvus: Homeworld G3 Y2 B3\n\n3) lackerhill: Build R1 Lackerhill\n\n4) Forscyvus: Build B1 Forscyvus\n\n5) lackerhill: Trade R1 Y1 Lackerhill\n\n6) Forscyvus: Trade B1 Y1 Forscyvus\n\n7) lackerhill: Build R1 Lackerhill\n\n8) Forscyvus: Discover Y1 Forscyvus B1 Omgflotzorz\n\n9) lackerhill: Trade R1 B1 Lackerhill\n\n10) Forscyvus: Build B1 Forscyvus\n\n11) lackerhill: Build B2 Lackerhill\n\n12) Forscyvus: Trade B1 G1 Forscyvus\n\n13) lackerhill: Discover B2 Lackerhill Y2 Foxtrot\n\n14) Forscyvus: Move G1 Forscyvus Omgflotzorz\n\n15) lackerhill: Build B1 Lackerhill\n\n16) Forscyvus: Build B2 Forscyvus\n\n17) lackerhill: Trade B1 G1 Lackerhill\n\n18) Forscyvus: Trade B2 Y2 Forscyvus\n\n19) lackerhill: Move G1 Lackerhill Foxtrot\n\n20) Forscyvus: Move Y2 Forscyvus Omgflotzorz\n\n21) lackerhill: Build B1 Foxtrot\n\n22) Forscyvus: Trade Y2 G2 Omgflotzorz\n\n23) lackerhill: Build B2 Lackerhill\n\n24) Forscyvus: Discover G2 Omgflotzorz Y3 Dontkillme\n\n25) lackerhill: Sacrifice B2 Lackerhill\nTrade B1 Y1 Lackerhill\nTrade B2 Y2 Foxtrot\n\n26) Forscyvus: Build G2 Omgflotzorz\n\n27) lackerhill: Build Y3 Lackerhill\n\n28) Forscyvus: Build Y3 Omgflotzorz\n\n29) lackerhill: Sacrifice Y3 Lackerhill\nMove R3 Lackerhill Foxtrot\nMove R3 Foxtrot Omgflotzorz\nMove R3 Omgflotzorz Forscyvus\n\n30) Forscyvus: Sacrifice G2 Omgflotzorz\nBuild B1 Forscyvus\nBuild Y3 Omgflotzorz\n\n\n31) lackerhill: Attack B3S Forscyvus\n\n\nHomeworlds Online (SDG# 7585)\nStarted: 2007.4.30, Ended: 2007.5.2\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld G2 R3 B3\n\n2) zoltar: Homeworld Y1 B2 G3\n\n3) MikeYarrum: Build B1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Build B1 Mikeyarrum\n\n6) zoltar: Discover G1 Zoltar B3 Bluemoon\n\n7) MikeYarrum: Trade B1 Y1 Mikeyarrum\n\n8) zoltar: Build G1 Zoltar\n\n9) MikeYarrum: Discover B1 Mikeyarrum Y1 Tomo\n\n10) zoltar: Build G1 Bluemoon\n\n11) MikeYarrum: Build Y2 Mikeyarrum\n\n12) zoltar: Build G2 Bluemoon\n\n13) MikeYarrum: Build Y2 Mikeyarrum\n\n14) zoltar: Trade G2 Y2 Bluemoon\n\n15) MikeYarrum: Trade Y2 G2 Mikeyarrum\n\n16) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bluemoon\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n17) MikeYarrum: Move G2 Mikeyarrum Tomo\n\n18) zoltar: Trade G1 R1 Zoltar\n\tzoltar: Threatening mate-in-one with the old "Bluebird", eh?\n\n19) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\tMikeYarrum: Gotta keep you on your toes somehow. ;)\n\n20) zoltar: Discover G2 Bluemoon B2 Blueberry\n\n21) MikeYarrum: Build G1 Tomo\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\nBuild Y1 Bluemoon\n\n23) MikeYarrum: Build B1 Tomo\n\n24) zoltar: Trade G3 Y3 Blueberry\n\n25) MikeYarrum: Trade B3 Y3 Mikeyarrum\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueberry\nBuild Y2 Blueberry\n\n27) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove G1 Tomo Blueberry\nMove G2 Tomo Blueberry\nCatastrophe Blueberry Green\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Bluemoon\nBuild G1 Zoltar\n\n29) MikeYarrum: Discover B1 Tomo G3 Yomi\n\tzoltar: Well if you are going to blow up my greens, I'll go for a lock on the Yellow Tech. Warp drive is mine!\n\n30) zoltar: Sacrifice Y2 Blueberry\nMove Y2 Bluemoon Tomo\nDiscover G1 Bluemoon R1 Redrover\n\n31) MikeYarrum: Build Y2 Mikeyarrum\n\n32) zoltar: Sacrifice Y3 Blueberry\nMove Y1 Bluemoon Tomo\nMove Y1 Tomo Mikeyarrum\nMove Y2 Tomo Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n33) MikeYarrum: Trade B1 Y1 Yomi\n\n34) zoltar: Sacrifice Y2 Blueberry\nMove Y3 Bluemoon Redrover\nMove Y3 Redrover Mikeyarrum\n\n35) MikeYarrum: Move B1 Tomo Mikeyarrum\n\n36) zoltar: Trade G3 R3 Zoltar\n\n37) MikeYarrum: Pass\n\n38) zoltar: Sacrifice R3 Zoltar\nAttack R1 Mikeyarrum\nAttack B1 Mikeyarrum\nPass\n\n\nHomeworlds Online (SDG# 7592)\nStarted: 2007.5.1, Ended: 2007.5.3\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld G3 Y2 B3\n\n2) zoltar: Homeworld R1 B2 G3\n\n3) MikeYarrum: Build B1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Build B1 Mikeyarrum\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) MikeYarrum: Discover B1 Mikeyarrum G1 Tomo\n\n8) zoltar: Build Y1 Zoltar\n\n9) MikeYarrum: Trade B1 Y1 Tomo\n\n10) zoltar: Trade Y1 B1 Zoltar\n\n11) MikeYarrum: Trade B1 G1 Mikeyarrum\n\n12) zoltar: Build B1 Zoltar\n\n13) MikeYarrum: Build B1 Mikeyarrum\n\n14) zoltar: Trade B1 R1 Zoltar\n\n15) MikeYarrum: Move B1 Mikeyarrum Tomo\n\n16) zoltar: Discover B1 Zoltar G3 Greenbelt\n\n17) MikeYarrum: Build G1 Mikeyarrum\n\n18) zoltar: Build G2 Zoltar\n\n19) MikeYarrum: Discover G1 Mikeyarrum R1 Osaka\n\n20) zoltar: Build R2 Zoltar\n\n21) MikeYarrum: Build G2 Osaka\n\n22) zoltar: Move R2 Zoltar Greenbelt\n\n23) MikeYarrum: Sacrifice B1 Tomo\nTrade G2 R2 Osaka\n\n24) zoltar: Discover R1 Zoltar Y3 Yellowstone\n\n25) MikeYarrum: Build G2 Osaka\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild R2 Yellowstone\n\n27) MikeYarrum: Sacrifice G2 Osaka\nBuild Y1 Tomo\nBuild Y2 Tomo\n\n28) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild R3 Greenbelt\n\n29) MikeYarrum: Sacrifice Y1 Tomo\nMove R2 Osaka Mikeyarrum\n\n30) zoltar: Sacrifice G2 Zoltar\nBuild R3 Yellowstone\nBuild R3 Greenbelt\n\n31) MikeYarrum: Sacrifice Y2 Tomo\nMove R2 Mikeyarrum Tomo\nMove R2 Tomo Greenbelt\nCatastrophe Greenbelt Red\n\n32) zoltar: Sacrifice Y2 Zoltar\nMove R3 Yellowstone Osaka\nMove R3 Osaka Mikeyarrum\n\n33) MikeYarrum: Pass\n\n34) zoltar: Sacrifice R2 Yellowstone\nAttack G1 Mikeyarrum\nAttack B3 Mikeyarrum\n\n\nHomeworlds Online (SDG# 7600)\nStarted: 2007.5.1, Ended: 2007.6.11\nParticipants: KaneGreyfeather (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) KaneGreyfeather: Homeworld G3 Y2 B3\n\tts52: Have a great game!\n\n3) ts52: Build G1 Ts52\n\n4) KaneGreyfeather: Build B1 Kanegreyfeather\n\n5) ts52: Trade G1 B1 Ts52\n\n6) KaneGreyfeather: Build B2 Kanegreyfeather\n\n7) ts52: Build G1 Ts52\n\n8) KaneGreyfeather: Trade B1 R1 Kanegreyfeather\n\n9) ts52: Trade G1 R1 Ts52\n\n\nHomeworlds Online (SDG# 7599)\nStarted: 2007.5.1, Ended: 2007.5.20\nParticipants: MikeYarrum (S), KaneGreyfeather (N)\nWinner: MikeYarrum\n\n1) KaneGreyfeather: Homeworld G3 Y2 B3\n\n2) MikeYarrum: Homeworld R1 G2 B3\n\n3) KaneGreyfeather: Build B1 Kanegreyfeather\n\n4) MikeYarrum: Build B1 Mikeyarrum\n\n5) KaneGreyfeather: Trade B1 R1 Kanegreyfeather\n\n6) MikeYarrum: Trade B1 Y1 Mikeyarrum\n\n7) KaneGreyfeather: Build B1 Kanegreyfeather\n\n8) MikeYarrum: Build B1 Mikeyarrum\n\n9) KaneGreyfeather: Trade B1 G1 Kanegreyfeather\n\n10) MikeYarrum: Build Y1 Mikeyarrum\n\n11) KaneGreyfeather: Build G1 Kanegreyfeather\n\n12) MikeYarrum: Trade B1 G1 Mikeyarrum\n\n13) KaneGreyfeather: Discover G1 Kanegreyfeather B1 Thenewworld\n\n14) MikeYarrum: Build G2 Mikeyarrum\n\n15) KaneGreyfeather: Build G2 Thenewworld\n\n16) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n17) KaneGreyfeather: Trade G2 Y2 Thenewworld\n\n18) MikeYarrum: Build B1 Mikeyarrum\n\n19) KaneGreyfeather: Build Y1 Thenewworld\n\n20) MikeYarrum: Build G2 Sakaki\n\n21) KaneGreyfeather: Build G3 Thenewworld\n\n22) MikeYarrum: Sacrifice B1 Mikeyarrum\nTrade G2 Y2 Sakaki\n\n23) KaneGreyfeather: Build G2 Kanegreyfeather\n\n24) MikeYarrum: Build G3 Sakaki\n\n25) KaneGreyfeather: Move Y1 Thenewworld Kanegreyfeather\n\n26) MikeYarrum: Sacrifice Y2 Sakaki\nMove G1 Sakaki Thenewworld\nMove G1 Thenewworld Kanegreyfeather\nCatastrophe Kanegreyfeather Green\n\n27) KaneGreyfeather: Build Y2 Thenewworld\n\n28) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n\nHomeworlds Online (SDG# 7610)\nStarted: 2007.5.3, Ended: 2007.5.10\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld Y2 B3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) zoltar: Build Y2 Zoltar\n\n9) MikeYarrum: Discover Y2 Mikeyarrum G3 Yomi\n\n10) zoltar: Discover Y1 Zoltar G1 Greendale\n\n11) MikeYarrum: Build Y3 Yomi\n\n12) zoltar: Build Y3 Greendale\n\n13) MikeYarrum: Build G1 Mikeyarrum\n\n14) zoltar: Discover Y3 Greendale B3 Blueridge\n\n15) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n16) zoltar: Trade Y2 R2 Zoltar\n\n17) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n18) zoltar: Build R1 Zoltar\n\n19) MikeYarrum: Build R1 Mikeyarrum\n\n20) zoltar: Trade R1 B1 Zoltar\n\n21) MikeYarrum: Discover Y2 Yomi B1 Chiyo\n\n22) zoltar: Build B1 Zoltar\n\n23) MikeYarrum: Trade Y2 B2 Chiyo\n\n24) zoltar: Move B1 Zoltar Greendale\n\n25) MikeYarrum: Discover R1 Mikeyarrum B3 Nyamo\n\n26) zoltar: Build B2 Greendale\n\n27) MikeYarrum: Trade B2 Y2 Chiyo\n\n28) zoltar: Move B2 Greendale Sakaki\n\n29) MikeYarrum: Move Y3 Yomi Greendale\n\n30) zoltar: Trade B1 Y1 Greendale\n\n31) MikeYarrum: Discover Y3 Greendale G3 Yomi2\n\n32) zoltar: Build Y2 Greendale\n\n33) MikeYarrum: Move G1 Sakaki Chiyo\n\n34) zoltar: Trade B2 G2 Sakaki\n\n35) MikeYarrum: Build G1 Chiyo\n\n36) zoltar: Build G2 Sakaki\n\n37) MikeYarrum: Sacrifice Y2 Chiyo\nMove G1 Chiyo Sakaki\nMove G1 Chiyo Sakaki\nCatastrophe Sakaki Green\n\n38) zoltar: Discover Y1 Greendale G2 Greenhills\n\n39) MikeYarrum: Build G1 Mikeyarrum\n\n40) zoltar: Build Y2 Greenhills\n\n41) MikeYarrum: Discover G1 Mikeyarrum Y3 Kagura\n\n42) zoltar: Build B1 Zoltar\n\n43) MikeYarrum: Build G1 Mikeyarrum\n\n44) zoltar: Build G2 Zoltar\n\n45) MikeYarrum: Build G2 Kagura\n\n46) zoltar: Trade Y3 R3 Blueridge\n\n47) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\n48) zoltar: Trade G3 R3 Zoltar\n\n49) MikeYarrum: Build G3 Mikeyarrum\n\n50) zoltar: Build G3 Zoltar\n\n51) MikeYarrum: Discover G1 Kagura B1 Chiyo\n\n52) zoltar: Move G3 Zoltar Chiyo\n\n53) MikeYarrum: Trade G1 R1 Chiyo\n\n54) zoltar: Move Y2 Greendale Nyamo\n\n55) MikeYarrum: Build R2 Mikeyarrum\n\n56) zoltar: Sacrifice R2 Zoltar\nAttack R1 Chiyo\nAttack R1 Nyamo\n\n57) MikeYarrum: Trade R2 B2 Mikeyarrum\n\n58) zoltar: Move B1 Zoltar Greendale\n\n59) MikeYarrum: Move B2 Mikeyarrum Yomi2\n\n60) zoltar: Sacrifice Y2 Nyamo\nMove Y2 Greenhills Kagura\nMove G3 Chiyo Yomi2\n\n61) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack G3 Yomi2\n\n62) zoltar: Sacrifice Y1 Greenhills\nMove R3 Blueridge Mikeyarrum\n\n63) MikeYarrum: Sacrifice G3 Yomi2\nBuild G1 Mikeyarrum\nBuild B2 Yomi2\nBuild Y1 Yomi2\n\n64) zoltar: Attack Y3 Mikeyarrum\n\tzoltar: Hey, you can't do that and squander your only red ship!\n\n65) MikeYarrum: Sacrifice Y3 Yomi2\nMove B2 Yomi2 Greendale\nMove B2 Greendale Zoltar\nMove B2 Yomi2 Greendale\n\tMikeYarrum: Not like you weren't ahead anyway.\n\n66) zoltar: Trade Y3 G3 Mikeyarrum\nCatastrophe Mikeyarrum G\n\n\nHomeworlds Online (SDG# 7612)\nStarted: 2007.5.3, Ended: 2007.5.10\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\tMikeYarrum: I was concerned I might not be enough of a challenge, but if you keep playing against me, I must be doing something right!\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\tzoltar: It's more that I'm too much of a wimp to keep playing the best players, such as TwoShort, who destroyed me in about 10 moves last week!\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\tMikeYarrum: LOL, I guess this is hazing the new guy.\n\n8) zoltar: Build G1 Zoltar\n\n9) MikeYarrum: Build G2 Mikeyarrum\n\n10) zoltar: Sacrifice Y3 Zoltar\nDiscover G1 Zoltar Y2 Wormhole-1\nDiscover G1 Wormhole-1 Y3 Wormhole-2\nMove G1 Wormhole-2 Mikeyarrum\nCatastrophe Mikeyarrum G\n\n11) MikeYarrum: Trade Y1 G1 Mikeyarrum\n\tMikeYarrum: ... I was wondering if discovering, then abandoning a world in the same turn was legal. Quite an interesting move you've made, there.\n\n12) zoltar: Build G1 Zoltar\n\n13) MikeYarrum: Build G2 Mikeyarrum\n\n14) zoltar: Build G2 Zoltar\n\n15) MikeYarrum: Build G2 Mikeyarrum\n\tzoltar: yes, though I seem to have given you a slight advantage, as you get the first g2.\n\n16) zoltar: Trade G1 Y1 Zoltar\n\n17) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\tMikeYarrum: Sorry, had a second thought.\n\n18) zoltar: Trade G1 R1 Zoltar\n\n19) MikeYarrum: Build G1 Mikeyarrum\n\n20) zoltar: Build R1 Zoltar\n\n21) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n22) zoltar: Trade R1 B1 Zoltar\n\n23) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n24) zoltar: Build G1 Zoltar\n\n25) MikeYarrum: Discover R2 Mikeyarrum G3 Yomi\n\n26) zoltar: Discover R1 Zoltar G2 Yummy\n\n27) MikeYarrum: Build G1 Mikeyarrum\n\n28) zoltar: Discover G1 Zoltar B2 Bluemoon\n\n29) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n30) zoltar: Build G2 Bluemoon\n\n31) MikeYarrum: Build G3 Sakaki\n\n32) zoltar: Sacrifice G2 Bluemoon\nBuild G2 Bluemoon\nBuild G3 Zoltar\n\n33) MikeYarrum: Build Y1 Mikeyarrum\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y2 Zoltar\n\n35) MikeYarrum: Move Y1 Mikeyarrum Yomi\n\n36) zoltar: Sacrifice Y1 Zoltar\nMove Y2 Zoltar Bluemoon\n\n37) MikeYarrum: Build B1 Mikeyarrum\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Bluemoon\nBuild Y3 Zoltar\n\n39) MikeYarrum: Move B1 Mikeyarrum Yomi\n\n40) zoltar: Sacrifice Y2 Zoltar\nMove G1 Bluemoon Sakaki\nMove G2 Bluemoon Sakaki\nCatastrophe Sakaki G\n\n41) MikeYarrum: Build G1 Mikeyarrum\n\n42) zoltar: Discover Y1 Bluemoon G3 Yippee\n\n43) MikeYarrum: Trade Y2 R2 Mikeyarrum\n\n44) zoltar: Build Y2 Yippee\n\n45) MikeYarrum: Discover R2 Yomi G2 Chihiro\n\n46) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Bluemoon\nBuild Y3 Yippee\n\n47) MikeYarrum: Build B2 Yomi\n\n48) zoltar: Move B1 Zoltar Yummy\n\n49) MikeYarrum: Move B1 Yomi Chihiro\n\n50) zoltar: Sacrifice Y2 Bluemoon\nMove Y3 Bluemoon Yomi\nMove Y3 Yippee Chihiro\n\n51) MikeYarrum: Trade B2 Y2 Yomi\n\n52) zoltar: Sacrifice R1 Yummy\nAttack R2 Chihiro\n\n53) MikeYarrum: Build B2 Chihiro\n\n54) zoltar: Attack B2 Chihiro\n\n55) MikeYarrum: Build B2 Chihiro\n\n56) zoltar: Sacrifice R2 Chihiro\nAttack Y1 Yomi\nAttack Y2 Yomi\n\n57) MikeYarrum: Trade B2 R2 Chihiro\n\n58) zoltar: Move B2 Chihiro Yomi\n\n59) MikeYarrum: Build R1 Mikeyarrum\n\n60) zoltar: Sacrifice Y3 Zoltar\nMove B1 Yummy Yomi\nMove B1 Yomi Mikeyarrum\nMove B2 Yomi Mikeyarrum\nCatastrophe Mikeyarrum B\n\n61) MikeYarrum: Build B1 Chihiro\n\tzoltar: Retreat!!!\n\n62) zoltar: Sacrifice Y3 Yomi\nMove Y1 Yomi Mikeyarrum\nMove Y2 Yomi Mikeyarrum\nMove Y1 Yippee Mikeyarrum\nCatastrophe Mikeyarrum Y\n\tzoltar: Attack!!!\n\n\tzoltar: There's a name for the double-sacrifice to blow up both homeworld stars in consecutive moves, but I forgot what it is. An important tactic in a close game, if you don't want your opponent to have time to mount a counterattack after your first sacrifice, so you wait and then do it all at once. gg.\n\nHomeworlds Online (SDG# 7614)\nVariants: "Hard time"\nStarted: 2007.5.3, Ended: 2007.5.31\nParticipants: clockwise (S), Uglyfoot (N)\nWinner: clockwise\n\n1) Uglyfoot: Homeworld Y1 B3 G3\n\n2) clockwise: Homeworld B1 G2 Y3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) clockwise: Build Y1 Clockwise\n\n5) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n6) clockwise: Trade Y1 B1 Clockwise\n\n7) Uglyfoot: Discover Y1 Uglyfoot G2 Assembly\n\n8) clockwise: Build B1 Clockwise\n\n9) Uglyfoot: Build G1 Uglyfoot\n\n10) clockwise: Discover B1 Clockwise G3 Godzilla\n\n11) Uglyfoot: Trade G1 R1 Uglyfoot\n\n12) clockwise: Build B2 Godzilla\n\n13) Uglyfoot: Build G1 Uglyfoot\n\n14) clockwise: Trade B2 R2 Godzilla\n\n15) Uglyfoot: Build Y1 Assembly\n\n16) clockwise: Build Y2 Clockwise\n\n17) Uglyfoot: Build Y2 Assembly\n\n18) clockwise: Move Y2 Clockwise Godzilla\n\n19) Uglyfoot: Discover Y2 Assembly G3 Forward\n\n20) clockwise: Build Y2 Godzilla\n\n21) Uglyfoot: Build Y3 Forward\n\n22) clockwise: Build Y3 Clockwise\n\n23) Uglyfoot: Move Y2 Forward Clockwise\n\n24) clockwise: Discover Y3 Clockwise B3 Leviathan\n\n25) Uglyfoot: Trade Y2 B2 Clockwise\n\n26) clockwise: Trade B1 R1 Clockwise\n\n27) Uglyfoot: Discover G1 Uglyfoot B2 Exchange\n\n28) clockwise: Build Y2 Clockwise\n\tclockwise: Are you having the same problem as me, where the global reserve stash isn't showing up?\n\n29) Uglyfoot: Build G1 Exchange\n\tUglyfoot: Yes, I was.\n\n30) clockwise: Attack B2N Clockwise\n\n31) Uglyfoot: Move Y3 Forward Exchange\n\tclockwise: Hmm, yes it seems to have fixed itself.\n\n32) clockwise: Move B1 Godzilla Assembly\n\n33) Uglyfoot: Move Y1 Assembly Godzilla\n\n34) clockwise: Sacrifice R2 Godzilla\nAttack Y1N Assembly\nAttack Y1N Godzilla\n\n35) Uglyfoot: Build G1 Uglyfoot\n\n36) clockwise: Sacrifice Y2 Godzilla\nMove Y2 Godzilla Assembly\nDiscover Y1 Godzilla B2 Kraken\n\n37) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Exchange\n\n38) clockwise: Build B1 Assembly\n\n39) Uglyfoot: Discover G3 Exchange R3 Firebase\n\n40) clockwise: Sacrifice Y3 Leviathan\nMove Y1 Assembly Uglyfoot\nMove Y2 Assembly Uglyfoot\nMove Y1 Kraken Uglyfoot\nCatastrophe Uglyfoot Yellow\n\n41) Uglyfoot: Sacrifice Y3 Exchange\nMove G1 Uglyfoot Assembly\nMove G2 Uglyfoot Assembly\nMove G3 Firebase Assembly\nCatastrophe Assembly G\n\tclockwise: The green strategy was, I believe, the correct one to pursue this game, but you only started pushing it once it was too late.\n\n42) clockwise: Build B1 Clockwise\n\tUglyfoot: That clears the board...\n\n43) Uglyfoot: Build G1 Uglyfoot\n\n44) clockwise: Sacrifice Y2 Clockwise\nDiscover B1 Clockwise Y3 Mothra\nDiscover B1 Mothra G2 Mechagodzilla\n\n45) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Exchange\nBuild G3 Uglyfoot\n\n46) clockwise: Build B1 Mechagodzilla\n\n47) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n48) clockwise: Sacrifice Y3 Clockwise\nMove B2 Clockwise Uglyfoot\nMove B1 Mechagodzilla Uglyfoot\nMove B1 Mechagodzilla Uglyfoot\nCatastrophe Uglyfoot Blue\n\tUglyfoot: So I survived a couple extra turns....\n\tclockwise: Pretty much\n\tclockwise: Overall I'd say you played much better than our first game back in April. \r\n\r\nThanks for the game.\n\n\nHomeworlds Online (SDG# 7628)\nStarted: 2007.5.4, Ended: 2007.5.12\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld R2 B3 G3\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Build Y2 Ts52\n\n8) zoltar: Build Y2 Zoltar\n\n9) ts52: Build G1 Ts52\n\n10) zoltar: Build Y2 Zoltar\n\n11) ts52: Trade Y1 R1 Ts52\n\n12) zoltar: Trade Y2 R2 Zoltar\n\n13) ts52: Build G1 Ts52\n\n14) zoltar: Discover Y1 Zoltar G1 Greenpea\n\n15) ts52: Discover G1 Ts52 Y3 Sol\n\n16) zoltar: Build G2 Zoltar\n\n17) ts52: Trade G1 B1 Ts52\n\n18) zoltar: Discover G2 Zoltar Y1 Yellowjacket\n\n19) ts52: Discover Y2 Ts52 G3 Frogstar\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenpea\nBuild Y3 Zoltar\nBuild Y3 Zoltar\n\n21) ts52: Sacrifice G1 Sol\nBuild Y3 Frogstar\n\n22) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Greenpea Frogstar\nMove Y2 Greenpea Frogstar\nCatastrophe Frogstar Y\n\n23) ts52: Discover B1 Ts52 G3 Frogstar\n\n24) zoltar: Trade Y3 G3 Zoltar\n\n25) ts52: Build B1 Frogstar\n\n26) zoltar: Build Y1 Zoltar\n\n27) ts52: Build R1 Ts52\n\n28) zoltar: Build Y2 Zoltar\n\n29) ts52: Build G1 Ts52\n\n30) zoltar: Discover Y3 Zoltar G1 Greenpea\n\n31) ts52: Discover G1 Ts52 Y3 Sol\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenpea\nBuild Y2 Greenpea\nBuild Y3 Zoltar\n\n33) ts52: Move R1 Ts52 Sol\n\n34) zoltar: Move Y2 Greenpea Sol\n\n35) ts52: Build R1 Sol\n\n36) zoltar: Sacrifice R2 Zoltar\nAttack R1 Sol\nAttack R1 Sol\n\n37) ts52: Build R2 Ts52\n\n38) zoltar: Attack G1 Sol\n\n39) ts52: Move R1 Ts52 Frogstar\n\n40) zoltar: Move R1 Sol Yellowjacket\n\n41) ts52: Build R2 Frogstar\n\n42) zoltar: Build R3 Sol\n\n43) ts52: Build R3 Ts52\n\n44) zoltar: Sacrifice Y3 Greenpea\nMove R1 Yellowjacket Sol\nMove R1 Sol Ts52\nMove R1 Sol Ts52\nCatastrophe Ts52 R\n\n45) ts52: Build R1 Frogstar\n\n46) zoltar: Build Y3 Greenpea\n\n47) ts52: Trade B1 G1 Frogstar\n\n48) zoltar: Sacrifice G2 Yellowjacket\nBuild G2 Sol\nBuild G2 Sol\n\n49) ts52: Trade G3 B3 Ts52\n\n50) zoltar: Discover G1 Sol Y1 Luna\n\n51) ts52: Build B1 Frogstar\n\n52) zoltar: Build G2 Luna\n\n53) ts52: Sacrifice G1 Frogstar\nBuild B1 Ts52\n\n54) zoltar: Trade Y2 B2 Zoltar\n\n55) ts52: Discover B1 Ts52 G3 Kermit\n\n56) zoltar: Build Y2 Greenpea\n\n57) ts52: Trade B1 G1 Kermit\n\n58) zoltar: Build G3 Luna\n\n59) ts52: Trade B3 R3 Ts52\n\n60) zoltar: Sacrifice G3 Luna\nBuild G3 Luna\nBuild R1 Sol\nBuild R2 Sol\n\n61) ts52: Trade R3 B3 Ts52\n\n62) zoltar: Sacrifice B2 Zoltar\nTrade R3 B3 Sol\nTrade R2 B2 Sol\n\n63) ts52: Trade B3 R3 Ts52\n\n64) zoltar: Sacrifice G3 Luna\nBuild G3 Sol\nBuild R2 Sol\nBuild R3 Sol\n\n65) ts52: Sacrifice G1 Kermit\nBuild R3 Ts52\n\tts52: You know, this game is really hard when you don't have any yellow ships... ;) Thanks for the game.\n\n66) zoltar: Sacrifice Y3 Greenpea\nMove R1 Sol Ts52\nMove R2 Sol Ts52\nMove G3 Sol Ts52\nCatastrophe Ts52 R\n\tzoltar: Yes, when I "locked you out" of yellow tech, the game was pretty much over, and I just had to slowly build up and then destroy your homeworld (there may have been a tactically more precise faster victory, but the slow build-up was unstoppable. Thanks. Play again?\n\tts52: Sure, I'd be happy to play again. Thanks.\n\n\nHomeworlds Online (SDG# 7637)\nVariants: "Hard time"\nStarted: 2007.5.4, Ended: 2007.6.7\nParticipants: nycavri (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld R1 B2 G3\n\n2) nycavri: Homeworld B1 G3 Y3\n\n3) Lexicon: Build G1 Lexicon\n\n4) nycavri: Build Y1 Nycavri\n\n5) Lexicon: Trade G1 Y1 Lexicon\n\n6) nycavri: Trade Y1 B1 Nycavri\n\n7) Lexicon: Build G1 Lexicon\n\n8) nycavri: Build Y1 Nycavri\n\n9) Lexicon: Discover G1 Lexicon B3 Drosophila\n\n10) nycavri: Discover Y1 Nycavri G2 Deacon\n\n11) Lexicon: Build G1 Drosophila\n\n12) nycavri: Discover Y1 Deacon G3 May\n\n13) Lexicon: Build G1 Lexicon\n\n14) nycavri: Build Y1 May\n\n15) Lexicon: Build Y2 Lexicon\n\tnycavri: Looks like a bunch of games hiccoughed, but no harm done here.\n\n16) nycavri: Move Y1 May Lexicon\n\n17) Lexicon: Move Y2 Lexicon Drosophila\n\n18) nycavri: Build Y2 May\n\n19) Lexicon: Discover G1 Drosophila B2 Bostaurus\n\n20) nycavri: Trade B1 R1 Nycavri\n\n21) Lexicon: Build G2 Bostaurus\n\n22) nycavri: Attack G1 Lexicon\n\n23) Lexicon: Build G2 Drosophila\n\n24) nycavri: Build G2 Lexicon\n\n25) Lexicon: Attack G2 Lexicon\n\n26) nycavri: Build Y2 Lexicon\n\n27) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Lexicon\nBuild Y3 Drosophila\nBuild Y3 Lexicon\nCatastrophe Lexicon Yellow\n\n28) nycavri: Build Y1 Nycavri\n\n29) Lexicon: Attack G1 Lexicon\n\n30) nycavri: Trade Y1 B1 Nycavri\n\n31) Lexicon: Sacrifice Y2 Drosophila\nMove G1 Bostaurus Nycavri\nMove G2 Bostaurus Nycavri\n\n32) nycavri: Attack G2 Nycavri\n\n33) Lexicon: Sacrifice G1 Lexicon\nBuild G1 Nycavri\nCatastrophe Nycavri Green\n\n34) nycavri: Trade B1 G1 Nycavri\n\n35) Lexicon: Discover G2 Drosophila B2 Rattus\n\n36) nycavri: Build R1 Nycavri\n\n37) Lexicon: Sacrifice G3 Lexicon\nBuild G1 Rattus\nBuild G2 Drosophila\nBuild G3 Lexicon\n\n38) nycavri: Build G3 Nycavri\n\n39) Lexicon: Trade G1 B1 Rattus\n\n40) nycavri: Build R2 Nycavri\n\n41) Lexicon: Trade G1 B1 Drosophila\n\n42) nycavri: Move G1 Nycavri May\n\n43) Lexicon: Sacrifice Y3 Drosophila\nMove B1 Drosophila Nycavri\nMove G2 Rattus Nycavri\nMove B1 Rattus Nycavri\n\n44) nycavri: Attack G2 Nycavri\n\tnycavri: Well played. I think I'm now 0 for 10 now.....\n\n45) Lexicon: Sacrifice G3 Lexicon\nBuild B2 Nycavri\nBuild B2 Nycavri\nBuild B3 Nycavri\nCatastrophe Nycavri Blue\n\n\tLexicon: party in nycavri's system!\n\tLexicon: I was going to let it sit there a round, but that would just be mean. :)\r\n\r\nTook me a while to get the hang of homeworlds. And I'm still relatively bad at it. But it's the most popular game here, so there are no shortage of learning experiences...\n\nHomeworlds Online (SDG# 7636)\nVariants: "Hard time"\nStarted: 2007.5.4, Ended: 2007.6.9\nParticipants: jbj77 (S), dsheldon (N)\nWinner: dsheldon\n\n1) dsheldon: Homeworld B2 Y1 G3\n\n2) jbj77: Homeworld B1 Y3 G3\n\n3) dsheldon: Build G1 Dsheldon\n\n4) jbj77: Build G1 Jbj77\n\n5) dsheldon: Build G1 Dsheldon\n\n6) jbj77: Build G2 Jbj77\n\n7) dsheldon: Discover G1 Dsheldon Y3 Jerome\n\n8) jbj77: Discover G2 Jbj77 Y2 Alpha\n\n9) dsheldon: Trade G1 Y1 Dsheldon\n\n10) jbj77: Trade G1 Y1 Jbj77\n\n11) dsheldon: Discover Y1 Dsheldon B3 Hope\n\n12) jbj77: Build Y2 Jbj77\n\n13) dsheldon: Build G1 Dsheldon\n\n14) jbj77: Discover Y2 Jbj77 G2 Beta\n\n15) dsheldon: Trade G1 R1 Dsheldon\n\n16) jbj77: Build Y2 Beta\n\n17) dsheldon: Build G1 Dsheldon\n\tdsheldon: Somehow I have completely bungled my opening...\n\n18) jbj77: Trade Y1 R1 Jbj77\n\n19) dsheldon: Move G1 Dsheldon Hope\n\n20) jbj77: Discover Y2 Beta G3 Gamma\n\n21) dsheldon: Build G1 Dsheldon\n\n22) jbj77: Build G2 Jbj77\n\n23) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Dsheldon\nBuild Y1 Hope\nBuild Y3 Hope\n\n24) jbj77: Move Y2 Beta Hope\nCatastrophe Hope Yellow\n\n25) dsheldon: Build G2 Hope\n\n26) jbj77: Sacrifice G3 Jbj77\nBuild R1 Jbj77\nBuild R2 Jbj77\nBuild G3 Jbj77\n\n27) dsheldon: Sacrifice G3 Dsheldon\nBuild G3 Dsheldon\nBuild R2 Dsheldon\nBuild R2 Dsheldon\n\tdsheldon: I should have mentioned that I was going to be out of town Wednesday and Thursday. I'm back now!\n\n\tdsheldon: I like that plan...\n\nHomeworlds Online (SDG# 7613)\nStarted: 2007.5.5, Ended: 2007.6.3\nParticipants: MikeYarrum (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B2 G3\n\n2) MikeYarrum: Homeworld B3 R2 G3\n\n3) sordros: Build G1 Sordros\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) sordros: Discover Y1 Sordros G3 Verdolaga\n\n8) MikeYarrum: Build Y2 Mikeyarrum\n\n9) sordros: Build Y2 Verdolaga\n\n10) MikeYarrum: Discover Y2 Mikeyarrum G1 Osaka\n\n11) sordros: Build G1 Sordros\n\n12) MikeYarrum: Build Y2 Osaka\n\n13) sordros: Discover Y2 Verdolaga B1 Bluemoon\n\n14) MikeYarrum: Build Y3 Mikeyarrum\n\n15) sordros: Build Y3 Verdolaga\n\n16) MikeYarrum: Discover Y2 Osaka Y3 Sakaki\n\n17) sordros: Trade G1 B1 Sordros\n\n18) MikeYarrum: Build G1 Mikeyarrum\n\n19) sordros: Build B1 Sordros\n\n20) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n21) sordros: Trade B1 R1 Sordros\n\n22) MikeYarrum: Build G1 Mikeyarrum\n\n23) sordros: Build B1 Sordros\n\n24) MikeYarrum: Move G1 Mikeyarrum Osaka\n\n25) sordros: Move B1 Sordros Verdolaga\n\n26) MikeYarrum: Move Y3 Mikeyarrum Bluemoon\n\n27) sordros: Move Y3 Verdolaga Osaka\n\n28) MikeYarrum: Move G1 Osaka Sakaki\n\n29) sordros: Build B2 Verdolaga\n\n30) MikeYarrum: Build G1 Mikeyarrum\n\n31) sordros: Trade B2 G2 Verdolaga\n\n32) MikeYarrum: Build G2 Sakaki\n\n33) sordros: Build G2 Sordros\n\n34) MikeYarrum: Move R1 Mikeyarrum Bluemoon\n\n35) sordros: Sacrifice R1 Sordros\nAttack R1 Bluemoon\n\n36) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n37) sordros: Sacrifice R1 Bluemoon\nAttack Y2 Osaka\n\n38) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack Y2 Bluemoon\n\n39) sordros: Sacrifice G3 Sordros\nBuild B2 Verdolaga\nBuild B2 Verdolaga\nBuild B3 Sordros\n\n40) MikeYarrum: Trade Y2 R2 Bluemoon\n\n41) sordros: Sacrifice B2 Verdolaga\nTrade B2 R2 Verdolaga\nTrade B3 R3 Sordros\n\n42) MikeYarrum: Build Y2 Mikeyarrum\n\n43) sordros: Build B2 Verdolaga\n\n44) MikeYarrum: Move G1 Sakaki Bluemoon\n\n45) sordros: Move B1 Verdolaga Osaka\n\n46) MikeYarrum: Build R1 Bluemoon\n\n47) sordros: Build R1 Sordros\n\n48) MikeYarrum: Move R1 Bluemoon Sakaki\n\n49) sordros: Trade R3 G3 Sordros\n\n50) MikeYarrum: Move G2 Sakaki Sordros\n\n51) sordros: Sacrifice G3 Sordros\nBuild B2 Verdolaga\nBuild B3 Sordros\nBuild B3 Osaka\n\n52) MikeYarrum: Sacrifice R2 Bluemoon\nAttack B1 Sordros\nAttack G2 Sordros\n\n53) sordros: Sacrifice R2 Verdolaga\nAttack B1 Sordros\nAttack G2 Sordros\n\n54) MikeYarrum: Sacrifice R1 Sakaki\nAttack R1 Sordros\n\n55) sordros: Trade B3 R3 Sordros\n\n56) MikeYarrum: Sacrifice G2 Sordros\nBuild R1 Sordros\nBuild R1 Sordros\nCatastrophe Sordros Red\n\n57) sordros: Build B3 Sordros\n\n58) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n59) sordros: Trade B3 R3 Sordros\n\n60) MikeYarrum: Move R1 Mikeyarrum Bluemoon\n\n61) sordros: Sacrifice Y2 Osaka\nMove Y3 Osaka Mikeyarrum\nMove B3 Osaka Mikeyarrum\n\n62) MikeYarrum: Sacrifice Y3 Bluemoon\nMove G1 Bluemoon Mikeyarrum\nMove R1 Bluemoon Mikeyarrum\nMove Y2 Sakaki Sordros\n\n63) sordros: Attack G3 Mikeyarrum\n\n\tsordros: Thanks for the game\n\tMikeYarrum: My pleasure.\n\nHomeworlds Online (SDG# 7641)\nStarted: 2007.5.6, Ended: 2007.5.18\nParticipants: MatrixFrog (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) MatrixFrog: Homeworld G2 B3 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n7) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n8) MatrixFrog: Build G1 Matrixfrog\n\n9) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\n10) MatrixFrog: Discover G1 Matrixfrog B1 Grape\n\n11) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n12) MatrixFrog: Build G1 Matrixfrog\n\n13) MikeYarrum: Build G2 Mikeyarrum\n\n14) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild G2 Grape\nBuild G3 Matrixfrog\nBuild G3 Grape\n\n15) MikeYarrum: Sacrifice Y3 Mikeyarrum\nMove G1 Mikeyarrum Yomi\nMove G1 Yomi Grape\nMove G1 Grape Matrixfrog\nCatastrophe Matrixfrog Green\n\n16) MatrixFrog: Sacrifice G1 Grape\nBuild Y1 Matrixfrog\n\tMatrixFrog: Yeah, that was stupid.\n\n17) MikeYarrum: Build Y2 Yomi\n\n18) MatrixFrog: Build G1 Grape\n\tMikeYarrum: Well, it did leave you the advantage in ships.\n\n19) MikeYarrum: Build G1 Mikeyarrum\n\n20) MatrixFrog: Sacrifice Y1 Matrixfrog\nMove G3 Grape Matrixfrog\n\n21) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n22) MatrixFrog: Build G1 Matrixfrog\n\n23) MikeYarrum: Build R1 Mikeyarrum\n\n24) MatrixFrog: Build Y1 Matrixfrog\n\n25) MikeYarrum: Build G1 Mikeyarrum\n\n26) MatrixFrog: Move Y1 Matrixfrog Grape\n\n27) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n28) MatrixFrog: Build Y3 Matrixfrog\n\n29) MikeYarrum: Build G2 Mikeyarrum\n\n30) MatrixFrog: Move Y3 Matrixfrog Mikeyarrum\n\n31) MikeYarrum: Move Y2 Yomi Grape\n\n32) MatrixFrog: Sacrifice G1 Grape\nBuild Y3 Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n33) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack G2 Grape\n\n34) MatrixFrog: Move Y1 Grape Matrixfrog\n\n35) MikeYarrum: Build G1 Grape\n\n36) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n37) MikeYarrum: Move G1 Grape Matrixfrog\n\n38) MatrixFrog: Move G3 Matrixfrog Mikeyarrum\n\n39) MikeYarrum: Sacrifice Y2 Grape\nMove G1 Matrixfrog Mikeyarrum\nMove Y1 Yomi Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n40) MatrixFrog: Build G1 Matrixfrog\n\tMikeYarrum: I was wondering when you'd finally hit me with that ship.\n\n41) MikeYarrum: Build G1 Grape\n\n42) MatrixFrog: Build R1 Matrixfrog\n\n43) MikeYarrum: Trade G1 Y1 Grape\n\n44) MatrixFrog: Build Y2 Matrixfrog\n\n45) MikeYarrum: Build Y2 Grape\n\n46) MatrixFrog: Trade Y2 R2 Matrixfrog\n\n47) MikeYarrum: Move R1 Mikeyarrum Matrixfrog\nCatastrophe Matrixfrog Red\n\n48) MatrixFrog: Move Y1 Matrixfrog Mikeyarrum\n\n49) MikeYarrum: Move G2 Grape Matrixfrog\n\n50) MatrixFrog: Sacrifice G1 Matrixfrog\nBuild Y2 Mikeyarrum\n\n51) MikeYarrum: Trade G2 R2 Matrixfrog\n\n52) MatrixFrog: Build G1 Matrixfrog\n\n53) MikeYarrum: Attack G1 Matrixfrog\n\tMatrixFrog: Good game.\n\tMatrixFrog: Ack. Nevermind.\n\n54) MatrixFrog: Move Y2 Mikeyarrum Matrixfrog\n\n55) MikeYarrum: Attack Y2 Matrixfrog\n\n56) MatrixFrog: Move Y1 Mikeyarrum Matrixfrog\n\n57) MikeYarrum: Attack G1 Matrixfrog\n\n\tMikeYarrum: Thanks for the game - I was pretty nervous for awhile.\n\nHomeworlds Online (SDG# 7649)\nStarted: 2007.5.6, Ended: 2007.5.27\nParticipants: MikeYarrum (S), rkalajian (N)\nWinner: MikeYarrum\n\n1) rkalajian: Homeworld G3 B2 Y3\n\n2) MikeYarrum: Homeworld B1 Y2 G3\n\n3) rkalajian: Build Y1N Rkalajian\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) rkalajian: Discover Y1 Rkalajian R1 Redstarsystem\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) rkalajian: Build Y1N Rkalajian\n\n8) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n9) rkalajian: Trade Y1 G1 Rkalajian\n\n10) MikeYarrum: Build G1 Mikeyarrum\n\n11) rkalajian: Move G1 Rkalajian Redstarsystem\n\n12) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n13) rkalajian: Build Y1 Rkalajian\n\n14) MikeYarrum: Build Y2 Yomi\n\n15) rkalajian: Build Y2 Redstarsystem\n\n16) MikeYarrum: Discover Y1 Yomi G1 Tomo\n\n17) rkalajian: Trade Y1 B1 Rkalajian\n\n18) MikeYarrum: Build R1 Mikeyarrum\n\n19) rkalajian: Discover Y1 Redstarsystem B3 Bluestarsystem\n\n20) MikeYarrum: Build R2 Mikeyarrum\n\n21) rkalajian: Build Y1N Rkalajian\n\n22) MikeYarrum: Build Y3 Yomi\n\n23) rkalajian: Trade Y3 R3 Rkalajian\n\n24) MikeYarrum: Build Y3 Tomo\n\n25) rkalajian: Build R2 Rkalajian\n\n26) MikeYarrum: Discover R1 Mikeyarrum Y3 Sakaki\n\n27) rkalajian: Move R2 Rkalajian Redstarsystem\n\n28) MikeYarrum: Trade R1 B1 Mikeyarrum\n\n29) rkalajian: Move G1 Redstarsystem Bluestarsystem\n\n30) MikeYarrum: Build B2 Mikeyarrum\n\n31) rkalajian: Build B2N Rkalajian\n\n32) MikeYarrum: Move B1 Mikeyarrum Yomi\n\n33) rkalajian: Move B2 Rkalajian Redstarsystem\n\n34) MikeYarrum: Build B3 Yomi\n\n35) rkalajian: Build G1 Bluestarsystem\n\n36) MikeYarrum: Move B3 Yomi Tomo\n\n37) rkalajian: Build G2 Bluestarsystem\n\n38) MikeYarrum: Build B3 Tomo\n\n39) rkalajian: Move R2 Redstarsystem Bluestarsystem\n\n40) MikeYarrum: Trade B3 R3 Tomo\n\tMikeYarrum: You should probably take that move back. Any player can cause a catastrophe if there are four or more pieces of any single color in a system (right now, I could take all of your green pieces in blueStarsystem without even doing anything).\n\n41) rkalajian: Move G1 Bluestarsystem Redstarsystem\n\trkalajian: Thanks for the heads up\n\n42) MikeYarrum: Build B3 Tomo\n\n43) rkalajian: Build G2 Bluestarsystem\n\n44) MikeYarrum: Move R3 Tomo Bluestarsystem\n\n45) rkalajian: Build G2 Redstarsystem\n\n46) MikeYarrum: Attack R2 Bluestarsystem\n\n47) rkalajian: Build R1 Rkalajian\n\n48) MikeYarrum: Attack Y1 Bluestarsystem\n\n49) rkalajian: Trade G2 R2 Bluestarsystem\n\n50) MikeYarrum: Move R3 Bluestarsystem Redstarsystem\n\n51) rkalajian: Attack R2 Bluestarsystem\n\n52) MikeYarrum: Attack B2 Redstarsystem\n\n53) rkalajian: Build R3 Bluestarsystem\n\n54) MikeYarrum: Sacrifice Y2 Yomi\nMove R1 Sakaki Tomo\nMove R1 Tomo Bluestarsystem\nCatastrophe Bluestarsystem Red\n\n55) rkalajian: Build G2 Bluestarsystem\n\n56) MikeYarrum: Attack G2 Redstarsystem\n\n57) rkalajian: Move Y2 Redstarsystem Bluestarsystem\n\n58) MikeYarrum: Attack G1 Redstarsystem\n\n59) rkalajian: Trade G2 R2 Bluestarsystem\n\n60) MikeYarrum: Trade B3 R3 Tomo\n\n61) rkalajian: Attack Y1 Bluestarsystem\n\n62) MikeYarrum: Build B3 Redstarsystem\n\n63) rkalajian: Build Y2 Rkalajian\n\n64) MikeYarrum: Sacrifice Y3 Tomo\nMove G2 Redstarsystem Rkalajian\nMove G1 Redstarsystem Rkalajian\nMove R3 Redstarsystem Rkalajian\n\n65) rkalajian: Attack R3 Rkalajian\n\n66) MikeYarrum: Trade G1 R1 Rkalajian\nCatastrophe Rkalajian Red\n\n67) rkalajian: Build Y3 Rkalajian\n\n68) MikeYarrum: Move Y1 Tomo Rkalajian\nCatastrophe Rkalajian Yellow\n\n69) rkalajian: Move G2 Bluestarsystem Redstarsystem\n\n70) MikeYarrum: Sacrifice R2 Mikeyarrum\nAttack B1 Rkalajian\nPass\n\trkalajian: Guess my first game isn't going so well :)\n\n\tMikeYarrum: It's to be expected. There are a lot of good players on this site. But I'm sure you'll pick it up pretty quickly. =D\n\tMikeYarrum: Thanks for playing!\n\trkalajian: Thanks for the game!\n\nHomeworlds Online (SDG# 7668)\nVariants: "Hard time"\nStarted: 2007.5.7, Ended: 2007.6.20\nParticipants: antihero (S), mneme (N)\nWinner: antihero\n\n1) mneme: Homeworld R1 B2 G3\n\n2) antihero: Homeworld B2 Y3 G3\n\n3) mneme: Build G1 Mneme\n\n4) antihero: Build G1 Antihero\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) antihero: Trade G1 Y1 Antihero\n\n7) mneme: Build G1 Mneme\n\n8) antihero: Build G1 Antihero\n\n9) mneme: Discover G1 Mneme Y3 Alpha\n\n10) antihero: Trade G1 R1 Antihero\n\n11) mneme: Build G1 Mneme\n\n12) antihero: Build R1 Antihero\n\n13) mneme: Build Y1 Mneme\n\n14) antihero: Build Y2 Antihero\n\n15) mneme: Discover G1 Mneme Y3 Beta\n\n16) antihero: Discover Y1 Antihero B1 Switch\n\n17) mneme: Discover Y1 Mneme B3 Artist\n\n18) antihero: Build R2 Antihero\n\n19) mneme: Build Y2 Mneme\n\n20) antihero: Move R2 Antihero Switch\n\n21) mneme: Trade Y2 R2 Mneme\n\n22) antihero: Move R1 Antihero Switch\n\n23) mneme: Move R2 Mneme Beta\n\n24) antihero: Trade R1 G1 Switch\n\n25) mneme: Build G2 Mneme\n\n26) antihero: Build Y2 Switch\n\n27) mneme: Sacrifice G2 Mneme\nBuild G2 Alpha\nBuild Y2 Artist\n\n28) antihero: Build R1 Switch\n\n29) mneme: Sacrifice G1 Alpha\nBuild G1 Mneme\n\n30) antihero: Move Y2 Switch Alpha\n\n31) mneme: Sacrifice R2 Beta\nAttack Y2 Alpha\nPass\n\n32) antihero: Move R1 Switch Beta\n\n33) mneme: Build G2 Beta\n\n34) antihero: Move R2 Switch Alpha\n\n35) mneme: Trade Y2 R2 Artist\n\n36) antihero: Sacrifice G3 Antihero\nBuild R2 Beta\nBuild R3 Antihero\nBuild R3 Alpha\n\n37) mneme: Sacrifice G2 Alpha\nBuild Y2 Artist\nBuild R3 Artist\n\n38) antihero: Sacrifice R2 Alpha\nAttack Y2 Alpha\nAttack G2 Beta\n\n39) mneme: Sacrifice G3 Mneme\nBuild G2 Beta\nBuild G2 Beta\nBuild G3 Mneme\nCatastrophe Beta G\n\n40) antihero: Trade R3 G3 Antihero\n\n41) mneme: Trade R2 G2 Artist\n\n42) antihero: Sacrifice Y2 Alpha\nMove R1 Beta Mneme\nMove R2 Beta Mneme\n\n43) mneme: Sacrifice R3 Artist\nAttack R2 Mneme\nAttack R1 Mneme\nPass\n\n44) antihero: Move R1 Antihero Switch\n\n45) mneme: Move R2 Mneme Artist\n\n46) antihero: Build R2 Switch\n\n47) mneme: Build G1 Artist\n\n48) antihero: Build G2 Switch\n\n49) mneme: Sacrifice G2 Artist\nBuild Y2 Artist\nBuild Y3 Mneme\n\n50) antihero: Move Y1 Switch Artist\nCatastrophe Artist Y\n\n51) mneme: Build G2 Artist\n\n52) antihero: Discover R3 Alpha Y2 Sigmund\n\n53) mneme: Move Y1 Mneme Artist\n\n54) antihero: Move R3 Sigmund Artist\n\n55) mneme: Sacrifice G3 Mneme\nBuild R2 Artist\nBuild R3 Artist\nBuild R3 Mneme\nCatastrophe Artist R\n\n56) antihero: Sacrifice Y2 Antihero\nDiscover R1 Switch B3 Wormhole\nMove R1 Wormhole Mneme\nCatastrophe Mneme R\n\n57) mneme: Trade G2 R2 Artist\n\n58) antihero: Build G2 Antihero\n\n59) mneme: Build G2 Artist\n\tantihero: nice! (for you, not for me) :)\n\n60) antihero: Trade G1 Y1 Switch\n\tmneme: I managed to even-up, anyway. It's not amazing when I have to force a catastrophe in my own system to do it, though (but better than staying behind)\n\n61) mneme: Trade G1 B1 Artist\n\n62) antihero: Build G1 Switch\n\n63) mneme: Build G1 Artist\n\n64) antihero: Trade G1 B1 Switch\n\n65) mneme: Discover G2 Artist Y1 Trucker\n\n66) antihero: Trade G2 R2 Antihero\n\n67) mneme: Build Y2 Mneme\n\n68) antihero: Build Y2 Switch\n\n69) mneme: Discover Y2 Mneme G3 Cookie\n\n70) antihero: Discover Y1 Switch G3 Toy\n\n71) mneme: Sacrifice G2 Trucker\nBuild G1 Mneme\nBuild G2 Artist\n\n72) antihero: Move G2 Switch Mneme\n\n73) mneme: Build G2 Mneme\nCatastrophe Mneme G\n\n74) antihero: Move B1 Switch Toy\n\n75) mneme: Build R1 Artist\n\n76) antihero: Build B2 Toy\n\n77) mneme: Discover B1 Artist G1 Piper\n\n78) antihero: Discover B2 Toy G1 Another\n\n79) mneme: Build B3 Piper\n\n80) antihero: Build B3 Toy\n\n81) mneme: Trade B1 Y1 Piper\n\n82) antihero: Sacrifice Y2 Switch\nMove B2 Another Mneme\nMove B1 Toy Mneme\n\n\tmneme: nicely done!\n\tantihero: Thanks! That was a good game for sure.\n\nHomeworlds Online (SDG# 7653)\nStarted: 2007.5.10, Ended: 2007.6.12\nParticipants: nycavri (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) nycavri: Homeworld Y2 B3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) nycavri: Build G1 Nycavri\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) nycavri: Build G1 Nycavri\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\n8) nycavri: Trade G3 Y3 Nycavri\n\n9) MikeYarrum: Trade Y1 B1 Mikeyarrum\n\n10) nycavri: Discover G1 Nycavri Y1 Taylor\n\n11) MikeYarrum: Build B1 Mikeyarrum\n\n12) nycavri: Build G1 Taylor\n\n13) MikeYarrum: Build G2 Mikeyarrum\n\n14) nycavri: Build G2 Nycavri\n\n15) MikeYarrum: Discover B1 Mikeyarrum G3 Yomi\n\n16) nycavri: Trade G2 B2 Nycavri\n\n17) MikeYarrum: Build B2 Yomi\n\n18) nycavri: Discover G1 Taylor Y3 Mercury\n\n19) MikeYarrum: Build B2 Yomi\n\n20) nycavri: Build B3 Nycavri\n\n21) MikeYarrum: Discover B1 Mikeyarrum G3 Kagura\n\n22) nycavri: Move B2 Nycavri Taylor\n\n23) MikeYarrum: Sacrifice Y1 Mikeyarrum\nDiscover B2 Yomi Y1 Tomo\n\n24) nycavri: Trade B3 R3 Nycavri\n\n25) MikeYarrum: Sacrifice G2 Mikeyarrum\nBuild B3 Tomo\nBuild B3 Kagura\n\n26) nycavri: Move G1 Mercury Mikeyarrum\n\n27) MikeYarrum: Sacrifice B2 Yomi\nTrade B3 Y3 Kagura\nTrade B3 R3 Tomo\n\n28) nycavri: Build G2 Mikeyarrum\n\n29) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n30) nycavri: Sacrifice B2 Taylor\nTrade G1 R1 Mikeyarrum\nTrade G2 R2 Mikeyarrum\n\n31) MikeYarrum: Trade R3 G3 Mikeyarrum\n\n32) nycavri: Trade R1 G1 Mikeyarrum\n\n33) MikeYarrum: Build B2 Yomi\n\n34) nycavri: Trade R2 B2 Mikeyarrum\n\n35) MikeYarrum: Move B1 Kagura Taylor\n\n36) nycavri: Build G2 Mikeyarrum\n\n37) MikeYarrum: Trade G3 R3 Mikeyarrum\n\n38) nycavri: Build B3 Mikeyarrum\n\n39) MikeYarrum: Sacrifice R3 Tomo\nAttack B3 Mikeyarrum\nAttack G2 Mikeyarrum\nAttack B2 Mikeyarrum\n\n40) nycavri: Build G2 Taylor\n\n41) MikeYarrum: Trade B3 Y3 Mikeyarrum\n\n42) nycavri: Build G2 Mikeyarrum\n\n43) MikeYarrum: Discover G2 Mikeyarrum B3 Nyamo\n\n44) nycavri: Build G3 Nycavri\n\n45) MikeYarrum: Attack G2 Mikeyarrum\n\n46) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild R1 Nycavri\nBuild R1 Nycavri\n\n47) MikeYarrum: Trade B1 R1 Taylor\n\n48) nycavri: Trade G1 B1 Mikeyarrum\n\n49) MikeYarrum: Move B2 Mikeyarrum Kagura\n\n50) nycavri: Move G3 Nycavri Tomo\n\n51) MikeYarrum: Move R1 Taylor Nycavri\nCatastrophe Nycavri Red\n\n52) nycavri: Build G1 Nycavri\n\n53) MikeYarrum: Build B3 Kagura\n\n54) nycavri: Trade G1 R1 Nycavri\n\n55) MikeYarrum: Trade B3 R3 Kagura\n\n56) nycavri: Sacrifice R1 Nycavri\nAttack B2 Tomo\n\n57) MikeYarrum: Build B3 Kagura\n\n58) nycavri: Trade B1 Y1 Mikeyarrum\n\n59) MikeYarrum: Attack Y1 Mikeyarrum\n\n60) nycavri: Sacrifice B2 Tomo\nTrade G2 Y2 Taylor\nTrade G1 B1 Taylor\n\n61) MikeYarrum: Move R3 Kagura Tomo\n\n62) nycavri: Discover Y2 Taylor R3 Edney\n\n63) MikeYarrum: Attack G3 Tomo\n\n64) nycavri: Move Y2 Edney Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n65) MikeYarrum: Move G3 Tomo Nycavri\n\n66) nycavri: Trade G1 R1 Nycavri\n\tnycavri: Forgot to pull the trigger!\n\tMikeYarrum: I was wondering if you'd try that.\n\n67) MikeYarrum: Sacrifice R3 Tomo\nAttack Y3 Nycavri\nAttack R1 Nycavri\nPass\n\n\tMikeYarrum: Thank you for the game!\n\tnycavri: And you!\n\nHomeworlds Online (SDG# 7695)\nStarted: 2007.5.10, Ended: 2007.5.14\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) MikeYarrum: Homeworld B1 G2 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) MikeYarrum: Build Y1 Mikeyarrum\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) MikeYarrum: Trade Y1 G1 Mikeyarrum\n\n7) zoltar: Build G1 Zoltar\n\n8) MikeYarrum: Build Y1 Mikeyarrum\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) MikeYarrum: Build G1 Mikeyarrum\n\n11) zoltar: Build G1 Zoltar\n\n12) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) MikeYarrum: Build G1 Mikeyarrum\n\tMikeYarrum: This always seems to happen with us - both trying not to take the last smallest piece and give the opponent the first bigger one.\n\n15) zoltar: Discover B1 Zoltar G1 Greendale\n\n16) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n17) zoltar: Build G2 Zoltar\n\n18) MikeYarrum: Build R1 Mikeyarrum\n\n19) zoltar: Discover G2 Zoltar Y1 Yellowstone\n\n20) MikeYarrum: Build Y2 Mikeyarrum\n\n21) zoltar: Build Y2 Zoltar\n\n22) MikeYarrum: Build R2 Mikeyarrum\n\n23) zoltar: Move R1 Zoltar Greendale\n\n24) MikeYarrum: Discover R1 Mikeyarrum G3 Yomi\n\n25) zoltar: Move Y1 Zoltar Greendale\n\n26) MikeYarrum: Move Y1 Mikeyarrum Yomi\n\n27) zoltar: Build R2 Greendale\n\n28) MikeYarrum: Move R2 Mikeyarrum Sakaki\n\n29) zoltar: Move R2 Greendale Yomi\n\n30) MikeYarrum: Move R2 Sakaki Greendale\n\n31) zoltar: Sacrifice G2 Yellowstone\nBuild R2 Yomi\nBuild R3 Greendale\n\n32) MikeYarrum: Build R3 Greendale\nCatastrophe Greendale Red\n\n33) zoltar: Sacrifice R2 Yomi\nAttack R1 Yomi\nAttack Y1 Yomi\n\tzoltar: Kaboom! \n\n34) MikeYarrum: Build G2 Sakaki\n\n35) zoltar: Build G2 Zoltar\n\n36) MikeYarrum: Build G3 Mikeyarrum\n\n37) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Yomi\nBuild Y2 Greendale\nBuild Y3 Zoltar\n\n38) MikeYarrum: Build R1 Mikeyarrum\n\n39) zoltar: Build G3 Zoltar\n\n40) MikeYarrum: Discover G2 Sakaki B1 Tomo\n\n41) zoltar: Sacrifice Y2 Greendale\nMove Y1 Yomi Mikeyarrum\nMove Y1 Yomi Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n42) MikeYarrum: Move G1 Sakaki Tomo\n\n43) zoltar: Sacrifice Y3 Zoltar\nMove G2 Zoltar Greendale\nMove G2 Greendale Yomi\nMove G2 Yomi Mikeyarrum\nCatastrophe Mikeyarrum G\n\n44) MikeYarrum: Trade G1 Y1 Tomo\n\n45) zoltar: Sacrifice Y2 Zoltar\nMove R1 Yomi Mikeyarrum\nMove R2 Yomi Mikeyarrum\nCatastrophe Mikeyarrum R\n\tzoltar: Well, that one went from a close game to armageddon in 3 moves!\n\n\nHomeworlds Online (SDG# 7728)\nStarted: 2007.5.13, Ended: 2007.5.22\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld Y1 G2 B3\n\n2) zoltar: Homeworld B3 Y2 G3\n\tts52: Have a great game!\n\n3) ts52: Build B1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade B1 Y1 Ts52\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Build Y2 Ts52\n\n8) zoltar: Build Y2 Zoltar\n\n9) ts52: Discover Y2 Ts52 G3 Frogstar\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) ts52: Trade Y1 R1 Ts52\n\n12) zoltar: Discover Y2 Zoltar G1 Greenpea\n\n13) ts52: Build B1 Ts52\n\n14) zoltar: Build G1 Zoltar\n\n15) ts52: Trade B1 G1 Ts52\n\n16) zoltar: Discover G1 Zoltar Y1 Yellowjacket\n\n17) ts52: Discover G1 Ts52 Y3 Crikket\n\n18) zoltar: Build G2 Zoltar\n\n19) ts52: Build B1 Ts52\n\n20) zoltar: Trade G2 B2 Zoltar\n\n21) ts52: Move B1 Ts52 Crikket\n\n22) zoltar: Move B2 Zoltar Yellowjacket\n\n23) ts52: Build B1 Ts52\n\n24) zoltar: Build G2 Zoltar\n\n25) ts52: Build G2 Crikket\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowjacket\nBuild B1 Yellowjacket\n\n27) ts52: Sacrifice Y2 Frogstar\nMove G1 Crikket Yellowjacket\nMove G2 Crikket Yellowjacket\nCatastrophe Yellowjacket Green\n\n28) zoltar: Discover B1 Yellowjacket G3 Greenland\n\n29) ts52: Trade B1 G1 Crikket\n\n30) zoltar: Build B1 Greenland\n\n31) ts52: Trade B1 G1 Ts52\n\n32) zoltar: Trade B1 Y1 Greenland\n\n33) ts52: Build B1 Ts52\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenland\nBuild Y3 Greenland\nBuild Y3 Greenpea\n\n35) ts52: Build G2 Crikket\n\tts52: Aw man, here we go again... how did I not see that coming??\r\n\n\tts52: (ie, well played, I am an idiot that doesn't learn. ;) )\n\n36) zoltar: Sacrifice B2 Yellowjacket\nTrade Y3 G3 Greenland\nTrade Y3 G3 Greenpea\n\tzoltar: sacrifices are the hardest moves to see in Homeworlds. When I play Jesse or TwoShort, sometimes I'm lost after about 10 moves, as they will make sacrificing combos that are devastating and that I don't see coming even though I've gotten pretty good at the game.\n\n37) ts52: Trade B1 Y1 Ts52\n\n38) zoltar: Sacrifice G3 Greenland\nBuild G3 Zoltar\nBuild Y3 Greenpea\nBuild Y3 Greenpea\n\n39) ts52: Discover Y1 Ts52 B3 Grover\n\n40) zoltar: Move Y2 Greenpea Grover\n\n41) ts52: Discover Y1 Grover B2 Gonzo\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Greenland\nBuild B1 Greenland\n\n43) ts52: Trade B3 R3 Ts52\n\n44) zoltar: Trade B1 R1 Greenland\n\n45) ts52: Move G1 Crikket Gonzo\n\n46) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Zoltar\nBuild R2 Greenland\n\n47) ts52: Discover R1 Ts52 B3 Grape\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Greenland\nBuild R3 Zoltar\n\n49) ts52: Sacrifice G2 Crikket\nBuild G2 Gonzo\nBuild Y3 Gonzo\n\n50) zoltar: Sacrifice Y3 Greenpea\nMove Y2 Grover Gonzo\nMove Y1 Greenland Gonzo\nMove R1 Greenland Ts52\nCatastrophe Gonzo Y\n\n51) ts52: Trade G2 Y2 Gonzo\n\n52) zoltar: Build R3 Ts52\n\n53) ts52: Attack R3S Ts52\n\n54) zoltar: Sacrifice Y3 Greenpea\nMove R2 Greenland Ts52\nMove G3 Greenpea Greenland\nMove G3 Greenland Ts52\nCatastrophe Ts52 R\n\n55) ts52: Sacrifice Y2 Gonzo\nDiscover R1 Grape G1 Pebble\nMove R1 Pebble Zoltar\nCatastrophe Zoltar Red\n\tts52: Thanks for another good game.\n\n56) zoltar: Sacrifice G3 Zoltar\nBuild B1 Greenland\nBuild B2 Greenland\nBuild G1 Ts52\nCatastrophe Greenland B\nCatastrophe Ts52 G\n\tzoltar: Same to you as well.\n\n\nHomeworlds Online (SDG# 7723)\nVariants: "Hard time"\nStarted: 2007.5.13, Ended: 2007.6.6\nParticipants: zoltar (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\n2) zoltar: Homeworld B3 Y2 G3\n\tJesse: Hey, Zoltar. Have a good game.\n\n3) Jesse: Build G1 Jesse\n\tzoltar: You as well!\n\n4) zoltar: Build G1 Zoltar\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Jesse: Build G1 Jesse\n\n8) zoltar: Build G1 Zoltar\n\n9) Jesse: Build Y1 Jesse\n\n10) zoltar: Build Y2 Zoltar\n\n11) Jesse: Discover Y1 Jesse G2 Goedel\n\n12) zoltar: Trade Y1 R1 Zoltar\n\n13) Jesse: Build Y1 Jesse\n\n14) zoltar: Discover Y2 Zoltar G1 Greenpea\n\n15) Jesse: Discover Y1 Jesse B2 Leibniz\n\tJesse: Ack. Think "Jesse", type "Goedel". :P\n\n16) zoltar: Build G2 Zoltar\n\n17) Jesse: Sacrifice G3 Jesse\nBuild Y2 Goedel\nBuild Y3 Leibniz\nBuild Y3 Jesse\n\n18) zoltar: Build Y3 Greenpea\n\n19) Jesse: Trade Y3 G3 Jesse\n\n20) zoltar: Trade G3 Y3 Zoltar\n\n21) Jesse: Sacrifice Y2 Goedel\nMove Y1 Goedel Greenpea\nMove Y1 Leibniz Greenpea\nCatastrophe Greenpea Y\n\n22) zoltar: Sacrifice G2 Zoltar\nBuild R1 Zoltar\nBuild R2 Zoltar\n\tzoltar: I think I'm lost already. This is like playing TwoShort!\n\n23) Jesse: Move G1 Jesse Leibniz\n\n24) zoltar: Discover R2 Zoltar Y1 Yellowjacket\n\tJesse: TwoShort's stomping me, in our current game, too. He's a fearsome opponent. Though I used to be the #1 around here before he came along, I can't say I mind the comparison. :D It's good to have some others rated in the same neighborhood, such as yourself, too.\n\n25) Jesse: Trade Y3 R3 Leibniz\n\n26) zoltar: Build R2 Zoltar\n\n27) Jesse: Build G1 Jesse\n\n28) zoltar: Build G2 Zoltar\n\n29) Jesse: Build G2 Leibniz\n\n30) zoltar: Discover G2 Zoltar B1 Blueberry\n\n31) Jesse: Trade G1 Y1 Leibniz\n\n32) zoltar: Build Y2 Zoltar\n\n33) Jesse: Sacrifice G3 Jesse\nBuild Y2 Jesse\nBuild Y3 Jesse\nBuild Y3 Leibniz\n\n34) zoltar: Sacrifice Y2 Zoltar\nDiscover R1 Zoltar G1 Greenpea\nMove R1 Zoltar Blueberry\n\n35) Jesse: Move Y3 Leibniz Blueberry\n\n36) zoltar: Sacrifice G2 Blueberry\nBuild R2 Yellowjacket\nBuild R3 Zoltar\n\n37) Jesse: Build Y2 Leibniz\n\n38) zoltar: Build R3 Greenpea\n\n39) Jesse: Build G2 Leibniz\n\n40) zoltar: Move Y3 Zoltar Greenpea\n\n41) Jesse: Move G2 Leibniz Blueberry\n\n42) zoltar: Discover R2 Zoltar B1 Bluejay\n\n43) Jesse: Build G2 Leibniz\n\n44) zoltar: Build G3 Zoltar\n\n45) Jesse: Build G3 Leibniz\n\n46) zoltar: Move G1 Zoltar Yellowjacket\n\n47) Jesse: Sacrifice G2 Leibniz\nBuild G2 Jesse\nBuild G3 Blueberry\n\n48) zoltar: Sacrifice Y3 Greenpea\nMove R2 Bluejay Leibniz\nMove R3 Zoltar Blueberry\nMove G3 Zoltar Blueberry\n\n\tzoltar: I can't find anything to do and think my position is lost, but I'll wait and come back to it again.\n\tzoltar: Yup, I'm toast in this one as well. gg.\n\tJesse: Interesting. SDG allows you to commit suicide, which is technically illegal. (Not that it matters.) Good game.\n\nHomeworlds Online (SDG# 7701)\nStarted: 2007.5.13, Ended: 2007.5.22\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) zoltar: Trade G3 Y3 Zoltar\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) zoltar: Build G1 Zoltar\n\n9) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) zoltar: Build G2 Zoltar\n\n13) MikeYarrum: Build G2 Sakaki\n\n14) zoltar: Discover G1 Zoltar Y2 Yellowstone\n\n15) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n16) zoltar: Build G1 Yellowstone\n\n17) MikeYarrum: Build B1 Mikeyarrum\n\n18) zoltar: Discover G1 Yellowstone Y3 Cornflake\n\n19) MikeYarrum: Trade B1 R1 Mikeyarrum\n\tzoltar: I see that you are bidding on the Ice Towers set on eBay -- I bought one on eBay last year. I bid on a Zendo set (which unlike Ice Towers has the Homeworlds colors) a couple of months ago but I was outbid -- it sold for an outrageous $60.\n\tMikeYarrum: Yep, I figured that I might as well give it a shot - not planning on winning it, though. I mostly wanted the Zendo set because I already have a full set of Xeno pieces.\n\n20) zoltar: Build G2 Cornflake\n\n21) MikeYarrum: Build R2 Mikeyarrum\n\n22) zoltar: Build G3 Zoltar\n\n23) MikeYarrum: Move R2 Mikeyarrum Sakaki\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowstone\nBuild R2 Zoltar\n\n25) MikeYarrum: Move B1 Mikeyarrum Sakaki\n\n26) zoltar: Move R1 Zoltar Yellowstone\n\n27) MikeYarrum: Build B1 Sakaki\n\n28) zoltar: Discover R2 Zoltar Y2 Yellowjacket\n\n29) MikeYarrum: Discover G2 Sakaki B2 Kaorin\n\n30) zoltar: Sacrifice G3 Yellowstone\nBuild G3 Yellowstone\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n31) MikeYarrum: Build B1 Sakaki\n\n32) zoltar: Move Y1 Zoltar Yellowstone\n\n33) MikeYarrum: Move B1 Sakaki Kaorin\n\n34) zoltar: Trade Y3 R3 Zoltar\n\n35) MikeYarrum: Build B2 Sakaki\n\n36) zoltar: Build Y3 Yellowstone\n\n37) MikeYarrum: Build B3 Kaorin\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild R2 Zoltar\nBuild R3 Yellowjacket\nBuild R3 Yellowstone\n\n39) MikeYarrum: Build G3 Sakaki\n\n40) zoltar: Move G1 Cornflake Yellowjacket\n\n41) MikeYarrum: Move Y1 Mikeyarrum Sakaki\n\n42) zoltar: Discover Y1 Yellowstone B3 Bluemoon\n\n43) MikeYarrum: Move R2 Sakaki Kaorin\n\tMikeYarrum: ... out of pieces? This situation is... new to me. I guess it means I've been getting better if I can hold out this long.\n\n44) zoltar: Sacrifice G2 Cornflake\nBuild G2 Yellowjacket\nBuild Y3 Bluemoon\n\tzoltar: Yup, it's not that common, though with the extra red and yellow ships, I have quite the advantage, though it will probably take a while to win.\n\n45) MikeYarrum: Move Y1 Sakaki Kaorin\n\n46) zoltar: Move R2 Zoltar Yellowstone\n\n47) MikeYarrum: Move B1 Kaorin Zoltar\n\n48) zoltar: Attack B1 Zoltar\n\n49) MikeYarrum: Move B1 Sakaki Kaorin\n\n50) zoltar: Sacrifice Y3 Bluemoon\nMove G1 Yellowjacket Sakaki\nMove G1 Yellowstone Sakaki\nMove B1 Zoltar Kaorin\nCatastrophe Sakaki G\nCatastrophe Kaorin B\n\tzoltar: very sneaky, but you forgot that your plan to blow up my blue star could backfire...\n\n51) MikeYarrum: Trade B2 G2 Sakaki\n\tMikeYarrum: True, but it's not as if I had much of a choice. You kinda got me up against a wall, here.\n\n52) zoltar: Sacrifice G3 Yellowstone\nBuild Y1 Bluemoon\nBuild Y3 Bluemoon\nBuild R2 Zoltar\n\tMikeYarrum: Inside joke, Kaorin and Sakaki are characters from a Japanese cartoon, and K has a crush on S, but usually finds herself thwarted in her romantic attempts. So having her get supernova'ed right next to Sakaki... meh, I guess you'd have to get the reference.\n\tzoltar: I see -- I'd never heard of the cartoon.\n\n53) MikeYarrum: Build G1 Sakaki\n\tzoltar: Yep, there was not much you could do, but giving me the b1 sped things up.\n\n54) zoltar: Move R3 Yellowstone Sakaki\n\n55) MikeYarrum: Discover G2 Sakaki B2 Nyamo\n\n56) zoltar: Sacrifice R2 Zoltar\nAttack G1 Sakaki\nAttack B1 Sakaki\n\n57) MikeYarrum: Build G1 Nyamo\n\n58) zoltar: Build R2 Sakaki\n\n59) MikeYarrum: Build G1 Mikeyarrum\n\n60) zoltar: Build G3 Sakaki\n\n61) MikeYarrum: Trade G1 B1 Nyamo\n\tzoltar: Your last move in the multi-player game was great, as it forced me to sac to wipe out the Y3 before it could escape, destroying all Jesse's threats against you. Of course, now you've turned me into an 'Iran' having weakened Jesse enough and have left me with an extra 3-pip ship. Now you have to build and try to get the two of us to fight while you get strong and ready to attack -- you can't wait too long, and if I attack Jesse you have to respond, not only to keep me from winning, but because I'll be weak and over-extended at the same time -- so build fast and get ready for a big 3-way showdown!\n\n62) zoltar: Sacrifice Y3 Yellowstone\nMove Y3 Bluemoon Mikeyarrum\nMove G3 Sakaki Mikeyarrum\nMove R3 Sakaki Mikeyarrum\n\n63) MikeYarrum: Attack R3 Mikeyarrum\n\tzoltar: Oh that was silly -- I don't need any more big ships -- I can attack right now!\r\n\n\n64) zoltar: Sacrifice R2 Yellowjacket\nAttack R3 Mikeyarrum\nAttack G3 Mikeyarrum\n\n65) MikeYarrum: Sacrifice G2 Nyamo\nBuild G1 Mikeyarrum\nBuild R2 Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n66) zoltar: Sacrifice Y3 Mikeyarrum\nMove R3 Yellowjacket Sakaki\nMove R2 Sakaki Mikeyarrum\nMove R3 Sakaki Mikeyarrum\nCatastrophe Mikeyarrum R\n\n\nHomeworlds Online (SDG# 7734)\nStarted: 2007.5.16, Ended: 2007.5.20\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) zoltar: Homeworld B1 Y3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\tzoltar: Hey we have a chance to win the 4-player game. Jesse almost won (due to my mistake of weakening sordros and not killing him) but sordros resigned just as Jesse was pouncing on him. So I sacked my green to blow up Jesse's green (else he sacks his G3, rebuilds it in his homeworld plus two more free builds, probably an r2 and y2) and your last move puts you in a position to move two y1's into the sardros system and blow up the star and the Y3 which Jesse is about to capture, and which would give Jesse the game (I can't stop him from blowing you up if he gets that Y3 for free). But now if we weaken him, I have a chance to win if I then go after Jesse, and you have a chance to win if you can recover and then attack me when I weaken myself to go after Jesse, so he no longer has a lock on the game as he did a move ago. All in all, the two player version is still better, but this 4-player one has gotten interesting, now that we can stop Jesse from winning and weaken him so that I can attack him before he can move his troops to your homeworld.\n\tMikeYarrum: Oh, secret plans. I forgot he left himself open there.\r\n\r\nDue to two resignations in my 4-player game with Cinnibar, it's now a Binary game with a lot of extra pieces. I guess I know how that can be...\n\n6) zoltar: Trade G1 R1 Zoltar\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\tzoltar: I just want to make sure you don't let Jesse have an overwhelming lead and steamroll you before I have a chance to attack him. Besides not letting him have a third y3 ship (meaning he could do consecutive sacs and swarm your homeworld with nasty beasties and threaten multiple catastrophes), you need to move your y3 out of your homeworld: it is 1) a liability, as you have two yellow ships together and a sac could send two ships in and blow them up, and 2) it's an attacking piece, as an r2 can be sacked and capture two pieces wherever your y3 is present, and 3) you have good defence with a red star, plus at least one r2 that could be sacked to destroy two attackers, and the most stable castle (the b3 and y1) with all colors represented only once after the y3 is gone. \n\n8) zoltar: Build G1 Zoltar\n\n9) MikeYarrum: Build Y1 Mikeyarrum\n\n10) zoltar: Trade G1 Y1 Zoltar\n\n11) MikeYarrum: Discover Y1 Mikeyarrum G1 Osaka\n\n12) zoltar: Discover Y1 Zoltar G2 Greendale\n\n13) MikeYarrum: Build Y2 Osaka\n\n14) zoltar: Build Y2 Greendale\n\tzoltar: In my personal game with Jesse, I'm already lost after about 10 moves. I'm no match for Jesse or TwoShort, and it's like I'm playing my first game when I'm up against them.\n\n15) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\tMikeYarrum: For a game that's not even ten years old, Homeworlds is surprisingly deep!\r\n\r\nRight now, I'm in 24 SDG matches, and half are Homeworlds. I'm wondering if this is healthy...\n\n16) zoltar: Discover Y1 Greendale G1 Greenbelt\n\tzoltar: I think it's good brain exercise. In our four player game, I don't know why you moved you little y1 out and not your y3 as an extra 3-pip at home doesn't do more, and you could have moved your y3 right into rutabaga, where Jesse has an r1 and wants to build reds to then move in and blow up your red star. So I suppose I'll have to move my y3 to rutabaga and stop him from amassing a red fleet at your border!\n\n17) MikeYarrum: Build G2 Mikeyarrum\n\n18) zoltar: Build Y1 Greenbelt\n\n19) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n20) zoltar: Build Y2 Greenbelt\n\n21) MikeYarrum: Discover Y1 Osaka G2 Chiyo\n\n22) zoltar: Build Y3 Greendale\n\n23) MikeYarrum: Discover G2 Mikeyarrum B1 Tomo\n\n24) zoltar: Sacrifice Y3 Greendale\nMove Y1 Greenbelt Mikeyarrum\nMove Y1 Greenbelt Mikeyarrum\nMove Y2 Greenbelt Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n25) MikeYarrum: Build Y1 Osaka\n\n26) zoltar: Build Y1 Greendale\n\n27) MikeYarrum: Build Y2 Chiyo\n\n28) zoltar: Discover Y2 Greendale G1 Greenbelt\n\n29) MikeYarrum: Move Y1 Chiyo Tomo\n\n30) zoltar: Build Y3 Greenbelt\n\n31) MikeYarrum: Build Y3 Tomo\n\n32) zoltar: Move Y3 Greenbelt Mikeyarrum\n\n33) MikeYarrum: Sacrifice Y3 Tomo\nMove Y1 Tomo Mikeyarrum\nMove Y1 Osaka Mikeyarrum\nMove Y2 Osaka Mikeyarrum\nCatastrophe Mikeyarrum Yellow\n\n34) zoltar: Move Y2 Greenbelt Mikeyarrum\n\n\nHomeworlds Online (SDG# 7733)\nVariants: "Hard time"\nStarted: 2007.5.16, Ended: 2007.5.29\nParticipants: Jesse (S), MikeYarrum (N)\nWinner: Jesse\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) Jesse: Homeworld R3 B1 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Jesse: Build G1 Jesse\n\tJesse: Have a good game.\n\n5) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\tMikeYarrum: Thanks, you too.\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\n8) Jesse: Build Y1 Jesse\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) Jesse: Build Y2 Jesse\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) Jesse: Discover Y2 Jesse G2 Blork\n\n13) MikeYarrum: Discover Y2 Mikeyarrum B1 Tomo\n\n14) Jesse: Build Y2 Jesse\n\n15) MikeYarrum: Move G1 Mikeyarrum Tomo\n\n16) Jesse: Trade Y1 R1 Jesse\n\n17) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n18) Jesse: Trade Y1 B1 Jesse\n\n19) MikeYarrum: Move R1 Mikeyarrum Tomo\n\n20) Jesse: Move B1 Jesse Blork\n\n21) MikeYarrum: Build R1 Tomo\n\n22) Jesse: Build B2 Blork\n\n23) MikeYarrum: Build Y1 Mikeyarrum\n\n24) Jesse: Discover B2 Blork G3 Glog\n\n25) MikeYarrum: Discover R1 Tomo G2 Yomi\n\tMikeYarrum: Nice names.\n\n26) Jesse: Move R1 Jesse Blork\n\n27) MikeYarrum: Build R2 Yomi\n\n28) Jesse: Build B2 Blork\n\n29) MikeYarrum: Build Y1 Tomo\n\n30) Jesse: Trade B2 G2 Blork\n\n31) MikeYarrum: Trade Y2 B2 Tomo\n\n32) Jesse: Build B2 Blork\n\n33) MikeYarrum: Discover B2 Tomo G3 Nyamo\n\n34) Jesse: Build B3 Glog\n\n35) MikeYarrum: Build B3 Nyamo\n\n36) Jesse: Sacrifice Y2 Blork\nMove B1 Blork Nyamo\nMove B2 Blork Nyamo\nCatastrophe Nyamo B\n\n37) MikeYarrum: Trade Y1 B1 Tomo\n\n38) Jesse: Trade B3 Y3 Glog\n\n39) MikeYarrum: Move Y1 Mikeyarrum Tomo\n\n40) Jesse: Move Y3 Glog Yomi\n\n41) MikeYarrum: Build Y1 Tomo\n\n42) Jesse: Sacrifice R1 Blork\nAttack R2 Yomi\n\n\nHomeworlds Online (SDG# 7751)\nStarted: 2007.5.16, Ended: 2007.6.4\nParticipants: MikeYarrum (S), Lexicon (N)\nWinner: MikeYarrum\n\n1) Lexicon: Homeworld R1 B2 G3\n\n2) MikeYarrum: Homeworld B3 R2 G3\n\n3) Lexicon: Build G1 Lexicon\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Lexicon: Trade G1 Y1 Lexicon\n\n6) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\n7) Lexicon: Build Y1 Lexicon\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) Lexicon: Discover Y1 Lexicon G3 One\n\n10) MikeYarrum: Discover G1 Mikeyarrum B1 Tomo\n\n11) Lexicon: Build Y1 One\n\n12) MikeYarrum: Build Y2 Mikeyarrum\n\n13) Lexicon: Build Y2 Lexicon\n\n14) MikeYarrum: Move Y2 Mikeyarrum Tomo\n\n15) Lexicon: Discover Y1 One B2 Two\n\n16) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n17) Lexicon: Build G1 Lexicon\n\n18) MikeYarrum: Discover B1 Mikeyarrum G1 Osaka\n\n19) Lexicon: Build Y2 One\n\n20) MikeYarrum: Build Y3 Tomo\n\n21) Lexicon: Sacrifice G1 Lexicon\nBuild Y3 Two\n\n22) MikeYarrum: Trade Y2 R2 Tomo\n\n23) Lexicon: Trade Y1 G1 Two\n\n24) MikeYarrum: Build G2 Tomo\n\n25) Lexicon: Build G2 Two\n\n26) MikeYarrum: Build R1 Tomo\n\n27) Lexicon: Trade G2 R2 Two\n\tLexicon: To me, the global reserve stash appears to be empty. This seems pretty weird.\n\tMikeYarrum: Me too.\n\tAaron: Had a major permissions snafu the other day. I missed this directory. Fixed.\n\tLexicon: Ack, those can be tricky. Thanks!\n\n28) MikeYarrum: Discover G2 Tomo R3 Yukari\n\n29) Lexicon: Discover G1 Two B1 Three\n\n30) MikeYarrum: Build G2 Yukari\n\n31) Lexicon: Build G2 Three\n\n32) MikeYarrum: Build G3 Tomo\n\n33) Lexicon: Trade Y2 B2 Lexicon\n\n34) MikeYarrum: Build B3 Osaka\n\n35) Lexicon: Trade G1 Y1 Three\n\n36) MikeYarrum: Build Y2 Tomo\n\n37) Lexicon: Sacrifice Y3 Two\nMove Y1 Lexicon One\nMove Y1 One Tomo\nMove Y1 One Tomo\nCatastrophe Tomo Yellow\n\n38) MikeYarrum: Trade B3 Y3 Osaka\n\n39) Lexicon: Build G1 Three\n\n40) MikeYarrum: Build B3 Osaka\n\n41) Lexicon: Move G1 Three Yukari\n\n42) MikeYarrum: Move B3 Osaka One\n\n43) Lexicon: Sacrifice G2 Three\nBuild G2 Yukari\nBuild Y1 Three\nCatastrophe Yukari Green\n\n44) MikeYarrum: Sacrifice R1 Tomo\nAttack Y2 One\n\n45) Lexicon: Trade Y1 G1 Three\n\n46) MikeYarrum: Trade B3 R3 One\n\n47) Lexicon: Build G2 Lexicon\n\n48) MikeYarrum: Move R3 One Two\n\n49) Lexicon: Sacrifice Y1 Three\nDiscover R2 Two Y1 Four\n\n50) MikeYarrum: Build B3 Osaka\n\n51) Lexicon: Sacrifice G3 Lexicon\nBuild G2 Three\nBuild G2 Three\nBuild G3 Lexicon\n\n52) MikeYarrum: Sacrifice Y2 One\nMove G1 Tomo Two\nMove G1 Two Three\nCatastrophe Three Green\n\n53) Lexicon: Trade G2 Y2 Lexicon\n\n54) MikeYarrum: Discover B3 Osaka Y3 Kagura\n\n55) Lexicon: Move B2 Lexicon Kagura\n\n56) MikeYarrum: Build Y1 Osaka\n\n57) Lexicon: Discover B2 Kagura G1 Five\n\n58) MikeYarrum: Sacrifice Y1 Osaka\nMove R3 Two Five\n\n59) Lexicon: Sacrifice B2 Five\nTrade R2 G2 Four\nTrade Y2 G2 Lexicon\n\n60) MikeYarrum: Build B1 Osaka\n\n61) Lexicon: Build G1 Four\n\tLexicon: tenacious game we've got here.\n\tMikeYarrum: Indeed!\n\n62) MikeYarrum: Trade B3 G3 Kagura\n\n63) Lexicon: Discover G1 Four B2 Six\n\n64) MikeYarrum: Move B1 Osaka Kagura\n\n65) Lexicon: Build G2 Six\n\n66) MikeYarrum: Build B2 Kagura\n\n67) Lexicon: Trade G1 R1 Six\n\n68) MikeYarrum: Build B3 Osaka\n\n69) Lexicon: Sacrifice G3 Lexicon\nBuild G1 Six\nBuild G3 Lexicon\nBuild R1 Six\n\n70) MikeYarrum: Build B3 Kagura\n\n71) Lexicon: Trade R1 Y1 Six\n\n72) MikeYarrum: Sacrifice Y3 Osaka\nMove B1 Kagura Lexicon\nMove B2 Kagura Lexicon\nMove B3 Kagura Lexicon\n\n73) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Lexicon\nBuild Y1 Six\nBuild Y2 Six\nCatastrophe Lexicon Blue\n\n74) MikeYarrum: Trade B3 Y3 Osaka\n\tLexicon: blow up time?\n\tMikeYarrum: I suppose so...\n\n75) Lexicon: Sacrifice G3 Lexicon\nBuild G3 Four\nBuild R1 Six\nBuild R2 Six\n\tLexicon: You forgot a step.\n\n76) MikeYarrum: Move G3 Kagura Lexicon\n\tMikeYarrum: Not really. I figured you'd be forced to do it yourself, or I would have attacked your Homeworld ships.\n\n77) Lexicon: Sacrifice Y2 Six\nMove G1 Six Lexicon\nMove G2 Six Lexicon\nCatastrophe Lexicon Green\n\n\tLexicon: OK, that was satisfying.\n\tLexicon: I messed up in the beginning because I meant to attack you from two, but it was the wrong size. And then you kept too much pressure on for me to recover.\n\tMikeYarrum: Thanks for the game!\n\nHomeworlds Online (SDG# 7748)\nStarted: 2007.5.17, Ended: 2007.6.4\nParticipants: MikeYarrum (S), Cinnibar (N)\nWinner: Cinnibar\n\n1) Cinnibar: Homeworld G1 B2 Y3\n\tCinnibar: Ah, Binary? Cool. I'm no zoltan, but enjoy the game. ;)\n\n2) MikeYarrum: Homeworld B3 R2 G3\n\n3) Cinnibar: Build Y1 Cinnibar\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Cinnibar: Build Y1 Cinnibar\n\n6) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\tMikeYarrum: Heh, I'm getting my butt kicked by him quite enough, thank you.\n\n7) Cinnibar: Discover Y1 Cinnibar G3 Vitae\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) Cinnibar: Trade Y3 G3 Cinnibar\n\n10) MikeYarrum: Build G2 Mikeyarrum\n\n11) Cinnibar: Build Y1 Vitae\n\n12) MikeYarrum: Build Y2 Mikeyarrum\n\n13) Cinnibar: Discover Y1 Vitae B2 Morpheus\n\n14) MikeYarrum: Discover G2 Mikeyarrum B1 Tomo\n\n15) Cinnibar: Sacrifice G3 Cinnibar\nBuild Y2 Morpheus\nBuild Y2 Vitae\nBuild Y3 Cinnibar\n\n16) MikeYarrum: Move Y2 Mikeyarrum Tomo\n\n17) Cinnibar: Discover Y1 Morpheus Y3 Lained\n\n18) MikeYarrum: Build G2 Tomo\n\n19) Cinnibar: Trade Y2 G2 Morpheus\n\n20) MikeYarrum: Discover G2 Tomo B3 Nyamo\n\n21) Cinnibar: Build G3 Morpheus\n\n22) MikeYarrum: Build G3 Nyamo\n\n23) Cinnibar: Trade G2 R2 Morpheus\n\n24) MikeYarrum: Sacrifice G3 Nyamo\nBuild G2 Tomo\nBuild Y2 Tomo\nBuild G3 Nyamo\n\n25) Cinnibar: Build R1 Morpheus\n\n26) MikeYarrum: Trade G2 R2 Tomo\n\n27) Cinnibar: Build G2 Morpheus\n\n28) MikeYarrum: Build R1 Tomo\n\n29) Cinnibar: Sacrifice Y1 Cinnibar\nDiscover R1 Morpheus B1 Phase\n\n30) MikeYarrum: Move R2 Tomo Lained\n\n31) Cinnibar: Move Y1 Lained Phase\n\n32) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n33) Cinnibar: Build Y1 Cinnibar\n\n34) MikeYarrum: Move R2 Lained Phase\n\n35) Cinnibar: Sacrifice Y1 Phase\nDiscover R1 Phase Y3 I-storm\n\n36) MikeYarrum: Discover B1 Mikeyarrum G1 Chiyo\n\n37) Cinnibar: Discover Y1 Cinnibar B3 Lained\n\n38) MikeYarrum: Sacrifice G3 Nyamo\nBuild R1 Tomo\nBuild R3 Phase\nBuild G3 Nyamo\n\n39) Cinnibar: Sacrifice G3 Morpheus\nBuild R3 Morpheus\nBuild G3 Morpheus\nBuild R3 I-storm\n\n40) MikeYarrum: Sacrifice Y2 Tomo\nMove R1 Tomo Morpheus\nMove R1 Tomo Morpheus\nCatastrophe Morpheus Red\n\n41) Cinnibar: Move R3 I-storm Tomo\n\n42) MikeYarrum: Sacrifice Y2 Tomo\nMove G2 Tomo I-storm\nMove R2 Phase Lained\n\n43) Cinnibar: Move Y1 Lained Tomo\n\n44) MikeYarrum: Trade G2 Y2 Nyamo\n\n45) Cinnibar: Sacrifice G2 Morpheus\nBuild Y1 Tomo\nBuild G2 Morpheus\n\n46) MikeYarrum: Build G2 Nyamo\n\n47) Cinnibar: Sacrifice G3 Morpheus\nBuild Y2 Cinnibar\nBuild R1 I-storm\nBuild G3 Morpheus\n\n48) MikeYarrum: Sacrifice R2 Lained\nAttack R1 I-storm\nAttack R1 I-storm\n\n49) Cinnibar: Sacrifice Y2 Vitae\nMove Y1 Tomo Mikeyarrum\nMove Y1 Tomo Mikeyarrum\n\n50) MikeYarrum: Trade Y3 B3 Mikeyarrum\n\n51) Cinnibar: Attack G1S Mikeyarrum\n\n52) MikeYarrum: Trade G3 R3 Nyamo\n\n53) Cinnibar: Sacrifice G3 Morpheus\nBuild G3 Morpheus\nBuild R1 Tomo\nBuild G3 Mikeyarrum\n\n54) MikeYarrum: Sacrifice R3 Phase\nAttack G3 Mikeyarrum\nAttack G1 Mikeyarrum\nAttack Y1 Mikeyarrum\n\n55) Cinnibar: Trade Y3 R3 Cinnibar\n\n56) MikeYarrum: Sacrifice Y2 Nyamo\nMove R1 I-storm Cinnibar\nMove R1 I-storm Cinnibar\n\n57) Cinnibar: Sacrifice R3 Tomo\nAttack R1S Cinnibar\nAttack R1S Cinnibar\nAttack Y1S Mikeyarrum\n\n58) MikeYarrum: Trade G2 Y2 Nyamo\n\n59) Cinnibar: Sacrifice R1 Cinnibar\nAttack G1S Mikeyarrum\n\n60) MikeYarrum: Sacrifice Y2 Nyamo\nMove R3 Nyamo Cinnibar\nMove G2 I-storm Cinnibar\n\n61) Cinnibar: Sacrifice R1 Cinnibar\nAttack R3S Cinnibar\n\n62) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Cinnibar\nBuild G3 Cinnibar\nBuild B1 Chiyo\nCatastrophe Cinnibar Green\n\n63) Cinnibar: Trade R3 B3 Cinnibar\n\n64) MikeYarrum: Build B2 Chiyo\n\n65) Cinnibar: Move R3 Cinnibar Chiyo\n\n66) MikeYarrum: Sacrifice B2 Chiyo\nTrade B1 R1 Chiyo\nTrade B1 R1 Chiyo\n\n67) Cinnibar: Sacrifice B3 Cinnibar\nTrade Y1 B1 Mikeyarrum\nTrade Y1 B1 Mikeyarrum\nPass\nCatastrophe Mikeyarrum B\n\n\nHomeworlds Online (SDG# 7806)\nVariants: "Hard time"\nStarted: 2007.5.18, Ended: 2007.5.28\nParticipants: zoltar (S), morganfitzp (N)\nWinner: zoltar\n\n1) morganfitzp: Homeworld B1 R2 G3\n\n2) zoltar: Homeworld B1 G3 B3 *\n\n3) morganfitzp: Build G1 Morganfitzp\n\n4) zoltar: Build B1 Zoltar\n\n5) morganfitzp: Trade G3 B3 Morganfitzp\n\n6) zoltar: Trade B3 Y3 Zoltar\n\n7) morganfitzp: Build B2 Morganfitzp\n\n8) zoltar: Build B2 Zoltar\n\n9) morganfitzp: Trade B3 Y3 Morganfitzp\n\n10) zoltar: Trade B2 R2 Zoltar\n\n11) morganfitzp: Discover B2 Morganfitzp G3 Ganesh\n\tmorganfitzp: I can't see the Global Reserve Stash. Can you?\n\n12) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n13) morganfitzp: Build B2 Ganesh\n\n14) zoltar: Build B2 Greenbelt\n\n15) morganfitzp: Trade B2 Y2 Ganesh\n\n16) zoltar: Trade B2 Y2 Greenbelt\n\n17) morganfitzp: Build B2 Ganesh\n\n18) zoltar: Build B2 Greenbelt\n\n19) morganfitzp: Trade B2 R2 Ganesh\n\n20) zoltar: Discover B2 Greenbelt G3 Greenhills\n\n21) morganfitzp: Discover B2 Ganesh G2 Lakshmi\n\n22) zoltar: Build B2 Greenhills\n\n23) morganfitzp: Build B3 Lakshmi\n\n24) zoltar: Build B3 Greenbelt\n\n25) morganfitzp: Trade B2 G2 Lakshmi\n\n26) zoltar: Trade B3 R3 Greenbelt\n\n27) morganfitzp: Build Y1 Ganesh\n\n28) zoltar: Trade B2 Y2 Greenhills\n\n29) morganfitzp: Move Y1 Ganesh Lakshmi\n\n30) zoltar: Build B2 Greenhills\n\n31) morganfitzp: Build G1 Morganfitzp\n\n32) zoltar: Build B2 Greenhills\n\n33) morganfitzp: Build B3 Lakshmi\n\n34) zoltar: Sacrifice Y2 Greenbelt\nMove B2 Greenhills Lakshmi\nMove B2 Greenhills Lakshmi\nCatastrophe Lakshmi B\n\n35) morganfitzp: Build G1 Lakshmi\n\n36) zoltar: Build B2 Greenbelt\n\n37) morganfitzp: Discover G1 Morganfitzp B3 Vishnu\n\n38) zoltar: Build B2 Greenhills\n\n39) morganfitzp: Build Y1 Lakshmi\n\n40) zoltar: Build B3 Greenbelt\n\n41) morganfitzp: Sacrifice Y1 Lakshmi\nDiscover G1 Vishnu Y2 Shiva\n\n42) zoltar: Sacrifice Y2 Greenhills\nMove B2 Greenhills Shiva\nMove B3 Greenbelt Ganesh\n\n43) morganfitzp: Sacrifice Y2 Ganesh\nMove G1 Shiva Zoltar\nMove G1 Lakshmi Zoltar\n\n44) zoltar: Sacrifice R2 Zoltar\nAttack G1 Zoltar\nAttack R2 Ganesh\n\n45) morganfitzp: Sacrifice G1 Morganfitzp\nBuild G1 Zoltar\nCatastrophe Zoltar Green\n\n46) zoltar: Trade B3 G3 Ganesh\n\n47) morganfitzp: Build G1 Lakshmi\n\tzoltar: well, nothing I can do about that, but at least you're fleet will be weakened terribly in order to supernova my green star...\n\n48) zoltar: Sacrifice G3 Ganesh\nBuild B3 Greenbelt\nBuild B3 Greenhills\nBuild B3 Shiva\n\tmorganfitzp: My fleet is weak as it is. I've been losing this game for a while. It'll just be nice to knock out one of your suns before I go.\n\n49) morganfitzp: Sacrifice G2 Lakshmi\nBuild Y1 Morganfitzp\nBuild Y1 Lakshmi\n\n50) zoltar: Sacrifice B3 Greenhills\nTrade Y3 R3 Zoltar\nTrade B3 Y3 Greenbelt\nTrade B3 G3 Shiva\n\n\tmorganfitzp: Man, forget it.\n\nHomeworlds Online (SDG# 7597)\nVariants: "Hard time"\nStarted: 2007.5.18, Ended: 2007.5.21\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n\tmneme: shit. What I get for going away on the weekend. (and forgetting to play a move on Friday).\r\n\n\nHomeworlds Online (SDG# 7801)\nStarted: 2007.5.18, Ended: 2007.6.6\nParticipants: mneme (S), MikeYarrum (N)\nWinner: mneme\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) mneme: Build G1 Mneme\n\n5) MikeYarrum: Trade G3 Y3 Mikeyarrum\n\n6) mneme: Trade G3 Y3 Mneme\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\n8) mneme: Build Y1 Mneme\n\n9) MikeYarrum: Trade Y1 B1 Mikeyarrum\n\n10) mneme: Build Y1 Mneme\n\n11) MikeYarrum: Build B1 Mikeyarrum\n\n12) mneme: Trade Y1 B1 Mneme\n\n13) MikeYarrum: Discover B1 Mikeyarrum Y1 Tomo\n\n14) mneme: Build B2 Mneme\n\n15) MikeYarrum: Trade B1 R1 Mikeyarrum\n\n16) mneme: Trade B2 R2 Mneme\n\n17) MikeYarrum: Build G1 Mikeyarrum\n\n18) mneme: Build G2 Mneme\n\n19) MikeYarrum: Build G2 Mikeyarrum\n\n20) mneme: Discover G2 Mneme G3 Greenacre\n\n21) MikeYarrum: Move G2 Mikeyarrum Tomo\n\n22) mneme: Discover R2 Mneme G3 Yule\n\n23) MikeYarrum: Build B1 Tomo\n\n24) mneme: Discover B1 Mneme G3 Emerald\n\n25) MikeYarrum: Build G2 Tomo\n\n26) mneme: Sacrifice G2 Greenacre\nBuild G2 Mneme\nBuild G3 Mneme\n\n27) MikeYarrum: Discover G2 Tomo Y3 Yomi\n\tMikeYarrum: Oh shoot, I should've seen that coming!\n\n28) mneme: Move G2 Mneme Emerald\n\tmneme: Yep. :)\n\n29) MikeYarrum: Move B1 Tomo Yomi\n\n30) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild R1 Yule\nBuild B2 Emerald\n\n31) MikeYarrum: Discover G1 Mikeyarrum Y1 Chiyo\n\n32) mneme: Move Y1 Mneme Emerald\n\n33) MikeYarrum: Build Y2 Mikeyarrum\n\n34) mneme: Move G2 Emerald Chiyo\n\n35) MikeYarrum: Build B2 Tomo\n\n36) mneme: Move G3 Mneme Yomi\n\n37) MikeYarrum: Sacrifice Y3 Mikeyarrum\nMove B1 Tomo Yomi\nMove B1 Yomi Mneme\nMove B1 Yomi Mneme\n\n38) mneme: Move B1 Emerald Mneme\nCatastrophe Mneme B\n\n39) MikeYarrum: Move R1 Mikeyarrum Tomo\n\tmneme: this is interesting. Oh, now what?\n\n40) mneme: Sacrifice G3 Yomi\nBuild G3 Mneme\nBuild Y2 Mneme\nBuild B1 Emerald\n\n41) MikeYarrum: Sacrifice B2 Tomo\nTrade G2 R2 Tomo\nTrade G2 Y2 Yomi\n\n42) mneme: Move G3 Mneme Mikeyarrum\n\n43) MikeYarrum: Sacrifice Y2 Yomi\nMove R1 Tomo Yule\nMove R2 Tomo Yule\nCatastrophe Yule Red\n\n44) mneme: Attack Y2 Mikeyarrum\n\n\tmneme: good game.\n\tMikeYarrum: Yep, thanks for playing.\n\nHomeworlds Online (SDG# 7813)\nStarted: 2007.5.20, Ended: 2007.5.27\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) MikeYarrum: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) MikeYarrum: Build G1 Mikeyarrum\n\n7) zoltar: Build G1 Zoltar\n\n8) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n9) zoltar: Discover G1 Zoltar Y1 Yeltar\n\n10) MikeYarrum: Build G2 Sakaki\n\n11) zoltar: Build G2 Yeltar\n\n12) MikeYarrum: Discover G2 Sakaki B1 Tomo\n\n13) zoltar: Sacrifice G2 Yeltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n14) MikeYarrum: Trade G2 Y2 Tomo\n\tzoltar: One thing I like about this game is that when I get to positions like this, where I think you have the advantage and I felt stuck, there are creative things one can do to break the symmetry, such as this sack and creating yellows. Now instead of my being clearly behind and your getting the last G3 ship without a fight, this mixes things up, and there's another green in the stack, so I can both delay anyone getting the G3 for another move, as well as threaten to get ahead in yellow ships.\n\tMikeYarrum: Oh, I didn't think of things like that. But I have an idea about how I might counter it...\n\n15) zoltar: Trade Y1 R1 Zoltar\n\n16) MikeYarrum: Build G2 Sakaki\n\n17) zoltar: Move Y2 Zoltar Tomo\n\n18) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n19) zoltar: Sacrifice R1 Zoltar\nAttack Y2 Tomo\n\n20) MikeYarrum: Build R1 Mikeyarrum\n\n21) zoltar: Trade Y2 R2 Tomo\n\n22) MikeYarrum: Trade R1 B1 Mikeyarrum\n\n23) zoltar: Build Y1 Zoltar\n\n24) MikeYarrum: Build B2 Mikeyarrum\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Tomo\nBuild Y3 Tomo\nBuild Y3 Zoltar\n\n26) MikeYarrum: Move B2 Mikeyarrum Sakaki\n\n27) zoltar: Move Y3 Tomo Sakaki\n\n\nHomeworlds Online (SDG# 7881)\nStarted: 2007.5.26, Ended: 2007.6.1\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\tts52: Let's see if I can manage to not get locked out of yellow this time. ;) Have a good game!\r\n\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade G1 R1 Ts52\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Build G1 Ts52\n\n8) zoltar: Build Y1 Zoltar\n\n9) ts52: Build R1 Ts52\n\n10) zoltar: Build Y2 Zoltar\n\n11) ts52: Build R2 Ts52\n\n12) zoltar: Discover Y1 Zoltar G2 Greendale\n\n13) ts52: Trade R2 Y2 Ts52\n\n14) zoltar: Discover Y1 Zoltar G2 Greenhills\n\n15) ts52: Discover Y2 Ts52 G3 Kermit\n\n16) zoltar: Build G1 Zoltar\n\n17) ts52: Discover G1 Ts52 Y3 Sol\n\n18) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greendale\nBuild Y3 Greenhills\nBuild Y3 Zoltar\n\n19) ts52: Build G1 Ts52\n\n20) zoltar: Trade Y3 R3 Zoltar\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Sol\nBuild G3 Ts52\nBuild G3 Sol\n\n22) zoltar: Sacrifice Y2 Greendale\nMove G1 Zoltar Greendale\nMove G1 Greendale Sol\nCatastrophe Sol G\n\n23) ts52: Discover R1 Ts52 G3 Crikket\n\n24) zoltar: Move Y3 Greenhills Crikket\n\n25) ts52: Build G1 Ts52\n\n26) zoltar: Build Y2 Crikket\n\n27) ts52: Discover G1 Ts52 Y3 Wikket\n\n28) zoltar: Build Y3 Greendale\n\n29) ts52: Sacrifice G3 Ts52\nBuild G1 Wikket\nBuild G2 Wikket\nBuild G3 Ts52\n\n30) zoltar: Move Y3 Greendale Wikket\n\n31) ts52: Sacrifice Y2 Kermit\nDiscover G2 Wikket Y2 Lemon\nDiscover G1 Wikket B2 Berry\n\n32) zoltar: Move Y3 Crikket Lemon\n\n33) ts52: Build G3 Berry\n\n34) zoltar: Sacrifice R3 Zoltar\nAttack G2 Lemon\nAttack G1 Wikket\nAttack R1 Crikket\n\n35) ts52: Build R2 Ts52\n\tzoltar: Hey, no fair! Only I'm allowed to get big ships!\n\n36) zoltar: Build R2 Crikket\n\n37) ts52: Discover R2 Ts52 B3 Grape\n\n38) zoltar: Sacrifice G2 Lemon\nBuild R2 Crikket\nBuild G2 Wikket\n\n39) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Grape\nPass\n\n40) zoltar: Sacrifice Y3 Lemon\nMove G1 Wikket Ts52\nMove G2 Wikket Ts52\nMove R2 Crikket Ts52\nCatastrophe Ts52 G\n\n41) ts52: Sacrifice G1 Berry\nBuild R3 Ts52\n\n42) zoltar: Sacrifice Y3 Wikket\nMove Y2 Crikket Ts52\nMove R2 Crikket Ts52\nMove R1 Crikket Ts52\nCatastrophe Ts52 R\n\n\tts52: Thanks for another good game. I think I'm learning, slowly...\n\tzoltar: Good game. Don't get discouraged -- I lost my first dozen games before I won one -- it's a hard game to get the hang of.\n\nHomeworlds Online (SDG# 7838)\nStarted: 2007.5.26, Ended: 2007.5.30\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) zoltar: Build Y2 Zoltar\n\n9) MikeYarrum: Discover Y2 Mikeyarrum G3 Yomi\n\n10) zoltar: Discover Y1 Zoltar G2 Greenhills\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) zoltar: Build Y2 Zoltar\n\n13) MikeYarrum: Build Y3 Yomi\n\n14) zoltar: Build Y3 Greenhills\n\n15) MikeYarrum: Discover Y3 Yomi G2 Tomo\n\n16) zoltar: Trade Y2 R2 Zoltar\n\n17) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n18) zoltar: Move Y3 Greenhills Yomi\n\n19) MikeYarrum: Move Y2 Yomi Greenhills\n\n20) zoltar: Build G1 Zoltar\n\n21) MikeYarrum: Build R1 Mikeyarrum\n\n22) zoltar: Discover Y1 Greenhills G1 Greendale\n\n23) MikeYarrum: Build R1 Mikeyarrum\n\n24) zoltar: Discover R2 Zoltar G2 Greenbelt\n\n25) MikeYarrum: Discover G1 Mikeyarrum Y3 Sakaki\n\n26) zoltar: Sacrifice Y1 Greendale\nMove R2 Greenbelt Sakaki\n\n\tMikeYarrum: I'm beginning to think we shouldn't play each other anymore - you're too good!\n\tzoltar: Yeah, I avoid TwoShort for the same reason. We learn the most when we lose, but several losses in a row isn't very fun -- I know that feeling well, so maybe you should continue to play me, but only a small percentage, and try to find others of differing strengths as well to balance things out.\n\tMikeYarrum: Sometimes I make a major mistake like this one, and I feel like scrapping the game. That doesn't bother you, does it? (I'm trying to be neither a quitter nor a sore loser here.)\n\tzoltar: No, not at all. No need wasting time in a losing position, unless you think there is something to be learned about the endgame in some cases.\n\tzoltar: But you do seem to be winning in the multi-player game: as long as you can keep Jesse and me weak fighting each other, you have the best chance at winning.\n\tMikeYarrum: Thanks! It will be interesting to see how that game turns out...\n\nHomeworlds Online (SDG# 7752)\nVariants: "Sinister, Hard time"\nStarted: 2007.5.26, Ended: 2007.6.29\nParticipants: stoneaxe (S), MikeYarrum (W), mneme (N), zoltar (E)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld B3 Y2 G3\n\n3) stoneaxe: Homeworld G2 B3 Y3\n\n4) MikeYarrum: Homeworld B3 Y1 G3\n\n5) mneme: Build G1 Mneme\n\n6) zoltar: Build G1 Zoltar\n\n7) stoneaxe: Build Y1 Stoneaxe\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) mneme: Build G1 Mneme\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) stoneaxe: Build Y1 Stoneaxe\n\n12) MikeYarrum: Build G1 Mikeyarrum\n\n13) mneme: Trade G3 Y3 Mneme\n\n14) zoltar: Build R1 Zoltar\n\n15) stoneaxe: Trade Y1 R1 Stoneaxe\n\n16) MikeYarrum: Discover G1 Mikeyarrum B2 Tomo\n\n17) mneme: Trade G1 R1 Mneme\n\n18) zoltar: Trade R1 B1 Zoltar\n\n19) stoneaxe: Build Y1 Stoneaxe\n\n20) MikeYarrum: Build G1 Tomo\n\n21) mneme: Build Y1 Mneme\n\n22) zoltar: Discover B1 Zoltar G1 Greenpea\n\n23) stoneaxe: Trade Y1 R1 Stoneaxe\n\n24) MikeYarrum: Build G2 Tomo\n\n25) mneme: Build G2 Mneme\n\n26) zoltar: Build G2 Zoltar\n\n27) stoneaxe: Move R1 Stoneaxe Greenpea\n\n28) MikeYarrum: Trade G2 R2 Tomo\n\n29) mneme: Discover G2 Mneme B3 Saph\n\n30) zoltar: Move G2 Zoltar Greenpea\n\n31) stoneaxe: Discover Y1 Stoneaxe B1 Zpm\n\n32) MikeYarrum: Build R2 Tomo\n\n33) mneme: Build G2 Saph\n\n34) zoltar: Build R2 Zoltar\n\n35) stoneaxe: Build R2 Stoneaxe\n\n36) MikeYarrum: Trade G1 Y1 Tomo\n\n37) mneme: Move R1 Mneme Saph\n\n38) zoltar: Sacrifice R1 Zoltar\nAttack R1S Greenpea\n\n39) stoneaxe: Build R1 Stoneaxe\n\n40) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n41) mneme: Trade G2 Y2 Saph\n\n42) zoltar: Sacrifice G2 Greenpea\nBuild R2 Zoltar\nBuild R3 Greenpea\n\n43) stoneaxe: Move R2 Stoneaxe Zpm\n\n44) MikeYarrum: Move R2 Tomo Mikeyarrum\n\n45) mneme: Build R3 Saph\n\n46) zoltar: Trade R1 Y1 Greenpea\n\n47) stoneaxe: Trade R1 G1 Stoneaxe\n\n48) MikeYarrum: Build Y2 Tomo\n\n49) mneme: Build Y2 Saph\n\n50) zoltar: Discover R2 Zoltar G1 Greenbean\n\n51) stoneaxe: Build G2 Stoneaxe\n\n52) MikeYarrum: Build G2 Mikeyarrum\n\n53) mneme: Trade Y3 G3 Mneme\n\n54) zoltar: Build R1 Greenpea\n\n55) stoneaxe: Move G1 Stoneaxe Zpm\n\n56) MikeYarrum: Build B1 Mikeyarrum\n\n57) mneme: Discover Y2 Saph B1 Aph\n\n58) zoltar: Build B2 Greenpea\n\n59) stoneaxe: Build Y2 Stoneaxe\n\n60) MikeYarrum: Discover Y2 Tomo G3 Yomi\n\n61) mneme: Sacrifice G3 Mneme\nBuild Y3 Mneme\nBuild Y3 Aph\nBuild Y3 Saph\n\n62) zoltar: Build Y3 Greenpea\n\n63) stoneaxe: Build G2 Stoneaxe\n\n64) MikeYarrum: Discover B1 Mikeyarrum B2 Nyamo\n\n65) mneme: Build G3 Saph\n\n66) zoltar: Sacrifice G3 Zoltar\nBuild R1 Greenpea\nBuild R3 Greenbean\nBuild R3 Zoltar\n\n67) stoneaxe: Build R3 Stoneaxe\n\n68) MikeYarrum: Build G3 Tomo\n\n69) mneme: Move R3 Saph Zpm\n\n70) zoltar: Sacrifice B2 Greenpea\nTrade R3 G3 Greenpea\nTrade R2 B2 Zoltar\n\n71) stoneaxe: Discover G1 Zpm B2 Ned\n\n72) MikeYarrum: Sacrifice G3 Tomo\nBuild G3 Tomo\nBuild R2 Mikeyarrum\nBuild R3 Tomo\n\n73) mneme: Attack R2S Zpm\n\n74) zoltar: Build B3 Greenpea\n\n75) stoneaxe: Move R3 Stoneaxe Aph\n\n76) MikeYarrum: Move R3 Tomo Yomi\n\n77) mneme: Sacrifice R1 Saph\nAttack R3S Aph\n\tmneme: Er. Is the syntax for attacking in multiplayer Homeworlds documented -anywhere-? I had to basically guess until i figured it out ("a r2s zpm", in this case.\n\tMikeYarrum: It's hidden in the fine print below the list of recognized commands.\n\n78) zoltar: Move G3 Greenpea Zoltar\n\n79) stoneaxe: Build R1 Stoneaxe\n\tMikeYarrum: This must be the last episode of Homeworlds: The Series, because we just reached the end of the universe.\n\n80) MikeYarrum: Move R2 Tomo Yomi\n\n81) mneme: Attack Y1S Zpm\n\n82) zoltar: Sacrifice Y3 Greenpea\nMove R2 Greenbean Stoneaxe\nMove R1 Greenpea Stoneaxe\nMove B3 Greenpea Stoneaxe\nCatastrophe Stoneaxe R\n\n83) stoneaxe: Build Y3 Stoneaxe\n\tstoneaxe: Is there a TV series called "Clueless"? Because thats what I am in this game.\n\tzoltar: If you're wondering why I retreated my G3 to my homeworld instead of the obvious move of moving it into your homeworld, where you are on the brink of catastrophe and blowing up your green star, it's because I'm already behind and losing a 3-pip ship would leave me really weak. I figure it's better to lay low with a safe G3-R3 castle (after I move out my blue ship) and let someone else blow up your stars, rather than make myself a target by getting weaker.\n\tzoltar: The game will be over soon anyway, as I'm pretty much dead.\n\n84) MikeYarrum: Move R2 Mikeyarrum Tomo\n\n85) mneme: Move G3 Saph Zpm\n\tmneme: Zoltar: I'm not sure. I've got a hefty advantage over you, but I'm not seeing a good way to finish you off quickly, especially with your castling up.\n\tmneme: And Yarrum probably -can- make a doomsday device that will take me out, given time.\n\tmneme: Oh, stoneaxe, if you're wondering why I targetted your stuff when it was Zoltar who's my "prey", it was an attack of opportunity. I needed more material that was one step away from Zoltar's homeworld, and your stuff was convenienty situated and unprotected.\n\tzoltar: Since my yellow star is toast, I had to protect my homeworld I figure, but as soon as you get any blue ships I'm toast.\n\tzoltar: Well, the best I can do is to help Mike blow some of your stuff up, as it helps him and saves me...\n\n86) zoltar: Sacrifice R3 Zoltar\nAttack G2S Stoneaxe\nAttack G2S Stoneaxe\nAttack Y3S Stoneaxe\n\tzoltar: on second thought, maybe I'm being too defensive...\n\n87) stoneaxe: Trade Y3 R3 Stoneaxe\n\tzoltar: Now that I'm castled, I'm going on a mad all-out attack, as I don't have the time to wait while either Mike or Mneme builds a doomsday device. Prepare for battle!\n\tmneme: Very nice. I'm trying to figure out how to effect a rescue, and not seeing a good one. Mike, any ideas?\r\n\r\nI think this is a case where the person to the left of the weakest player has a sizable advantage.\r\n\n\tzoltar: Yep, I didn't see that move until I'd made the other one attacking mneme, and that I could take a red ship from both greenbean and greenpea, so that neither of you could ram the other with 2 red ships this turn, leaving my red fleet maximally dispersed and intact. I went from thinking I was worst off to being best off, all because stoneaxe made a crazy move and set himself up for catastrophe.\n\tmneme: Pretty much. By "counter" attacking me, he gave away nearly all his red. \r\n\r\nAnd mike's the only one who even -owns- enough blue to take out your invasion fleet, and it's not even close to positioned right for that. :(\n\tMikeYarrum: Aside from hitting mneme's homeworld (which would weaken me quite a bit), I'm out of ideas.\n\tzoltar: Then the Galaxy will be mine! All mine! [Insert Evil Overlord Laughter here]\n\n88) MikeYarrum: Sacrifice Y2 Yomi\nMove R2 Tomo Greenbean\nMove R2 Yomi Greenbean\n\tstoneaxe: Aha! Take that zoltar!\n\tzoltar: I plan to next turn, oh primitive carbon waterbag unit!\n\n89) mneme: Sacrifice Y3 Saph\nMove R2 Zpm Nyamo\nMove R2 Nyamo Greenbean\nMove G3 Zpm Zoltar\nCatastrophe Greenbean R\n\n90) zoltar: Sacrifice G2 Stoneaxe\nBuild G1 Zoltar\nBuild G2 Zoltar\n\n91) stoneaxe: Attack B3E Stoneaxe\nCatastrophe Zoltar G\n\tzoltar: Pray pear two meat yore DOOM, hyu-maahn beanz!\n\tmneme: Hmm. Ok, I see a way out. Stoneaxe, swap your large for a red.\r\nMike, if you put two reds in greenbean, I'll put another one in for the party.\r\n\n\tzoltar: Reziztanz ease few tile.\n\tzoltar: Yes, you can buy yourselves one more turn, in which you can pray to your respective deities for a better afterlife...\n\n92) MikeYarrum: Sacrifice B1 Nyamo\nTrade R3 Y3 Yomi\n\n93) mneme: Move R3 Aph Zoltar\n\tmneme: Oh, two more turns at least.\n\n94) zoltar: Sacrifice G2 Stoneaxe\nBuild B1 Zoltar\nBuild B2 Zoltar\n\tzoltar: Yep, that was the way to do it. I'm toast. Well, it was worth a try. Good game.\n\n95) stoneaxe: Attack Y3E Stoneaxe\n\n96) MikeYarrum: Build R1 Mikeyarrum\n\tzoltar: Well, stoneaxe, your only way out is to capture one of my green and leave my red and yellow, and then cause a catastrophe in my homeworld at the end of your turn. Then Mike will have to move a blue ship into my homeworld, so that on my turn I can sac my Y3 and bring my B3 and B1 back into my homeworld and destroy them. Only way you can stop mneme from winning next turn, after he moves another ship in.\n\tmneme: I'm honestly not sure how that would help -- the described catastrophe would depopulate your homeworld, zoltar, wouldn't it?\n\tzoltar: Well, yes, but it would stop you from instantly winning the game.\n\tmneme: Ah -- "eliminating a player to your left or across from you does not end the game or give someone else the victory". Doesn't say anything about suicide, mind. Mind, I'm not sure this -should- be true -- I think the game's probably more elegant if -anything- eliminating a player will cause the player to their right to win, thus avoiding "you can't kill him; I'll do it after you've weakened him!" nonsense.\n\tzoltar: Well, in any case, the 4 player version is 'broken' because of situations like this, where Mike got to be 'KingMaker' and choose whether you or I win. I thought I had enough reds to force the issue but I did not. So here perhaps I can commit suicide without your getting the victory, just to make it less then a binary choice. I don't like the sinister version because of this. The two player game is great, except that the good players always kick my butt and I kick everyone else's butt so I'm in this limbo in terms of strength. Well, maybe with more players when the game catches on, that gap will close...\n\tMikeYarrum: It took me a few games to realize why the "standard" Homeworlds has Good and Evil alignments, though there was enough politics going on when I played it IRL with my friends.\n\tzoltar: What's IRL? I've never heard of it.\n\tMikeYarrum: In Real Life. Like, with the plastic pyramids.\n\tzoltar: Ahhh, "Real Life" -- oh I get it now. That's something like Plato's heaven of ideal forms, isn't it, compared to which this is just a play of shadows, eh?\n\tMikeYarrum: Something like that. Brad kept taking the last pyramids of smallest size, so Matt easily took the lead, having first chance at all the 2 and 3 pointers. But it wasn't all bad - Brad ended up saving my butt when he wiped out Matt's doomsday machine for no other reason than he could.\n\tmneme: Zoltar: I don't know; we seem to be reasonably evenly matched in two player -- and unlike me, you've actually beaten TwoShort. I don't know about "broken" -- you over-extended to hit stoneaxe, (a little) but in theory, people could do a lot of detent to force a situation where a player was going to die and nobody could stop it.\n\tzoltar: That's true, we're fairly evenly matched, but it's rare that I have an even game. As for 4 player, any time someone is about to win the others can swoop in and attack him, so it's hard to see how the game can be as interesting.\n\tstoneaxe: This is (was?) my first game of this, so I am a little overwhelmed/confused. I think I will just do this and see how it all works out. Maybe next time I'll understand what the heck is goin on a little sooner-???\n\n97) mneme: Sacrifice R3 Zpm\nAttack B2E Zoltar\nAttack B2E Zoltar\nAttack B1E Zoltar\n\n\tmneme: *blink*. I take it nobody else could create the catastrophe either? Good game, everyone.\n\tzoltar: Or were the two of you asleep and simply forgot to type "c zoltar b" at the end of your turns (in which case mneme deserves the win)!?\n\tmneme: I...was wondering about that. I think I deserve the win anyway, given that you'd have needed a suicide to stop it. But the mind boggles. I went for the attack win rather than the "c zoltar b" win because it seemed classier, of course.\n\tmneme: It's possible that the game prevents you from killing other players who aren't your prey -- which makes huge amounts of sense, if so, but should be spelled out in the rules in that case.\r\n\n\tzoltar: I really think that the game only prevents a player from ending a turn with none of the player's ships in that player's homeworld, and that's all, and that anyone else can cause a catastrophe anywhere except in their own homeworld if none of there own ships are left there.\n\tMikeYarrum: I wasn't paying enough attention, sorry.\r\n\r\nBut on another note, we would have also had to deal with mneme's big ol' warship in the zoltar system. Could that have also given mneme the win, even if he didn't directly eliminate zoltar?\n\tzoltar: no, it would not have.\n\nHomeworlds Online (SDG# 7936)\nStarted: 2007.5.27, Ended: 2007.6.1\nParticipants: MikeYarrum (S), kawotan (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 7812)\nVariants: "Hard time"\nStarted: 2007.5.27, Ended: 2007.5.31\nParticipants: TwoShort (S), Marcus (N)\nWinner: TwoShort\n\n1) Marcus: Homeworld B3 Y2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) Marcus: Build G1 Marcus\n\n4) TwoShort: Build G1 Twoshort\n\n5) Marcus: Discover G1 Marcus B1 Procyon\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Marcus: Build G1 Procyon\n\n8) TwoShort: Build Y1 Twoshort\n\n9) Marcus: Trade G1 Y1 Procyon\n\n10) TwoShort: Build G1 Twoshort\n\n11) Marcus: Build G1 Procyon\n\n12) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n13) Marcus: Build Y2 Procyon\n\n14) TwoShort: Build Y2 Grogar\n\n15) Marcus: Trade Y2 R2 Procyon\n\n16) TwoShort: Discover Y2 Grogar B1 Bluonia\n\n17) Marcus: Build G2 Marcus\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n19) Marcus: Sacrifice G3 Marcus\nBuild G2 Marcus\nBuild G3 Marcus\nBuild G3 Procyon\n\n20) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Twoshort Grogar\nMove G1 Grogar Procyon\nMove G1 Procyon Marcus\nCatastrophe Marcus Green\n\tTwoShort: You had been doing well, but I'm afraid that's the infamous "Bluebird Mistake"...\n\n\nHomeworlds Online (SDG# 7953)\nStarted: 2007.5.27, Ended: 2007.6.2\nParticipants: Marcus (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n\nHomeworlds Online (SDG# 7961)\nVariants: "Unrated"\nStarted: 2007.5.28, Ended: 2007.5.30\nParticipants: Prock (S), kobeyu (N)\nWinner: kobeyu\n\n1) kobeyu: Homeworld B2 Y3 G3\n\n2) Prock: Homeworld Y2 B1 G3\n\n3) kobeyu: Build G1 Kobeyu\n\n4) Prock: Build G1 Prock\n\n5) kobeyu: Trade G1 Y1 Kobeyu\n\n6) Prock: Trade G1 Y1 Prock\n\tkobeyu: are you just copying everything i do?\n\n7) kobeyu: Build G1 Kobeyu\n\n8) Prock: Sacrifice G3 Prock\nBuild Y1 Prock\nBuild Y2 Prock\nBuild Y2 Prock\n\n9) kobeyu: Discover G1 Kobeyu B1 Fiji\nCatastrophe Prock Yellow\n\tProck: Bet you didn't expect that one!\n\tkobeyu: That is bold.\r\nWhich is a thing fortune favours, so I hear.\r\nBut there is no luck in this game...\n\n\tkobeyu: Foolhardy. Another?\n\nHomeworlds Online (SDG# 7999)\nVariants: "Hard time"\nStarted: 2007.5.31, Ended: 2007.7.30\nParticipants: Kermit (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\tMikeYarrum: Thanks for accepting my challenge.\n\n2) Kermit: Homeworld G2 B1 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tKermit: no problem.\n\n4) Kermit: Build Y1 Kermit\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) Kermit: Trade Y1 B1 Kermit\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) Kermit: Build Y1 Kermit\n\n9) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n10) Kermit: Discover Y1 Kermit G3 Semi\n\n11) MikeYarrum: Build Y2 Yomi\n\n12) Kermit: Trade B1 G1 Kermit\n\n13) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n14) Kermit: Trade G1 R1 Kermit\n\n15) MikeYarrum: Build Y2 Yomi\n\n16) Kermit: Build Y2 Semi\n\n17) MikeYarrum: Discover Y2 Yomi G2 Tomo\n\n18) Kermit: Build Y3 Semi\n\n19) MikeYarrum: Build Y3 Tomo\n\n20) Kermit: Discover Y3 Semi B1 Noles\n\n21) MikeYarrum: Build G1 Mikeyarrum\n\n22) Kermit: Move Y1 Semi Noles\n\n23) MikeYarrum: Discover Y2 Tomo B3 Kagura\n\n24) Kermit: Trade Y1 G1 Noles\n\n25) MikeYarrum: Build Y1 Tomo\n\n26) Kermit: Discover G1 Noles B3 Muskogee\n\n27) MikeYarrum: Move Y1 Tomo Kagura\n\n28) Kermit: Build G1 Muskogee\n\n29) MikeYarrum: Sacrifice Y2 Yomi\nMove Y1 Yomi Kermit\nMove Y1 Kagura Kermit\n\n30) Kermit: Trade Y3 R3 Kermit Kermit\n\n31) MikeYarrum: Trade Y1 R1 Kermit\n\n32) Kermit: Sacrifice Y2 Semi\nMove G1 Muskogee Mikeyarrum\nMove G1 Muskogee Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n33) MikeYarrum: Build R2 Kermit\nCatastrophe Kermit Red\n\tMikeYarrum: Just an FYI - I can still, on my next move, build a red ship in your homeworld and cause a catastrophe, winning the game.\n\tMikeYarrum: Well, I have 3 hours left of my turn, I guess it's time.\n\n\nHomeworlds Online (SDG# 8031)\nStarted: 2007.6.1, Ended: 2007.6.25\nParticipants: ts52 (S), papa_bear (N)\nWinner: ts52\n\n1) papa_bear: Homeworld Y3 B2 G3\n\tpapa_bear: Hi.\n\n2) ts52: Homeworld Y2 B1 G3\n\tts52: Hi. Have a great game!\n\n3) papa_bear: Build G1 Papa_bear\n\tpapa_bear: You too!\n\n4) ts52: Build G1 Ts52\n\n5) papa_bear: Trade G1 B1 Papa_bear\n\n6) ts52: Trade G1 B1 Ts52\n\n7) papa_bear: Build B2 Papa_bear\n\n8) ts52: Build G1 Ts52\n\n9) papa_bear: Build G1 Papa_bear\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) papa_bear: Trade B1 Y1 Papa_bear\n\n12) ts52: Build G1 Ts52\n\n13) papa_bear: Trade G1 R1 Papa_bear\n\n14) ts52: Trade G1 R1 Ts52\n\n15) papa_bear: Build G1 Papa_bear\n\n16) ts52: Build G1 Ts52\n\n17) papa_bear: Discover G1 Papa_bear R1 Aleph\n\n18) ts52: Build R2 Ts52\n\n19) papa_bear: Build R2 Papa_bear\n\n20) ts52: Discover R2 Ts52 G3 Kermit\n\n21) papa_bear: Move R2 Papa_bear Aleph\n\n22) ts52: Move Y1 Ts52 Kermit\n\n23) papa_bear: Move B2 Papa_bear Aleph\n\n24) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R3 Kermit\nBuild R3 Ts52\n\n25) papa_bear: Trade B2 Y2 Aleph\n\n26) ts52: Discover R2 Ts52 G3 Wikket\n\n27) papa_bear: Build R3 Papa_bear\n\n28) ts52: Build B1 Ts52\n\n29) papa_bear: Move R2 Aleph Papa_bear\n\n30) ts52: Move B1 Ts52 Kermit\n\n31) papa_bear: Trade R2 B2 Papa_bear\n\n32) ts52: Move R3 Kermit Aleph\n\n33) papa_bear: Discover R3 Papa_bear G1 Bet\n\n34) ts52: Attack Y2N Aleph\n\n35) papa_bear: Sacrifice G1 Aleph\nBuild R2 Papa_bear\n\n36) ts52: Build Y1 Kermit\n\n37) papa_bear: Move Y1 Papa_bear Bet\n\n38) ts52: Build G1 Ts52\n\n39) papa_bear: Move R3 Bet Kermit\n\n40) ts52: Move R2 Kermit Bet\n\n41) papa_bear: Move Y1 Bet Kermit\n\n42) ts52: Move Y1 Kermit Bet\n\n43) papa_bear: Attack B1 Kermit\n\n44) ts52: Move Y1 Kermit Bet\n\n45) papa_bear: Build G2 Papa_bear\n\n46) ts52: Sacrifice Y2 Aleph\nMove R3 Aleph Kermit\nMove R3 Kermit Bet\n\n47) papa_bear: Trade R2 Y2 Papa_bear\n\n48) ts52: Build G2 Ts52\n\n49) papa_bear: Build G2 Papa_bear\n\n50) ts52: Trade G2 Y2 Ts52\n\n51) papa_bear: Discover Y2 Papa_bear R1 Gimmel\n\n52) ts52: Move Y2 Ts52 Wikket\n\n53) papa_bear: Build Y3 Kermit\n\n54) ts52: Build Y3 Wikket\n\n55) papa_bear: Move G2 Papa_bear Gimmel\n\n56) ts52: Move Y3 Wikket Gimmel\n\n57) papa_bear: Sacrifice Y2 Gimmel\nDiscover G2 Gimmel R2 Dalet\nMove Y3 Kermit Dalet\n\n58) ts52: Move B1 Ts52 Wikket\n\n59) papa_bear: Build G2 Dalet\n\n60) ts52: Build Y2 Wikket\n\n61) papa_bear: Move G2 Dalet Kermit\n\n62) ts52: Move Y2 Wikket Gimmel\n\n63) papa_bear: Pass\n\n64) ts52: Sacrifice Y3 Gimmel\nMove Y1 Bet Papa_bear\nMove Y1 Bet Papa_bear\nMove Y2 Gimmel Papa_bear\nCatastrophe Papa_bear Yellow\n\n65) papa_bear: Build Y1 Kermit\n\n66) ts52: Build B2 Wikket\n\tpapa_bear: Oh.\n\n67) papa_bear: Trade B2 Y2 Papa_bear\n\n68) ts52: Discover G1 Ts52 Y3 Sol\n\tts52: Sorry, did you not mean to pass before? I thought that was a bit odd...\n\tpapa_bear: I did mean to pass :) I really didn't know what to do, so I passed.\r\n\r\nI just hadn't seen that particular threat. "Oh" was understated surprise :)\n\tts52: Ah, ok then. The sacrifices can be hard to see. \n\n69) papa_bear: Build R1 Kermit\n\n70) ts52: Move B2 Wikket Bet\n\n71) papa_bear: Sacrifice G3 Papa_bear\nBuild G3 Papa_bear\nBuild Y1 Dalet\nBuild Y3 Papa_bear\n\n72) ts52: Build B2 Wikket\n\n73) papa_bear: Move B1 Kermit Dalet\n\n74) ts52: Sacrifice B1 Wikket\nTrade G1 B1 Sol\n\n75) papa_bear: Build G1 Dalet\n\n76) ts52: Sacrifice Y2 Wikket\nMove B2 Bet Papa_bear\nMove B2 Wikket Papa_bear\n\n77) papa_bear: Trade G3 B3 Papa_bear\nCatastrophe Papa_bear Blue\n\n\tpapa_bear: Good game!\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 8055)\nStarted: 2007.6.2, Ended: 2008.2.22\nParticipants: Homepie (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G2 B1 Y3\n\n\nHomeworlds Online (SDG# 8056)\nStarted: 2007.6.2, Ended: 2007.6.19\nParticipants: MatrixFrog (S), DaDRK (N)\nWinner: DaDRK\n\n1) DaDRK: Homeworld G2 R3 B3\n\n2) MatrixFrog: Homeworld G2 B1 Y3\n\n3) DaDRK: Build B1 Dadrk\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) DaDRK: Trade B1 Y1 Dadrk\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\tDaDRK: good luck, this is one of my first games.\n\tMatrixFrog: It's generally considered a good idea to start out with some green and yellow, and usually blue in your homeworld. Green to start building a fleet, yellow so that you can start expanding, and blue because, well, red isn't going to be particularly helpful until later in the game. Not that you've completely screwed yourself over or anything, especially since you got to move first. But just giving you the sort of conventional wisdom for future games.\n\n7) DaDRK: Build Y2 Dadrk\n\n8) MatrixFrog: Discover Y1 Matrixfrog G3 Alpha\n\n9) DaDRK: Discover Y2 Dadrk B1 First\n\n10) MatrixFrog: Build Y2 Alpha\n\n11) DaDRK: Build B1 Dadrk\n\n12) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n13) DaDRK: Discover B1 Dadrk G1 Scnd\n\n14) MatrixFrog: Build R1 Matrixfrog\n\n15) DaDRK: Build B2 Scnd\n\n16) MatrixFrog: Move Y2 Alpha Scnd\n\n17) DaDRK: Trade Y1 R1 Dadrk\n\n18) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack B2 Scnd\n\n19) DaDRK: Build B2 Dadrk\n\n20) MatrixFrog: Build Y1 Matrixfrog\n\n21) DaDRK: Trade B3 R3 Dadrk\n\n22) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack B1 Scnd\n\n23) DaDRK: Trade R1 Y1 Dadrk\n\n24) MatrixFrog: Build Y2 Alpha\n\n25) DaDRK: Move R3 Dadrk Scnd\n\n26) MatrixFrog: Move B2 Scnd Dadrk\n\n27) DaDRK: Attack B2 Dadrk\n\n28) MatrixFrog: Build B2 Scnd\n\n29) DaDRK: Attack B2 Scnd\n\tDaDRK: hmm I seem to be in trouble from what I can tell\n\n30) MatrixFrog: Build Y3 Alpha\n\tMatrixFrog: Well, I feel like I'm always one step behind you because you have red powers and I don't. So we'll see.\n\n31) DaDRK: Move Y2 First Alpha\nCatastrophe Alpha Y\n\n32) MatrixFrog: Build Y1 Matrixfrog\n\n33) DaDRK: Attack Y2 Scnd\n\n34) MatrixFrog: Build B1 Scnd\n\n35) DaDRK: Sacrifice B2 Scnd\nTrade B2 Y2 Dadrk\nTrade Y1 G1 Dadrk\n\n36) MatrixFrog: Discover Y1 Matrixfrog G3 Beta\n\n37) DaDRK: Attack B1 Scnd\n\n38) MatrixFrog: Build Y1 Beta\n\n39) DaDRK: Move R3 Scnd Beta\n\n40) MatrixFrog: Sacrifice Y1 Beta\nMove Y1 Beta Scnd\n\n41) DaDRK: Sacrifice Y2 Dadrk\nMove B1 Scnd Beta\nMove R3 Beta Matrixfrog\n\n42) MatrixFrog: Trade Y1 R1 Scnd\n\tDaDRK: I believe if I capture all your ships in your home world I win correct?\n\tDaDRK: If thats true I think this would be a checkmate. GG\n\tMatrixFrog: You're right, but it's not checkmate. At least not yet, because you can only do one attack at a time.\n\tMatrixFrog: On the other hand, I don't see a way out of thise. I think starting with a red star was actually pretty helpful for you.\n\n43) DaDRK: Attack Y3 Matrixfrog\n\tDaDRK: I didn't know how well it would work out, just figured I should have access to attack ships\n\n44) MatrixFrog: Build Y1 Matrixfrog\n\n45) DaDRK: Build Y1 Matrixfrog\nCatastrophe Matrixfrog Y\n\tDaDRK: good game\n\n\nHomeworlds Online (SDG# 7960)\nStarted: 2007.6.2, Ended: 2007.6.12\nParticipants: DaDRK (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) DaDRK: Homeworld G2 B3 R3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tMikeYarrum: Hey! I almost thought you'd forgotten about the game.\n\n4) DaDRK: Build R1 Dadrk\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) DaDRK: Trade R1 Y1 Dadrk\n\n7) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\tDaDRK: didn't notice this down here, so like to wish you good luck, probably don't need it I'm a complete noob at this gaem\n\tMikeYarrum: No problem - I probably lose 95% of the games I play on here. Enjoy!\n\n8) DaDRK: Discover Y1 Dadrk G1 Frstyi\n\tDaDRK: ah I see\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) DaDRK: Build Y1 Frstyi\n\tDaDRK: er that was a stupid move, hope you don't mind me taking it back.\n\tMikeYarrum: Nah, there's a "No Undo" option which you can choose when issuing a challenge. I'd have picked that if I had a problem with it.\n\n11) MikeYarrum: Build Y2 Mikeyarrum\n\n12) DaDRK: Build R1 Dadrk\n\n13) MikeYarrum: Discover G1 Mikeyarrum B1 Nyamo\n\n14) DaDRK: Trade R1 B1 Dadrk\n\n15) MikeYarrum: Build G2 Nyamo\n\n16) DaDRK: Discover Y1 Frstyi G2 Scnd\n\n17) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Nyamo\nBuild G3 Mikeyarrum\nBuild G3 Mikeyarrum\n\n18) DaDRK: Build Y2 Scnd\n\n19) MikeYarrum: Trade G1 R1 Nyamo\n\n20) DaDRK: Trade B1 G1 Dadrk\n\n21) MikeYarrum: Discover G3 Mikeyarrum B1 Yukari\n\n22) DaDRK: Build R1 Dadrk\n\n23) MikeYarrum: Build R1 Nyamo\n\n24) DaDRK: Move Y1 Scnd Frstyi\n\n25) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove R1 Nyamo Dadrk\nMove R1 Nyamo Dadrk\nCatastrophe Dadrk Red\n\n26) DaDRK: Trade G1 R1 Dadrk\n\n27) MikeYarrum: Trade G3 R3 Nyamo\n\n28) DaDRK: Move Y1 Frstyi Dadrk\n\n29) MikeYarrum: Sacrifice Y1 Mikeyarrum\nMove R3 Nyamo Dadrk\n\n\tDaDRK: well good game, I may not know much but I know I'm beat.\n\tMikeYarrum: Yeah, Homeworlds takes awhile to really get the hang of. But thanks for the game!\n\nHomeworlds Online (SDG# 8078)\nStarted: 2007.6.6, Ended: 2007.6.29\nParticipants: sordros (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 Y1 G3\n\n2) sordros: Homeworld Y1 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) sordros: Build G1 Sordros\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) sordros: Discover G1 Sordros Y3 Flavega\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) sordros: Build G1 Sordros\n\n9) MikeYarrum: Discover Y2 Mikeyarrum G2 Yomi\n\n10) sordros: Trade G1 B1 Sordros\n\n11) MikeYarrum: Build Y2 Yomi\n\n12) sordros: Build G1 Sordros\n\n13) MikeYarrum: Build Y2 Yomi\n\n14) sordros: Build G1 Flavega\n\n15) MikeYarrum: Build G2 Mikeyarrum\n\n16) sordros: Discover G1 Sordros Y3 Bigy\n\n17) MikeYarrum: Discover Y2 Yomi G3 Tomo\n\n18) sordros: Build G2 Sordros\n\n19) MikeYarrum: Build Y3 Tomo\n\n20) sordros: Build B1 Sordros\n\n21) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n22) sordros: Trade B1 R1 Sordros\n\n23) MikeYarrum: Build G2 Mikeyarrum\n\n24) sordros: Build R1 Sordros\n\n25) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Mikeyarrum\nBuild R1 Mikeyarrum\nBuild R2 Mikeyarrum\n\n26) sordros: Sacrifice G3 Sordros\nBuild G3 Sordros\nBuild R2 Sordros\nBuild B1 Sordros\n\n27) MikeYarrum: Move R2 Mikeyarrum Yomi\n\n28) sordros: Discover R1 Sordros B3 Zuleo\n\n29) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Mikeyarrum\nBuild R3 Yomi\nBuild R3 Yomi\n\n30) sordros: Build R3 Sordros\n\n31) MikeYarrum: Sacrifice Y2 Yomi\nMove R2 Yomi Tomo\nMove R2 Tomo Sordros\nCatastrophe Sordros Red\n\n32) sordros: Trade G2 Y2 Sordros\n\n33) MikeYarrum: Move R3 Yomi Flavega\n\n34) sordros: Sacrifice G1 Bigy\nBuild Y3 Sordros\n\n35) MikeYarrum: Move Y2 Tomo Sordros\nCatastrophe Sordros Yellow\n\tMikeYarrum: CAPTIAN! THE ENEMY HOMEWORLD IS VULNERABLE!\r\n\r\nHMMM... IS THIS SOME KIND OF SORDROSIAN TRICK?\n\n36) sordros: Trade B1 R1 Sordros\n\tsordros: hmm... not really, I think it is the poor sleep due to my dear newborn combined with greed for a large Y3... :-)\n\n37) MikeYarrum: Build R2 Yomi\n\n38) sordros: Build G1 Sordros\n\tMikeYarrum: Ah, congrats. I'm currently giving my opponent in another game a chance to undo, as he left himself with four green pieces in one of "his" systems.\n\n39) MikeYarrum: Build G2 Mikeyarrum\n\n40) sordros: Sacrifice G3 Sordros\nBuild G3 Sordros\nBuild R2 Sordros\nBuild R3 Zuleo\n\n41) MikeYarrum: Sacrifice R2 Yomi\nAttack G1 Flavega\nAttack G1 Flavega\n\n42) sordros: Trade R1 Y1 Sordros\n\n43) MikeYarrum: Sacrifice Y2 Yomi\nMove G2 Mikeyarrum Sordros\nMove G2 Mikeyarrum Sordros\nCatastrophe Sordros Green\n\n44) sordros: Trade B1 G1 Sordros\n\n45) MikeYarrum: Move R3 Flavega Sordros\n\n\tsordros: Great game Mike. Thanks for the game\n\tMikeYarrum: Thank you sir!\n\nHomeworlds Online (SDG# 8156)\nVariants: "Hard time"\nStarted: 2007.6.7, Ended: 2007.10.11\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld G1 B2 Y3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) jeep: Build Y1 Jeep\n\n4) TwoShort: Build G1 Twoshort\n\n5) jeep: Build Y1 Jeep\n\tjeep: I first saw this opening against Sketchwick. It's interesting... It will be interesting to see how you use it to destroy me. ;)\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) jeep: Discover Y1 Jeep B3 Moon\n\tTwoShort: You mean the blue-red homeworld? I've come to decide it's my favorite, mostly because you can have more Green and yellow ships without danger.\r\nRecently I've been toying with the idea that the 1-3 is actually better than the 1-2, but I'm still undecided there.\n\n8) TwoShort: Build Y2 Twoshort\n\n9) jeep: Trade Y3 G3 Jeep\n\n10) TwoShort: Build G1 Twoshort\n\n11) jeep: Sacrifice G3 Jeep\nBuild Y2 Moon\nBuild Y2 Jeep\nBuild Y3 Jeep\n\n12) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n13) jeep: Trade Y1 R1 Jeep\n\n14) TwoShort: Build G1 Twoshort\n\n15) jeep: Trade Y2 G2 Moon\n\n16) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n17) jeep: Trade Y2 G2 Jeep\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Bluonia\nBuild G3 Twoshort\nBuild G3 Twoshort\n\tjeep: I'm horribly inefficient...\n\n19) jeep: Build R1 Jeep\n\tjeep: Nice, I missed that.\n\tjeep: *sigh* I thought I would be able to blow you up safely if you did that... but I see now that I can't.\n\n20) TwoShort: Trade G1 Y1 Bluonia\n\n21) jeep: Build G1 Moon\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Bluonia\nBuild Y2 Bluonia\nPass\n\n23) jeep: Sacrifice G2 Moon\nBuild Y2 Jeep\nBuild Y3 Moon\n\n24) TwoShort: Sacrifice Y2 Bluonia\nMove Y1 Bluonia Moon\nMove Y1 Grogar Moon\nCatastrophe Moon Yellow\n\n25) jeep: Discover R1 Jeep Y3 Traveller\n\n26) TwoShort: Trade G3 R3 Bluonia\n\n27) jeep: Build G2 Moon\n\n28) TwoShort: Build Y1 Twoshort\n\n29) jeep: Trade G1 Y1 Moon\n\n30) TwoShort: Build G1 Bluonia\n\n31) jeep: Build G2 Moon\n\n32) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n33) jeep: Sacrifice G2 Moon\nBuild Y1 Jeep\nBuild Y3 Moon\n\n34) TwoShort: Sacrifice G3 Bluonia\nBuild G2 Bluonia\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n35) jeep: Trade Y3 R3 Jeep\n\n36) TwoShort: Move Y1 Twoshort Bluonia\n\n37) jeep: Build Y3 Jeep\n\n38) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Bluonia Moon\nMove Y1 Moon Jeep\nCatastrophe Jeep Yellow\n\n39) jeep: Discover Y1 Moon B2 Stage\n\n40) TwoShort: Trade G2 Y2 Bluonia\n\n41) jeep: Build G2 Moon\n\n42) TwoShort: Trade G3 Y3 Twoshort\n\n43) jeep: Trade R1 Y1 Jeep\n\n44) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yolonda\nBuild G3 Bluonia\nBuild R1 Bluonia\n\n45) jeep: Move G2 Moon Stage\n\n46) TwoShort: Move G3 Bluonia Traveller\n\n47) jeep: Move R1 Traveller Stage\n\n48) TwoShort: Sacrifice G3 Yolonda\nBuild Y1 Bluonia\nBuild Y2 Twoshort\nBuild G3 Yolonda\n\n49) jeep: Sacrifice G2 Moon\nBuild G2 Stage\nBuild R1 Stage\n\n50) TwoShort: Move Y3 Twoshort Stage\n\n\tjeep: I see nothing useful. :( I hope to get back to it before I time out, but if not, consider it a concession.\n\tTwoShort: I think you're pretty doomed :) You've done an excellent job in not giving me an opening to go for the kill, but with the factory exclusive I've been able to keep the old take-all-the-pieces tactic rolling. \n\tjeep: Yeah, thanks for the game.\n\nHomeworlds Online (SDG# 8133)\nStarted: 2007.6.9, Ended: 2007.6.23\nParticipants: Uglyfoot (S), MikeYarrum (N)\nWinner: Uglyfoot\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n2) Uglyfoot: Homeworld B1 G3 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Uglyfoot: Build Y1 Uglyfoot\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) Uglyfoot: Discover Y1 Uglyfoot G2 Egg\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) Uglyfoot: Build Y1 Uglyfoot\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) Uglyfoot: Build Y2 Egg\n\n11) MikeYarrum: Discover Y1 Mikeyarrum G3 Yomi\n\n12) Uglyfoot: Discover Y1 Egg B3 Evo\n\n13) MikeYarrum: Build Y3 Yomi\n\n14) Uglyfoot: Build Y3 Egg\n\n15) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n16) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n17) MikeYarrum: Build B2 Mikeyarrum\n\n18) Uglyfoot: Move Y2 Egg Evo\n\n19) MikeYarrum: Move B2 Mikeyarrum Yomi\n\n20) Uglyfoot: Trade Y1 G1 Evo\n\n21) MikeYarrum: Build B2 Yomi\n\n22) Uglyfoot: Build Y1 Evo\n\n23) MikeYarrum: Discover B2 Yomi G2 Tomo\n\n24) Uglyfoot: Build Y1 Uglyfoot\n\n25) MikeYarrum: Trade B2 R2 Tomo\n\n26) Uglyfoot: Trade Y2 B2 Evo\n\n27) MikeYarrum: Move Y1 Yomi Tomo\n\n28) Uglyfoot: Build Y2 Egg\n\n29) MikeYarrum: Build G1 Mikeyarrum\n\n30) Uglyfoot: Move Y2 Egg Evo\n\n31) MikeYarrum: Build B2 Yomi\n\n32) Uglyfoot: Sacrifice Y3 Egg\nDiscover B2 Evo G2 Egg\nMove Y1 Evo Mikeyarrum\nMove Y2 Evo Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n33) MikeYarrum: Move R2 Tomo Evo\n\n34) Uglyfoot: Build G1 Evo\n\tUglyfoot: That probably was a mistake but it was fun...\n\tMikeYarrum: Well, SOMEBODY made a mistake just there... (lol)\n\n35) MikeYarrum: Move B2 Yomi Tomo\n\n36) Uglyfoot: Build B3 Egg\n\n37) MikeYarrum: Build B3 Tomo\n\n38) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove B2 Egg Mikeyarrum\nMove B3 Egg Mikeyarrum\nDiscover G1 Evo Y1 Vlp\nCatastrophe Mikeyarrum B\n\n\tMikeYarrum: Good show!\n\tUglyfoot: Thanks for the game\r\n\n\nHomeworlds Online (SDG# 8223)\nVariants: "Hard time"\nStarted: 2007.6.11, Ended: 2007.7.18\nParticipants: clockwise (S), dsheldon (N)\nWinner: clockwise\n\n1) dsheldon: Homeworld R1 B2 G3\n\n2) clockwise: Homeworld B3 Y1 G3\n\n3) dsheldon: Build G1 Dsheldon\n\n4) clockwise: Build G1 Clockwise\n\n5) dsheldon: Build G1 Dsheldon\n\n6) clockwise: Build G2 Clockwise\n\n7) dsheldon: Trade G1 Y1 Dsheldon\n\n8) clockwise: Trade G2 Y2 Clockwise\n\n9) dsheldon: Discover G1 Dsheldon G3 Greenback\n\n10) clockwise: Discover G1 Clockwise Y2 Sophocles\n\n11) dsheldon: Build G1 Dsheldon\n\n12) clockwise: Build G2 Sophocles\n\n13) dsheldon: Discover G1 Dsheldon Y3 Jerome\n\n14) clockwise: Build G2 Clockwise\n\n15) dsheldon: Build G2 Dsheldon\n\n16) clockwise: Discover G2 Sophocles Y3 Aristotle\n\n17) dsheldon: Discover G2 Dsheldon B3 Sky\n\n18) clockwise: Discover G1 Sophocles Y3 Pascal\n\n19) dsheldon: Build Y1 Dsheldon\n\tclockwise: I'm being very indecisive this game...\n\n20) clockwise: Build Y2 Clockwise\n\n21) dsheldon: Trade Y1 R1 Dsheldon\n\n22) clockwise: Trade Y2 R2 Clockwise\n\n23) dsheldon: Sacrifice G2 Sky\nBuild G2 Jerome\nBuild Y1 Dsheldon\n\n24) clockwise: Sacrifice G3 Clockwise\nBuild G3 Clockwise\nBuild Y2 Clockwise\nBuild R1 Clockwise\n\n25) dsheldon: Discover G1 Jerome B2 Puddle\n\n26) clockwise: Move Y2 Clockwise Puddle\n\n27) dsheldon: Sacrifice G1 Puddle\nBuild G1 Jerome\n\n28) clockwise: Sacrifice G3 Clockwise\nBuild G3 Clockwise\nBuild Y2 Puddle\nBuild R2 Clockwise\n\n29) dsheldon: Trade Y1 B1 Dsheldon\n\n30) clockwise: Move R2 Clockwise Puddle\n\n31) dsheldon: Discover G1 Jerome B1 Droplet\n\n32) clockwise: Sacrifice G3 Clockwise\nBuild G3 Clockwise\nBuild R2 Puddle\nBuild R3 Puddle\n\n33) dsheldon: Trade G1 Y1 Droplet\n\n34) clockwise: Move R3 Puddle Jerome\n\n35) dsheldon: Move R1 Dsheldon Pascal\n\n36) clockwise: Sacrifice R2 Puddle\nAttack R1N Pascal\nAttack G2N Jerome\n\n37) dsheldon: Build B1 Dsheldon\n\n38) clockwise: Discover Y2 Puddle B3 Machiavelli\n\n39) dsheldon: Move B1 Dsheldon Greenback\n\n40) clockwise: Sacrifice G2 Aristotle\nBuild Y3 Machiavelli\nBuild R2 Jerome\n\n41) dsheldon: Build B2 Greenback\n\n42) clockwise: Sacrifice Y2 Puddle\nMove R3 Jerome Dsheldon\nMove Y3 Machiavelli Dsheldon\n\n43) dsheldon: Attack Y3S Dsheldon\n\n44) clockwise: Sacrifice R2 Puddle\nAttack Y3N Dsheldon\nAttack G3N Dsheldon\n\n45) dsheldon: Trade B1 G1 Dsheldon\n\n46) clockwise: Sacrifice R2 Clockwise\nAttack G1N Dsheldon\nAttack Y1N Dsheldon\n\tdsheldon: I rather certain that I have absolutely no chance of winning this. Actually, I've been pretty certain of that for a while...\n\n\nHomeworlds Online (SDG# 8194)\nStarted: 2007.6.14, Ended: 2007.6.28\nParticipants: dayleh (S), MikeYarrum (N)\nWinner: dayleh\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) dayleh: Homeworld B1 G2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tdayleh: Hi and GL\n\tMikeYarrum: Hello.\n\n4) dayleh: Build Y1 Dayleh\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) dayleh: Trade Y1 R1 Dayleh\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) dayleh: Build Y1 Dayleh\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) dayleh: Build R1 Dayleh\n\n11) MikeYarrum: Discover G1 Mikeyarrum B1 Tomo\n\n12) dayleh: Trade Y3 G3 Dayleh\n\n13) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n14) dayleh: Discover Y1 Dayleh G3 Erin\n\n15) MikeYarrum: Build B2 Mikeyarrum\n\n16) dayleh: Build Y1 Erin\n\n17) MikeYarrum: Build Y2 Mikeyarrum\n\n18) dayleh: Move Y1 Erin Dayleh\n\n19) MikeYarrum: Build Y2 Mikeyarrum\n\n20) dayleh: Sacrifice G3 Dayleh\nBuild Y2 Erin\nBuild Y3 Dayleh\nBuild Y3 Dayleh\n\n21) MikeYarrum: Move Y1 Mikeyarrum Tomo\n\n22) dayleh: Trade Y1 G1 Dayleh\n\n23) MikeYarrum: Move B2 Mikeyarrum Tomo\n\n24) dayleh: Move Y2 Erin Tomo\n\n25) MikeYarrum: Build B2 Tomo\n\n26) dayleh: Sacrifice R1 Dayleh\nAttack B2 Tomo\n\n27) MikeYarrum: Build B2 Tomo\nCatastrophe Tomo Blue\n\n28) dayleh: Build R1 Dayleh\n\n29) MikeYarrum: Trade Y2 R2 Mikeyarrum\n\n30) dayleh: Trade Y3 G3 Dayleh\n\n31) MikeYarrum: Discover R2 Mikeyarrum G1 Osaka\n\n32) dayleh: Discover G3 Dayleh Y3 Callie\n\n33) MikeYarrum: Build Y1 Mikeyarrum\n\n34) dayleh: Build Y1 Dayleh\n\n35) MikeYarrum: Build Y2 Mikeyarrum\n\n36) dayleh: Build Y2 Erin\n\n37) MikeYarrum: Move Y2 Mikeyarrum Osaka\n\n38) dayleh: Discover G1 Dayleh Y3 Kadon\n\n39) MikeYarrum: Build G1 Mikeyarrum\n\n40) dayleh: Trade R1 B1 Dayleh\n\n41) MikeYarrum: Move B1 Mikeyarrum Osaka\n\n42) dayleh: Move B1 Dayleh Erin\n\n43) MikeYarrum: Build B2 Osaka\n\n44) dayleh: Build B2 Erin\n\n45) MikeYarrum: Discover Y2 Mikeyarrum R1 Kimura\n\n46) dayleh: Discover Y2 Erin G2 Tammy\n\n47) MikeYarrum: Move R2 Osaka Kadon\n\n48) dayleh: Sacrifice G1 Kadon\nBuild R1 Dayleh\n\n49) MikeYarrum: Move B1 Osaka Kadon\n\n50) dayleh: Trade B2 G2 Erin\n\n51) MikeYarrum: Build B2 Osaka\n\n52) dayleh: Move R1 Dayleh Callie\n\n53) MikeYarrum: Move G1 Mikeyarrum Kimura\n\n54) dayleh: Sacrifice G2 Erin\nBuild R2 Dayleh\nBuild R3 Callie\n\n55) MikeYarrum: Sacrifice G1 Kimura\nBuild R3 Kadon\n\n56) dayleh: Sacrifice Y2 Tammy\nMove R1 Dayleh Kadon\nMove R2 Dayleh Kadon\nCatastrophe Kadon Red\n\n57) MikeYarrum: Trade B2 R2 Osaka\n\n58) dayleh: Move G3 Callie Osaka\n\n59) MikeYarrum: Sacrifice Y2 Osaka\nMove R2 Osaka Callie\nMove B2 Osaka Callie\n\n60) dayleh: Attack B2N Callie\n\n61) MikeYarrum: Attack B2 Callie\n\n62) dayleh: Move R1 Callie Osaka\n\n63) MikeYarrum: Build G1 Mikeyarrum\n\n64) dayleh: Attack R2N Callie\n\n65) MikeYarrum: Move B2 Callie Dayleh\n\n66) dayleh: Sacrifice R1 Osaka\nAttack B2N Dayleh\n\n67) MikeYarrum: Move B1 Kadon Dayleh\n\n68) dayleh: Trade B2 R2 Dayleh\n\n69) MikeYarrum: Build B2 Dayleh\n\n70) dayleh: Sacrifice R2 Callie\nAttack B1N Dayleh\nAttack B2N Dayleh\n\n71) MikeYarrum: Move G1 Mikeyarrum Osaka\n\n72) dayleh: Sacrifice Y1 Dayleh\nDiscover G3 Osaka Y3 Kadon\n\n73) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n74) dayleh: Move B2 Dayleh Kadon\n\n75) MikeYarrum: Sacrifice G1 Osaka\nBuild Y1 Kimura\n\n76) dayleh: Discover B2 Kadon G1 Tammy\n\n77) MikeYarrum: Build G1 Mikeyarrum\n\n78) dayleh: Sacrifice G3 Kadon\nBuild B2 Erin\nBuild B2 Dayleh\nBuild B3 Tammy\n\n\tMikeYarrum: Sorry, I didn't like any of my available moves. Good game, though.\n\tdayleh: Thanks for the game. Good Luck with our other game.\n\nHomeworlds Online (SDG# 8244)\nVariants: "Hard time"\nStarted: 2007.6.12, Ended: 2007.7.2\nParticipants: zoltar (S), nycavri (N)\nWinner: zoltar\n\n1) nycavri: Homeworld Y1 B3 G3\n\tnycavri: Hello once again. Let's see how far I've come since you first helped me learn the game..... it's not far according to the ratings! TaGG.\n\n2) zoltar: Homeworld R1 B2 G3\n\n3) nycavri: Build G1 Nycavri\n\tzoltar: Nice to see you again!\n\n4) zoltar: Build G1 Zoltar\n\tnycavri: I think I'm 0 for 12, including the first 5 losses you handed me. But I'm sticking with it until I figure it out.....\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) zoltar: Build G1 Zoltar\n\tzoltar: I went at least 0 for 12 until I've won a game. And the three top players, TwoShort, Jesse, and AndyLooney, beat me almost every single game, though I've now beat each of them once. Just keep playing. \n\n7) nycavri: Build G1 Nycavri\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) nycavri: Build Y2 Nycavri\n\n10) zoltar: Build Y2 Zoltar\n\n11) nycavri: Discover Y2 Nycavri G2 Jep\n\n12) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n13) nycavri: Trade Y1 B1 Nycavri\n\n14) zoltar: Build Y1 Zoltar\n\n15) nycavri: Build B1 Nycavri\n\n16) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n17) nycavri: Move Y2 Jep Greenbelt\nCatastrophe Greenbelt Y\n\n18) zoltar: Discover Y2 Zoltar G3 Greenbelt\n\n19) nycavri: Discover B1 Nycavri G2 Jlb\n\n20) zoltar: Build Y1 Greenbelt\n\n21) nycavri: Trade G1 R1 Nycavri\n\n22) zoltar: Build Y2 Zoltar\n\n23) nycavri: Build B1 Jlb\n\n24) zoltar: Discover Y2 Zoltar B3 Bluemoon\n\n25) nycavri: Build B2 Jlb\n\n26) zoltar: Build Y2 Zoltar\n\n27) nycavri: Build G1 Nycavri\n\n28) zoltar: Trade Y3 G3 Zoltar\n\n29) nycavri: Trade G3 Y3 Nycavri\n\tnycavri: Ooops. Miscounted there.....\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G1 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Bluemoon\n\n31) nycavri: Build R1 Nycavri\n\n32) zoltar: Trade Y3 G3 Bluemoon\n\n33) nycavri: Build R2 Nycavri\n\n34) zoltar: Trade Y3 R3 Zoltar\n\n35) nycavri: Discover R2 Nycavri G2 Rcl\n\n36) zoltar: Build Y3 Bluemoon\n\n37) nycavri: Sacrifice Y3 Nycavri\nMove B1 Jlb Bluemoon\nMove B1 Jlb Bluemoon\nMove B2 Jlb Bluemoon\nCatastrophe Bluemoon B\n\n38) zoltar: Sacrifice Y2 Zoltar\nMove Y2 Greenbelt Rcl\nMove Y2 Rcl Nycavri\n\n39) nycavri: Build G2 Nycavri\n\n40) zoltar: Sacrifice R3 Zoltar\nAttack G2 Nycavri\nAttack R1 Nycavri\nAttack R1 Nycavri\n\n41) nycavri: Sacrifice R2 Rcl\nAttack R1 Nycavri\nAttack R1 Nycavri\n\n42) zoltar: Build G2 Zoltar\n\n43) nycavri: Discover R1 Nycavri Y2 Bdw\n\n44) zoltar: Trade G2 R2 Zoltar\n\tzoltar: This is getting exciting. Don't think I can pull out a win, but rather after all the pieces are traded off, I'm hoping to end up with the edge with some extra small pieces.\n\n45) nycavri: Move R1 Bdw Greenbelt\n\n46) zoltar: Sacrifice R2 Zoltar\nAttack R1 Greenbelt\nAttack R1 Nycavri\n\n47) nycavri: Build B1 Nycavri\n\n48) zoltar: Build G2 Zoltar\n\n49) nycavri: Discover B1 Nycavri Y2 Cmg\n\n50) zoltar: Attack G1 Nycavri\n\tzoltar: Now you're in trouble!\n\tnycavri: I was already in trouble. You had any number of 2 move wins.\n\n51) nycavri: Discover B1 Cmg G3 Ct\n\n52) zoltar: Attack B1 Nycavri\n\n\tzoltar: gg\n\nHomeworlds Online (SDG# 8255)\nVariants: "Hard time"\nStarted: 2007.6.14, Ended: 2007.9.29\nParticipants: zoltar (S), jeep (N)\nWinner: zoltar\n\n1) jeep: Homeworld Y1 B2 G3\n\tjeep: Hello again.\n\tjeep: I prefer going second. I like being able to react to my opponents opening... esp when my opponent is a stronger player than I am.\n\n2) zoltar: Homeworld B1 R3 G3\n\tzoltar: h b1 r3 g3\n\n3) jeep: Build G1 Jeep\n\tzoltar: Hi again!\n\tjeep: Wow, that opening has taken off like wildfire.\n\tzoltar: Which opening? The banker (yours) or mine? Or using B-R stars? I still suck at openings, and the good players (TwoShort, Jesse, and Andy Looney) get the advantage early every game before I know what hit me. The banker opening you are using Andy thinks is strongest, but TwoShort devastates me in the opening every game when I play it. Unlike with chess, where I have several opening books on my bookshelf, there ain't no book openings or, as the Japenese say, 'joseki' for this game yet.\n\tjeep: Yours. I've heard TwoShort say he thought that Traveller was stronger than Banker.\n\n4) zoltar: Build G1 Zoltar\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) zoltar: Build G1 Zoltar\n\tzoltar: Aha! I just saw a comment of his spying on his game with you. I didn't even know it was called the "Traveler", as I've been calling it "Goldilocks" because it's between the Banker and the Fortress where you are barricaded behind the scarce 1-pip stars. Well, I'm only using it because TwoShort beats me every time with it; but then again, he beats me with the Banker every time as well. \n\n7) jeep: Build Y1 Jeep\n\n8) zoltar: Trade G3 Y3 Zoltar\n\n9) jeep: Trade Y1 G1 Jeep\n\n10) zoltar: Build G2 Zoltar\n\tjeep: Hmm... This is quickly going downhill already\n\tzoltar: Well, I do get to sneak in the first 2-pip piece.\n\n11) jeep: Discover G1 Jeep B3 Moon\n\n12) zoltar: Trade G1 R1 Zoltar\n\n13) jeep: Build G1 Jeep\n\n14) zoltar: Trade G1 B1 Zoltar\n\n15) jeep: Build G1 Moon\n\n16) zoltar: Build G2 Zoltar\n\n17) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild G3 Jeep\nBuild G3 Moon\n\n18) zoltar: Build G3 Zoltar\n\n19) jeep: Trade G1 R1 Jeep\n\tzoltar: Looks like you may have taken the lead back!\n\n20) zoltar: Discover G2 Zoltar Y2 Yabbadabbadoo\n\tjeep: We'll see...\n\n21) jeep: Trade G1 Y1 Moon\n\n22) zoltar: Build Y2 Zoltar\n\n23) jeep: Build Y2 Moon\n\n24) zoltar: Discover Y2 Zoltar B2 Bloohoohoo\n\n25) jeep: Trade Y1 R1 Moon\n\n26) zoltar: Move R1 Zoltar Yabbadabbadoo\n\n27) jeep: Discover Y1 Jeep B3 Changer\n\n28) zoltar: Build R2 Yabbadabbadoo\n\n29) jeep: Build R2 Moon\n\n30) zoltar: Move R2 Yabbadabbadoo Changer\n\n31) jeep: Sacrifice G3 Moon\nBuild Y1 Changer\nBuild Y3 Changer\nBuild Y3 Moon\n\n32) zoltar: Move Y2 Bloohoohoo Changer\nCatastrophe Changer Y\n\tzoltar: Yep, good move. I'm in bad shape this game.\n\n33) jeep: Move Y3 Moon Yabbadabbadoo\n\n34) zoltar: Sacrifice G2 Yabbadabbadoo\nBuild R2 Yabbadabbadoo\nBuild R3 Changer\n\n35) jeep: Sacrifice R2 Moon\nAttack R2S Yabbadabbadoo\nAttack R1S Yabbadabbadoo\n\n36) zoltar: Trade R2 Y2 Changer\n\n37) jeep: Move G1 Moon Yabbadabbadoo\n\tjeep: That was a tough choice... no idea if it was correct or not.\n\n38) zoltar: Build Y1 Zoltar\n\n39) jeep: Trade R1 B1 Moon\n\n40) zoltar: Sacrifice Y3 Zoltar\nMove Y1 Zoltar Yabbadabbadoo\nMove Y2 Changer Yabbadabbadoo\nDiscover B1 Zoltar G2 Greenslime\nCatastrophe Yabbadabbadoo Y\n\n41) jeep: Build G1 Jeep\n\n42) zoltar: Sacrifice G2 Zoltar\nBuild R1 Changer\nBuild B2 Greenslime\n\n43) jeep: Move G1 Jeep Moon\n\n44) zoltar: Trade B2 Y2 Greenslime\n\n45) jeep: Build Y1 Moon\n\n46) zoltar: Build B2 Greenslime\n\n47) jeep: Discover B1 Moon G2 Grower\n\n48) zoltar: Trade R3 G3 Changer\n\n49) jeep: Build B2 Grower\n\n50) zoltar: Discover B1 Greenslime Y1 Yabbadabbadoo\n\tzoltar: Oh, I can't find anything better...\n\n51) jeep: Discover G2 Jeep B3 Moon2\n\n52) zoltar: Build Y2 Greenslime\n\n53) jeep: Move Y2 Moon Grower\n\n54) zoltar: Trade Y2 R2 Greenslime\n\n55) jeep: Build G1 Moon\n\n56) zoltar: Build G1 Changer\n\n57) jeep: Sacrifice G2 Moon2\nBuild G2 Jeep\nBuild B3 Grower\n\n58) zoltar: Move B1 Yabbadabbadoo Grower\nCatastrophe Grower B\n\n59) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y1 Moon\nBuild Y2 Grower\n\n60) zoltar: Sacrifice G3 Changer\nBuild G3 Changer\nBuild Y3 Greenslime\nBuild R1 Changer\n\n61) jeep: Sacrifice Y2 Grower\nMove Y1 Moon Greenslime\nMove Y1 Moon Greenslime\nCatastrophe Greenslime Y\n\tjeep: Hmm... I guess I wasn't paying attention. I thought you'd have to sac your y2 in GreenSlime to do that.\n\n62) zoltar: Sacrifice G3 Changer\nBuild G3 Changer\nBuild B1 Greenslime\nBuild B1 Greenslime\n\n63) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y1 Grower\nBuild Y1 Grower\n\tjeep: Hmm... I forgot you could make a R1... I shouldn't allow myself to get so rushed. ;)\n\n64) zoltar: T B2 Y2 Greenslime\n\n65) jeep: Move Y1 Grower Moon\n\tzoltar: This is complicated -- maybe I shouldn't be so rushed either.\n\n66) zoltar: Sacrifice G3 Changer\nBuild G3 Zoltar\nBuild R2 Changer\nBuild B2 Greenslime\n\n67) jeep: Move R1 Jeep Changer\nCatastrophe Changer R\n\n68) zoltar: Sacrifice G3 Zoltar\nBuild G3 Changer\nBuild R1 Greenslime\nBuild R1 Greenslime\n\n69) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y2 Grower\nBuild Y3 Moon\n\n70) zoltar: Sacrifice Y2 Greenslime\nMove G1 Changer Jeep\nMove G3 Changer Jeep\nCatastrophe Jeep G\n\n\tzoltar: Or can you? I'll have to look at this some more...\n\tzoltar: No, you can't. If I just move the g3 in, you sac a y2, and move a g1 and y3 into your homeworld and blow up the greens, leaving you with a y3 defending. But I still can send both the g3 and the g1 in immediately for a bluebird checkmate!\n\tjeep: Oops. Thanks for the game.\n\nHomeworlds Online (SDG# 8227)\nStarted: 2007.6.14, Ended: 2007.6.26\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R2 B3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\tts52: Have a great game!\n\n4) ts52: Build G1 Ts52\n\tzoltar: You as well, human bean!\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) zoltar: Build Y2 Zoltar\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) ts52: Build G1 Ts52\n\n11) zoltar: Build G1 Zoltar\n\n12) ts52: Trade G1 R1 Ts52\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) ts52: Build G1 Ts52\n\n15) zoltar: Build B1 Zoltar\n\n16) ts52: Trade G1 B1 Ts52\n\n17) zoltar: Discover B1 Zoltar G1 Greenpea\n\n18) ts52: Move B1 Ts52 Kermit\n\n19) zoltar: Build B2 Greenpea\n\n20) ts52: Build B2 Kermit\n\n21) zoltar: Build B3 Zoltar\n\n22) ts52: Trade B2 Y2 Kermit\n\tzoltar: I think I can get away with building a Big Blue.\n\n23) zoltar: Sacrifice B1 Zoltar\nTrade B2 Y2 Greenpea\n\n24) ts52: Build G1 Ts52\n\n25) zoltar: Move R1 Zoltar Greenpea\n\n26) ts52: Discover Y1 Kermit G2 Wikket\n\n27) zoltar: Build G1 Zoltar\n\n28) ts52: Build G2 Ts52\n\n29) zoltar: Discover B3 Zoltar R1 Redwarf\n\n30) ts52: Build R2 Ts52\n\n31) zoltar: Trade B3 Y3 Redwarf\n\n32) ts52: Discover G2 Ts52 Y3 Bigstar\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Greenpea\nBuild Y3 Zoltar\nBuild R2 Greenpea\n\n34) ts52: Move R1 Ts52 Kermit\n\n35) zoltar: Move Y3 Redwarf Kermit\n\n36) ts52: Sacrifice Y2 Kermit\nMove B1 Kermit Wikket\nMove R1 Kermit Wikket\n\n37) zoltar: Move Y3 Kermit Wikket\n\n38) ts52: Sacrifice G3 Ts52\nBuild G2 Bigstar\nBuild G3 Ts52\nBuild G3 Bigstar\n\n39) zoltar: Sacrifice Y2 Greenpea\nMove G1 Zoltar Greenpea\nMove G1 Greenpea Bigstar\nCatastrophe Bigstar G\n\n40) ts52: Build Y2 Wikket\n\n41) zoltar: Sacrifice B1 Greenpea\nTrade Y3 G3 Wikket\n\n42) ts52: Discover Y2 Wikket B1 Dot\n\n43) zoltar: Sacrifice R2 Greenpea\nAttack R1 Wikket\nAttack Y1 Wikket\n\n44) ts52: Sacrifice G1 Ts52\nBuild Y2 Dot\n\n45) zoltar: Trade Y3 G3 Zoltar\n\n46) ts52: Build G1 Ts52\n\n47) zoltar: Sacrifice G3 Wikket\nBuild Y3 Wikket\nBuild Y3 Greenpea\nBuild Y3 Zoltar\n\n48) ts52: Discover G1 Ts52 G3 Easygreen\n\n49) zoltar: Trade Y3 R3 Zoltar\n\n50) ts52: Move Y2 Dot Easygreen\n\n51) zoltar: Build Y3 Zoltar\n\n52) ts52: Move G1 Easygreen Dot\n\n53) zoltar: Move R3 Zoltar Dot\n\n54) ts52: Sacrifice Y2 Dot\nMove G1 Dot Easygreen\nPass\n\n55) zoltar: Build Y2 Zoltar\n\n56) ts52: Build G1 Ts52\n\tzoltar: With five Battlestars, I'm finally feeling safe...\n\n57) zoltar: Attack B1 Wikket\n\n58) ts52: Discover G1 Ts52 B3 Saphire\n\tts52: Is that all it takes... :(\n\n59) zoltar: Build G2 Zoltar\n\n60) ts52: Build G2 Ts52\n\tzoltar: Wikket is mine! All mine!\n\n61) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Wikket\nBuild B2 Wikket\n\n62) ts52: Trade G2 B2 Ts52\n\n63) zoltar: Discover B1 Wikket R3 Attackoutpost\n\n64) ts52: Move B2 Ts52 Easygreen\n\n65) zoltar: Sacrifice G2 Zoltar\nBuild G2 Zoltar\nBuild B3 Attackoutpost\n\n66) ts52: Discover G1 Easygreen R1 Lasthope\n\tts52: Subtle.\n\n67) zoltar: Move Y3 Wikket Saphire\n\n68) ts52: Build G2 Lasthope\n\n69) zoltar: Sacrifice G2 Zoltar\nBuild R2 Greenpea\nBuild R3 Wikket\n\n70) ts52: Move Y2 Easygreen Lasthope\n\tzoltar: With six Battlestars, I can go on the offensive!\n\n71) zoltar: Move Y3 Zoltar Lasthope\n\tzoltar: But I need that 7th one to really feel confident...\n\n72) ts52: Sacrifice Y2 Lasthope\nMove G1 Lasthope Zoltar\nMove G2 Lasthope Zoltar\n\tts52: I can see that.\n\n73) zoltar: Sacrifice R2 Greenpea\nAttack G1 Zoltar\nAttack G2 Zoltar\n\tzoltar: Now the Zoltarian Death Fleet is complete! Prepare for battle!\n\tts52: well, this should be quick...\n\n74) ts52: Build G2 Ts52\n\n75) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Saphire\nBuild R2 Greenpea\n\tzoltar: Attttackkkkk!!!\n\tzoltar: Reziztanz ease few tile!\n\n76) ts52: Sacrifice G1 Saphire\nBuild G1 Ts52\n\n77) zoltar: Sacrifice Y2 Zoltar\nMove B2 Wikket Easygreen\nMove Y1 Greenpea Easygreen\n\tzoltar: Your green ships have been assimilated. \n\n78) ts52: Sacrifice R2 Ts52\nAttack B2N Easygreen\nAttack Y1N Easygreen\n\tts52: All according to plan?\n\n79) zoltar: Sacrifice Y3 Lasthope\nMove G1 Zoltar Dot\nMove G1 Dot Saphire\nMove G1 Saphire Ts52\nCatastrophe Ts52 G\n\n\tzoltar: Good Game. My 7 battlestars proved effective in the end!\n\tts52: Indeed. Thanks for the game.\n\nHomeworlds Online (SDG# 8148)\nVariants: "Hard time"\nStarted: 2007.6.14, Ended: 2007.7.9\nParticipants: Jesse (S), zoltar (N)\nWinner: Jesse\n\n1) zoltar: Homeworld Y1 B2 G3\n\n2) Jesse: Homeworld R3 B1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Jesse: Build G1 Jesse\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Jesse: Trade G3 Y3 Jesse\n\n7) zoltar: Build G1 Zoltar\n\n8) Jesse: Build G1 Jesse\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) Jesse: Trade G1 R1 Jesse\n\n11) zoltar: Build G1 Zoltar\n\n12) Jesse: Build G1 Jesse\n\n13) zoltar: Trade G1 B1 Zoltar\n\n14) Jesse: Trade G1 B1 Jesse\n\n15) zoltar: Discover B1 Zoltar G3 Greenbelt\n\n16) Jesse: Build Y1 Jesse\n\n17) zoltar: Build B2 Greenbelt\n\n18) Jesse: Discover B1 Jesse G2 Cloud\n\n19) zoltar: Trade B2 Y2 Greenbelt\n\n20) Jesse: Build B2 Cloud\n\n21) zoltar: Build Y2 Greenbelt\n\n22) Jesse: Trade B2 Y2 Cloud\n\n23) zoltar: Trade Y2 R2 Greenbelt\n\n24) Jesse: Discover Y1 Jesse G2 Armchair\n\n25) zoltar: Discover Y1 Zoltar G3 Greenhills\n\n26) Jesse: Build Y2 Cloud\n\n27) zoltar: Build Y3 Greenbelt\n\n28) Jesse: Build Y3 Armchair\n\n29) zoltar: Move Y2 Greenbelt Cloud\n\n30) Jesse: Sacrifice Y2 Cloud\nDiscover Y2 Cloud R3 Electrodynamics\nMove B1 Cloud Electrodynamics\n\n31) zoltar: Build Y2 Greenbelt\n\n32) Jesse: Discover Y1 Armchair B3 Lamppost\n\n33) zoltar: Build B2 Greenbelt\n\n34) Jesse: Move B1 Electrodynamics Armchair\n\n35) zoltar: Move B1 Greenbelt Cloud\n\n36) Jesse: Move R1 Jesse Armchair\n\n\nHomeworlds Online (SDG# 7959)\nVariants: "Hard time"\nStarted: 2007.6.14, Ended: 2007.7.12\nParticipants: zoltar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) zoltar: Homeworld B1 Y2 G3\n\tTwoShort: Did you mean to start two games?\n\tzoltar: No, I didn't, but may as well\n\n3) TwoShort: Build G1 Twoshort\n\n4) zoltar: Build G1 Zoltar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) TwoShort: Build G1 Twoshort\n\n8) zoltar: Build G1 Zoltar\n\n9) TwoShort: Build Y1 Twoshort\n\n10) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n11) TwoShort: Build Y2 Twoshort\n\n12) zoltar: Build Y2 Greenbelt\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) zoltar: Discover Y2 Greenbelt G2 Greenhills\n\n15) TwoShort: Trade Y2 R2 Twoshort\n\n16) zoltar: Trade G1 R1 Zoltar\n\n17) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n18) zoltar: Build G1 Zoltar\n\n19) TwoShort: Build G1 Twoshort\n\n20) zoltar: Trade G1 B1 Zoltar\n\n21) TwoShort: Trade G1 B1 Twoshort\n\n22) zoltar: Build B2 Zoltar\n\n23) TwoShort: Move B1 Twoshort Grogar\n\n24) zoltar: Move B2 Zoltar Greenbelt\n\n25) TwoShort: Build G1 Twoshort\n\n26) zoltar: Build G1 Zoltar\n\n27) TwoShort: Build B2 Grogar\n\n28) zoltar: Build B3 Greenbelt\n\n29) TwoShort: Discover B1 Grogar Y3 Yoyodyne\n\n30) zoltar: Trade B2 R2 Greenbelt\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild B2 Yoyodyne\nBuild Y3 Twoshort\n\n32) zoltar: Build B3 Greenbelt\n\n33) TwoShort: Sacrifice Y2 Grogar\nMove B1 Yoyodyne Zoltar\nMove B2 Yoyodyne Zoltar\nCatastrophe Zoltar Blue\n\n34) zoltar: Trade B3 Y3 Greenbelt\n\n35) TwoShort: Build G2 Twoshort\n\tzoltar: Well, that just about does it for me! :(\n\tTwoShort: Whereas I just see a minefield of ways I could screw up and give you the opening blow up my 3 point... I think I see the path though.\r\n \n\n36) zoltar: Sacrifice Y3 Greenbelt\nMove Y1 Greenbelt Greenhills\nMove Y1 Greenhills Twoshort\nMove Y2 Greenhills Twoshort\nCatastrophe Twoshort Y\n\n37) TwoShort: Build G2 Bluestar\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Greenbelt\n\tTwoShort: Gah! I thought I had a plan if you did that, but now it doesn't work.\n\n39) TwoShort: Sacrifice Y1 Grogar\nMove G1 Twoshort Zoltar\nCatastrophe Zoltar Green\n\n40) zoltar: Trade R2 Y2 Greenbelt\n\tzoltar: Well, it was my only move -- I'm still in deep trouble\n\n41) TwoShort: Trade G2 Y2 Bluestar\n\tzoltar: Oops -- well, so much for that\n\n42) zoltar: Sacrifice Y2 Greenbelt\nMove B3 Greenbelt Bluestar\nMove B3 Bluestar Twoshort\n\n43) TwoShort: Sacrifice Y2 Bluestar\nMove R2 Twoshort Zoltar\nMove G1 Bluestar Twoshort\n\tTwoShort: I think you've got me...\n\n\tzoltar: Well, I was going to resign when you blew up my greens, but kept playing as to not piss you off. If I had a chance in this game, I didn't see it. At least I got to put a piece in your homeworld before I died.\n\tTwoShort: I feel bad that I got upset in that other game. I over-reacted an I apologize. It's obviously your right to resign if you don't think you can win, but this game is a good example of why I don't think you should. If you built an r2 at Greenbelt, and (depending what I did) moved your b3 home before attacking, I didn't see a way to stop you. \n\tzoltar: I'll have to set up the position and check it out. I was still demoralized by missing that you could take out all my greens earlier.\n\nHomeworlds Online (SDG# 8264)\nVariants: "Hard time"\nStarted: 2007.6.14, Ended: 2007.7.15\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) zoltar: Build Y2 Zoltar\n\n8) TwoShort: Build Y2 Twoshort\n\n9) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n10) TwoShort: Discover Y1 Twoshort G2 Twisty\n\n11) zoltar: Build G1 Zoltar\n\n12) TwoShort: Build G1 Twoshort\n\n13) zoltar: Discover Y2 Zoltar B3 Bloohoohoo\n\n14) TwoShort: Discover G1 Twoshort G2 Grozilla\n\n15) zoltar: Trade G1 R1 Zoltar\n\n16) TwoShort: Build G1 Twoshort\n\n17) zoltar: Build R1 Zoltar\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Grozilla\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n19) zoltar: Build R2 Zoltar\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twisty\nBuild Y3 Twoshort\nBuild G3 Twoshort\n\n21) zoltar: Build Y3 Greenbelt\n\n22) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Twisty Greenbelt\nMove Y2 Twisty Greenbelt\nCatastrophe Greenbelt Yellow\n\n23) zoltar: Trade Y2 G2 Bloohoohoo\n\n24) TwoShort: Trade G2 R2 Twoshort\n\n25) zoltar: Trade R2 Y2 Zoltar\n\n26) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n27) zoltar: Build R2 Zoltar\n\n28) TwoShort: Sacrifice G1 Grozilla\nBuild G1 Twoshort\n\n29) zoltar: Discover R1 Zoltar G3 Goodgrief\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Bluonia\nBuild Y1 Twoshort\n\n31) zoltar: Discover R2 Zoltar Y3 Yuck\n\n32) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild R2 Yuck\nBuild R3 Zoltar\nBuild G3 Bloohoohoo\n\n34) TwoShort: Sacrifice G3 Bluonia\nBuild Y1 Bluestar\nBuild Y2 Twoshort\nBuild G3 Bluonia\n\n35) zoltar: Sacrifice G3 Bloohoohoo\nBuild G3 Bloohoohoo\nBuild R3 Goodgrief\nBuild R3 Zoltar\n\n36) TwoShort: Sacrifice G3 Bluonia\nBuild G3 Bluonia\nBuild Y2 Twoshort\nBuild Y3 Bluestar\n\n37) zoltar: Move R3 Zoltar Bloohoohoo\n\n38) TwoShort: Move Y2 Twoshort Bluonia\n\n39) zoltar: Move Y2 Zoltar Bloohoohoo\n\n40) TwoShort: Trade Y1 B1 Bluestar\n\n41) zoltar: Trade G3 B3 Bloohoohoo\n\tzoltar: m y2 zoltar bloohoohoo\n\n42) TwoShort: Trade G1 B1 Bluonia\n\n43) zoltar: Move R2 Yuck Grozilla\n\n44) TwoShort: Sacrifice Y2 Twoshort\nMove B1 Bluonia Bloohoohoo\nMove B1 Bluestar Bloohoohoo\nCatastrophe Bloohoohoo Blue\n\n45) zoltar: Build R3 Grozilla\n\n46) TwoShort: Sacrifice G3 Bluonia\nBuild Y1 Twoshort\nBuild Y2 Twoshort\nBuild Y2 Bluonia\n\n\tzoltar: Yep, I'm dead in this one too. Good game.\n\nHomeworlds Online (SDG# 7874)\nStarted: 2007.6.19, Ended: 2007.7.10\nParticipants: sudosub (S), dayleh (W), MikeYarrum (N), zoltar (E)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\tdayleh: Hello All .. and Good Luck\n\tMikeYarrum: Ships away!\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) dayleh: Homeworld Y1 B2 G3\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) zoltar: Build G1 Zoltar\n\tMikeYarrum: Oh my, I forgot about this game... squeezed in with six hours left!\n\n6) dayleh: Build G1 Dayleh\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) dayleh: Trade G1 Y1 Dayleh\n\n10) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n11) zoltar: Build G1 Zoltar\n\n12) dayleh: Build G1 Dayleh\n\n13) MikeYarrum: Build G1 Mikeyarrum\n\n14) zoltar: Trade G1 R1 Zoltar\n\n15) dayleh: Build G1 Dayleh\n\n16) MikeYarrum: Discover G1 Mikeyarrum B1 Kaorin\n\n17) zoltar: Build R1 Zoltar\n\n18) dayleh: Trade G1 R1 Dayleh\n\n19) MikeYarrum: Build G1 Kaorin\n\n20) zoltar: Trade R1 B1 Zoltar\n\n21) dayleh: Build R1 Dayleh\n\n22) MikeYarrum: Trade G1 R1 Kaorin\n\n23) zoltar: Build G1 Zoltar\n\n24) dayleh: Discover Y1 Dayleh G3 Kadon\n\n25) MikeYarrum: Discover G1 Mikeyarrum B1 Chihiro\n\n26) zoltar: Discover B1 Zoltar G3 Yabbadabbadoo\n\n27) dayleh: Discover G1 Dayleh Y3 Callie\n\n28) MikeYarrum: Build R1 Kaorin\n\n29) zoltar: Trade R1 B1 Zoltar\n\n30) dayleh: Move R1 Dayleh Yabbadabbadoo\n\n31) MikeYarrum: Trade R1 Y1 Kaorin\n\n32) zoltar: Build B2 Yabbadabbadoo\n\n33) dayleh: Build Y2 Kadon\n\n34) MikeYarrum: Build Y2 Kaorin\n\n35) zoltar: Trade B2 R2 Yabbadabbadoo\n\n36) dayleh: Sacrifice Y1 Kadon\nDiscover R1 Yabbadabbadoo G2 Erin\n\n37) MikeYarrum: Build R1 Kaorin\n\n38) zoltar: Build B2 Yabbadabbadoo\n\n39) dayleh: Move Y2 Kadon Chihiro\n\n40) MikeYarrum: Sacrifice G1 Chihiro\nBuild G1 Kaorin\n\n41) zoltar: Trade B2 Y2 Yabbadabbadoo\n\n42) dayleh: Trade Y2 G2 Chihiro\n\n43) MikeYarrum: Build G1 Mikeyarrum\n\n44) zoltar: Discover G1 Zoltar B3 Bloohoohoo\n\n45) dayleh: Build G2 Chihiro\n\n46) MikeYarrum: Discover R1 Kaorin G3 Boynamo\n\n47) zoltar: Build G2 Zoltar\n\n48) dayleh: Build G2 Dayleh\n\n49) MikeYarrum: Discover Y1 Kaorin B3 Rachael\n\n50) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Yabbadabbadoo\nBuild B2 Yabbadabbadoo\n\n51) dayleh: Trade G2 Y2 Chihiro\n\n52) MikeYarrum: Move G1 Kaorin Rachael\n\n53) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bloohoohoo\nBuild G3 Zoltar\nBuild B2 Zoltar\n\n54) dayleh: Sacrifice G3 Dayleh\nBuild G3 Dayleh\nBuild R1 Erin\nBuild R2 Dayleh\n\n55) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G3 Mikeyarrum\nBuild R2 Boynamo\nBuild R3 Kaorin\n\n56) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Yabbadabbadoo\nBuild Y1 Yabbadabbadoo\n\n57) dayleh: Sacrifice Y2 Chihiro\nMove R1 Erin Yabbadabbadoo\nMove R1 Erin Yabbadabbadoo\nCatastrophe Yabbadabbadoo Red\n\n58) MikeYarrum: Build Y2 Rachael\n\n59) zoltar: Sacrifice Y2 Yabbadabbadoo\nMove G2 Bloohoohoo Dayleh\nMove G1 Bloohoohoo Dayleh\nCatastrophe Dayleh G\n\n60) dayleh: Trade R2 G2 Dayleh\n\n61) MikeYarrum: Build Y2 Kaorin\n\n62) zoltar: Move B2 Zoltar Callie\n\n63) dayleh: Trade G2 Y2 Chihiro\n\n64) MikeYarrum: Move R3 Kaorin Yabbadabbadoo\n\tzoltar: Back at'cha!\n\n65) zoltar: Discover Y1 Yabbadabbadoo G2 Hubbahubbahubba\n\tdayleh: Ouch. Nice move.\n\n66) dayleh: Build R1 Dayleh\n\n67) MikeYarrum: Attack B2E Yabbadabbadoo\n\n68) zoltar: Sacrifice G3 Zoltar\nBuild B2 Yabbadabbadoo\nBuild B3 Callie\nBuild B3 Zoltar\nCatastrophe Yabbadabbadoo B\n\n69) dayleh: Build G1 Dayleh\n\n70) MikeYarrum: Build G2 Rachael\n\n71) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Hubbahubbahubba\n\n72) dayleh: Sacrifice G2 Dayleh\nBuild Y3 Chihiro\nBuild G2 Dayleh\n\tMikeYarrum: I used to worry about capitalization, too - looks much nicer. Then I decided it would be more science-fictiony to enter my commands in all caps.\n\n73) MikeYarrum: Build Y3 Mikeyarrum\n\n74) zoltar: Sacrifice B2 Callie\nTrade Y3 R3 Hubbahubbahubba\nTrade B3 G3 Zoltar\n\n75) dayleh: Trade Y3 G3 Chihiro\n\n76) MikeYarrum: Discover Y2 Rachael G2 Perapera\n\n77) zoltar: Build Y3 Hubbahubbahubba\n\n78) dayleh: Build Y3 Chihiro\n\n79) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Kaorin\nBuild G3 Mikeyarrum\nBuild Y3 Rachael\n\n80) zoltar: Sacrifice Y2 Zoltar\nMove B3 Callie Dayleh\nMove Y3 Hubbahubbahubba Boynamo\n\n81) dayleh: Trade R1 B1 Dayleh\n\n82) MikeYarrum: Sacrifice Y1 Mikeyarrum\nMove R3 Yabbadabbadoo Kaorin\n\n83) zoltar: Sacrifice R3 Hubbahubbahubba\nAttack R2N Boynamo\nAttack B1W Dayleh\nAttack G2W Dayleh\n\n84) zoltar: Move B3 Dayleh Callie\n\n85) MikeYarrum: Sacrifice Y2 Kaorin\nMove R3 Kaorin Boynamo\nMove R3 Boynamo Chihiro\n\n\tzoltar: Yep, that about does it for me. No chance at this point. If I build the G3 you just blow all my greens up and I'm dead in the water. Good game!\n\tMikeYarrum: Thanks for playing, everyone! It didn't turn out as smoothly as the 1 day clock Zendo game, though.\n\tzoltar: No, it didn't. My mistake was to attack, as after I trash dayleh's homeworld, you get to mop up and end up with all the big ships and I'm too weak to rebuild. I had to, after my initial weakening of his forces, ignored him and built up. I am terrible at these multi-player games and I always seem to choose the wrong strategy and tactics.\n\tzoltar: Thanks for the game.\n\nHomeworlds Online (SDG# 8374)\nStarted: 2007.6.19, Ended: 2007.7.27\nParticipants: MatrixFrog (S), DaDRK (N)\nWinner: DaDRK\n\n1) DaDRK: Homeworld R3 G1 B3\n\n2) MatrixFrog: Homeworld G1 B2 Y3\n\tDaDRK: hello again, good luck on the game :)\n\n3) DaDRK: Build B1 Dadrk\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) DaDRK: Build B1 Dadrk\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) DaDRK: Trade B1 Y1 Dadrk\n\n8) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n9) DaDRK: Build B1 Dadrk\n\n10) MatrixFrog: Discover Y1 Matrixfrog G3 Gandalf\n\n11) DaDRK: Discover B1 Dadrk G2 Frst\n\n12) MatrixFrog: Build Y1 Gandalf\n\n13) DaDRK: Build Y2 Dadrk\n\n14) MatrixFrog: Build Y2 Matrixfrog\n\n15) DaDRK: Trade Y2 R2 Dadrk\n\n16) MatrixFrog: Discover Y1 Gandalf B2 Frodo\n\n17) DaDRK: Move R2 Dadrk Frodo\n\n18) MatrixFrog: Discover Y1 Frodo G1 Bilbo\n\n19) DaDRK: Build B1 Frst\n\n20) MatrixFrog: Build Y2 Bilbo\n\tMatrixFrog: I don't know how many character names I'm going to be able to remember...\n\tDaDRK: hehe\n\n21) DaDRK: Trade B1 R1 Dadrk\n\n22) MatrixFrog: Discover Y2 Bilbo B2 Elves\n\n23) DaDRK: Trade B1 R1 Frst\n\n24) MatrixFrog: Move Y1 Gandalf Elves\n\n25) DaDRK: Build Y2 Dadrk\n\tDaDRK: hmm don't know how to proceed from this point\n\tMatrixFrog: Homeworlds is very open sometimes. You have a zillion things you COULD do, but which one is going to actually be useful?\n\n26) MatrixFrog: Move Y1 Elves Dadrk\n\n27) DaDRK: Sacrifice Y2 Dadrk\nMove Y1 Dadrk Frodo\nMove R2 Frodo Bilbo\n\n28) MatrixFrog: Build Y2 Bilbo\n\n29) DaDRK: Attack Y2 Bilbo\n\n30) MatrixFrog: Build Y3 Bilbo\n\n31) DaDRK: Build Y3 Bilbo\nCatastrophe Bilbo Y\n\n32) MatrixFrog: Build Y1 Dadrk\n\n33) DaDRK: Sacrifice R2 Bilbo\nAttack Y1 Dadrk\nAttack Y1 Dadrk\n\n34) MatrixFrog: Build R2 Matrixfrog\n\n35) DaDRK: Build R2 Frst\n\n36) MatrixFrog: Build Y2 Matrixfrog\n\n37) DaDRK: Move Y1 Dadrk Frst\n\n38) MatrixFrog: Discover Y2 Matrixfrog G3 Gigawatt\n\n39) DaDRK: Build Y3 Dadrk\n\n40) MatrixFrog: Build Y3 Gigawatt\n\n41) DaDRK: Discover R2 Frst R3 Scnd\n\n42) MatrixFrog: Trade R1 B1 Matrixfrog\n\n43) DaDRK: Sacrifice Y3 Dadrk\nMove R1 Dadrk Frodo\nMove R2 Scnd Frodo\nMove R2 Frodo Gigawatt\n\n44) MatrixFrog: Move Y2 Gigawatt Frodo\n\n45) DaDRK: Build Y3 Dadrk\n\n46) MatrixFrog: Sacrifice R2 Matrixfrog\nAttack R1 Frodo\nAttack Y1 Frodo\n\n47) DaDRK: Build B1 Frst\n\n48) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n49) DaDRK: Build Y3 Frst\n\n50) MatrixFrog: Build G1 Matrixfrog\n\n51) DaDRK: Build B3 Dadrk\n\n52) MatrixFrog: Sacrifice Y2 Elves\nMove Y2 Frodo Dadrk\nMove Y1 Frodo Dadrk\nCatastrophe Dadrk Y\n\n53) DaDRK: Sacrifice Y3 Frst\nMove B1 Frst Gigawatt\nMove B1 Gigawatt Matrixfrog\nMove R2 Gigawatt Matrixfrog\n\n54) MatrixFrog: Discover G1 Matrixfrog Y3 Cheese\n\n55) DaDRK: Trade R2 B2 Matrixfrog\nCatastrophe Matrixfrog Blue\n\n56) MatrixFrog: Build Y1 Matrixfrog\n\n57) DaDRK: Build R1 Frst\n\n58) MatrixFrog: Trade R1 B1 Frodo\n\n59) DaDRK: Move R1 Frst Cheese\n\n60) MatrixFrog: Sacrifice G1 Cheese\nBuild G1 Matrixfrog\n\n61) DaDRK: Build R1 Frst\n\n62) MatrixFrog: Sacrifice B1 Frodo\nTrade G1 B1 Matrixfrog\n\n63) DaDRK: Trade R1 G1 Frst\n\n64) MatrixFrog: Build B1 Matrixfrog\n\tDaDRK: funny move :p\n\tMatrixFrog: I love doing that. I feel so clever. I've only played this with real pieces a few times, but I think I would actually move the piece to the stash, then take it out again.\n\n65) DaDRK: Trade B3 G3 Dadrk\n\n66) MatrixFrog: Move Y3 Gigawatt Frst\n\tDaDRK: would probably work like that\n\n67) DaDRK: Move G1 Frst Matrixfrog\n\n68) MatrixFrog: Trade G3 R3 Matrixfrog\n\n69) DaDRK: Sacrifice G3 Dadrk\nBuild G2 Matrixfrog\nBuild G2 Matrixfrog\nBuild G3 Matrixfrog\nCatastrophe Matrixfrog Green\n\n\tDaDRK: gg\n\tDaDRK: quick question, how does this rating system work?\n\tMatrixFrog: I don't know the details, but obviously your rating goes up if you win, down if you lose. If you win against a better player, your rating goes up more than against a so-so player. The exact formulas, I don't know.\n\nHomeworlds Online (SDG# 8271)\nStarted: 2007.6.19, Ended: 2007.6.29\nParticipants: DaDRK (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B2 Y1 G3\n\n2) DaDRK: Homeworld R3 G1 B3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) DaDRK: Build B1 Dadrk\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) DaDRK: Build B1 Dadrk\n\tDaDRK: a little late but good luck\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\tMikeYarrum: Thanks, you too!\n\n8) DaDRK: Trade B1 G1 Dadrk\n\n9) MikeYarrum: Discover Y1 Mikeyarrum G3 Sakaki\n\n10) DaDRK: Build G1 Dadrk\n\n11) MikeYarrum: Build Y2 Sakaki\n\n12) DaDRK: Build G2 Dadrk\n\n13) MikeYarrum: Build G2 Mikeyarrum\nCatastrophe Dadrk Green\n\tMikeYarrum: You may want to undo that move. Now that you have four green pieces in a system, I can cause a catastrophe at the end of my turn.\n\tMikeYarrum: Sorry - waited as long as I could.\n\n\tDaDRK: I actually thought I undid that, oh well\n\tDaDRK: well good game I don't think I can do much now, thanks for the game even if I did such a stupid move.\n\tMikeYarrum: I was worried you had left the site, as many sometimes do. It's best to just start a new game when an old one goes sour.\n\nHomeworlds Online (SDG# 8265)\nVariants: "Hard time"\nStarted: 2007.6.19, Ended: 2007.6.28\nParticipants: dayleh (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) dayleh: Homeworld B1 G2 Y3\n\tTwoShort: Howdy...\n\n3) TwoShort: Build G1 Twoshort\n\n4) dayleh: Build Y1 Dayleh\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) dayleh: Trade Y1 R1 Dayleh\n\n7) TwoShort: Build G1 Twoshort\n\n8) dayleh: Build R1 Dayleh\n\n9) TwoShort: Build G1 Twoshort\n\n10) dayleh: Build R2 Dayleh\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\tdayleh: How are you today... sorry, didn't notice the salutation until now.\n\n12) dayleh: Discover R1 Dayleh G3 Tammy\n\n13) TwoShort: Build G1 Twoshort\n\n14) dayleh: Trade R2 G2 Dayleh\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Bluonia\nBuild G3 Twoshort\n\n16) dayleh: Sacrifice G2 Dayleh\nBuild R2 Dayleh\nBuild R2 Tammy\n\n17) TwoShort: Trade G2 R2 Bluonia\n\n18) dayleh: Build R3 Dayleh\n\n19) TwoShort: Sacrifice G3 Bluonia\nBuild R3 Bluonia\nBuild R3 Bluonia\nBuild G2 Bluonia\n\n20) dayleh: Sacrifice Y3 Dayleh\nMove R1 Tammy Bluonia\nDiscover R1 Bluonia Y3 Temp\nMove R1 Temp Bluonia\nCatastrophe Bluonia R\n\n21) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n22) dayleh: Trade R3 G3 Dayleh\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild Y1 Twoshort\nBuild G3 Twoshort\n\n24) dayleh: Trade R2 Y2 Dayleh\n\n25) TwoShort: Trade G2 R2 Bluonia\n\n26) dayleh: Build G2 Dayleh\n\n27) TwoShort: Trade G2 Y2 Bluonia\n\n28) dayleh: Sacrifice G2 Dayleh\nBuild Y1 Dayleh\nBuild Y3 Dayleh\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n30) dayleh: Discover Y2 Dayleh Y3 Callie\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Bluonia\nBuild R1 Bluonia\nBuild G3 Twoshort\n\n32) dayleh: Build R2 Dayleh\n\n33) TwoShort: Move Y3 Bluonia Tammy\n\n34) dayleh: Sacrifice Y2 Callie\nDiscover Y3 Dayleh R3 Temp\nMove Y3 Temp Bluonia\n\n35) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Bluonia\nBuild G3 Twoshort\nCatastrophe Bluonia Yellow\n\n36) dayleh: Build Y2 Dayleh\n\n37) TwoShort: Sacrifice R1 Bluonia\nAttack R2S Tammy\n\n38) dayleh: Discover R1 Dayleh Y3 Kadon\n\n39) TwoShort: Trade G1 B1 Bluonia\n\n40) dayleh: Trade Y1 B1 Dayleh\n\n41) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Bluonia\nBuild G3 Twoshort\nBuild Y1 Tammy\n\n42) dayleh: Discover R2 Dayleh Y3 Callie\n\n43) TwoShort: Trade G2 Y2 Bluonia\n\n\tdayleh: Good Game. Thanks.\n\nHomeworlds Online (SDG# 8379)\nStarted: 2007.6.20, Ended: 2007.7.27\nParticipants: rkalajian (S), maka (N)\nWinner: rkalajian\n\n1) maka: Homeworld B3 G2 Y3\n\n2) rkalajian: Homeworld B2 G3 Y3\n\tmaka: Hello! \n\n3) maka: Build Y1 Maka\n\trkalajian: Hey there!\n\n4) rkalajian: Build Y1 Rkalajian\n\n5) maka: Trade Y1 G1 Maka\n\n6) rkalajian: Trade Y1 G1 Rkalajian\n\n7) maka: Discover G1 Maka R1 Reddwarf\n\n8) rkalajian: Discover G1 Rkalajian B1 Fei\n\n9) maka: Build G1 Reddwarf\n\n10) rkalajian: Build G2 Fei\n\n11) maka: Build Y1 Maka\n\n12) rkalajian: Trade G1 Y1 Fei\n\n13) maka: Build G1 Reddwarf\n\n14) rkalajian: Discover Y1 Fei G3 Elly\n\n15) maka: Sacrifice Y3 Maka\nMove G1 Reddwarf Rkalajian\nMove G1 Reddwarf Rkalajian\nMove G1 Reddwarf Rkalajian\nCatastrophe Rkalajian Green\n\n16) rkalajian: Build G1 Fei\n\tmaka: kamikaze attack! :)\n\n17) maka: Build Y1 Maka\n\n18) rkalajian: Build Y2 Elly\n\n19) maka: Build Y2 Maka\n\n20) rkalajian: Trade Y3 G3 Rkalajian\n\n21) maka: Trade Y1 G1 Maka\n\n22) rkalajian: Build G1 Rkalajian\n\n23) maka: Move Y1 Maka Fei\n\n24) rkalajian: Trade G2 R2 Fei\n\n25) maka: Move Y1 Fei Elly\n\n26) rkalajian: Build G2 Fei\n\n27) maka: Move Y1 Elly Rkalajian\n\n28) rkalajian: Trade G3 R3 Rkalajian\n\n29) maka: Discover Y1 Rkalajian B1 Bool\n\n30) rkalajian: Build G2 Fei\n\n31) maka: Move G1 Maka Fei\nCatastrophe Fei Green\n\n32) rkalajian: Move Y1 Elly Fei\n\n33) maka: Build Y1 Maka\n\n34) rkalajian: Build G1 Rkalajian\n\n35) maka: Trade Y2 G2 Maka\n\n36) rkalajian: Trade R2 G2 Fei\n\n37) maka: Move G2 Maka Bool\n\n38) rkalajian: Build Y2 Fei\n\n39) maka: Sacrifice G2 Bool\nBuild Y2 Bool\nBuild Y3 Maka\n\n40) rkalajian: Trade Y2 R2 Fei\n\n41) maka: Trade Y2 G2 Bool\n\n42) rkalajian: Build Y2 Fei\n\n43) maka: Build Y2 Bool\n\n44) rkalajian: Build Y3 Elly\n\n45) maka: Trade Y3 B3 Maka\n\n46) rkalajian: Build G1 Fei\n\n47) maka: Sacrifice Y2 Bool\nDiscover G2 Bool G3 Yay\nMove Y1 Bool Yay\n\n48) rkalajian: Build G3 Fei\n\n49) maka: Sacrifice G2 Yay\nBuild Y2 Yay\nBuild Y3 Maka\n\n50) rkalajian: Sacrifice Y3 Elly\nMove R2 Fei Maka\nMove G3 Fei Maka\nMove Y2 Fei Maka\n\n51) maka: Sacrifice B3 Maka\nTrade Y1 R1 Yay\nTrade Y3 R3 Maka\nTrade Y1 R1 Maka\n\n52) rkalajian: Attack R3 Maka\n\n53) maka: Build R1 Maka\n\n54) rkalajian: Sacrifice R3 Rkalajian\nAttack R1 Maka\nAttack R1 Maka\nPass\n\tmaka: ok. you got me :) there's nothing I can do... Well played! \n\n\tmaka: Ok. Want to try out the new Volcano? I've played it at home, but haven't tried it here yet\n\trkalajian: Sure, I've never played Volcano before. Setup and I'll join.\n\nHomeworlds Online (SDG# 8375)\nStarted: 2007.6.20, Ended: 2007.6.25\nParticipants: dayleh (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) dayleh: Homeworld B1 G2 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) dayleh: Build Y1 Dayleh\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) dayleh: Trade Y1 R1 Dayleh\n\n7) zoltar: Build G1 Zoltar\n\n8) dayleh: Build Y1 Dayleh\n\n9) zoltar: Build Y1 Zoltar\n\n10) dayleh: Build Y2 Dayleh\n\n11) zoltar: Build Y2 Zoltar\n\n12) dayleh: Discover Y2 Dayleh G3 Tammy\n\n13) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n14) dayleh: Trade Y1 G1 Dayleh\n\tdayleh: Hey Zoltar .. Are you local to MD 'burbs? You named the system Greenbelt. Just Wondering\n\n15) zoltar: Trade Y2 R2 Zoltar\n\tzoltar: Affirmative, I reside in Old Greenbelt, just down the street from the creator of Homeworlds, Gort.\n\n16) dayleh: Build Y1 Dayleh\n\n17) zoltar: Build Y2 Zoltar\n\tdayleh: Kewl. I work in Lanham and line in Columbia. We eat at Beijing frequently. Are you going to Origins?\n\tzoltar: The "Chef's Secret" Thai restaurant is the best in Greenbelt, btw. No, I'm in Florida through the 4th of July visiting my family that live down here, but I'll make it to Origins next year I hope.\n\n18) dayleh: Trade Y3 G3 Dayleh\n\n19) zoltar: Discover Y2 Zoltar B2 Blueridge\n\n20) dayleh: Sacrifice Y1 Dayleh\nDiscover G1 Dayleh Y3 Callie\n\n21) zoltar: Build Y1 Greenbelt\n\n22) dayleh: Build G1 Callie\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Blueridge\nBuild Y3 Zoltar\n\n24) dayleh: Move Y2 Tammy Greenbelt\nCatastrophe Greenbelt Y\n\n25) zoltar: Build G2 Zoltar\n\tzoltar: Owe Know!!! You destroyed Greenbelt!\n\n26) dayleh: Discover G1 Callie B1 Erin\n\n27) zoltar: Trade Y3 G3 Blueridge\n\tdayleh: I often thought about destroying greenbelt, but its such a pretty, serene place ... lol\n\n28) dayleh: Build R1 Dayleh\n\n29) zoltar: Build R2 Zoltar\n\n30) dayleh: Trade G1 Y1 Erin\n\n31) zoltar: Discover Y1 Zoltar B2 Bluemoon\n\n32) dayleh: Discover Y1 Erin G3 Kadon\n\n33) zoltar: Move R2 Zoltar Bluemoon\n\n34) dayleh: Trade R1 Y1 Dayleh\n\n35) zoltar: Move R2 Bluemoon Callie\n\n36) dayleh: Discover G1 Callie Y2 Tammy\n\n37) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Blueridge\nBuild Y3 Bluemoon\n\n38) dayleh: Build G1 Tammy\n\n39) zoltar: Move R2 Zoltar Tammy\n\n40) dayleh: Build G2 Tammy\n\tdayleh: Not Looking Good in this Solar System\n\n41) zoltar: Attack G2 Tammy\n\tzoltar: Yes, that last sacrifice gives me a powerful lead.\n\n\nHomeworlds Online (SDG# 8376)\nStarted: 2007.6.20, Ended: 2007.8.18\nParticipants: antihero (S), MikeYarrum (N)\nWinner: antihero\n\n1) MikeYarrum: Homeworld B3 Y1 G3\n\n2) antihero: Homeworld B2 Y3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) antihero: Build G1 Antihero\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) antihero: Trade G1 Y1 Antihero\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) antihero: Build Y2 Antihero\n\n9) MikeYarrum: Discover Y1 Mikeyarrum G2 Kagura\n\n10) antihero: Discover Y1 Antihero G1 Greenie\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) antihero: Build G1 Antihero\n\n13) MikeYarrum: Build G2 Mikeyarrum\n\n14) antihero: Build G2 Antihero\n\n15) MikeYarrum: Discover G2 Mikeyarrum B2 Boynamo\n\n16) antihero: Trade G1 R1 Antihero\n\tantihero: hmm this was not a well-thought-out plan... :)\n\n17) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n18) antihero: Discover G2 Antihero B1 Switch\n\n19) MikeYarrum: Build G1 Mikeyarrum\n\n20) antihero: Move Y1 Greenie Kagura\n\n21) MikeYarrum: Build G1 Boynamo\n\n22) antihero: Build G1 Switch\n\n23) MikeYarrum: Trade G2 R2 Boynamo\n\n24) antihero: Trade G1 R1 Switch\n\n25) MikeYarrum: Build R2 Boynamo\n\n26) antihero: Build R2 Switch\n\n27) MikeYarrum: Build R3 Mikeyarrum\n\n28) antihero: Build R3 Antihero\n\n29) MikeYarrum: Discover R3 Mikeyarrum G2 Rachael\n\n30) antihero: Sacrifice R1 Antihero\nAttack Y1 Kagura\n\n31) MikeYarrum: Move Y2 Mikeyarrum Rachael\n\n32) antihero: Move Y2 Antihero Switch\n\n33) MikeYarrum: Discover R3 Rachael B1 Chihiro\n\n34) antihero: Build Y2 Kagura\n\n35) MikeYarrum: Build Y3 Rachael\n\n36) antihero: Build Y3 Switch\n\n37) MikeYarrum: Sacrifice Y2 Rachael\nMove R2 Boynamo Switch\nMove R2 Boynamo Switch\nCatastrophe Switch Red\n\n38) antihero: Move Y1 Kagura Mikeyarrum\n\n39) MikeYarrum: Build Y2 Rachael\n\n40) antihero: Move Y1 Kagura Mikeyarrum\n\n41) MikeYarrum: Build R1 Mikeyarrum\n\n42) antihero: Move Y2 Kagura Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n43) MikeYarrum: Move Y3 Rachael Mikeyarrum\n\n44) antihero: Build R1 Antihero\n\n\tantihero: Wait, did I have a winning move here that I didn't see?\n\tMikeYarrum: Sorry, I just didn't like where this game was headed, and I didn't think I had any good moves.\n\tantihero: Ah, no problem. Always fun to play you. I'll accept another challenge again some time. \n\tMikeYarrum: =D\n\nHomeworlds Online (SDG# 8387)\nStarted: 2007.6.21, Ended: 2007.8.19\nParticipants: antihero (S), Kermit (N)\nWinner: antihero\n\n1) Kermit: Homeworld G1 B2 Y3\n\n2) antihero: Homeworld B1 G3 Y3\n\n3) Kermit: Build Y1 Kermit\n\n4) antihero: Build Y1 Antihero\n\n5) Kermit: Discover Y1 Kermit B3 Slinky\n\n6) antihero: Discover Y1 Antihero G2 Builder\n\n7) Kermit: Trade Y1 G1 Slinky\n\n8) antihero: Build Y1 Antihero\n\n9) Kermit: Build G1 Slinky\n\n10) antihero: Build Y1 Builder\n\n11) Kermit: Build G2 Slinky\n\n12) antihero: Build Y2 Antihero\n\n13) Kermit: Build Y2 Kermit\n\n14) antihero: Trade Y2 G2 Antihero\n\n15) Kermit: Trade G2 R2 Slinky\n\n16) antihero: Trade Y1 R1 Antihero\n\n17) Kermit: Move Y2 Kermit Slinky\n\n18) antihero: Discover Y1 Builder G3 Biggreen\n\n19) Kermit: Move G1 Slinky Builder\n\n20) antihero: Move Y1 Biggreen Kermit\n\n21) Kermit: Build R1 Slinky\n\n22) antihero: Sacrifice G2 Antihero\nBuild Y1 Kermit\nBuild Y2 Kermit\nCatastrophe Kermit Y\n\tantihero: thanks for playing! I'm sorry for all the delays.\n\n\nHomeworlds Online (SDG# 8386)\nStarted: 2007.6.22, Ended: 2007.7.3\nParticipants: discord35 (S), MikeYarrum (N)\nWinner: discord35\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\tdiscord35: Hello! This is my first time playing here.\n\tMikeYarrum: Hello! I think I noticed your watching another game of mine. Hope you enjoy!\n\n2) discord35: Homeworld G1 B2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) discord35: Build Y1 Discord35\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) discord35: Trade Y1 G1 Discord35\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\n8) discord35: Discover G1 Discord35 G3 Dakota\n\n9) MikeYarrum: Discover Y1 Mikeyarrum B1 Osaka\n\tdiscord35: That will be my last move for tonight, I think. I've got to focus on other things.\n\n10) discord35: Build Y1 Discord35\n\n11) MikeYarrum: Build Y2 Mikeyarrum\n\n12) discord35: Move Y1 Discord35 Dakota\n\n13) MikeYarrum: Build Y2 Mikeyarrum\n\n14) discord35: Build Y2 Dakota\n\n15) MikeYarrum: Trade Y1 G1 Osaka\n\n16) discord35: Sacrifice Y2 Dakota\nMove Y1 Dakota Osaka\nMove Y1 Osaka Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n17) MikeYarrum: Build G2 Osaka\n\n18) discord35: Build Y1 Discord35\n\n19) MikeYarrum: Build G2 Mikeyarrum\n\n20) discord35: Move Y1 Discord35 Dakota\n\n21) MikeYarrum: Trade G2 Y2 Osaka\n\n22) discord35: Build G2 Dakota\n\n23) MikeYarrum: Move G1 Osaka Dakota\nCatastrophe Dakota Green\n\n24) discord35: Build Y1 Discord35\n\n25) MikeYarrum: Build G1 Mikeyarrum\n\n26) discord35: Trade Y1 R1 Discord35\n\n27) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n28) discord35: Build Y1 Discord35\n\n29) MikeYarrum: Build G1 Mikeyarrum\n\n30) discord35: Discover Y1 Discord35 B3 Dakota\n\n31) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n32) discord35: Trade Y1 G1 Dakota\n\n33) MikeYarrum: Build Y1 Mikeyarrum\n\n34) discord35: Build R1 Discord35\n\n35) MikeYarrum: Trade G2 R2 Mikeyarrum\n\n36) discord35: Build G1 Dakota\n\n37) MikeYarrum: Build G2 Mikeyarrum\n\n38) discord35: Trade G1 Y1 Dakota\n\n39) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n40) discord35: Build Y2 Dakota\n\n41) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove Y1 Mikeyarrum Osaka\nDiscover Y2 Osaka G3 Sakaki\n\n42) discord35: Trade Y2 G2 Dakota\n\n43) MikeYarrum: Build Y2 Sakaki\n\n44) discord35: Sacrifice G2 Dakota\nBuild Y2 Discord35\nBuild Y3 Dakota\n\n45) MikeYarrum: Build Y3 Mikeyarrum\n\n46) discord35: Discover Y1 Dakota G2 Carolina\n\n47) MikeYarrum: Move R2 Mikeyarrum Osaka\n\n48) discord35: Move R1 Discord35 Dakota\n\n49) MikeYarrum: Move Y3 Mikeyarrum Osaka\n\n50) discord35: Build R1 Dakota\n\n51) MikeYarrum: Sacrifice B1 Mikeyarrum\nTrade Y2 G2 Sakaki\n\n52) discord35: Build Y2 Dakota\n\n53) MikeYarrum: Move G2 Sakaki Osaka\n\n54) discord35: Move R1 Dakota Carolina\n\n55) MikeYarrum: Build R2 Osaka\n\n56) discord35: Build R2 Carolina\n\n57) MikeYarrum: Move R2 Osaka Sakaki\n\n58) discord35: Build R3 Discord35\n\n59) MikeYarrum: Build R3 Osaka\n\n60) discord35: Sacrifice Y2 Dakota\nMove R1 Dakota Osaka\nMove R1 Carolina Osaka\nCatastrophe Osaka R\n\n61) MikeYarrum: Build R1 Sakaki\n\n62) discord35: Build Y2 Dakota\n\n63) MikeYarrum: Sacrifice Y2 Sakaki\nMove R1 Sakaki Discord35\nMove R2 Sakaki Discord35\nCatastrophe Discord35 Red\n\n64) discord35: Sacrifice Y2 Discord35\nMove Y1 Carolina Osaka\nMove Y2 Dakota Osaka\nCatastrophe Osaka Y\n\n65) MikeYarrum: Build Y1 Mikeyarrum\n\n66) discord35: Move Y3 Dakota Osaka\n\n67) MikeYarrum: Move Y1 Mikeyarrum Osaka\n\n68) discord35: Sacrifice R2 Carolina\nAttack G2N Osaka\nAttack Y1N Osaka\n\n\tMikeYarrum: I think that's checkmate. Thank you for the game!\n\tdiscord35: Thank you as well!\n\nHomeworlds Online (SDG# 8377)\nVariants: "Hard time"\nStarted: 2007.6.24, Ended: 2007.7.22\nParticipants: JeffW (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) JeffW: Homeworld Y1 G3 B3\n\n3) TwoShort: Build G1 Twoshort\n\n4) JeffW: Build B1 Jeffw\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) JeffW: Trade B1 Y1 Jeffw\n\n7) TwoShort: Build Y2 Twoshort\n\n8) JeffW: Build Y2 Jeffw\n\n9) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort R2 Boomtime\nMove Y1 Boomtime Jeffw\nCatastrophe Jeffw Yellow\n\n10) JeffW: Build B1 Jeffw\n\n11) TwoShort: Build G1 Twoshort\n\n12) JeffW: Trade B1 Y1 Jeffw\n\n13) TwoShort: Build G1 Twoshort\n\n14) JeffW: Build Y1 Jeffw\n\n15) TwoShort: Trade G3 Y3 Twoshort\n\n16) JeffW: Trade Y1 R1 Jeffw\n\n17) TwoShort: Discover G1 Twoshort R2 Rosy\n\n\nHomeworlds Online (SDG# 8483)\nStarted: 2007.6.26, Ended: 2007.7.15\nParticipants: nycavri (S), JeffW (N)\nWinner: nycavri\n\n1) JeffW: Homeworld Y1 G3 B3\n\n2) nycavri: Homeworld Y2 B1 G3\n\tnycavri: h y2 b1 g3\n\tnycavri: *blush*\n\n3) JeffW: Build B1 Jeffw\n\n4) nycavri: Build G1 Nycavri\n\n5) JeffW: Trade B1 Y1 Jeffw\n\n6) nycavri: Build G1 Nycavri\n\n7) JeffW: Build Y1 Jeffw\n\n8) nycavri: Discover G1 Nycavri Y3 Mvb\n\n9) JeffW: Build Y2 Jeffw\n\n10) nycavri: Discover G1 Mvb Y2 Mvg\nCatastrophe Jeffw Y\n\n11) JeffW: Build B1 Jeffw\n\tnycavri: Anyone can trigger a catastrophe in any system...\n\n12) nycavri: Move G1 Mvg Jeffw\n\tJeffW: I must admit I don't understand the strategy of this game yet\n\tnycavri: Steepest learning curve of any game on SDG, imo. I feel like I know what I'm doing, but have still yet to win my first game here. Says something about the design, however, that I keep coming back for more!\n\n13) JeffW: Trade B3 R3 Jeffw\n\n14) nycavri: Sacrifice G3 Nycavri\nBuild G1 Jeffw\nBuild G2 Jeffw\nBuild G2 Jeffw\nCatastrophe Jeffw G\n\tnycavri: Thanks for the game. The early game strategy is to work towards getting bigger ships while preventing you opponent doing the same. If you can shut them out of ships of one color entirely, so much the better. Easier said than done however, as seen by my sub 1500 rating! Feel free to challenge again, unrated if you prefer.\n\n\nHomeworlds Online (SDG# 8496)\nStarted: 2007.6.27, Ended: 2007.7.22\nParticipants: Pensator (S), hellboy79 (W), Maeglor (N), tesla (E)\nWinner: Pensator\n\n1) Maeglor: Homeworld Y1 B2 G3\n\n2) tesla: Homeworld Y2 B3 G3\n\n3) Pensator: Homeworld Y3 B2 G3\n\n4) hellboy79: Homeworld B1 G3 Y3\n\n5) Maeglor: Build G1 Maeglor\n\n6) tesla: Build G1 Tesla\n\n7) Pensator: Build G1 Pensator\n\n8) hellboy79: Build Y1 Hellboy79\n\n9) Maeglor: Build G1 Maeglor\n\n10) tesla: Trade G1 Y1 Tesla\n\n11) Pensator: Discover G1 Pensator Y1 Pensaluna\n\n12) hellboy79: Build Y1 Hellboy79\n\n13) Maeglor: Discover G1 Maeglor Y3 Maedhros\n\n14) tesla: Build Y2 Tesla\n\n15) Pensator: Build G1 Pensator\n\n16) hellboy79: Discover Y1 Hellboy79 Y2 Terminus\n\n17) Maeglor: Build G1 Maeglor\n\n18) tesla: Discover Y2 Tesla B1 Altes\n\n19) Pensator: Build G2 Pensaluna\n\n20) hellboy79: Trade Y3 G3 Hellboy79\n\n21) Maeglor: Build G2 Maedhros\n\n22) tesla: Build G2 Tesla\n\n23) Pensator: Discover G1 Pensaluna Y3 Clon\n\n24) hellboy79: Sacrifice G3 Hellboy79\nBuild Y2 Terminus\nBuild Y2 Hellboy79\nBuild Y3 Hellboy79\n\n25) Maeglor: Sacrifice G2 Maedhros\nBuild G2 Maedhros\nBuild G2 Maedhros\n\n26) tesla: Sacrifice G2 Tesla\nBuild G2 Tesla\nBuild Y3 Altes\n\n27) Pensator: Move G1 Clon Maeglor\nCatastrophe Maeglor G\n\n28) tesla: Sacrifice Y3 Altes\nMove G2 Tesla Altes\nMove Y2 Altes Terminus\nMove Y2 Terminus Hellboy79\nCatastrophe Hellboy79 Y\n\n29) Pensator: Trade G1 R1 Pensator\n\n30) tesla: Build G1 Altes\n\n31) Pensator: Move G2 Pensaluna Terminus\n\ttesla: me he unido al carro de los sacrificios\n\n32) tesla: Move Y1 Tesla Altes\n\tPensator: Lo siento :S\n\n33) Pensator: Build R1 Pensator\n\ttesla: está el tema bastante sangriento, perdona hellboy\n\tMaeglor: Esto es que me he muerto, ¿no? :P\n\thellboy79: ...\n\thellboy79: si es que soy un torpe...\n\n34) tesla: Build G1 Tesla\n\n35) Pensator: Sacrifice R1 Pensator\nAttack Y2W Terminus\n\n36) tesla: Trade G2 R2 Altes\n\n37) Pensator: Move Y2 Terminus Maedhros\n\n38) tesla: Trade G3 R3 Tesla\n\ttesla: miedo me das\n\n39) Pensator: Build R1 Pensator\n\tPensator: Ummm.. Como no me termino de aclarar con las normas quizás me líe, ¿No puedo atacar al Y2 de terminus (después de sacrificar un rojo) porque ya no pertenece a nadie? Pensaba que si ains. Conrfimame si es así o es que lo estoy haciendo mal\r\n\r\nEstaba escribiendo, Sacrifice r1 Pensator\r\nAttack Y2 Terminus\n\ttesla: s r1 Pensator\r\na y2w Terminus\r\nespero que así te deje\n\n40) tesla: Move G1 Altes Maedhros\nCatastrophe Maedhros G\n\tPensator: Gracias por la ayuda con los comandos\n\n41) Pensator: Build G1 Pensator\n\ttesla: no hay de qué, ya casi ni me acordaba\n\n42) tesla: Build R1 Tesla\n\n43) Pensator: Discover R1 Pensator Y1 Quarto\n\n44) tesla: Trade R2 G2 Altes\n\n45) Pensator: Discover R1 Pensator G1 Quorridor\n\ttesla: voy a hacer un undo de esos\n\n46) tesla: Trade R3 Y3 Tesla\n\n47) Pensator: Trade G3 Y3 Pensator\n\n48) tesla: Build Y1 Altes\n\n49) Pensator: Sacrifice R1 Quorridor\nAttack Y1W Terminus\n\n50) tesla: Discover G2 Altes Y3 Telas\n\n51) Pensator: Build G1 Terminus\n\n52) tesla: Build G1 Telas\n\n53) Pensator: Build G1 Pensator\n\n54) tesla: Move G2 Telas Quarto\n\tPensator: Yo también he provado el undo :)\r\n\n\n55) Pensator: Trade G1 R1 Pensator\n\n56) tesla: Move R1 Tesla Quarto\n\n57) Pensator: Attack R1E Quarto\n\n58) tesla: Trade G1 R1 Tesla\n\n59) Pensator: Move G2 Terminus Quarto\n\n60) tesla: Move G2 Quarto Telas\n\n61) Pensator: Move Y1 Terminus Altes\n\n62) tesla: Sacrifice R1 Tesla\nAttack Y1S Altes\n\n63) Pensator: Sacrifice Y2 Maedhros\nMove Y3 Pensator Quarto\nMove Y3 Quarto Tesla\n\n64) tesla: Trade Y3 R3 Tesla\n\ttesla: bien, creí que al tener yo una pieza mayor no podías hacer eso... bueno es saberlo\n\n65) Pensator: Sacrifice R1 Quarto\nAttack R3E Tesla\n\n\ttesla: el cambio de color es por plantar cara :-))\r\nvolveré...\n\tPensator: Me ha encantado el juego, esta muy bien. Y la partida ha sido muy emocionante :) Gracias por organizar la partida :)\n\nHomeworlds Online (SDG# 8508)\nVariants: "Hard time"\nStarted: 2007.6.28, Ended: 2007.9.8\nParticipants: antihero (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R3 B1 G3\n\n2) antihero: Homeworld B1 Y2 G3\n\tantihero: hello again!\n\n3) mneme: Build G1 Mneme\n\n4) antihero: Build G1 Antihero\n\n5) mneme: Trade G1 B1 Mneme\n\n6) antihero: Build G1 Antihero\n\n7) mneme: Build B2 Mneme\n\n8) antihero: Discover G1 Antihero B3 Trader\n\tmneme: *waves*\r\n\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) antihero: Build G1 Trader\n\n11) mneme: Build G2 Mneme\n\n12) antihero: Build G2 Antihero\n\n13) mneme: Discover G2 Mneme B2 Gambit\n\n14) antihero: Trade G2 B2 Antihero\n\n15) mneme: Build G2 Mneme\n\n16) antihero: Trade G1 Y1 Trader\n\n17) mneme: Build Y1 Mneme\n\n18) antihero: Trade G1 R1 Antihero\n\n19) mneme: Discover B1 Mneme G2 Giant\n\n20) antihero: Move Y1 Trader Giant\n\n21) mneme: Sacrifice Y2 Mneme\nDiscover G2 Gambit R3 Nova\nMove B1 Giant Nova\n\n22) antihero: Build R1 Antihero\n\n23) mneme: Trade G2 R2 Mneme\n\n24) antihero: Discover B2 Antihero G3 Builder\n\n25) mneme: Build B2 Nova\n\n26) antihero: Build G1 Trader\n\n27) mneme: Build G1 Mneme\n\n28) antihero: Build G2 Antihero\n\n29) mneme: Move R2 Mneme Giant\n\n30) antihero: Move Y1 Giant Builder\n\n31) mneme: Trade B2 Y2 Nova\n\n32) antihero: Trade G1 Y1 Trader\n\n33) mneme: Sacrifice G3 Mneme\nBuild G1 Nova\nBuild G3 Mneme\nBuild B2 Nova\n\n34) antihero: Move R1 Antihero Builder\n\n35) mneme: Sacrifice Y2 Nova\nMove G2 Nova Antihero\nMove G1 Nova Antihero\nCatastrophe Antihero G\n\n36) antihero: Move B2 Builder Antihero\n\n37) mneme: Build Y2 Mneme\n\n38) antihero: Trade B2 G2 Antihero\n\tantihero: Well that was a pretty large oversight on my part. Bummer. :)\n\n39) mneme: Sacrifice Y1 Mneme\nMove R2 Giant Trader\n\tmneme: Yep. Sorry about that; I certainly didn't expect for you to miss the check.\n\n\tantihero: good game! Next time I won't ignore the obvious. :)\n\tmneme: I hope so -- that was too easy.\r\n\n\nHomeworlds Online (SDG# 8513)\nVariants: "Hard time"\nStarted: 2007.6.28, Ended: 2007.7.31\nParticipants: clockwise (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B2 R1 G3\n\tclockwise: Hello again\n\n2) clockwise: Homeworld R3 B1 G3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tclockwise: Those zpips still up for the winning?\n\tTwoShort: I'm afraid not; Mike Yarrum finally took me down. You remind me I should make an official announcement though...\n\n4) clockwise: Build G1 Clockwise\n\n5) TwoShort: Trade G1 B1 Twoshort\n\n6) clockwise: Trade G1 B1 Clockwise\n\n7) TwoShort: Build B2 Twoshort\n\n8) clockwise: Build B2 Clockwise\n\n9) TwoShort: Trade B2 Y2 Twoshort\n\n10) clockwise: Trade B1 Y1 Clockwise\n\n11) TwoShort: Build Y1 Twoshort\n\n12) clockwise: Build B1 Clockwise\n\n13) TwoShort: Build B2 Twoshort\n\n14) clockwise: Discover B1 Clockwise G2 Avocado\n\n15) TwoShort: Trade B2 R2 Twoshort\n\n16) clockwise: Trade B1 R1 Avocado\n\tclockwise: Sorry for my lack of internet presence recently. I've been a little preoccupied with other things.\r\n\n\n17) TwoShort: Build G1 Twoshort\n\n\nHomeworlds Online (SDG# 8497)\nStarted: 2007.6.29, Ended: 2007.7.31\nParticipants: clockwise (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) clockwise: Homeworld Y2 B1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) clockwise: Build G1 Clockwise\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) clockwise: Trade G1 R1 Clockwise\n\n7) zoltar: Build Y1 Zoltar\n\n8) clockwise: Build R1 Clockwise\n\n9) zoltar: Build Y1 Zoltar\n\n10) clockwise: Build R2 Clockwise\n\n11) zoltar: Discover Y1 Zoltar G2 Gabbagabbahey\n\n12) clockwise: Trade R2 Y2 Clockwise\n\tclockwise: Well... this could certainly go very badly.\n\n13) zoltar: Discover Y1 Zoltar B2 Bloohoohoo\n\n14) clockwise: Discover Y2 Clockwise G3 Peppercorn\n\n15) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Bloohoohoo\nBuild Y3 Gabbagabbahey\nBuild Y3 Zoltar\n\n16) clockwise: Move Y2 Peppercorn Gabbagabbahey\n\n17) zoltar: Trade Y2 G2 Bloohoohoo\n\n18) clockwise: Build Y2 Gabbagabbahey\nCatastrophe Gabbagabbahey Y\n\n19) zoltar: Build Y1 Bloohoohoo\n\n20) clockwise: Build R2 Clockwise\n\n21) zoltar: Build Y2 Bloohoohoo\n\tclockwise: I am not in the slightest pleased about this...\n\n22) clockwise: Discover R2 Clockwise Y3 Hyperion\n\n23) zoltar: Trade Y2 R2 Bloohoohoo\n\n\tclockwise: Sorry, I just haven't had time for sdg recently. Perhaps we can play again when my schedule opens up.\n\nHomeworlds Online (SDG# 8481)\nStarted: 2007.6.29, Ended: 2007.7.9\nParticipants: dayleh (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) dayleh: Homeworld B1 R2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) dayleh: Build G1 Dayleh\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) dayleh: Build G1 Dayleh\n\n7) zoltar: Build Y1 Zoltar\n\n8) dayleh: Trade G1 Y1 Dayleh\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) dayleh: Build G1 Dayleh\n\n11) zoltar: Build R1 Zoltar\n\n12) dayleh: Discover G1 Dayleh Y3 George\n\n13) zoltar: Discover R1 Zoltar G2 Gertrude\n\n14) dayleh: Build G1 George\n\n15) zoltar: Sacrifice Y1 Zoltar\nMove R1 Gertrude George\n\n16) dayleh: Build G2 George\n\n17) zoltar: Attack G1 George\n\n18) dayleh: Discover G2 George B2 B2\n\n19) zoltar: Sacrifice G3 Zoltar\nBuild R2 George\nBuild R2 George\nBuild R3 Zoltar\n\n20) dayleh: Trade G1 B1 Dayleh\n\n21) zoltar: Move R2 George B2\n\n22) dayleh: Build Y1 Dayleh\n\n23) zoltar: Attack G2 B2\n\tdayleh: How the hell do I keep getting into these positions .. {doh}\n\n24) dayleh: Discover Y1 Dayleh R3 R3\n\n25) zoltar: Build R3 B2\n\tzoltar: Beats me!\n\tdayleh: lol\n\n26) dayleh: Discover G1 George Y1 Y1\n\n27) zoltar: Trade R3 Y3 B2\n\n28) dayleh: Build Y2 Dayleh\n\n29) zoltar: Trade R3 Y3 Zoltar\n\n30) dayleh: Build B1 Dayleh\n\n31) zoltar: Build R3 B2\n\n32) dayleh: Move B1 Dayleh R3\n\n33) zoltar: B R3 George\n\n34) dayleh: Sacrifice G3 Dayleh\nBuild B2 R3\nBuild B2 R3\nBuild B3 Dayleh\n\n35) zoltar: Move R3 B2 R3\n\tzoltar: And the Red Fleet is mine! All mine!\n\n\tdayleh: Good Game\n\nHomeworlds Online (SDG# 8468)\nStarted: 2007.6.29, Ended: 2007.7.4\nParticipants: zoltar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld B1 G3 B3 *\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build B1 Zoltar\n\n5) ts52: Build G1 Ts52\n\n6) zoltar: Trade B3 Y3 Zoltar\n\n7) ts52: Discover G1 Ts52 Y3 Sol\n\n8) zoltar: Build B2 Zoltar\n\n9) ts52: Build G1 Sol\n\n10) zoltar: Trade B2 G2 Zoltar\n\n11) ts52: Discover G1 Ts52 Y3 Wikket\n\n12) zoltar: Discover G2 Zoltar Y2 Yabbadabbadoo\n\n13) ts52: Build G2 Ts52\n\n14) zoltar: Trade Y3 G3 Zoltar\n\n15) ts52: Discover G1 Sol Y2 Krikket\n\tzoltar: I think my position is hopeless.\n\n16) zoltar: Build G2 Yabbadabbadoo\n\tts52: Don't worry, I'm sure I can screw something up.\n\n17) ts52: Move G1 Krikket Zoltar\n\n18) zoltar: Move G2 Yabbadabbadoo Wikket\n\n19) ts52: Sacrifice G1 Wikket\nBuild G1 Zoltar\nCatastrophe Zoltar Green\n\tzoltar: That doesn't work either.\n\n\tzoltar: Yup. GG. I was lost from the start.\n\nHomeworlds Online (SDG# 8518)\nStarted: 2007.7.4, Ended: 2007.7.9\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ts52: Build G1 Ts52\n\n7) zoltar: Build Y1 Zoltar\n\n8) ts52: Trade G1 Y1 Ts52\n\n9) zoltar: Build Y2 Zoltar\n\n10) ts52: Discover G1 Ts52 Y3 Sol\n\n11) zoltar: Discover Y1 Zoltar G2 Greenarrow\n\n12) ts52: Discover Y1 Ts52 G3 Kermit\n\n13) zoltar: Discover Y2 Zoltar G2 Greenlantern\n\n14) ts52: Build G1 Ts52\n\n15) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenlantern\nBuild Y3 Greenarrow\nBuild Y3 Zoltar\n\n16) ts52: Sacrifice G3 Ts52\nBuild G1 Sol\nBuild G2 Ts52\nBuild G3 Ts52\n\n17) zoltar: Trade Y3 G3 Zoltar\n\n18) ts52: Build Y3 Kermit\n\n19) zoltar: Sacrifice Y3 Greenarrow\nMove G3 Zoltar Greenlantern\nMove G3 Greenlantern Sol\nMove G3 Sol Ts52\nCatastrophe Ts52 G\n\n\tzoltar: Hey wait a second -- you can't do that -- I've got the "bluebird" checkmate!\n\nHomeworlds Online (SDG# 8579)\nStarted: 2007.7.5, Ended: 2007.8.1\nParticipants: ts52 (S), discord35 (N)\nWinner: ts52\n\n1) discord35: Homeworld G2 B1 Y3\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: Have a great game!\n\n3) discord35: Build Y1 Discord35\n\n4) ts52: Build G1 Ts52\n\tdiscord35: Thanks! This should be fun!\n\n5) discord35: Trade Y1 G1 Discord35\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) discord35: Discover G1 Discord35 Y3 Y3-1\n\n8) ts52: Build G1 Ts52\n\n9) discord35: Build Y1 Discord35\n\n10) ts52: Discover G1 Ts52 B1 Berry\n\n11) discord35: Trade Y1 R1 Discord35\n\n12) ts52: Trade Y1 R1 Ts52\n\n13) discord35: Build Y1 Discord35\n\n14) ts52: Build G1 Berry\n\n15) discord35: Build G2 Y3-1\n\n16) ts52: Trade G1 Y1 Berry\n\n17) discord35: Discover G2 Y3-1 Y2 Y2-1\n\n18) ts52: Build G1 Ts52\n\n19) discord35: Move G2 Y2-1 Berry\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Berry\nBuild G3 Berry\nBuild G3 Ts52\n\n21) discord35: Build G3 Y3-1\nCatastrophe Berry G\n\n22) ts52: Move G1 Ts52 Berry\n\n23) discord35: Move G3 Y3-1 Berry\n\n24) ts52: Build G1 Berry\n\n25) discord35: Trade G3 R3 Berry\n\n26) ts52: Build G2 Ts52\n\n27) discord35: Attack Y1S Berry\n\n28) ts52: Discover G2 Ts52 B1 Grape\n\n29) discord35: Attack G1S Berry\n\n30) ts52: Sacrifice G2 Grape\nBuild G2 Berry\nBuild G2 Berry\nCatastrophe Berry Green\n\n31) discord35: Build G1 Y3-1\n\n32) ts52: Build G1 Ts52\n\n33) discord35: Move G1 Y3-1 Berry\n\n34) ts52: Trade G1 Y1 Ts52\n\n35) discord35: Build Y2 Berry\n\n36) ts52: Discover Y1 Ts52 B1 Grape\n\n37) discord35: Move Y2 Berry Ts52\n\n38) ts52: Attack Y2N Ts52\n\n39) discord35: Build Y2 Berry\n\n40) ts52: Move Y2 Ts52 Grape\n\n41) discord35: Discover Y1 Berry Y2 Y2-1\n\n42) ts52: Trade Y2 R2 Grape\n\n43) discord35: Build Y2 Berry\n\n44) ts52: Build G1 Ts52\n\n45) discord35: Move Y1 Discord35 Y3-1\n\n46) ts52: Move G1 Ts52 Grape\n\n47) discord35: Discover Y1 Y3-1 R1 R1-1\n\n48) ts52: Build R2 Ts52\n\n49) discord35: Sacrifice G1 Y3-1\nBuild Y3 Discord35\n\n50) ts52: Move R2 Ts52 R1-1\n\n51) discord35: Sacrifice Y3 Discord35\nMove Y1 R1-1 Ts52\nMove Y2 Berry Ts52\nMove Y2 Berry Ts52\nCatastrophe Ts52 Y\n\n52) ts52: Build R2 Grape\n\n53) discord35: Build R3 Discord35\n\n54) ts52: Build R3 Ts52\n\n55) discord35: Move Y1 Y2-1 Berry\n\n56) ts52: Build G1 Ts52\n\n57) discord35: Discover Y3 Discord35 G3 G3-1\n\n58) ts52: Discover R2 Grape Y3 Sol\n\n59) discord35: Move Y3 G3-1 Grape\n\n60) ts52: Move R2 Sol Discord35\n\n61) discord35: Attack R2S Discord35\n\n62) ts52: Discover R2 Grape Y3 Sol\n\n63) discord35: Sacrifice R2 Discord35\nAttack Y1S Grape\nAttack G1S Grape\n\n64) ts52: Trade R3 Y3 Ts52\n\n65) discord35: Trade R1 Y1 Discord35\n\n66) ts52: Move G3 Ts52 Sol\n\n67) discord35: Build Y2 Berry\n\n68) ts52: Build R1 Ts52\n\n69) discord35: Sacrifice Y3 Grape\nMove Y1 Grape Ts52\nMove Y1 Berry Ts52\nMove Y2 Berry Ts52\nCatastrophe Ts52 Y\n\n70) ts52: Move G3 Sol Ts52\n\n71) discord35: Build G2 Berry\n\n72) ts52: Trade R1 Y1 Ts52\n\n73) discord35: Trade G2 Y2 Berry\n\n74) ts52: Move G1 Ts52 R1-1\n\n75) discord35: Build G2 Grape\n\n76) ts52: Build Y1 Ts52\n\n77) discord35: Move R3 Berry Sol\n\n78) ts52: Move R2 Sol Grape\n\n79) discord35: Move R3 Sol Grape\n\n80) ts52: Attack G2N Grape\n\n81) discord35: Attack R2S Grape\n\n82) ts52: Sacrifice G2 Grape\nBuild G2 R1-1\nPass\n\n83) discord35: Trade R2 Y2 Grape\n\n84) ts52: Move Y1 Ts52 R1-1\n\n85) discord35: Discover R3 Grape Y3 Y3-1\n\n86) ts52: Discover R2 R1-1 Y3 Sol\n\n87) discord35: Build R1 Discord35\n\n88) ts52: Build R2 Ts52\n\n89) discord35: Trade R3 G3 Discord35\n\n90) ts52: Sacrifice G2 R1-1\nBuild Y2 Ts52\nBuild Y3 R1-1\n\n91) discord35: Sacrifice G1 Grape\nBuild R2 Y3-1\n\n92) ts52: Trade R2 B2 Ts52\n\n93) discord35: Move R2 Y3-1 Grape\n\n94) ts52: Move B2 Ts52 R1-1\n\n95) discord35: Sacrifice G3 Discord35\nBuild R2 Y3-1\nBuild R3 Grape\nBuild R3 Discord35\n\n96) ts52: Build G1 Ts52\n\n97) discord35: Move R3 Grape Sol\n\n98) ts52: Discover R2 Sol B2 Blueish\n\n99) discord35: Move R3 Y3-1 Blueish\n\n100) ts52: Build B3 R1-1\n\n101) discord35: Attack R2S Blueish\n\n102) ts52: Move B3 R1-1 Y3-1\n\n103) discord35: Move R2 Y3-1 Discord35\n\n104) ts52: Build G2 R1-1\n\n105) discord35: Build G2 Berry\n\n106) ts52: Move G1 Ts52 Y3-1\n\n107) discord35: Move G1 Berry Sol\n\n108) ts52: Build G3 Y3-1\n\n109) discord35: Sacrifice Y2 Grape\nMove R3 Sol R1-1\nMove R3 Blueish R1-1\n\n110) ts52: Attack R3N R1-1\n\n111) discord35: Sacrifice R2 Grape\nAttack R3S R1-1\nAttack Y3S R1-1\n\n112) ts52: Trade B2 R2 R1-1\nCatastrophe R1-1 Red\n\n113) discord35: Build G1 Berry\n\n114) ts52: Sacrifice Y2 Ts52\nMove R1 Ts52 Sol\nMove R1 Sol Discord35\nCatastrophe Discord35 Red\n\n115) discord35: Move Y2 Berry Y3-1\n\n116) ts52: Move B3 Y3-1 Discord35\n\n117) discord35: Sacrifice G2 Berry\nBuild Y1 Y3-1\nBuild Y2 Y3-1\nCatastrophe Y3-1 Y\n\n118) ts52: Trade B3 R3 Discord35\n\n\nHomeworlds Online (SDG# 8610)\nStarted: 2007.7.9, Ended: 2007.7.24\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld B1 R3 G3 Zoltar\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Build G1 Ts52\n\n8) zoltar: Build G1 Zoltar\n\n9) ts52: Trade G1 B1 Ts52\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) ts52: Trade B1 R1 Ts52\n\n12) zoltar: Build R2 Zoltar\n\n13) ts52: Discover R1 Ts52 G3 Kermit\n\n14) zoltar: Trade R1 B1 Zoltar\n\n15) ts52: Build G1 Ts52\n\n16) zoltar: Build G1 Zoltar\n\n17) ts52: Discover G1 Ts52 Y3 Krikket\n\n18) zoltar: Discover G1 Zoltar B2 Blueberry\n\n19) ts52: Build G1 Ts52\n\n20) zoltar: Build G2 Zoltar\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Krikket\nBuild G2 Ts52\nBuild G3 Ts52\n\n22) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n23) ts52: Discover G2 Ts52 Y3 Wikket\n\n24) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Zoltar Blueberry\nMove R2 Zoltar Blueberry\n\n25) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Ts52\nBuild Y2 Ts52\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Blueberry\n\n27) ts52: Move Y2 Ts52 Kermit\n\n28) zoltar: Move Y3 Blueberry Kermit\n\n29) ts52: Move R1 Kermit Ts52\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Zoltar\nBuild R1 Blueberry\n\n31) ts52: Discover Y2 Ts52 B3 Gameyed\n\n32) zoltar: Move R1 Blueberry Kermit\n\n33) ts52: Sacrifice R1 Ts52\nAttack R1S Kermit\n\n34) zoltar: Sacrifice R2 Blueberry\nAttack R1 Kermit\nAttack Y2 Kermit\n\n35) ts52: Move G1 Ts52 Gameyed\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Kermit\nBuild R2 Kermit\n\n37) ts52: Sacrifice G2 Wikket\nBuild G2 Ts52\nBuild Y3 Gameyed\n\n38) zoltar: Sacrifice Y2 Zoltar\nMove Y2 Kermit Blueberry\nMove Y2 Blueberry Gameyed\n\n39) ts52: Trade Y3 R3 Gameyed\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Zoltar\n\n41) ts52: Attack Y2S Gameyed\n\n42) zoltar: Move R1 Kermit Blueberry\n\n43) ts52: Trade Y2 B2 Gameyed\n\n44) zoltar: Discover B1 Zoltar Y2 Yukkieposition\n\n45) ts52: Move B2 Gameyed Yukkieposition\n\n46) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Blueberry\nBuild R2 Blueberry\n\n47) ts52: Move R3 Gameyed Blueberry\nCatastrophe Blueberry Red\n\n48) zoltar: Move R2 Kermit Yukkieposition\n\n49) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Yukkieposition\nBuild B3 Yukkieposition\nCatastrophe Yukkieposition Blue\n\n50) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Kermit\nBuild R2 Yukkieposition\n\n51) ts52: Move G2 Ts52 Gameyed\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Kermit\nBuild R3 Yukkieposition\n\n53) ts52: Discover G1 Gameyed B2 Lasthope\n\n54) zoltar: Move R3 Yukkieposition Krikket\n\n55) ts52: Move G2 Krikket Lasthope\n\n56) zoltar: Sacrifice G2 Zoltar\nBuild G2 Blueberry\nBuild R3 Krikket\n\n57) ts52: Sacrifice G1 Krikket\nBuild G1 Gameyed\n\n58) zoltar: Sacrifice Y2 Blueberry\nMove Y3 Kermit Ts52\nMove R3 Krikket Ts52\n\n59) ts52: Attack R3S Ts52\n\tzoltar: Zee Death Star ease now fully functional! Attack!!\n\tzoltar: My extra 7 red sheeps and 2 giant yellow sheeps should give me zee edge!\n\n60) zoltar: Sacrifice R3 Krikket\nAttack Y1 Ts52\nAttack R3 Ts52\nAttack G3 Ts52\n\n\tzoltar: Yup. Thanks for the game, Earthling!\n\nHomeworlds Online (SDG# 8646)\nVariants: "Unrated"\nStarted: 2007.7.10, Ended: 2007.11.13\nParticipants: cobaltstarfire (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R2 B3 G3\n\n2) cobaltstarfire: Homeworld B2 Y1 G3\n\n3) Jesse: Build G1 Jesse\n\n4) cobaltstarfire: Build G1 Cobaltstarfire\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) cobaltstarfire: Discover G1 Cobaltstarfire B3 Cactus\n\n7) Jesse: Build G1 Jesse\n\n8) cobaltstarfire: Trade G3 R3 Cobaltstarfire\n\n9) Jesse: Discover G1 Jesse B1 Muffin\n\n10) cobaltstarfire: Trade R3 G3 Cobaltstarfire\n\n11) Jesse: Build G1 Jesse\n\n12) cobaltstarfire: Build G2 Cactus\n\n13) Jesse: Build G2 Muffin\n\n14) cobaltstarfire: Trade G1 Y1 Cactus\n\n15) Jesse: Trade G2 Y2 Muffin\n\n16) cobaltstarfire: Build G1 Cobaltstarfire\n\n17) Jesse: Build G2 Muffin\n\n18) cobaltstarfire: Build Y2 Cactus\n\n19) Jesse: Trade G2 R2 Muffin\n\n20) cobaltstarfire: Trade Y1 R1 Cactus\n\n21) Jesse: Build Y1 Muffin\n\n22) cobaltstarfire: Trade G1 R1 Cobaltstarfire\n\n23) Jesse: Discover Y1 Muffin G3 Starboard\n\n24) cobaltstarfire: Build G1 Cactus\n\n25) Jesse: Build Y2 Starboard\n\n26) cobaltstarfire: Build Y3 Cactus\n\n27) Jesse: Build Y3 Muffin\n\n28) cobaltstarfire: Sacrifice Y2 Cactus\nDiscover Y3 Cactus R1 Balls\nMove G1 Cactus Balls\n\n29) Jesse: Discover Y2 Muffin B3 Reddwarf\n\n30) cobaltstarfire: Sacrifice G2 Cactus\nBuild R2 Cactus\nBuild Y2 Balls\n\n31) Jesse: Build Y3 Jesse\n\n32) cobaltstarfire: Move G1 Balls Cactus\n\n33) Jesse: Build R3 Muffin\n\n34) cobaltstarfire: Build G2 Cactus\n\n35) Jesse: Move R3 Muffin Reddwarf\n\n36) cobaltstarfire: Move Y2 Balls Cactus\n\n37) Jesse: Build G2 Muffin\n\n\tcobaltstarfire: I think this game is just too hard for me to play and really have it be worth your time :|\n\nHomeworlds Online (SDG# 8400)\nStarted: 2007.7.16, Ended: 2007.9.18\nParticipants: MikeYarrum (S), nycavri (N)\nWinner: MikeYarrum\n\n1) nycavri: Homeworld B1 Y2 G3\n\tnycavri: Howdy!\n\n2) MikeYarrum: Homeworld B3 R2 G3\n\tMikeYarrum: Hello again. =D\n\n3) nycavri: Build G1 Nycavri\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) nycavri: Build G1 Nycavri\n\n6) MikeYarrum: Build G2 Mikeyarrum\n\n7) nycavri: Discover G1 Nycavri Y3 Fr\n\n8) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n9) nycavri: Build G1 Nycavri\n\n10) MikeYarrum: Discover G2 Mikeyarrum B1 Boynamo\n\n11) nycavri: Discover G1 Nycavri Y3 Hl\n\n12) MikeYarrum: Build G2 Mikeyarrum\n\n13) nycavri: Sacrifice G3 Nycavri\nBuild G2 Fr\nBuild G3 Hl\nBuild G3 Nycavri\n\n14) MikeYarrum: Build Y1 Mikeyarrum\n\n15) nycavri: Discover G3 Hl Y1 Iw\n\n16) MikeYarrum: Build Y2 Mikeyarrum\n\n17) nycavri: Move G1 Hl Iw\n\n18) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n19) nycavri: Trade G1 B1 Nycavri\n\n20) MikeYarrum: Move R1 Mikeyarrum Boynamo\n\n21) nycavri: Trade B1 R1 Nycavri\n\n22) MikeYarrum: Move Y2 Mikeyarrum Boynamo\n\n23) nycavri: Build G1 Nycavri\n\n24) MikeYarrum: Build Y1 Mikeyarrum\n\n25) nycavri: Trade G1 B1 Nycavri\n\n26) MikeYarrum: Build Y2 Boynamo\n\n27) nycavri: Sacrifice B1 Nycavri\nTrade G3 Y3 Iw\n\n28) MikeYarrum: Discover Y2 Boynamo G3 Perapera\n\n29) nycavri: Build G1 Iw\n\n30) MikeYarrum: Build Y3 Perapera\n\n31) nycavri: Sacrifice Y3 Iw\nMove G1 Iw Mikeyarrum\nMove G1 Iw Mikeyarrum\nPass\nCatastrophe Mikeyarrum G\n\n32) MikeYarrum: Build Y1 Boynamo\n\n33) nycavri: Build G1 Nycavri\n\tnycavri: b g1 nycavri\n\n34) MikeYarrum: Build Y3 Perapera\n\n35) nycavri: Trade G1 B1 Nycavri\n\n36) MikeYarrum: Build G1 Boynamo\n\n37) nycavri: Build B2 Nycavri\n\n38) MikeYarrum: Trade G2 B2 Boynamo\n\n39) nycavri: Move B1 Nycavri Fr\n\n40) MikeYarrum: Trade B2 R2 Boynamo\n\n41) nycavri: Trade G1 R1 Fr\n\n42) MikeYarrum: Discover R2 Boynamo G3 Chihiro\n\n43) nycavri: Build R2 Fr\n\n44) MikeYarrum: Build R3 Chihiro\n\n45) nycavri: Build R3 Nycavri\n\n46) MikeYarrum: Build R3 Boynamo\n\n47) nycavri: Move R2 Fr Boynamo\n\n48) MikeYarrum: Sacrifice Y2 Perapera\nMove R3 Boynamo Fr\nMove R3 Fr Nycavri\n\tnycavri: "Chaaaaaaaaaaaaaarge!"\n\n49) nycavri: Attack R3 Nycavri\n\n50) MikeYarrum: Attack R2 Boynamo\n\n51) nycavri: Move R3 Nycavri Perapera\n\n52) MikeYarrum: Sacrifice R1 Boynamo\nAttack R3 Perapera\n\n53) nycavri: Trade G2 Y2 Fr\n\n54) MikeYarrum: Sacrifice Y3 Perapera\nMove R3 Chihiro Boynamo\nMove R3 Boynamo Fr\nMove Y2 Boynamo Mikeyarrum\n\n55) nycavri: Discover Y2 Fr R1 Iw\n\n56) MikeYarrum: Trade Y2 G2 Mikeyarrum\n\n57) nycavri: Sacrifice G3 Nycavri\nBuild Y2 Iw\nBuild Y3 Iw\nBuild B2 Nycavri\n\n58) MikeYarrum: Move Y1 Mikeyarrum Iw\nCatastrophe Iw Yellow\n\n59) nycavri: Trade B2 G2 Nycavri\n\n60) MikeYarrum: Attack B1 Fr\n\n61) nycavri: Discover B2 Nycavri Y3 Tl\n\n62) MikeYarrum: Build G1 Boynamo\n\n63) nycavri: Build G1 Nycavri\n\n64) MikeYarrum: Sacrifice G1 Boynamo\nBuild B2 Fr\n\n65) nycavri: Discover B2 Tl Y1 Bk\n\n66) MikeYarrum: Move R3 Fr Bk\n\n67) nycavri: Attack B1 Fr\n\n68) MikeYarrum: Attack B2 Bk\n\n69) nycavri: Sacrifice G1 Nycavri\nBuild B2 Fr\n\n70) MikeYarrum: Discover B2 Fr G2 Kimura\n\n71) nycavri: Discover B2 Fr Y2 Ad\n\n72) MikeYarrum: Build B3 Kimura\n\n73) nycavri: Sacrifice G2 Nycavri\nBuild B3 Ad\nBuild R1 Fr\n\n\tMikeYarrum: You may want to take that move back. I can win if I sac my 3-point yellow and move a few reds into your Homeworld\n\tnycavri: No, 'sok. You got me. I have real trouble with this game online when it gets bigger than a couple of systems. I think I'll give it a rest for a while, especially now I have some face to face opponents for Homeworlds . . . Well played.\n\tMikeYarrum: I knew you were experienced enough to probably catch that, but I thought I'd let you know anyway. Thanks for the game!\n\nHomeworlds Online (SDG# 8733)\nVariants: "Hard time"\nStarted: 2007.7.21, Ended: 2007.9.12\nParticipants: nycavri (S), dsheldon (N)\nWinner: dsheldon\n\n1) dsheldon: Homeworld G1 B2 Y3\n\n2) nycavri: Homeworld Y2 B3 G3\n\tnycavri: Hi, there. TaGG.\n\n3) dsheldon: Build Y1 Dsheldon\n\n4) nycavri: Build G1 Nycavri\n\tdsheldon: fancy seeing you here again ;)\n\n5) dsheldon: Trade Y3 G3 Dsheldon\n\n6) nycavri: Trade G1 Y1 Nycavri\n\n7) dsheldon: Build G1 Dsheldon\n\n8) nycavri: Build G1 Nycavri\n\n9) dsheldon: Discover G1 Dsheldon B3 Ocean\n\n10) nycavri: Discover G1 Nycavri Y1 Fr\n\n11) dsheldon: Build G2 Dsheldon\n\n12) nycavri: Build Y2 Nycavri\n\n13) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Ocean\nBuild Y2 Dsheldon\nBuild Y3 Dsheldon\n\n14) nycavri: Discover Y2 Nycavri R1 Hl\n\n15) dsheldon: Trade Y2 R2 Dsheldon\n\n16) nycavri: Build G2 Fr\n\n17) dsheldon: Move Y1 Dsheldon Ocean\n\n18) nycavri: Trade Y1 B1 Nycavri\n\n19) dsheldon: Discover G1 Ocean B1 Pond\n\n20) nycavri: Sacrifice G1 Fr\nBuild Y1 Hl\n\n21) dsheldon: Sacrifice G2 Ocean\nBuild Y2 Dsheldon\nBuild Y3 Ocean\n\n22) nycavri: Build G1 Nycavri\n\n23) dsheldon: Trade Y3 G3 Ocean\n\n24) nycavri: Trade G1 R1 Nycavri\n\n25) dsheldon: Build Y3 Ocean\n\n26) nycavri: Discover G2 Fr Y3 Iw\n\n27) dsheldon: Move G3 Ocean Hl\n\n28) nycavri: Sacrifice Y2 Hl\nDiscover Y1 Hl G3 Tl\nMove R1 Nycavri Pond\n\n29) dsheldon: Move Y3 Ocean Pond\n\n30) nycavri: Trade B1 Y1 Nycavri\n\n31) dsheldon: Sacrifice G1 Pond\nBuild Y2 Ocean\n\n32) nycavri: Build G1 Iw\n\n33) dsheldon: Move G2 Dsheldon Tl\n\n34) nycavri: Sacrifice Y1 Tl\nMove R1 Pond Nycavri\n\n35) dsheldon: Discover Y1 Ocean G1 Eden\n\n36) nycavri: Move Y1 Nycavri Eden\n\n37) dsheldon: Move Y3 Pond Iw\n\n38) nycavri: Build Y1 Eden\n\n39) dsheldon: Sacrifice R2 Dsheldon\nAttack G2 Iw\nAttack Y1 Eden\n\n40) nycavri: Build G2 Iw\n\n41) dsheldon: Trade Y3 R3 Dsheldon\n\n42) nycavri: Build Y3 Eden\nCatastrophe Eden Y\n\n43) dsheldon: Build G1 Iw\nCatastrophe Iw G\n\n44) nycavri: Build G1 Nycavri\n\n45) dsheldon: Sacrifice Y3 Iw\nMove G2 Tl Hl\nMove G2 Hl Nycavri\nMove G3 Hl Nycavri\nCatastrophe Nycavri G\n\n46) nycavri: Trade R1 G1 Nycavri\n\tdsheldon: I think that might seal my victory. You'll have to trade to green, I'll take a step forward from Ocean. You'll have to build another ship. I'll move in to your homeworld. No matter what you do next I'll capture your entire fleet.\n\tnycavri: I remain terrible at this game. I do seem to do better in person, rather than the "stop-start" nature of concentration online. Happy to play it out as ever.\n\n47) dsheldon: Discover Y2 Ocean R1 Reaper\n\n48) nycavri: Build G1 Nycavri\n\tdsheldon: That wasn't terrible at all! It's got to end sometime. That's the real problem with these games, eventually someone has to win ;)\r\n\r\nFrom what I remember of our last encounter, you've definitely improved. This was not easy.\n\tnycavri: As I've commented before, there's an unforgiving learning curve. I may have "improved", but I have still lost 15 out of 16 games here . . . and the one was against another newbie who began by building one color in his Homeworld his first 3 turns and allowing me to blow up one of his stars!\r\n\r\nI don't mind losing - it's losing this consistently!\n\n49) dsheldon: Move Y2 Reaper Nycavri\n\n\tdsheldon: Hmm, I wish I had any kind of useful advice. I'll see if I can look over the log of this game and try to point out any glaring mistakes once it's over.\r\n\r\nHere's a thought, take a look at the log yourself and tell me if there are any of my moves that really surprised you, and we'll see what you did to get to that situation.\n\tnycavri: Thanks, I appreciate the offer of help - I'll see about looking back over this the next few days.\n\tnycavri: Well played, by the way!\n\tdsheldon: My pleasure. It's an especially satisfying victory because you were quite a worthy opponent.\n\tnycavri: *blush*\n\nHomeworlds Online (SDG# 8688)\nStarted: 2007.7.22, Ended: 2007.8.24\nParticipants: scottobear (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\tMikeYarrum: Hello, and happy starship captain-ing!\n\n2) scottobear: Homeworld G3 B2 R3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) scottobear: Build R1 Scottobear\n\tscottobear: Thank you! this is my very first game of homeworlds!\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) scottobear: Trade R1 Y1 Scottobear\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) scottobear: Build R1 Scottobear\n\n9) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n10) scottobear: Trade R1 B1 Scottobear\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) scottobear: Build B1 Scottobear\n\n13) MikeYarrum: Discover Y1 Mikeyarrum G1 Chiyo\n\n14) scottobear: Trade R3 G3 Scottobear\n\n15) MikeYarrum: Build R1 Mikeyarrum\n\n16) scottobear: Move B1 Scottobear Chiyo\n\n17) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack B1 Chiyo\n\n18) scottobear: Build G1 Scottobear\n\n19) MikeYarrum: Build G2 Mikeyarrum\n\n20) scottobear: Move Y1 Scottobear Chiyo\n\n21) MikeYarrum: Sacrifice R1 Mikeyarrum\nAttack Y1 Chiyo\n\tMikeYarrum: You should take that move back, otherwise I can catastrophe your system.\n\tscottobear: thank you!\r\n\n\n22) scottobear: Trade G1 R1 Scottobear\n\n23) MikeYarrum: Build Y1 Chiyo\n\n24) scottobear: Trade G3 Y3 Scottobear\n\n25) MikeYarrum: Trade Y1 R1 Chiyo\n\tscottobear: I need to develop some strategy here! :D\n\n26) scottobear: Trade Y3 R3 Scottobear\n\tMikeYarrum: no worries - it takes time and many, many lost games.\n\n27) MikeYarrum: Trade G2 Y2 Mikeyarrum\n\n28) scottobear: Trade B1 Y1 Scottobear\n\n29) MikeYarrum: Build R1 Chiyo\n\n30) scottobear: Move R1 Scottobear Chiyo\n\n31) MikeYarrum: Attack R1 Chiyo\n\n32) scottobear: Build Y2 Scottobear\n\n33) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove R1 Chiyo Scottobear\nMove R1 Chiyo Scottobear\n\tscottobear: nice! I'm glad you're showing me how this works. :D\n\n34) scottobear: Attack R1 Scottobear\n\tMikeYarrum: No problem.\n\n35) MikeYarrum: Build R2 Scottobear\n\n36) scottobear: Attack R2 Scottobear\n\tscottobear: uhoh... am I getting set up for a bluebird?\n\tMikeYarrum: I don't think it's technically a bluebird, because you'd still be able to diversify your homeworld ships before I launched another attack... but it will still be difficult to recover once I take out your only 3-pointer.\n\n37) MikeYarrum: Discover Y1 Chiyo G2 Sakaki\nCatastrophe Scottobear Red\n\n38) scottobear: Move Y1 Scottobear Chiyo\n\n39) MikeYarrum: Attack Y1 Chiyo\n\n40) scottobear: Build Y2 Scottobear\n\tMikeYarrum: You might want to take that move back. If I move my y1 from chiyo to your homeworld, I can win with a catastrophe.\n\tscottobear: yikes... thank you\r\n\n\n41) MikeYarrum: Build Y2 Sakaki\n\n42) scottobear: Trade Y2 R2 Scottobear\n\n43) MikeYarrum: Build R1 Chiyo\n\n44) scottobear: Move R2 Scottobear Chiyo\n\tblackhellkat: trade y2 r2 scottobear\n\n45) MikeYarrum: Sacrifice Y2 Sakaki\nMove Y1 Chiyo Scottobear\nMove Y1 Chiyo Scottobear\n\tMikeYarrum: Rawr, you do have a decent second-in-command, but it'll take more than that to stop me! ;D\n\n46) scottobear: Attack R1 Chiyo\n\tscottobear: haha! Nobody can call my number one a number 2!\n\n47) MikeYarrum: Build Y2 Scottobear\nCatastrophe Scottobear Yellow\n\n\tscottobear: arrrrgh!\r\n\n\tMikeYarrum: You would have put me on the defensive, except that I had the finishing move.\n\nHomeworlds Online (SDG# 8671)\nVariants: "Hard time"\nStarted: 2007.7.22, Ended: 2007.7.25\nParticipants: Bob (S), TwoShort (N)\nWinner: Bob\n\n\tBob: homeworld g3,b3,g3\r\n \n\nHomeworlds Online (SDG# 8745)\nStarted: 2007.7.23, Ended: 2007.8.24\nParticipants: DaDRK (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) DaDRK: Homeworld B1 G2 R3\n\tMikeYarrum: Hey again! Happy gaming!\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) DaDRK: Build R1 Dadrk\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) DaDRK: Build R1 Dadrk\n\n7) MikeYarrum: Build Y1 Mikeyarrum\n\n8) DaDRK: Trade R1 Y1 Dadrk\n\tDaDRK: sorry bout that thought I could have possibly screwed myself over big time, oh and good luck.\n\tMikeYarrum: No problem. Good luck for too.\n\tMikeYarrum: *you, too\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) DaDRK: Discover R1 Dadrk G3 Frst\n\n11) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n12) DaDRK: Build Y1 Dadrk\n\n13) MikeYarrum: Build Y2 Mikeyarrum\n\n14) DaDRK: Build Y2 Dadrk\n\n15) MikeYarrum: Discover Y1 Mikeyarrum G1 Osaka\n\n16) DaDRK: Trade Y1 G1 Dadrk\n\n17) MikeYarrum: Move R1 Mikeyarrum Osaka\n\n18) DaDRK: Discover G1 Dadrk B3 Scnd\n\n19) MikeYarrum: Discover Y1 Osaka G3 Kagura\n\n20) DaDRK: Build G1 Scnd\n\n21) MikeYarrum: Build Y1 Mikeyarrum\n\n22) DaDRK: Build G2 Scnd\n\n23) MikeYarrum: Build Y3 Kagura\n\n24) DaDRK: Move Y1 Dadrk Kagura\n\n25) MikeYarrum: Discover Y3 Kagura B2 Tomo\n\tDaDRK: whoops, bad move sorry bout that.\n\tMikeYarrum: No problem.\n\n26) DaDRK: Sacrifice Y2 Dadrk\nMove Y1 Kagura Osaka\nMove Y1 Osaka Mikeyarrum\nCatastrophe Mikeyarrum Y\n\n27) MikeYarrum: Build Y1 Kagura\n\n28) DaDRK: Trade G1 Y1 Scnd\n\n29) MikeYarrum: Move Y1 Kagura Osaka\n\n30) DaDRK: Discover G2 Scnd R1 Thrd\n\n31) MikeYarrum: Build Y2 Kagura\n\n32) DaDRK: Build G1 Thrd\n\n33) MikeYarrum: Build G2 Mikeyarrum\n\n34) DaDRK: Trade R3 Y3 Dadrk\n\n35) MikeYarrum: Build Y2 Kagura\n\n36) DaDRK: Trade Y3 R3 Dadrk\n\n37) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild Y2 Osaka\nBuild R2 Osaka\nBuild G3 Mikeyarrum\n\n38) DaDRK: Build R2 Dadrk\n\n39) MikeYarrum: Move R2 Osaka Scnd\n\n40) DaDRK: Move Y1 Scnd Thrd\n\n41) MikeYarrum: Sacrifice Y1 Kagura\nMove R2 Scnd Dadrk\n\n\tDaDRK: good game I know when I'm beat\n\tMikeYarrum: Thanks. =D\n\nHomeworlds Online (SDG# 8737)\nStarted: 2007.7.23, Ended: 2007.7.26\nParticipants: mnviii (S), The_Horrible_DrB (N)\nWinner: The_Horrible_DrB\n\n1) The_Horrible_DrB: Homeworld G2 B1 Y3\n\n2) mnviii: Homeworld G3 B1 Y3\n\n3) The_Horrible_DrB: Build Y1 The_horrible_drb\n\n4) mnviii: Discover Y3 Mnviii G2 Star1\n\n\nHomeworlds Online (SDG# 8817)\nStarted: 2007.7.28, Ended: 2007.8.10\nParticipants: Mr_Shine (S), MatrixFrog (N)\nWinner: Mr_Shine\n\n1) MatrixFrog: Homeworld R1 G3 Y3 *\n\n2) Mr_Shine: Homeworld B2 Y3 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Mr_Shine: B G1 Mr_shine\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) Mr_Shine: Build G1 Mr_shine\n\n7) MatrixFrog: Discover Y1 Matrixfrog B2 Zip\n\n8) Mr_Shine: Discover G1 Mr_shine B1 Kobol\n\n9) MatrixFrog: Trade Y1 G1 Zip\n\n10) Mr_Shine: B G2 Mr_shine\n\n11) MatrixFrog: Build G2 Zip\n\n12) Mr_Shine: Trade G1 Y1 Mr_shine\n\n13) MatrixFrog: Trade G1 B1 Zip\n\n14) Mr_Shine: Trade G2 B2 Mr_shine\n\n15) MatrixFrog: Build G1 Zip\n\n16) Mr_Shine: Discover B2 Mr_shine G1 Caprica\n\n17) MatrixFrog: Trade G2 Y2 Zip\n\n18) Mr_Shine: Build G2 Mr_shine\n\n19) MatrixFrog: Build G2 Zip\n\n20) Mr_Shine: Build G2 Kobol\n\n21) MatrixFrog: Discover G1 Zip Y1 Zap\n\n22) Mr_Shine: Trade G1 R1 Kobol\n\n23) MatrixFrog: Build G1 Zap\n\n24) Mr_Shine: Trade G2 R2 Mr_shine\n\n25) MatrixFrog: Build Y2 Zip\n\n26) Mr_Shine: Build B1 Caprica\n\n27) MatrixFrog: Move Y2 Zip Matrixfrog\n\n28) Mr_Shine: Trade B2 Y2 Caprica\n\n29) MatrixFrog: Sacrifice B1 Zip\nTrade Y3 G3 Matrixfrog\n\n30) Mr_Shine: Build Y3 Caprica\n\n31) MatrixFrog: Build Y3 Zip\n\n32) Mr_Shine: Move Y3 Caprica Zip\n\n33) MatrixFrog: Move Y3 Zip Caprica\n\n34) Mr_Shine: Sacrifice R2 Mr_shine\nAttack Y2 Zip\nAttack G2 Zip\n\n35) MatrixFrog: Discover G1 Zap B2 Zop\n\n36) Mr_Shine: Build G2 Zip\n\n37) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove G1 Zap Mr_shine\nMove Y3 Caprica Mr_shine\n\n38) Mr_Shine: Sacrifice Y2 Zip\nMove G2 Zip Matrixfrog\nMove G2 Zip Matrixfrog\nCatastrophe Matrixfrog G\n\n39) MatrixFrog: Build Y1 Mr_shine\nCatastrophe Mr_shine Y\n\n40) Mr_Shine: Move Y3 Zip Matrixfrog\n\n41) MatrixFrog: Sacrifice G1 Zop\nBuild G1 Mr_shine\n\n42) Mr_Shine: Attack Y1 Matrixfrog\n\n\tMr_Shine: Thanks for the game.\n\nHomeworlds Online (SDG# 8766)\nStarted: 2007.7.28, Ended: 2007.8.5\nParticipants: MikeYarrum (S), Mr_Shine (N)\nWinner: MikeYarrum\n\n1) Mr_Shine: Homeworld G1 B3 Y3\n\n2) MikeYarrum: Homeworld R3 B2 G3\n\tMr_Shine: Hi, and good luck!\n\tMikeYarrum: Hello, happy starshiping!\n\n3) Mr_Shine: Build Y1 Mr_shine\n\tMr_Shine: b y1 mr_shine\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Mr_Shine: Trade Y3 G3 Mr_shine\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) Mr_Shine: Build G1 Mr_shine\n\n8) MikeYarrum: Build G1 Mikeyarrum\n\n9) Mr_Shine: D G1 Mr_shine B2 Earth\n\n10) MikeYarrum: Build G2 Mikeyarrum\n\n11) Mr_Shine: Build G2 Mr_shine\n\tMikeYarrum: What a silly name for a planet!\n\n12) MikeYarrum: Discover G2 Mikeyarrum B1 Osaka\n\tMr_Shine: It wasn't my idea. It's what the locals call it. I decided I'd let them keep their name as they're such good slave labour.\n\n13) Mr_Shine: Trade G2 Y2 Mr_shine\n\n14) MikeYarrum: Build G2 Osaka\n\n15) Mr_Shine: Build G2 Mr_shine\n\n16) MikeYarrum: Trade G2 Y2 Osaka\n\n17) Mr_Shine: Discover G2 Mr_shine B2 Pluto\n\n18) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n19) Mr_Shine: Trade Y1 R1 Mr_shine\n\n20) MikeYarrum: Build Y1 Osaka\n\n21) Mr_Shine: Sacrifice G2 Pluto\nBuild G1 Mr_shine\nBuild G2 Mr_shine\nCatastrophe Mr_shine G\n\n\tMikeYarrum: Would you like to try again? That was a bit unexpected...\n\nHomeworlds Online (SDG# 8848)\nVariants: "Hard time"\nStarted: 2007.7.29, Ended: 2007.7.31\nParticipants: Mr_Shine (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) Mr_Shine: Homeworld B2 Y3 G3\n\n3) zoltar: Build G1 Zoltar\n\tzoltar: Greetingz, Earthling.\n\n4) Mr_Shine: Build G1 Mr_shine\n\tMr_Shine: What is this Earth of which you speak? Is it that medium blue planet I conquered and abandoned awhile back?\r\n\r\nGreetings to you as well.\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Mr_Shine: Build G1 Mr_shine\n\n7) zoltar: Build G1 Zoltar\n\n8) Mr_Shine: Trade G1 Y1 Mr_shine\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) Mr_Shine: Trade G1 R1 Mr_shine\n\n11) zoltar: Build R2 Zoltar\n\n12) Mr_Shine: Build R2 Mr_shine\n\n13) zoltar: Discover R2 Zoltar G3 Greengiant\n\n14) Mr_Shine: Trade R2 B2 Mr_shine\n\n15) zoltar: Build R2 Zoltar\n\n16) Mr_Shine: Discover B2 Mr_shine G1 New_eden\n\n17) zoltar: Trade R1 B1 Zoltar\n\n18) Mr_Shine: Build G1 Mr_shine\n\n19) zoltar: Move B1 Zoltar Greengiant\n\n20) Mr_Shine: Trade G1 B1 Mr_shine\n\n21) zoltar: Build G1 Zoltar\n\n22) Mr_Shine: Move Y1 Mr_shine New_eden\n\n23) zoltar: Discover G1 Zoltar B3 Bloohoohoo\n\n24) Mr_Shine: B G1 Mr_shine\n\n25) zoltar: Build G2 Zoltar\n\n26) Mr_Shine: Discover G1 Mr_shine B1 Sapphire\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bloohoohoo\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n28) Mr_Shine: Sacrifice G3 Mr_shine\nBuild G3 Sapphire\nBuild B3 Mr_shine\nBuild B3 New_eden\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\tzoltar: wow -- looks like I've lost this game already!\n\n30) Mr_Shine: Trade B3 Y3 Mr_shine\n\n31) zoltar: Sacrifice G2 Zoltar\nBuild B3 Greengiant\nBuild R1 Greengiant\n\n32) Mr_Shine: Sacrifice Y1 New_eden\nMove G1 Sapphire Mr_shine\n\n33) zoltar: Trade B3 Y3 Greengiant\n\n34) Mr_Shine: Build G2 Sapphire\n\n35) zoltar: Sacrifice Y2 Zoltar\nMove G1 Bloohoohoo Sapphire\nMove G2 Bloohoohoo Sapphire\nCatastrophe Sapphire G\n\n36) Mr_Shine: Build R2 Mr_shine\n\n37) zoltar: Discover R2 Greengiant Y1 Attackoutpost\n\tMr_Shine: Looks like victory. Congrats.\n\n38) Mr_Shine: Sacrifice R1 Mr_shine\nPass\n\tzoltar: Victory? You're as pessimistic as I! More like gone from lost to a close game...\n\n39) zoltar: Build Y2 Greengiant\n\n40) Mr_Shine: Trade B2 Y2 New_eden\n\n41) zoltar: Build Y2 Zoltar\n\n42) Mr_Shine: Discover B1 Mr_shine B1 Lonelybluestar\n\n\tMr_Shine: Well done. There was no way I was going to blunt your attack from there. Cheers for the game.\n\nHomeworlds Online (SDG# 8776)\nStarted: 2007.7.31, Ended: 2007.9.3\nParticipants: ts52 (S), wmreed (N)\nWinner: ts52\n\n1) wmreed: Homeworld G3 B1 R3\n\n2) ts52: Homeworld G1 B2 R3\n\twmreed: Hello! Good luck!\n\tts52: Thanks! Good luck to you too!\n\n3) wmreed: Build R1 Wmreed\n\n4) ts52: Build R1 Ts52\n\n5) wmreed: Trade R1 Y1 Wmreed\n\n6) ts52: Trade R1 Y1 Ts52\n\n7) wmreed: Build Y1 Wmreed\n\n8) ts52: Build Y2 Ts52\n\n9) wmreed: Build Y2 Wmreed\n\n10) ts52: Trade Y1 G1 Ts52\n\n11) wmreed: Trade Y1 B1 Wmreed\n\n12) ts52: Build Y1 Ts52\n\n13) wmreed: Discover B1 Wmreed G2 Bendon\n\n14) ts52: Discover G1 Ts52 B3 Grover\n\n15) wmreed: Build R1 Wmreed\n\n16) ts52: Build R1 Ts52\n\n17) wmreed: Move R1 Wmreed Bendon\n\n18) ts52: Move Y1 Ts52 Grover\n\n19) wmreed: Move Y1 Wmreed Bendon\n\n20) ts52: Move R1 Ts52 Grover\n\n21) wmreed: Build Y1 Bendon\n\n22) ts52: Build R1 Ts52\n\n23) wmreed: Discover B1 Bendon Y3 Telgar\n\n24) ts52: Discover R1 Ts52 Y3 Sol\n\n25) wmreed: Build R2 Bendon\n\n26) ts52: Build R2 Grover\n\n27) wmreed: Move Y1 Bendon Wmreed\n\n28) ts52: Trade R2 G2 Grover\n\n29) wmreed: Build R2 Wmreed\n\n30) ts52: Sacrifice G2 Grover\nBuild Y2 Ts52\nBuild Y3 Grover\n\n31) wmreed: Trade R2 G2 Wmreed\n\n32) ts52: Build R2 Ts52\n\n33) wmreed: Sacrifice G2 Wmreed\nBuild B1 Telgar\nBuild B2 Telgar\n\n34) ts52: Sacrifice Y2 Ts52\nMove Y3 Grover Bendon\nMove Y3 Bendon Telgar\n\n35) wmreed: Move B1 Telgar Bendon\n\n36) ts52: Sacrifice R2 Ts52\nAttack B2N Telgar\nAttack B1N Telgar\n\n37) wmreed: Discover R1 Bendon G3 Ista\n\n38) ts52: Build Y2 Ts52\n\twmreed: Crap. Well done.\r\n\n\n39) wmreed: Build R2 Ista\n\tts52: It's far from over. But thanks.\n\n40) ts52: Trade B2 G2 Telgar\n\n41) wmreed: Build B2 Bendon\n\n42) ts52: Sacrifice G2 Telgar\nBuild R2 Sol\nBuild R3 Grover\n\n43) wmreed: Trade B2 G2 Bendon\n\n44) ts52: Move Y3 Telgar Bendon\n\n45) wmreed: Sacrifice Y2 Wmreed\nDiscover R2 Bendon G1 Fort\nMove G2 Bendon Fort\n\n46) ts52: Move R1 Sol Bendon\n\twmreed: Hm. I'm not sure what to do next, darn you.\n\n47) wmreed: Sacrifice Y1 Bendon\nMove B1 Bendon Wmreed\n\n48) ts52: Move R3 Grover Fort\n\tts52: It's ok. I'm not so sure myself.\n\n49) wmreed: Sacrifice G2 Fort\nBuild Y1 Wmreed\nBuild Y2 Wmreed\n\n50) ts52: Sacrifice Y2 Ts52\nMove Y1 Grover Bendon\nMove Y1 Bendon Wmreed\nCatastrophe Wmreed Yellow\n\n51) wmreed: Sacrifice B1 Wmreed\nTrade R2 G2 Ista\n\n52) ts52: Attack R2N Fort\n\n53) wmreed: Build R2 Wmreed\n\n54) ts52: Build Y1 Bendon\n\n55) wmreed: Trade R2 Y2 Wmreed\n\n56) ts52: Sacrifice Y1 Bendon\nMove R3 Fort Bendon\n\n57) wmreed: Build G2 Ista\n\n58) ts52: Build G3 Grover\n\n59) wmreed: Build Y1 Wmreed\n\n60) ts52: Sacrifice Y2 Ts52\nMove Y3 Bendon Wmreed\nMove R3 Bendon Wmreed\n\n61) wmreed: Attack R3 Wmreed\n\n62) ts52: Sacrifice R2 Fort\nAttack R3N Wmreed\nAttack R3N Wmreed\n\n\twmreed: Good game! Thank you!\n\nHomeworlds Online (SDG# 8831)\nStarted: 2007.7.31, Ended: 2007.8.6\nParticipants: MikeYarrum (S), Freemonty (N)\nWinner: MikeYarrum\n\n1) Freemonty: Homeworld Y2 G1 R3 *\n\tFreemonty: look, I'm new with this system. Seince I tried playing I can't get it to make my first move. Is there something that I don't know, or am I just putting in the commands wrong? You might not know the answer to that Question.\n\n2) MikeYarrum: Homeworld G3 Y1 B3\n\tFreemonty: ignore my first comment. I'm a N00b, it might show in my move.\n\tMikeYarrum: No problem, it takes awhile to get used to, but it'll become second-nature soon.\n\n3) Freemonty: Build R1 Freemonty\n\n4) MikeYarrum: Build B1 Mikeyarrum\n\tFreemonty: Is it just standard convention to start with green/blue, or are there other ways to start? [look at my starting position]\n\tMikeYarrum: Actually, it's highly recommended that you start with both green and blue, whether it's in your homeworld or your ship. Some advanced players like to start with green/blue/red and trade for yellow ASAP, but most start with green/blue/yellow and trade for red later. The problem with your set-up is, if you want any other color ship besides red, you're going to have to discover a blue star system, then trade for other colors besides red, and then possibly move them back to your homeworld. It's not very efficient. I, on the other hand, can build and trade more easily with my setup.\r\n\r\nDon't worry, it takes a game or two to see the strategy in establishing a homeworld. Try reading the SDG wiki and any other pages you can find on the game.\n\n5) Freemonty: Discover R1 Freemonty B3 Sevensevenseven\n\n6) MikeYarrum: Trade B1 R1 Mikeyarrum\n\tFreemonty: Ok. I guess we'll see how this ends up then.\n\n7) Freemonty: Trade R1 B1 Sevensevenseven\n\n\tFreemonty: I hope this rectifies my mistake.\n\tMikeYarrum: It's going to take more than that, I'm afraid. Without yellow ships to sacrifice, that blue ship is pretty much stuck there. It might have made sense if you traded for green, so you could build more green ships then trade for other colors, but you'd still be playing catch-up against me.\r\n\r\nI wouldn't mind ending this game and starting another, if you want a fair shot.\n\tFreemonty: Sounds fair to me. [last time I argue with a computer]\n\nHomeworlds Online (SDG# 8864)\nStarted: 2007.8.1, Ended: 2007.8.5\nParticipants: Mr_Shine (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 R3 G3\n\n2) Mr_Shine: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) Mr_Shine: Build G1 Mr_shine\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Mr_Shine: Build G1 Mr_shine\n\n7) zoltar: Build Y1 Zoltar\n\n8) Mr_Shine: Discover G1 Mr_shine B3 Kobol\n\n9) zoltar: Build Y2 Zoltar\n\n10) Mr_Shine: Build G1 Mr_shine\n\n11) zoltar: Build G2 Zoltar\n\n12) Mr_Shine: Build G2 Kobol\n\n13) zoltar: Build G2 Zoltar\n\n14) Mr_Shine: Trade G2 Y2 Kobol\n\n15) zoltar: Discover G2 Zoltar B1 Blueberry\n\n16) Mr_Shine: Trade G1 R1 Mr_shine\n\n17) zoltar: Trade Y1 R1 Zoltar\n\n18) Mr_Shine: Build R1 Mr_shine\n\n19) zoltar: Build R2 Zoltar\n\n20) Mr_Shine: Move R1 Mr_shine Kobol\n\n21) zoltar: Trade R1 B1 Zoltar\n\n22) Mr_Shine: Build R1 Kobol\n\n23) zoltar: Move R2 Zoltar Blueberry\n\n24) Mr_Shine: Build Y1 Kobol\n\n25) zoltar: Move Y1 Zoltar Blueberry\n\n26) Mr_Shine: Trade R1 B1 Kobol\n\n27) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Blueberry\n\n28) Mr_Shine: Discover Y1 Kobol G1 Caprica\n\n29) zoltar: Sacrifice Y2 Zoltar\nMove B1 Zoltar Caprica\nMove Y3 Blueberry Kobol\n\tMr_Shine: Bravo. I think I'm well and truly beaten now:)\n\tMr_Shine: Sorry about that. Building Caprica was a very bad move.\n\n30) Mr_Shine: Sacrifice G3 Mr_shine\nBuild Y2 Kobol\nBuild Y3 Kobol\nBuild Y3 Caprica\nCatastrophe Kobol Y\n\tMr_Shine: Slight adjustment, as I can't think of anything better to do. (After the game would it be possible for you to tell me what you would have done here?)\n\tzoltar: Actually, I would have made one of those moves as well. I'm getting pretty good at the game, but in positions like these I'm usually in a fog as well, and still am not too sure what I'm doing, and just try to make the most tactical threats at once and go for getting bigger pieces. I'm super busy so I'll have to put this on hold and think about it, as this is a tough position for me as well.\n\n31) zoltar: Sacrifice Y2 Zoltar\nMove G2 Blueberry Kobol\nMove G2 Kobol Mr_shine\n\n32) Mr_Shine: Pass\n\n33) zoltar: Sacrifice R2 Blueberry\nAttack R1 Mr_shine\nAttack G1 Mr_shine\n\n\tMr_Shine: Congratulations. Good game.\n\tzoltar: You were doing fine up till that last sack, and you'd be fine now if you only had another y2 to sack to bring your y3 back home, or if your y3 were only one jump away. Without a 3-pip ship able to get to your homeworld the next turn, it's almost always disastrous to leave your homeworld unprotected by a 3-pip ship.\n\tzoltar: Thanks. Good game.\n\nHomeworlds Online (SDG# 8961)\nStarted: 2007.8.6, Ended: 2007.9.1\nParticipants: Freemonty (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) Freemonty: Homeworld B1 G2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Freemonty: Build Y1 Freemonty\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) Freemonty: Trade Y1 R1 Freemonty\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) Freemonty: Build R1 Freemonty\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) Freemonty: Build Y1 Freemonty\n\n11) MikeYarrum: Discover G1 Mikeyarrum B1 Yotsuba\n\n12) Freemonty: Trade R1 B1 Freemonty\n\n13) MikeYarrum: Build G1 Yotsuba\n\n14) Freemonty: Discover R1 Freemonty Y3 Sevensevenseven\n\n15) MikeYarrum: Build G2 Yotsuba\n\n16) Freemonty: Move B1 Freemonty Sevensevenseven\n\n17) MikeYarrum: Trade G1 Y1 Yotsuba\n\n18) Freemonty: Trade B1 G1 Sevensevenseven\n\n19) MikeYarrum: Build Y2 Yotsuba\n\n20) Freemonty: Build G2 Sevensevenseven\n\n21) MikeYarrum: Trade G1 R1 Yotsuba\n\n22) Freemonty: Sacrifice Y3 Freemonty\nMove R1 Sevensevenseven Yotsuba\nMove G1 Sevensevenseven Yotsuba\nMove G2 Sevensevenseven Yotsuba\n\n23) MikeYarrum: Attack G2 Yotsuba\n\n24) Freemonty: Attack R1N Yotsuba\n\n25) MikeYarrum: Discover Y2 Yotsuba G3 Asagi\n\n26) Freemonty: Trade Y1 R1 Freemonty\n\n27) MikeYarrum: Trade G2 R2 Yotsuba\n\n28) Freemonty: Build R2 Yotsuba\nCatastrophe Yotsuba R\n\n29) MikeYarrum: Trade G2 R2 Yotsuba\n\n30) Freemonty: Build R1 Freemonty\n\n31) MikeYarrum: Sacrifice Y2 Asagi\nDiscover R2 Yotsuba B3 Fuuka\nMove R2 Fuuka Freemonty\n\n32) Freemonty: Trade G1 R1 Yotsuba\n\tFreemonty: Nice knowing ya...\n\n33) MikeYarrum: Build R2 Freemonty\nCatastrophe Freemonty Red\n\tMikeYarrum: ^_^ It was a good game.\n\n\nHomeworlds Online (SDG# 8617)\nVariants: "Hard time"\nStarted: 2007.8.8, Ended: 2007.8.9\nParticipants: Jesse (S), Horowits (N)\nWinner: Jesse\n\n1) Horowits: Homeworld G3 B2 R3\n\n2) Jesse: Homeworld G3 B1 Y3\n\tHorowits: The people of planet Gwar celebrate as they launch their first ship.\n\n3) Horowits: Build R1 Horowits\n\tJesse: The people of planet Gwar are clearly gwarlike. In the interest of galactic gpeace, something must be done. The people of planet Gpolice prepare for action.\n\n4) Jesse: Build Y1 Jesse\n\n5) Horowits: Trade R1 Y1 Horowits\n\n6) Jesse: Discover Y1 Jesse G2 Riotgear\n\tHorowits: Planet Gwar throws another bash celebrating a shiny new yellow ship.\n\n7) Horowits: Discover Y1 Horowits G1 Greenjello\n\n8) Jesse: Build Y1 Jesse\n\n9) Horowits: Build Y2 Greenjello\n\n10) Jesse: Discover Y1 Jesse G2 Baton\n\n11) Horowits: Build R1 Horowits\n\n12) Jesse: Build Y2 Jesse\n\n13) Horowits: Trade R1 B1 Horowits\n\n14) Jesse: Trade Y2 R2 Jesse\n\n15) Horowits: Move Y2 Greenjello Horowits\n\n16) Jesse: Build Y2 Jesse\n\n17) Horowits: Move B1 Horowits Greenjello\n\n18) Jesse: Trade Y2 B2 Jesse\n\n19) Horowits: Trade Y1 R1 Greenjello\n\n20) Jesse: Move B2 Jesse Riotgear\n\n21) Horowits: Build Y1 Horowits\n\n22) Jesse: Build Y2 Riotgear\n\n23) Horowits: Move Y2 Horowits Greenjello\n\n24) Jesse: Trade Y2 G2 Riotgear\n\n25) Horowits: Move R1 Greenjello Baton\n\n26) Jesse: Build Y2 Baton\n\n27) Horowits: Attack Y1 Baton\n\n28) Jesse: Sacrifice R2 Jesse\nAttack Y1 Baton\nAttack R1 Baton\n\n\nHomeworlds Online (SDG# 8867)\nStarted: 2007.8.9, Ended: 2007.9.2\nParticipants: inundator (S), MikeYarrum (N)\nWinner: inundator\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) inundator: Homeworld B1 G2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) inundator: Build Y1 Inundator\n\n5) MikeYarrum: Build G1 Mikeyarrum\n\n6) inundator: Build Y1 Inundator\n\n7) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n8) inundator: Trade Y1 R1 Inundator\n\n9) MikeYarrum: Build G1 Mikeyarrum\n\n10) inundator: Build R1 Inundator\n\tinundator: Sorry for the delay. I was at Gencon and my hotel's wi-fi sucked.\n\n11) MikeYarrum: Discover G1 Mikeyarrum B1 Ena\n\tMikeYarrum: no problem. =D\n\n12) inundator: Discover R1 Inundator Y3 Galahad\n\n13) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n14) inundator: Build R2 Inundator\n\n15) MikeYarrum: Build G1 Ena\n\n16) inundator: Move R2 Inundator Galahad\n\n17) MikeYarrum: Move R1 Mikeyarrum Ena\n\n18) inundator: Move R2 Galahad Ena\n\n19) MikeYarrum: Build R2 Ena\n\n20) inundator: Attack R2 Ena\n\n21) MikeYarrum: Build R2 Ena\nCatastrophe Ena Red\n\n22) inundator: Move R1 Galahad Ena\n\n23) MikeYarrum: Build G1 Mikeyarrum\n\n24) inundator: Attack G1 Ena\n\n25) MikeYarrum: Sacrifice G3 Mikeyarrum\nBuild G2 Ena\nBuild G2 Mikeyarrum\nBuild G3 Mikeyarrum\n\n26) inundator: Sacrifice Y1 Inundator\nMove G1 Ena Mikeyarrum\nCatastrophe Mikeyarrum Green\n\n\tMikeYarrum: Shoot, I forgot you had that move. Unless you're prone to bigger mistakes than that, it's your game.\n\nHomeworlds Online (SDG# 9014)\nStarted: 2007.8.10, Ended: 2008.2.21\nParticipants: MatrixFrog (S), Horowits (N)\nWinner: MatrixFrog\n\n1) Horowits: Homeworld G2 B1 R3\n\n2) MatrixFrog: Homeworld B3 G2 Y3\n\n3) Horowits: Build R1 Horowits\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Horowits: Trade R1 Y1 Horowits\n\n6) MatrixFrog: Discover Y1 Matrixfrog Y1 Bom\n\n7) Horowits: Build Y2 Horowits\n\n8) MatrixFrog: Build Y2 Matrixfrog\n\n9) Horowits: Discover Y1 Horowits G3 Gwar\n\n10) MatrixFrog: Trade Y2 G2 Matrixfrog\n\n11) Horowits: Build Y2 Gwar\n\n12) MatrixFrog: Build G1 Matrixfrog\n\n13) Horowits: Build R1 Horowits\n\n14) MatrixFrog: Build Y2 Matrixfrog\n\n15) Horowits: Trade R1 G1 Horowits\n\n16) MatrixFrog: Discover Y1 Bom G3 Zip\n\n\nHomeworlds Online (SDG# 8874)\nStarted: 2007.8.11, Ended: 2007.8.11\nParticipants: Mr_Shine (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Mr_Shine: Homeworld Y3 B1 G3\n\n\tts52: Did you really mean to resign?\n\nHomeworlds Online (SDG# 8995)\nStarted: 2007.8.13, Ended: 2007.9.20\nParticipants: Horowits (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) Horowits: Homeworld Y3 B1 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Horowits: Build G1 Horowits\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) Horowits: Discover G1 Horowits G2 Greenjello\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n\nHomeworlds Online (SDG# 8484)\nStarted: 2007.8.14, Ended: 2008.1.22\nParticipants: Uglyfoot (S), DaDRK (W), JeffW (N), nycavri (E)\nWinner: Uglyfoot\n\n1) nycavri: Homeworld B1 G2 Y3\n\tDaDRK: good luck on the game :)\n\n2) Uglyfoot: Homeworld Y3 B1 G3\n\tnycavri: My first ever multi-player Homeworlds. . . TaGG.\n\n3) DaDRK: Homeworld G3 B2 R3\n\tDaDRK: same here\n\n4) nycavri: Build Y1 Nycavri\n\n5) Uglyfoot: Build G1 Uglyfoot\n\n6) DaDRK: Build R1 Dadrk\n\n7) nycavri: Build Y1 Nycavri\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) DaDRK: Build R1 Dadrk\n\n10) nycavri: Trade Y1 B1 Nycavri\n\n11) Uglyfoot: Discover G1 Uglyfoot B2 Themall\n\n12) DaDRK: Trade R1 Y1 Dadrk\n\n13) nycavri: Build Y1 Nycavri\n\n14) Uglyfoot: Build G1 Themall\n\n15) DaDRK: Discover R1 Dadrk B1 Frst\n\n16) nycavri: Discover Y1 Nycavri G3 Mvb\n\n17) Uglyfoot: Trade G1 Y1 Themall\n\n18) DaDRK: Build Y1 Dadrk\n\n19) nycavri: Build Y2 Mvb\n\n20) Uglyfoot: Build Y2 Themall\n\n21) DaDRK: Move Y1 Dadrk Frst\n\n22) nycavri: Trade Y1 G1 Nycavri\n\n23) Uglyfoot: Trade Y1 R1 Themall\n\n24) DaDRK: Trade Y1 G1 Frst\n\n25) nycavri: Trade B1 R1 Nycavri\n\n26) Uglyfoot: Build Y1 Themall\n\n27) DaDRK: Build G1 Frst\n\n28) nycavri: Discover Y2 Mvb R2 Mvg\n\n29) Uglyfoot: Build G2 Themall\n\n30) DaDRK: Trade G1 Y1 Frst\n\n31) nycavri: Build R1 Nycavri\n\n32) Uglyfoot: Move G2 Themall Mvb\n\n33) DaDRK: Build R1 Frst\n\n34) nycavri: Move Y1 Mvb Mvg\n\n35) Uglyfoot: Build R2 Themall\n\n36) DaDRK: Build R2 Dadrk\n\n37) nycavri: Discover Y1 Mvg B1 Iw\n\n38) Uglyfoot: Trade R1 B1 Themall\n\n39) DaDRK: Move R2 Dadrk Iw\n\n40) nycavri: Move Y1 Iw Mvg\n\n41) Uglyfoot: Move B1 Themall Mvb\n\n42) DaDRK: Discover R1 Frst Y2 Scnd\n\n43) nycavri: Move G1 Nycavri Mvb\n\n44) Uglyfoot: Trade G2 R2 Mvb\n\n45) DaDRK: Move R1 Scnd Uglyfoot\n\n46) nycavri: Sacrifice G1 Mvb\nBuild Y1 Nycavri\n\n47) Uglyfoot: Sacrifice R2 Themall\nAttack R1W Uglyfoot\nPass\n\n48) DaDRK: Move R1 Frst Themall\n\n49) nycavri: Discover Y1 Nycavri G3 Jw\n\n50) Uglyfoot: Build B2 Mvb\n\n51) DaDRK: Build G1 Frst\n\n52) nycavri: Build Y2 Jw\n\n53) Uglyfoot: Trade B2 Y2 Mvb\n\n54) DaDRK: Build Y2 Dadrk\n\n55) nycavri: Build Y3 Nycavri\n\tDaDRK: for some reason I can't attack in themall\n\n56) Uglyfoot: Build Y3 Mvb\n\tnycavri: I'm guessing this was the problem: \r\n\r\n"Stars and Ships are referred to by their colour and size (eg. R1, Y3) with the sole exception of the attack command. In this case, the ship must also be specified as belonging to a particular player by appending that player's seat designation (eg. G2S, B1E)."\n\n57) DaDRK: Attack G1S Themall\n\n58) nycavri: Sacrifice Y3 Nycavri\nMove Y1 Mvg Uglyfoot\nMove Y1 Jw Mvg\nMove Y2 Mvg Uglyfoot\n\n59) Uglyfoot: Sacrifice Y2 Themall\nMove Y2 Mvb Nycavri\nMove Y3 Mvb Nycavri\n\n60) DaDRK: Sacrifice Y2 Dadrk\nMove Y1 Frst Mvg\nMove Y1 Mvg Uglyfoot\nCatastrophe Uglyfoot Y\n\n61) nycavri: Attack Y3S Nycavri\n\n\n62) Uglyfoot: Build Y1 Nycavri\nCatastrophe Nycavri Y\n\n63) DaDRK: Attack Y1S Themall\n\n64) nycavri: Move Y2 Jw Nycavri\n\n65) Uglyfoot: Build B2 Mvb\n\n66) DaDRK: Build Y1 Themall\n\tnycavri: For some reason I blanked on the fact that you could use the green star inmy Homeworld . . .\n\n67) nycavri: Build Y1 Nycavri\n\n68) Uglyfoot: Trade B2 Y2 Mvb\n\n69) DaDRK: Build Y2 Dadrk\n\n70) nycavri: Trade Y2 B2 Nycavri\n\n71) Uglyfoot: Build B2 Mvb\n\n72) DaDRK: Build Y2 Dadrk\n\n73) nycavri: Build Y2 Nycavri\n\n74) Uglyfoot: Build Y2 Mvb\n\n75) DaDRK: Move Y2 Dadrk Frst\n\n76) nycavri: Trade Y2 G2 Nycavri\n\n77) Uglyfoot: Sacrifice Y2 Mvb\nMove B1 Mvb Nycavri\nMove B2 Mvb Nycavri\nCatastrophe Nycavri B\n\n78) DaDRK: Sacrifice Y2 Frst\nMove G1 Frst Nycavri\nMove G1 Frst Nycavri\nCatastrophe Nycavri G\n\n79) Uglyfoot: Move R2 Mvb Themall\n\n80) DaDRK: Sacrifice Y1 Themall\nMove G1 Themall Uglyfoot\n\n81) Uglyfoot: Attack G1W Uglyfoot\n\n82) DaDRK: Trade Y1 G1 Dadrk\n\n83) Uglyfoot: Sacrifice Y2 Mvb\nMove G1 Uglyfoot Dadrk\nMove G1 Uglyfoot Dadrk\nCatastrophe Dadrk G\n\n84) DaDRK: Sacrifice Y1 Themall\nMove R1 Themall Iw\n\n85) Uglyfoot: Build R1 Uglyfoot\n\n86) DaDRK: Trade R2 G2 Iw\n\n87) Uglyfoot: Build R1 Uglyfoot\n\n88) DaDRK: Build G1 Iw\n\n89) Uglyfoot: Trade R1 Y1 Uglyfoot\n\n90) DaDRK: Build R1 Iw\n\n91) Uglyfoot: Trade R2 G2 Themall\n\n92) DaDRK: Trade R1 Y1 Iw\n\n93) Uglyfoot: Build G1 Uglyfoot\n\n94) DaDRK: Sacrifice G2 Iw\nBuild G1 Iw\nBuild Y1 Dadrk\n\n95) Uglyfoot: Sacrifice Y1 Uglyfoot\nMove G2 Themall Iw\n\n96) DaDRK: Sacrifice Y2 Dadrk\nMove G1 Iw Dadrk\nMove G1 Iw Mvg\n\n97) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R1W Iw\n\n98) DaDRK: Sacrifice Y1 Iw\nMove G1 Mvg Uglyfoot\n\n99) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n100) DaDRK: Build G1 Uglyfoot\n\n101) Uglyfoot: Build R1 Iw\n\n102) DaDRK: Trade R3 B3 Dadrk\n\n103) Uglyfoot: Discover G1 Uglyfoot Y3 Grande\n\n104) DaDRK: Build G1 Uglyfoot\n\n105) Uglyfoot: Move G1 Grande Uglyfoot\nCatastrophe Uglyfoot G\n\n106) DaDRK: Build G1 Dadrk\n\n107) Uglyfoot: Trade R1 Y1 Iw\n\n108) DaDRK: Trade G1 R1 Dadrk\n\n109) Uglyfoot: Build G1 Iw\n\n110) DaDRK: Build G1 Dadrk\n\n111) Uglyfoot: Trade G1 B1 Iw\n\n112) DaDRK: Move G1 Dadrk Uglyfoot\n\n113) Uglyfoot: Build B1 Iw\n\n114) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove B1 Iw Dadrk\nMove B1 Iw Dadrk\nMove G2 Iw Mvg\nCatastrophe Dadrk B\n\n\nHomeworlds Online (SDG# 9025)\nStarted: 2007.8.16, Ended: 2007.8.16\nParticipants: Mr_Shine (S), ts52 (N)\nWinner: ts52\n\n\tMr_Shine: Sorry. Accidently clicked the link\n\nHomeworlds Online (SDG# 9072)\nVariants: "Hard time"\nStarted: 2007.8.17, Ended: 2007.8.31\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) MikeYarrum: Homeworld G1 B2 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) MikeYarrum: Build Y1 Mikeyarrum\n\n5) zoltar: Build G1 Zoltar\n\n6) MikeYarrum: Build Y1 Mikeyarrum\n\n7) zoltar: Trade G3 Y3 Zoltar\n\n8) MikeYarrum: Discover Y1 Mikeyarrum B3 Asagi\n\tMikeYarrum: I was wondering what your next move would be.\n\n9) zoltar: Build G2 Zoltar\n\n10) MikeYarrum: Build Y1 Mikeyarrum\n\n11) zoltar: Build Y2 Zoltar\n\tzoltar: I think trading the large G3 for a Y3 was a 'forced' move, as I needed yellow, and trading a small gives you 2-pip yellows a move earlier.\n\n12) MikeYarrum: Discover Y1 Mikeyarrum G3 Fuuka\n\tMikeYarrum: My problem is, I should've snatched up a green 1-pip earlier. Now you can shut me out of them for good.\n\n13) zoltar: Discover Y2 Zoltar B2 Plorrgh\n\n14) MikeYarrum: Build Y2 Fuuka\n\tzoltar: One of the reasons I've been using the red-blue star system is that if you had red-blue now you could easily trade a Y3 for a G3; but now if you do so, as soon as you build another green I send a green in and blow it up; the red-blue allows you to build both green and yellow without having to have 3 of a color in your system.\n\tMikeYarrum: Ah, that's very true.\n\n15) zoltar: Sacrifice G2 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Plorrgh\n\n16) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n17) zoltar: Trade Y2 R2 Plorrgh\n\n18) MikeYarrum: Discover Y2 Fuuka B2 Ena\n\tzoltar: Btw, you'd better go for broke now and fire off all your guesses in the Zendo game, because I doubt you'll get another turn...\n\tMikeYarrum: Dude, if I had ANY idea of what to guess, I'd have done it a long time ago. The reason I asked to be kicked out is because I seriously have no clue whatsoever of any kind of rule that would be accepted. Everytime I think I've got a pattern, one of the koans busts it.\r\n\r\nI appreciate your belief in me, but... man, stuff's hard.\n\n19) zoltar: Move G1 Zoltar Plorrgh\n\tzoltar: Well, then sit back in awe and watch Ryan do what Gort did in the last game and then ask him how he did it. Can't give you any hints as that would be cheating, but look how ryan's last koan was so close to several others and revealed a lot of information -- more than enough for you to win with 3 stones (or with one stone if you are Ryan or Gort). Just try to formulate any rule at all that works on all the koans, and then when I give a counterexample, use that as a clue, and so forth. Of course as you say, you have to have some hunch to get the ball initially rolling when you have 3 guesses to burn. Well, good luck.\n\tzoltar: Btw, I really love my rules -- I think I'm coming up with great rules that are easy to formulate (six English words or so) but very hard to crack, but not too hard so that Ryan or Gort still get them easily whilst everyone else is stumped. If you are still stumped and Ryan gets it easily, besides illustrating how amazing Ryan is (I'm actually not much better than you, but I come up with better koans to test things than you do), it will show that I'm making really good rules.\n\n20) MikeYarrum: Trade Y2 G2 Ena\n\n21) zoltar: Build G2 Plorrgh\n\n\tMikeYarrum: Sorry, I just didn't have any moves I liked.\n\nHomeworlds Online (SDG# 9049)\nStarted: 2007.8.18, Ended: 2007.9.6\nParticipants: weevilgenius (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) weevilgenius: Homeworld G2 B1 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) weevilgenius: Build Y1 Weevilgenius\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) weevilgenius: Trade Y1 G1 Weevilgenius\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) weevilgenius: Discover G1 Weevilgenius B3 Andromeda\n\n9) MikeYarrum: Build Y1 Mikeyarrum\n\n10) weevilgenius: Build G1 Andromeda\n\n11) MikeYarrum: Build G2 Mikeyarrum\n\n12) weevilgenius: Trade G1 R1 Andromeda\n\n13) MikeYarrum: Trade G1 R1 Mikeyarrum\n\n14) weevilgenius: Build G1 Andromeda\n\n15) MikeYarrum: Discover G2 Mikeyarrum B1 Ena\n\n16) weevilgenius: Build Y1 Weevilgenius\n\n17) MikeYarrum: Move Y1 Mikeyarrum Ena\n\n18) weevilgenius: Build Y2 Weevilgenius\n\n19) MikeYarrum: Build Y2 Ena\n\n20) weevilgenius: Trade Y2 R2 Weevilgenius\n\n21) MikeYarrum: Build Y2 Mikeyarrum\n\n22) weevilgenius: Build Y2 Weevilgenius\n\n23) MikeYarrum: Sacrifice Y2 Mikeyarrum\nMove Y1 Ena Andromeda\nMove Y1 Andromeda Weevilgenius\nCatastrophe Weevilgenius Yellow\n\n24) weevilgenius: Trade G1 Y1 Andromeda\n\tweevilgenius: Kabloey!\n\n25) MikeYarrum: Build G1 Mikeyarrum\n\n26) weevilgenius: Build R1 Andromeda\n\n27) MikeYarrum: Move R1 Mikeyarrum Ena\n\n28) weevilgenius: Build R2 Weevilgenius\n\n29) MikeYarrum: Build R3 Ena\n\n30) weevilgenius: Build R3 Weevilgenius\n\n31) MikeYarrum: Sacrifice Y2 Ena\nMove R1 Ena Andromeda\nMove R1 Andromeda Weevilgenius\nCatastrophe Weevilgenius Red\n\n\nHomeworlds Online (SDG# 9098)\nVariants: "Hard time"\nStarted: 2007.8.27, Ended: 2007.8.29\nParticipants: Mr_Shine (S), SpaceHobo (N)\nWinner: Mr_Shine\n\n1) SpaceHobo: Homeworld G1 B2 Y3\n\n2) Mr_Shine: Homeworld B1 Y3 G3\n\n3) SpaceHobo: Build Y1 Spacehobo\n\n4) Mr_Shine: B G1 Mr_shine\n\n5) SpaceHobo: Discover Y1 Spacehobo G3 Devaloka\n\n6) Mr_Shine: Build G1 Mr_shine\n\n7) SpaceHobo: Build Y1 Spacehobo\n\n8) Mr_Shine: Discover G1 Mr_shine Y2 Sol\n\n9) SpaceHobo: Discover Y1 Spacehobo G3 Urbanka\n\n10) Mr_Shine: Discover G1 Sol B3 Whirlpool\n\n11) SpaceHobo: Build Y1 Spacehobo\n\n12) Mr_Shine: Build G2 Whirlpool\n\n13) SpaceHobo: Build Y2 Urbanka\n\n14) Mr_Shine: Trade G2 Y2 Whirlpool\n\n15) SpaceHobo: Trade Y1 B1 Spacehobo\n\n16) Mr_Shine: Trade G1 R1 Mr_shine\n\n17) SpaceHobo: Move B1 Spacehobo Urbanka\n\n18) Mr_Shine: Build G1 Whirlpool\n\n19) SpaceHobo: Trade Y2 G2 Urbanka\n\n20) Mr_Shine: Build G2 Whirlpool\n\n21) SpaceHobo: Move Y1 Devaloka Spacehobo\n\n22) Mr_Shine: Build G2 Mr_shine\n\n23) SpaceHobo: Build G3 Urbanka\n\n24) Mr_Shine: Sacrifice Y2 Whirlpool\nMove G1 Whirlpool Spacehobo\nMove G1 Spacehobo Urbanka\nCatastrophe Urbanka G\n\n25) SpaceHobo: Trade Y1 G1 Spacehobo\n\n26) Mr_Shine: Trade G2 Y2 Whirlpool\n\n27) SpaceHobo: Build G2 Spacehobo\n\n28) Mr_Shine: Move G1 Whirlpool Spacehobo\nCatastrophe Spacehobo G\n\n29) SpaceHobo: Trade Y3 G3 Spacehobo\n\n30) Mr_Shine: Move G3 Mr_shine Spacehobo\n\n31) SpaceHobo: Trade G3 R3 Spacehobo\n\n32) Mr_Shine: Sacrifice R1 Mr_shine\nAttack R3 Spacehobo\n\n\nHomeworlds Online (SDG# 9165)\nStarted: 2007.8.28, Ended: 2007.8.29\nParticipants: SpaceHobo (S), Polyhymnia (N)\nWinner: SpaceHobo\n\n1) Polyhymnia: Homeworld Y1 G2 B3\n\n2) SpaceHobo: Homeworld B1 Y2 G3\n\n3) Polyhymnia: Build B1 Polyhymnia\n\n4) SpaceHobo: Build G1 Spacehobo\n\n5) Polyhymnia: Build B1 Polyhymnia\n\n6) SpaceHobo: Build G1 Spacehobo\n\n7) Polyhymnia: Build B2 Polyhymnia\n\n8) SpaceHobo: Discover G1 Spacehobo B3 Marylebone\n\n9) Polyhymnia: Move B2 Polyhymnia Marylebone\n\n10) SpaceHobo: Build G1 Marylebone\n\n11) Polyhymnia: Trade B2 G2 Marylebone\n\tSpaceHobo: That guy isn't watching the game any more.\n\n12) SpaceHobo: Trade G1 Y1 Marylebone\n\n13) Polyhymnia: Build G1 Marylebone\n\n14) SpaceHobo: Build G2 Marylebone\n\n15) Polyhymnia: Build G3 Marylebone\n\n16) SpaceHobo: Trade G2 B2 Marylebone\n\n17) Polyhymnia: Trade G3 R3 Marylebone\n\n18) SpaceHobo: Move B2 Marylebone Polyhymnia\nCatastrophe Polyhymnia B\n\n\nHomeworlds Online (SDG# 9183)\nStarted: 2007.8.29, Ended: 2007.8.29\nParticipants: SpaceHobo (S), Polyhymnia (N)\nWinner: Polyhymnia\n\n1) Polyhymnia: Homeworld G2 B1 Y3\n\n2) SpaceHobo: Homeworld Y1 B3 G3\n\n3) Polyhymnia: Build Y1 Polyhymnia\n\n4) SpaceHobo: Build G1 Spacehobo\n\n5) Polyhymnia: Discover Y1 Polyhymnia G3 Botanico\n\n6) SpaceHobo: Trade G1 Y1 Spacehobo\n\n7) Polyhymnia: Build Y2 Botanico\n\n8) SpaceHobo: Build Y2 Spacehobo\n\n9) Polyhymnia: Discover Y2 Botanico Y2 Citagazze\n\n10) SpaceHobo: Discover Y2 Spacehobo B2 Svalbard\n\n11) Polyhymnia: Build Y3 Polyhymnia\n\n12) SpaceHobo: Build Y3 Spacehobo\n\n13) Polyhymnia: Move Y2 Citagazze Spacehobo\nCatastrophe Spacehobo Yellow\n\n14) SpaceHobo: Build G1 Spacehobo\n\n15) Polyhymnia: Build Y1 Botanico\n\n16) SpaceHobo: Trade G3 Y3 Spacehobo\n\n17) Polyhymnia: Trade Y3 B3 Polyhymnia\n\n18) SpaceHobo: Build G1 Spacehobo\n\n19) Polyhymnia: Move B3 Polyhymnia Botanico\n\n20) SpaceHobo: Build G1 Spacehobo\n\n21) Polyhymnia: Build Y1 Polyhymnia\n\n22) SpaceHobo: Build G2 Spacehobo\n\n23) Polyhymnia: Move Y1 Polyhymnia Spacehobo\nCatastrophe Spacehobo Green\n\n24) SpaceHobo: Trade Y3 G3 Spacehobo\n\n25) Polyhymnia: Build Y2 Polyhymnia\n\n26) SpaceHobo: Move Y2 Svalbard Spacehobo\n\n27) Polyhymnia: Build Y2 Botanico\n\n28) SpaceHobo: Sacrifice G3 Spacehobo\nBuild Y3 Spacehobo\nBuild Y3 Spacehobo\nPass\n\n29) Polyhymnia: Move Y2 Polyhymnia Spacehobo\nCatastrophe Spacehobo Yellow\n\n\nHomeworlds Online (SDG# 8749)\nVariants: "Hard time"\nStarted: 2007.8.29, Ended: 2007.9.16\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R3 B1 G3\n\n2) mneme: Homeworld R1 G2 B3\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy...\n\n4) mneme: Build B1 Mneme\n\tmneme: hey. When was the last time you -lost- a game of this?\r\n\n\n5) TwoShort: Trade G1 B1 Twoshort\n\n6) mneme: Build B2 Mneme\n\tTwoShort: Well, besides an accidental time-out over my summer vacation, Mike Yarrum beat me in May. He played a really excellent game right after losing a couple via newbie blunders that lulled me into a false sense of security. Unfortunately, I already know you're pretty good :) \n\n7) TwoShort: Build B2 Twoshort\n\tmneme: Yeah, that one doesn't help me too much, even though I've never beaten you.\r\n\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) TwoShort: Trade B2 Y2 Twoshort\n\n10) mneme: Trade B2 G2 Mneme\n\n11) TwoShort: Build B2 Twoshort\n\n12) mneme: Build B2 Mneme\n\n13) TwoShort: Discover B1 Twoshort G2 Grogar\n\n14) mneme: Discover B2 Mneme G3 Apple\n\n15) TwoShort: Build G1 Twoshort\n\n16) mneme: Build Y1 Mneme\n\n17) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n18) mneme: Move Y1 Mneme Apple\n\n19) TwoShort: Build G1 Twoshort\n\n20) mneme: Discover G2 Mneme G3 Stash\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yolonda\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n22) mneme: Build Y1 Mneme\n\n23) TwoShort: Move Y1 Twoshort Grogar\n\n24) mneme: Sacrifice G2 Stash\nBuild B2 Apple\nBuild B3 Mneme\n\tmneme: eh -- should have traded y for g in my home system rather than letting you freeze me out of effective g. :(\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\tTwoShort: Agreed... and as long as I'm freezing you out of green, I guess I'll push it. :)\n\n26) mneme: Trade B2 R2 Apple\n\n27) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yolonda\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n28) mneme: Build Y3 Apple\n\n29) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Grogar Apple\nMove Y2 Grogar Apple\nCatastrophe Apple Yellow\n\n30) mneme: Move Y1 Mneme Apple\n\n31) TwoShort: Trade G2 R2 Twoshort\n\n32) mneme: Build Y1 Apple\n\n33) TwoShort: Sacrifice G3 Yolonda\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n34) mneme: Build Y2 Mneme\n\n35) TwoShort: Move Y1 Twoshort Grogar\n\n36) mneme: Discover B3 Mneme Y3 Winter\n\n37) TwoShort: Build Y2 Grogar\n\n38) mneme: Build R1 Apple\n\n39) TwoShort: Discover Y1 Grogar B3 Bluestar\n\n40) mneme: Move B3 Winter Yolonda\n\n41) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yolonda Apple\nMove G1 Yolonda Apple\nMove G2 Yolonda Apple\nCatastrophe Apple Green\n\n42) mneme: Trade B3 G3 Yolonda\n\n43) TwoShort: Trade G3 Y3 Twoshort\n\n44) mneme: Build G1 Yolonda\n\n45) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Grogar\nBuild Y1 Bluestar\nBuild Y3 Twoshort\n\n46) mneme: Build B2 Mneme\n\n47) TwoShort: Sacrifice Y2 Grogar\nMove Y1 Bluestar Mneme\nMove Y1 Bluestar Mneme\nCatastrophe Mneme Yellow\n\n48) mneme: Trade B2 Y2 Mneme\n\n49) TwoShort: Move Y3 Twoshort Yolonda\n\n50) mneme: Discover G3 Yolonda Y3 Tmp\n\n51) TwoShort: Discover Y3 Yolonda B3 Boom\n\n52) mneme: Move G3 Tmp Mneme\n\n53) TwoShort: Trade Y3 G3 Boom\n\tmneme: I'd kinda rather you had gone for the quick kill -- dropping a 3 in my home system the turn after the catastrophe. Why didn't you?\r\n\n\tTwoShort: I'd have gone for it if I thought it would work :) Let's see... After you flipped your 2 to yellow, if I sacrificed one of my y3s to put the other one in your homeworld, you could have sacrificed your g3 to build a two yellows (and a b2), causing a catastrophe and leaving nobody with any 3s. So, not a kill, and while I'd have been at an advantage, I think I'm at a bigger one this way.\n\tTwoShort: I was fully expecting to go for the kill, and when you traded to yellow I was surprised and impressed you found the way to fend me off.\n\n54) mneme: Build B2 Mneme\n\tmneme: Fair enough -- I did flip to green to try to head you off for a few more turns. Very much a forgone conclusion at this point, though.\n\n55) TwoShort: Build G1 Boom\n\n56) mneme: Discover B2 Mneme Y3 Jacinth\n\n57) TwoShort: Move B2 Twoshort Yolonda\n\n58) mneme: Sacrifice G3 Mneme\nBuild B2 Mneme\nBuild B3 Mneme\nBuild B3 Jacinth\n\n59) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Boom Mneme\nMove B1 Grogar Boom\nMove B1 Boom Mneme\nCatastrophe Mneme Blue\n\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 8997)\nVariants: "Hard time"\nStarted: 2007.8.29, Ended: 2007.10.8\nParticipants: Jesse (S), mneme (N)\nWinner: Jesse\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Jesse: Homeworld R3 B1 G3\n\tJesse: Have a good game.\n\n3) mneme: Build G1 Mneme\n\n4) Jesse: Build G1 Jesse\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) mneme: Build G1 Mneme\n\n8) Jesse: Build G1 Jesse\n\n9) mneme: Trade G1 B1 Mneme\n\n10) Jesse: Trade G1 B1 Jesse\n\n11) mneme: Build G1 Mneme\n\n12) Jesse: Build G1 Jesse\n\n13) mneme: Build B2 Mneme\n\n14) Jesse: Build B2 Jesse\n\n15) mneme: Discover B2 Mneme G3 Verdant\n\n16) Jesse: Trade B2 Y2 Jesse\n\n17) mneme: Trade B1 R1 Mneme\n\n18) Jesse: Discover Y2 Jesse G2 Purple\n\n19) mneme: Build R1 Mneme\n\n20) Jesse: Trade G3 R3 Jesse\n\n21) mneme: Move R1 Mneme Verdant\n\n22) Jesse: Build R2 Jesse\n\n23) mneme: Build R2 Verdant\n\n24) Jesse: Move R2 Jesse Purple\n\n25) mneme: Trade R2 Y2 Verdant\n\n26) Jesse: Build R2 Purple\n\n27) mneme: Build Y1 Verdant\n\n28) Jesse: Trade R3 Y3 Jesse\n\n29) mneme: Build R2 Verdant\n\n30) Jesse: Discover R2 Purple Y3 Ecru\n\n31) mneme: Trade R1 B1 Verdant\n\n32) Jesse: Move B1 Jesse Purple\n\n33) mneme: Discover Y2 Verdant G2 Brilliant\n\n34) Jesse: Build B2 Purple\n\n35) mneme: Move B1 Verdant Brilliant\n\n36) Jesse: Discover B2 Purple Y3 Olive\n\n37) mneme: Build B3 Brilliant\n\n38) Jesse: Build B3 Purple\n\n39) mneme: Build B3 Verdant\n\n40) Jesse: Trade B3 G3 Purple\n\n41) mneme: Trade B2 Y2 Verdant\n\n42) Jesse: Move G3 Purple Ecru\n\n43) mneme: Move Y1 Verdant Brilliant\n\n44) Jesse: Discover Y1 Jesse G2 Aqua\n\n45) mneme: Discover R1 Mneme B3 Bluebird\n\n46) Jesse: Build G1 Ecru\n\n47) mneme: Move G1 Mneme Bluebird\n\n48) Jesse: Sacrifice G3 Ecru\nBuild G3 Ecru\nBuild R1 Ecru\nBuild R3 Purple\n\n49) mneme: Build R3 Bluebird\n\n50) Jesse: Build B2 Purple\n\n51) mneme: Sacrifice Y2 Brilliant\nMove R2 Verdant Purple\nMove R1 Bluebird Purple\nCatastrophe Purple R\n\n52) Jesse: Move B2 Olive Aqua\n\n53) mneme: Build R1 Bluebird\n\n54) Jesse: Sacrifice G3 Ecru\nBuild G3 Ecru\nBuild Y2 Jesse\nBuild Y3 Aqua\n\n55) mneme: Sacrifice Y2 Verdant\nMove R3 Bluebird Purple\nMove R1 Bluebird Purple\n\n56) Jesse: Sacrifice Y2 Jesse\nMove R2 Ecru Purple\nMove R1 Ecru Purple\nCatastrophe Purple R\n\n57) mneme: Sacrifice G1 Bluebird\nBuild B3 Verdant\n\n58) Jesse: Sacrifice G3 Ecru\nBuild G1 Ecru\nBuild G3 Ecru\nBuild Y2 Jesse\n\n59) mneme: Trade B3 R3 Brilliant\n\n60) Jesse: Trade B1 R1 Purple\n\n61) mneme: Trade B3 R3 Verdant\n\n62) Jesse: Trade Y1 R1 Aqua\n\n63) mneme: Build Y1 Brilliant\n\n64) Jesse: Sacrifice G3 Ecru\nBuild G3 Ecru\nBuild Y2 Aqua\nBuild R2 Purple\n\n65) mneme: Move Y1 Brilliant Jesse\n\n66) Jesse: Discover Y2 Jesse R2 White\n\n67) mneme: Attack G1 Jesse\n\n68) Jesse: Sacrifice R2 Purple\nAttack Y1 Jesse\nAttack G1 Jesse\n\n69) mneme: Build R2 Brilliant\n\n70) Jesse: Sacrifice G3 Ecru\nBuild G3 Ecru\nBuild B1 Aqua\nBuild B3 Purple\n\n71) mneme: Build B3 Brilliant\n\n72) Jesse: Build R2 Purple\n\n73) mneme: Move Y1 Brilliant Verdant\n\n74) Jesse: Move B2 Purple Ecru\n\tmneme: your game to lose.\r\n\n\n75) mneme: Move B3 Verdant White\n\n76) Jesse: Sacrifice Y2 White\nDiscover G1 Ecru Y2 Elbow\nMove R1 Purple Ecru\n\n77) mneme: Move R3 Verdant Elbow\n\n78) Jesse: Move G1 Elbow Ecru\n\n79) mneme: Move R3 Elbow Verdant\n\n80) Jesse: Build Y2 Purple\n\n81) mneme: Move Y1 Verdant Brilliant\n\n82) Jesse: Move G1 Ecru Brilliant\n\n83) mneme: Move B3 Brilliant Verdant\n\n84) Jesse: Sacrifice Y2 Purple\nMove G1 Ecru Brilliant\nMove G1 Jesse Brilliant\nCatastrophe Brilliant G\n\n85) mneme: Build G1 Mneme\n\n86) Jesse: Build G1 Ecru\n\n87) mneme: Discover G1 Mneme R3 Ack\n\n88) Jesse: Move B3 Purple Ack\n\n89) mneme: Sacrifice G1 Ack\nBuild R2 Verdant\n\n90) Jesse: Move R2 Purple Ecru\n\n91) mneme: Trade R2 Y2 Verdant\n\n92) Jesse: Build B1 Ecru\n\n93) mneme: Build Y1 Verdant\n\n94) Jesse: Sacrifice Y3 Aqua\nMove B3 Ack Mneme\nMove B2 Ecru Mneme\nMove B1 Ecru Mneme\nCatastrophe Mneme B\n\n95) mneme: Build Y3 Mneme\n\n96) Jesse: Sacrifice Y3 Jesse\nMove R1 Aqua Mneme\nMove R2 Ecru Mneme\nMove R1 Ecru Mneme\nCatastrophe Mneme R\n\tmneme: gg\r\n\n\n\tJesse: You too.\n\nHomeworlds Online (SDG# 9063)\nStarted: 2007.8.29, Ended: 2007.9.24\nParticipants: ts52 (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) ts52: Homeworld R3 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) ts52: Build G1 Ts52\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) mneme: Build G1 Mneme\n\n8) ts52: Build G1 Ts52\n\n9) mneme: Trade G1 R1 Mneme\n\n10) ts52: Build G1 Ts52\n\n11) mneme: Build R1 Mneme\n\n12) ts52: Discover G1 Ts52 B1 Blueberry\n\n13) mneme: Discover R1 Mneme G3 Redwood\n\n14) ts52: Build Y1 Ts52\n\n15) mneme: Build R2 Mneme\n\n16) ts52: Build Y2 Ts52\n\n17) mneme: Build Y2 Mneme\n\n18) ts52: Trade Y2 R2 Ts52\n\n19) mneme: Build R2 Redwood\n\n20) ts52: Move R2 Ts52 Blueberry\n\n21) mneme: Trade R2 B2 Mneme\n\n22) ts52: Build Y2 Ts52\n\n23) mneme: Move Y1 Mneme Redwood\n\n24) ts52: Move Y2 Ts52 Blueberry\n\n25) mneme: Discover B2 Mneme Y3 Sirius\n\n26) ts52: Move G1 Ts52 Blueberry\n\n27) mneme: Sacrifice G3 Mneme\nBuild Y2 Mneme\nBuild Y3 Mneme\nBuild Y3 Redwood\n\n28) ts52: Trade G1 B1 Blueberry\n\n29) mneme: Trade Y2 G2 Mneme\n\n30) ts52: Build Y2 Blueberry\n\n31) mneme: Discover Y3 Redwood B1 Outpost\n\n32) ts52: Discover B1 Blueberry G3 Oscar\n\n33) mneme: Move Y3 Outpost Oscar\n\n34) ts52: Trade B1 G1 Oscar\n\n35) mneme: Sacrifice R1 Redwood\nAttack G1 Oscar\n\n36) ts52: Build G1 Ts52\n\n37) mneme: Sacrifice B2 Sirius\nTrade Y3 B3 Oscar\nTrade G1 R1 Oscar\n\n38) ts52: Discover Y2 Blueberry B3 Grover\n\n39) mneme: Sacrifice Y1 Redwood\nMove B3 Oscar Blueberry\n\n40) ts52: Sacrifice G3 Ts52\nBuild Y1 Grover\nBuild Y3 Blueberry\nBuild Y3 Ts52\n\n41) mneme: Sacrifice R2 Redwood\nAttack Y3 Blueberry\nAttack R2 Blueberry\n\n42) ts52: Trade Y2 R2 Grover\n\n43) mneme: Sacrifice Y2 Mneme\nMove Y3 Blueberry Ts52\nMove B3 Blueberry Ts52\nCatastrophe Ts52 Y\n\n44) ts52: Build G1 Ts52\n\tmneme: and...we're done. good game.\n\n45) mneme: Sacrifice R2 Blueberry\nAttack G1 Ts52\nAttack G1 Ts52\n\tts52: Wow. Thanks for the game.\n\n\nHomeworlds Online (SDG# 9086)\nStarted: 2007.8.29, Ended: 2007.11.27\nParticipants: mneme (S), MikeYarrum (N)\nWinner: mneme\n\n1) MikeYarrum: Homeworld G3 Y1 B3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) MikeYarrum: Build B1 Mikeyarrum\n\n4) mneme: Build G1 Mneme\n\n5) MikeYarrum: Build B1 Mikeyarrum\n\n6) mneme: Trade G1 B1 Mneme\n\n7) MikeYarrum: Discover B1 Mikeyarrum G2 Chihiro\n\n8) mneme: Build B2 Mneme\n\n9) MikeYarrum: Build B2 Chihiro\n\n10) mneme: Trade B2 Y2 Mneme\n\n11) MikeYarrum: Trade B2 Y2 Chihiro\n\n12) mneme: Discover B1 Mneme G3 Pine\n\n13) MikeYarrum: Trade B1 R1 Chihiro\n\n14) mneme: Build G1 Mneme\n\n15) MikeYarrum: Move R1 Chihiro Pine\n\n16) mneme: Build G1 Mneme\n\n17) MikeYarrum: Attack B1 Pine\n\n18) mneme: Build Y1 Mneme\n\n19) MikeYarrum: Trade B1 G1 Pine\n\n20) mneme: Trade G1 R1 Mneme\n\n21) MikeYarrum: Build R2 Pine\n\n22) mneme: Discover Y2 Mneme R3 Disaster\n\n23) MikeYarrum: Build B1 Mikeyarrum\n\n24) mneme: Trade G1 B1 Mneme\n\n25) MikeYarrum: Trade B1 Y1 Mikeyarrum\n\n26) mneme: Discover R1 Mneme Y3 Sign\n\n27) MikeYarrum: Move Y1 Mikeyarrum Chihiro\n\n28) mneme: Build Y2 Mneme\n\n29) MikeYarrum: Move Y1 Chihiro Pine\n\n30) mneme: Trade Y2 G2 Mneme\n\n31) MikeYarrum: Move R1 Pine Chihiro\n\n32) mneme: Move G2 Mneme Sign\n\n33) MikeYarrum: Build R2 Chihiro\n\n34) mneme: Discover B1 Mneme Y3 Beauty\n\n35) MikeYarrum: Move R2 Chihiro Beauty\n\n36) mneme: Sacrifice G2 Sign\nBuild Y2 Disaster\nBuild Y3 Mneme\n\n37) MikeYarrum: Attack B1 Beauty\n\n38) mneme: Trade Y1 B1 Mneme\n\n\nHomeworlds Online (SDG# 9143)\nVariants: "Unrated, Hard time"\nStarted: 2007.8.29, Ended: 2007.8.30\nParticipants: mneme (S), scottobear (N)\nWinner: mneme\n\n1) scottobear: Homeworld G2 B3 Y3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) scottobear: Discover Y3 Scottobear R1 Boog\n\tscottobear: whoops. \n\tscottobear: sorry about that.. I couldn't undo!\n\tmneme: doh! I though the system stopped you from such silliness, but I guess not.\r\n\n\n\nHomeworlds Online (SDG# 9185)\nVariants: "Hard time"\nStarted: 2007.8.29, Ended: 2007.9.2\nParticipants: mneme (S), Mr_Shine (N)\nWinner: mneme\n\n1) Mr_Shine: Homeworld B1 Y3 G3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) Mr_Shine: Build G1 Mr_shine\n\n4) mneme: Build G1 Mneme\n\n5) Mr_Shine: Discover G1 Mr_shine B2 Kobol\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) Mr_Shine: Build G1 Mr_shine\n\n8) mneme: Build Y1 Mneme\n\n9) Mr_Shine: Discover G1 Mr_shine B2 Caprica\n\n10) mneme: Build Y1 Mneme\n\n11) Mr_Shine: Build G1 Kobol\n\n12) mneme: Build G2 Mneme\n\n13) Mr_Shine: Build G2 Mr_shine\n\n14) mneme: Discover Y1 Mneme G3 Rough\n\n15) Mr_Shine: Build G2 Caprica\n\n16) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild Y2 Rough\nBuild Y2 Mneme\n\n17) Mr_Shine: Trade G2 Y2 Caprica\n\n18) mneme: Trade Y1 B1 Mneme\n\n19) Mr_Shine: Trade G1 B1 Kobol\n\n20) mneme: Move B1 Mneme Rough\n\n\nHomeworlds Online (SDG# 9197)\nStarted: 2007.8.29, Ended: 2007.8.29\nParticipants: Polyhymnia (S), SpaceHobo (N)\nWinner: SpaceHobo\n\n1) SpaceHobo: Homeworld Y1 B2 G3\n\n2) Polyhymnia: Homeworld B2 G3 Y3\n\n3) SpaceHobo: Build G1 Spacehobo\n\n4) Polyhymnia: Build Y1 Polyhymnia\n\n5) SpaceHobo: Discover G1 Spacehobo Y3 Pimlico\n\n6) Polyhymnia: Discover Y1 Polyhymnia G1 Mornington\n\n7) SpaceHobo: Build G1 Spacehobo\n\n8) Polyhymnia: Build Y1 Mornington\n\n9) SpaceHobo: Sacrifice G3 Spacehobo\nBuild G2 Spacehobo\nBuild G2 Spacehobo\nBuild G2 Spacehobo\n\n10) Polyhymnia: Build Y2 Mornington\n\n11) SpaceHobo: Trade G2 Y2 Spacehobo\n\n12) Polyhymnia: Build Y2 Polyhymnia\n\n13) SpaceHobo: Build Y3 Spacehobo\n\n14) Polyhymnia: Trade Y2 G2 Polyhymnia\n\n15) SpaceHobo: Build G3 Pimlico\n\n16) Polyhymnia: Build G3 Polyhymnia\n\n17) SpaceHobo: Move Y2 Spacehobo Pimlico\n\n18) Polyhymnia: Move Y1 Mornington Pimlico\n\n19) SpaceHobo: Discover G3 Pimlico B1 Plaistow\n\n20) Polyhymnia: Trade G3 R3 Polyhymnia\n\n21) SpaceHobo: Build G3 Plaistow\n\n22) Polyhymnia: Build Y2 Polyhymnia\n\n23) SpaceHobo: Trade G3 R3 Plaistow\n\n24) Polyhymnia: Move Y2 Mornington Pimlico\n\n25) SpaceHobo: Build G3 Plaistow\n\n26) Polyhymnia: Move Y2 Pimlico Spacehobo\n\n27) SpaceHobo: Sacrifice Y2 Pimlico\nMove G3 Plaistow Polyhymnia\nMove G3 Plaistow Polyhymnia\n\n28) Polyhymnia: Attack G3 Polyhymnia\n\n29) SpaceHobo: Sacrifice R3 Plaistow\nAttack R3 Polyhymnia\nAttack G3 Polyhymnia\nAttack Y3 Polyhymnia\n\n30) Polyhymnia: Move Y1 Mornington Polyhymnia\nCatastrophe Polyhymnia Green\n\n31) SpaceHobo: Sacrifice R3 Polyhymnia\nAttack Y2 Polyhymnia\nAttack Y1 Polyhymnia\nPass\n\n\nHomeworlds Online (SDG# 9202)\nStarted: 2007.8.30, Ended: 2008.2.22\nParticipants: Polyhymnia (S), SpaceHobo (N)\nWinner: SpaceHobo\n\n1) SpaceHobo: Homeworld B3 Y2 G3\n\n2) Polyhymnia: Homeworld G3 B1 Y3\n\n3) SpaceHobo: Build G1 Spacehobo\n\n4) Polyhymnia: Build Y1 Polyhymnia\n\n5) SpaceHobo: Trade G1 Y1 Spacehobo\n\n6) Polyhymnia: Discover Y1 Polyhymnia B2 Neverwhere\n\n7) SpaceHobo: Discover Y1 Spacehobo G1 Signaltonoise\n\n8) Polyhymnia: Build Y1 Polyhymnia\n\n9) SpaceHobo: Build G1 Spacehobo\n\n10) Polyhymnia: Build Y2 Polyhymnia\n\n11) SpaceHobo: Build G1 Spacehobo\n\n12) Polyhymnia: Move Y1 Polyhymnia Neverwhere\n\n13) SpaceHobo: Move G1 Spacehobo Signaltonoise\n\n14) Polyhymnia: Move Y1 Neverwhere Signaltonoise\n\n15) SpaceHobo: Build G2 Spacehobo\n\n16) Polyhymnia: Build Y2 Signaltonoise\n\n17) SpaceHobo: Discover G1 Spacehobo B1 Sandman\n\n18) Polyhymnia: Build Y3 Polyhymnia\n\n19) SpaceHobo: Discover G1 Signaltonoise B2 Stardust\n\n20) Polyhymnia: Trade Y3 R3 Polyhymnia\n\n21) SpaceHobo: Sacrifice G3 Spacehobo\nBuild G2 Stardust\nBuild G2 Stardust\nBuild G3 Spacehobo\n\n22) Polyhymnia: Build Y3 Polyhymnia\n\n23) SpaceHobo: Sacrifice G3 Spacehobo\nBuild G3 Spacehobo\nBuild G3 Spacehobo\nBuild Y3 Signaltonoise\n\n24) Polyhymnia: Move Y2 Signaltonoise Neverwhere\n\n25) SpaceHobo: Trade G3 R3 Spacehobo\n\n26) Polyhymnia: Move Y3 Polyhymnia Stardust\n\n27) SpaceHobo: Build G3 Spacehobo\n\n\nHomeworlds Online (SDG# 9192)\nVariants: "Unrated, Hard time"\nStarted: 2007.8.30, Ended: 2007.9.6\nParticipants: scottobear (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) scottobear: Homeworld R2 B1 G3\n\tscottobear: thanks!\n\n3) mneme: Build G1 Mneme\n\n4) scottobear: Build G1 Scottobear\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) scottobear: Trade G1 Y1 Scottobear\n\n7) mneme: Build G1 Mneme\n\n8) scottobear: Build G1 Scottobear\n\n9) mneme: Trade G1 B1 Mneme\n\n10) scottobear: Trade G1 B1 Scottobear\n\n11) mneme: Build B2 Mneme\n\n12) scottobear: Build B2 Scottobear\n\n13) mneme: Discover B1 Mneme Y3 Bb\n\n14) scottobear: Discover B1 Scottobear Y3 Ips\n\n15) mneme: Sacrifice G3 Mneme\nBuild B3 Mneme\nBuild B3 Bb\nBuild B3 Bb\n\tmneme: huh. didn't remember this was a small universe game!\n\n16) scottobear: Move B1 Ips Mneme\n\tscottobear: wow... I have no idea how you did that!\n\n17) mneme: Sacrifice B2 Mneme\nTrade B3 G3 Mneme\nTrade B3 R3 Bb\n\n18) scottobear: Trade B2 R2 Scottobear\n\tmneme: it was actually a blunder -- but you forgot to actually -cause- the catastrophe that would have decimated my homeworld.\r\n\n\tmneme: And...um...read the rules on sacrifices. they're important.\r\n\n\tscottobear: that was my plan, to blow up the system.\r\n\n\n19) mneme: Attack B1 Mneme\n\tmneme: Yes. But to do that, you have to specify the catastrophe at the end of the move where you cause it. Otherwise, I can act to prevent the catastrophe, if possible\n\n20) scottobear: Build Y1 Scottobear\n\tscottobear: I see... I just failed to activate it?\n\n21) mneme: Build Y2 Mneme\n\tmneme: yes. you have to explicitly cause a catastrophe at the end of your turn, or it doesn't happen.\n\n22) scottobear: Move Y1 Scottobear Bb\n\tscottobear: that'll teach me!\n\n23) mneme: Attack Y1 Bb\n\n24) scottobear: Move R2 Scottobear Bb\n\n25) mneme: Attack R2 Bb\n\tmneme: this whole "moving your ships into my systems with r" plan doesn't work all that well, you know.\n\n26) scottobear: Trade Y1 R1 Scottobear\n\tscottobear: so it would appear!\n\n27) mneme: Discover B1 Mneme G3 Gnu\n\n28) scottobear: Trade R1 Y1 Scottobear\n\n29) mneme: Move Y2 Mneme Gnu\n\tscottobear: oh, I see.. it took me a sec to realize you came from your home world, rather than bb. \n\tscottobear: let's see if gnu is easier. :D\n\n30) scottobear: Build Y2 Scottobear\n\tscottobear: trade r1 y1 scottobear\r\n\n\n31) mneme: Sacrifice Y2 Gnu\nMove R3 Bb Scottobear\nMove B3 Bb Scottobear\n\n32) scottobear: Trade G3 R3 Scottobear\n\n33) mneme: Sacrifice R3 Scottobear\nAttack R3 Scottobear\nAttack Y2 Scottobear\nAttack Y1 Scottobear\n\tmneme: ok, let's finish this.\n\n\nHomeworlds Online (SDG# 9213)\nStarted: 2007.8.30, Ended: 2008.2.22\nParticipants: geoperry (S), SpaceHobo (N)\nWinner: geoperry\n\n1) SpaceHobo: Homeworld G1 Y2 B3\n\n2) geoperry: Homeworld B1 Y3 G3\n\n3) SpaceHobo: Build B1 Spacehobo\n\n4) geoperry: Build G1 Geoperry\n\n5) SpaceHobo: Discover B1 Spacehobo Y3 Cockfosters\n\n6) geoperry: Discover G1 Geoperry R2 Clever\n\n7) SpaceHobo: Build B1 Spacehobo\n\n8) geoperry: Build G1 Clever\n\n9) SpaceHobo: Move B1 Spacehobo Cockfosters\n\n10) geoperry: Build G2 Clever\n\n11) SpaceHobo: Build B2 Spacehobo\n\n12) geoperry: Build G2 Clever\n\n13) SpaceHobo: Trade B3 G3 Spacehobo\n\n14) geoperry: Build G2 Geoperry\n\n\nHomeworlds Online (SDG# 9214)\nStarted: 2007.8.30, Ended: 2007.8.30\nParticipants: SpaceHobo (S), rattus (N)\nWinner: SpaceHobo\n\n1) rattus: Homeworld B1 Y3 G3\n\n2) SpaceHobo: Homeworld Y2 G1 B3\n\n3) rattus: Build G1 Rattus\n\n4) SpaceHobo: Build B1 Spacehobo\n\n5) rattus: Discover G1 Rattus Y2 Themoon\n\n6) SpaceHobo: Discover B1 Spacehobo G3 Upminster\n\n7) rattus: Build G1 Rattus\n\n8) SpaceHobo: Build B1 Upminster\n\n9) rattus: Trade G1 Y1 Rattus\n\n10) SpaceHobo: Build B2 Spacehobo\n\n11) rattus: Sacrifice G3 Rattus\nBuild Y1 Rattus\nBuild Y1 Rattus\nBuild Y2 Rattus\n\n12) SpaceHobo: Build B2 Upminster\n\n13) rattus: Build G1 Themoon\n\n14) SpaceHobo: Build B2 Spacehobo\n\n15) rattus:\nBuild G2 Themoon\nCatastrophe Rattus Y\n\n\nHomeworlds Online (SDG# 9189)\nStarted: 2007.8.30, Ended: 2008.2.22\nParticipants: Zen (S), SpaceHobo (N)\nWinner: SpaceHobo\n\n1) SpaceHobo: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 9198)\nVariants: "Hard time"\nStarted: 2007.9.8, Ended: 2007.9.28\nParticipants: zoltar (S), SpaceHobo (N)\nWinner: zoltar\n\n1) SpaceHobo: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld B1 G3 B3 *\n\n3) SpaceHobo: Build G1 Spacehobo\n\n4) zoltar: Build B1 Zoltar\n\n5) SpaceHobo: Build G1 Spacehobo\n\n6) zoltar: Trade B3 Y3 Zoltar\n\n7) SpaceHobo: Discover G1 Spacehobo Y3 Cockfosters\n\n8) zoltar: Build B2 Zoltar\n\n9) SpaceHobo: Build G1 Cockfosters\n\n10) zoltar: Trade B2 G2 Zoltar\n\n11) SpaceHobo: Trade G1 Y1 Spacehobo\n\n12) zoltar: Build B2 Zoltar\n\tzoltar: Oops. You have 4 greens in your homeworld. If it were not for this fact, your move would be a good one. Unfortunately, I can make any move (such as building the last green ship) and then add "c SpaceHobo g" as the last line of my move, and all your greens will blow up and your homeworld will be empty and you will lose the game. So why don't you undo that move and make a different one, such as moving a green out or trading a green for another color.\n\n13) SpaceHobo: Build G1 Spacehobo\n\n14) zoltar: Discover G2 Zoltar Y2 Yabbadabbadoo\n\n15) SpaceHobo: Trade G1 R1 Spacehobo\n\n16) zoltar: Trade B2 R2 Zoltar\n\n17) SpaceHobo: Discover G1 Cockfosters G1 Upminster\n\n18) zoltar: Build B2 Zoltar\n\n\nHomeworlds Online (SDG# 9203)\nVariants: "Unrated, Hard time"\nStarted: 2007.9.8, Ended: 2007.9.18\nParticipants: zoltar (S), scottobear (N)\nWinner: zoltar\n\n1) scottobear: Homeworld B2 G3 Y3\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) zoltar: Build G1 Zoltar\n\n5) scottobear: Trade Y1 R1 Scottobear\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) scottobear: Discover R1 Scottobear G1 Xx\n\n8) zoltar: Build G1 Zoltar\n\n9) scottobear: Build R1 Xx\n\n10) zoltar: Build G1 Zoltar\n\n11) scottobear: Build Y1 Scottobear\n\n12) zoltar: Discover G1 Zoltar B3 Bloohoohoo\n\n13) scottobear: Move Y1 Scottobear Xx\n\n14) zoltar: Build G2 Bloohoohoo\n\n15) scottobear: Move R1 Xx Bloohoohoo\n\n16) zoltar: Build G2 Bloohoohoo\n\n17) scottobear:\n\nAttack G1 Bloohoohoo\n\n18) zoltar: Trade G2 R2 Bloohoohoo\n\n19) scottobear: Build R1 Bloohoohoo\n\n20) zoltar: Sacrifice R2 Bloohoohoo\nAttack R1 Bloohoohoo\nAttack R1 Bloohoohoo\n\n21) scottobear: Build R2 Xx\n\n22) zoltar: Attack G1 Bloohoohoo\n\n23) scottobear: Move R2 Xx Bloohoohoo\n\n24) zoltar: Sacrifice R1 Bloohoohoo\nAttack R2 Bloohoohoo\n\n25) scottobear: Build R1 Xx\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bloohoohoo\nBuild G2 Zoltar\nBuild G3 Zoltar\n\n27) scottobear: Move R1 Xx Scottobear\n\n28) zoltar: Sacrifice Y1 Zoltar\nMove G2 Bloohoohoo Xx\n\n29) scottobear: Build Y1 Scottobear\n\n30) zoltar: Sacrifice G2 Zoltar\nBuild G2 Xx\nBuild G3 Bloohoohoo\n\n31) scottobear: Move R1 Xx Scottobear\n\tscottobear: ack! :D\n\n32) zoltar: Sacrifice R1 Bloohoohoo\nAttack Y1 Xx\n\n33) scottobear: Build R1 Scottobear\n\n34) zoltar: Trade G3 Y3 Bloohoohoo\n\n35) scottobear: Move R1 Scottobear Xx\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Bloohoohoo\nBuild Y1 Xx\n\n37) scottobear: Move R1 Scottobear Xx\n\n38) zoltar: Sacrifice R2 Bloohoohoo\nAttack R1 Xx\nAttack R1 Xx\n\n39) scottobear: Trade Y3 R3 Scottobear\n\tzoltar: The xx system has been conquered by the Imperial Zoltarian Fleet. Hail Zoltar, Mighty Galactic Evil Overlord! [Insert sinister evil overlord laughter here]\n\tscottobear: oh, the humanity!!\n\n40) zoltar: Sacrifice Y3 Bloohoohoo\nMove R1 Xx Scottobear\nMove R1 Xx Scottobear\nMove G2 Xx Scottobear\nCatastrophe Scottobear R\n\n41) scottobear: Build Y2 Scottobear\n\n42) zoltar: Trade G3 R3 Bloohoohoo\n\tzoltar: Prepare to be boarded, hyu-maahn beanz!\n\tscottobear: ah, well. Humanity had a good run. Let's hear it for our new zoltarian masters!\n\n43) scottobear: Trade Y2 R2 Scottobear\n\n44) zoltar: Sacrifice R3 Bloohoohoo\nAttack Y1 Scottobear\nAttack R2 Scottobear\nPass\n\tzoltar: Play again, primitive carbon waterbag unit?\n\tscottobear: sure, I'm for it!\n\n\nHomeworlds Online (SDG# 9312)\nVariants: "Hard time"\nStarted: 2007.9.9, Ended: 2007.10.7\nParticipants: mneme (S), MikeYarrum (N)\nWinner: mneme\n\n1) MikeYarrum: Homeworld R2 B3 G3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) mneme: Build G1 Mneme\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) mneme: Build G1 Mneme\n\n9) MikeYarrum: Discover G1 Mikeyarrum B1 Chubbz\n\n10) mneme: Discover G1 Mneme B3 Bluebird\n\n11) MikeYarrum: Build G1 Mikeyarrum\n\n12) mneme: Build G2 Bluebird\n\n13) MikeYarrum: Build G2 Chubbz\n\n14) mneme: Trade G2 R2 Bluebird\n\n15) MikeYarrum: Trade G1 R1 Chubbz\n\n16) mneme: Build G1 Mneme\n\n17) MikeYarrum: Trade G2 Y2 Chubbz\n\n18) mneme: Build G2 Bluebird\n\n19) MikeYarrum: Build G2 Mikeyarrum\n\n20) mneme: Sacrifice G3 Mneme\nBuild G2 Bluebird\nBuild G3 Mneme\nBuild G3 Mneme\n\n\nHomeworlds Online (SDG# 9308)\nVariants: "Unrated, Hard time"\nStarted: 2007.9.10, Ended: 2007.9.19\nParticipants: scottobear (S), Visible (N)\nWinner: Visible\n\n1) Visible: Homeworld G2 Y1 B3\n\tVisible: Hey there. my first game of Homeworlds. Good luck!\n\n2) scottobear: Homeworld B3 G2 Y3\n\n3) Visible: Build B1 Visible\n\n4) scottobear: Build Y1 Scottobear\n\tscottobear: great! I'm still very new, too! have fun!\n\n5) Visible: Discover B1 Visible Y3 Invisible\n\n6) scottobear: Trade Y1 R1 Scottobear\n\n7) Visible: Build B1 Visible\n\n8) scottobear: Discover R1 Scottobear G1 Shiny\n\n9) Visible: Trade B1 R1 Invisible\n\n10) scottobear: Build R1 Shiny\n\n11) Visible: Discover R1 Invisible Y1 Devisible\n\n12) scottobear:\nBuild Y1 Scottobear\n\n13) Visible: Trade B3 G3 Visible\n\n14) scottobear: Build Y2 Scottobear\n\n15) Visible: Move R1 Devisible Scottobear\n\n16) scottobear: Trade Y2 R2 Scottobear\n\n17) Visible: Attack Y1 Scottobear\n\n18) scottobear: Attack R1 Scottobear\n\tVisible: Hmmm.\n\n19) Visible: Discover Y1 Scottobear G1 Revisible\n\n20) scottobear: Move R2 Scottobear Revisible\n\n21) Visible: Discover Y1 Revisible B2 Unvisible\n\tscottobear: pretty spiffy!\n\n22) scottobear: Trade R1 Y1 Scottobear\n\n23) Visible: Trade Y1 G1 Unvisible\n\tVisible: heh. very spiffy, indeed!\n\n24) scottobear: Move Y1 Scottobear Shiny\n\n25) Visible: Sacrifice G3 Visible\nBuild G2 Unvisible\nBuild G3 Unvisible\nBuild B1 Visible\n\tVisible: hmm. that may have been a mistake. guess we'll see.\n\n26) scottobear: Build Y1 Scottobear\n\n27) Visible: Trade G2 Y2 Unvisible\n\n28) scottobear: Trade Y1 R1 Scottobear\n\n29) Visible: Trade G3 R3 Unvisible\n\n30) scottobear: Move R1 Shiny Unvisible\n\n31) Visible: Attack R1 Unvisible\n\n32) scottobear: Discover R1 Shiny G3 Bright\n\n33) Visible: Move R3 Unvisible Revisible\n\n34) scottobear: Build R2 Bright\n\n35) Visible: Attack R2 Revisible\n\n36) scottobear: Move Y1 Shiny Bright\n\n37) Visible: Sacrifice Y2 Unvisible\nMove R2 Revisible Bright\nMove R1 Unvisible Bright\nCatastrophe Bright Red\n\n38) scottobear: Discover R1 Scottobear B1 Dark\n\n39) Visible: Trade B1 Y1 Visible\n\tscottobear: very neat!\n\tVisible: Heh. Well, still not sure it was the right thing to do. Whatever, though.\n\n40) scottobear: Build Y2 Bright\n\n\n41) Visible: Sacrifice Y1 Visible\nMove R3 Revisible Scottobear\n\n42) scottobear: Trade Y3 R3 Scottobear\n\n43) Visible: Attack R3 Scottobear\n\n\tVisible: Good game!\n\tscottobear: good game! kudos on winning!!\n\tVisible: Thanks! It was a pretty close game.\n\nHomeworlds Online (SDG# 9314)\nVariants: "Unrated, Hard time"\nStarted: 2007.9.11, Ended: 2007.9.14\nParticipants: scottobear (S), daengle (N)\nWinner: scottobear\n\n\nHomeworlds Online (SDG# 9329)\nVariants: "Hard time"\nStarted: 2007.9.12, Ended: 2008.2.24\nParticipants: dsheldon (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) dsheldon: Homeworld B2 G3 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) dsheldon: Build Y1 Dsheldon\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) dsheldon: Discover Y1 Dsheldon B1 Berry\n\n7) zoltar: Build G1 Zoltar\n\n8) dsheldon: Trade Y1 G1 Berry\n\n9) zoltar: Build Y1 Zoltar\n\n10) dsheldon: Build Y1 Dsheldon\n\n11) zoltar: Build Y2 Zoltar\n\n12) dsheldon: Build Y2 Dsheldon\n\n13) zoltar: Discover Y1 Zoltar G2 Greenslime\n\n14) dsheldon: Trade Y2 G2 Dsheldon\n\n15) zoltar: Build Y2 Greenslime\n\n16) dsheldon: Trade Y1 R1 Dsheldon\n\n17) zoltar: Trade Y2 R2 Zoltar\n\n18) dsheldon: Build G1 Berry\n\n19) zoltar: Discover G1 Zoltar Y2 Yabbadabbadoo\n\n20) dsheldon: Trade G1 Y1 Berry\n\n21) zoltar: Move Y2 Greenslime Berry\n\n22) dsheldon: Sacrifice Y1 Berry\nDiscover G1 Berry Y2 Shortbus\n\n23) zoltar: Move R2 Zoltar Shortbus\n\n24) dsheldon: Build Y1 Dsheldon\n\tdsheldon: Hmm, I seem to find myself in a very poor position.\n\n25) zoltar: Build Y3 Greenslime\n\n26) dsheldon: Discover Y1 Dsheldon G1 Hope\n\n27) zoltar: Build Y3 Zoltar\n\n28) dsheldon: Discover Y1 Hope B2 Deep\n\n29) zoltar: Attack G1 Shortbus\n\n30) dsheldon: Build R1 Dsheldon\n\n31) zoltar: Build G1 Zoltar\n\n32) dsheldon: Build R2 Dsheldon\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Shortbus\nBuild G3 Yabbadabbadoo\n\n34) dsheldon: Discover R1 Dsheldon B1 Sigh\n\n35) zoltar: Trade G2 B2 Zoltar\n\n36) dsheldon: Move G2 Dsheldon Sigh\n\n37) zoltar: Sacrifice G3 Shortbus\nBuild G2 Zoltar\nBuild G3 Shortbus\nBuild B1 Zoltar\n\n38) dsheldon: Build R2 Sigh\n\n39) zoltar: Build R3 Shortbus\n\n40) dsheldon: Move Y1 Deep Sigh\n\n41) zoltar: Move R3 Shortbus Berry\n\n42) dsheldon: Move R1 Dsheldon Berry\n\n43) zoltar: Sacrifice G3 Shortbus\nBuild G3 Shortbus\nBuild R3 Shortbus\nBuild R3 Berry\n\n44) dsheldon: Move R2 Dsheldon Berry\nCatastrophe Berry R\n\n45) zoltar: Move Y3 Greenslime Sigh\n\tzoltar: With seven battlestars, the Zoltarian fleet is prepared for zee final assault on zee dsheldon homeworld. Battlestations!\n\n46) dsheldon: Sacrifice Y3 Dsheldon\nMove G2 Sigh Dsheldon\nMove R1 Sigh Shortbus\nMove R2 Sigh Shortbus\nCatastrophe Shortbus R\n\tdsheldon: The best choice of several bad options...\n\tzoltar: Yep, and the one that holds out the longest, I think. And my response is the most agressive reply I can find, as well.\n\n47) zoltar: Move G3 Shortbus Sigh\n\tdsheldon: I'm trying to do this and it's not working:\r\n\r\ns y3 dsheldon\r\nm g2 sigh dsheldon\r\nm r1 sigh shortbus\r\nm r2 sigh shortbus\r\nc shortbus r\r\n\r\nIt gives the error "the dsheldon system does not exist." I wonder if this is a failure to implement the "temporarily leaving your homeworld" rule.\n\tzoltar: I think that the rule doesn't work, as your homeworld disappears before the other ship returns to it. I don't think the game will let you temporarily abandon your homeworld without destroying it.\n\tdsheldon: Well, it is a pretty extreme action. It also means I'm left without large ships and in a poor position to ever get one again. I'm considering just resigning. It's been pretty clear for most of the game that I will be defeated.\n\tAaron: I was sure that this had been tested in the past and worked fine. I will need to run some tests. The orderset looks fine though. I'm going to freeze the clock. I have a paper due tomorrow but I hope to have a little time over the weekend to catch up a little bit and will look then. Thanks for your patience.\n\tdsheldon: That sounds just fab. Thanks for the quick response.\n\tzoltar: Cool. We can wait and see what happens. In the meantime, if you want to start another game, that's fine with me. You're toast in this one no matter what, I think, but this way Aaron can fix the problem with the program in general.\n\tAaron: "Fixed." I'm very sorry for the extreme delay. Please see the forums for additional comments regarding this situation.\n\tzoltar: Whew Who!\n\n48) dsheldon: Trade G2 B2 Dsheldon\n\tdsheldon: I have no recollection of what I was doing, so I just pasted my old command in from previous comments. It worked! Yeah!\n\n49) zoltar: Sacrifice G3 Yabbadabbadoo\nBuild G2 Yabbadabbadoo\nBuild G3 Sigh\nBuild Y3 Berry\n\n50) dsheldon: Build B3 Dsheldon\n\n51) zoltar: Sacrifice Y3 Zoltar\nMove B1 Zoltar Shortbus\nMove B1 Shortbus Sigh\nMove B1 Sigh Dsheldon\nCatastrophe Dsheldon B\n\tdsheldon: Well, here goes my last move...\n\n\tzoltar: Ok, the game will let me move my blue ship in, but it won't let me blow up the dsheldon homeworld. I suppose this move will do, unless Aaron's fix prevents catastrophes from ever occurring in a homeworld, which would make for an interesting handicap actually...\n\tdsheldon: Well, I must say that I'm quite glad I didn't resign then because I'm always glad to help find bugs.\r\n\r\nStill, I'm starting to feel bad for the rest of the ladder participants.\n\tAaron: Can you copy and paste the top part of the error screen please? Sorry for the trouble. I was afraid I would blow something up. Homeworlds is a complex beast.\n\tzoltar: Sure: let's see, I can undo my move, and then redo it with the catastrophe to get the white screen of death, and I'll paste that in for you.\n\tzoltar: System error\r\nerror: \tS at /home/html/games/lib/Homeworlds/Pos.pm line 641.\r\ncontext: \t\r\n... \t\r\n352: \t}\r\n353: \t\r\n354: \t# These are the originals\r\n355: \tsub realwarn { CORE::warn(@_); }\r\n356: \tsub realdie { CORE::die(@_); }\r\n357: \t\r\n358: \tsub id {\r\n359: \tmy $level = shift;\r\n360: \tmy($pack,$file,$line,$sub) = caller($level);\r\n... \t\r\ncode stack: \t/usr/local/lib/perl5/site_perl/5.8.8/CGI/Carp.pm:356\r\n/usr/local/lib/perl5/site_perl/5.8.8/CGI/Carp.pm:437\r\n/home/html/games/lib/Homeworlds/Pos.pm:641\r\n/usr/local/lib/perl5/site_perl/5.8.8/Games/Sequential.pm:161\r\n/home/html/games/lib/SDG/Game2.pm:938\r\n/home/html/games/HTML/mhtml/play_homeworlds.mhtml:375\r\n/home/html/games/HTML/main.html:36\r\n/home/html/games/HTML/autohandler:10\r\n\n\tAaron: Try again please.\n\tzoltar: Hey, it worked. The binary star system blew up instead of the program this time! Cool. GG.\n\nHomeworlds Online (SDG# 9190)\nVariants: "Hard time"\nStarted: 2007.9.13, Ended: 2007.9.14\nParticipants: Visible (S), TwoShort (N)\nWinner: Visible\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy.\n\n2) Visible: Homeworld R2 B2 G3 *\n\n3) TwoShort: Build G1 Twoshort\n\tVisible: Hey there. We'll see how this plays out...\r\nGood luck!\n\n4) Visible: Build G1 Visible\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Visible: Trade G1 Y1 Visible\n\n7) TwoShort: Build G1 Twoshort\n\n8) Visible: Build G1 Visible\n\n9) TwoShort: Move G1 Twoshort Visible\n\n10) Visible: Attack G1 Visible\n\n11) TwoShort: Build G1 Twoshort\n\n12) Visible: Move G1 Visible Twoshort\n\n13) TwoShort: Move G1 Twoshort Visible\n\n14) Visible: Attack Y1 Twoshort\n\n15) TwoShort: Build G2 Visible\nCatastrophe Visible Green\n\n16) Visible: Build G1 Twoshort\n\tVisible: oops.\n\n17) TwoShort: Trade G3 R3 Twoshort\n\n18) Visible: Trade Y1 R1 Twoshort\n\tTwoShort: I think we're headed for a draw here...\n\n19) TwoShort: Attack G1 Twoshort\n\tVisible: how exactly are draws handled?\n\tTwoShort: In more draw-prone games (e.g. Fanorona) there's a button to offer a draw; I guess it hasn't come up enough in Homeworlds. We'd have to get Aaron to do it manually. But actually now I'm wondering if I can stop you... This is a freaky game :)\n\n20) Visible: Build R1 Twoshort\nCatastrophe Twoshort Red\n\n21) TwoShort: Trade G1 R1 Twoshort\n\n22) Visible: Sacrifice G1 Twoshort\nBuild Y1 Visible\n\tVisible: sorry for the undo. forgot to actually cause my catastrophe... ;)\r\nI think you would have been better off sac'ing your 3r and taking all 3 of my ships.\n\tVisible: MAN this game is fun. :)\n\n23) TwoShort: Trade R1 G1 Twoshort\n\tTwoShort: I couldn't sac the 3, it was my only ship and I'd have had nothing to actually perform the attack actions with.\n\n24) Visible: Trade Y1 R1 Visible\n\tVisible: ooooh yeah. hmmm.\n\tTwoShort: Oh... and don't worry about the undo; I personally don't see any problem with undoing even just because I see a better move.\n\tVisible: Gotcha. Good to know. =)\n\n25) TwoShort: Trade G1 R1 Twoshort\n\n26) Visible: Trade Y1 G1 Visible\n\n27) TwoShort: Trade R1 G1 Twoshort\n\n28) Visible: Build R1 Visible\n\n29) TwoShort: Build G1 Twoshort\n\n30) Visible: Trade R1 Y1 Visible\n\n31) TwoShort: Trade G1 R1 Twoshort\n\n32) Visible: Build Y1 Visible\n\n33) TwoShort: Build R1 Twoshort\n\n34) Visible: Build R2 Visible\n\n35) TwoShort: Build G1 Twoshort\n\n36) Visible: Move R2 Visible Twoshort\n\tTwoShort: Hmmm, I'm beginning to think I might not win this one.\n\n37) TwoShort: Build R2 Twoshort\nCatastrophe Twoshort Red\n\tVisible: Eh, well. All it'll take is a mistake on my part to turn it around.\n\n38) Visible: Move G1 Visible Twoshort\n\tTwoShort: Certainly, though it will take a pretty crazy blunder at this point... not that you should let that stop you from making one :)\n\n39) TwoShort: Trade G1 R1 Twoshort\n\tVisible: Mmm. Decisions, decisions.\n\n40) Visible: Sacrifice R1 Visible\nAttack R1 Twoshort\n\n\tVisible: good game!\n\tTwoShort: Good game to you too! \n\nHomeworlds Online (SDG# 9340)\nVariants: "Hard time"\nStarted: 2007.9.14, Ended: 2007.9.29\nParticipants: TwoShort (S), Visible (N)\nWinner: TwoShort\n\n1) Visible: Pass\n\tVisible: Hey there. Feel like a rematch?\n\n2) TwoShort: Homeworld B3 R1 G3\n\tVisible: Heh. Couldn't decide on an opening, so I figured I'd find out if it lets you pass your first turn... =X\n\n3) Visible: Homeworld Y2 B2 G3 *\n\n4) TwoShort: Build G1 Twoshort\n\n5) Visible: Build G1 Visible\n\tTwoShort: Couldn't decide on an opening, or wanted to force another micro-universe game? :) Not that it matters, I think the microverse favors player 1 despite my screwing it up last time.\n\tVisible: Didn't really want to force the same game. I just think it's the optimal response to your homeworld.\r\nIt puts the game on rails, as far as I can tell. Optimal or near-optimal play by both players results in victory for me.\r\nI think. =P\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Visible: Trade G1 R1 Visible\n\tVisible: And honestly, I couldn't decide on an opening. Most of the possibilities are just... so... not good.\n\n8) TwoShort: Build Y1 Twoshort\n\tTwoShort: You may be right, I haven't given the micro-universe all that much thought. Out of curiosity, how much analysis are you basing your conclusion on? \n\n9) Visible: Build G1 Visible\n\tVisible: Not a great deal. If you run through our last game, though, you'll notice a LOT of cause and effect. \r\nI think taking a yellow star instead of red may mess that up, for this game. I didn't give it much thought; just wanted to change it up.\r\n\n\tTwoShort: As far as openings as first player, my only current debate is whether the blue should be a 2 or a 3 :) But I do think it's better to go first under the rules in use here.\n\n10) TwoShort: Build Y1 Twoshort\n\tVisible: Well, taking any single-pip first is probably a handicap. The 1r 3b 3g means that you'll almost always take -two- small pieces first. \n\tTwoShort: I just wanted to make sure your answer was "mostly our last game" rather than "extensive computer modeling" :) The game is certainly constrained in this set up, but I think the last game is mostly down to one stupid move I made. Which I'll be happy to point out after I don't make it this time :)\n\tVisible: Heh. Pretty sure it was when you moved your 1g into my homeworld without any way to make use of it. -_^\n\n11) Visible: Build R1 Visible\n\tVisible: Hmmm. Yeah... was afraid this would happen. Definately a mistake taking a yellow star.\n\n12) TwoShort: Discover Y1 Twoshort Y2 Yolonda\n\n13) Visible: Build R2 Visible\n\n14) TwoShort: Build Y2 Twoshort\n\n15) Visible: Discover R1 Visible Y3 Invisible\n\tTwoShort: So have you played much Homeworlds off-line?\n\n16) TwoShort: Discover Y2 Twoshort B2 Bluonia\n\tVisible: None at all. Actually, our previous game was the first that I've completed. I've got one in progress which I started prior to that, though.\n\n17) Visible: Discover R2 Visible Y3 Unvisible\n\n18) TwoShort: Build Y3 Twoshort\n\tVisible: This is absolutely bizarre.\n\tTwoShort: Sigh. I was afraid it was your first game. I guess I'll blame your unconventional tactics for throwing me off :) \n\n19) Visible: Sacrifice G3 Visible\nBuild R2 Invisible\nBuild R2 Unvisible\nBuild R3 Visible\n\tVisible: Well, if it's any comfort, you seem to be stomping all over me this time around. ;)\r\nThis'll be my last move for this evening, incidentally.\n\n20) TwoShort: Trade Y3 R3 Twoshort\n\tTwoShort: Hmmm, I think I'll feel better if I crush you a half-dozen times or so. :) I mean, nothing personal, but I'm the highest rated Homeworlds player here. I'm supposed to be an unstoppable juggernaut; not get tripped up by first-timers who don't know enough to be intimidated ;) Seriously though, you're playing shockingly well for a newbie.\n\n21) Visible: Move R1 Invisible Yolonda\n\tVisible: Oh, I knew who you were when I joined the game. ;)\r\nWas the whole reason I went with the aggressive strategy.\r\nAnyway, you don't learn anything playing against newbs.\n\n22) TwoShort: Move R3 Twoshort Yolonda\n\n23) Visible: Move R2 Unvisible Bluonia\n\tVisible: Good move. \n\n24) TwoShort: Sacrifice R3 Yolonda\nAttack R2N Bluonia\nAttack R1N Yolonda\nPass\n\tTwoShort: Well, I'm learning a lot, having never played a game with adjacent homeworlds before. The last one was exactly the sort of desperately constricted game I'd always assumed it would be, but this one is fascinating. It's too dangerous to build up the forces for a direct assault in one's own homeworld, so you have to also expand around the long way, making it like a normal 3-hop universe bent into a circle. Room to grow, but not to breathe.\n\tVisible: I meant that I, as a newbie, wasn't going to learn much playing other newbies.\r\nIt has been an extremely interesting game.\r\nI think same-size stars in your homeworld may be an extremely strong opening. It basically halves your initial movement costs, while doubling your initial movement options.\n\tVisible: As you said, though, you do probably sacrifice breathing room.\n\n25) Visible: Sacrifice G1 Visible\nBuild R3 Invisible\n\tVisible: Ooooof. Not good.\n\n26) TwoShort: Build Y3 Twoshort\n\n27) Visible: Move R3 Invisible Bluonia\n\n28) TwoShort: Discover R2 Bluonia G3 Threatamantic\n\tTwoShort: So out of curiosity, where are you? \r\n(I'm in Boulder, Colorado)\n\tVisible: Minneapolis, Minnesota.\r\nBoulder, eh? Starting to get cold over there, too?\n\n29) Visible: Sacrifice R1 Visible\nAttack Y2 Bluonia\n\n30) TwoShort: Trade Y1 R1 Twoshort\n\tVisible: =/\n\n31) Visible: Move R2 Unvisible Yolonda\n\n32) TwoShort: Discover R1 Yolonda B3 Bluestar\n\n33) Visible: Trade R3 G3 Visible\n\tVisible: WOW. I didn't think that was a great move, when I made it...\r\nbut... just WOW. talk about oversight. =X\n\n34) TwoShort: Build G1 Twoshort\n\n\nHomeworlds Online (SDG# 9191)\nStarted: 2007.9.15, Ended: 2007.9.15\nParticipants: MikeYarrum (S), Metroidfans (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 9307)\nVariants: "Hard time"\nStarted: 2007.9.17, Ended: 2007.9.23\nParticipants: stoneaxe (S), SpaceHobo (N)\nWinner: stoneaxe\n\n1) SpaceHobo: Homeworld Y1 B2 G3\n\n2) stoneaxe: Homeworld B1 Y3 G3\n\n\tstoneaxe: Interstellar greetings to you. I'm a relative newbie at this game, so prepare to battle my awesome powers of beginners luck!!!\n\nHomeworlds Online (SDG# 9315)\nVariants: "Unrated, Hard time"\nStarted: 2007.9.18, Ended: 2007.9.24\nParticipants: zoltar (S), scottobear (N)\nWinner: zoltar\n\n1) scottobear: Homeworld G3 B2 Y3\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) zoltar: Build G1 Zoltar\n\tscottobear: I've never seen a red homeworld!\n\n5) scottobear: Trade Y1 R1 Scottobear\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) scottobear: Discover R1 Scottobear G1 Teeth\n\n8) zoltar: Build G1 Zoltar\n\n9) scottobear: Build Y1 Scottobear\n\tzoltar: I usually use red/blue homeworlds, because I don't have to worry about not having a red ship and having my homeworld invaded -- it always has defense abilities to capture an invader -- and I can build more greens and yellows without worrying as much about catastrophes, so if I build a 'factory' (when all the greens are used and I have a G3 and another green ship in my homeworld and can sacrifice the green and immediately rebuild it and get two more grow turns at once) a single green ship won't be able to blow up my factory.\n\tscottobear: sounds like a good strategy! i'm still developing mine..I'm new!\n\n10) zoltar: Discover G1 Zoltar B3 Bluemoon\n\n11) scottobear: Move Y1 Scottobear Teeth\n\n12) zoltar: Build G1 Bluemoon\n\n13) scottobear: Move R1 Teeth Bluemoon\n\tscottobear: move r1 teeth bluemoon\n\tscottobear: oops!\n\n14) zoltar: Build G2 Bluemoon\n\n15) scottobear:\nBuild Y1 Scottobear\n\tzoltar: So I'm going to ignore your attack, and let you waste 2 moves to move your red ship and capture my green, while I develop larger green ships.\n\tscottobear: thank you for showing me the ropes!\n\n16) zoltar: Trade G2 R2 Bluemoon\n\n17) scottobear: Build Y2 Teeth\n\n18) zoltar: Attack R1 Bluemoon\n\n19) scottobear: Build Y2 Scottobear\n\n20) zoltar: Trade R2 Y2 Bluemoon\n\n21) scottobear: Trade Y3 R3 Scottobear\n\n22) zoltar: Build Y3 Zoltar\n\tzoltar: You're playing much better this game. Now I have to go for some very dangerous tricks to catch up in development here.\n\n23) scottobear: Build Y3 Teeth\n\tzoltar: Actually, that's too dangerous, I think.\n\n24) zoltar: Move Y2 Bluemoon Teeth\nCatastrophe Teeth Y\n\tzoltar: Ok, I like my position now, with two battlestars defending my homeworld.\n\tscottobear: thank you again for the hints and tips!\n\n25) scottobear: Trade Y1 R1 Scottobear\n\n26) zoltar: Move Y3 Zoltar Bluemoon\n\tzoltar: Time to send in a jihadist!\n\n27) scottobear: Discover R1 Scottobear B1 Monkey\n\tzoltar: Building the Y3 in your homeworld would have been much better, as I would have to sac my Y3 in my homeworld to send my y1 into your homeworld to blow up the yellow ships, and then forces would remain equal. In this case, however, I got to sacrifice only my y2 to take out your Y3 and blow up the entire system, leaving me with two large ships to your one after the simplification.\n\tzoltar: And you're welcome -- I love discussing this game, as it's the most interesting new game I've discovered in years -- and I live just down the street from the designer/author of the game. \n\tzoltar: And you're welcome -- I love discussing this game, as it's the most interesting new game I've discovered in years -- and I live just down the street from the designer/author of the game. \n\tscottobear: It is a fascinating one.. probably the most interesting icehouse game I've seen yet. \r\n\r\nI'm in Maryland - not very far from the Looneys.\n\n28) zoltar: Build Y1 Bluemoon\n\n29) scottobear: Build R1 Scottobear\n\n30) zoltar: Build R2 Bluemoon\n\n31) scottobear: Build Y1 Scottobear\n\n32) zoltar: Move Y3 Bluemoon Monkey\n\n33) scottobear: Move Y2 Scottobear Monkey\n\n34) zoltar: Sacrifice R2 Bluemoon\nAttack Y2 Monkey\nAttack R1 Monkey\n\n35) scottobear: Trade R1 B1 Scottobear\n\n36) zoltar: Build Y2 Bluemoon\n\n37) scottobear: Build Y2 Scottobear\n\tzoltar: Resistance is futile -- you will be assimilated.\n\tscottobear: aw, pah!\n\n38) zoltar: Discover Y1 Bluemoon R1 Attackoutpost\n\tscottobear: trade r1 b1 scottobear\r\n\n\n39) scottobear: Build Y3 Scottobear\n\n40) zoltar: Move Y1 Attackoutpost Scottobear\nCatastrophe Scottobear Y\n\n41) scottobear: Build B2 Scottobear\n\n42) zoltar: Move G1 Bluemoon Monkey\n\tscottobear: sacrifice y2 scottobear\r\nmove r3 scottobear monkey\r\nattack y3 r3 monkey\r\n\r\nam I missing something, it says I'm out of actions. \n\n43) scottobear: Trade B2 R2 Scottobear\n\tzoltar: Yes, you can't both move and attack in one round. If you sac a Y2, you get two movements. If you sac an R2, you get two attacks. But you can't sac a Y2 (nor an R2) and get one movement and one attack. So you can't both move your R3 and then attack my Y3 in the same turn.\r\n\r\nObviously you don't want to simply move your R3, as I can now capture it. So click on undo and find another move, but be careful, as the software only lets you undo your move once per turn.\n\tscottobear: thanks!\n\n44) zoltar: Sacrifice Y3 Monkey\nMove R1 Bluemoon Monkey\nMove R1 Monkey Scottobear\nMove R1 Monkey Scottobear\nCatastrophe Scottobear R\n\tscottobear: aw, nuts. \n\n45) scottobear: Build B2 Scottobear\n\tzoltar: Hey, I invited you to my Zendo game, because one of the players never showed up yet, and I saw that you've signed up for a couple of Zendo games. Zendo and Homeworlds are now my two favorites.\r\n\r\nBtw, I live in Greenbelt, close to the Looneys as well, and down the street from John Cooper (aka Gort here), the author of Homeworlds.\n\tscottobear: Very keen... I'm in north beach - I go to work in greenbelt every weekday!\n\tscottobear: I'd love to try zendo... I've been wanting to learn for ages!\n\n46) zoltar: Build G1 Zoltar\n\n47) scottobear: Trade B2 R2 Scottobear\n\n48) zoltar: Build G2 Monkey\n\n49) scottobear: Build B2 Scottobear\n\tscottobear: uh-oh! \n\n50) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bluemoon\nBuild G2 Bluemoon\nBuild G3 Zoltar\n\n51) scottobear: Trade B2 Y2 Scottobear\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild G3 Monkey\nBuild G3 Zoltar\nBuild Y1 Monkey\n\n53) scottobear: Build B2 Scottobear\n\n54) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Monkey\nBuild Y3 Bluemoon\nBuild Y3 Zoltar\n\n55) scottobear: Trade B2 R2 Scottobear\n\n56) zoltar: Sacrifice G3 Monkey\nBuild G3 Monkey\nBuild G3 Zoltar\nBuild Y3 Bluemoon\n\n57) scottobear: Pass\n\tscottobear: that's a whole lot of green goin' on!\n\n58) zoltar: Trade G3 R3 Monkey\n\n59) scottobear: Build B2 Scottobear\n\n60) zoltar: Trade Y3 B3 Bluemoon\n\n61) scottobear: Move Y2 Scottobear Monkey\nCatastrophe Monkey Y\n\tscottobear: I have no idea! \n\n62) zoltar: Sacrifice Y3 Bluemoon\nMove B3 Bluemoon Monkey\nMove B3 Monkey Scottobear\nMove R3 Monkey Scottobear\nCatastrophe Scottobear B\n\n63) scottobear: Build R1 Scottobear\nCatastrophe Scottobear R\n\n\tzoltar: Though actually, this move is cuter, as it puts you in what chessplayers call "Zugzwang", which means that every possible move spells doom for you.\n\tscottobear: that's no moon!!\n\nHomeworlds Online (SDG# 9370)\nVariants: "Hard time"\nStarted: 2007.9.19, Ended: 2007.9.22\nParticipants: Kermit (S), Visible (N)\nWinner: Kermit\n\n\nHomeworlds Online (SDG# 9382)\nVariants: "Unrated"\nStarted: 2007.9.20, Ended: 2007.11.13\nParticipants: wyons (S), MikeYarrum (N)\nWinner: wyons\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\tMikeYarrum: Okay, here's your training game. Pardon me if I go over something you already know.\r\n\r\nThe most important thing is picking a good Homeworld. If you don't have any green technology to start with, you'll either have to trade for it (and waste a valuable turn). It's also good to start with blue, or you'll be stuck with only one kind of color in your Homeworld, unless you waste turns moving different colors back to your Homeworld.\r\n\r\nFor beginningers, a Homeworld of one small and one medium is recommended, with a combination of yellow-blue-green technology. Some advanced players, myself included, prefer a large-medium Homeworld with blue-red-green technology.\r\n\r\nYou can pick whatever size ship you'd like to start with, but there's no reason you'd want to go with anything except a 3-pointer.\n\n2) wyons: Homeworld G1 B2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\twyons: thanks that is all just the help I need\n\tMikeYarrum: Okay, but if you have any questions at all, feel free to ask. =D\n\n4) wyons: Build Y1 Wyons\n\twyons: --I wasnt saying that was enough - I was saying it was good. :) please keep going. :)\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) wyons: Discover Y1 Wyons G3 Spinach\n\tMikeYarrum: Oh, my bad! I'll keep going.\r\n\r\nWell, right now my red technology isn't helping, which puts you at the advantage. You'll want to build as many yellow ships as possible, to keep me from getting any. But I took the first opportunity I had to trade an extra ship for yellow (again, some new players will waste time trading instead of building - but this was a good time to trade). Now, it wouldn't be wise of you to build another yellow ship, because that puts you at three yellow ships in your Homeworld - if you built any after that, I could catastrophe and destroy all of your ships. Plus, I could build a 2-point yellow if you took the last 1-point yellow.\r\n\r\nSo, this gives you several options. You could trade your 1-point yellow for a blue or a green, but you already have those technologies in your Homeworld (it's always wise to have ships of different colors, but one-pointers of colors you already have don't help much). Also, trading for red at this point might not be a good idea, since you wouldn't have any use for it yet.\r\n\r\nI'd recommend discovering a 3-point Green system with your one-point yellow. This not only takes away a 3-point Green that I would definitely want to build later in the game, but gives you another place to safely build more yellow ships (that's the big reason to discover new systems - room to build).\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\twyons: OK, that all makes sense.... I shall certainly take your advice!\n\n8) wyons: Build Y1 Wyons\n\tMikeYarrum: Besides discovering a new system like you did, I can only build another green ship. I could trade it my next turn, or maybe use it for discovery later. Keeping at least one green ship around also allows me to have a "factory" later in the game (which means sacrificing a green 3 pointer, building twice, then re-building the green 3 pointer I just sacrificed). Naturally, I can only do this much later in the game - otherwise, I'd be forced to build the smallest green ship available, which would usually mean losing my 3 pointer.\r\n\r\nThis puts you in a tricky situation - You're in a much better position to build yellow ships than I am, because you already have two systems to do it in. However, building any more yellow ships would mean I get first chance to build a 2-point yellow.\r\n\r\nLet's just see how it plays out. =D (make sure you play against other people - my strategy isn't the only one you can use!)\n\twyons: if you sacrifice a yellow two pointer can you hop from system a to b to c (assuming they are connected)?\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\twyons: OK so I am going to allow you a two pointer yellow because I dont really see how else I can develop effectively... :)\n\tMikeYarrum: Yes, that's right. Also, because you can only attack ships that are the same size or smaller, larger ships mean you have more opportunities to attack, but can more easily defend.\n\tMikeYarrum: Oh, and don't forget - it's entirely legal (at least in the SDG system) to "discover" a system, then abandon it the same turn. So, for example, you could sacrifice your 3 point yellow, "discover" a 1 point system, then move directly into my homeworld in one turn, abandoning spinach and the 1 point system in the process.\r\n\r\nNot that you'd want to, but if a similar situation comes up...\n\n10) wyons: Build Y2 Spinach\n\n11) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\twyons: thanks, I hadnt realised that and it is a useful tactic. \n\n12) wyons: Trade Y1 R1 Wyons\n\n13) MikeYarrum: Discover G1 Mikeyarrum B1 Ena\n\n14) wyons: Build Y1 Wyons\n\n15) MikeYarrum: Build G1 Mikeyarrum\n\tMikeYarrum: Oh, by the way, I noticed how you traded that one point yellow away - that's always a good tactic to keep the higher-pointers away, if you didn't already know.\r\n\r\nDoesn't work later in the game, when there's barely anything to trade for, though.\n\n16) wyons: Trade Y1 B1 Wyons\n\twyons: hmm , I've let you get a nice line in green..\n\n17) MikeYarrum: Build G2 Ena\n\tMikeYarrum: Yes... apparently, this wasn't the best strategy for you.\r\n\r\nUnfortunately, I seem to run into a similar problem in my games against zoltar - we get into a game of "chicken" about giving the other first crack at the big pieces, and he always seems to come out ahead. So I really didn't have much advice about the situation - try playing against some others. ^_^\n\tMikeYarrum: *by "others", I mean both more games, and against other people.\n\n18) wyons: Move B1 Wyons Spinach\n\n19) MikeYarrum: Trade G2 R2 Ena\n\twyons: I am playing several other games.... :) And I am also not sure now about the wisdom of building a green star in the home world. I'd rather have a green ship and a red and blue star. A green star means you also have to have a green ship in order to build green- and that opens you up to easier attack. :)\n\tMikeYarrum: True, but usually you build whatever color ship you started with, then discover either blue systems to either trade for green or green systems.\n\n20) wyons: Trade Y2 G2 Spinach\n\n21) MikeYarrum: Build G2 Ena\n\n22) wyons: Build Y1 Wyons\n\n\nHomeworlds Online (SDG# 9378)\nVariants: "Unrated, Hard time"\nStarted: 2007.9.21, Ended: 2007.10.1\nParticipants: scottobear (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld Y1 B2 G3\n\n2) scottobear: Homeworld G3 B2 Y3\n\twyons: Hi again :). You will have to bear with me (no pun intended!) as this is my first game!\n\tscottobear: no worries! I'm *very* new, too... still getting sacrifices worked out. :D\n\n3) wyons: Build G1 Wyons\n\n4) scottobear: Build Y1 Scottobear\n\n5) wyons: Trade G1 R1 Wyons\n\twyons: why am I labelled North but in the south?? \r\n\r\n\n\n6) scottobear: Trade Y1 R1 Scottobear\n\tscottobear: I think it's just to make it look like it's from your perspective - your pieces facing away from you.\n\tscottobear: you're off to a good start!\n\n7) wyons: Build G1 Wyons\n\twyons: but thats not the way it seems to work in other ongoing games and ah thank you (that I am off to a good start) though I dont really understand why you think so.\n\n8) scottobear: Discover R1 Scottobear G1 Teeth\n\tscottobear: just that you seemed to start doing very similar moves to me. :D\n\n9) wyons: Trade G1 Y1 Wyons\n\n10) scottobear: Build Y1 Scottobear\n\n11) wyons: Build Y2 Wyons\n\n12) scottobear: Move Y1 Scottobear Teeth\n\n13) wyons: Discover Y2 Wyons G3 Gondola\n\n14) scottobear: Build Y2 Scottobear\n\tscottobear: build y2 scottobear\n\n15) wyons: Trade Y1 B1 Wyons\n\n16) scottobear: Trade Y3 R3 Scottobear\n\n17) wyons: Trade G3 R3 Wyons\n\n18) scottobear: Move Y2 Scottobear Teeth\n\n19) wyons: Trade R1 G1 Wyons\n\n20) scottobear: Move R1 Teeth Gondola\n\n21) wyons: Build R1 Wyons\n\n22) scottobear: Move Y2 Teeth Scottobear\n\n23) wyons: Sacrifice R1 Wyons\nAttack R1S Gondola\n\n24) scottobear: Build Y1 Scottobear\n\n25) wyons: Move B1 Wyons Gondola\n\n26) scottobear: Trade Y2 R2 Scottobear\n\n27) wyons: Build Y2 Gondola\n\n28) scottobear: Move R2 Scottobear Teeth\n\n29) wyons: Build B1 Gondola\n\n30) scottobear: Build Y2 Scottobear\n\n31) wyons: Discover Y2 Gondola G2 Kayak\n\n32) scottobear: Build Y3 Scottobear\n\n33) wyons: Build Y3 Kayak\n\n34) scottobear: Trade Y3 R3 Scottobear\n\n35) wyons: Build Y3 Gondola\n\n36) scottobear: Move R2 Teeth Gondola\n\twyons: is red your favourite colour (its got me nervous) :)\n\n37) wyons: Attack R2 Gondola\n\tscottobear: I do like red!\n\n38) scottobear: Discover Y2 Scottobear B1 Claws\n\n39) wyons: Trade Y3 G3 Gondola\n\twyons: phew! I thought I could attack your ship in that way but had not been able to check the rules as they were frozen up. Me - my favourite colour is yellow!\n\tscottobear: yellow is a good color! I didn't know if you could attack that way, either! :D\n\n40) scottobear: Build Y3 Scottobear\n\n41) wyons: Build Y3 Gondola\n\n42) scottobear: Move Y3 Scottobear Teeth\n\n43) wyons: Discover Y3 Gondola G1 Punt\n\n44) scottobear: Trade Y2 R2 Claws\n\n45) wyons: Build G2 Wyons\n\tscottobear: this is the biggest system I've ever played in!\n\n46) scottobear: Discover Y3 Teeth B3 Eyes\n\n47) wyons: Build G2 Gondola\n\twyons: yes... and it is getting very complicated!\n\n48) scottobear: Build Y2 Teeth\n\n49) wyons: Sacrifice Y2 Kayak\nMove B1 Gondola Punt\nMove R1 Gondola Punt\n\n50) scottobear: Trade R2 Y2 Claws\n\n51) wyons: Sacrifice G3 Gondola\nBuild R1 Punt\nBuild R1 Wyons\nBuild G3 Gondola\n\n52) scottobear: Move R3 Scottobear Teeth\n\n53) wyons: Sacrifice G3 Gondola\nBuild B2 Punt\nBuild B3 Gondola\nBuild G3 Gondola\n\n54) scottobear: Build R2 Scottobear\n\n55) wyons: Sacrifice Y3 Kayak\nMove R1 Punt Scottobear\nMove R1 Punt Scottobear\nMove Y3 Punt Scottobear\nCatastrophe Scottobear Red\n\n56) scottobear: Build Y3 Scottobear\n\n57) wyons: Sacrifice R2 Gondola\nAttack Y3S Scottobear\nAttack Y1S Scottobear\n\n\twyons: many thanks for the game. Happy to play another.\n\tscottobear: thank you!\n\nHomeworlds Online (SDG# 9417)\nStarted: 2007.9.24, Ended: 2007.10.3\nParticipants: wyons (S), stoneaxe (N)\nWinner: wyons\n\n1) stoneaxe: Homeworld Y1 B3 G3\n\twyons: Hiya, I'm a newbie too!\n\n2) wyons: Homeworld Y1 B2 G3\n\tstoneaxe: Okay, thanks for playing and good luck!\n\tstoneaxe: I like the games Golem, Generatorb, and Pikemen pretty well too. This site rocks!\n\n3) stoneaxe: Build G1 Stoneaxe\n\n4) wyons: Build G1 Wyons\n\twyons: I dont know those games yet- I am pretty new to this site as well.\n\n5) stoneaxe: Build G1 Stoneaxe\n\n6) wyons: Build G2 Wyons\n\n7) stoneaxe: Build G2 Stoneaxe\n\n8) wyons: Trade G1 R1 Wyons\nCatastrophe Stoneaxe Green\n\twyons: many thanks- your mistake was to have four of one colour in your homeworld- all I had to do was trigger a catastrophe. Do challenge me again if you want to.\n\n\nHomeworlds Online (SDG# 9356)\nStarted: 2007.9.27, Ended: 2008.2.22\nParticipants: NMcCoy (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) NMcCoy: Homeworld Y1 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) NMcCoy: Build G1 Nmccoy\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) NMcCoy: Trade G1 Y1 Nmccoy\n\n7) MikeYarrum: Build Y2 Mikeyarrum\n\n8) NMcCoy: Discover Y1 Nmccoy G3 Meganium\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) NMcCoy: Build Y2 Meganium\n\n11) MikeYarrum: Discover Y1 Mikeyarrum G1 Ena\n\n\nHomeworlds Online (SDG# 9247)\nStarted: 2007.9.27, Ended: 2007.10.10\nParticipants: ts52 (S), Sunnan (N)\nWinner: ts52\n\n1) Sunnan: Homeworld Y2 B1 G3\n\n2) ts52: Homeworld B3 Y1 G3\n\n3) Sunnan: Build G1 Sunnan\n\tts52: Have a great game!\n\n4) ts52: Build G1 Ts52\n\tSunnan: Oh, thanks! You too! This is the first time I play Homeworlds and the first time I play on SDG; but I've read a lot about the game and I just yesterday got a real set.\n\n5) Sunnan: Discover G1 Sunnan B3 Alice\n\tts52: Well, welcome! Homeworlds is a great game, with more depth than I've even found yet. And SDG is just fantastic, as I can't get any of my friends to play.\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Sunnan: Build G1 Sunnan\n\n8) ts52: Build Y1 Ts52\n\n9) Sunnan: Trade G3 Y3 Sunnan\n\n10) ts52: Discover Y1 Ts52 G2 Kermit\n\n11) Sunnan: Build Y2 Sunnan\n\n12) ts52: Discover Y1 Ts52 G2 Oscar\n\n13) Sunnan: Discover Y2 Sunnan B3 Ruth\n\n14) ts52: Build Y2 Kermit\n\n15) Sunnan: Sacrifice G1 Sunnan\nBuild Y3 Ruth\n\n16) ts52: Build Y3 Oscar\n\n17) Sunnan: Trade Y3 G3 Ruth\n\n18) ts52: Discover Y1 Kermit G3 Frogstar\n\n19) Sunnan: Trade Y3 R3 Sunnan\n\n20) ts52: Build Y3 Frogstar\n\n21) Sunnan: Trade G1 R1 Alice\n\n22) ts52: Build Y3 Kermit\n\n23) Sunnan: Sacrifice Y2 Ruth\nMove G3 Ruth Kermit\nMove G3 Kermit Ts52\n\n24) ts52: Sacrifice Y2 Kermit\nMove Y3 Kermit Ts52\nMove Y3 Oscar Ts52\n\n25) Sunnan: Sacrifice R1 Alice\nAttack G3 Ts52\n\n26) ts52: Trade Y3 R3 Ts52\n\n27) Sunnan: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild G1 Ts52\nBuild R1 Sunnan\n\n28) ts52: Sacrifice R3 Ts52\nAttack G3N Ts52\nAttack G1N Ts52\nAttack G1N Ts52\n\n29) Sunnan: Move R1 Sunnan Frogstar\n\n30) ts52: Trade G1 R1 Ts52\n\n31) Sunnan: Attack Y1 Frogstar\n\n32) ts52: Sacrifice R1 Ts52\nAttack R1N Frogstar\n\n33) Sunnan: Discover Y1 Frogstar R2 Manhattan\n\n34) ts52: Build Y2 Oscar\n\n35) Sunnan: Trade R3 G3 Sunnan\n\n36) ts52: Move Y3 Frogstar Sunnan\n\n37) Sunnan: Build G1 Sunnan\n\n38) ts52: Sacrifice R1 Frogstar\nAttack G3N Sunnan\n\n39) Sunnan: Build G1 Sunnan\n\n40) ts52: Build G2 Sunnan\nCatastrophe Sunnan Green\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 9438)\nStarted: 2007.9.27, Ended: 2007.9.27\nParticipants: NMcCoy (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 9368)\nVariants: "Hard time"\nStarted: 2007.9.27, Ended: 2007.9.30\nParticipants: NMcCoy (S), SpaceHobo (N)\nWinner: NMcCoy\n\n\nHomeworlds Online (SDG# 9390)\nVariants: "Unrated, Hard time"\nStarted: 2007.9.27, Ended: 2007.10.3\nParticipants: NMcCoy (S), scottobear (N)\nWinner: NMcCoy\n\n1) scottobear: Homeworld B3 G2 Y3\n\n2) NMcCoy: Homeworld B2 Y1 G3\n\n3) scottobear: Build Y1 Scottobear\n\tscottobear: hello!\n\n4) NMcCoy: Build G1 Nmccoy\n\n5) scottobear: Discover Y1 Scottobear G1 Point\n\tNMcCoy: Hello! I'm interested to see how this game goes, since you led off with a notably different setup than most of my other opponents I'm currently playing. I look forward to seeing your strategy. :)\n\tscottobear: well, I'm still very new! I'm still trying to work out my best course of action.. I don't always get it right. :D\n\n6) NMcCoy: Discover G1 Nmccoy Y3 Ampharos\n\n7) scottobear: Build Y1 Scottobear\n\tNMcCoy: I've just found out due to the rules handling of this version that I've been misunderstanding the rules in my offline games the whole time, so that changes my understanding of strategy significantly.\n\tscottobear: I haven't played many games yet, myself... I still don't quite get the sacrifice part right all the time. \n\n8) NMcCoy: Build G1 Nmccoy\n\n9) scottobear: Trade Y1 B1 Scottobear\n\n10) NMcCoy: Build G2 Ampharos\n\n11) scottobear: Trade B1 R1 Scottobear\n\n12) NMcCoy: Discover G2 Ampharos B1 Mudkip\n\n13) scottobear: Build Y1 Point\n\n14) NMcCoy: Build G2 Mudkip\n\n15) scottobear: Build Y2 Scottobear\n\n16) NMcCoy: Sacrifice G3 Nmccoy\nBuild G3 Nmccoy\nBuild G3 Ampharos\nBuild G3 Mudkip\n\n17) scottobear: Trade Y2 B2 Scottobear\n\n18) NMcCoy: Trade G3 Y3 Mudkip\n\n19) scottobear: Move B2 Scottobear Point\n\n20) NMcCoy: Sacrifice G3 Ampharos\nBuild G3 Mudkip\nBuild G3 Ampharos\nBuild Y2 Mudkip\n\n21) scottobear: Build B1 Point\n\n22) NMcCoy: Trade G3 R3 Nmccoy\n\n23) scottobear: Trade B1 R1 Point\n\n24) NMcCoy: Sacrifice Y2 Mudkip\nMove Y3 Mudkip Scottobear\nMove G3 Mudkip Scottobear\n\n25) scottobear: Attack Y3 Scottobear\n\n26) NMcCoy: Sacrifice R3 Nmccoy\nAttack Y3N Scottobear\nAttack Y3N Scottobear\nAttack R1N Scottobear\n\tNMcCoy: Good game!\n\tscottobear: thanks!!\n\n\nHomeworlds Online (SDG# 9439)\nStarted: 2007.9.27, Ended: 2007.10.5\nParticipants: NMcCoy (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) NMcCoy: Homeworld B3 Y1 G3\n\tts52: Have a great game!\n\n3) ts52: Build G1 Ts52\n\tNMcCoy: Thanks. First time playing online, and against someone other than family.\n\n4) NMcCoy: Build G1 Nmccoy\n\tts52: Having family that plays must be pretty cool. Online is the only place I can find people to play...\n\n5) ts52: Trade G1 Y1 Ts52\n\tNMcCoy: Family plays intermittently - My girlfriend (who shares my apartment) isn't all that interested, and I'm not around the rest of my family all that much. This is one of my favorite Icehouse games - tactically rich, and much more engaging to me than chess for example.\n\n6) NMcCoy: Trade G3 Y3 Nmccoy\n\tNMcCoy: Oh, wow, I've been playing the game wrong the whole time. Never knew about the rule for matching ship color when building.\n\n7) ts52: Discover Y1 Ts52 G3 Kermit\n\tts52: Oh wow, yeah. That's going to make a huge difference.\n\n8) NMcCoy: Build Y2 Nmccoy\n\n9) ts52: Build Y2 Kermit\n\n10) NMcCoy: Discover Y2 Nmccoy G2 Bayleef\n\n11) ts52: Discover Y1 Kermit G2 Oscar\n\n12) NMcCoy: Build G1 Nmccoy\n\n13) ts52: Build Y2 Oscar\n\n14) NMcCoy: Trade Y3 G3 Nmccoy\n\tNMcCoy: Erk. Not good...\n\n15) ts52: Build Y3 Kermit\n\tNMcCoy: Not a lot I can do at this point...\n\n16) NMcCoy: Build Y3 Bayleef\n\n17) ts52: Build G1 Ts52\n\n18) NMcCoy: Sacrifice Y2 Bayleef\nDiscover Y3 Bayleef Y3 Raichu\nDiscover G3 Nmccoy Y2 Pikachu\n\n19) ts52: Move Y2 Oscar Nmccoy\n\n20) NMcCoy: Sacrifice Y3 Raichu\nMove G3 Pikachu Nmccoy\nDiscover G1 Nmccoy G2 Grovyle\nDiscover G1 Nmccoy G2 Ivysaur\n\n21) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Nmccoy\nBuild Y3 Nmccoy\nCatastrophe Nmccoy Yellow\n\tNMcCoy: *cackles madly*\n\n22) NMcCoy: Sacrifice G1 Grovyle\nBuild G1 Nmccoy\n\n23) ts52: Build G2 Ts52\n\n24) NMcCoy: Trade G3 Y3 Nmccoy\n\n25) ts52: Discover G2 Ts52 Y3 Bigbird\n\n26) NMcCoy: Build G3 Nmccoy\n\n27) ts52: Trade G1 R1 Ts52\n\n28) NMcCoy: Sacrifice Y3 Nmccoy\nMove G1 Ivysaur Bigbird\nMove G1 Bigbird Ts52\nMove G1 Nmccoy Ts52\n\n29) ts52: Trade G3 B3 Ts52\n\n30) NMcCoy: Build G1 Nmccoy\n\n31) ts52: Attack G1S Ts52\n\n32) NMcCoy: Trade G3 R3 Nmccoy\n\tNMcCoy: Okay, it clearly looks like I have no way to survive at this point...\n\n33) ts52: Attack G1S Ts52\n\n34) NMcCoy: Build G2 Nmccoy\n\tts52: It's not looking too good, but it's not over yet...\n\n35) ts52: Build G3 Bigbird\n\n36) NMcCoy: Trade G2 Y2 Nmccoy\n\n37) ts52: Build B1 Ts52\n\n38) NMcCoy: Build G2 Nmccoy\n\n39) ts52: Sacrifice Y2 Kermit\nMove B3 Ts52 Nmccoy\nMove B1 Ts52 Nmccoy\n\tNMcCoy: Don't think there's any way I can stop you killing me with blue now.\n\n40) NMcCoy: Sacrifice Y2 Nmccoy\nMove G2 Nmccoy Ts52\nMove G1 Nmccoy Ts52\nCatastrophe Ts52 Green\n\n41) ts52: Sacrifice G3 Bigbird\nBuild B1 Nmccoy\nBuild B1 Nmccoy\nBuild B2 Nmccoy\nCatastrophe Nmccoy Blue\n\tNMcCoy: Might as well go out with a bang. Good game.\n\tts52: Thanks for the game. \n\n\nHomeworlds Online (SDG# 9443)\nStarted: 2007.9.28, Ended: 2007.12.15\nParticipants: NMcCoy (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld Y1 B2 G3\n\twyons: hiya, we've not met before I think, have a good game!\n\n2) NMcCoy: Homeworld Y3 B1 G3\n\n3) wyons: Build G1 Wyons\n\tNMcCoy: You too! I'm new to playing online here, though I've done a few games in person with family before.\n\n4) NMcCoy: Build G1 Nmccoy\n\n5) wyons: Trade G1 Y1 Wyons\n\n6) NMcCoy: Discover G1 Nmccoy B2 Wartortle\n\n7) wyons: Build G1 Wyons\n\n8) NMcCoy: Trade G1 R1 Wartortle\n\n9) wyons: Build G1 Wyons\n\n10) NMcCoy: Build G1 Nmccoy\n\n11) wyons: Trade G1 R1 Wyons\n\n12) NMcCoy: Move G1 Nmccoy Wartortle\n\n13) wyons: Trade G1 B1 Wyons\n\n14) NMcCoy: Build G1 Nmccoy\n\n15) wyons: Discover Y1 Wyons G3 Headington\n\n16) NMcCoy: Trade G1 Y1 Wartortle\n\n17) wyons: Build Y2 Headington\n\n18) NMcCoy: Move G1 Nmccoy Wartortle\n\n19) wyons: Move Y1 Headington Wyons\n\n20) NMcCoy: Build Y2 Wartortle\n\n21) wyons: Build Y2 Headington\n\n22) NMcCoy: Move Y2 Wartortle Nmccoy\n\n23) wyons: Discover Y2 Headington G1 Oxford\n\n24) NMcCoy: Build Y3 Wartortle\n\n25) wyons: Build Y3 Headington\n\n26) NMcCoy: Build G1 Wartortle\n\n27) wyons: Build G2 Wyons\n\n28) NMcCoy: Build G2 Nmccoy\n\n29) wyons: Discover G2 Wyons B3 Oxfordshire\n\n30) NMcCoy: Trade G2 R2 Nmccoy\n\n31) wyons: Move B1 Wyons Headington\n\n32) NMcCoy: Build G2 Nmccoy\n\n33) wyons: Build G2 Wyons\n\n34) NMcCoy: Trade G1 B1 Wartortle\n\n35) wyons: Sacrifice G3 Wyons\nBuild G1 Oxfordshire\nBuild B2 Headington\nBuild G3 Wyons\n\n36) NMcCoy: Move Y3 Wartortle Oxfordshire\n\n37) wyons: Move Y3 Headington Wartortle\n\n38) NMcCoy: Move R1 Wartortle Oxfordshire\n\n39) wyons: Trade G2 R2 Wyons\n\n40) NMcCoy: Attack G2N Oxfordshire\n\n41) wyons: Sacrifice R2 Wyons\nAttack G1S Wartortle\nAttack B1S Wartortle\n\n42) NMcCoy: Move G2 Oxfordshire Wartortle\n\n43) wyons: Build B3 Wartortle\n\n44) NMcCoy: Sacrifice R1 Oxfordshire\nAttack B1N Wartortle\n\n45) wyons: Trade B3 R3 Wartortle\n\n46) NMcCoy: Sacrifice G2 Wartortle\nBuild B3 Wartortle\nBuild B3 Wartortle\nCatastrophe Wartortle Blue\n\n47) wyons: Build R1 Wyons\n\n48) NMcCoy: Discover G2 Nmccoy R2 Charmeleon\n\n49) wyons: Trade R1 B1 Wyons\n\n50) NMcCoy: Build G1 Charmeleon\n\n51) wyons: Build G2 Wyons\n\n52) NMcCoy: Build G2 Nmccoy\n\n53) wyons: Sacrifice G3 Wyons\nBuild G3 Wyons\nBuild Y1 Oxford\nBuild Y3 Headington\n\n54) NMcCoy: Build R1 Nmccoy\n\n55) wyons: Sacrifice G3 Wyons\nBuild B2 Wyons\nBuild B3 Headington\nBuild G3 Wyons\n\n56) NMcCoy: Sacrifice Y2 Nmccoy\nMove G1 Charmeleon Headington\nMove G2 Charmeleon Headington\n\n57) wyons: Sacrifice Y2 Headington\nMove B3 Headington Oxford\nDiscover G2 Wyons R3 England\n\n58) NMcCoy: Sacrifice G2 Nmccoy\nBuild G2 Nmccoy\nBuild Y2 Oxfordshire\n\n59) wyons: Sacrifice G2 England\nBuild B3 Oxford\nBuild Y2 Headington\n\n60) NMcCoy: Build G2 Headington\nCatastrophe Headington Green\n\n61) wyons: Sacrifice Y2 Oxford\nMove Y1 Oxford Oxfordshire\nMove Y1 Wyons Oxfordshire\nCatastrophe Oxfordshire Yellow\n\n62) NMcCoy: Discover G2 Nmccoy B2 Prinplup\n\n63) wyons: Trade B3 Y3 Oxford\n\n64) NMcCoy: Trade R1 Y1 Nmccoy\n\n65) wyons: Build B1 Oxford\n\n66) NMcCoy: Trade G3 B3 Nmccoy\n\n67) wyons: Build Y1 Oxford\n\n68) NMcCoy: Discover Y1 Nmccoy G2 Ivysaur\n\n69) wyons: Trade B3 R3 Oxford\n\n70) NMcCoy: Build G1 Prinplup\n\n71) wyons: Build B3 Oxford\n\n\twyons: well, you've had a months leeway- I am presuming you arent returning\n\nHomeworlds Online (SDG# 9442)\nVariants: "Hard time"\nStarted: 2007.9.28, Ended: 2007.10.1\nParticipants: zoltar (S), SpaceHobo (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 9444)\nVariants: "Unrated, Hard time"\nStarted: 2007.9.28, Ended: 2007.10.4\nParticipants: zoltar (S), scottobear (N)\nWinner: zoltar\n\n1) scottobear: Homeworld G3 B2 Y3\n\n2) zoltar: Homeworld R1 B2 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) zoltar: Build G1 Zoltar\n\n5) scottobear: Discover Y1 Scottobear G1 Camera\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) scottobear: Build Y1 Camera\n\n8) zoltar: Build Y2 Zoltar\n\n9) scottobear: Build Y2 Scottobear\n\n10) zoltar: Discover Y1 Zoltar G3 Greengiant\n\n11) scottobear: Trade Y2 R2 Scottobear\n\n12) zoltar: Build Y2 Greengiant\n\n13) scottobear: Discover Y1 Camera B3 Glove\n\n14) zoltar: Move Y2 Greengiant Camera\n\n15) scottobear: Build Y2 Camera\n\n16) zoltar: Build Y3 Zoltar\n\n17) scottobear: Move Y1 Camera Glove\n\n18) zoltar: Build Y3 Greengiant\n\n19) scottobear: Trade Y1 R1 Glove\n\n20) zoltar: Move Y2 Camera Glove\n\n21) scottobear: Trade Y1 G1 Glove\n\n22) zoltar: Trade Y2 R2 Zoltar\n\tzoltar: Hey if it's ok with you for me to add Gort to the Zendo game (8639), then let Gort know in a comment in that game, as he doesn't want to join unless it's ok with everyone.\n\tzoltar: And I'm not sure what the best move was, but there must have been some way for you to get one of those two large yellow ships. Or maybe trade for a red ship earlier so that I could only build a small yellow.\n\tscottobear: sure, it's ok with me!\n\tzoltar: Cool. So tell Gort in the other game, and then he'll make his move.\n\n23) scottobear: Build Y1 Camera\n\n24) zoltar: Sacrifice R2 Zoltar\nAttack R1 Glove\nAttack G1 Glove\n\n25) scottobear:\nMove Y2 Camera Glove\n\n26) zoltar: Attack Y2 Glove\n\n27) scottobear: Build R1 Scottobear\n\n28) zoltar: Build R2 Glove\n\n29) scottobear: Move R1 Scottobear Camera\n\n30) zoltar: Move Y2 Glove Camera\n\n31) scottobear: Build R2 Camera\n\n32) zoltar: Sacrifice R2 Glove\nAttack R2 Camera\nAttack R1 Camera\n\n33) scottobear: Build Y1 Camera\n\n34) zoltar: Sacrifice R2 Camera\nAttack Y1 Camera\nAttack Y1 Camera\n\n35) scottobear: Move Y3 Scottobear Camera\nCatastrophe Camera Y\n\tscottobear: aw, nuts!\n\n36) zoltar: Sacrifice Y2 Glove\nMove Y3 Greengiant Camera\nMove Y3 Camera Scottobear\n\n37) scottobear: Build R2 Scottobear\n\tzoltar: The camera and glove systems have been totally liberated by the Zoltarian Empire! \n\n38) zoltar: Sacrifice Y3 Zoltar\nMove R1 Glove Camera\nMove R1 Camera Scottobear\nMove R1 Camera Scottobear\nCatastrophe Scottobear R\n\n\tzoltar: Good game. Play again?\n\nHomeworlds Online (SDG# 9446)\nStarted: 2007.9.29, Ended: 2008.1.4\nParticipants: zoltar (S), NMcCoy (W), Charlemagne (N), wyons (E)\nWinner: wyons\n\n1) Charlemagne: Homeworld G2 B1 Y3\n\n2) wyons: Homeworld B3 Y2 G3\n\tCharlemagne: Hi All\r\nIs this the version where we aim to eliminate the player on our left, or are we doing the good/evil thing?\n\tNMcCoy: As I understand it, SDG's default mode of play is "last man standing".\n\twyons: agreed, and that there is no good/evil provision here..\n\n3) zoltar: Homeworld R3 B1 G3\n\n4) NMcCoy: Homeworld G3 B1 Y3\n\n5) Charlemagne: Build Y1 Charlemagne\n\n6) wyons: Build G1 Wyons\n\n7) zoltar: Build G1 Zoltar\n\tCharlemagne: Well, I am good, in case you interested...:)\n\tCharlemagne: In an evil kind of way, you understand ....\n\twyons: well, I see that your species is as confused as ours... \n\n8) NMcCoy: Build Y1 Nmccoy\n\n9) Charlemagne: Trade Y1 G1 Charlemagne\n\n10) wyons: Discover G1 Wyons B1 Mongoose\n\tNMcCoy: Don't mind me, I'm just chaotic neutral.\n\tCharlemagne: Chaotic neutral? Ah, that takes me back... the most popular alignment.....\n\n11) zoltar: Trade G1 B1 Zoltar\n\n12) NMcCoy: Trade Y1 G1 Nmccoy\n\n13) Charlemagne: Build Y1 Charlemagne\n\n14) wyons: Build G1 Wyons\n\n15) zoltar: Build B2 Zoltar\n\n16) NMcCoy: Discover G1 Nmccoy B2 Croconaw\n\n17) Charlemagne: Trade Y3 B3 Charlemagne\n\n18) wyons: Trade G3 B3 Wyons\n\n19) zoltar: Trade B2 Y2 Zoltar\n\n20) NMcCoy: Build Y1 Nmccoy\n\n21) Charlemagne: Build B2 Charlemagne\n\n22) wyons: Build B2 Wyons\n\n23) zoltar: Build B2 Zoltar\n\n24) NMcCoy: Trade Y3 B3 Nmccoy\n\n25) Charlemagne: Discover B2 Charlemagne R3 Frogstar\n\n26) wyons: Move B2 Wyons Mongoose\n\n27) zoltar: Discover B1 Zoltar G2 Plastogalepsus\n\n28) NMcCoy: Build Y1 Nmccoy\n\n29) Charlemagne: Build B2 Charlemagne\n\n30) wyons: Build B3 Wyons\n\n31) zoltar: Sacrifice Y2 Zoltar\nMove B1 Plastogalepsus Mongoose\nMove B1 Mongoose Wyons\nCatastrophe Wyons B\n\n32) NMcCoy: Trade Y1 R1 Nmccoy\n\n33) Charlemagne: Move B2 Charlemagne Frogstar\n\twyons: yaargh! I feared that you might do that Zoltar- but it was a gamble I couldnt resist. I thought you wouldnt do it because it weakens you... :)\n\tzoltar: It does weaken me a little, but it weakens you a lot, so it is worth a slight weakening; also, now that I'm more weak, (I was the strongest, getting the first 2-pip ship), now I'm less of a target, being 3 ships and several tempi behing the other two; the two strong players will be keeping each other in check while you and I try to catch up.\r\n\r\nThe alternative, not take responsibility and allow you to have two 3-pip ships and a commanding lead, might have just come back to haunt me, and I'd find myself in your position now, had I neglected to stop you when I did. \r\n\r\nIf this were instead a 'sinister' variation, where you win when you kill the fleet to your left, I never would have made the move, as now Charlemagne would go for the kill and finish you off and win the game. But in a standard game, it would be a waste of Charlemagne's resources to attack you, as it's of no benefit and you pose no threat; and again, I can catch up with some extra free moves as soon as the two leaders lock horns, I figure. \n\twyons: Yes I feared you might make an analysis along those lines- time will tell if the disadvantage to both of us is terminal.\n\twyons: --- but you are forgiven in the interests of cosmic compassion. \n\n34) wyons: Build G1 Mongoose\n\tNMcCoy: Wait, I'm a leader now? Eep!\n\tzoltar: Not only that, but now you're the only one with a gun...\n\tNMcCoy: It's for self-defense! Really!\r\nActually, I mostly wanted another color to build. I didn't want to overload on yellow, or take the last small blue or green.\n\n35) zoltar: Build G2 Zoltar\n\n36) NMcCoy: Build G2 Croconaw\n\n37) Charlemagne: Build G2 Charlemagne\n\n38) wyons: Trade G1 Y1 Mongoose\n\n39) zoltar: Trade G2 Y2 Zoltar\n\n40) NMcCoy: Trade G1 Y1 Croconaw\n\n41) Charlemagne: Move G1 Charlemagne Frogstar\n\n42) wyons: Move B2 Mongoose Wyons\n\n43) zoltar: Discover B2 Zoltar G2 Greenschlyme\n\n44) NMcCoy: Build G1 Croconaw\n\n45) Charlemagne: Trade B2 Y2 Frogstar\n\twyons: looks like a busy anti-clockwise roundabout\n\n46) wyons: Build G1 Mongoose\n\n47) zoltar: Build G2 Zoltar\n\n48) NMcCoy: Trade G2 Y2 Croconaw\n\n49) Charlemagne: Discover G2 Charlemagne G3 Vortex1\n\n50) wyons: Trade G1 R1 Mongoose\n\n51) zoltar: Discover G2 Zoltar B2 Bloozebrotherz\n\n52) NMcCoy: Trade B3 G3 Nmccoy\n\n53) Charlemagne: Trade B3 G3 Charlemagne\n\n54) wyons: Build R1 Mongoose\n\n55) zoltar: Build G1 Zoltar\n\n56) NMcCoy: Build G2 Croconaw\n\n57) Charlemagne: Sacrifice G2 Vortex1\nBuild G2 Charlemagne\nBuild G3 Frogstar\n\n58) wyons: Move R1 Mongoose Wyons\n\n59) zoltar: Sacrifice Y2 Zoltar\nMove G2 Bloozebrotherz Frogstar\nMove G2 Frogstar Charlemagne\nCatastrophe Charlemagne G\n\n60) NMcCoy: Sacrifice Y2 Croconaw\nMove G2 Croconaw Zoltar\nMove G1 Croconaw Zoltar\nCatastrophe Zoltar Green\n\tzoltar: Banzai!!!\n\n61) Charlemagne: Move G3 Frogstar Charlemagne\n\twyons: hey guys (N & W)... I think Zoltar might be a klingon!\n\tNMcCoy: Well, it's risky and you guys might gang up on me, but I feel compelled to secure the position of Not Last.\n\n62) wyons: Build G1 Wyons\n\tCharlemagne: ouch - thanks for the action, Zoltar\r\nand thanks for the not last McCoy.... I may even feel happier now \n\n63) NMcCoy: Build R1 Nmccoy\n\tzoltar: I figured it was in NMcCoy's best interest to not kill me but to take out the G3 in frogstar, before it could retreat to the Charlemagne homeworld.\r\n\r\nThat would have left NMcCoy in the best position by far, with me having weakened myself twice and both Charlemagne and Wyons without a 3-pip ship.\r\n\r\nNow Charlemagne is stronger than I would have been after weakening myself -- I didn't think NMcCoy would choose the scenario where he's clearly in second place to one where he's clearly the alpha player, but he went against his own self-interest, which I didn't at all expect. \r\n\r\nAnd you should feel happier now, Charlemagne, as you're in a great position since NMcCoy allowed you to move your new Battlestar to your homeworld and retain the lead in the game.\n\n64) Charlemagne: Trade B2 R2 Frogstar\n\tNMcCoy: Ack, I hadn't considered that. I'm still pretty new to the game ,especially multiplayer, and hadn't thought of what /everyone/'s next move might be.\n\n65) wyons: Build B1 Wyons\n\tzoltar: Well, there is something to be said for eliminating any player at low cost, as now your winning chances increase from 1/4 to 1/3 if everything else were equal.\n\n66) NMcCoy: Move R1 Nmccoy Croconaw\n\n67) Charlemagne: Move R2 Frogstar Charlemagne\n\n68) wyons: Discover B1 Wyons G3 Meercat\n\n69) NMcCoy: Build R1 Nmccoy\n\n70) Charlemagne: Build R2 Charlemagne\n\n71) wyons: Build R2 Mongoose\n\tNMcCoy: Sorry to keep you waiting - life's been hectic lately.\n\n72) NMcCoy: Move R1 Nmccoy Greenschlyme\n\n73) Charlemagne: Move R2 Charlemagne Greenschlyme\n\n74) wyons: Build R2 Wyons\n\n75) NMcCoy: Sacrifice G3 Nmccoy\nBuild R2 Greenschlyme\nBuild R3 Croconaw\nBuild R3 Nmccoy\n\n76) Charlemagne: Sacrifice G3 Charlemagne\nBuild R3 Charlemagne\nBuild R3 Greenschlyme\nBuild G1 Frogstar\nCatastrophe Greenschlyme Red\n\n77) wyons: Build G2 Mongoose\n\n78) wyons: Move R2 Mongoose Greenschlyme\n\n\nHomeworlds Online (SDG# 9441)\nStarted: 2007.9.29, Ended: 2008.2.22\nParticipants: MikeYarrum (S), Charlemagne (N)\nWinner: MikeYarrum\n\n1) Charlemagne: Homeworld G3 B2 Y3\n\n2) MikeYarrum: Homeworld Y1 B2 G3\n\tCharlemagne: Hi Mike - enjoy this friendly little war :)\n\tMikeYarrum: Hey, I'm sure I will!\n\n3) Charlemagne: Build Y1 Charlemagne\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Charlemagne: Trade Y1 G1 Charlemagne\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) Charlemagne: Discover Y3 Charlemagne G1 Fido\n\n8) MikeYarrum: Discover Y1 Mikeyarrum B3 Torako\n\n9) Charlemagne: Build Y1 Fido\n\n10) MikeYarrum: Build G1 Mikeyarrum\n\n11) Charlemagne: Build G2 Charlemagne\n\n12) MikeYarrum: Move G1 Mikeyarrum Torako\n\n\nHomeworlds Online (SDG# 9369)\nVariants: "Hard time"\nStarted: 2007.10.1, Ended: 2007.10.4\nParticipants: Jesse (S), Visible (N)\nWinner: Jesse\n\n\tJesse: Have a good game.\n\tJesse: Or not.\n\nHomeworlds Online (SDG# 9468)\nStarted: 2007.10.2, Ended: 2008.2.22\nParticipants: kreiger (S), MikeYarrum (N)\nWinner: kreiger\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\tkreiger: This is my first game on SDG, so sorry if i make any mistakes.\n\tMikeYarrum: No problem, it happens to everyone.\n\n2) kreiger: Homeworld Y1 B3 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tkreiger: I'm sorry, i have to go to bed. I hope you're not disappointed if the game takes a long time.\n\tMikeYarrum: No problem - this site is designed for games where people can log on when they are free and play when they can. Games usually take quite a while.\n\n4) kreiger: Build G1 Kreiger\n\n\tkreiger: Do you want me to terminate the game?\n\tKeith: I believe Mike is gone. He has not been logged into SDG for 44+ days.\n\tMikeYarrum: Um... I'm back, if you want to continue.\n\nHomeworlds Online (SDG# 9496)\nVariants: "Unrated"\nStarted: 2007.10.3, Ended: 2008.2.22\nParticipants: Sunnan (S), kreiger (N)\nWinner: Sunnan\n\n1) kreiger: Homeworld Y3 B1 G3\n\tSunnan: I'm sorry we called you a sopa the other day.\n\n2) Sunnan: Homeworld B1 R2 G3\n\n3) kreiger: Build G1 Kreiger\n\n4) Sunnan: Build G1 Sunnan\n\n5) kreiger: Discover G1 Kreiger B2 Slylandro\n\n6) Sunnan: Trade G1 Y1 Sunnan\n\n7) kreiger: Build G1 Slylandro\n\n8) Sunnan: Build Y1 Sunnan\n\n9) kreiger: Trade G1 Y1 Slylandro\n\n10) Sunnan: Discover Y1 Sunnan G3 Alonzo\n\n11) kreiger: Build Y2 Slylandro\n\n12) Sunnan: Build Y2 Sunnan\n\n13) kreiger: Move Y1 Slylandro Alonzo\n\n14) Sunnan: Discover Y1 Sunnan B3 Veronica\n\n15) kreiger: Discover Y2 Slylandro Y3 Orz\n\n16) Sunnan: Sacrifice G3 Sunnan\nBuild Y2 Veronica\nBuild Y3 Sunnan\nPass\n\n17) kreiger: Build G1 Slylandro\n\n18) Sunnan: Trade Y1 G1 Veronica\n\n19) kreiger: Trade G1 Y1 Slylandro\n\n20) Sunnan: Discover Y2 Sunnan B3 Knuth\n\n21) kreiger: Move Y2 Orz Slylandro\n\n22) Sunnan: Build Y3 Veronica\n\n23) kreiger: Trade Y1 R1 Slylandro\n\n24) Sunnan: Discover Y1 Alonzo G2 Compose\n\n25) kreiger: Build G1 Kreiger\n\n26) Sunnan: Build Y1 Compose\n\n27) kreiger: Move Y1 Alonzo Compose\n\n28) Sunnan: Move Y1 Compose Kreiger\n\n29) kreiger: Sacrifice R1 Slylandro\nAttack Y1 Compose\n\n30) Sunnan: Sacrifice Y2 Veronica\nMove Y2 Knuth Compose\nMove Y2 Compose Kreiger\n\n31) kreiger: Build Y2 Slylandro\n\n32) Sunnan: Trade Y3 B3 Veronica\n\n33) kreiger: Sacrifice G3 Kreiger\nBuild G2 Slylandro\nBuild G2 Slylandro\nBuild G3 Kreiger\n\n34) Sunnan: Sacrifice Y1 Kreiger\nMove G1 Veronica Slylandro\nCatastrophe Slylandro Green\n\n35) kreiger: Trade G1 R1 Kreiger\n\n36) Sunnan: Discover Y2 Kreiger R2 Earth\n\n37) kreiger: Build G1 Kreiger\n\n38) Sunnan: Trade Y3 G3 Sunnan\n\n39) kreiger: Sacrifice Y2 Slylandro\nMove G3 Kreiger Slylandro\nMove G3 Slylandro Veronica\n\n40) Sunnan: Sacrifice Y2 Earth\nMove B3 Veronica Compose\nMove B3 Compose Kreiger\n\n41) kreiger: Sacrifice Y2 Slylandro\nMove G3 Veronica Compose\nMove G3 Compose Kreiger\n\n42) Sunnan: Discover B3 Kreiger R2 Zebedee\n\n43) kreiger: Discover Y1 Compose G3 Melnorme\n\n44) Sunnan: Build G1 Sunnan\n\n45) kreiger: Build Y1 Compose\n\n46) Sunnan: Trade G1 R1 Sunnan\n\n47) kreiger: Build Y2 Melnorme\n\n48) Sunnan: Trade B3 Y3 Zebedee\n\n\nHomeworlds Online (SDG# 9508)\nVariants: "Hard time"\nStarted: 2007.10.3, Ended: 2007.11.15\nParticipants: Kermit (S), nycavri (N)\nWinner: nycavri\n\n1) nycavri: Homeworld G3 Y2 B3\n\tnycavri: TaGG.\n\n2) Kermit: Homeworld Y1 B2 G3\n\n3) nycavri: Build B1 Nycavri\n\n4) Kermit: B G1 Kermit\n\n5) nycavri: Build B1 Nycavri\n\n6) Kermit: Build G1 Kermit\n\n7) nycavri: Discover B1 Nycavri Y1 Jb\n\n8) Kermit: Discover G1 Kermit B3 Beaudelaire\n\n9) nycavri: Discover B1 Jb Y3 Db\n\n10) Kermit: Trade G1 R1 Kermit\n\n11) nycavri: Trade B1 Y1 Nycavri\n\n12) Kermit: Move R1 Kermit Db\n\n13) nycavri: Move B1 Db Kermit\n\n14) Kermit: Sacrifice R1 Db\nAttack B1 Kermit\n\n15) nycavri: Build B1 Nycavri\n\n16) Kermit: Build G1 Beaudelaire\n\n17) nycavri: Trade B1 R1 Nycavri\n\n18) Kermit: Trade G1 R1 Beaudelaire\n\n19) nycavri: Build B1 Nycavri\n\n20) Kermit: Build G1 Kermit\n\n21) nycavri: Discover B1 Nycavri Y1 Indeep\n\n\nHomeworlds Online (SDG# 9503)\nVariants: "Unrated"\nStarted: 2007.10.4, Ended: 2008.2.22\nParticipants: Sunnan (S), kreiger (N)\nWinner: Sunnan\n\n1) kreiger: Homeworld R1 G3 B3\n\tSunnan: What's with all the unrated games? Why can't we play normally?\n\tkreiger: I don't want to be rated until i stop sucking.\n\n2) Sunnan: Homeworld Y1 B2 G3\n\n3) kreiger: Build B1 Kreiger\n\n4) Sunnan: Build G1 Sunnan\n\n5) kreiger: Build B1 Kreiger\n\n6) Sunnan: Discover G1 Sunnan G3 Orson\n\tSunnan: I think that's unfair.\n\n7) kreiger: Trade B1 Y1 Kreiger\n\n8) Sunnan: Build G1 Sunnan\n\n9) kreiger: Discover B1 Kreiger G2 Syreen\n\n10) Sunnan: Discover G1 Sunnan Y3 Thistlesun\n\n11) kreiger: Trade Y1 G1 Kreiger\n\n12) Sunnan: Build G2 Sunnan\n\n13) kreiger: Build G2 Kreiger\n\n14) Sunnan: Trade G2 Y2 Sunnan\n\n15) kreiger: Trade G1 Y1 Kreiger\n\n16) Sunnan: Build G1 Sunnan\n\n17) kreiger: Discover Y1 Kreiger G2 Arilou\n\n18) Sunnan: Discover G1 Thistlesun Y2 Farrah\n\n19) kreiger: Trade G2 Y2 Kreiger\n\n20) Sunnan: Build G2 Orson\n\n21) kreiger: Build B1 Syreen\n\n22) Sunnan: Sacrifice G1 Orson\nBuild G1 Farrah\n\n23) kreiger: Build Y1 Kreiger\n\n24) Sunnan: Sacrifice G2 Orson\nBuild G2 Farrah\nBuild G3 Sunnan\n\n25) kreiger: Build Y3 Arilou\n\n26) Sunnan: Discover Y2 Sunnan B3 Laura\n\n27) kreiger: Build Y3 Kreiger\n\n28) Sunnan: Discover G1 Sunnan Y3 Johnny\n\n29) kreiger: Move Y3 Kreiger Syreen\n\n30) Sunnan: Trade G3 R3 Sunnan\n\n31) kreiger: Trade B1 R1 Syreen\n\n32) Sunnan: Sacrifice G2 Farrah\nBuild G2 Sunnan\nBuild G3 Farrah\n\n\nHomeworlds Online (SDG# 9509)\nStarted: 2007.10.4, Ended: 2007.10.21\nParticipants: wyons (S), stoneaxe (N)\nWinner: wyons\n\n1) stoneaxe: Homeworld B2 Y3 G3\n\n2) wyons: Homeworld R1 B3 G3\n\tstoneaxe: Thanks for playing again! I need the practice! I learned an important lesson last game though.\n\n3) stoneaxe: Build G1 Stoneaxe\n\twyons: no worries, I'm learning too!\n\n4) wyons: Build G1 Wyons\n\n5) stoneaxe: Trade G1 Y1 Stoneaxe\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) stoneaxe: Discover G3 Stoneaxe Y1 Zpm\n\n8) wyons: Build Y2 Wyons\n\n9) stoneaxe: Build G1 Zpm\n\n10) wyons: Trade Y1 R1 Wyons\n\n11) stoneaxe: Build G1 Zpm\n\n12) wyons: Build G1 Wyons\n\n13) stoneaxe: Move G3 Zpm Stoneaxe\n\n14) wyons: Build G2 Wyons\n\n15) stoneaxe: Build G2 Stoneaxe\n\n16) wyons: Discover G2 Wyons Y2 Live Alley\n\n17) stoneaxe: Trade G2 R2 Stoneaxe\n\n18) wyons: Build G2 Live\n\n19) stoneaxe: Move G1 Zpm Live\n\n20) wyons: Move G2 Live Zpm\n\n21) stoneaxe: Build G2 Stoneaxe\n\n22) wyons: Sacrifice R1 Wyons\nAttack G1N Live\n\n23) stoneaxe: Build G3 Zpm\n\n24) wyons: Move G1 Live Zpm\nCatastrophe Zpm Green\n\n25) stoneaxe: Discover G2 Stoneaxe Y1 Kronos\n\n26) wyons: Trade G1 R1 Wyons\n\n27) stoneaxe: Build Y1 Stoneaxe\n\n28) wyons: Build Y2 Wyons\n\n29) stoneaxe: Trade Y1 B1 Stoneaxe\n\n30) wyons: Build G1 Wyons\n\n31) stoneaxe: Build G1 Stoneaxe\n\n32) wyons: Move Y2 Wyons Live\n\n33) stoneaxe: Move R2 Stoneaxe Kronos\n\n34) wyons: Sacrifice G3 Wyons\nBuild Y1 Wyons\nBuild Y3 Live\nBuild Y3 Wyons\n\n35) stoneaxe: Move G3 Stoneaxe Kronos\n\n36) wyons: Sacrifice Y2 Live\nMove Y3 Live Kronos\nMove Y3 Kronos Stoneaxe\n\n37) stoneaxe: Sacrifice B1 Stoneaxe\nTrade G2 Y2 Kronos\n\tstoneaxe: I moved a little too hastily. Probably doesn't matter, I sense my destruction is near.\r\n\n\n38) wyons: Trade Y3 R3 Stoneaxe\n\tstoneaxe: There, that seems like a better defense.\n\n39) stoneaxe: Sacrifice G3 Kronos\nBuild G1 Stoneaxe\nBuild R1 Kronos\nBuild R2 Kronos\n\tstoneaxe: well, maybe not. Okay, now what....\n\n40) wyons: Attack G1N Stoneaxe\n\n41) stoneaxe: Build Y3 Stoneaxe\n\n42) wyons: Attack Y3N Stoneaxe\n\tstoneaxe: You would just catastrophe me if I did that last move, but I think I need to do something drastic like that.\n\tstoneaxe: too late for it now I guess.\n\n43) stoneaxe: Move R2 Kronos Live\n\tstoneaxe: I suppose the lesson "never move the 3 pointer out of your HW" has to be learned somehow. That will teach me.\n\twyons: yes, I think that must be another one to me. But this match was tougher than the last and I am happy to play again if you wish... :)\n\twyons: no, I spoke too soon! I thought i could sacrifice my r3 ship and take over your three little ones, but of course, once it is sacrificed there isnt a ship in the sytem so the red cant operate..so the fight continues!!\n\n44) wyons: Sacrifice R3 Stoneaxe\nAttack G1N Stoneaxe\nAttack Y1N Stoneaxe\nAttack R2N Live\n\n\tstoneaxe: Sounds good, that will give me more practice anyways!\n\twyons: fine, just challenge me as you want. Thanks for the game. :)\r\n\n\nHomeworlds Online (SDG# 9515)\nVariants: "Unrated, Hard time"\nStarted: 2007.10.4, Ended: 2007.10.15\nParticipants: scottobear (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) scottobear: Homeworld R2 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) scottobear: Build G1 Scottobear\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) scottobear: Trade G3 Y3 Scottobear\n\n7) zoltar: Build G1 Zoltar\n\n8) scottobear: Build Y1 Scottobear\n\n9) zoltar: Discover G1 Zoltar B2 Blueberry\n\n10) scottobear: Build G1 Scottobear\n\n11) zoltar: Build G2 Blueberry\n\n12) scottobear: Discover G1 Scottobear B1 Thor\n\n13) zoltar: Trade G1 R1 Blueberry\n\n14) scottobear: Trade G1 R1 Thor\n\n15) zoltar: Build R2 Blueberry\n\n16) scottobear: Build G1 Scottobear\n\n17) zoltar: Trade R2 Y2 Blueberry\n\n18) scottobear: Move G1 Scottobear Thor\n\n19) zoltar: Move Y2 Blueberry Thor\n\n20) scottobear: Build R2 Thor\n\n21) zoltar: Sacrifice R1 Blueberry\nAttack R2 Thor\n\n22) scottobear: Trade Y3 R3 Scottobear\n\tscottobear: eek!\n\n23) zoltar: Sacrifice R2 Thor\nAttack R1 Thor\nAttack G1 Thor\n\n24) scottobear: Move R3 Scottobear Thor\n\n25) zoltar: Sacrifice G2 Blueberry\nBuild R1 Thor\nBuild R2 Thor\nCatastrophe Thor R\n\tzoltar: Very, very dangerous, and though I'm ahead a couple of small pieces, it doesn't warrant taking your 3-pip defender out of your homeworld. It's worth it to me, then, to sacrifice lots of stuff to blow up your battlestar, as we'll be left with a simplified position where I have a large defender and you don't.\r\n\r\nNow either I'll build fast and invade and win outright, or else, in the best case for you, I'll only build a huge lead while you scramble to defend your homeworld and get another 3-pip ship.\r\n\r\nIn sum, it's a cardinal sin in homeworlds to leave your homeworld without a 3-pip ship, unless you are threatening checkmate and your opponent has to respond. \n\n26) scottobear: Build Y1 Scottobear\n\tscottobear: ah, I see... maybe for home defense, I should've tried a r3 planet!\n\n27) zoltar: Build Y2 Thor\n\n28) scottobear: Move Y1 Scottobear Thor\n\tscottobear: move y1 thor\n\tscottobear: move y1 scottobear thor\n\n29) zoltar: Move Y2 Thor Scottobear\n\n30) scottobear: Build Y2 Scottobear\n\n31) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Scottobear\nCatastrophe Scottobear Y\n\n32) scottobear: Build G1 Scottobear\n\n33) zoltar: Move Y2 Thor Scottobear\n\tzoltar: Attack!!!\n\n34) scottobear: Discover Y1 Thor G2 Loki\n\n35) zoltar: Trade Y3 R3 Zoltar\n\n36) scottobear: Build G2 Scottobear\n\n37) zoltar: Sacrifice Y3 Zoltar\nMove Y2 Scottobear Thor\nMove G1 Thor Scottobear\nMove Y2 Thor Loki\nCatastrophe Scottobear G\n\n\nHomeworlds Online (SDG# 9497)\nVariants: "Unrated"\nStarted: 2007.10.4, Ended: 2007.11.18\nParticipants: kreiger (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) kreiger: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) kreiger: Build G1 Kreiger\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) kreiger: Build G1 Kreiger\n\n7) zoltar: Build Y1 Zoltar\n\n8) kreiger: Discover G1 Kreiger Y3 Shofixti\n\n9) zoltar: Build Y2 Zoltar\n\n10) kreiger: Discover G1 Kreiger Y3 Mycon\n\n11) zoltar: Discover Y1 Zoltar G2 Gonorrhea\n\n12) kreiger: Build G1 Kreiger\n\n13) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Gonorrhea\nBuild Y2 Gonorrhea\nBuild Y3 Zoltar\n\n14) kreiger: Sacrifice G3 Kreiger\nBuild G2 Mycon\nBuild G2 Shofixti\nBuild G3 Kreiger\n\n15) zoltar: Trade Y3 G3 Zoltar\n\n16) kreiger: Trade G3 Y3 Kreiger\n\n17) zoltar: Build G3 Zoltar\n\n18) kreiger: Build G3 Kreiger\n\n19) zoltar: Trade Y2 R2 Zoltar\n\n20) kreiger: Trade G1 R1 Kreiger\n\n21) zoltar: Move R2 Zoltar Gonorrhea\n\n22) kreiger: Build G1 Kreiger\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild R1 Gonorrhea\nBuild G3 Zoltar\n\n24) kreiger: Sacrifice Y3 Kreiger\nMove G1 Mycon Gonorrhea\nMove G1 Shofixti Gonorrhea\nMove G2 Shofixti Gonorrhea\nCatastrophe Gonorrhea Green\n\n25) zoltar: Discover G3 Zoltar B2 Bluehoohoo\n\n26) kreiger: Trade G1 B1 Kreiger\n\n27) zoltar: Build G1 Bluehoohoo\n\tzoltar: Yikes! \n\n28) kreiger: Build G1 Mycon\n\n29) zoltar: Trade G1 Y1 Bluehoohoo\n\n30) kreiger: Sacrifice B1 Kreiger\nTrade G2 Y2 Mycon\n\n31) zoltar: Discover Y2 Zoltar B2 Blooze\n\n32) kreiger: Move Y2 Mycon Blooze\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blooze\nBuild Y3 Bluehoohoo\nBuild Y3 Zoltar\n\n34) kreiger: Build R1 Kreiger\n\n35) zoltar: Trade Y3 R3 Bluehoohoo\n\n36) kreiger: Sacrifice G1 Mycon\nBuild Y3 Blooze\nCatastrophe Blooze Yellow\n\n37) zoltar: Build Y2 Bluehoohoo\n\n38) kreiger: Build G1 Kreiger\n\n39) zoltar: Build Y2 Bluehoohoo\n\n40) kreiger: Build R2 Kreiger\n\n41) zoltar: Build R2 Bluehoohoo\n\tzoltar: Battlestations!\n\n42) kreiger: Trade R2 Y2 Kreiger\n\n43) zoltar: Discover Y2 Bluehoohoo B3 Bluesbrothers\n\n44) kreiger: Discover R1 Kreiger B3 Spathi\n\n45) zoltar: Trade Y3 G3 Zoltar\n\n46) kreiger: Sacrifice G3 Kreiger\nBuild R2 Kreiger\nBuild R2 Kreiger\nBuild R3 Spathi\n\n47) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Bluesbrothers\nBuild Y3 Bluehoohoo\n\n48) kreiger: Build G1 Kreiger\n\n49) zoltar: Move R2 Bluehoohoo Bluesbrothers\n\n50) kreiger: Discover R2 Kreiger G3 Vux\n\n51) zoltar: Build R3 Bluehoohoo\n\n52) kreiger: Move Y2 Kreiger Spathi\n\n53) zoltar: Sacrifice Y2 Bluehoohoo\nMove R3 Bluehoohoo Vux\nDiscover Y1 Zoltar B2 Bloozebrotherz\n\n54) kreiger: Sacrifice G1 Kreiger\nBuild Y2 Spathi\n\n55) zoltar: Attack R2 Vux\n\n\tzoltar: Sure, and we can start another game when you get back, if you wish.\n\nHomeworlds Online (SDG# 9495)\nStarted: 2007.10.4, Ended: 2007.11.5\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) zoltar: Build G1 Zoltar\n\n\nHomeworlds Online (SDG# 9462)\nVariants: "Hard time"\nStarted: 2007.10.4, Ended: 2007.10.7\nParticipants: SpaceHobo (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 9519)\nVariants: "Hard time"\nStarted: 2007.10.6, Ended: 2007.10.9\nParticipants: SpaceHobo (S), Charlemagne (N)\nWinner: Charlemagne\n\n1) Charlemagne: Homeworld G2 B1 Y3\n\n\tCharlemagne: Enjoy\n\nHomeworlds Online (SDG# 9518)\nStarted: 2007.10.6, Ended: 2007.10.12\nParticipants: Metroidfans (S), MikeYarrum (N)\nWinner: Metroidfans\n\n\nHomeworlds Online (SDG# 9466)\nVariants: "Hard time"\nStarted: 2007.10.9, Ended: 2007.10.15\nParticipants: TwoShort (S), stoneaxe (N)\nWinner: TwoShort\n\n1) stoneaxe: Homeworld Y1 B3 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) stoneaxe: Build G1 Stoneaxe\n\n4) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy.\n\n5) stoneaxe: Trade G1 Y1 Stoneaxe\n\tstoneaxe: Hi There. I see you are the current highest ranking Homeworlds expert. I'm a newbie, so feel free to impart some galactic wisdom! Just getting into this game... there is a lot of strategy to it!!!\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) stoneaxe: Build G1 Stoneaxe\n\tTwoShort: Hmmm, there is definitely a lot of strategy to it; as far as galactic wisdom: In the early game, don't get locked out of a color and don't let me get more 3 pointers than you.\n\n8) TwoShort: Build Y2 Twoshort\n\n9) stoneaxe: Build Y2 Stoneaxe\n\n10) TwoShort: Build G1 Twoshort\n\tstoneaxe: I need to learn better when to sacrifice ships to do something else.\n\tTwoShort: Sacrifices are somewhat rare; you might sacrifice a 1 or 2 if you need to use that color in different system and it's just worth the cost. If you sacrifice a g3, you generally want to be growing a new 3 pointer as part of the action; the most common sacrifice is a g3 that lets you regrow the very same g3 (plus two other things)- we call that the factory. Sacrificing a yellow 3 should mean you're going for the kill.\n\n11) stoneaxe: Trade Y2 B2 Stoneaxe\n\n12) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n13) stoneaxe: Build B1 Stoneaxe\n\n14) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n15) stoneaxe: Discover G1 Stoneaxe G2 Bespin\n\n16) TwoShort: Build Y2 Grogar\n\tTwoShort: As long as I'm throwing around advice, that's a bit of an odd move; you won't really be able to do much with that ship or star in the future. I do essentially that move from similar position, but the point is to suck up the g2 in order to affect who gets a chance to grow 3 point greens, and that doesn't currently apply. It might have been better to move to a different color, so you'd have more options, or to move out a y or b, neither of which can grow further in your homeworld without danger.\n\n17) stoneaxe: Move B1 Stoneaxe Bespin\n\tstoneaxe: I see. Thank you! Keep the advice coming! \n\n18) TwoShort: Discover Y2 Grogar B2 Bluestar\n\n19) stoneaxe: Build Y2 Stoneaxe\n\tstoneaxe: I feel like if I MOVE pieces, then i'm not building pieces, so I'm probly falling behind. Well, I should've planned it better. \n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Bluestar\nBuild Y3 Twoshort\nBuild G1 Yolonda\n\tTwoShort: I know the feeling, but I think the key realization for the early game is that it doesn't really matter too much if you fall behind in 1s & 2s, the key is the timing on building the 3 points. So you want to have a safe place to build any color that's getting close, and to set up your opponent to build the last 2. Alternatively, you can set up several places to safely build a particular color, so that you can sacrifice a g3 to build the last 2 pointer of that color yourself and immediately plow into building the 3s.\n\n21) stoneaxe: Move Y2 Stoneaxe Bluestar\n\tTwoShort: Hmm, I'm not sure if you realize that lets me move my y2 in from BlueStar to blow up half your homeworld, or if you just don't se a better option (which there may not be) In any case, you'll get away with it for a turn at least, because I think the grow more firmly ensures my victory :)\n\n22) TwoShort: Trade Y3 R3 Bluestar\n\tstoneaxe: I did not realize that, but I see how now... you would've moved in and caused catastrophe on yellow.\n\n23) stoneaxe: Trade B2 R2 Stoneaxe\n\tstoneaxe: Its probably dumb, but I will threaten to do the same thing in BlueStar. Should I have done something else? You will probably sac and still catastrophe Y in my homeworld, right?\n\tTwoShort: You didn't have great options, because I'm winning :) You might have moved the y2 out to a new star, but I'm saying that knowing what I'm going to do this turn. It's easy to think an extra move ahead if you wait a turn to do it :) I could still blow up half your homeworld, but it would be expensive, and I have no immediate threat vs the other half. By flipping my y3 to red, you must spend next turn turning something red or lose, so I can take your y2 the turn after that, then you still won't be able to safely grow the y3, so I'll probably get that back too.\n\n24) TwoShort: Attack Y2N Bluestar\n\n25) stoneaxe: Build G2 Stoneaxe\n\n26) TwoShort: Move G1 Yolonda Bluestar\n\n27) stoneaxe: Sacrifice Y1 Stoneaxe\nMove G1 Bespin Yolonda\n\n28) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yolonda Bluestar\nMove G1 Bluestar Stoneaxe\nMove G1 Bluestar Stoneaxe\nCatastrophe Stoneaxe Green\n\n29) stoneaxe: Build B1 Bespin\n\n30) TwoShort: Move R3 Bluestar Stoneaxe\n\n31) stoneaxe: Move G1 Yolonda Twoshort\n\n32) TwoShort: Attack R2N Stoneaxe\n\n\tstoneaxe: I sense my destruction is near! (didn't see any way out) Good game! I feel like I learned a lot in this game. Also read some of your Archive games. Thanks for all the tips. Can you play another?\n\tTwoShort: Thanks for the game!\n\tTwoShort: I'll be happy to play another...\n\nHomeworlds Online (SDG# 9517)\nVariants: "Unrated, Hard time"\nStarted: 2007.10.9, Ended: 2007.11.4\nParticipants: stoneaxe (S), scottobear (N)\nWinner: stoneaxe\n\n1) scottobear: Homeworld R3 B2 G3\n\n2) stoneaxe: Homeworld Y1 B3 G3\n\n3) scottobear: Build G1 Scottobear\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) scottobear: Trade G1 Y1 Scottobear\n\n6) stoneaxe: Build G1 Stoneaxe\n\n7) scottobear: Discover Y1 Scottobear B1 Hoth\n\n8) stoneaxe: Discover G1 Stoneaxe B2 Romulus\n\n9) scottobear: Trade Y1 G1 Hoth\n\n10) stoneaxe: Build G2 Romulus\n\n11) scottobear: Build G2 Hoth\n\n12) stoneaxe: Discover G1 Stoneaxe Y2 Vulcan\n\tstoneaxe: Hi again, I'm new to this game, but this is about my 4th or 5th game. I'm trying to learn more about it. Good luck!\n\n13) scottobear: Build G2 Scottobear\n\n14) stoneaxe: Build G3 Vulcan\n\n15) scottobear: Trade G3 Y3 Scottobear\n\n16) stoneaxe: Build G3 Stoneaxe\n\n17) scottobear: Trade G1 Y1 Hoth\n\n18) stoneaxe: Trade G3 R3 Stoneaxe\n\n19) scottobear: Build Y1 Hoth\n\n20) stoneaxe: Trade G2 Y2 Romulus\n\n21) scottobear: Trade Y1 G1 Hoth\n\n22) stoneaxe: Build R1 Stoneaxe\n\n23) scottobear: Trade G2 R2 Hoth\n\n24) stoneaxe: Move G3 Vulcan Hoth\n\n25) scottobear: Move R2 Hoth Romulus\n\n26) stoneaxe: Sacrifice R1 Stoneaxe\nAttack R2 Romulus\n\n27) scottobear: Build G2 Hoth\n\n28) stoneaxe: Sacrifice G3 Hoth\nBuild G2 Vulcan\nBuild G3 Romulus\nBuild G3 Stoneaxe\n\tstoneaxe: Sorry, I had to do it! :-) Its happened to me before too, the sacrifice of R1 in my homeworld let me attack in any other world where I control a big enough ship.\n\tscottobear: no worries! eek!\n\n29) scottobear: Build Y1 Scottobear\n\n30) stoneaxe: Move R2 Romulus Hoth\n\tscottobear: nice home fleet!\n\n31) scottobear: Build Y2 Hoth\n\n32) stoneaxe: Build Y3 Romulus\n\tstoneaxe: Thanks! Yours is doing good too. We have another good match going here. Which of these games do you like the best?\n\tscottobear: I like homeworlds, but haven't mastered sacrifice strategy yet. martian chess is pretty sold. how about you?\n\n33) scottobear: Build Y3 Scottobear\n\tstoneaxe: Funny, I told someone the same thing about sacrifices a couple weeks ago. I like both games, but I currently think Homeworlds is more interesting.\n\n34) stoneaxe: Attack Y2 Hoth\n\n35) scottobear: Move G2 Hoth Romulus\n\n36) stoneaxe: Sacrifice Y2 Romulus\nMove G3 Romulus Hoth\nMove Y3 Romulus Hoth\n\n37) scottobear: Trade Y3 B3 Scottobear\n\n38) stoneaxe: Sacrifice Y2 Hoth\nMove Y3 Hoth Scottobear\nMove G3 Hoth Scottobear\n\n39) scottobear: Attack G3 Scottobear\n\n40) stoneaxe: Sacrifice R3 Stoneaxe\nAttack G3N Scottobear\nAttack B3N Scottobear\nAttack Y3N Scottobear\n\n\tscottobear: holy cow!!\n\tscottobear: good game!!\n\nHomeworlds Online (SDG# 9557)\nVariants: "Hard time"\nStarted: 2007.10.11, Ended: 2007.10.31\nParticipants: sordros (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld R3 B2 G3\n\n2) sordros: Homeworld B1 Y2 G3\n\twyons: Hi there! Enjoy the game.\n\n3) wyons: Build G1 Wyons\n\tsordros: Hi there, have a good game!\n\n4) sordros: Build G1 Sordros\n\n5) wyons: Trade G1 Y1 Wyons\n\n6) sordros: Discover G1 Sordros Y3 Flavega\n\n7) wyons: Build G1 Wyons\n\n8) sordros: Build G1 Sordros\n\n9) wyons: Build G2 Wyons\n\n10) sordros: Build G2 Flavega\n\n11) wyons: Trade G1 R1 Wyons\n\n12) sordros: Trade G1 Y1 Sordros\n\n13) wyons: Discover G2 Wyons B1 Sa-fire\n\n14) sordros: Build G1 Sordros\n\n15) wyons: Build Y1 Wyons\n\n16) sordros: Build Y2 Sordros\n\n17) wyons: Build Y2 Wyons\n\n18) sordros: Trade Y1 R1 Sordros\n\n19) wyons: Trade Y1 B1 Wyons\n\n20) sordros: Build Y1 Sordros\n\n21) wyons: Build B2 Wyons\n\n22) sordros: Trade Y2 B2 Sordros\n\n23) wyons: Trade B2 G2 Wyons\n\n24) sordros: Discover G1 Flavega Y2 Flava\n\n25) wyons: Sacrifice G3 Wyons\nBuild G1 Wyons\nBuild G3 Wyons\nBuild G3 Sa-fire\n\n26) sordros: Discover G1 Sordros Y3 Amarella\n\n27) wyons: Sacrifice Y1 Wyons\nMove G3 Sa-fire Flavega\n\n28) sordros: Sacrifice G2 Flavega\nBuild G2 Amarella\nBuild Y1 Sordros\n\n29) wyons: Sacrifice G3 Wyons\nBuild Y1 Wyons\nBuild G3 Sa-fire\nBuild Y3 Wyons\n\n30) sordros: Sacrifice G2 Amarella\nBuild G2 Sordros\nBuild B2 Sordros\n\n31) wyons: Sacrifice G2 Sa-fire\nBuild G2 Flavega\nBuild B3 Wyons\n\n32) sordros: Move B2 Sordros Amarella\n\n33) wyons: Sacrifice Y3 Wyons\nMove Y1 Wyons Sa-fire\nMove Y1 Sa-fire Flavega\nMove Y1 Flavega Sordros\nCatastrophe Sordros Yellow\n\n34) sordros: Trade G2 Y2 Sordros\n\n\tsordros: Thanks for the game.\n\nHomeworlds Online (SDG# 9556)\nStarted: 2007.10.12, Ended: 2007.10.29\nParticipants: Charlemagne (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld R3 B2 G3\n\tCharlemagne: Enjoy\n\twyons: and U\n\n2) Charlemagne: Homeworld B2 Y1 G3\n\tCharlemagne: Ooh you are experiementing with an aggressive one, then, good stuff\n\n3) wyons: Build G1 Wyons\n\twyons: actually, it is more about wanting greater freedom to create yellow and green (if one of these colours are the stars then that restricts building capacity)... erm, thats my current theory anyway though I am finding the tactics of this game very elusive.\n\n4) Charlemagne: Build G1 Charlemagne\n\tCharlemagne: ok, I see.\r\nI love the green expansion strategy idea which I am now shamelessly stealing from you :)\n\n5) wyons: Trade G1 Y1 Wyons\n\twyons: as I stole from others..\n\n6) Charlemagne: Trade G1 Y1 Charlemagne\n\n7) wyons: Build Y2 Wyons\n\n8) Charlemagne: Build Y2 Charlemagne\n\tCharlemagne: nice\n\n9) wyons: Build Y2 Wyons\n\n10) Charlemagne: Discover Y2 Charlemagne G3 Blogspot\n\n11) wyons: Trade Y1 R1 Wyons\n\n12) Charlemagne: Sacrifice G3 Charlemagne\nBuild Y1 Blogspot\nBuild Y3 Blogspot\nBuild Y3 Charlemagne\n\n13) wyons: Sacrifice Y2 Wyons\nDiscover Y2 Wyons R1 Ephemeral\nMove Y2 Ephemeral Blogspot\nCatastrophe Blogspot Yellow\n\n14) Charlemagne: Trade Y3 G3 Charlemagne\n\twyons: ooh no, I couldnt allow that.\n\n15) wyons: Trade R1 Y1 Wyons\n\tCharlemagne: ah well, back to square one then\n\n16) Charlemagne: Build Y2 Charlemagne\n\twyons: similar except you have sente this time...\n\n17) wyons: Build Y2 Wyons\n\tCharlemagne: hmmmmmm....\r\nOh, by the way, I won't be able to play games in person on Friday this week... diary filling up with work type things.... Ian x\n\n18) Charlemagne: Discover Y2 Charlemagne G3 Puttyx\n\n19) wyons: Discover Y2 Wyons G1 Emma-rald\n\n20) Charlemagne: Discover Y1 Charlemagne R3 Grundon\n\n21) wyons: Build Y2 Emma-rald\n\n22) Charlemagne: Build Y3 Puttyx\n\n23) wyons: Build Y3 Wyons\n\n24) Charlemagne: Move Y2 Puttyx Emma-rald\n\n25) wyons: Trade Y1 R1 Wyons\n\n26) Charlemagne: Build G1 Charlemagne\n\twyons: ooooh I like this game- so many different possibilities to try and hold...\n\n27) wyons: Build G1 Wyons\n\n28) Charlemagne: Move G1 Charlemagne Grundon\n\n29) wyons: Move Y2 Emma-rald Grundon\n\n30) Charlemagne: Build G2 Charlemagne\n\n31) wyons: Attack G1S Grundon\n\n32) Charlemagne: Trade G2 R2 Charlemagne\n\n33) wyons: Sacrifice R1 Wyons\nAttack Y2S Emma-rald\n\n34) Charlemagne: Build G2 Charlemagne\n\n35) wyons: Build G2 Grundon\n\n36) Charlemagne: Build R1 Charlemagne\n\n37) wyons: Sacrifice Y2 Emma-rald\nMove G2 Grundon Charlemagne\nMove G1 Grundon Charlemagne\nCatastrophe Charlemagne Green\n\n\twyons: --oh?! I didnt expect you to resign then... Thanks for the game and yes - see you on Friday.\n\nHomeworlds Online (SDG# 9523)\nStarted: 2007.10.12, Ended: 2007.11.2\nParticipants: ts52 (S), sordros (N)\nWinner: ts52\n\n1) sordros: Homeworld B1 Y2 G3\n\tsordros: Hi there! Have fun\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) sordros: Build G1 Sordros\n\n4) ts52: Build G1 Ts52\n\tts52: Thanks. You too.\n\n5) sordros: Discover G1 Sordros Y3 Amarega\n\n6) ts52: Trade G1 B1 Ts52\n\n7) sordros: Build G1 Sordros\n\n8) ts52: Build B1 Ts52\n\n9) sordros: Trade G1 Y1 Sordros\n\n10) ts52: Discover B1 Ts52 G2 Oscar\n\n11) sordros: Build G1 Sordros\n\n12) ts52: Build B2 Oscar\n\n13) sordros: Build Y1 Sordros\n\n14) ts52: Trade B2 Y2 Oscar\n\n15) sordros: Trade Y1 R1 Sordros\n\n16) ts52: Trade B1 R1 Ts52\n\n17) sordros: Trade G1 B1 Sordros\n\n18) ts52: Build B2 Oscar\n\n19) sordros: Build B2 Sordros\n\n20) ts52: Move B2 Oscar Amarega\n\n21) sordros: Discover B2 Sordros G3 Duamarega\n\n22) ts52: Trade B2 R2 Amarega\n\n23) sordros: Discover G1 Amarega B2 Blua\n\n24) ts52: Build G1 Ts52\n\n25) sordros: Sacrifice G3 Sordros\nBuild B2 Duamarega\nBuild B3 Sordros\nBuild B3 Duamarega\n\n26) ts52: Sacrifice Y2 Oscar\nMove B1 Oscar Amarega\nMove B1 Amarega Sordros\nCatastrophe Sordros Blue\n\n27) sordros: Sacrifice B2 Duamarega\nTrade B3 R3 Duamarega\nTrade B2 Y2 Duamarega\n\n28) ts52: Move R2 Amarega Sordros\n\n\tsordros: GG\n\nHomeworlds Online (SDG# 9467)\nVariants: "Hard time"\nStarted: 2007.10.13, Ended: 2008.1.22\nParticipants: stoneaxe (S), jeep (N)\nWinner: stoneaxe\n\n1) jeep: Homeworld R1 B2 G3\n\n2) stoneaxe: Homeworld Y2 B3 G3\n\n3) jeep: Build G1 Jeep\n\tstoneaxe: Hello and thanks for playing. I'm pretty new to this game, so feel free to comment on my moves! \n\tjeep: *laugh* with as badly as I've been sucking lately, you should get a second opinion on anything I tell you. ;)\r\n\r\nThanks for playing. I just found out that I'm heading to Brazil in a couple weeks. There might be a slight lag then.\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) stoneaxe: Trade G1 Y1 Stoneaxe\n\n7) jeep: Build G1 Jeep\n\n8) stoneaxe: Build G1 Stoneaxe\n\n9) jeep: Trade G3 Y3 Jeep\n\n10) stoneaxe: Build Y1 Stoneaxe\n\n11) jeep: Build Y2 Jeep\n\n12) stoneaxe: Discover Y1 Stoneaxe G1 Gruno\n\n13) jeep: Build G2 Jeep\n\n14) stoneaxe: Sacrifice G3 Stoneaxe\nBuild Y2 Gruno\nBuild Y3 Gruno\nBuild Y3 Stoneaxe\n\n15) jeep: Sacrifice Y2 Jeep\nDiscover Y1 Jeep B3 Temp\nMove Y1 Temp Gruno\nCatastrophe Gruno Yellow\n\n16) stoneaxe: Discover Y1 Stoneaxe G1 Tiz\n\n17) jeep: Discover G2 Jeep Y3 Submarine\n\n18) stoneaxe: Build G2 Stoneaxe\n\n19) jeep: Build G2 Jeep\n\n20) stoneaxe: Trade G1 B1 Stoneaxe\n\n21) jeep: Trade G2 Y2 Jeep\n\tstoneaxe: Deep strategy in this game.... Homeworlds is such a cool game!\n\n22) stoneaxe: Build B1 Stoneaxe\n\n23) jeep: Trade Y2 R2 Jeep\n\n24) stoneaxe: Trade B1 R1 Stoneaxe\n\n25) jeep: Build Y1 Jeep\n\n26) stoneaxe: Build B1 Stoneaxe\n\n27) jeep: Trade Y1 B1 Jeep\n\n28) stoneaxe: Trade Y3 G3 Stoneaxe\n\n29) jeep: Build B2 Jeep\n\n30) stoneaxe: Move B1 Stoneaxe Tiz\n\n31) jeep: Move B1 Jeep Submarine\n\n32) stoneaxe: Trade B1 R1 Tiz\n\n33) jeep: Move R2 Jeep Submarine\n\tjeep: The stash image is gone for me... do you see it?\n\tstoneaxe: The image is gone for me too. I noticed it disappeared after my last move (the trade).\n\tstoneaxe: feel free to make a move and then undo it to see if that fixes it... I could try to undo my last one too. Just a thought...\n\tjeep: I'll be traveling tomorrow. Please don't unfreeze it tomorrow. ;) When I get to my destination on Monday, I'll see about setting up the game so I know the stash contents without having to figure it out repeatedly.\n\n34) stoneaxe: Build R2 Tiz\n\n35) jeep: Build Y1 Jeep\n\tstoneaxe: Welcome back! Glad to see that our game is fixed.\n\n36) stoneaxe: Build R2 Stoneaxe\n\n37) jeep: Build R3 Submarine\n\n38) stoneaxe: Build R3 Stoneaxe\n\n39) jeep: Sacrifice Y3 Jeep\nMove R3 Submarine Jeep\nMove R2 Submarine Tiz\nMove R2 Tiz Stoneaxe\nCatastrophe Stoneaxe Red\n\n40) stoneaxe: Sacrifice B1 Stoneaxe\nTrade R1 G1 Tiz\n\n41) jeep: Trade B2 Y2 Jeep\n\tstoneaxe: Hmmm. I think I might have moved too fast there, but we'll see how this goes.\n\n42) stoneaxe: Move R2 Tiz Submarine\n\n\tjeep: Gah! Sorry about that. Life got in the way. Sick child. :(\n\tstoneaxe: No sweat. I know how it is. Hope everyone is feeling better. I'm sure we'll play again sometime; take care.\n\nHomeworlds Online (SDG# 9549)\nVariants: "Hard time"\nStarted: 2007.10.15, Ended: 2007.11.15\nParticipants: stoneaxe (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B3 R1 G3\n\n2) stoneaxe: Homeworld Y3 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) stoneaxe: Trade G1 Y1 Stoneaxe\n\n7) TwoShort: Build G1 Twoshort\n\n8) stoneaxe: Build G1 Stoneaxe\n\n9) TwoShort: Trade G1 B1 Twoshort\n\n10) stoneaxe: Build G1 Stoneaxe\n\n11) TwoShort: Build G1 Twoshort\n\n12) stoneaxe: Trade G1 R1 Stoneaxe\n\n13) TwoShort: Build G1 Twoshort\n\n14) stoneaxe: Trade G1 B1 Stoneaxe\n\n15) TwoShort: Discover G1 Twoshort Y2 Yellonia\n\tstoneaxe: This move was very stressful! There are so many options to consider, and all of them have their advantages... Not sure how to choose, so I just went with this one!\n\tTwoShort: Well, you avoided taking the g2 bait :)\n\n16) stoneaxe: Discover Y1 Stoneaxe G1 Grax\n\n17) TwoShort: Build G2 Yellonia\n\n18) stoneaxe: Build R1 Stoneaxe\n\n19) TwoShort: Discover B1 Twoshort G2 Grogar\n\n20) stoneaxe: Build R2 Stoneaxe\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yellonia\n\n22) stoneaxe: Move R2 Stoneaxe Grax\n\n23) TwoShort: Trade G2 R2 Twoshort\n\n24) stoneaxe: Sacrifice G3 Stoneaxe\nBuild R2 Grax\nBuild R3 Stoneaxe\nBuild R3 Grax\n\n25) TwoShort: Move R2 Twoshort Yellonia\n\n26) stoneaxe: Discover R2 Grax R3 Rez\n\n27) TwoShort: Discover G2 Yellonia B1 Bluzon\n\n28) stoneaxe: Move R3 Stoneaxe Bluzon\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yellonia\n\n30) stoneaxe: Attack G2N Bluzon\n\n31) TwoShort: Discover G3 Yellonia Y1 Yolonda\n\n32) stoneaxe: Move R3 Grax Stoneaxe\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B2 Grogar\nBuild Y2 Twoshort\n\n34) stoneaxe: Move Y1 Grax Rez\n\n35) TwoShort: Sacrifice Y2 Twoshort\nMove R2 Yellonia Grax\nMove R2 Grax Stoneaxe\nCatastrophe Stoneaxe Red\n\n36) stoneaxe: Move Y1 Rez Bluzon\n\n37) TwoShort: Trade B2 R2 Grogar\n\n38) stoneaxe: Move R3 Bluzon Stoneaxe\n\n39) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild B2 Grogar\nBuild G3 Twoshort\n\n40) stoneaxe: Move G2 Bluzon Stoneaxe\n\n41) TwoShort: Move Y1 Twoshort Grogar\n\tstoneaxe: Wow, G3's are really powerful when all the green is gone!!! Sac and re-build!!!\n\tTwoShort: We call that "the Factory", and yeah, it's pretty huge. \n\n42) stoneaxe: Sacrifice G2 Stoneaxe\nBuild Y2 Bluzon\nBuild Y3 Bluzon\n\n43) TwoShort: Move Y1 Grogar Bluzon\nCatastrophe Bluzon Yellow\n\tstoneaxe: That was a terrible move, but what else was I supposed to do...\n\tTwoShort: Not that :)\n\n44) stoneaxe: Move B1 Stoneaxe Grax\n\tTwoShort: But seriously, you're pretty doomed in any case. The Factory domination is pretty unstoppable. Unless you could force me to let you get your own g3, I can just keep sucking up all the pieces, leaving you with fewer and fewer options.\n\n45) TwoShort: Move G3 Yellonia Grax\n\n46) stoneaxe: Build B1 Grax\n\n47) TwoShort: Sacrifice R2 Grogar\nAttack R2 Grax\nAttack B1 Grax\n\tstoneaxe: Yeah, I should just give up on this one and resign.\n\n48) stoneaxe: Build B2 Grax\n\n49) TwoShort: Sacrifice R2 Grax\nAttack B2S Grax\nAttack B1S Grax\n\n50) stoneaxe: Pass\n\n51) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Grogar\nBuild G2 Yellonia\nBuild G3 Twoshort\n\n52) stoneaxe: Sacrifice R2 Rez\nPass\nPass\n\n53) TwoShort: Trade B3 R3 Grogar\n\tstoneaxe: Aha, take that!\n\n54) stoneaxe: Pass\n\tTwoShort: Ack! Now what!\n\n55) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Grax Stoneaxe\nMove G3 Yolonda Stoneaxe\n\n56) stoneaxe: Attack G3N Stoneaxe\n\n57) TwoShort: Sacrifice R3 Grogar\nAttack G3S Stoneaxe\nAttack R3S Stoneaxe\nPass\n\tTwoShort: Thanks for the game!\n\n\nHomeworlds Online (SDG# 9608)\nVariants: "Unrated, Hard time"\nStarted: 2007.10.17, Ended: 2007.11.26\nParticipants: stoneaxe (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B3 R1 G3\n\n2) stoneaxe: Homeworld Y3 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) stoneaxe: Trade G1 R1 Stoneaxe\n\n7) mneme: Build Y1 Mneme\n\n8) stoneaxe: Build R1 Stoneaxe\n\n9) mneme: Build Y1 Mneme\n\n10) stoneaxe: Build R2 Stoneaxe\n\n11) mneme: Discover Y1 Mneme G2 Apple\n\n12) stoneaxe: Discover R1 Stoneaxe G1 Zed\n\n13) mneme: Build Y2 Mneme\n\tstoneaxe: Was that a fatal error? I know I need to build some yellow, but i seemed to be playing right into your 'sac G3 and build all the rest of yellow trap', so I went with this move instead.\n\tmneme: Not sure -- we're both playing serious freeze strategies, which keeps things interesting.\n\n14) stoneaxe: Trade R2 Y2 Stoneaxe\n\n15) mneme: Trade Y2 R2 Mneme\n\n16) stoneaxe: Build R2 Stoneaxe\n\n17) mneme: Move R2 Mneme Apple\n\n18) stoneaxe: Move R2 Stoneaxe Zed\n\n19) mneme: Build Y2 Apple\n\n20) stoneaxe: Sacrifice G3 Stoneaxe\nBuild R2 Zed\nBuild R3 Stoneaxe\nBuild R3 Stoneaxe\n\n21) mneme: Sacrifice Y2 Apple\nMove R2 Apple Zed\nMove R2 Zed Stoneaxe\nCatastrophe Stoneaxe R\n\n22) stoneaxe: Trade Y2 G2 Stoneaxe\n\tmneme: that...might have been a mistake.\r\n\n\n23) mneme: Build Y2 Mneme\n\n24) stoneaxe: Build G1 Stoneaxe\n\n25) mneme: Discover Y2 Mneme G2 Gambit\n\tstoneaxe: Crap. Where did my 3 pointer go!?! :-) Nice catastrophe.\n\n26) stoneaxe: Discover G1 Stoneaxe G1 Gamma\n\n27) mneme: Discover Y1 Apple G3 Heart\n\tstoneaxe: I need to get the G3 back to have any glimmer of hope. This might give you 2 3's, but at least I get one 3. Or, if you sac and go for all the yellows, then I get some choices... I think. \n\tmneme: on the contrary, my best dodge is to keep you out of 3s. \n\n28) stoneaxe: Sacrifice G1 Gamma\nBuild G1 Stoneaxe\n\tmneme: I'm pretty sure I've failed to leave you any options here. Not accidentally.\n\n29) mneme: Sacrifice G3 Mneme\nBuild Y2 Gambit\nBuild Y2 Heart\nBuild Y3 Mneme\n\n30) stoneaxe: Trade G1 B1 Stoneaxe\n\n31) mneme: Build Y3 Gambit\n\tstoneaxe: Hmmm no Yellow for me. Thats spells certain defeat, doesn't it.\n\n32) stoneaxe: Build B1 Stoneaxe\n\tmneme: that was pretty much the case when you got both of your larges blown, but yeah, now I get to monopolize y -and- churn out larges -and- be the only one who can move ships around or make catastrophes. Not so good for you.\n\n33) mneme: Trade Y3 G3 Mneme\n\n34) stoneaxe: Move B1 Stoneaxe Zed\n\n35) mneme: Build Y3 Mneme\n\n36) stoneaxe: Build B1 Zed\n\n37) mneme: Trade Y3 R3 Mneme\n\n38) stoneaxe: Build B2 Stoneaxe\n\n39) mneme: Sacrifice Y2 Gambit\nMove Y3 Gambit Zed\nMove Y3 Zed Stoneaxe\n\n40) stoneaxe: Build B2 Stoneaxe\n\tmneme: It's time...\n\n41) mneme: Sacrifice R3 Mneme\nAttack B2 Stoneaxe\nAttack G2 Stoneaxe\nAttack B2 Stoneaxe\nCatastrophe Stoneaxe B\n\tmneme: good game!\n\n\nHomeworlds Online (SDG# 9602)\nVariants: "Hard time"\nStarted: 2007.10.17, Ended: 2008.3.11\nParticipants: jeep (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) jeep: Homeworld G1 B3 Y3\n\n3) TwoShort: Build G1 Twoshort\n\tjeep: You're probably too good for me to make this work, but it's been working out for me irl.\n\n4) jeep: Build Y1 Jeep\n\n5) TwoShort: Build G1 Twoshort\n\n6) jeep: Build Y1 Jeep\n\tjeep: D'oh. I should have had my homeworld be b1 g3... I should have remembered that.\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) jeep: Trade Y1 G1 Jeep\n\n9) TwoShort: Discover G1 Twoshort Y2 Yellonia\n\n10) jeep: Move G1 Jeep Yellonia\n\n11) TwoShort: Build G2 Twoshort\n\n12) jeep: Trade Y1 R1 Jeep\n\tjeep: Gah, what was I thinking.\n\n13) TwoShort: Build G2 Yellonia\n\n14) jeep: Build R1 Jeep\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yellonia\nBuild G3 Twoshort\nBuild G3 Twoshort\nCatastrophe Yellonia Green\n\n16) jeep: Build R2 Jeep\n\n17) TwoShort: Trade G2 R2 Twoshort\n\n18) jeep: Trade R2 Y2 Jeep\n\n19) TwoShort: Trade G3 Y3 Twoshort\n\n20) jeep: Build R2 Jeep\n\n21) TwoShort: Discover R2 Twoshort G2 Grogar\n\n22) jeep: Trade R2 G2 Jeep\n\n23) TwoShort: Build G1 Twoshort\n\n24) jeep: Discover R1 Jeep G2 Thumb\n\n25) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n26) jeep: Build R2 Thumb\n\n27) TwoShort: Build G1 Twoshort\n\n28) jeep: Build R2 Jeep\n\n29) TwoShort: Move Y3 Twoshort Thumb\n\n30) jeep: Build R3 Thumb\n\n31) TwoShort: Sacrifice R2 Grogar\nAttack R3S Thumb\nAttack R2S Thumb\n\n32) jeep: Sacrifice G2 Jeep\nBuild R2 Thumb\nBuild R3 Jeep\nCatastrophe Thumb Red\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n34) jeep: Move R3 Jeep Yolonda\n\tjeep: I'm nervously and anxiously waiting to see what I missed there...\n\tTwoShort: You missed the possibility that I screwed up when I moved into thumb in the first place :)\r\n\r\nOut of curiosity, do you see the stash image above? It's not showing up for me.\n\n35) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\n\tjeep: Nope, stash is gone. :(\n\tTwoShort: The stash is back...\n\n36) jeep: Attack G2N Yolonda\n\tjeep: Thanks, I haven't been checking.\n\n37) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\nBuild Y1 Thumb\nCatastrophe Yolonda Green\n\n38) jeep: Trade R2 G2 Jeep\n\n39) TwoShort: Sacrifice Y3 Thumb\nMove Y1 Twoshort Thumb\nMove Y1 Thumb Jeep\nMove Y1 Thumb Jeep\nCatastrophe Jeep Yellow\n\n40) jeep: Trade G2 Y2 Jeep\n\n41) TwoShort: Trade G3 Y3 Twoshort\n\tjeep: ouch\n\n42) jeep: Move R3 Yolonda Jeep\n\n43) TwoShort: Build G1 Twoshort\n\n44) jeep: Trade R3 G3 Jeep\n\n45) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n46) jeep: Build Y1 Jeep\n\n47) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Twoshort Yolonda\nMove G1 Yolonda Jeep\nMove G1 Yolonda Jeep\nCatastrophe Jeep Green\n\n48) jeep: Trade Y1 G1 Jeep\n\n49) TwoShort: Build G1 Twoshort\n\n50) jeep: Build G1 Jeep\n\n51) TwoShort: Trade G3 Y3 Twoshort\n\n52) jeep: Build G2 Jeep\n\n53) TwoShort: Build G2 Twoshort\n\n54) jeep: Discover G1 Jeep Y2 Mover\n\n55) TwoShort: Trade G2 B2 Twoshort\n\n56) jeep: Build G2 Mover\n\n57) TwoShort: Build B1 Twoshort\n\n58) jeep: Sacrifice G2 Jeep\nBuild R1 Jeep\nBuild R2 Jeep\n\n59) TwoShort: Build G2 Twoshort\n\n60) jeep: Build G2 Jeep\n\n61) TwoShort: Discover B2 Twoshort R2 Rosie\n\n62) jeep: Trade R1 B1 Jeep\n\n\tTwoShort: Good game.\n\tTwoShort: Hmm, seems to be a problem here...\n\tjeep: I didn't even notice you had a blue in you home. I SHOULD have moved into Rosie instead.\n\tjeep: It's tempting to try to build a homeworld... see if it works. ;)\n\tTwoShort: Heck, you could blow up my greens and see if you win :)\r\n\n\tjeep: *laugh* That would be funny...\n\tAaron: Sorry about that.\n\nHomeworlds Online (SDG# 9625)\nVariants: "Hard time"\nStarted: 2007.10.18, Ended: 2007.11.13\nParticipants: kawotan (S), stoneaxe (N)\nWinner: stoneaxe\n\n1) stoneaxe: Homeworld R3 B2 G3\n\n2) kawotan: Homeworld G2 B1 Y3\n\tstoneaxe: Hi, thanks for playing! Good luck!\n\n3) stoneaxe: Build G1 Stoneaxe\n\tkawotan: Hi, this is my first game of Homeworlds.\r\nEnjoy game !\r\n\n\tstoneaxe: I'm new to it too. Its a fascinating game though. Deep strategy. \n\n4) kawotan: Build Y1 Kawotan\n\n5) stoneaxe: Trade G1 Y1 Stoneaxe\n\n6) kawotan: Trade Y3 R3 Kawotan\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) kawotan: Build Y1 Kawotan\n\n9) stoneaxe: Build Y2 Stoneaxe\n\n10) kawotan: Build R1 Kawotan\n\n11) stoneaxe: Build Y2 Stoneaxe\n\n12) kawotan: Build Y2 Kawotan\n\n13) stoneaxe: Discover Y2 Stoneaxe G1 Jupiter\n\n14) kawotan: Discover Y1 Kawotan R3 Saturn\n\n15) stoneaxe: Sacrifice G3 Stoneaxe\nBuild Y3 Stoneaxe\nBuild Y3 Jupiter\nBuild G1 Stoneaxe\n\n16) kawotan: Build Y3 Kawotan\n\n17) stoneaxe: Move Y3 Jupiter Saturn\n\n18) kawotan: Discover Y3 Kawotan B3 Pluto\n\n19) stoneaxe: Move Y1 Stoneaxe Jupiter\n\n20) kawotan: Trade Y3 G3 Pluto\n\n21) stoneaxe: Build Y3 Stoneaxe\n\n22) kawotan: Move R3 Kawotan Saturn\n\n23) stoneaxe: Attack R3S Saturn\n\n24) kawotan: Build G2 Pluto\n\tstoneaxe: Sorry, I had to do it! Because I had a 3-pointer and the Star is red (giving access to attack technology), I was able to attack your R3 and take over your ship!\n\n25) stoneaxe: Move R3 Saturn Kawotan\n\n26) kawotan: Build R1 Kawotan\n\n27) stoneaxe: Attack Y2S Kawotan\n\n28) kawotan: Sacrifice G3 Pluto\nBuild R1 Kawotan\nBuild R2 Kawotan\nBuild R2 Kawotan\n\n29) stoneaxe: Attack R2S Kawotan\n\n30) kawotan: Attack Y2 Kawotan\n\n31) stoneaxe: Sacrifice R2 Kawotan\nAttack R2S Kawotan\nAttack Y2S Kawotan\n\n32) kawotan: Sacrifice G2 Pluto\nBuild R2 Kawotan\nBuild R2 Kawotan\n\n\n33) stoneaxe: Move R3 Kawotan Saturn\nCatastrophe Kawotan R\n\n34) kawotan: Trade Y1 R1 Kawotan\n\n35) stoneaxe: Sacrifice R3 Saturn\nAttack R1S Kawotan\nAttack Y1S Saturn\nPass\n\tstoneaxe: Good game!\n\n\nHomeworlds Online (SDG# 9534)\nStarted: 2007.10.18, Ended: 2007.12.4\nParticipants: MikeYarrum (S), taniss99 (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 9566)\nStarted: 2007.10.19, Ended: 2008.2.22\nParticipants: liamjake (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 9668)\nVariants: "Hard time"\nStarted: 2007.10.24, Ended: 2007.11.29\nParticipants: TwoShort (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld R3 B1 G3\n\twyons: great, glad you wanted to play. I am relatively new at this game and I see you have a good track record, so I am hoping you might be willing to teach me a few tricks along the way. :)\n\n3) wyons: Build G1 Wyons\n\n4) TwoShort: Build G1 Twoshort\n\n5) wyons: Trade G1 Y1 Wyons\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) wyons: Build Y1 Wyons\n\tTwoShort: I'm pretty much always happy to play. As far as teaching tricks, I can give you general strategic advice (like "Get more 3 points than the other guy"). Specific tactics I often notice only after they come up, and I presumably wouldn't want to tell you exactly what I'm up to anyway. But I'm happy to teach by example and expound after the fact as though I knew what I was doing all along :)\n\n8) TwoShort: Build B1 Twoshort\n\twyons: sounds good to me and TTFN\n\n9) wyons: Build Y1 Wyons\n\n10) TwoShort: Build G1 Twoshort\n\n11) wyons: Discover Y1 Wyons G3 Headington\n\n12) TwoShort: Trade G3 Y3 Twoshort\n\n13) wyons: Build Y2 Wyons\n\n14) TwoShort: Build Y2 Twoshort\n\n15) wyons: Build Y2 Headington\n\n16) TwoShort: Discover Y2 Twoshort B2 Bluonia\n\n17) wyons: Trade Y2 B2 Wyons\n\n18) TwoShort: Discover B1 Twoshort G2 Grogar\n\n19) wyons: Discover B2 Wyons G3 Oxford\n\n20) TwoShort: Build B3 Grogar\n\n21) wyons: Build B3 Oxford\n\n22) TwoShort: Trade B3 R3 Grogar\n\n23) wyons: Trade B2 R2 Oxford\n\n24) TwoShort: Build Y2 Twoshort\n\n25) wyons: Move Y1 Wyons Oxford\n\n26) TwoShort: Trade Y2 G2 Twoshort\n\n27) wyons: Discover Y2 Headington R2 Uk\n\n28) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Bluonia\n\n29) wyons: Build Y3 Headington\n\n30) TwoShort: Move Y2 Twoshort Grogar\n\n31) wyons: Sacrifice Y2 Uk\nMove Y1 Headington Bluonia\nMove Y1 Oxford Bluonia\nCatastrophe Bluonia Yellow\n\n32) TwoShort: Build B2 Grogar\n\n33) wyons: Build Y1 Wyons\n\n34) TwoShort: Discover B1 Grogar Y3 Yolonda\n\n35) wyons: Move Y1 Wyons Oxford\n\n36) TwoShort: Build B2 Grogar\n\n37) wyons: Build B3 Oxford\n\n38) TwoShort: Sacrifice Y2 Grogar\nMove B2 Grogar Oxford\nMove B2 Grogar Oxford\nCatastrophe Oxford Blue\n\n39) wyons: Build Y1 Headington\n\n40) TwoShort: Build Y2 Twoshort\n\n41) wyons: Build Y2 Wyons\n\twyons: nice line you've got on the blues..\n\tTwoShort: Yeah, but I can't grab them very fast, and if I try, you'll grab all the yellow. I am feeling a lot better now that the 3-point balance is even...\n\twyons: indeed, yellow grabbing was my plan... :)\n\n42) TwoShort: Move Y2 Twoshort Grogar\n\n43) wyons: Trade Y2 B2 Wyons\n\n44) TwoShort: Move R3 Grogar Oxford\n\n45) wyons: Move R2 Oxford Grogar\n\n46) TwoShort: Attack Y1N Oxford\n\n47) wyons: Attack Y2S Grogar\n\n48) TwoShort: Sacrifice Y1 Oxford\nMove R3 Oxford Grogar\n\n49) wyons: Sacrifice Y2 Grogar\nMove R2 Grogar Yolonda\nMove B2 Wyons Headington\n\n50) TwoShort: Move B1 Yolonda Grogar\n\n51) wyons: Build G1 Wyons\n\n52) TwoShort: Build R1 Grogar\n\n53) wyons: Trade Y1 R1 Headington\n\n54) TwoShort: Trade R3 G3 Grogar\n\n55) wyons: Build R2 Headington\n\n56) TwoShort: Build G1 Twoshort\n\n57) wyons: Move G1 Wyons Yolonda\n\n58) TwoShort: Discover B1 Twoshort Y2 Yoyo\n\n59) wyons: Build G2 Wyons\n\n60) TwoShort: Move G1 Twoshort Yoyo\n\n61) wyons: Sacrifice G3 Wyons\nBuild G2 Yolonda\nBuild G3 Wyons\nBuild Y1 Headington\n\n62) TwoShort: Sacrifice G3 Grogar\nBuild G3 Yoyo\nBuild B2 Yoyo\nBuild B3 Grogar\n\n63) wyons: Sacrifice G3 Wyons\nBuild G3 Wyons\nBuild B3 Headington\nBuild Y1 Wyons\n\n64) TwoShort: Sacrifice G3 Yoyo\nBuild Y2 Twoshort\nBuild R2 Grogar\nBuild G3 Yoyo\n\n65) wyons: Sacrifice G3 Wyons\nBuild R3 Yolonda\nBuild G3 Wyons\nBuild Y2 Wyons\n\n66) TwoShort: Trade G3 R3 Yoyo\n\n67) wyons: Trade B3 G3 Headington\n\twyons: whooey - this is getting a bit hot.\n\n68) TwoShort: Move B1 Yoyo Headington\n\tTwoShort: It is a tad complex :)\n\n69) wyons: Attack B1S Headington\n\n70) TwoShort: Sacrifice B2 Yoyo\nTrade Y3 B3 Twoshort\nTrade B3 Y3 Grogar\n\n71) wyons: Sacrifice Y2 Wyons\nDiscover G3 Headington Y2 Solsys\nMove B1 Headington Solsys\n\n72) TwoShort: Discover R1 Grogar B3 Blueit\n\twyons: hmmm, nice move, I hadnt seen that line before.\n\n73) wyons: Sacrifice G3 Wyons\nBuild G3 Wyons\nBuild B2 Solsys\nBuild B3 Headington\n\n74) TwoShort: Move R3 Yoyo Twoshort\n\n75) wyons: Move B3 Headington Yoyo\n\n\tTwoShort: For the record, I was meaning to resign anyway: you have crushed me. \n\tTwoShort: Actually, the ZPIP challenge is over - you're the third person to beat me since I made it.\r\n\r\nBut in any case- Great game! I'll be wanting a rematch sometime soon.\n\twyons: thank you for your honour in admitting that. Did someone else win the icehouse peices??\n\twyons: looks like our messages crossed, and - yes I am up for a rematch\n\nHomeworlds Online (SDG# 9674)\nVariants: "Hard time"\nStarted: 2007.10.24, Ended: 2007.11.8\nParticipants: Keith (S), stoneaxe (N)\nWinner: Keith\n\n1) stoneaxe: Homeworld R1 B3 G3\n\tKeith: Hello stoneaxe. Decided to bypass Wyons I see.\n\tstoneaxe: He already has another Ladder challenge going. Plus, he and I are already playing a non-ladder game. Is it unorthodox to bypass someone in the Ladder? If so I was not aware! Well in any case, thanks for accepting. Good luck!\n\n2) Keith: Homeworld Y2 B3 G3\n\tKeith: Trying to move up more than one rung is fair game and happens often. It lets you pick the opponent you think you have the best chance against. \r\n\r\nWyons happens to be my favorite opponent in Grim Reaper.\n\n3) stoneaxe: Build G1 Stoneaxe\n\tstoneaxe: I've been thinking of trying a game of Grim Reaper soon! Sounds fun.\n\n4) Keith: Build G1 Keith\n\n5) stoneaxe: Trade G1 Y1 Stoneaxe\n\n6) Keith: Trade G1 Y1 Keith\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) Keith: Build G1 Keith\n\n9) stoneaxe: Build G1 Stoneaxe\n\n10) Keith: Build G2 Keith\n\n11) stoneaxe: Discover G1 Stoneaxe Y2 Rez\n\n12) Keith: Trade G1 Y1 Keith\n\n13) stoneaxe: Trade G1 B1 Stoneaxe\n\n14) Keith: Discover Y1 Keith G1 Midori\n\n15) stoneaxe: Build B1 Stoneaxe\n\n16) Keith: Sacrifice G3 Keith\nBuild Y2 Midori\nBuild Y3 Midori\nBuild Y3 Keith\n\tKeith: It has been a while since I played and I am a little rusty... still my gut says this will work in my favor.\n\n17) stoneaxe: Build Y3 Stoneaxe\n\tstoneaxe: Yeah, that was a nice sac!\n\n18) Keith: Trade Y1 B1 Keith\n\n19) stoneaxe: Build G1 Rez\n\n20) Keith: Sacrifice Y3 Midori\nMove B1 Keith Midori\nMove B1 Midori Rez\nMove B1 Rez Stoneaxe\nCatastrophe Stoneaxe Blue\n\tKeith: I feel a little bit bad about doing this but since it is a ladder game I will play hardball.\n\n21) stoneaxe: Discover Y3 Stoneaxe B3 Pez\n\n22) Keith: Build G2 Keith\n\tstoneaxe: Thats okay. It will make my revenge all that much sweeter!!! Mwaaahaha.\n\n23) stoneaxe: Move G1 Rez Stoneaxe\n\n24) Keith: Sacrifice Y2 Midori\nMove G2 Keith Stoneaxe\nMove G2 Keith Stoneaxe\nCatastrophe Stoneaxe Green\n\tKeith: I must say I admire your willingness to jump into the deep end by choosing highly rated opponents.\n\n25) stoneaxe: Build G1 Rez\n\tstoneaxe: Thanks! I wasn't really trying to choose the highest rated opponents, just searching for some games. The ladder seems like a fun little mini-tournament. Plus, I'm learning a ton by watching all you experts tear me to shreds. :) This is a really cool game. Its a lot like Chess somehow...\n\n26) Keith: Trade Y3 R3 Keith\n\tKeith: I am glad to learn it is not discouraging you. We should try an unrated game. Then we can ask questions and discuss the game since learning, rather than winning, will be the goal.\r\n\r\nMy favorite games at SDG are Cannon, Grim Reaper and HomeWorlds.\n\n27) stoneaxe: Move Y3 Pez Stoneaxe\n\tstoneaxe: An unrated game after this one sounds great!\n\n28) Keith: Move Y1 Midori Keith\n\n29) stoneaxe: Build G1 Rez\n\n30) Keith: Trade Y1 R1 Keith\n\tKeith: Good move. I can't swap for green and my growth is temporarily suspended.\n\n31) stoneaxe: Discover G1 Rez B3 Bluegrass\n\tstoneaxe: I'm trying to make a game out of this, but with half my homeworld gone... its not going to be pretty.\n\n32) Keith: Trade R3 G3 Keith\n\n33) stoneaxe: Trade G1 Y1 Bluegrass\n\tKeith: Well you have blue powers back now.\n\n34) Keith: Build R1 Keith\n\n35) stoneaxe: Sacrifice G1 Rez\nBuild Y1 Bluegrass\n\n36) Keith: Build R2 Keith\n\n37) stoneaxe: Move G1 Rez Stoneaxe\n\n38) Keith: Trade R2 G2 Keith\n\n39) stoneaxe: Trade Y1 B1 Bluegrass\n\n40) Keith: Build R2 Keith\n\n41) stoneaxe: Move B1 Bluegrass Stoneaxe\n\n42) Keith: Move R1 Keith Stoneaxe\n\n43) stoneaxe: Attack R1S Stoneaxe\n\n44) Keith: Move R1 Keith Stoneaxe\n\tstoneaxe: Thanks. I think...\n\tKeith: Well then have another.\n\n45) stoneaxe: Move R1 Stoneaxe Bluegrass\n\tKeith: :)\n\n46) Keith: Sacrifice G2 Keith\nBuild R2 Stoneaxe\nBuild R2 Stoneaxe\nCatastrophe Stoneaxe Red\n\tstoneaxe: I think I figured out your generous plan, but I'm not sure how I will stop it once you get more ships.\n\tKeith: That is the reason I delayed sending in reds till I had a green 2-ship. Otherwise you could move them out before I had enough.\n\tKeith: I have at this point watched some of your moves in all of your current games. Your learning very quickly. I expect you will be climbing the challenge ladder soon.\n\n\nHomeworlds Online (SDG# 9632)\nStarted: 2007.10.28, Ended: 2007.11.18\nParticipants: zoltar (S), liamjake (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 9551)\nVariants: "Unrated, Hard time"\nStarted: 2007.10.28, Ended: 2007.11.9\nParticipants: zoltar (S), scottobear (N)\nWinner: zoltar\n\n1) scottobear: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) scottobear: Build G1 Scottobear\n\n4) zoltar: Build G1 Zoltar\n\n5) scottobear: Trade G1 Y1 Scottobear\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) scottobear: Build G1 Scottobear\n\n8) zoltar: Build G1 Zoltar\n\n9) scottobear: Discover G1 Scottobear B1 Monkey\n\n10) zoltar: Discover G1 Zoltar B3 Kingkong\n\n11) scottobear: Build Y1 Scottobear\n\tscottobear: copycat! :D\r\n\n\n12) zoltar: Build Y2 Zoltar\n\n13) scottobear: Move Y1 Scottobear Monkey\n\tzoltar: I got the first 2-pip ship. Ha-ha-ha-HA-ha!\n\tscottobear: Argh! neener neener!\n\n14) zoltar: Trade Y1 B1 Zoltar\n\n15) scottobear: Trade Y1 R1 Monkey\n\n16) zoltar: Build B2 Zoltar\n\n17) scottobear: Build Y1 Scottobear\n\tscottobear: ohhhh.. ok, I see what you did there. \n\n18) zoltar: Discover B2 Zoltar Y3 Yabbadabbadoo\n\n19) scottobear: Build R1 Monkey\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild B2 Yabbadabbadoo\nBuild B3 Yabbadabbadoo\nBuild B3 Zoltar\n\n21) scottobear: Move Y1 Scottobear Monkey\n\tscottobear: my, what a lovely blue fleet you have there!\n\n22) zoltar: Sacrifice B2 Yabbadabbadoo\nTrade B3 G3 Yabbadabbadoo\nTrade B3 G3 Zoltar\n\tzoltar: My fleet has decided to go environmentalist...\n\n23) scottobear: Move R1 Monkey Kingkong\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild B2 Yabbadabbadoo\nBuild B3 Yabbadabbadoo\nBuild B3 Zoltar\n\tzoltar: You may have all the little ships, if you wish -- I have no time to worry about scout ships...\n\n25) scottobear: Attack G1 Kingkong\n\n26) zoltar: Sacrifice B2 Yabbadabbadoo\nTrade B3 R3 Yabbadabbadoo\nTrade B3 G3 Zoltar\n\tscottobear: yikes.. \n\n27) scottobear: Trade R1 G1 Monkey\n\tzoltar: Well if you're gonna play THAT way, I'm gettin' me a red ship!\n\tscottobear: sure, sure.. I see how it is!!\n\tscottobear: hmm.. I'm trying to sacrifice my red in monkey to build 2 greens, but I can't seem to do it.. am I missing a rules point?\n\tzoltar: Yes, two rules points apply here.\r\n\r\nFirst, you can only sacrifice red to attack, not to build; if you wish to build, you would have to sacrifice a green.\r\n\r\nSecond, you can only sacrifice a 1-pip ship for 1 action, and a 2-pip ship for two actions, and a 3-pip ship for 3 actions. \r\n\r\nHence, you'd need to sacrifice a green 2-pip ship to be able to have 2 grows. (In my 2-step 'factory' I've created, I sac my G3 for a B2, and 2 B3s, then sac the B2 to convert one of the B3s to a G3 and the other to either a Y3 or R3; the net result after two moves is an extra 3-pip ship built by my 'factory'.) \r\n\r\nHope that answers your rule question.\n\tscottobear: ohh... I was only totally confused there! thanks\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild B2 Yabbadabbadoo\nBuild B3 Yabbadabbadoo\nBuild B3 Zoltar\n\tscottobear: a lot of observers, eh?\n\n29) scottobear: Build G2 Kingkong\n\n30) zoltar: Sacrifice B2 Yabbadabbadoo\nTrade B3 Y3 Yabbadabbadoo\nTrade B3 G3 Zoltar\n\tscottobear: I've got a sinking feeling here. \n\n31) scottobear: Trade G1 Y1 Kingkong\n\tzoltar: But you have 8 ships and I have only 7... heh\n\tscottobear: trade ya!\n\n32) zoltar: Sacrifice G3 Yabbadabbadoo\nBuild B2 Yabbadabbadoo\nBuild B3 Yabbadabbadoo\nBuild B3 Zoltar\n\n33) scottobear: Build Y2 Kingkong\n\n34) zoltar: Sacrifice B2 Yabbadabbadoo\nTrade B3 G3 Yabbadabbadoo\nTrade B3 Y3 Zoltar\n\n35) scottobear: Build Y2 Scottobear\n\tscottobear: ok... is this right? \r\nsacrifice y1 monkey\r\nmove y1 kingkong zoltar\r\nmove y2 kingkong zoltar\r\ncatastrophe zoltar yellow\n\tzoltar: No. You would have to sac a y2 to get 2 moves; sacking a y1 only gets you one move. Hence, if you had a y2 in monkey instead of a y1, you could sack it and move the two yellows from KingKong to Zoltar and catastrophe the yellows. However, the only y2 you can sac is in KingKong, which is one of the yellows you wanted to move; so the action isn't possible. \r\n\r\nYou could sac a g1 to build another y2 in KingKong, so that on your next turn you could sack it and send the other two yellows in KingKong to Zoltar. But -- seeing you were about to do that, I'd simply move my y2 from Zoltar to KingKong and catastrophe the yellows in KingKong first, so that my Y3 would remain and all of your KingKong yellows would go away, which would favor me (from the position as it is now, I'd lose a y2; you'd lose a Y2, a Y1, and a G1). \r\n\r\nSo your best move might be to build a y2 in Scottobear and threaten to sack it next turn. This forces me to scatter my yellow ships.\n\n36) zoltar: Sacrifice Y2 Zoltar\nDiscover Y3 Yabbadabbadoo R1 Redrover\nDiscover B2 Yabbadabbadoo Y2 Mellowyellow\n\tscottobear: thanks.. I appreciate the help!!\n\n37) scottobear: Trade Y2 B2 Kingkong\n\n38) zoltar: Sacrifice G3 Yabbadabbadoo\nBuild B3 Mellowyellow\nBuild Y2 Redrover\nBuild R1 Yabbadabbadoo\n\n39) scottobear: Build B3 Kingkong\n\tzoltar: Hey, you're not spos'ta get any blue ships!\n\n40) zoltar: Sacrifice Y2 Redrover\nMove R1 Yabbadabbadoo Monkey\nMove B1 Zoltar Kingkong\nCatastrophe Kingkong B\n\tscottobear: Whoops!\n\tzoltar: That'll teach ya to muscle in on my blue monopoly!\n\n41) scottobear: Trade G1 R1 Monkey\n\n42) zoltar: Attack R1 Monkey\n\tscottobear: sakes! all a guy wants is a matched set!\n\n43) scottobear: Trade Y2 R2 Scottobear\n\tzoltar: munch munch munch\n\tzoltar: Screw the blue! The red monopoly is mine! Awl Mine! \r\n[Insert Evil Overlord Sinister Laughter Here]\n\tscottobear: you're hopped up on red! you zoltarian fiend!\n\n44) zoltar: Sacrifice Y3 Zoltar\nMove Y3 Redrover Scottobear\nMove R1 Monkey Scottobear\nMove R1 Monkey Scottobear\nCatastrophe Scottobear R\n\n45) scottobear: Trade Y1 R1 Scottobear\n\tzoltar: Banzai!!!\n\tscottobear: hey, wha???\r\n\r\nI had no idea you could blow up planets!\n\n46) zoltar: Sacrifice R3 Yabbadabbadoo\nAttack R1 Scottobear\nAttack G3 Scottobear\nPass\n\tzoltar: Yep, and indeed, while it was checkmate in 5 moves the other way, I think, now I have checkmate immediately.\r\n\r\nWhat I was going to do was move my B2 to a small star (in reach of your homeworld, then trade the B3 for a G3, sac the G3 for two blues and a red, then sack a Y3 and send all three reds in and blow up your red star, and the next move sac the other Y3 and blow up your blue star. That's called the "doomsday machine". \r\n\r\nBut you saved yourself all the fancy fireworks by letting me do this cheap maneuver instead, knocking out the red star and slipping a 3-pip ship into your homeworld with my third movement so I can take all your pieces before you could get a red ship to defend. Play again?\n\tzoltar: Yep, and indeed, while it was checkmate in 5 moves the other way, I think, now I have checkmate immediately.\r\n\r\nWhat I was going to do was move my B2 to a small star (in reach of your homeworld, then trade the B3 for a G3, sac the G3 for two blues and a red, then sack a Y3 and send all three reds in and blow up your red star, and the next move sac the other Y3 and blow up your blue star. That's called the "doomsday machine". \r\n\r\nBut you saved yourself all the fancy fireworks by letting me do this cheap maneuver instead, knocking out the red star and slipping a 3-pip ship into your homeworld with my third movement so I can take all your pieces before you could get a red ship to defend. Play again?\n\n\nHomeworlds Online (SDG# 9540)\nStarted: 2007.10.28, Ended: 2007.11.18\nParticipants: kreiger (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 9590)\nVariants: "Hard time"\nStarted: 2007.10.29, Ended: 2007.10.29\nParticipants: TwoShort (S), Personman (N)\nWinner: TwoShort\n\n\tPersonman: I'm terribly sorry, but starting this game was a complete accident, due to a misclick.\n\nHomeworlds Online (SDG# 9718)\nStarted: 2007.10.31, Ended: 2007.11.6\nParticipants: sordros (S), kreiger (N)\nWinner: sordros\n\n\nHomeworlds Online (SDG# 9746)\nStarted: 2007.10.31, Ended: 2007.12.17\nParticipants: sordros (S), antihero (N)\nWinner: sordros\n\n1) antihero: Homeworld B1 Y2 G3\n\n2) sordros: Homeworld R3 B2 G3\n\n3) antihero: Build G1 Antihero\n\n4) sordros: Build G1 Sordros\n\n5) antihero: Discover G1 Antihero Y3 Bigyella\n\n6) sordros: Trade G1 Y1 Sordros\n\n7) antihero: Build G1 Antihero\n\n8) sordros: Build Y1 Sordros\n\n9) antihero: Trade G1 Y1 Antihero\n\n10) sordros: Build Y2 Sordros\n\n11) antihero: Build Y2 Antihero\n\n12) sordros: Discover Y1 Sordros G1 Amareto\n\n13) antihero: Discover Y1 Antihero G3 Krez\n\n14) sordros: Build Y3 Amareto\n\n15) antihero: Build Y3 Krez\n\n16) sordros: Trade Y1 R1 Sordros\n\n17) antihero: Trade Y2 R2 Antihero\n\n18) sordros: Build Y1 Sordros\n\n19) antihero: Build R1 Antihero\n\n20) sordros: Trade Y1 B1 Sordros\n\n21) antihero: Move R1 Antihero Krez\n\n22) sordros: Build B1 Sordros\n\n23) antihero: Build R1 Antihero\n\n24) sordros: Move B1 Sordros Amareto\n\n25) antihero: Build R2 Krez\n\n26) sordros: Trade Y3 R3 Amareto\n\n27) antihero: Discover R1 Krez G1 Arnn\n\n28) sordros: Build G2 Sordros\n\n29) antihero: Sacrifice Y3 Krez\nMove R1 Arnn Sordros\nMove R2 Krez Amareto\nMove R2 Amareto Sordros\nCatastrophe Sordros R\n\n30) sordros: Sacrifice G3 Sordros\nBuild B2 Amareto\nBuild B2 Amareto\nBuild B3 Sordros\n\tantihero: I may regret that, but let's see what happens. :)\n\n31) antihero: Move G1 Bigyella Sordros\n\n32) sordros: Trade B3 R3 Sordros\n\n33) antihero: Build G1 Sordros\n\tsordros: Hi Antihero, are you still up to see what happens?\n\tantihero: hey sordros. Sorry. Everytime I look at this game I try to figure out what I can do and then can't see anything good. So I'll just make a move and let you finish this off. :)\n\n34) sordros: Attack G1 Sordros\n\n35) antihero: Build G2 Sordros\nCatastrophe Sordros G\n\n36) sordros: Trade R3 G3 Sordros\n\n37) antihero: Trade G3 B3 Antihero\n\n38) sordros: Build B3 Sordros\n\n\nHomeworlds Online (SDG# 9745)\nStarted: 2007.10.31, Ended: 2007.11.28\nParticipants: kreiger (S), DaDRK (N)\nWinner: DaDRK\n\n1) DaDRK: Homeworld B3 G2 R3\n\tDaDRK: good luck\n\n\nHomeworlds Online (SDG# 9748)\nVariants: "Hard time"\nStarted: 2007.10.31, Ended: 2008.3.2\nParticipants: antihero (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld R1 B2 G3\n\n2) antihero: Homeworld Y1 B3 G3\n\n3) wyons: Build G1 Wyons\n\twyons: Hi there- enjoy the game!\n\n4) antihero: Build G1 Antihero\n\n5) wyons: Trade G1 Y1 Wyons\n\tantihero: thanks, you too!\n\n6) antihero: Build G1 Antihero\n\n7) wyons: Build G1 Wyons\n\n8) antihero: Discover G1 Antihero Y2 Crater\n\n9) wyons: Build G2 Wyons\n\n10) antihero: Build G2 Crater\n\n11) wyons: Sacrifice G2 Wyons\nBuild Y1 Wyons\nBuild Y2 Wyons\n\n12) antihero: Build G2 Antihero\n\n13) wyons: Discover Y2 Wyons G3 Solsys\n\n14) antihero: Trade G3 Y3 Antihero\n\n15) wyons: Sacrifice G3 Wyons\nBuild Y2 Solsys\nBuild Y3 Wyons\nBuild G2 Wyons\n\n16) antihero: Discover G1 Crater Y3 Pha\n\n17) wyons: Trade G1 R1 Wyons\n\n18) antihero: Trade G1 R1 Antihero\n\n19) wyons: Move R1 Wyons Solsys\n\n20) antihero: Build R2 Antihero\n\n21) wyons: Build R2 Solsys\n\n22) antihero: Move R2 Antihero Crater\n\n23) wyons: Discover R2 Solsys G1 Milkyway\n\n24) antihero: Build G1 Antihero\n\n25) wyons: Build G3 Wyons\n\n26) antihero: Build G3 Crater\n\n27) wyons: Move Y3 Wyons Solsys\n\n28) antihero: Move G2 Crater Pha\n\n29) wyons: Sacrifice G3 Wyons\nBuild R2 Milkyway\nBuild R3 Solsys\nBuild G3 Wyons\n\n30) antihero: Sacrifice G2 Pha\nBuild R3 Antihero\nBuild R3 Crater\n\n31) wyons: Sacrifice Y2 Solsys\nMove R1 Solsys Crater\nMove R2 Milkyway Crater\nCatastrophe Crater Red\n\n32) antihero: Build G2 Pha\n\tantihero: the stash won't show up for me... Aaron, I'd really appreciate it if you'd freeze the clock (or email me or something) when you un-page-admin the game, otherwise I might time out on this one.\n\tantihero: seems to have fixed itself. hmm, now to figure out how not to lose. :)\n\n33) wyons: Discover G2 Wyons B3 Andromclust\n\n34) antihero: Discover Y3 Antihero B2 Bb\n\n35) wyons: Build Y2 Wyons\n\n36) antihero: Trade G1 B1 Antihero\n\n37) wyons: Move Y3 Solsys Milkyway\n\n38) antihero: Move B1 Antihero Crater\n\n39) wyons: Move Y1 Wyons Solsys\n\twyons: yes, thank you for the game of GR- just challenge me if you want another (I am always up for it) :)\n\n40) antihero: Sacrifice G1 Pha\nBuild B1 Crater\n\n41) wyons: Build G1 Wyons\n\n42) antihero: Build B1 Crater\n\n43) wyons: Sacrifice G3 Wyons\nBuild G1 Andromclust\nBuild G3 Wyons\nBuild R1 Milkyway\n\n44) antihero: Sacrifice G2 Pha\nBuild Y3 Bb\nBuild G2 Antihero\n\n45) wyons: Sacrifice Y2 Wyons\nMove Y1 Solsys Bb\nMove Y2 Solsys Bb\nCatastrophe Bb Yellow\n\n46) antihero: Discover B1 Crater Y3 Aplace\n\twyons: arch! need to think about that more, sorry.\n\n47) wyons: Sacrifice G3 Wyons\nBuild G3 Wyons\nBuild Y1 Milkyway\nBuild Y2 Wyons\n\twyons: back to where I stated\n\n48) antihero: Trade G2 Y2 Antihero\n\n49) wyons: Sacrifice G3 Wyons\nBuild G2 Andromclust\nBuild G3 Wyons\nBuild Y3 Wyons\n\n50) antihero: Build B2 Crater\n\n51) wyons: Move Y3 Wyons Aplace\n\n52) antihero: Discover Y2 Antihero R2 Rockin'\n\n53) wyons: Sacrifice R1 Milkyway\nAttack B1S Aplace\n\n54) antihero: Move B1 Crater Aplace\n\n55) wyons: Sacrifice G3 Wyons\nBuild R1 Milkyway\nBuild R2 Solsys\nBuild G3 Wyons\n\n\twyons: I am inclined to agree with you- however there are so many twists and turns in this beautiful game that I am fending off any complacency!\n\tantihero: Ack, I'm so bad about that sometimes. Sorry. This comes of only checking SDG every 2 days or so. My bad.\r\n\r\nYou were going to win anyways, but it's too bad we didn't get to play it out.\n\nHomeworlds Online (SDG# 9545)\nVariants: "Hard time"\nStarted: 2007.11.1, Ended: 2007.11.16\nParticipants: wmreed (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\twmreed: Hello! I'm pretty much a newb at Homeworlds, but I love it. Do you mind if I ask you questions as we play about strategies, or why you made certain moves?\n\tJesse: Not at all. Have a good game.\n\n2) wmreed: Homeworld B2 G1 Y3\n\n3) Jesse: Build G1 Jesse\n\twmreed: You, too! okay, first question: when sacrificing a piece, does that sacrificed piece become available for use ON that turn? In other words, if I sacrifice a G3 piece, can I build that same G3 piece as one of those builds? Is there any difference between the face-to-face implementation and the SDG implementation of that rule?\n\tJesse: Yes, the sacrificed piece becomes immediately available. The G3 sacrifice you mention is a particularly common example known as the factory. If you sacrifice the last ship in a star system, that system's marker likewise becomes immediately available. SDG's implementation of this is correct.\n\n4) wmreed: Build Y1 Wmreed\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) wmreed: Trade Y1 R1 Wmreed\n\n7) Jesse: Build G1 Jesse\n\n8) wmreed: Build Y1 Wmreed\n\n9) Jesse: Trade G1 R1 Jesse\n\n10) wmreed: Build R2 Wmreed\n\n11) Jesse: Build G1 Jesse\n\n12) wmreed: Build R2 Wmreed\n\n13) Jesse: Discover G1 Jesse B2 Blarg\n\n14) wmreed: Trade R2 G2 Wmreed\n\n15) Jesse: Move R1 Jesse Blarg\n\n16) wmreed: Build G1 Wmreed\n\n17) Jesse: Build G2 Blarg\n\n18) wmreed: Discover G1 Wmreed B3 Logan\n\n19) Jesse: Trade G2 Y2 Blarg\n\n20) wmreed: Build G2 Logan\n\n21) Jesse: Build G2 Jesse\n\n22) wmreed: Trade G1 Y1 Logan\n\n23) Jesse: Build Y2 Blarg\n\twmreed: Is it correct that your g1 in blarg is two hops from my homeworld? You could get it there by sacrificing a y2, correct?\n\tJesse: Yes.\n\n24) wmreed: Move R1 Wmreed Logan\n\n25) Jesse: Discover Y2 Blarg G3 Grr\n\n26) wmreed: Build R2 Logan\n\n27) Jesse: Sacrifice G3 Jesse\nBuild Y2 Grr\nBuild Y3 Blarg\nBuild Y3 Jesse\n\n28) wmreed: Discover R2 Logan B2 Jessica\n\n29) Jesse: Sacrifice Y2 Blarg\nMove Y2 Grr Wmreed\nMove Y2 Grr Wmreed\nCatastrophe Wmreed Y\n\n30) wmreed: Sacrifice G2 Logan\nBuild R2 Logan\nBuild R3 Wmreed\n\n31) Jesse: Build R3 Blarg\n\n32) wmreed: Trade R2 Y2 Wmreed\n\n33) Jesse: Discover R3 Blarg G3 Sniffle\n\n34) wmreed: Discover R1 Logan Y2 Ballard\n\n35) Jesse: Build G1 Jesse\n\n36) wmreed: Sacrifice G2 Wmreed\nBuild R2 Ballard\nBuild R3 Logan\n\n37) Jesse: Build G2 Blarg\n\n38) wmreed: Trade R3 Y3 Logan\n\n39) Jesse: Build R3 Blarg\n\n40) wmreed: Sacrifice Y3 Logan\nMove R2 Jessica Jesse\nMove R2 Ballard Jesse\nMove R1 Ballard Jesse\nCatastrophe Jesse Red\n\n41) Jesse: Build G2 Blarg\n\n42) wmreed: Build Y1 Wmreed\n\tJesse: I think you will find that, although you did knock out half my homeworld, without being able to follow it up to finish the job quickly, you've hurt yourself more than you have me.\n\n43) Jesse: Build G3 Jesse\n\twmreed: Yes, I was woried about that, but I can't yet see more than one or two moves ahead in Homeworlds. Not seeing where else to go, I decided to try and press.\n\tJesse: It's often difficult to see very far ahead in the middle game, even for me, but I know it's especially difficult for new players. It is also typical for new players to try to attack when they don't know what else to do. Attacking is difficult and costly in Homeworlds, though. It is usually better to build your forces. Have your red pieces poised? Start building blue so you can hit me with an unstoppable 1-2 smash. Have a numerical superiority in red? See if you can cause a red catastrophe or force a sacrifice that reduces me to one red ship, while you retain a few, and try to increase that advantage. If I have more large ships, you should probably be trying to get more of them yourself, rather than sacrificing them.\n\n44) wmreed: Trade Y1 B1 Wmreed\n\n45) Jesse: Sacrifice Y3 Blarg\nMove Y3 Jesse Wmreed\nMove G3 Jesse Wmreed\nMove R3 Sniffle Wmreed\n\n46) wmreed: Sacrifice R2 Logan\nAttack R3 Wmreed\nAttack Y3 Wmreed\n\tJesse: Another thing that new players often seem to overlook is the ship capture strategy. I find it's often easier to drop a bunch of large ships into the opponent's home system and capture all his defenders than it is to destroy both his stars. It doesn't work if the defender has a large red he is able to sacrifice to capture all my attackers in one shot, though.\n\n47) Jesse: Sacrifice R3 Blarg\nAttack R3 Wmreed\nAttack R3 Wmreed\nAttack Y3 Wmreed\n\twmreed: If I had sacrificed the R3 in wmreed, is it correct that I would not have been able to attack your large ships?\n\tJesse: Yes. After the sacrifice, you would have no ships large enough to make the captures.\n\n\tJesse: You played a pretty good game, really. You had a strong opening, taking control of red, and kept your homeworld protected. The g2 sacrifice to restore a large ship to your homeworld and simultaneously keep me from it was particularly nice. Trading the R3 for a Y3, letting me build another R3, was not so good though. It would be better to save that for a time when it was difficult for me to build a red ship.\n\twmreed: \n\twmreed: \n\twmreed: Thank you for the game, Jesse!\n\nHomeworlds Online (SDG# 9717)\nVariants: "Unrated, Hard time"\nStarted: 2007.11.2, Ended: 2007.11.15\nParticipants: scottobear (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B2 G3\n\n2) scottobear: Homeworld R3 B2 G3\n\n3) sordros: Build G1 Sordros\n\n4) scottobear: Build G1 Scottobear\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) scottobear: Trade G1 Y1 Scottobear\n\n7) sordros: Build Y2 Sordros\n\n8) scottobear: Build Y2 Scottobear\n\n9) sordros: Trade Y1 B1 Sordros\n\n10) scottobear: Build G1 Scottobear\n\n11) sordros: Build B1 Sordros\n\n12) scottobear: Discover G1 Scottobear B1 Chimp\n\n13) sordros: Discover B1 Sordros Y3 Amarego\n\n14) scottobear: Build G1 Chimp\n\n15) sordros: Sacrifice G3 Sordros\nBuild B2 Amarego\nBuild B3 Amarego\nBuild B3 Sordros\n\n16) scottobear: Move Y1 Scottobear Chimp\n\n17) sordros: Discover B3 Amarego R1 Rugxeto\n\n18) scottobear: Build G1 Scottobear\n\n19) sordros: Sacrifice B2 Amarego\nTrade B3 G3 Rugxeto\nTrade B3 G3 Sordros\n\n20) scottobear: Trade G1 R1 Scottobear\n\n21) sordros: Sacrifice G3 Sordros\nBuild B2 Amarego\nBuild B3 Amarego\nBuild B3 Sordros\n\n22) scottobear: Build R1 Scottobear\n\n23) sordros: Move B3 Amarego Rugxeto\n\n24) scottobear: Move R1 Scottobear Chimp\n\n25) sordros: Build B3 Rugxeto\n\n26) scottobear: Build R2 Chimp\n\n27) sordros: Trade B2 R2 Amarego\n\n28) scottobear: Trade R2 B2 Chimp\n\n29) sordros: Sacrifice Y2 Sordros\nMove B3 Rugxeto Scottobear\nMove G3 Rugxeto Scottobear\n\n30) scottobear: Attack G3 Scottobear\n\n31) sordros: Sacrifice R2 Amarego\nAttack G3 Scottobear\nAttack G3 Scottobear\n\n32) scottobear:\nBuild R2 Chimp\n\n33) sordros: Trade B3 R3 Sordros\n\n34) scottobear: Build B3 Chimp\n\n35) sordros: Sacrifice R3 Sordros\nAttack Y2 Scottobear\nAttack R1 Scottobear\nPass\n\n\tsordros: Good game. Thanks!\n\nHomeworlds Online (SDG# 9775)\nVariants: "Unrated"\nStarted: 2007.11.6, Ended: 2007.11.29\nParticipants: stoneaxe (S), Keith (N)\nWinner: stoneaxe\n\n1) Keith: Homeworld B1 Y3 G3\n\tKeith: Hello again, This will ba a good game for asking questions or trying things. I will play to give you a challenge but not to overwhelm.\n\n2) stoneaxe: Homeworld R1 B2 G3\n\n3) Keith: Build G1 Keith\n\tstoneaxe: Sounds great!\n\tKeith: I have two questions for you. 1) have you read the SDG wiki on Homeworlds? 2) you seem to prefer a red homeworld. Why?\n\n4) stoneaxe: Build G1 Stoneaxe\n\tstoneaxe: 1) Yes, I have read the wiki and looked at some Archive games. 2) Seems like a strong defensive position and TwoShort does it! What are the considerations of doing this?\n\n5) Keith: Discover G1 Keith Y2 Bend\n\tKeith: TwoShort doing it is certainly a strong endorsement. I think I tried it a few times and decided it was an advanced technique I was not ready for that seemed to slow down my early game development.\n\n6) stoneaxe: Trade G1 Y1 Stoneaxe\n\n7) Keith: Build G1 Keith\n\n8) stoneaxe: Build Y1 Stoneaxe\n\tstoneaxe: For all I know, TwoShort does that just to make it more challenging for himself! Ha. I definitely need to guard against that pair of catastrophe that you got me with last game. Nice play, by the way!\n\n9) Keith: Trade G1 B1 Keith\n\tKeith: Thank you, I was given many hard lessons by Zoltar. Having three of a color at your homeworld is dangerous if the other player has a lot of mobility.\n\n10) stoneaxe: Build G1 Stoneaxe\n\n11) Keith: Move B1 Keith Bend\n\tKeith: One possibility on your last move would be to take the last y1 making it harder for me to get into yellow. I could swap my g3 for a y3 but then I would fall behind a turn, two if I have not created another green ship in my homeworld first. It would leave you with 3 yellows in your homeworld but I don't have one to move in.\n\n12) stoneaxe: Build Y1 Stoneaxe\n\n13) Keith: Build G1 Keith\n\tstoneaxe: I see. Ok, I will try that strategy on this move.\n\tKeith: Well there is that. I am going to have to shut down for the day soon. 1:04AM here and I get up at 5:30AM.\n\n14) stoneaxe: Discover Y1 Stoneaxe B3 Broke\n\tstoneaxe: yeah, it was 1AM for me too. I signed off right after my last move and didn't see your last note. Hope you got some sleep that night.\n\n15) Keith: Build G2 Bend\n\tKeith: About 4 hours. The sleeping part was easy. Getting up though... \n\tKeith: Bend, Broke. Ha ha. How do you decide on system names?\n\n16) stoneaxe: Move G1 Stoneaxe Broke\n\tKeith: This does give me a way to get into Yellow. To prevent it you would have to do something fairly extreme like sacrifice your G3 and build to Y2s in Broke and a Y3 in stoneaxe. Safe for the moment till I got a yellow.\n\n17) Keith: Trade G2 Y2 Bend\n\tstoneaxe: Awww shoot. I shouldve done what you said. But this way I'm threatening to fight you for some green , so which would be better? I Still think what you said wouldve be better. \n\tstoneaxe: System names: I like names of planets or Star Trek worlds or making the first letter of the systems match their color, but then I forget and use a "G" system name on a yellow color and then I try to blow up that system just so I can rename it at the expense of losing the game. ;)\n\tKeith: This is probably safer. If I did get a yellow you would really be in a scramble. Also, there would be the risk that I would dominate green. Though with your move I can't build a green in Bend without you moving a green in and causing a catastrophe.\n\tKeith: I will keep your system naming strategy, and quirks, in mind. I usually pick a subject like Firefly, towns in Oregon, Japanese names.\n\n18) stoneaxe: Build Y2 Broke\n\n19) Keith: Discover Y2 Bend G3 Boring\n\n20) stoneaxe: Build Y3 Broke\n\n21) Keith: Build Y3 Boring\n\tstoneaxe: Whoa! I can't do that! What was I thinking?\n\n22) stoneaxe: Sacrifice Y2 Broke\nMove Y1 Stoneaxe Boring\nMove Y1 Stoneaxe Boring\nCatastrophe Boring Yellow\n\tKeith: I would have pointed it out and let you take it back if you had not noticed.\n\n23) Keith: Discover G1 Keith B2 Prineville\n\n24) stoneaxe: Build G2 Stoneaxe\n\tstoneaxe: Was that dumb? Thats enough mental anguish for me for tonight. :) Goodnite! signing off, for now.\n\tKeith: You blew me up! At least you burned 3 ships doing it.\n\tKeith: It was as expensive as I could make it. Probably still worth it on your part. Good night.\n\tKeith: Look at it this way. We both have 4 ships. You have two 3-pointers and two 1-pointers. I have one 3-pointer and three 1-pointers. I have some initiative because it is my move but it won't make up for the material difference.\n\n25) Keith: Build G2 Keith\n\n26) stoneaxe: Sacrifice G3 Stoneaxe\nBuild G2 Broke\nBuild G3 Stoneaxe\nBuild G3 Stoneaxe\n\n27) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild B1 Bend\nBuild B2 Bend\n\n28) stoneaxe: Trade Y1 R1 Broke\n\tKeith: Very good. The absence of yellow ships on my part makes that a safe move.\n\n29) Keith: Trade B2 Y2 Bend\n\n30) stoneaxe: Trade G2 Y2 Stoneaxe\n\n31) Keith: Build B2 Bend\n\n32) stoneaxe: Move G2 Broke Bend\n\n33) Keith: Sacrifice Y2 Bend\nMove B2 Bend Broke\nMove B1 Bend Broke\n\tKeith: Do you see the threat I have built that uses blue?\n\n34) stoneaxe: Sacrifice Y3 Broke\nMove G3 Stoneaxe Broke\nMove G3 Broke Bend\nMove G3 Bend Keith\n\tstoneaxe: I think I saw the blue threat: if I would've traded for blue in Broke, you would've moved in 2 more blues and cat'd, right?\n\tKeith: You are on the right track. Though I could provide the fourth blue myself. Two on one turn and one on the next. You have partially diffused it by moving a ship out. \n\n35) Keith: Trade G3 Y3 Keith\n\n36) stoneaxe: Trade G3 R3 Stoneaxe\n\tKeith: You have a number of choices here. You can make a sacrifice and capture my two blues but then I will move in another one and you would lose your y3. You can sacrifice the y3 to evacuate your other ships from Broke. Expensive. It might have been worth it if the g2 was still there. You can sacrifice the r1 and capture my other blue in Bend, though I could then build another one with a green sacrifice. You can run with the y3 and leave the others behind. Or you can sacrifice the y3 and...\n\tKeith: I can build another blue with a green sacrifice and you wouldl lose your ships at Broke. Take it back and see what your best play is involving the Y3.\n\n37) Keith: Sacrifice Y3 Keith\nMove B1 Bend Keith\nMove G1 Bend Keith\nMove G1 Prineville Keith\nCatastrophe Keith Green\n\tstoneaxe: Thanks for the help! I'm still learning! This one seems like a better move, but? \r\n\r\n(signing off for tonight... until next time!)\r\n\n\tKeith: Good night then.\r\n\r\nYou almost had it. The y3 sacrifice was right. But you could have moved the g1 in Broke to Keith and the g2 in Bend to Keith and catastrophied green in Keith and won the game. Though this still gives me a severe problem. \r\n\r\nI ignored a general rule. If the other person pulls a gun (red ship) you had better pull one too.\n\tKeith: If you sacrifice your r1 and convert my g3 at Keith then I am a gonner. \n\n38) stoneaxe: Move G2 Bend Keith\n\tKeith: Guess I am done for because blowing up Broke still leaves you able to move from Bend to Keith with that fourth green.\n\n39) Keith: Trade B2 G2 Broke\n\n40) stoneaxe: Sacrifice R1 Broke\nAttack B1 Keith\n\n\tstoneaxe: You were very generous in this game... Thanks for the help!\n\tKeith: Your welcome. Hope you learned something and enjoyed it. \n\nHomeworlds Online (SDG# 9630)\nStarted: 2007.11.8, Ended: 2007.11.30\nParticipants: MikeYarrum (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld B2 R3 G3\n\n\tsordros: Hi, good luck.\n\nHomeworlds Online (SDG# 9761)\nVariants: "Unrated, Hard time"\nStarted: 2007.11.9, Ended: 2007.12.3\nParticipants: scottobear (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) scottobear: Homeworld G3 R2 B3\n\n3) zoltar: Build G1 Zoltar\n\n4) scottobear: Build B1 Scottobear\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) scottobear: Trade B1 Y1 Scottobear\n\n7) zoltar: Build G1 Zoltar\n\n8) scottobear: Build B1 Scottobear\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) scottobear: Trade B1 R1 Scottobear\n\n11) zoltar: Build R2 Zoltar\n\n12) scottobear: Build B1 Scottobear\n\n13) zoltar: Trade R1 B1 Zoltar\n\n14) scottobear: Discover B1 Scottobear G1 Gorgon\n\n15) zoltar: Discover B1 Zoltar G2 Greenslime\n\n16) scottobear: Build B1 Gorgon\n\n17) zoltar: Build B2 Greenslime\n\n18) scottobear: Build B2 Gorgon\n\n19) zoltar: Sacrifice Y1 Zoltar\nMove B1 Greenslime Gorgon\nCatastrophe Gorgon B\n\n20) scottobear: Build Y1 Scottobear\n\n21) zoltar: Build B1 Greenslime\n\n22) scottobear: Discover Y1 Scottobear G1 Oz\n\n23) zoltar: Trade B2 Y2 Greenslime\n\n24) scottobear: Move R1 Scottobear Oz\n\n25) zoltar: Build G1 Zoltar\n\n26) scottobear: Build B1 Scottobear\n\n27) zoltar: Trade G1 Y1 Zoltar\n\n28) scottobear: Build Y2 Oz\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenslime\n\n30) scottobear: Build Y3 Scottobear\n\n31) zoltar: Discover Y1 Zoltar B2 Blooze\n\n32) scottobear: Trade Y1 B1 Scottobear\n\n33) zoltar: Sacrifice Y2 Greenslime\nMove B1 Greenslime Oz\nMove B1 Oz Scottobear\nCatastrophe Scottobear B\n\n34) scottobear: Move Y2 Oz Blooze\n\n35) zoltar: Trade Y3 G3 Zoltar\n\tzoltar: Whoops! You know better than to grow a third of the same color in your homeworld when I have a ship of the same color!\n\tscottobear: you're right.. I do! Silly mistake!\n\n36) scottobear: Move R1 Oz Blooze\n\n37) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Blooze\nBuild Y2 Greenslime\nBuild Y3 Zoltar\n\n38) scottobear: Trade Y2 B2 Blooze\n\tzoltar: Retreat!!!\n\n39) zoltar: Trade Y3 G3 Zoltar\n\n40) scottobear: Attack Y1 Blooze\n\tzoltar: Attack!\n\n41) zoltar: Sacrifice R2 Zoltar\nAttack R1 Blooze\nAttack Y1 Blooze\n\n42) scottobear: Build Y2 Oz\n\n43) zoltar: Build Y3 Zoltar\n\n44) scottobear: Move Y2 Oz Blooze\n\n45) zoltar: Sacrifice Y3 Zoltar\nMove Y2 Greenslime Oz\nDiscover Y1 Blooze G1 Vim\nDiscover Y1 Blooze G1 Vigor\n\n46) scottobear: Build Y3 Oz\n\n47) zoltar: Sacrifice Y3 Greenslime\nMove Y2 Oz Scottobear\nMove Y1 Vim Scottobear\nMove Y1 Vigor Scottobear\nCatastrophe Scottobear Y\n\n\tzoltar: Gotta watchout for those check-mate in ones, especially if you only have one color of ship in your homeworld. Ready to try again?\n\nHomeworlds Online (SDG# 9760)\nStarted: 2007.11.9, Ended: 2007.12.21\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\tts52: Sorry I didn't respond for so long. Missed the email notice.\n\tzoltar: no problem\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\tts52: huh, no email for that move either, must look into it more. Thanks again for waiting.\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) zoltar: Build Y2 Zoltar\n\n8) ts52: Build Y2 Ts52\n\n9) zoltar: Build Y2 Zoltar\n\n10) ts52: Discover Y2 Ts52 G3 Kermit\n\n11) zoltar: Trade Y1 R1 Zoltar\n\n12) ts52: Trade Y1 R1 Ts52\n\n13) zoltar: Discover R1 Zoltar G2 Proxima\n\n14) ts52: Build R2 Ts52\n\n15) zoltar: Move Y2 Zoltar Proxima\n\n16) ts52: Move R2 Ts52 Kermit\n\n17) zoltar: Build R2 Proxima\n\n18) ts52: Build G1 Ts52\n\n19) zoltar: Discover R2 Proxima G1 Greenpea\n\n20) ts52: Discover G1 Ts52 B3 Grover\n\n21) zoltar: Build Y1 Zoltar\n\n22) ts52: Build G1 Grover\n\n23) zoltar: Build G2 Zoltar\n\n24) ts52: Build G2 Ts52\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Greenpea\nBuild R3 Proxima\n\n26) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Ts52\nBuild R3 Kermit\n\n27) zoltar: Sacrifice Y2 Zoltar\nMove R1 Proxima Kermit\nMove R2 Greenpea Kermit\nCatastrophe Kermit R\n\n28) ts52: Trade G1 R1 Grover\n\n29) zoltar: Build R2 Proxima\n\n30) ts52: Move R1 Ts52 Kermit\n\n31) zoltar: Move R2 Proxima Grover\n\n32) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R3 Grover\nBuild G1 Grover\n\n33) zoltar: Sacrifice Y2 Proxima\nDiscover G2 Zoltar B2 Orion\nMove R2 Greenpea Grover\nCatastrophe Grover R\n\n34) ts52: Move R2 Ts52 Grover\n\n35) zoltar: Build Y1 Zoltar\n\n36) ts52: Build R1 Grover\n\n37) zoltar: Move Y1 Zoltar Proxima\n\n38) ts52: Build Y2 Kermit\n\n39) zoltar: Sacrifice G2 Orion\nBuild Y2 Zoltar\nBuild Y3 Proxima\n\n40) ts52: Discover Y2 Kermit G2 Robin\n\n41) zoltar: Sacrifice Y1 Zoltar\nMove Y3 Proxima Grover\n\n42) ts52: Sacrifice Y2 Robin\nMove R1 Grover Proxima\nMove R2 Grover Proxima\n\n43) zoltar: Sacrifice Y1 Proxima\nMove R3 Proxima Grover\n\n44) ts52: Sacrifice G1 Grover\nBuild G1 Ts52\n\n45) zoltar: Attack G1 Grover\n\n46) ts52: Build Y1 Kermit\n\n47) zoltar: Build G1 Zoltar\n\n48) ts52: Discover G2 Ts52 G3 Oscar\n\n49) zoltar: Sacrifice G3 Zoltar\nBuild G2 Grover\nBuild G3 Zoltar\nBuild Y1 Grover\n\n50) ts52: Move Y1 Kermit Proxima\n\n51) zoltar: Discover Y3 Grover B1 Blueberry\n\n52) ts52: Build Y2 Proxima\n\n53) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Grover\nBuild Y3 Zoltar\n\n54) ts52: Build R2 Ts52\n\n55) zoltar: Trade Y1 B1 Grover\n\n56) ts52: Trade R2 B2 Ts52\n\n57) zoltar: Trade Y3 B3 Zoltar\n\n58) ts52: Sacrifice B2 Ts52\nTrade R2 B2 Proxima\nTrade Y1 B1 Proxima\n\n59) zoltar: Sacrifice Y2 Zoltar\nDiscover B3 Zoltar B2 Bloohoohoo\nDiscover B1 Grover Y1 Oldyeller\n\n60) ts52: Build R2 Proxima\n\n61) zoltar: Trade B3 R3 Bloohoohoo\n\n62) ts52: Build Y1 Proxima\n\n63) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Grover\nBuild Y3 Blueberry\n\tzoltar: Ack! I've built all this firepower, yet I'm running around on the defensive trying to not let my star get blown up. Yikes!\n\n64) ts52: Sacrifice Y2 Kermit\nMove Y1 Proxima Blueberry\nMove Y2 Proxima Blueberry\nCatastrophe Blueberry Yellow\n\tzoltar: Well, I lost 2 moves and a ship for nothing. Well done. Hopefully I will do something with my massive fleet of 5 big ships, if I can keep them from being blown up.\n\tzoltar: Have to come back to this -- there must be a better way to save both stars in a less painful way.\n\tzoltar: Have to come back to this -- there must be a better way to save both stars in a less painful way.\n\n65) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Bloohoohoo\nBuild R2 Grover\n\n66) ts52: Trade B2 Y2 Proxima\n\n67) zoltar: Move R3 Grover Proxima\n\tzoltar: There -- I'm happy now.\n\tts52: I can't get the page to show me the global reserve stash, and I know there should be at least 1 yellow of each size. On a mac, 10,4, running firefox 2.0.0.11.\n\tzoltar: I can's tee the global reserve stash either, and I couldn't see it in another homeworlds game yesterday as well using Opera.\n\tts52: I'm also still not getting any email notifications.\n\tts52: Ok, not sure how the call an admin thing really works, but I've set up a physical set of the game, so I can see the reserve here. b3, y1, y2, y3, r2, r2. I'm going to take my move so we don't stagnate here forever.\n\n68) ts52: Build Y1 Proxima\n\n69) zoltar: Sacrifice R3 Bloohoohoo\nAttack Y2 Proxima\nAttack R2 Proxima\nAttack R1 Proxima\n\tzoltar: With 6 battlestars to your 1, I'm finally feeling confident...\n\tts52: I'm feeling a certain sense of deja'vu.\n\tts52: Hey, I can see the global reserve again! Woot!\n\tts52: Email still isn't working though.\n\n70) ts52: Build R3 Ts52\n\tts52: Sigh, reserve stash is gone again.\n\tzoltar: Sigh, so is my yellow fleet :(\n\n71) zoltar: Sacrifice Y3 Grover\nMove R2 Grover Ts52\nMove R1 Proxima Grover\nMove R1 Grover Ts52\nCatastrophe Ts52 R\n\n72) ts52: Sacrifice Y1 Proxima\nMove R1 Kermit Ts52\n\n73) zoltar: Move G2 Grover Ts52\n\tzoltar: The fleet has returned to liberate Proxima!\n\n74) ts52: Build G3 Ts52\n\tts52: We will not give up Proxima without a fight!\n\tzoltar: Proxima has been liberated in the name of the Zoltarian Empire! Hurrah!\n\n75) zoltar: Sacrifice Y2 Proxima\nMove Y2 Grover Ts52\nMove G1 Grover Ts52\nCatastrophe Ts52 G\n\tzoltar: The Zoltarian fleet may soon be down from 5 to 2 battlestars, but the liberation of Proxima was worth the sacrifice of many brave Zoltarian freedom fighters. Long Live Zoltar! \n\n76) ts52: Sacrifice G2 Oscar\nBuild R1 Ts52\nBuild R2 Ts52\n\tzoltar: Zoltar to fleet: sacrifice everything and storm the ts52 homeworld! All-out blitz! Attack!\n\n77) zoltar: Sacrifice R3 Proxima\nAttack R2 Ts52\nAttack R1 Ts52\nAttack R1 Ts52\n\tzoltar: Three attacking Zoltarian battlestars have been destroyed, but as a result, victory is at hand -- Our last red battlestar will arrive at the undefended ts52 homeworld next move -- the galaxy has been restored to Pax Zoltar once again! \n\n\tzoltar: gg\n\tts52: Thanks for the game. One of these days I'll figure out how to keep you from getting the upper hand with all those large ships....\n\tAaron: Are you still unable to see the stashes and stuff? Call me again if so. Cheers!\n\tts52: Sorry, I\n\tts52: Sorry, I am getting email again. Thanks!\n\nHomeworlds Online (SDG# 9747)\nStarted: 2007.11.9, Ended: 2007.11.18\nParticipants: kreiger (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 9791)\nStarted: 2007.11.9, Ended: 2008.1.4\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) MikeYarrum: Homeworld B3 R2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n\nHomeworlds Online (SDG# 9802)\nStarted: 2007.11.9, Ended: 2007.12.8\nParticipants: sordros (S), kreiger (N)\nWinner: sordros\n\n\nHomeworlds Online (SDG# 9804)\nStarted: 2007.11.11, Ended: 2007.11.18\nParticipants: TheDunwichHorror (S), kreiger (N)\nWinner: TheDunwichHorror\n\n\nHomeworlds Online (SDG# 9812)\nVariants: "Unrated"\nStarted: 2007.11.12, Ended: 2007.11.15\nParticipants: ahoodedfigure (S), peio (N)\nWinner: ahoodedfigure\n\n1) peio: Homeworld G2 B1 Y3\n\tahoodedfigure: SPACE!!\n\tpeio: I couldn't find the time yet to go thru the whole rules... promise, i'll do it !\n\n2) ahoodedfigure: Homeworld G3 Y3 R3 *\n\tahoodedfigure: It's been so long since I read the rules, now I have to do it again.\n\tahoodedfigure: i'm going to experiment, then we can reset it if I screw everything up\n\n3) peio: Discover Y3 Peio R3 Weardahel-r-whe\n\tpeio: shit, I think I over estimated my chances ....\r\n*actually: LOTS of laughing*\n\tpeio: please challenge me again on this one. I'm too ashamed of doing it (i'm sure the button is going to refuse me clicking on it, just to make fun of me)\n\tahoodedfigure: Hello Peio. you made my husband laugh hysterically just now. - The Wife\n\tahoodedfigure: NEWSFLASH: Darth Vader blew up Coruscant.\n\tpeio: Me too, i was laughing so hard of my stupidity ... !!\r\n\r\nDV: Hey, Palpat, what's the orange button on the dashboard ?\r\nP : Dunno,... just press it to see whahapen ...\n\n\nHomeworlds Online (SDG# 9803)\nStarted: 2007.11.12, Ended: 2008.2.22\nParticipants: TheDunwichHorror (S), MikeYarrum (N)\nWinner: TheDunwichHorror\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) TheDunwichHorror: Homeworld G3 B1 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) TheDunwichHorror: Build Y1 Thedunwichhorror\n\n\nHomeworlds Online (SDG# 9830)\nStarted: 2007.11.13, Ended: 2009.10.13\nParticipants: Nupanick (S), MikeYarrum (N)\nWinner: Nupanick\n\n1) MikeYarrum: Homeworld R3 B2 G3\n\n2) Nupanick: Homeworld B1 G2 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) Nupanick: Build Y1 Nupanick\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n6) Nupanick: Discover Y1 Nupanick G3 Slippery\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) Nupanick: Build Y1 Slippery\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) Nupanick: Build Y2 Nupanick\n\n11) MikeYarrum: Discover Y2 Mikeyarrum G1 Yotsuba\n\n12) Nupanick: Discover Y1 Slippery B1 Damogran\n\n13) MikeYarrum: Trade G1 B1 Mikeyarrum\n\n14) Nupanick: Trade Y1 G1 Damogran\n\n15) MikeYarrum: Build B2 Mikeyarrum\n\n16) Nupanick: Build G1 Damogran\n\n17) MikeYarrum: Trade B2 R2 Mikeyarrum\n\n18) Nupanick: Build G2 Damogran\n\n19) MikeYarrum: Build B2 Mikeyarrum\n\n20) Nupanick: Trade G2 B2 Damogran\n\n21) MikeYarrum: Move B2 Mikeyarrum Damogran\n\n22) Nupanick: Trade B2 G2 Damogran\n\n23) MikeYarrum: Sacrifice R2 Mikeyarrum\nAttack G2 Damogran\nAttack G1 Damogran\n\n24) Nupanick: Build G2 Damogran\nCatastrophe Damogran G\n\n25) MikeYarrum: Trade B2 G2 Damogran\n\n26) Nupanick: Build Y1 Slippery\n\n\tNupanick: Yeah... are you coming back or do I need to call time up on this game?\n\nHomeworlds Online (SDG# 9719)\nVariants: "Hard time"\nStarted: 2007.11.13, Ended: 2007.11.16\nParticipants: TwoShort (S), MXX (N)\nWinner: TwoShort\n\n1) MXX: Homeworld G2 Y3 R3 *\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) MXX: Build R1 Mxx\n\tTwoShort: Howdy.\n\n4) TwoShort: Build G1 Twoshort\n\tMXX: Hi.\n\n5) MXX: Discover R1 Mxx B1 Centi\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) MXX: Trade R1 G1 Centi\n\n8) TwoShort: Build B2 Twoshort\n\n9) MXX: Build G1 Centi\n\n10) TwoShort: Trade B2 R2 Twoshort\n\n11) MXX: Trade G1 Y1 Centi\n\n12) TwoShort: Build B2 Twoshort\n\n13) MXX: Build G1 Centi\n\n14) TwoShort: Discover B2 Twoshort Y3 Yolonda\n\n15) MXX: Trade G1 Y1 Centi\n\n16) TwoShort: Build B2 Twoshort\n\n17) MXX: Move Y1 Centi Yolonda\n\n18) TwoShort: Discover B2 Twoshort Y3 Yoyodyne\n\n19) MXX: Build Y1 Centi\n\n20) TwoShort: Build B2 Twoshort\n\n21) MXX: Build Y2 Centi\n\n22) TwoShort: Discover B2 Twoshort G3 Grogar\n\n23) MXX: Trade Y1 R1 Centi\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Twoshort\nBuild B3 Grogar\nBuild B3 Yoyodyne\n\n25) MXX: Move Y2 Centi Yolonda\n\n26) TwoShort: Trade B2 Y2 Yolonda\nCatastrophe Yolonda Yellow\n\n27) MXX: Build R1 Centi\n\n28) TwoShort: Trade B3 Y3 Twoshort\n\n29) MXX: Build Y1 Centi\n\n30) TwoShort: Move B3 Yoyodyne Centi\n\n31) MXX: Move Y1 Centi Yoyodyne\n\tTwoShort: So, not to be presumptuous, but I'm guessing you haven't played this much before? I ask because I feel a little bad just systematically destroying you (which I will, 2 turns from now). Usually when I play new players I try to give out some advice along the way; though in this case it would just be "Have some blue in your homeworld" :)\n\n32) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Grogar Centi\nMove B3 Centi Mxx\nMove B3 Centi Mxx\n\n33) MXX: Attack B3S Mxx\n\tMXX: Thanks, I'll keep that in mind\n\n34) TwoShort: Sacrifice R2 Twoshort\nAttack B3N Mxx\nAttack R3N Mxx\n\n\tTwoShort: I mainly hoping you won't be discouraged; the game is a lot more fun if you're not crippled right out of the box.\n\tTwoShort: In any case, thanks for the game!\n\nHomeworlds Online (SDG# 9823)\nVariants: "No undo"\nStarted: 2007.11.16, Ended: 2007.12.23\nParticipants: Nupanick (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B2 G3\n\n2) Nupanick: Homeworld G3 B2 Y3\n\n3) sordros: Build G1 Sordros\n\n4) Nupanick: Build Y1 Nupanick\n\n5) sordros: Trade G1 B1 Sordros\n\n6) Nupanick: Trade Y1 R1 Nupanick\n\n7) sordros: Build B1 Sordros\n\n8) Nupanick: Build Y1 Nupanick\n\n9) sordros: Trade B1 R1 Sordros\n\n10) Nupanick: Discover Y1 Nupanick B1 Damogran\n\n11) sordros: Build G1 Sordros\n\n12) Nupanick: Build Y1 Nupanick\n\n13) sordros: Discover G1 Sordros Y3 Amarego\n\n14) Nupanick: Trade Y1 G1 Nupanick\n\n15) sordros: Build B1 Sordros\n\n16) Nupanick: Move G1 Nupanick Damogran\n\n17) sordros: Move B1 Sordros Amarego\n\n18) Nupanick: Build Y1 Nupanick\n\n19) sordros: Sacrifice G3 Sordros\nBuild B2 Amarego\nBuild B3 Amarego\nBuild B3 Sordros\n\n20) Nupanick: Build Y2 Damogran\n\n21) sordros: Sacrifice B2 Amarego\nTrade B3 G3 Sordros\nTrade B3 Y3 Amarego\n\n22) Nupanick: Trade Y2 B2 Damogran\n\n23) sordros: Build B3 Amarego\n\n\tsordros: Hi Nupanick, are you still up to finish this game? or should we just terminate it?\n\tNupanick: Oops, sorry about that. I forgot it was my turn.\r\n\n\tsordros: It's ok, perhaps we'll play again sometime. Happy new year!\n\nHomeworlds Online (SDG# 9846)\nVariants: "Unrated"\nStarted: 2007.11.17, Ended: 2007.11.20\nParticipants: peio (S), ahoodedfigure (N)\nWinner: ahoodedfigure\n\n1) ahoodedfigure: Homeworld G3 B3 R3 *\n\tahoodedfigure: Oh, shit. I'm first. Watch me screw up. I never did get to experiment like I wanted to before. You mind starting a new one if my experiment doesn't work?\n\n2) peio: Homeworld Y3 G3 R3 *\n\n3) ahoodedfigure: Build R1 Ahoodedfigure\n\tpeio: no prblm, I know the feeling ;) \n\tahoodedfigure: My tactic works better if I go second.\n\n4) peio: Build R1 Peio\n\tahoodedfigure: Sheesh. About damn time. I don't know how many commands I did before that worked.\n\n5) ahoodedfigure: Trade R1 Y1 Ahoodedfigure\n\tpeio: same ! Each turn it takes me 4 times b4 it takes my order.\r\nI thought one could build a given color in a system as long as the system piece is of that color ?!\n\tahoodedfigure: I thought that was what the rules said. Apparently this thing thinks it has to match a ship type. So, what good are the planet colors?\n\n6) peio: Discover R3 Peio B2 Whrdahellrwee2\n\tahoodedfigure: I had a baby! I always wanted to have a baby!!\n\n7) ahoodedfigure: Build Y1 Ahoodedfigure\n\tpeio: Finally, I get to name a system ! (2nd move of 2nd game !!)\n\tahoodedfigure: Yeah... and that's a real nice... name. "name."\n\n8) peio: Build R1 Peio\n\n9) ahoodedfigure: Trade Y1 B1 Ahoodedfigure\n\n10) peio: Move R1 Peio Whrdahellrwee2\n\n11) ahoodedfigure: Build Y1 Ahoodedfigure\n\tpeio: I sorta don't know what to do to win...\n\tahoodedfigure: wipe out my homeworld's defenses, I think\n\tahoodedfigure: I'll have to leave this one hanging. Should be in bed. Later.\n\n12) peio: Trade R1 G1 Whrdahellrwee2\n\tahoodedfigure: Actually, according to the rules, you can't take an action that will destroy your own homeworld. It's not allowed. Which means your Palpatine Manuever was an illegal move.\n\n13) ahoodedfigure: Discover Y1 Ahoodedfigure B2 Lappland\n\n14) peio: Build R1 Peio\n\tahoodedfigure: wow, I managed to do it right the first time\n\n15) ahoodedfigure: Build B1 Ahoodedfigure\n\tpeio: not me... I fnd it (a bit) annoying I must say. Each time i try to do smtg it is first denied because i missed a rule detail. Then it takes for ever to perform smtg ... Will see how the game evolves as we move on.\n\n16) peio: Build R1 Whrdahellrwee2\n\tahoodedfigure: Since there are a lot of factors at work it's understandable. If we were playing this in person moves would take seconds. Then again, if we were playing my space conquering game, once you understood the basic principles, movement would be even MORE intuitive... :)\n\tahoodedfigure: There's a video game called Mass Effect coming out now that's going to make me space-obsessed for many, many weeks. Just warning you.\n\n17) ahoodedfigure: Trade B1 G1 Ahoodedfigure\n\tpeio: oookay\n\n18) peio: Move R1 Peio Whrdahellrwee2\n\n19) ahoodedfigure: Move G1 Ahoodedfigure Lappland\n\n20) peio: Trade R1 Y1 Whrdahellrwee2\n\n21) ahoodedfigure: Build Y2 Lappland\n\n22) peio: Build R1 Peio\n\tahoodedfigure: The rising tension... OF THE STARS!!\n\tahoodedfigure: did you actually make up the name of your planet, or was that just randomly given?\n\tahoodedfigure: ... IN THE GREAT VOID!!\n\tpeio: i decided the name. 2 comes from previous game. I named the new sytsem the same way on the previous game\n\n23) ahoodedfigure: Move Y2 Lappland Peio\n\n24) peio: Build R2 Peio\n\tahoodedfigure: Right, I gathered that it was a sequel... but what the heck did the original mean? :)\n\tpeio: Where the hell are we !?\n\n25) ahoodedfigure: Sacrifice R3 Ahoodedfigure\nAttack R1 Peio\nAttack R1 Peio\nAttack R2 Peio\n\tahoodedfigure: You're totally going to hate me. Don't give up on this game yet =)\n\tahoodedfigure: Oh, I get it. Where the hell are we.\n\n\nHomeworlds Online (SDG# 9871)\nStarted: 2007.11.26, Ended: 2007.11.30\nParticipants: kreiger (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 9934)\nStarted: 2007.11.28, Ended: 2008.2.22\nParticipants: kreiger (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld B2 G1 Y3\n\n\nHomeworlds Online (SDG# 9891)\nVariants: "Unrated, Hard time"\nStarted: 2007.11.29, Ended: 2007.12.12\nParticipants: scottobear (S), Mr_Shine (N)\nWinner: scottobear\n\n1) Mr_Shine: Homeworld B1 Y3 G3\n\n2) scottobear: Homeworld B3 G2 Y3\n\tscottobear: mr shine, him diamond!\n\n3) Mr_Shine: Build G1 Mr_shine\n\n4) scottobear: Build Y1 Scottobear\n\tMr_Shine: Mountain crush me no\r\nSun stop me no\r\nHammer me break me no:)\r\n\n\n5) Mr_Shine: Build G1 Mr_shine\n\n6) scottobear: Discover Y1 Scottobear B1 Library\n\n7) Mr_Shine: Discover G1 Mr_shine Y2 Propellor\n\n8) scottobear: Build Y1 Scottobear\n\n9) Mr_Shine: Discover G1 Propellor B1 Flux\n\n10) scottobear: Trade Y1 G1 Scottobear\n\n11) Mr_Shine: Build G2 Flux\n\n12) scottobear: Build G2 Scottobear\n\n13) Mr_Shine: Trade G1 Y1 Flux\n\n14) scottobear: Trade G2 R2 Scottobear\n\n15) Mr_Shine: Trade G1 R1 Mr_shine\n\n16) scottobear: Move G1 Scottobear Library\n\n17) Mr_Shine: Build G1 Mr_shine\n\n\nHomeworlds Online (SDG# 9838)\nVariants: "Hard time"\nStarted: 2007.11.30, Ended: 2008.3.17\nParticipants: wyons (S), TwoShort (N)\nWinner: wyons\n\n1) TwoShort: Homeworld R1 B3 G3\n\twyons: your chance of revenge!\n\twyons: your chance of revenge!\n\n2) wyons: Homeworld R1 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) wyons: Build G1 Wyons\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) wyons: Trade G1 R1 Wyons\n\n7) TwoShort: Build Y1 Twoshort\n\n8) wyons: Build R2 Wyons\n\n9) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n10) wyons: Trade R2 Y2 Wyons\n\n11) TwoShort: Build Y1 Twoshort\n\n12) wyons: Discover Y2 Wyons G3 Astralweeks\n\n13) TwoShort: Discover Y1 Twoshort Y2 Yonderboy\n\n14) wyons: Build R2 Wyons\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n16) wyons: Move Y2 Astralweeks Wyons\n\n17) TwoShort: Trade Y2 G2 Twoshort\n\twyons: yep.. I think I made a mistake discovering astral weeks... :{\n\n18) wyons: Trade R2 G2 Wyons\n\n19) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Bluonia\n\tTwoShort: Yeah, moving out before you grew a second one just put your only spot to grow yellow closer to me without helping you particularly. The competing-monopolies situation we were heading into demands growing efficiently while not getting blown up.\n\twyons: oh dear- this seems to be going from bad to worse..\n\n20) wyons: Build R2 Wyons\n\twyons: whilst you polish me off can I tempt you to a game of grim reaper.. I think you might have the right sort of brain..?\n\n21) TwoShort: Trade Y2 G2 Twoshort\n\n22) wyons: Build Y2 Wyons\n\n23) TwoShort: Discover Y3 Bluonia B3 Wedge\n\n24) wyons: Discover Y2 Wyons G3 Stargazer\n\n25) TwoShort: Trade Y3 R3 Wedge\n\n26) wyons: Build Y3 Wyons\n\n27) TwoShort: Move Y1 Yonderboy Wedge\n\n28) wyons: Build Y2 Stargazer\n\n29) TwoShort: Trade Y3 G3 Twoshort\n\n30) wyons: Sacrifice Y2 Wyons\nDiscover G3 Wyons Y3 Stella\nMove R1 Wyons Stella\n\twyons: I have also lost the picture of the global stash\n\twyons: oh--- and after my move it came back! :)\n\tTwoShort: I didn't mean to blow off your suggestion of a game of grim reaper - I'm just a bit short on attention cycles at the moment... issue a challenge in January and I'll be happy to play. Also, I'm not sure "polishing you off" is quite where this game is at :) Someone (Steely-eyed Russell?) once referred to monopolizing yellow to the point that you have nothing else as "the sand trap", but this is the first time I've understood what he meant. Anyway, I mention it just to point out my dumb golf reference: Using a Wedge to get out of the sand trap. Now on to the green...\n\n31) TwoShort: Trade Y3 R3 Bluonia\n\twyons: no offence taken. I shall challenge you to GR in January.\n\twyons: ...and I still feel like I have barely a head above the sand.\n\n32) wyons: Sacrifice G2 Wyons\nBuild Y2 Stargazer\nBuild Y3 Wyons\n\n33) TwoShort: Move Y1 Bluonia Stargazer\nCatastrophe Stargazer Yellow\n\n34) wyons: Discover Y3 Wyons G3 Stardust\n\n35) TwoShort: Move G2 Twoshort Bluonia\n\n36) wyons: Trade R2 G2 Wyons\n\n37) TwoShort: Build R2 Bluonia\n\twyons: Aaron- happy Xmas! Do you know that the global stash picture is only functioning intermittently\n\twyons: TwoShort- you can still play on I believe (even though it says frozen).\n\n38) wyons: Build G1 Wyons\n\n39) TwoShort: Trade R2 Y2 Bluonia\n\n40) wyons: Build R2 Stella\n\n41) TwoShort: Build R2 Bluonia\n\n42) wyons: Discover R2 Stella Y2 Nickoftime\n\twyons: the display is back!\n\n43) TwoShort: Trade R2 B2 Bluonia\n\n44) wyons: Sacrifice G3 Stella\nBuild R2 Stella\nBuild R2 Stella\nBuild R3 Nickoftime\n\n45) TwoShort: Move R3 Bluonia Stella\nCatastrophe Stella Red\n\n46) wyons: Discover G2 Wyons Y3 Startrek\n\n47) TwoShort: Build B1 Bluonia\n\n48) wyons: Build G1 Wyons\n\n49) TwoShort: Build G1 Twoshort\n\n50) wyons: Trade G1 B1 Wyons\n\n51) TwoShort: Discover B2 Bluonia G3 Greenfly\n\n52) wyons: Discover R2 Nickoftime B3 Cosmicgorilla\n\n53) TwoShort: Sacrifice Y2 Bluonia\nMove B1 Bluonia Wedge\nMove B2 Greenfly Wyons\n\n54) wyons: Move B1 Wyons Stardust\n\n55) TwoShort: Sacrifice G2 Bluonia\nBuild B1 Wyons\nBuild B2 Wyons\nCatastrophe Wyons Blue\n\n56) wyons: Build B1 Stardust\n\n57) TwoShort: Trade B1 R1 Wedge\n\twyons: hmmm... that was very unpleasant. I fear I am about to lose my first game of homeworlds. \n\twyons: I am also challenging you to GR as agreed. :)\n\n58) wyons: Move B1 Stardust Wyons\n\n59) TwoShort: Discover R1 Wedge G2 Grogar\n\n60) wyons: Build G1 Startrek\n\n61) TwoShort: Sacrifice G1 Twoshort\nBuild R2 Wedge\n\n62) wyons: Sacrifice G2 Startrek\nBuild R2 Nickoftime\nBuild R3 Cosmicgorilla\n\n63) TwoShort: Discover R2 Wedge Y2 Yolonda\n\n64) wyons: Sacrifice Y3 Stardust\nDiscover R2 Cosmicgorilla Y1 Warp1\nDiscover R3 Cosmicgorilla Y2 Warp2\nDiscover R3 Nickoftime Y3 Warp3\n\n65) TwoShort: Move R3 Wedge Nickoftime\n\n66) wyons: Sacrifice G1 Startrek\nBuild Y3 Wyons\n\n67) TwoShort: Attack R2S Nickoftime\n\n68) wyons: Move Y3 Wyons Stardust\n\n69) TwoShort: Move R2 Yolonda Wyons\n\n70) wyons: Sacrifice R2 Warp1\nAttack R2N Wyons\nPass\n\n71) TwoShort: Move R2 Nickoftime Wedge\n\n72) wyons: Trade R2 Y2 Wyons\n\n73) TwoShort: Build R2 Grogar\n\n74) wyons: Build G1 Wyons\n\n75) TwoShort: Discover R3 Nickoftime B3 Bluonia\n\n76) wyons: Discover G1 Wyons Y2 Wormhole\n\n77) TwoShort: Sacrifice Y1 Wedge\nMove R3 Bluonia Wormhole\n\twyons: shouldnt nickoftime have been abandoned??\n\twyons: ah you must have been undoing that when I wrote it!....\n\tTwoShort: yeah, something was wrong there. Besides my move that is... the move is going to require more thought.\n\twyons: I have just noticed that Aaron is tinkering with the code. \n\twyons: and oh good- glad you are having to think! :)\n\n78) wyons: Sacrifice G1 Wormhole\nBuild R2 Warp2\n\n79) TwoShort: Build G1 Twoshort\n\n80) wyons: Build B1 Stardust\n\n81) TwoShort: Build Y1 Twoshort\n\n82) wyons: Build G1 Wyons\n\n83) TwoShort: Move Y1 Twoshort Grogar\n\n84) wyons: Move G1 Wyons Warp2\n\n85) TwoShort: Move R3 Wormhole Wyons\n\n86) wyons: Attack R3N Wyons\n\n87) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild Y1 Twoshort\nBuild Y2 Grogar\n\twyons: I just challenged you on the ladder. I know it will be our third game but I couldnt resist a shot at the top!\n\n88) wyons: Sacrifice Y2 Wyons\nMove R3 Wyons Grogar\nMove R3 Warp3 Grogar\nCatastrophe Grogar Red\n\n89) TwoShort: Trade Y1 R1 Twoshort\n\n90) wyons: Sacrifice Y3 Stardust\nMove G1 Wyons Grogar\nMove G1 Grogar Twoshort\nMove G1 Warp2 Twoshort\nCatastrophe Twoshort Green\n\n91) TwoShort: Move Y2 Grogar Twoshort\n\n\tTwoShort: Oh, I don't have green, so my suicide defense plan wont work. Well, it wasn't going to stave you off for more than another turn or two anyway :) Good job, and thanks for the game!\n\nHomeworlds Online (SDG# 9834)\nStarted: 2007.11.30, Ended: 2007.12.13\nParticipants: MikeYarrum (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) MikeYarrum: Homeworld B1 Y2 G3\n\n3) alexcobo: Build Y1 Alexcobo\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) alexcobo: Trade Y1 R1 Alexcobo\n\n\nHomeworlds Online (SDG# 9940)\nStarted: 2007.11.30, Ended: 2008.1.4\nParticipants: kreiger (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 9949)\nStarted: 2007.12.3, Ended: 2008.2.22\nParticipants: MikeYarrum (S), Annagul (N)\nWinner: Annagul\n\n1) Annagul: Homeworld B3 G2 R3\n\n2) MikeYarrum: Homeworld R1 B3 G3\n\n3) Annagul: Build R1 Annagul\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Annagul: Trade R1 Y1 Annagul\n\n\nHomeworlds Online (SDG# 9955)\nStarted: 2007.12.3, Ended: 2008.2.22\nParticipants: Annagul (S), kreiger (N)\nWinner: Annagul\n\n\nHomeworlds Online (SDG# 9942)\nVariants: "Unrated, Hard time"\nStarted: 2007.12.3, Ended: 2007.12.23\nParticipants: zoltar (S), scottobear (N)\nWinner: zoltar\n\n1) scottobear: Homeworld B3 G2 Y3\n\n2) zoltar: Homeworld B1 R2 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) zoltar: Build G1 Zoltar\n\n5) scottobear: Trade Y1 G1 Scottobear\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) scottobear: Build Y1 Scottobear\n\n8) zoltar: Build G1 Zoltar\n\n9) scottobear: Discover G1 Scottobear B1 Whoopsie\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) scottobear: Build G1 Whoopsie\n\n12) zoltar: Build B2 Zoltar\n\n13) scottobear: Trade G1 R1 Whoopsie\n\n14) zoltar: Trade B2 R2 Zoltar\n\n15) scottobear: Move Y1 Scottobear Whoopsie\n\n16) zoltar: Build B2 Zoltar\n\n17) scottobear: Build Y1 Scottobear\n\n18) zoltar: Discover B2 Zoltar G3 Daisy\n\n19) scottobear: Build Y2 Whoopsie\n\n20) zoltar: Build Y2 Zoltar\n\n\nHomeworlds Online (SDG# 9960)\nVariants: "Hard time"\nStarted: 2007.12.4, Ended: 2007.12.10\nParticipants: MikeYarrum (S), nycavri (N)\nWinner: nycavri\n\n1) nycavri: Homeworld Y2 B3 G3\n\n2) MikeYarrum: Homeworld R3 B1 G3\n\n3) nycavri: Build G1 Nycavri\n\n\nHomeworlds Online (SDG# 9969)\nStarted: 2007.12.6, Ended: 2008.2.22\nParticipants: MikeYarrum (S), Bryce (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 9968)\nStarted: 2007.12.6, Ended: 2007.12.13\nParticipants: alexcobo (S), kreiger (N)\nWinner: alexcobo\n\n\nHomeworlds Online (SDG# 10009)\nStarted: 2007.12.6, Ended: 2008.2.22\nParticipants: MikeYarrum (S), Teraphim (N)\nWinner: Teraphim\n\n1) Teraphim: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 10014)\nStarted: 2007.12.6, Ended: 2007.12.7\nParticipants: Teraphim (S), MisterMorn (N)\nWinner: Teraphim\n\n1) MisterMorn: Homeworld G2 Y1 B3\n\n2) Teraphim: Homeworld G3 B2 Y3\n\n3) MisterMorn: Build B1 Mistermorn\n\n4) Teraphim: Build Y1 Teraphim\n\n5) MisterMorn: Discover B1 Mistermorn R3 Mars\n\n6) Teraphim: Build Y1 Teraphim\n\n7) MisterMorn: Trade B1 G1 Mars\n\n8) Teraphim: Discover Y1 Teraphim G1 February\n\n9) MisterMorn: Build B1 Mistermorn\n\n10) Teraphim: Build Y2 February\n\n11) MisterMorn: Build B1 Mistermorn\n\n12) Teraphim: Trade Y1 R1 Teraphim\n\n13) MisterMorn: Trade B1 Y1 Mistermorn\n\tMisterMorn: Hey. Check this out. There's a little chat dealy down here by the system messages. Let's see how it works.\n\n14) Teraphim: Build Y2 Teraphim\n\tTeraphim: hehe neat, ffxi just went down for emerg. maint.\r\nso I'll play you, you've got some evil plan dont you?\r\n\n\n15) MisterMorn: Move Y1 Mistermorn Mars\n\tMisterMorn: My plan has already come to fruition... well, as soon as I send the check off to the good people at S-E for setting up maintenance.\n\tTeraphim: You bastard I'll kill you\r\nso is mine btw(evil plan, not check)\r\n\n\tMisterMorn: Is it just me or did the system glitch out, since it says you made a y2, but the picture says you didn't...\n\n16) Teraphim: Sacrifice Y2 Teraphim\nMove Y3 Teraphim February\nMove Y3 February Mars\n\tTeraphim: it glitched\r\n\n\n17) MisterMorn: Build Y2 Mars\n\n18) Teraphim: Sacrifice Y2 February\nMove Y1 February Teraphim\nMove Y3 Mars Mistermorn\n\n19) MisterMorn: Build B1 Mistermorn\n\n20) Teraphim: Sacrifice R1 Teraphim\nAttack B3N Mistermorn\n\n21) MisterMorn: Sacrifice Y2 Mars\nMove B1 Mistermorn Mars\nDiscover B1 Mars G1 Bundtcake\n\tTeraphim: I think I got you\r\n\n\tMisterMorn: And now we see why you don't put building in your homeworld. I suck\n\n22) Teraphim: Trade B3 R3 Mistermorn\n\n23) MisterMorn: Build B1 Mistermorn\n\tMisterMorn: ...actually, it's a lack of red that screws me. Not my choice of homeworld. In any event...\n\tTeraphim: Suicide if you want I still claiming the win ^.-\r\n\n\tTeraphim: I'm*\r\n\n\n24) Teraphim: Sacrifice R3 Mistermorn\nAttack B1N Mistermorn\nAttack B1N Mistermorn\nPass\n\tMisterMorn: I never said the game was over. I said I suck. There's a difference.\n\n\nHomeworlds Online (SDG# 9853)\nVariants: "Hard time"\nStarted: 2007.12.6, Ended: 2007.12.9\nParticipants: Jesse (S), kepesman (N)\nWinner: Jesse\n\n\nHomeworlds Online (SDG# 10012)\nStarted: 2007.12.6, Ended: 2007.12.12\nParticipants: MikeYarrum (S), kepesman (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 9986)\nVariants: "Unrated, Hard time"\nStarted: 2007.12.6, Ended: 2007.12.10\nParticipants: kepesman (S), scottobear (N)\nWinner: scottobear\n\n1) scottobear: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 9985)\nStarted: 2007.12.6, Ended: 2009.12.9\nParticipants: kevbo082 (S), cworth (N)\nWinner: cworth\n\n1) cworth: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 10018)\nVariants: "No undo"\nStarted: 2007.12.7, Ended: 2007.12.7\nParticipants: Teraphim (S), MisterMorn (N)\nWinner: Teraphim\n\n1) MisterMorn: Homeworld G2 B1 Y3\n\tTeraphim: XP\n\n2) Teraphim: Homeworld Y3 B2 G3\n\tMisterMorn: So, didja get your order placed?\n\n3) MisterMorn: Build Y1 Mistermorn\n\n4) Teraphim: Build G1 Teraphim\n\tTeraphim: no not yet\r\n\n\n5) MisterMorn: Trade Y1 R1 Mistermorn\n\n6) Teraphim: Trade G1 R1 Teraphim\n\tTeraphim: hahahahahahaha nice \n\n7) MisterMorn: Build R1 Mistermorn\n\n8) Teraphim: Build R2 Teraphim\n\tMisterMorn: I believe it's called "learning from your mistakes."\n\n9) MisterMorn: Discover R1 Mistermorn Y3 Twinkie\n\n10) Teraphim: Build G1 Teraphim\n\tMisterMorn: I still suck, though. ^_~\n\n11) MisterMorn: Build Y1 Mistermorn\n\n12) Teraphim: Discover G1 Teraphim Y1 Ol\n\n13) MisterMorn: Trade Y1 G1 Mistermorn\n\n14) Teraphim: Build R2 Teraphim\n\tMisterMorn: Wow. OI looks like a neat system. What kind of stuff do they do there?\n\tTeraphim: WE are the Borg. You will be assimilated. We will add your biological and technological distinctiveness to our own. Your culture will adapt to service us. Resistance is futile.\n\n15) MisterMorn: Build R2 Mistermorn\n\n16) Teraphim: Move R2 Teraphim Ol\n\tMisterMorn: God damn Borg. But, wait... those ships look like triangles! Borg only travel in cubes... YOU'RE IMPOSTERS!\n\n17) MisterMorn: Discover R1 Twinkie G1 Angelfood\n\n18) Teraphim: Build R3 Ol\n\tTeraphim: Small words from a small being, trying to attack what it doesn't understand.(Ps nice try but you'd be wrong about the only cubes, never seen a triangle though)\n\tMisterMorn: Oh, that's right... they have spheres too, don't they?\n\n19) MisterMorn: Trade R2 Y2 Mistermorn\n\n20) Teraphim: Move R2 Teraphim Angelfood\n\tTeraphim: Watch your future's end. \r\n(yep and wierd little diamond shaped ones)\n\tMisterMorn: (neat)\r\nYour armada is certainly impressive, oh Borg King, but we shall see how this battle plays itself out.\n\n21) MisterMorn: Build R2 Angelfood\n\n22) Teraphim: Build R3 Angelfood\nCatastrophe Angelfood R\n\tTeraphim: You are an imperfect being, created by an imperfect being. Finding your weakness is only a matter of time.(yes these are all borg quotes)\n\tMisterMorn: (In case you're wondering, I did build that r2 on purpose as bait.)\n\n23) MisterMorn: Trade G1 B1 Mistermorn\n\tMisterMorn: Nicely done. Thank you for taking the bait.\n\n24) Teraphim: Build R1 Teraphim\n\tTeraphim: Mistermorn: Yes, I... I remember you. You were there all the time. But... that ship... and all the Borg on it were destroyed...\r\nBorg King: You think in such three-dimensional terms. How small you've become. \n\tMisterMorn: [insert laughter here]\n\n25) MisterMorn: Build R2 Mistermorn\n\n26) Teraphim: Trade R1 B1 Teraphim\n\tTeraphim: Borg King: Do you always talk this much?\r\nMistermorn: Not always, but often.\n\n27) MisterMorn: Sacrifice Y2 Mistermorn\nDiscover R2 Mistermorn Y3 Twinkie\nDiscover R2 Twinkie G1 Angelfood\n\n28) Teraphim: Trade B1 Y1 Teraphim\n\tMisterMorn: I found my old Angelfood system. It's a little less pretty than it last was, thanks to your horrible weapons experiments. I didn't think the Borg made mistakes.\n\tTeraphim: Brave words. I've heard them before, from thousands of species across thousands of worlds, since long before you were created. But, now they are all Borg.\n\n29) MisterMorn: Build B1 Mistermorn\n\n30) Teraphim: Build Y1 Teraphim\n\n31) MisterMorn: Build Y2 Mistermorn\n\n32) Teraphim: Discover R2 Ol B3 Lo\n\n33) MisterMorn: Sacrifice Y2 Mistermorn\nMove B1 Mistermorn Lo\nMove B1 Lo Angelfood\n\n34) Teraphim: Move Y1 Teraphim Ol\n\tTeraphim: Former people of lO: Borg? Sounds Swedish.\r\n[after having seen the Borg]\r\nFormer people of lO: Definitely not Swedish. \n\n35) MisterMorn: Build B2 Angelfood\n\n36) Teraphim: Build Y2 Ol\n\n37) MisterMorn: Build B2 Angelfood\n\n38) Teraphim: Sacrifice Y2 Ol\nMove R3 Ol Lo\nMove R3 Lo Angelfood\n\n39) MisterMorn: Sacrifice Y3 Mistermorn\nMove B1 Angelfood Teraphim\nMove B2 Angelfood Teraphim\nMove B2 Angelfood Teraphim\nCatastrophe Teraphim Blue\n\tMisterMorn: You forced me to pull the trigger a little early. Congratulations there...\n\n40) Teraphim: Sacrifice Y1 Ol\nMove R2 Lo Mistermorn\n\tTeraphim: You flatter yourself! I've overseen the assimilition of countless millions. You were no different! \n\n41) MisterMorn: Build R1 Mistermorn\n\n42) Teraphim: Sacrifice R3 Angelfood\nAttack R1N Mistermorn\nAttack R1N Mistermorn\nAttack B1N Mistermorn\n\tTeraphim: I am the beginning. The end. The one who is many. I am the Borg. \n\tTeraphim: And ow so are you.\n\tTeraphim: And os so are you.\n\tTeraphim: And now so are you.\n\tTeraphim: Resistance was futile. \n\tMisterMorn: Exercises in futility are still a good workout.\n\tTeraphim: This game has now concluded due to Assimilition OF ALL OPPOSITION. The winner was the Borg King.\n\n\nHomeworlds Online (SDG# 10020)\nStarted: 2007.12.8, Ended: 2007.12.8\nParticipants: Teraphim (S), CakePan (N)\nWinner: Teraphim\n\n1) CakePan: Homeworld G3 B1 Y3\n\tCakePan: Why do I always seem to go first? I pick "random" when I set the rules, and, so, I assume, did you...\n\n2) Teraphim: Homeworld Y2 G2 R3 *\n\n3) CakePan: Build Y1 Cakepan\n\tTeraphim: idk just bad luck for me?\r\n\n\n4) Teraphim: Build R1 Teraphim\n\n5) CakePan: Build Y1 Cakepan\n\n6) Teraphim: Move R3 Teraphim Cakepan\n\n7) CakePan: Move Y3 Cakepan Teraphim\n\n8) Teraphim: Attack Y1N Cakepan\n\n9) CakePan: Build Y1 Cakepan\n\n10) Teraphim: Sacrifice R3 Cakepan\nAttack Y1N Cakepan\nAttack Y1N Cakepan\nPass\n\tCakePan: I know it's over, but I'm going to keep struggling, out of penalty for you making such a short game.\n\tTeraphim: Resistance is futile.\n\tCakePan: Yes. Yes it is. But, as I've said, exercises in futility still burn calories.\n\n\nHomeworlds Online (SDG# 10016)\nStarted: 2007.12.9, Ended: 2007.12.13\nParticipants: MikeYarrum (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 R3\n\n\nHomeworlds Online (SDG# 10030)\nVariants: "No undo, Hard time"\nStarted: 2007.12.9, Ended: 2007.12.18\nParticipants: CakePan (S), Borg_King (N)\nWinner: CakePan\n\n1) Borg_King: Homeworld R2 G1 Y3 *\n\n2) CakePan: Homeworld R3 B2 G3\n\n3) Borg_King: Build Y1 Borg_king\n\tCakePan: Attention all units! The Borg has entered the galaxy! Repeat, the Borg has entered the Galaxy! Prepare defensive measures immediately!\n\tBorg_King: We are the Borg. Lower your shields and prepare to be assimilated. \n\n4) CakePan: Build G1 Cakepan\n\n5) Borg_King: Discover Y1 Borg_king B3 One\n\n6) CakePan: Trade G1 Y1 Cakepan\n\n7) Borg_King: Trade Y1 B1 One\n\n8) CakePan: Build G1 Cakepan\n\tBorg_King: All drones report to terminals for regeneration. I am the one who is many and the many who are one. Now rest.\n\tCakePan: (was that a mistake?)\n\n9) Borg_King: Build Y1 Borg_king\n\n10) CakePan: Discover G1 Cakepan B1 Redvelvet\n\n11) Borg_King: Move Y1 Borg_king One\n\n12) CakePan: Build G1 Redvelvet\n\n\nHomeworlds Online (SDG# 10081)\nVariants: "Hard time"\nStarted: 2007.12.17, Ended: 2008.1.18\nParticipants: sordros (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B3 Y1 G3\n\n2) sordros: Homeworld B1 Y2 G3\n\tKeith: Hello Sordos. Thank you for accepting my challenge.\n\n3) Keith: Build G1 Keith\n\tsordros: Hi Keith. You are welcome. Good luck!\n\n4) sordros: Build G1 Sordros\n\n5) Keith: Trade G1 Y1 Keith\n\n6) sordros: Trade G1 B1 Sordros\n\n7) Keith: Build Y1 Keith\n\n8) sordros: Build B1 Sordros\n\n9) Keith: Discover Y1 Keith G2 Midori\n\n10) sordros: Discover B1 Sordros G3 Verdego\n\n11) Keith: Build Y2 Keith\n\n12) sordros: Build B2 Verdego\n\n13) Keith: Build Y2 Midori\n\n14) sordros: Discover B1 Sordros Y3 Flavega\n\tKeith: Whew. Bad typo, wrong system.\n\n15) Keith: Build Y3 Midori\n\tsordros: That was close :-)\n\n16) sordros: Build G1 Sordros\n\n17) Keith: Trade Y2 B2 Keith\n\n18) sordros: Trade B2 Y2 Verdego\n\n19) Keith: Move Y1 Midori Verdego\n\n20) sordros: Build B2 Verdego\n\tKeith: That was probably a mistake on my part, letting you break into yellow ships. Good pickup on that opening.\n\n21) Keith: Build Y3 Keith\n\tsordros: Thanks, but only time will tell if it is a mistake. Let's see what happens next.\n\n22) sordros: Trade B1 R1 Verdego\n\n23) Keith: Sacrifice Y1 Keith\nMove Y2 Midori Verdego\n\n24) sordros: Attack Y2 Verdego\n\n25) Keith: Build Y1 Verdego\nCatastrophe Verdego Yellow\n\n26) sordros: Build G1 Sordros\n\tKeith: Now you will see why I sacrificed a yellow ship to move a yellow ship.\n\n27) Keith: Sacrifice Y3 Midori\nDiscover G3 Keith G2 Midworld\nMove G3 Midworld Flavega\nMove G3 Flavega Sordros\nCatastrophe Sordros Green\n\tsordros: Very clever. I didn't see that coming.\n\n\tKeith: Alas, I don't think you saw this next thing coming either. Though I have dragged my feet before taking my turn on the off chance you would look over the board and catch it.\n\tKeith: With a yellow 3-pointer I could sacrifice and reach any system on the board from any other system. So any system with three of the same color was subject to catastrophe.\r\n\r\nThank you very much for taking up my challenge. Three others before you did not. \r\n\r\nI feel a bit bad about playing hardball though such is the nature of a ladder game. Had this been an unrated game I would have offered a warning and encouraged you to redo your move.\n\tsordros: You are right, I didn't see that coming either. \r\nDon't feel bad about winning a game if you are following all the rules! I am the one that should apologize for not providing a suitable challenge!\r\nThanks for the game, and good luck climbing up the charts.\n\tKeith: It is the nature of the ladder system to create some mis-matches since newcomers to the ladder always start at the bottom. No need to be concerned about your level of challenge. Homeworlds has a lot of learning curve. FWIW I beat Zoltar once using your grab the blue strategy while he used my grab the yellow strategy. So your approach was viable.\n\nHomeworlds Online (SDG# 10022)\nStarted: 2007.12.17, Ended: 2008.1.18\nParticipants: kreiger (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 10032)\nStarted: 2008.1.2, Ended: 2008.4.11\nParticipants: loopywolf (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 10159)\nStarted: 2008.1.2, Ended: 2008.1.2\nParticipants: MikeYarrum (S), loopywolf (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 10105)\nStarted: 2008.1.6, Ended: 2008.1.19\nParticipants: ts52 (S), MatrixFrog (N)\nWinner: ts52\n\n1) MatrixFrog: Homeworld G3 B2 Y3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) ts52: Build G1 Ts52\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\tts52: Have a good game!\n\n6) ts52: Build G1 Ts52\n\n7) MatrixFrog: Discover Y1 Matrixfrog G1 Zoop\n\n8) ts52: Discover G1 Ts52 B3 Grover\n\n9) MatrixFrog: Build Y1 Zoop\n\n10) ts52: Build G2 Grover\n\n11) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n12) ts52: Trade G2 Y2 Grover\n\n13) MatrixFrog: Discover Y1 Zoop B3 Zeep\n\n14) ts52: Build G2 Grover\n\n15) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y2 Zeep\nBuild Y3 Matrixfrog\nBuild Y3 Zoop\n\n16) ts52: Build Y3 Grover\n\n17) MatrixFrog: Trade Y2 G2 Zeep\n\n18) ts52: Discover G2 Grover Y2 Sol\n\n19) MatrixFrog: Move G2 Zeep Ts52\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Sol\nBuild G3 Ts52\n\n21) MatrixFrog: Trade G2 R2 Ts52\n\n22) ts52: Trade G2 R2 Grover\n\n23) MatrixFrog: Attack G1 Ts52\n\n24) ts52: Sacrifice R2 Grover\nAttack R2 Ts52\nAttack G1 Ts52\n\n25) MatrixFrog: Trade Y3 B3 Matrixfrog\n\n26) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Sol\nBuild G3 Ts52\n\n27) MatrixFrog: Build Y3 Matrixfrog\n\n28) ts52: Trade G2 B2 Grover\n\n29) MatrixFrog: Move Y3 Zoop Zeep\n\n30) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild R1 Ts52\n\n31) MatrixFrog: Trade Y1 R1 Zeep\n\n32) ts52: Discover G2 Grover Y1 Zoe\n\n33) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n34) ts52: Move G2 Sol Zoe\n\n35) MatrixFrog: Build Y1 Zoop\n\n36) ts52: Move B2 Grover Zoe\n\n37) MatrixFrog: Build R2 Matrixfrog\n\n38) ts52: Move R2 Ts52 Grover\n\n39) MatrixFrog: Move Y1 Zoop Zeep\n\n40) ts52: Move G2 Sol Zoe\n\n41) MatrixFrog: Sacrifice Y3 Zeep\nMove Y1 Zoop Grover\nDiscover Y1 Zeep R2 Flash\nMove Y1 Flash Grover\nCatastrophe Grover Y\n\n42) ts52: Build G1 Sol\n\tMatrixFrog: Homeworld: safe. For now. Presence throughout the galaxy: decimated.\r\n\r\nHopefully that will prove to have been "worth it"\n\n43) MatrixFrog: Trade R1 Y1 Zeep\n\n44) ts52: Build R1 Grover\n\n45) MatrixFrog: Build Y1 Matrixfrog\n\n46) ts52: Trade R2 Y2 Grover\n\n47) MatrixFrog: Build Y3 Matrixfrog\n\n48) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Grover\nBuild B1 Zoe\n\n49) MatrixFrog: Discover B3 Matrixfrog B1 Llama\n\n50) ts52: Sacrifice Y3 Grover\nMove G2 Zoe Matrixfrog\nMove G2 Zoe Matrixfrog\nMove G2 Zoe Matrixfrog\nCatastrophe Matrixfrog Green\n\n51) MatrixFrog: Move R2 Matrixfrog Zoe\n\n52) ts52: Sacrifice R1 Grover\nAttack R2 Zoe\n\n53) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n54) ts52: Sacrifice Y2 Grover\nMove B2 Zoe Matrixfrog\nMove B1 Zoe Matrixfrog\n\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 9947)\nVariants: "Hard time"\nStarted: 2008.1.6, Ended: 2008.1.8\nParticipants: cheinzmann (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tTwoShort: Howdy.\n\n2) cheinzmann: Homeworld B1 G3 R3\n\n\n3) TwoShort: Build G1 Twoshort\n\tcheinzmann: Never played before, have my sets at home but want to learn. Please be patient\n\tTwoShort: No problem. I'm always happy to teach new players. Lesson 1: Don't start with a red ship... :) Red isn't useful until we're in range of each other.\n\n4) cheinzmann: Trade R3 Y3 Cheinzmann\n\n5) TwoShort: Build G1 Twoshort\n\n6) cheinzmann: Discover Y3 Cheinzmann G2 Grogg\n\tcheinzmann: Oops I should have built another ship or two\n\tcheinzmann: I am willing to try again if you dont mind.\n\tTwoShort: I thought that it wouldn't let you do that. Well, in any case, I'm happy to start again...\n\n\nHomeworlds Online (SDG# 10210)\nVariants: "Hard time"\nStarted: 2008.1.8, Ended: 2008.2.3\nParticipants: cheinzmann (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) cheinzmann: Homeworld Y1 B3 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) cheinzmann: Build G1 Cheinzmann\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) cheinzmann: Build G1 Cheinzmann\n\n7) TwoShort: Build Y1 Twoshort\n\n8) cheinzmann: Trade G3 Y3 Cheinzmann\n\n9) TwoShort: Build Y2 Twoshort\n\n10) cheinzmann: Build G1 Cheinzmann\n\n11) TwoShort: Build G2 Twoshort\n\n12) cheinzmann: Discover Y3 Cheinzmann G2 Grogg\n\n13) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n14) cheinzmann: Trade G1 R1 Cheinzmann\n\tTwoShort: Check.\n\n15) TwoShort: Build G1 Twoshort\n\tcheinzmann: Why can't I build a G2 ship in Grogg, and how do I attack if necessary?\n\tTwoShort: You can only build a ship of the same color as a ship you have in the system, (the star being green means you can grow there, but not that you can grow green). To attack, you need access to red (a red ship or star) in a system containing a ship of mine, and a ship of yours as big as mine or bigger. \r\n Finally, you ought to undo that move. With 4 of the same color in a system, I can call a catastrophe and since it's your homeworld, and that's all that's there, you'll lose. I said "Check" to indicate that I would win on the next turn if you didn't stop me. Even with just 3 greens, I could sacrifice my y2 to move my g2 twice into your Homeworld to trigger the catastrophe.\n\n16) cheinzmann: Build G2 Cheinzmann\n\tcheinzmann: thanks!\n\tcheinzmann: probably should have built a Y2\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\tTwoShort: Well, you probably shouldn't have moved your 3 pointer out of your Homeworld; typically, that never happens before you get another big piece. If I get a piece in your Homeworld (like my g2), you need a piece the same size or bigger to attack it. It's not threat this turn because I don't have a red of my own to sacrifice, so my g2 would just sit there. In general, "Always have a 3 pointer at home" is one of the more bedrock maxims of Homeworlds strategy.\n\n18) cheinzmann: Move G1 Cheinzmann Grogg\n\tTwoShort: So again I could blow up your greens in exchange for my y2 & g2. But instead I'm going demonstrate a key tactic, called "the factory"...\n\n19) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Yolonda Grogg\nMove G2 Yolonda Grogg\nCatastrophe Grogg Green\n\tcheinzmann: So by doing a sacrifice of you G3, you get 3 actions points then you built 3 ships with that.\n\tcheinzmann: I will read up on catastrophe not sure how it works. Let me try a smaller factory\n\n20) cheinzmann: Trade G2 Y2 Cheinzmann\n\n21) TwoShort: Trade G3 Y3 Twoshort\n\tTwoShort: Catastrophe: At the end of your turn, if any system has 4 or more pieces of the same color (including both players ships and the star(s)) you can trigger a catastrophe, which removes all pieces of the relevant color from that system. If one of the pieces was the (only) star, any remaining ships are going to go away too. Despite red being "attack", causing catastrophes to blow up your opponents ships is frequently the dominant offensive mechanic of the game.\r\n For example... :)\n\n22) cheinzmann: Build Y2 Cheinzmann\n\tcheinzmann: You forgot to say "This will hurt me a lot more than it does you".\n\n23) TwoShort: Trade G3 R3 Twoshort\n\n24) cheinzmann: Build G1 Cheinzmann\n\n25) TwoShort: Sacrifice Y3 Twoshort\nDiscover Y1 Twoshort R3 Boom\nDiscover Y1 Boom R2 Boomboom\nMove Y1 Boomboom Cheinzmann\nCatastrophe Cheinzmann Yellow\n\n26) cheinzmann: Trade G1 Y1 Cheinzmann\n\n27) TwoShort: Build G1 Twoshort\n\tTwoShort: This will hurt you a lot more than it does me...\n\n28) cheinzmann: Build G2 Cheinzmann\n\tcheinzmann: holy crap\n\n29) TwoShort: Discover G1 Twoshort B3 Backup\n\n30) cheinzmann: Discover Y1 Cheinzmann Y2 Newone\n\n31) TwoShort: Build G2 Backup\n\n\nHomeworlds Online (SDG# 10231)\nStarted: 2008.1.9, Ended: 2008.1.18\nParticipants: peterh (S), icheyne (N)\nWinner: peterh\n\n1) icheyne: Homeworld B1 G2 Y3\n\ticheyne: This game is a weird one. Here goes...\n\n2) peterh: Homeworld G2 Y3 B3\n\n3) icheyne: Discover Y3 Icheyne G3 Oddball\n\tpeterh: Yes indeed - I've always wanted to play this FTF, this is next best thing\n\ticheyne: Sorry for the delay, but I've been away...\n\n\nHomeworlds Online (SDG# 10160)\nStarted: 2008.1.9, Ended: 2008.1.12\nParticipants: random56 (S), MikeYarrum (N)\nWinner: random56\n\n\nHomeworlds Online (SDG# 10017)\nVariants: "Unrated, Hard time"\nStarted: 2008.1.9, Ended: 2008.1.12\nParticipants: scottobear (S), smilingra (N)\nWinner: smilingra\n\n1) smilingra: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 10241)\nStarted: 2008.1.10, Ended: 2008.1.22\nParticipants: airbender (S), random56 (N)\nWinner: random56\n\n1) random56: Homeworld G3 B2 R3\n\n2) airbender: Homeworld G3 B1 R3\n\n3) random56: Build R1 Random56\n\n4) airbender: Build R1 Airbender\n\n\n5) random56: Trade R1 Y1 Random56\n\n6) airbender: Build R1 Airbender\n\n7) random56: Discover R3 Random56 G1 Otown\n\n8) airbender: Trade R1 Y1 Airbender\n\n9) random56: Build Y1 Random56\n\n10) airbender: Build Y2 Airbender\n\n11) random56: Build Y2 Random56\n\n12) airbender: Trade Y2 R2 Airbender\n\n13) random56: Move Y1 Random56 Otown\n\n14) airbender: Build Y2 Airbender\n\n15) random56: Sacrifice Y2 Random56\nDiscover R3 Otown Y2 Monkey\nMove R3 Monkey Airbender\nCatastrophe Airbender R\n\n16) airbender: Trade Y2 R2 Airbender\n\n17) random56: Build Y2 Random56\n\n18) airbender: Build Y2 Airbender\n\trandom56: the jedi are going to feel that one ( and a many red were lost)\n\n19) random56: Trade Y2 R2 Random56\n\n20) airbender: Discover R2 Airbender Y2 Zombiezone\n\n21) random56: Build R1 Random56\n\n22) airbender: Move R2 Zombiezone Otown\n\n23) random56: Build Y2 Random56\n\n24) airbender: Attack Y1 Otown\n\n25) random56: Discover Y1 Random56 G1 O-ma-cron\n\n26) airbender: Trade Y2 R2 Airbender\n\n27) random56: Build Y2 O-ma-cron\n\n28) airbender: Build R1 Airbender\n\n29) random56: Trade Y2 G2 Random56\n\n30) airbender: Build R1 Otown\n\n31) random56: Sacrifice Y1 O-ma-cron\nMove R1 Random56 O-ma-cron\n\n32) airbender: Discover R1 Otown Y2 Fafsa\n\n33) random56: Build R3 O-ma-cron\n\n34) airbender: Build R3 Otown\n\n35) random56: Build R3 Random56\n\n\tairbender: this takes too long I kinda lost interest\n\trandom56: do you not want toplay anymore ?????\n\nHomeworlds Online (SDG# 10033)\nVariants: "Hard time"\nStarted: 2008.1.12, Ended: 2008.1.12\nParticipants: Jesse (S), coleman (N)\nWinner: Jesse\n\n\nHomeworlds Online (SDG# 10256)\nVariants: "Hard time"\nStarted: 2008.1.14, Ended: 2008.1.24\nParticipants: smilingra (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B3 G3\n\tJesse: Hello. Welcome to SDG, and have a good game.\n\n2) smilingra: Homeworld G1 B2 Y3\n\n3) Jesse: Build G1 Jesse\n\n4) smilingra: Build Y1 Smilingra\n\n5) Jesse: Build G1 Jesse\n\tsmilingra: Thanks for playing - this is my first game, so I'm interested to see how it will turn out!\n\tJesse: Let me know if you have any questions. I'm happy to help.\n\n6) smilingra: Discover Y1 Smilingra G3 Alpha\n\n7) Jesse: Trade G3 Y3 Jesse\n\n8) smilingra: Trade Y3 G3 Smilingra\n\tJesse: This may be a little advanced, but notice how trading my large for a yellow, rather than one of my smalls, has done a couple of things. It allows me to shortly start building medium sized ships, and makes it difficult for you to get into the green economy. See if you can figure out why I was able to do this, and you were not in a position to do the same thing with yellow.\n\tsmilingra: trade y3 g3 smilingra\n\n9) Jesse: Discover G1 Jesse B2 Broog\n\tsmilingra: I understand how you can build medium sized ships, but I don't know how it makes it hard to get me into the green economy, as well as why I'm not in the same position with yellow.\n\tJesse: If you now build a green ship in your homeworld, there will be 3 green pieces there. One more, and it's an overpopulation. I could sacrifice my Y3 to fly in a green piece and cause a catastrophe which costs you your defense and half your system. If you didn't first get a ship of a different color there before this even happened, it would immediately cost you the game. This is why trading your large ship for a green doesn't get you into the green economy easily.\n\tJesse: You would do better to build green ships away from your homeworld, due to having a green system marker. If you had a medium yellow there, it would be reasonable to trade it for a green, then move it to another system so you won't be in danger of a catastrophe when you try to build more greens. The problem here is that there are still 2 more small yellows to build before you can even get a medium yellow piece to trade for green, and meanwhile I'll be building medium green ships. (You generally don't want to move your large ship away from your homeworld, if you can help it, because it leaves you undefended. You might try it briefly, to make another green piece, but it's risky, and you'll definitely need another ship there, first.) So, it's hard to get into green without trading your large, too.\n\tJesse: There's nothing wrong with a blue-green homeworld, by the way. You just need to be aware that you don't want to keep green pieces there any more than you have to, just as I don't want to keep blue or red pieces in my homeworld.\n\tJesse: Where your homeworld choice is problematic is that your small system marker is the same color as my initial ship. That means it only takes two builds for me to exhaust the small green pieces, and there's very little you can do about it.\n\tJesse: Is that instructive, or just overloading you?\n\tJesse: disc g1 b2 Broog\n\n10) smilingra: Build Y1 Alpha\n\tJesse: Arr. Not only the wrong syntax, but the wrong place as well. How embarrassing. XD\n\n11) Jesse: Build G2 Broog\n\tsmilingra: Actually, it does make sense. I totally forgot that you could move in a fourth piece of a given color and cause a catastrophe. I doubt that I'm going to win this game, but I'll chalk it up to a valuable learning experience. :)\n\tJesse: You should be prepared to have continuing valuable learning experiences for a long time to come. I know I still do.\n\n12) smilingra: Move Y1 Alpha Smilingra\n\n13) Jesse: Trade G2 Y2 Broog\n\tsmilingra: Thanks for the pointers - keep 'em coming!\n\n14) smilingra: Discover G3 Smilingra R3 Gamma\n\tJesse: This move diversifies my holdings at Broog, and gives me greater mobility. Y2s are nice, because they extend your reach with a piece that you can sacrifice a lot more easily than a large, especially early on. This also leaves the last Y1 still in the pool, so if you build it, I can grab another Y2 directly. (And if you grabbed the other, a large would be available for me.)\n\tJesse: If you would like a sporting chance, I'll give you the opportunity to build a G2 in your home system. Instead of immediately smashing you, I'll make a build of my own to give you the opportunity to fix your green concentration.\n\n15) Jesse: Build G2 Broog\n\tsmilingra: Thanks for the offer, but I'm going to still make the move I wanted to, just to see how it will pan out. I'm just stubborn that way. :)\n\tsmilingra: Still, if you'd like to prolong my demise, you could point out how you could blow me away. :)\n\tJesse: If you'd rather play it out straight up, that is absolutely fine by me. I was referring to blowing you away if you just built a green in your home system. I cannot immediately blow you away, in the current position.\n\n16) smilingra: Build Y1 Smilingra\n\tJesse: Although, now that I have a second green ship one step from Gamma, if you build another green there I can blow your green ships away at the cost of everything at Broog. Leaving you without a large ship would be quite advantageous, even if it doesn't take out half your home system.\n\tJesse: It's worth noting additionally that it is quite dangerous to leave your home system without the defense of a large ship. Consider what happens when I now sacrifice my Y2 to move my G2 into your system.\n\n17) Jesse: Build Y2 Jesse\n\tsmilingra: I'm now beginning to understand how using up the supply of small ships is critical. At this point, I can see that I'm in big trouble.\n\tsmilingra: Although, my system is not connected to Broog, so your g2 can't get to my system, correct?\n\tJesse: Broog is two steps from your home system, so I would have to sacrifice the Y2.\n\n18) smilingra: Build Y2 Alpha\n\n19) Jesse: Build Y3 Broog\n\tsmilingra: Ah, it had not occurred to me that you could move one ships twice. I think I'm learning something on every move! :)\n\tJesse: Yup, you get N completely independent actions to use when you sacrifice. Also note that the sacrificed ship goes back into the pool before you do any of the actions.\n\n20) smilingra: Move Y1 Smilingra Gamma\n\tJesse: Notice that with two yellow ships in each of your systems with yellows, building the remaining Y3 will put you close to an overconcentration.\n\n21) Jesse: Trade G2 R2 Broog\n\tsmilingra: Yes, I'm painfully aware of that. :)\n\tJesse: Just making sure. Now, what's the next lesson? Hmm...\n\tJesse: The Banker is tempting, taking that Y3 out of circulation by sending my g2 to a Y3 system. That would work towards increasing my material advantage. But I think, actually, a sharper threat is in order. Something to drive home the importance of keeping your home system protected.\n\n22) smilingra: Build Y3 Smilingra\n\tJesse: Hmm, I should have traded the Y2, instead, to keep the Y3 in the stash one more step away. In any case, there are two important proverbs that apply here: Never leave your homeworld undefended; and, When your opponent picks up a gun, you must pick up a gun. You can take care of either one with one turn, but not both. After my next turn, you will likely find yourself with my Y3 in your home system, ready to capture two ships with the sacrifice of the R2. What you would like very much to have is a large ship and a red of your own there, to capture it first. But since you can only get one of those things, you're a move behind.\n\n23) Jesse: Sacrifice Y2 Jesse\nMove Y3 Broog Alpha\nMove Y3 Alpha Smilingra\n\n24) smilingra: Trade Y3 R3 Smilingra\n\tsmilingra: Yes, you've made it *painfully* obvious that I need to defend my homeworld. I know that I need to have a large ship in my homeworld area; otherwise, you can take me over. At least I recognized (thanks to your comment) that I can build a y3 there, thus allowing me to have two large ships. I at least get to hang on for a couple more turns this way. :)\n\n25) Jesse: Sacrifice R2 Broog\nAttack R3 Smilingra\nAttack Y1 Smilingra\n\n\tJesse: So, now you see where being a move late in picking up a gun can kill you. Not a bad first game, especially given that you stumbled into that problem early on with the greens, which I would not expect a new player to see coming anyway. If you want another game, you're welcome to it.\n\tJesse: By the way, I think the move you could have made to last the longest would have been: Sacrifice your Y2. Move your G3 and a Y1 into your home system. Trigger a yellow catastrophe, wiping out my attacking Y3. That leaves you with just a G3 and a Y1, and the same trouble developing that you had before, but it would take me a few turns to get into a position in which I could attack again.\n\tsmilingra: Thanks for all the pointers! I'm going to accept a new challenge. I was wondering about how to prolong the game - I hadn't thought about the catastrophe!\n\nHomeworlds Online (SDG# 10294)\nVariants: "Unrated"\nStarted: 2008.1.20, Ended: 2008.1.20\nParticipants: axeman (S), pete_asman (N)\nWinner: pete_asman\n\n1) pete_asman: Homeworld B2 G1 Y3\n\n2) axeman: Homeworld G2 B1 Y3\n\n3) pete_asman: Build Y1 Pete_asman\n\n4) axeman: Build Y1 Axeman\n\n5) pete_asman: Trade Y3 R3 Pete_asman\n\n6) axeman: Discover Y1 Axeman G3 Ds9\n\n7) pete_asman: Move R3 Pete_asman Ds9\n\n8) axeman: Trade Y3 R3 Axeman\n\n9) pete_asman: Attack Y1 Ds9\n\n10) axeman: Build R1 Axeman\n\n11) pete_asman: Build R1 Ds9\n\n12) axeman: Build R1 Axeman\n\n13) pete_asman: Move R3 Ds9 Axeman\nCatastrophe Axeman R\n\n\nHomeworlds Online (SDG# 10295)\nVariants: "Unrated"\nStarted: 2008.1.20, Ended: 2008.2.17\nParticipants: pete_asman (S), axeman (N)\nWinner: axeman\n\n1) axeman: Homeworld G1 B2 R3\n\n2) pete_asman: Homeworld G1 B2 Y3\n\n3) axeman: Build R1 Axeman\n\n4) pete_asman: Build Y1 Pete_asman\n\n5) axeman: Trade R1 Y1 Axeman\n\n6) pete_asman: Trade Y3 R3 Pete_asman\n\n7) axeman: Build Y1 Axeman\n\n8) pete_asman: Build Y2 Pete_asman\n\n9) axeman: Build Y2 Axeman\n\n10) pete_asman: Discover Y1 Pete_asman G3 Sol\n\n11) axeman: Trade Y2 R2 Axeman\n\n12) pete_asman: Build Y2 Pete_asman\n\n13) axeman: Trade Y1 B1 Axeman\n\n14) pete_asman: Build R1 Pete_asman\n\n15) axeman: Build B1 Axeman\n\n16) pete_asman: Move R3 Pete_asman Sol\n\n17) axeman: Trade B1 Y1 Axeman\n\n18) pete_asman: Build R1 Sol\n\n19) axeman: Build Y2 Axeman\n\n20) pete_asman: Sacrifice Y2 Pete_asman\nMove R1 Sol Axeman\nMove R3 Sol Axeman\nCatastrophe Axeman R\n\n21) axeman: Trade Y2 R2 Axeman\n\n22) pete_asman: Build Y2 Pete_asman\n\n23) axeman: Move R2 Axeman Sol\n\n24) pete_asman: Move Y1 Sol Pete_asman\n\n25) axeman: Move Y1 Axeman Sol\n\n26) pete_asman: Trade Y2 R2 Pete_asman\n\n27) axeman: Build Y2 Sol\n\n28) pete_asman: Discover R2 Pete_asman Y3 Alphac\n\n29) axeman: Move R2 Sol Axeman\n\n30) pete_asman: Trade Y1 B1 Pete_asman\n\n31) axeman: Move Y2 Sol Axeman\n\n32) pete_asman: Build R1 Pete_asman\n\n33) axeman: Trade Y2 R2 Axeman\n\n34) pete_asman: Build B1 Pete_asman\n\n35) axeman: Build Y1 Sol\n\n36) pete_asman: Build Y2 Pete_asman\n\n37) axeman: Build Y2 Axeman\n\n38) pete_asman: Move Y2 Pete_asman Alphac\n\n39) axeman: Sacrifice Y2 Axeman\nMove B1 Axeman Sol\nMove B1 Sol Pete_asman\nCatastrophe Pete_asman Blue\n\n40) pete_asman: Discover Y2 Alphac B2 Betazed\n\n41) axeman: Move R2 Axeman Sol\n\n42) pete_asman: Build Y2 Pete_asman\n\n43) axeman: Move R2 Sol Pete_asman\n\n44) pete_asman: Attack R2 Pete_asman\n\n45) axeman: Build Y3 Axeman\n\n46) pete_asman: Sacrifice Y2 Pete_asman\nMove R1 Pete_asman Alphac\nMove R1 Pete_asman Betazed\n\n47) axeman: Trade Y3 R3 Axeman\n\n48) pete_asman: Sacrifice Y2 Betazed\nMove R1 Alphac Axeman\nMove R2 Alphac Axeman\nCatastrophe Axeman R\n\n49) axeman: Build Y2 Axeman\n\n50) pete_asman: Build R1 Pete_asman\n\n51) axeman: Trade Y2 R2 Axeman\n\n52) pete_asman: Build Y2 Pete_asman\n\n53) axeman: Build Y2 Axeman\n\n54) pete_asman: Move Y2 Pete_asman Betazed\n\n55) axeman: Build R1 Axeman\n\n56) pete_asman: Move R2 Pete_asman Sol\n\n57) axeman: Build Y3 Sol\n\n58) pete_asman: Move Y2 Betazed Sol\nCatastrophe Sol Y\n\n59) axeman: Discover Y1 Axeman B3 Backwater\n\n60) pete_asman: Build Y1 Pete_asman\n\n61) axeman: Move R2 Axeman Backwater\n\n62) pete_asman: Trade R1 B1 Betazed\n\n63) axeman: Move R2 Backwater Betazed\n\n64) pete_asman: Sacrifice Y1 Pete_asman\nMove B1 Betazed Pete_asman\n\n65) axeman: Build Y1 Axeman\n\n66) pete_asman: Build Y1 Pete_asman\n\n67) axeman: Sacrifice Y1 Axeman\nMove R2 Betazed Backwater\n\n68) pete_asman: Build R1 Pete_asman\n\n69) axeman: Build Y1 Axeman\n\n70) pete_asman: Move Y1 Pete_asman Sol\n\n71) axeman: Trade Y1 G1 Axeman\n\n72) pete_asman: Build B1 Pete_asman\n\n73) axeman: Move G1 Axeman Backwater\n\n74) pete_asman: Move B1 Pete_asman Sol\n\n75) axeman: Build G2 Backwater\n\n76) pete_asman: Build R2 Sol\n\n77) axeman: Build G2 Backwater\n\n78) pete_asman: Discover R2 Sol Y2 Sigma957\n\n79) axeman: Move G1 Backwater Pete_asman\n\n80) pete_asman: Build R3 Sol\n\n81) axeman: Sacrifice Y2 Axeman\nMove G2 Backwater Pete_asman\nMove G2 Backwater Pete_asman\nCatastrophe Pete_asman Green\n\n\nHomeworlds Online (SDG# 10292)\nStarted: 2008.1.21, Ended: 2008.1.30\nParticipants: ts52 (S), wmreed (N)\nWinner: ts52\n\n1) wmreed: Homeworld G2 B1 R3\n\n2) ts52: Homeworld B2 Y3 G3\n\twmreed: Hello!\r\n\r\n\n\tts52: Hi! Have a good game!\n\n3) wmreed: Build R1 Wmreed\n\n4) ts52: Build G1 Ts52\n\twmreed: Thanks! You, too. Are you a fan of LooneyLabs games?\n\n5) wmreed: Build R1 Wmreed\n\tts52: I am. I used to go to Origins every year and demo for them. But life's gotten in the way the past couple years.\n\twmreed: Cool. I go to Origins every year myself. I spend a lot of time in the Big Experiment room. \n\n6) ts52: Trade G1 R1 Ts52\n\n7) wmreed: Trade R1 Y1 Wmreed\n\n8) ts52: Build G1 Ts52\n\n9) wmreed: Build Y1 Wmreed\n\n10) ts52: Build G1 Ts52\n\n11) wmreed: Discover Y1 Wmreed G3 Ballard\n\tts52: Cool, if you were there in 2005-2002 we've probably met!\n\twmreed: I was thinking the same thing. Are you planning on attending this summer?\n\n12) ts52: Discover G1 Ts52 B1 Grover\n\n13) wmreed: B Y1 Wmreed\n\n14) ts52: Build G1 Grover\n\n15) wmreed: Build Y2 Wmreed\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Ts52\nBuild G3 Ts52\n\n17) wmreed: Trade R3 G3 Wmreed\n\n\twmreed: THAT was a beautiful play.\n\n18) ts52: Trade G2 Y2 Grover\n\n19) wmreed: Trade Y1 B1 Wmreed\n\tts52: Thanks. I've been on the other end of it too many times...\n\n20) ts52: Build G2 Grover\n\n21) wmreed: B B2 Wmreed\n\n22) ts52: Trade G2 B2 Grover\n\n23) wmreed: Build G2 Wmreed\n\n24) ts52: Sacrifice Y2 Grover\nMove B2 Grover Ballard\nMove B2 Ballard Wmreed\nCatastrophe Wmreed Blue\n\n25) wmreed: S G3 Wmreed\nBuild R1 Wmreed\nBuild Y1 Ballard\nBuild G3 Wmreed\n\twmreed: I knew I shouldn't be playing when I'm sick. How did I miss that when I was specifically watching for the double jump catastrophe?! Nice play. \n\n26) ts52: Trade G2 Y2 Ts52\n\n27) wmreed: Discover Y1 Wmreed B3 Frances\n\tts52: Thanks, I was a bit surprised you left it there.\r\nSorry to hear your sick, colds suck.\n\n28) ts52: Sacrifice Y2 Ts52\nMove G1 Grover Wmreed\nMove G1 Grover Wmreed\nCatastrophe Wmreed Green\n\tts52: Thanks for the game.\n\n\nHomeworlds Online (SDG# 10237)\nVariants: "Hard time"\nStarted: 2008.1.28, Ended: 2008.2.29\nParticipants: alexcobo (S), smilingra (W), Uglyfoot (N), spearjr (E)\nWinner: smilingra\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\tspearjr: Hope you all don't mind, this will be my first game of Homeworlds here at SDG. I've played 3 times in person so I'm not at a total loss, but I may have some trouble with the interface.\n\tsmilingra: No worries - I've only played one game ever. I'm excited to see how this work with 4 players. Good luck everyone, and thanks for accepting my invite!\n\n2) spearjr: Homeworld Y2 B1 G3\n\n3) alexcobo: Homeworld G3 B2 Y3\n\n4) smilingra: Homeworld Y1 B2 G3\n\talexcobo: This is my firts Homeworld game ever! :-)\r\nGood luck!\n\n5) Uglyfoot: Build G1 Uglyfoot\n\tsmilingra: Glad to see that everyone has taken their turn in a timely manner. I was a bit worried that since I sent out the challenge a couple of weeks ago, that someone might not actually play!\n\n6) spearjr: Build G1 Spearjr\n\tUglyfoot: Looks like we're all here! Have fun everyone.\n\n7) alexcobo: Build Y1 Alexcobo\n\n8) smilingra: Build G1 Smilingra\n\n9) Uglyfoot: Discover G1 Uglyfoot B1 Xchg\n\n10) spearjr: Discover G1 Spearjr Y3 Endor\n\n11) alexcobo: Discover Y1 Alexcobo G1 Ariel\n\tspearjr: With online play, do we have that whole good/evil thing going on, or just kill everyone else?\n\n12) smilingra: Discover G1 Smilingra B3 Beta\n\n13) Uglyfoot: Build G1 Uglyfoot\n\tsmilingra: We kill everyone else. This is last man standing, so you have to kill *everyone* else.\n\n14) spearjr: Build G2 Endor\n\n15) alexcobo: Build Y1 Alexcobo\n\n16) smilingra: Build G2 Beta\n\n17) Uglyfoot: Trade G1 Y1 Xchg\n\n18) spearjr: Build G1 Spearjr\n\n19) alexcobo: Build Y1 Ariel\n\n20) smilingra: Trade G2 Y2 Beta\n\n21) Uglyfoot: Move G1 Uglyfoot Xchg\n\n22) spearjr: Trade G1 B1 Spearjr\n\n23) alexcobo: Trade Y1 B1 Alexcobo\n\n24) smilingra: Build Y1 Beta\n\n25) Uglyfoot: Build Y2 Xchg\n\n26) spearjr: Move B1 Spearjr Endor\n\n27) alexcobo: Discover Y1 Ariel G3 Breta\n\n28) smilingra: Discover Y2 Beta G2 Gamma\n\n29) Uglyfoot: Build G1 Uglyfoot\n\n30) spearjr: Trade G2 Y2 Endor\n\n31) alexcobo: Trade B1 R1 Alexcobo\n\n32) smilingra: Build Y3 Beta\n\n33) Uglyfoot: Trade Y1 R1 Xchg\n\n34) spearjr: Build G2 Spearjr\n\n35) alexcobo: Build Y1 Ariel\n\n36) smilingra: Build Y3 Gamma\n\n37) Uglyfoot: Build Y3 Xchg\n\n38) spearjr: Build G2 Endor\n\n39) alexcobo: Move Y1 Ariel Beta\n\n40) smilingra: Trade Y3 R3 Beta\n\n41) Uglyfoot: Discover Y3 Xchg R3 Heat\n\n42) spearjr: Sacrifice Y2 Endor\nMove G1 Endor Smilingra\nMove G2 Endor Smilingra\n\n43) alexcobo: Build Y2 Ariel\n\n44) smilingra: Trade G3 R3 Smilingra\n\n45) Uglyfoot: Build Y3 Xchg\n\n46) spearjr: Build G2 Smilingra\n\tsmilingra: spearjr, what did I ever do to you? :)\n\n47) alexcobo: Build R1 Alexcobo\n\tspearjr: smilinigra -> Nothing, just saw an opportunity.\n\n48) smilingra: Sacrifice R3 Beta\nAttack G2E Smilingra\nAttack G1E Smilingra\nAttack G2E Smilingra\n\n49) Uglyfoot: Sacrifice Y2 Xchg\nMove G1 Xchg Beta\nMove G1 Beta Smilingra\nCatastrophe Smilingra G\n\n50) spearjr: Trade G2 Y2 Spearjr\n\n51) alexcobo: Move R1 Alexcobo Ariel\n\n52) smilingra: Build G1 Beta\n\n53) Uglyfoot: Move G1 Uglyfoot Xchg\n\n54) spearjr: Discover B1 Endor G1 Home\n\n55) alexcobo: Build Y3 Breta\n\n56) smilingra: Discover G1 Beta B2 Zeta\n\n57) Uglyfoot: Build G2 Uglyfoot\n\n58) spearjr: Build G2 Spearjr\n\n59) alexcobo: Sacrifice R1 Ariel\nAttack Y1W Beta\n\n60) smilingra: Build G2 Beta\n\n61) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Xchg\nBuild G3 Uglyfoot\nBuild R1 Xchg\n\talexcobo: Nothing personal...\n\n62) spearjr: Build G3 Spearjr\n\n63) alexcobo: Sacrifice Y2 Ariel\nMove Y1 Beta Spearjr\nMove Y1 Breta Spearjr\nCatastrophe Spearjr Y\n\tsmilingra: I know, but why does everyone have to come after *me*? :)\n\n64) smilingra: Trade G2 R2 Beta\n\n65) Uglyfoot: Sacrifice Y3 Xchg\nMove G2 Xchg Heat\nMove R1 Xchg Heat\nMove R1 Xchg Zeta\n\n66) spearjr: Trade G3 Y3 Spearjr\n\talexcobo: My palms are sweaty as I do this!\n\n67) alexcobo: Build Y1 Ariel\n\tspearjr: Boo\n\n68) smilingra: Sacrifice R2 Beta\nAttack Y1S Beta\nAttack R1N Zeta\n\n69) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Heat\nBuild G3 Xchg\nBuild G3 Uglyfoot\n\n70) spearjr: Build Y1 Spearjr\n\tsmilingra: double boo - I thought I could pass on it, since Uglyfoot would take care of it.\n\n71) alexcobo: Build Y2 Breta\n\tUglyfoot: My only defense is that I didn't want all those green ships in the supply just yet. If I cripple myself will my opponents give me time to recover? Nope, it is a competitive crowd.\n\n72) smilingra: Build Y2 Beta\n\n73) Uglyfoot: Build Y2 Heat\n\n74) spearjr: Discover G2 Spearjr B3 Tichu\n\n75) alexcobo: Move Y1 Ariel Beta\n\n76) smilingra: Trade Y1 R1 Beta\n\n77) spearjr: Sacrifice Y3 Spearjr\nMove G2 Tichu Home\nMove G2 Home Alexcobo\nDiscover B1 Home Y2 Fort\nCatastrophe Alexcobo Green\n\n78) alexcobo: Move R1 Alexcobo Ariel\n\n79) smilingra: Sacrifice Y3 Gamma\nMove R1 Zeta Heat\nMove R1 Beta Gamma\nMove R1 Gamma Heat\nCatastrophe Heat R\n\n80) Uglyfoot: Trade G2 R2 Uglyfoot\n\tUglyfoot: Hmm... The xchg system should have disappeared when I moved my last ship out of the system. It is a minor annoyance to this game but the <b1> should be back in supply.\n\tAaron: *sighs* I guess I really did blow something up with my change yesterday. I'll take a look asap.\n\tAaron: Let me know if anything else odd happens. Cheers!\n\n81) spearjr: Build G1 Spearjr\n\n82) alexcobo: Build R1 Ariel\n\talexcobo: Hmm. Lousy situation. Do I intercep the fleet at Heat or do I deal with the fleat at Homeworld?\r\nAlas! Homeworld security first!\n\n83) smilingra: Build G1 Zeta\n\n84) Uglyfoot: Move R2 Uglyfoot Ariel\n\tsmilingra: Please don't force Uglyfoot to surrender, as something went wrong and it now appears that he is out of time (when he in fact, is not). This is due to a bug in the system, it appears.\n\tAaron: Corrected.\n\tsmilingra: Thanks, Aaron. Also, alexcobo, I'm sure you'll appreciate my move. Uglyfoot probably does not. :p\n\talexcobo: Beautiful move! Your earned my gratitud for the rest of the game!\n\tUglyfoot: Wow. I had too many eggs in one basket. And yes, smilingra, that was a good move.\n\n85) spearjr: Build G2 Spearjr\n\talexcobo: I will be out for a few days, starting Saturday, due to a surgery I need to have done. I once saw an automated message for a player that went out for a few days. Do you know how to set up a message like that?\n\tsmilingra: Click on My SDG. When that page loads, scroll down to User Information for alexcobo (it's the first line in red). Below that, in small text, there are three links in parenthesis. The middle one is Manage Aways. Click on that and follow the instructions on the next page. Hope that the surgery goes well and you'll be back playing soon!\r\n\r\nThanks for the compliments on my move. I just hope that you won't return the favor. :)\n\n86) alexcobo: Move Y3 Breta Ariel\n\n87) smilingra: Build G2 Beta\n\n88) Uglyfoot: Build R1 Ariel\nCatastrophe Ariel R\n\n89) spearjr: Sacrifice G3 Spearjr\nBuild Y1 Spearjr\nBuild Y3 Spearjr\nBuild B1 Fort\n\n90) alexcobo: Build Y3 Breta\n\n91) smilingra: Build Y3 Gamma\n\n92) Uglyfoot: Build G2 Uglyfoot\n\n93) spearjr: Sacrifice Y3 Spearjr\nMove G2 Spearjr Uglyfoot\nMove G1 Spearjr Uglyfoot\nMove B1 Fort Ariel\nCatastrophe Uglyfoot G\n\tUglyfoot: Not really what I wanted to do but it'll have to do.\n\n94) alexcobo: Sacrifice Y2 Breta\nMove Y1 Beta Spearjr\nMove Y3 Breta Spearjr\nCatastrophe Spearjr Y\n\n95) smilingra: Move Y2 Beta Alexcobo\n\n96) alexcobo: Trade Y3 R3 Alexcobo\n\n97) smilingra: Move Y2 Alexcobo Beta\n\n98) alexcobo: Move Y1 Ariel Alexcobo\n\n99) smilingra: Discover G1 Beta B1 Zzz\n\n100) alexcobo: Trade Y1 R1 Alexcobo\n\talexcobo: Fortunately for me the surgery was not necesary.\r\nI am not sure how this works but, after East eliminated North. Wasn't my turn?\n\n101) smilingra: Build G1 Zzz\n\tsmilingra: I froze the game, because it does look like we skipped Alex's (South) turn.\n\tAaron: So who's turn should it be? That I can fix right away. Please leave the admin page active so I don't lose track of the game, but I won't be able to fix the underlying problem for a little bit.\n\tsmilingra: Well, we need to undo the last three turns, and then set it to South. Aaron, can you do that, or do you need each one of us to undo our last turn?\n\tsmilingra: Well, we need to undo the last three turns, and then set it to South. Aaron, can you do that, or do you need each one of us to undo our last turn?\n\tsmilingra: Oops! Needed to leave the admin page button active!\n\tAaron: Let me know if that didn't work.\n\n102) alexcobo: Move Y3 Ariel Fort\n\talexcobo: I eliminated East player (spearjr). Now it should be West player's turn (smilingra)\n\talexcobo: And b1 ship at ariel and the system fort should be gone also\n\tAaron: Sorry, I haven't been able to track down the fundamental problem. I'll get this specific instance fixed and take a look at the code just as soon as I can.\n\tAaron: Sorry, why should the b1 ship in Ariel not be there?\n\tspearjr: The ships should be gone because it belonged to the East seat. Which has been eliminated.\n\tAaron: My reading of the rules does not say this. Any remaining ships are left stranded and unable to complete any actions as their government has collapsed. They are still open to attack.\r\n\r\nFixing the "Current Player" flag now...\n\tAaron: Done.\n\n103) smilingra: Trade G1 R1 Zzz\n\n104) alexcobo: Sacrifice R1 Alexcobo\nAttack B1E Fort\n\n105) smilingra: Build R1 Zzz\n\n106) alexcobo: Discover B1 Fort G3 Cow\n\n107) smilingra: Sacrifice Y2 Gamma\nMove R1 Zzz Alexcobo\nMove R1 Zzz Alexcobo\n\n108) alexcobo: Trade R3 B3 Alexcobo\n\n109) smilingra: Sacrifice Y3 Gamma\nMove R3 Smilingra Beta\nMove R3 Beta Alexcobo\nMove Y2 Beta Smilingra\n\n110) alexcobo: Trade B1 R1 Cow\n\n111) smilingra: Attack B3S Alexcobo\n\n\tsmilingra: Good game, all!\n\talexcobo: Good game! I did not know this game could have such twistes!\n\tUglyfoot: Congrats, smilingra. Good game everyone!\n\tspearjr: Congrats. Good game all.\n\tAaron: I'm clearing the page because I don't see any chat regarding a problem. If there is something that needs my attention, please don't hesitate to page me again. Cheers!\n\nHomeworlds Online (SDG# 10331)\nVariants: "Hard time"\nStarted: 2008.1.28, Ended: 2008.2.25\nParticipants: smilingra (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\tsmilingra: I'm a glutton for punishment! Looking forward to learning a bunch more...\n\tJesse: Very well.\n\n2) smilingra: Homeworld B1 Y2 G3\n\tJesse: So, what kind of small system marker are you not going to choose? XD\n\n3) Jesse: Build G1 Jesse\n\tsmilingra: Yeah, no green planets to make it hard to get into the green economy. :)\n\tJesse: A medium or large green would be okay. Of course, choosing the same color ship as your opponent makes it easier to maintain a color balance in the early game.\n\n4) smilingra: Build G1 Smilingra\n\n5) Jesse: Trade G1 Y1 Jesse\n\tsmilingra: I'll stop copying you at some time - I promise :)\n\n6) smilingra: Discover G1 Smilingra B3 Alpha\n\n7) Jesse: Build G1 Jesse\n\n8) smilingra: Build G1 Alpha\n\n9) Jesse: Build G2 Jesse\n\n10) smilingra: Trade G1 Y1 Alpha\n\n11) Jesse: Discover G2 Jesse Y2 Transience\n\tJesse: Ordinarily, I wouldn't want to build three greens in my home system, but in the early game it's often possible to get away with things like this temporarily. You have no means of moving a ship here, so I'm not concerned about being near to catastrophe.\n\n12) smilingra: Build G1 Alpha\n\n13) Jesse: Build G2 Transience\n\tsmilingra: Understood. I still built a y1 just in case you weren't going to do anything about it. :)\n\n14) smilingra: Build G2 Smilingra\n\n15) Jesse: Discover G2 Transience B3 Directionality\n\tJesse: So, you leave the G3 for me...\n\n16) smilingra: Discover G2 Smilingra G3 Beta\n\tJesse: Rather than taking it directly (at Jesse, where you can't reach), I'm going to spread out first, since you're too concentrated to build another green safely. Moving a green up close to your home system increases the pressure on you to diversify there, and prevents you from simply building the G3 yourself.\n\tJesse: There is another way to deny me the G3, which I will leave for you to discover.\n\n17) Jesse: Trade G1 R1 Jesse\n\tsmilingra: How was that?\n\tJesse: That's the way.\n\n18) smilingra: Trade G1 R1 Alpha\n\tJesse: Time to pick up a gun, I think.\n\n19) Jesse: Move R1 Jesse Transience\n\n20) smilingra: Move R1 Alpha Smilingra\n\n21) Jesse: Build G1 Directionality\n\n22) smilingra: Build R2 Smilingra\n\n23) Jesse: Build R2 Transience\n\n24) smilingra: Move R2 Smilingra Alpha\n\n25) Jesse: Move R2 Transience Directionality\n\tsmilingra: I'm not sure how all of this is going to play out... you'll have to give me pointers when it's all over (as I'm sure that doing so now would spoil it).\n\tJesse: Well, you're developing just fine. One fault I can point out is that you've wasted one of your last three turns, by moving the R1 home before building the R2. If you'd built first, you wouldn't have used an extra turn moving the R2 back. You can't avoid inefficient play like that all the time. (Sometimes it's forced.) But you obviously want to avoid wasting turns if you can help it.\n\n26) smilingra: Build G1 Smilingra\n\n27) Jesse: Trade G2 Y2 Directionality\n\n28) smilingra: Build G2 Alpha\n\n29) Jesse: Sacrifice G3 Jesse\nBuild Y1 Directionality\nBuild Y3 Jesse\nBuild Y3 Jesse\n\n30) smilingra: Sacrifice G3 Smilingra\nBuild G3 Smilingra\nBuild Y3 Alpha\nBuild G3 Beta\n\n31) Jesse: Sacrifice Y2 Directionality\nMove G2 Transience Beta\nDiscover Y1 Jesse B2 Discernment\nCatastrophe Beta G\n\n32) smilingra: Discover G2 Alpha B2 Gamma\n\tJesse: Clever. Hmm...\n\n33) Jesse: Trade Y3 G3 Jesse\n\n34) smilingra: Build G2 Gamma\n\n35) Jesse: Build G2 Jesse\n\n36) smilingra: Build G3 Alpha\n\tJesse: I've got myself into a somewhat difficult situation, here. I must be more careful.\n\n37) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y2 Discernment\nBuild Y3 Directionality\n\n38) smilingra: Sacrifice G3 Alpha\nBuild G3 Alpha\nBuild R2 Smilingra\nBuild R3 Alpha\n\tsmilingra: At least I'm not quite experienced enough to take advantage of it. :)\n\n39) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R3 Directionality\nBuild R3 Transience\n\tJesse: If I'm going to lose the advantage in green, at least I can grab a yellow advantage in return.\n\n40) smilingra: Move R3 Alpha Discernment\n\n41) Jesse: Sacrifice Y2 Discernment\nDiscover Y1 Discernment B1 Vastness\nMove R3 Directionality Gamma\n\n42) smilingra: Sacrifice Y3 Alpha\nMove G2 Gamma Jesse\nMove G2 Gamma Jesse\nMove G1 Alpha Discernment\nCatastrophe Jesse G\n\n43) Jesse: Build G2 Directionality\n\n44) smilingra: Build G2 Alpha\n\n45) Jesse: Sacrifice G2 Directionality\nBuild Y2 Jesse\nBuild Y3 Vastness\n\n46) smilingra: Discover R2 Smilingra G3 Zeta\n\n47) Jesse: Build G2 Directionality\n\n48) smilingra: Move R2 Alpha Transience\n\n49) Jesse: Move R3 Transience Zeta\n\tJesse: It's painful to be frozen, or nearly frozen, out of any color. But of all colors, it is perhaps most painful to be short on yellow, as I'm sure you're seeing now.\n\n50) smilingra: Attack R1 Transience\n\n51) Jesse: Sacrifice Y3 Vastness\nMove G1 Directionality Smilingra\nMove G2 Directionality Smilingra\nMove Y3 Directionality Smilingra\nCatastrophe Smilingra G\n\tJesse: Oh, hmm. That wasn't necessary. Oh well.\n\n52) smilingra: Move G3 Alpha Smilingra\n\n53) Jesse: Sacrifice R3 Gamma\nAttack R2 Zeta\nAttack R1 Smilingra\nAttack G3 Smilingra\n\tJesse: I'm really not sure why I was focused on getting that r3 into position, rather than using a y3.\n\n\tsmilingra: not that it makes much difference...\n\tJesse: I'm sure there's a lesson in there somewhere, but I'm not sure how to formulate it beyond, "Watch what's on your doorstep." Good game. You seem to be picking it up quickly. I'll have to remember to be careful when I play against you.\n\tsmilingra: Thanks for the words of encouragement. I'm holding my own in a four-player game - we've already eliminated one of them. I think that the main lesson to hold is that you need to keep diversified. When I got frozen out of yellow, I was in big trouble. It's been fun, and I look forward to another match soon.\n\tsmilingra: Thanks for the words of encouragement. I'm holding my own in a four-player game - we've already eliminated one of them. I think that the main lesson to hold is that you need to keep diversified. When I got frozen out of yellow, I was in big trouble. It's been fun, and I look forward to another match soon.\n\nHomeworlds Online (SDG# 10304)\nVariants: "Hard time"\nStarted: 2008.2.4, Ended: 2008.2.7\nParticipants: jeep (S), matteo (N)\nWinner: jeep\n\n\nHomeworlds Online (SDG# 10238)\nVariants: "Unrated, Hard time"\nStarted: 2008.2.4, Ended: 2008.2.7\nParticipants: scottobear (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld B3 Y1 G3\n\n\tsordros: Hi!\n\nHomeworlds Online (SDG# 10397)\nVariants: "Unrated, Hard time"\nStarted: 2008.2.5, Ended: 2008.2.8\nParticipants: scottobear (S), divreon (N)\nWinner: divreon\n\n1) divreon: Homeworld Y3 G2 B3\n\n\tdivreon: I'm new at homeworlds on Superduper. If I make a mistake in the order process, please tell me.\n\nHomeworlds Online (SDG# 10235)\nStarted: 2008.2.5, Ended: 2008.2.8\nParticipants: divreon (S), MikeYarrum (N)\nWinner: divreon\n\n\tdivreon: I'm new at homeworlds on Superduper. If I make a mistake in the order process, please tell me.\n\nHomeworlds Online (SDG# 10490)\nVariants: "Hard time"\nStarted: 2008.2.13, Ended: 2008.3.25\nParticipants: nycavri (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R3 B2 G3\n\n2) nycavri: Homeworld Y1 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) nycavri: Build G1 Nycavri\n\tmneme: Have fun!\n\tnycavri: 'hanks, you too . . .\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) nycavri: Build G1 Nycavri\n\n7) mneme: Build Y1 Mneme\n\n8) nycavri: Discover G1 Nycavri Y3 Mvb\n\n9) mneme: Build Y2 Mneme\n\n10) nycavri: Trade G1 B1 Nycavri\n\n11) mneme: Discover Y1 Mneme G1 Jolly\n\n12) nycavri: Build G1 Nycavri\n\n13) mneme: Build G2 Mneme\n\n14) nycavri: Build G2 Nycavri\n\n15) mneme: Discover Y1 Jolly B2 Harpo\n\n16) nycavri: Trade G2 Y2 Nycavri\n\n17) mneme: Sacrifice G3 Mneme\nBuild Y2 Harpo\nBuild Y3 Harpo\nBuild Y3 Mneme\n\n18) nycavri: Discover Y2 Nycavri G3 Mvg\n\n19) mneme: Trade Y2 G2 Harpo\n\n20) nycavri: Trade G1 R1 Nycavri\n\n21) mneme: Trade Y3 R3 Harpo\n\n22) nycavri: Build R1 Nycavri\n\n23) mneme: Discover Y2 Mneme R1 Danger\n\n24) nycavri: Build R2 Nycavri\n\n25) mneme: Build R2 Harpo\n\n26) nycavri: Move R2 Nycavri Mvb\n\n27) mneme: Discover Y2 Danger B3 River\n\n28) nycavri: Build G1 Nycavri\n\n29) mneme: Move R3 Harpo Mvg\n\n30) nycavri: Discover Y2 Mvg B1 Iw\n\n31) mneme: Sacrifice G2 Harpo\nBuild Y2 River\nBuild Y3 Harpo\n\n32) nycavri: Build G1 Mvb\n\n33) mneme: Move Y3 Harpo Mvb\n\n34) nycavri: Move R2 Mvb Iw\n\n35) mneme: Sacrifice R2 Harpo\nAttack G1 Mvb\nAttack G1 Mvb\n\n36) nycavri: Discover B1 Nycavri G3 Jw\n\n37) mneme: Sacrifice Y3 Mneme\nMove G1 Mvb Nycavri\nMove G1 Mvb Nycavri\nMove Y3 Mvb Nycavri\nCatastrophe Nycavri G\n\n38) nycavri: Move Y2 Iw Mneme\n\n39) mneme: Sacrifice R3 Mvg\nAttack R1 Nycavri\nAttack R1 Nycavri\nAttack Y2 Mneme\n\tmneme: I believe it is time to make an end to this.\n\n\tmneme: thanks for the game!\n\tnycavri: Still never won a real game here on SDG . . .\n\tmneme: How do you define "real game"? Or do you mean "real game of Binary Homeworlds?" It's a pretty hard game, very inelastic in terms of skill/victory.\r\n\n\tnycavri: I mean that, technically, I've won two games on SDG, but both were against 100% first timers who literally didn't know what they were doing.\r\n\r\nI understand that the competition here is very stiff - the fact is, I win more than I lose face to face - but it can get frustrating. I don't feel that I'm especially bad, just the locals are especially good!\r\n\r\nI guess now I know how people feel playing me at Penguin Soccer . . .\r\n\r\n*grin*\n\tmneme: Ah, gotcha, yeah. I -never- beat TwoShort, but do reasonably well against everyone else (I think I'm a little better than zoltar; not sure who else is up in the top echeon)\n\tmneme: If we found one another at the NYC thing, I suppose I could try to help you with that "winning in person" thing too. :P FWIW, my livejournal has a decent pic: http://mnemex.livejournal.com\n\tmneme: Oh, right, Andy. I lose to Andy too, though I may have gotten better than the last time I played him.\r\n\n\nHomeworlds Online (SDG# 9359)\nVariants: "Hard time"\nStarted: 2008.2.10, Ended: 2008.2.16\nParticipants: theodorelogan (S), tibuga (N), kohen (E)\nWinner: theodorelogan\n\n\nHomeworlds Online (SDG# 10372)\nStarted: 2008.2.10, Ended: 2008.11.15\nParticipants: ts52 (S), theodorelogan (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 10398)\nVariants: "Unrated"\nStarted: 2008.2.10, Ended: 2008.3.6\nParticipants: theodorelogan (S), BenBen (N)\nWinner: BenBen\n\n1) BenBen: Homeworld B3 R2 G3\n\n\nHomeworlds Online (SDG# 10402)\nStarted: 2008.2.10, Ended: 2008.4.20\nParticipants: theodorelogan (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 10415)\nVariants: "Hard time"\nStarted: 2008.2.11, Ended: 2008.3.7\nParticipants: random56 (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld B3 Y1 G3\n\tjeep: I canceled this standing challenge... I'll play one more, but I'll be playing at the slowest rate, I'm sure.\n\n2) random56: Homeworld B1 G2 R3\n\n3) jeep: Build G1 Jeep\n\n4) random56: Build R1 Random56\n\n5) jeep: Build G1 Jeep\n\n6) random56: Trade R1 Y1 Random56\n\n7) jeep: Discover G1 Jeep Y2 Mover\n\n8) random56: Build Y1 Random56\n\n9) jeep: Build G1 Mover\n\n10) random56: Discover Y1 Random56 G3 O-ma-cron\n\n11) jeep: Discover G1 Mover B3 Changer\n\n\nHomeworlds Online (SDG# 10453)\nStarted: 2008.2.13, Ended: 2008.2.18\nParticipants: MikeYarrum (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 10477)\nVariants: "Hard time"\nStarted: 2008.2.13, Ended: 2008.3.3\nParticipants: sordros (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld Y3 B3 G3 *\n\tKeith: Hello Sordos. Nice to see you on the other side again.\n\n2) sordros: Homeworld Y1 B3 G3\n\tsordros: Hello there!\r\nGood luck\n\n3) Keith: Build G1 Keith\n\tsordros: whoops, didn't realize I was moving second :-)\n\n4) sordros: Build G1 Sordros\n\tKeith: I thought I would start out by trying to throw you a curve. :)\n\n5) Keith: Trade G1 R1 Keith\n\n6) sordros: Trade G1 R1 Sordros\n\n7) Keith: Build G1 Keith\n\n8) sordros: Build G1 Sordros\n\n9) Keith: Trade G1 Y1 Keith\n\n10) sordros: Trade G1 B1 Sordros\n\n11) Keith: Build Y1 Keith\n\n12) sordros: Build G1 Sordros\n\n13) Keith: Discover Y1 Keith G2 Midworld\n\n14) sordros: Build G1 Sordros\n\n15) Keith: Build Y2 Midworld\n\n16) sordros: Discover G1 Sordros G2 Eco2\n\n17) Keith: Build G1 Keith\n\n18) sordros: Discover G1 Sordros Y2 Sol2\n\n19) Keith: Discover G1 Keith Y2 Born\n\n20) sordros: Discover G1 Sol2 G3 Sol3\n\n21) Keith: Build G2 Keith\n\n22) sordros: Build B1 Sordros\n\n23) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild Y2 Midworld\nBuild Y3 Keith\n\n24) sordros: Sacrifice G1 Eco2\nBuild G1 Sordros\n\n25) Keith: Sacrifice Y3 Keith\nMove G1 Born Sordros\nMove G2 Keith Midworld\nMove G2 Midworld Sordros\nCatastrophe Sordros Green\n\n\tsordros: Hmm... definitely need more practice, didn't see that coming :-)\r\nThanks for the game.\n\tKeith: It was the small universe. We were only two apart rather than three. Where three of a color are easily threatend with a y3, here, two of a kind are easily threatened if one ship is one away.\r\n\r\nIt was heavier handed than I like, however, it is in keeping with the ladder system. I am available for a less heavy handed unrated game if you like.\n\tsordros: Ok, let me finish up some of my unfinished games and I'll start one up. I think I can learn a lot from playing with you :-)\n\nHomeworlds Online (SDG# 10403)\nVariants: "Unrated, Hard time"\nStarted: 2008.2.14, Ended: 2008.2.17\nParticipants: sordros (S), scottobear (N)\nWinner: sordros\n\n\nHomeworlds Online (SDG# 10215)\nVariants: "Hard time"\nStarted: 2008.2.14, Ended: 2008.2.26\nParticipants: TwoShort (S), spearjr (N)\nWinner: TwoShort\n\n1) spearjr: Homeworld G3 B1 Y3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\tspearjr: Hello, Good luck and have fun.\n\n3) spearjr: Build Y1 Spearjr\n\tTwoShort: Howdy\n\n4) TwoShort: Build B1 Twoshort\n\n5) spearjr: Trade Y3 B3 Spearjr\n\tspearjr: I imagine you will smash me, I only hope to learn something from the experience. Feel free to tell me when I do something truly stupid.\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) spearjr: Build B2 Spearjr\n\n8) TwoShort: Build B2 Twoshort\n\tTwoShort: OK... So far you're doing fine. I'd generally recommend against a small blue star as first player, because it lets me play this opening... but you've found the right response to it.\n\n9) spearjr: Discover B2 Spearjr G2 Alpha\n\n10) TwoShort: Discover B2 Twoshort G3 Grogar\n\n11) spearjr: Build B2 Alpha\n\n12) TwoShort: Build B3 Grogar\n\tTwoShort: Hmm, I wouldn't call that move stupid, but if I'm correctly predicting where it will lead in a few moves I think you'll regret it. One should generaly be wary of growing the last 2 pointer of a color.\n\n13) spearjr: Build B3 Alpha\n\n14) TwoShort: Trade B3 G3 Grogar\n\n15) spearjr: Sacrifice B2 Alpha\nTrade B3 Y3 Alpha\nTrade B2 G2 Alpha\n\n16) TwoShort: Build B2 Grogar\n\n17) spearjr: Build Y1 Spearjr\n\n18) TwoShort: Trade B2 Y2 Grogar\n\n19) spearjr: Trade Y1 R1 Spearjr\n\n20) TwoShort: Trade B1 R1 Twoshort\n\n21) spearjr: Build Y1 Alpha\n\tspearjr: If this was in person, I think I could formulate some sort of strategy, but I'm totally floundering here. Sigh.\n\n22) TwoShort: Build B1 Grogar\n\tTwoShort: Actually, I was thinking you were doing really well, and despite your claims, I'd better stop looking for you to make newbie mistakes. Have you played much off-line?\r\n It is interesting how playing here differs from face-to-face... I'm actually not nearly as good in person. \n\n23) spearjr: Discover G2 Alpha B3 Beta\n\tspearjr: I'm in the midst of a 4 player game here and I've played 7 games off-line. However we had a number of rules wrong for all but 2 of those. (We forgot sacrifice completely!! And we were allowing players to create a new ship in a system, so long as they had the green power in the system, regardless if they already had a ship of that color there.)\n\n24) TwoShort: Discover B1 Grogar B2 Boomtime\n\n25) spearjr: Trade B3 Y3 Spearjr\n\n26) TwoShort: Sacrifice G3 Grogar\nBuild B2 Boomtime\nBuild B3 Grogar\nBuild B3 Grogar\n\n27) spearjr: Build G1 Beta\n\tspearjr: You're freakin me out with all those blue on my boarder.\n\n28) TwoShort: Discover B3 Grogar Y2 Yolonda\n\tspearjr: And don't have a clue how to stop it.\n\n29) spearjr: Build G1 Beta\n\n30) TwoShort: Sacrifice B2 Boomtime\nTrade B3 G3 Yolonda\nTrade B3 R3 Grogar\n\n31) spearjr: Sacrifice Y3 Alpha\nMove G1 Beta Twoshort\nMove G1 Beta Twoshort\nMove G2 Beta Twoshort\nCatastrophe Twoshort Green\n\n32) TwoShort: Sacrifice G3 Yolonda\nBuild B2 Grogar\nBuild B3 Boomtime\nBuild B3 Grogar\n\n33) spearjr: Build Y1 Alpha\n\n34) TwoShort: Move B2 Grogar Alpha\n\n35) spearjr: Build Y2 Alpha\n\n36) TwoShort: Sacrifice R3 Grogar\nAttack Y2 Alpha\nAttack Y1 Alpha\nAttack Y1 Alpha\n\n37) spearjr: Build R1 Spearjr\n\n38) TwoShort: Build B3 Alpha\n\n39) spearjr: Discover Y1 Spearjr G2 Thatsnomoon\n\n40) TwoShort: Trade B3 R3 Grogar\n\n41) spearjr: Trade Y3 B3 Spearjr\n\n42) TwoShort: Sacrifice Y3 Twoshort\nMove B1 Boomtime Spearjr\nMove B2 Alpha Spearjr\nMove Y2 Alpha Spearjr\nCatastrophe Spearjr Blue\n\n\tspearjr: Good game.\n\nHomeworlds Online (SDG# 10513)\nVariants: "Unrated"\nStarted: 2008.2.16, Ended: 2008.9.29\nParticipants: msolis_cr (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B3 G3\n\n\tsordros: Idiay Mau? se rinde?\n\nHomeworlds Online (SDG# 10478)\nStarted: 2008.2.21, Ended: 2008.2.25\nParticipants: Horowits (S), MikeYarrum (N)\nWinner: Horowits\n\n\nHomeworlds Online (SDG# 10504)\nVariants: "Hard time"\nStarted: 2008.2.22, Ended: 2008.3.13\nParticipants: TwoShort (S), Horowits (N)\nWinner: TwoShort\n\n1) Horowits: Homeworld B3 G2 R3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) Horowits: Build R1 Horowits\n\tTwoShort: Greetings\n\n4) TwoShort: Build G1 Twoshort\n\tHorowits: ahoy\n\n5) Horowits: Trade R1 G1 Horowits\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Horowits: Build G1 Horowits\n\n8) TwoShort: Build G1 Twoshort\n\n9) Horowits: Trade G1 Y1 Horowits\n\n10) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n11) Horowits: Build R1 Horowits\n\n12) TwoShort: Build G1 Twoshort\n\n13) Horowits: Build G2 Horowits\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Bluestar\nBuild G3 Twoshort\n\n15) Horowits: Discover G2 Horowits R1 Doom\n\n16) TwoShort: Trade G2 R2 Bluestar\n\n17) Horowits: Move R1 Horowits Doom\n\n18) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n19) Horowits: Build R2 Horowits\n\n20) TwoShort: Sacrifice G3 Bluestar\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Bluestar\n\n21) Horowits: Move R2 Horowits Doom\n\n22) TwoShort: Trade G3 Y3 Bluestar\n\n23) Horowits: Move G1 Horowits Doom\n\n24) TwoShort: Move R2 Bluestar Doom\nCatastrophe Doom Red\n\n25) Horowits: Trade Y1 G1 Horowits\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Bluestar\nBuild G3 Twoshort\n\n27) Horowits: Build R1 Horowits\n\n28) TwoShort: Trade G2 R2 Bluestar\n\tHorowits: Happy Extra-Day-In-Febuary-Every-Four-Years.\n\n29) Horowits: Trade R1 Y1 Horowits\n\n30) TwoShort: Trade G3 B3 Bluestar\n\n31) Horowits: Build R1 Horowits\n\n32) TwoShort: Discover B3 Bluestar B1 Checkmate\n\n\nHomeworlds Online (SDG# 10573)\nStarted: 2008.2.22, Ended: 2008.3.30\nParticipants: velgarath (S), maka (N)\nWinner: velgarath\n\n1) maka: Homeworld G2 B1 Y3\n\n2) velgarath: Homeworld B3 G1 Y3\n\n3) maka: Build Y1 Maka\n\n4) velgarath: Build Y1 Velgarath\n\n5) maka: Discover Y1 Maka G3 Loko\n\n6) velgarath: Discover Y1 Velgarath B2 Friki\n\n7) maka: Move Y1 Loko Maka\n\n8) velgarath: Build Y1 Velgarath\n\n9) maka: Trade Y1 B1 Maka\n\n10) velgarath: Trade Y1 G1 Velgarath\n\n11) maka: Build Y1 Maka\n\n12) velgarath: Build G1 Velgarath\n\n13) maka: Discover Y1 Maka G3 Keke\n\n14) velgarath: Move G1 Velgarath Friki\n\n15) maka: Move B1 Maka Keke\n\n16) velgarath: Build G2 Friki\n\n17) maka: Trade Y1 R1 Keke\n\n18) velgarath: Trade G2 R2 Friki\n\n19) maka: Build B1 Keke\n\n20) velgarath: Build R1 Friki\n\n21) maka: Build B2 Keke\n\n22) velgarath: Move R2 Friki Keke\n\n23) maka: Build R1 Keke\n\n24) velgarath: Attack B2 Keke\n\tmaka: Yo a este juego soy malisimo :)\n\n25) maka: Build R2 Keke\nCatastrophe Keke Red\n\n26) velgarath: Trade B2 R2 Keke\n\n27) maka: Build Y1 Maka\n\n28) velgarath: Attack B1 Keke\n\n29) maka: Trade Y1 R1 Maka\n\n30) velgarath: Attack B1 Keke\n\n31) maka: Build R1 Maka\n\n32) velgarath: Build R2 Keke\n\n33) maka: Discover R1 Maka B3 Loko\n\n34) velgarath: Build Y1 Friki\n\n35) maka: Trade R1 Y1 Loko\n\n36) velgarath: Build G2 Friki\n\n37) maka: Build Y2 Maka\n\n38) velgarath: Move Y1 Friki Keke\n\n39) maka: Trade Y2 G2 Maka\n\n40) velgarath: Build G3 Velgarath\n\n41) maka: Build G3 Maka\n\n42) velgarath: Build Y2 Keke\n\n43) maka: Discover G3 Maka R3 Fire\n\n44) velgarath: Build Y2 Friki\n\n45) maka: Build Y2 Maka\n\n46) velgarath: Sacrifice Y2 Friki\nMove Y2 Keke Maka\nMove Y1 Keke Maka\nCatastrophe Maka Y\n\n47) maka: Sacrifice Y1 Loko\nDiscover G3 Fire Y2 Sun\n\n48) velgarath: Trade B1 Y1 Keke\n\n49) maka: Move G3 Sun Velgarath\nCatastrophe Velgarath Green\n\n50) velgarath: Move G1 Friki Velgarath\n\n51) maka: Build G1 Maka\n\n52) velgarath: Trade Y3 R3 Velgarath\n\n53) maka: Trade G2 Y2 Maka\n\n54) velgarath: Build G1 Velgarath\n\n55) maka: Trade G1 B1 Maka\n\n56) velgarath: Sacrifice Y1 Friki\nMove R3 Velgarath Maka\n\n57) maka: Build R1 Maka\n\n58) velgarath: Sacrifice R2 Keke\nAttack R1 Maka\nAttack R1 Maka\n\n59) maka: Trade Y2 R2 Maka\nCatastrophe Maka Red\n\n60) velgarath: Move R2 Keke Maka\n\tmaka: lo tengo chungo :)\n\n61) maka: Build B2 Maka\n\n62) velgarath: Move B1 Keke Maka\nCatastrophe Maka B\n\tvelgarath: creo que esta es mia, si no hay sorpresas\n\n\tmaka: muy bien. la verdad es que este juego con todo lo bueno que me parece no acabo de pillarle el truco... me cuesta mogollon...\n\nHomeworlds Online (SDG# 10560)\nStarted: 2008.2.24, Ended: 2008.12.22\nParticipants: slyfordtrabbit (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld G1 B2 Y3\n\tslyfordtrabbit: Homeworld b3 y2 g3\n\n2) slyfordtrabbit: Homeworld B3 Y1 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\tslyfordtrabbit: Just FYI -- this is my first game, so I may not be much of a challenge. :(\n\n4) slyfordtrabbit: Build G1 Slyfordtrabbit\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) slyfordtrabbit: Discover G1 Slyfordtrabbit Y2 Flotsam\n\tslyfordtrabbit: build y2 at slyfordtrabbit\n\n7) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n8) slyfordtrabbit: Build G1 Slyfordtrabbit\n\tslyfordtrabbit: build b1 floatsam\n\n9) MatrixFrog: Build B1 Matrixfrog\n\n10) slyfordtrabbit: Trade G1 B1 Slyfordtrabbit\n\n11) MatrixFrog: Trade B1 G1 Matrixfrog\n\n12) slyfordtrabbit: Build G2 Slyfordtrabbit\n\n13) MatrixFrog: Build G2 Matrixfrog\n\n14) slyfordtrabbit: Discover G1 Flotsam Y3 Jetsam\n\n15) MatrixFrog: Discover G2 Matrixfrog Y3 Beach\n\n16) slyfordtrabbit: Move G1 Jetsam Matrixfrog\n\n17) MatrixFrog: Trade G1 R1 Matrixfrog\n\tslyfordtrabbit: Just an FYI -- I may or may not be able to make moves between Tuesday and Friday -- I'll be out of town.\n\n18) slyfordtrabbit: Sacrifice G3 Slyfordtrabbit\nBuild G1 Matrixfrog\nBuild G2 Matrixfrog\nBuild G3 Slyfordtrabbit\nCatastrophe Matrixfrog Green\n\n19) MatrixFrog: Move G2 Beach Matrixfrog\n\tMatrixFrog: How did I allow this to happen in two different games at the same time? I must be tired this week.\n\n20) slyfordtrabbit: Trade G2 R2 Slyfordtrabbit\n\tslyfordtrabbit: I'm surprised it actually worked. o.o Don't worry; i'm sure I'll make a terrible error in the next few moves.\n\n21) MatrixFrog: Build G1 Matrixfrog\n\n22) slyfordtrabbit: Discover B1 Slyfordtrabbit Y2 Driftwood\n\n23) MatrixFrog: Build R1 Matrixfrog\n\n\nHomeworlds Online (SDG# 10563)\nStarted: 2008.2.24, Ended: 2008.2.24\nParticipants: MikeYarrum (S), slyfordtrabbit (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 10589)\nStarted: 2008.2.26, Ended: 2008.3.1\nParticipants: spearjr (S), MikeYarrum (N)\nWinner: spearjr\n\n\nHomeworlds Online (SDG# 10459)\nVariants: "Hard time"\nStarted: 2008.2.26, Ended: 2008.5.26\nParticipants: Uglyfoot (S), sordros (W), alexcobo (N), smilingra (E)\nWinner: Uglyfoot\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) smilingra: Homeworld B1 G2 Y3\n\talexcobo: Hello! Good luck, everyone!\n\n3) Uglyfoot: Homeworld B1 Y3 G3\n\n4) sordros: Homeworld R1 B2 G3\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) smilingra: Build Y1 Smilingra\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) sordros: Build G1 Sordros\n\n9) alexcobo: Discover Y1 Alexcobo G1 Andromeda\n\n10) smilingra: Trade Y1 G1 Smilingra\n\n11) Uglyfoot: Discover G1 Uglyfoot B2 Mall\n\tsmilingra: sorry about the delay - I was moving and was out of town recently.\n\n12) sordros: Trade G1 Y1 Sordros\n\n13) alexcobo: Build Y1 Alexcobo\n\n14) smilingra: Discover G1 Smilingra B3 Boron\n\n15) Uglyfoot: Build G1 Uglyfoot\n\n16) sordros: Build Y1 Sordros\n\n17) alexcobo: Trade Y1 R1 Alexcobo\n\n18) smilingra: Build G1 Boron\n\n19) Uglyfoot: Build G2 Mall\n\n20) sordros: Build G2 Sordros\n\n21) alexcobo: Build Y1 Andromeda\n\n22) smilingra: Trade G1 Y1 Boron\n\n23) Uglyfoot: Trade G2 Y2 Mall\n\n24) sordros: Trade Y1 B1 Sordros\n\n25) alexcobo: Move R1 Alexcobo Andromeda\n\n26) smilingra: Build Y1 Smilingra\n\n27) Uglyfoot: Build Y2 Mall\n\n28) sordros: Build Y2 Sordros\n\n29) alexcobo: Build Y2 Alexcobo\n\n30) smilingra: Trade Y1 R1 Smilingra\n\n31) Uglyfoot: Trade Y2 B2 Mall\n\n32) sordros: Discover B1 Sordros G3 Verdego\n\n33) alexcobo: Move Y1 Andromeda Mall\n\n34) smilingra: Build R1 Smilingra\n\n35) Uglyfoot: Move B2 Mall Andromeda\n\n36) sordros: Build B1 Verdego\n\n37) alexcobo: Build Y1 Andromeda\n\n38) smilingra: Build Y2 Boron\n\n39) Uglyfoot: Trade G1 R1 Uglyfoot\n\n40) sordros: Trade G2 R2 Sordros\n\n41) alexcobo: Move R1 Andromeda Verdego\n\n42) smilingra: Build Y2 Smilingra\n\n43) Uglyfoot: Build R2 Uglyfoot\n\n44) sordros: Move R2 Sordros Verdego\n\n45) alexcobo: Build R2 Verdego\n\n46) smilingra: Move R1 Smilingra Verdego\nCatastrophe Verdego R\n\n47) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack Y1N Andromeda\nAttack Y1N Andromeda\n\n48) sordros: Move Y2 Sordros Verdego\n\n49) alexcobo: Trade Y3 R3 Alexcobo\n\n50) smilingra: Trade Y2 R2 Smilingra\n\n51) Uglyfoot: Trade Y1 B1 Andromeda\n\n52) sordros: Trade B1 R1 Verdego\n\n53) alexcobo: Discover Y1 Mall G3 Donthitme\n\n54) smilingra: Move Y3 Smilingra Verdego\n\n55) Uglyfoot: Build G1 Mall\n\n56) sordros: Build Y1 Verdego\n\n57) alexcobo: Build Y2 Donthitme\n\n58) smilingra: Sacrifice R1 Smilingra\nAttack R1W Verdego\n\n59) Uglyfoot: Move Y1 Andromeda Verdego\nCatastrophe Verdego Y\n\n60) sordros: Build Y1 Sordros\n\n61) alexcobo: Build R1 Alexcobo\n\n62) smilingra: Attack B1W Verdego\n\n63) Uglyfoot: Move G1 Mall Boron\n\n64) sordros: Build G1 Sordros\n\n65) alexcobo: Build Y1 Alexcobo\n\n66) smilingra: Build R1 Smilingra\n\n67) Uglyfoot: Build G2 Boron\n\n68) sordros: Trade Y1 B1 Sordros\n\n69) alexcobo: Discover Y2 Donthitme B2 Trader\n\n70) smilingra: Build B3 Verdego\n\n71) Uglyfoot: Build R2 Uglyfoot\n\n72) sordros: Discover G1 Sordros B3 Azurra\n\n73) alexcobo: Trade Y2 G2 Trader\n\n74) smilingra: Trade B3 Y3 Verdego\n\n75) Uglyfoot: Discover R2 Uglyfoot Y2 Move\n\n76) sordros: Build G2 Sordros\n\n77) alexcobo: Build Y1 Donthitme\n\n78) smilingra: Sacrifice Y2 Boron\nMove Y3 Verdego Smilingra\nMove R2 Smilingra Boron\n\n79) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R2E Boron\n\n80) sordros: Sacrifice G3 Sordros\nBuild G2 Azurra\nBuild G3 Sordros\nBuild Y2 Sordros\n\n81) alexcobo: Move Y1 Donthitme Trader\n\n82) smilingra: Build B3 Verdego\n\n83) Uglyfoot: Sacrifice Y2 Mall\nMove G2 Boron Smilingra\nMove G1 Boron Smilingra\n\n84) sordros: Trade G2 R2 Azurra\n\n85) alexcobo: Build Y2 Donthitme\n\n86) smilingra: Trade B3 Y3 Verdego\n\n87) Uglyfoot: Build G2 Smilingra\nCatastrophe Smilingra G\n\n88) sordros: Move Y2 Sordros Azurra\n\n89) alexcobo: Build G1 Trader\n\n90) smilingra: Move Y3 Verdego Trader\n\n91) Uglyfoot: Attack G1E Boron\n\n92) sordros: Build Y2 Sordros\n\n93) alexcobo: Sacrifice Y2 Alexcobo\nMove G2 Trader Verdego\nMove Y1 Trader Verdego\n\n94) smilingra: Build B3 Verdego\n\n95) Uglyfoot: Build G2 Uglyfoot\n\n96) sordros: Build G2 Azurra\n\n97) alexcobo: Sacrifice R1 Alexcobo\nAttack R1E Verdego\n\n98) smilingra: Trade B3 R3 Verdego\n\n99) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Boron\nBuild G3 Uglyfoot\nBuild R1 Move\n\n100) sordros: Sacrifice G3 Sordros\nBuild Y2 Azurra\nBuild Y3 Azurra\nBuild G3 Sordros\n\n101) alexcobo: Sacrifice G2 Verdego\nBuild R1 Verdego\nBuild R2 Verdego\nCatastrophe Verdego R\n\n102) smilingra: Build B3 Verdego\n\talexcobo: It was either that or keep running...\n\n103) Uglyfoot: Attack Y1E Boron\n\n104) sordros: Trade Y3 R3 Azurra\n\n105) alexcobo: Build Y3 Alexcobo\n\n106) smilingra: Trade B3 R3 Verdego\n\n107) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Mall\nBuild G3 Uglyfoot\nBuild Y3 Boron\n\n108) sordros: Trade R3 B3 Azurra\n\n109) alexcobo: Move Y1 Verdego Mall\n\n110) smilingra: Move Y3 Trader Verdego\n\n111) Uglyfoot: Sacrifice Y3 Boron\nMove G1 Mall Andromeda\nMove B1 Andromeda Azurra\nMove B2 Andromeda Azurra\nCatastrophe Azurra B\n\n112) sordros: Discover G2 Sordros B3 Azurra2\n\n113) alexcobo: Build G1 Trader\n\n114) smilingra: Build Y2 Verdego\n\n115) Uglyfoot: Trade G2 R2 Uglyfoot\n\n116) sordros: Build G2 Sordros\n\n117) alexcobo: Build R1 Alexcobo\n\n118) smilingra: Trade Y2 G2 Verdego\n\n119) Uglyfoot: Build Y2 Boron\n\tsmilingra: Going down to the wire there, eh Alex?\n\n120) sordros: Trade Y2 R2 Sordros\n\n121) alexcobo: Move Y2 Donthitme Andromeda\n\n122) smilingra: Move R3 Verdego Trader\n\n123) Uglyfoot: Move R1 Move Smilingra\n\n124) sordros: Build Y2 Sordros\n\n125) Uglyfoot: Sacrifice Y2 Boron\nMove G1 Boron Sordros\nMove G2 Boron Sordros\nCatastrophe Sordros G\n\n126) sordros: Trade Y2 G2 Sordros\n\n127) Uglyfoot: Build G1 Uglyfoot\n\n128) sordros: Build Y2 Sordros\n\tsmilingra: That sucks! I just resigned on two games because it didn't say that any games were waiting on me! Good luck, you two!\n\talexcobo: Same for me here. It did not say it was my turn!\n\n129) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Andromeda\nBuild G3 Uglyfoot\nBuild G3 Mall\n\n\tsordros: Too weak to keep going on. Congrats Uglyfoot!\n\tUglyfoot: Thanks.\r\n\n\nHomeworlds Online (SDG# 10590)\nStarted: 2008.2.27, Ended: 2008.3.3\nParticipants: MatrixFrog (S), wmshub (N)\nWinner: MatrixFrog\n\n1) wmshub: Homeworld G1 B2 Y3\n\n2) MatrixFrog: Homeworld B1 G2 Y3\n\twmshub: Hi, this is my first superdupergames game ever and my first homeworlds game\r\nhope you don't mind if I'm just learning the game&system\n\tMatrixFrog: no problem. i'm hardly the homeworlds expert of the world, but let me know if you want any little tips or whatever\n\n3) wmshub: Build Y1 Wmshub\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) wmshub: Trade Y1 G1 Wmshub\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) wmshub: Build G1 Wmshub\n\n8) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n9) wmshub: Discover G1 Wmshub B3 Bigblue\n\n10) MatrixFrog: Build G2 Matrixfrog\n\n11) wmshub: Build G2 Bigblue\n\n12) MatrixFrog: Discover G2 Matrixfrog Y3 Bigyellow\n\n13) wmshub: Sacrifice Y3 Wmshub\nMove G1 Bigblue Matrixfrog\nMove G2 Bigblue Matrixfrog\nPass\nCatastrophe Matrixfrog Green\n\n14) MatrixFrog: Move G2 Bigyellow Wmshub\n\tMatrixFrog: This is why you don't create homeworlds that are size-identical to your opponent's homeworld. Oops.\n\n15) wmshub: Trade G1 R1 Wmshub\n\twmshub: Wow, I'm screwed now, aren't I?\r\n\r\nWell, might as well get it over with...\n\n16) MatrixFrog: Trade G2 R2 Wmshub\n\tMatrixFrog: Well, we're both relatively screwed, so don't give up hope just yet.\n\n17) wmshub: Build R1 Wmshub\n\n18) MatrixFrog: Build R1 Wmshub\nCatastrophe Wmshub R\n\twmshub: I see no way out for me! You can keep capturing my ships, I can only build red, eventually there will be a catastrophe and all my ships will be gone...\n\tMatrixFrog: Right, but you can trade one of your reds for another color. I probably have this game, but just in case, your best bet is probably to switch to yellow, and get to my homeworld asap.\n\n\nHomeworlds Online (SDG# 10561)\nVariants: "Hard time"\nStarted: 2008.2.29, Ended: 2008.3.3\nParticipants: alexcobo (S), Horowits (N)\nWinner: alexcobo\n\n\nHomeworlds Online (SDG# 10625)\nVariants: "Hard time"\nStarted: 2008.3.2, Ended: 2008.3.13\nParticipants: slyfordtrabbit (S), h3d0 (N)\nWinner: h3d0\n\n1) h3d0: Homeworld B1 Y2 G3\n\n2) slyfordtrabbit: Homeworld B3 G2 Y3\n\n3) h3d0: Build G1 H3d0\n\n4) slyfordtrabbit: Build Y1 Slyfordtrabbit\n\n5) h3d0: Trade G1 R1 H3d0\n\n6) slyfordtrabbit: Build Y1 Slyfordtrabbit\n\n7) h3d0: Build R1 H3d0\n\n8) slyfordtrabbit: Trade Y1 G1 Slyfordtrabbit\n\n9) h3d0: Discover R1 H3d0 R3 C3p0\n\n10) slyfordtrabbit: Build G1 Slyfordtrabbit\n\n11) h3d0: Move G3 H3d0 C3p0\n\n\nHomeworlds Online (SDG# 10626)\nVariants: "Hard time"\nStarted: 2008.3.2, Ended: 2008.3.14\nParticipants: Snow (S), slyfordtrabbit (N)\nWinner: Snow\n\n1) slyfordtrabbit: Homeworld G2 Y1 B3\n\n2) Snow: Homeworld G3 Y2 B3\n\n3) slyfordtrabbit: Build B1 Slyfordtrabbit\n\n4) Snow: Build B1 Snow (s)\n\n5) slyfordtrabbit: Trade B1 G1 Slyfordtrabbit\n\n6) Snow: Discover B1 Snow G1 Tf\n\n7) slyfordtrabbit: Build B1 Slyfordtrabbit\n\n8) Snow: Trade B1 Y1 Tf\n\n9) slyfordtrabbit: Trade B1 Y1 Slyfordtrabbit\n\n10) Snow: Build B1 Snow\n\n11) slyfordtrabbit: Build Y2 Slyfordtrabbit\n\n12) Snow: Trade B1 R1 Snow\n\n13) slyfordtrabbit: Discover Y1 Slyfordtrabbit G3 Flotsam\n\n14) Snow: Move R1 Snow Tf\n\tSnow: I'm not sure how you got that Y2... ah, the star had the third Y1.\n\n\nHomeworlds Online (SDG# 10581)\nStarted: 2008.3.3, Ended: 2008.3.23\nParticipants: ts52 (S), Nupanick (N)\nWinner: ts52\n\n1) Nupanick: Homeworld B2 G3 Y3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) Nupanick: Build Y1 Nupanick\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) Nupanick: Build Y1 Nupanick\n\n6) ts52: Build G1 Ts52\n\n7) Nupanick: Trade Y1 R1 Nupanick\n\n8) ts52: Trade G1 R1 Ts52\n\n9) Nupanick: Discover Y1 Nupanick B1 Damogran\n\n10) ts52: Discover G1 Ts52 Y3 Sol\n\n11) Nupanick: Trade Y1 G1 Damogran\n\n12) ts52: Build G1 Ts52\n\n13) Nupanick: Build G2 Damogran\n\n14) ts52: Build G2 Sol\n\n15) Nupanick: Trade G2 R2 Damogran\n\n16) ts52: Trade G1 B1 Ts52\n\n17) Nupanick: Build G1 Damogran\n\n18) ts52: Build G2 Ts52\n\n19) Nupanick: Trade G1 Y1 Damogran\n\n20) ts52: Move B1 Ts52 Sol\n\n21) Nupanick: Move R2 Damogran Sol\n\n22) ts52: Sacrifice R1 Ts52\nAttack R2N Sol\n\n23) Nupanick: Build R1 Nupanick\n\tNupanick: whoops, forgot about the sacrificing rules as they apply to red.\n\n24) ts52: Discover G2 Ts52 B3 Grover\n\n25) Nupanick: Build G1 Damogran\n\n26) ts52: Build B2 Sol\n\n27) Nupanick: Build Y1 Damogran\n\n28) ts52: Move R2 Sol Damogran\n\n29) Nupanick: Move G1 Damogran Sol\n\n30) ts52: Attack G1N Damogran\n\n31) Nupanick: Move Y1 Damogran Sol\n\n32) ts52: Attack Y1 Damogran\n\n33) Nupanick: Build Y1 Sol\n\n34) ts52: Sacrifice R2 Damogran\nAttack Y1 Sol\nAttack Y1 Sol\n\n35) Nupanick: Move R1 Nupanick Damogran\n\n36) ts52: Trade G2 R2 Sol\n\tNupanick: Nice move, btw. I like having to think with catastrophes.\n\n37) Nupanick: Build R1 Nupanick\n\n38) ts52: Sacrifice R2 Sol\nAttack R1 Damogran\nAttack G1 Sol\n\n39) Nupanick: Build Y2 Nupanick\n\tts52: Thanks, catastrophes and sacrifices are the toughest things to get a handle on in this game.\n\n40) ts52: Build G2 Damogran\n\n41) Nupanick: Trade Y2 B2 Nupanick\n\n42) ts52: Move B1 Sol Damogran\n\n43) Nupanick: Trade B2 Y2 Nupanick\n\n44) ts52: Move Y1 Sol Damogran\n\n45) Nupanick: Build R2 Nupanick\n\n46) ts52: Build Y2 Sol\n\n47) Nupanick: Sacrifice Y2 Nupanick\nMove R2 Nupanick Damogran\nDiscover R2 Damogran B3 Catan\n\n48) ts52: Sacrifice G2 Grover\nBuild G2 Ts52\nBuild R2 Damogran\n\n49) Nupanick: Move R1 Nupanick Damogran\n\tNupanick: I like coming up with names for the systems. That's probably the one thing I prefer in the online version.\n\n50) ts52: Attack R1 Damogran\n\n51) Nupanick: Move R1 Nupanick Damogran\nCatastrophe Damogran R\n\n52) ts52: Trade G2 R2 Damogran\n\n53) Nupanick: Build Y2 Nupanick\n\n54) ts52: Sacrifice Y2 Sol\nMove Y1 Damogran Nupanick\nMove Y1 Damogran Nupanick\nCatastrophe Nupanick Yellow\n\n\tts52: Thanks for the game!\n\tNupanick: Good game, you got me early on and I guess I lost any chance of survival. Good job!\n\nHomeworlds Online (SDG# 10634)\nStarted: 2008.3.3, Ended: 2008.4.19\nParticipants: wmshub (S), MatrixFrog (N)\nWinner: wmshub\n\n1) MatrixFrog: Homeworld G2 B3 Y3\n\twmshub: OK, let's try again...\n\n2) wmshub: Homeworld G1 B2 Y3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) wmshub: Build Y1 Wmshub\n\n5) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n6) wmshub: Trade Y1 G1 Wmshub\n\n7) MatrixFrog: Build Y1 Matrixfrog\n\n8) wmshub: Build Y1 Wmshub\n\n9) MatrixFrog: Build B1 Matrixfrog\n\n10) wmshub: Discover Y1 Wmshub G3 Biggreen\n\n11) MatrixFrog: Trade B1 R1 Matrixfrog\n\n12) wmshub: Build G1 Wmshub\n\n13) MatrixFrog: Build R1 Matrixfrog\n\n14) wmshub: Trade G1 B1 Wmshub\n\n15) MatrixFrog: Trade R1 G1 Matrixfrog\n\n16) wmshub: Build G2 Wmshub\n\n17) MatrixFrog: Discover G1 Matrixfrog Y1 One\n\n18) wmshub: Discover G2 Wmshub Y3 Bigyellow\n\n19) MatrixFrog: Build G2 One\n\n20) wmshub: Build Y2 Wmshub\n\n21) MatrixFrog: Discover G2 One B3 Two\n\n22) wmshub: Move G1 Wmshub Two\n\n23) MatrixFrog: Move G1 One Bigyellow\n\n24) wmshub: Discover G2 Bigyellow Y1 Smallyellow\n\n25) MatrixFrog: Sacrifice G2 Two\nBuild G2 Bigyellow\nBuild G3 Bigyellow\n\n26) wmshub: Move G2 Smallyellow Bigyellow\nCatastrophe Bigyellow Green\n\n27) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n28) wmshub: Move Y3 Wmshub Two\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) wmshub: Build Y2 Two\n\n31) MatrixFrog: Discover Y1 Matrixfrog G1 H4\n\n32) wmshub: Build G2 Two\n\n33) MatrixFrog: Move Y1 H4 Biggreen\n\n34) wmshub: Trade Y2 R2 Wmshub\n\n35) MatrixFrog: Build R1 Matrixfrog\n\n36) wmshub: Sacrifice Y2 Two\nDiscover G2 Two R1 Temp\nMove G2 Temp Matrixfrog\n\n37) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild Y2 Matrixfrog\nBuild B1 Matrixfrog\nBuild Y2 Biggreen\n\n38) wmshub: Build G1 Matrixfrog\n\n39) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack Y1 Biggreen\n\n40) wmshub: Sacrifice B1 Wmshub\nTrade G1 B1 Matrixfrog\nCatastrophe Matrixfrog Blue\n\n41) MatrixFrog: Attack G2 Matrixfrog\n\n42) wmshub: Build G1 Two\n\n43) MatrixFrog: Sacrifice Y2 Biggreen\nMove Y1 Biggreen Wmshub\nMove Y1 Biggreen Wmshub\n\n44) wmshub: Sacrifice Y3 Two\nMove G1 Two Matrixfrog\nMove G1 Two Matrixfrog\nPass\nCatastrophe Matrixfrog Green\n\n45) MatrixFrog: Move Y2 Matrixfrog Wmshub\n\twmshub: Wait...isn't your homeworld gone? I thought this would be a win for me...\n\twmshub: Not sure how all this works, I call an admin. Admin - when you come, I have read the rules carefully, it looks like all of m.f.'s ships in his homeworld should be gone, and it should be my game...shouldn't it?\n\tMatrixFrog: Yup. Looks like a bug to me.\n\n46) wmshub: Build R1 Wmshub\n\tMatrixFrog: Cool. Apparently the empty space where my homeworld used to be is connected to your homeworld.\n\n47) MatrixFrog: Sacrifice Y1 Matrixfrog\nMove R1 Matrixfrog Wmshub\n\tMatrixFrog: Let's see how this goes...\n\tMatrixFrog: Re-paging the admin... I effectively resigned, but I should have lost a few turns ago.\n\twmshub: Thanks for the game! And thanks for fiddling around, I guess we had to empty your homeworld to end things.\n\tAaron: Hoh boy. Yes indeed this should be game over. Checking the code again.\n\tAaron: Oh. Yeah, the game should have ended as soon as your starts went supernova. Hoh boy, not good. Still checking...\n\tAaron: oh wow, how long was Matrix's homeworld starless? As soon as a system has no stars it should cease to exist.\n\tAaron: The problem that happened 4 moves ago was fixed a while back and should not happen again. Sorry for the extreme delay!\n\tMatrixFrog: Sorry we kept playing after the bug happened. Thanks for the fix!\n\n\nHomeworlds Online (SDG# 10629)\nStarted: 2008.3.4, Ended: 2008.3.28\nParticipants: Nupanick (S), virx61 (N)\nWinner: Nupanick\n\n1) virx61: Homeworld G3 B2 Y3\n\n2) Nupanick: Homeworld Y1 B3 G3\n\n3) virx61: Build Y1 Virx61\n\n4) Nupanick: Build G1 Nupanick\n\tvirx61: Hi. I hope this game is as fun as it looks. Good luck.\n\tNupanick: I've played this game a couple times and it can get pretty good, although I honestly prefer it in real life because at only one action per turn, quicker play is better. Although I've played some rapid games here, so who cares?\n\n5) virx61: Discover Y1 Virx61 G1 Tina\n\n6) Nupanick: Trade G1 R1 Nupanick\n\n7) virx61: Trade Y3 G3 Virx61\n\n8) Nupanick: Build G1 Nupanick\n\n9) virx61: Build Y1 Tina\n\n10) Nupanick: Discover G1 Nupanick B2 Atlantis\n\n11) virx61: Build G1 Virx61\n\n12) Nupanick: Build G2 Atlantis\n\n13) virx61: Sacrifice Y1 Tina\nMove G1 Virx61 Tina\n\n14) Nupanick: Trade G2 Y2 Atlantis\n\n15) virx61: Discover G1 Tina R3 Aries\n\n16) Nupanick: Build G2 Atlantis\n\n17) virx61: Discover Y1 Tina B2 Daniel\n\n18) Nupanick: Discover G2 Atlantis R1 Zena\n\n19) virx61: Trade Y1 G1 Daniel\n\n20) Nupanick: Move G1 Atlantis Zena\n\n21) virx61: Build G2 Daniel\n\n22) Nupanick: Sacrifice Y2 Atlantis\nMove G1 Zena Virx61\nMove G2 Zena Virx61\nCatastrophe Virx61 G\n\tNupanick: Tip: look out for sacrifices and catastrophes. They can finish up a game quite effectively when enough ships are built up.\n\n\nHomeworlds Online (SDG# 10500)\nVariants: "Unrated, Hard time"\nStarted: 2008.3.5, Ended: 2008.3.8\nParticipants: benji_stein (S), scottobear (N)\nWinner: benji_stein\n\n\tbenji_stein: I'm not terribly experienced with homeworlds, but It's fun, and I'd like to get better. Feel free to point out my mistakes, so I can learn from them.\n\nHomeworlds Online (SDG# 10633)\nStarted: 2008.3.6, Ended: 2008.3.15\nParticipants: MatrixFrog (S), benji_stein (N)\nWinner: benji_stein\n\n1) benji_stein: Homeworld Y3 B1 G3\n\tbenji_stein: I'm not terribly experienced with homeworlds, but It's fun, and I'd like to get better. Feel free to point out my mistakes, so I can learn from them.\n\n2) MatrixFrog: Homeworld G3 B2 Y3\n\tMatrixFrog: Sure. There seems to be a sudden influx of new Homeworlds players lately. It's great!\n\n3) benji_stein: Build G1 Benji_stein\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) benji_stein: Build G1 Benji_stein\n\tbenji_stein: Yeah. I love that I can play people online, instead of struggling to find others irl. Though it does make it a slower game. \n\n6) MatrixFrog: Build Y1 Matrixfrog\n\tMatrixFrog: It's also harder to keep track of multi-move plans. That's what the notebook is for, but it's just not the same.\n\n7) benji_stein: Trade G1 Y1 Benji_stein\n\n8) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n9) benji_stein: Build G1 Benji_stein\n\n10) MatrixFrog: Discover Y1 Matrixfrog G1 Alpha\n\n11) benji_stein: Discover G1 Benji_stein G2 Upchuck\n\n12) MatrixFrog: Build Y1 Matrixfrog\n\n13) benji_stein: Build G2 Upchuck\n\n14) MatrixFrog: Discover Y1 Alpha G2 Beta\n\n15) benji_stein: Move Y1 Benji_stein Upchuck\n\n16) MatrixFrog: Build Y2 Beta\n\tMatrixFrog: You now have three yellow ships in your homeworld, and I have one only a step away from it. You probably didn't notice it moved because it's in the same place on the screen. Make sure you read the log if it's not obvious what happened.\n\tbenji_stein: Wow. You're right. I'm not sure how I missed that - possibly I thought I had a 3/2 system as in a different game I'm playing. But it's still pretty bad of me to not notice. I'm guessing you've not moved yourself to let me undo it. Thanks!\n\n17) benji_stein: Build Y2 Upchuck\n\n18) MatrixFrog: Build B1 Matrixfrog\n\n19) benji_stein: Discover G2 Upchuck B3 Hurl\n\n20) MatrixFrog: Build Y2 Beta\n\n21) benji_stein: Sacrifice G3 Benji_stein\nBuild G1 Hurl\nBuild G3 Benji_stein\nBuild G3 Hurl\n\tMatrixFrog: The system you've just created is not connected to anyone's homeworld. I guess this makes it a fairly safe place, but it will take two moves to get from it to my homeworld, or from your homeworld to it. Just checking...\n\tbenji_stein: I realize, but thanks. I wanted to move to a new location, and wanted blue, which meant I either had to move to a b3, or move out my second-to-last ship in my homeworld to get to a b2. I suppose I could take an extra turn to get to it, but I thought I'd try it this way. Plus, it might be a good out-of-the-way place to store some ships to sacrifice.\n\tMatrixFrog: Okay that makes sense.\n\n22) MatrixFrog: Sacrifice Y2 Beta\nMove Y1 Beta Benji_stein\nMove Y2 Beta Benji_stein\n\n23) benji_stein: Trade G2 B2 Hurl\n\n24) MatrixFrog: Trade Y2 G2 Benji_stein\n\n25) benji_stein: Trade G3 R3 Benji_stein\n\n26) MatrixFrog: Trade G2 Y2 Benji_stein\n\n27) benji_stein: Attack Y2 Benji_stein\n\n28) MatrixFrog: Sacrifice Y3 Matrixfrog\nDiscover Y1 Matrixfrog R1 Zip\nDiscover Y1 Zip R2 Zop\nMove Y1 Zop Benji_stein\nCatastrophe Benji_stein Y\n\n29) benji_stein: Sacrifice Y2 Upchuck\nDiscover B2 Hurl R1 Boom\nMove B2 Boom Matrixfrog\nCatastrophe Matrixfrog B\n\tbenji_stein: Can I ask what you're threatening here?\r\nIf it was to catastrophe yellow, you could have done that last turn instead of building the green. If it's green, you're destroying more ships of yours than mine. You have to sacrifice too much to destroy upchuck, and otherwise I'm not seeing it.\r\nI can think of a variety of moves that could be useful, but I want to make sure I'm not missing something...\n\tMatrixFrog: I guess I didn't totally think it through... the advantage of a green catastrophe is that you have no green ships, so in order to build anything new will require an extra turn. It's probably not worth it, but I'll stick with it and see how it goes.\n\tbenji_stein: I have a bunch of green ships in other systems, though. In fact, one of the moves I was considering was sacrificing my g3, rebuilding it, and causing the catastrophe myself, to prevent your doing the yellow one. I'll wait and let you undo it, if you'd like, since you let me undo a mistake of mine when you pointed it out. Your call.\n\tMatrixFrog: Okay, good point. Thanks.\n\n\tbenji_stein: I guess you missed my blue ship in hurl threatening your homeworld. :(\n\tbenji_stein: Good game. Care for another? \n\nHomeworlds Online (SDG# 10592)\nVariants: "Hard time"\nStarted: 2008.3.6, Ended: 2008.3.7\nParticipants: Jesse (S), benji_stein (N)\nWinner: Jesse\n\n1) benji_stein: Homeworld B1 G3 Y3\n\tbenji_stein: I'm not terribly experienced with homeworlds, but It's fun, and I'd like to get better. Feel free to point out my mistakes, so I can learn from them.\n\n2) Jesse: Homeworld B3 G2 Y3\n\tJesse: Certainly. Have a good game.\n\n3) benji_stein: Build Y1 Benji_stein\n\n4) Jesse: Build Y1 Jesse\n\n5) benji_stein: Trade Y1 B1 Benji_stein\n\n6) Jesse: Trade Y1 B1 Jesse\n\n7) benji_stein: Build B2 Benji_stein\n\n8) Jesse: Build B2 Jesse\n\n9) benji_stein: Sacrifice Y3 Benji_stein\nDiscover B1 Benji_stein Y2 Goes\nDiscover B1 Goes Y1 Boom\nMove B1 Boom Jesse\nCatastrophe Jesse B\n\tbenji_stein: You going to copy everything I do? :P\r\n\n\tbenji_stein: You going to copy everything I do? :P\r\n\n\tbenji_stein: Hmm. This is probably a really bad idea. But I'll risk it.\n\n10) Jesse: Build Y1 Jesse\n\n11) benji_stein: Build B1 Benji_stein\n\n12) Jesse: Move Y3 Jesse Benji_stein\n\tJesse: The first few moves are often roughly symmetrical. It's not necessarily the only way, but it's often a good way to avoid being cut off from something important. In this case, the blue economy, which was the quickest path to medium-sized ships.\r\n\r\nAnd to your second point, yes. I do believe that was too aggressive. You damage my home system, but you leave yours without the defense of a large ship, so that I can likely just stroll in and capture your ships.\n\n13) benji_stein: Trade B2 G2 Benji_stein\n\tbenji_stein: Oh, I realize that the early moves can be similar, I've just never see it so move-for-move identical, other than the sizes of the pieces in our homeworlds. I was mostly just teasing.\r\n\r\nYou're probably right about not having a big ship; I somehow missed that it now brings our worlds next to each other. :(\n\n14) Jesse: Trade Y3 R3 Benji_stein\n\tJesse: Yeah, that's an easy oversight to make.\n\n\tJesse: A green ship doesn't really help you, at this point. To counter-attack, you need red and yellow. If you'd traded for a red ship before I did, it would have given me some problems.\n\tbenji_stein: Yeah. I had a brain-fart. I'd wanted to sacrifice the green ship and then build two others. I would have loved two red, but realized after I did it that the only thing I could build was blue, which doesn't help any.\r\n\r\nWith red, it's a little better, but I think we just end in a stalemate, or you sacrifice your big ship to attack more of mine.\n\tbenji_stein: But you're right. Far too agressive a move so early in the game; it's yours. Care for another?\n\tbenji_stein: Out of curiosity, and so I can learn more strategy, what would you have done if I'd swapped my b2 for a r2 instead?\n\tJesse: If you had swapped for a red, I couldn't have swapped for a red. (You could build another red, then another, and blow up my large ship. I could only have forestalled that by capturing your blue, but you could just capture it back endlessly.) So, I could either withdraw my y3 to defend my home system, essentially wasting two turns, or I could leave it there, and start building in my home system. My objective would be to get a medium piece at home for defense, and to move out to a blue system to obtain reds I could sacrifice to take over your system. It would be an awkward operation, and if I'd read that possibility before I moved into your home system, I might have played more conservatively.\r\n\r\nAnd yes, I'm always happy to help a new player on the road.\n\tbenji_stein: Interesting. I'm kind of curious as to how a game like that would have panned out, but I'm pretty sure I would have slipped up some other way to lose. If you'd like, I'd be willing to play it out, and offer to resign if I end up in a winning position.\r\n\r\nOtherwise, we can play a fresh game (eg without my taking a huge risk so early). I've gone ahead and started a new game with you, I'll let it be your call, though I think there'll need to be a pass at some point to get it to the same turn order.\n\nHomeworlds Online (SDG# 10575)\nVariants: "Hard time"\nStarted: 2008.3.7, Ended: 2008.3.13\nParticipants: benji_stein (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tbenji_stein: I'm not terribly experienced with homeworlds, but It's fun, and I'd like to get better. Feel free to point out my mistakes, so I can learn from them.\n\n2) benji_stein: Homeworld G3 B1 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) benji_stein: Build Y1 Benji_stein\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) benji_stein: Trade Y1 B1 Benji_stein\n\n7) TwoShort: Build Y1 Twoshort\n\n8) benji_stein: Build B1 Benji_stein\n\n9) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n10) benji_stein: Trade B1 R1 Benji_stein\n\n11) TwoShort: Build G1 Twoshort\n\n12) benji_stein: Build R1 Benji_stein\n\n13) TwoShort: Build Y1 Grogar\n\n14) benji_stein: Build R2 Benji_stein\n\tTwoShort: Just in the realm of general strategy advice, red isn't useful until we're in contact, so taking much this early is odd unless you're trying to rush into it so fast I don't get any. Dominating a color is a fine idea, but it's hard to do effectively with red.\n\n15) TwoShort: Build Y2 Twoshort\n\tbenji_stein: Makes sense, and I appreciate the tips. I took one just so I had one, and then decided it might be a good route into the 2pip ships.\n\n16) benji_stein: Build Y2 Benji_stein\n\n17) TwoShort: Discover Y1 Grogar Y2 Yellorama\n\n18) benji_stein: Trade Y2 G2 Benji_stein\n\n19) TwoShort: Discover G1 Twoshort Y3 Jethro\n\n20) benji_stein: Trade R2 B2 Benji_stein\n\n21) TwoShort: Build G1 Twoshort\n\n22) benji_stein: Build R2 Benji_stein\n\n23) TwoShort: Trade Y2 R2 Twoshort\n\n24) benji_stein: Build Y2 Benji_stein\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\nBuild G1 Twoshort\n\n26) benji_stein: Discover Y2 Benji_stein G2 Upchuck\n\n27) TwoShort: Build G2 Jethro\n\n28) benji_stein: Move G2 Benji_stein Upchuck\n\n29) TwoShort: Discover G1 Twoshort B3 Bluestar\n\n30) benji_stein: Discover G2 Upchuck G3 Hurl\n\n31) TwoShort: Trade G1 B1 Bluestar\n\n32) benji_stein: Move R2 Benji_stein Yellorama\n\n33) TwoShort: Sacrifice Y2 Grogar\nMove B1 Bluestar Yellorama\nMove B1 Yellorama Benji_stein\nCatastrophe Benji_stein Blue\n\n34) benji_stein: Sacrifice Y2 Upchuck\nMove R1 Benji_stein Twoshort\nMove R1 Benji_stein Twoshort\nCatastrophe Twoshort Red\n\tbenji_stein: Ouch. Very nice.\n\n35) TwoShort: Sacrifice G2 Jethro\nBuild G1 Twoshort\nBuild G2 Twoshort\n\n36) benji_stein: Sacrifice Y3 Benji_stein\nMove R2 Yellorama Benji_stein\nMove G2 Hurl Twoshort\nPass\nCatastrophe Twoshort Green\n\tbenji_stein: Yikes. I think this is my only move, though it's a painful one...\n\n37) TwoShort: Trade Y3 R3 Twoshort\n\tbenji_stein: Hmm. I thought I'd had one more ship somewhere. Well, now I'm trapped at my homeworld with only red, and I'm pretty sure there's nothing I can do to prevent you from biding your time and building up enough of a fleet to move in and catastrophe my system in one move.\n\tTwoShort: Yeah, this was the only way you could stop me from blowing you up immediately, but now you're stuck. I can end it slightly faster than building up to the next catastrophe though...\n\n38) benji_stein: Build R1 Benji_stein\n\n39) TwoShort: Move R3 Twoshort Benji_stein\n\tbenji_stein: Well, if ou're going to do that, I'll at least take you out with me! :P\n\n40) benji_stein: Build R1 Benji_stein\nCatastrophe Benji_stein R\n\tTwoShort: Thanks for the game. Sorry if I didn't come up with too much strategy advice, but I figure you got the part about paying attention to where your opponent can cause catastrophes :)\n\tbenji_stein: That's fair. It's definitely something I sometimes don't catch. I probably should have waited a little longer in retaliating to catastrophe your homeworld. \r\nGood game. Care for another? (No is a fine answer, I won't take offense.) \n\tTwoShort: I'm happy to play another, any time.\n\n\nHomeworlds Online (SDG# 10658)\nVariants: "Hard time"\nStarted: 2008.3.7, Ended: 2008.3.26\nParticipants: benji_stein (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\tbenji_stein: Also see comment at http://superdupergames.org/main.html?page=play_homeworlds&num=10592, if interested. Let me know which you decide.\n\n2) benji_stein: Homeworld Y3 B2 G3\n\tJesse: I'd really rather start fresh.\n\tbenji_stein: Sure. That's fine, too.\n\n3) Jesse: Build G1 Jesse\n\n\n4) benji_stein: Build G1 Benji_stein\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) benji_stein: Build G1 Benji_stein\n\n7) Jesse: Build G1 Jesse\n\n8) benji_stein: Trade G1 Y1 Benji_stein\n\n9) Jesse: Discover G1 Jesse B2 Moooo\n\n10) benji_stein: Trade G1 B1 Benji_stein\n\n11) Jesse: Build G1 Jesse\n\n\n12) benji_stein: Build B1 Benji_stein\n\n13) Jesse: Trade G1 B1 Jesse\n\n\n14) benji_stein: Trade B1 R1 Benji_stein\n\n15) Jesse: Build G1 Jesse\n\n16) benji_stein: Discover B1 Benji_stein G1 Upchuck\n\n17) Jesse: Build G2 Moooo\n\n18) benji_stein: Build G2 Benji_stein\n\n19) Jesse: Sacrifice G3 Jesse\nBuild G2 Moooo\nBuild G3 Jesse\nBuild G3 Jesse\n\n20) benji_stein: Sacrifice G3 Benji_stein\nBuild G3 Benji_stein\nBuild Y1 Benji_stein\nBuild Y2 Benji_stein\n\tbenji_stein: Nice. Didn't see that one.\n\n21) Jesse: Trade G2 R2 Moooo\n\n22) benji_stein: Trade Y2 R2 Benji_stein\n\tbenji_stein: Gah. I'm tired and can't count. Those should have been red, and it won't let me re-undo it. *sigh*\n\tJesse: Well, we can correct it. I'll go ahead and take my turn, then you can spend the next two turns trading those ships for red, while I pass. How's that?\r\n\n\n23) Jesse: Pass\n\n24) benji_stein: Trade Y1 R1 Benji_stein\n\tbenji_stein: Works for me. You're very kind. Thanks!\n\n25) Jesse: Pass\n\n26) benji_stein: Sacrifice G3 Benji_stein\nBuild G2 Benji_stein\nBuild G3 Benji_stein\nBuild B1 Upchuck\n\n27) Jesse: Trade G2 Y2 Moooo\n\tJesse: No problem. It would be a shame for the game to be derailed by a silly technical issue like that.\n\n28) benji_stein: Move G2 Benji_stein Upchuck\n\tbenji_stein: I agree, but it's still appreciated!\n\n29) Jesse: Discover B1 Jesse G2 Oinkoink\n\n30) benji_stein: Move Y1 Benji_stein Upchuck\n\n31) Jesse: Trade G3 Y3 Jesse\n\n32) benji_stein: Discover B1 Upchuck G3 Hurl\n\tbenji_stein: Sorry; I should stop undoing moves. I realize if I did that, you'd be able to sac a green ship to build a lot of big blues, leaving me unable to build a big green ship or blue ship for fear of your destroying them.\n\n33) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R2 Moooo\nBuild R3 Moooo\n\tJesse: You're right that it's better practice to read the consequences of your moves before submitting, but don't worry about putting me out with undos. As for me building a bunch of blues, if I built two of them, I would have three in one system. Even if your yellow was still at your home system, you could sacrifice it to move one of your small blues to OinkOink and destroy my three blues. That said, moving out the little yellow is still better. You don't want three yellow pieces in your home system. (I don't want three greens for any longer than necessary, either.) You do want more mobility from Upchuck, and a place to safely build more yellow ships. And, it is usually preferable to build new ships, than to trade a ship for a color you already have in the system. (My move here will be an exception.) You should be wanting to spread out your reds and build more of them, as well.\n\n34) benji_stein: Move R1 Benji_stein Upchuck\n\tJesse: I reduce myself to two greens in my home system, so I don't have to worry so much about my defenses being destroyed if you can get another green piece there. And since there are already two green pieces everywhere you have a green ship, you can't build the large green without bringing the total to three. (Notice that my medium yellow allows me to reach your home system with the G1 at Moooo.) You can't really afford to build it, so I expect to be able to build it on my next turn. I've essentially snagged a Y3 without having to exhaust the pool of smaller yellow pieces first.\n\tbenji_stein: Yes, I had noticed that, actually. It's a similar situation with blues, but not quite as beneficial to you. I had been thinking of doing it before your comment, but I like the idea of preventing you from getting the free green. \n\n35) Jesse: Move R3 Moooo Hurl\n\n36) benji_stein: Sacrifice G3 Benji_stein\nBuild G3 Benji_stein\nBuild R3 Benji_stein\nBuild R3 Upchuck\n\n37) Jesse: Attack B1 Hurl\n\tbenji_stein: Out of curiosity, is it wiser to move out and threaten your three reds, or to sacrifice a green to build some bigger ships - probably the g3 (otherwise you get it), a b2 and b3, letting you get the final b3?\n\tJesse: If you'd built the blues, I would have had the opportunity to be first to move out a red in preparation for building more. I can't say definitively which is better, but I would prefer the move you chose, myself.\n\n38) benji_stein: Trade R3 Y3 Benji_stein\n\n39) Jesse: Sacrifice G3 Jesse\nBuild G3 Moooo\nBuild R3 Hurl\nBuild Y1 Moooo\n\tbenji_stein: That makes sense, and is probably why I liked it better. I realize the move I just made makes my reds vulnerable for catastrophe, but it was better than letting you get if cheaply, and you'll have to give up a y2 and r2 to destroy my r1 and r2, and the r3 which I otherwise got for free.\n\n40) benji_stein: Move R3 Upchuck Oinkoink\n\tJesse: Taking out the reds at your home world is certainly a strong possibility, even though it weakens my position in yellow. On balance, I think I prefer this, though.\n\n41) Jesse: Sacrifice G3 Moooo\nBuild G3 Moooo\nBuild B2 Oinkoink\nBuild B3 Hurl\n\tbenji_stein: Hmm. Interesting choice. I'm not sure I see the advantage. It lets you get a bunch of blues, but you could have done that before. I don't have any particularly thrilling moves. I think I'd like to move to a new system, but I can't do a whole lot in it for several turns unless I move a green, ewhich leaves my reds still exposed...\n\tJesse: If I'd built more than one blue before, you could have destroyed them all. This way, I have the advantage in how my blues are dispersed.\n\n42) benji_stein: Sacrifice G3 Benji_stein\nBuild G3 Benji_stein\nBuild Y2 Upchuck\nBuild B3 Upchuck\n\tbenji_stein: Hmph. Probably shouldn't have told you I wanted to move out. You stle the last small piece. :P\n\n43) Jesse: Sacrifice Y2 Moooo\nMove B1 Oinkoink Upchuck\nMove B2 Oinkoink Upchuck\nCatastrophe Upchuck B\n\tbenji_stein: Gee, there are so many tempting moves. I was toying with blowing up your two big reds, but decided it was probably unwise.\n\tJesse: Yeah, that would have been very costly.\n\tbenji_stein: Yes, but it would have been two r3's of yours for a y3 and two r1s of mine. I'd still have an r3, and you wouldn't be able to swap them for other colors. In pip-count I end up a little ahead, but I'm not sure about positionally.\r\n\r\nThere was also the "build more stuff" move, but I think I'm getting a little cramped, and I wouldn't want you to destory my fleet too easily, and it lets you get to the big blues for free, since I'd have to build the medium one.\n\n44) benji_stein: Sacrifice Y3 Benji_stein\nMove G2 Benji_stein Upchuck\nMove G2 Upchuck Moooo\nMove G2 Upchuck Moooo\nCatastrophe Moooo G\n\n45) Jesse: Sacrifice Y1 Jesse\nDiscover R3 Hurl Y1 Meow\n\tbenji_stein: Yikes. Sure is getting crowded in this galaxy. I don't think I've ever seen so many pieces in use before!\n\tJesse: Well then, let's clean it up a bit.\n\n46) benji_stein: Move Y1 Upchuck Oinkoink\n\tbenji_stein: Yikes. Excellent move. I'm having a hard time coming up with what to do for mine.\n\tbenji_stein: The one thing that I think this system could do with is a before/after picture. Or specify what ships get destroyed in catastrophes.\n\n47) Jesse: Trade B3 Y3 Hurl\n\tbenji_stein: In the end I was torn between destroying your reds in hurl, or your green in Moooo. The latter was a lot more expensive for me, but you now have only a single g1).\r\n\r\nOut of curiosity, what would you have done? A different choice from my final two is also a fine answer. \n\n48) benji_stein: Con Y2 Oinkoink\n\n49) Jesse: Build Y2 Hurl\n\n50) benji_stein: Move R3 Oinkoink Upchuck\n\tbenji_stein: I'm confused. What are you threatening, here? You don't have enough greens, blues or yellows to catastrophe my star, and blowing up the reds hurts you more than me. You could potentially move in a couple of big ships, but I could sacrifice an r2 or r3 to capture them at the same time.\r\n\r\nI guess I'm just not sure how to respond or plan... :(\n\tJesse: It's not necessarily an immediate threat. I want to have my R3s separated, to protect them. I want a foothold adjacent to your homeworld, so I can attack eventually, and to keep the pressure on. Trading for the Y3 is to make sure you can't take the advantage in yellow, increase my maneuverability, and improve my rebuilding (medium ships).\n\tJesse: It does become difficult to plan at this stage of the game. Beginners especially have difficulty figuring out what they should be doing. With both sides having solid positions, it can take a while of jockeying for advantage before either side gains a position to strike a decisive blow.\n\n51) Jesse: Trade R2 G2 Moooo\n\tbenji_stein: OK. That makes sense. I just wanted to make sure that I wasn't missing something critical.\r\n\r\nFeel free to point out whatever you think migt be useful. I don't normally get to this part, since the other people I play with are beginners as well. \n\n52) benji_stein: Move R3 Upchuck Moooo\n\n53) Jesse: Sacrifice G2 Moooo\nBuild B1 Hurl\nBuild R2 Moooo\n\n54) benji_stein: Attack R2 Moooo\n\n55) Jesse: Move R3 Meow Moooo\nCatastrophe Moooo R\n\n56) benji_stein: Build R2 Upchuck\n\n57) Jesse: Move Y3 Hurl Moooo\n\n58) benji_stein: Build Y1 Upchuck\n\n59) Jesse: Trade Y3 G3 Moooo\n\n\n60) benji_stein: Trade R1 B1 Benji_stein\n\n61) Jesse: Build Y3 Moooo\n\n62) benji_stein: Move Y2 Upchuck Benji_stein\n\n63) Jesse: Discover Y1 Moooo G1 Neigh\n\tbenji_stein: Ick. I botched that one up. I thought I had blue somewhere else... gave you a free 3-pointer. *sigh* \n\tJesse: One option would have been to use it as a system marker, but that has its own issues.\n\n64) benji_stein: Discover Y2 Benji_stein R1 Retch\n\n65) Jesse: Build G2 Moooo\n\n66) benji_stein: Build G2 Benji_stein\n\n67) Jesse: Move B1 Hurl Neigh\n\tJesse: Why did you move that to your home world, rather than discovering a new system?\n\tbenji_stein: Hmm. I'm not entirely sure. I undid the blue move because if I left two yellows in both systems it allowed you to do the swap-yellow+rebuild from the previous two turns. There hadn't been much that I'd wanted to remove from the stash, since taking a blue, or green would give you access to the bigger ships. But you're right, I should have seen your move coming, so I effectively wasted a turn.\n\n68) benji_stein: Move B1 Benji_stein Retch\n\n69) Jesse: Sacrifice G3 Moooo\nBuild B2 Hurl\nBuild B3 Neigh\nBuild G3 Moooo\n\n\n70) benji_stein: Sacrifice G3 Benji_stein\nBuild G3 Benji_stein\nBuild R2 Benji_stein\nBuild B3 Retch\n\n71) Jesse: Trade B3 R3 Neigh\n\n72) benji_stein: Trade B3 R3 Retch\n\n73) Jesse: Sacrifice G3 Moooo\nBuild G3 Moooo\nBuild B3 Neigh\nBuild B3 Hurl\n\n74) benji_stein: Move B1 Retch Hurl\nCatastrophe Hurl B\n\tbenji_stein: I feel like that was probably not a great move, but there's not much better I can do, I think.\n\n75) Jesse: Move G3 Moooo Upchuck\n\n76) benji_stein: Move G2 Benji_stein Retch\n\n77) Jesse: Sacrifice R3 Neigh\nAttack R1 Upchuck\nAttack R2 Upchuck\nAttack Y1 Upchuck\n\n78) benji_stein: Discover R3 Retch B2 Spew\n\n79) Jesse: Build B1 Neigh\n\n80) benji_stein: Discover Y1 Oinkoink B3 Barf\n\n81) Jesse: Move B3 Neigh Benji_stein\n\tbenji_stein: Ouch. I saw that coming, but there wasn't a whole lot I could do. I felt the threat of blowing up my greens was worse. *sigh* \n\n82) benji_stein: Attack B3 Benji_stein\n\tbenji_stein: Hmm. Seems like the backend system could do with a little work in organizing the stars. \n\tJesse: Yeah, it just sorts them in alphabetical order, which is almost never what you want. And the systems could be shown with much less space, and the ships organized within the systems, as well. Easy enough to do for binary games (my own software does a fine job of resizing things), but SDG needs to cope with 3- and 4-player games, as well, where the ideal organization is less obvious.\n\n83) Jesse: Sacrifice Y2 Hurl\nMove B1 Neigh Benji_stein\nMove B1 Neigh Benji_stein\nCatastrophe Benji_stein B\n\tbenji_stein: True, I'd forgotten about 3/4 player. 4 Would be odd, but 2 or 3 seems doable by arranging them so that the stars that are connected are nearest, in groups of the same size. So for this game, you'd have my homeworld, all the 1s, all the 3s all the 2s, and then your homeworld. Yes, the 1s connect to the 2s, but at least the groups are easily seen.\n\n84) benji_stein: Build Y2 Oinkoink\n\tbenji_stein: *sigh* I think I know what you're about to do, and there's nothing I can do to stop it.\n\tJesse: Yes, that's exactly how we arrange the systems when we play binary face to face.\n\n85) Jesse: Sacrifice Y3 Jesse\nMove Y3 Moooo Benji_stein\nMove Y1 Upchuck Benji_stein\nMove Y1 Neigh Benji_stein\nCatastrophe Benji_stein Y\n\tJesse: If you were expecting me to sac a Y3 and throw all the blues in at once, here's a lesson in resource conservation.\n\n\tJesse: Yes, it's expensive. Blasting someone's home system always is. That's why I prefer to capture their ships, if possible. Or, failing that, wait until I'm sure I can finish the job. Notice that by saving my Y3s, I now have 3 yellows adjacent to your world, and another Y3 ready to sacrifice.\n\tJesse: Good game. Do you feel like you're getting the hang of it?\n\tbenji_stein: Very nice. I saw the yellows getting close (why I'd moved a yellow out earlier), but I'd missed the threat of the third one closer once you'd catastrophed my blues.\r\n\r\nI think I'm getting a little better (you would probably be a better judge), but I still don't have the middle game, as you mentioned. I felt like I was always struggling to respond to your moves, and not doing much offensively, myself. Particularly in those cases where I can see it coming (probably too late), but not do anything about it.\r\n\r\nI'd be up for another if you'd like, but don't feel obliged if you're tired of it. I'm sure I'm not a terribly challenging opponent.\n\nHomeworlds Online (SDG# 10668)\nVariants: "Hard time"\nStarted: 2008.3.10, Ended: 2008.4.24\nParticipants: alexcobo (S), stoneaxe (N)\nWinner: stoneaxe\n\n1) stoneaxe: Homeworld B3 Y2 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\tstoneaxe: Hi! Thanks for playing- good luck!\n\n3) stoneaxe: Build G1 Stoneaxe\n\n4) alexcobo: Build Y1 Alexcobo\n\talexcobo: Hello. Thank you! Good luvk.\n\n5) stoneaxe: Trade G1 R1 Stoneaxe\n\n6) alexcobo: Trade Y1 R1 Alexcobo\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) stoneaxe: Build G1 Stoneaxe\n\n10) alexcobo: Trade Y1 G1 Alexcobo\n\n11) stoneaxe: Discover G1 Stoneaxe Y1 Copper\n\n12) alexcobo: Discover R1 Alexcobo Y1 Highway\n\n13) stoneaxe: Build G2 Copper\n\n14) alexcobo: Trade G1 R1 Alexcobo\n\n15) stoneaxe: Build R2 Stoneaxe\n\n16) alexcobo: Build Y1 Alexcobo\n\n17) stoneaxe: Discover G2 Copper B2 Bluesband\n\n18) alexcobo: Move R1 Alexcobo Highway\n\n19) stoneaxe: Build G1 Stoneaxe\n\n20) alexcobo: Build Y2 Alexcobo\n\n21) stoneaxe: Trade R2 Y2 Stoneaxe\n\n22) alexcobo: Trade Y2 B2 Alexcobo\n\n23) stoneaxe: Sacrifice G3 Stoneaxe\nBuild G2 Copper\nBuild G2 Bluesband\nBuild G3 Stoneaxe\n\n24) alexcobo: Build Y2 Alexcobo\n\n25) stoneaxe: Sacrifice G3 Stoneaxe\nBuild G3 Bluesband\nBuild G3 Stoneaxe\nBuild R2 Stoneaxe\n\n26) alexcobo: Trade Y3 R3 Alexcobo\n\n27) stoneaxe: Discover Y2 Stoneaxe B1 Bonham\n\n28) alexcobo: Move R3 Alexcobo Copper\n\n29) stoneaxe: Sacrifice Y2 Bonham\nMove G3 Bluesband Highway\nMove G3 Highway Alexcobo\n\n30) alexcobo: Attack G2N Copper\n\n31) stoneaxe: Sacrifice R2 Stoneaxe\nAttack B2 Alexcobo\nAttack Y2 Alexcobo\n\n32) alexcobo: Move G2 Copper Stoneaxe\nCatastrophe Stoneaxe G\n\n33) stoneaxe: Sacrifice G1 Copper\nBuild R2 Stoneaxe\n\talexcobo: Alas! Too little too late. Good game!\n\n34) alexcobo: Build Y2 Alexcobo\n\tstoneaxe: Ahh! Nice sacrifice. Close one! Let me see if I can be careful and not screw this one up...\n\n35) stoneaxe: Sacrifice R2 Stoneaxe\nAttack Y2 Alexcobo\nAttack Y1 Alexcobo\n\n\nHomeworlds Online (SDG# 10689)\nVariants: "Hard time"\nStarted: 2008.3.11, Ended: 2008.3.24\nParticipants: TwoShort (S), wyons (N)\nWinner: TwoShort\n\n1) wyons: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 Y3 G3\n\n3) wyons: Build G1 Wyons\n\n4) TwoShort: Build G1 Twoshort\n\n5) wyons: Trade G1 R1 Wyons\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) wyons: Build G1 Wyons\n\n8) TwoShort: Build B1 Twoshort\n\n9) wyons: Trade G1 Y1 Wyons\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) wyons: Build G1 Wyons\n\n12) TwoShort: Build B2 Twoshort\n\twyons: yaarg! this looks unpleasant rather quickly- I inderestimated the value of an early blue monopoly\n\n13) wyons: Discover G1 Wyons Y3 Portsalut\n\n14) TwoShort: Discover B1 Twoshort B2 Blitz\n\n15) wyons: Build G1 Portsalut\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Grogar\nBuild B3 Blitz\nBuild B3 Twoshort\n\n17) wyons: Move G1 Portsalut Grogar\n\twyons: :( I think I am pretty near resigning!.. but will play on a bit just to see what happens. \n\n18) TwoShort: Trade B3 G3 Blitz\n\twyons: g1 portsalut grogar\n\n19) wyons: Build G1 Wyons\n\n20) TwoShort: Discover B2 Twoshort Y2 Yolonda\n\n21) wyons: Build G2 Portsalut\n\n22) TwoShort: Discover B2 Yolonda G3 Greenland\n\n23) wyons: Sacrifice G3 Wyons\nBuild G2 Wyons\nBuild R1 Wyons\nBuild G3 Grogar\n\n24) TwoShort: Sacrifice B2 Greenland\nTrade B3 G3 Grogar\nTrade B3 R3 Twoshort\n\n25) wyons: Sacrifice G3 Grogar\nBuild G3 Wyons\nBuild Y1 Wyons\nBuild Y1 Wyons\n\n26) TwoShort: Sacrifice G3 Grogar\nBuild G3 Blitz\nBuild B2 Grogar\nBuild B3 Blitz\n\n27) wyons: Sacrifice R1 Wyons\nAttack B1S Grogar\n\n28) TwoShort: Sacrifice G3 Blitz\nBuild G3 Blitz\nBuild B3 Grogar\nBuild R1 Twoshort\n\n29) wyons: Sacrifice B1 Grogar\nTrade G1 B1 Portsalut\n\n30) TwoShort: Sacrifice B2 Grogar\nTrade B3 Y3 Blitz\nTrade R1 G1 Twoshort\n\n31) wyons: Sacrifice G2 Wyons\nBuild G2 Grogar\nBuild B2 Portsalut\n\n32) TwoShort: Sacrifice G3 Blitz\nBuild G3 Twoshort\nBuild Y2 Blitz\nBuild R1 Twoshort\n\n33) wyons: Sacrifice G1 Wyons\nBuild G1 Grogar\nCatastrophe Grogar Green\n\n\twyons: Although I just about seem to have been hanging in there for some time it has been pretty hopeless since about the 11th move and I am sure the end is only a matter of time. Well played and thanks for the game- the first I have lost!\n\nHomeworlds Online (SDG# 10683)\nStarted: 2008.3.11, Ended: 2008.3.12\nParticipants: gui_jim (S), velgarath (N)\nWinner: velgarath\n\n1) velgarath: Homeworld G1 B2 Y3\n\n2) gui_jim: Homeworld Y1 G2 B3\n\n3) velgarath: Build Y1 Velgarath\n\n4) gui_jim: Build B1 Gui_jim\n\n5) velgarath: Discover Y1 Velgarath B3 Friki\n\n6) gui_jim: Trade B1 Y1 Gui_jim\n\n7) velgarath: Build Y2 Velgarath\n\n8) gui_jim: Discover Y1 Gui_jim G3 Kaito\n\n9) velgarath: Move Y2 Velgarath Friki\n\n10) gui_jim: Build Y2 Kaito\n\n11) velgarath: Trade Y2 R2 Friki\n\n12) gui_jim: Build B1 Gui_jim\n\n13) velgarath: Move R2 Friki Gui_jim\n\n14) gui_jim: Trade B3 Y3 Gui_jim\n\n15) velgarath: Attack B1 Gui_jim\n\n16) gui_jim: Build Y2 Gui_jim\n\n17) velgarath: Trade R2 Y2 Gui_jim\nCatastrophe Gui_jim Y\n\n\tvelgarath: JAJAJAJAJAJAJA.\r\nCUIDADO CON LAS CATASTROFES!!!!!\n\nHomeworlds Online (SDG# 10701)\nStarted: 2008.3.13, Ended: 2008.3.17\nParticipants: velgarath (S), gui_jim (N)\nWinner: gui_jim\n\n1) gui_jim: Homeworld B3 G2 Y3\n\n2) velgarath: Homeworld B1 G2 Y3\n\n3) gui_jim: Build Y1 Gui_jim\n\n4) velgarath: Build Y1 Velgarath\n\n5) gui_jim: Discover Y1 Gui_jim G1 Kaito\n\n6) velgarath: Discover Y1 Velgarath B3 Trantor\n\n7) gui_jim: Build Y1 Kaito\n\n8) velgarath: Build Y2 Velgarath\n\n9) gui_jim: Build Y2 Gui_jim\n\n10) velgarath: Move Y2 Velgarath Trantor\n\n11) gui_jim: Discover Y1 Kaito B3 Krypton\n\n12) velgarath: Trade Y2 R2 Trantor\n\n13) gui_jim: Build Y2 Kaito\n\n14) velgarath: Move R2 Trantor Kaito\n\n15) gui_jim: Sacrifice Y2 Gui_jim\nMove Y2 Kaito Krypton\nMove Y1 Kaito Trantor\n\n16) velgarath: Move Y1 Trantor Kaito\n\n17) gui_jim: Build Y2 Gui_jim\n\n18) velgarath: Build Y2 Kaito\n\n19) gui_jim: Sacrifice Y3 Gui_jim\nMove Y1 Trantor Velgarath\nMove Y1 Krypton Velgarath\nMove Y2 Krypton Velgarath\nCatastrophe Velgarath Y\n\n\nHomeworlds Online (SDG# 10657)\nVariants: "Hard time"\nStarted: 2008.3.14, Ended: 2008.3.16\nParticipants: benji_stein (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) benji_stein: Homeworld B2 G3 Y3\n\n3) TwoShort: Build G1 Twoshort\n\n4) benji_stein: Build Y1 Benji_stein\n\n5) TwoShort: Build G1 Twoshort\n\n6) benji_stein: Build Y1 Benji_stein\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) benji_stein: Trade Y1 B1 Benji_stein\n\n9) TwoShort: Build G1 Twoshort\n\n10) benji_stein: Trade Y1 G1 Benji_stein\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n12) benji_stein: Build G2 Benji_stein\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Bluonia\nBuild G3 Twoshort\n\tbenji_stein: Fast moves, these. It's great when the opponent happens to be at their computer and we can hammer out a bunch at once. Then again, the early moves don't require as much thinking. ;)\n\tbenji_stein: Ha. Murphy's law. Right when I comment, you go off. *sigh*\n\n14) benji_stein: Sacrifice G2 Benji_stein\nBuild Y1 Benji_stein\nBuild B1 Benji_stein\n\tTwoShort: I'm at work, so when the email comes in, if I've got a second and the move is clear, I'll make it. It means you don't get so much in the way of strategy advice though.\n\tTwoShort: Anyway, the general strategy advice is in the early game, focus mainly on trying to get more 3 pointers than the other guy.\r\n Tactics-wise, sacrificing a g3 such that you regrow the same piece you sacrificed is called the "Factory", and can be devastating if I can keep doing it and you can't. Also note that by growing that 3rd G in your homeworld, you have no place to build another G so I was free to leave the last g3 available.\n\tbenji_stein: Ouch. You're right; I'd missed that move. Very nice. Makes sense about work, I do the same, though I try not to check my personal mail too often.\r\n\r\nThe advice is always appreciated, but I do understand being busy. I probably shouldn't do this, but at least it prevents you from getting the final green so easily...\n\n15) TwoShort: Trade G2 Y2 Bluonia\n\n16) benji_stein: Discover G1 Benji_stein B1 Retch\n\n17) TwoShort: Discover G2 Bluonia Y1 Yolonda\n\n18) benji_stein: Move B1 Benji_stein Retch\n\n19) TwoShort: Build G2 Yolonda\n\tTwoShort: Forgot you were playing a 2-3 Homeworld. FYI, conventional wisdom holds that 1-2 is the best...\n\n20) benji_stein: Build G2 Retch\n\tbenji_stein: No problem. I often play a 1-2, but they all have advantages. With a 2-3, I can lock you out of a large piece, plus it's harder to reach my homeworld if there aren't many small pieces left in the stash.\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Bluonia\nBuild G3 Twoshort\nBuild Y2 Bluonia\n\n22) benji_stein: Build B2 Retch\n\tbenji_stein: I know you're about to use your factory to get the last two greens, but there's nothing I can do to stop you. swapping a green out only cuts me out of it entirely, and building a green just lets you get something of a different color as well (probably yellow)\n\n23) TwoShort: Trade G3 B3 Bluonia\n\tbenji_stein: aww, screw it. I can't afford to only have one green ship. *sigh*\n\n24) benji_stein: Sacrifice Y1 Benji_stein\nDiscover B1 Retch G3 Hurl\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Bluonia\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n26) benji_stein: Sacrifice Y3 Benji_stein\nMove G2 Retch Benji_stein\nMove B2 Retch Hurl\nMove B1 Hurl Bluonia\nCatastrophe Bluonia B\n\n27) TwoShort: Move G2 Yolonda Benji_stein\n\n28) benji_stein: Trade B1 R1 Benji_stein\n\tbenji_stein: Ha. I knew there was a reason I was keeping a y1 around - I can't easily get into that system.\r\nThis is probably a really bad idea, but I feel like that system is just too powerful to pass it up.\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Benji_stein\nBuild Y2 Twoshort\nBuild G3 Twoshort\nCatastrophe Benji_stein Green\n\tTwoShort: Yeah, giving up your 3 point pretty much spells doom; it means my 3 is invulnerable to red, so I can win if I take a red and march the three to your Homeworld without your getting a 3 of blowing mine up. In this case, I'm going to start by shortening the march :)\n\n30) benji_stein: Sacrifice G1 Retch\nBuild R1 Benji_stein\n\n31) TwoShort: Trade Y2 R2 Twoshort\n\n32) benji_stein: Trade R1 G1 Benji_stein\n\tbenji_stein: Yeah, I figure it'll be difficult, but I think if I hadn't done it I would have been doomed pretty quickly, as well.\n\tbenji_stein: crud. I knew there was a reason I'd wanted to swap the green one. I switched it to the 1-pointer so I could keep my green in case I wanted to build several ships at once. *sigh* \n\n33) TwoShort: Move G3 Twoshort Benji_stein\n\n34) benji_stein: Build R1 Benji_stein\n\n\tbenji_stein: Yeah, it's yours. I thought I could stave it off a little longer, but you just sac your red ship to take both of my reds. I build another green, and you blow them all up with the g1 from your homeworld.\r\n\r\nInteresting game, though I must say it was pretty miserable on my part.\n\nHomeworlds Online (SDG# 10650)\nVariants: "Hard time"\nStarted: 2008.3.14, Ended: 2008.4.24\nParticipants: benji_stein (S), jeep (N)\nWinner: benji_stein\n\n1) jeep: Homeworld B3 Y1 G3\n\tbenji_stein: I'm not terribly experienced with homeworlds, but It's fun, and I'd like to get better. Feel free to point out my mistakes, so I can learn from them. \n\n2) benji_stein: Homeworld G2 B3 Y3\n\tjeep: I'll give it a shot, but I'm not great at this game either.\n\tbenji_stein: That's fair. I just thought I'd give you a warning. ;)\n\n3) jeep: Build G1 Jeep\n\n4) benji_stein: Build Y1 Benji_stein\n\n5) jeep: Build G1 Jeep\n\n6) benji_stein: Build Y1 Benji_stein\n\n7) jeep: Discover G1 Jeep B2 Changer\n\n8) benji_stein: Trade Y1 B1 Benji_stein\n\n9) jeep: Trade G1 Y1 Changer\n\n10) benji_stein: Build Y2 Benji_stein\n\n11) jeep: Build G1 Jeep\n\n12) benji_stein: Trade Y2 G2 Benji_stein\n\n13) jeep: Move G1 Jeep Changer\n\tbenji_stein: Could we try to pick up the pace a little? Your moves all seem to take several days.\n\tjeep: Not really. I chose 3/2/10 because that is the pace I can maintain. When I'm not too busy, I speed up and clear the queue every day. But my moves will generally take close to 2 days per move.\n\n14) benji_stein: Build Y2 Benji_stein\n\n15) jeep: Build Y2 Changer\n\tbenji_stein: OK, I guess...\n\n16) benji_stein: Trade Y1 R1 Benji_stein\n\tjeep: Sorry if it's too slow... You can always start another game. Then you're more likely to have a play to make every day.\n\tbenji_stein: That's OK. I was actually playing a few others, but they ended recently. I realize that it doesn't have to be played as fast, but all ther others seemed to be. I guess I'm just a little impatient about it. I'll try not to be - work and other things are a good reason to take your time.\n\n17) jeep: Sacrifice G3 Jeep\nBuild G1 Changer\nBuild G2 Changer\nBuild G3 Jeep\n\n18) benji_stein: Discover G2 Benji_stein B1 Retch\n\n19) jeep: Trade G1 R1 Changer\n\n20) benji_stein: Move Y2 Benji_stein Retch\n\tjeep: Tough decision there... I was tempted to go for the green monopoly.\n\n21) jeep: Discover G2 Changer Y3 Mover\n\n22) benji_stein: Discover G2 Retch Y2 Hurl\n\tbenji_stein: If you had tried, I would have destroyed a lot of your ships...\n\tjeep: Impossible. I would not have built, I would have moved into large green worlds. Taken them out of circulation instead of building them. Then later, I could have probably cashed them in.\n\n23) jeep: Discover G1 Changer Y3 Cache\n\n24) benji_stein: Build R1 Benji_stein\n\n25) jeep: Discover Y1 Changer G3 Grower\n\n26) benji_stein: Build R2 Benji_stein\n\n27) jeep: Sacrifice G3 Jeep\nBuild G1 Cache\nBuild G3 Jeep\nBuild G3 Mover\n\n28) benji_stein: Move R2 Benji_stein Retch\n\n29) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y1 Changer\nBuild R2 Changer\n\n30) benji_stein: Move R2 Retch Cache\n\n31) jeep: Move G3 Mover Retch\n\n32) benji_stein: Attack G1 Cache\n\n33) jeep: Sacrifice R1 Changer\nAttack Y2S Retch\n\n34) benji_stein: Sacrifice Y3 Benji_stein\nMove G1 Cache Hurl\nMove G1 Hurl Jeep\nMove G2 Hurl Jeep\nCatastrophe Jeep Green\n\n\tbenji_stein: Good game. Thanks!\n\tjeep: *laugh* Caught me not paying attention. Thanks for the game.\n\nHomeworlds Online (SDG# 10763)\nStarted: 2008.3.23, Ended: 2008.3.28\nParticipants: xeger (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) xeger: Homeworld Y2 B1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) xeger: Build G1 Xeger\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) xeger: Discover G1 Xeger Y3 Countrywide\n\n7) ts52: Trade G1 R1 Grover\n\n8) xeger: Build G1 Xeger\n\n9) ts52: Build G1 Ts52\n\n10) xeger: Build G2 Xeger\n\n11) ts52: Move G1 Ts52 Countrywide\n\n12) xeger: Move G2 Xeger Grover\n\n13) ts52: Move G1 Countrywide Xeger\n\n14) xeger: Trade G1 R1 Xeger\n\n15) ts52: Sacrifice R1 Grover\nAttack R1S Xeger\n\n16) xeger: Move G1 Countrywide Ts52\n\txeger: Erm ... how were you able to take over my r1 when I had a g3 in the system? Perhaps I need to brush up on the rules!\n\n17) ts52: Trade G3 R3 Ts52\n\txeger: Ahh, I see -- I thought my larger ship would protect ANY of the smaller ships from being attacked. Live and learn!\n\n18) xeger: Trade G2 R2 Grover\n\tts52: Yeah, you can attack any ship up to the size of your largest ship in the system.\n\n19) ts52: Build G1 Xeger\n\n20) xeger: Trade G3 R3 Xeger\n\txeger: Goodbye, cruel world!\n\n21) ts52: Build R1 Xeger\n\n22) xeger: Attack R1 Xeger\n\n23) ts52: Build R1 Xeger\nCatastrophe Xeger Red\n\tts52: Thanks for the game. A few tips, creating a 'small universe' (using the same size pieces in your homeworld as your opponents) makes the game much tougher, as it's one fewer step for your enemy to get to your homeworld.\n\txeger: Thanks for the tip.\n\n\nHomeworlds Online (SDG# 10771)\nVariants: "Hard time"\nStarted: 2008.3.24, Ended: 2008.5.27\nParticipants: wyons (S), jeep (N)\nWinner: wyons\n\n1) jeep: Homeworld Y1 B2 G3\n\n2) wyons: Homeworld B1 R3 G3\n\n3) jeep: Build G1 Jeep\n\n4) wyons: Build G1 Wyons\n\n5) jeep: Trade G1 Y1 Jeep\n\twyons: hi there, enjoy the game!\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) jeep: Build Y2 Jeep\n\n8) wyons: B Y2 Wyons\n\n9) jeep: Discover Y1 Jeep G3 Grower\n\n10) wyons: Discover Y1 Wyons G2 Bag\n\n11) jeep: Build G1 Jeep\n\n12) wyons: Build G1 Wyons\n\n13) jeep: Discover Y2 Jeep B3 Changer\n\n14) wyons: Trade G1 B1 Wyons\n\n15) jeep: Discover G1 Jeep Y3 Cache\n\n16) wyons: Build B1 Wyons\n\n17) jeep: Build G1 Jeep\n\n18) wyons: Move B1 Wyons Bag\n\n19) jeep: Trade G1 R1 Jeep\n\n20) wyons: Build B2 Bag\n\n21) jeep: Build G1 Jeep\n\n22) wyons: Build B2 Wyons\n\tjeep: Yeah, after staring at things for 3 days, it still hasn't improved for me.\n\n23) jeep: Build R1 Jeep\n\n24) wyons: Build B3 Bag\n\twyons: I agree you might be in trouble. But there are so many twists and turns with this game........:)\n\n25) jeep: Discover R1 Jeep B3 Sigh\n\n26) wyons: Trade B3 R3 Bag\n\n27) jeep: Discover G1 Jeep B3 Scary\n\n28) wyons: Build R1 Bag\n\n29) jeep: Build G1 Jeep\n\n30) wyons: Build G2 Wyons\n\n31) jeep: Sacrifice G3 Jeep\nBuild G2 Scary\nBuild G3 Jeep\nBuild R2 Sigh\n\n32) wyons: Move R3 Bag Scary\n\n\tjeep: Sorry. *sigh* Life has taken over my time.\n\nHomeworlds Online (SDG# 10777)\nVariants: "Hard time"\nStarted: 2008.3.26, Ended: 2008.6.1\nParticipants: dsheldon (S), nycavri (N)\nWinner: dsheldon\n\n1) nycavri: Homeworld B1 Y2 G3\n\tnycavri: Hello again! TaGG.\n\n2) dsheldon: Homeworld B3 Y1 G3\n\n3) nycavri: Build G1 Nycavri\n\n4) dsheldon: Build G1 Dsheldon\n\n5) nycavri: Trade G1 Y1 Nycavri\n\tdsheldon: Hello yourself. I haven't had a game in months, I hope I'm not too rusty.\n\tnycavri: I can only hope . . . *grin*\n\n6) dsheldon: Discover G1 Dsheldon B2 Chip\n\n7) nycavri: Build G1 Nycavri\n\n8) dsheldon: Build G1 Chip\n\n9) nycavri: Build G2 Nycavri\n\n10) dsheldon: Build G2 Dsheldon\n\n11) nycavri: Discover G1 Nycavri Y3 Mvb\n\n12) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Dsheldon\nBuild G3 Dsheldon\nBuild G3 Chip\n\n13) nycavri: Discover G1 Mvb Y2 Mvg\n\n14) dsheldon: Discover G2 Dsheldon Y2 Frito\n\n15) nycavri: Move G1 Mvg Dsheldon\n\tnycavri: Ack. Was right the first time . . .\n\n16) dsheldon: Trade G2 R2 Dsheldon\n\n17) nycavri: Sacrifice G2 Nycavri\nBuild G2 Dsheldon\nBuild G2 Dsheldon\nCatastrophe Dsheldon G\n\n18) dsheldon: Trade G1 Y1 Chip\n\n19) nycavri: Build G1 Nycavri\n\tdsheldon: Oh yeah... you can sacrifice stuff to go back in the pool too. Somehow I thought there was no Green available to you. This could be... hard.\n\n20) dsheldon: Build G1 Frito\n\tnycavri: When you didn't respond to the threat, I assumed I must have made a mistake!\n\n21) nycavri: Build G2 Nycavri\n\n22) dsheldon: Move G3 Chip Dsheldon\n\n23) nycavri: Discover G2 Nycavri Y3 Iw\n\n24) dsheldon: Sacrifice G1 Frito\nBuild Y2 Chip\n\n25) nycavri: Trade G1 R1 Nycavri\n\n26) dsheldon: Build Y3 Chip\n\n27) nycavri: Discover G2 Iw B2 Jw\n\n28) dsheldon: Discover Y2 Chip G3 Hulk\n\n29) nycavri: Discover Y1 Nycavri B3 Fr\n\n30) dsheldon: Build Y3 Hulk\n\n31) nycavri: Build G1 Nycavri\n\n32) dsheldon: Sacrifice Y2 Hulk\nMove Y3 Hulk Jw\nMove Y3 Chip Fr\n\n33) nycavri: Build G1 Jw\n\n34) dsheldon: Sacrifice R2 Dsheldon\nAttack G1N Jw\nAttack G2N Jw\n\n35) nycavri: Sacrifice G1 Nycavri\nBuild Y2 Fr\n\tdsheldon: I'm not sure it will help you much this time, but you need to be much more aggresive. Since the beginning of the game you've overdeveloped near your homeworld. So far you've brought one medium ship within a jump of my homeworld while I frequently have had several larges threatening yours. I put some notes on the Icehousegames wiki about this last week:\r\n\r\nhttp://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy#The_Early_Game_-__Building_Up\r\n\r\nWe're past the opening, but it's still something to think about. For reference, the simple rubric here gives you a score of 11 to my 21, which doesn't even give an accounting of your unfavorable color distribution.\r\n\r\nI hope this doesn't come across as grandstanding and is taken as the constructive advice it is intended to be.\n\tnycavri: No problem, d. I know I can use the help!\r\n\r\nI've found when I'm agressive, I lose quickly. Of course, when I'm defensive, I still end up losing, but less quickly!\r\n\r\nI was concentrating on stalling you with my green catastrophe gambit, but since it has looked to me that I was always one move away from losing a home star, and have played the only move I could see which defended against this.\r\n\r\nI have to go back and see if there was somewhere where I could have been more agressive, but if memory serves, this would only have been possible if you missed an obvious opening . . .\r\n\r\n\r\nI continue to either get greamed by experts, or beat rookies on silly mistakes. Neither is especially satisfying. I really would like to play Homeworlds with someone at my own level . . .\n\tnycavri: I think the pace of play also hurts me here, where it doesn't on other SDG games.\r\n\r\nI have a pretty good idea of my/your next few moves once I look over the board but, even with the notes, I often miss something when I come bac for my move sometimes days later . . .\n\n36) dsheldon: Sacrifice G2 Jw\nBuild Y3 Fr\nBuild G1 Dsheldon\nCatastrophe Fr Y\n\n37) nycavri: Build G2 Nycavri\n\tdsheldon: Maybe you would have an easier time if you don't have so many active games. Our game is he only one I'm in right now. It makes it pretty easy to concentrate, even with several days between moves.\r\n\r\nI would be overjoyed if I could ever play against you face to face.\r\n\r\nHave you tried looking for SDG players with a similar ranking? The interface to do that is pretty clunky, but I'm pretty sure it's possible.\n\tnycavri: It's true, I do prefer a certain type of game here - one where I can see the whole situation in one look. Penguin Soccer is like that, and Blam! Also games like Photonic Attack and Diagonals.\r\n\r\nWhere are you based? I'm in New York. My full time job in Summer Camping means I don't get to do any of the big f2f cons (althought I did get to NonCon this year, which was great).\r\n\r\nThe problem with the ranking system is that to get a score as low as mine, you have to have an awful lot of games under your belt. Most people quit on a game long before their score gets into the 1400s . . .\n\n38) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Frito\nBuild G3 Chip\nBuild G3 Dsheldon\n\n39) nycavri: Build R1 Nycavri\n\tdsheldon: I'm in Pittsburgh, I also never get out to cons and, with a baby on the way in September, it's not something I expect to be able to do for a while. But my sister lives in New York City and it's not impossible that I would find my way out there sometime.\n\tnycavri: Congrats on your "package in the mail"! My wife goes off the pill this summer . . .\n\n40) dsheldon: Discover G2 Frito R3 Strawberry\n\n41) nycavri: Trade R1 B1 Nycavri\n\tdsheldon: Thank you. It's an exciting time, to be sure. Best of luck once you get started ;)\n\n42) dsheldon: Sacrifice Y3 Jw\nMove G1 Chip Strawberry\nMove G1 Strawberry Nycavri\nMove G2 Strawberry Nycavri\nCatastrophe Nycavri G\n\n43) nycavri: Trade B1 G1 Nycavri\n\n44) dsheldon: Discover G3 Chip Y3 Sun\n\n45) nycavri: Build G2 Nycavri\n\n46) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Frito\nBuild G3 Jw\nBuild G3 Dsheldon\n\n47) nycavri: Discover G1 Nycavri Y3 Tl\n\n48) dsheldon: Sacrifice G3 Jw\nBuild G3 Jw\nBuild Y1 Chip\nBuild Y2 Chip\n\n49) nycavri: Discover G1 Tl B1 Bk\n\n50) dsheldon: Trade Y2 R2 Chip\n\n51) nycavri: Build R1 Nycavri\n\n52) dsheldon: Move G3 Sun Nycavri\n\n\tnycavri: Not sure why I've tried to play this one out. Good Game.\n\nHomeworlds Online (SDG# 10806)\nStarted: 2008.4.1, Ended: 2008.4.26\nParticipants: wyons (S), ts52 (N)\nWinner: wyons\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) wyons: Homeworld G3 Y1 B3\n\tts52: Have a good game!\n\twyons: and you\n\n3) ts52: Build G1 Ts52\n\n4) wyons: Build B1 Wyons\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) wyons: Build B1 Wyons\n\n7) ts52: Build G1 Ts52\n\n8) wyons: Discover B1 Wyons B2 Bluemeanies\n\tts52: Oops, sorry. Typo there I noticed just after I hit send. D'oh!\n\n9) ts52: Build G1 Ts52\n\twyons: no worries. I think it is fine to change moves anyway.\n\n10) wyons: Build B2 Wyons\n\n11) ts52: Build G2 Grover\n\n12) wyons: Discover B1 Wyons B2 Trueblue\n\n13) ts52: Discover G1 Ts52 B3 Cookie_monster\n\n14) wyons: Trade B3 G3 Wyons\n\n15) ts52: Sacrifice G3 Ts52\nBuild G2 Cookie_monster\nBuild G2 Cookie_monster\nBuild G3 Ts52\n\n16) wyons: Build B3 Wyons\n\n17) ts52: Trade G2 Y2 Cookie_monster\n\n18) wyons: Discover G3 Wyons Y2 Grassgreener\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild Y1 Cookie_monster\n\n20) wyons: Discover G3 Grassgreener Y3 Xanthrophyl\n\n21) ts52: Discover G2 Ts52 Y3 Bigbird\n\n22) wyons: Trade B3 R3 Wyons\n\n23) ts52: Trade G2 R2 Cookie_monster\n\n24) wyons: Build B3 Wyons\n\n25) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild Y1 Cookie_monster\n\n26) wyons: Trade B3 Y3 Wyons\n\n27) ts52: Discover Y2 Cookie_monster R2 Elmo\n\n28) wyons: Discover R3 Wyons Y2 Orange\n\n29) ts52: Move R2 Cookie_monster Trueblue\n\n30) wyons: Build B3 Wyons\n\n31) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Trueblue\nBuild R1 Trueblue\n\n32) wyons: Move R3 Orange Bigbird\n\n33) ts52: Sacrifice Y2 Elmo\nMove G2 Bigbird Bluemeanies\nMove G2 Bigbird Bluemeanies\n\n34) wyons: Trade B3 R3 Wyons\n\n35) ts52: Attack B1 Trueblue\n\n36) wyons: Build B3 Wyons\n\n37) ts52: Build Y2 Cookie_monster\n\n38) wyons: Move Y3 Wyons Bluemeanies\n\n39) ts52: Sacrifice Y2 Cookie_monster\nMove Y1 Cookie_monster Bluemeanies\nMove Y1 Cookie_monster Bluemeanies\n\n40) wyons: Sacrifice Y3 Bluemeanies\nMove B2 Wyons Trueblue\nMove B1 Bluemeanies Bigbird\nMove B1 Bigbird Trueblue\nCatastrophe Trueblue Blue\n\n41) ts52: Trade Y1 R1 Bluemeanies\n\n42) wyons: Move G3 Xanthrophyl Ts52\n\n43) ts52: Sacrifice R1 Bluemeanies\nAttack G3 Ts52\n\n44) wyons: Move R3 Bigbird Ts52\n\n45) ts52: Trade G3 R3 Ts52\n\n46) wyons: Sacrifice R3 Wyons\nAttack R3N Ts52\nAttack G3N Ts52\nAttack G1N Ts52\n\n\tts52: Well played. Thanks for the game.\n\twyons: thank you too! Interesting game. I thought I was losing for a large part of it. \n\nHomeworlds Online (SDG# 10821)\nStarted: 2008.4.1, Ended: 2008.7.25\nParticipants: Keith (S), wyons (N)\nWinner: wyons\n\n1) wyons: Homeworld B3 R1 G3\n\n2) Keith: Homeworld Y1 B2 G3\n\twyons: since we have been talking so much about all this I thought it would be good to try it and see. Also I dont think we have ever played any other game appart from GR. Hope your computer woes are over.\n\tKeith: A good idea. I see you have risen through the ranks rather quickly. You seem to have quickly become one of the sophisticated strategists. I remember reading about those starting position/play styles once though I have not put any real effort into understanding them. It is probably something I need to do if I am ever to break out of the group that lags behind the top tier of players by 100 to 150 points.\n\tKeith: My computer woes may be over by this weekend. It will probably be a day before I make my opening move.\n\n3) wyons: Build G1 Wyons\n\n4) Keith: Build G1 Keith\n\twyons: so many considerations for the first move, then the second move is forced...\n\tKeith: It is an odd element of the design. Things do tend to pick up quickly after that though we will probably see a few low tension turns before fighting for control of the stash makes things interesting.\n\n5) wyons: Trade G1 Y1 Wyons\n\tKeith: "... I remember reading about those starting position/play styles once..." \r\n\r\nI took a second look. I am the one that posted it to the wiki!\n\n6) Keith: Trade G1 Y1 Keith\n\twyons: Interesting- I think I may have read what your wrote. Homeworlds is an awesome game I think- full of unexpected twists. Sometimes when I am losing if I stare at it for long enough suddenly a completely unexpected escape pops up that has been staring me in the face but which I just did not see...\n\tKeith: Actually I did not write it, Zoltar did in a game that I was monitoring. I just posted it. \r\n\r\nI don't think of my start in terms of Banker. I think g3 ship can I crank a factory. I only remember banking a ship once. FWIW my event horizon is probably only about 3 to 5 ply. I go on gut as much as anything and it easy with all the possibilities to overlook something.\n\n7) wyons: Build Y2 Wyons\n\n8) Keith: Build Y2 Keith\n\n9) wyons: Build Y2 Wyons\n\n10) Keith: Discover Y1 Keith G3 Geeliwan\n\twyons: I only usually go to about 3 ply aswell. Given that once this game is underway there must be around 40+ options each ply we are talking 40 cubed for a three ply search (76,000!). The only hope is to prune the tree and this is where gut/intuition comes in. I dont like it when games are purely logical. See my entry under too many options (towards the end): http://forums.superdupergames.org/viewtopic.php?t=648&postdays=0&postorder=asc&start=90&sid=b6d6be28a3f0a06b6d9661c4011b075e\n\n11) wyons: Discover Y1 Wyons G2 Greengenie\n\n12) Keith: Build Y3 Geeliwan\n\tKeith: I looked up your post. That topic was one of the most interesting discussions in the forums. I tracked it all the way through page 6 but had missed your input. It helped me decide the move I just made in my Cannon tournament game against Meadmaker. I was in a situation of being able to decide to initiate an exchange of cannon fire or to initiate both sides moving to avoid the cannon fire. I played out on a physical board half a dozen moves ahead then mentally looked another 4 to 6 ply beyond that. I did not see any advantage looking 10 to 12 ply forward between cannon fire or avoidence. This is where your post comes in. After reading it I went with the move that my gut said would make more of a difference in the end game, which is probably 20 moves or more down the line.\n\n13) wyons: Build Y3 Greengenie\n\twyons: good, I am glad it might have been helpful. Guts arent always right of course! By the way I finally cracked around offering a prize for GR (forums, general)\n\n14) Keith: Move Y1 Geeliwan Greengenie\n\tKeith: Saw that. Sent you an email via my litigation email address.\n\n15) wyons: Discover Y1 Greengenie Y3 Mellowyellow\n\n16) Keith: Build G1 Keith\n\twyons: Thanks for your email. I have responded directly to it\n\n17) wyons: Build G1 Wyons\n\n18) Keith: Trade G1 R1 Keith\n\n19) wyons: Trade Y2 R2 Wyons\n\n20) Keith: Build Y2 Geeliwan\n\tKeith: So far in the game I have been working to avoid having stash troubles rather than to give you stash troubles. My gut says I need to be careful on the next move but I have not had a good chunk of sit down and think time.\n\n21) wyons: Build G1 Wyons\n\n22) Keith: Build G1 Keith\n\twyons: yes, it certainly seems to take 'sit down and think time' - there are so many twists and turns..\n\n23) wyons: Trade G1 B1 Wyons\n\n24) Keith: Trade G1 B1 Keith\n\n25) wyons: Build G1 Wyons\n\twyons: b g1 wyons\n\n26) Keith: Build G1 Keith\n\n27) wyons: Discover G1 Wyons B2 Bluegreens\n\n28) Keith: Build R1 Keith\n\n29) wyons: Build R2 Wyons\n\n30) Keith: Move R1 Keith Mellowyellow\n\n31) wyons: Sacrifice R2 Wyons\nAttack R1S Mellowyellow\nAttack Y1S Greengenie\n\tKeith: maybe not.\n\tKeith: I was originally okay with your being able to build a red two. My thought being that could sacrifice a yellow three and make one home system star and all of your reds go boom. I failed to factor in that your homeworld would then be only one system away from mine. You can then sacrifice your yellow three and make my greens go away. You then have a 3-pointer and I don't. Can't be good.\n\n32) Keith: Move B1 Keith Geeliwan\n\twyons: I agree with your analysis. I think it is rarely good going for a home star. :)\n\n33) wyons: Sacrifice G3 Wyons\nBuild G2 Bluegreens\nBuild G2 Bluegreens\nBuild G3 Wyons\n\tKeith: Ahem! Well at least I am better off than if I had done the red catstrophe. Not much, but better off.\r\n\r\nWell I would have it you would have ended up two systems away. a 3-pointer and a 1-pointer for two 2-pointers and a home star would have been worth it.\n\n34) Keith: Sacrifice Y2 Geeliwan\nMove G1 Keith Geeliwan\nMove G1 Geeliwan Bluegreens\nCatastrophe Bluegreens Green\n\n35) wyons: Build Y2 Wyons\n\n36) Keith: Build R2 Keith\n\n37) wyons: Move R1 Mellowyellow Greengenie\n\n38) Keith: Move R2 Keith Geeliwan\n\n39) wyons: Move B1 Wyons Greengenie\n\n40) Keith: Build G1 Keith\n\n41) wyons: Discover Y1 Mellowyellow G2 Xanthrophyl\n\n42) Keith: Sacrifice G3 Keith\nBuild Y3 Geeliwan\nBuild R2 Geeliwan\nBuild R3 Keith\n\n43) wyons: Sacrifice Y2 Wyons\nMove Y1 Greengenie Geeliwan\nMove Y1 Xanthrophyl Geeliwan\nCatastrophe Geeliwan Yellow\n\twyons: I wasnt atall sure about that move but time is running out..\n\tKeith: I am not sure about all the rammifications of this next move but most of the options that fall out of it seem to be in my favor.\n\n44) Keith: Trade R3 G3 Keith\n\n45) wyons: Build R3 Greengenie\n\twyons: well that is what I expected you to do, so I have only myself to blame if I got it wrong.\n\n46) Keith: Build R3 Keith\n\n47) wyons: Discover R3 Greengenie Y3 O-range\n\n48) Keith: Trade R3 B3 Keith\n\n49) wyons: Build R3 Greengenie\n\n50) Keith: Build R3 Keith\n\n51) wyons: Trade R3 Y3 Greengenie\n\n52) Keith: Sacrifice B3 Keith\nTrade R2 Y2 Geeliwan\nTrade B1 Y1 Geeliwan\nPass\n\tKeith: I am slowly going under here. Four 3-pointers to two. \n\tKeith: Perhaps three to two but given that you are spread out over three sectors with yours to my one I am going to run into trouble adding 3-pointers before you will.\n\n53) wyons: Discover Y3 Greengenie G1 Dewshine\n\tKeith: I mean four to three. Ghaaa. I can't think straight anymore.\n\n54) Keith: Move R3 Keith Geeliwan\n\twyons: I think you are right in assessing that 3-pointers are crucial. It seems to be far more important to have one 3-pointer -say- than several smaller ones..\n\n55) wyons: Build G2 Wyons\n\n56) Keith: Discover G1 Keith R3 Brightlygo\n\n57) wyons: Sacrifice G1 Wyons\nBuild B1 Greengenie\n\n58) Keith: Build G1 Keith\n\twyons: thanks for all the work you've been doing with \r\nGR AI\n\n59) wyons: Move Y3 Dewshine Brightlygo\n\n60) Keith: Sacrifice G1 Brightlygo\nBuild R2 Keith\n\twyons: hmm need to think on that some more...\n\n61) wyons: Move G2 Wyons Greengenie\n\tKeith: Did you get my GR4 email?\n\n62) Keith: Move G1 Keith Geeliwan\n\twyons: I did, but I havent had a chance to study it yet as its at home (and I seem to be living at work at present!)\n\tKeith: No problem. I did not expect feedback on it yet. I am just not sure what email gets through to you. At one time email from my personal account was not making it through.\n\n63) wyons: Build G1 Wyons\n\n64) Keith: Build G1 Keith\n\n65) wyons: Sacrifice Y3 Greengenie\nMove G2 Greengenie Geeliwan\nMove G1 Wyons Greengenie\nMove G1 Greengenie Geeliwan\nCatastrophe Geeliwan Green\n\n66) Keith: Discover Y2 Keith G3 Midworld\n\n67) wyons: Discover R2 Wyons R2 Redperil\n\n68) Keith: Trade R2 Y2 Keith\n\n69) wyons: Build G1 Wyons\n\tKeith: Hmmmm... I had the same thing in mind for greengeni.\n\tKeith: As long as you don't make a critical error you are going to win this one. Your play has been sharper than mine all the way through.\n\n70) Keith: Build R2 Keith\n\twyons: and a critical error is easy in this game!\n\n71) wyons: Build R3 Greengenie\n\n72) Keith: Move G1 Keith Midworld\n\n73) wyons: Trade R3 Y3 Greengenie\n\n74) Keith: Build G1 Keith\n\n75) wyons: Build R3 Greengenie\n\n76) Keith: Build G2 Midworld\n\n77) wyons: Sacrifice Y3 Brightlygo\nDiscover R1 Greengenie B1 Purpleheart\nMove G1 Wyons Greengenie\nMove G1 Greengenie Midworld\nCatastrophe Midworld Green\n\twyons: thanks for your emails. I havent had time to study them yet.\n\tKeith: Your welcome.\r\n\r\nI am still consistently failing to see ply ahead.\n\n\tKeith: My Homeworlds fu has become weak while yours has become strong. I am just dragging things out at this point. Well done.\r\n\r\nGrim Reaper weekend for me. The family is out of the country and I have only a bathroom's worth of wallpapering to do. I hae probably gotten 80% of the improvement I am going to be able to get with the limited look ahead and two of my five evaluation elements having some accuracy issues. I am hoping that playing a bunch of games this weeked, instead of watching them be played, will give me the information for squeezing out the remaining 20% of possible improvement.\n\twyons: Many thanks for the game and I dont blame you for resigning! The GR outcomes should be interesting.\n\nHomeworlds Online (SDG# 10847)\nVariants: "Hard time"\nStarted: 2008.4.2, Ended: 2008.4.7\nParticipants: TwoShort (S), mneme (N)\nWinner: TwoShort\n\n1) mneme: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 Y3 G3\n\n3) mneme: Build G1 Mneme\n\tTwoShort: Howdy\n\n4) TwoShort: Build G1 Twoshort\n\tmneme: Heya. Should be enjoyable to lose to you (again).\n\n5) mneme: Trade G1 Y1 Mneme\n\tTwoShort: I'm not sure whether to argue with that attitude or encourage it. :)\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) mneme: Build Y1 Mneme\n\tmneme: Hey, might as well take the psych advantage you have.\n\n8) TwoShort: Build B1 Twoshort\n\n9) mneme: Build Y1 Mneme\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) mneme: Discover Y1 Mneme G3 Applesauce\n\n12) TwoShort: Build B2 Twoshort\n\n13) mneme: Build Y2 Applesauce\n\n14) TwoShort: Discover B1 Twoshort B2 Bluzilla\n\n15) mneme: Discover Y1 Mneme B3 Bluebird\n\n16) TwoShort: Build B3 Grogar\n\n17) mneme: Build Y2 Mneme\n\n18) TwoShort: Trade B3 Y3 Grogar\n\n19) mneme: Trade Y2 G2 Mneme\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Bluzilla\nBuild B3 Twoshort\nBuild Y2 Grogar\n\n21) mneme: Sacrifice G2 Mneme\nBuild Y2 Mneme\nBuild Y3 Bluebird\n\n22) TwoShort: Trade B3 G3 Twoshort\n\n23) mneme: Sacrifice Y2 Mneme\nMove Y1 Applesauce Grogar\nMove Y1 Bluebird Grogar\nCatastrophe Grogar Y\n\n24) TwoShort: Build B3 Grogar\n\n25) mneme: Build G1 Mneme\n\n26) TwoShort: Trade B3 Y3 Grogar\n\n27) mneme: Trade G3 B3 Mneme\n\n28) TwoShort: Trade B3 G3 Bluzilla\n\n\tmneme: no point. blue freeze out = death in this case.\n\nHomeworlds Online (SDG# 10593)\nStarted: 2008.4.3, Ended: 2008.4.25\nParticipants: dl33t (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 10851)\nStarted: 2008.4.3, Ended: 2009.12.9\nParticipants: dl33t (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n\nHomeworlds Online (SDG# 10848)\nVariants: "Hard time"\nStarted: 2008.4.5, Ended: 2008.5.6\nParticipants: MikeYarrum (S), Keith (N)\nWinner: Keith\n\n1) Keith: Homeworld B1 Y3 G3\n\tKeith: This is a suprise. I was beginning to think you had moved on from SDG.\n\n2) MikeYarrum: Homeworld R3 B2 G3\n\tMikeYarrum: Moved on? To where?\r\n\r\nIt was a whole series of unfortunate events. But Now I'm back.\n\n3) Keith: Build G1 Keith\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) Keith: Trade G1 B1 Keith\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n7) Keith: Build G1 Keith\n\n8) MikeYarrum: Build Y1 Mikeyarrum\n\n9) Keith: Trade G1 Y1 Keith\n\n10) MikeYarrum: Discover Y1 Mikeyarrum G1 Yotsuba\n\n11) Keith: Build Y2 Keith\n\n\nHomeworlds Online (SDG# 10644)\nVariants: "Unrated, Hard time"\nStarted: 2008.4.8, Ended: 2008.4.11\nParticipants: scottobear (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 10704)\nVariants: "Hard time"\nStarted: 2008.4.10, Ended: 2008.7.19\nParticipants: TwoShort (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) Jesse: Build G1 Jesse\n\n4) TwoShort: Build G1 Twoshort\n\n5) Jesse: Build G1 Jesse\n\n6) TwoShort: Build G2 Twoshort\n\n7) Jesse: Trade G1 Y1 Jesse\n\n8) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n9) Jesse: Build Y1 Jesse\n\n10) TwoShort: Build G1 Twoshort\n\n11) Jesse: Discover G1 Jesse B2 Honeybee\n\n12) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n13) Jesse: Move Y1 Jesse Honeybee\n\n14) TwoShort: Discover G2 Yolonda G2 Greenland\n\n15) Jesse: Discover Y1 Honeybee G3 Apogee\n\n16) TwoShort: Build G2 Bluonia\n\n17) Jesse: Build Y1 Jesse\n\n18) TwoShort: Trade G2 Y2 Bluonia\n\n19) Jesse: Build G2 Jesse\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Bluonia\n\n21) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y3 Apogee\nBuild Y3 Apogee\n\n22) TwoShort: Sacrifice Y2 Bluonia\nMove G2 Greenland Jesse\nDiscover G1 Bluonia Y2 Yonderboy\n\n23) Jesse: Sacrifice Y3 Apogee\nMove Y1 Jesse Honeybee\nMove G2 Jesse Honeybee\nDiscover G2 Honeybee Y3 Wonderwhy\n\n24) TwoShort: Trade G1 R1 Twoshort\n\tTwoShort: Well that looks grim.\n\n25) Jesse: Attack G2 Jesse\n\n26) TwoShort: Build G1 Yonderboy\n\n27) Jesse: Trade G2 R2 Jesse\n\n28) TwoShort: Discover Y2 Bluonia G2 Gordon\n\n29) Jesse: Move R2 Jesse Yonderboy\n\n30) TwoShort: Move Y3 Bluonia Yonderboy\n\tTwoShort: OK, I've stalled long enough to win my other game and hit 1900. Woo-hoo! The way things are going here, I think I should bask in the glory quickly :)\n\n31) Jesse: Move R2 Yonderboy Apogee\n\n32) TwoShort: Build R1 Twoshort\n\n33) Jesse: Sacrifice G2 Wonderwhy\nBuild Y3 Jesse\nBuild R2 Apogee\n\n34) TwoShort: Build G2 Twoshort\n\n35) Jesse: Sacrifice Y3 Apogee\nMove R2 Apogee Honeybee\nMove Y1 Jesse Yonderboy\nMove Y1 Apogee Yonderboy\nCatastrophe Yonderboy Y\n\n36) TwoShort: Discover R1 Twoshort B3 Bluestar\n\n37) Jesse: Build G1 Jesse\n\n38) TwoShort: Move G2 Twoshort Bluestar\n\n39) Jesse: Build G1 Honeybee\n\n40) TwoShort: Build G2 Twoshort\n\n41) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y1 Jesse\nBuild Y1 Honeybee\n\n42) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n43) Jesse: Move Y1 Honeybee Apogee\n\n44) TwoShort: Sacrifice G2 Bluestar\nBuild R2 Twoshort\nBuild R3 Bluestar\n\n45) Jesse: Sacrifice G3 Jesse\nBuild G2 Honeybee\nBuild G3 Jesse\nBuild R3 Honeybee\n\n46) TwoShort: Trade R3 Y3 Bluestar\n\n47) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y2 Apogee\nBuild R3 Apogee\n\n48) TwoShort: Sacrifice G2 Yolonda\nBuild R3 Bluestar\nBuild Y3 Gordon\n\n49) Jesse: Discover Y3 Jesse G2 Perigee\n\n50) TwoShort: Sacrifice Y2 Gordon\nMove R1 Twoshort Apogee\nMove R2 Twoshort Apogee\nCatastrophe Apogee Red\n\n51) Jesse: Build Y2 Honeybee\n\n52) TwoShort: Move R3 Bluestar Twoshort\n\n53) Jesse: Move R2 Honeybee Apogee\n\n54) TwoShort: Build R1 Twoshort\n\n55) Jesse: Build R2 Apogee\n\n56) TwoShort: Trade R1 B1 Twoshort\n\n57) Jesse: Trade G1 B1 Honeybee\n\n58) TwoShort: Build G1 Twoshort\n\n59) Jesse: Move R2 Apogee Perigee\n\n60) TwoShort: Build R1 Twoshort\n\n61) Jesse: Sacrifice G3 Jesse\nBuild R2 Perigee\nBuild R3 Apogee\nBuild G3 Jesse\n\n62) TwoShort: Build B2 Twoshort\n\n63) Jesse: Sacrifice Y3 Perigee\nMove B1 Honeybee Apogee\nMove B1 Apogee Twoshort\nDiscover G1 Jesse B2 Frisbee\nCatastrophe Twoshort B\n\n\tJesse: I almost fell into your tricky trap.\n\tTwoShort: Shucks :) Not that I really expected to get away with it, but it seemed like it was worth a try. Anyway, now you have me for sure. \r\n Great game, thanks!\n\nHomeworlds Online (SDG# 10749)\nStarted: 2008.4.11, Ended: 2008.5.2\nParticipants: larry (S), smilingra (N)\nWinner: smilingra\n\n1) smilingra: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 10711)\nStarted: 2008.4.11, Ended: 2008.4.30\nParticipants: MatrixFrog (S), Wheatberry (N)\nWinner: MatrixFrog\n\n1) Wheatberry: Homeworld G2 Y1 B3\n\n2) MatrixFrog: Homeworld B3 G2 Y3\n\tWheatberry: Hiya! Been wanting to learn Homeworlds for awhile now, but haven't been able to get any of my local friends interested in it. Feel free to trounce me if I make any newbish mistakes? ;)\n\n3) Wheatberry: Build B1 Wheatberry\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Wheatberry: Trade B1 Y1 Wheatberry\n\n6) MatrixFrog: Build Y2 Matrixfrog\n\n7) Wheatberry: Build Y2 Wheatberry\n\n8) MatrixFrog: Discover Y2 Matrixfrog G1 Bing\n\tWheatberry: Oh snap! Can you use sacrifice actions sequentially? i.e. could you sacrifice your Y3 to make 3 jumps in a row with a single piece? i.e. can you send your y1 out to discover a small star, then send it from *there* to discover a large star, then move it from *there* into my homeworld, triggering a catastrophe on yellow?\n\tMatrixFrog: I could indeed, however, I probably won't do something that drastic, this early in the game. I would probably use my smallest ship to do that, which is y1 here. So I would be left with a single y2. On the other hand, you would be left with a single b3, plus a 1-star homeworld, which is easier for me to get to. So maybe it would be worth it. I won't do it now, in any case, but you should probably move one of your y ships out or trade them, pretty soon.\n\n9) Wheatberry: Discover Y1 Wheatberry B3 Crosby\n\n10) MatrixFrog: Trade Y1 G1 Matrixfrog\n\tWheatberry: Okay, phew. Glad I asked. That's a cool rule, makes the galaxy seem a whole lot smaller. :)\n\n11) Wheatberry: Move Y2 Wheatberry Crosby\n\n12) MatrixFrog: Build G1 Matrixfrog\n\n13) Wheatberry: Trade Y2 R2 Crosby\n\n14) MatrixFrog: Trade G1 R1 Matrixfrog\n\n15) Wheatberry: Move R2 Crosby Bing\n\n16) MatrixFrog: Discover Y2 Bing G3 Jello\n\n17) Wheatberry: Move Y1 Crosby Bing\n\n18) MatrixFrog: Build R1 Matrixfrog\n\n19) Wheatberry: Build R1 Bing\n\n20) MatrixFrog: Build Y1 Jello\n\n21) Wheatberry: Build B1 Wheatberry\n\n22) MatrixFrog: Build Y2 Matrixfrog\n\n23) Wheatberry: Build Y2 Bing\n\n24) MatrixFrog: Build G1 Matrixfrog\n\n25) Wheatberry: Trade B3 Y3 Wheatberry\n\n26) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove Y2 Jello Wheatberry\nMove Y1 Jello Wheatberry\nCatastrophe Wheatberry Y\n\n27) Wheatberry: Move R2 Bing Wheatberry\n\n28) MatrixFrog: Discover G1 Matrixfrog Y1 Bang\n\n29) Wheatberry: Build R2 Wheatberry\n\tWheatberry: Ooof. Don't know what I was thinking there... Well played.\n\n30) MatrixFrog: Build G2 Bang\n\n31) Wheatberry: Sacrifice Y2 Bing\nMove Y1 Bing Wheatberry\nMove R1 Bing Matrixfrog\n\n32) MatrixFrog: Attack R1 Matrixfrog\n\n33) Wheatberry: Move R2 Wheatberry Bang\n\tWheatberry: Nothing much I could do to stop you at this point, lacking green...\n\n34) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R2 Bang\n\n35) Wheatberry: Discover B1 Wheatberry Y3 Bounce\n\n36) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove G1 Bang Wheatberry\nMove G2 Bang Wheatberry\nMove R2 Bang Wheatberry\n\n37) Wheatberry: Attack G2 Wheatberry\n\n38) MatrixFrog: Build G1 Wheatberry\nCatastrophe Wheatberry G\n\n\tWheatberry: Surrender? NEVER! ;)\r\n\r\nGood game.\n\nHomeworlds Online (SDG# 10792)\nVariants: "Hard time"\nStarted: 2008.4.13, Ended: 2008.5.18\nParticipants: Jesse (S), Wheatberry (N)\nWinner: Jesse\n\n1) Wheatberry: Homeworld B3 G2 Y3\n\n2) Jesse: Homeworld R3 B1 G3\n\tJesse: Hello. Welcome, and have a good game.\n\n3) Wheatberry: Build Y1 Wheatberry\n\n4) Jesse: Build G1 Jesse\n\tWheatberry: Hi & thanks. Still new to Homeworlds but it's a nifty game. I'll give it my best shot.\n\n5) Wheatberry: Trade Y1 G1 Wheatberry\n\tJesse: Let me know if you have any questions. I'm always pleased to help a new player get oriented.\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) Wheatberry: Discover G1 Wheatberry R1 Algol\n\n8) Jesse: Build Y1 Jesse\n\n\tWheatberry: Heh! I love that you get to name each new star system, instead of just getting something random.\n\n9) Wheatberry: Build G1 Algol\n\tJesse: First tip: It is unusual to discover red star systems, especially early in the game. It makes it harder to develop, because the red doesn't do anything but give you limited local protection. The home system is kind of a special case, though. I happen to like that a red-blue system gives me a little more flexibility to go with either a green or yellow large defender.\n\n10) Jesse: Build G1 Jesse\n\tWheatberry: Okay, good to know. I was just going with a "get a little of everything" strategy\n\tJesse: That's a good instinct.\n\n11) Wheatberry: Build Y1 Wheatberry\n\n12) Jesse: Discover G1 Jesse B2 Ocaml\n\n13) Wheatberry: Build Y2 Wheatberry\n\n14) Jesse: Move Y1 Jesse Ocaml\n\n15) Wheatberry: Trade Y2 R2 Wheatberry\n\n16) Jesse: Build Y2 Ocaml\n\n17) Wheatberry: Move Y1 Wheatberry Algol\n\n18) Jesse: Build G2 Jesse\n\n19) Wheatberry: Build Y2 Algol\n\n20) Jesse: Trade Y2 R2 Ocaml\n\n21) Wheatberry: Build Y2 Wheatberry\n\n22) Jesse: Sacrifice G3 Jesse\nBuild G2 Ocaml\nBuild G3 Jesse\nBuild Y2 Ocaml\n\n23) Wheatberry: Discover G1 Algol B2 Simula\n\tWheatberry: WHOA. Very clever.\n\n24) Jesse: Trade G1 B1 Ocaml\n\tWheatberry: Heh. Sorry. Just realized I couldn't pull the same trick, lacking another green ship in my home system...\n\n25) Wheatberry: Move G1 Algol Simula\n\tJesse: Yeah, that's called "the factory". It is a common and very useful tactic.\n\n26) Jesse: Discover Y2 Ocaml G3 Erlang\n\n27) Wheatberry: Sacrifice Y2 Wheatberry\nMove G1 Simula Jesse\nMove G1 Simula Jesse\nCatastrophe Jesse Green\n\tJesse: It's better to have diversity at each system and spread out your ships of like colors, than to clump them. For instance, you could have moved one of the yellows to Simula, instead, so both Algol and Simula could have served production purposes. Being a red star, Algol doesn't help you diversify, which slows you down in the opening, but with both a green and a yellow ship there, it's not something you need to abandon.\n\n28) Jesse: Sacrifice G2 Ocaml\nBuild Y2 Ocaml\nBuild Y3 Jesse\n\n29) Wheatberry: Discover Y1 Algol B2 Simula\n\tWheatberry: True. Though in this case I had other plans... mwahaha ;-)\n\n30) Jesse: Trade Y3 G3 Jesse\n\tJesse: I really must stop being incautious with mew players.\n\n31) Wheatberry: Trade Y1 G1 Simula\n\n32) Jesse: Trade Y1 G1 Ocaml\n\n33) Wheatberry: Build G1 Simula\n\n34) Jesse: Build R1 Ocaml\n\n35) Wheatberry: Move Y2 Algol Simula\n\n36) Jesse: Build G2 Ocaml\n\n\n37) Wheatberry: Build Y1 Simula\n\n38) Jesse: Discover G1 Ocaml Y3 Self\n\n39) Wheatberry: Trade Y1 R1 Simula\n\n40) Jesse: Build G2 Self\n\n41) Wheatberry: Build Y1 Simula\n\n42) Jesse: Build G3 Ocaml\n\n43) Wheatberry: Move G1 Simula Self\n\n44) Jesse: Sacrifice G3 Ocaml\nBuild G3 Ocaml\nBuild Y1 Erlang\nBuild Y3 Ocaml\n\n45) Wheatberry: Trade Y1 B1 Simula\n\n46) Jesse: Sacrifice Y3 Ocaml\nDiscover G3 Ocaml Y3 Intercal\nDiscover G1 Self Y1 Scheme\nMove B1 Ocaml Erlang\n\n47) Wheatberry: Move R2 Wheatberry Scheme\n\n48) Jesse: Sacrifice G3 Intercal\nBuild G3 Scheme\nBuild Y3 Ocaml\nBuild B2 Erlang\n\n49) Wheatberry: Move R2 Scheme Wheatberry\n\n50) Jesse: Sacrifice Y3 Ocaml\nMove R2 Ocaml Self\nMove B2 Erlang Scheme\nDiscover G3 Scheme Y3 Unlambda\n\n51) Wheatberry: Discover G1 Self R1 Algol\n\n52) Jesse: Sacrifice G3 Unlambda\nBuild G3 Scheme\nBuild Y3 Ocaml\nBuild B3 Scheme\n\n53) Wheatberry: Move B1 Simula Algol\n\n54) Jesse: Sacrifice G3 Scheme\nBuild G3 Scheme\nBuild B3 Erlang\nBuild R2 Ocaml\n\n55) Wheatberry: Build R3 Simula\n\n56) Jesse: Sacrifice Y2 Ocaml\nMove B3 Erlang Scheme\nMove B3 Scheme Wheatberry\n\n57) Wheatberry: Build R3 Wheatberry\n\n58) Jesse: Sacrifice R2 Ocaml\nAttack R3 Wheatberry\nAttack Y3 Wheatberry\n\n59) Wheatberry: Pass\n\n60) Jesse: Attack R2 Wheatberry\n\n\tWheatberry: It appears that you've got me. Good show. :)\n\tJesse: Thanks for the game. I hope you learned a few things to get you started on your Homeworlds career.\n\tWheatberry: I can see how stash control becomes critical in the one-on-one game. I'll be sure to get in on the arms race faster next time.\n\nHomeworlds Online (SDG# 10852)\nStarted: 2008.4.14, Ended: 2011.8.19\nParticipants: inundator (S), MikeYarrum (N)\nWinner: inundator\n\n1) MikeYarrum: Homeworld Y1 B2 G3\n\n2) inundator: Homeworld Y3 B2 G3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\n4) inundator: Build G1 Inundator\n\n5) MikeYarrum: Discover G1 Mikeyarrum Y3 Asagi\n\n6) inundator: Trade G1 R1 Inundator\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\n8) inundator: Discover R1 Inundator Y1 Tiny\n\n9) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\n10) inundator: Move R1 Tiny Asagi\n\n11) MikeYarrum: Discover G1 Asagi R1 Ena\n\n12) inundator: Build G1 Inundator\n\n13) MikeYarrum: Build Y1 Mikeyarrum\n\n14) inundator: Move R1 Asagi Mikeyarrum\n\n15) MikeYarrum: Trade Y1 R1 Mikeyarrum\n\n16) inundator: Attack R1 Mikeyarrum\n\n17) MikeYarrum: Discover Y1 Mikeyarrum R3 Asagi\n\n18) inundator: Trade R1 G1 Mikeyarrum\n\n\nHomeworlds Online (SDG# 10897)\nStarted: 2008.4.14, Ended: 2008.6.14\nParticipants: JJ12121616 (S), MikeYarrum (N)\nWinner: JJ12121616\n\n1) MikeYarrum: Homeworld B3 R2 G3\n\n2) JJ12121616: Homeworld G2 B1 Y3\n\n3) MikeYarrum: Build G1 Mikeyarrum\n\tJJ12121616: Good luck.\n\tMikeYarrum: Thanks, same to you!\n\n4) JJ12121616: Build Y1 Jj12121616\n\tJJ12121616: I'm sorry for the extended absence. My Internet was knocked out by roofers nudging our satellite while repairing storm damage. I'm back in now.\n\n5) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\tMikeYarrum: Not a problem. Glad to have you back.\n\n6) JJ12121616: Discover Y1 Jj12121616 B3 Market\n\n7) MikeYarrum: Build G1 Mikeyarrum\n\tJJ12121616: I am fairly new to the game. Don't go light on me, though. Might I ask why the red homestar?\n\tMikeYarrum: No problem. It's something I picked up here from advanced players - it makes it really difficult to attack my homeworld. Combine this with the fact that it will also be difficult to attack later in the game when 1 point pieces will be rare (2 and 3 point homestars).\r\n\r\nIt does put me at a slight disadvantage early in the game, as I have to trade for a yellow ship ASAP. But it tends to pay off later.\n\n8) JJ12121616: Build Y1 Jj12121616\n\n9) MikeYarrum: Build Y2 Mikeyarrum\n\n10) JJ12121616: Build Y2 Jj12121616\n\tJJ12121616: I understand. Basically I'm going to have to sac Y1's to get to your home. Your going to lock up all the small pieces all over the smalls, and just move a fat attacker out and dominate.\r\n\r\nI don't mind my setup. I've used it the most. Just make dudes and catastrophes, getting all the 3's to use.\r\n\r\nThis could be interesting. I'll end up locking up the 3's and you locking your home world entirely.\n\n11) MikeYarrum: Discover Y1 Mikeyarrum G1 Yotsuba\n\n12) JJ12121616: Discover Y1 Jj12121616 G3 Slime\n\n13) MikeYarrum: Build G1 Mikeyarrum\n\tJJ12121616: You won't get me like that. This time anyways.\n\n14) JJ12121616: Trade Y2 R2 Jj12121616\n\n15) MikeYarrum: Build Y2 Yotsuba\n\n16) JJ12121616: Build Y2 Slime\n\n\tJJ12121616: When your timer gets to -14d, I will force surrender. I would prefer not to, but I would not like to leave the game hanging.\n\nHomeworlds Online (SDG# 10902)\nStarted: 2008.4.15, Ended: 2009.12.9\nParticipants: MikeYarrum (S), mick (N)\nWinner: MikeYarrum\n\n1) mick: Homeworld B3 G1 Y3\n\n2) MikeYarrum: Homeworld Y1 B2 G3\n\tmick: HI Mike. Go easy on me. This is my first ever game. I just got my stash last week, and I haven't found anyone to play with. \n\tMikeYarrum: Hello. I'll be forgiving. This site is a great place to learn the ins and outs of a game before you try to teach anyone.\n\n3) mick: Build Y1 Mick\n\n\n4) MikeYarrum: Build G1 Mikeyarrum\n\n5) mick: Discover Y1 Mick B2 Orion\n\tmick: ?? how do I move my ship to a new system? What's the command?\n\n6) MikeYarrum: Trade G1 Y1 Mikeyarrum\n\tMikeYarrum: I think you figured it out. =D\n\n7) mick: Trade Y1 G1 Orion\n\n8) MikeYarrum: Discover Y1 Mikeyarrum G3 Sakaki\n\n9) mick: Trade Y3 G3 Mick\n\n10) MikeYarrum: Build Y1 Sakaki\n\tMikeYarrum: You might want to take that move back. When you take the last small piece like that, it means you're giving me a medium ship.\n\tmick: thanks for the advice.\n\n11) mick: Build G1 Orion\n\n12) MikeYarrum: Build G2 Mikeyarrum\n\n13) mick: Build G2 Orion\n\tmick: Hi Mike. Sorry for the delay. Was off sick.\n\tMikeYarrum: Not a problem.\n\n\nHomeworlds Online (SDG# 10751)\nVariants: "Sinister, Hard time"\nStarted: 2008.4.19, Ended: 2008.11.12\nParticipants: Wheatberry (S), smilingra (W), wyons (N), wmreed (E)\nWinner: wyons\n\n1) wyons: Homeworld B2 R1 G3\n\n2) wmreed: Homeworld B3 G2 Y3\n\twmreed: homeworld b3 g2 y3\n\twmreed: duh. I should wake up before I play this game.\r\n\r\n\n\n3) Wheatberry: Homeworld R2 G1 B3\n\twyons: enjoy the game everyone...\n\n4) smilingra: Homeworld B2 R3 G3\n\n5) wyons: Build G1 Wyons\n\tsmilingra: Yes, good luck to all. Hope we can have some fun...\n\n6) wmreed: Build Y1 Wmreed\n\tWheatberry: Lotsa red out there, this should be interesting... May the best Martian win. :)\n\n7) Wheatberry: Build B1 Wheatberry\n\twmreed: I was noticing that, too. Lots of red green and blue.\n\n8) smilingra: Build G1 Smilingra\n\n9) wyons: Trade G1 Y1 Wyons\n\tsmilingra: I guess they made me West because I was the only one whose name did not start with a 'w' :)\n\twyons: *laughs* - that's exactly the brand of absurd humour I love.\n\n10) wmreed: Trade Y1 R1 Wmreed\n\n11) Wheatberry: Trade B1 Y1 Wheatberry\n\n12) smilingra: Trade G1 Y1 Smilingra\n\n13) wyons: Build Y1 Wyons\n\n14) wmreed: Build R1 Wmreed\n\n15) Wheatberry: Build B1 Wheatberry\n\n16) smilingra: Build G1 Smilingra\n\tsmilingra: Glad you appreciated it. I'll try to keep them coming. :)\n\n17) wyons: Discover Y1 Wyons G3 Xanthrophyl\n\n18) wmreed: Trade R1 G1 Wmreed\n\n19) Wheatberry: Trade B3 G3 Wheatberry\n\n20) smilingra: Discover G1 Smilingra B1 Alpha\n\n21) wyons: Build G1 Wyons\n\n22) wmreed: Build R1 Wmreed\n\n23) Wheatberry: Build B1 Wheatberry\n\n24) smilingra: Build G1 Alpha\n\n25) wyons: Build G2 Wyons\n\n26) wmreed: Build Y1 Wmreed\n\n27) Wheatberry: Build Y2 Wheatberry\n\n28) smilingra: Build G2 Smilingra\n\n29) wyons: Build Y2 Wyons\n\n30) wmreed: Move G1 Wmreed Alpha\n\n31) Wheatberry: Move B1 Wheatberry Xanthrophyl\n\n32) smilingra: Build Y2 Smilingra\n\n33) wyons: Discover G1 Wyons Y3 Mellowyellow\n\n34) wmreed: Build Y2 Wmreed\n\n35) Wheatberry: Discover Y1 Wheatberry G3 Metric\n\n36) smilingra: Trade G1 R1 Alpha\n\n37) wyons: Sacrifice Y2 Wyons\nMove Y1 Xanthrophyl Alpha\nMove Y1 Alpha Wmreed\nCatastrophe Wmreed Yellow\n\n38) wmreed: Sacrifice R1 Wmreed\nAttack R1W Alpha\n\n39) Wheatberry: Trade B1 G1 Xanthrophyl\n\n40) smilingra: Trade G2 R2 Smilingra\n\n41) wyons: Trade G2 R2 Wyons\n\n42) wmreed: Build R1 Wmreed\n\n43) Wheatberry: Build Y1 Wheatberry\n\n44) smilingra: Move R2 Smilingra Alpha\n\n45) wyons: Move R2 Wyons Mellowyellow\n\n46) wmreed: Build G2 Alpha\n\n47) Wheatberry: Move Y2 Wheatberry Xanthrophyl\n\n48) smilingra: Attack G2E Alpha\n\n49) wyons: Discover R2 Mellowyellow Y1 Orange\n\n50) wmreed: Pass\n\n51) Wheatberry: Move G1 Xanthrophyl Alpha\n\n52) smilingra: Trade G2 Y2 Alpha\n\twmreed: I'm screwed. Gods I suck at this game. Why do I even like it?\n\n53) wyons: Move R2 Orange Wmreed\n\n54) wmreed: Trade R1 Y1 Wmreed\n\n55) Wheatberry: Sacrifice Y1 Metric\nMove G1 Alpha Wmreed\n\tWheatberry: Huh. Just realized that if I trigger that catastrophe, wmreed would have no way to recover & it'd be game over in a couple turns. This is where the Sinister rules get a bit wacky sometimes; I basically have to defend my enemy just to keep from losing.\n\tWheatberry: So let's try this... smilingra, please sacrifice your y1 to move your g1 from alpha to wmreed's homesystem. In exchange, you could capture my g1 in alpha next turn.\n\tWheatberry: Otherwise, wyons jumps his R2 from orange to wmreed, builds another red in wmreed next turn, and it's checkmate.\n\tWheatberry: Oh, wait a second. wmreed can just trade his r1 for something else on his turn, using his blue star. I am an idiot. Please ignore previous messages. :)\n\n56) smilingra: Attack R1E Alpha\n\tsmilingra: Thanks for the running commentary, Wheatberry. :)\n\n57) wyons: Attack R1E Wmreed\n\n58) wmreed: Build Y1 Wmreed\n\twmreed: it doesn't really save me though. He's got me on his next turn. \n\twmreed: unless I'm confused on a rule. Which I often am. \n\n59) Wheatberry: Trade G1 R1 Wmreed\n\tWheatberry: This should keep things interesting then. If he steals your yellow, steal my green. Sorry wyons. ;)\n\n60) smilingra: Move R1 Alpha Wmreed\nCatastrophe Wmreed Red\n\n61) wyons: Build Y2 Wyons\n\twmreed: I don't see a way out of this one. \n\n62) wmreed: Trade Y1 R1 Wmreed\n\n63) Wheatberry: Build B1 Wheatberry\n\tWheatberry: There's always a way. *grin*\r\nAssuming smilingra's willing to help out, of course...\n\n64) smilingra: Attack G1E Alpha\n\tsmilingra: You mean like that?\n\n65) wyons: Trade Y2 R2 Wyons\n\n66) wmreed: Build Y1 Wmreed\n\n67) Wheatberry: Trade B1 R1 Wheatberry\n\tWheatberry: Yep, like that. :)\n\n68) smilingra: Move R2 Alpha Xanthrophyl\n\n69) wyons: Build Y2 Wyons\n\n70) wmreed: Discover Y1 Wmreed G1 Logan\n\n71) Wheatberry: Sacrifice R1 Wheatberry\nAttack R2W Xanthrophyl\n\n72) smilingra: Build Y2 Alpha\n\n73) wyons: Trade Y1 B1 Wyons\n\n74) wmreed: Build Y1 Wmreed\n\n\n75) Wheatberry: Sacrifice G3 Wheatberry\nBuild Y3 Wheatberry\nBuild Y3 Wheatberry\nBuild Y3 Xanthrophyl\n\tWheatberry: Yoink! :-D\n\n76) smilingra: Trade G1 R1 Alpha\n\tsmilingra: grrr... nice move!\n\n77) wyons: Build Y3 Wyons\n\n78) wmreed: Trade Y1 B1 Wmreed\n\n79) Wheatberry: Trade Y3 G3 Wheatberry\n\n80) smilingra: Build R1 Alpha\n\n81) wyons: Discover Y3 Wyons G3 Leafshine\n\n82) wmreed: Move B1 Wmreed Logan\n\n\n83) Wheatberry: Move Y3 Xanthrophyl Alpha\n\n84) smilingra: Discover R1 Alpha B3 Zeta\n\n85) wyons: Discover Y3 Leafshine G1 Dewdrop\n\n86) wmreed: Build R1 Wmreed\n\n87) Wheatberry: Trade Y3 G3 Alpha\n\n88) smilingra: Build G2 Alpha\n\n89) wyons: Move R2 Wyons Mellowyellow\n\n90) wmreed: Build B1 Logan\n\n91) Wheatberry: Sacrifice R2 Xanthrophyl\nAttack G2W Alpha\nAttack R1W Alpha\n\n92) smilingra: Sacrifice R1 Zeta\nAttack R1S Alpha\n\n93) wyons: Move R2 Mellowyellow Logan\n\n94) wmreed: Sacrifice Y1 Logan\nMove B1 Logan Xanthrophyl\n\n95) Wheatberry: Trade G2 R2 Alpha\n\n96) smilingra: Attack R2S Alpha\n\n97) wyons: Build R1 Logan\n\n98) wmreed: Build B2 Xanthrophyl\n\n99) Wheatberry: Trade Y3 R3 Wheatberry\n\n100) Wheatberry: Pass\n\tWheatberry: Oh, crud. For some reason I was thinking you couldn't attack my 2s with a 3 in the system. Invasion: BOTCHED.\n\tWheatberry: (hastily hides his "MISSION ACCOMPLISHED!" banner) :-D\n\twyons: b r1 logan\n\n101) wyons: Sacrifice Y2 Wyons\nMove R2 Logan Wmreed\nMove Y3 Dewdrop Wmreed\n\n102) wmreed: Trade B2 G2 Xanthrophyl\n\n103) Wheatberry: Move Y2 Xanthrophyl Alpha\n\n104) wyons: Sacrifice G3 Wyons\nBuild Y1 Wmreed\nBuild Y1 Wmreed\nBuild R2 Wmreed\nCatastrophe Wmreed Red\nCatastrophe Wmreed Yellow\n\twyons: In this situation (with smilingra timing out) surely the move should continue passing clockwise (to me!)- otherwise Wheatberry will get two moves (one after the other).\n\twmreed: I agree. \n\tsmilingra: My deepest apologies. I thought that I had made my move, but I guess not. Good luck to you all.\n\twyons: Aaron: any chance you can bring smilingra back- that would solve the problem and also save the game from suddenly having a different dynamic?\n\tsmilingra: wyons, you are quite kind. As long as the others are willing to have me back, I'd gladly hop back in!\n\twmreed: i'm willing to allow smilingra to return to play.\n\twyons: just up to wheatberry and aaron then?\n\twmreed: What's happening with this game? Anything?\r\n\n\twyons: Well, nothing at present- but I have been hoping Aaron will be able to fix it when he is back from his travels.\n\tWheatberry: This game has sort of slipped off my radar, but I'm willing to hop back into it anytime. And I agree with wyons: we should either (A) have an admin reset smilingra's timer & pass the turn to him, or (B) drop down to a 3-person game & pass the turn to wyons. If smilingra's still around and wants back in, I have no problem doing option A.\n\n\tWheatberry: Hi all! I'm back. I've completely forgetten what my strategy even was in this game, though, so this should be interesting... heh heh\n\twyons: sorry guys- that's it. My reading was that Smilingra could not have prevented that attack. But I could be wrong...\n\nHomeworlds Online (SDG# 10884)\nVariants: "Hard time"\nStarted: 2008.4.20, Ended: 2008.5.2\nParticipants: TwoShort (S), YourEternalGod (N)\nWinner: TwoShort\n\n1) YourEternalGod: Homeworld G1 Y2 B3\n\n2) TwoShort: Homeworld Y1 B3 G3\n\n3) YourEternalGod: Build B1 Youreternalgod\n\n4) TwoShort: Build G1 Twoshort\n\n5) YourEternalGod: Build B1 Youreternalgod\n\n6) TwoShort: Build G1 Twoshort\n\n7) YourEternalGod: Discover B1 Youreternalgod Y3 Wanderer\n\n8) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n9) YourEternalGod: Build B1 Youreternalgod\n\n10) TwoShort: Build G2 Yolonda\n\n11) YourEternalGod: Trade B1 R1 Wanderer\n\n12) TwoShort: Build G2 Twoshort\n\n13) YourEternalGod: Move R1 Wanderer Yolonda\n\n14) TwoShort: Trade G2 R2 Twoshort\n\n15) YourEternalGod: Attack G1 Yolonda\n\n16) TwoShort: Sacrifice R2 Twoshort\nAttack R1 Yolonda\nAttack G1 Yolonda\n\n17) YourEternalGod: Discover B3 Youreternalgod G3 Go\n\n18) TwoShort: Discover G2 Yolonda Y3 Ynot\n\n19) YourEternalGod: Trade B1 R1 Youreternalgod\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Ynot\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n\nHomeworlds Online (SDG# 10928)\nVariants: "Hard time"\nStarted: 2008.4.20, Ended: 2008.5.2\nParticipants: YourEternalGod (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) YourEternalGod: Homeworld B1 G1 Y3 *\n\n3) TwoShort: Build G1 Twoshort\n\n4) YourEternalGod: Build Y1 Youreternalgod\n\n5) TwoShort: Build G1 Twoshort\n\n6) YourEternalGod: Build Y1 Youreternalgod\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) YourEternalGod: Discover Y1 Youreternalgod B2 Tyco\n\n9) TwoShort: Build G1 Twoshort\n\n10) YourEternalGod: Build Y2 Youreternalgod\n\n11) TwoShort: Discover G1 Twoshort Y3 Jethro\n\n12) YourEternalGod: Move Y1 Youreternalgod Tyco\n\n13) TwoShort: Build G2 Twoshort\n\n14) YourEternalGod: Trade Y2 G2 Youreternalgod\n\n15) TwoShort: Discover G1 Twoshort B3 Bluzilla\n\n16) YourEternalGod: Build Y2 Youreternalgod\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluzilla\nBuild G3 Jethro\nBuild G3 Twoshort\n\n18) YourEternalGod: Build G3 Youreternalgod\n\n19) TwoShort: Move G1 Jethro Youreternalgod\nCatastrophe Youreternalgod Green\n\n\nHomeworlds Online (SDG# 10929)\nVariants: "Hard time"\nStarted: 2008.4.20, Ended: 2008.5.2\nParticipants: TwoShort (S), YourEternalGod (N)\nWinner: TwoShort\n\n1) YourEternalGod: Homeworld Y3 B2 G3\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) YourEternalGod: Build G1 Youreternalgod\n\tTwoShort: Howdy... out of curiosity, did you intend to start 3 games at once?\n\n4) TwoShort: Build G1 Twoshort\n\tYourEternalGod: Not horribly, But I'm more then happy to play them out. Lets me try different options\n\n5) YourEternalGod: Discover G1 Youreternalgod Y1 Amber\n\tTwoShort: Sounds good to me. \n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) YourEternalGod: Build G1 Youreternalgod\n\n8) TwoShort: Build B1 Twoshort\n\n9) YourEternalGod: Trade G1 Y1 Youreternalgod\n\n10) TwoShort: Discover B1 Twoshort Y3 Yolonda\n\n11) YourEternalGod: Build G1 Youreternalgod\n\n12) TwoShort: Build B2 Twoshort\n\n13) YourEternalGod: Discover G1 Amber B3 Azure\n\n14) TwoShort: Trade B2 R2 Twoshort\n\n15) YourEternalGod: Sacrifice G3 Youreternalgod\nBuild G1 Youreternalgod\nBuild G2 Youreternalgod\nBuild G2 Azure\n\n16) TwoShort: Move R2 Twoshort Azure\n\n\nHomeworlds Online (SDG# 10907)\nStarted: 2008.4.26, Ended: 2009.12.9\nParticipants: MikeYarrum (S), lostsoul (N)\nWinner: MikeYarrum\n\n1) lostsoul: Homeworld G1 B3 R3\n\tlostsoul: Hi -- I'm very, very new to this game. I hope that is ok?\n\n2) MikeYarrum: Homeworld B2 Y1 G3\n\tMikeYarrum: No problem, we were all new at one point. =D\n\n3) lostsoul: Trade R3 G3 Lostsoul\n\n\nHomeworlds Online (SDG# 10959)\nVariants: "Hard time"\nStarted: 2008.4.26, Ended: 2008.5.19\nParticipants: spearjr (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld R1 B2 G3\n\n2) spearjr: Homeworld B3 G2 Y3\n\n3) jeep: Build G1 Jeep\n\n4) spearjr: Build Y1 Spearjr\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) spearjr: Trade Y1 B1 Spearjr\n\n7) jeep: Build G1 Jeep\n\n8) spearjr: Build Y1 Spearjr\n\n9) jeep: Build G1 Jeep\n\n10) spearjr: Build Y1 Spearjr\n\tspearjr: build y1 spearjr\r\n\n\n11) jeep: Discover G1 Jeep Y3 Cache\n\n12) spearjr: Trade Y1 G1 Spearjr\n\n13) jeep: Trade G1 B1 Jeep\n\n\nHomeworlds Online (SDG# 10971)\nVariants: "Hard time"\nStarted: 2008.4.28, Ended: 2008.6.1\nParticipants: stoneaxe (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld B1 Y2 G3\n\n2) stoneaxe: Homeworld Y1 B3 G3\n\tsordros: Good luck. Have fun.\n\n3) sordros: Build G1 Sordros\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) sordros: Discover G1 Sordros Y3 Itani\n\n6) stoneaxe: Trade G1 B1 Stoneaxe\n\n7) sordros: Build G1 Sordros\n\tstoneaxe: Forgot to respond to your greeting. Having fun so far! Good luck to you too.\n\n8) stoneaxe: Build B1 Stoneaxe\n\n9) sordros: Trade G1 Y1 Sordros\n\n10) stoneaxe: Discover B1 Stoneaxe G2 Opter\n\n11) sordros: Build Y1 Sordros\n\n12) stoneaxe: Build B2 Opter\n\n13) sordros: Discover Y1 Sordros B3 Uit\n\n14) stoneaxe: Trade B2 Y2 Opter\n\n15) sordros: Build G1 Sordros\n\n16) stoneaxe: Build B2 Stoneaxe\n\n17) sordros: Build Y2 Sordros\n\n18) stoneaxe: Build Y3 Opter\n\n19) sordros: Move G1 Sordros Uit\n\n\tstoneaxe: Gaaahhhhh..... Sorry bout that! Got into a busy weekend and forgot to make my move. Well, nice game! Apologies for the timeout!\n\nHomeworlds Online (SDG# 10963)\nStarted: 2008.4.28, Ended: 2008.8.23\nParticipants: MikeYarrum (S), Cinnibar (N)\nWinner: Cinnibar\n\n1) Cinnibar: Homeworld G1 B3 Y3\n\n\nHomeworlds Online (SDG# 10997)\nVariants: "Hard time"\nStarted: 2008.5.1, Ended: 2008.5.22\nParticipants: fnord (S), Horowits (N)\nWinner: Horowits\n\n1) Horowits: Homeworld B3 G2 Y3\n\n2) fnord: Homeworld B2 G1 Y3\n\tHorowits: Ahoy mon. If you need to contact me - 20camels@gmail.com. good luck... not that you will need it\n\n3) Horowits: Build Y1 Horowits\n\n4) fnord: B Y1 Fnord\n\tfnord: Greetings, and to all the spectators as well. Sure is a big crowd.\n\n5) Horowits: Trade Y1 G1 Horowits\n\n6) fnord: Discover Y1 Fnord R3 Discord\n\n7) Horowits: Discover G1 Horowits B1 Doom\n\n8) fnord: Build Y1 Fnord\n\n9) Horowits: Build Y1 Horowits\n\n10) fnord: Discover Y1 Fnord B3 Kallisti\n\n11) Horowits: Move Y1 Horowits Doom\n\n12) fnord: Build Y2 Fnord\n\n13) Horowits: Build Y2 Doom\n\n\tfnord: Frell, sorry about that! I realized I didn't have much time left yesterday, but couldn't get to the site. Again, my apologies.\n\nHomeworlds Online (SDG# 10931)\nVariants: "Hard time"\nStarted: 2008.5.2, Ended: 2008.5.18\nParticipants: TwoShort (S), smilingra (N)\nWinner: TwoShort\n\n1) smilingra: Homeworld B3 R1 G3\n\tTwoShort: Howdy\n\tsmilingra: hi there\r\n\n\n2) TwoShort: Homeworld B1 Y2 G3\n\n3) smilingra: Build G1 Smilingra\n\n4) TwoShort: Build G1 Twoshort\n\n5) smilingra: Trade G1 Y1 Smilingra\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) smilingra: Build G1 Smilingra\n\n8) TwoShort: Build B1 Twoshort\n\n9) smilingra: Discover G1 Smilingra B2 Beta\n\n10) TwoShort: Discover B1 Twoshort G3 Grogar\n\n11) smilingra: Build G1 Beta\n\n12) TwoShort: Build B2 Twoshort\n\n\nHomeworlds Online (SDG# 10876)\nVariants: "Unrated, Hard time"\nStarted: 2008.5.2, Ended: 2008.5.5\nParticipants: scottobear (S), Horowits (N)\nWinner: Horowits\n\n1) Horowits: Homeworld G2 B3 Y3\n\n\nHomeworlds Online (SDG# 10962)\nStarted: 2008.5.8, Ended: 2008.5.13\nParticipants: Horowits (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) Horowits: Homeworld B3 G2 Y3\n\n3) ts52: Build G1 Ts52\n\tHorowits: Greetings\n\tts52: Salutations. Have a good game!\n\n4) Horowits: Build Y1 Horowits\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Horowits: Trade Y1 G1 Horowits\n\n7) ts52: Build B1 Ts52\n\n8) Horowits: Build Y1 Horowits\n\n9) ts52: Build G1 Ts52\n\n10) Horowits: Discover Y1 Horowits R1 Doom\n\n11) ts52: Discover B1 Ts52 R3 Elmo\n\n12) Horowits: Trade G1 R1 Horowits\n\n13) ts52: Trade G1 R1 Ts52\n\n14) Horowits: Build R2 Horowits\n\n15) ts52: Build R2 Ts52\n\n16) Horowits: Trade R2 G2 Horowits\n\n17) ts52: Build G1 Ts52\n\n18) Horowits: Move G2 Horowits Doom\n\n19) ts52: Sacrifice G1 Ts52\nBuild B2 Elmo\n\n20) Horowits: Build R2 Horowits\n\n21) ts52: Build G1 Ts52\n\n22) Horowits: Build Y1 Doom\n\n23) ts52: Move G1 Ts52 Elmo\n\n24) Horowits: Discover Y1 Doom G3 Tinygreen\n\n25) ts52: Build B2 Elmo\n\n26) Horowits: Trade R1 G1 Horowits\n\n27) ts52: Trade B2 Y2 Elmo\n\n28) Horowits: Trade R2 B2 Horowits\n\n29) ts52: Build G1 Ts52\n\n30) Horowits: Trade Y3 G3 Horowits\n\n31) ts52: Sacrifice Y2 Elmo\nMove G1 Elmo Doom\nMove G1 Doom Horowits\nCatastrophe Horowits Green\n\n32) Horowits: Move G2 Doom Horowits\n\n33) ts52: Move B1 Ts52 Horowits\n\tHorowits: haha wow. what a fool i am\n\n34) Horowits: Trade B2 R2 Horowits\n\n35) ts52: Sacrifice G3 Ts52\nBuild B2 Horowits\nBuild B2 Horowits\nBuild B3 Horowits\nCatastrophe Horowits Blue\n\n\tts52: Thanks for the game. Catasrophes can be hard to see coming.\n\tHorowits: indeed. learned something though :) thanks\n\nHomeworlds Online (SDG# 10984)\nStarted: 2008.5.10, Ended: 2008.5.10\nParticipants: wastelands (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11019)\nVariants: "Hard time"\nStarted: 2008.5.12, Ended: 2008.6.11\nParticipants: mneme (S), Keith (N)\nWinner: mneme\n\n1) Keith: Homeworld Y1 B3 G3\n\n2) mneme: Homeworld R2 B3 G3\n\n3) Keith: Build G1 Keith\n\n4) mneme: Build G1 Mneme\n\n5) Keith: Discover G1 Keith Y2 Brightlygo\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) Keith: Build G1 Keith\n\n8) mneme: Build Y1 Mneme\n\n9) Keith: Trade G1 B1 Keith\n\n10) mneme: Discover Y1 Mneme G1 Grape\n\n11) Keith: Move B1 Keith Brightlygo\n\n12) mneme: Build Y2 Grape\n\n13) Keith: Build G1 Keith\n\tKeith: Getting myself locked out of yellow. I saw it coming and decided I could wait a turn to do something about it.\n\n14) mneme: Sacrifice G3 Mneme\nBuild Y2 Grape\nBuild Y3 Mneme\nBuild Y3 Mneme\n\n15) Keith: Build G2 Brightlygo\n\n16) mneme: Trade Y3 G3 Mneme\n\n17) Keith: Build G2 Keith\n\n18) mneme: Sacrifice Y3 Mneme\nMove G3 Mneme Grape\nMove G3 Grape Brightlygo\nMove G3 Brightlygo Keith\nCatastrophe Keith G\n\tmneme: um Oddly enough...\n\tmneme: And yeah, the yellow lockout was nasty -- though taking advantage of your blunder was arguably moreso.\r\n\n\tKeith: Wow, way to go. Nice lesson in factoring in the possibility of your moving your 3-pointer out. Alas, I was never in this game enough to give you a challenge. I will be back for a re-match after I learn to think Homeworlds again.\n\tmneme: Looking forward to it. Meanwhile, Andy challenged me to a game at Origins; will have to see how it goes.\n\n\nHomeworlds Online (SDG# 11027)\nStarted: 2008.5.14, Ended: 2008.6.12\nParticipants: ts52 (S), Horowits (N)\nWinner: ts52\n\n1) Horowits: Homeworld G3 B2 Y3\n\tHorowits: best of 3 ;)\n\n2) ts52: Homeworld B1 Y2 G3\n\tts52: Sure, sounds good to me\n\n3) Horowits: Build Y1 Horowits\n\n4) ts52: Build G1 Ts52\n\n5) Horowits: Trade Y1 G1 Horowits\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Horowits: Build G1 Horowits\n\n8) ts52: Build B1 Ts52\n\n9) Horowits: Build Y1 Horowits\n\n10) ts52: Discover B1 Ts52 G3 Kermit\n\n11) Horowits: Discover G1 Horowits Y1 Wolley\n\n12) ts52: Build B2 Kermit\n\n13) Horowits: Trade Y3 B3 Horowits\n\n14) ts52: Trade B2 Y2 Kermit\n\n15) Horowits: Discover B3 Horowits R1 Der\n\n16) ts52: Build B2 Kermit\n\n17) Horowits: Build G1 Horowits\n\n18) ts52: Build G2 Ts52\n\n19) Horowits: Build G2 Wolley\n\n20) ts52: Build G2 Ts52\n\n21) Horowits: Sacrifice G1 Horowits\nBuild B2 Der\n\n22) ts52: Build B3 Ts52\n\n23) Horowits: Trade B2 Y2 Der\n\n24) ts52: Sacrifice B2 Kermit\nTrade B3 R3 Ts52\nTrade G2 R2 Ts52\n\n25) Horowits: Sacrifice G2 Wolley\nBuild Y1 Der\nBuild Y3 Horowits\n\n26) ts52: Move R3 Ts52 Kermit\n\n27) Horowits: Trade Y1 R1 Horowits\n\n28) ts52: Build B2 Kermit\n\n29) Horowits: Trade Y2 G2 Der\n\n30) ts52: Build B2 Ts52\n\n31) Horowits: Discover B3 Der Y3 Move\n\n32) ts52: Trade B2 Y2 Ts52\n\n33) Horowits: Sacrifice G2 Der\nBuild Y1 Horowits\nBuild Y3 Der\n\n34) ts52: Move B2 Kermit Wolley\n\n35) Horowits: Move G1 Wolley Move\n\n36) ts52: Sacrifice G2 Ts52\nBuild B2 Kermit\nBuild B3 Wolley\n\n37) Horowits: Build B3 Move\n\n38) ts52: Sacrifice Y2 Ts52\nMove B3 Wolley Move\nMove B2 Wolley Move\nCatastrophe Move Blue\n\n39) Horowits: Build R1 Horowits\n\n40) ts52: Move R2 Ts52 Move\n\n41) Horowits: Move G1 Move Ts52\n\n42) ts52: Build B2 Kermit\n\n43) Horowits: Sacrifice R1 Horowits\nAttack B1S Ts52\n\n44) ts52: Sacrifice R2 Move\nAttack G1N Ts52\nAttack B1N Ts52\n\n45) Horowits: Move G1 Horowits Der\n\n46) ts52: Build B3 Ts52\n\n47) Horowits: Discover Y1 Der B3 Eulb\n\tHorowits: sorry for delay internet was down :P\n\n48) ts52: Discover B2 Kermit G1 Oscar\n\n49) Horowits: Move G1 Der Eulb\n\tts52: no problem\n\n50) ts52: Build B3 Oscar\n\n51) Horowits: Move Y1 Eulb Ts52\n\n52) ts52: Trade B3 R3 Ts52\n\n53) Horowits: Build G2 Eulb\n\n54) ts52: Attack Y1N Ts52\n\n55) Horowits: Move Y3 Der Eulb\n\n56) ts52: Trade B3 R3 Oscar\n\n57) Horowits: Move G1 Eulb Ts52\n\n58) ts52: Discover G3 Ts52 Y3 Bigbird\n\n59) Horowits: Trade G1 Y1 Ts52\n\n60) ts52: Move Y1 Ts52 Kermit\n\n61) Horowits: Build Y2 Eulb\n\n62) ts52: Attack Y1N Ts52\n\n63) Horowits: Trade Y3 B3 Eulb\n\n64) ts52: Build B3 Oscar\n\n65) Horowits: Build Y3 Eulb\n\n66) ts52: Sacrifice Y2 Kermit\nMove R3 Oscar Horowits\nMove B3 Oscar Horowits\n\n67) Horowits: Sacrifice G2 Eulb\nBuild R1 Horowits\nBuild R1 Horowits\nCatastrophe Horowits Red\n\n68) ts52: Sacrifice R3 Kermit\nAttack Y3N Horowits\nAttack Y1N Horowits\nPass\n\n\tts52: Thanks for the game\n\tHorowits: was fun\n\nHomeworlds Online (SDG# 11002)\nVariants: "Hard time"\nStarted: 2008.5.18, Ended: 2008.5.21\nParticipants: Danner (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) Danner: Homeworld R2 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Danner: Build G1 Danner\n\n5) TwoShort: Trade G1 B1 Twoshort\n\n6) Danner: Trade G1 Y1 Danner\n\n7) TwoShort: Build B1 Twoshort\n\n8) Danner: Build Y1 Danner\n\n9) TwoShort: Trade B1 Y1 Twoshort\n\n10) Danner: Build Y2 Danner\n\n11) TwoShort: Build Y2 Twoshort\n\n12) Danner: Discover Y1 Danner G3 Stargate\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) Danner: Trade Y1 B1 Danner\n\n15) TwoShort: Build Y1 Grogar\n\n16) Danner: Move Y1 Stargate Grogar\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\nBuild Y3 Twoshort\nCatastrophe Grogar Yellow\n\n18) Danner: Discover B1 Danner G3 Stargate\n\tDanner: Wow, you are great!\n\n19) TwoShort: Trade Y3 G3 Twoshort\n\tTwoShort: Thanks, but you didn't give me much choice :)\n\n20) Danner: Build B2 Stargate\n\n21) TwoShort: Discover B1 Twoshort G2 Greenland\n\n22) Danner: Trade B1 Y1 Stargate\n\n23) TwoShort: Move Y3 Twoshort Greenland\n\n24) Danner: Build Y1 Stargate\n\n25) TwoShort: Build G1 Twoshort\n\n26) Danner: Trade Y1 G1 Stargate\n\n27) TwoShort: Build Y1 Greenland\n\n28) Danner: Build G1 Danner\n\n29) TwoShort: Discover Y1 Greenland Y1 Yellonia\n\n30) Danner: Move Y1 Stargate Greenland\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Yellonia\nBuild Y3 Greenland\nBuild Y3 Twoshort\n\n32) Danner: Sacrifice Y2 Danner\nDiscover G1 Stargate R2 Mars\nPass\n\tDanner: Lol, I have calculated a lot to prevent this event, but I was wrong. I thought it is enough to be able to create one catastrophe, but now I can only destroy lesser ships :D\n\n33) TwoShort: Discover Y2 Yellonia Y2 Yolonda\n\tDanner: Now, I have no chance to win :D\n\tTwoShort: I don't suppose this will make you feel better...\n\n34) Danner: Move Y1 Greenland Yellonia\n\tDanner: Exactly what? :)\n\n35) TwoShort: Trade B1 R1 Greenland\n\n36) Danner: Build G2 Mars\n\tTwoShort: Oh, I meant that in response to your noting that you could only destroy lesser ships; my move took away your chance for any catastrophe at all.\n\tDanner: indeed\n\n37) TwoShort: Sacrifice R1 Greenland\nAttack Y1 Yellonia\n\n38) Danner: Sacrifice G3 Danner\nBuild G2 Danner\nBuild G3 Danner\nBuild G3 Danner\nCatastrophe Danner G\n\tDanner: woohoo, you control all the yellow pieces! I have no chance to make any yellow catastrophe, what is more, my ships are stuck :D\n\tDanner: Congratulation! :)\n\n\nHomeworlds Online (SDG# 11036)\nVariants: "Hard time"\nStarted: 2008.5.18, Ended: 2008.6.25\nParticipants: Jesse (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R3 B2 G3\n\n2) Jesse: Homeworld R2 B1 G3\n\n3) Danner: Build G1 Danner\n\tJesse: Hello. Have a good game.\n\tDanner: Hi. Thx, the same to you.\n\n4) Jesse: Build G1 Jesse\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) Danner: Build G1 Danner\n\n8) Jesse: Build G1 Jesse\n\n9) Danner: Trade G1 R1 Danner\n\n10) Jesse: Build G1 Jesse\n\n11) Danner: Build G1 Danner\n\n12) Jesse: Discover G1 Jesse B3 Cheese\n\n13) Danner: Discover G1 Danner Y1 Moon\n\n14) Jesse: Build G2 Cheese\n\n\n15) Danner: Build Y2 Danner\n\n16) Jesse: Trade G2 R2 Cheese\n\n17) Danner: Build G2 Danner\n\n18) Jesse: Build G2 Cheese\n\n19) Danner: Sacrifice G3 Danner\nBuild G2 Danner\nBuild G3 Moon\nBuild G3 Danner\n\n20) Jesse: Trade G2 Y2 Cheese\n\n21) Danner: Sacrifice Y2 Danner\nMove G3 Danner Moon\nMove G3 Moon Cheese\n\n22) Jesse: Sacrifice G3 Jesse\nBuild G2 Cheese\nBuild G3 Jesse\nBuild R1 Cheese\n\n23) Danner: Trade G3 B3 Cheese\n\n24) Jesse: Build G3 Jesse\n\n25) Danner: Sacrifice G3 Moon\nBuild G3 Moon\nBuild B1 Cheese\nBuild B1 Cheese\nCatastrophe Cheese B\n\n26) Jesse: Trade G1 R1 Jesse\n\n27) Danner: Build Y2 Danner\n\n28) Jesse: Build Y2 Jesse\n\n29) Danner: Discover Y1 Danner G1 Hyperspace\n\n30) Jesse: Discover G3 Jesse Y3 Oscar\n\n31) Danner: Sacrifice G3 Moon\nBuild Y2 Hyperspace\nBuild Y3 Danner\nBuild Y3 Danner\n\n32) Jesse: Discover Y2 Jesse B3 Smellify\n\n33) Danner: Move Y1 Hyperspace Oscar\n\n34) Jesse: Build G1 Jesse\n\n35) Danner: Build G2 Moon\n\n36) Jesse: Discover R1 Jesse G3 Thbt\n\n37) Danner: Move G2 Moon Oscar\n\n\tJesse: \n\tJesse: Sorry about that. You certainly had control of the game, anyway. Well played.\n\tDanner: Thanks.\n\nHomeworlds Online (SDG# 10999)\nStarted: 2008.5.19, Ended: 2008.6.11\nParticipants: Danner (S), MatrixFrog (N)\nWinner: Danner\n\n1) MatrixFrog: Homeworld G2 B1 Y3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) Danner: Build G1 Danner\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) Danner: Trade G1 Y1 Danner\n\n7) MatrixFrog: Discover Y1 Matrixfrog G3 Bop\n\n8) Danner: Build Y2 Danner\n\n9) MatrixFrog: Build Y2 Bop\n\n10) Danner: Move Y1 Danner Bop\n\n11) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n12) Danner: Sacrifice G3 Danner\nBuild Y1 Bop\nBuild Y2 Danner\nBuild Y3 Danner\nCatastrophe Bop Y\n\n13) MatrixFrog: Build Y1 Matrixfrog\n\n14) Danner: Trade Y3 G3 Danner\n\n15) MatrixFrog: Build R1 Matrixfrog\n\n16) Danner: Trade Y2 R2 Danner\n\n17) MatrixFrog: Discover R1 Matrixfrog Y3 Bip\n\n18) Danner: Move R2 Danner Bip\n\n19) MatrixFrog: Build R2 Matrixfrog\n\n20) Danner: Attack R1N Bip\n\n21) MatrixFrog: Trade R2 G2 Matrixfrog\n\n22) Danner: Build G1 Danner\n\n23) MatrixFrog: Discover G2 Matrixfrog Y3 Bap\n\n24) Danner: Discover R2 Bip Y2 Bup\n\n25) MatrixFrog: Build G1 Bap\n\n26) Danner: Sacrifice G3 Danner\nBuild R2 Bup\nBuild R2 Bup\nBuild R3 Bip\n\n27) MatrixFrog: Build R3 Matrixfrog\n\n28) Danner: Move R3 Bip Matrixfrog\n\n29) MatrixFrog: Sacrifice R1 Matrixfrog\nAttack R3 Matrixfrog\n\n30) Danner: Move R1 Bip Matrixfrog\n\n31) MatrixFrog: Trade R3 Y3 Matrixfrog\n\n32) Danner: Trade R1 Y1 Matrixfrog\nCatastrophe Matrixfrog Y\n\n33) MatrixFrog: Trade R3 Y3 Matrixfrog\n\n34) Danner: Move R2 Bup Bap\n\n35) MatrixFrog: Build Y1 Matrixfrog\n\n36) Danner: Sacrifice R2 Bup\nAttack G1N Bap\nAttack G2N Bap\n\n37) MatrixFrog: Build Y1 Matrixfrog\n\n38) Danner: Move R2 Bap Matrixfrog\n\n39) MatrixFrog: Trade Y1 G1 Matrixfrog\n\n40) Danner: Attack G1N Matrixfrog\n\n41) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n42) Danner: Attack R1 Matrixfrog\n\n43) MatrixFrog: Build Y1 Matrixfrog\n\n44) Danner: Attack Y1N Matrixfrog\n\n\tDanner: Thx the game!\n\nHomeworlds Online (SDG# 11042)\nStarted: 2008.5.20, Ended: 2008.7.24\nParticipants: Cerulean (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) Cerulean: Homeworld Y3 B1 G3\n\n3) Danner: Build G1 Danner\n\n4) Cerulean: Build G1 Cerulean\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Cerulean: Discover G1 Cerulean Y2 Wytu\n\n7) Danner: Build G1 Danner\n\n8) Cerulean: Move G1 Wytu Cerulean\n\n9) Danner: Discover G1 Danner Y3 Treshold\n\n10) Cerulean: Trade G1 R1 Cerulean\n\tDanner: ooops, mispelled :D\n\tDanner: lol, again... I must be tired\n\n11) Danner: Build Y1 Danner\n\n12) Cerulean: Build G1 Cerulean\n\n13) Danner: Discover Y1 Danner G3 Cube\n\n14) Cerulean: Discover G1 Cerulean Y2 Wytu\n\n15) Danner: Build Y1 Cube\n\n16) Cerulean: Build G1 Cerulean\n\n17) Danner: Sacrifice G3 Danner\nBuild Y2 Cube\nBuild Y2 Danner\nBuild Y3 Danner\n\n18) Cerulean: Build G2 Wytu\n\n19) Danner: Discover Y1 Cube G2 Earth\n\n20) Cerulean: Trade G1 B1 Cerulean\n\n21) Danner: Trade Y3 R3 Danner\n\n22) Cerulean: Trade G3 Y3 Cerulean\n\n23) Danner: Move Y1 Cube Earth\n\n24) Cerulean: Trade Y3 G3 Cerulean\n\n25) Danner: Build Y3 Cube\n\n26) Cerulean: Move G1 Wytu Cube\n\n27) Danner: Discover Y3 Cube G2 Refuge\n\n28) Cerulean: Move B1 Cerulean Earth\n\n29) Danner: Move G1 Treshold Danner\n\n30) Cerulean: Trade B1 R1 Earth\n\n31) Danner: Build Y3 Earth\n\n32) Cerulean: Attack Y1N Earth\n\n33) Danner: Sacrifice R3 Danner\nAttack R1S Earth\nAttack Y1S Earth\nAttack G1S Cube\n\n34) Cerulean: Build R2 Cerulean\n\n35) Danner: Build R2 Earth\n\n36) Cerulean: Trade R1 B1 Cerulean\n\n37) Danner: Move R2 Earth Cube\n\n38) Cerulean: Build B1 Cerulean\n\n39) Danner: Discover Y3 Refuge B3 Garrett\n\n40) Cerulean: Move B1 Cerulean Wytu\n\n41) Danner: Trade Y3 B3 Garrett\n\n42) Cerulean: Move B1 Wytu Garrett\n\n43) Danner: Build Y3 Danner\n\n44) Cerulean: Move B1 Cerulean Wytu\n\n45) Danner: Trade B3 R3 Garrett\n\n46) Cerulean: Trade B1 R1 Garrett\n\n47) Danner: Trade Y3 G3 Danner\n\n48) Cerulean: Build B1 Wytu\n\n49) Danner: Sacrifice G3 Danner\nBuild Y3 Danner\nBuild R2 Cube\nBuild R3 Earth\n\n50) Cerulean: Build R3 Cerulean\n\n51) Danner: Move R3 Earth Cerulean\n\n52) Cerulean: Attack R3N Cerulean\n\n53) Danner: Sacrifice Y2 Danner\nMove R1 Earth Cerulean\nMove Y3 Earth Cerulean\nCatastrophe Cerulean R\n\n54) Cerulean: Sacrifice R1 Garrett\nAttack Y3N Cerulean\n\n55) Danner: Sacrifice Y2 Cube\nMove R3 Garrett Earth\nMove R3 Earth Cerulean\n\n56) Cerulean: Trade G2 R2 Wytu\n\n57) Danner: Sacrifice R2 Cube\nAttack G3S Cerulean\nAttack Y3S Cerulean\n\n\tDanner: Thanks the game.\n\tDanner: Hm, it was longer than 2 months. :)\n\tCerulean: i hope i posed something of a challenge. great game design, but i have better luck herding cats.\n\tDanner: Then, don't you want another one?\n\nHomeworlds Online (SDG# 11055)\nVariants: "Hard time"\nStarted: 2008.5.24, Ended: 2008.6.27\nParticipants: Horowits (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) Horowits: Homeworld Y2 B1 G3\n\n3) alexcobo: Build Y1 Alexcobo\n\tHorowits: Greetings\n\n4) Horowits: Build G1 Horowits\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) Horowits: Trade G1 Y1 Horowits\n\n7) alexcobo: Discover Y1 Alexcobo G1 G1\n\n8) Horowits: Build G1 Horowits\n\talexcobo: Hello. Good luck!\n\n9) alexcobo: Build Y2 Alexcobo\n\tHorowits: hehe yeah luck is something i need. You online folk are better players then my circle of friends ;)\n\n10) Horowits: Discover Y1 Horowits G3 Neerg\n\n11) alexcobo: Trade Y1 B1 Alexcobo\n\n12) Horowits: Build G1 Horowits\n\n13) alexcobo: Move B1 Alexcobo G1\n\n14) Horowits: Discover G1 Horowits B3 Eulb\n\n15) alexcobo: Build Y1 G1\n\tHorowits: sorry for delay internet was down :P\n\n16) Horowits: Build G2 Eulb\n\n17) alexcobo: Build Y2 Alexcobo\n\n18) Horowits: Build Y3 Neerg\n\n19) alexcobo: Sacrifice Y2 Alexcobo\nMove Y1 G1 Neerg\nMove Y1 G1 Neerg\nCatastrophe Neerg Y\n\n20) Horowits: Trade G1 Y1 Eulb\n\n21) alexcobo: Trade B1 G1 G1\n\n22) Horowits: Build G2 Eulb\n\n23) alexcobo: Build G2 G1\n\n24) Horowits: Discover G2 Eulb Y1 Tiny\n\n25) alexcobo: Build Y1 Alexcobo\n\n26) Horowits: Build G3 Tiny\n\n27) alexcobo: Trade Y2 R2 Alexcobo\n\n28) Horowits: Trade G1 R1 Horowits\n\n29) alexcobo: Build Y2 Alexcobo\n\n30) Horowits: Build R1 Horowits\n\n31) alexcobo: Trade Y1 B1 Alexcobo\n\n\nHomeworlds Online (SDG# 11065)\nVariants: "Hard time"\nStarted: 2008.5.27, Ended: 2008.5.27\nParticipants: fuguru (S), neoprofin (N)\nWinner: fuguru\n\n1) neoprofin: Homeworld G1 B2 Y3\n\n2) fuguru: Homeworld B1 Y3 G3\n\n3) neoprofin: Discover Y3 Neoprofin R3 Minbar\n\n\nHomeworlds Online (SDG# 11068)\nStarted: 2008.5.27, Ended: 2008.5.28\nParticipants: neoprofin (S), fuguru (N)\nWinner: fuguru\n\n1) fuguru: Homeworld B3 Y2 G3\n\n2) neoprofin: Homeworld G2 B1 Y3\n\n3) fuguru: Build G1 Fuguru\n\n4) neoprofin: Build Y1 Neoprofin\n\n5) fuguru: Discover G1 Fuguru B1 Centauri Prime\n\n6) neoprofin: Trade Y3 R3 Neoprofin\n\tfuguru: Dammit. That was supposed to be Centauri Prime\n\n7) fuguru: Build G1 Centauri\n\tneoprofin: londo is gonig to be pissed\r\n\n\n8) neoprofin: Discover R3 Neoprofin R3 Minbar\n\n9) fuguru: Trade G1 Y1 Centauri\n\tfuguru: Minbar is HUGE!\n\n10) neoprofin: Build Y1 Neoprofin\n\tneoprofin: that's what she said\n\n11) fuguru: Discover G1 Centauri B2 Narn\n\n12) neoprofin: Move Y1 Neoprofin Minbar\n\n13) fuguru: Build G1 Narn\n\n14) neoprofin: Move R3 Minbar Centauri\n\n15) fuguru: Move Y1 Centauri Narn\n\tneoprofin: in some ways the drazi have taught us that sometimes genocide is the answer\r\n\n\n16) neoprofin: Move Y1 Minbar Centauri\n\n17) fuguru: Trade G3 R3 Fuguru\n\tfuguru: If the Centauri's have the audacity to invade Narn, then Narns _will_ fight back! We are a peaceful race moving across the universe and multiplying!\n\n18) neoprofin: Build Y2 Neoprofin\n\n19) fuguru: Build Y2 Narn\n\tneoprofin: That was a peaceful research colony!\n\n20) neoprofin: Trade Y1 G1 Centauri\n\n21) fuguru: Trade Y2 R2 Narn\n\n22) neoprofin: Build G2 Centauri\n\tneoprofin: I wish I could remember what my strategy was from each turn, it's like starting the game all over again every time.\n\n23) fuguru: Discover R2 Narn Y3 Minbar\n\n24) neoprofin: Discover Y1 Neoprofin R3 Vorlonworld\n\n25) fuguru: Move R2 Minbar Neoprofin\n\tfuguru: My Minbar wasn't big enough.\n\n26) neoprofin: Trade G1 Y1 Centauri\n\n27) fuguru: Attack Y2S Neoprofin\n\tfuguru: DUH DUH DUUUUUN\n\n\nHomeworlds Online (SDG# 11066)\nVariants: "Hard time"\nStarted: 2008.5.27, Ended: 2008.8.16\nParticipants: wyons (S), TwoShort (N)\nWinner: wyons\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) wyons: Homeworld B1 R3 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) wyons: Build G1 Wyons\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) TwoShort: Build G1 Twoshort\n\n8) wyons: Build G1 Wyons\n\n9) TwoShort: Trade G1 B1 Twoshort\n\n10) wyons: Build Y1 Wyons\n\n11) TwoShort: Build Y2 Twoshort\n\n12) wyons: Build Y2 Wyons\n\n13) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n14) wyons: Discover Y1 Wyons G2 Xanthrophyl\n\n15) TwoShort: Build G1 Twoshort\n\n16) wyons: Trade Y1 B1 Wyons\n\n17) TwoShort: Build G1 Twoshort\n\n18) wyons: Build G2 Wyons\n\n19) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n20) wyons: Trade G1 R1 Wyons\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n22) wyons: Sacrifice G3 Wyons\nBuild G3 Wyons\nBuild R1 Wyons\nBuild B2 Wyons\n\n23) TwoShort: Trade G2 R2 Bluonia\n\n24) wyons: Move R1 Wyons Xanthrophyl\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Twoshort\nBuild B2 Twoshort\n\n26) wyons: Move B2 Wyons Xanthrophyl\n\n27) TwoShort: Sacrifice B2 Twoshort\nTrade G1 Y1 Twoshort\nTrade G2 R2 Bluonia\n\n28) wyons: Discover B1 Wyons B2 Bluemeanies\n\n29) TwoShort: Discover Y1 Grogar G2 Grozuki\n\n30) wyons: Sacrifice G2 Wyons\nBuild B3 Bluemeanies\nBuild B3 Xanthrophyl\n\n31) TwoShort: Sacrifice Y2 Twoshort\nMove B1 Twoshort Bluonia\nMove B1 Bluonia Bluemeanies\nCatastrophe Bluemeanies Blue\n\n32) wyons: Trade B3 G3 Xanthrophyl\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Bluonia\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n34) wyons: Sacrifice G3 Xanthrophyl\nBuild G3 Wyons\nBuild R2 Xanthrophyl\nBuild R3 Wyons\n\n35) TwoShort: Trade G2 Y2 Bluonia\n\n36) wyons: Move R3 Wyons Grozuki\n\tTwoShort: I'm about to leave on vacation for two weeks, and I'm not entirely sure how much internet access I'll have. Would you mind if we froze the clock for a bit?\n\twyons: yep thats fine, please can you unfreeze it in two weeks (I dont know how to)\n\tTwoShort: I'm back...\n\n\tTwoShort: Ack! Timed out during a server outage; I guess that will teach me to let it run down to the last day. In any case, you had me pretty thoroughly cornered; I'm just sorry to be a lame ass and deny you the satisfaction of finishing me off.\n\twyons: No worries, thank you for the game!\n\nHomeworlds Online (SDG# 11062)\nStarted: 2008.5.27, Ended: 2008.6.1\nParticipants: Daarck (S), MikeYarrum (N)\nWinner: Daarck\n\n\nHomeworlds Online (SDG# 11073)\nStarted: 2008.5.28, Ended: 2008.5.29\nParticipants: neoprofin (S), fuguru (N)\nWinner: neoprofin\n\n1) fuguru: Homeworld G1 B3 Y3\n\n2) neoprofin: Homeworld B3 G2 R3\n\n3) fuguru: Build Y1 Fuguru\n\n4) neoprofin: Build R1 Neoprofin\n\n5) fuguru: Build Y1 Fuguru\n\n6) neoprofin: Trade R1 Y1 Neoprofin\n\n7) fuguru: Discover Y1 Fuguru Y2 Tattooine\n\tneoprofin: there is a hole in your mind\n\n8) neoprofin: Build Y2 Neoprofin\n\n9) fuguru: Discover Y1 Fuguru Y2 Dantooine\n\n10) neoprofin: Discover Y2 Neoprofin G1 Dagobah\n\n11) fuguru: Build Y3 Fuguru\n\n12) neoprofin: Build Y3 Dagobah\n\n13) fuguru: Discover Y1 Tattooine G1 Endor\n\n14) neoprofin: Discover Y2 Dagobah B2 Coruscant\n\n15) fuguru: Build Y2 Fuguru\n\n16) neoprofin: Move Y2 Coruscant Fuguru\nCatastrophe Fuguru Y\n\n\nHomeworlds Online (SDG# 11040)\nVariants: "Hard time"\nStarted: 2008.5.28, Ended: 2008.5.29\nParticipants: mneme (S), jeep (N)\nWinner: mneme\n\n\tjeep: This challenge is supposed to be suspended... I'm not going to take on any new games right now. When I return, I'm happy to play.\n\tmneme: Cool -- have a good trip!\n\nHomeworlds Online (SDG# 11049)\nVariants: "Hard time"\nStarted: 2008.5.28, Ended: 2008.6.5\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) mneme: Homeworld B1 R3 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) mneme: Build G1 Mneme\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) TwoShort: Build G1 Twoshort\n\n8) mneme: Build G1 Mneme\n\tmneme: Ok, so where did all the spectators come from?\r\nNot that I mind seeing people watch me get my ass handed to me (again) :)\n\n9) TwoShort: Trade G1 B1 Twoshort\n\tmneme: Particularly since...oh, look, not only playing HW against Twoshort, but with him going first...as banker...\n\n10) mneme: Trade G1 B1 Mneme\n\tTwoShort: Must be because I'm a big celebrity :) I'm not clear what it actually means that they are there. You can look at any game right? Are they getting emails when a move is made or something? \r\n\n\tTwoShort: Hey! Spectators! You're always there, but are any of you actually actively watching my every move? That'd be weird.\n\n11) TwoShort: Build B2 Twoshort\n\tmneme: I think it means the game appears on their display.\r\n\n\n12) mneme: Build G1 Mneme\n\n13) TwoShort: Discover B1 Twoshort G3 Grogar\n\n14) mneme: Trade G1 R1 Mneme\n\n15) TwoShort: Build G1 Twoshort\n\n16) mneme: Build R1 Mneme\n\n17) TwoShort: Discover G1 Twoshort B3 Bluzilla\n\n18) mneme: Discover R1 Mneme G2 Jade\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B3 Grogar\nBuild B3 Twoshort\n\n20) mneme: Build R2 Jade\n\n21) TwoShort: Sacrifice B2 Grogar\nTrade B3 Y3 Grogar\nTrade B3 G3 Twoshort\n\n22) mneme: Build Y1 Mneme\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B3 Grogar\nBuild B3 Twoshort\n\tmneme: sweet. Also, toast.\r\n\n\n24) mneme: Sacrifice Y1 Mneme\nMove R1 Jade Bluzilla\n\n25) TwoShort: Sacrifice B2 Grogar\nTrade B3 R3 Grogar\nTrade B3 G3 Twoshort\n\tTwoShort: Well, if you liked it the first time... :)\n\tmneme: mnnn. Toast. It was the blue sacrifice refinement I didn't expect.\n\n26) mneme: Attack G1 Bluzilla\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B3 Grogar\nBuild B3 Twoshort\n\n28) mneme: Build R2 Bluzilla\n\n29) TwoShort: Sacrifice B2 Grogar\nTrade B3 R3 Grogar\nTrade B3 G3 Twoshort\n\n30) mneme: Trade R2 B2 Bluzilla\n\n31) TwoShort: Build B3 Grogar\n\n32) mneme: Build B3 Bluzilla\n\tTwoShort: This is getting addictive :)\n\n33) TwoShort: Move B2 Twoshort Bluzilla\nCatastrophe Bluzilla Blue\n\n\tmneme: Ok, that's enough; I wanted to see if you'd make a mistake, but I didn't have enough yellow to take advantage of one even if you had made such a mistake. grats.\n\nHomeworlds Online (SDG# 11071)\nStarted: 2008.5.28, Ended: 2008.6.3\nParticipants: mneme (S), MikeYarrum (N)\nWinner: mneme\n\n\tmneme: you taking a move?\n\nHomeworlds Online (SDG# 11003)\nVariants: "Unrated, Hard time"\nStarted: 2008.5.28, Ended: 2008.6.10\nParticipants: mneme (S), scottobear (N)\nWinner: mneme\n\n1) scottobear: Homeworld B3 G2 Y3\n\n2) mneme: Homeworld B1 R3 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) mneme: Build G1 Mneme\n\n5) scottobear: Trade Y1 G1 Scottobear\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) scottobear: Discover G1 Scottobear B1 Monkey\n\n8) mneme: Build G1 Mneme\n\n9) scottobear: Build Y1 Scottobear\n\n10) mneme: Trade G1 B1 Mneme\n\n11) scottobear: Build G1 Monkey\n\n12) mneme: Build B2 Mneme\n\n13) scottobear: Trade Y1 R1 Scottobear\n\n14) mneme: Discover B2 Mneme Y2 Daffodil\n\n15) scottobear: Trade Y3 B3 Scottobear\n\n16) mneme: Sacrifice G3 Mneme\nBuild B2 Daffodil\nBuild B2 Daffodil\nBuild B3 Mneme\n\n17) scottobear: Build G1 Monkey\n\n18) mneme: Sacrifice B2 Daffodil\nTrade B2 Y2 Daffodil\nTrade B3 G3 Mneme\n\n19) scottobear: Trade G1 Y1 Monkey\n\n20) mneme: Sacrifice G3 Mneme\nBuild B2 Daffodil\nBuild B2 Daffodil\nBuild B3 Mneme\n\n21) scottobear: Build R1 Scottobear\n\tscottobear: I'm still getting the hang of sacrifcies for moves.. that was nice!\n\n22) mneme: Trade B3 G3 Mneme\n\tmneme: *nod* I actually stole a few moves from TwoShort, who's kicking my ass in another game.\n\n23) scottobear: Build B3 Scottobear\n\n24) mneme: Sacrifice Y2 Daffodil\nMove B2 Daffodil Monkey\nMove B2 Monkey Scottobear\nCatastrophe Scottobear B\n\tmneme: You have chosen...poorly.\r\nBut hey, learning experience, right?\n\n25) scottobear: Build Y1 Monkey\n\tmneme: If you want to see how the endgame works, just keep playing -- I'm killing you in 3 moves no matter what you do, so there's not that much reason to short circuit it if you want to see the endgame. (hmm. Crazy play on your part can push it to 4 rounds; I don't see it going past that).\r\n\r\n\n\tscottobear: thanks! I appreciate the strategy assist!\n\n26) mneme: Move G3 Mneme Scottobear\n\n27) scottobear: Move G1 Monkey Scottobear\n\tmneme: I could fairly easily kill you with red...swap blue for red in daffodil, then move from mneme to your home system, then sac red to take 2 pieces from your home system. But you could delay it -- grow a red in your home system, move stuff back to keep going, etc. This way...I move to your home system, next turn I grow a green...after that, there's no hope; no matter what you do, I catastrophe your home system on t3; no more star = game over.\n\tmneme: normally, moving my g3 out of my home system would be foolish. But in this case, with your only controlling smalls, it's quite safe.\n\n28) mneme: Build G1 Scottobear\nCatastrophe Scottobear G\n\tmneme: Well, that makes it faster...thanks for the game! \n\tmneme: Oh, FWIW, the "crazy play that can push it to four rounds" was, on move 25, "m r1 scottobear mneme". This threatened either a stalemate or a win if I didn't deal with it -- so instead of a three move win (was 2, but only because you helped by moving a g in), I'd have to spend 1 round capturing the red, (then you only had one ship in your home system, so you couldn't repeat the trick), one moving the g into your home system, and then either swap b for r and take both ships (a sure win only if you had only two ships in your home system and no drones) or grow twice to win by catastrophe.\r\n\n\n\nHomeworlds Online (SDG# 11086)\nVariants: "Unrated"\nStarted: 2008.5.29, Ended: 2008.7.23\nParticipants: Danner (S), LordTom (N), Factorial (E)\nWinner: Danner\n\n1) LordTom: Homeworld B1 Y2 G3\n\n2) Factorial: Homeworld G1 B2 Y3\n\n3) Danner: Homeworld R1 B2 G3\n\n4) LordTom: Build G1 Lordtom\n\n5) Factorial: Build Y1 Factorial\n\n6) Danner: Build G1 Danner\n\n7) LordTom: Trade G1 R1 Lordtom\n\n8) Factorial: Build Y1 Factorial\n\n9) Danner: Trade G1 Y1 Danner\n\tLordTom: Írjunk már ide valami magyar szöveget is!\n\n10) LordTom: Discover R1 Lordtom R3 Mars\n\n11) Factorial: Trade Y1 R1 Factorial\n\n12) Danner: Build G1 Danner\n\n\nHomeworlds Online (SDG# 11083)\nStarted: 2008.5.30, Ended: 2010.2.9\nParticipants: scottobear (S), MikeYarrum (N)\nWinner: scottobear\n\n\nHomeworlds Online (SDG# 11090)\nStarted: 2008.6.2, Ended: 2008.6.20\nParticipants: neoprofin (S), fuguru (N)\nWinner: fuguru\n\n1) fuguru: Homeworld B3 Y2 G3\n\tneoprofin: 23 hours bitch!\n\n2) neoprofin: Homeworld G1 B3 R3\n\n3) fuguru: Build G1 Fuguru\n\n4) neoprofin: Build R1 Neoprofin\n\n5) fuguru: Discover G1 Fuguru G1 Aa\n\n6) neoprofin: Trade R1 Y1 Neoprofin\n\n7) fuguru: Build G2 Fuguru\n\n8) neoprofin: Build Y1 Neoprofin\n\n9) fuguru: Trade G3 Y3 Fuguru\n\n10) neoprofin: Build R1 Neoprofin\n\n11) fuguru: Build G2 Fuguru\n\n12) neoprofin: Discover Y1 Neoprofin Y2 Xxx\n\n13) fuguru: Build G2 Fuguru\n\n14) neoprofin: Discover Y1 Neoprofin Y2 Nambla\n\tfuguru: I'm only double A but I'm thinkin' triple X.\n\n15) fuguru: Discover G2 Fuguru B1 Nafta\n\n16) neoprofin: Trade R1 B1 Neoprofin\n\n17) fuguru: Build G3 Nafta\n\n18) neoprofin: Build B1 Neoprofin\n\n19) fuguru: Trade G3 R3 Nafta\n\n20) neoprofin: Trade B1 Y1 Neoprofin\n\n21) fuguru: Build G3 Nafta\n\n22) neoprofin: Build Y3 Neoprofin\n\n23) fuguru: Trade G3 Y3 Nafta\n\n24) neoprofin: Build R1 Neoprofin\n\n25) fuguru: Move R3 Nafta Nambla\n\n26) neoprofin: Move Y1 Nambla Aa\n\n27) fuguru: Build G3 Nafta\n\n28) neoprofin: Trade Y3 G3 Neoprofin\n\n29) fuguru: Trade G3 R3 Nafta\n\n30) neoprofin: Build Y3 Neoprofin\n\n31) fuguru: Move R3 Nafta Xxx\n\n32) neoprofin: Sacrifice Y3 Neoprofin\nMove Y1 Aa Fuguru\nMove Y1 Xxx Aa\nMove Y1 Aa Fuguru\nCatastrophe Fuguru Y\n\n33) fuguru: Move Y3 Nafta Xxx\n\n34) neoprofin: Build G3 Neoprofin\n\tneoprofin: OH NOOOOOO! CATASTROPHE!!!!\n\n35) fuguru: Build G3 Fuguru\n\n36) neoprofin: Trade G3 Y3 Neoprofin\n\n37) fuguru: Trade G3 Y3 Fuguru\n\n38) neoprofin: Sacrifice Y3 Neoprofin\nDiscover R1 Neoprofin Y2 Fafsa\nMove G3 Neoprofin Fafsa\nMove G3 Fafsa Fuguru\n\n39) fuguru: Trade G2 R2 Fuguru\n\n40) neoprofin: Build R1 Neoprofin\n\n41) fuguru: Sacrifice Y3 Fuguru\nMove R3 Xxx Neoprofin\nMove Y3 Xxx Neoprofin\nMove R3 Nambla Fuguru\n\n42) neoprofin: Attack R3 Neoprofin\n\n43) fuguru: Sacrifice R3 Fuguru\nAttack R3 Neoprofin\nAttack R3 Neoprofin\nAttack R1 Neoprofin\n\n44) neoprofin: Move R1 Fafsa Neoprofin\nCatastrophe Neoprofin R\n\n45) fuguru: Sacrifice R2 Fuguru\nAttack B1 Neoprofin\nAttack Y1 Neoprofin\n\tfuguru: BWAHAHAHA!\n\n\tneoprofin: I do not know what weapons WWIII will be fought with, but I know WWIV will be fought with stones.\n\tfuguru: There will always be hidden stockpiles!\n\nHomeworlds Online (SDG# 11082)\nVariants: "Hard time"\nStarted: 2008.6.3, Ended: 2008.6.12\nParticipants: inundator (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy.\n\n2) inundator: Homeworld B3 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) inundator: Build G1 Inundator\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) inundator: Trade G1 R1 Inundator\n\n7) TwoShort: Build G1 Twoshort\n\n8) inundator: Build G1 Inundator\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) inundator: Discover G1 Inundator B1 Akihabara\n\n11) TwoShort: Build Y1 Twoshort\n\n12) inundator: Build G1 Inundator\n\n13) TwoShort: Build G2 Twoshort\n\n14) inundator: Build G2 Akihabara\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n16) inundator: Sacrifice G3 Inundator\nBuild G3 Inundator\nBuild R1 Inundator\nBuild R2 Inundator\n\n17) TwoShort: Trade G2 R2 Twoshort\n\n18) inundator: Discover R1 Inundator Y1 Shibuya\n\n19) TwoShort: Move G3 Yolonda Shibuya\n\n20) inundator: Move R1 Shibuya Yolonda\n\n21) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Shibuya\nBuild Y2 Twoshort\n\n22) inundator: Sacrifice G2 Akihabara\nBuild G2 Akihabara\nBuild R2 Yolonda\n\n23) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n24) inundator: Move R1 Yolonda Twoshort\n\n25) TwoShort: Sacrifice R2 Twoshort\nAttack R1S Twoshort\nPass\n\n26) inundator: Sacrifice G2 Akihabara\nBuild R2 Yolonda\nBuild R3 Inundator\n\n27) TwoShort: Sacrifice G3 Shibuya\nBuild Y3 Bluestar\nBuild Y3 Bluestar\nBuild Y3 Twoshort\n\n28) inundator: Move R3 Inundator Shibuya\n\n29) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yolonda Shibuya\nMove G1 Shibuya Inundator\nMove G2 Shibuya Inundator\nCatastrophe Inundator Green\n\n30) inundator: Trade R2 G2 Inundator\n\n31) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Bluestar Shibuya\nMove Y3 Shibuya Inundator\n\n32) inundator: Move R3 Shibuya Inundator\n\n33) TwoShort: Sacrifice R1 Twoshort\nAttack R3S Inundator\n\n34) inundator: Build R1 Inundator\n\n35) TwoShort: Sacrifice R3 Inundator\nAttack R1S Inundator\nAttack R1S Inundator\nAttack G2S Inundator\n\tinundator: I thinks that's game. Thank you!\n\n\nHomeworlds Online (SDG# 11095)\nVariants: "Unrated, Hard time"\nStarted: 2008.6.3, Ended: 2008.6.27\nParticipants: MadWuher (S), scottobear (N)\nWinner: MadWuher\n\n1) scottobear: Homeworld B3 G2 Y3\n\n2) MadWuher: Homeworld G1 B2 Y3\n\n3) scottobear: Build Y1 Scottobear\n\tscottobear: wow.. look at all the spectators!\n\n4) MadWuher: Build Y1 Madwuher\n\n5) scottobear: Trade Y1 B1 Scottobear\n\n6) MadWuher: Trade Y1 G1 Madwuher\n\n7) scottobear: Build Y1 Scottobear\n\n8) MadWuher: Build Y1 Madwuher\n\n9) scottobear: Discover Y1 Scottobear B1 Hershey\n\n10) MadWuher: Discover G1 Madwuher Y3 Mars\n\n11) scottobear: Trade Y1 G1 Hershey\n\tscottobear: isn't mars a red planet?? ;)\n\n12) MadWuher: Trade Y1 R1 Madwuher\n\n13) scottobear: Build Y1 Scottobear\n\n14) MadWuher: Build G2 Mars\n\n15) scottobear: Build G2 Hershey\n\n16) MadWuher: Build Y1 Madwuher\n\n17) scottobear: Build B1 Scottobear\n\n\tMadWuher: I know Mars is red, I just saw the Hershey name and I thought of chocolate. =) MMMmmmmm chocolate....\n\tscottobear: yummy! \n\n18) MadWuher: Discover G1 Mars Y1 Aero\n\n19) scottobear: Trade G2 Y2 Hershey\n\n20) MadWuher: Build G2 Aero\n\n21) scottobear: Trade Y3 R3 Scottobear\n\n22) MadWuher: Build G3 Mars\n\n23) scottobear: Move R3 Scottobear Aero\n\n24) MadWuher: Sacrifice G2 Aero\nBuild G2 Mars\nBuild Y2 Madwuher\n\n25) scottobear: Move G1 Hershey Mars\nCatastrophe Mars Green\n\n26) MadWuher: Trade Y2 B2 Madwuher\n\n27) scottobear: Attack G1 Aero\n\n28) MadWuher: Trade Y1 G1 Madwuher\n\n29) scottobear: Build G2 Aero\n\n30) MadWuher: Build R1 Madwuher\n\n31) scottobear: Trade Y2 G2 Hershey\n\n32) MadWuher: Build G3 Madwuher\n\n33) scottobear: Build G3 Hershey\n\n34) MadWuher: Sacrifice Y3 Madwuher\nDiscover B2 Madwuher G3 Hmmm\nMove B2 Hmmm Hershey\nMove B2 Hershey Scottobear\nCatastrophe Scottobear Blue\n\n35) scottobear: Build G3 Hershey\n\n36) MadWuher: Trade G1 Y1 Madwuher\n\n37) scottobear: Trade G3 Y3 Hershey\n\tscottobear: nicely done!\n\n38) MadWuher: Build Y2 Madwuher\n\tMadWuher: Thanks. These are my first games, so I thought I might as well go for the gusto. =) \n\n39) scottobear: Discover G3 Hershey B3 Quisp\n\tscottobear: kudos! :D\n\n40) MadWuher: Trade Y1 B1 Madwuher\n\n41) scottobear: Build Y1 Scottobear\n\n42) MadWuher: Discover B1 Madwuher G3 Crisp\n\n43) scottobear: Build G1 Quisp\n\n44) MadWuher: Build B1 Crisp\n\n45) scottobear: Move R3 Aero Crisp\n\n46) MadWuher: Sacrifice Y2 Madwuher\nMove G3 Madwuher Crisp\nMove G3 Crisp Scottobear\n\n47) scottobear: Trade G3 R3 Quisp\n\n48) MadWuher: Sacrifice B1 Crisp\nTrade R1 B1 Madwuher\n\n49) scottobear: Trade Y3 B3 Hershey\n\n50) MadWuher: Build G3 Scottobear\n\n51) scottobear: Move Y1 Scottobear Quisp\n\n52) MadWuher: Sacrifice B1 Crisp\nTrade G3 R3 Scottobear\n\n53) scottobear: Move R3 Quisp Madwuher\n\n54) MadWuher: Attack Y1N Scottobear\n\n\nHomeworlds Online (SDG# 11116)\nVariants: "Unrated, Hard time"\nStarted: 2008.6.3, Ended: 2008.6.27\nParticipants: MadWuher (S), scottobear (N)\nWinner: MadWuher\n\n1) scottobear: Homeworld Y3 B2 G3\n\n2) MadWuher: Homeworld G1 B3 Y3\n\n3) scottobear: Build G1 Scottobear\n\n4) MadWuher: Build Y1 Madwuher\n\n5) scottobear: Trade G1 B1 Scottobear\n\n6) MadWuher: Trade Y1 G1 Madwuher\n\n7) scottobear: Build B1 Scottobear\n\n8) MadWuher: Build Y1 Madwuher\n\n9) scottobear: Discover B1 Scottobear G1 Eye\n\n10) MadWuher: Build G2 Madwuher\n\n11) scottobear: Build G2 Scottobear\n\n12) MadWuher: Discover G2 Madwuher Y2 Dagger\n\n13) scottobear: Build B1 Eye\n\n14) MadWuher: Build Y1 Madwuher\n\n15) scottobear: Build B2 Eye\n\n16) MadWuher: Trade Y3 B3 Madwuher\n\n17) scottobear: Trade B2 G2 Eye\n\n18) MadWuher: Build B2 Madwuher\n\n19) scottobear: Trade G2 R2 Eye\n\n20) MadWuher: Trade Y1 R1 Madwuher\n\n21) scottobear: Trade G3 Y3 Scottobear\n\n22) MadWuher: Move B3 Madwuher Dagger\n\n23) scottobear: Trade B1 Y1 Eye\n\n24) MadWuher: Build G2 Dagger\n\n25) scottobear: Move R2 Eye Dagger\n\n26) MadWuher: Sacrifice R1 Madwuher\nAttack R2 Dagger\n\n27) scottobear: Build G3 Scottobear\n\n28) MadWuher: Trade G2 R2 Dagger\n\n29) scottobear: Trade G3 R3 Scottobear\n\n30) MadWuher: Build G2 Madwuher\n\n31) scottobear: Build G3 Scottobear\n\n32) MadWuher: Build G3 Dagger\n\n33) scottobear: Move R3 Scottobear Eye\n\n34) MadWuher: Trade G2 Y2 Madwuher\n\n35) scottobear: Build R1 Eye\n\n36) MadWuher: Sacrifice Y2 Madwuher\nMove G3 Dagger Madwuher\nMove G1 Madwuher Dagger\n\n37) scottobear: Trade G3 R3 Scottobear\n\n38) MadWuher: Discover G1 Dagger Y1 Axe\n\n39) scottobear: Build Y2 Eye\n\n40) MadWuher: Build G2 Axe\n\n41) scottobear: Move R3 Scottobear Axe\n\n42) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Madwuher\nBuild Y3 Madwuher\nBuild G3 Dagger\n\n43) scottobear: Attack G2 Axe\n\n44) MadWuher: Sacrifice G3 Dagger\nBuild G3 Dagger\nBuild G3 Axe\nBuild G3 Axe\n\n45) scottobear: Build B1 Scottobear\nCatastrophe Axe Green\n\n46) MadWuher: Sacrifice Y2 Madwuher\nDiscover B3 Dagger R1 Boomtime\nMove B3 Boomtime Scottobear\nCatastrophe Scottobear B\n\n47) scottobear: Move R3 Axe Scottobear\n\n48) MadWuher: Discover Y1 Madwuher G2 Axe\n\n49) scottobear: Move R3 Eye Scottobear\n\n50) MadWuher: Sacrifice G2 Dagger\nBuild Y1 Axe\nBuild Y2 Madwuher\n\n51) scottobear: Move R3 Scottobear Dagger\n\n52) MadWuher: Sacrifice R2 Dagger\nAttack R3N Dagger\nPass\n\n53) scottobear: Build B1 Eye\n\n54) MadWuher: Sacrifice Y2 Madwuher\nMove Y1 Axe Scottobear\nMove Y1 Axe Scottobear\nCatastrophe Scottobear Y\n\n\nHomeworlds Online (SDG# 11115)\nVariants: "Hard time"\nStarted: 2008.6.5, Ended: 2008.6.12\nParticipants: TwoShort (S), patwillis (N)\nWinner: TwoShort\n\n1) patwillis: Homeworld G1 B2 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n3) patwillis: Build Y1 Patwillis\n\tTwoShort: Woops, didn't mean to make a small universe there...\n\n4) TwoShort: Build G1 Twoshort\n\n5) patwillis: Trade Y1 G1 Patwillis\n\n6) TwoShort: Build G2 Twoshort\n\tpatwillis: Hi. Enjoy the game...\n\n7) patwillis: Build G2 Patwillis\n\n8) TwoShort: Trade G2 Y2 Twoshort\n\n9) patwillis: Discover G2 Patwillis B3 Blue3\n\n10) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n11) patwillis: Build G2 Blue3\n\n12) TwoShort: Build G2 Twoshort\n\n13) patwillis: Trade G1 R1 Patwillis\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yolonda\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n15) patwillis: Build Y1 Patwillis\n\n16) TwoShort: Discover G1 Yolonda Y3 Yellonia\n\n17) patwillis: Discover R1 Patwillis G3 Greenland\n\n18) TwoShort: Trade G2 R2 Twoshort\n\n19) patwillis: Move Y1 Patwillis Blue3\n\n20) TwoShort: Sacrifice G3 Yolonda\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n21) patwillis: Move G2 Blue3 Yolonda\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Yellonia\nBuild R1 Twoshort\nBuild Y1 Twoshort\n\n23) patwillis: Build Y2 Patwillis\n\n24) TwoShort: Discover G1 Yolonda Y3 Yellamatic\n\n25) patwillis: Sacrifice Y2 Patwillis\nMove R1 Greenland Yolonda\nMove R1 Yolonda Twoshort\nCatastrophe Twoshort Red\n\n26) TwoShort: Build G3 Yellamatic\n\n27) patwillis: Build Y2 Blue3\n\n28) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n29) patwillis: Trade Y1 B1 Blue3\n\n30) TwoShort: Trade Y2 R2 Twoshort\n\n31) patwillis: Build Y1 Patwillis\n\n32) TwoShort: Move G3 Yellamatic Patwillis\n\n33) patwillis: Trade Y1 R1 Patwillis\n\n34) TwoShort: Sacrifice R2 Twoshort\nAttack R1 Patwillis\nAttack Y3 Patwillis\n\n\tTwoShort: That's it I'm afraid... Thanks for the game!\n\tpatwillis: Thanks - only my 2nd game ever - so picked up a few tips.\n\nHomeworlds Online (SDG# 11118)\nVariants: "Unrated, Hard time"\nStarted: 2008.6.6, Ended: 2008.6.25\nParticipants: patwillis (S), scottobear (N)\nWinner: patwillis\n\n1) scottobear: Homeworld G3 B2 Y3 Scottobear\n\n2) patwillis: Homeworld R1 B2 G3\n\n3) scottobear: Build Y1 Scottobear\n\n4) patwillis: Build G1 Patwillis\n\n5) scottobear: Discover Y1 Scottobear B1 Fria\n\n6) patwillis: Trade G1 Y1 Patwillis\n\n7) scottobear: Trade Y1 G1 Fria\n\n8) patwillis: Build Y1 Patwillis\n\n9) scottobear: Build G1 Fria\n\n10) patwillis: Discover Y1 Patwillis G3 Greenland\n\n11) scottobear: Trade G1 Y1 Fria\n\n12) patwillis: Build Y2 Greenland\n\n13) scottobear: Build Y2 Fria\n\n14) patwillis: Build G1 Patwillis\n\n\nHomeworlds Online (SDG# 11130)\nStarted: 2008.6.10, Ended: 2008.6.24\nParticipants: patwillis (S), Danner (N)\nWinner: patwillis\n\n1) Danner: Homeworld R1 B2 G3\n\n2) patwillis: Homeworld Y1 B3 G3\n\tDanner: Hi, have a good game!\n\n3) Danner: Build G1 Danner\n\n4) patwillis: Build G1 Patwillis\n\n5) Danner: Trade G1 Y1 Danner\n\n6) patwillis: Build G1 Patwillis\n\n7) Danner: Build Y1 Danner\n\n8) patwillis: Trade G1 R1 Patwillis\n\n9) Danner: Build Y2 Danner\n\n10) patwillis: Build R1 Patwillis\n\n11) Danner: Discover Y1 Danner G3 Earth\n\n12) patwillis: Trade G3 Y3 Patwillis\n\n13) Danner: Discover Y1 Earth R2 Mars\n\n14) patwillis: Move Y3 Patwillis Mars\n\n15) Danner: Sacrifice G3 Danner\nBuild Y2 Mars\nBuild Y2 Mars\nBuild Y3 Danner\nCatastrophe Mars Y\n\n16) patwillis: Build R2 Patwillis\n\n17) Danner: Trade Y2 R2 Danner\n\n18) patwillis: Discover R2 Patwillis G2 Greenland\n\n19) Danner: Sacrifice Y3 Danner\nDiscover R2 Danner R3 Temporal\nMove R2 Temporal Greenland\nMove R2 Greenland Patwillis\n\n20) patwillis: Build R2 Patwillis\nCatastrophe Patwillis Red\n\n21) Danner: Trade Y1 G1 Danner\n\n22) patwillis: Build G1 Patwillis\n\n23) Danner: Build G2 Danner\n\n24) patwillis: Trade G1 Y1 Patwillis\n\n25) Danner: Trade G1 Y1 Danner\n\n26) patwillis: Build Y2 Patwillis\n\n27) Danner: Build Y2 Danner\n\n28) patwillis: Move Y2 Patwillis Greenland\n\n29) Danner: Discover Y2 Danner R3 Mars\n\n30) patwillis: Build G1 Patwillis\n\n31) Danner: Build Y2 Danner\n\n32) patwillis: Build Y3 Greenland\n\n33) Danner: Build Y3 Danner\n\n34) patwillis: Sacrifice Y3 Greenland\nMove Y1 Patwillis Greenland\nMove Y1 Greenland Mars\nMove Y1 Mars Danner\nCatastrophe Danner Yellow\n\n35) Danner: Build G1 Danner\n\n36) patwillis: Discover G1 Patwillis Y2 Yellonia\n\n37) Danner: Trade G1 Y1 Danner\n\n38) patwillis: Build G1 Patwillis\n\n39) Danner: Discover G2 Danner Y3 Sun\n\n40) patwillis: Sacrifice Y2 Greenland\nMove R2 Greenland Mars\nMove R2 Mars Danner\n\n41) Danner: Sacrifice G2 Sun\nBuild Y1 Danner\nBuild Y2 Danner\n\n42) patwillis: Attack Y2 Danner\n\n\tDanner: I give up. Congrats!\n\tpatwillis: Thanks - set up another if you like\r\n\n\tDanner: Ok, I will :)\n\nHomeworlds Online (SDG# 11151)\nStarted: 2008.6.11, Ended: 2008.6.29\nParticipants: MatrixFrog (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) MatrixFrog: Homeworld B3 G1 Y3\n\n3) Danner: Build G1 Danner\n\n4) MatrixFrog: Build Y1 Matrixfrog\n\n5) Danner: Trade G1 Y1 Danner\n\n6) MatrixFrog: Build Y1 Matrixfrog\n\n7) Danner: Build Y2 Danner\n\n8) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n9) Danner: Discover Y1 Danner G3 Earth\n\n10) MatrixFrog: Discover Y1 Matrixfrog G2 Mars\n\n11) Danner: Build Y1 Earth\n\n12) MatrixFrog: Build Y2 Matrixfrog\n\n13) Danner: Move Y1 Earth Mars\n\n14) MatrixFrog: Move Y1 Mars Earth\n\n15) Danner: Sacrifice G3 Danner\nBuild Y2 Earth\nBuild Y3 Mars\nBuild Y3 Danner\n\n16) MatrixFrog: Trade Y2 R2 Matrixfrog\n\n17) Danner: Trade Y3 G3 Danner\n\n18) MatrixFrog: Build R1 Matrixfrog\n\n19) Danner: Trade Y2 R2 Danner\n\n20) MatrixFrog: Sacrifice B1 Matrixfrog\nTrade Y1 R1 Earth\n\n21) Danner: Move Y1 Earth Danner\n\n22) MatrixFrog: Build R2 Earth\n\n23) Danner: Sacrifice R2 Danner\nAttack R1S Earth\nAttack R2S Earth\n\n24) MatrixFrog: Build Y1 Matrixfrog\n\n25) Danner: Move Y3 Mars Matrixfrog\n\n26) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n27) Danner: Sacrifice R2 Earth\nAttack G3S Matrixfrog\nAttack R2S Matrixfrog\n\n28) MatrixFrog: Build R2 Matrixfrog\n\n29) Danner: Sacrifice G3 Matrixfrog\nBuild R2 Matrixfrog\nBuild Y2 Matrixfrog\nBuild Y2 Matrixfrog\nCatastrophe Matrixfrog R\nCatastrophe Matrixfrog Y\n\tMatrixFrog: *sigh* this isn't looking good\n\n\tDanner: Indeed.\r\nThanks the game.\n\nHomeworlds Online (SDG# 11085)\nVariants: "Hard time"\nStarted: 2008.6.13, Ended: 2008.6.13\nParticipants: Koukaakiva (S), jeep (N)\nWinner: Koukaakiva\n\n\tjeep: This standing challenge is supposed to be suspended. Sorry. Aaron is aware that suspended challenges are still cropping up.\n\nHomeworlds Online (SDG# 11091)\nStarted: 2008.6.13, Ended: 2009.12.9\nParticipants: MikeYarrum (S), Koukaakiva (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11122)\nVariants: "Hard time"\nStarted: 2008.6.13, Ended: 2008.6.16\nParticipants: TwoShort (S), Koukaakiva (N)\nWinner: TwoShort\n\n\nHomeworlds Online (SDG# 11138)\nVariants: "Hard time"\nStarted: 2008.6.13, Ended: 2008.6.18\nParticipants: Danner (S), Koukaakiva (N)\nWinner: Danner\n\n\tDanner: oh well...\n\nHomeworlds Online (SDG# 11147)\nVariants: "Unrated, Hard time"\nStarted: 2008.6.13, Ended: 2008.6.13\nParticipants: scottobear (S), Koukaakiva (N)\nWinner: Koukaakiva\n\n\nHomeworlds Online (SDG# 11159)\nStarted: 2008.6.13, Ended: 2008.11.15\nParticipants: ts52 (S), Koukaakiva (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 11166)\nStarted: 2008.6.14, Ended: 2009.7.8\nParticipants: Horowits (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) Horowits: Homeworld G2 B3 Y3\n\tDanner: Welcome! Good luck!\n\tHorowits: Thanks! You too.\n\n3) Danner: Build G1 Danner\n\n4) Horowits: Build Y1 Horowits\n\n5) Danner: Trade G1 R1 Danner\n\n6) Horowits: Trade Y1 G1 Horowits\n\n7) Danner: Build R1 Danner\n\n8) Horowits: Build G1 Horowits\n\n9) Danner: Build G1 Danner\n\n10) Horowits: Trade Y3 R3 Horowits\n\n11) Danner: Trade R1 Y1 Danner\n\n12) Horowits: Trade G1 Y1 Horowits\n\n13) Danner: Discover G1 Danner Y3 Sun\n\n\nHomeworlds Online (SDG# 11161)\nVariants: "Hard time"\nStarted: 2008.6.17, Ended: 2008.6.18\nParticipants: TwoShort (S), MadWuher (N)\nWinner: TwoShort\n\n1) MadWuher: Homeworld Y1 B2 G3\n\tTwoShort: Howdy\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) TwoShort: Build G1 Twoshort\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) MadWuher: Build G1 Madwuher\n\n8) TwoShort: Build Y2 Twoshort\n\tMadWuher: Hi there. Looking forward to a good game. =)\n\n9) MadWuher: Discover G1 Madwuher Y3 Yuuzhan'tar\n\n10) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n11) MadWuher: Build Y2 Madwuher\n\n12) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Grogar R3 Boomtime\nMove Y1 Boomtime Madwuher\nCatastrophe Madwuher Yellow\n\n13) MadWuher: Build G1 Madwuher\n\n14) TwoShort: Build G1 Twoshort\n\tMadWuher: Yeah, I thought that might happen.\n\n15) MadWuher: Build G2 Yuuzhan'tar\n\n16) TwoShort: Trade G1 Y1 Twoshort\n\n17) MadWuher: Trade G1 Y1 Madwuher\n\n18) TwoShort: Build G1 Twoshort\n\n19) MadWuher: Build G1 Madwuher\n\n20) TwoShort: Trade G1 B1 Twoshort\n\n21) MadWuher: Trade G1 B1 Madwuher\n\n22) TwoShort: Move B1 Twoshort Madwuher\n\tTwoShort: Gotcha :) Thanks for the game.\n\n23) MadWuher: Sacrifice G3 Madwuher\nBuild B1 Madwuher\nPass\nPass\nCatastrophe Madwuher B\n\tMadWuher: Very Nice....\n\n\nHomeworlds Online (SDG# 11169)\nVariants: "Hard time"\nStarted: 2008.6.17, Ended: 2008.6.18\nParticipants: jeep (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n\tjeep: Sorry, these standing challenges are suspended, they weren't supposed to appear.\n\nHomeworlds Online (SDG# 11177)\nStarted: 2008.6.18, Ended: 2008.6.28\nParticipants: MadWuher (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) MadWuher: Homeworld B3 R1 G3\n\n3) Danner: Build G1 Danner\n\tDanner: Good luck!\n\n4) MadWuher: Build G1 Madwuher\n\n5) Danner: Trade G1 R1 Danner\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\tMadWuher: You too.\n\n7) Danner: Build R2 Danner\n\n8) MadWuher: Build G1 Madwuher\n\n9) Danner: Trade R2 Y2 Danner\n\n10) MadWuher: Trade G3 R3 Madwuher\n\n11) Danner: Build R2 Danner\n\n12) MadWuher: Build R2 Madwuher\n\n13) Danner: Discover R1 Danner G3 Earth\n\n14) MadWuher: Discover R2 Madwuher G2 Googleplex\n\n15) Danner: Sacrifice G3 Danner\nBuild R2 Earth\nBuild R3 Earth\nBuild R3 Danner\n\n16) MadWuher: Build G1 Madwuher\n\n17) Danner: Sacrifice R1 Earth\nPass\n\n18) MadWuher: Build G1 Madwuher\n\n19) Danner: Trade R3 G3 Danner\n\n20) MadWuher: Trade G1 Y1 Madwuher\n\n21) Danner: Sacrifice Y2 Danner\nDiscover R2 Earth Y2 Alpha\nDiscover R3 Earth Y2 Beta\n\n22) MadWuher: Build Y1 Madwuher\n\n23) Danner: Move R3 Beta Madwuher\n\n24) MadWuher: Attack R3 Madwuher\n\tMadWuher: Nice.... Don't know why I didn't see this coming....\n\n25) Danner: Move R2 Alpha Madwuher\nCatastrophe Madwuher R\n\n26) MadWuher: Move Y1 Madwuher Googleplex\n\n27) Danner: Trade R2 Y2 Danner\n\n28) MadWuher: Build Y2 Googleplex\n\n29) Danner: Build Y2 Danner\n\n30) MadWuher: Sacrifice Y2 Googleplex\nMove Y1 Madwuher Danner\nMove Y1 Madwuher Danner\nCatastrophe Danner Y\n\n31) Danner: Build G1 Danner\n\n32) MadWuher: Build G2 Madwuher\n\n33) Danner: Trade G1 Y1 Danner\n\n34) MadWuher: Trade G2 Y2 Madwuher\n\n35) Danner: Build G1 Danner\n\n36) MadWuher: Discover G1 Madwuher B2 Blutopia\n\n37) Danner: Trade G1 B1 Danner\n\n38) MadWuher: Build G1 Madwuher\n\n39) Danner: Build B1 Danner\n\n40) MadWuher: Build G2 Blutopia\n\n41) Danner: Move B1 Danner Madwuher\n\n42) MadWuher: Sacrifice G2 Blutopia\nBuild G2 Blutopia\nBuild R1 Googleplex\n\n43) Danner: Sacrifice G3 Danner\nBuild B1 Madwuher\nBuild B2 Madwuher\nPass\nCatastrophe Madwuher B\n\n\tDanner: Thx the game. How about an another one?\n\tMadWuher: Didn't see that G3 in your system.... Wow, big mistake.\n\nHomeworlds Online (SDG# 11160)\nStarted: 2008.6.18, Ended: 2008.6.23\nParticipants: MadWuher (S), MikeYarrum (N)\nWinner: MadWuher\n\n\nHomeworlds Online (SDG# 11183)\nStarted: 2008.6.21, Ended: 2008.11.8\nParticipants: Sunnan (S), MikeYarrum (N)\nWinner: Sunnan\n\n\nHomeworlds Online (SDG# 11182)\nVariants: "Hard time"\nStarted: 2008.6.23, Ended: 2008.6.28\nParticipants: TwoShort (S), MadWuher (N)\nWinner: TwoShort\n\n1) MadWuher: Homeworld B1 R2 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) MadWuher: Build G1 Madwuher\n\tMadWuher: Hopefully, I last longer than last time. =)\n\n4) TwoShort: Build B1 Twoshort\n\tMadWuher: Great homeworld. Way to take advantage of the blue pyramids quickly.\n\n5) MadWuher: Build G1 Madwuher\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\tTwoShort: Yeah, I love this opening, but most people have learned not to take a b1 star as first player against me :)\n\n7) MadWuher: Trade G1 Y1 Madwuher\n\n8) TwoShort: Build B2 Twoshort\n\tMadWuher: Still learning. Thanks for the schooling last time. =) I know I have a long way to go.\n\n9) MadWuher: Build Y1 Madwuher\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) MadWuher: Discover Y1 Madwuher G3 Gimble\n\n12) TwoShort: Build B2 Twoshort\n\n13) MadWuher: Trade G1 R1 Madwuher\n\n14) TwoShort: Build B2 Grogar\n\n15) MadWuher: Build Y1 Gimble\n\n16) TwoShort: Build B3 Grogar\n\n17) MadWuher: Build G1 Madwuher\n\n18) TwoShort: Discover B2 Twoshort Y2 Yellonia\n\n19) MadWuher: Discover G1 Madwuher B3 Bluto\n\n20) TwoShort: Build B3 Twoshort\n\n21) MadWuher: Build G1 Madwuher\n\n22) TwoShort: Sacrifice B2 Twoshort\nTrade B2 R2 Grogar\nTrade B3 Y3 Grogar\n\n23) MadWuher: Build Y2 Madwuher\n\n24) TwoShort: Build B2 Grogar\n\n25) MadWuher: Trade Y2 B2 Madwuher\n\n26) TwoShort: Build B3 Grogar\n\n27) MadWuher: Build G1 Bluto\n\n28) TwoShort: Move B3 Grogar Gimble\n\n29) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G2 Bluto\nBuild G3 Madwuher\n\n30) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Grogar Gimble\nMove B3 Gimble Madwuher\nMove Y3 Gimble Madwuher\n\n31) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y2 Madwuher\nBuild Y2 Madwuher\nCatastrophe Madwuher Y\n\tMadWuher: Nice move.\n\n32) TwoShort: Sacrifice R2 Grogar\nAttack G3N Madwuher\nAttack B2N Madwuher\n\n33) MadWuher: Attack B2S Madwuher\n\n34) TwoShort: Sacrifice B2 Grogar\nTrade B3 R3 Madwuher\nTrade G3 Y3 Madwuher\n\n35) MadWuher: Sacrifice G2 Bluto\nBuild G2 Bluto\nBuild R1 Madwuher\nCatastrophe Madwuher R\n\n36) TwoShort: Sacrifice Y3 Madwuher\nMove B1 Grogar Madwuher\nMove B2 Yellonia Madwuher\nPass\nCatastrophe Madwuher Blue\n\tMadWuher: Wow, after doing the Red Catastrophe, totally missed the blue catastrophe coming my way. Nice Game.\n\tMadWuher: Was there any option for me to get out of that mess??\n\tTwoShort: Depends which mess you mean :) Once I moved the 3s into your homeworld it was definitely over. Before that, you were hurting pretty bad because my blue monopoly was getting me 3s that you weren't getting. To get out of that you should have either broken the monopoly immediately by trading your 3 to blue on turn 2 or so, or agressively pushed for your own monopoly in another color, probably yellow. Or, optimally, don't take a b1 star as first player :)\r\n In any case, thanks for the game!\n\n\nHomeworlds Online (SDG# 11210)\nStarted: 2008.6.25, Ended: 2008.8.6\nParticipants: Danner (S), iwilson (N)\nWinner: Danner\n\n1) iwilson: Homeworld Y3 B2 G3\n\n2) Danner: Homeworld R1 B2 G3\n\tiwilson: \n\tDanner: homeworld R1 B2 G3\n\tDanner: Oh, sorry, I'm tired :D\r\nAnyway, welcome and good luck!\n\n3) iwilson: Build G1 Iwilson\n\n4) Danner: Build G1 Danner\n\tiwilson: \n\n5) iwilson: Trade G1 R1 Iwilson\n\n6) Danner: Trade G1 R1 Danner\n\n7) iwilson: Build G1 Iwilson\n\n8) Danner: Build R2 Danner\n\n9) iwilson: Build R2 Iwilson\n\n10) Danner: Trade R1 Y1 Danner\n\n11) iwilson: Trade R2 Y2 Iwilson\n\n12) Danner: Build Y1 Danner\n\n13) iwilson: Build G1 Iwilson\n\n14) Danner: Build G1 Danner\n\n15) iwilson: Build G2 Iwilson\n\n16) Danner: Build G2 Danner\nCatastrophe Iwilson G\n\n17) iwilson: Trade Y2 G2 Iwilson\n\n18) Danner: Discover Y1 Danner G3 Earth\n\n19) iwilson: Build R1 Iwilson\n\n20) Danner: Build R2 Danner\n\n21) iwilson: Build R2 Iwilson\n\n\n22) Danner: Trade R2 Y2 Danner\n\n\tDanner: Thx the game\n\nHomeworlds Online (SDG# 11212)\nStarted: 2008.6.25, Ended: 2008.7.18\nParticipants: Danner (S), patwillis (N)\nWinner: Danner\n\n1) patwillis: Homeworld G1 B2 Y3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) patwillis: Build Y1 Patwillis\n\n4) Danner: Build G1 Danner\n\n5) patwillis: Trade Y1 G1 Patwillis\n\n6) Danner: Trade G1 R1 Danner\n\n7) patwillis: Build Y1 Patwillis\n\n8) Danner: Build R1 Danner\n\n9) patwillis: Trade Y3 R3 Patwillis\n\n10) Danner: Trade R1 Y1 Danner\n\n11) patwillis: Build G1 Patwillis\n\n12) Danner: Build G2 Danner\n\n13) patwillis: Discover G1 Patwillis Y3 Yelland\n\n14) Danner: Move G2 Danner Yelland\n\n15) patwillis: Discover G1 Patwillis Y3 Venus\n\n16) Danner: Build G2 Danner\n\n17) patwillis: Build G2 Yelland\n\n18) Danner: Sacrifice G2 Danner\nBuild G2 Yelland\nBuild G3 Danner\nCatastrophe Yelland G\n\n19) patwillis: Build G1 Venus\n\n20) Danner: Discover G3 Danner Y3 Sun\n\n21) patwillis: Build G2 Venus\n\n22) Danner: Build G2 Danner\n\n23) patwillis: Sacrifice G2 Venus\nBuild Y1 Patwillis\nBuild Y2 Patwillis\n\n24) Danner: Sacrifice G2 Danner\nBuild G2 Sun\nBuild Y2 Danner\n\n25) patwillis: Discover Y1 Patwillis G3 Greenland\n\n26) Danner: Discover Y1 Danner B3 Cube\n\n27) patwillis: Build R1 Patwillis\n\n28) Danner: Sacrifice G2 Sun\nBuild Y2 Danner\nBuild Y3 Cube\n\n29) patwillis: Build G2 Venus\n\n30) Danner: Move R1 Danner Sun\n\n31) patwillis: Move R1 Patwillis Greenland\n\n32) Danner: Build R2 Sun\n\n33) patwillis: Build R2 Greenland\n\n34) Danner: Discover R1 Sun G2 Trickster\n\n35) patwillis: Move G2 Venus Danner\n\n36) Danner: Attack G2N Danner\n\tDanner: uhh, I was not watchful\n\n37) patwillis: Sacrifice Y2 Patwillis\nMove G1 Venus Danner\nMove G1 Venus Danner\nCatastrophe Danner Green\n\n38) Danner: Move Y3 Cube Trickster\n\n39) patwillis: Build Y2 Patwillis\n\n40) Danner: Sacrifice Y1 Cube\nMove G3 Sun Danner\n\n41) patwillis: Discover R1 Greenland G2 Fred\n\n42) Danner: Trade Y2 G2 Danner\n\n43) patwillis: Build R2 Fred\n\n44) Danner: Sacrifice G2 Danner\nBuild R3 Sun\nBuild R3 Trickster\n\n45) patwillis: Trade R3 G3 Patwillis\n\n46) Danner: Move R3 Trickster Greenland\n\n47) patwillis: Build R3 Greenland\n\n48) Danner: Attack R3N Greenland\n\n49) patwillis: Sacrifice Y1 Greenland\nMove R1 Fred Greenland\nCatastrophe Greenland Red\n\n50) Danner: Move R3 Sun Fred\n\n51) patwillis: Sacrifice Y1 Patwillis\nDiscover R2 Fred Y3 Yellonia\n\n52) Danner: Build R1 Trickster\n\n53) patwillis: Build G1 Patwillis\n\n54) Danner: Sacrifice Y3 Trickster\nMove R3 Fred Yellonia\nMove G3 Danner Yellonia\nMove G3 Yellonia Patwillis\nCatastrophe Patwillis G\n\n\tDanner: Thx the game.\n\nHomeworlds Online (SDG# 11194)\nStarted: 2008.6.25, Ended: 2008.6.26\nParticipants: whippingboy (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11204)\nVariants: "Hard time"\nStarted: 2008.6.25, Ended: 2008.6.26\nParticipants: whippingboy (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 11202)\nStarted: 2008.6.26, Ended: 2009.12.9\nParticipants: jdcc789 (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n\tDanner: Hi, good luck!\n\nHomeworlds Online (SDG# 11214)\nVariants: "Hard time"\nStarted: 2008.6.26, Ended: 2008.8.7\nParticipants: Jesse (S), MadWuher (N)\nWinner: Jesse\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) Jesse: Homeworld Y3 B1 G3\n\tJesse: Hello, and have a good game.\n\n3) MadWuher: Build G1 Madwuher\n\tMadWuher: Good luck to you too.\r\nPlay this much? This (I think) is my 6th game. Still learning the ropes.\n\n4) Jesse: Build G1 Jesse\n\n5) MadWuher: Trade G1 B1 Madwuher\n\n6) Jesse: Trade G1 B1 Jesse\n\n7) MadWuher: Build B2 Madwuher\n\tJesse: I have played quite a lot. If you have any questions, I'm happy to help.\n\n8) Jesse: Build B2 Jesse\n\tMadWuher: Feel free to point out my mistakes, so I can learn from them.\n\n9) MadWuher: Trade B2 Y2 Madwuher\n\n10) Jesse: Trade B1 R1 Jesse\n\n11) MadWuher: Trade B1 R1 Madwuher\n\n12) Jesse: Build R2 Jesse\n\tJesse: It's good to get a red as soon as possible after your opponent does, but you could have afforded a turn or two delay, since I can't reach you, and you have red in your system markers for defense. What you've done isn't necessarily bad, but now it will cost you an extra turn to get back into the blue economy.\n\n13) MadWuher: Build R2 Madwuher\n\n14) Jesse: Discover R2 Jesse G2 Papawaio\n\n15) MadWuher: Discover R2 Madwuher G3 Edora\n\n16) Jesse: Move B2 Jesse Papawaio\n\n17) MadWuher: Trade R1 B1 Madwuher\n\n18) Jesse: Build R1 Papawaio\n\n\n19) MadWuher: Move B1 Madwuher Edora\n\n20) Jesse: Trade R1 Y1 Papawaio\n\n21) MadWuher: Build Y1 Madwuher\n\n22) Jesse: Build Y1 Papawaio\n\n23) MadWuher: Build Y2 Madwuher\n\n24) Jesse: Discover Y1 Papawaio G1 Ulkesh\n\n25) MadWuher: Move Y2 Madwuher Edora\n\n26) Jesse: Build Y2 Ulkesh\n\n27) MadWuher: Build Y3 Edora\n\n28) Jesse: Build Y3 Papawaio\n\n29) MadWuher: Build G1 Madwuher\n\n30) Jesse: Build G1 Jesse\n\n31) MadWuher: Discover G1 Madwuher B3 Blarney\n\n32) Jesse: Discover G1 Jesse B2 Twiki\n\n33) MadWuher: Build G2 Madwuher\n\n34) Jesse: Build G2 Jesse\n\n35) MadWuher: Discover Y2 Edora R2 Amber\n\n36) Jesse: Sacrifice G3 Jesse\nBuild B1 Papawaio\nBuild B3 Papawaio\nBuild G3 Jesse\n\n37) MadWuher: Move B1 Edora Papawaio\nCatastrophe Papawaio Blue\n\n38) Jesse: Sacrifice G3 Jesse\nBuild R1 Papawaio\nBuild R3 Jesse\nBuild G3 Jesse\n\n39) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R3 Edora\nPass\n\n40) Jesse: Sacrifice Y2 Ulkesh\nMove R1 Papawaio Edora\nMove R2 Papawaio Edora\nCatastrophe Edora R\n\n41) MadWuher: Build Y2 Edora\n\n42) Jesse: Move R3 Jesse Papawaio\n\n43) MadWuher: Trade Y1 R1 Madwuher\n\n44) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R2 Papawaio\nBuild Y1 Ulkesh\n\n45) MadWuher: Move R1 Madwuher Blarney\n\n46) Jesse: Move R2 Papawaio Blarney\n\n47) MadWuher: Sacrifice Y2 Edora\nMove G1 Blarney Amber\nMove R1 Blarney Twiki\n\n48) Jesse: Sacrifice R2 Blarney\nAttack R1 Twiki\nPass\n\n49) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Amber\nBuild Y2 Edora\n\n50) Jesse: Discover G2 Jesse B2 Gurgi\n\n51) MadWuher: Move Y3 Edora Madwuher\n\n52) Jesse: Move Y1 Ulkesh Twiki\n\n53) MadWuher: Trade Y2 R2 Madwuher\n\n54) Jesse: Build Y2 Twiki\n\n55) MadWuher: Move R2 Madwuher Edora\n\n56) Jesse: Move R3 Papawaio Edora\n\n57) MadWuher: Sacrifice G2 Amber\nBuild R2 Edora\nBuild G2 Madwuher\n\n58) Jesse: Sacrifice G3 Jesse\nBuild G3 Twiki\nBuild R3 Jesse\nBuild R3 Edora\nCatastrophe Edora R\n\n59) MadWuher: Trade G2 R2 Madwuher\n\n60) Jesse: Build G2 Gurgi\n\n61) MadWuher: Move R2 Madwuher Edora\n\n62) Jesse: Move R1 Jesse Papawaio\n\n\n63) MadWuher: Sacrifice G3 Madwuher\nBuild R2 Edora\nBuild G3 Amber\nPass\n\n64) Jesse: Sacrifice G3 Twiki\nBuild G3 Twiki\nBuild R3 Twiki\nBuild R3 Papawaio\n\n65) MadWuher: Pass\n\n66) Jesse: Sacrifice Y3 Papawaio\nDiscover G3 Twiki Y3 Orochi\nMove R1 Twiki Edora\nMove R1 Papawaio Edora\nCatastrophe Edora R\n\tMadWuher: I think I gave up many turns ago..... Now I'm just playing to see how diabolically ruthless you can be in the end.\n\n67) MadWuher: Move Y2 Edora Madwuher\n\tJesse: You've certainly been in a tight spot, and it only gets tighter as I squeeze to extend my advantage. I can't point to any particular mistake you've made along the way. It's just been a gradual slide.\n\n68) Jesse: Sacrifice G3 Orochi\nBuild G3 Twiki\nBuild Y3 Papawaio\nBuild R1 Twiki\n\tMadWuher: I love the way you denied me a Y3 by moving your green into position. Very nice move. Where did you learn that one from? (Or, are there any archived battles where might I find other examples of you pulling this move or similar)\n\n69) MadWuher: Trade Y3 G3 Madwuher\n\tJesse: This is something called the Super Factory. I think Andy Looney was the first to discover it. The other half of the maneuver goes like this...\n\n70) Jesse: Sacrifice G3 Twiki\nBuild G3 Twiki\nBuild Y3 Ulkesh\nBuild R1 Papawaio\n\tJesse: As for archived games, you might look at the games histories of the top rated players here, and look at some of the games between them.\n\tMadWuher: How do you find a list of the top rated players?\n\n71) MadWuher: Sacrifice G3 Amber\nBuild G3 Madwuher\nPass\nPass\n\n72) Jesse: Sacrifice Y3 Papawaio\nDiscover G3 Twiki Y3 Vash\nDiscover R3 Papawaio B3 Spike\nDiscover R3 Twiki B3 Tetsuo\n\tJesse: Click the "Players" link at the top of the page. Select Homeworlds in the list of games, and click "View Game Ratings". Click the Homeworlds tab at the top of the player list to sort by Homeworlds rating. Viola!\n\tMadWuher: Thanks.... I kept looking under leaderboard and games tabs. Thought the players tab would just list the names of all the registered users. D'oh!!!\n\n73) MadWuher: Pass\n\n74) Jesse: Sacrifice Y2 Twiki\nMove G3 Vash Madwuher\nMove R3 Spike Madwuher\n\n75) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y2 Madwuher\nBuild Y3 Madwuher\n\n76) Jesse: Sacrifice R3 Tetsuo\nAttack Y3 Madwuher\nAttack G3 Madwuher\nAttack G3 Madwuher\n\tJesse: Party at your place!\n\n77) MadWuher: Sacrifice Y2 Amber\nDiscover G1 Amber B3 Noboomyet\nMove G1 Noboomyet Madwuher\n\n78) Jesse: Trade G3 B3 Madwuher\n\tMadWuher: OK... Is it possible for us to get 4 of each colour in to the homeworld and do a catastrophe with all four colours at once???? \n\n79) MadWuher: Build G3 Madwuher\n\tMadWuher: Let's see how the system handles it. =)\n\tJesse: I suspect it handles it just as through four catastrophes happen in sequence. We can try it, though.\n\n80) Jesse: Attack G3 Madwuher\n\n81) MadWuher: Build Y2 Madwuher\n\n82) Jesse: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild B1 Madwuher\nBuild B1 Madwuher\n\tJesse: Just as a matter of principle, I can't let you keep the large. ;) Now if you build the y2, I can build a couple of blues and blow it all away.\n\n83) MadWuher: Pass\n\n84) Jesse: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R2 Madwuher\nBuild R2 Madwuher\nCatastrophe Madwuher R\nCatastrophe Madwuher B\nCatastrophe Madwuher Y\nCatastrophe Madwuher G\n\tJesse: Oh, right. The reds...\n\n\tJesse: Interesting. I thought possibly it would choke after the second marker was eliminated, complaining that the system no longer existed. But apparently not.\n\tMadWuher: Yes. I thought it might act strangely, but I guess not.\n\nHomeworlds Online (SDG# 11232)\nStarted: 2008.6.28, Ended: 2009.12.9\nParticipants: syluxtrace (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n\tDanner: Hi, good luck!\n\nHomeworlds Online (SDG# 11236)\nVariants: "Hard time"\nStarted: 2008.6.28, Ended: 2008.7.1\nParticipants: syluxtrace (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n\tMadWuher: Hi there syluxtrace. Welcome to the game.\r\n\n\nHomeworlds Online (SDG# 11242)\nStarted: 2008.6.28, Ended: 2008.7.18\nParticipants: Danner (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) Danner: Build G1 Danner\n\tMadWuher: And so, we meet again......\n\n5) MadWuher: Trade G1 R1 Madwuher\n\tDanner: And not for the last time :)\n\n6) Danner: Trade G3 R3 Danner\n\n7) MadWuher: Build R2 Madwuher\n\n8) Danner: Build R2 Danner\n\n9) MadWuher: Trade R2 Y2 Madwuher\n\n10) Danner: Trade R2 Y2 Danner\n\n11) MadWuher: Build R2 Madwuher\n\n12) Danner: Build R2 Danner\n\n13) MadWuher: Discover R2 Madwuher B2 Abydos\n\n14) Danner: Discover R2 Danner Y3 Dakara\n\tMadWuher: A planet once under the rule of Ra. The first planet modern Tau'ri travelled to via Stargate, it was liberated by Jack O'Neill's company and is the home of Skaara and Sha're (AKA Sha'uri from the original movie). From Stargate and "Children of the Gods". Destroyed by Anubis using the Eye of Ra at the end of Season 6.\n\n15) MadWuher: Build Y1 Madwuher\n\tDanner: Home of the ancient super-weapon, that destroyed all replicators in the Milky way :( (it is my favourite "race")\n\tDanner: Here it's 0:05 AM, I go to bed :) bye\n\n16) Danner: Build Y1 Danner\n\tMadWuher: Ciao for now....\n\n17) MadWuher: Discover R1 Madwuher G2 Chulak\n\n18) Danner: Sacrifice G1 Danner\nBuild R2 Dakara\n\tMadWuher: A homeworld of the Jaffa and the name of the only city on the planet. Was a source of soldiers and slaves to Apophis until Teal'c rebelled. After the defeat of the Goa'uld, Chulak became a major stronghold for the Free Jaffa Nation. But after their victory at the Battle of P3Y-229, the Ori forces moved on to Chulak, where they took control after a ferocious battle\n\tDanner: That battle is in the tenth season, isn't it?\n\n19) MadWuher: Sacrifice G3 Madwuher\nBuild R3 Chulak\nBuild R3 Abydos\nBuild Y1 Madwuher\n\tDanner: You play very well!\n\n20) Danner: Sacrifice Y2 Danner\nMove R2 Dakara Abydos\nMove R2 Dakara Abydos\nCatastrophe Abydos R\n\tMadWuher: Carp..... sorry for the spoiler. I'm pulling the information off a wiki.\n\n21) MadWuher: Sacrifice Y1 Madwuher\nMove R3 Chulak Madwuher\n\tDanner: No problem.\n\n22) Danner: Trade R3 G3 Danner\n\n23) MadWuher: Build R2 Chulak\n\n24) Danner: Build Y1 Danner\n\n25) MadWuher: Trade Y1 G1 Madwuher\n\n26) Danner: Discover Y1 Danner G3 Tollana\n\n27) MadWuher: Build R2 Madwuher\n\n28) Danner: Build G1 Danner\n\tDanner: The new homeworld for the Tollan people. The planet was originally settled by ships, and had no Stargate. The Nox helped the Tollan to construct a new gate for their new home.\r\nThe species' original homeworld, Tollan, was destroyed after the inhabitants of the neighboring world of Serita destroyed themselves with advanced technology given them by the Tollan.\n\n29) MadWuher: Discover R2 Madwuher G2 Tartarus\n\n30) Danner: Build Y1 Danner\n\n31) MadWuher: Build Y2 Madwuher\n\tMadWuher: Tartarus - Homeworld of the Kull Warriors.\n\n32) Danner: Build Y2 Tollana\n\n33) MadWuher: Move Y2 Madwuher Tartarus\n\n34) Danner: Sacrifice G3 Danner\nBuild Y3 Tollana\nBuild Y3 Danner\nBuild G1 Danner\n\n35) MadWuher: Build Y3 Tartarus\n\n36) Danner: Discover Y3 Tollana B2 Earth\n\n37) MadWuher: Build G2 Madwuher\n\n38) Danner: Build G3 Danner\n\tDanner: Earth - Homeworld of the Tau'ri\n\n39) MadWuher: Trade G2 B2 Madwuher\n\n40) Danner: Discover Y3 Danner G3 Abydos\n\n41) MadWuher: Sacrifice Y2 Madwuher\nMove R2 Chulak Tollana\nMove B2 Madwuher Chulak\n\n42) Danner: Discover Y2 Tollana B1 Dakara\n\tDanner: Abydos - see below :)\n\n43) MadWuher: Build R2 Chulak\n\n44) Danner: Move G1 Danner Abydos\n\n45) MadWuher: Attack Y1 Tollana\n\n46) Danner: Trade Y3 R3 Earth\n\n47) MadWuher: Build R3 Tollana\n\n48) Danner: Build G2 Danner\n\n49) MadWuher: Sacrifice Y3 Tartarus\nMove G1 Madwuher Chulak\nMove G1 Chulak Abydos\nMove G1 Abydos Danner\nCatastrophe Danner G\n\n50) Danner: Sacrifice Y1 Danner\nMove Y3 Abydos Danner\n\n51) MadWuher: Sacrifice B2 Chulak\nTrade R3 Y3 Tollana\nTrade R3 G3 Madwuher\n\n52) Danner: Sacrifice G1 Abydos\nBuild R3 Earth\n\n53) MadWuher: Sacrifice Y2 Tartarus\nMove Y3 Tollana Danner\nMove Y1 Tollana Danner\nCatastrophe Danner Y\n\n\tMadWuher: Booooooom. Wish it had come from dakara though.\n\tDanner: :D\r\nCongrats!\n\nHomeworlds Online (SDG# 11224)\nStarted: 2008.6.29, Ended: 2008.10.3\nParticipants: MadWuher (S), MikeYarrum (N)\nWinner: MadWuher\n\n\nHomeworlds Online (SDG# 11247)\nStarted: 2008.6.29, Ended: 2008.7.25\nParticipants: Danner (S), MatrixFrog (N)\nWinner: Danner\n\n1) MatrixFrog: Homeworld B1 Y2 G3\n\n2) Danner: Homeworld R1 B2 G3\n\tDanner: homeworld R1 B2 G3\n\n3) MatrixFrog: Build G1 Matrixfrog\n\tDanner: oops, I made this mistake for the second time...\n\n4) Danner: Build G1 Danner\n\n5) MatrixFrog: Trade G1 R1 Matrixfrog\n\n6) Danner: Trade G1 R1 Danner\n\n7) MatrixFrog: Build R2 Matrixfrog\n\n8) Danner: Build R2 Danner\n\n9) MatrixFrog: Build G1 Matrixfrog\n\n10) Danner: Trade R1 Y1 Danner\n\n11) MatrixFrog: Build G1 Matrixfrog\n\n12) Danner: Build G1 Danner\n\n13) MatrixFrog: Trade G1 B1 Matrixfrog\n\n14) Danner: Trade G1 B1 Danner\n\n15) MatrixFrog: Trade G1 Y1 Matrixfrog\n\n16) Danner: Build B2 Danner\n\n17) MatrixFrog: Build G1 Matrixfrog\n\n18) Danner: Trade B2 Y2 Danner\n\n19) MatrixFrog: Discover G1 Matrixfrog Y3 Sploosh\n\n20) Danner: Build B2 Danner\n\n21) MatrixFrog: Build G1 Matrixfrog\n\n22) Danner: Discover Y1 Danner G3 Earth\n\n23) MatrixFrog: Build G1 Sploosh\n\n24) Danner: Sacrifice G3 Danner\nBuild Y1 Danner\nBuild Y2 Earth\nBuild Y3 Danner\n\n25) MatrixFrog: Build Y3 Matrixfrog\n\n26) Danner: Move Y1 Earth Matrixfrog\nCatastrophe Matrixfrog Y\n\n27) MatrixFrog: Trade G1 Y1 Matrixfrog\n\n28) Danner: Move B1 Danner Earth\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) Danner: Build B2 Earth\n\n31) MatrixFrog: Sacrifice B1 Matrixfrog\nTrade G1 R1 Sploosh\n\n32) Danner: Build B1 Earth\n\n33) MatrixFrog: Move R1 Sploosh Danner\n\n34) Danner: Sacrifice Y3 Danner\nMove B1 Earth Matrixfrog\nMove B1 Earth Matrixfrog\nMove B2 Earth Matrixfrog\nCatastrophe Matrixfrog B\n\n\tDanner: Thx the game.\n\nHomeworlds Online (SDG# 11264)\nVariants: "Hard time"\nStarted: 2008.7.1, Ended: 2008.7.14\nParticipants: zingor (S), cordgrote (N)\nWinner: zingor\n\n1) cordgrote: Homeworld B3 R1 G3\n\n2) zingor: Homeworld Y1 B2 G3\n\n3) cordgrote: Build G1 Cordgrote\n\n4) zingor: Build G1 Zingor\n\n5) cordgrote: Trade G1 Y1 Cordgrote\n\n6) zingor: Build G1 Zingor\n\n7) cordgrote: Build Y1 Cordgrote\n\n8) zingor: Trade G1 R1 Zingor\n\n9) cordgrote: Build Y2 Cordgrote\n\n10) zingor: Build R1 Zingor\n\n11) cordgrote: Discover Y1 Cordgrote G2 Genevive\n\n12) zingor: Build G1 Zingor\n\n13) cordgrote: Trade Y1 G1 Cordgrote\n\tcordgrote: I'm out for tonight, see you tomorrow.\n\n14) zingor: Trade G1 Y1 Zingor\n\tzingor: Ok, thanks. I made that bad choice a couple moves ago and I'm still... sleep will help.\n\n15) cordgrote: Build Y2 Genevive\n\n16) zingor: Build Y2 Zingor\n\n17) cordgrote: Discover Y1 Genevive Y3 Yarrow\n\n18) zingor: Discover Y1 Zingor G3 Guava\n\n19) cordgrote: Build Y3 Genevive\n\n20) zingor: Build Y3 Guava\n\n21) cordgrote: Build G1 Cordgrote\n\n22) zingor: Move Y1 Guava Genevive\n\n23) cordgrote: Trade Y2 R2 Cordgrote\n\n24) zingor: Build Y2 Guava\n\n25) cordgrote: Trade G1 B1 Cordgrote\n\n26) zingor: Trade G1 B1 Zingor\n\n27) cordgrote: Move Y2 Genevive Cordgrote\n\n28) zingor: Build G1 Zingor\n\n\nHomeworlds Online (SDG# 11246)\nStarted: 2008.7.1, Ended: 2008.7.15\nParticipants: MadWuher (S), MatrixFrog (N)\nWinner: MadWuher\n\n1) MatrixFrog: Homeworld R2 G1 B3\n\n2) MadWuher: Homeworld G1 B3 G3 *\n\n3) MatrixFrog: Build B1 Matrixfrog\n\n4) MadWuher: Build G1 Madwuher\n\tMadWuher: Hello. Sorry about the "Undo". Just thought I'd try this start out. Looking forward to seeing how it all pans out.\n\n5) MatrixFrog: Build B1 Matrixfrog\n\n6) MadWuher: Trade G3 Y3 Madwuher\n\n7) MatrixFrog: Trade B3 Y3 Matrixfrog\n\n8) MadWuher: Build G2 Madwuher\n\n9) MatrixFrog: Build Y1 Matrixfrog\n\n10) MadWuher: Discover G2 Madwuher B2 Ambleside\n\n11) MatrixFrog: Trade Y3 G3 Matrixfrog\n\n12) MadWuher: Build G2 Madwuher\n\n13) MatrixFrog: Build Y1 Matrixfrog\n\n14) MadWuher: Trade G2 Y2 Madwuher\n\n15) MatrixFrog: Build Y1 Matrixfrog\n\n16) MadWuher: Build G2 Ambleside\n\n17) MatrixFrog: Discover Y1 Matrixfrog G3 Ping\n\n18) MadWuher: Build G2 Madwuher\n\n19) MatrixFrog: Build Y2 Ping\n\n20) MadWuher: Build G3 Ambleside\n\n21) MatrixFrog: Move Y2 Ping Ambleside\n\n22) MadWuher: Trade G2 R2 Ambleside\n\n23) MatrixFrog: Build Y2 Ping\n\n24) MadWuher: Attack Y2 Ambleside\n\n25) MatrixFrog: Discover Y1 Ping G2 Pong\n\n26) MadWuher: Build Y3 Ambleside\n\n27) MatrixFrog: Build Y3 Pong\n\n28) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Ambleside\nBuild R1 Ambleside\n\n29) MatrixFrog: Trade B1 R1 Matrixfrog\n\n30) MadWuher: Sacrifice Y2 Madwuher\nDiscover G2 Ambleside B3 Sunnybrook\nMove Y2 Ambleside Sunnybrook\n\n31) MatrixFrog: Sacrifice B1 Matrixfrog\nTrade Y2 R2 Ping\n\n32) MadWuher: Move R1 Ambleside Sunnybrook\n\n33) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild R1 Ping\nBuild R3 Ping\nBuild Y2 Pong\n\n34) MadWuher: Sacrifice G3 Ambleside\nBuild G3 Ambleside\nBuild R3 Sunnybrook\nBuild R3 Ambleside\n\n35) MatrixFrog: Discover Y3 Pong B3 Pang\n\n36) MadWuher: Sacrifice Y3 Ambleside\nMove R2 Ambleside Sunnybrook\nMove R2 Sunnybrook Matrixfrog\nMove R1 Sunnybrook Matrixfrog\nCatastrophe Matrixfrog Red\n\n37) MatrixFrog: Sacrifice Y3 Pang\nMove Y1 Pong Madwuher\nMove Y2 Pong Madwuher\nMove R3 Ping Matrixfrog\n\n38) MadWuher: Sacrifice Y3 Madwuher\nMove G3 Ambleside Matrixfrog\nMove G2 Ambleside Matrixfrog\nMove G2 Sunnybrook Matrixfrog\nCatastrophe Matrixfrog G\n\n\tMadWuher: Good game, want to play another?\n\tMatrixFrog: Sure, if you want.\n\nHomeworlds Online (SDG# 11240)\nStarted: 2008.7.3, Ended: 2009.12.9\nParticipants: Danner (S), kreiger (N)\nWinner: Danner\n\n1) kreiger: Homeworld B3 Y2 G3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) kreiger: Build G1 Kreiger\n\n4) Danner: Build G1 Danner\n\n5) kreiger: Discover G1 Kreiger Y1 Mycon\n\n6) Danner: Trade G1 Y1 Danner\n\n\nHomeworlds Online (SDG# 11225)\nVariants: "Hard time"\nStarted: 2008.7.3, Ended: 2008.7.7\nParticipants: kreiger (S), TwoShort (N)\nWinner: kreiger\n\n\tTwoShort: Hey - I wasn't actually able to get to the site at all before Hard Time triggered... Looks like it's back up now, so I'll be happy to play if you start another one.\n\nHomeworlds Online (SDG# 11241)\nVariants: "Unrated, Hard time"\nStarted: 2008.7.8, Ended: 2008.8.13\nParticipants: MadWuher (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B3 G3\n\n2) MadWuher: Homeworld R2 B1 G3\n\tMadWuher: Howdy....\n\n3) mneme: Build G1 Mneme\n\tmneme: Heya. Mirror start?\n\n4) MadWuher: Build G1 Madwuher\n\tMadWuher: Looks like it.....\n\n5) mneme: Trade G1 Y1 Mneme\n\tMadWuher: So far that is .....\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) mneme: Build G1 Mneme\n\n8) MadWuher: Build G1 Madwuher\n\n9) mneme: Trade G1 B1 Mneme\n\n10) MadWuher: Trade G1 B1 Madwuher\n\n11) mneme: Build B2 Mneme\n\n12) MadWuher: Build B2 Madwuher\n\n13) mneme: Discover B2 Mneme Y2 Ector\n\n14) MadWuher: Discover B1 Madwuher G3 Edora\n\tmneme: there's a problem with the "strategy" of repeating every move your opponent makes.\n\n15) mneme: Sacrifice G3 Mneme\nBuild B2 Ector\nBuild B3 Mneme\nBuild Y1 Mneme\n\n16) MadWuher: Build B3 Edora\n\n17) mneme: Trade B2 G2 Ector\n\tmneme: *sigh* that was dumb of me. Ah well.\n\n18) MadWuher: Build Y2 Madwuher\n\n19) mneme: Trade B3 G3 Mneme\n\n20) MadWuher: Move Y1 Madwuher Edora\n\n21) mneme: Discover Y1 Mneme B2 Friendly\n\n22) MadWuher: Build B3 Madwuher\n\n23) mneme: Sacrifice G3 Mneme\nBuild Y2 Mneme\nBuild Y3 Mneme\nBuild Y3 Friendly\n\n24) MadWuher: Sacrifice B2 Madwuher\nTrade B1 R1 Edora\nTrade B3 Y3 Madwuher\n\n25) mneme: Trade Y1 R1 Mneme\n\n26) MadWuher: Build R2 Edora\n\n27) mneme: Discover B1 Mneme B2 Bomber\n\n28) MadWuher: Move R2 Edora Bomber\n\n29) mneme: Sacrifice G2 Ector\nBuild B1 Bomber\nBuild B3 Ector\n\n30) MadWuher: Attack B1 Bomber\n\n31) mneme: Trade Y1 G1 Friendly\n\n32) MadWuher: Attack B1 Bomber\n\n33) mneme: Sacrifice Y2 Mneme\nMove B2 Ector Edora\nMove B2 Edora Bomber\nCatastrophe Bomber B\n\n34) MadWuher: Build R2 Edora\n\n35) mneme: Move R1 Mneme Friendly\n\n36) MadWuher: Discover R2 Edora Y2 Bologna\n\n37) mneme: Build G1 Friendly\n\n38) MadWuher: Build G1 Madwuher\n\n39) mneme: Move G1 Friendly Mneme\n\n40) MadWuher: Sacrifice Y2 Madwuher\nMove G1 Madwuher Edora\nMove G1 Edora Bologna\n\n41) mneme: Build G2 Friendly\n\n42) MadWuher: Build G2 Madwuher\n\n43) mneme: Discover G2 Friendly G3 Hector\n\n44) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Bologna\nBuild G3 Madwuher\nBuild R2 Edora\n\n45) mneme: Sacrifice G2 Hector\nBuild G2 Mneme\nBuild G3 Friendly\n\n46) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R3 Bologna\nBuild R3 Bologna\n\n47) mneme: Sacrifice G3 Friendly\nBuild G3 Friendly\nBuild R3 Friendly\nBuild B1 Ector\n\n48) MadWuher: Trade G2 Y2 Madwuher\n\n49) mneme: Sacrifice Y3 Friendly\nMove R1 Friendly Edora\nMove R1 Edora Bologna\nMove G2 Mneme Ector\nCatastrophe Bologna R\n\n50) MadWuher: Build G2 Madwuher\n\n51) mneme: Trade G3 Y3 Friendly\n\n52) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild G3 Bologna\nBuild B1 Edora\n\n53) mneme: Move G1 Mneme Bologna\nCatastrophe Bologna G\n\n54) MadWuher: Discover B1 Edora G2 Bologna\n\n55) mneme: Build G1 Friendly\n\n56) MadWuher: Build B2 Bologna\n\n57) mneme: Sacrifice Y3 Friendly\nMove G1 Friendly Edora\nMove G1 Friendly Edora\nMove G2 Ector Edora\nCatastrophe Edora G\n\n58) MadWuher: Build B2 Bologna\n\n59) mneme: Trade B3 G3 Ector\n\n60) MadWuher: Sacrifice B1 Bologna\nTrade B2 Y2 Bologna\n\n61) mneme: Build B1 Ector\n\n62) MadWuher: Sacrifice G2 Madwuher\nBuild B2 Bologna\nBuild B3 Bologna\n\n63) mneme: Discover B1 Ector G3 Artis\n\n64) MadWuher: Sacrifice B2 Bologna\nTrade Y2 G2 Madwuher\nTrade B3 R3 Bologna\n\n65) mneme: Sacrifice G3 Ector\nBuild B2 Ector\nBuild B3 Ector\nBuild B3 Artis\n\n66) MadWuher: Sacrifice Y2 Bologna\nMove B2 Bologna Artis\nMove B2 Artis Ector\nCatastrophe Ector B\n\n67) mneme: Trade B3 Y3 Artis\n\n68) MadWuher: Build G1 Madwuher\n\n69) mneme: Build B1 Artis\n\n70) MadWuher: Trade G2 B2 Madwuher\n\tmneme: sweet!\n\n71) mneme: Move B1 Artis Madwuher\n\n72) MadWuher: Trade B2 R2 Madwuher\n\n73) mneme: Attack G1 Madwuher\n\n74) MadWuher: Sacrifice R2 Madwuher\nAttack B1 Madwuher\nAttack G1 Madwuher\n\n75) mneme: Build B2 Artis\n\n76) MadWuher: Discover B1 Madwuher G3 Caviar\n\n77) mneme: Build Y1 Artis\n\n78) MadWuher: Build B2 Caviar\n\n79) mneme: Sacrifice Y1 Artis\nMove R3 Friendly Caviar\n\n80) MadWuher: Sacrifice Y3 Madwuher\nMove B2 Caviar Bologna\nDiscover B1 Caviar G2 Edora\nPass\n\n81) mneme: Move B2 Artis Edora\n\n82) MadWuher: Build R1 Bologna\n\n83) mneme: Build R1 Caviar\n\n84) MadWuher: Sacrifice B1 Edora\nTrade R1 Y1 Bologna\n\n85) mneme: Build B1 Artis\n\n86) MadWuher: Build G1 Madwuher\n\n87) mneme: Trade B1 R1 Artis\n\n88) MadWuher: Trade G1 Y1 Madwuher\n\n89) mneme: Build R2 Artis\n\n90) MadWuher: Build B1 Bologna\n\n91) mneme: Trade R2 G2 Artis\n\n92) MadWuher: T B1 G1 Bologna\n\n93) mneme: Sacrifice G2 Artis\nBuild Y1 Mneme\nBuild B1 Artis\n\n94) MadWuher: B Y2 Madwuher\n\n95) mneme: Sacrifice Y3 Artis\nMove R1 Artis Madwuher\nMove R1 Caviar Madwuher\nMove R3 Caviar Madwuher\nCatastrophe Madwuher R\n\n96) MadWuher: Move Y1 Bologna Mneme\n\n97) mneme: Sacrifice Y3 Mneme\nMove B1 Artis Madwuher\nMove B1 Artis Madwuher\nMove B2 Edora Madwuher\nCatastrophe Madwuher B\n\n\tmneme: *nod* I'm not even sure you had a sequence that would avoid inevitable doom once I grew the r2--the big turning point was, I think, when I got ahead on larges, and you didn't find a way to capitalize on my limited growth and smaller number of pieces. Good game!\n\nHomeworlds Online (SDG# 11244)\nStarted: 2008.7.8, Ended: 2008.8.26\nParticipants: MikeYarrum (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 G3 B3\n\n\nHomeworlds Online (SDG# 11275)\nVariants: "Hard time"\nStarted: 2008.7.8, Ended: 2008.9.5\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) mneme: Homeworld G1 R2 B3\n\n3) TwoShort: Build G1 Twoshort\n\n4) mneme: Build B1 Mneme\n\n5) TwoShort: Build G1 Twoshort\n\n6) mneme: Build B1 Mneme\n\tTwoShort: I'm quite curious if you have a master plan with the blue-ship opening or if you're just trying to throw me off by being different.\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\tmneme: TS: me too! Really, within the GBR range, I think there are valid strategies for G and B. I'm actually curious for R -- since the color of your lead ship has =more= to do with what you can expand/try to freeze your opponent out of, I could see a game plan -- though of course, for G and B, it's very useful to be able to sac for powers. I got Andy with the blue freeze engine at Origins, btw.\r\n\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) TwoShort: Build G1 Twoshort\n\n10) mneme: Build B1 Mneme\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n12) mneme: Discover B1 Mneme G3 Hastor\n\n13) TwoShort: Build G2 Twoshort\n\n14) mneme: Build B2 Hastor\n\n15) TwoShort: Discover G1 Twoshort G2 Greensville\n\n16) mneme: Discover B1 Mneme G3 Chiles\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild Y1 Twoshort\nBuild G3 Twoshort\n\n18) mneme: Build B2 Chiles\n\n19) TwoShort: Trade G2 R2 Bluonia\n\n20) mneme: Trade B2 R2 Hastor\n\n21) TwoShort: Trade G2 B2 Twoshort\n\n22) mneme: Build B3 Mneme\n\n23) TwoShort: Build G2 Twoshort\n\n24) mneme: Build B3 Hastor\n\n25) TwoShort: Discover B2 Twoshort Y2 Yellonia\n\n26) mneme: Trade B2 Y2 Chiles\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Twoshort\nBuild R1 Bluonia\n\n28) mneme: Trade B3 Y3 Hastor\n\n29) TwoShort: Move Y1 Twoshort Bluonia\n\n30) mneme: Build B2 Chiles\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Yellonia\nBuild Y1 Bluonia\nBuild G3 Twoshort\n\n32) mneme: Sacrifice Y2 Chiles\nMove B1 Chiles Yellonia\nMove B1 Hastor Yellonia\nCatastrophe Yellonia B\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y2 Twoshort\nBuild G3 Twoshort\n\n34) mneme: Discover B3 Mneme Y3 Yenta\n\n35) TwoShort: Discover R1 Bluonia B3 Bluestar\n\n36) mneme: Move B3 Yenta Bluonia\n\n37) TwoShort: Sacrifice Y1 Bluonia\nDiscover R2 Bluonia Y3 Yolonda\n\n38) mneme: Sacrifice R2 Hastor\nAttack G2 Bluonia\nAttack G1 Bluonia\n\n39) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Greensville\nBuild R1 Bluestar\n\n40) mneme: Trade B3 R3 Bluonia\n\n41) TwoShort: Sacrifice Y2 Twoshort\nMove R1 Bluestar Mneme\nMove R1 Bluestar Mneme\n\n42) mneme: Attack Y1 Bluonia\n\n43) TwoShort: Sacrifice G2 Greensville\nBuild G2 Greensville\nBuild R2 Mneme\nCatastrophe Mneme Red\n\n44) mneme: Build Y1 Bluonia\n\n45) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Greensville Mneme\nDiscover G3 Twoshort Y2 Skinofmyteeth\n\tTwoShort: I'm about to leave on vacation for two weeks, and I'm not entirely sure how much internet access I'll have. Would you mind if we froze the clock for a bit?\n\tmneme: It's cool.\r\n\n\n46) mneme: Sacrifice Y3 Mneme\nMove R3 Bluonia Mneme\nMove G2 Bluonia Twoshort\nMove B1 Mneme Greensville\n\tTwoShort: I'm back, but yikes this is thorny. I've come up with about a dozen moves that look good but when I look closer they all lose.\n\tTwoShort: Got it.\n\n47) TwoShort: Move G3 Skinofmyteeth Twoshort\n\tmneme: mn... Yeah, I think that's it. :( \n\n48) mneme: Attack G1 Mneme\n\n49) TwoShort: Attack G2S Twoshort\n\tmneme: Alas, I think that was the only move that didn't lead to inevitable obvious doom. Still, might as well play it out. \n\n50) mneme: Sacrifice Y3 Hastor\nMove G1 Mneme Bluonia\nMove G1 Bluonia Twoshort\nMove G1 Bluonia Twoshort\nCatastrophe Twoshort G\n\tTwoShort: attack g2s twoshort\n\tTwoShort: oops\n\n51) TwoShort: Sacrifice G2 Greensville\nBuild Y2 Twoshort\nBuild R1 Yolonda\n\n52) mneme: Trade B2 Y2 Chiles\n\n53) TwoShort: Trade Y2 G2 Twoshort\n\n54) mneme: Build Y2 Chiles\n\n55) TwoShort: Build Y2 Twoshort\n\n56) mneme: Move Y2 Chiles Greensville\n\n57) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort G2 Grogar\nMove R2 Yolonda Greensville\n\n58) mneme: Sacrifice Y2 Chiles\nMove Y2 Greensville Mneme\nMove B1 Greensville Mneme\n\n59) TwoShort: Build Y2 Grogar\n\n60) mneme: Build Y2 Mneme\n\n61) TwoShort: Sacrifice Y1 Grogar\nMove R2 Greensville Twoshort\n\n62) mneme: Trade Y2 R2 Mneme\n\n63) TwoShort: Build G1 Twoshort\n\n64) mneme: Trade R3 Y3 Mneme\n\n65) TwoShort: Move Y2 Grogar Twoshort\n\n66) mneme: Trade Y1 G1 Bluonia\n\n67) TwoShort: Discover G2 Twoshort Y2 Yak\n\n68) mneme: Build G2 Bluonia\n\n69) TwoShort: Build G2 Yak\n\n70) mneme: Trade G1 Y1 Bluonia\n\n71) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Twoshort Yak\nMove G1 Yak Mneme\n\tmneme: you know, somewhere in here, I"m either going to win or make a horrible mistake.\n\n72) mneme: Attack G1 Mneme\n\tTwoShort: I expect one of us will win brilliantly or mess up horribly very soon. But I've been expecting that for a couple dozen moves now :)\n\n73) TwoShort: Move G2 Yak Mneme\n\n\nHomeworlds Online (SDG# 11287)\nStarted: 2008.7.11, Ended: 2008.7.11\nParticipants: smartmo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y1 B3 G3\n\tsmartmo: pass\n\tsmartmo: I have no idea what I am supposed to do now kevin !?? :D\n\tMadWuher: First step: Make a homeworld.\r\nThe command for creating one is at the top of this page. type "homeworld star1 star2 ship" where you replace ship and each star# with a color and size (ie R2 or Y3). I'll set mine up to show you. \n\n2) smartmo: Homeworld B1 Y2 G3\n\tMadWuher: I typed in "homeworld y1 b3 g3" to make my system. Its just like the game we played in the lab, only a play by post game, so it may take a bit longer for it to play out.\n\n3) MadWuher: Build G1 Madwuher\n\n4) smartmo: Build G1 Smartmo\n\tMadWuher: Now, you will want to start building ships and discovering new systems. Your I typed in "build g1 MadWuher" to build a green 1-pip in my system.\n\n5) MadWuher: Trade G1 R1 Madwuher\n\n6) smartmo: Build G1 Smartmo\n\tsmartmo: Please check your sfu email kevin !!! :) \n\n7) MadWuher: Build G1 Madwuher\n\n8) smartmo: Build G2 Smartmo\n\n9) MadWuher: Pass\nCatastrophe Smartmo G\n\n\nHomeworlds Online (SDG# 11300)\nStarted: 2008.7.12, Ended: 2008.7.31\nParticipants: MadWuher (S), smartmo (N)\nWinner: MadWuher\n\n1) smartmo: Homeworld B3 Y2 G3\n\n2) MadWuher: Homeworld R1 B3 G3\n\tsmartmo: Last game was so funny ... lool ... I wanted to take easy on you (you knew it riiight !??) looolll\r\nI remember you said the system gives us a hint if something like that is possible to happen !!!\n\n3) smartmo: Build G1 Smartmo\n\tMadWuher: Take a look at the wiki link and/or the rules link at the top of this game. Some hints are given by the system, but not all. =)\n\n4) MadWuher: Build G1 Madwuher\n\n5) smartmo: Trade G1 Y1 Smartmo\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) smartmo: Build G1 Smartmo\n\n8) MadWuher: Build G1 Madwuher\n\n9) smartmo: Discover G1 Smartmo G1 Matrix\n\n10) MadWuher: Build G2 Madwuher\n\n11) smartmo: Build G2 Smartmo\n\n12) MadWuher: Discover G2 Madwuher B2 Edora\n\n13) smartmo: Sacrifice G3 Smartmo\nBuild G2 Smartmo\nBuild G3 Smartmo\nBuild Y1 Smartmo\n\n14) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild G3 Edora\nBuild Y2 Madwuher\n\n15) smartmo: Discover G2 Smartmo R1 Eigenspace\n\n16) MadWuher: Build Y2 Madwuher\n\n17) smartmo: Sacrifice G2 Smartmo\nBuild G2 Smartmo\nBuild Y3 Smartmo\n\n18) MadWuher: Move Y2 Madwuher Edora\nCatastrophe Smartmo Y\n\n19) smartmo: Trade G2 Y2 Smartmo\n\n20) MadWuher: Trade G1 R1 Madwuher\n\n21) smartmo: Sacrifice G1 Matrix\nBuild Y1 Smartmo\n\n22) MadWuher: Sacrifice Y2 Edora\nMove G3 Edora Eigenspace\nMove G3 Eigenspace Smartmo\n\n23) smartmo: Trade Y2 R2 Smartmo\n\n24) MadWuher: Sacrifice R1 Madwuher\nAttack R2 Smartmo\n\n25) smartmo: Sacrifice G3 Smartmo\nBuild Y1 Smartmo\nBuild Y2 Smartmo\nBuild Y2 Smartmo\n\tsmartmo: with a green ship are u able to attack my red ship !??\n\n26) MadWuher: Build R1 Smartmo\nCatastrophe Smartmo Y\n\tMadWuher: In a manner of speaking..... yes\n\n\nHomeworlds Online (SDG# 11307)\nStarted: 2008.7.13, Ended: 2008.10.3\nParticipants: smartmo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y1 B3 G3\n\n2) smartmo: Homeworld R3 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) smartmo: Build G1 Smartmo\n\n5) MadWuher: Discover G1 Madwuher B2 Edora\n\n6) smartmo: Trade G1 Y1 Smartmo\n\n7) MadWuher: Build G1 Madwuher\n\n8) smartmo: Build G1 Smartmo\n\n9) MadWuher: Build G2 Edora\n\n10) smartmo: Discover G1 Smartmo B1 Alpha\n\n11) MadWuher: Trade G2 Y2 Edora\n\n12) smartmo: Build G2 Smartmo\n\n13) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\n\n14) smartmo: Sacrifice G3 Smartmo\nBuild G3 Smartmo\nBuild Y1 Smartmo\nBuild Y2 Smartmo\n\n15) MadWuher: Sacrifice G1 Madwuher\nBuild Y2 Edora\n\n16) smartmo: Move Y1 Smartmo Alpha\n\n17) MadWuher: Trade G2 R2 Madwuher\n\n18) smartmo: Build Y3 Alpha\n\n19) MadWuher: Discover Y2 Edora B1 Bologna\n\n\tMadWuher: Mo???\n\nHomeworlds Online (SDG# 11309)\nVariants: "No undo, Unrated"\nStarted: 2008.7.14, Ended: 2008.7.30\nParticipants: MadWuher (S), smartmo (N)\nWinner: MadWuher\n\n1) smartmo: Homeworld G3 Y3 G3 *\n\n2) MadWuher: Homeworld R1 B3 G3\n\n3) smartmo: Build G1 Smartmo\n\n4) MadWuher: Build G1 Madwuher\n\n5) smartmo: Discover G1 Smartmo Y2 Delta\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) smartmo: Build G1 Smartmo\n\n8) MadWuher: Build G1 Madwuher\n\n9) smartmo: Build G2 Delta\n\n10) MadWuher: Build G2 Madwuher\n\n11) smartmo: Move G1 Delta Madwuher\nCatastrophe Madwuher G\n\n12) MadWuher: Trade Y1 G1 Madwuher\n\n13) smartmo: Discover G1 Smartmo B1 Gamma\n\n14) MadWuher: Build G1 Madwuher\n\n\nHomeworlds Online (SDG# 11310)\nVariants: "No undo, Unrated"\nStarted: 2008.7.14, Ended: 2008.10.3\nParticipants: smartmo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y2 B3 G3\n\n2) smartmo: Homeworld G3 Y1 B3\n\n3) MadWuher: Build G1 Madwuher\n\n4) smartmo: Build B1 Smartmo\n\n5) MadWuher: Build G1 Madwuher\n\n6) smartmo: Build B1 Smartmo\n\n7) MadWuher: Discover G1 Madwuher B1 Bluetopia\n\n8) smartmo: Trade B1 Y1 Smartmo\n\n9) MadWuher: Build G1 Madwuher\n\n10) smartmo: Build B1 Smartmo\n\n11) MadWuher: Build G2 Bluetopia\n\n12) smartmo: Trade B3 G3 Smartmo\n\n13) MadWuher: Build G2 Bluetopia\n\n14) smartmo: Build B2 Smartmo\n\n15) MadWuher: Trade G2 Y2 Bluetopia\n\n16) smartmo: Discover B1 Smartmo B2 Alpha\n\n17) MadWuher: Trade G2 B2 Bluetopia\n\n\nHomeworlds Online (SDG# 11318)\nStarted: 2008.7.15, Ended: 2008.8.17\nParticipants: MatrixFrog (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) MatrixFrog: Homeworld B2 Y1 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) MadWuher: Trade G3 Y3 Madwuher\n\n6) MatrixFrog: Trade G1 B1 Matrixfrog\n\n7) MadWuher: Build G1 Madwuher\n\n8) MatrixFrog: Build G1 Matrixfrog\n\n9) MadWuher: Discover G1 Madwuher B2 Edora\n\n10) MatrixFrog: Build B1 Matrixfrog\n\n11) MadWuher: Build G2 Madwuher\n\n12) MatrixFrog: Trade G1 Y1 Matrixfrog\n\n13) MadWuher: Discover G1 Madwuher Y2 Bologna\n\n14) MatrixFrog: Build G1 Matrixfrog\n\n15) MadWuher: Build G2 Edora\n\n16) MatrixFrog: Trade B1 R1 Matrixfrog\n\n17) MadWuher: Trade G2 R2 Edora\n\n18) MatrixFrog: Discover G1 Matrixfrog Y3 Beep\n\n19) MadWuher: Build G2 Edora\n\n20) MatrixFrog: Discover G1 Beep B2 Beeep\n\n21) MadWuher: Trade G2 Y2 Edora\n\n22) MatrixFrog: Build G2 Matrixfrog\n\n23) MadWuher: Discover G1 Bologna Y3 Caviar\n\n24) MatrixFrog: Build G2 Beeep\n\n25) MadWuher: Build G3 Caviar\n\n26) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild R1 Matrixfrog\nBuild B1 Matrixfrog\n\n27) MadWuher: Sacrifice G3 Caviar\nBuild G2 Madwuher\nBuild G3 Edora\nBuild G3 Caviar\n\n28) MatrixFrog: Trade G1 Y1 Beeep\n\n29) MadWuher: Trade G1 B1 Edora\n\n30) MatrixFrog: Discover B1 Matrixfrog Y3 Boop\n\n31) MadWuher: Move B1 Edora Caviar\n\n32) MatrixFrog: Build G1 Beeep\n\n33) MadWuher: Sacrifice G3 Caviar\nBuild B3 Caviar\nBuild Y2 Edora\nBuild Y2 Madwuher\n\n34) MatrixFrog: Move G1 Beeep Madwuher\n\n35) MadWuher: Sacrifice B1 Caviar\nTrade G2 R2 Madwuher\n\n36) MatrixFrog: Sacrifice G2 Beeep\nBuild G1 Madwuher\nBuild G2 Madwuher\nCatastrophe Madwuher G\n\n37) MadWuher: Trade Y2 G2 Madwuher\n\n38) MatrixFrog: Build G1 Matrixfrog\n\n39) MadWuher: Build Y2 Madwuher\n\n40) MatrixFrog: Move G1 Matrixfrog Boop\n\n41) MadWuher: Sacrifice G2 Madwuher\nBuild B1 Caviar\nBuild B3 Caviar\n\n42) MatrixFrog: Move B1 Matrixfrog Caviar\nCatastrophe Caviar B\n\n43) MadWuher: Build R2 Edora\n\n44) MatrixFrog: Move R1 Matrixfrog Caviar\n\n45) MadWuher: Sacrifice R2 Edora\nAttack R1 Caviar\nPass\n\n46) MatrixFrog: Build G1 Matrixfrog\n\n47) MadWuher: Build G2 Caviar\n\n48) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild G2 Boop\nBuild B1 Boop\nBuild R2 Matrixfrog\n\n49) MadWuher: Sacrifice G3 Edora\nBuild R3 Edora\nBuild R3 Caviar\nBuild R3 Madwuher\n\n50) MatrixFrog: Move Y1 Beeep Madwuher\n\n51) MadWuher: Attack Y1 Madwuher\n\n52) MatrixFrog: Sacrifice R1 Matrixfrog\nPass\n\n53) MadWuher: Move R3 Caviar Matrixfrog\n\n\nHomeworlds Online (SDG# 11294)\nStarted: 2008.7.15, Ended: 2008.7.17\nParticipants: MadWuher (S), DJAnyReason (N)\nWinner: MadWuher\n\n1) DJAnyReason: Homeworld R2 B1 G3\n\n2) MadWuher: Homeworld B1 G3 B3 *\n\n3) DJAnyReason: Build G1 Djanyreason\n\tMadWuher: heya.....\n\n4) MadWuher: Build B1 Madwuher\n\n5) DJAnyReason: Trade G3 Y3 Djanyreason\n\n6) MadWuher: Trade B3 Y3 Madwuher\n\n7) DJAnyReason: Build G1 Djanyreason\n\n8) MadWuher: Build B2 Madwuher\n\n9) DJAnyReason: Discover G1 Djanyreason Y3 N1\n\n10) MadWuher: Discover B2 Madwuher Y2 Edora\n\n11) DJAnyReason: Build G1 Djanyreason\n\n12) MadWuher: Trade B2 G2 Edora\n\n13) DJAnyReason: Discover G1 Djanyreason B3 N2\n\n14) MadWuher: Build B2 Madwuher\n\n15) DJAnyReason: Build G2 Djanyreason\n\n16) MadWuher: Move B2 Madwuher Edora\n\n17) DJAnyReason: Discover G1 Djanyreason R3 N3\n\n18) MadWuher: Move B2 Edora N3\n\n19) DJAnyReason: Trade Y3 G3 Djanyreason\n\n20) MadWuher: Attack G1 N3\n\n21) DJAnyReason: Sacrifice G3 Djanyreason\nBuild G2 N1\nBuild G3 N2\nBuild G3 Djanyreason\n\n22) MadWuher: Sacrifice G2 Edora\nBuild G2 N3\nBuild Y1 Madwuher\n\n23) DJAnyReason: Trade G2 B2 Djanyreason\n\n24) MadWuher: Build B2 N3\n\n25) DJAnyReason: Sacrifice B2 Djanyreason\nTrade G1 R1 N1\nTrade G3 Y3 N2\n\n26) MadWuher: Build B2 Madwuher\n\n27) DJAnyReason: Discover R1 N1 G1 N4\n\n28) MadWuher: Build B3 N3\n\n29) DJAnyReason: Sacrifice G2 N1\nBuild R1 N4\nBuild R1 N4\n\n30) MadWuher: Sacrifice Y3 Madwuher\nMove B3 N3 Djanyreason\nMove B2 N3 Djanyreason\nMove G2 N3 Djanyreason\n\n31) DJAnyReason: Attack B3S Djanyreason\n\n32) MadWuher: Build G2 Djanyreason\n\n33) DJAnyReason: Sacrifice B3 Djanyreason\nTrade G3 Y3 Djanyreason\nTrade Y3 R3 N2\nPass\n\n34) MadWuher: Sacrifice G2 Djanyreason\nBuild G2 Djanyreason\nBuild B3 Djanyreason\n\n35) DJAnyReason: Sacrifice R3 N2\nAttack B3S Djanyreason\nAttack G2S Djanyreason\nAttack G2S Djanyreason\n\n36) MadWuher: Sacrifice G1 N3\nBuild B3 Djanyreason\nCatastrophe Djanyreason B\n\n37) DJAnyReason: Trade G1 B1 N2\n\n38) MadWuher: Trade B2 R2 Madwuher\n\n39) DJAnyReason: Sacrifice Y3 Djanyreason\nMove R1 N4 N2\nMove R1 N4 Djanyreason\nMove B1 N2 Djanyreason\n\n40) MadWuher: Build Y1 Madwuher\n\n41) DJAnyReason: Trade R1 Y1 Djanyreason\n\n42) MadWuher: Build Y2 Madwuher\n\n43) DJAnyReason: Move Y1 Djanyreason Madwuher\nCatastrophe Madwuher Yellow\n\n44) MadWuher: Build B2 Madwuher\n\n45) DJAnyReason: Sacrifice G2 Djanyreason\nBuild B2 Djanyreason\nBuild B3 Djanyreason\n\n46) MadWuher: Trade B2 Y2 Madwuher\n\tMadWuher: Wow.... Stupid move by me. I wish there was a way to see the result before you commit it. Grrrrr.\n\n47) DJAnyReason: Sacrifice B1 Djanyreason\nTrade B3 Y3 Djanyreason\n\n48) MadWuher: Build Y1 Madwuher\n\n49) DJAnyReason: Build Y1 Djanyreason\n\n50) MadWuher: Trade B2 R2 N3\n\n51) DJAnyReason: Sacrifice G2 Djanyreason\nBuild R1 N2\nBuild R3 N2\n\n52) MadWuher: Build R3 Madwuher\n\n53) DJAnyReason: Move Y3 Djanyreason Madwuher\n\n54) MadWuher: Attack Y3 Madwuher\n\n55) DJAnyReason: Move Y1 Djanyreason Madwuher\nCatastrophe Madwuher Yellow\n\n56) MadWuher: Trade B1 Y1 Madwuher\n\n57) DJAnyReason: Trade R3 Y3 N2\n\n58) MadWuher: Move R3 Madwuher Djanyreason\n\n59) DJAnyReason: Move Y3 N2 Djanyreason\n\n60) MadWuher: Sacrifice R2 Madwuher\nAttack Y3 Djanyreason\nAttack B2 Djanyreason\n\n\nHomeworlds Online (SDG# 11320)\nStarted: 2008.7.15, Ended: 2008.7.16\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\tMadWuher: Hello..\n\n2) DJAnyReason: Homeworld G3 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build Y1 Djanyreason\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) DJAnyReason: Trade Y1 R1 Djanyreason\n\n7) MadWuher: Build G1 Madwuher\n\n8) DJAnyReason: Build R1 Djanyreason\n\n9) MadWuher: Discover G1 Madwuher Y3 Edora\n\n10) DJAnyReason: Build R2 Djanyreason\n\n11) MadWuher: Build G1 Madwuher\n\n12) DJAnyReason: Discover R2 Djanyreason G1 S1\n\n13) MadWuher: Build G2 Madwuher\n\n14) DJAnyReason: Trade R1 B1 Djanyreason\n\n15) MadWuher: Trade G2 R2 Madwuher\n\n16) DJAnyReason: Move B1 Djanyreason S1\n\n17) MadWuher: Build G2 Edora\n\n18) DJAnyReason: Trade B1 Y1 S1\n\n19) MadWuher: Discover G1 Edora B1 Bologna\n\n20) DJAnyReason: Move R2 S1 Edora\n\n21) MadWuher: Sacrifice R2 Madwuher\nAttack R2 Edora\nPass\n\n22) DJAnyReason: Move Y1 S1 Djanyreason\n\n23) MadWuher: Build G1 Bologna\n\n\nHomeworlds Online (SDG# 11321)\nStarted: 2008.7.15, Ended: 2008.7.17\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B2 Y3 G3\n\tMadWuher: Howdy...\n\n2) DJAnyReason: Homeworld R3 G1 B3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build B1 Djanyreason\n\n5) MadWuher: Build G1 Madwuher\n\n6) DJAnyReason: Trade B3 G3 Djanyreason\n\n7) MadWuher: Discover G1 Madwuher Y1 Edora\n\n8) DJAnyReason: Build G2 Djanyreason\n\n9) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G2 Madwuher\nBuild G3 Madwuher\n\n10) DJAnyReason: Trade G2 Y2 Djanyreason\n\n11) MadWuher: Trade G2 B2 Madwuher\n\n12) DJAnyReason: Build B1 Djanyreason\n\n13) MadWuher: Move B2 Madwuher Edora\n\n14) DJAnyReason: Trade B1 R1 Djanyreason\n\n15) MadWuher: Discover G2 Edora B2 Bologna\n\n16) DJAnyReason: Discover R1 Djanyreason Y2 S1\n\n17) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G2 Bologna\nBuild G3 Madwuher\n\n18) DJAnyReason: Build G3 Djanyreason\n\n19) MadWuher: Sacrifice B2 Edora\nTrade G2 Y2 Bologna\nTrade G2 R2 Edora\n\n20) DJAnyReason: Trade G3 B3 Djanyreason\n\n21) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G2 Bologna\nBuild G3 Madwuher\n\n22) DJAnyReason: Sacrifice Y2 Djanyreason\nMove G3 Djanyreason Bologna\nMove G3 Bologna Edora\n\n23) MadWuher: Sacrifice G2 Bologna\nBuild G2 Edora\nBuild G3 Bologna\nCatastrophe Edora G\n\n24) DJAnyReason: Move R1 S1 Djanyreason\n\n25) MadWuher: Sacrifice G2 Bologna\nBuild G1 Bologna\nBuild G2 Bologna\n\n26) DJAnyReason: Trade B3 Y3 Djanyreason\n\n27) MadWuher: Sacrifice G2 Bologna\nBuild G2 Bologna\nBuild R1 Edora\n\n28) DJAnyReason: Build B1 Djanyreason\n\n29) MadWuher: Move G1 Bologna Djanyreason\n\n30) DJAnyReason: Attack G1N Djanyreason\n\n31) MadWuher: Sacrifice Y2 Bologna\nMove G3 Bologna Djanyreason\nMove G2 Bologna Djanyreason\nCatastrophe Djanyreason G\n\n32) DJAnyReason: Trade B1 G1 Djanyreason\n\n33) MadWuher: Trade G3 Y3 Madwuher\n\n34) DJAnyReason: Trade R1 B1 Djanyreason\n\n35) MadWuher: Build G1 Madwuher\n\n36) DJAnyReason: Build G2 Djanyreason\n\n37) MadWuher: Sacrifice G1 Madwuher\nBuild R1 Edora\n\n\nHomeworlds Online (SDG# 11308)\nStarted: 2008.7.16, Ended: 2008.7.20\nParticipants: smartmo (S), MikeYarrum (N)\nWinner: smartmo\n\n\tsmartmo: yooohooo I won !!!! lool\n\nHomeworlds Online (SDG# 11324)\nStarted: 2008.7.16, Ended: 2009.12.9\nParticipants: DJAnyReason (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) DJAnyReason: Homeworld B3 G2 Y3\n\n3) Danner: Build G1 Danner\n\n4) DJAnyReason: Build Y1 Djanyreason\n\n5) Danner: Trade G1 R1 Danner\n\n6) DJAnyReason: Trade Y3 R3 Djanyreason\n\n7) Danner: Build G1 Danner\n\n8) DJAnyReason: Build Y1 Djanyreason\n\n9) Danner: Trade G1 Y1 Danner\n\n10) DJAnyReason: Build Y2 Djanyreason\n\n11) Danner: Build Y2 Danner\n\n12) DJAnyReason: Trade Y2 G2 Djanyreason\n\n13) Danner: Build Y2 Danner\n\n14) DJAnyReason: Discover Y1 Djanyreason G1 S1\n\n15) Danner: Trade Y1 B1 Danner\n\n16) DJAnyReason: Build G1 Djanyreason\n\n17) Danner: Build G1 Danner\n\n18) DJAnyReason: Trade G1 B1 Djanyreason\n\n19) Danner: Discover Y2 Danner G3 Earth\n\n20) DJAnyReason: Trade R3 G3 Djanyreason\n\n21) Danner: Discover G1 Danner Y3 Sun\n\n22) DJAnyReason: Trade G2 R2 Djanyreason\n\n23) Danner: Build G1 Danner\n\n24) DJAnyReason: Build G2 Djanyreason\n\n25) Danner: Sacrifice Y2 Earth\nMove G1 Sun S1\nMove G1 S1 Djanyreason\nCatastrophe Djanyreason G\n\n\tDanner: Hey! You regularry log in and make moves in other games! Make your move in this game too, I have been waiting enough\n\tDanner: Okay, you used to log in and make moves in other games.\n\tDanner: [checking time zone]\n\nHomeworlds Online (SDG# 11327)\nStarted: 2008.7.16, Ended: 2008.7.21\nParticipants: DJAnyReason (S), MikeYarrum (N)\nWinner: DJAnyReason\n\n\nHomeworlds Online (SDG# 11322)\nStarted: 2008.7.17, Ended: 2008.7.24\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) DJAnyReason: Homeworld B1 R2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build G1 Djanyreason\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) DJAnyReason: Trade G1 Y1 Djanyreason\n\n7) MadWuher: Build G1 Madwuher\n\n8) DJAnyReason: Build G1 Djanyreason\n\n9) MadWuher: Trade G1 B1 Madwuher\n\n10) DJAnyReason: Trade Y1 R1 Djanyreason\n\n11) MadWuher: Build B1 Madwuher\n\n12) DJAnyReason: Trade G1 Y1 Djanyreason\n\tDJAnyReason: uhh... can't undo that undo, huh?\n\n13) MadWuher: Discover B1 Madwuher G2 Edora\n\n14) DJAnyReason: Build R1 Djanyreason\n\n15) MadWuher: Build B2 Edora\n\n16) DJAnyReason: Discover R1 Djanyreason B3 S1\n\n17) MadWuher: Trade B2 R2 Edora\n\n18) DJAnyReason: Build G1 Djanyreason\n\n19) MadWuher: Build B2 Edora\n\n20) DJAnyReason: Move G1 Djanyreason S1\n\n21) MadWuher: Trade B2 Y2 Edora\n\n22) DJAnyReason: Build G1 Djanyreason\n\n23) MadWuher: Build B2 Madwuher\n\n24) DJAnyReason: Build R2 S1\n\n25) MadWuher: Build R3 Edora\n\n26) DJAnyReason: Discover R1 Djanyreason G3 S2\n\n27) MadWuher: Trade R2 Y2 Edora\n\n28) DJAnyReason: Trade R2 B2 S1\n\n29) MadWuher: Discover Y2 Edora B3 Bologna\n\n30) DJAnyReason: Trade G1 Y1 S1\n\n31) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Edora\nBuild Y3 Bologna\nBuild Y3 Madwuher\n\n32) DJAnyReason: Build Y3 Djanyreason\n\n33) MadWuher: Sacrifice B1 Madwuher\nTrade B2 G2 Madwuher\n\n34) DJAnyReason: Trade G1 B1 Djanyreason\n\n35) MadWuher: Build B2 Edora\n\n36) DJAnyReason: Sacrifice Y1 S1\nDiscover B2 S1 B2 S3\n\n37) MadWuher: Sacrifice Y2 Edora\nMove Y3 Bologna Djanyreason\nMove B2 Edora Bologna\n\n38) DJAnyReason: Attack Y3N Djanyreason\n\n39) MadWuher: Move Y2 Bologna Djanyreason\nCatastrophe Djanyreason Y\n\n40) DJAnyReason: Trade R1 G1 S1\n\n41) MadWuher: Move R3 Edora S1\n\n42) DJAnyReason: Build G1 S1\n\n43) MadWuher: Attack G1 S1\n\n44) DJAnyReason: Build G1 S1\n\n45) MadWuher: Move B1 Edora S1\n\n46) DJAnyReason: Build G2 Djanyreason\n\n47) MadWuher: Build G3 Madwuher\n\n48) DJAnyReason: Trade B2 Y2 S3\n\n49) MadWuher: Sacrifice Y2 Edora\nMove B2 Bologna Djanyreason\nMove B1 S1 Djanyreason\nCatastrophe Djanyreason B\n\n50) DJAnyReason: Sacrifice Y2 S3\nMove G2 Djanyreason Madwuher\nDiscover G1 S1 Y2 S4\n\n51) MadWuher: Sacrifice Y3 Madwuher\nMove G3 Madwuher Djanyreason\nMove G1 S1 Djanyreason\nMove G2 Madwuher Djanyreason\nCatastrophe Djanyreason G\n\n\nHomeworlds Online (SDG# 11336)\nStarted: 2008.7.17, Ended: 2008.7.21\nParticipants: MikeYarrum (S), DJAnyReason (N)\nWinner: DJAnyReason\n\n1) DJAnyReason: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 11343)\nStarted: 2008.7.18, Ended: 2008.8.4\nParticipants: patwillis (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) patwillis: Homeworld Y1 B3 G3\n\n3) Danner: Build G1 Danner\n\n4) patwillis: Build G1 Patwillis\n\n5) Danner: Trade G1 Y1 Danner\n\n6) patwillis: Trade G1 Y1 Patwillis\n\n7) Danner: Build Y2 Danner\n\n8) patwillis: Build Y2 Patwillis\n\n9) Danner: Discover Y1 Danner G3 Earth\n\n10) patwillis: Discover Y1 Patwillis G2 Greenland\n\n11) Danner: Build Y2 Earth\n\n12) patwillis: Build Y3 Greenland\n\n13) Danner: Build Y3 Danner\n\n14) patwillis: Discover Y3 Greenland G1 Littlegreenland\n\n15) Danner: Move Y1 Earth Greenland\n\n16) patwillis: Build Y3 Greenland\n\n17) Danner: Move Y2 Earth Greenland\nCatastrophe Greenland Y\n\n18) patwillis: Build G1 Patwillis\n\n19) Danner: Discover Y2 Danner G3 Earth\n\n20) patwillis: Discover G1 Patwillis Y2 Yellonia\n\n21) Danner: Sacrifice G3 Danner\nBuild Y1 Earth\nBuild Y1 Earth\nBuild Y3 Danner\n\n22) patwillis: Build G1 Patwillis\n\n23) Danner: Trade Y3 G3 Danner\n\n24) patwillis: Trade Y2 R2 Patwillis\n\n25) Danner: Build G2 Danner\n\n26) patwillis: Discover G1 Yellonia Y3 Sun\n\n27) Danner: Move Y1 Earth Littlegreenland\n\n28) patwillis: Discover Y3 Littlegreenland R3 Mars\n\n29) Danner: Build Y2 Littlegreenland\n\n30) patwillis: Sacrifice G3 Patwillis\nBuild G2 Patwillis\nBuild G2 Patwillis\nBuild G3 Sun\n\n31) Danner: Build Y2 Danner\n\n32) patwillis: Move G1 Sun Danner\n\n33) Danner: Move G3 Danner Sun\n\n34) patwillis: Sacrifice R2 Patwillis\nAttack G3 Sun\nPass\n\n35) Danner: Sacrifice Y3 Danner\nMove G2 Danner Sun\nDiscover G2 Sun R2 Temporal\nMove G2 Temporal Patwillis\nCatastrophe Patwillis G\n\n\tDanner: Thx the game.\n\nHomeworlds Online (SDG# 11347)\nStarted: 2008.7.18, Ended: 2008.7.27\nParticipants: MadWuher (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) MadWuher: Homeworld Y1 B3 G3\n\n3) Danner: Build G1 Danner\n\n4) MadWuher: Build G1 Madwuher\n\n5) Danner: Trade G1 Y1 Danner\n\n6) MadWuher: Discover G1 Madwuher B2 Abydos\n\n7) Danner: Build Y1 Danner\n\n8) MadWuher: Build G1 Madwuher\n\n9) Danner: Build Y2 Danner\n\n10) MadWuher: Build G1 Abydos\n\n11) Danner: Discover Y1 Danner G3 Earth\n\n12) MadWuher: Build G2 Abydos\n\n13) Danner: Sacrifice G3 Danner\nBuild Y2 Earth\nBuild Y2 Earth\nBuild Y3 Danner\n\n14) MadWuher: Discover G1 Madwuher B2 Chulak\n\n15) Danner: Trade Y3 G3 Danner\n\n16) MadWuher: Trade G2 R2 Abydos\n\n17) Danner: Discover Y1 Danner B3 Atlantis\n\n18) MadWuher: Trade G3 Y3 Madwuher\n\n19) Danner: Build Y3 Danner\n\tMadWuher: It's amazing how little I actually think of strategy when I play. I have been totally screwing up the idea of locking someone out of a colour.\n\n20) MadWuher: Build G2 Chulak\n\n21) Danner: Build Y3 Danner\n\n22) MadWuher: Trade Y3 G3 Madwuher\n\n23) Danner: Discover Y3 Danner R3 P3r-118\n\n24) MadWuher: Build G2 Madwuher\n\n25) Danner: Build G2 Danner\n\n26) MadWuher: Trade G3 Y3 Madwuher\n\n27) Danner: Build G3 Danner\n\n28) MadWuher: Sacrifice Y3 Madwuher\nMove G1 Abydos Atlantis\nMove R2 Abydos Earth\nMove G1 Atlantis Danner\nCatastrophe Danner G\n\n29) Danner: Sacrifice Y2 Earth\nMove Y3 P3r-118 Abydos\nMove Y3 Abydos Madwuher\n\n30) MadWuher: Build G1 Abydos\n\n31) Danner: Trade Y3 R3 Danner\n\n32) MadWuher: Sacrifice G2 Chulak\nBuild G2 Madwuher\nBuild G2 Madwuher\n\n33) Danner: Trade Y3 G3 Madwuher\nCatastrophe Madwuher G\n\tDanner: Thx the game.\n\n\nHomeworlds Online (SDG# 11329)\nStarted: 2008.7.18, Ended: 2008.7.24\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y2 B3 G3\n\n2) DJAnyReason: Homeworld B1 R3 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build G1 Djanyreason\n\n5) MadWuher: Discover G1 Madwuher B1 Edora\n\n6) DJAnyReason: Trade G1 Y1 Djanyreason\n\n7) MadWuher: Build G1 Madwuher\n\n8) DJAnyReason: Build Y1 Djanyreason\n\n9) MadWuher: Trade G1 Y1 Edora\n\n10) DJAnyReason: Trade Y1 B1 Djanyreason\n\n11) MadWuher: Build G1 Madwuher\n\n12) DJAnyReason: Build G1 Djanyreason\n\n13) MadWuher: Move G1 Madwuher Edora\n\n14) DJAnyReason: Trade G1 R1 Djanyreason\n\n15) MadWuher: Trade G1 R1 Madwuher\n\n16) DJAnyReason: Build B2 Djanyreason\n\n17) MadWuher: Build G1 Madwuher\n\n18) DJAnyReason: Discover B2 Djanyreason Y2 S1\n\n19) MadWuher: Build G1 Edora\n\n20) DJAnyReason: Build G2 Djanyreason\n\n21) MadWuher: Discover G1 Edora B2 Bologna\n\n22) DJAnyReason: Sacrifice G3 Djanyreason\nBuild B2 S1\nBuild B3 S1\nBuild B3 Djanyreason\n\n23) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Bologna\nBuild G2 Edora\nBuild G3 Madwuher\n\n24) DJAnyReason: Build G3 Djanyreason\n\tMadWuher: Excellent use of sacrificing in the past few games we've played. I'm learning a lot about it from you.\n\tDJAnyReason: Seriously? Learning? You've been kicking my ass with it! ;)\n\n25) MadWuher: Build G3 Edora\n\n26) DJAnyReason: Move G3 Djanyreason S1\n\n27) MadWuher: Trade G2 Y2 Edora\n\n28) DJAnyReason: Trade R1 Y1 Djanyreason\n\n29) MadWuher: Move Y1 Edora S1\n\n30) DJAnyReason: Discover G3 S1 R3 S2\n\n31) MadWuher: Sacrifice G3 Edora\nBuild Y3 Edora\nBuild Y3 S1\nBuild Y3 S1\nCatastrophe S1 Y\n\n32) DJAnyReason: Discover B1 Djanyreason G2 S3\n\n33) MadWuher: Build G3 Edora\n\n34) DJAnyReason: Sacrifice G3 S2\nBuild B2 S3\nBuild B2 S3\nBuild G3 Djanyreason\n\n35) MadWuher: Move Y3 Edora Bologna\n\n36) DJAnyReason: Build B3 Djanyreason\n\n37) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R1 Madwuher\nBuild R1 Madwuher\n\n38) DJAnyReason: Discover G3 Djanyreason R2 S4\n\n39) MadWuher: Move R1 Madwuher Edora\n\n40) DJAnyReason: Trade B3 R3 Djanyreason\n\n41) MadWuher: Sacrifice G3 Edora\nBuild G3 Edora\nBuild Y1 Bologna\nBuild R2 Edora\n\n42) DJAnyReason: Sacrifice Y1 Djanyreason\nMove Y1 Djanyreason S4\n\n43) MadWuher: Move R1 Edora Bologna\n\n44) DJAnyReason: Build B3 Djanyreason\n\n45) MadWuher: Sacrifice G3 Madwuher\nBuild R2 Bologna\nBuild R3 Edora\nBuild G3 Madwuher\n\n46) DJAnyReason: Trade B3 Y3 Djanyreason\n\n47) MadWuher: Sacrifice Y2 Edora\nMove R1 Bologna Djanyreason\nMove R2 Bologna Djanyreason\nCatastrophe Djanyreason R\n\n48) DJAnyReason: Sacrifice Y3 Djanyreason\nMove B2 S3 Edora\nMove B2 S3 Edora\nMove B1 S3 Edora\nCatastrophe Edora B\n\n49) MadWuher: Move Y3 Bologna Djanyreason\n\n50) DJAnyReason: Move Y1 S4 Djanyreason\n\n51) MadWuher: Sacrifice R1 Madwuher\nAttack B3 Djanyreason\n\n52) DJAnyReason: Sacrifice G3 S4\nBuild Y1 Djanyreason\nBuild Y2 Djanyreason\nBuild G1 Djanyreason\nCatastrophe Djanyreason Y\n\n53) MadWuher: Sacrifice G2 Bologna\nBuild B1 Djanyreason\nBuild B1 Djanyreason\nCatastrophe Djanyreason B\n\n\nHomeworlds Online (SDG# 11352)\nStarted: 2008.7.19, Ended: 2009.12.9\nParticipants: bang (S), surfball1028 (N)\nWinner: surfball1028\n\n1) surfball1028: Homeworld G3 B2 Y3\n\n2) bang: Homeworld G1 Y2 B3\n\tsurfball1028: MOVE!!\r\nhaha \r\ndan u r slow!\n\n3) surfball1028: Build Y1 Surfball1028\n\n4) bang: Build B1 Bang\n\n5) surfball1028: Build Y1 Surfball1028\n\n6) bang: Trade B1 Y1 Bang\n\n7) surfball1028: Discover Y1 Surfball1028 B1 Playalinda\n\n8) bang: Build Y2 Bang\n\n9) surfball1028: Trade Y1 G1 Playalinda\n\n10) bang: Trade Y1 G1 Bang\n\n11) surfball1028: Build G2 Playalinda\n\n12) bang: Build G2 Bang\n\n13) surfball1028: Trade G2 R2 Playalinda\n\n14) bang: Trade G1 R1 Bang\n\n15) surfball1028: Build Y1 Surfball1028\n\n16) bang: Discover G2 Bang B3 Boom\n\n17) surfball1028: Move Y1 Surfball1028 Playalinda\n\n18) bang: Build R1 Bang\n\n19) surfball1028: Build Y1 Playalinda\n\n20) bang: Discover R1 Bang Y3 Bing\n\n21) surfball1028: Trade Y1 B1 Surfball1028\n\n22) bang: Discover Y2 Bang G3 Bump\n\n23) surfball1028: Build G1 Playalinda\n\n24) bang: Build G2 Boom\n\n25) surfball1028: Move G1 Playalinda Boom\n\n26) bang: Trade G2 R2 Boom\n\n27) surfball1028: Build G2 Playalinda\n\n28) bang: Attack G1 Boom\n\n29) surfball1028: Discover G1 Playalinda Y3 Cocobeach\n\n30) bang: Sacrifice Y2 Bump\nMove G1 Boom Playalinda\nMove G1 Playalinda Surfball1028\n\n31) surfball1028: Trade B1 R1 Surfball1028\n\n32) bang: Sacrifice R1 Bing\nAttack R1 Surfball1028\n\n33) surfball1028: Build R1 Playalinda\n\n34) bang: Build G2 Boom\n\n35) surfball1028: Sacrifice R2 Playalinda\nAttack R1 Surfball1028\nAttack G1 Surfball1028\n\n36) bang: Trade G2 Y2 Boom\n\n37) surfball1028: Build G2 Cocobeach\n\n38) bang: Build G3 Boom\n\n39) surfball1028: Build G3 Playalinda\n\n40) bang: Build R2 Bang\n\n41) surfball1028: Trade Y1 B1 Playalinda\n\n42) bang: Move B3 Bang Cocobeach\n\n43) surfball1028: Discover G2 Cocobeach B1 Jfkspacecenter\n\n44) bang: Sacrifice R1 Bang\nAttack G1 Cocobeach\n\n45) surfball1028: Trade G2 Y2 Jfkspacecenter\n\n46) bang: Move B3 Cocobeach Bang\n\n47) surfball1028: Move G1 Surfball1028 Jfkspacecenter\n\n48) bang: Discover R2 Boom Y1 Base\n\n49) surfball1028: Build G2 Jfkspacecenter\n\n50) bang: Trade G3 R3 Boom\n\n51) surfball1028: Trade G2 B2 Jfkspacecenter\n\n52) bang: Move R3 Boom Jfkspacecenter\n\n53) surfball1028: Sacrifice Y2 Jfkspacecenter\nMove B2 Jfkspacecenter Surfball1028\nMove G1 Jfkspacecenter Cocobeach\n\n54) bang: Build R1 Bang\n\n55) surfball1028: Sacrifice G2 Playalinda\nBuild R2 Surfball1028\nBuild R3 Playalinda\n\n56) bang: Sacrifice Y2 Boom\nMove R3 Jfkspacecenter Cocobeach\nMove R1 Bang Cocobeach\n\n57) surfball1028: Move R3 Playalinda Boom\n\n\nHomeworlds Online (SDG# 11341)\nStarted: 2008.7.20, Ended: 2008.7.20\nParticipants: w00t (S), MadWuher (N)\nWinner: MadWuher\n\n\nHomeworlds Online (SDG# 11342)\nStarted: 2008.7.20, Ended: 2009.12.9\nParticipants: w00t (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11353)\nStarted: 2008.7.20, Ended: 2008.10.3\nParticipants: w00t (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) w00t: Homeworld G3 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) w00t: Build Y1 W00t\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) w00t: Discover Y1 W00t B1 O_o\n\n7) MadWuher: Build G1 Madwuher\n\n8) w00t: Trade Y1 G1 O_o\n\n9) MadWuher: Discover G1 Madwuher B2 Edora\n\n10) w00t: Build Y1 W00t\n\n11) MadWuher: Build G1 Madwuher\n\n12) w00t: Build G2 O_o\n\n13) MadWuher: Build G2 Edora\n\n14) w00t: Trade G1 Y1 O_o\n\n15) MadWuher: Trade G2 Y2 Edora\n\n16) w00t: Discover G2 O_o G3 Reactor\n\n17) MadWuher: Build Y2 Edora\n\n18) w00t: Trade Y1 R1 W00t\n\n19) MadWuher: Trade Y2 R2 Edora\n\n20) w00t: Build R1 W00t\n\n21) MadWuher: Build R2 Edora\n\n22) w00t: Move R1 W00t O_o\n\n23) MadWuher: Discover R2 Edora G1 Bologna\n\n24) w00t: Sacrifice G2 Reactor\nBuild Y1 W00t\nBuild Y2 O_o\n\n25) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Edora\nBuild G2 Edora\nBuild G2 Madwuher\n\n\nHomeworlds Online (SDG# 11357)\nStarted: 2008.7.20, Ended: 2009.12.9\nParticipants: MikeYarrum (S), smartmo (N)\nWinner: MikeYarrum\n\n1) smartmo: Homeworld B3 Y2 G3\n\n\nHomeworlds Online (SDG# 11356)\nStarted: 2008.7.21, Ended: 2008.7.22\nParticipants: DJAnyReason (S), w00t (N)\nWinner: DJAnyReason\n\n1) w00t: Homeworld Y2 R1 G3 *\n\n2) DJAnyReason: Homeworld R3 B3 G3 *\n\n3) w00t: Build G1 W00t\n\n4) DJAnyReason: Build G1 Djanyreason\n\n5) w00t: Discover G1 W00t B3 O_o\n\n6) DJAnyReason: Trade G3 Y3 Djanyreason\n\n7) w00t: Build G1 O_o\n\n8) DJAnyReason: Build G2 Djanyreason\n\n9) w00t: Build G2 W00t\n\n10) DJAnyReason: Move G1 Djanyreason W00t\n\n11) w00t: Discover G2 W00t G3 X1\n\n12) DJAnyReason: Sacrifice G2 Djanyreason\nBuild G2 W00t\nBuild G2 W00t\nCatastrophe W00t G\n\n\nHomeworlds Online (SDG# 11354)\nStarted: 2008.7.21, Ended: 2009.7.8\nParticipants: Horowits (S), w00t (N)\nWinner: w00t\n\n1) w00t: Homeworld B3 R1 G3\n\n2) Horowits: Homeworld G3 B2 Y3\n\n3) w00t: Build G1 W00t\n\tHorowits: Im going to ding the doom song. Doom doom doom doomy doom doom dooooooooooooom doom doomy doom doom. the end.\n\n4) Horowits: Build Y1 Horowits\n\tw00t: fear my 1 pip green! fear it!\n\n5) w00t: Trade G1 Y1 W00t\n\n6) Horowits: Trade Y1 G1 Horowits\n\n7) w00t: Discover Y1 W00t B2 O_o\n\tHorowits: so are you playing on your pda?\n\n\tw00t: I am playing on the pda :)\n\tw00t: slacker :)\n\nHomeworlds Online (SDG# 11355)\nStarted: 2008.7.21, Ended: 2008.10.3\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B2 Y3 G3\n\n2) DJAnyReason: Homeworld B1 R2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build G1 Djanyreason\n\n5) MadWuher: Trade G1 B1 Madwuher\n\n6) DJAnyReason: Trade G1 Y1 Djanyreason\n\n7) MadWuher: Build B1 Madwuher\n\n8) DJAnyReason: Build Y1 Djanyreason\n\n9) MadWuher: Discover B1 Madwuher G1 Edora\n\n10) DJAnyReason: Discover Y1 Djanyreason G3 S1\n\n11) MadWuher: Build B2 Edora\n\n12) DJAnyReason: Build G1 Djanyreason\n\n13) MadWuher: Trade B2 Y2 Edora\n\n14) DJAnyReason: Build G1 Djanyreason\n\n15) MadWuher: Build G2 Madwuher\n\n16) DJAnyReason: Discover G1 Djanyreason B3 S2\n\n17) MadWuher: Sacrifice G3 Madwuher\nBuild B2 Edora\nBuild B2 Edora\nBuild B3 Madwuher\n\n18) DJAnyReason: Discover G1 Djanyreason B3 S3\n\n19) MadWuher: Sacrifice B2 Edora\nTrade B3 G3 Madwuher\nTrade B2 R2 Edora\n\n20) DJAnyReason: Build G2 Djanyreason\n\n21) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G3 Madwuher\nBuild B2 Edora\n\n22) DJAnyReason: Trade G2 B2 Djanyreason\n\n23) MadWuher: Build B3 Edora\n\n24) DJAnyReason: Discover B2 Djanyreason Y3 S4\n\n25) MadWuher: Sacrifice B1 Edora\nTrade B3 Y3 Edora\n\n26) DJAnyReason: Build G2 Djanyreason\n\n27) MadWuher: Move R2 Edora S2\n\n28) DJAnyReason: Move Y1 S1 Edora\n\n29) MadWuher: Sacrifice B2 Edora\nTrade Y3 R3 Edora\nTrade G2 Y2 Madwuher\n\n30) DJAnyReason: Move Y1 Edora Madwuher\n\n31) MadWuher: Sacrifice R2 S2\nAttack Y1 Madwuher\nPass\n\n32) DJAnyReason: Sacrifice G3 Djanyreason\nBuild G2 S2\nBuild G3 Djanyreason\nBuild G3 Djanyreason\n\n33) MadWuher: Sacrifice Y1 Madwuher\nMove B1 Madwuher Edora\n\n34) DJAnyReason: Sacrifice B2 S4\nTrade G1 B1 S2\nTrade G2 B2 Djanyreason\n\n35) MadWuher: Build B2 Edora\n\n36) DJAnyReason: Sacrifice B2 Djanyreason\nTrade G3 B3 Djanyreason\nTrade G2 Y2 S2\n\n37) MadWuher: Discover B2 Edora G3 Bologna\n\n38) DJAnyReason: Sacrifice Y2 S2\nMove G1 S3 Edora\nMove G1 Edora Madwuher\n\n39) MadWuher: Trade G3 R3 Madwuher\n\n40) DJAnyReason: Build G1 Madwuher\n\n41) MadWuher: Attack G1 Madwuher\n\n42) DJAnyReason: Build G2 Madwuher\nCatastrophe Madwuher G\n\n43) MadWuher: Trade Y2 G2 Madwuher\n\n44) DJAnyReason: Build Y1 Djanyreason\n\n45) MadWuher: Build B2 Edora\n\n46) DJAnyReason: Trade B1 G1 S2\n\n47) MadWuher: Build B1 Bologna\n\n48) DJAnyReason: Discover B3 Djanyreason R3 S3\n\n49) MadWuher: Build B3 Bologna\n\n50) DJAnyReason: Sacrifice G1 S2\nBuild B3 S3\n\n51) MadWuher: Sacrifice Y2 Edora\nMove B1 Edora S3\nMove B2 Edora S3\nCatastrophe S3 B\n\n\nHomeworlds Online (SDG# 11358)\nStarted: 2008.7.24, Ended: 2009.8.16\nParticipants: MikeYarrum (S), virx61 (N)\nWinner: virx61\n\n1) virx61: Homeworld R2 B3 G3\n\n\nHomeworlds Online (SDG# 11364)\nStarted: 2008.7.24, Ended: 2008.10.3\nParticipants: DJAnyReason (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) DJAnyReason: Homeworld B1 R3 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) DJAnyReason: Build G1 Djanyreason\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) DJAnyReason: Trade G1 Y1 Djanyreason\n\n7) MadWuher: Build G1 Madwuher\n\n8) DJAnyReason: Build G1 Djanyreason\n\n9) MadWuher: Trade G1 R1 Madwuher\n\n10) DJAnyReason: Trade G1 R1 Djanyreason\n\n11) MadWuher: Build R2 Madwuher\n\n\nHomeworlds Online (SDG# 11380)\nStarted: 2008.7.25, Ended: 2008.11.18\nParticipants: Danner (S), Cerulean (N)\nWinner: Danner\n\n1) Cerulean: Homeworld G3 B2 Y3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) Cerulean: Build Y1 Cerulean\n\n4) Danner: Build G1 Danner\n\n5) Cerulean: Build Y1 Cerulean\n\n6) Danner: Trade G1 Y1 Danner\n\n7) Cerulean: Trade Y1 G1 Cerulean\n\n8) Danner: Build G1 Danner\n\n9) Cerulean: Trade Y1 R1 Cerulean\n\n10) Danner: Trade G1 R1 Danner\n\n11) Cerulean: Build Y1 Cerulean\n\n12) Danner: Build R2 Danner\n\n13) Cerulean: Build R2 Cerulean\n\n14) Danner: Discover R2 Danner Y3 Sun\n\n15) Cerulean: Build G1 Cerulean\n\n16) Danner: Build G1 Danner\n\n17) Cerulean: Trade G1 B1 Cerulean\n\n18) Danner: Trade G1 B1 Danner\n\n19) Cerulean: Discover Y1 Cerulean G1 Jiwun\n\n20) Danner: Move R2 Sun Jiwun\n\n21) Cerulean: Discover Y1 Jiwun G3 Jithree\n\n22) Danner: Build R2 Danner\n\n23) Cerulean: Discover R1 Cerulean Y1 Wywun\n\n24) Danner: Trade R1 G1 Danner\n\n25) Cerulean: Build G2 Cerulean\n\n26) Danner: Build G2 Danner\n\n27) Cerulean: Move G2 Cerulean Wywun\n\n28) Danner: Discover R2 Danner Y3 Sun\n\n29) Cerulean: Build G2 Wywun\n\n30) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild Y2 Danner\nBuild B1 Danner\n\n31) Cerulean: Move G2 Wywun Jithree\n\n32) Danner: Move G1 Danner Sun\n\n33) Cerulean: Build Y2 Jithree\n\n34) Danner: Discover B1 Danner Y3 Highway\n\n35) Cerulean: Move Y1 Jithree Danner\n\n36) Danner: Attack Y1N Danner\n\n37) Cerulean: Move G2 Jithree Danner\n\n38) Danner: Move G2 Danner Highway\n\n39) Cerulean: Trade G2 Y2 Danner\nCatastrophe Danner Y\n\n40) Danner: Build G2 Danner\n\n41) Cerulean: Build Y1 Jithree\n\n42) Danner: Trade G2 Y2 Highway\n\n43) Cerulean: Build G2 Wywun\n\n44) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild B2 Danner\nBuild B3 Highway\n\n45) Cerulean: Move B1 Cerulean Wywun\n\n46) Danner: Sacrifice B1 Highway\nTrade B2 Y2 Danner\n\n47) Cerulean: Build Y1 Cerulean\n\n48) Danner: Sacrifice G2 Danner\nBuild G2 Danner\nBuild B1 Highway\n\n49) Cerulean: Move G2 Wywun Jithree\n\n50) Danner: Move G2 Danner Highway\n\n51) Cerulean: Move B1 Wywun Jithree\n\n52) Danner: Move B1 Danner Sun\n\n53) Cerulean: Trade Y2 B2 Jithree\n\n54) Danner: Sacrifice G3 Danner\nBuild G3 Sun\nBuild B3 Sun\nBuild B3 Sun\n\n55) Cerulean: Build Y2 Jithree\n\n56) Danner: Move B3 Sun Wywun\n\n57) Cerulean: Sacrifice G2 Wywun\nBuild R1 Wywun\nBuild R3 Cerulean\n\tDanner: Ji means green, Wy means yellow, wun means one, eh, I didn't notice it before.\n\n58) Danner: Move G3 Sun Danner\n\n59) Cerulean: Move R1 Wywun Jithree\n\n60) Danner: Sacrifice G2 Highway\nBuild R3 Jiwun\nBuild R3 Sun\n\n61) Cerulean: Sacrifice Y1 Cerulean\nDiscover R3 Cerulean Y1 Wywuntu\n\n62) Danner: Sacrifice Y2 Highway\nMove R3 Jiwun Jithree\nMove B1 Highway Wywun\n\n63) Cerulean: Sacrifice Y2 Jithree\nMove Y1 Jithree Danner\nMove G2 Jithree Danner\n\n64) Danner: Attack G2N Danner\n\n65) Cerulean: Move R1 Wywun Highway\n\n66) Danner: Attack Y1N Danner\n\tDanner: I can't see the point.\n\n67) Cerulean: Trade B2 Y2 Jithree\n\n68) Danner: Attack Y2N Jithree\n\n69) Cerulean: Move R1 Highway Wywuntu\n\n70) Danner: Build Y2 Jithree\n\n71) Cerulean: Move R3 Wywuntu Cerulean\n\n72) Danner: Attack R1N Jithree\n\n73) Cerulean: Move R3 Cerulean Jiwun\n\n74) Danner: Sacrifice Y2 Danner\nDiscover R2 Jiwun Y2 Honeymaker\nMove G2 Danner Highway\n\n75) Cerulean: Sacrifice R1 Wywuntu\nAttack R1S Jithree\n\n76) Danner: Build Y1 Danner\n\n77) Cerulean: Build R1 Cerulean\n\n78) Danner: Sacrifice Y2 Jithree\nMove G1 Sun Jiwun\nMove G1 Jiwun Cerulean\n\n79) Cerulean: Sacrifice R1 Cerulean\nAttack G1S Cerulean\n\n80) Danner: Sacrifice Y2 Jithree\nMove G2 Highway Jiwun\nMove G2 Jiwun Cerulean\nCatastrophe Cerulean G\n\n81) Cerulean: Trade R2 G2 Cerulean\n\n82) Danner: Move B1 Wywun Cerulean\n\n83) Cerulean: Build Y2 Cerulean\n\n84) Danner: Move B1 Sun Cerulean\n\n85) Cerulean: Sacrifice R3 Jiwun\nAttack B1S Cerulean\nAttack B1S Cerulean\nPass\n\n86) Danner: Move B3 Highway Cerulean\nCatastrophe Cerulean B\n\n\tDanner: Thanks the game.\n\nHomeworlds Online (SDG# 11382)\nStarted: 2008.7.25, Ended: 2008.8.8\nParticipants: Jesse (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) Jesse: Homeworld B1 R3 G3\n\n3) Danner: Build G1 Danner\n\n4) Jesse: Build G1 Jesse\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) Danner: Build G1 Danner\n\n8) Jesse: Build G1 Jesse\n\n9) Danner: Trade G1 R1 Danner\n\n10) Jesse: Trade G1 R1 Jesse\n\n11) Danner: Build R2 Danner\n\n12) Jesse: Build R2 Jesse\n\n13) Danner: Discover R1 Danner Y3 Sun\n\n14) Jesse: Discover R2 Jesse G2 One\n\n15) Danner: Sacrifice G3 Danner\nBuild R2 Sun\nBuild R3 Sun\nBuild R3 Danner\n\n16) Jesse: Build Y1 Jesse\n\n17) Danner: Move R3 Sun One\n\n18) Jesse: Sacrifice Y1 Jesse\nDiscover R2 One G3 Two\n\n19) Danner: Trade R2 G2 Danner\n\n20) Jesse: Build R2 Two\n\n21) Danner: Sacrifice Y1 Danner\nMove R3 One Two\n\n\tJesse: I hate to give up, but I can't see any realistic chance to get through this.\n\tDanner: Thanx the game.\n\nHomeworlds Online (SDG# 11381)\nStarted: 2008.7.25, Ended: 2008.8.12\nParticipants: Danner (S), MatrixFrog (N)\nWinner: Danner\n\n1) MatrixFrog: Homeworld B2 Y1 G3\n\n2) Danner: Homeworld R2 B1 G3\n\n3) MatrixFrog: Build G1 Matrixfrog\n\n4) Danner: Build G1 Danner\n\n5) MatrixFrog: Discover G1 Matrixfrog Y3 Bounce\n\n6) Danner: Trade G1 Y1 Danner\n\n7) MatrixFrog: Build G1 Matrixfrog\n\n8) Danner: Build Y1 Danner\n\n9) MatrixFrog: Trade G1 B1 Matrixfrog\n\n10) Danner: Discover Y1 Danner G3 Earth\n\n11) MatrixFrog: Build G1 Matrixfrog\n\n12) Danner: Build Y2 Danner\n\n13) MatrixFrog: Trade G1 R1 Matrixfrog\n\n14) Danner: Build Y2 Earth\n\n15) MatrixFrog: Build G1 Bounce\n\n16) Danner: Build Y2 Earth\n\n17) MatrixFrog: Build R1 Matrixfrog\n\n18) Danner: Build Y3 Danner\n\n19) MatrixFrog: Build B1 Matrixfrog\n\n20) Danner: Trade Y3 B3 Danner\n\n21) MatrixFrog: Move R1 Matrixfrog Earth\n\n22) Danner: Trade Y2 R2 Danner\n\n23) MatrixFrog: Sacrifice G3 Matrixfrog\nBuild R1 Matrixfrog\nBuild R2 Earth\nBuild G1 Bounce\n\n24) Danner: Sacrifice R2 Danner\nAttack R1 Earth\nAttack R2 Earth\n\n25) MatrixFrog: Move G1 Bounce Matrixfrog\n\n26) Danner: Move Y2 Earth Matrixfrog\n\n27) MatrixFrog: Move R1 Matrixfrog Bounce\n\n28) Danner: Sacrifice R2 Earth\nAttack R1N Matrixfrog\nAttack B1N Matrixfrog\n\n29) MatrixFrog: Build R2 Bounce\n\n30) Danner: Sacrifice G3 Danner\nBuild Y2 Matrixfrog\nBuild Y3 Matrixfrog\nBuild B2 Matrixfrog\nCatastrophe Matrixfrog Y\nCatastrophe Matrixfrog B\n\n\tDanner: Thx the game\n\nHomeworlds Online (SDG# 11365)\nStarted: 2008.7.26, Ended: 2008.9.14\nParticipants: MadWuher (S), wmreed (N)\nWinner: MadWuher\n\n1) wmreed: Homeworld G2 B1 R3\n\n2) MadWuher: Homeworld B1 G3 B3 *\n\twmreed: Hello!\n\n3) wmreed: Build R1 Wmreed\n\n4) MadWuher: Build B1 Madwuher\n\n5) wmreed: Trade R3 Y3 Wmreed\n\n6) MadWuher: Trade B3 Y3 Madwuher\n\n7) wmreed: Build Y1 Wmreed\n\n\n8) MadWuher: Build B2 Madwuher\n\n9) wmreed: Trade Y1 G1 Wmreed\n\n10) MadWuher: Trade B2 R2 Madwuher\n\n11) wmreed: Build Y1 Wmreed\n\n\n12) MadWuher: Build B2 Madwuher\n\n13) wmreed: Trade Y3 B3 Wmreed\n\n\n14) MadWuher: Trade B2 Y2 Madwuher\n\n15) wmreed: Discover B3 Wmreed G3 Ruatha\n\n16) MadWuher: Build B2 Madwuher\n\n17) wmreed: Build B2 Ruatha\n\n18) MadWuher: Trade B2 Y2 Madwuher\n\n19) wmreed: Sacrifice Y1 Wmreed\nMove B3 Ruatha Wmreed\n\n20) MadWuher: Build B2 Madwuher\n\n21) wmreed: Build B2 Ruatha\n\n\n22) MadWuher: Sacrifice Y2 Madwuher\nDiscover B1 Madwuher G2 Camelot\nMove Y2 Madwuher Camelot\n\n23) wmreed: Trade B3 Y3 Wmreed\n\n24) MadWuher: Build B3 Camelot\n\n25) wmreed: Trade B2 Y2 Ruatha\n\n26) MadWuher: Trade B1 R1 Camelot\n\n27) wmreed: Build R1 Wmreed\n\n28) MadWuher: Build R2 Camelot\n\n29) wmreed: Move R1 Wmreed Ruatha\n\n\n30) MadWuher: Trade R1 G1 Camelot\n\n31) wmreed: Build B1 Ruatha\n\n32) MadWuher: Build Y1 Madwuher\n\n33) wmreed: Trade B2 R2 Ruatha\n\n34) MadWuher: Build B2 Camelot\n\n35) wmreed: Discover R2 Ruatha G2 Bendon\n\n36) MadWuher: Discover G1 Camelot Y3 Edora\n\n37) wmreed: Build B2 Ruatha\n\n38) MadWuher: Move B3 Camelot Edora\n\n39) wmreed: Move B1 Ruatha Bendon\n\twmreed: oops.\n\n40) MadWuher: Build B3 Camelot\n\n41) wmreed: Build B3 Bendon\n\n\n42) MadWuher: Sacrifice B2 Camelot\nTrade B2 Y2 Madwuher\nTrade Y1 G1 Madwuher\n\n43) wmreed: Trade B3 G3 Bendon\n\n44) MadWuher: Sacrifice Y2 Madwuher\nMove G1 Madwuher Bendon\nMove G1 Edora Bendon\nCatastrophe Bendon G\n\n45) wmreed: Build Y1 Wmreed\n\n46) MadWuher: Build Y1 Madwuher\n\n47) wmreed: Discover Y1 Wmreed B3 Tillek\n\n48) MadWuher: Trade B3 G3 Edora\n\n49) wmreed: Build R1 Ruatha\n\n50) MadWuher: Build G1 Edora\n\n51) wmreed: Build R2 Wmreed\n\n52) MadWuher: Sacrifice G3 Edora\nBuild G1 Edora\nBuild R3 Camelot\nBuild R3 Madwuher\n\n53) wmreed: Move G1 Wmreed Tillek\n\n54) MadWuher: Move R3 Camelot Edora\n\n55) wmreed: Build G2 Tillek\n\n56) MadWuher: Build G3 Edora\n\n57) wmreed: Sacrifice Y2 Ruatha\nMove G1 Tillek Camelot\nMove G1 Camelot Edora\nCatastrophe Edora G\n\n58) MadWuher: Move B3 Camelot Tillek\n\n59) wmreed: Sacrifice G2 Tillek\nBuild Y1 Tillek\nBuild Y2 Wmreed\n\n60) MadWuher: Build Y2 Camelot\n\n61) wmreed: Move Y2 Wmreed Ruatha\n\n62) MadWuher: Sacrifice R2 Madwuher\nAttack Y1 Tillek\nAttack Y1 Tillek\n\n63) wmreed: Discover R1 Ruatha G2 Fort\n\n\n64) MadWuher: Trade B3 G3 Tillek\n\twmreed: hmmm.\n\n65) wmreed: Build B1 Ruatha\n\n66) MadWuher: Build G1 Tillek\n\n67) wmreed: Move B2 Ruatha Fort\n\n68) MadWuher: Sacrifice G3 Tillek\nBuild R2 Edora\nBuild R3 Camelot\nBuild G1 Tillek\n\n69) wmreed: Build B2 Fort\n\n\n70) MadWuher: Move R3 Edora Fort\n\n\twmreed: I feel like anything I'm doing at this point is just prolonging the my inevitable loss.\n\tMadWuher: I will admit that letting me control the R3's and control the flow of much of the Yellow stack caused you some problems. I have a few means of making you submit, but they are not setup yet and may take a few turns. There are ways to disrupt my plans (and maybe thwart them) but I think I have you on the ropes.\n\twmreed: Would you prefer to end the game now, or play it out?\n\tMadWuher: It's up to you. Would you rather start another?\n\twmreed: let's start another. Are you willing to teach as you play?\n\twmreed: thanks for playing!\n\tMadWuher: Sure, I'm happy to teach while we play. (I'll do my best)\n\nHomeworlds Online (SDG# 11384)\nStarted: 2008.7.27, Ended: 2008.8.27\nParticipants: Danner (S), MadWuher (N)\nWinner: Danner\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) Danner: Homeworld R3 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) Danner: Build G1 Danner\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) Danner: Trade G1 Y1 Danner\n\n7) MadWuher: Build G1 Madwuher\n\n8) Danner: Build G1 Danner\n\n9) MadWuher: Trade G1 B1 Madwuher\n\n10) Danner: Trade G1 R1 Danner\n\n11) MadWuher: Build G1 Madwuher\n\n12) Danner: Build R1 Danner\n\n13) MadWuher: Build B1 Madwuher\n\n14) Danner: Discover R1 Danner Y1 Abydos\n\n15) MadWuher: Discover B1 Madwuher G3 Chulak\n\n16) Danner: Move R1 Abydos Chulak\n\n17) MadWuher: Sacrifice B1 Chulak\nTrade G1 B1 Madwuher\n\n18) Danner: Build R2 Danner\n\n19) MadWuher: Discover B1 Madwuher Y3 Earth\n\n20) Danner: Discover R2 Danner Y1 Abydos\n\n21) MadWuher: Build G1 Madwuher\n\n22) Danner: Sacrifice G3 Danner\nBuild R2 Abydos\nBuild R2 Abydos\nBuild R3 Danner\n\n23) MadWuher: Build B1 Madwuher\n\n24) Danner: Build R3 Chulak\n\n25) MadWuher: Discover B1 Madwuher G3 Atlantis\n\n26) Danner: Move R2 Abydos Earth\n\n27) MadWuher: Build Y2 Madwuher\n\n28) Danner: Attack B1N Earth\n\n29) MadWuher: Build Y2 Madwuher\n\n30) Danner: Move R2 Abydos Atlantis\n\n31) MadWuher: Sacrifice B1 Atlantis\nTrade Y2 G2 Madwuher\n\tMadWuher: Wow..... This is going nowhere fast for me.......\n\n32) Danner: Discover R2 Abydos Y3 Tollan\n\n33) MadWuher: Discover G2 Madwuher B3 Madrona\n\n34) Danner: Trade R1 G1 Danner\n\n35) MadWuher: Trade G1 R1 Madwuher\n\n36) Danner: Move R2 Earth Madwuher\n\n37) MadWuher: Sacrifice R1 Madwuher\nAttack R2 Madwuher\n\n38) Danner: Build G1 Danner\n\tDanner: uh oh I forgot this...\n\n39) MadWuher: Move R2 Madwuher Madrona\n\n40) Danner: Build Y1 Danner\n\n41) MadWuher: Move Y1 Madwuher Madrona\n\n42) Danner: Sacrifice Y1 Danner\nDiscover R3 Chulak Y2 Tollana\n\n43) MadWuher: Build G1 Madwuher\n\n44) Danner: Move R3 Tollana Madrona\n\n45) MadWuher: Sacrifice Y1 Madrona\nMove R2 Madrona Madwuher\n\n46) Danner: Attack G2 Madrona\n\n47) MadWuher: Build Y1 Madwuher\n\n48) Danner: Build G2 Madrona\n\tMadWuher: I have to ask. Where did you pickup this 3-pip pyramid denying strategy? Did you lookup a past game from someone? If so, where might I find it. Any other strategies you might suggest looking up?\n\tDanner: As I remember, I have never examined archive (or ongoing) games to learn strategies :)\r\nI think I have seen Jesse or TwoShort using this strategy against me (using discovery to modify stash in order to alter ship building opportunities - I hope I used proper expressions :D)\n\n49) MadWuher: Discover G1 Madwuher B3 Aschen\n\tMadWuher: I have no clue what I can do from this point.\n\n50) Danner: Build G2 Danner\n\n51) MadWuher: Sacrifice Y2 Madwuher\nDiscover G1 Aschen B1 Kallana\nMove G1 Kallana Danner\nCatastrophe Danner G\n\n52) Danner: Build R1 Madrona\n\n53) MadWuher: Build G1 Madwuher\n\n54) Danner: Trade R3 Y3 Madrona\n\n55) MadWuher: Trade G1 Y1 Madwuher\n\tMadWuher: Yup. Here comes the pain.....\n\n56) Danner: Build R3 Madrona\n\n57) MadWuher: Build G1 Madwuher\n\tDanner: not yet. I need some more ships :)\n\n58) Danner: Sacrifice Y3 Madrona\nMove G2 Madrona Madwuher\nMove G2 Madrona Madwuher\nMove R3 Madrona Madwuher\nCatastrophe Madwuher G\n\n59) MadWuher: Trade B1 G1 Madwuher\n\tDanner: well, you have built what I needed\n\tMadWuher: Yup..... thought I'd speed things up a bit\r\n\n\n60) Danner: Attack R2N Madwuher\n\n61) MadWuher: Build Y2 Madwuher\n\n62) Danner: Trade R2 Y2 Madwuher\nCatastrophe Madwuher Y\n\n63) MadWuher: Build G1 Madwuher\n\n64) Danner: Sacrifice R2 Tollan\nAttack G1N Madwuher\nAttack G1N Madwuher\n\tDanner: Thx the game\n\tMadWuher: Thank you for kickin my buttttttt. =)\n\tDanner: :D\r\nIf you want to play more with me, you can challenge me anytime\n\n\nHomeworlds Online (SDG# 11375)\nStarted: 2008.7.29, Ended: 2008.9.30\nParticipants: MikeYarrum (S), Lexicon (N)\nWinner: Lexicon\n\n1) Lexicon: Homeworld G1 B2 Y3\n\n\nHomeworlds Online (SDG# 11387)\nStarted: 2008.8.1, Ended: 2008.9.19\nParticipants: nycavri (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B2 Y3 G3\n\n2) nycavri: Homeworld B1 Y2 G3\n\tnycavri: h b1 y2 g3\n\n3) MadWuher: Build G1 Madwuher\n\tnycavri: Doh!\n\n4) nycavri: Build G1 Nycavri\n\n5) MadWuher: Trade G1 B1 Madwuher\n\n6) nycavri: Discover G1 Nycavri B3 Fr94\n\n7) MadWuher: Build B1 Madwuher\n\n8) nycavri: Build G1 Fr94\n\n9) MadWuher: Discover B1 Madwuher Y1 Edora\n\n10) nycavri: Trade G1 Y1 Fr94\n\n11) MadWuher: Build B2 Madwuher\n\n12) nycavri: Build G1 Nycavri\n\n13) MadWuher: Trade B2 R2 Madwuher\n\n14) nycavri: Trade G1 R1 Nycavri\n\n15) MadWuher: Build G1 Madwuher\n\n16) nycavri: Build R1 Nycavri\n\n17) MadWuher: Move G1 Madwuher Edora\n\n18) nycavri: Discover Y1 Fr94 G1 Hl95\n\n19) MadWuher: Build G2 Madwuher\n\n20) nycavri: Build G2 Nycavri\n\n21) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G3 Madwuher\nBuild G3 Edora\n\n22) nycavri: Trade G2 Y2 Nycavri\n\n23) MadWuher: Sacrifice G2 Madwuher\nBuild B2 Edora\nBuild B2 Madwuher\n\n24) nycavri: Sacrifice G3 Nycavri\nBuild Y1 Hl95\nBuild Y2 Hl95\nBuild Y3 Nycavri\n\n25) MadWuher: D B2 Edora Y3 Bologna\n\n26) nycavri: Sacrifice Y2 Nycavri\nMove Y1 Hl95 Madwuher\nMove Y1 Hl95 Madwuher\n\n27) MadWuher: Sacrifice G3 Edora\nBuild B3 Bologna\nBuild B3 Bologna\nBuild G2 Edora\n\n28) nycavri: Sacrifice G1 Fr94\nBuild Y2 Madwuher\nCatastrophe Madwuher Y\n\n29) MadWuher: Sacrifice B2 Madwuher\nTrade B2 Y2 Bologna\nTrade G2 R2 Edora\n\n30) nycavri: Trade Y3 G3 Nycavri\n\n31) MadWuher: Sacrifice Y2 Bologna\nMove B3 Bologna Nycavri\nMove B3 Bologna Nycavri\n\n32) nycavri: Build G1 Nycavri\n\n33) MadWuher: Sacrifice R2 Madwuher\nAttack G3 Nycavri\nAttack G1 Nycavri\n\n34) nycavri: Attack G1 Nycavri\n\n35) MadWuher: Sacrifice R2 Edora\nAttack R1 Nycavri\nAttack R1 Nycavri\n\n\tMadWuher: Are you up for another? Maybe an unrated game?\n\tnycavri: Thanks, but I keep timing out of games atm - apartment hunting. Maybe when I get on top of my current crop . . .\n\tMadWuher: Good luck with the apartment hunting.\n\nHomeworlds Online (SDG# 11397)\nStarted: 2008.8.11, Ended: 2009.12.9\nParticipants: MikeYarrum (S), skybean (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11472)\nStarted: 2008.8.19, Ended: 2008.8.28\nParticipants: random56 (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) random56: Homeworld R1 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) random56: Build G1 Random56\n\n5) MadWuher: Trade G1 R1 Madwuher\n\n6) random56: Trade G1 Y1 Random56\n\n7) MadWuher: Build R2 Madwuher\n\n8) random56: Build G1 Random56\n\n9) MadWuher: Build G1 Madwuher\n\n10) random56: Discover G1 Random56 B3 Alma\n\n11) MadWuher: Trade R2 Y2 Madwuher\n\n12) random56: Sacrifice G3 Random56\nBuild G1 Alma\nBuild G2 Alma\nBuild Y1 Random56\n\n13) MadWuher: Build R2 Madwuher\n\n14) random56: Trade G2 Y2 Alma\n\n15) MadWuher: Sacrifice Y2 Madwuher\nMove G3 Madwuher Alma\nMove G3 Alma Random56\n\n16) random56: Move G1 Alma Random56\n\n17) MadWuher: Attack G1 Random56\n\n18) random56: Attack G1 Random56\n\n\n19) MadWuher: Sacrifice R2 Madwuher\nAttack G1 Random56\nAttack Y1 Random56\n\n20) random56: Attack G1 Random56\n\n21) MadWuher: Build R2 Madwuher\n\n22) random56: Build Y1 Random56\n\n23) MadWuher: Build Y2 Random56\nCatastrophe Random56 Y\n\n24) random56: Move Y2 Alma Random56\n\n25) MadWuher: Sacrifice R2 Madwuher\nAttack Y2 Random56\nAttack G1 Random56\n\n\trandom56: gg this was my first game in a while. i will do better next time\n\tMadWuher: Not to worry. Want to try again??\n\trandom56: shure\n\nHomeworlds Online (SDG# 11532)\nVariants: "Hard time"\nStarted: 2008.8.24, Ended: 2008.8.25\nParticipants: Danner (S), alexcobo (N)\nWinner: Danner\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) Danner: Homeworld R2 B1 G3\n\n3) alexcobo: Build Y1 Alexcobo\n\n4) Danner: Build G1 Danner\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) Danner: Trade G1 Y1 Danner\n\n7) alexcobo: Trade Y1 B1 Alexcobo\n\n8) Danner: Build Y1 Danner\n\n9) alexcobo: Discover B1 Alexcobo G1 Geeone\n\n10) Danner: Discover Y1 Danner G3 Earth\n\n11) alexcobo: Build B1 Geeone\n\n12) Danner: Build Y2 Earth\n\n13) alexcobo: Build Y2 Alexcobo\n\n14) Danner: Sacrifice Y2 Earth\nMove Y1 Earth Geeone\nMove Y1 Geeone Alexcobo\nCatastrophe Alexcobo Y\n\tDanner: Thx the game\n\n\nHomeworlds Online (SDG# 11546)\nStarted: 2008.8.25, Ended: 2009.12.9\nParticipants: nilesdavid (S), elpepe (N)\nWinner: nilesdavid\n\n\nHomeworlds Online (SDG# 11470)\nStarted: 2008.8.27, Ended: 2008.9.18\nParticipants: MadWuher (S), MatrixFrog (N)\nWinner: MadWuher\n\n1) MatrixFrog: Homeworld B2 G1 Y3\n\n2) MadWuher: Homeworld G1 B3 G3 *\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) MadWuher: Build G1 Madwuher\n\n5) MatrixFrog: Discover Y1 Matrixfrog G3 Apple\n\n6) MadWuher: Trade G3 Y3 Madwuher\n\n7) MatrixFrog: Build Y1 Matrixfrog\n\n8) MadWuher: Build G2 Madwuher\n\n9) MatrixFrog: Discover Y1 Apple G2 Pear\n\n10) MadWuher: Discover G2 Madwuher B2 Edora\n\n11) MatrixFrog: Build Y1 Pear\n\n12) MadWuher: B G2 Edora\n\n13) MatrixFrog: Build Y2 Matrixfrog\n\n14) MadWuher: Build G3 Edora\n\n15) MatrixFrog: Sacrifice Y2 Matrixfrog\nMove Y1 Pear Madwuher\nMove Y1 Pear Madwuher\n\n16) MadWuher: Trade Y3 R3 Madwuher\n\n17) MatrixFrog: Move Y1 Madwuher Edora\n\n18) MadWuher: Attack Y1 Madwuher\n\n19) MatrixFrog: Build Y2 Matrixfrog\n\n20) MadWuher: Trade G2 R2 Edora\n\n21) MatrixFrog: Discover Y1 Edora G3 Efora\n\n22) MadWuher: Trade G2 Y2 Edora\n\n23) MatrixFrog: Trade Y2 R2 Matrixfrog\n\n24) MadWuher: Build G2 Edora\n\n25) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n26) MadWuher: Sacrifice G3 Edora\nBuild G2 Edora\nBuild G2 Madwuher\nBuild G3 Edora\n\n27) MatrixFrog: Discover Y1 Efora B2 Pandora\n\n28) MadWuher: Discover G2 Edora B3 Bologna\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) MadWuher: Sacrifice G3 Edora\nBuild G3 Bologna\nBuild G3 Edora\nBuild G3 Bologna\n\n31) MatrixFrog: Build Y2 Matrixfrog\n\n32) MadWuher: Trade G3 Y3 Bologna\n\n33) MatrixFrog: Discover Y1 Matrixfrog G3 Scarcity\n\n34) MadWuher: Sacrifice G3 Bologna\nBuild G3 Bologna\nBuild Y2 Edora\nBuild Y3 Madwuher\n\n35) MatrixFrog: Build R1 Matrixfrog\n\n36) MadWuher: Sacrifice G3 Edora\nBuild G3 Bologna\nBuild R1 Edora\nBuild R1 Madwuher\n\n37) MatrixFrog: Move Y2 Matrixfrog Scarcity\n\n38) MadWuher: Sacrifice Y3 Madwuher\nMove G3 Bologna Matrixfrog\nMove G3 Bologna Matrixfrog\nMove Y3 Bologna Matrixfrog\n\n39) MatrixFrog: Attack Y3 Matrixfrog\n\n40) MadWuher: Sacrifice R3 Madwuher\nAttack Y3 Matrixfrog\nAttack Y3 Matrixfrog\nAttack R2 Matrixfrog\n\n\tMadWuher: Up to another??? How about an unrated game?\n\nHomeworlds Online (SDG# 11427)\nStarted: 2008.8.29, Ended: 2008.9.5\nParticipants: random56 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\tTwoShort: Howdy\n\n2) random56: Homeworld G1 B3 G3 *\n\n3) TwoShort: Build G1 Twoshort\n\n4) random56: Build G1 Random56\n\n5) TwoShort: Build G2 Twoshort\n\n6) random56: Trade G1 R1 Random56\n\n7) TwoShort: Trade G2 Y2 Twoshort\n\n8) random56: Build R1 Random56\n\n9) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n10) random56: Build R2 Random56\n\n11) TwoShort: Build G1 Twoshort\n\n12) random56: Trade R1 Y1 Random56\n\n13) TwoShort: Build G2 Yolonda\n\n14) random56: Discover R2 Random56 Y2 Dixy\n\n15) TwoShort: Discover G1 Yolonda Y2 Yellonia\n\n16) random56: Move R2 Dixy Yolonda\n\n17) TwoShort: Discover G2 Yolonda Y2 Yonderboy\n\n18) random56: Move G3 Random56 Yonderboy\n\n19) TwoShort: Move G2 Yonderboy Random56\n\n20) random56: Move R1 Random56 Yonderboy\n\n21) TwoShort: Build G2 Random56\n\n22) random56: Build Y1 Random56\n\n23) TwoShort: Trade G2 R2 Random56\n\n24) random56: Move R2 Yolonda Twoshort\n\n25) TwoShort: Sacrifice R2 Random56\nAttack Y1S Random56\nAttack Y1S Random56\n\n\nHomeworlds Online (SDG# 11432)\nStarted: 2008.8.30, Ended: 2008.10.5\nParticipants: Danner (S), MadWuher (N)\nWinner: Danner\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) Danner: Homeworld B1 R2 G3\n\n3) MadWuher: Build G1 Madwuher\n\tDanner: Hello again :)\r\nGood luck!\r\n(Oh, I think you haven't answered my last PM. It was a few months ago :D)\n\n4) Danner: Build G1 Danner\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) Danner: Trade G1 Y1 Danner\n\n7) MadWuher: Build G1 Madwuher\n\n8) Danner: Build G1 Danner\n\n9) MadWuher: Trade G1 B1 Madwuher\n\n10) Danner: Trade G1 B1 Danner\n\n11) MadWuher: Build B2 Madwuher\n\n12) Danner: Build B2 Danner\n\n13) MadWuher: Build G1 Madwuher\n\n14) Danner: Trade B2 R2 Danner\n\n15) MadWuher: Trade B2 R2 Madwuher\n\n16) Danner: Build B2 Danner\n\n17) MadWuher: Build B2 Madwuher\n\n18) Danner: Discover B1 Danner Y3 Sun\n\n19) MadWuher: Discover B1 Madwuher G2 Earth\n\n20) Danner: Build R1 Danner\n\n21) MadWuher: Discover B2 Madwuher Y2 Abydos\n\n22) Danner: Trade R2 G2 Danner\n\n23) MadWuher: Discover B2 Abydos Y3 Chulak\n\n24) Danner: Discover Y1 Danner B3 Tollan\n\n25) MadWuher: Build G1 Madwuher\n\n26) Danner: Build G1 Danner\n\n27) MadWuher: Discover G1 Madwuher Y2 Abydos\n\n28) Danner: Trade G1 Y1 Danner\n\n29) MadWuher: Sacrifice G3 Madwuher\nBuild B2 Chulak\nBuild B3 Earth\nBuild Y2 Madwuher\n\n30) Danner: Discover B2 Danner G3 Tollana\n\n31) MadWuher: Move G1 Abydos Chulak\n\n32) Danner: Build Y2 Danner\n\n33) MadWuher: Move Y1 Madwuher Earth\n\n34) Danner: Sacrifice G2 Danner\nBuild Y2 Danner\nBuild Y3 Tollan\n\n35) MadWuher: Sacrifice Y2 Madwuher\nMove Y1 Earth Chulak\nMove Y1 Chulak Danner\nCatastrophe Danner Y\n\n36) Danner: Discover Y3 Tollan R2 Abydos\n\n37) MadWuher: Sacrifice B2 Chulak\nTrade B3 G3 Earth\nTrade G1 Y1 Madwuher\n\tMadWuher: I so realize I am going to get hurt for this. =P\n\n38) Danner: Move Y3 Abydos Madwuher\n\tDanner: I think it would have been better if you had moved your B3 to your homeworld.\n\tMadWuher: I have been totally behind on my thinking. I thought I'd have one more turn before you'd get to my homeworld. Just thinking if there is anything I can do to fix this.......\r\n\r\nNow I'm just wondering what I can do to not make this timing mistake again.\n\tMadWuher: Still thinking.... sorry for the delay.\n\tDanner: No problem, feel free to continue thinking as long as you want :)\n\tMadWuher: Yeah, you're sitting here thinking "there isn't anything he can possibly do to escape the inevitable" while I'm trying to think if there is any way to grasp victory from the arms of defeat (which I highly doubt).\n\tDanner: Stop reading my mind :D\n\tMadWuher: Yeah. I'm not seeing anything....\n\n39) MadWuher: Sacrifice G3 Earth\nBuild Y1 Madwuher\nBuild Y2 Madwuher\nBuild G1 Chulak\nCatastrophe Madwuher Y\n\n40) Danner: Build R1 Danner\n\tDanner: Hm. Now you can destroy my Y3 at the cost of your big ship. But, if you had traded your B2 to G2, you would be able to do that without sacrificing your big ship...or am I wrong? This idea came to my mind only when I saw your move.\n\tMadWuher: yes, you're right. I should have thought of that. I thought that the g3 was necessary. Boy, am I off my game.\n\n41) MadWuher: Discover G1 Chulak Y2 Madrona\n\n42) Danner: Trade R1 Y1 Danner\n\n43) MadWuher: Discover G1 Madrona B3 Atlantis\n\n44) Danner: Build B2 Tollana\n\n45) MadWuher: Sacrifice G1 Atlantis\nBuild B3 Earth\n\n46) Danner: Build Y1 Danner\n\n47) MadWuher: Trade B3 Y3 Earth\n\n48) Danner: Trade B2 Y2 Tollana\n\tDanner: Wow, great trick\n\n49) MadWuher: Build Y2 Earth\n\n50) Danner: Build Y2 Tollana\n\n51) MadWuher: Move Y3 Earth Madwuher\n\n52) Danner: Trade B1 G1 Sun\n\n53) MadWuher: Build B1 Chulak\n\n54) Danner: Sacrifice G1 Sun\nBuild Y3 Danner\n\n55) MadWuher: Build G1 Chulak\n\n56) Danner: Move Y3 Danner Chulak\n\n57) MadWuher: Move B2 Chulak Earth\n\n58) Danner: Build B2 Tollana\n\n59) MadWuher: Move B2 Earth Tollan\n\n60) Danner: Trade B2 R2 Tollana\n\n61) MadWuher: Move G1 Chulak Earth\n\n62) Danner: Move R1 Danner Chulak\n\tMadWuher: Nice one...\n\n63) MadWuher: Move G1 Earth Madwuher\n\n64) Danner: Attack G1N Chulak\n\n65) MadWuher: Discover B1 Chulak G2 Abydos\n\n66) Danner: Move Y3 Chulak Earth\n\n67) MadWuher: Move Y2 Earth Tollan\n\n68) Danner: Move R2 Tollana Abydos\n\n69) MadWuher: Build B2 Abydos\n\n70) Danner: Attack B2N Abydos\n\n71) MadWuher: Build B3 Abydos\n\tMadWuher: It seems like all I will be doing is running away.....\n\n72) Danner: Move B2 Tollana Abydos\nCatastrophe Abydos B\n\tDanner: Then I will keep chasing you :)\n\n73) MadWuher: Build B1 Earth\n\n74) Danner: Sacrifice R2 Abydos\nAttack B1N Earth\nAttack B1N Earth\n\n75) MadWuher: Discover B2 Tollan G2 Hanka\n\n76) Danner: Trade B1 R1 Earth\n\n77) MadWuher: Move R2 Madwuher Hanka\n\n78) Danner: Move Y3 Earth Tollan\n\tMadWuher: This is an uphill battle......\n\n79) MadWuher: Move Y2 Tollan Earth\n\n80) Danner: Move Y3 Tollan Earth\n\tMadWuher: Planet whose inhabitants and an SG team are wiped out by Nirrti using a virus, except for Cassandra.\r\nA very poignant name for a planet if I do say so myself. =)\n\tMadWuher: Poignant was the wrong word..... I meant to say "a very fitting planet for me to discover." =)\n\n81) MadWuher: Move Y2 Earth Chulak\n\tDanner: :D\n\n82) Danner: Move Y3 Earth Chulak\n\n83) MadWuher: Move Y2 Chulak Earth\n\n84) Danner: Move Y3 Chulak Earth\n\n85) MadWuher: Move Y2 Earth Madwuher\n\n86) Danner: Move Y3 Earth Madwuher\n\n87) MadWuher: Attack Y3 Madwuher\n\tDanner: What to do now?\n\tMadWuher: I dunno, cry?? =P\n\n88) Danner: Sacrifice Y2 Tollana\nMove Y1 Tollan Earth\nMove Y1 Earth Madwuher\nCatastrophe Madwuher Y\n\n89) MadWuher: Trade B2 Y2 Hanka\n\n90) Danner: Build G1 Danner\n\n91) MadWuher: Build R2 Hanka\n\n92) Danner: Sacrifice G3 Danner\nBuild G2 Chulak\nBuild G3 Danner\nBuild G3 Chulak\n\tMadWuher: Yeah, I know what's coming.....\n\tDanner: Yeah, I know you know it :)\n\n93) MadWuher: Move R2 Hanka Madwuher\n\n94) Danner: Sacrifice G3 Chulak\nBuild G3 Chulak\nBuild R3 Chulak\nBuild R3 Earth\n\n95) MadWuher: Build R3 Hanka\n\n96) Danner: Sacrifice Y2 Tollana\nMove G3 Chulak Earth\nMove G3 Earth Madwuher\n\n97) MadWuher: Sacrifice Y2 Hanka\nMove R3 Hanka Madwuher\nMove R2 Hanka Madwuher\nCatastrophe Madwuher R\n\tMadWuher: Well, I think I'm toast...... \r\nLets make this easy for you.... =)\n\n98) Danner: Sacrifice G3 Danner\nBuild G2 Madwuher\nBuild G3 Madwuher\nBuild G3 Danner\nCatastrophe Madwuher G\n\tDanner: oh, thx :)\n\n\tDanner: Thx the game. How about another one?\n\tMadWuher: why don't we run a few unrated ones at the same time and try out a few different strategies in each? Up to a few??\n\tDanner: Well, until 20th october I haven't got much time, and I haven't read the Homeworlds strategies yet. It would be better if we run that experimentals after I read that page.\n\tMadWuher: OK.... I'll catch up with you around the end of the month then. Talk to you later.\n\nHomeworlds Online (SDG# 11622)\nVariants: "Hard time"\nStarted: 2008.9.1, Ended: 2008.9.29\nParticipants: random56 (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) random56: Homeworld B3 G1 R3\n\n3) MadWuher: Build G1 Madwuher\n\n4) random56: Build R1 Random56\n\n5) MadWuher: Build G1 Madwuher\n\n6) random56: Trade R1 Y1 Random56\n\n7) MadWuher: Trade G3 Y3 Madwuher\n\n8) random56: Build Y1 Random56\n\n9) MadWuher: Discover G1 Madwuher B3 Edora\n\n10) random56: Build Y1 Random56\n\n11) MadWuher: Build Y2 Madwuher\n\n12) random56: Trade Y1 R1 Random56\n\n13) MadWuher: Build G2 Edora\n\n14) random56: Build R1 Random56\n\n15) MadWuher: Sacrifice G2 Edora\nBuild G2 Edora\nBuild G2 Madwuher\n\n16) random56: Discover R3 Random56 Y2 Nephi\n\n17) MadWuher: Trade Y3 R3 Madwuher\n\n18) random56: Build R2 Random56\n\n19) MadWuher: Sacrifice G2 Edora\nBuild G2 Edora\nBuild G2 Madwuher\n\n20) random56: Discover R1 Random56 Y2 Alma\n\n21) MadWuher: Discover G2 Madwuher Y3 Bologna\n\n22) random56: Move R3 Nephi Bologna\n\n23) MadWuher: Sacrifice G2 Bologna\nBuild G2 Madwuher\nBuild G3 Edora\n\trandom56: move r3 Nephi bologna\n\n24) random56: Move R1 Alma Edora\n\n25) MadWuher: Trade G2 R2 Edora\n\n26) random56: Trade R2 G2 Random56\n\n27) MadWuher: Trade G1 Y1 Edora\n\n28) random56: Build G1 Random56\n\n29) MadWuher: Attack R1 Edora\n\n30) random56: Discover G1 Random56 Y2 Steve\n\n31) MadWuher: Sacrifice Y2 Madwuher\nDiscover G2 Madwuher G3 Yogurt\nDiscover G2 Madwuher G3 Raisin\n\n32) random56: Build R2 Random56\n\n33) MadWuher: Sacrifice G2 Raisin\nBuild G2 Edora\nBuild G3 Madwuher\n\n34) random56: Move R1 Random56 Steve\n\n35) MadWuher: Move G3 Edora Steve\n\n36) random56: Sacrifice G2 Random56\nBuild R2 Steve\nBuild R3 Steve\n\n37) MadWuher: Sacrifice R2 Edora\nAttack R3 Steve\nAttack R2 Steve\n\n38) random56: Move R3 Bologna Steve\nCatastrophe Steve R\n\n39) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\nBuild Y2 Edora\n\n40) random56: Build Y2 Random56\n\n41) MadWuher: Move G3 Steve Random56\n\n\nHomeworlds Online (SDG# 11446)\nStarted: 2008.9.3, Ended: 2009.12.9\nParticipants: bassbum (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 11436)\nVariants: "Hard time"\nStarted: 2008.9.7, Ended: 2008.10.7\nParticipants: Jesse (S), AnalogKid (N)\nWinner: Jesse\n\n1) AnalogKid: Homeworld B2 R1 G3\n\n2) Jesse: Homeworld B1 Y3 G3\n\tAnalogKid: Hi!\r\n\r\nThis is my first time playing on SDG (and my first Homeworlds game) so I am just learning how all of this works. :)\n\tJesse: Hello. Welcome to SDG, and I hope you enjoy Homeworlds. It can be a difficult game to wrap your head around at first, so feel free to ask about anything that comes up.\n\n3) AnalogKid: Build G1 Analogkid\n\tAnalogKid: Thanks. I've been reading up on Homeworlds so I hope that I won't have too many questions about how to play. (Playing well is different issue ^_^ )\n\n4) Jesse: Build G1 Jesse\n\n\n5) AnalogKid: Trade G3 Y3 Analogkid\n\n6) Jesse: Trade G1 B1 Jesse\n\n7) AnalogKid: Build G1 Analogkid\n\n8) Jesse: Build B1 Jesse\n\n9) AnalogKid: Discover G1 Analogkid B3 Aldebaran\n\n10) Jesse: Discover B1 Jesse G2 Pollux\n\n11) AnalogKid: Trade Y3 B3 Analogkid\n\n12) Jesse: Build B2 Pollux\n\n\n13) AnalogKid: Build B2 Analogkid\n\n14) Jesse: Build B3 Pollux\n\n15) AnalogKid: Trade G1 Y1 Analogkid\n\n16) Jesse: Trade B3 Y3 Pollux\n\n17) AnalogKid: Move B2 Analogkid Aldebaran\n\tJesse: I think you'll find that giving up your green there will make things difficult in the upcoming turns. It's usually better to diversify when you have the chance.\n\n18) Jesse: Build B3 Pollux\n\n19) AnalogKid: Build G1 Aldebaran\n\tAnalogKid: I am in central Ohio and we are without electricity now and my laptop battery is almost gone so I will not be able to play for a few days ...\n\tJesse: I am also in central Ohio. I hope your power is restored soon, if it is not already.\n\tAnalogKid: Hello, I'm back now. Sorry for the one week delay. Power was out until Saturday and it then took a couple of days for things to return to normal.\n\n20) Jesse: Trade B3 Y3 Pollux\n\tAnalogKid: I see a little better now what you meant about giving up my green in my home system. I was a little focused on issues of blue though ...\n\tJesse: Yeah, blue was awkward for you, which is why I rushed it. You did the right thing, getting in. You don't necessarily need a lot of blue to stop me from abusing it, so you would probably have been better off trading your B3 back to yellow, rather than your green. Another possibility would be building another green first, and trading that one. I'd lean towards trading the B3, though, since you don't want to keep it blue in the long term anyway.\n\tJesse: t b3 y3 pollux\n\tJesse: Grr. I hate when I do that. XD\n\n21) AnalogKid: Move Y1 Analogkid Aldebaran\n\n22) Jesse: Discover B2 Pollux G3 Markab\n\n23) AnalogKid: Trade B3 G3 Analogkid\n\tJesse: Do you see the immediate threat I'm making?\n\tAnalogKid: No -- I'm not sure that I see any "immediate threat" but I can foresee a few possible problems 3-4 turns from now ...\n\n24) Jesse: Build B3 Pollux\n\tJesse: That was a good move, because I was threatening to destroy your large ship and half your home system. With a Y3 sacrifice, I could make three moves: Move my B1 from Pollux to Markab, then move the B1 and B2 from Markab to your home system. That would have left four blue pieces there, so I could call a catastrophe to send them all back to the global reserve.\n\n25) AnalogKid: Discover B2 Aldebaran G2 Altair\n\tAnalogKid: Well, that was lucky then because I thought it would take at least two turns for you to do that :) And it would have ended the game unless I had moved another ship home. I had no idea that you could move the same ship more than once in a turn -- it had never occurred to me.\n\n26) Jesse: Build B3 Markab\n\n27) AnalogKid: Move Y1 Aldebaran Pollux\n\tJesse: It's an easy thing for a beginner to overlook or not realize, which is why I'm pointing it out.\n\tAnalogKid: Thanks :)\n\n28) Jesse: Trade Y3 R3 Pollux\n\n29) AnalogKid: Build Y1 Pollux\n\tJesse: I may not hold back much, but I do believe in helping new players with advice and second chances. :)\n\n30) Jesse: Move Y3 Pollux Markab\n\n31) AnalogKid: Move Y1 Pollux Markab\n\n32) Jesse: Trade B2 R2 Markab\n\n33) AnalogKid: Move Y1 Pollux Markab\n\n34) Jesse: Move Y3 Markab Altair\n\n35) AnalogKid: Build B2 Altair\n\n36) Jesse: Sacrifice R3 Pollux\nAttack B2 Altair\nAttack B2 Altair\nAttack Y1 Markab\n\n37) AnalogKid: Move Y1 Markab Analogkid\n\tJesse: Sending in your little yellows to try to blow up my Y3 was a nice idea, but it didn't have much chance of working, and it left them vulnerable to capture when I got some red ships. On the other hand, with your material disadvantage pretty much any course available to you is unlikely to help much.\n\tAnalogKid: Hello - sorry for the long delay! BGF is now over so I should have more time now to play on SDG.\n\tAnalogKid: Well, I did not necessarily think that I would be successful but I was trying to disrupt a perceived threat. Of course, I did not think my efforts would end in my being completely shut out of blue! (BTW, I had a chance to play Homeworlds last night with another local player at BGF).\n\n38) Jesse: Sacrifice Y3 Altair\nMove B3 Pollux Markab\nMove B3 Markab Analogkid\nMove B3 Markab Analogkid\n\tJesse: Cool. How'd it go?\n\n39) AnalogKid: Attack B3S Analogkid\n\tAnalogKid: Well, I lost half of my homeworld very early in the game, but then both my opponent and I floundered around for awhile, uncertain of what to do. Finally, I saw an opening, got lucky, and managed to destroy the only ship in the opposing homeworld.\n\n40) Jesse: Sacrifice R2 Markab\nAttack G3 Analogkid\nAttack B3 Analogkid\n\tJesse: Yeah, in the middle game it can be difficult for beginning players to figure out what they need to be doing.\n\n41) AnalogKid: Sacrifice G1 Aldebaran\nBuild Y1 Analogkid\n\n42) Jesse: Trade B3 R3 Analogkid\n\n\n43) AnalogKid: Trade Y1 G1 Analogkid\n\tAnalogKid: Well, looks like this is just about over ... thanks for the game ^_^\n\n44) Jesse: Sacrifice R3 Analogkid\nAttack G1 Analogkid\nAttack Y1 Analogkid\nPass\n\tJesse: My pleasure. I hope it's been educational.\n\n\nHomeworlds Online (SDG# 11695)\nVariants: "Unrated, Hard time"\nStarted: 2008.9.10, Ended: 2008.9.10\nParticipants: rikko (S), demerzel (N)\nWinner: rikko\n\n1) demerzel: Homeworld G3 B1 R3\n\n2) rikko: Homeworld G2 R1 B3\n\n3) demerzel: Build R1 Demerzel\n\n4) rikko: Build B1 Rikko\n\n5) demerzel: Trade R1 Y1 Demerzel\n\n6) rikko: Build B1 Rikko\n\n7) demerzel: Discover R3 Demerzel Y2 Dagobah\n\n8) rikko: Trade B1 Y1 Rikko\n\n9) demerzel: Discover R3 Dagobah Y3 Corusan\n\n10) rikko: Trade B1 R1 Rikko\n\n11) demerzel: Move R3 Corusan Rikko\n\n12) rikko: Attack R3 Rikko\n\n13) demerzel: Build Y1 Demerzel\n\n14) rikko: Discover B3 Rikko Y3 Dagobah\n\n15) demerzel: Build Y2 Demerzel\n\n16) rikko: Move R3 Rikko Dagobah\n\n17) demerzel: Trade Y2 R2 Demerzel\n\n18) rikko: Discover R3 Dagobah Y2 Corusan\n\n19) demerzel: Trade Y1 R1 Demerzel\n\n20) rikko: Move R1 Rikko Dagobah\n\n21) demerzel: Trade R1 G1 Demerzel\n\n22) rikko: Move B3 Dagobah Corusan\n\n23) demerzel: Move Y1 Demerzel Corusan\n\n24) rikko: Move R3 Corusan Demerzel\n\n25) demerzel: Build R1 Demerzel\n\n26) rikko: Attack R1N Demerzel\n\n27) demerzel: Attack R1 Demerzel\n\n28) rikko: Move B3 Corusan Demerzel\n\n29) demerzel: Move Y1 Corusan Dagobah\n\n30) rikko: Sacrifice R3 Demerzel\nAttack R1N Demerzel\nAttack R2N Demerzel\nAttack G1N Demerzel\n\n\nHomeworlds Online (SDG# 11644)\nStarted: 2008.9.13, Ended: 2008.9.16\nParticipants: ben (S), MikeYarrum (N)\nWinner: ben\n\n\nHomeworlds Online (SDG# 11715)\nVariants: "Unrated, Hard time"\nStarted: 2008.9.15, Ended: 2008.9.30\nParticipants: wmreed (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y1 B2 G3\n\twmreed: Currently, my favorite Homeworld is a blue-green combo. I think it's best because it allows me to build and change no matter what else happens. I've lately been starting with a Y3 ship, to take advantage of an opponent's careless Bluebird mistake. What are your thoughts on openings?\n\n2) wmreed: Homeworld B3 G2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) wmreed: Build Y1 Wmreed\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) wmreed: Build Y2 Wmreed\n\n\n7) MadWuher: Build G1 Madwuher\n\n8) wmreed: Trade Y1 G1 Wmreed\n\n9) MadWuher: Discover G1 Madwuher Y3 Edora\n\n10) wmreed: Discover Y2 Wmreed R1 Arthur\n\n11) MadWuher: Discover G1 Edora Y1 Bologna\n\n12) wmreed: Build Y2 Wmreed\n\n13) MadWuher: Move G1 Bologna Wmreed\n\n14) wmreed: Trade Y2 R2 Wmreed\n\n15) MadWuher: Build G1 Wmreed\nCatastrophe Wmreed G\n\n16) wmreed: Move Y2 Arthur Wmreed\n\n\n17) MadWuher: Trade Y1 R1 Madwuher\n\twmreed: nicely done. how foolish of me.\n\n18) wmreed: T Y2 G2 Wmreed\n\n19) MadWuher: Build G1 Madwuher\n\n20) wmreed: Build Y1 Wmreed\n\n\n21) MadWuher: Discover G1 Madwuher Y3 Edora\n\n\tMadWuher: Wow, I never realized how quickly the Hard Time variant sets in. I've played quite a few hard time games and this is only the second (as I remember) that triggered hard time. \n\nHomeworlds Online (SDG# 11315)\nVariants: "Sinister, Hard time"\nStarted: 2008.9.15, Ended: 2008.10.20\nParticipants: alexcobo (S), smilingra (W), MadWuher (N), random56 (E)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) random56: Homeworld G1 B3 R3\n\n3) alexcobo: Homeworld G3 B2 Y3\n\trandom56: this is a long time comming\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) MadWuher: Build G1 Madwuher\n\tsmilingra: sorry guys... just had my first baby and hadn't logged in recently. gl to you all\n\n6) random56: Build R1 Random56\n\n7) alexcobo: Build Y1 Alexcobo\n\n8) MadWuher: Trade G1 Y1 Madwuher\n\n9) random56: Build R1 Random56\n\n10) alexcobo: Trade Y1 R1 Alexcobo\n\n11) MadWuher: Build Y1 Madwuher\n\tMadWuher: Quick question: Do your accounts all organize this game in the "opponents time is up" section?\n\trandom56: \n\n12) random56: Trade R1 G1 Random56\n\n13) alexcobo: Build R1 Alexcobo\n\n14) MadWuher: Trade Y1 R1 Madwuher\n\n15) random56: Build G1 Random56\n\n16) alexcobo: Trade R1 B1 Alexcobo\n\n17) MadWuher: Build G1 Madwuher\n\n18) alexcobo: Discover R1 Alexcobo Y1 Waypoint\n\n19) MadWuher: Build G1 Madwuher\n\n20) alexcobo: Discover R1 Waypoint Y2 Wp\n\n21) MadWuher: Discover G1 Madwuher B3 Edora\n\n22) alexcobo: Move R1 Wp Random56\n\n23) MadWuher: Build G2 Edora\n\n24) alexcobo: Attack R1E Random56\n\n25) MadWuher: Build G2 Edora\n\n26) alexcobo: Attack G1E Random56\n\talexcobo: I am trying to attack the r1 ship at random56 system, but I get this message "The R1 ship could not be found at random56 system"\n\tMadWuher: Stars and Ships are referred to by their colour and size (eg. R1, Y3) with the sole exception of the attack command. In this case, the ship must also be specified as belonging to a particular player by appending that player's seat designation (eg. G2S, B1E). Systems are referred to by their given names and are case insensitive.\n\n27) MadWuher: Trade G2 Y2 Edora\n\talexcobo: Thank you for your help!\r\nI cancelled the call to Admin\n\n28) alexcobo: Attack G1E Random56\n\n29) MadWuher: Build G2 Edora\n\n30) alexcobo: Trade G1 Y1 Random56\n\n31) MadWuher: Trade G1 R1 Edora\n\n32) alexcobo: Trade Y3 R3 Alexcobo\n\n33) MadWuher: Build R2 Edora\n\n34) alexcobo: Build R2 Alexcobo\n\n35) MadWuher: Build R2 Madwuher\n\n36) alexcobo: Build Y1 Alexcobo\n\n37) MadWuher: Trade R2 Y2 Madwuher\n\n\n38) alexcobo: Discover R1 Random56 G2 Aldebaran\n\n39) MadWuher: Move R2 Edora Aldebaran\n\n40) alexcobo: Sacrifice Y1 Alexcobo\nDiscover R1 Aldebaran G1 Antares\n\n41) MadWuher: Build R2 Edora\n\n42) alexcobo: Build R2 Antares\n\n43) MadWuher: Trade R1 Y1 Edora\n\n44) alexcobo: Build Y1 Random56\n\n45) MadWuher: Trade Y1 B1 Edora\n\n46) alexcobo: Build Y1 Alexcobo\n\n47) MadWuher: Sacrifice Y1 Madwuher\nMove B1 Edora Aldebaran\n\n48) alexcobo: Discover R3 Alexcobo Y1 Waypoint\n\n49) MadWuher: Sacrifice G2 Edora\nBuild Y2 Edora\nBuild Y2 Madwuher\n\n50) alexcobo: Move R3 Waypoint Aldebaran\n\n51) MadWuher: Sacrifice G2 Edora\nBuild R1 Aldebaran\nBuild R2 Aldebaran\nCatastrophe Aldebaran R\n\n52) alexcobo: Build B1 Alexcobo\n\n53) MadWuher: Sacrifice Y2 Edora\nMove B1 Aldebaran Antares\nMove B1 Antares Alexcobo\nCatastrophe Alexcobo B\n\n54) alexcobo: Trade G1 B1 Random56\n\n55) MadWuher: Move G3 Madwuher Alexcobo\n\n56) alexcobo: Build R1 Alexcobo\n\n57) MadWuher: Build G1 Alexcobo\n\n58) alexcobo: Build Y1 Alexcobo\n\n59) MadWuher: Sacrifice G3 Alexcobo\nBuild G1 Alexcobo\nBuild G2 Alexcobo\nBuild G2 Madwuher\nCatastrophe Alexcobo G\n\n\nHomeworlds Online (SDG# 11769)\nVariants: "Hard time"\nStarted: 2008.9.23, Ended: 2008.10.1\nParticipants: alexcobo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) alexcobo: Homeworld G2 B3 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) alexcobo: Trade Y1 B1 Alexcobo\n\n7) MadWuher: Build G1 Madwuher\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) MadWuher: Trade G1 R1 Madwuher\n\n10) alexcobo: Discover B1 Alexcobo G1 Scorpia\n\n11) MadWuher: Build G1 Madwuher\n\n12) alexcobo: Build B1 Scorpia\n\n13) MadWuher: Build G1 Madwuher\n\n14) alexcobo: Build B1 Scorpia\n\n15) MadWuher: Discover G1 Madwuher B3 Edora\n\n16) alexcobo: Trade B1 Y1 Scorpia\n\n17) MadWuher: Build G2 Edora\n\n18) alexcobo: Build Y2 Scorpia\n\n19) MadWuher: Sacrifice G2 Edora\nBuild G2 Edora\nBuild G2 Madwuher\n\n20) alexcobo: Build Y2 Scorpia\n\n21) MadWuher: Discover G2 Madwuher Y3 Bologna\n\n22) alexcobo: Trade Y2 R2 Scorpia\n\n23) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild G3 Edora\nBuild G3 Bologna\n\n24) alexcobo: Build Y2 Scorpia\n\n25) MadWuher: Trade G3 Y3 Edora\n\n26) alexcobo: Build Y2 Alexcobo\n\n27) MadWuher: Discover G2 Bologna R1 Camelot\n\n28) alexcobo: Build R2 Scorpia\n\n29) MadWuher: Sacrifice G3 Bologna\nBuild G3 Camelot\nBuild G3 Edora\nBuild Y3 Madwuher\n\n30) alexcobo: Build B1 Scorpia\n\n31) MadWuher: Sacrifice Y3 Madwuher\nMove Y3 Edora Camelot\nMove Y3 Camelot Alexcobo\nMove G3 Camelot Alexcobo\nCatastrophe Alexcobo Y\n\n\nHomeworlds Online (SDG# 11780)\nVariants: "Hard time"\nStarted: 2008.9.23, Ended: 2008.12.11\nParticipants: wyons (S), mneme (N)\nWinner: wyons\n\n1) mneme: Homeworld R1 B2 G3\n\twyons: Hi there and goodness- you bring a lot of spectators with you!\n\n2) wyons: Homeworld B1 R3 G3\n\tmneme: So it seems. I'm not quite sure where they came from -- maybe my matches against twoshort? (almost beat him last time, too)\n\tmneme: (hmm. Actually, are you sure? Don't see any right now)\n\n3) mneme: Build G1 Mneme\n\twyons: yep, my display is showing 10 spectators...\n\tmneme: ah, it is now. w3rd; didn't see them before.\n\n4) wyons: Build G1 Wyons\n\n5) mneme: Trade G1 R1 Mneme\n\n6) wyons: Trade G1 R1 Wyons\n\n7) mneme: Build R2 Mneme\n\n8) wyons: Build R2 Wyons\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) wyons: Trade R2 Y2 Wyons\n\n11) mneme: Build R2 Mneme\n\n12) wyons: Build R2 Wyons\n\n13) mneme: Discover R2 Mneme G3 Bootiful\n\n14) wyons: Discover R2 Wyons G2 Chillies\n\n15) mneme: Discover R1 Mneme Y3 Poet\n\n16) wyons: Trade R1 B1 Wyons\n\n17) mneme: Build Y1 Mneme\n\n18) wyons: Build B1 Wyons\n\n19) mneme: Trade Y2 B2 Mneme\n\n20) wyons: Discover B1 Wyons B2 Trueblues\n\n21) mneme: Move B2 Mneme Bootiful\n\n22) wyons: Build B3 Wyons\n\n23) mneme: Build B3 Bootiful\n\n24) wyons: Move B1 Wyons Chillies\n\n25) mneme: Trade B2 Y2 Bootiful\n\n26) wyons: Build B2 Chillies\n\n27) mneme: Discover Y1 Mneme B3 Holdover\n\n28) wyons: Trade B3 Y3 Wyons\n\n29) mneme: Build Y1 Bootiful\n\n30) wyons: Build B3 Chillies\n\n31) mneme: Move B3 Bootiful Chillies\nCatastrophe Chillies B\n\n32) wyons: Move Y3 Wyons Chillies\n\n33) mneme: Move Y1 Bootiful Mneme\n\tmneme: bah. I was better off making you make that move. \n\n34) wyons: Build Y1 Wyons\n\twyons: hmm yes, I think you are probably right. But there is still everything to play for.\n\n35) mneme: Sacrifice G3 Mneme\nBuild Y2 Holdover\nBuild Y3 Mneme\nBuild R1 Bootiful\n\n36) wyons: Move Y3 Chillies Bootiful\n\n37) mneme: Sacrifice Y2 Bootiful\nMove R1 Bootiful Trueblues\nDiscover R2 Bootiful Y2 Desert\n\n38) wyons: Sacrifice B1 Trueblues\nTrade Y2 R2 Wyons\n\n39) mneme: Trade R1 G1 Trueblues\n\n40) wyons: Build Y2 Wyons\n\n41) mneme: Trade Y2 G2 Holdover\n\n42) wyons: Build Y2 Bootiful\n\n43) mneme: Discover Y1 Mneme R3 Haze\n\n44) wyons: Trade R2 G2 Wyons\n\n45) mneme: Build G1 Trueblues\n\n46) wyons: Discover G2 Wyons B2 Neverbeseen\n\n47) mneme: Trade G1 B1 Trueblues\n\n48) wyons: Trade Y1 B1 Wyons\n\n49) mneme: Build Y1 Holdover\n\n50) wyons: Build G1 Wyons\n\n51) mneme: Trade G1 R1 Trueblues\n\n52) wyons: Trade G3 R3 Wyons\n\n53) mneme: Sacrifice Y1 Haze\nMove R1 Trueblues Wyons\n\n54) wyons: Build Y1 Bootiful\n\n55) mneme: Trade Y3 G3 Mneme\n\n56) wyons: Trade R3 Y3 Wyons\n\twyons: I'm enjoying this. You are a tough nut.\n\tmneme: Thanks. It's a good game.\r\nI do try not to make too many mistakes.\n\n57) mneme: Sacrifice G2 Holdover\nBuild R2 Wyons\nBuild R3 Desert\n\n58) wyons: Build R3 Chillies\n\n59) mneme: Move Y1 Holdover Mneme\n\n60) wyons: Move Y1 Bootiful Chillies\n\n61) mneme: Attack B1 Wyons\n\n62) wyons: Sacrifice R2 Chillies\nAttack R2N Wyons\nAttack B1N Wyons\n\n63) mneme: Move R2 Desert Wyons\nCatastrophe Wyons R\n\n64) wyons: Trade Y2 R2 Wyons\n\n65) mneme: Build Y2 Mneme\n\n66) wyons: Move B1 Wyons Bootiful\n\n67) mneme: Sacrifice Y1 Mneme\nDiscover B1 Trueblues G3 Pretty\n\n68) wyons: Move R3 Chillies Pretty\n\twyons: that was your turn to put me in check!\n\n69) mneme: Sacrifice Y1 Holdover\nDiscover B1 Pretty G1 Giggle\n\tmneme: pretty much.\n\n70) wyons: Sacrifice Y1 Chillies\nMove R3 Pretty Giggle\n\tmneme: bah. You're too good a player for me to try that trick and hope you won't see the escape.\n\n71) mneme: Sacrifice B1 Giggle\nTrade R1 B1 Poet\n\twyons: this is very close, I think.\n\n72) wyons: Move Y2 Bootiful Giggle\n\tmneme: Indeed.\n\n73) mneme: Build G1 Mneme\n\n74) wyons: Build G2 Wyons\n\n75) mneme: Build Y1 Mneme\n\n76) wyons: Build Y1 Bootiful\n\n77) mneme: Discover Y2 Mneme G3 Emerald\n\n78) wyons: Build Y1 Giggle\n\n79) mneme: Move G1 Mneme Emerald\n\n80) wyons: Build G2 Neverbeseen\n\n81) mneme: Move G1 Emerald Mneme\n\n82) wyons: Sacrifice G2 Neverbeseen\nBuild R1 Giggle\nBuild R1 Wyons\n\n83) mneme: Move G1 Mneme Poet\n\n84) wyons: Build G2 Neverbeseen\n\n85) mneme: Move G1 Poet Desert\n\n86) wyons: Sacrifice Y2 Giggle\nMove R3 Giggle Emerald\nMove R2 Wyons Poet\n\n87) mneme: Sacrifice Y2 Emerald\nMove B1 Poet Desert\nPass\n\n88) wyons: Sacrifice G2 Neverbeseen\nBuild Y2 Giggle\nBuild Y2 Giggle\n\n89) mneme: Build G2 Mneme\n\n90) wyons: Sacrifice Y3 Bootiful\nMove Y1 Bootiful Desert\nMove Y1 Giggle Desert\nMove Y2 Giggle Desert\nCatastrophe Desert Yellow\n\n91) mneme: Trade G2 B2 Mneme\n\n92) wyons: Build B1 Bootiful\n\n93) mneme: Discover B2 Mneme Y3 Knife\n\twyons: that should at least churn things up a bit. I think I have been playing more like a boar constrictor than a cobra....\n\tmneme: Don't sell yourself short -- I got nothing here. But I can hope you'll blunder.\r\n\n\n94) wyons: Build B3 Bootiful\n\n95) mneme: Build G1 Mneme\n\twyons: and of course a blunder is well possible.\n\n96) wyons: Sacrifice Y2 Giggle\nMove R3 Emerald Mneme\nMove B3 Bootiful Mneme\n\n\tmneme: good game\n\twyons: oh it was a super game - I dont mind admitting that I totted up hours looking at it. You also taught me a bit- particularly the value of g2s. And I thought you stemmed off the blue monopoly attack masterfully. At the end of course you were stuck with a fork between developing blue or red and elected blue- I think developing red would also not have worked at that stage (because of what I could then do with blue). Thanks very much though, I really enjoyed it!\n\tmneme: I'm glad. The endgame was a bit painful (yay, walking wounded), but yeah -- it was superb.\r\n\r\nI love g2s, yeah -- they let you threaten larges without saccing your own larges -- which does -so- many things, even aside from, you know, the ability to get more larges.\r\n\n\nHomeworlds Online (SDG# 11819)\nVariants: "Hard time"\nStarted: 2008.9.26, Ended: 2008.10.29\nParticipants: Keith (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld R1 B2 G3\n\n2) Keith: Homeworld Y2 B3 G3\n\tDanner: Hi! Good luck!\n\tKeith: Thank you. May you do your best.\n\n3) Danner: Build G1 Danner\n\n4) Keith: Build G1 Keith\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Keith: Trade G1 Y1 Keith\n\n7) Danner: Build G1 Danner\n\n8) Keith: Build G1 Keith\n\n9) Danner: Trade G1 R1 Danner\n\n10) Keith: Trade G1 R1 Keith\n\n11) Danner: Build R2 Danner\n\n12) Keith: Build R2 Keith\n\n13) Danner: Discover R2 Danner Y3 Sun\n\n14) Keith: Build G1 Keith\n\n15) Danner: Build G1 Danner\n\n16) Keith: Discover G1 Keith Y1 Kiro\n\n17) Danner: Build Y2 Danner\n\n18) Keith: Move R2 Keith Kiro\n\n19) Danner: Discover Y1 Danner G3 Earth\n\n20) Keith: Move R2 Kiro Earth\n\n21) Danner: Sacrifice G3 Danner\nBuild Y2 Earth\nBuild Y3 Earth\nBuild Y3 Danner\n\n22) Keith: Attack Y2 Earth\n\tKeith: Oh my. I knew my rating no longer relfected my Homeworlds ability. I have just been too inactive. However, I thought I would still be able to give you more of a challenge than this.\n\n23) Danner: Sacrifice R2 Sun\nAttack R2 Earth\nAttack Y2 Earth\n\n24) Keith: Discover Y1 Keith B1 Dimm\n\tDanner: If you are interested, I can give you a link where Homeworlds strategies can be found, so you can regain your abilities. (In fact, I haven't read them due to lack of time, but I'm going to do so)\n\tKeith: I would like to have the link. I have read what I could find on strategy. The area i am primarily falling short in from being out of practice is not being able to see 4+ moves ahead anymore.\n\n25) Danner: Move Y3 Earth Dimm\n\tDanner: http://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy\r\nIt's from MadWuher.\n\n\tKeith: Thanks for the link. I am too far gone here. By the way I evaluate material you have about a 3x material advantage and are about to make significant gains.\r\n\r\nIf I decide to reinvest in Homeworlds I will come looking for a rematch.\n\tDanner: Thanks for the game. You can challenge me anytime.\n\nHomeworlds Online (SDG# 11745)\nStarted: 2008.10.3, Ended: 2008.10.29\nParticipants: MadWuher (S), MatrixFrog (N)\nWinner: MadWuher\n\n1) MatrixFrog: Homeworld B2 G1 Y3\n\n2) MadWuher: Homeworld R1 B3 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\n4) MadWuher: Build G1 Madwuher\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) MatrixFrog: Discover Y1 Matrixfrog G3 Time\n\n8) MadWuher: Build Y2 Madwuher\n\n9) MatrixFrog: Build Y2 Time\n\n10) MadWuher: Build G1 Madwuher\n\n11) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n12) MadWuher: Discover G1 Madwuher B2 Edora\n\n13) MatrixFrog: Build Y1 Matrixfrog\n\n14) MadWuher: Move Y2 Madwuher Edora\n\n15) MatrixFrog: Build B1 Matrixfrog\n\n16) MadWuher: Build Y2 Madwuher\n\n17) MatrixFrog: Trade B1 R1 Matrixfrog\n\n18) MadWuher: Build Y3 Edora\n\n19) MatrixFrog: Build B1 Matrixfrog\n\n20) MadWuher: Trade Y1 R1 Madwuher\n\n21) MatrixFrog: Trade B1 G1 Matrixfrog\n\n22) MadWuher: Build G2 Madwuher\n\n23) MatrixFrog: Discover Y2 Time G2 Space\n\n24) MadWuher: Discover G1 Edora Y3 Bologna\n\n25) MatrixFrog: Build B1 Matrixfrog\n\n26) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Bologna\nBuild G3 Madwuher\nBuild Y1 Madwuher\n\n27) MatrixFrog: Discover G1 Matrixfrog G3 Dreams\n\n28) MadWuher: Move R1 Madwuher Edora\n\n29) MatrixFrog: Move Y1 Time Space\n\n30) MadWuher: Sacrifice Y2 Edora\nMove G2 Bologna Edora\nDiscover G2 Edora G3 Camelot\n\n31) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove Y1 Space Madwuher\nMove Y2 Space Madwuher\nDiscover G1 Dreams Y2 Cheese\nCatastrophe Madwuher Y\n\n32) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Camelot\nBuild G3 Bologna\nBuild G3 Madwuher\n\n33) MatrixFrog: Move G1 Cheese Camelot\nCatastrophe Camelot G\n\n34) MadWuher: Move G3 Bologna Matrixfrog\n\n35) MatrixFrog: Move B1 Matrixfrog Bologna\n\n36) MadWuher: Sacrifice R1 Edora\nAttack R1 Matrixfrog\n\n\tMadWuher: Thanks for the game. Want to play another???\n\tMatrixFrog: To be honest... not really\n\nHomeworlds Online (SDG# 11707)\nStarted: 2008.10.4, Ended: 2009.10.13\nParticipants: MikeYarrum (S), Nupanick (N)\nWinner: Nupanick\n\n1) Nupanick: Homeworld G3 B1 Y3\n\n\tNupanick: Yeah... You start lots of games.\n\nHomeworlds Online (SDG# 11474)\nStarted: 2008.10.6, Ended: 2008.11.6\nParticipants: MadWuher (S), hasse (N)\nWinner: MadWuher\n\n1) hasse: Homeworld B1 G3 Y3\n\n2) MadWuher: Homeworld R1 B2 G3\n\n3) hasse: Build Y1 Hasse\n\n4) MadWuher: Build G1 Madwuher\n\n5) hasse: Discover Y3 Hasse G2 Qwerty\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) hasse: Build Y1 Hasse\n\n8) MadWuher: Build Y2 Madwuher\n\n9) hasse: Trade Y1 R1 Hasse\n\n10) MadWuher: Build G1 Madwuher\n\n11) hasse: Build R1 Hasse\n\n12) MadWuher: Discover Y2 Madwuher B3 Edora\n\n13) hasse: Move R1 Hasse Qwerty\n\n14) MadWuher: Move G1 Madwuher Edora\n\n15) hasse: Move Y3 Qwerty Edora\n\n16) MadWuher: Discover Y2 Edora B2 Bologna\n\n17) hasse: Build Y1 Hasse\n\n18) MadWuher: Build Y2 Madwuher\n\n19) hasse: Move Y1 Hasse Qwerty\n\n20) MadWuher: Build Y2 Madwuher\n\n21) hasse: Move Y3 Edora Madwuher\nCatastrophe Madwuher Yellow\n\n22) MadWuher: Build G1 Madwuher\n\n23) hasse: Build Y1 Qwerty\n\n24) MadWuher: Build G1 Edora\n\n25) hasse: Move Y1 Qwerty Edora\n\n26) MadWuher: Build G2 Madwuher\n\n27) hasse: Move R1 Qwerty Edora\n\n28) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\nBuild Y2 Bologna\n\n29) hasse: Attack G1 Edora\n\n30) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\nCatastrophe Edora G\n\n31) hasse: Build Y2 Qwerty\n\n32) MadWuher: Move Y2 Bologna Hasse\n\n33) hasse: Build R2 Hasse\n\n34) MadWuher: Sacrifice G3 Madwuher\nBuild Y3 Bologna\nBuild Y3 Hasse\nBuild Y3 Hasse\nCatastrophe Hasse Y\n\n35) hasse: Move Y2 Qwerty Edora\n\n36) MadWuher: Trade Y2 R2 Bologna\n\n37) hasse: Trade Y2 G2 Edora\n\n38) MadWuher: Move Y3 Bologna Hasse\n\n39) hasse: Trade R1 Y1 Hasse\n\n40) MadWuher: Sacrifice R2 Bologna\nAttack R2 Hasse\nAttack Y1 Hasse\n\n\tMadWuher: Hasse, I'd recommend not letting your size 3 ship out of your home system. You should always keep it home (and have a red ship elsewhere) so you can secure your homeworld. By moving it out (and by me destroying your size 3 ship), it made it possible for me to take over your home planet (while you are left trying to get back up to a size 3 ship). Do you want to try again?\n\nHomeworlds Online (SDG# 11582)\nStarted: 2008.10.7, Ended: 2008.10.26\nParticipants: MadWuher (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) MadWuher: Homeworld B1 R2 G3\n\tTwoShort: Howdy\n\tMadWuher: Hey there. It's been a while.\n\n3) TwoShort: Build G1 Twoshort\n\n4) MadWuher: Build G1 Madwuher\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) TwoShort: Build G1 Twoshort\n\n8) MadWuher: Build G1 Madwuher\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) MadWuher: Discover G1 Madwuher Y3 Edora\n\n11) TwoShort: Build Y1 Twoshort\n\n12) MadWuher: Build Y2 Madwuher\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) MadWuher: Discover Y1 Madwuher G3 Bologna\n\n15) TwoShort: Build G1 Twoshort\n\n16) MadWuher: Build G2 Madwuher\n\n\n17) TwoShort: Discover G1 Yolonda Y3 Yak\n\n18) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Madwuher\nBuild Y2 Bologna\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n20) MadWuher: Sacrifice G1 Edora\nBuild Y3 Madwuher\n\n21) TwoShort: Discover Y1 Grogar G3 Grody\n\n22) MadWuher: Discover G2 Madwuher B3 Edora\n\n23) TwoShort: Sacrifice G1 Yak\nBuild Y3 Grody\n\n24) MadWuher: Move Y3 Madwuher Edora\n\n25) TwoShort: Trade G1 R1 Twoshort\n\n26) MadWuher: Build G1 Edora\n\n27) TwoShort: Sacrifice Y2 Grogar\nDiscover Y3 Grody R1 Gunrule\nMove Y3 Gunrule Edora\n\n28) MadWuher: Build Y2 Edora\n\n29) TwoShort: Trade Y3 R3 Edora\n\n30) MadWuher: Sacrifice Y2 Edora\nDiscover Y3 Edora R2 Camelot\nMove G2 Edora Camelot\n\n31) TwoShort: Trade Y1 B1 Twoshort\n\n32) MadWuher: Sacrifice G1 Edora\nBuild Y1 Madwuher\n\n33) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Grody\n\n34) MadWuher: Trade Y2 B2 Madwuher\n\n35) TwoShort: Trade Y2 R2 Twoshort\n\n36) MadWuher: Build Y2 Camelot\n\n37) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Grody Madwuher\nMove R3 Edora Madwuher\nPass\n\n38) MadWuher: Sacrifice Y2 Camelot\nMove Y1 Bologna Madwuher\nMove Y2 Bologna Madwuher\n\n39) TwoShort: Sacrifice R2 Twoshort\nAttack G3S Madwuher\nAttack Y2S Madwuher\n\tTwoShort: I think that's checkmate; thanks for the game. You had me really worried for a while there.\n\tMadWuher: If I might ask, where did I make my first bonehead move?\r\nI see that you like to move ships to planets of size 3 right away (and of course it puts the pressure on me). Any comments or hints as to when you came up with your strategy here?\n\tMadWuher: Since it's game. Want to go for a big bang? Suppose we fill up my system with as many ships as possible (I think the max is 16, but I digress) and do one giant catastrophe. Up for it?\n\n40) MadWuher: Sacrifice G2 Camelot\nBuild B1 Madwuher\nBuild B2 Madwuher\n\tTwoShort: Eh... I'm not that intrigued by a big catastrophe; but I'll always rehash strategy :)\r\n\r\nI didn't come up with this specific strategy until two moves ago when I took the R2; but I basically always try to get more big stuff in range of moving in than you can take in one turn, and get a sacable R2 in the backfield; and also some ships of the color of the other guys stars and a bunch of big yellow. I just try to push whatever threats I can. So as far as where you went wrong, it's where I was able to switch from making the moves you forced me to, to making ones that forced you to do things. \r\n You were doing well when I took the r1: it was because I couldn't figure out how to stop you from getting more 3 points than me. According to the "Gun Rule" (if the other guy draws a gun, draw your gun), you should have taken a red yourself, which would have thrown you off your grow pace only slightly, but it was the best I could do. When you didn't take the red, I was able to jump on the offensive and force the action a few turns. Once you got your ships out of there to Camelot though, you were back in control: poised to sacrifice your G2 to take the remaining y2 & y3, which would have given you a commanding lead in 3s and in yellow. So I flipped the y1 to blue mainly to put it back in the stash and force you to use the g3 if you wanted all that yellow, which would have been more painful, but you probably should have done it. At the least, you should not have taken the y1 there. Letting me take the big Ys is probably the move I'd say decided the game. Obviously you didn't see the threat represented by my taking the r2, but by that point the defense options would have been pretty drastic and probably just delayed the inevitable. \r\n\r\nHmmm, did I mention a willingness to yack on about Homeworlds strategy?\n\n41) TwoShort: Sacrifice G3 Madwuher\nBuild R1 Madwuher\nBuild R2 Madwuher\nPass\nCatastrophe Madwuher Blue\nCatastrophe Madwuher Yellow\nCatastrophe Madwuher Red\n\tMadWuher: Time for a quick death....... and bow out gracefully.\n\tMadWuher: RUNNNNN!!!!!!\n\tMadWuher: ARGH!!!!! I am trying to go out either in a blaze of glory, or just by running away, but it won't allow me to leave the system undefended. =(\r\n\r\nOh well, guess you get to take me out in style....\n\n\tTwoShort: Thanks for the game!\n\tMadWuher: Anytime..... Still trying to figure out the multitude of strategies that people use. If I might ask, how many moves ahead do you typically plan out. Another few questions, since you are the highest rated player here, do you find yourself using any similar game ending moves against your opponents?\n\tTwoShort: Hmmm, I don't really plan ahead in the sense of a strategy I'm going to follow; I'll re-evaluate that each turn. As far as thinking ahead the results of a particular move, for the critical ones I'll set it up, make my move, and look through the responses I see, playing out the most obvious chain of moves. But generally I don't think you need to look at much more than a couple moves ahead. In most cases, a Homeworlds player has so much power to affect the board that purely tactical advantages are short lived; If I'm trading material for position, I want to be pretty sure I see a payoff that gets me back to a material advantage in fairly short order.\r\n As far as ending moves... My basic strategy is to threaten to blow up stars or move in and sacrifice red so they'll be forced to spend moves dealing with the threats and I can take more pieces. If that works you eventually get enough of an advantage that they can't stop everything. But at least as often, they don't notice that I'm forcing them to do something particular or be destroyed, and they do something else. That seems to most often be leaving themselves open for me to move in more big pieces than they can take in a turn while I have a big red in my backfield.\r\n But really, the actual game-ending sequence is usually academic; it's just a matter of what turns out to work for the guy in control of the game, which is generally the guy with more 3 pointers. \n\nHomeworlds Online (SDG# 11893)\nStarted: 2008.10.10, Ended: 2008.10.24\nParticipants: shadowfirebird (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) shadowfirebird: Homeworld Y3 B2 G3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\n4) shadowfirebird: Build G1 Shadowfirebird\n\tshadowfirebird: Hi there. What is it about Homeworlds that people either seem to love it or hate it? I've got a bunch of gamer friends, but none of them will play :(\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) shadowfirebird: Trade G1 B1 Shadowfirebird\n\n7) TwoShort: Build G1 Twoshort\n\n8) shadowfirebird: Build G1 Shadowfirebird\n\tTwoShort: Hmmm, not sure... I too have a bunch of gamer friends who aren't that into pure abstract strategy games. I don't suppose you're in Colorado?\n\tshadowfirebird: Unfortunately, no -- Manchester, UK!\n\n9) TwoShort: Build Y1 Twoshort\n\n10) shadowfirebird: Build B1 Shadowfirebird\n\n11) TwoShort: Trade G1 B1 Twoshort\n\n12) shadowfirebird: Trade B1 G1 Shadowfirebird\n\n13) TwoShort: Build G1 Twoshort\n\n14) shadowfirebird: Discover B1 Shadowfirebird Y1 Frogstarb\n\n15) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n16) shadowfirebird: Move G1 Shadowfirebird Frogstarb\n\tshadowfirebird: Sorry. Very rude of me. I'll try not to do that in future. It's not as if I don't have two weeks to move or anything!\n\n17) TwoShort: Build Y2 Grogar\n\n18) shadowfirebird: Build G2 Frogstarb\n\tTwoShort: Actually, I don't mind at all. I myself periodically notice something bad about a move immediately after I make it, and I'd like to feel free to hit undo in those situations. It will only let you hit it once per move; and just naturally you don't wind up doing it except right after making a move, so the chances of the other guy putting much time into considering the wrong position are inherently small. So anyway, don't worry about it, and be advised that I won't. :)\n\n19) TwoShort: Discover Y2 Grogar B1 Bluestar\n\tshadowfirebird: Cool.\n\n20) shadowfirebird: Trade G2 B2 Frogstarb\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n22) shadowfirebird: Move B1 Frogstarb Shadowfirebird\n\n23) TwoShort: Trade Y3 G3 Twoshort\n\tshadowfirebird: Gaah. I think I'm outclassed :)\n\n24) shadowfirebird: Sacrifice G3 Shadowfirebird\nBuild B3 Frogstarb\nBuild B3 Frogstarb\nBuild B3 Shadowfirebird\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Bluestar\nBuild G2 Twoshort\n\tshadowfirebird: Either I've just made the smartest move of my life or the dumbest. \n\n26) shadowfirebird: Sacrifice B2 Frogstarb\nTrade B3 G3 Frogstarb\nTrade B3 R3 Shadowfirebird\n\n27) TwoShort: Trade Y2 B2 Bluestar\n\n28) shadowfirebird: Move R3 Shadowfirebird Bluestar\n\n29) TwoShort: Sacrifice Y2 Bluestar\nMove B2 Bluestar Shadowfirebird\nMove Y3 Bluestar Shadowfirebird\n\n30) shadowfirebird: Build B3 Shadowfirebird\nCatastrophe Shadowfirebird B\n\n31) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Shadowfirebird\nBuild Y2 Shadowfirebird\nCatastrophe Shadowfirebird Yellow\n\n\tTwoShort: Yeah, the yellow monopoly is pretty devastaing. Thanks for the game!\n\tshadowfirebird: Any time!\n\nHomeworlds Online (SDG# 11864)\nStarted: 2008.10.10, Ended: 2009.2.11\nParticipants: MikeYarrum (S), shadowfirebird (N)\nWinner: shadowfirebird\n\n1) shadowfirebird: Homeworld G3 B1 Y3\n\n\tshadowfirebird: Hi! I'm afraid I'm unlikely to be much of a challenge... Frankly it's just nice to be playing Homeworlds -- I can't persuade anyone else here to play!\n\tshadowfirebird: I'm new to the site and clicked on a challenge only to find that MikeYarrum hasn't been active for 103 days.\r\nIs there any way you can remove his standing challenges from the challenge page?\n\tAaron: I am very sorry for the delayed response, shadow. Things have been a little crazy over here. I will suspend his standing challenges. Thanks, and welcome!\n\nHomeworlds Online (SDG# 11781)\nStarted: 2008.10.22, Ended: 2009.3.3\nParticipants: smilingra (S), MadWuher (W), alexcobo (N), shadowfirebird (E)\nWinner: MadWuher\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) shadowfirebird: Homeworld B2 Y1 G3\n\n3) smilingra: Homeworld R3 B2 Y3 *\n\tshadowfirebird: Hi all!\n\n4) MadWuher: Homeworld R1 B3 G3\n\tsmilingra: Welcome! I've seem to have had problems in my last two games with not taking my turn in a timely manner (due to very extenuating circumstances); hope to respond quickly and have a fun game!\n\n5) alexcobo: Build Y1 Alexcobo\n\tMadWuher: Glad to see we got a game going. =)\n\n6) shadowfirebird: Build G1 Shadowfirebird\n\n7) smilingra: Trade Y3 G3 Smilingra\n\tshadowfirebird: I've just played out my first 3 person game in RL and I couldn't believe how *long* it took. Or how complicated it was!\n\tsmilingra: Be prepared for a month or two of some delightful decision-making!\n\n8) MadWuher: Build G1 Madwuher\n\tsmilingra: grrr... wasted a whole move there by being dumb with the setup! It's true that I needed green and blue tech; what was I thinking?\n\n9) alexcobo: Trade Y1 R1 Alexcobo\n\tMadWuher: Woo hoo...... Month of fun? Here we go......\n\n10) shadowfirebird: Trade G1 B1 Shadowfirebird\n\n11) smilingra: Build G1 Smilingra\n\n12) MadWuher: Trade G1 Y1 Madwuher\n\tshadowfirebird: Hmm. Am I missing something or is there no way to send conspiratorial notes to other players?\n\n13) alexcobo: Build Y1 Alexcobo\n\n14) shadowfirebird: Build G1 Shadowfirebird\n\n15) smilingra: Build G1 Smilingra\n\n16) MadWuher: Build G1 Madwuher\n\n17) alexcobo: Trade Y1 G1 Alexcobo\n\n18) shadowfirebird: Trade G1 Y1 Shadowfirebird\n\n19) smilingra: Trade G1 Y1 Smilingra\n\n20) MadWuher: Trade G1 B1 Madwuher\n\n21) alexcobo: Build R1 Alexcobo\n\n22) shadowfirebird: Build G1 Shadowfirebird\n\n23) smilingra: Discover G1 Smilingra B1 Alpha\n\n24) MadWuher: Build G1 Madwuher\n\n25) alexcobo: Move R1 Alexcobo Alpha\n\n26) shadowfirebird: Build B1 Shadowfirebird\n\n27) smilingra: Build G1 Smilingra\n\n28) MadWuher: Discover G1 Madwuher B2 Beta\n\n29) alexcobo: Attack G1S Alpha\n\n30) shadowfirebird: Build G2 Shadowfirebird\n\tshadowfirebird: build g2 shadowfirebird\n\n31) smilingra: Trade G1 R1 Smilingra\n\tshadowfirebird: Huh. Not enough sleep, obviously.\n\n32) MadWuher: Move B1 Madwuher Beta\n\n33) alexcobo: Build Y1 Alexcobo\n\n34) shadowfirebird: Discover G2 Shadowfirebird B3 Formica\n\tMadWuher: I guess I cannot blame hitting the UNDO button on lack of sleep. Will "my kid grabbed a hold of the mouse" do?\n\n35) smilingra: Build Y2 Smilingra\n\n36) MadWuher: Build Y2 Madwuher\n\n37) alexcobo: Move Y1 Alexcobo Alpha\n\n38) shadowfirebird: Build Y2 Shadowfirebird\n\n39) smilingra: Move Y2 Smilingra Alpha\n\n40) MadWuher: Trade Y2 R2 Madwuher\n\n41) alexcobo: Build Y2 Alexcobo\n\tMadWuher: shadowfirebird, I'm so tempted to create a blue catastrophe in your home system and leave you open to a one system jump from the other two players homeworlds. I'll wait a day and see if anything else comes to mind (ie, you ask me not to, if the others want to start a bloodbath right away, etc...) \n\talexcobo: Blood! Blood! Blood! Blood! Blood!\n\tshadowfirebird: Well, of course I'm going to ask you not to. :)\r\nI would also suggest that at this stage of the game it would leave you with no 2-point pieces and make you vulnerable to attacks from other others later. (Which may be why Alex is screaming for blood. Or maybe he does that all the time, I don't know.)\r\n\r\n\r\n\n\tshadowfirebird: You could also build another y2. Only Smilinggra and I have y2s at the moment, and neither of us have (another) yellow piece out of their home system, so that should be safe; it would put you ahead in the piece-gathering part of the game.\r\nBut, of course, you should do what you think is best...\n\tMadWuher: alexcobo? Any input? =D\n\n42) shadowfirebird: Sacrifice Y1 Shadowfirebird\nMove B1 Shadowfirebird Formica\n\tMadWuher: Though it would be fun to start the blood early, I figure, if we're going to enjoy the game, I better put together a more devious long term plan (Just you wait....... You'll get yours...... heh heh)\n\tshadowfirebird: Figure I will, if I'm going to make mistakes like that...\n\talexcobo: I really do not think so far ahead when I play, so I have no devious scheme in mind yet.\r\nAnd yes: I always scream for blood (specialy when I know it will not be mine) >:¬)\n\n43) smilingra: Sacrifice R1 Smilingra\nAttack R1N Alpha\n\n44) MadWuher: Move R2 Madwuher Beta\n\tshadowfirebird: Thus removing temptation and slowing the run on y2s at one go...\n\tsmilingra: Blood! Blood! (sound of crickets chirping)\r\nCrap! I knew I should have logged in earlier...\n\n45) alexcobo: Sacrifice R1 Alexcobo\nAttack R1S Alpha\n\n46) shadowfirebird: Trade G1 R1 Shadowfirebird\n\n47) smilingra: Trade Y2 R2 Alpha\n\n48) MadWuher: Build G1 Madwuher\n\tshadowfirebird: Goodness! Such violence! :)\r\n\n\n49) alexcobo: Trade Y2 B2 Alexcobo\n\tsmilingra: And it's only just begun... :)\n\n50) shadowfirebird: Build G1 Formica\n\tMadWuher: And here I thought we were playing for fun. =)\n\n51) smilingra: Attack G1N Alpha\n\n52) MadWuher: Build G2 Beta\n\tshadowfirebird: Well, we Shadowfirebirdians are a peaceful people. Sarcastic, but peaceful...\n\n53) alexcobo: Attack G1S Alpha\n\n54) shadowfirebird: Trade G2 R2 Formica\n\n55) smilingra: Attack R1N Alpha\n\n56) MadWuher: Sacrifice G2 Beta\nBuild G2 Beta\nBuild R1 Beta\n\n57) alexcobo: Sacrifice Y1 Alpha\nDiscover G1 Alpha B3 Alba\n\n58) shadowfirebird: Build G2 Shadowfirebird\n\tshadowfirebird: You know, I'm not sure it should have let you do that, strictly speaking. After you sacrificed the G2 you didn't have any green ships in beta.\n\tshadowfirebird: Oh wait, forget I said anything so dumb. Yes you did.\n\talexcobo: I know this will put me in a weak position... but I always scream for blood...\n\talexcobo: Duh! Well... It would have left me in an even weaker position if I could pull it off... :-(\n\n59) smilingra: Build G2 Smilingra\n\n60) MadWuher: Trade R1 Y1 Beta\n\tshadowfirebird: The SHadowfirebirdianians welcome their new neighbours with open arms and weapons ports -- which is a sign of friendship, of course...\n\n61) alexcobo: Build G2 Alba\n\n62) shadowfirebird: Sacrifice Y2 Shadowfirebird\nMove B1 Shadowfirebird Alba\nMove G2 Shadowfirebird Alba\n\n63) smilingra: Build Y1 Smilingra\n\n64) MadWuher: Discover G2 Beta Y3 Gamma\n\tshadowfirebird: The shadowfirebirdian embassy would like to apologise for this unfortunate navigational error. Be assured we will rectify the situation as soon as possible.\n\n65) alexcobo: Build Y2 Alexcobo\n\n66) shadowfirebird: Trade G2 Y2 Alba\n\n67) smilingra: Move Y1 Smilingra Alpha\n\n68) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Beta\nBuild G2 Gamma\nBuild G3 Madwuher\n\n69) alexcobo: Trade G1 R1 Alba\n\n70) shadowfirebird: Sacrifice R1 Shadowfirebird\nAttack G2N Alba\n\n71) smilingra: Build Y2 Smilingra\n\n72) MadWuher: Build Y2 Madwuher\n\n73) alexcobo: Attack B1E Alba\n\n74) shadowfirebird: Move G2 Alba Shadowfirebird\n\n75) smilingra: Move R2 Alpha Gamma\n\n76) MadWuher: Sacrifice R2 Beta\nAttack R2S Gamma\nPass\n\tshadowfirebird: ::sigh:: so many wasted moves...\n\n77) alexcobo: Discover Y2 Alexcobo G1 Green\n\n78) shadowfirebird: Build G3 Formica\n\tMadWuher: What is this intrusion upon my turf? For this, you will be punished. So says the harbinger of DOOM!!!\n\n79) smilingra: Trade Y2 R2 Smilingra\n\n80) MadWuher: Move B1 Beta Gamma\n\tshadowfirebird: Thanks for the freebie, Alex...\n\tsmilingra: uh, we meant nothing by that... got off-course, or something...\n\n81) alexcobo: Build Y2 Green\n\n82) shadowfirebird: Trade G2 R2 Shadowfirebird\n\n83) smilingra: Move R2 Smilingra Alpha\n\n84) MadWuher: Discover G2 Beta Y3 Delta\n\tshadowfirebird: first things first...\n\n85) alexcobo: Build Y2 Alexcobo\n\n86) shadowfirebird: Sacrifice G1 Formica\nBuild Y3 Alba\n\n87) smilingra: Build Y3 Smilingra\n\n88) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Delta\nBuild G2 Beta\nBuild G3 Madwuher\n\n89) alexcobo: Sacrifice Y2 Alexcobo\nMove Y2 Green Alba\nMove Y2 Green Alba\nCatastrophe Alba Y\n\tshadowfirebird: Ta again Alex ;)\n\n90) shadowfirebird: Trade R2 Y2 Formica\n\n91) smilingra: Build G1 Smilingra\n\n92) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R1 Gamma\nBuild Y2 Beta\n\talexcobo: No strategy! No technique! No plan! Just being anoying... :-)\n\n93) alexcobo: Build Y2 Alexcobo\n\n94) shadowfirebird: Build Y2 Formica\n\n95) smilingra: Move G2 Smilingra Alpha\n\n96) MadWuher: Discover G2 Beta Y3 Juniper\n\n97) alexcobo: Trade B2 R2 Alexcobo\n\n98) shadowfirebird: Move Y2 Formica Shadowfirebird\n\n99) smilingra: Sacrifice Y3 Smilingra\nMove G1 Smilingra Alpha\nMove G1 Alpha Alexcobo\nMove G2 Alpha Alexcobo\nCatastrophe Alexcobo G\n\n100) MadWuher: Discover Y2 Madwuher B2 Jessica\n\n101) alexcobo: Discover Y2 Alexcobo G3 G3\n\n102) shadowfirebird: Build Y3 Formica\n\tsmilingra: had to shake things up a bit...\n\n103) smilingra: Move R2 Alpha G3\n\n104) MadWuher: Sacrifice G2 Juniper\nBuild Y3 Jessica\nBuild G1 Beta\n\n105) alexcobo: Trade B1 G1 Alba\n\n106) shadowfirebird: Build R1 Shadowfirebird\n\n107) smilingra: Attack Y2N G3\n\n108) MadWuher: Move R1 Gamma Beta\n\n109) alexcobo: Build G2 Alba\n\n110) shadowfirebird: Sacrifice Y2 Shadowfirebird\nMove Y3 Formica Shadowfirebird\nMove Y3 Shadowfirebird Alba\n\n111) smilingra: Discover R2 G3 Y2 Epsilon\n\n112) MadWuher: Discover G1 Beta R3 Talbot\n\n113) alexcobo: Sacrifice G2 Alba\nBuild R2 Alba\nBuild R3 Alba\n\n114) shadowfirebird: Sacrifice R2 Shadowfirebird\nAttack R3N Alba\nAttack R2N Alba\n\n115) smilingra: Move R1 Alpha Epsilon\n\n116) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Beta\nBuild G2 Talbot\nBuild G3 Madwuher\n\n117) alexcobo: Build R2 Alba\nCatastrophe Alba R\n\n118) shadowfirebird: Build R1 Shadowfirebird\n\n119) smilingra: Move R2 Epsilon Delta\n\n120) MadWuher: Sacrifice R2 Gamma\nAttack R2S Delta\nPass\n\n121) alexcobo: Sacrifice G1 Alba\nBuild R2 Alexcobo\n\n122) shadowfirebird: Build G1 Shadowfirebird\n\n123) smilingra: Trade Y1 B1 Alpha\n\n124) MadWuher: D G2 Beta B3 Magna\n\n125) alexcobo: Move R2 Alexcobo Gamma\n\talexcobo: Mommy, why do all the other kids have more ships than I do? :'-(\n\tshadowfirebird: ::grin:: my personal theory? This only *looks* like a space combat game.\n\n126) shadowfirebird: Sacrifice Y2 Formica\nMove Y3 Alba Shadowfirebird\nMove Y3 Shadowfirebird Delta\n\n127) smilingra: Build Y1 Smilingra\n\tsmilingra: can someone blow something else up??\n\n128) MadWuher: Sacrifice Y2 Beta\nMove G1 Talbot Shadowfirebird\nMove G1 Delta Shadowfirebird\nCatastrophe Shadowfirebird G\n\n129) alexcobo: Attack G2W Gamma\n\n130) shadowfirebird: Sacrifice R1 Shadowfirebird\nAttack R2W Delta\n\n131) smilingra: Build G1 Smilingra\n\n132) MadWuher: Sacrifice Y3 Jessica\nMove G2 Delta Shadowfirebird\nMove Y1 Beta Delta\nMove Y2 Jessica Delta\nCatastrophe Delta Y\n\n133) alexcobo: Attack G2W Gamma\n\n134) shadowfirebird: Trade B1 Y1 Formica\n\tshadowfirebird: That was interesting. I guess you can afford to do that, Mad', since you have both the positional and the piece advantage on me... still, you have your own problems...\n\n135) smilingra: Build Y2 G3\n\tsmilingra: now THAT's what I'm talking about! Nice work, shadow and Mad!\n\n136) MadWuher: Trade G2 B2 Shadowfirebird\n\tMadWuher: had to do something eh??\n\n137) alexcobo: Attack B1W Gamma\n\tMadWuher: Now that the new year has begun, I figure I might as well have a bit o' fun before I go back to work. =)\n\tshadowfirebird: Nice. Should have seen that. You've got me, I think...\n\tshadowfirebird: I guess I wasn't expecting you to spend so many resources on me!\n\n138) shadowfirebird: Move G3 Formica Shadowfirebird\n\n139) smilingra: Sacrifice Y2 G3\nMove G1 Smilingra Alpha\nMove Y1 Smilingra Alpha\n\tshadowfirebird: Well, here it is. Are you going to sacrifice your last r1 to finish me off (and perhaps leave yourself vulnerable to North and South)? Or not?\n\n140) MadWuher: Sacrifice G2 Talbot\nBuild B1 Shadowfirebird\nBuild B1 Shadowfirebird\nCatastrophe Shadowfirebird B\n\tsmilingra: If he does, I'll miss your chattiness, shadow. And maybe he might spare you?\n\n141) alexcobo: Move R2 Gamma Beta\n\tMadWuher: I figure, since alexcobo is down to a single planet system, why not try to do the same to everybody else. (I'm looking at you next smilingra) =D\n\n142) shadowfirebird: Build R1 Shadowfirebird\n\n143) smilingra: Discover B1 Alpha G2 Delta\n\tshadowfirebird: ::grins and bows:: Thank you kindly...\n\n144) MadWuher: Sacrifice G2 Magna\nBuild R2 Beta\nBuild Y2 Madwuher\n\n145) alexcobo: Attack G1W Beta\n\tMadWuher: All right. Time to regroup, find smilingra's weaknesses, and start picking him apart. <insert evil laugh here>\n\n146) shadowfirebird: Move R1 Shadowfirebird Beta\nCatastrophe Beta R\n\n147) smilingra: Build Y2 Smilingra\n\n148) MadWuher: Discover Y2 Madwuher G2 Aleph-not\n\n149) alexcobo: Move G2 Gamma Alexcobo\n\n150) shadowfirebird: Build G1 Shadowfirebird\n\n151) smilingra: Build Y2 G3\n\n152) MadWuher: Build Y3 Aleph-not\n\tshadowfirebird: Oops!\n\n153) alexcobo: Build Y3 Alexcobo\n\n154) shadowfirebird: Move G1 Shadowfirebird Formica\n\n155) smilingra: Build Y3 Alpha\n\n156) MadWuher: Trade G1 R1 Madwuher\n\n157) alexcobo: Move Y3 Alexcobo G3\n\n158) shadowfirebird: Build R1 Shadowfirebird\n\n159) smilingra: Sacrifice Y2 Smilingra\nMove Y2 G3 Delta\nMove Y2 G3 Delta\n\n160) MadWuher: Move R1 Madwuher Aleph-not\n\n161) alexcobo: Build Y2 G3\n\n162) shadowfirebird: Move R1 Shadowfirebird Formica\n\n163) smilingra: Build G1 Alpha\n\n164) MadWuher: Build R2 Aleph-not\n\n165) alexcobo: Build R2 Alexcobo\n\n166) shadowfirebird: Build R2 Shadowfirebird\n\n167) smilingra: Move G1 Alpha Epsilon\n\n168) MadWuher: Build G1 Madwuher\n\n169) alexcobo: Build G2 Gamma\n\n170) shadowfirebird: Build G3 Formica\n\n171) smilingra: Build B1 Delta\n\n172) MadWuher: Discover R2 Aleph-not B1 Sliced-ham\n\n173) alexcobo: Move Y3 G3 Delta\n\n174) shadowfirebird: Discover G1 Formica B2 Fintlewoddlewix\n\n175) smilingra: Sacrifice Y2 Delta\nMove B1 Delta Madwuher\nMove B1 Delta Madwuher\n\n176) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R2 Sliced-ham\nBuild R3 Aleph-not\n\n177) alexcobo: Sacrifice R2 Alexcobo\nAttack Y2S Delta\nPass\n\n178) shadowfirebird: Build Y2 Formica\n\n179) smilingra: Sacrifice G1 Alpha\nBuild B2 Madwuher\nCatastrophe Madwuher B\n\n180) MadWuher: Sacrifice Y2 Aleph-not\nMove R2 Sliced-ham Smilingra\nMove R2 Sliced-ham Smilingra\n\n181) alexcobo: Sacrifice Y2 Delta\nMove R2 Alexcobo Alpha\nMove R2 Alpha Smilingra\nCatastrophe Smilingra R\n\n182) shadowfirebird: Move R2 Shadowfirebird Fintlewoddlewix\n\tMadWuher: Woo-hoo. Looks like we're all going to be in the same boat soon enough. =)\n\n183) smilingra: Build Y2 Smilingra\n\n184) MadWuher: Build Y2 Madwuher\n\n185) alexcobo: Trade G2 R2 Gamma\n\n186) shadowfirebird: Build G1 Formica\n\n187) smilingra: Build G2 Epsilon\n\n188) MadWuher: Discover Y2 Madwuher B3 Boo-hoo\n\n189) alexcobo: Build R2 Gamma\n\n190) shadowfirebird: Move Y2 Formica Fintlewoddlewix\n\n191) smilingra: Build R2 Epsilon\n\n192) MadWuher: Move R3 Aleph-not Boo-hoo\n\n193) alexcobo: Move B1 Gamma Delta\n\n194) shadowfirebird: Sacrifice G3 Formica\nBuild R2 Shadowfirebird\nBuild R3 Formica\nBuild R3 Fintlewoddlewix\n\n195) smilingra: Build G3 Smilingra\n\n196) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R3 Aleph-not\nBuild R3 Boo-hoo\n\n197) alexcobo: Build B1 Delta\n\n198) shadowfirebird: Trade R2 B2 Fintlewoddlewix\n\n199) smilingra: Sacrifice Y3 Alpha\nMove G3 Smilingra Shadowfirebird\nMove G2 Epsilon Shadowfirebird\nMove G1 Epsilon Shadowfirebird\nCatastrophe Shadowfirebird G\n\n200) MadWuher: Build Y3 Madwuher\n\tshadowfirebird: Sorry about the wait. Hope that was worth it...\n\n201) alexcobo: Sacrifice Y2 G3\nMove R2 Gamma Shadowfirebird\nMove R2 Gamma Shadowfirebird\nCatastrophe Shadowfirebird R\n\n202) smilingra: Build G1 Smilingra\n\n203) MadWuher: Move R3 Boo-hoo Fintlewoddlewix\n\n204) alexcobo: Trade G2 R2 Alexcobo\n\n205) smilingra: Trade Y1 R1 Smilingra\n\tsmilingra: Had to shake things up a bit... we needed to get some pieces back in the supply!\n\tshadowfirebird: Wow. I would never have guessed that you would do that.\n\n206) MadWuher: Sacrifice R3 Aleph-not\nAttack R3E Fintlewoddlewix\nAttack B2E Fintlewoddlewix\nAttack Y2E Fintlewoddlewix\n\n207) alexcobo: Build G2 Gamma\n\talexcobo: Sorry. But someone had to go first...\n\n208) smilingra: Trade Y1 B1 Alpha\n\tsmilingra: Sorry, shadowfirebird. But you had so many ships...\n\n209) MadWuher: Move R3 Fintlewoddlewix Gamma\n\n210) alexcobo: Sacrifice Y3 Delta\nMove G2 Gamma Madwuher\nMove G2 Gamma Madwuher\nPass\nCatastrophe Madwuher G\n\n211) smilingra: Build Y1 Smilingra\n\n212) MadWuher: Move Y3 Aleph-not Formica\n\n213) alexcobo: Build G1 Beta\n\n214) smilingra: Sacrifice Y1 Smilingra\nDiscover B1 Alpha G3 New_alpha\n\tshadowfirebird: I'm flattered. Nice work, guys. Hope to play again soon...\n\n215) MadWuher: Move B2 Fintlewoddlewix Gamma\n\talexcobo: Oh... you should not done that MadWuher...\r\n\n\n216) alexcobo: Build G2 Beta\n\n217) smilingra: Build B1 New_alpha\n\tMadWuher: knew it was coming..... Just awaiting the onslaught. =)\n\n218) MadWuher: Sacrifice R1 Aleph-not\nAttack R3E Formica\n\n219) alexcobo: Trade G2 Y2 Beta\n\n220) smilingra: Sacrifice Y2 Smilingra\nMove B1 New_alpha Alexcobo\nMove B1 New_alpha Alexcobo\n\n221) MadWuher: Sacrifice Y3 Madwuher\nMove R3 Formica Smilingra\nMove R3 Boo-hoo Smilingra\nMove Y3 Formica Smilingra\n\n222) alexcobo: Attack B1S Alexcobo\n\n223) smilingra: Build R1 Smilingra\nCatastrophe Smilingra R\n\n224) MadWuher: Sacrifice R3 Gamma\nAttack G1E Fintlewoddlewix\nAttack G3S Smilingra\nAttack G1S Smilingra\n\n225) alexcobo: Move Y3 Alexcobo Madwuher\n\n226) MadWuher: Move B2 Gamma Alexcobo\nCatastrophe Alexcobo B\n\n\tMadWuher: Thanks for the game.\n\nHomeworlds Online (SDG# 11920)\nStarted: 2008.10.24, Ended: 2009.12.9\nParticipants: ajwill (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 12052)\nStarted: 2008.10.29, Ended: 2008.10.30\nParticipants: MadWuher (S), MatrixFrog (N)\nWinner: MadWuher\n\n\nHomeworlds Online (SDG# 11919)\nStarted: 2008.10.31, Ended: 2008.11.4\nParticipants: MrMoto (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) MrMoto: Homeworld R2 G1 B3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tMrMoto: Hello! This is my first game of Homeworlds.\n\n4) MrMoto: Build B1 Mrmoto\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MrMoto: Trade B1 Y1 Mrmoto\n\n7) TwoShort: Build G1 Twoshort\n\n8) MrMoto: Discover Y1 Mrmoto G3 Plasmulon\n\n9) TwoShort: Build G1 Twoshort\n\n10) MrMoto: Build Y1 Plasmulon\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n12) MrMoto: Build Y2 Plasmulon\n\n13) TwoShort: Build G2 Twoshort\n\n14) MrMoto: Build B1 Mrmoto\n\n15) TwoShort: Discover G1 Twoshort G2 Grognar\n\n16) MrMoto: Discover Y1 Plasmulon B1 Arachne\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Bluonia\nBuild G3 Twoshort\n\n18) MrMoto: Build B1 Mrmoto\n\n19) TwoShort: Trade G2 Y2 Bluonia\n\n20) MrMoto: Sacrifice Y1 Plasmulon\nMove B1 Mrmoto Plasmulon\n\tTwoShort: oops, sorry\n\n21) TwoShort: Sacrifice G3 Bluonia\nBuild G2 Bluonia\nBuild G3 Bluonia\nBuild Y1 Bluonia\n\n22) MrMoto: Build Y2 Plasmulon\n\tMrMoto: No problem.\n\n23) TwoShort: Discover Y1 Bluonia B3 Blitz\n\n24) MrMoto: Build Y3 Plasmulon\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y3 Blitz\nBuild Y3 Twoshort\n\n26) MrMoto: Trade Y3 R3 Plasmulon\n\tTwoShort: So I feel a little guilty - normally for someones first game, I'd be giving them a fair amount of pointers and advice, but that takes more attention than I've had during this game, so I've just been systematically destroying you :)\r\n Anyway, tip number 1: try starting with a green ship, it's usually best. \r\n Tip number 2: watch out for catastrophes. I could move my y2 from Bluonia into Plasmulon, and cause a catastrophe that would cost me little and leave you crippled.\r\n Typically, that's exactly what I'd do, but in this case, I think I see an even faster route to victory...\n\n27) TwoShort: Trade G2 R2 Bluonia\n\tMrMoto: Don't worry about it -- I see that I have a lot to learn! Your strategy of sacrificing green ships to build up your fleet makes a lot of sense.\r\n\r\nAs for catastrophes, I was concentrating on just not building four like-coloured ships in one system. Clearly I must start to consider your moves -- I thought there would be more build-up before I would have to do so.\r\n\r\nAnd finally I am honoured to lose against the second-best player in the world! :)\n\n28) MrMoto: Trade Y2 G2 Plasmulon\n\tMrMoto: Oh dear. I thought I would blow up the whole system, but I've just lost a bunch of ships. Hm ...\n\n29) TwoShort: Sacrifice Y2 Bluonia\nMove G1 Bluonia Plasmulon\nMove G1 Grognar Plasmulon\nCatastrophe Plasmulon Green\n\n\tMrMoto: Pla- Plasmulon!\n\tMrMoto: Thanks for the game.\n\nHomeworlds Online (SDG# 12098)\nVariants: "Hard time"\nStarted: 2008.11.3, Ended: 2008.11.23\nParticipants: MathGod (S), fnord (N)\nWinner: MathGod\n\n1) fnord: Homeworld B2 Y1 G3\n\n2) MathGod: Homeworld R1 B3 G3\n\tfnord: Greetings! Hope you have fun!\n\tMathGod: Ola! Hope you have fun too.\n\n3) fnord: Build G1 Fnord\n\n4) MathGod: Build G1 Mathgod\n\n5) fnord: Discover G1 Fnord B3 Discordia\n\n6) MathGod: Trade G1 Y1 Mathgod\n\n7) fnord: Build G1 Discordia\n\n8) MathGod: Build Y1 Mathgod\n\n9) fnord: Trade G1 B1 Discordia\n\n10) MathGod: Build Y2 Mathgod\n\n11) fnord: Build G1 Fnord\n\n12) MathGod: Discover Y2 Mathgod R2 Midway\n\n\tfnord: Sorry about that, my weekend got out of hand and I forgot to sign on in time.\n\tMathGod: It's OK. Want to play another? (Non-hardtime that is)\n\tfnord: Sure! I could use the practice. I tried playing this game a long while ago, and didn't do so well at it.\n\nHomeworlds Online (SDG# 12025)\nStarted: 2008.11.4, Ended: 2009.1.14\nParticipants: MathGod (S), MikeYarrum (N)\nWinner: MathGod\n\n\nHomeworlds Online (SDG# 12103)\nStarted: 2008.11.4, Ended: 2008.11.8\nParticipants: MrMoto (S), MikeYarrum (N)\nWinner: MrMoto\n\n\nHomeworlds Online (SDG# 11891)\nStarted: 2008.11.4, Ended: 2008.11.7\nParticipants: MadWuher (S), MrMoto (N)\nWinner: MadWuher\n\n1) MrMoto: Homeworld Y3 B2 G3\n\n2) MadWuher: Homeworld R1 B2 G3\n\tMrMoto: I come in peace.\n\tMadWuher: "Nanu-nanu" - Welcome.\n\n3) MrMoto: Build G1 Mrmoto\n\n4) MadWuher: Build G1 Madwuher\n\n5) MrMoto: Discover G1 Mrmoto B1 Denebula\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) MrMoto: Build G1 Denebula\n\n8) MadWuher: Build Y1 Madwuher\n\n9) MrMoto: Trade G1 Y1 Denebula\n\n10) MadWuher: Trade Y1 G1 Madwuher\n\n11) MrMoto: Build G1 Denebula\n\n12) MadWuher: Build G2 Madwuher\n\n13) MrMoto: Build G2 Mrmoto\n\n14) MadWuher: Discover G2 Madwuher G3 Bologna\n\n15) MrMoto: Sacrifice G3 Mrmoto\nBuild G2 Mrmoto\nBuild G3 Mrmoto\nBuild Y1 Denebula\n\n16) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y2 Madwuher\nBuild Y2 Madwuher\n\n17) MrMoto: Trade G2 R2 Mrmoto\n\n18) MadWuher: Trade Y2 R2 Madwuher\n\n19) MrMoto: Discover G2 Mrmoto B1 Fragrance\n\n20) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G3 Madwuher\nBuild Y2 Madwuher\n\n21) MrMoto: Discover Y1 Denebula R2 Dawn\n\n22) MadWuher: S Y2 Madwuher\nD G2 Madwuher B3 Edora\nM Y1 Madwuher Edora\n\n23) MrMoto: Sacrifice G3 Mrmoto\nBuild Y2 Dawn\nBuild Y2 Denebula\nBuild G3 Fragrance\n\n24) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y3 Madwuher\nBuild Y3 Edora\n\n25) MrMoto: Trade G3 R3 Fragrance\n\n26) MadWuher: Sacrifice Y3 Madwuher\nMove Y3 Edora Fragrance\nMove Y3 Fragrance Mrmoto\nDiscover G1 Madwuher Y3 Camelot\n\n27) MrMoto: Sacrifice Y1 Dawn\nMove R3 Fragrance Mrmoto\n\n28) MadWuher: S R2 Madwuher\nA R3 Mrmoto\nA R2 Mrmoto\n\n\tMadWuher: thanks for da game. Up to another?\n\tMrMoto: Ah, zut! I didn't see that coming.\r\nThanks, and sure, let's play again.\n\nHomeworlds Online (SDG# 11897)\nVariants: "Hard time"\nStarted: 2008.11.5, Ended: 2008.11.22\nParticipants: Jesse (S), MrMoto (N)\nWinner: Jesse\n\n1) MrMoto: Homeworld G3 Y1 B3\n\n2) Jesse: Homeworld B2 R1 G3\n\tJesse: Hello, and have a good game.\n\n3) MrMoto: Build B1 Mrmoto\n\tMrMoto: You too!\n\n4) Jesse: Build G1 Jesse\n\n5) MrMoto: Trade B3 G3 Mrmoto\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) MrMoto: Build G1 Mrmoto\n\n8) Jesse: Build Y1 Jesse\n\n9) MrMoto: Discover G1 Mrmoto R2 Woolly\n\n10) Jesse: Build G1 Jesse\n\n11) MrMoto: Build G1 Woolly\n\n12) Jesse: Build Y2 Jesse\n\n13) MrMoto: Build G2 Mrmoto\n\n14) Jesse: Discover Y2 Jesse B3 Chompy\n\n15) MrMoto: Discover G2 Mrmoto Y2 Dandelion\n\n16) Jesse: Discover Y1 Jesse B3 Bitey\n\n17) MrMoto: Build G2 Mrmoto\n\n18) Jesse: Sacrifice G3 Jesse\nBuild G2 Jesse\nBuild G3 Jesse\nBuild Y2 Jesse\n\n19) MrMoto: Trade G3 Y3 Mrmoto\n\tJesse: You have a serious problem developing in your lack of yellow ships. You will quickly find yourself frozen out and unable to move your ships where you want them. To avoid this in the future, you'll want to make sure you get into any given color before your opponent can run away with all the smaller pieces. One good idea for retaining the flexibility to do that is when you're sending small green ships out from your homeworld, discover blue systems. Then you can quickly build more green ships and trade them for yellow (or whatever color you need). Red single stars are particularly limiting.\n\tMrMoto: Hm, you are right. I don't have many yellow ships. Thank you for the advice; I am new to this game.\n\n20) Jesse: Discover G2 Jesse B3 Nibbly\n\n21) MrMoto: Build G3 Dandelion\n\tJesse: It's my pleasure to help new players. The problem you have now is that you can't effectively use your Y3 to build new yellow ships, because you also have a yellow system marker. If you build another yellow, that puts you at three yellow pieces, on the brink of a catastrophe. That situation can be alright as long as I don't have any yellow ships within movement range, but I can now sacrifice a Y2 to move a piece two steps from Bitey to your home system.\n\tMrMoto: Ah, right -- thanks for pointing that out. I see that it was important not to build a green ship in my homeworld this turn for the same reason.\n\n22) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y3 Chompy\nBuild Y3 Jesse\n\tJesse: Yes, exactly. It's usually best to defend the home world with ships of colors different from either of your system markers. Even if you don't plan to use them for production, it's relatively easy for your opponent to two ships into range to sacrifice to get them both into your system in one turn.\r\n\r\nAlthough your last couple of moves don't do as much as you would like for keeping you in the yellow economy, they do help. And, by the way, they are also a good example of using the weakness of my green concentration against me. Because I could not build another green, trading your large green for another color and rebuilding it on the following turn was an inexpensive way for you to get another large ship. But that's okay with me, because now I get to exploit my yellow advantage...\n\n23) MrMoto: Build B1 Mrmoto\n\n24) Jesse: Trade Y2 R2 Chompy\n\tJesse: In case you don't know it, this maneuver of sacrificing a G3 for two free builds is a common tactic called the factory. Another thing to note: Although having three of the same color in your system is generally bad, I wanted another large ship there, and I feel safe because you cannot immediately reach me and I have several possible development plans to correct the issue well before you could get there.\n\tJesse: You *could* have done the same thing to build two small blues, here. You may undo and try that, if you like. I'll leave it to your judgement whether building one or two at this moment is better.\n\n25) MrMoto: Discover Y3 Mrmoto B2 Potato\n\tMrMoto: Thanks for the advice, and sorry for the wait. I have learned the strategy of trading in G3s, but maybe I ruled it out because there were no greens left in stash, and I forgot I could get my G3 back. I'll know for next time.\n\n26) Jesse: Sacrifice Y2 Jesse\nMove Y3 Chompy Potato\nMove Y3 Potato Mrmoto\n\tJesse: Yes, the fact that sacrificed ships and abandoned systems go directly to the stash can be quite important.\r\n\n\n27) MrMoto: Sacrifice B1 Mrmoto\nTrade G3 R3 Dandelion\n\n28) Jesse: Sacrifice R2 Chompy\nAttack G2 Mrmoto\nAttack B1 Mrmoto\n\tJesse: There are two strategic rules of thumb that this situation should show the importance of. One is, never leave your homeworld undefended. That almost always means having a large ship there, because mediums and smalls cannot capture large ships on their own. The other is, when your opponent picks up a gun, you should pick up a gun. Guns, in this context, are red ships. Red system markers can allow captures only in that system. Red ships can be sacrificed to provide captures anywhere. Sometimes one of these can be violated temporarily to gain an advantage, but that's usually quite early on.\n\tJesse: Thanks for the game. I hope it's been helpful.\n\tMrMoto: Argh! Thank you, you have been very helpful indeed.\n\n\nHomeworlds Online (SDG# 12090)\nStarted: 2008.11.6, Ended: 2008.11.13\nParticipants: TwoShort (S), MrMoto (N)\nWinner: TwoShort\n\n1) MrMoto: Homeworld G3 Y2 B3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) MrMoto: Build B1 Mrmoto\n\n4) TwoShort: Build G1 Twoshort\n\n5) MrMoto: Trade B3 G3 Mrmoto\n\tTwoShort: Wacky - Here I was about to tell you that you're ignoring my "start with a green ship" advice, and that you shouldn't start with a blue except in the rare case the opponent takes a b1 star, which you also shouldn't do. But apparently you psychically predicted I'd typo my homeworld and flip the colors...\n\tMrMoto: I see the trans-galactic psychomodulator orbiting my homeworld has met with success.\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) MrMoto: Build G1 Mrmoto\n\n8) TwoShort: Build G1 Twoshort\n\n9) MrMoto: Build B1 Mrmoto\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n11) MrMoto: Discover B1 Mrmoto G1 Delivery\n\n12) TwoShort: Build G2 Twoshort\n\n13) MrMoto: Sacrifice G3 Mrmoto\nBuild B2 Mrmoto\nBuild B2 Mrmoto\nBuild B2 Delivery\n\n14) TwoShort: Build G2 Yolonda\n\tTwoShort: Not the way I expected you to grab the blue monopoly... Usually leaving yourself without a 3 is a bad idea, but I guess I can't get a red and get my 3 to your home world before you move a blue out and grow a new 3... Nice.\n\n15) MrMoto: Build B3 Delivery\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\tMrMoto: Well, I'm still learning and experimenting -- we'll find out soon enough if it was a clever move or a disaster.\n\tTwoShort: It was clever as long as you get 3 in your homeworld before I do. Long term, I think green beats blue...\n\n17) MrMoto: Sacrifice B2 Mrmoto\nTrade B2 Y2 Delivery\nTrade B3 R3 Delivery\n\n18) TwoShort: Trade G2 R2 Twoshort\n\n19) MrMoto: Build G2 Mrmoto\n\n20) TwoShort: Discover G1 Yolonda Y1 Yak\n\n21) MrMoto: Trade G1 R1 Mrmoto\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yak\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n23) MrMoto: Move R3 Delivery Yolonda\n\n24) TwoShort: Sacrifice R2 Twoshort\nAttack R3N Yolonda\nPass\n\n25) MrMoto: Trade B2 Y2 Mrmoto\n\n26) TwoShort: Sacrifice Y1 Twoshort\nMove G1 Yak Mrmoto\n\n27) MrMoto: Move G2 Mrmoto Yak\n\n28) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Mrmoto\nBuild Y1 Twoshort\nBuild R1 Yolonda\n\n\tMrMoto: Thanks for the game.\n\nHomeworlds Online (SDG# 12114)\nStarted: 2008.11.8, Ended: 2008.11.21\nParticipants: MadWuher (S), MrMoto (N)\nWinner: MadWuher\n\n1) MrMoto: Homeworld Y3 B2 G3\n\n2) MadWuher: Homeworld B1 R2 G3\n\n3) MrMoto: Build G1 Mrmoto\n\n4) MadWuher: Build G1 Madwuher\n\n5) MrMoto: Discover G1 Mrmoto B1 Riel\n\n6) MadWuher: Trade G1 B1 Madwuher\n\n7) MrMoto: Build G1 Mrmoto\n\n8) MadWuher: Build B2 Madwuher\n\n9) MrMoto: Discover G1 Mrmoto Y1 Crawford\n\n10) MadWuher: Trade B2 Y2 Madwuher\n\n11) MrMoto: Build G1 Mrmoto\n\n12) MadWuher: Build G2 Madwuher\n\n13) MrMoto: Sacrifice G3 Mrmoto\nBuild G2 Riel\nBuild G2 Crawford\nBuild G3 Mrmoto\n\n14) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild G3 Madwuher\nBuild Y1 Madwuher\n\n15) MrMoto: Trade G2 Y2 Riel\n\n16) MadWuher: Sacrifice Y2 Madwuher\nDiscover G3 Madwuher Y3 Edora\nMove B1 Madwuher Edora\n\n17) MrMoto: Build G2 Riel\n\n18) MadWuher: S G3 Madwuher\nB G3 Madwuher\nB B2 Edora\nB B2 Edora\n\n\n19) MrMoto: Trade G1 R1 Riel\n\n20) MadWuher: Trade B2 R2 Edora\n\n21) MrMoto: Sacrifice G3 Mrmoto\nBuild G1 Mrmoto\nBuild G3 Mrmoto\nBuild R1 Riel\n\n22) MadWuher: Discover B2 Edora Y1 Bologna\n\n23) MrMoto: Discover R1 Riel Y3 Ion\n\n24) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y2 Madwuher\nBuild Y2 Madwuher\n\n25) MrMoto: Trade G1 R1 Mrmoto\n\n26) MadWuher: Move Y2 Madwuher Edora\n\n27) MrMoto: Build R2 Riel\n\n28) MadWuher: Build R3 Edora\n\n29) MrMoto: Discover R2 Riel B3 Gradus\n\n30) MadWuher: Move R3 Edora Bologna\n\n31) MrMoto: Sacrifice G1 Crawford\nBuild R3 Gradus\n\n32) MadWuher: Build R3 Edora\n\n33) MrMoto: Move R1 Ion Madwuher\n\n34) MadWuher: Build Y3 Madwuher\n\n35) MrMoto: Sacrifice Y2 Riel\nMove R2 Gradus Madwuher\nMove R3 Gradus Madwuher\nCatastrophe Madwuher R\n\n36) MadWuher: Sacrifice Y2 Edora\nMove G3 Madwuher Mrmoto\nMove R3 Bologna Mrmoto\n\n37) MrMoto: Attack R3 Mrmoto\n\n38) MadWuher: Sacrifice R3 Edora\nAttack R3 Mrmoto\nAttack G3 Mrmoto\nAttack R1 Mrmoto\n\n\tMadWuher: Just a few quick comments (in case it helps you in your next game). In the first few turns I was able to get control of the Blue tech (I did this because I saw a lot of B1's already being used on the table). If you had switched from producing Green tech to Blue tech, you would have forced me to abandon my control over Blue and I would have had to trade over to yellow or red right away. A bit part of this game is to control the colours (or at least force your opponents into doing something that will help you). \n\tMadWuher: There was one turn where you sacrificed your Green 3 to create two Green 2's and a Green 3. This left a Green 3 open for me to take. Then you traded some Green tech and rebuilt your Green tech, letting me use the green production strategy against you. You did all the work, but I got to use it. I've seen others try to do similar work, but instead sacrifice their G3 when they control another colour, letting them get to other 3 pointers (then trading them back for the G3) and not letting your opponents have a production centre.\n\tMadWuher: Later in the game, I was able to control most of the Yellow tech (leaving you with only size 1 and/or 2 Yellow). This seemed to cause some trouble for you as you then had to navigate a little more carefully to get the catastrophe in my home system. Knowing that you didn't have either Blue tech ready to destroy my other star, or that you would use up most of your Red tech to destroy one of my stars, I chose to keep my Red tech out of the way and force a fight in your home system. Since I had a Red 3 to sacrifice and you had at most an R1 to fight back, I chose to overwhelm you in your home system with two size 3 ships (different colours in case you tried to make a catastrophe at your home planet). \n\tMadWuher: I would recommend using your small ships to create catastrophes, only using your big ships if a catastrophe would allow you to destroy more points of ships on my side than on yours. The player TwoShort likes to think around two moves ahead, destroying ships if he will be in a better position (pointwise and/or endgame I think) within the next 2 turns. Also, TwoShort does a great job controlling the size 3 pyramids, and the colours. If you get a chance, you might want to check out some of his games to see how he does it. He has a few unorthodox starts and does similar steps in the first few turns, which, if you don't keep aware of, will hurt you later on in the game. \n\tMrMoto: I- I thought I was winning! Hm, I have a lot to learn. Thanks for all your advice; it helps to see where I went wrong.\n\tMadWuher: Up to another? I played 3 games at the same time once to try different starts and different moves. If you select my "Hard Time, Unrated" challenge we can play without effecting ratings and if one of us times out, it will resign us from the game.\n\nHomeworlds Online (SDG# 12133)\nStarted: 2008.11.8, Ended: 2008.11.13\nParticipants: TwoShort (S), Sunnan (N)\nWinner: TwoShort\n\n1) Sunnan: Homeworld R3 Y1 G3 *\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) Sunnan: Build G1 Sunnan\n\n4) TwoShort: Build G1 Twoshort\n\n5) Sunnan: Discover G1 Sunnan B2 Penny\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Sunnan: Build G1 Penny\n\n8) TwoShort: Build Y1 Twoshort\n\n9) Sunnan: Build G1 Sunnan\n\n10) TwoShort: Build G2 Twoshort\n\n11) Sunnan: Sacrifice G3 Sunnan\nBuild G2 Penny\nBuild G2 Sunnan\nBuild G3 Sunnan\n\n12) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n13) Sunnan: Trade G2 Y2 Penny\n\n14) TwoShort: Sacrifice Y2 Twoshort\nDiscover G2 Twoshort Y3 Nickel\nDiscover Y1 Twoshort B3 Dime\n\n15) Sunnan: Discover G1 Penny Y3 Quarter\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Dime\nBuild Y2 Dime\nBuild Y3 Twoshort\n\n17) Sunnan: Sacrifice G2 Sunnan\nBuild G2 Penny\nBuild G2 Quarter\n\n18) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Twoshort Quarter\nMove G3 Quarter Penny\nMove G3 Penny Sunnan\n\n19) Sunnan: Move G2 Quarter Twoshort\n\n\tSunnan: There was nothing I could've done. Guess I really do need blue at the base. (It's so dangerous to have a blue star, though... (since opponents can go in and change to your color and call catastrophe) otoh, this time my red hurt me arguably more than blue would've.) Thanks for the game!\n\nHomeworlds Online (SDG# 12172)\nVariants: "Hard time"\nStarted: 2008.11.11, Ended: 2008.12.21\nParticipants: Keith (S), stoneaxe (N)\nWinner: Keith\n\n1) stoneaxe: Homeworld Y3 B2 G3\n\n2) Keith: Homeworld Y1 B2 G3\n\n3) stoneaxe: Build G1 Stoneaxe\n\n4) Keith: Build G1 Keith\n\tstoneaxe: Hi and good luck. Thanks for playing!\n\tKeith: You welcome. Have a good game.\n\n5) stoneaxe: Discover G1 Stoneaxe Y1 Yanni\n\n6) Keith: Trade G1 Y1 Keith\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) Keith: Build Y2 Keith\n\n9) stoneaxe: Build G1 Yanni\n\n10) Keith: Build G2 Keith\n\n11) stoneaxe: Trade G1 B1 Stoneaxe\n\n12) Keith: Discover Y2 Keith G3 Behemoth\n\n13) stoneaxe: Build G1 Stoneaxe\n\n14) Keith: Discover G2 Keith Y3 Daikiro\n\n15) stoneaxe: Trade G3 Y3 Stoneaxe\n\n16) Keith: Build Y2 Behemoth\n\n17) stoneaxe: Discover G1 Yanni G3 Gor\n\n18) Keith: Build Y2 Keith\n\n19) stoneaxe: Build G2 Stoneaxe\n\n20) Keith: Build G2 Keith\n\n21) stoneaxe: Build B1 Stoneaxe\n\n22) Keith: Trade Y2 B2 Keith\n\n23) stoneaxe: Move B1 Stoneaxe Yanni\n\n24) Keith: Build Y2 Keith\n\n25) stoneaxe: Sacrifice G2 Stoneaxe\nBuild B1 Yanni\nBuild B3 Yanni\n\n26) Keith: Sacrifice Y2 Keith\nMove B2 Keith Gor\nMove B2 Gor Yanni\nCatastrophe Yanni Blue\n\n27) stoneaxe: Build G2 Stoneaxe\n\n28) Keith: Build Y2 Keith\n\n29) stoneaxe: Move B1 Stoneaxe Yanni\n\n30) Keith: Trade Y2 R2 Keith\n\n31) stoneaxe: Build B1 Yanni\n\n32) Keith: Sacrifice G3 Keith\nBuild G3 Keith\nBuild R1 Keith\nBuild Y2 Keith\n\n33) stoneaxe: Trade G1 B1 Stoneaxe\n\n34) Keith: Sacrifice G2 Daikiro\nBuild R1 Keith\nBuild Y3 Behemoth\n\n35) stoneaxe: Trade B1 R1 Stoneaxe\n\n36) Keith: Sacrifice Y2 Keith\nMove Y3 Behemoth Yanni\nMove Y3 Yanni Stoneaxe\n\n37) stoneaxe: Attack Y3 Stoneaxe\n\n\tstoneaxe: Sorry I wasn't more of a challenge! I'm going to resign now because this is such a Rout. Well played!\n\tKeith: Thank you. Your game was off from your usual. \n\nHomeworlds Online (SDG# 12113)\nStarted: 2008.11.13, Ended: 2008.11.13\nParticipants: MikeYarrum (S), willynch (N)\nWinner: MikeYarrum\n\n\nHomeworlds Online (SDG# 12140)\nStarted: 2008.11.15, Ended: 2008.12.7\nParticipants: MadWuher (S), Uglyfoot (N)\nWinner: MadWuher\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) MadWuher: Homeworld R1 B2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tMadWuher: Hello. Have a good game.\n\tUglyfoot: Have a good game.\n\n4) MadWuher: Build G1 Madwuher\n\n5) Uglyfoot: Discover G1 Uglyfoot R1 Newton\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) Uglyfoot: Build G1 Newton\n\n8) MadWuher: Build Y1 Madwuher\n\n9) Uglyfoot: Build G1 Uglyfoot\n\n10) MadWuher: Build Y1 Madwuher\n\n11) Uglyfoot: Build G2 Uglyfoot\n\n12) MadWuher: Build G2 Madwuher\n\n13) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n14) MadWuher: Sacrifice Y1 Madwuher\nDiscover G2 Madwuher B3 Edora\n\n15) Uglyfoot: Move Y2 Uglyfoot Newton\n\n16) MadWuher: Build G2 Madwuher\n\n17) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Newton\nBuild G3 Uglyfoot\nBuild G3 Uglyfoot\n\n18) MadWuher: Discover G2 Madwuher Y3 Bologna\n\n19) Uglyfoot: Move G1 Newton Bologna\n\n20) MadWuher: Trade Y1 R1 Madwuher\n\n21) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n22) MadWuher: Build G3 Edora\n\n23) Uglyfoot: Trade G1 B1 Uglyfoot\n\n24) MadWuher: Trade G3 Y3 Edora\n\n25) Uglyfoot: Sacrifice Y3 Uglyfoot\nMove G1 Newton Bologna\nMove G1 Bologna Madwuher\nMove G1 Bologna Madwuher\n\n26) MadWuher: Sacrifice G2 Bologna\nBuild G1 Madwuher\nBuild R2 Madwuher\nCatastrophe Madwuher G\n\tMadWuher: Sorry. Doing these moves from my iPod and I'm still learning how to type on it. My big thumb keeps hitting the wrong keys.\n\n27) Uglyfoot: Move B1 Uglyfoot Newton\n\n28) MadWuher: Trade R2 G2 Madwuher\n\n29) Uglyfoot: Build G1 Newton\n\n30) MadWuher: Build R2 Madwuher\n\n31) Uglyfoot: Build G1 Uglyfoot\n\n32) MadWuher: Build G1 Madwuher\n\n33) Uglyfoot: Trade G2 R2 Newton\n\n34) MadWuher: Move R1 Madwuher Edora\n\n35) Uglyfoot: Discover R2 Newton Y3 Tesla\n\n36) MadWuher: Discover R2 Madwuher Y3 Bologna\n\n37) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Newton\nBuild G3 Uglyfoot\nBuild Y1 Newton\n\n38) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\n\n39) Uglyfoot: Trade G2 R2 Newton\n\n40) MadWuher: Sacrifice G2 Edora\nBuild R3 Edora\nBuild R3 Bologna\n\n41) Uglyfoot: Move R2 Newton Uglyfoot\n\n42) MadWuher: Trade R1 Y1 Edora\n\n43) Uglyfoot: Build G2 Newton\n\n44) MadWuher: Move R3 Bologna Newton\n\n45) Uglyfoot: Sacrifice Y2 Newton\nMove G2 Newton Tesla\nMove B1 Newton Tesla\n\n46) MadWuher: Sacrifice R2 Bologna\nAttack G1 Newton\nAttack Y1 Newton\n\n47) Uglyfoot: Discover G1 Uglyfoot R1 Franklin\n\n48) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Newton\nBuild Y2 Madwuher\nBuild Y3 Madwuher\n\n49) Uglyfoot: Move R2 Uglyfoot Newton\n\n50) MadWuher: Sacrifice Y2 Newton\nMove R3 Newton Tesla\nMove Y1 Newton Tesla\n\n51) Uglyfoot: Sacrifice G2 Tesla\nBuild R2 Tesla\nBuild R3 Tesla\nCatastrophe Tesla R\n\n52) MadWuher: Sacrifice G1 Newton\nBuild Y2 Edora\n\n53) Uglyfoot: Build G1 Uglyfoot\n\n54) MadWuher: Build G2 Madwuher\n\n55) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Franklin\nBuild G3 Uglyfoot\nBuild G3 Franklin\n\n56) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\n\n\tUglyfoot: I have no moves that will benefit me...\n\nHomeworlds Online (SDG# 12198)\nStarted: 2008.11.18, Ended: 2008.12.7\nParticipants: ts52 (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y3 B2 G3\n\n2) ts52: Homeworld G1 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) ts52: Build Y1 Ts52\n\n5) MadWuher: Build G1 Madwuher\n\tts52: Have a good game!\n\tMadWuher: You too\n\n6) ts52: D Y1 Ts52 G3 Kermit\n\n7) MadWuher: Discover G1 Madwuher B1 Edora\n\n8) ts52: Build Y1 Ts52\n\n9) MadWuher: Build G2 Edora\n\n10) ts52: Build Y1 Kermit\n\n11) MadWuher: Build G2 Edora\n\n12) ts52: Build Y2 Ts52\n\n13) MadWuher: Trade G2 Y2 Edora\n\n14) ts52: Discover Y1 Ts52 G3 Oscar\n\n15) MadWuher: Trade G1 R1 Edora\n\n16) ts52: Trade Y2 R2 Ts52\n\n17) MadWuher: Build Y2 Edora\n\n18) ts52: Build R1 Ts52\n\n19) MadWuher: Discover Y2 Edora B3 Bologna\n\n20) ts52: Build Y2 Oscar\n\n21) MadWuher: Sacrifice G1 Madwuher\nBuild Y3 Bologna\n\n22) ts52: Trade R1 G1 Ts52\n\n23) MadWuher: Build G1 Madwuher\n\n24) ts52: Discover G1 Ts52 B3 Gonzo\n\n25) MadWuher: Move G2 Edora Gonzo\n\n26) ts52: Build G2 Gonzo\n\tts52: b g2 gonzo\n\tts52: oops, wrong window\n\n27) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Gonzo\nBuild G3 Madwuher\nBuild R1 Edora\nCatastrophe Gonzo G\n\n28) ts52: Build R1 Ts52\n\n29) MadWuher: Build G1 Madwuher\n\n30) ts52: Trade R2 G2 Ts52\n\n31) MadWuher: Move G1 Madwuher Edora\n\n32) ts52: Build R2 Ts52\n\n33) MadWuher: Build G2 Edora\n\n34) ts52: Move R2 Ts52 Kermit\n\n35) MadWuher: Move R1 Edora Bologna\n\n36) ts52: Build R2 Ts52\n\n37) MadWuher: Move G1 Edora Bologna\n\n38) ts52: Move R1 Ts52 Oscar\n\n39) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Bologna\nBuild G3 Madwuher\nPass\n\n40) ts52: Move Y1 Oscar Ts52\n\n41) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R2 Bologna\nBuild R3 Edora\n\n42) ts52: Sacrifice G2 Ts52\nBuild R3 Oscar\nBuild R3 Kermit\n\n43) MadWuher: Build G2 Edora\n\n44) ts52: Sacrifice Y2 Oscar\nMove R1 Oscar Edora\nMove R2 Kermit Edora\nCatastrophe Edora Red\n\n45) MadWuher: Trade G1 R1 Madwuher\n\n46) ts52: Move R3 Kermit Edora\n\n47) MadWuher: Sacrifice Y2 Edora\nDiscover G2 Edora Y2 Camelot\nDiscover G2 Edora Y2 Farthington\n\n48) ts52: Move Y1 Ts52 Oscar\n\n49) MadWuher: Build G1 Madwuher\n\n50) ts52: Move Y1 Kermit Edora\n\n51) MadWuher: Move R2 Bologna Camelot\n\n52) ts52: Move R3 Oscar Camelot\n\n53) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R1 Camelot\nBuild R2 Camelot\nCatastrophe Camelot R\n\n54) ts52: M R3 Edora Camelot\n\n55) MadWuher: Sacrifice G2 Camelot\nBuild G2 Farthington\nBuild R1 Bologna\n\n56) ts52: Move R3 Camelot Edora\n\n57) MadWuher: Move R1 Bologna Farthington\n\n58) ts52: Build Y2 Ts52\n\n59) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R2 Bologna\nBuild R2 Madwuher\n\n60) ts52: Build R3 Ts52\n\n61) MadWuher: Build R3 Farthington\n\n62) ts52: Move R2 Ts52 Oscar\n\n63) MadWuher: Move G2 Farthington Kermit\n\n64) ts52: Move R3 Ts52 Kermit\n\n65) MadWuher: Sacrifice G2 Kermit\nBuild G2 Bologna\nPass\n\n66) ts52: Move Y1 Kermit Edora\n\n67) MadWuher: Move Y3 Bologna Ts52\n\n68) ts52: Move R2 Oscar Ts52\n\n69) MadWuher: Sacrifice R3 Farthington\nAttack Y3 Ts52\nAttack Y2 Ts52\nAttack R2 Ts52\n\n\nHomeworlds Online (SDG# 12199)\nStarted: 2008.11.23, Ended: 2009.1.9\nParticipants: MathGod (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) MathGod: Homeworld B1 G3 B3 *\n\tMathGod: Hi there. Thanks for the game.\n\n3) ts52: Build G1 Ts52\n\tts52: Have a good game.\n\n4) MathGod: Build B1 Mathgod\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) MathGod: Trade B3 Y3 Mathgod\n\n7) ts52: Build G1 Ts52\n\n8) MathGod: Build B2 Mathgod\n\n9) ts52: Build G1 Ts52\n\n10) MathGod: Trade B2 G2 Mathgod\n\n11) ts52: Discover G1 Ts52 B3 Grover\n\n12) MathGod: Build G2 Mathgod\n\n13) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Grover\nBuild G3 Ts52\n\n14) MathGod: Discover G2 Mathgod Y2 Yell-o\n\n15) ts52: T G2 R2 Gonzo\n\n16) MathGod: Trade G2 R2 Mathgod\n\n17) ts52: B G2 Gonzo\n\n18) MathGod: Build G2 Yell-o\n\n19) ts52: Sacrifice G3 Grover\nB G3 Grover\nB R1 Gonzo\nB R1 Gonzo\n\n20) MathGod: Build B2 Mathgod\n\n21) ts52: T R1 Y1 Gonzo\n\n22) MathGod: Move B2 Mathgod Yell-o\n\n23) ts52: Build Y1 Gonzo\n\n24) MathGod: Sacrifice G2 Yell-o\nBuild B2 Yell-o\nBuild B2 Mathgod\n\n25) ts52: D G1 Ts52 B3 Rosalita\n\n26) MathGod: Move B2 Yell-o Rosalita\n\n27) ts52: Move R2 Gonzo Ts52\n\n28) MathGod: Trade B2 G2 Rosalita\n\n29) ts52: Build R1 Gonzo\n\n30) MathGod: Build B2 Yell-o\n\n31) ts52: Move Y1 Gonzo Ts52\n\n32) MathGod: Sacrifice B2 Mathgod\nTrade G2 R2 Rosalita\nTrade B2 G2 Yell-o\n\n33) ts52: Sacrifice G3 Grover\nBuild G3 Rosalita\nBuild R1 Gonzo\nBuild R3 Ts52\n\n34) MathGod: Sacrifice G2 Yell-o\nBuild G2 Yell-o\nBuild R3 Mathgod\n\n35) ts52: Sacrifice R1 Gonzo\nAttack R2S Rosalita\n\n36) MathGod: Move R3 Mathgod Yell-o\n\n37) ts52: Sacrifice G3 Rosalita\nBuild G3 Grover\nBuild R1 Gonzo\nBuild R3 Rosalita\n\n38) MathGod: Build B2 Yell-o\n\n39) ts52: Discover R1 Gonzo Y2 Zoe\n\n40) MathGod: Discover G2 Yell-o Y3 Barry\n\n41) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild Y1 Ts52\nBuild Y3 Gonzo\n\n42) MathGod: Sacrifice G2 Barry\nBuild G2 Yell-o\nBuild Y3 Mathgod\n\n43) ts52: Discover G2 Gonzo B2 Cookie\n\n44) MathGod: Move B1 Mathgod Yell-o\n\n45) ts52: Move Y1 Ts52 Rosalita\n\n46) MathGod: Sacrifice Y3 Mathgod\nMove B1 Yell-o Gonzo\nMove B2 Yell-o Gonzo\nMove B2 Yell-o Gonzo\nCatastrophe Gonzo B\n\n47) ts52: Build G1 Ts52\n\n48) MathGod: Discover G2 Yell-o Y3 Y-too\n\tMathGod: Ohh well. Not much else to do.\n\n49) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild Y1 Ts52\nBuild Y3 Rosalita\n\n50) MathGod: Sacrifice G2 Y-too\nBuild G2 Yell-o\nBuild Y3 Mathgod\n\n51) ts52: Move Y1 Ts52 Grover\n\n52) MathGod: Discover Y3 Mathgod B2 Blue-toe\n\n53) ts52: Move R2 Rosalita Cookie\n\n54) MathGod: Move G2 Yell-o Grover\n\n55) ts52: Move R3 Ts52 Grover\n\n56) MathGod: Sacrifice G2 Grover\nBuild G2 Yell-o\nBuild R1 Yell-o\n\n57) ts52: Move G3 Grover Zoe\n\n58) MathGod: Discover G2 Yell-o B3 Bell-o\n\n59) ts52: Build R1 Zoe\n\n60) MathGod: Move R1 Yell-o Bell-o\n\n61) ts52: Move G3 Zoe Bell-o\n\n62) MathGod: Sacrifice G2 Bell-o\nBuild G2 Yell-o\nPass\n\n63) ts52: Sacrifice R1 Zoe\nAttack R1 Bell-o\n\n64) MathGod: Discover G2 Yell-o B1 Blue\n\n65) ts52: Build R1 Cookie\n\n66) MathGod: Move Y3 Mathgod Cookie\n\n67) ts52: Sacrifice Y3 Rosalita\nMove R3 Grover Cookie\nMove R3 Cookie Mathgod\nMove R3 Rosalita Cookie\n\tMathGod: I have no clue what to do.\n\n68) MathGod: Sacrifice R3 Yell-o\nAttack R3 Cookie\nAttack R2 Cookie\nAttack G2 Cookie\n\tMathGod: Yes, I know this is suicide. \n\n69) ts52: Attack R2 Mathgod\n\tts52: It's been an interesting game.\n\n\tts52: Thanks for the game.\n\tMathGod: Thank you\n\nHomeworlds Online (SDG# 12256)\nVariants: "Hard time"\nStarted: 2008.11.24, Ended: 2008.12.27\nParticipants: alexcobo (S), MathGod (N)\nWinner: MathGod\n\n1) MathGod: Homeworld R1 B2 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) MathGod: Build G1 Mathgod\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) MathGod: Trade G1 Y1 Mathgod\n\n6) alexcobo: Trade Y1 R1 Alexcobo\n\n7) MathGod: Build G1 Mathgod\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) MathGod: Trade G1 R1 Mathgod\n\n10) alexcobo: Build R2 Alexcobo\n\n11) MathGod: Discover R1 Mathgod G3 Green-ee\n\n12) alexcobo: Build R2 Alexcobo\n\n13) MathGod: Build G1 Mathgod\n\n14) alexcobo: Discover R2 Alexcobo B1 Azure\n\n15) MathGod: Build G1 Mathgod\n\n16) alexcobo: Trade Y1 G1 Alexcobo\n\n17) MathGod: Discover G1 Mathgod R3 Rendil-ee\n\n18) alexcobo: Build Y1 Alexcobo\n\n19) MathGod: Discover G1 Mathgod R3 Bell-ee-flop\n\n20) alexcobo: Build G2 Alexcobo\n\n21) MathGod: Build G2 Mathgod\n\n22) alexcobo: Sacrifice G1 Alexcobo\nBuild R2 Azure\n\n23) MathGod: Build R3 Green-ee\n\n24) alexcobo: Trade R2 Y2 Alexcobo\n\n25) MathGod: Trade G2 Y2 Mathgod\n\n26) alexcobo: Trade R2 Y2 Azure\n\n27) MathGod: Build G1 Mathgod\n\n28) alexcobo: Build G2 Alexcobo\n\n29) MathGod: Sacrifice Y2 Mathgod\nMove G1 Bell-ee-flop Azure\nMove G1 Azure Alexcobo\nCatastrophe Alexcobo G\n\n30) alexcobo: Discover Y2 Alexcobo G3 Green\n\n31) MathGod: Build G1 Mathgod\n\n32) alexcobo: Trade Y2 G2 Azure\n\n33) MathGod: Discover G1 Mathgod Y3 Yellow-ee\n\n34) alexcobo: Build G2 Azure\n\n35) MathGod: Build G2 Yellow-ee\n\n36) alexcobo: Build Y1 Green\n\n37) MathGod: Build Y2 Mathgod\n\n38) alexcobo: Build R2 Azure\n\n39) MathGod: Move Y1 Mathgod Green-ee\n\n40) alexcobo: Trade R2 B2 Azure\n\n41) MathGod: Sacrifice G3 Mathgod\nBuild G3 Mathgod\nBuild Y2 Green-ee\nBuild Y3 Mathgod\n\n42) alexcobo: Sacrifice Y1 Alexcobo\nMove R2 Azure Rendil-ee\n\n43) MathGod: Sacrifice Y1 Green-ee\nMove G1 Rendil-ee Azure\n\n44) alexcobo: Trade G2 R2 Azure\n\n45) MathGod: Sacrifice G3 Mathgod\nBuild G2 Mathgod\nBuild G3 Azure\nBuild Y1 Green-ee\n\n46) alexcobo: Sacrifice G2 Azure\nBuild R2 Rendil-ee\nBuild R3 Alexcobo\n\n47) MathGod: Trade G1 B1 Mathgod\n\n48) alexcobo: Attack G1N Azure\n\n49) MathGod: Sacrifice R3 Green-ee\nAttack B2 Azure\nAttack G1 Azure\nAttack R2 Azure\n\n50) alexcobo: Trade R1 G1 Alexcobo\n\n51) MathGod: Sacrifice G2 Yellow-ee\nBuild R1 Azure\nBuild R3 Green-ee\n\n52) alexcobo: Build G2 Alexcobo\n\n53) MathGod: Move B1 Mathgod Green-ee\n\n54) alexcobo: Build Y1 Alexcobo\n\n55) MathGod: Move Y2 Green-ee Azure\n\n56) alexcobo: Sacrifice Y2 Green\nMove R2 Rendil-ee Alexcobo\nMove R2 Alexcobo Yellow-ee\n\n57) MathGod: Sacrifice G3 Azure\nBuild G2 Mathgod\nBuild G3 Azure\nBuild B1 Green-ee\n\n58) alexcobo: Attack G1N Yellow-ee\n\n59) MathGod: Sacrifice Y3 Mathgod\nMove B1 Green-ee Alexcobo\nMove B1 Green-ee Alexcobo\nMove B2 Azure Alexcobo\nCatastrophe Alexcobo B\n\n\tMathGod: Thanks for the game.\n\nHomeworlds Online (SDG# 12240)\nStarted: 2008.11.25, Ended: 2009.3.10\nParticipants: stoneaxe (S), MrMoto (W), MadWuher (N), Trollkin (E)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) Trollkin: Homeworld B2 G1 Y3\n\tMadWuher: Welcome, One and All to this wonderful game we call Homeworlds. Prepare yourself for a real slobber-knocker as our four contestants vie for the coveted Homeworlds Champion Title. Now entering the arena, MadWuher! (And the fans go wild)\n\n3) stoneaxe: Homeworld B3 R1 G3\n\n4) MrMoto: Homeworld G3 Y2 B3\n\tstoneaxe: 4 players- wow! This is going to be a wild game! Good luck all.\n\n5) MadWuher: Build G1 Madwuher\n\tMrMoto: Galactic greetings from the MrMotonians.\n\tTrollkin: Good luck. First time player here. :-/\n\tMadWuher: Welcome Trollkin (does that mean we hafta go easy on him??? guys???) j/k\n\n6) Trollkin: Build Y1 Trollkin\n\tstoneaxe: MadWuher, you need to go easy on All of us!!! By the way, I liked your introduction! LOL\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) MrMoto: Build B1 Mrmoto\n\tstoneaxe: Trollkin, welcome to the game! Make sure you don't build 4 of the same color in your homeworld, or someone will 'Catastrophe' you! I did it in one of my first games. Haha! The 2 player version of this game is easier to "strategize" about. 4 player is just too many variables for me to think about, so I will just take it one move at a time. This is only my 2nd game of 4-player. My very first Homeworlds game was also 4-player, and its harder to learn the strategies this way. But you are off to a good start!\r\n\r\nSome may disagree, but I think Homeworlds is similar to Chess; or it exercises similar parts of the brain, or something. Alien City is cool like that too.\n\tstoneaxe: Just curious: What do you 3 have as far as real-life Icehouse pieces (stashes)? I only have some homemade ones made out of card-stock. I've played Martian Chess with them and a crude game of Homeworlds, but they worked. Maybe I'll place an order for some 'real' plastic ones around Christmas. Any Recommendations?\n\tMadWuher: I have 5 sets of the Rainbow colour treehouse sets giving me a total of 5 full stashes (Red, Green, Blue, Yellow and Black). I also bought the Grey stash from Looneylabs (so I can play Volcano) and am thinking of getting the Pink stash (just so I can play Volcano with all opaque colours). I want to create some card stock pyramids so I can keep them in my office in case I have a tricky move to make (in Homeworlds of course) and then I can keep my plastics ones safe and sound at home.\n\n9) MadWuher: Trade G1 Y1 Madwuher\n\n10) Trollkin: Discover Y1 Trollkin R3 Omicronpersei8\n\n11) stoneaxe: Build G1 Stoneaxe\n\n12) MrMoto: Build B1 Mrmoto\n\n13) MadWuher: Build G1 Madwuher\n\n14) Trollkin: Trade Y3 B3 Trollkin\n\n15) stoneaxe: Trade G1 Y1 Stoneaxe\n\n16) MrMoto: Discover B1 Mrmoto G1 Maillot\n\n17) MadWuher: Discover G1 Madwuher B3 Decapod10\n\n18) Trollkin: Build B1 Trollkin\n\n19) stoneaxe: Build Y1 Stoneaxe\n\n20) MrMoto: Build B1 Maillot\n\n21) MadWuher: Build G1 Madwuher\n\n22) Trollkin: Trade B3 G3 Trollkin\n\n23) stoneaxe: Build G2 Stoneaxe\n\n24) MrMoto: Trade B3 G3 Mrmoto\n\n25) MadWuher: B G2 Decapod10\n\n26) Trollkin: Build G2 Trollkin\n\n\n27) stoneaxe: Discover Y1 Stoneaxe G2 Newgondor\n\n28) MrMoto: Build G2 Mrmoto\n\n29) MadWuher: Trade G2 Y2 Decapod10\n\tMrMoto: Trollkin, you might want to avoid building so many Green ships in one spot. Remember that if a system has four pieces of one colour, including stars, then they can be wiped out in a catastrophe -- and Decapod10 isn't far away ...\n\n30) Trollkin: Move Y1 Omicronpersei8 Maillot\n\n\n31) stoneaxe: Build Y1 Newgondor\n\n32) MrMoto: Trade G2 Y2 Mrmoto\n\n33) MadWuher: Build Y2 Decapod10\n\tMadWuher: Just to warn both Trollkin and Stoneaxe, I have the ability to reach either of your homeworlds with a green ship and cause a catastrophe. I see Mr. Moto traded a green away so he is safe (for the moment). I would suggest fixing this ASAP as next turn, I may not feel so generous as to leave the two of you alone. <insert evil laugh here>\n\n34) Trollkin: Sacrifice Y1 Maillot\nDiscover G2 Trollkin Y3 Quacky\n\n35) stoneaxe: Trade G2 R2 Stoneaxe\n\n36) MrMoto: Discover Y2 Mrmoto B1 Popcorn\n\tstoneaxe: Thanks for the warning!\n\n37) MadWuher: Build G2 Decapod10\n\n38) Trollkin: Build G2 Quacky\n\n39) stoneaxe: Move R2 Stoneaxe Newgondor\n\n40) MrMoto: Build B2 Mrmoto\n\n41) MadWuher: Build G2 Decapod10\n\n42) Trollkin: Move G2 Quacky Maillot\n\n\n43) stoneaxe: Move R2 Newgondor Decapod10\n\n44) MrMoto: Build B2 Maillot\n\n45) MadWuher: Sacrifice Y2 Decapod10\nMove G1 Decapod10 Newgondor\nMove G1 Newgondor Stoneaxe\n\n46) Trollkin: Trade B1 Y1 Trollkin\n\n\n47) stoneaxe: Attack Y2N Decapod10\n\n48) MrMoto: Trade B2 Y2 Maillot\n\n49) MadWuher: Sacrifice G2 Decapod10\nBuild G2 Stoneaxe\nBuild Y2 Madwuher\nCatastrophe Stoneaxe G\n\n50) Trollkin: Build Y3 Trollkin\n\n51) stoneaxe: Attack G2N Decapod10\n\n52) MrMoto: Sacrifice G3 Mrmoto\nBuild Y3 Popcorn\nBuild Y3 Maillot\nBuild B1 Mrmoto\n\n53) MadWuher: Discover Y2 Madwuher G3 Newbury\n\n54) Trollkin: Move Y3 Trollkin Decapod10\n\n55) stoneaxe: Sacrifice G2 Decapod10\nBuild Y3 Stoneaxe\nBuild R1 Decapod10\n\n56) MrMoto: Trade Y3 R3 Maillot\n\n57) MadWuher: Build Y3 Madwuher\n\n58) Trollkin: Build G1 Quacky\n\n59) stoneaxe: Trade Y1 G1 Stoneaxe\n\n60) MrMoto: Attack G2E Maillot\n\n61) MadWuher: Discover G1 Madwuher B3 Blarney\n\n62) Trollkin: Build Y1 Trollkin\n\n\n63) stoneaxe: Build G2 Stoneaxe\n\n64) MrMoto: Sacrifice Y2 Popcorn\nDiscover R3 Maillot R3 Hereicome\nMove R3 Hereicome Trollkin\n\n65) MadWuher: Trade Y1 R1 Madwuher\n\n66) Trollkin: Move Y1 Trollkin Decapod10\n\n\n\n67) stoneaxe: Discover G1 Stoneaxe Y2 Solace\n\n68) MrMoto: Attack G3E Trollkin\n\n69) MadWuher: Build G2 Blarney\n\n70) Trollkin: Trade Y3 B3 Decapod10\n\n71) stoneaxe: Build G3 Stoneaxe\n\n72) MrMoto: Trade B1 R1 Mrmoto\n\n73) MadWuher: Move R1 Madwuher Blarney\n\n74) Trollkin: Build Y1 Trollkin\n\n75) stoneaxe: Sacrifice G3 Stoneaxe\nBuild Y3 Stoneaxe\nBuild R2 Decapod10\nBuild G3 Stoneaxe\n\n76) MrMoto: Build R2 Mrmoto\n\n77) MadWuher: Sacrifice G2 Blarney\nBuild G2 Madwuher\nBuild R2 Blarney\n\n78) Trollkin: Move B3 Decapod10 Popcorn\n\n\n79) stoneaxe: Move R2 Decapod10 Newgondor\n\n80) MrMoto: Attack Y1E Trollkin\n\n81) MadWuher: Trade R1 B1 Blarney\n\n82) Trollkin: Trade B3 R3 Popcorn\n\n83) stoneaxe: Sacrifice G1 Solace\nBuild R1 Decapod10\n\n84) MrMoto: Attack Y1E Trollkin\n\n85) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Blarney\nBuild G3 Madwuher\nBuild Y2 Madwuher\n\n86) stoneaxe: Trade R2 B2 Decapod10\n\n87) MrMoto: Discover B1 Maillot R2 Glomp\n\n88) MadWuher: Discover G2 Madwuher R3 Helios\n\n89) stoneaxe: Sacrifice G3 Stoneaxe\nBuild R2 Newgondor\nBuild R3 Newgondor\nBuild G3 Stoneaxe\n\n90) MrMoto: Build B2 Maillot\n\tstoneaxe: I'm sorry, that was a typo.\n\n91) MadWuher: Build R3 Blarney\n\n92) stoneaxe: Discover R3 Newgondor B3 Bree\n\n93) MrMoto: Sacrifice Y2 Maillot\nDiscover B1 Maillot Y2 Sticky\nMove B2 Maillot Sticky\n\n94) MadWuher: Sacrifice Y2 Madwuher\nMove R3 Blarney Sticky\nMove G1 Blarney Madwuher\n\tstoneaxe: This board is too large for my brain to process.\n\n95) stoneaxe: Sacrifice Y2 Decapod10\nMove R3 Bree Maillot\nMove R3 Maillot Mrmoto\n\tMrMoto: If you think this is bad, I bet real-life outer space is at least twice as big!\n\n96) MrMoto: Sacrifice Y3 Popcorn\nMove B1 Sticky Stoneaxe\nMove B2 Sticky Stoneaxe\nMove B1 Glomp Stoneaxe\nCatastrophe Stoneaxe B\n\n97) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R2 Sticky\nBuild Y2 Newbury\n\n98) stoneaxe: Sacrifice Y3 Stoneaxe\nMove R1 Decapod10 Sticky\nMove R1 Decapod10 Sticky\nMove R2 Newgondor Newbury\nCatastrophe Sticky Red\n\n99) MrMoto: Build R1 Mrmoto\nCatastrophe Mrmoto R\n\n100) MadWuher: Sacrifice R2 Blarney\nAttack R2S Newbury\nPass\n\tstoneaxe: If you think real-life outer space is bad, check out.... uhm... oh wait. nevermind.\r\n\n\tstoneaxe: Observation: It kind of makes it tough because the System's squares keep moving around anytime something changes. It would be nicer if once a System was in one spot, it stayed there. Its like you have to "re-learn" all the locations of Systems every time turn. I doubt if I have the energy to start hacking away at the code though. \r\nDoesn't seem like it would do this if we played over a real board. Do you think the enhancement would justify a Forum posting though? That could help in 2P games too.\n\tMrMoto: I agree very much, it's very disorienting. I think it definitely justifies a forum post.\n\n101) stoneaxe: Sacrifice Y1 Newgondor\nMove B2 Decapod10 Maillot\n\n102) MrMoto: Trade B2 R2 Mrmoto\n\n103) MadWuher: Build Y1 Madwuher\n\n104) stoneaxe: Build Y2 Newgondor\n\n105) MrMoto: Sacrifice G2 Maillot\nBuild B1 Mrmoto\nBuild R1 Mrmoto\n\n106) MadWuher: Move Y2 Newbury Popcorn\n\n107) stoneaxe: Move G3 Stoneaxe Mrmoto\n\n108) MrMoto: Move R3 Trollkin Quacky\n\n109) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Blarney\nBuild G3 Madwuher\nBuild R1 Newbury\n\n110) stoneaxe: Sacrifice R2 Newgondor\nAttack R2W Mrmoto\nAttack B1W Mrmoto\n\n111) MrMoto: Attack B1S Mrmoto\n\tMadWuher: Sorry. Been sick for the past 6 days.\n\n112) MadWuher: Discover R2 Newbury B2 Hera\n\n113) stoneaxe: Attack R1W Mrmoto\n\n114) MrMoto: Move G3 Trollkin Quacky\n\n115) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R1 Newbury\nBuild R2 Hera\n\n116) stoneaxe: Sacrifice R2 Mrmoto\nAttack B1W Mrmoto\nAttack B1W Mrmoto\n\n117) MadWuher: Sacrifice Y3 Madwuher\nMove R1 Newbury Stoneaxe\nMove R1 Newbury Stoneaxe\nMove R2 Hera Stoneaxe\nCatastrophe Stoneaxe R\n\n\tstoneaxe: Well, Great game to all of you! It was fun! There was a critical moment in the game where if I went after wuher, then moto would wipe me out, and if I went after moto, then wuher would wipe me out. I wavered, and ended up attacking moto, which cost me some extra moves. He seemed the more immediate threat, but by the time I got into position, you had built up. I must learn more patience............ :) And now the unstoppable MadWuher empire will rule the galaxy!\n\tMrMoto: Thanks for the game! I think I was too impatient as well, going for the attack instead of waiting for the other two players to weaken themselves ...\r\n\r\nIt was fun though!\n\tMadWuher: Thank you all for the game. These multiplayer games are a lot of fun. Trying to keep everything clear though is difficult.\r\n\n\nHomeworlds Online (SDG# 12058)\nVariants: "Unrated, Hard time"\nStarted: 2008.11.27, Ended: 2008.12.8\nParticipants: MadWuher (S), MrMoto (N)\nWinner: MrMoto\n\n1) MrMoto: Homeworld Y3 B2 G3\n\n2) MadWuher: Homeworld B1 Y2 G3\n\tMrMoto: Have fun!\n\n3) MrMoto: Build G1 Mrmoto\n\n4) MadWuher: Build G1 Madwuher\n\n5) MrMoto: Discover G1 Mrmoto B1 Supertonic\n\n6) MadWuher: Discover G1 Madwuher B3 Edora\n\n7) MrMoto: Build G1 Supertonic\n\n8) MadWuher: Build G2 Madwuher\n\n9) MrMoto: Trade G1 Y1 Supertonic\n\n10) MadWuher: Discover G2 Madwuher Y3 Bologna\n\n11) MrMoto: Build G1 Mrmoto\n\n12) MadWuher: Build G2 Madwuher\n\n13) MrMoto: Sacrifice G3 Mrmoto\nBuild G2 Supertonic\nBuild G3 Mrmoto\nBuild G3 Mrmoto\n\n14) MadWuher: Trade G1 R1 Edora\n\n15) MrMoto: Discover G3 Mrmoto Y1 Morley\n\n16) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Bologna\nBuild G3 Madwuher\nBuild R1 Edora\n\n17) MrMoto: Sacrifice G3 Mrmoto\nBuild G3 Mrmoto\nBuild Y1 Supertonic\nBuild Y2 Supertonic\n\n18) MadWuher: Move G2 Bologna Supertonic\n\n19) MrMoto: Discover Y2 Supertonic R3 Toque\n\n20) MadWuher: Sacrifice R1 Edora\nAttack Y1 Supertonic\n\n21) MrMoto: Sacrifice G3 Mrmoto\nBuild G3 Mrmoto\nBuild Y2 Toque\nBuild Y3 Supertonic\n\n22) MadWuher: Sacrifice G1 Bologna\nBuild Y3 Supertonic\nCatastrophe Supertonic Y\n\n23) MrMoto: Sacrifice Y2 Toque\nDiscover G2 Supertonic Y3 Runcible\nDiscover G1 Supertonic B3 Spoon\n\tMadWuher: Couldn't help myself..... =)\n\tMrMoto: Ah! This game is truly complex. It took me a while to see how that was possible.\n\n24) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Supertonic\nBuild G3 Madwuher\nBuild R1 Edora\n\n25) MrMoto: Sacrifice Y2 Toque\nMove G1 Spoon Madwuher\nMove G2 Runcible Madwuher\nCatastrophe Madwuher G\n\tMadWuher: It's too much fun to blow things up like that. Now it looks like we'll both be doing similar moves for a little while. =)\n\tMrMoto: It sure is fun to blow things up! ;)\n\tMadWuher: =) Upto another unrated game?\n\n\nHomeworlds Online (SDG# 12257)\nStarted: 2008.11.30, Ended: 2008.12.7\nParticipants: agentofchaos (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld G3 Y1 B3\n\n3) ts52: Build G1 Ts52\n\tagentofchaos: Hi, enjoy the game. \n\n4) agentofchaos: Build B1 Agentofchaos\n\tts52: Thanks, you too!\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) agentofchaos: Discover B1 Agentofchaos G2 Castrafoon\n\n7) ts52: Build G1 Ts52\n\n8) agentofchaos: Build B1 Castrafoon\n\n9) ts52: Build G1 Grover\n\n10) agentofchaos: Build B2 Agentofchaos\n\n11) ts52: Build G2 Ts52\n\n12) agentofchaos: Build B2 Castrafoon\n\n13) ts52: Discover G2 Ts52 B3 Gonzo\n\n14) agentofchaos: Trade B1 Y1 Castrafoon\n\n15) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Grover\n\n16) agentofchaos: Build Y1 Castrafoon\n\n17) ts52: Trade G3 Y3 Grover\n\n18) agentofchaos: Trade B3 G3 Agentofchaos\n\n19) ts52: Trade G2 Y2 Gonzo\n\n20) agentofchaos: Build G2 Agentofchaos\n\n21) ts52: Sacrifice Y2 Gonzo\nMove G1 Grover Castrafoon\nMove G1 Castrafoon Agentofchaos\nCatastrophe Agentofchaos Green\n\n22) agentofchaos: Trade B2 G2 Agentofchaos\n\n23) ts52: Move G1 Grover Agentofchaos\n\tagentofchaos: Clever play, didn't see that coming. \n\n24) agentofchaos: Build G1 Agentofchaos\n\n25) ts52: Build G3 Agentofchaos\nCatastrophe Agentofchaos G\n\tts52: Yeah, the sacrifice => catastrophe can be hard to see coming.\n\n\tts52: thanks for the game\n\tagentofchaos: Thanks well played\n\nHomeworlds Online (SDG# 12142)\nStarted: 2008.11.30, Ended: 2008.12.28\nParticipants: TwoShort (S), agentofchaos (N)\nWinner: TwoShort\n\n1) agentofchaos: Homeworld G1 Y2 B3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) agentofchaos: Build B1 Agentofchaos\n\tTwoShort: Howdy\n\tagentofchaos: Hi there. I'm new to this game, looks like fun. \n\n4) TwoShort: Build G1 Twoshort\n\n5) agentofchaos: Discover B1 Agentofchaos G3 Spiderworld\n\tTwoShort: Well then, I'll engage in my typical practice of giving new players pointers slightly too late for it to help them :) ... \r\n I'd recommend starting with a green ship; it's easiest, and usually best in any case.\n\tagentofchaos: OK, I'll keep that in my mind in later games (so it will help eventually!)\n\n6) TwoShort: Build G1 Twoshort\n\n7) agentofchaos: Build B1 Agentofchaos\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) agentofchaos: Build B1 Spiderworld\n\n10) TwoShort: Build G1 Twoshort\n\n11) agentofchaos: Build B2 Spiderworld\n\n12) TwoShort: Discover G1 Twoshort Y2 Yellonia\n\n13) agentofchaos: Build B2 Agentofchaos\n\n14) TwoShort: Build G2 Yellonia\n\n15) agentofchaos: Trade B1 Y1 Spiderworld\n\n16) TwoShort: Build Y1 Twoshort\n\tTwoShort: OK, since you're new I'm going to give you the chance to undo that... Otherwise I'm just going to call a catastrophe. \n\tagentofchaos: Thanks for pointing that out, i forgot that catastrophes could be triggered even if you don't have a ship in the system. \n\n17) agentofchaos: Build Y2 Spiderworld\n\n18) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n19) agentofchaos: Trade Y2 R2 Spiderworld\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yellonia\nBuild G3 Twoshort\n\n21) agentofchaos: Build Y2 Spiderworld\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Grogar\nBuild Y3 Twoshort\nBuild G3 Twoshort\n\n23) agentofchaos: Build R1 Spiderworld\n\tagentofchaos: That was a clever sacrifice tactic, I'll remember to use that technique to build extra ships. \n\tTwoShort: That's called "the Factory", and it's a big part of why I recommend starting with a green ship. Because if your opponent gets a factory going and you don't, it's really bad... :)\n\n24) TwoShort: Trade G2 R2 Twoshort\n\tagentofchaos: The factory system is awesome!\n\n25) agentofchaos: Trade B3 Y3 Agentofchaos\n\n26) TwoShort: Sacrifice Y1 Twoshort\nDiscover Y3 Grogar R3 Deathstar\n\n27) agentofchaos: Trade Y3 R3 Agentofchaos\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Deathstar\nBuild Y3 Grogar\nBuild G2 Twoshort\n\n29) agentofchaos: Discover B1 Agentofchaos R3 Ectopia\n\n30) TwoShort: Move Y3 Deathstar Agentofchaos\n\n31) agentofchaos: Attack Y3 Agentofchaos\n\n32) TwoShort: Sacrifice Y3 Grogar\nMove Y1 Grogar Deathstar\nMove Y1 Deathstar Agentofchaos\nMove Y1 Deathstar Agentofchaos\nCatastrophe Agentofchaos Yellow\n\n33) agentofchaos: Trade B2 G2 Spiderworld\n\n34) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yellonia Agentofchaos\nMove G2 Yellonia Agentofchaos\nMove G3 Yellonia Agentofchaos\nCatastrophe Agentofchaos Green\n\n\tagentofchaos: Clever play. I'm starting to get a clearer sense of the strategy in this game.\n\tTwoShort: Three-pointers are the key; they represent such a huge ability to affect the game that if you can get any more 3 pointers than the other guy you can usually find a way to turn that into victory.\n\tagentofchaos: Well played. Thanks for the playing tips, I'll keep them in mind. \n\nHomeworlds Online (SDG# 12183)\nStarted: 2008.11.30, Ended: 2008.12.7\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld G3 Y1 B3\n\n\nHomeworlds Online (SDG# 12220)\nStarted: 2008.11.30, Ended: 2009.1.9\nParticipants: agentofchaos (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R2 B3 G3\n\n2) agentofchaos: Homeworld G1 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\tagentofchaos: Hi, enjoy the game. \n\tMadWuher: Same to you.\n\n4) agentofchaos: Build Y1 Agentofchaos\n\n5) MadWuher: Build G1 Madwuher\n\n6) agentofchaos: Discover Y1 Agentofchaos G3 Leviathan\n\n7) MadWuher: Trade G3 Y3 Madwuher\n\n8) agentofchaos: Build Y1 Leviathan\n\n9) MadWuher: Discover G1 Madwuher B1 Edora\n\n10) agentofchaos: Build Y1 Agentofchaos\n\n11) MadWuher: Build G2 Madwuher\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) MadWuher: Build G2 Edora\n\n14) agentofchaos: Trade Y3 G3 Agentofchaos\n\n15) MadWuher: Build Y2 Madwuher\n\n16) agentofchaos: Build G2 Agentofchaos\n\n17) MadWuher: Sacrifice Y2 Madwuher\nMove G1 Edora Leviathan\nMove G1 Leviathan Agentofchaos\nCatastrophe Agentofchaos G\n\n18) agentofchaos: Trade Y2 R2 Agentofchaos\n\tagentofchaos: Oh crud, good move :-)\n\n19) MadWuher: Build Y2 Madwuher\n\n20) agentofchaos: Trade Y1 G1 Agentofchaos\n\n21) MadWuher: Discover G2 Madwuher B1 Bologna\n\n22) agentofchaos: Build G1 Agentofchaos\n\n23) MadWuher: Build G2 Madwuher\n\n24) agentofchaos: Build R1 Agentofchaos\n\n25) MadWuher: Build G3 Edora\n\n26) agentofchaos: Trade G1 Y1 Agentofchaos\n\n27) MadWuher: Trade G2 R2 Madwuher\n\n28) agentofchaos: Build G1 Agentofchaos\n\n29) MadWuher: Sacrifice G3 Edora\nBuild G2 Madwuher\nBuild G3 Edora\nBuild G3 Bologna\n\n30) agentofchaos: Build R1 Agentofchaos\n\n31) MadWuher: Move Y2 Madwuher Edora\n\n32) agentofchaos: Build Y2 Agentofchaos\n\n33) MadWuher: Sacrifice G3 Edora\nBuild G3 Edora\nBuild Y2 Madwuher\nBuild Y3 Edora\n\n34) agentofchaos: Discover Y1 Leviathan B2 Cryoferno\n\n35) MadWuher: Move G3 Edora Agentofchaos\n\n36) agentofchaos: Move G1 Agentofchaos Leviathan\n\n37) MadWuher: Sacrifice Y2 Edora\nMove Y2 Madwuher Bologna\nMove R2 Madwuher Bologna\n\n38) agentofchaos: Move R1 Agentofchaos Leviathan\n\n39) MadWuher: Sacrifice G3 Bologna\nBuild G3 Bologna\nBuild Y2 Edora\nBuild Y3 Bologna\n\n40) agentofchaos: Move G1 Leviathan Cryoferno\n\n41) MadWuher: Sacrifice R2 Bologna\nAttack R2 Agentofchaos\nAttack Y2 Agentofchaos\n\n\tagentofchaos: well played\n\tMadWuher: thanks. whenever you're up to another, just start one of my challenges.\n\nHomeworlds Online (SDG# 12252)\nVariants: "Hard time"\nStarted: 2008.11.30, Ended: 2009.1.8\nParticipants: Jesse (S), agentofchaos (N)\nWinner: Jesse\n\n1) agentofchaos: Homeworld G1 B2 Y3\n\n2) Jesse: Homeworld B3 R1 G3\n\n3) agentofchaos: Build Y1 Agentofchaos\n\tJesse: Have a good game.\n\tagentofchaos: Thanks you too! I only just started playing as of yesterday, looks like fun. \n\n4) Jesse: Build G1 Jesse\n\n5) agentofchaos: Discover Y1 Agentofchaos G3 Wendigo\n\tJesse: Since your profile says you like Chess variants, I expect you will enjoy it. I'll be happy to help you along the way to learning Homeworlds strategy.\n\n6) Jesse: Build G1 Jesse\n\n7) agentofchaos: Build Y1 Wendigo\n\n8) Jesse: Trade G3 Y3 Jesse\n\n9) agentofchaos: Build Y1 Wendigo\n\tagentofchaos: Yes another player recommended this game to me based on my liking of chess variants. i also like space themes, so that's good too. Any strategy tips would be welcome. \n\n10) Jesse: Build Y2 Jesse\n\n11) agentofchaos: Discover Y1 Wendigo B1 Freehold\n\tJesse: The games require similar skills, have similar issues of attack and defense, and have similar scope in space and piece variety. Yet, they do no feel the same to me. Homeworlds feels more strategically driven, with most of the decisions being decided on fuzzy reasoning about trade-offs of strengths in different areas. Chess has sharper decisions, I think. They are still more similar than, say, Chess and Go. It's more the Chess variants that make me think you are likely to enjoy Homeworlds than Chess itself. It shows you like different things in roughly the same vein.\r\n\r\nAs for strategy tips, let's start with this: To avoid catastrophes, you generally want to spread out your ships of the same color, and diversify the colors in any given system. It's harder and much more expensive for your opponent to drop two ships into your system to cause a catastrophe than it is for him to drop in one, and it's harder and more expensive still to drop in three. Spread and diversification of your ships also improves your economic strength. Control of the global stash economy is sort of like control of the center in Chess. It gives you the strength and flexibility to do what you want. Without it, you are forced into awkward positions from which it is difficult to gain the advantage.\n\n12) Jesse: Discover Y2 Jesse B2 Bloom\n\tagentofchaos: Thanks for the tips, the analogies with chess are quite interesting. \n\n13) agentofchaos: Build Y2 Wendigo\n\n14) Jesse: Build G2 Jesse\n\n15) agentofchaos: Trade Y3 G3 Agentofchaos\n\n16) Jesse: Move G1 Jesse Bloom\n\n17) agentofchaos: Move Y2 Wendigo Freehold\n\tJesse: Careful with that. Four pieces of the same color can trigger a catastrophe. If you build another green, that makes three, and I now have a g1 two steps from your homeworld, which means I can get it there in one turn with a y2 sacrifice.\n\tagentofchaos: Thanks for the heads up. deeper and deeper... :-)\n\n18) Jesse: Build Y2 Bloom\n\n19) agentofchaos: Trade G3 Y3 Agentofchaos\n\n20) Jesse: Build Y3 Jesse\n\n21) agentofchaos: Trade Y2 G2 Freehold\n\n22) Jesse: Trade Y2 R2 Bloom\n\n23) agentofchaos: Trade G2 R2 Freehold\n\tJesse: There is an ancient Homeworlds proverb: When your opponent picks up a gun, you should pick up a gun. It refers to not leaving yourself vulnerable to capture when your opponent gets a red ship.\n\n24) Jesse: Build G2 Bloom\n\tagentofchaos: Sounds like a wise proverb!\n\n25) agentofchaos: Build Y2 Agentofchaos\n\n26) Jesse: Build G2 Bloom\n\n27) agentofchaos: Trade Y3 G3 Agentofchaos\n\n28) Jesse: Discover G2 Bloom Y3 Tide\n\n29) agentofchaos: Trade G3 R3 Agentofchaos\n\tJesse: Your home is one step from Tide and two steps from Bloom, so a Y3 sacrifice can put two of my ships there.\n\n30) Jesse: Build G3 Tide\n\n31) agentofchaos: Build R1 Agentofchaos\n\n32) Jesse: Sacrifice G3 Tide\nBuild G3 Tide\nBuild G3 Bloom\nBuild Y2 Bloom\n\tagentofchaos: Thanks for the heads up, I'll watch out for sacrifice opportunities. \n\n33) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y1 Freehold Bloom\nMove Y1 Wendigo Bloom\nCatastrophe Bloom Y\n\tJesse: This is a common maneuver called "the factory".\n\tagentofchaos: Yes, another player told me about the factory, it's an awesome tactic. \n\n34) Jesse: Trade G2 Y2 Bloom\n\n35) agentofchaos: Build Y1 Wendigo\n\n36) Jesse: Move R2 Bloom Wendigo\n\n\n37) agentofchaos: Move Y1 Wendigo Freehold\n\n38) Jesse: Attack Y1 Wendigo\n\n39) agentofchaos: Trade R1 Y1 Agentofchaos\n\n40) Jesse: Sacrifice G3 Bloom\nBuild G2 Bloom\nBuild G3 Bloom\nBuild R1 Wendigo\n\n41) agentofchaos: Build Y2 Agentofchaos\n\n42) Jesse: Trade G3 R3 Bloom\n\n43) agentofchaos: Discover R2 Freehold G3 Titian\n\n44) Jesse: Sacrifice G3 Tide\nBuild G3 Tide\nBuild Y2 Wendigo\nBuild R1 Bloom\n\n45) agentofchaos: Build R2 Agentofchaos\n\tJesse: Nice move, blocking me from rebuilding the g3, by the way.\n\n46) Jesse: Sacrifice Y3 Jesse\nMove R1 Wendigo Agentofchaos\nMove R2 Wendigo Agentofchaos\nMove G3 Tide Agentofchaos\nCatastrophe Agentofchaos R\n\tJesse: Ah, now that's trouble for you.\n\n47) agentofchaos: Build Y3 Agentofchaos\n\n48) Jesse: Sacrifice R3 Bloom\nAttack Y3 Agentofchaos\nAttack Y2 Agentofchaos\nAttack Y1 Agentofchaos\n\tagentofchaos: Feeling quite disarmed I am...\n\tJesse: Thanks for the game. I hope you learned a few things.\n\n\nHomeworlds Online (SDG# 12269)\nVariants: "Unrated"\nStarted: 2008.12.1, Ended: 2009.1.23\nParticipants: fnord (S), MathGod (N)\nWinner: MathGod\n\n1) MathGod: Homeworld Y1 B2 G3\n\n2) fnord: Homeworld B3 Y2 G3\n\n3) MathGod: Build G1 Mathgod\n\n4) fnord: Build G1 Fnord\n\n5) MathGod: Discover G1 Mathgod Y3 Yelena\n\n6) fnord: Trade G1 Y1 Fnord\n\n7) MathGod: Build G1 Mathgod\n\n8) fnord: Build Y1 Fnord\n\n9) MathGod: Trade G1 R1 Mathgod\n\n10) fnord: Discover Y1 Fnord B1 Eris\n\n11) MathGod: Build G1 Mathgod\n\n12) fnord: Trade Y1 G1 Eris\n\n13) MathGod: Build G2 Mathgod\n\n14) fnord: Build G2 Fnord\n\n15) MathGod: Sacrifice G3 Mathgod\nBuild G2 Yelena\nBuild G3 Yelena\nBuild G3 Mathgod\n\n16) fnord: Trade G2 R2 Fnord\n\n17) MathGod: Discover G2 Yelena B1 Belena\n\tfnord: Gah, I can't count, can I.\n\n18) fnord: Build G2 Eris\n\n19) MathGod: Trade G1 B1 Mathgod\n\n20) fnord: Move R2 Fnord Eris\n\n21) MathGod: Build B2 Mathgod\n\n22) fnord: Trade G2 Y2 Eris\n\n23) MathGod: Move B2 Mathgod Yelena\n\n24) fnord: Build R1 Eris\n\n25) MathGod: Sacrifice G3 Mathgod\nBuild G1 Belena\nBuild G2 Belena\nBuild G3 Mathgod\n\n26) fnord: Sacrifice Y2 Eris\nMove G1 Eris Yelena\nMove G1 Yelena Belena\nCatastrophe Belena Green\n\n27) MathGod: Move G3 Yelena Eris\n\n28) fnord: Trade R2 Y2 Eris\n\n29) MathGod: Sacrifice R1 Mathgod\nAttack R1 Eris\n\n30) fnord: Build G1 Fnord\n\n31) MathGod: Attack Y2 Eris\n\n32) fnord: Trade G3 R3 Fnord\n\n33) MathGod: Build B1 Yelena\n\n34) fnord: Build R1 Fnord\n\n35) MathGod: Discover B1 Yelena Y2 Hail\n\n36) fnord: Discover Y1 Fnord G1 Chaos\n\n37) MathGod: Sacrifice G3 Mathgod\nBuild B2 Yelena\nBuild B3 Mathgod\nBuild B3 Hail\n\n38) fnord: Build G2 Fnord\n\n39) MathGod: Build G2 Eris\n\n40) fnord: Move G1 Fnord Eris\n\n41) MathGod: Sacrifice G3 Eris\nBuild G3 Mathgod\nBuild G3 Mathgod\nBuild G3 Yelena\n\n42) fnord: Trade R3 Y3 Fnord\n\n43) MathGod: Attack G1 Eris\n\n44) fnord: Sacrifice Y3 Fnord\nMove G2 Fnord Chaos\nMove G2 Chaos Yelena\nMove G2 Yelena Mathgod\nCatastrophe Mathgod Green\n\n45) MathGod: Move G2 Eris Fnord\n\n46) fnord: Move Y1 Chaos Fnord\n\n47) MathGod: Sacrifice R1 Eris\nAttack R1 Fnord\n\n48) fnord: Trade Y1 G1 Fnord\n\n49) MathGod: Attack G1 Fnord\n\n\tMathGod: Thank you for the game\n\tfnord: And thank you, too!\n\nHomeworlds Online (SDG# 12295)\nStarted: 2008.12.1, Ended: 2008.12.21\nParticipants: MathGod (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) MathGod: Homeworld Y1 B2 G3\n\tMathGod: Hi there. Hope you enjoy the game\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy... have a good game.\n\n4) MathGod: Build G1 Mathgod\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MathGod: Build G1 Mathgod\n\n7) TwoShort: Build Y1 Twoshort\n\n8) MathGod: Discover G1 Mathgod Y3 Yelonia\n\n9) TwoShort: Build Y2 Twoshort\n\n10) MathGod: Trade G3 Y3 Mathgod\n\tTwoShort: Hmmm... "Yelonia" is a name I use periodically; coincidence, or are you subtly telling me you've been perusing my past games?\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\tMathGod: Saw it once, didn't know it was yours. Want me to take it back? =D\n\n12) MathGod: Trade G1 R1 Mathgod\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n14) MathGod: Build G1 Yelonia\n\n15) TwoShort: Trade Y2 R2 Twoshort\n\n16) MathGod: Move G1 Yelonia Mathgod\n\n17) TwoShort: Move Y2 Grogar Yelonia\n\n18) MathGod: Discover G1 Yelonia Y2 Yell-o\n\n19) TwoShort: Move R2 Twoshort Yell-o\n\n20) MathGod: Build G1 Yell-o\n\n21) TwoShort: Trade Y3 G3 Twoshort\n\n22) MathGod: Build G2 Mathgod\n\n23) TwoShort: Attack G1S Yell-o\n\n24) MathGod: Sacrifice G2 Mathgod\nBuild G2 Yell-o\nBuild G2 Mathgod\n\n25) TwoShort: Attack G2S Yell-o\n\n26) MathGod: Sacrifice G2 Mathgod\nBuild G2 Yell-o\nBuild G3 Mathgod\nCatastrophe Yell-o G\n\n27) TwoShort: Build Y3 Twoshort\n\tMathGod: Woo-hoo!!!!\n\n28) MathGod: Discover Y3 Mathgod B3 Bellyflop\n\tMathGod: D'oh\n\n29) TwoShort: Build G1 Twoshort\n\n30) MathGod: Move G1 Mathgod Bellyflop\n\n31) TwoShort: Trade G1 B1 Twoshort\n\n32) MathGod: Build G1 Bellyflop\n\n33) TwoShort: Move B1 Twoshort Grogar\n\n34) MathGod: Discover G1 Bellyflop B2 Gumboot\n\n35) TwoShort: Discover B1 Grogar G3 Deathstar\n\n36) MathGod: Build G1 Mathgod\n\n37) TwoShort: Build B1 Deathstar\n\n38) MathGod: Sacrifice G3 Mathgod\nBuild G2 Bellyflop\nBuild G2 Gumboot\nBuild G3 Mathgod\n\n39) TwoShort: Discover Y2 Grogar B3 Blitzen\n\n40) MathGod: Build R1 Mathgod\n\n41) TwoShort: Sacrifice Y2 Yelonia\nMove B1 Deathstar Mathgod\nMove B1 Deathstar Mathgod\n\n42) MathGod: Build G3 Gumboot\n\n43) TwoShort: Sacrifice G3 Twoshort\nBuild B1 Mathgod\nBuild Y2 Blitzen\nBuild Y3 Blitzen\nCatastrophe Mathgod Blue\n\n44) MathGod: Sacrifice Y3 Bellyflop\nMove G1 Bellyflop Grogar\nMove G2 Bellyflop Grogar\nMove G1 Mathgod Grogar\nCatastrophe Grogar G\n\tMathGod: Ohhhh. Now I'm in trouble. Thanks for the game.\n\tTwoShort: Thanks for the game,\n\n45) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Blitzen Mathgod\nMove Y2 Blitzen Mathgod\nMove Y2 Blitzen Mathgod\nCatastrophe Mathgod Yellow\n\tMathGod: Is it be better etiquette to let my opponent playout the win? Or should I bow out gracefully by resigning?\n\tTwoShort: When the game is completely decided, it's certainly not impolite to resign - nobody expects you to slog on once it's hopeless. But I, at least, also have no problem with playing it out to the very end. If nothing else, it's good practice to see if you can stave off the end for even one more turn. \n\tTwoShort: All of which is academic for this game, I'm afraid :)\n\tMathGod: Thanks for the information and the game. I really appreciate it.\n\n\nHomeworlds Online (SDG# 12296)\nStarted: 2008.12.7, Ended: 2008.12.23\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 12359)\nStarted: 2008.12.7, Ended: 2008.12.23\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld G3 B1 Y3\n\tagentofchaos: G3 B1 Y2 \n\n\tagentofchaos: Hi, enjoy the game!\n\nHomeworlds Online (SDG# 12307)\nStarted: 2008.12.7, Ended: 2008.12.11\nParticipants: TwoShort (S), MadWuher (N)\nWinner: TwoShort\n\n1) MadWuher: Homeworld R2 B3 G3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) MadWuher: B G1 Madwuher\n\n4) TwoShort: Build G1 Twoshort\n\n5) MadWuher: T G1 Y1 Madwuher\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) MadWuher: Build G1 Madwuher\n\n8) TwoShort: Build G1 Twoshort\n\n9) MadWuher: Discover G1 Madwuher B1 Edora\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n11) MadWuher: Build G1 Madwuher\n\n12) TwoShort: Build G2 Twoshort\n\n13) MadWuher: Build G2 Edora\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n15) MadWuher: Trade G2 Y2 Edora\n\n16) TwoShort: Trade G2 R2 Twoshort\n\n17) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G2 Madwuher\nBuild G3 Madwuher\n\n18) TwoShort: Discover G1 Yolonda Y1 Yak\n\n19) MadWuher: Trade G1 R1 Madwuher\n\n20) TwoShort: Discover R2 Twoshort Y3 Yoyo\n\n21) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Edora\nBuild Y2 Madwuher\nBuild Y3 Madwuher\n\n22) TwoShort: Move G2 Twoshort Yoyo\n\n23) MadWuher: Sacrifice Y1 Madwuher\nDiscover G2 Edora G3 Bologna\n\n24) TwoShort: Build R1 Yoyo\n\n25) MadWuher: Build R2 Madwuher\n\n26) TwoShort: Discover R2 Yoyo Y1 Yanyan\n\n27) MadWuher: Sacrifice Y2 Madwuher\nMove R1 Madwuher Edora\nDiscover R2 Madwuher G1 Camelot\n\n28) TwoShort: Sacrifice G2 Yoyo\nBuild R3 Yoyo\nBuild R3 Yanyan\n\n29) MadWuher: Build R3 Edora\n\n30) TwoShort: Build Y2 Twoshort\n\n31) MadWuher: Build G2 Edora\n\n32) TwoShort: Discover Y2 Twoshort B3 Bluestar\n\n33) MadWuher: Sacrifice G2 Bologna\nBuild G2 Edora\nBuild G3 Madwuher\n\n34) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yak\nBuild Y3 Bluestar\nPass\n\n35) MadWuher: Trade G2 B2 Edora\n\n36) TwoShort: Sacrifice Y2 Bluestar\nMove R3 Yoyo Edora\nMove R1 Yoyo Edora\nCatastrophe Edora Red\n\n37) MadWuher: Sacrifice Y2 Edora\nMove G3 Madwuher Edora\nMove G2 Edora Madwuher\n\n38) TwoShort: Sacrifice G3 Yak\nBuild Y2 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Bluestar\n\tTwoShort: Sorry.\n\tMadWuher: Not a problem.....\n\n39) MadWuher: Discover G2 Madwuher B1 Bologna\n\n40) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Bluestar Edora\nMove Y3 Bluestar Camelot\n\n41) MadWuher: Sacrifice R2 Camelot\nAttack Y3 Edora\nPass\n\n42) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Camelot Madwuher\nMove R3 Yanyan Madwuher\n\n43) MadWuher: Sacrifice Y2 Edora\nMove G3 Edora Madwuher\nMove Y3 Edora Madwuher\n\n44) TwoShort: Sacrifice R3 Madwuher\nAttack Y3N Madwuher\nAttack Y3N Madwuher\nAttack G3N Madwuher\n\n45) MadWuher: Sacrifice G2 Bologna\nBuild G1 Madwuher\nBuild G2 Madwuher\n\tMadWuher: D'oh....... Didn't see that one coming so quickly.\n\n46) TwoShort: Pass\nCatastrophe Madwuher Green\n\tMadWuher: Oh well, C'est la vie.\r\n\r\nAny way I could have gotten out of that mess?\n\tMadWuher: How many moves ago did you plan this/see this coming?\n\tTwoShort: Well, you shouldn't have let me get ahead on 3 points way back at the beginning. But you were doing a remarkably good job holding me off after that until right after the red catastrophe. I think I was expecting you to go after the big yellows at that point, but instead you let me take them. At that point it was probably over; once I jumped into your systems with the y3s you could have done something desperate to preserve the r2 and live a bit longer, but it would have been ugly.\r\n Anyway, thanks for the game!\n\n\tMadWuher: Thanks for the game. I'll replay that game again with my pieces and see what I could do better for the next time we play. (After all, I have to beat you at least once, right?)\n\tTwoShort: I hadn't seen your "how many moves" question when I wrote that last message, so to answer that: I guess I thought through this sequence when I was considering the move that built the 3 yellow pieces. But not really as what I expected to happen; rather as "If I do that, he could set up to take the g3, but if he does I can threaten Edora and his r2, and he'll have to sacrifice a yellow and run away with whatever he can, because if he leaves the r2 I can take it and threaten to pounce on his homeworld, or if he uses it I can pounce immediately." So I guess that's 2 of my moves in advance, but it's not like I considered every other thing you could have done; I tend to just look for what the other guy could do that might make my move not worth it, and see if I can respond to that.\r\n In any case, I'm happy to play anytime...\n\nHomeworlds Online (SDG# 12362)\nStarted: 2008.12.7, Ended: 2009.1.18\nParticipants: MadWuher (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) MadWuher: Homeworld R2 B3 G3\n\tts52: Have a good game!\n\tMadWuher: You too.\n\n3) ts52: Build G1 Ts52\n\n4) MadWuher: Build G1 Madwuher\n\n5) ts52: Trade G1 R1 Ts52\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) ts52: Build G1 Ts52\n\n8) MadWuher: Build G1 Madwuher\n\n9) ts52: Discover G1 Ts52 B3 Grover\n\n10) MadWuher: Discover G1 Madwuher Y1 Edora\n\n11) ts52: Build R1 Ts52\n\n12) MadWuher: Build Y1 Madwuher\n\n13) ts52: Trade R1 B1 Ts52\n\n14) MadWuher: Build Y2 Madwuher\n\n15) ts52: Discover B1 Ts52 G3 Kermit\n\n16) MadWuher: Trade Y2 B2 Madwuher\n\n17) ts52: Build G1 Ts52\n\n18) MadWuher: Build G2 Madwuher\n\n19) ts52: Build G2 Grover\n\n20) MadWuher: Build G2 Edora\n\n21) ts52: Trade G2 Y2 Grover\n\n22) MadWuher: Sacrifice Y1 Madwuher\nDiscover G2 Edora Y3 Bologna\n\n23) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild R1 Ts52\n\n24) MadWuher: Move B2 Madwuher Edora\n\n25) ts52: Move R1 Ts52 Grover\n\n26) MadWuher: Trade G1 R1 Edora\n\n27) ts52: Build R2 Ts52\n\n28) MadWuher: Trade G2 Y2 Madwuher\n\n29) ts52: Move R2 Ts52 Kermit\n\n30) MadWuher: Build G1 Madwuher\n\n31) ts52: Build B1 Kermit\n\n32) MadWuher: Sacrifice G3 Madwuher\nBuild B2 Edora\nBuild G2 Bologna\nBuild G3 Madwuher\n\n33) ts52: Trade B1 Y1 Kermit\n\n34) MadWuher: Sacrifice Y2 Madwuher\nMove G2 Bologna Ts52\nMove G2 Bologna Ts52\nCatastrophe Ts52 G\n\n35) ts52: Sacrifice G2 Grover\nBuild R2 Grover\nBuild R3 Ts52\n\tMadWuher: Had to do something eh? I was hoping to find time to setup a better move but felt I better do something soon. I'll be in and out of touch for a few days but I should be able to login on Sunday (by the earliest).\n\n36) MadWuher: Sacrifice G1 Madwuher\nBuild R3 Edora\n\tts52: No problem. Happy Holidays!\n\n37) ts52: Trade R1 G1 Ts52\n\n38) MadWuher: Trade B2 G2 Edora\n\n39) ts52: Trade R2 G2 Grover\n\n40) MadWuher: Build G1 Madwuher\n\n41) ts52: Sacrifice G2 Grover\nBuild Y2 Grover\nBuild Y3 Kermit\n\n42) MadWuher: Build Y3 Madwuher\n\n43) ts52: Build Y3 Grover\n\n44) MadWuher: Sacrifice Y3 Madwuher\nMove Y1 Madwuher Edora\nMove Y1 Edora Grover\nMove G2 Edora Grover\nCatastrophe Grover Y\n\n45) ts52: Build G2 Ts52\n\n46) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Grover\nBuild G3 Grover\nBuild G3 Madwuher\nCatastrophe Grover G\n\n47) ts52: Move G2 Ts52 Grover\n\n48) MadWuher: Trade G1 Y1 Madwuher\n\n49) ts52: Build G1 Grover\n\n50) MadWuher: Build Y2 Madwuher\n\n51) ts52: Trade G2 Y2 Grover\n\n52) MadWuher: Trade Y1 G1 Madwuher\n\n53) ts52: Build G2 Grover\n\n54) MadWuher: Move G1 Madwuher Edora\n\n55) ts52: Sacrifice G2 Grover\nBuild Y1 Kermit\nBuild Y3 Grover\n\n56) MadWuher: Build Y3 Madwuher\n\n57) ts52: Sacrifice Y3 Kermit\nMove Y1 Kermit Edora\nMove Y1 Kermit Edora\nMove Y2 Grover Edora\nCatastrophe Edora Yellow\n\n58) MadWuher: Build G1 Madwuher\n\n59) ts52: Build G2 Grover\n\n60) MadWuher: Discover G3 Madwuher B1 Edora\n\n61) ts52: Move Y3 Grover Edora\n\n62) MadWuher: Sacrifice Y2 Madwuher\nDiscover G3 Edora Y3 Bologna\nPass\n\tMadWuher: Wow, I seem to be getting stomped be you. I have no idea where my minds been lately.\n\n63) ts52: Build G2 Grover\n\n64) MadWuher: Build G2 Bologna\n\n65) ts52: Build G3 Ts52\n\n66) MadWuher: Build Y1 Madwuher\n\n67) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Edora\nBuild B2 Kermit\n\n68) MadWuher: Discover Y1 Madwuher R1 Camelot\n\n69) ts52: Move Y1 Edora Kermit\n\n70) MadWuher: Sacrifice G3 Bologna\nBuild G3 Madwuher\nBuild Y1 Camelot\nBuild Y2 Madwuher\n\n71) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Edora\nBuild B2 Kermit\n\n72) MadWuher: Discover Y1 Camelot B3 Marco\n\n73) ts52: Move B2 Kermit Camelot\n\n74) MadWuher: Sacrifice G2 Bologna\nBuild Y3 Camelot\nPass\n\n75) ts52: Attack Y1S Camelot\n\n76) MadWuher: Attack B2 Camelot\n\n77) ts52: Move Y1 Camelot Grover\n\n78) MadWuher: Trade Y1 R1 Marco\n\n79) ts52: Move G1 Grover Edora\n\n80) MadWuher: Move G1 Madwuher Camelot\n\n81) ts52: Sacrifice G3 Ts52\nBuild G2 Edora\nBuild G3 Ts52\nBuild Y1 Grover\n\n82) MadWuher: Build B2 Camelot\n\n83) ts52: Sacrifice Y3 Edora\nMove Y2 Edora Madwuher\nMove G2 Edora Madwuher\nMove G1 Edora Madwuher\n\n84) MadWuher: Sacrifice B2 Camelot\nTrade Y3 R3 Madwuher\nTrade Y2 B2 Madwuher\n\n85) ts52: Sacrifice B2 Kermit\nTrade G2 B2 Madwuher\nTrade G1 B1 Madwuher\nCatastrophe Madwuher Blue\n\n86) MadWuher: Sacrifice G3 Madwuher\nBuild R2 Marco\nBuild R3 Marco\nBuild B1 Camelot\n\n87) ts52: Sacrifice Y1 Grover\nDiscover G2 Grover Y1 Zoe\n\tMadWuher: Woo hoo. I can go out in style !!!\n\tMadWuher: Thanks for the game\n\n88) MadWuher: Attack Y2 Madwuher\n\n89) ts52: Sacrifice G3 Ts52\nBuild Y2 Kermit\nBuild Y3 Grover\nBuild B2 Kermit\n\n90) MadWuher: Sacrifice B2 Camelot\nTrade R3 G3 Madwuher\nTrade R2 G2 Marco\n\n91) ts52: Sacrifice G2 Grover\nBuild R2 Grover\nBuild R3 Kermit\n\n92) MadWuher: Build Y3 Camelot\n\n93) ts52: Sacrifice Y2 Kermit\nMove Y1 Kermit Camelot\nMove Y1 Grover Camelot\nCatastrophe Camelot Yellow\n\n94) MadWuher: Build B2 Camelot\n\tMadWuher: I'm trying to figure out why you haven't just taken me out yet. \n\n95) ts52: Trade B2 Y2 Kermit\n\tts52: I haven't seen a certain way to take you out. I'm working on it though...\n\n96) MadWuher: Build G1 Madwuher\n\tMadWuher: What? The red catastrophe in my home system doesn't work for you? \n\n97) ts52: Sacrifice Y3 Grover\nMove R1 Grover Madwuher\nMove R2 Grover Madwuher\nMove R2 Kermit Madwuher\nCatastrophe Madwuher Red\n\tts52: Wow, I forgot about being able to get there straight from 3s. Sorry about that.\n\tts52: Now I feel like an idiot. Sorry about that. Thanks for the game.\n\tMadWuher: Not a`problem. I just thought you were trying to rub it in or something. =) \n\n\nHomeworlds Online (SDG# 12366)\nStarted: 2008.12.11, Ended: 2008.12.29\nParticipants: apeloverage (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) apeloverage: Homeworld B1 G2 Y3\n\tTwoShort: Howdy.\n\n3) TwoShort: Build G1 Twoshort\n\tapeloverage: Hi!\n\n4) apeloverage: Build Y1 Apeloverage\n\n5) TwoShort: Build G1 Twoshort\n\n6) apeloverage: Discover Y1 Apeloverage B3 Apeloverage1\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) apeloverage: Trade Y1 G1 Apeloverage1\n\n9) TwoShort: Build Y1 Twoshort\n\n10) apeloverage: Build Y1 Apeloverage\n\n11) TwoShort: Build Y2 Twoshort\n\n12) apeloverage: Discover Y3 Apeloverage B3 Apeloverage2\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) apeloverage: Discover Y3 Apeloverage2 B2 Apeloverage0\n\n15) TwoShort: Trade G1 R1 Twoshort\n\n16) apeloverage: Trade Y3 R3 Apeloverage0\n\n17) TwoShort: Build Y2 Grogar\n\n18) apeloverage: Build Y2 Apeloverage\n\n19) TwoShort: Build Y3 Grogar\n\n20) apeloverage: Build Y3 Apeloverage\n\n21) TwoShort: Sacrifice Y2 Grogar\nDiscover Y1 Grogar B3 Bluebird\nMove Y1 Bluebird Apeloverage\nCatastrophe Apeloverage Yellow\n\n\n\nHomeworlds Online (SDG# 12294)\nVariants: "Hard time"\nStarted: 2008.12.15, Ended: 2009.2.22\nParticipants: MrMoto (S), MadWuher (W), apeloverage (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) apeloverage: Homeworld B1 G2 Y3\n\tagentofchaos: Hi everybody, thanks for joining - I think this will be a great game!\n\tMrMoto: Have fun!\n\n2) agentofchaos: Homeworld Y3 B1 G3\n\n3) MrMoto: Homeworld G3 Y2 B3\n\n4) MadWuher: Homeworld R1 B2 G3\n\n5) apeloverage: Build Y1 Apeloverage\n\tapeloverage: Thanks agentofchaos.\n\n6) agentofchaos: Build G1 Agentofchaos\n\tMadWuher: Let the battle begin!!!!\n\tMadWuher: Uhhh. I mean, have a good game.\n\tagentofchaos: Same thing! :-)\n\n7) MrMoto: Build B1 Mrmoto\n\n8) MadWuher: Build G1 Madwuher\n\n9) apeloverage: Discover Y3 Apeloverage G3 Apeloverage1\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) MrMoto: Discover B1 Mrmoto Y1 Stout\n\n12) MadWuher: Trade G1 Y1 Madwuher\n\n13) apeloverage: Build Y1 Apeloverage1\n\tMadWuher: apeloverage, you may not want to move your size 3 ship out of your home system. If someone moves their size 3 ship in, you will have no defense against their attack. Just sayin'.\n\n14) agentofchaos: Trade G1 R1 Agentofchaos\n\tagentofchaos: t g1 r1 agentofchaos\n\tagentofchaos: oops sorry, keep getting the boxes mixed up...\r\n\n\n15) MrMoto: Build B1 Mrmoto\n\n16) MadWuher: Build G1 Madwuher\n\n17) apeloverage: Discover Y1 Apeloverage1 G1 Apeloverage2\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) MrMoto: Build B1 Mrmoto\n\n20) MadWuher: Discover G1 Madwuher Y3 Edora\n\n21) apeloverage: Build Y1 Apeloverage1\n\n22) agentofchaos: Discover G1 Agentofchaos Y2 Zurvan\n\n23) MrMoto: Trade B1 G1 Mrmoto\n\n24) MrMoto: Build G2 Mrmoto\n\n25) apeloverage: Build Y2 Apeloverage\n\n26) agentofchaos: Discover G1 Agentofchaos Y2 Argo\n\tMadWuher: D'oh. Sorry guys. Guess I'll be sitting this one out. Hope to play against each of you soon.\n\n27) MrMoto: Move G2 Mrmoto Stout\n\n28) apeloverage: Move Y3 Apeloverage1 Apeloverage\n\tagentofchaos: Oops, our first casualty! Hope everyone else survives a bit longer! ;-)\n\n29) agentofchaos: Build G2 Zurvan\n\n30) MrMoto: Move B1 Stout Edora\n\n31) apeloverage: Trade Y3 R3 Apeloverage\n\n32) agentofchaos: Build G2 Agentofchaos\n\n33) MrMoto: Build G2 Stout\n\n34) apeloverage: Build Y2 Apeloverage1\n\n35) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild G3 Argo\nBuild R1 Agentofchaos\n\n36) MrMoto: Trade B1 R1 Edora\n\n37) apeloverage: Build Y3 Apeloverage\n\n38) agentofchaos: Trade G3 Y3 Agentofchaos\n\n39) MrMoto: Trade B3 Y3 Mrmoto\n\n40) apeloverage: Move R3 Apeloverage Edora\n\n41) agentofchaos: Build G3 Agentofchaos\n\n42) MrMoto: Move R1 Edora Apeloverage\n\n43) apeloverage: Trade Y3 R3 Apeloverage\n\n44) agentofchaos: Trade Y3 R3 Agentofchaos\n\n45) MrMoto: Trade G1 R1 Mrmoto\n\n46) apeloverage: Attack R1S Apeloverage\n\n47) agentofchaos: Move R3 Agentofchaos Zurvan\n\n48) MrMoto: Discover G2 Stout B2 Fil\n\n49) apeloverage: Attack G1W Edora\n\n50) agentofchaos: Move R3 Zurvan Apeloverage2\n\n51) MrMoto: Build R2 Mrmoto\n\n52) apeloverage: Move Y1 Apeloverage2 Apeloverage1\n\n53) agentofchaos: Trade G3 Y3 Agentofchaos\n\tapeloverage: Y1 apeloverage2 apeloverage1\n\n54) MrMoto: Build B1 Mrmoto\n\n55) apeloverage: Move R3 Edora Fil\n\n56) agentofchaos: Sacrifice G3 Argo\nBuild Y3 Agentofchaos\nBuild G1 Agentofchaos\nBuild G3 Argo\n\tapeloverage: move R3 Edora Fil\n\n57) MrMoto: Sacrifice G2 Fil\nBuild G2 Stout\nBuild R2 Mrmoto\n\n58) apeloverage: Build G3 Edora\n\n59) agentofchaos: Move Y3 Agentofchaos Argo\n\n60) MrMoto: Move R2 Mrmoto Stout\n\n61) apeloverage: Build R2 Apeloverage\n\n62) agentofchaos: Sacrifice Y3 Argo\nMove G1 Zurvan Stout\nMove G1 Argo Stout\nMove R3 Apeloverage2 Edora\nCatastrophe Stout G\n\n63) MrMoto: Move R2 Stout Apeloverage1\n\n64) apeloverage: Move R3 Apeloverage Apeloverage1\n\n65) agentofchaos: Attack G3N Edora\n\n66) MrMoto: Sacrifice R2 Mrmoto\nAttack Y2N Apeloverage1\nAttack Y1N Apeloverage1\n\n67) apeloverage: Sacrifice R2 Apeloverage\nAttack R2S Apeloverage1\nAttack Y2S Apeloverage1\n\n68) agentofchaos: Move R3 Edora Madwuher\n\n69) MrMoto: Discover Y1 Apeloverage1 G1 Tam\n\n70) apeloverage: Build R2 Apeloverage\n\n71) agentofchaos: Attack G3W Madwuher\n\n72) MrMoto: Build Y1 Tam\n\n73) apeloverage: Build Y3 Apeloverage1\n\n74) agentofchaos: Attack Y1W Madwuher\n\n75) MrMoto: Move Y1 Tam Apeloverage1\nCatastrophe Apeloverage1 Y\n\n76) apeloverage: Build R2 Apeloverage\n\n77) agentofchaos: Move R3 Madwuher Edora\n\n78) MrMoto: Build R2 Mrmoto\n\n79) apeloverage: Discover R2 Apeloverage Y3 Apeloverage2\n\n80) agentofchaos: Attack G1N Edora\n\n81) MrMoto: Trade R2 G2 Mrmoto\n\n82) apeloverage: Sacrifice Y2 Apeloverage\nMove R3 Apeloverage1 Tam\nMove R3 Tam Mrmoto\n\n83) agentofchaos: Build G1 Madwuher\n\n84) MrMoto: Attack R3N Mrmoto\n\n85) apeloverage: Build R2 Apeloverage\n\n86) agentofchaos: Sacrifice G3 Edora\nBuild G1 Edora\nBuild G2 Argo\nBuild G3 Zurvan\n\n87) MrMoto: Build Y1 Tam\n\n88) apeloverage: Build R2 Apeloverage1\n\n89) agentofchaos: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild R3 Edora\nBuild Y1 Madwuher\n\n90) MrMoto: Build R3 Mrmoto\n\n91) apeloverage: Build Y2 Apeloverage\n\n92) agentofchaos: Move R3 Edora Tam\n\n93) MrMoto: Discover R3 Mrmoto B1 Dogsled\n\n94) apeloverage: Build Y2 Apeloverage\n\n95) agentofchaos: Attack Y1S Tam\n\n96) MrMoto: Sacrifice Y1 Tam\nMove R3 Dogsled Apeloverage2\n\n97) apeloverage: Discover R2 Apeloverage2 B2 Apeloverage3\n\n98) agentofchaos: Build Y1 Tam\n\n99) MrMoto: Sacrifice Y3 Mrmoto\nDiscover R1 Mrmoto B1 Hop\nDiscover R1 Hop B3 Skip\nMove R1 Skip Apeloverage\nCatastrophe Apeloverage R\n\n100) apeloverage: Trade R3 Y3 Fil\n\n101) agentofchaos: Discover G2 Argo R3 Klaatu\n\n102) MrMoto: Move R3 Apeloverage2 Apeloverage\n\n103) apeloverage: Sacrifice Y3 Fil\nMove R2 Apeloverage3 Apeloverage1\nMove R2 Apeloverage1 Apeloverage\nMove R2 Apeloverage1 Apeloverage\n\n104) agentofchaos: Build Y3 Agentofchaos\n\n105) MrMoto: Attack Y2N Apeloverage\n\n106) apeloverage: Sacrifice Y1 Apeloverage\nMove R2 Apeloverage1 Apeloverage\nCatastrophe Apeloverage R\n\n107) agentofchaos: Move R3 Edora Apeloverage\n\n108) MrMoto: Discover Y2 Apeloverage G3 Telly\n\n109) apeloverage: Build Y1 Apeloverage\n\n110) agentofchaos: Attack Y2N Apeloverage\n\n111) MrMoto: Build Y3 Telly\n\n112) apeloverage: Pass\n\n113) agentofchaos: Discover Y3 Agentofchaos B2 Xenon\n\n114) MrMoto: Discover Y3 Telly R2 Supertonic\n\n115) apeloverage: Pass\n\n116) agentofchaos: Sacrifice Y2 Apeloverage\nMove Y1 Tam Mrmoto\nMove Y1 Tam Mrmoto\n\n117) MrMoto: Build Y2 Telly\n\n118) apeloverage: Pass\n\n119) agentofchaos: Sacrifice Y3 Agentofchaos\nMove Y1 Madwuher Telly\nMove Y1 Telly Tam\nMove Y1 Tam Mrmoto\nCatastrophe Mrmoto Y\n\n120) MrMoto: Move Y3 Supertonic Agentofchaos\n\n121) apeloverage: Build Y1 Apeloverage\n\n122) agentofchaos: Sacrifice Y3 Xenon\nMove G2 Zurvan Mrmoto\nMove G1 Madwuher Mrmoto\nPass\nCatastrophe Mrmoto G\n\n123) apeloverage: Build Y1 Apeloverage\n\n124) agentofchaos: Sacrifice R3 Tam\nAttack Y1N Apeloverage\nAttack Y1N Apeloverage\nAttack Y1N Apeloverage\n\n\tagentofchaos: Thankyou also Apeloverage, it was fun playing you, we can play again anytime if you like :-)\n\tMrMoto: Ah, congratulations! Thanks for the game, it was fun. :)\n\tapeloverage: Congratulations agentofchaos!\n\tMadWuher: Good job.\n\tagentofchaos: Thanks guys! :-)\n\nHomeworlds Online (SDG# 12424)\nStarted: 2008.12.25, Ended: 2009.3.3\nParticipants: agentofchaos (S), nycavri (N)\nWinner: agentofchaos\n\n1) nycavri: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld Y3 B2 G3 Agentofchaos\n\n3) nycavri: Build G1 Nycavri\n\tagentofchaos: Hi, enjoy the game. \n\tnycavri: Thanks, you too . . .\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) nycavri: Discover Y1 Nycavri G3 Mvb\n\n8) agentofchaos: Discover G1 Agentofchaos Y1 Icarus\n\n9) nycavri: Build Y1 Mvb\n\n10) agentofchaos: Build G1 Icarus\n\n11) nycavri: Build G2 Nycavri\n\n12) agentofchaos: Build G2 Icarus\n\n13) nycavri: Sacrifice G3 Nycavri\nBuild G2 Nycavri\nBuild G3 Nycavri\nBuild Y2 Mvb\n\n14) agentofchaos: Move G1 Icarus Mvb\n\n15) nycavri: Trade G2 R2 Nycavri\n\n16) agentofchaos: Build G2 Agentofchaos\n\n17) nycavri: Sacrifice Y2 Mvb\nMove Y1 Mvb Icarus\nMove Y1 Icarus Agentofchaos\n\n18) agentofchaos: Trade G1 R1 Agentofchaos\n\n19) nycavri: Sacrifice G2 Nycavri\nBuild Y2 Agentofchaos\nBuild Y2 Agentofchaos\nCatastrophe Agentofchaos Y\n\n20) agentofchaos: Trade G3 R3 Agentofchaos\n\n21) nycavri: Build R1 Nycavri\n\n22) agentofchaos: Trade R1 Y1 Agentofchaos\n\n23) nycavri: Trade R1 G1 Nycavri\n\n24) agentofchaos: Build Y2 Agentofchaos\n\n25) nycavri: Build Y2 Mvb\n\n26) agentofchaos: Discover Y1 Agentofchaos G3 Hades\n\n27) nycavri: Build Y3 Mvb\n\n28) agentofchaos: Move Y2 Agentofchaos Mvb\nCatastrophe Mvb Y\n\n29) nycavri: Build R1 Nycavri\n\n30) agentofchaos: Discover Y1 Hades G2 Io\n\n31) nycavri: Move R2 Nycavri Mvb\n\n32) agentofchaos: Build G3 Mvb\n\n33) nycavri: Trade G1 Y1 Nycavri\n\n34) agentofchaos: Sacrifice G3 Mvb\nBuild G1 Agentofchaos\nBuild Y2 Io\nBuild G3 Mvb\n\n35) nycavri: Move Y1 Nycavri Mvb\n\n36) agentofchaos: Discover G1 Icarus Y2 Agon\n\n37) nycavri: Build Y3 Mvb\n\n38) agentofchaos: Move Y1 Io Icarus\n\n39) nycavri: Build R1 Nycavri\n\n40) agentofchaos: Sacrifice R3 Agentofchaos\nAttack Y3N Mvb\nAttack Y1N Mvb\nAttack R2N Mvb\n\n41) nycavri: Discover R1 Nycavri Y3 Mvg\n\n42) agentofchaos: Move R2 Mvb Agentofchaos\n\n43) nycavri: Build R1 Nycavri\n\n44) agentofchaos: Sacrifice G3 Mvb\nBuild Y3 Io\nBuild R2 Agentofchaos\nBuild G3 Agon\n\n45) nycavri: Trade R1 B1 Nycavri\n\n46) agentofchaos: Move Y1 Mvb Agentofchaos\n\n47) nycavri: Build B1 Nycavri\n\n48) agentofchaos: Trade G2 B2 Agentofchaos\n\n49) nycavri: Move B1 Nycavri Mvg\n\n50) agentofchaos: Move R2 Agentofchaos Mvg\n\n51) nycavri: Move B1 Mvg Agentofchaos\n\n52) agentofchaos: Attack B1N Agentofchaos\n\n53) nycavri: Move R1 Mvg Agentofchaos\n\n54) agentofchaos: Attack R1N Agentofchaos\n\n55) nycavri: Build R1 Nycavri\n\n56) agentofchaos: Sacrifice G3 Agon\nBuild G2 Agon\nBuild G3 Agentofchaos\nBuild R2 Mvg\n\n57) nycavri: Trade G3 B3 Nycavri\n\n58) agentofchaos: Sacrifice Y2 Io\nMove B1 Agentofchaos Mvb\nMove B1 Mvb Nycavri\nCatastrophe Nycavri B\n\n59) nycavri: Move R1 Nycavri Icarus\n\n60) agentofchaos: Move R2 Mvg Nycavri\n\n61) nycavri: Move R1 Icarus Agentofchaos\n\n62) agentofchaos: Attack R1N Nycavri\n\n\tagentofchaos: Thanks for a good game!\n\tnycavri: Thank you!\n\nHomeworlds Online (SDG# 12388)\nStarted: 2008.12.27, Ended: 2009.1.12\nParticipants: TwoShort (S), agentofchaos (N)\nWinner: TwoShort\n\n1) agentofchaos: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld B3 R1 G3\n\tagentofchaos: Hi again! I've taken your advice about starting with a green ship. Let's see how I fair in this game. Merry christmas! :)\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) TwoShort: Build G1 Twoshort\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) TwoShort: Build G2 Twoshort\n\n7) agentofchaos: Discover G1 Agentofchaos Y3 Klingsor\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) agentofchaos: Build G1 Klingsor\n\n10) TwoShort: Discover G2 Twoshort Y2 Yolonda\n\n11) agentofchaos: Discover G1 Klingsor Y1 Odin\n\n12) TwoShort: Build Y2 Twoshort\n\n13) agentofchaos: Build G2 Klingsor\n\n14) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n15) agentofchaos: Discover G2 Klingsor B1 Extensor\n\n16) TwoShort: Build G3 Twoshort\n\n17) agentofchaos: Trade G2 Y2 Extensor\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n19) agentofchaos: Build G3 Klingsor\n\n20) TwoShort: Trade G2 R2 Twoshort\n\n21) agentofchaos: Move G3 Klingsor Extensor\n\n22) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Grogar Klingsor\nMove Y3 Klingsor Agentofchaos\n\n23) agentofchaos: Trade G3 R3 Agentofchaos\n\tTwoShort: So, you did a good job controlling green, to the point I had to bail out of that race and threaten to lock you out of yellow, so now you probably see that it's also essential to diversify into multiple colors early. That's why I don't usually bother with a yellow star: I'm going to want a yellow ship in the first few turns anyway. So now I've got more 3 points and most of the yellow, so it's looking bad for you, even if that last move wasn't a critical error :)\r\n\n\n24) TwoShort: Sacrifice R2 Twoshort\nAttack R3N Agentofchaos\nAttack G1N Agentofchaos\n\tTwoShort: Now might be a good time to mention the "Gun rule": If your opponent draws their gun (takes a red ship), immediately draw your gun. You can occasionally ignore it for a turn if the opponent can't reach you, but in general, the turn after the other guy first takes a red ship, you need to do the same.\n\n\tagentofchaos: Thanks, I'll remember the gun rule. \n\nHomeworlds Online (SDG# 12278)\nVariants: "Unrated, Hard time"\nStarted: 2008.12.28, Ended: 2009.1.22\nParticipants: MadWuher (S), agentofchaos (N)\nWinner: MadWuher\n\n1) agentofchaos: Homeworld B1 Y2 G3\n\n2) MadWuher: Homeworld R2 B3 G3\n\tagentofchaos: Hi, enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\tMadWuher: You too\n\n4) MadWuher: Build G1 Madwuher\n\n5) agentofchaos: Discover G1 Agentofchaos Y3 Elysia\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) agentofchaos: Build G1 Elysia\n\n8) MadWuher: Build Y1 Madwuher\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) MadWuher: Build G2 Madwuher\n\n11) agentofchaos: Discover G1 Elysia B2 Hades\n\n12) MadWuher: Discover G2 Madwuher Y1 Edora\n\n13) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Hades\nBuild G2 Elysia\nBuild G3 Agentofchaos\n\n14) MadWuher: Build G3 Edora\n\n15) agentofchaos: Trade G2 Y2 Hades\n\n16) MadWuher: Build G2 Madwuher\n\n17) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild Y2 Hades\nBuild Y3 Hades\n\n18) MadWuher: Discover Y1 Madwuher B1 Bologna\n\n19) agentofchaos: Trade Y3 R3 Hades\n\n20) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y3 Madwuher\nBuild Y3 Bologna\n\n21) agentofchaos: Move R3 Hades Edora\n\n22) MadWuher: Sacrifice Y3 Madwuher\nMove G3 Edora Hades\nMove G2 Edora Hades\nMove G2 Hades Bologna\n\n23) agentofchaos: Move G1 Elysia Edora\n\n24) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y3 Madwuher\nPass\n\n25) agentofchaos: Move R3 Edora Madwuher\n\n26) MadWuher: Attack R3 Madwuher\n\n\tMadWuher: Hmmmm, not what you thought would happen eh?\n\tagentofchaos: No it isn't, clearly the wrong move by me!\n\nHomeworlds Online (SDG# 12297)\nStarted: 2008.12.28, Ended: 2009.1.8\nParticipants: MadWuher (S), mschlat (N)\nWinner: MadWuher\n\n1) mschlat: Homeworld Y3 B1 G3\n\n2) MadWuher: Homeworld R1 B2 G3\n\tmschlat: First game I've ever played, so I just learning how this works.\n\n3) mschlat: Build G1 Mschlat\n\tMadWuher: I'll do my best to guide you as we go along.\n\n4) MadWuher: Build G1 Madwuher\n\tmschlat: Thanks, but don't take it easy on me either.\n\n5) mschlat: Trade G1 Y1 Mschlat\n\tMadWuher: will do. =)\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) mschlat: Discover Y1 Mschlat G2 Oneaway1\n\n8) MadWuher: Build G1 Madwuher\n\n9) mschlat: Build G1 Mschlat\n\n10) MadWuher: Trade G1 B1 Madwuher\n\n11) mschlat: Build G1 Mschlat\n\n12) MadWuher: Build B1 Madwuher\n\n13) mschlat: Move G1 Mschlat Oneaway1\n\n14) MadWuher: Discover B1 Madwuher G3 Edora\n\n15) mschlat: Trade G1 R1 Mschlat\n\n16) MadWuher: Build B2 Edora\n\tmschlat: Okay, this is about the place where I'm feeling pretty lost. About the only thing I'm focused on is not giving you a chance to build a 2 ship.\n\tMadWuher: you'll notice that I already have access to the size 2 ships (blue in this case) while you don't have any blues available. Some ways to fix this: trade your G3 for a B3 and then create B ships, take control of another colour (all that seems to be left that I don't have is Red).You'll notice I chose blue because a b1 was already used in your homeworld giving me a quicker monopoly.\n\n17) mschlat: Build R1 Mschlat\n\tMadWuher: At this point, I have a few options. Keep building the blues until I get to size 3, or start diversifying my colours at the Edora system. Let me warn you, that if you trade your g3 for a b3, you will be 1 step closer to a blue catastrophe in your homeworld (and you won't be able to build anything there anymore).\n\n18) MadWuher: Build B2 Madwuher\n\tmschlat: Yes, I don't like the G3 for B3 option. I'll try more focus on red.\n\n19) mschlat: Build R2 Mschlat\n\n20) MadWuher: Discover B2 Madwuher Y3 Camelot\n\n21) mschlat: Move R2 Mschlat Oneaway1\n\n22) MadWuher: Sacrifice G3 Madwuher\nBuild B3 Madwuher\nBuild B3 Camelot\nBuild B3 Edora\n\n23) mschlat: Sacrifice G3 Mschlat\nBuild R2 Mschlat\nBuild R2 Oneaway1\nBuild R3 Oneaway1\n\n24) MadWuher: Sacrifice B2 Edora\nTrade B3 R3 Camelot\nTrade B3 G3 Madwuher\n\n25) mschlat: Move R2 Oneaway1 Edora\n\n26) MadWuher: Sacrifice G3 Madwuher\nBuild B2 Camelot\nBuild B3 Edora\nBuild B3 Madwuher\n\n27) mschlat: Build R3 Edora\n\n28) MadWuher: Sacrifice R3 Camelot\nAttack R3 Edora\nAttack R2 Edora\nPass\n\n29) mschlat: Move R3 Oneaway1 Camelot\n\tmschlat: Ah, I didn't realize how the red sacrifice could work in that way. I think I'm toast.\n\n30) MadWuher: Sacrifice B2 Camelot\nTrade B3 G3 Madwuher\nTrade B3 Y3 Edora\n\n31) mschlat: Discover R1 Mschlat G2 Oneaway2\n\tMadWuher: One thing to think about, you have no size 3 ships in your home system. If I can move a size 3 ship there then you cannot attack it (you can only attack ships the same size or less than the largest ship you have there) and I can start to attack your ships. The other thing you should think about, since I now have access to yellow (and can use a sacrifice to move any of my ships) I can move my R2 from Edora into your home system (discovering another planet if I have to) and cause a catastrophe there, leaving you no ships in your homeworld (so I would win).\n\n32) MadWuher: Sacrifice Y3 Edora\nMove B3 Edora Oneaway2\nMove B3 Oneaway2 Mschlat\nDiscover B2 Camelot Y2 Bologna\n\n33) mschlat: Build R3 Oneaway2\n\tMadWuher: I'm just taking advantage of the fact that you have no size three ships to defend your system.\n\n34) MadWuher: Sacrifice G3 Madwuher\nBuild B2 Edora\nBuild B3 Madwuher\nBuild B3 Bologna\n\n35) mschlat: Move R3 Camelot Oneaway1\n\n36) MadWuher: Sacrifice R2 Edora\nAttack R2 Mschlat\nAttack R1 Mschlat\n\tMadWuher: Thanks for the game. Want to play another? Feel free to ask me any questions you may have about homeworlds.\n\tmschlat: Yeah, I'd like to play another, but I don't understand what happened in this one. It's hard for me to see what happens as a result of sacrifice (so I don't understand the last turn and how I've lost). I'm going to try and review with some Icehouse pieces.\n\tMadWuher: sacrifice a red piece and attack at any system (as long as the ship I use is = or greater in size than yours). sacrifice an r2, get 2 attacks.\n\tmschlat: I finally figured that out - I was thinking the B3 was in my system to set up a catastrophe later on, not give you a chance to use a red sacrifice.\n\tmschlat: Yes, I'd like to play another. How do we do that?\n\tMadWuher: I was about to say "choose one of my challenges from the challenges screen" but I think it might be better for you to setup a new challenge against me. Select the "challenges" screen, scroll down to homeworlds, and click "New Challenge". In the next screen, you can choose any of the options you want, and choose MadWuher from the "challenge whom" option. This sets up a challenge against me of your choosing. Otherwise, you can select any of the other open challenges that I or other players have available.\n\n\nHomeworlds Online (SDG# 12475)\nVariants: "Hard time"\nStarted: 2008.12.31, Ended: 2009.1.3\nParticipants: dsheldon (S), stoneaxe (N)\nWinner: dsheldon\n\n\nHomeworlds Online (SDG# 12465)\nVariants: "Unrated, Hard time"\nStarted: 2009.1.7, Ended: 2009.1.19\nParticipants: Sgeo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B3 R2 G3\n\tSgeo: Hello! Have fun and good luck! This is my first time on SDG, as well as playing Homeworlds.\n\tMadWuher: Welcome. I'll try to remember to make some comments as we go along to help you out. If you have any questions, just ask.\n\n2) Sgeo: Homeworld G1 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\tSgeo: How do I spectate on games?\n\tSgeo: Ok figured it out.\n\n4) Sgeo: Build Y1 Sgeo\n\n5) MadWuher: Build G1 Madwuher\n\n6) Sgeo: Trade Y3 R3 Sgeo\n\n7) MadWuher: Trade G3 Y3 Madwuher\n\n8) Sgeo: Trade R3 G3 Sgeo\n\tSgeo: ..I didn't realize that you need a _ship_ of the color in order to build a ship, I thought a star would work too.. I'm screwed, aren't I?\n\n9) MadWuher: Sacrifice G1 Madwuher\nBuild Y1 Madwuher\n\tMadWuher: not necessarily.\n\n\nHomeworlds Online (SDG# 12363)\nStarted: 2009.1.9, Ended: 2009.1.17\nParticipants: MikeYarrum (S), array (N)\nWinner: array\n\n1) array: Homeworld G3 Y2 B3\n\n\nHomeworlds Online (SDG# 12583)\nStarted: 2009.1.9, Ended: 2009.1.14\nParticipants: mschlat (S), MikeYarrum (N)\nWinner: mschlat\n\n\tTester1: \n\nHomeworlds Online (SDG# 12589)\nStarted: 2009.1.9, Ended: 2009.1.21\nParticipants: MadWuher (S), mschlat (N)\nWinner: MadWuher\n\n1) mschlat: Homeworld B1 Y2 G3\n\tMadWuher: Thanx for starting another game.\n\tmschlat: No problem.\n\n2) MadWuher: Homeworld B3 R2 G3\n\n3) mschlat: Build G1 Mschlat\n\n4) MadWuher: Build G1 Madwuher\n\n5) mschlat: Trade G1 Y1 Mschlat\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) mschlat: Build G1 Mschlat\n\n8) MadWuher: Build G1 Madwuher\n\n9) mschlat: Build G1 Mschlat\n\n10) MadWuher: Build G2 Madwuher\n\n11) mschlat: Trade G1 R1 Mschlat\n\tMadWuher: Sorry about that Undo\r\n\n\n12) MadWuher: Trade G2 R2 Madwuher\n\n13) mschlat: Trade G1 B1 Mschlat\n\n14) MadWuher: Trade G1 B1 Madwuher\n\n15) mschlat: Build B2 Mschlat\n\n16) MadWuher: Build B2 Madwuher\n\n17) mschlat: Discover B1 Mschlat G3 Adama\n\n18) MadWuher: Discover B2 Madwuher Y1 Edora\n\n19) mschlat: Build B2 Adama\n\n20) MadWuher: Sacrifice G3 Madwuher\nBuild B3 Madwuher\nBuild B3 Edora\nBuild Y2 Madwuher\n\n21) mschlat: Build Y2 Mschlat\n\n22) MadWuher: Trade B3 G3 Madwuher\n\n\n23) mschlat: Sacrifice Y2 Mschlat\nMove B1 Adama Edora\nMove B2 Adama Edora\nPass\nCatastrophe Edora B\n\n24) MadWuher: Build G1 Madwuher\n\n25) mschlat: Build Y1 Mschlat\n\n26) MadWuher: Discover Y1 Madwuher G1 Edora\n\n27) mschlat: Discover Y1 Mschlat G3 Adama\n\n28) MadWuher: Move B1 Madwuher Edora\n\n29) mschlat: Build R1 Mschlat\n\n30) MadWuher: Move R2 Madwuher Edora\n\n31) mschlat: Build G1 Mschlat\n\n32) MadWuher: Build B1 Edora\n\n33) mschlat: Move B2 Mschlat Adama\n\n34) MadWuher: Discover B1 Edora G2 Bologna\n\n35) mschlat: Build B2 Adama\n\n36) MadWuher: Build B2 Bologna\n\n37) mschlat: Trade B2 R2 Adama\n\n38) MadWuher: Build G2 Madwuher\n\n39) mschlat: Move R2 Adama Bologna\n\n40) MadWuher: Sacrifice R2 Edora\nAttack R2 Bologna\nPass\n\n41) mschlat: Build Y2 Adama\n\n42) MadWuher: Sacrifice G2 Madwuher\nBuild Y3 Edora\nBuild Y3 Madwuher\n\tmschlat: Yep, I forgot you could do that _again_. I do not have a solid understanding of red attacks and sacrifice.\n\n43) mschlat: Trade Y2 G2 Adama\n\n44) MadWuher: Trade Y1 R1 Edora\n\n45) mschlat: Build G2 Adama\n\n46) MadWuher: Sacrifice Y2 Madwuher\nMove G1 Madwuher Edora\nMove G1 Edora Adama\nCatastrophe Adama G\n\n\tmschlat: I'll give. You have more and bigger ships and I can't follow sacrifices. A couple of questions:\r\n\r\n1) Why did you build the Bologna system? I didn't see any particular reason for building something not adjacent to me?\r\n\r\n2) I keep on being behind on ship sizes. Is this connected to going first? Is this a game where first or second is an advantage?\r\n\r\n3) How and where do you learn strategy for this game? I'm willing to lose many games to understand the game better (I did so with go), but I'd like some direction.\n\tMadWuher: I built the other size 2 system thinking that it will connect to yours if I get a yellow catastrophe in your home system and/or a safe haven for me to build up my ships and hold onto some kind of piece advantage. When I was making it, I felt that the size 3 system would be easy for you to get to and attack, thereby losing some of my ships in the process.\r\n\r\nI don't think it is a matter of going first or second. I just saw what size 3 ships were available in the least number of turns while sacrificing the size 1 ships when you finally had access to that color. (Maybe that didn't come up in this game, but it's something I tend to think about) As I have read from other players, it is important to leverage the reserve stash by creating some planets and ships at opportune times.\r\n\r\nI learned most of my strategy by losing lots of times. It has been stated that SDG-Homeworld players can be too good as many beginners leave the game after losing a few times to the veterans. I found some strategies using the Wiki here at SDG http://wiki.superdupergames.org/games/homeworlds and from the IceHouse Wiki http://www.icehousegames.org/wiki/index.php?title=Homeworlds which has a link to a few strategy pages. I can't think of where else to get help besides the book Playing with Pyramids which includes only a few other tidbits of information you can't seem to find elsewhere. Not earthshaking information mind you.\r\n\r\nI hope this helps.\r\n\r\n\n\nHomeworlds Online (SDG# 12599)\nVariants: "Hard time"\nStarted: 2009.1.11, Ended: 2009.6.19\nParticipants: wyons (S), TwoShort (N)\nWinner: wyons\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) wyons: Homeworld B1 R3 G3\n\n3) TwoShort: Build G1 Twoshort\n\twyons: I thought you wouldnt let me rest on my laurels for long.\n\n4) wyons: Build G1 Wyons\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) TwoShort: Build G1 Twoshort\n\n8) wyons: Build G1 Wyons\n\n9) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n10) wyons: Trade G1 B1 Wyons\n\n11) TwoShort: Build G1 Twoshort\n\twyons: you just departed from game 11066.. :)\n\tTwoShort: That's funny. Taking the b1 was the other move I was considering, but I recalled I had tried some tricky/agressive move early last time and it hadn't worked out, so I decided to play it a little safer. I had no (conscious) idea it was exactly the same decision though.\n\n12) wyons: Build B1 Wyons\n\twyons: well we will have to see if the early tricky/aggressive pays off for me....\n\n13) TwoShort: Build G1 Twoshort\n\n14) wyons: Build G2 Wyons\n\n15) TwoShort: Build G2 Bluonia\n\n16) wyons: Discover B1 Wyons B2 Trueblue\n\n17) TwoShort: Discover G1 Twoshort B3 Blunderbuss\n\n18) wyons: Sacrifice G2 Wyons\nBuild B2 Trueblue\nBuild B3 Wyons\n\n19) TwoShort: Build G2 Twoshort\n\n20) wyons: Trade B3 G3 Wyons\n\n21) TwoShort: Discover G1 Twoshort B3 Blutacular\n\n22) wyons: Trade B2 R2 Trueblue\n\n23) TwoShort: Trade G2 B2 Twoshort\n\n24) wyons: Sacrifice G3 Wyons\nBuild Y1 Wyons\nBuild Y2 Wyons\nBuild G2 Wyons\n\n25) TwoShort: Sacrifice G2 Bluonia\nBuild G2 Twoshort\nBuild Y2 Twoshort\n\n26) wyons: Sacrifice Y1 Wyons\nDiscover R2 Trueblue G3 Zoo\n\n27) TwoShort: Discover B2 Twoshort Y3 Ynot\n\n28) wyons: Move B1 Wyons Trueblue\n\tTwoShort: This is my weirdest game in quite a while.\n\n29) TwoShort: Discover B2 Ynot Y2 Yonderboy\n\twyons: I nearly gave myself a cerebal haemorrage looking at this lot and I do not really know if this is the best option. But time is running out. I also think you have me beat.\n\tTwoShort: Hmmm, I am feeling better about it than I was a few moves ago. But it feels like a festival of ways to screw up...\n\n30) wyons: Trade B1 Y1 Trueblue\n\n31) TwoShort: Build Y3 Twoshort\n\twyons: I think I became unhinged when I made the r2 ship. I had missed you could safely create a b2 in your homeworld. Now it is damage control but I think you have a compelling advantage.\n\tTwoShort: The red you haven't been able to seriously threaten me with yet may have been a mistake. As to overall advantage, I guess the view depends on where you sit :) That last move may have been damage control to you, but it looks like a crushing reversal to me. I'll be happy to come out of the next couple turns only slightly behind.\n\n32) wyons: Sacrifice G2 Wyons\nBuild Y3 Wyons\nBuild Y3 Trueblue\n\n33) TwoShort: Move Y1 Twoshort Bluonia\n\n34) wyons: Move Y3 Wyons Yonderboy\n\n35) TwoShort: Trade G2 R2 Twoshort\n\n36) wyons: Build G2 Wyons\n\n37) TwoShort: Move Y3 Twoshort Zoo\n\n38) wyons: Sacrifice R2 Zoo\nAttack B2N Yonderboy\nPass\n\n39) TwoShort: Build G2 Twoshort\n\n40) wyons: Trade Y1 R1 Trueblue\n\n41) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluonia\nBuild G2 Blutacular\nBuild G3 Twoshort\n\tTwoShort: So if you undid because you saw a better move, you'd have made it. So you must have undid because you saw some fatal flaw. But I've looked at this until I gave up on finding something I could commit to at least twice, so how did I miss it? Or maybe you undid as a clever psych-out strategy. If that's it, it's working :)\n\n42) wyons: Sacrifice G3 Wyons\nBuild R1 Trueblue\nBuild B1 Trueblue\nBuild G3 Wyons\n\twyons: not a psycho-out strategy- nor did I see a better move. I thought I saw a fatal flaw- but this is such a complex situation I couldnt be sure even of that...\n\n43) TwoShort: Trade G2 R2 Blutacular\n\n44) wyons: Move R1 Trueblue Wyons\n\twyons: I do hope we are building up to some casualties soon as this is beginning to do my head in!\n\n45) TwoShort: Discover Y3 Zoo G2 Gonzo\n\n46) wyons: Discover Y3 Yonderboy G3 Xanthrophyl\n\twyons: sadly work is so busy at present I have not had time to think this one through fully (lame excuse I know)\n\tTwoShort: Well, the last couple moves I've spent a long time trying to think them through, but in the end felt like it hadn't got me anywhere and I was just guessing :) \n\twyons: I think sooner or later- especially when there are this many pieces in play it starts to default to intuition rather than logic. The trouble is without the logical analysis as well intuition isnt enough on its own....\n\n47) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Blutacular Gonzo\nMove G1 Gonzo Wyons\n\n48) wyons: Sacrifice G2 Wyons\nBuild R2 Trueblue\nBuild R3 Trueblue\n\twyons: In early April I am off on holiday for a couple of weeks. If you havent beaten me by then do you know a way that we might suspend play for the period and would that be OK with you? :)\n\tTwoShort: Actually, I'm off the week after next. I've figured out how to freeze the clock in the past, so sometime before I go I'll figure it out again...\n\n49) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Wyons\nBuild R3 Blutacular\nBuild G3 Twoshort\n\tTwoShort: Just coming by for a visit\n\n50) wyons: Sacrifice R2 Trueblue\nAttack G2N Wyons\nAttack G1N Wyons\n\twyons: What an unexpected visit! Welcome to Wyons and do lets party!\n\n51) TwoShort: Sacrifice Y3 Gonzo\nDiscover G1 Bluonia G2 Gonzo\nMove Y1 Bluonia Gonzo\nMove G1 Gonzo Wyons\nCatastrophe Wyons Green\n\n52) wyons: Sacrifice B2 Yonderboy\nTrade R3 G3 Trueblue\nTrade Y2 G2 Wyons\n\n53) TwoShort: Trade R3 Y3 Blutacular\n\tTwoShort: I think if you type "~vote accept freeze" as a chat, that will do it. I also beleive we can keep playing with the clock frozen. I'm departing on Monday and coming back the following Monday...\n\tTwoShort: actually, maybe it's "~vote accept clock freeze"\n\twyons: as a matter of interest: how did you set up the clock freeze request? was it ~clock freeze ?\n\tTwoShort: yes, that was it. more to the point, what I remember each time is "search the wiki for 'freeze'"...\n\twyons: thanks, and have a good holiday\n\n54) wyons: Build G1 Trueblue\n\tTwoShort: I'm back from my vacation, but I guess you're just headed to yours. In any case, feel free to thaw the clock whenever you are ready.\n\n55) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Blunderbuss\nBuild G3 Twoshort\nBuild Y2 Bluonia\n\twyons: b g1 trueblue\n\n56) wyons: Sacrifice G3 Trueblue\nBuild G3 Wyons\nBuild Y2 Trueblue\nBuild Y2 Xanthrophyl\n\n57) TwoShort: Trade G2 B2 Twoshort\n\n58) wyons: Move B1 Trueblue Xanthrophyl\n\n59) TwoShort: Sacrifice Y2 Bluonia\nDiscover B2 Twoshort R3 Rover\nMove G1 Blunderbuss Trueblue\n\n60) wyons: Sacrifice G2 Wyons\nBuild R2 Wyons\nBuild R3 Trueblue\n\n61) TwoShort: Sacrifice G1 Blunderbuss\nBuild B3 Rover\n\n62) wyons: Sacrifice Y2 Xanthrophyl\nMove R3 Trueblue Bluonia\nMove B1 Trueblue Bluonia\n\n63) TwoShort: Build Y2 Gonzo\n\n64) wyons: Sacrifice R2 Wyons\nAttack G1N Trueblue\nAttack Y1N Bluonia\n\n65) TwoShort: Build G1 Twoshort\n\n66) wyons: Move G1 Trueblue Bluonia\n\n67) TwoShort: Sacrifice Y1 Gonzo\nMove G1 Twoshort Blutacular\n\n68) wyons: Build G2 Bluonia\n\n69) TwoShort: Build R2 Blutacular\n\n70) wyons: Sacrifice G2 Bluonia\nBuild Y1 Xanthrophyl\nBuild Y2 Bluonia\n\n71) TwoShort: Move R2 Blutacular Gonzo\n\n72) wyons: Build G2 Bluonia\n\n73) TwoShort: Build G2 Blutacular\n\n74) wyons: Move G1 Trueblue Xanthrophyl\n\n75) TwoShort: Move Y3 Blutacular Twoshort\n\n76) wyons: Move Y3 Trueblue Blutacular\n\n\tTwoShort: Got me again. Good game.\n\nHomeworlds Online (SDG# 12466)\nStarted: 2009.1.12, Ended: 2009.2.13\nParticipants: zoltar (S), MadWuher (N)\nWinner: zoltar\n\n1) MadWuher: Homeworld R1 B2 G3\n\tMadWuher: Hello Zoltar. Hope you have a good game.\n\n2) zoltar: Homeworld B1 R3 G3\n\n3) MadWuher: Build G1 Madwuher\n\tzoltar: Hi, I haven't played in months. Should be fun!\n\n4) zoltar: Build G1 Zoltar\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) MadWuher: Build G1 Madwuher\n\n8) zoltar: Build G1 Zoltar\n\n9) MadWuher: Trade G1 B1 Madwuher\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) MadWuher: Discover B1 Madwuher G3 Edora\n\n12) zoltar: Build B2 Zoltar\n\n13) MadWuher: Build B2 Edora\n\n14) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n15) MadWuher: Trade B1 R1 Edora\n\tzoltar: Hmm -- somehow I seem to be a whole move behind.\n\n16) zoltar: Build Y1 Zoltar\n\tMadWuher: I wouldn't worry. =) You'll be in control (i think) soon enough\n\tzoltar: I'm better in the middle-game, but I always suck at openings in this game\n\n17) MadWuher: Build Y2 Madwuher\n\n18) zoltar: Build Y2 Zoltar\n\n19) MadWuher: Move Y1 Madwuher Edora\n\n20) zoltar: Trade Y1 R1 Zoltar\n\n21) MadWuher: Build R2 Edora\n\n22) zoltar: Move Y2 Zoltar Greenbelt\n\n23) MadWuher: Discover R2 Edora Y2 Bologna\n\n24) zoltar: Move R1 Zoltar Greenbelt\n\n25) MadWuher: Build R2 Edora\n\n26) zoltar: Build R2 Greenbelt\n\n27) MadWuher: Trade R1 G1 Edora\n\n28) zoltar: Trade R1 G1 Greenbelt\n\n29) MadWuher: Move G1 Edora Bologna\n\n30) zoltar: Discover G1 Greenbelt Y3 Yellowstone\n\n31) MadWuher: Build G1 Madwuher\n\n32) zoltar: Build G2 Yellowstone\n\n33) MadWuher: Sacrifice G1 Madwuher\nBuild R1 Bologna\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\n\n35) MadWuher: Discover R1 Bologna B3 Camelot\n\n36) zoltar: Move Y3 Greenbelt Edora\n\n37) MadWuher: Sacrifice B2 Edora\nTrade Y1 G1 Edora\nTrade R2 G2 Edora\n\n38) zoltar: Move Y3 Edora Bologna\n\n39) MadWuher: Sacrifice G2 Edora\nBuild G2 Bologna\nBuild G3 Madwuher\n\n40) zoltar: Sacrifice Y2 Greenbelt\nMove G1 Yellowstone Madwuher\nMove G2 Yellowstone Madwuher\nCatastrophe Madwuher G\n\n41) MadWuher: Move G2 Bologna Camelot\n\n42) zoltar: Sacrifice Y3 Zoltar\nMove Y1 Zoltar Greenbelt\nMove Y3 Bologna Camelot\nMove Y3 Camelot Madwuher\n\tMadWuher: I knew I made a mistake a long time ago. =) Oh well.\r\n\r\n\n\n\tzoltar: Yeah, without a 3-pip ship, I don't see any way for you to defend your homeworld at this point. Play again?\n\tMadWuher: Sure.\n\nHomeworlds Online (SDG# 12567)\nStarted: 2009.1.12, Ended: 2009.2.13\nParticipants: zoltar (S), Trollkin (N)\nWinner: zoltar\n\n1) Trollkin: Homeworld G1 B2 Y3\n\n2) zoltar: Homeworld B1 R3 G3\n\n3) Trollkin: Build Y1 Trollkin\n\tzoltar: Hi from Greenbelt, MD\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: Oops, I better pick a different setup than you so it isn't one of those weird short-worlds.\n\n5) Trollkin: Build Y1 Trollkin\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Trollkin: Trade Y1 B1 Trollkin\n\n8) zoltar: Build G1 Zoltar\n\n9) Trollkin: Discover B1 Trollkin G3 Ensiferum\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) Trollkin: Build B2 Ensiferum\n\n\n12) zoltar: Build G1 Zoltar\n\n13) Trollkin: Trade B2 G2 Ensiferum\n\n14) zoltar: Build B2 Zoltar\n\n15) Trollkin: Build G1 Ensiferum\n\n16) zoltar: Trade B1 R1 Zoltar\n\n17) Trollkin: Trade G2 B2 Ensiferum\n\n18) zoltar: Discover G1 Zoltar Y2 Korpiklaani\n\n19) Trollkin: Trade B2 Y2 Ensiferum\n\n20) zoltar: Build G2 Korpiklaani\n\n21) Trollkin: Trade Y1 R1 Trollkin\n\n22) zoltar: Build G2 Zoltar\n\n23) Trollkin: Build Y1 Trollkin\n\n24) zoltar: Move G1 Korpiklaani Ensiferum\n\n25) Trollkin: Trade G1 R1 Ensiferum\n\n26) zoltar: Build G1 Ensiferum\n\n27) Trollkin: Attack G1S Ensiferum\n\n28) zoltar: Sacrifice G3 Zoltar\nBuild G2 Ensiferum\nBuild G3 Korpiklaani\nBuild G3 Zoltar\nCatastrophe Ensiferum G\n\n29) Trollkin: Trade Y3 R3 Trollkin\n\n30) zoltar: Move B2 Zoltar Korpiklaani\n\n31) Trollkin: Discover R1 Trollkin Y3 Tranquillity\n\n32) zoltar: Move G3 Korpiklaani Tranquillity\n\n33) Trollkin: Trade Y1 G1 Trollkin\n\n34) zoltar: Sacrifice R1 Zoltar\nAttack R1 Tranquillity\n\n35) Trollkin: Build R1 Trollkin\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G1 Tranquillity\nBuild G2 Korpiklaani\nBuild G3 Zoltar\n\n37) Trollkin: Build G3 Trollkin\n\n38) zoltar: Move G1 Tranquillity Trollkin\nCatastrophe Trollkin G\n\n39) Trollkin: Trade R1 Y1 Trollkin\n\n40) zoltar: Discover B2 Korpiklaani G1 Greenpeace\n\n41) Trollkin: Trade Y1 G1 Trollkin\n\n42) zoltar: Sacrifice G3 Zoltar\nBuild G1 Tranquillity\nBuild G3 Korpiklaani\nBuild G3 Zoltar\n\n43) Trollkin: Build R1 Trollkin\n\n44) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Greenpeace\nBuild B1 Greenpeace\n\n\nHomeworlds Online (SDG# 12604)\nStarted: 2009.1.15, Ended: 2009.3.7\nParticipants: dkthegm (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\tMadWuher: Hi there. Hope you have a good game.\n\n\nHomeworlds Online (SDG# 12646)\nVariants: "Hard time"\nStarted: 2009.1.19, Ended: 2009.4.21\nParticipants: Keith (S), MadWuher (N)\nWinner: Keith\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) Keith: Homeworld B1 Y2 G3\n\n3) MadWuher: Build G1 Madwuher\n\tKeith: Hello MadWuher. Experimenting against a player with your track record is probably a mistake. However, I am a bit out of practice and I hope to steer the game into territory that is new to both of us.\n\tMadWuher: Sounds good to me. Always wanting to try out new things.\n\n4) Keith: Build G1 Keith\n\tKeith: Well I am already having second thoughts. As much as I find having a green homeworld risky I think it would have been better to have a yellow ship at start and gain mobility first. We shall see...\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) Keith: Trade G1 Y1 Keith\n\n7) MadWuher: Build G1 Madwuher\n\n8) Keith: Build G1 Keith\n\n9) MadWuher: Trade G1 B1 Madwuher\n\n10) Keith: Trade G1 R1 Keith\n\n11) MadWuher: Build B1 Madwuher\n\n12) Keith: Discover Y1 Keith G3 Midori\n\n13) MadWuher: Discover B1 Madwuher Y3 Edora\n\n14) Keith: Move R1 Keith Edora\n\n15) MadWuher: Discover B1 Edora R2 Bologna\n\n16) Keith: Build Y1 Midori\n\n17) MadWuher: Build B2 Madwuher\n\n18) Keith: Discover Y1 Midori G1 Chisai\n\n19) MadWuher: Trade B2 R2 Madwuher\n\n20) Keith: Build Y2 Midori\n\n21) MadWuher: Build B2 Madwuher\n\n22) Keith: Move Y2 Midori Bologna\n\n23) MadWuher: Sacrifice B1 Bologna\nTrade B2 Y2 Madwuher\n\n24) Keith: Build Y3 Midori\n\n25) MadWuher: Move R2 Madwuher Edora\n\tMadWuher: Wow..... I am so lagging behind in this game. Sorry about the lack of competition here.\n\n26) Keith: Move R1 Edora Keith\n\tKeith: Lack of competition? Your blue build and covert situation had me under a lot of pressure. If you mean how fast you take your turns don't worry. I usually keep a light game schedule because of my job and I am fine with a slow moving game.\n\n27) MadWuher: Build B1 Madwuher\n\n28) Keith: Build Y3 Chisai\n\n29) MadWuher: Discover B1 Madwuher B3 Camelot\n\n30) Keith: Build R1 Keith\n\n31) MadWuher: Build G1 Madwuher\n\n32) Keith: Move R1 Keith Midori\n\n33) MadWuher: Sacrifice G1 Madwuher\nBuild R2 Edora\n\n34) Keith: Build R3 Midori\n\n35) MadWuher: Build B2 Madwuher\n\n36) Keith: Build R3 Keith\n\n37) MadWuher: Discover R2 Edora G1 Pi\n\n38) Keith: Move R3 Keith Edora\n\n39) MadWuher: Build R3 Pi\n\n40) Keith: Move R3 Midori Pi\n\n41) MadWuher: Sacrifice R2 Edora\nAttack R3 Pi\nPass\n\n42) Keith: Move R1 Midori Pi\nCatastrophe Pi Red\n\n43) MadWuher: Trade B1 R1 Camelot\n\n44) Keith: Move Y3 Chisai Camelot\n\n45) MadWuher: Discover B2 Madwuher B3 Blarney\n\n46) Keith: Trade Y3 R3 Camelot\n\n47) MadWuher: Sacrifice Y1 Madwuher\nMove R1 Camelot Chisai\n\n48) Keith: Sacrifice Y2 Bologna\nMove Y3 Midori Madwuher\nMove R3 Camelot Madwuher\n\n49) MadWuher: Sacrifice G3 Madwuher\nBuild B1 Blarney\nBuild B2 Blarney\nBuild B3 Madwuher\n\tMadWuher: I think you've got me. Thanks for the game. \n\n50) Keith: Sacrifice R3 Madwuher\nAttack Y2 Madwuher\nAttack B3 Madwuher\nAttack B1 Madwuher\n\tKeith: Good game. I can see why you have the track record you have. If I had not been able to grab that last G3 before you had a chance to your blue machine would have groud me under.\n\n\nHomeworlds Online (SDG# 12643)\nStarted: 2009.1.21, Ended: 2009.5.6\nParticipants: Laurie_Menke (S), nycavri (N)\nWinner: nycavri\n\n1) nycavri: Homeworld Y3 B2 G3\n\n2) Laurie_Menke: Homeworld B1 Y3 G3\n\tLaurie_Menke: Ack! I am so sorry, Avri! First I invite you to a game, then I skip out on you. Please forgive me. I kept putting it off because I needed to refresh my memory on the rules, and then life got in the way and here I am timed out and apologetic. Please forgive me. :o(\n\n3) nycavri: Build G1 Nycavri\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: And then I make an error right off the bat. Grrr. Sorry.\n\tnycavri: Don't sweat it, Laurie. Enjoy . . .\n\n5) nycavri: Discover G1 Nycavri Y1 Mvb\n\tLaurie_Menke: Thanks. :o) You, too!\n\n6) Laurie_Menke: Discover G1 Laurie_menke B2 Blue\n\n7) nycavri: Build G1 Mvb\n\n8) Laurie_Menke: Build G2 Blue\n\tnycavri: You need to undo that, Laurie - I can cause a catastrophe (in green) in your homeworld . . .\n\tLaurie_Menke: Oops...sorry. I didn't see your note earlier. Thanks for the warning, but how so? You aren't directly connected to my homeworld at the moment, are you?\n\tnycavri: Either player can trigger a catastrophe whenever there are 4 or more pyramids of one color in a system . . .\n\tLaurie_Menke: Ahhh.... you're right. It says catastrophes can be triggered from anywhere. I was thinking you had to be in the homeworld to trigger it. Duh. Sorry for the long delay while I got my head on straight. :o/ Thanks for the "do over." ;o)\n\n9) nycavri: Build G2 Nycavri\n\n10) Laurie_Menke: Trade G1 Y1 Blue\n\n11) nycavri: Discover G1 Mvb Y2 Mvg\n\n12) Laurie_Menke: Move G2 Blue Laurie_menke\n\n13) nycavri: Move G1 Mvg Laurie_menke\n\n14) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tLaurie_Menke: OK, I've gotta ask... how do you name your star systems?\n\n15) nycavri: Sacrifice G2 Nycavri\nBuild G1 Laurie_menke\nBuild G2 Laurie_menke\nCatastrophe Laurie_menke G\n\tnycavri: lol. I name them for the units at my summer camp - Mountainview Boys, Moutainview Girls. Next will be Idyllwood (IW), then Journey's Way (JW) . . .\r\n\r\nI used to name them Deacon, May, Mercury, Taylor, etc . . .\n\n16) Laurie_Menke: Move Y1 Blue Mvb\n\tLaurie_Menke: LOL... that works. :o)\n\n17) nycavri: Trade G3 R3 Nycavri\n\n18) Laurie_Menke: Discover Y1 Mvb G3 Green\n\n19) nycavri: Build G1 Mvb\n\n20) Laurie_Menke: Build Y1 Green\n\n21) nycavri: Discover G1 Mvb Y2 Iw\n\n22) Laurie_Menke: Discover Y1 Green B1 Blue\n\n23) nycavri: Sacrifice G1 Mvb\nBuild R1 Nycavri\n\n24) Laurie_Menke: Build Y1 Green\n\n25) nycavri: Trade R3 G3 Nycavri\n\n26) Laurie_Menke: Build Y2 Green\n\n27) nycavri: Build G1 Nycavri\n\n28) Laurie_Menke: Move Y1 Green Blue\n\n29) nycavri: Build G1 Iw\n\n30) Laurie_Menke: Build Y2 Green\n\n31) nycavri: Build G2 Nycavri\n\n32) Laurie_Menke: Move Y2 Green Blue\n\n33) nycavri: Trade G2 R2 Nycavri\n\tLaurie_Menke: Sorry for the delay, Avri. I've been having internet trouble. :o(\n\n34) Laurie_Menke: Build Y3 Green\n\tnycavri: Wecome back . . .\n\n35) nycavri: Move G1 Iw Laurie_menke\n\tLaurie_Menke: Thanks. :o)\n\n36) Laurie_Menke: Attack G1 Laurie_menke\n\n37) nycavri: Move G1 Iw Laurie_menke\n\n38) Laurie_Menke: Attack G1 Laurie_menke\n\n39) nycavri: Discover R2 Nycavri B1 Jw\n\n40) Laurie_Menke: Discover Y1 Blue Y2 Yellow\n\n41) nycavri: Sacrifice G1 Nycavri\nBuild R1 Jw\n\n42) Laurie_Menke: Move Y2 Green Blue\n\n43) nycavri: Build R1 Nycavri\n\n44) Laurie_Menke: Sacrifice Y3 Green\nMove Y2 Blue Nycavri\nMove Y2 Blue Nycavri\nMove Y1 Blue Nycavri\nCatastrophe Nycavri Y\n\tLaurie_Menke: Whew... that was close. I almost didn't see what you were doing.\n\n45) nycavri: Trade R2 Y2 Jw\n\n46) Laurie_Menke: Build R2 Laurie_menke\n\n47) nycavri: Build R2 Nycavri\n\n48) Laurie_Menke: Move R2 Laurie_menke Nycavri\nCatastrophe Nycavri R\n\n49) nycavri: Trade Y2 G2 Jw\n\n50) Laurie_Menke: Move R3 Laurie_menke Nycavri\n\n51) nycavri: Sacrifice R1 Jw\nAttack R3 Nycavri\n\n52) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n53) nycavri: Sacrifice G2 Jw\nBuild R1 Nycavri\nBuild G1 Nycavri\n\n54) Laurie_Menke: Build Y1 Green\n\n55) nycavri: Trade R3 Y3 Nycavri\n\tLaurie_Menke: Ouch!\n\n56) Laurie_Menke: Discover Y1 Green G2 Alsogreen\n\n57) nycavri: Build Y2 Nycavri\n\n58) Laurie_Menke: Build Y2 Alsogreen\n\n59) nycavri: Move Y2 Nycavri Laurie_menke\n\n60) Laurie_Menke: Build R1 Laurie_menke\n\n61) nycavri: Move Y3 Nycavri Laurie_menke\n\tnycavri: lol. Love your naming conventions!\n\n62) Laurie_Menke: Move Y1 Alsogreen Laurie_menke\nCatastrophe Laurie_menke Y\n\tLaurie_Menke: :oD\n\n63) nycavri: Trade G3 Y3 Nycavri\n\n64) Laurie_Menke: Sacrifice Y2 Alsogreen\nMove Y1 Green Laurie_menke\nMove Y1 Yellow Laurie_menke\n\n65) nycavri: Build R2 Nycavri\n\n66) Laurie_Menke: Build R2 Laurie_menke\n\n67) nycavri: Move R1 Nycavri Laurie_menke\nCatastrophe Laurie_menke R\n\n68) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n69) nycavri: Move R2 Nycavri Laurie_menke\n\tLaurie_Menke: Wow... cool board right now. But this is getting much too tense! ;o)\n\n70) Laurie_Menke: Build R1 Laurie_menke\n\n71) nycavri: Build Y1 Nycavri\n\n72) Laurie_Menke: Build R1 Laurie_menke\n\n73) nycavri: Attack G1 Laurie_menke\nCatastrophe Laurie_menke R\n\n74) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\n75) nycavri: Trade G1 R1 Laurie_menke\n\n76) Laurie_Menke: Build G1 Laurie_menke\n\n77) nycavri: Attack G1 Laurie_menke\n\n78) Laurie_Menke: Build G2 Laurie_menke\n\n79) nycavri: Build G2 Laurie_menke\nCatastrophe Laurie_menke G\n\n\tLaurie_Menke: Good game, Avri! It is much more fun to play when we're more closely matched... even though you're still better than me! ;o) I'd be more than happy to play again now or at a later time if you'd like. In any case, congrats on the win and thanks for the fun! :o)\n\tnycavri: Thanks, Laurie! I'll have to pass on another game - I'm scaling back a litle, since my wife is 37 weeks pregnant!\r\n\r\nStay tuned . . .\n\tLaurie_Menke: I definitely will stay tuned! Congratulations! :o)\n\nHomeworlds Online (SDG# 12459)\nStarted: 2009.1.21, Ended: 2009.1.24\nParticipants: TwoShort (S), xpdf (N)\nWinner: TwoShort\n\n\txpdf: discover\n\nHomeworlds Online (SDG# 12659)\nVariants: "Hard time"\nStarted: 2009.1.22, Ended: 2009.1.25\nParticipants: Danner (S), dsheldon (N)\nWinner: dsheldon\n\n1) dsheldon: Homeworld Y1 B2 G3\n\n\tDanner: Sorry, I haven't played on SDG so long that I forgot to check it regularly.\n\nHomeworlds Online (SDG# 12526)\nVariants: "Unrated, Hard time"\nStarted: 2009.1.23, Ended: 2009.2.1\nParticipants: MadWuher (S), Mouce (N)\nWinner: MadWuher\n\n1) Mouce: Homeworld B3 G2 R3\n\n2) MadWuher: Homeworld B1 Y2 G3\n\n3) Mouce: Build R1 Mouce\n\n4) MadWuher: Build G1 Madwuher\n\tMadWuher: Sorry, changed my homeworld. (I hit enter before I thought about it)\r\n\r\nHave a good game\n\n5) Mouce: Trade R1 Y1 Mouce\n\tMouce: Hi, this is my first game of homeworlds; looks like a great game... Best of luck!\n\n6) MadWuher: Discover G1 Madwuher B3 Edora\n\tMadWuher: Welcome. Enjoy!\r\n\r\nJust ask if you have any questions. I'll do my best to help.\n\n7) Mouce: Build Y1 Mouce\n\n8) MadWuher: Build G1 Madwuher\n\n9) Mouce: Discover Y1 Mouce G1 Xombargle\n\n10) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Edora\nBuild G2 Madwuher\nBuild G3 Madwuher\n\n11) Mouce: Move Y1 Xombargle Edora\n\n12) MadWuher: Trade G2 R2 Madwuher\n\n13) Mouce: Discover R3 Mouce Y1 Whoops\n\n14) MadWuher: Trade G2 R2 Edora\n\tMouce: Oops, a slight misunderstanding of the rules... Oh, well - that's what first games are for!\n\n15) Mouce: Build Y2 Mouce\n\n16) MadWuher: Attack Y1 Edora\n\n17) Mouce: Sacrifice Y2 Mouce\nMove R3 Whoops Edora\nMove R3 Edora Madwuher\n\n\tMouce: Thanks for the game! I made a pretty critical error mid-game (I didn't read the "attack" command closely enough...) and it wasn't the best starting ship choice. Still I like the game a lot, and am grateful for the introduction to it. Happy future gaming!\n\nHomeworlds Online (SDG# 12650)\nStarted: 2009.1.27, Ended: 2009.2.5\nParticipants: TwoShort (S), Trollkin (N)\nWinner: TwoShort\n\n1) Trollkin: Homeworld G1 R3 B3\n\tTrollkin: Hello, good luck\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) Trollkin: Build B1 Trollkin\n\tTwoShort: Howdy\n\n4) TwoShort: Build G1 Twoshort\n\n5) Trollkin: Trade B1 Y1 Trollkin\n\n6) TwoShort: Build G1 Twoshort\n\n7) Trollkin: Discover Y1 Trollkin G2 Bozo\n\n8) TwoShort: Trade G3 Y3 Twoshort\n\n9) Trollkin: Build Y1 Bozo\n\n10) TwoShort: Build G2 Twoshort\n\n11) Trollkin: Build B1 Trollkin\n\n12) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n13) Trollkin: Trade B3 G3 Trollkin\n\n14) TwoShort: Discover G1 Yolonda Y2 Yonderboy\n\n15) Trollkin: Trade G3 Y3 Trollkin\n\n16) TwoShort: Build G2 Twoshort\n\n17) Trollkin: Trade B1 R1 Trollkin\n\n18) TwoShort: Build G3 Yonderboy\n\n19) Trollkin: Discover Y1 Bozo B3 Heinlein\n\n20) TwoShort: Sacrifice G3 Yonderboy\nBuild G3 Yonderboy\nBuild Y1 Twoshort\nBuild G3 Yonderboy\n\n21) Trollkin: Build Y2 Bozo\n\n22) TwoShort: Trade G2 R2 Twoshort\n\n23) Trollkin: Move R1 Trollkin Yonderboy\n\n24) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Yonderboy Trollkin\nMove G3 Yonderboy Trollkin\nPass\n\n25) Trollkin: Attack G3S Trollkin\n\n26) TwoShort: Sacrifice R2 Twoshort\nAttack G3N Trollkin\nAttack Y3N Trollkin\n\n\tTwoShort: thanks for the game\n\nHomeworlds Online (SDG# 12755)\nVariants: "Hard time"\nStarted: 2009.2.1, Ended: 2009.2.15\nParticipants: Mouce (S), Uglyfoot (N)\nWinner: Mouce\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) Mouce: Homeworld G3 Y1 B3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) Mouce: Build B1 Mouce\n\tUglyfoot: Greetings, Mouce. Have a good game!\n\tMouce: Hi, enjoy the game!\n\n5) Uglyfoot: Discover G1 Uglyfoot Y1 Txfr\n\n6) Mouce: Discover B1 Mouce G2 Shangrilala\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) Mouce: Build B1 Shangrilala\n\n9) Uglyfoot: Build G1 Txfr\n\n10) Mouce: Trade B1 Y1 Shangrilala\n\n11) Uglyfoot: Discover G1 Txfr B2 Path\n\n12) Mouce: Build B1 Mouce\n\n13) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Path\nBuild G2 Path\nBuild G3 Uglyfoot\n\n14) Mouce: Build Y2 Shangrilala\n\n15) Uglyfoot: Trade G2 Y2 Path\n\n16) Mouce: Build Y3 Shangrilala\n\n17) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Txfr\nBuild G3 Uglyfoot\nBuild Y3 Path\n\n18) Mouce: Trade Y3 R3 Shangrilala\n\n19) Uglyfoot: Trade G1 R1 Uglyfoot\n\n20) Mouce: Sacrifice Y2 Shangrilala\nMove R3 Shangrilala Txfr\nMove R3 Txfr Path\n\n21) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R3 Path\n\n22) Mouce: Trade B1 R1 Mouce\n\n23) Uglyfoot: Build G1 Uglyfoot\n\n24) Mouce: Build Y2 Shangrilala\n\n25) Uglyfoot: Sacrifice Y3 Path\nMove Y2 Path Mouce\nMove G2 Path Mouce\nMove G1 Path Mouce\n\n26) Mouce: Attack Y2 Mouce\n\n27) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Mouce\nBuild R1 Path\nCatastrophe Mouce G\n\n28) Mouce: Build Y3 Shangrilala\n\n29) Uglyfoot: Trade R3 Y3 Path\n\n30) Mouce: Trade Y2 R2 Shangrilala\n\n31) Uglyfoot: Move G1 Txfr Path\n\n32) Mouce: Sacrifice Y2 Mouce\nMove Y3 Shangrilala Mouce\nMove B3 Mouce Uglyfoot\n\n33) Uglyfoot: Sacrifice R1 Path\nAttack B3 Uglyfoot\n\n34) Mouce: Move Y3 Mouce Uglyfoot\n\n35) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Txfr\nBuild G2 Txfr\nBuild G3 Uglyfoot\n\n36) Mouce: Sacrifice R2 Shangrilala\nAttack G3 Uglyfoot\nAttack B3 Uglyfoot\n\n37) Uglyfoot: Sacrifice Y3 Path\nMove G2 Txfr Uglyfoot\nMove G2 Txfr Path\nMove G2 Path Mouce\n\n38) Mouce: Trade Y3 G3 Uglyfoot\nCatastrophe Uglyfoot Green\n\n\tMouce: Thank you for the exciting game! Play you again sometime...\n\nHomeworlds Online (SDG# 12757)\nVariants: "Hard time"\nStarted: 2009.2.2, Ended: 2009.8.1\nParticipants: dsheldon (S), Danner (N)\nWinner: dsheldon\n\n1) Danner: Homeworld B1 R2 G3\n\tDanner: Hi again! Good luck! I hope this game will be longer :)\n\n2) dsheldon: Homeworld Y3 G2 B3\n\n3) Danner: Build G1 Danner\n\tDanner: A blue starter ship? Unusuall, at least for me. I guess you chose that because I have a small blue star.\n\n4) dsheldon: Build B1 Dsheldon\n\n5) Danner: Trade G1 B1 Danner\n\tdsheldon: It's true. I'm hoping to beat you to the g2's. We'll see how it works out, I haven't really tried it before.\n\n6) dsheldon: Build B2 Dsheldon\n\tDanner: I'm curious.\n\n7) Danner: Build B2 Danner\n\n8) dsheldon: Discover B2 Dsheldon G1 Penny\n\n9) Danner: Trade B1 Y1 Danner\n\n10) dsheldon: Build B1 Penny\n\n11) Danner: Discover B2 Danner G3 Existenz\n\n12) dsheldon: Trade B2 G2 Penny\n\n13) Danner: Build B2 Existenz\n\n14) dsheldon: Trade B1 Y1 Penny\n\n15) Danner: Trade B2 Y2 Existenz\n\n16) dsheldon: Discover G2 Penny R3 Albiorix\n\n17) Danner: Build Y1 Existenz\n\n18) dsheldon: Build Y2 Penny\n\n19) Danner: Discover Y2 Existenz G1 Garrett\n\n20) dsheldon: Build G1 Albiorix\n\n21) Danner: Sacrifice G3 Danner\nBuild Y2 Garrett\nBuild Y3 Existenz\nBuild Y3 Danner\n\n22) dsheldon: Trade B1 R1 Dsheldon\n\n23) Danner: Trade Y3 R3 Existenz\n\n24) dsheldon: Sacrifice Y2 Penny\nDiscover G1 Albiorix B2 Tube\nDiscover G1 Tube Y3 Knox\n\n25) Danner: Build Y2 Existenz\n\n26) dsheldon: Build G2 Albiorix\n\n27) Danner: Trade Y3 G3 Danner\n\n28) dsheldon: Build Y3 Penny\n\n29) Danner: Sacrifice Y2 Garrett\nMove Y1 Existenz Penny\nMove Y2 Existenz Penny\nCatastrophe Penny Y\n\n30) dsheldon: Build B1 Dsheldon\n\n31) Danner: Build Y1 Garrett\n\tdsheldon: Sorry for the delay, I was sick for two days and then so were my wife and son all weekend.\n\n32) dsheldon: Sacrifice B1 Dsheldon\nTrade G2 Y2 Albiorix\n\tDanner: No problem, I hope you are all well now.\n\n33) Danner: Sacrifice Y2 Garrett\nMove R3 Existenz Garrett\nMove R3 Garrett Albiorix\n\n34) dsheldon: Sacrifice Y2 Albiorix\nMove G2 Albiorix Garrett\nDiscover G2 Garrett B3 Poseidon\n\n35) Danner: Trade B2 Y2 Existenz\n\n36) dsheldon: Build G1 Poseidon\n\n37) Danner: Sacrifice G3 Danner\nBuild Y1 Garrett\nBuild Y2 Existenz\nBuild Y2 Danner\n\n38) dsheldon: Build G2 Knox\n\n39) Danner: Build Y3 Existenz\n\n40) dsheldon: Build G3 Knox\n\n41) Danner: Move Y3 Existenz Danner\n\n42) dsheldon: Sacrifice G3 Knox\nBuild G3 Knox\nBuild G3 Poseidon\nBuild R1 Dsheldon\n\n43) Danner: Move Y1 Garrett Albiorix\n\n44) dsheldon: Move G2 Knox Garrett\n\n45) Danner: Move Y1 Garrett Albiorix\n\n46) dsheldon: Sacrifice G3 Knox\nBuild G3 Knox\nBuild B1 Dsheldon\nBuild B1 Dsheldon\n\n47) Danner: Move R3 Albiorix Danner\n\n48) dsheldon: Sacrifice G2 Garrett\nBuild G1 Knox\nBuild R1 Dsheldon\n\n49) Danner: Move R3 Danner Existenz\n\n50) dsheldon: Trade G2 R2 Poseidon\n\n51) Danner: Build R2 Existenz\n\n52) dsheldon: Build R3 Poseidon\n\n53) Danner: Move R3 Existenz Danner\n\n54) dsheldon: Build G2 Poseidon\n\n55) Danner: Move R2 Existenz Danner\n\tDanner: Sorry for the big delay, last week there was 4 rounds of a competition, and the next one is on Friday, which requires preparation.\n\n56) dsheldon: Trade R2 B2 Poseidon\n\tdsheldon: Not like I haven't done the same before.\n\n57) Danner: Trade R2 G2 Danner\n\n58) dsheldon: Sacrifice G2 Poseidon\nBuild R2 Poseidon\nBuild R2 Poseidon\n\tdsheldon: I'll be a bit before my next move. Emergency cross-country trip.\n\n59) Danner: Build G2 Danner\n\tDanner: Ok.\n\n60) dsheldon: Move G1 Knox Danner\n\n61) Danner: Move G2 Danner Albiorix\n\n62) dsheldon: Sacrifice R1 Dsheldon\nAttack Y1N Danner\n\n\n63) Danner: Attack Y1S Danner\n\n64) dsheldon: Attack Y1N Danner\n\tDanner: Sorry for the delay, it's an interesting setting, and I sat for my final examinations this week.\n\n65) Danner: Attack Y1S Danner\n\tdsheldon: No problem. I was worried you'd time out on me. It'd be terrible if that happened now.\n\n66) dsheldon: Attack Y1N Danner\n\n67) Danner: Attack Y1S Danner\n\tdsheldon: We can do this forever, unless you want to try something different.\n\n68) dsheldon: Sacrifice B1 Dsheldon\nTrade G1 B1 Knox\n\tDanner: I don't have much choice\n\n69) Danner: Build G1 Albiorix\n\tdsheldon: Well, at least we know where our conflict lies. You should totally sac your R3 and take both my ships in your homeworld.\n\tDanner: It wouldn't help, because after a few moves there will be the same situation again. (You bring your other G1 ship, I remove my G1 from my HW, and there is it.)\n\n70) dsheldon: Build B2 Knox\n\tDanner: Oh no! You have only 12 hours left! :S\r\nI undo my last move. I dunno how the time bank will be changed exactly. Let's hope the best.\n\tDanner: Well, you didn't get any time back, but at least your clock is stopped. Now you have about 6 days to return. Tell me when I can redo my move.\n\tdsheldon: Eek! Has it been a week already? Thanks so much for stalling. I'm ready now.\n\tDanner: Np.\n\n71) Danner: Attack G1S Danner\n\n72) dsheldon: Discover G3 Knox B2 Sidebet\n\tdsheldon: guess it's only fair that I try something different to break this stalemate\n\n73) Danner: Move R3 Danner Knox\n\tDanner: Thx.\n\n74) dsheldon: Move B2 Knox Danner\n\n75) Danner: Attack B2S Danner\n\n76) dsheldon: Move B1 Knox Sidebet\n\n77) Danner: Build B3 Danner\n\n78) dsheldon: Sacrifice B2 Poseidon\nPass\nPass\n\n79) Danner: Discover Y2 Existenz R1 Deathstar\n\tDanner: Oh no! You have only 6 hours left!\n\tdsheldon: Hit me, I'm ready. (All I need to do is check again before midnight.)\n\n80) dsheldon: Sacrifice B1 Sidebet\nTrade G1 B1 Poseidon\n\n81) Danner: Move B3 Danner Knox\n\n82) dsheldon: Build G1 Poseidon\n\n83) Danner: Move B3 Knox Deathstar\n\n84) dsheldon: Move B1 Dsheldon Deathstar\n\tdsheldon: Uh oh... aptly named.\n\n85) Danner: Attack B1 Deathstar\n\tDanner: :)\n\n86) dsheldon: Move R1 Dsheldon Deathstar\n\n87) Danner: Attack R1S Deathstar\n\tdsheldon: Things do not look good. Being immobilized has been un-good.\n\tDanner: You're right.\n\n88) dsheldon: Sacrifice R2 Poseidon\nPass\nPass\n\tDanner: Oh no, the stash is empty! What will I build now?\n\tDanner: Sorry, I have changed my mind.\n\n89) Danner: Sacrifice G2 Danner\nBuild G2 Danner\nBuild R2 Knox\n\n90) dsheldon: Sacrifice B1 Poseidon\nPass\n\n91) Danner: Sacrifice G2 Danner\nBuild G2 Danner\nBuild B1 Deathstar\n\n92) dsheldon: Trade R2 B2 Poseidon\n\n93) Danner: Sacrifice G2 Danner\nBuild G2 Danner\nBuild R2 Knox\n\tDanner: Special offer: free ships! Available until stocks are exhausted! Only at DeathStar!\n\n94) dsheldon: Pass\n\n95) Danner: Move R1 Deathstar Existenz\n\tdsheldon: Without any yellow, this game becomes very difficult.\n\n96) dsheldon: Pass\n\tDanner: Indeed.\n\n97) Danner: Move R3 Knox Deathstar\n\n98) dsheldon: Pass\n\n\tDanner: Oh no, you have only 12 hours left...\n\tDanner: Oh, my god...\n\nHomeworlds Online (SDG# 12672)\nVariants: "Unrated, Hard time"\nStarted: 2009.2.4, Ended: 2009.2.9\nParticipants: Hix (S), MadWuher (N)\nWinner: Hix\n\n1) MadWuher: Homeworld B1 Y3 G3\n\n2) Hix: Homeworld B2 Y1 G3\n\tHix: homeworld b2 y1 g3\n\n\tMadWuher: Sorry about that. Forgot to setup my vacation message before I left.\n\nHomeworlds Online (SDG# 12587)\nStarted: 2009.2.6, Ended: 2009.7.9\nParticipants: MikeYarrum (S), pmagnus (N)\nWinner: pmagnus\n\n1) pmagnus: Homeworld G2 B3 Y3\n\n\nHomeworlds Online (SDG# 12676)\nStarted: 2009.2.6, Ended: 2009.7.9\nParticipants: mschlat (S), pmagnus (N)\nWinner: mschlat\n\n1) pmagnus: Homeworld G1 Y2 B3\n\n2) mschlat: Homeworld Y3 B1 G3\n\n3) pmagnus: Build B1 Pmagnus\n\n4) mschlat: Build G1 Mschlat\n\n5) pmagnus: Discover B1 Pmagnus Y3 Barnard\n\n6) mschlat: Trade G1 Y1 Mschlat\n\n7) pmagnus: Build B1 Pmagnus\n\n8) mschlat: Build G1 Mschlat\n\n9) pmagnus: Trade B1 G1 Barnard\n\n10) mschlat: Build G2 Mschlat\n\n11) pmagnus: Build G2 Barnard\n\n12) mschlat: Trade G2 Y2 Mschlat\n\n13) pmagnus: Build G2 Barnard\n\n\n14) mschlat: Sacrifice Y2 Mschlat\nDiscover G1 Mschlat R2 Temp\nMove G1 Temp Barnard\nCatastrophe Barnard Green\n\n15) pmagnus: Trade B1 G1 Pmagnus\n\n16) mschlat: Build Y1 Mschlat\n\n17) pmagnus: Build B1 Pmagnus\n\n18) mschlat: Trade Y1 R1 Mschlat\n\n19) pmagnus: Trade B1 Y1 Pmagnus\n\n20) mschlat: Build R1 Mschlat\n\n\nHomeworlds Online (SDG# 12588)\nStarted: 2009.2.8, Ended: 2009.2.28\nParticipants: agentofchaos (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld Y1 B3 G3\n\tts52: Have a good game. \n\tagentofchaos: Thanks, you too. \n\n3) ts52: Build G1 Ts52\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) ts52: Build G1 Ts52\n\n8) agentofchaos: Discover G1 Agentofchaos B2 Jophur\n\n9) ts52: Build G2 Ts52\n\n10) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild G2 Jophur\nBuild G3 Agentofchaos\n\n11) ts52: Discover G2 Ts52 G3 Kermit\n\n12) agentofchaos: Trade G2 Y2 Jophur\n\n13) ts52: Discover G1 Ts52 Y3 Bigbird\n\n14) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Jophur\nBuild Y1 Jophur\nBuild G3 Agentofchaos\n\n15) ts52: Sacrifice G2 Kermit\nBuild G2 Bigbird\nBuild G3 Ts52\n\n16) agentofchaos: Move Y1 Jophur Agentofchaos\n\n17) ts52: Discover Y1 Ts52 B3 Grover\n\n18) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y2 Jophur\nBuild Y3 Agentofchaos\nBuild G3 Agentofchaos\n\n19) ts52: Sacrifice G2 Bigbird\nBuild G2 Bigbird\nBuild Y3 Grover\n\n20) agentofchaos: Discover Y1 Agentofchaos R2 Orocore\n\n21) ts52: Trade Y1 R1 Grover\n\n22) agentofchaos: Trade G1 R1 Jophur\n\n23) ts52: Discover G1 Bigbird Y1 Zoe\n\n24) agentofchaos: Trade G1 R1 Agentofchaos\n\n25) ts52: Sacrifice G1 Zoe\nBuild Y1 Grover\n\n26) agentofchaos: Build R2 Jophur\n\n27) ts52: Move Y3 Grover Orocore\n\n28) agentofchaos: Discover Y1 Orocore G1 Abaddon\n\n29) ts52: Build G1 Bigbird\n\n30) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G1 Jophur\nBuild R2 Agentofchaos\nBuild G3 Agentofchaos\n\n31) ts52: Sacrifice G2 Bigbird\nBuild G2 Bigbird\nBuild R3 Grover\n\n32) agentofchaos: Sacrifice Y2 Jophur\nMove R1 Jophur Grover\nMove R2 Jophur Grover\nCatastrophe Grover R\n\n33) ts52: Sacrifice G2 Bigbird\nBuild G2 Bigbird\nBuild Y2 Grover\n\n34) agentofchaos: Trade R1 B1 Agentofchaos\n\n35) ts52: Trade Y1 R1 Grover\n\n36) agentofchaos: Trade G2 R2 Jophur\n\n37) ts52: Move G1 Bigbird Orocore\n\n38) agentofchaos: Move G2 Agentofchaos Jophur\n\n39) ts52: Build Y1 Orocore\n\n40) agentofchaos: Discover Y3 Agentofchaos G2 Kakradoom\n\n41) ts52: Sacrifice G2 Bigbird\nBuild Y3 Grover\nBuild G2 Orocore\n\n42) agentofchaos: Discover Y2 Jophur B3 Icefall\n\n43) ts52: Move G1 Orocore Grover\n\n44) agentofchaos: Build R1 Jophur\n\n45) ts52: Discover G3 Ts52 R3 Elmo\n\n46) agentofchaos: Move Y1 Abaddon Jophur\n\n47) ts52: Build G1 Ts52\n\n48) agentofchaos: Sacrifice G2 Jophur\nBuild B1 Agentofchaos\nBuild G2 Agentofchaos\n\n49) ts52: Trade Y2 B2 Grover\n\n50) agentofchaos: Move B1 Agentofchaos Kakradoom\n\n51) ts52: Move B2 Grover Orocore\n\n52) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y2 Icefall\nBuild B2 Kakradoom\nBuild G3 Agentofchaos\n\n53) ts52: Sacrifice Y3 Orocore\nMove G1 Grover Orocore\nMove G1 Orocore Agentofchaos\nMove G2 Orocore Agentofchaos\nCatastrophe Agentofchaos G\n\n54) agentofchaos: Build Y3 Jophur\n\n55) ts52: Build G1 Elmo\n\n56) agentofchaos: Trade Y3 G3 Jophur\n\n57) ts52: Sacrifice G1 Elmo\nBuild Y3 Orocore\n\n58) agentofchaos: Move G3 Jophur Agentofchaos\n\n59) ts52: Build G1 Elmo\n\n60) agentofchaos: Discover Y1 Jophur R3 Threndor\n\n61) ts52: Trade G3 R3 Ts52\n\n62) agentofchaos: Trade B1 R1 Kakradoom\n\n63) ts52: Sacrifice G1 Elmo\nBuild B1 Orocore\n\n64) agentofchaos: Move B1 Agentofchaos Kakradoom\n\n65) ts52: B G1 Ts52\n\n66) agentofchaos: Build G2 Jophur\n\n67) ts52: Move G1 Ts52 Grover\n\n68) agentofchaos: Discover B1 Kakradoom G3 Ghede\n\n69) ts52: Sacrifice G3 Elmo\nBuild R3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\n\n70) agentofchaos: Sacrifice Y3 Kakradoom\nMove Y2 Icefall Ts52\nMove Y2 Icefall Ts52\nMove Y1 Threndor Ts52\nCatastrophe Ts52 Y\n\n71) ts52: Move Y3 Grover Jophur\n\n72) agentofchaos: Build R3 Kakradoom\n\n73) ts52: Sacrifice G2 Grover\nBuild G2 Grover\nBuild B3 Orocore\n\n74) agentofchaos: Trade R2 Y2 Jophur\n\n75) ts52: Sacrifice R3 Ts52\nAttack Y2S Jophur\nAttack R1S Jophur\nAttack G2S Jophur\n\n76) agentofchaos: Build R2 Agentofchaos\n\n77) ts52: Sacrifice Y3 Jophur\nMove B1 Orocore Agentofchaos\nMove B2 Orocore Agentofchaos\nMove B3 Orocore Agentofchaos\nCatastrophe Agentofchaos B\n\n78) agentofchaos: Trade R1 Y1 Kakradoom\n\n79) ts52: Build Y2 Jophur\n\n80) agentofchaos: Build B1 Ghede\n\n81) ts52: Sacrifice Y3 Orocore\nMove Y1 Orocore Agentofchaos\nMove Y2 Jophur Agentofchaos\nM Y2 Jophur Agentofchaos\nC Agentofchaos Yellow\n\n\nHomeworlds Online (SDG# 12700)\nStarted: 2009.2.9, Ended: 2009.2.15\nParticipants: agentofchaos (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) agentofchaos: Homeworld B2 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\tagentofchaos: Hi, enjoy the game. \n\n4) agentofchaos: Build G1 Agentofchaos\n\tTwoShort: Howdy.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) TwoShort: Build Y1 Twoshort\n\n8) agentofchaos: Discover G1 Agentofchaos Y3 Synchron\n\n9) TwoShort: Build Y2 Twoshort\n\n10) agentofchaos: Build G1 Synchron\n\n11) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n12) agentofchaos: Build G2 Agentofchaos\n\n13) TwoShort: Build G2 Twoshort\n\n14) agentofchaos: Trade G2 Y2 Agentofchaos\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n16) agentofchaos: Move Y2 Agentofchaos Synchron\n\n17) TwoShort: Trade Y2 R2 Bluonia\n\n18) agentofchaos: Trade G1 R1 Agentofchaos\n\n19) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n20) agentofchaos: Move R1 Agentofchaos Synchron\n\n21) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Grogar Synchron\nMove Y1 Bluonia Synchron\nCatastrophe Synchron Yellow\n\n22) agentofchaos: Build G1 Agentofchaos\n\n23) TwoShort: Sacrifice Y3 Twoshort\nDiscover Y3 Bluonia R3 Doomtime\nMove Y3 Doomtime Agentofchaos\nPass\n\n24) agentofchaos: Trade G1 R1 Agentofchaos\n\n25) TwoShort: Sacrifice R2 Bluonia\nAttack G3S Agentofchaos\nAttack R1S Agentofchaos\n\n\nHomeworlds Online (SDG# 12625)\nStarted: 2009.2.9, Ended: 2009.6.8\nParticipants: agentofchaos (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B2 R3 G3\n\n2) agentofchaos: Homeworld Y1 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\tagentofchaos: Hi again. \n\tMadWuher: Hi there. Good luck.\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) MadWuher: Build Y1 Madwuher\n\n8) agentofchaos: Discover G1 Agentofchaos B3 Tchad\n\n9) MadWuher: Discover Y1 Madwuher B1 Edora\n\n10) agentofchaos: Build G1 Tchad\n\n11) MadWuher: Build G2 Madwuher\n\n12) agentofchaos: Trade G1 R1 Agentofchaos\n\n13) MadWuher: Trade G2 R2 Madwuher\n\n14) agentofchaos: Build G1 Agentofchaos\n\n15) MadWuher: Build G2 Madwuher\n\n16) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild G2 Tchad\nBuild G3 Agentofchaos\n\n17) MadWuher: Build G3 Madwuher\n\n18) agentofchaos: Trade G2 Y2 Tchad\n\n19) MadWuher: Move G3 Madwuher Edora\n\n20) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Tchad\nBuild R1 Agentofchaos\n\n21) MadWuher: Build Y2 Edora\n\n22) agentofchaos: Trade Y2 R2 Tchad\n\n23) MadWuher: Move R2 Madwuher Edora\n\n24) agentofchaos: Build Y2 Tchad\n\n25) MadWuher: Discover Y2 Edora B3 Bologna\n\n26) agentofchaos: Discover Y2 Tchad G2 Quasmer\n\n27) MadWuher: Sacrifice G3 Madwuher\nBuild Y3 Edora\nBuild Y3 Madwuher\nBuild Y3 Bologna\n\n28) agentofchaos: Build R1 Tchad\n\n29) MadWuher: Build G2 Edora\n\n30) agentofchaos: Move R1 Tchad Quasmer\n\n31) MadWuher: Build G3 Madwuher\n\n32) agentofchaos: Trade R1 B1 Agentofchaos\n\n33) MadWuher: Move Y3 Edora Tchad\n\n34) agentofchaos: Sacrifice Y2 Tchad\nMove G1 Tchad Edora\nMove G1 Tchad Edora\nCatastrophe Edora G\n\n35) MadWuher: Sacrifice G2 Madwuher\nBuild G1 Madwuher\nBuild Y2 Edora\n\n36) agentofchaos: Discover R1 Quasmer G3 Gloam\n\n37) MadWuher: Move G1 Madwuher Edora\n\n38) agentofchaos: Trade R2 G2 Tchad\n\n39) MadWuher: Build G1 Madwuher\n\n40) agentofchaos: Trade G2 B2 Tchad\n\n41) MadWuher: Sacrifice R2 Edora\nAttack B2 Tchad\nPass\n\n42) agentofchaos: Move B1 Agentofchaos Gloam\n\n43) MadWuher: Trade B2 R2 Tchad\n\n44) agentofchaos: Build B1 Gloam\n\n45) MadWuher: Sacrifice Y3 Madwuher\nDiscover G1 Edora Y3 Camelot\nMove Y2 Edora Gloam\nMove Y1 Edora Tchad\n\n46) agentofchaos: Build B1 Gloam\n\n47) MadWuher: Sacrifice G1 Camelot\nBuild Y3 Madwuher\n\n48) agentofchaos: Build R1 Agentofchaos\n\n49) MadWuher: Sacrifice G1 Madwuher\nBuild R2 Tchad\n\n50) agentofchaos: Discover Y2 Quasmer B3 Seti\n\n51) MadWuher: Sacrifice R2 Tchad\nAttack R1 Gloam\nAttack B1 Gloam\n\n52) agentofchaos: Build B2 Gloam\nCatastrophe Gloam B\n\n53) MadWuher: Build R2 Gloam\n\n54) agentofchaos: Move R1 Agentofchaos Seti\n\n55) MadWuher: Discover R2 Gloam B2 Edora\n\n56) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R2 Seti\n\n57) MadWuher: Build R3 Gloam\n\n58) agentofchaos: Build R3 Agentofchaos\n\n59) MadWuher: Build G1 Madwuher\n\n60) agentofchaos: Trade R1 B1 Agentofchaos\n\n61) MadWuher: Trade G1 B1 Madwuher\n\n62) agentofchaos: Build G1 Agentofchaos\n\n63) MadWuher: Build G1 Madwuher\n\n64) agentofchaos: Move B1 Agentofchaos Seti\n\n65) MadWuher: Discover Y3 Madwuher B1 Camelot\n\n66) agentofchaos: Discover R2 Seti G2 Tenebrus\n\n67) MadWuher: Move Y3 Camelot Seti\n\n68) agentofchaos: Move Y2 Seti Tenebrus\n\n69) MadWuher: Sacrifice R2 Edora\nAttack R1 Seti\nAttack B1 Seti\n\n70) agentofchaos: Build R1 Tenebrus\n\n71) MadWuher: Trade R1 G1 Seti\n\n72) agentofchaos: Move R1 Tenebrus Gloam\n\n73) MadWuher: Sacrifice R1 Gloam\nAttack R1 Gloam\n\n74) agentofchaos: Build R1 Tenebrus\n\n75) MadWuher: Discover R1 Gloam G2 Edora\n\n76) agentofchaos: Build R1 Agentofchaos\n\n77) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Seti\nBuild G3 Madwuher\nBuild R2 Edora\n\n78) agentofchaos: Discover R1 Tenebrus B1 Kobold\n\n79) MadWuher: Build B2 Seti\n\n80) agentofchaos: Move R2 Tenebrus Kobold\n\n81) MadWuher: Move Y3 Tchad Kobold\n\n82) agentofchaos: Sacrifice Y2 Tenebrus\nMove R2 Kobold Edora\nMove R1 Kobold Edora\nCatastrophe Edora R\n\n83) MadWuher: Sacrifice G2 Seti\nBuild G2 Seti\nBuild Y2 Madwuher\n\n84) agentofchaos: Move R3 Agentofchaos Tchad\n\n85) MadWuher: Sacrifice Y1 Tchad\nDiscover R2 Tchad Y1 Monopoly\n\n86) agentofchaos: Move G1 Agentofchaos Tchad\n\n87) MadWuher: Move G1 Seti Monopoly\n\n88) agentofchaos: Build G2 Agentofchaos\n\n89) MadWuher: Sacrifice Y3 Kobold\nMove G2 Seti Agentofchaos\nMove G1 Monopoly Seti\nMove G1 Seti Agentofchaos\nCatastrophe Agentofchaos G\n\n\tagentofchaos: Thanks for the game. \n\tMadWuher: Thank you.\n\nHomeworlds Online (SDG# 12825)\nStarted: 2009.2.11, Ended: 2009.2.14\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 12579)\nVariants: "Hard time"\nStarted: 2009.2.11, Ended: 2009.2.15\nParticipants: SuperDelete (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B3 G3\n\tJesse: Hello, and have a good game.\n\n\nHomeworlds Online (SDG# 12842)\nStarted: 2009.2.11, Ended: 2009.5.8\nParticipants: pedrop (S), Hix (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) Hix: Homeworld B3 G1 Y3\n\n2) agentofchaos: Homeworld R1 B2 G3\n\n3) pedrop: Homeworld Y1 B3 G3\n\tagentofchaos: Hi everyone, thanks for playing. Enjoy the game. \n\n4) Hix: Build Y1 Hix\n\tpedrop: Hi! Thanks to You too!:)\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) pedrop: Build G1 Pedrop\n\n7) Hix: Build Y1 Hix\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\tHix: Yes, Hello! And thanks for the game.\n\n9) pedrop: Discover G1 Pedrop Y2 Transka\n\n10) Hix: Discover Y1 Hix G2 Bubble\n\n11) agentofchaos: Build Y2 Agentofchaos\n\tpedrop: Are the rules of Good & Evil implemented on SDG?\n\n12) pedrop: Build G1 Pedrop\n\tagentofchaos: No, there are no good and evil designations in this version as far as I know. \n\n13) Hix: Build Y2 Bubble\n\n14) agentofchaos: Build G1 Agentofchaos\n\tpedrop: Sorry, for undo, but it was quite sensless move...:)\n\n15) pedrop: Build G2 Transka\n\n16) Hix: Trade Y1 B1 Hix\n\n17) agentofchaos: Discover Y2 Agentofchaos G3 Kakra\n\n18) pedrop: Sacrifice G3 Pedrop\nBuild G2 Pedrop\nBuild G2 Transka\nBuild G3 Pedrop\n\n19) Hix: Trade Y3 G3 Hix\n\n20) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y2 Kakra\nBuild G3 Agentofchaos\n\n21) pedrop: Trade G1 B1 Pedrop\n\n22) Hix: Build B1 Hix\n\n23) agentofchaos: Trade Y1 B1 Agentofchaos\n\n24) pedrop: Discover G2 Transka G1 Techlord\n\n25) Hix: Trade B1 R1 Hix\n\n26) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Agentofchaos\nBuild B1 Agentofchaos\nBuild G3 Agentofchaos\n\n27) pedrop: Sacrifice B1 Pedrop\nTrade G2 R2 Techlord\n\tpedrop: This is Sinister variant(I have to eliminate Hix to win) or last man standing?\n\tpedrop: Ok, I have figured it out myself: default is "last man standing" - good:)\n\n28) Hix: Move Y2 Bubble Hix\n\n29) agentofchaos: Sacrifice B1 Agentofchaos\nTrade Y2 R2 Kakra\n\n30) pedrop: Trade G2 Y2 Pedrop\n\n31) Hix: Build Y3 Hix\n\n32) agentofchaos: Build Y3 Kakra\n\n33) pedrop: Build G2 Pedrop\n\n34) Hix: Sacrifice Y3 Hix\nMove Y2 Hix Bubble\nMove Y2 Bubble Pedrop\nMove Y1 Bubble Pedrop\nCatastrophe Pedrop Y\n\n35) agentofchaos: Discover G1 Agentofchaos Y3 Kalki\n\n36) pedrop: Trade G2 Y2 Pedrop\n\n37) Hix: Trade G3 Y3 Hix\n\n38) agentofchaos: Build G2 Agentofchaos\n\n39) pedrop: Build G2 Pedrop\n\n40) agentofchaos: Sacrifice G2 Agentofchaos\nBuild G2 Kalki\nBuild R1 Kakra\n\n41) pedrop: Discover G2 Transka R3 Ziemia\n\n42) agentofchaos: Move Y3 Kakra Transka\n\n43) pedrop: Sacrifice G3 Pedrop\nBuild G2 Transka\nBuild G3 Ziemia\nBuild G3 Pedrop\n\tagentofchaos: I don't know where Hix disappeared to, I sent a PM a couple of days ago, but there was no response, so I've forced surrender so we can continue the game. So all Hix's ships are up for grabs!! \n\n44) agentofchaos: Sacrifice R2 Kakra\nAttack G2S Transka\nAttack G1S Transka\n\n45) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild Y1 Pedrop\nBuild R1 Techlord\n\tagentofchaos: Hi pedrop, nice to see you've come back, hope everything is OK :-)\n\n46) agentofchaos: Move Y3 Transka Hix\n\n47) pedrop: Trade Y1 B1 Pedrop\n\tagentofchaos: Come back soon! ;-)\n\n48) agentofchaos: Trade Y3 R3 Hix\n\tpedrop: Ok... ;)\n\n49) pedrop: Move B1 Pedrop Techlord\n\n50) agentofchaos: Sacrifice Y2 Kakra\nMove G1 Transka Pedrop\nMove G2 Transka Pedrop\nCatastrophe Pedrop G\n\n51) pedrop: Build B1 Techlord\n\n52) agentofchaos: Attack Y3N Hix\n\n53) pedrop: Sacrifice B1 Techlord\nTrade G2 Y2 Ziemia\n\n54) agentofchaos: Discover Y3 Hix R2 Haema\n\n55) pedrop: Build G1 Ziemia\n\n56) agentofchaos: Move Y3 Haema Pedrop\n\n57) pedrop: Sacrifice Y2 Ziemia\nMove G3 Ziemia Techlord\nMove G3 Techlord Pedrop\n\n58) agentofchaos: Sacrifice R3 Hix\nAttack G3S Pedrop\nAttack Y2S Pedrop\nPass\n\n\tpedrop: Thanks for the game, when Hix has broken my system, I was already "dead";) Cheers!\n\tagentofchaos: Thanks for staying in the game. I know what you mean, it's hard to make a comeback when you lose a system marker!\r\nCheers! :-)\n\nHomeworlds Online (SDG# 12795)\nVariants: "Unrated, Hard time"\nStarted: 2009.2.12, Ended: 2009.3.3\nParticipants: Mouce (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\tMadWuher: Enjoy the game\r\n\n\n2) Mouce: Homeworld Y1 B3 G3\n\tMouce: You too!\n\n3) MadWuher: Build G1 Madwuher\n\n4) Mouce: Build G1 Mouce\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) Mouce: Discover G1 Mouce B2 Rathome\n\n7) MadWuher: Build G1 Madwuher\n\n8) Mouce: Build G1 Mouce\n\n9) MadWuher: Build G2 Madwuher\n\n10) Mouce: Sacrifice G3 Mouce\nBuild G2 Rathome\nBuild G2 Mouce\nBuild G3 Mouce\n\n11) MadWuher: Discover G2 Madwuher G3 Edora\n\n12) Mouce: Trade G1 Y1 Rathome\n\n13) MadWuher: Build Y2 Madwuher\n\n14) Mouce: Discover G2 Mouce B2 Scamper\n\n15) MadWuher: Discover G1 Madwuher B3 Camelot\n\n16) Mouce: Sacrifice G3 Mouce\nBuild G1 Scamper\nBuild Y2 Rathome\nBuild G3 Mouce\n\n17) MadWuher: Sacrifice G2 Edora\nBuild G2 Madwuher\nBuild G3 Camelot\n\n18) Mouce: Discover Y2 Rathome B3 Scritch\n\n19) MadWuher: Move Y1 Madwuher Camelot\n\n20) Mouce: Sacrifice G3 Mouce\nBuild G3 Mouce\nBuild Y2 Rathome\nBuild Y3 Scritch\n\n21) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y3 Madwuher\nBuild Y3 Camelot\n\n22) Mouce: Sacrifice Y2 Rathome\nMove G2 Scamper Scritch\nMove G1 Scamper Scritch\n\n23) MadWuher: Discover G3 Camelot Y2 Edora\n\n24) Mouce: Trade Y3 R3 Scritch\n\n25) MadWuher: Sacrifice Y3 Madwuher\nMove G1 Camelot Edora\nMove G1 Edora Mouce\nMove G3 Edora Mouce\nCatastrophe Mouce G\n\tMadWuher: Thanks for the game. Just a quick question, why trade away your y3 for an r3?\n\tMouce: Heh, I didn't see that at all! I just made a stupid move, not noticing your threat... I traded the y3 for an r3, as you had no safe space to construct another y3, and I could have safely (perhaps) gained the y3 back in the next turn. A good move if you had no threat, obviously not a nice move given the position. I felt that I was playing nicely up until that point, too. Oh well! Live and learn. Thanks!\n\n\nHomeworlds Online (SDG# 12838)\nStarted: 2009.2.12, Ended: 2009.2.20\nParticipants: ts52 (S), Mouce (N)\nWinner: ts52\n\n1) Mouce: Homeworld Y1 B2 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Mouce: Build G1 Mouce\n\n4) ts52: Build G1 Ts52\n\tMouce: Enjoy the game!\n\tts52: Thanks, you too!\n\n5) Mouce: Discover G1 Mouce B3 Rathome\n\n6) ts52: Discover G1 Ts52 B1 Gonzo\n\n7) Mouce: Build G1 Mouce\n\n8) ts52: Build G2 Ts52\n\n9) Mouce: Build G2 Rathome\n\n10) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Gonzo\n\n11) Mouce: Trade G1 Y1 Rathome\n\n12) ts52: Trade G3 Y3 Gonzo\n\n13) Mouce: Sacrifice G3 Mouce\nBuild G1 Rathome\nBuild Y1 Rathome\nBuild G3 Mouce\n\n14) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gonzo\n\n15) Mouce: Move Y1 Rathome Gonzo\n\n16) ts52: Trade Y3 R3 Gonzo\n\n17) Mouce: Sacrifice G3 Mouce\nBuild Y2 Gonzo\nBuild Y2 Rathome\nBuild G3 Mouce\n\n18) ts52: Discover G3 Ts52 R1 Elmo\n\n19) Mouce: Sacrifice Y2 Gonzo\nMove G1 Rathome Gonzo\nMove G1 Gonzo Ts52\n\n20) ts52: Trade G3 R3 Ts52\n\n21) Mouce: Sacrifice G3 Mouce\nBuild Y2 Gonzo\nBuild Y3 Gonzo\nBuild G3 Mouce\nCatastrophe Gonzo Yellow\n\n22) ts52: Build G3 Elmo\n\n23) Mouce: Sacrifice Y2 Rathome\nMove G1 Ts52 Elmo\nMove G2 Rathome Elmo\nCatastrophe Elmo Green\n\tts52: Wow, I totally missed the part where you moved a ship into Gonzo. Not that I could do anything differently... nice play.\n\n24) ts52: Trade G2 Y2 Gonzo\n\n25) Mouce: Trade G1 R1 Mouce\n\n26) ts52: Move R3 Gonzo Rathome\n\tts52: Man, where is my head today.\n\tMouce: You remain *very* ahead in development nevertheless... I am enjoying this game quite a bit, as I have only kept you from crushing me via sacrifices! I enjoy playing against stronger players.\n\n27) Mouce: Discover Y1 Rathome G1 Scurry\n\n28) ts52: Build R1 Ts52\n\n29) Mouce: Build Y1 Scurry\n\n30) ts52: Build Y2 Gonzo\n\n31) Mouce: Build G1 Mouce\n\n32) ts52: Build G2 Gonzo\n\n33) Mouce: Discover Y1 Scurry B3 Hole\n\n34) ts52: Move Y2 Gonzo Rathome\n\n35) Mouce: Discover Y1 Hole G2 Nest\n\n36) ts52: Build G3 Ts52\n\n37) Mouce: Sacrifice G3 Mouce\nBuild G3 Mouce\nBuild Y2 Nest\nBuild Y3 Scurry\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild Y3 Gonzo\n\n39) Mouce: Sacrifice G3 Mouce\nBuild G3 Mouce\nBuild R1 Mouce\nBuild R2 Mouce\n\n40) ts52: Move G2 Gonzo Rathome\n\n41) Mouce: Sacrifice Y3 Scurry\nMove Y1 Nest Scurry\nMove Y1 Scurry Ts52\nMove Y1 Scurry Ts52\n\n42) ts52: Sacrifice R3 Ts52\nAttack Y1N Ts52\nAttack Y1N Ts52\nPass\n\n43) Mouce: Discover Y2 Nest B1 Mercury\n\n44) ts52: Discover Y1 Ts52 B1 Grover\n\n45) Mouce: Discover R2 Mouce Y3 Sniffle\n\n46) ts52: Build R2 Rathome\n\n47) Mouce: Trade Y2 G2 Mercury\n\n48) ts52: Sacrifice G3 Ts52\nBuild G1 Rathome\nBuild G3 Ts52\nBuild Y2 Rathome\n\n49) Mouce: Move R1 Mouce Rathome\n\n50) ts52: M R3 Rathome Gonzo\n\n51) Mouce: Sacrifice G3 Mouce\nBuild G3 Mouce\nBuild R2 Sniffle\nBuild R3 Mouce\n\n52) ts52: Build R3 Gonzo\n\n53) Mouce: Move R3 Mouce Rathome\n\n54) ts52: Sacrifice Y3 Gonzo\nMove G1 Rathome Mouce\nMove G2 Rathome Mouce\nMove R2 Rathome Mouce\nCatastrophe Mouce G\n\n55) Mouce: Sacrifice R2 Sniffle\nAttack Y2 Rathome\nAttack Y2 Rathome\n\n56) ts52: Attack R1N Mouce\n\tMouce: sorry,typo\n\n\tMouce: Kudos for the win! You have taught me quite a bit... I enjoyed our game thoroughly!\n\tts52: Thanks! And thanks for the game. I'd be happy to play you again any time.\n\nHomeworlds Online (SDG# 12840)\nStarted: 2009.2.12, Ended: 2009.2.26\nParticipants: jgabin1 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) jgabin1: Homeworld G2 B1 Y3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\n4) jgabin1: Build Y1 Jgabin1\n\n5) TwoShort: Build G1 Twoshort\n\tjgabin1: Hello\n\tjgabin1: This is my first time on this site\n\n6) jgabin1: Discover Y1 Jgabin1 G3 Bob\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) jgabin1: Build Y1 Bob\n\n9) TwoShort: Build Y2 Twoshort\n\n10) jgabin1: Build Y2 Bob\n\n11) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n12) jgabin1: Build Y2 Jgabin1\n\n13) TwoShort: Build Y3 Twoshort\n\tTwoShort: Since you're new, a couple words of strategy advice: First, I'd generally recommend starting with a green ship, it's easiest and usually best. Second, you don't usually want to build up to three of the same color in one system. I could move my y1 from Bluonia into bob right now and cause a catastophe. I won't this turn because I'd rather take the y3 while I can get it. Also note that you can't take the other y3 at your homeworld because I'll sacrifice my y2 to move the y1 twice, and win with a catastrophe in your home.\n\n14) jgabin1: Trade Y3 G3 Jgabin1\n\tjgabin1: Thanks man, im still trying to get the basics, i see what your saying. hopefully next time ill be a big challenge for you!! I really appreciate the advice.\n\n15) TwoShort: Move Y1 Bluonia Bob\nCatastrophe Bob Yellow\n\n\nHomeworlds Online (SDG# 12841)\nStarted: 2009.2.12, Ended: 2009.3.7\nParticipants: MadWuher (S), jgabin1 (N)\nWinner: MadWuher\n\n1) jgabin1: Homeworld G2 B1 Y3\n\n2) MadWuher: Homeworld R2 B3 G3\n\tjgabin1: Hay this is my first time on the site\r\n\n\n3) jgabin1: Build Y1 Jgabin1 (n)\n\n4) MadWuher: Build G1 Madwuher\n\n5) jgabin1: Discover Y1 Jgabin1 G3 Bob\n\tMadWuher: Welcome. Hope you enjoy the game. Feel free to ask any questions you may have.\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\tjgabin1: Thanks Man, I think i'v got the hang of the basics\n\n7) jgabin1: Trade Y3 G3 Jgabin1\n\n8) MadWuher: Build G1 Madwuher\n\n\nHomeworlds Online (SDG# 12855)\nStarted: 2009.2.12, Ended: 2009.2.18\nParticipants: pedrop (S), MikeYarrum (N)\nWinner: pedrop\n\n\nHomeworlds Online (SDG# 12871)\nStarted: 2009.2.12, Ended: 2009.2.16\nParticipants: CanisFirebrand (S), xmiyux (N)\nWinner: xmiyux\n\n1) xmiyux: Homeworld B3 G1 Y3\n\n2) CanisFirebrand: Homeworld B3 G1 Y3\n\n3) xmiyux: Trade Y3 B3 Xmiyux\n\n4) CanisFirebrand: Build Y1 Canisfirebrand\n\txmiyux: At some point we will in fact puzzle out this game. :lol:\n\tCanisFirebrand: I'm learning as I go.. Never played before, and trying to make sense of the directions.\n\n5) xmiyux: Build B1 Xmiyux\n\n6) CanisFirebrand: Trade Y1 R1 Canisfirebrand\n\n7) xmiyux: Trade B1 G1 Xmiyux\n\tCanisFirebrand: I could not figure out the discover command or what that middle portion of the map is for.\n\n8) CanisFirebrand: Discover R1 Canisfirebrand R2 Canis2\n\txmiyux: Perhaps this evening we can chat in the chatbox or on Live and i can explain it to you?\n\tCanisFirebrand: That would be cool.. It seems like a complex and fun game, but I can't make heads or tails with the wiki page you linked with the rules.\n\n9) xmiyux: Build G2 Xmiyux\n\n10) CanisFirebrand: Build Y1 Canisfirebrand\n\n11) xmiyux: Trade G1 Y1 Xmiyux\n\n12) CanisFirebrand: Build Y1 Canisfirebrand\n\n13) xmiyux: Build Y2 Xmiyux\n\n14) CanisFirebrand: Trade Y1 G1 Canisfirebrand\n\n15) xmiyux: Discover G2 Xmiyux B2 Miranda\n\n16) CanisFirebrand: Build G2 Canisfirebrand\n\n17) xmiyux: Move Y1 Xmiyux Miranda\n\n18) CanisFirebrand: Move G2 Canisfirebrand Canis2\n\n19) xmiyux: Build Y1 Miranda\n\n20) CanisFirebrand: Build R1 Canis2\n\n21) xmiyux: Move Y1 Miranda Canisfirebrand\n\n22) CanisFirebrand: Move Y1 Canisfirebrand Canis2\n\n23) xmiyux: Build Y2 Canisfirebrand\n\n24) CanisFirebrand: Move R1 Canis2 Xmiyux\n\n25) xmiyux: Trade Y2 R2 Xmiyux\n\n26) CanisFirebrand: Build R1 Xmiyux\n\n27) xmiyux: Sacrifice Y2 Canisfirebrand\nMove R2 Xmiyux Canis2\nMove G2 Miranda Canisfirebrand\n\n28) CanisFirebrand: Build R2 Xmiyux\n\n29) xmiyux: Build G2 Canisfirebrand\nCatastrophe Canisfirebrand G\n\n30) CanisFirebrand: Attack R2 Canis2\n\n31) xmiyux: Trade Y1 G1 Canisfirebrand\n\n32) CanisFirebrand: Trade R1 Y1 Xmiyux\n\n33) xmiyux: Build G1 Canisfirebrand\n\n34) CanisFirebrand: Build G2 Canis2\n\n35) xmiyux: Trade G1 R1 Canisfirebrand\n\n36) CanisFirebrand: Build R3 Xmiyux\n\n37) xmiyux: Sacrifice R1 Canisfirebrand\nAttack R3 Xmiyux\n\n38) CanisFirebrand: Build R1 Xmiyux\nCatastrophe Xmiyux R\n\n39) xmiyux: Build G1 Canisfirebrand\n\n40) CanisFirebrand: Build G2 Canis2\n\n41) xmiyux: Trade G1 B1 Canisfirebrand\n\n42) CanisFirebrand: Sacrifice R1 Canis2\nAttack G1 Canisfirebrand\n\n43) xmiyux: Trade B3 R3 Xmiyux\n\n44) CanisFirebrand: Trade Y1 R1 Xmiyux\n\n45) xmiyux: Attack R1 Xmiyux\n\n46) CanisFirebrand: Trade G1 R1 Canisfirebrand\n\n47) xmiyux: Sacrifice R1 Xmiyux\nAttack R1 Canisfirebrand\n\n48) CanisFirebrand: Sacrifice R2 Canis2\nAttack R1 Canisfirebrand\nAttack B1 Canisfirebrand\n\n49) xmiyux: Build R1 Xmiyux\n\n50) CanisFirebrand: Move G2 Canis2 Canisfirebrand\n\n51) xmiyux: Trade R1 G1 Xmiyux\n\n52) CanisFirebrand: Move R1 Canisfirebrand Miranda\n\n53) xmiyux: Move Y1 Miranda Xmiyux\n\n54) CanisFirebrand: Trade Y3 R3 Canisfirebrand\n\n55) xmiyux: Build R1 Xmiyux\n\n56) CanisFirebrand: Build Y1 Canis2\n\n57) xmiyux: Build Y2 Xmiyux\n\n58) CanisFirebrand: Sacrifice Y1 Canis2\nMove R3 Canisfirebrand Canis2\n\n59) xmiyux: Trade Y1 B1 Xmiyux\n\n60) CanisFirebrand: Sacrifice G2 Canis2\nBuild Y1 Canis2\nBuild G1 Canis2\n\n61) xmiyux: Build Y1 Xmiyux\n\n62) CanisFirebrand: Move Y1 Canis2 Canisfirebrand\n\n63) xmiyux: Discover Y2 Xmiyux R2 Serenityvalley\n\n64) CanisFirebrand: Build G2 Canisfirebrand\n\n65) xmiyux: Move Y2 Serenityvalley Canisfirebrand\n\n66) CanisFirebrand: Sacrifice R1 Miranda\nAttack Y2 Canisfirebrand\n\n67) xmiyux: Build Y2 Xmiyux\n\n68) CanisFirebrand: Sacrifice G2 Canisfirebrand\nBuild Y2 Canis2\nBuild Y3 Canis2\n\n69) xmiyux: Move Y1 Xmiyux Canis2\nCatastrophe Canis2 Yellow\n\n70) CanisFirebrand: Move Y2 Canisfirebrand Canis2\n\n71) xmiyux: Build Y1 Xmiyux\n\n72) CanisFirebrand: Sacrifice Y2 Canis2\nMove G1 Canis2 Xmiyux\nMove G2 Canis2 Xmiyux\nCatastrophe Xmiyux G\n\n73) xmiyux: Discover Y2 Xmiyux G2 Miranda\n\n74) CanisFirebrand: Build G1 Canisfirebrand\n\n75) xmiyux: Move Y2 Miranda Canisfirebrand\n\n76) CanisFirebrand: Move G2 Canisfirebrand Canis2\n\n77) xmiyux: Sacrifice R3 Xmiyux\nAttack Y1 Canisfirebrand\nAttack G1 Canisfirebrand\nAttack B1 Canisfirebrand\n\n\nHomeworlds Online (SDG# 12861)\nStarted: 2009.2.13, Ended: 2009.2.21\nParticipants: agentofchaos (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\tTwoShort: Two games at once?\n\n3) TwoShort: Build G1 Twoshort\n\tagentofchaos: Why not? Might be interesting to compare how they go :)\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) TwoShort: Build Y1 Twoshort\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) TwoShort: Build Y2 Twoshort\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) TwoShort: Discover Y1 Twoshort G3 Grognard\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) TwoShort: Build Y3 Grognard\n\n14) agentofchaos: Build G1 Agentofchaos\n\n15) TwoShort: Discover Y2 Twoshort B3 Bluestar\n\n16) agentofchaos: Discover Y2 Agentofchaos B1 Agrajag\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Bluestar\nPass\n\n18) agentofchaos: Discover Y1 Agentofchaos B1 Kakrafoon\n\n19) TwoShort: Trade Y1 G1 Twoshort\n\n20) agentofchaos: Move G1 Agentofchaos Kakrafoon\n\n21) TwoShort: Trade Y2 R2 Bluestar\n\n22) agentofchaos: Build G2 Kakrafoon\n\n23) TwoShort: Move Y3 Bluestar Kakrafoon\n\n24) agentofchaos: Move G2 Kakrafoon Grognard\n\n25) TwoShort: Sacrifice R2 Bluestar\nAttack G2 Grognard\nAttack G1 Kakrafoon\n\n26) agentofchaos: Move G1 Agentofchaos Agrajag\n\n27) TwoShort: Sacrifice G2 Grognard\nBuild G2 Kakrafoon\nBuild G2 Twoshort\n\n28) agentofchaos: Move Y2 Agrajag Grognard\n\n29) TwoShort: Move Y3 Grognard Agrajag\n\n30) agentofchaos: Trade G1 Y1 Agrajag\n\n31) TwoShort: Trade G2 R2 Kakrafoon\n\n32) agentofchaos: Build Y2 Grognard\n\n33) TwoShort: Attack Y1 Kakrafoon\n\n34) agentofchaos: Trade Y2 R2 Agentofchaos\n\n35) TwoShort: Build R1 Kakrafoon\n\n36) agentofchaos: Trade R2 Y2 Agentofchaos\n\n37) TwoShort: Move Y1 Kakrafoon Grognard\nCatastrophe Grognard Yellow\n\n38) agentofchaos: Trade Y1 R1 Agrajag\n\n39) TwoShort: Trade Y3 B3 Agrajag\n\n40) agentofchaos: Build G1 Agentofchaos\n\n41) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Kakrafoon Agentofchaos\nMove B3 Agrajag Agentofchaos\nMove G1 Kakrafoon Agentofchaos\n\n42) agentofchaos: Trade G1 Y1 Agentofchaos\n\n43) TwoShort: Sacrifice R2 Kakrafoon\nAttack G3 Agentofchaos\nAttack Y2 Agentofchaos\n\tagentofchaos: Very clever attack. \n\n\tTwoShort: I like to say that you win by getting more pieces than the other guy (which you'll notice I did), but the actual end comes either by catastrophe ( generally in the star colors), or by throwing multiple 3s into the homeworld when they don't have an r2/3 and you do. I generally avoid taking an r1 if I can; when you need a red, they're not enough.\r\nIt's generally a good idea to have an r2 (or 3), because otherwise I can throw in more \n\tagentofchaos: Thanks for the tips and the game, I learned a few things (hopefully) :-)\n\nHomeworlds Online (SDG# 12872)\nStarted: 2009.2.13, Ended: 2009.2.21\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) zoltar: Build G1 Zoltar\n\n8) TwoShort: Build G1 Twoshort\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) TwoShort: Build G1 Twoshort\n\n11) zoltar: Build B1 Zoltar\n\n12) TwoShort: Trade G1 R1 Twoshort\n\n13) zoltar: Discover B1 Zoltar G3 Greenbelt\n\n14) TwoShort: Build R2 Twoshort\n\n\tzoltar: Well, you did it again -- I'm already lost this early in the opening -- I'm locked out of the reds and I don't see anything I can possibly do.\n\tTwoShort: Hypothetically, if I saw something I thought you could try, I might decide I was better off not saying anything about it, particularly since I might be missing some obvious reason it couldn't work in any case. Potentially.\n\tzoltar: Well, I set up the position and studied it, and I can only conclude my position is hopeless. I'd rather resign and start over where I have a chance! \n\tTwoShort: Fair enough. I also set up the position and tried to figure out what you should do. The only option I was hinting at as build at greenbelt, sac the y1 to move to a b2, sac the green to build all the remaining blue, sac a b2 to flip the 3 pointers to red and green or yellow. Everything else I saw for you was doom, I probably could have figured out how to stop that, I just hadn't yet...\r\n Anyway, that's the first time I've ever tried a red lock-out; I sort of backed into when I didn't see anything else good. \n\nHomeworlds Online (SDG# 12860)\nVariants: "Unrated, Hard time"\nStarted: 2009.2.13, Ended: 2009.2.13\nParticipants: suniltrip (S), MadWuher (N)\nWinner: MadWuher\n\n\nHomeworlds Online (SDG# 12862)\nStarted: 2009.2.13, Ended: 2009.5.18\nParticipants: MadWuher (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R2 G3\n\n2) MadWuher: Homeworld R1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) MadWuher: Build G1 Madwuher\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) zoltar: Build G1 Zoltar\n\n8) MadWuher: Build G1 Madwuher\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) MadWuher: Trade G1 R1 Madwuher\n\n11) zoltar: Build R2 Zoltar\n\n12) MadWuher: Build R2 Madwuher\n\n13) zoltar: Discover R2 Zoltar G1 Greenbelt\n\n14) MadWuher: Discover R2 Madwuher Y3 Edora\n\n15) zoltar: Build R3 Greenbelt\n\n16) MadWuher: Build R3 Madwuher\n\n17) zoltar: Build R3 Zoltar\n\n18) MadWuher: Trade R1 B1 Madwuher\n\n19) zoltar: Trade R1 B1 Zoltar\n\n20) MadWuher: Build G1 Madwuher\n\n21) zoltar: Move B1 Zoltar Greenbelt\n\n22) MadWuher: Move R3 Madwuher Edora\n\n23) zoltar: Trade R3 Y3 Greenbelt\n\n24) MadWuher: Move B1 Madwuher Edora\n\n25) zoltar: Build Y1 Greenbelt\n\n26) MadWuher: Build Y2 Madwuher\n\n27) zoltar: Build Y2 Zoltar\n\n28) MadWuher: Discover Y2 Madwuher G3 Bologna\n\n29) zoltar: Discover Y1 Zoltar G1 Greenarrow\n\n30) MadWuher: Discover G1 Madwuher Y3 Camelot\n\n31) zoltar: Move R3 Zoltar Greenarrow\n\n32) MadWuher: Build Y2 Madwuher\n\n33) zoltar: Move R3 Greenarrow Camelot\n\n34) MadWuher: Sacrifice G1 Camelot\nBuild G1 Madwuher\n\n35) zoltar: Build G2 Zoltar\n\n36) MadWuher: Move G1 Madwuher Edora\n\n37) zoltar: Discover G2 Zoltar R1 Reddwarf\n\n38) MadWuher: Build G2 Madwuher\n\n39) zoltar: Build G2 Zoltar\n\n40) MadWuher: Move R2 Edora Greenarrow\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R1 Camelot\nBuild R3 Greenbelt\n\n42) MadWuher: Attack Y1 Greenarrow\n\n43) zoltar: Move R3 Camelot Greenarrow\n\n44) MadWuher: Move R2 Greenarrow Camelot\n\n45) zoltar: Sacrifice R1 Camelot\nAttack Y1 Greenarrow\n\n46) MadWuher: Sacrifice G2 Madwuher\nBuild R1 Camelot\nBuild G2 Edora\n\n47) zoltar: Move R3 Greenbelt Camelot\n\n48) MadWuher: Sacrifice Y2 Bologna\nDiscover R2 Camelot Y2 Bologna\nMove G1 Edora Bologna\n\n49) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Reddwarf\nBuild B1 Greenbelt\n\n50) MadWuher: Build B2 Edora\n\n51) zoltar: Attack R1 Camelot\n\n52) MadWuher: Move B1 Edora Bologna\n\n53) zoltar: Move B1 Greenbelt Camelot\n\n54) MadWuher: Sacrifice G1 Bologna\nBuild G1 Madwuher\n\n55) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Camelot\n\n56) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild B3 Bologna\nPass\n\n57) zoltar: Sacrifice Y2 Zoltar\nMove B1 Camelot Bologna\nMove B1 Greenbelt Bologna\nCatastrophe Bologna B\n\n58) MadWuher: Build B1 Edora\n\n59) zoltar: Sacrifice G3 Reddwarf\nBuild G3 Reddwarf\nBuild Y2 Greenarrow\nBuild B1 Camelot\n\n60) MadWuher: Move B1 Edora Bologna\n\n61) zoltar: Sacrifice Y2 Greenarrow\nMove G3 Reddwarf Bologna\nDiscover G2 Reddwarf B3 Bluemoon\n\n62) MadWuher: Move R2 Bologna Bluemoon\n\n63) zoltar: Sacrifice G3 Bologna\nBuild G3 Bluemoon\nBuild Y2 Greenarrow\nBuild R1 Greenbelt\n\n64) MadWuher: Attack G2 Bluemoon\n\n65) zoltar: Sacrifice R2 Greenbelt\nAttack R2 Bluemoon\nAttack G2 Bluemoon\n\n66) MadWuher: Move G1 Madwuher Edora\n\n67) zoltar: Sacrifice G3 Bluemoon\nBuild G3 Bluemoon\nBuild R2 Greenbelt\nBuild B1 Greenbelt\n\n68) MadWuher: Sacrifice Y1 Madwuher\nDiscover G1 Edora Y1 Dung\n\n69) zoltar: Move Y3 Greenbelt Zoltar\n\n70) MadWuher: Sacrifice G1 Dung\nBuild Y1 Madwuher\n\tzoltar: Retreat!!!\n\n71) zoltar: Move B1 Greenbelt Bluemoon\n\n72) MadWuher: Build G1 Edora\n\n73) zoltar: Move B3 Camelot Madwuher\n\n74) MadWuher: Attack B3 Madwuher\n\n75) zoltar: Sacrifice Y2 Greenarrow\nMove B1 Bluemoon Madwuher\nMove B1 Camelot Madwuher\nCatastrophe Madwuher Blue\n\tzoltar: The Death Star is now fully operational. Prepare to fire on the rebel base. Stand by...\n\tMadWuher: Commence primary ignition.......\n\n76) MadWuher: Build Y2 Madwuher\n\n77) zoltar: Sacrifice Y3 Zoltar\nMove R1 Camelot Madwuher\nMove R2 Bluemoon Madwuher\nMove R3 Camelot Madwuher\nCatastrophe Madwuher Red\n\n\tMadWuher: Thanx for the game\n\tzoltar: gg -- want to play again?\n\tMadWuher: I think I'll take some time off for a bit. Got bogged down at work lately. Maybe in a few weeks? (Once everything is settled that is)\r\n\n\nHomeworlds Online (SDG# 12874)\nStarted: 2009.2.13, Ended: 2009.6.11\nParticipants: sordros (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R2 B3 G3\n\n2) sordros: Homeworld B1 Y3 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) sordros: Build G1 Sordros\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) sordros:\nTrade G1 B1 Sordros\n\tsordros: t g1 b1 sordros\n\tsordros: oops :-)\n\n7) MadWuher: Build Y1 Madwuher\n\n8) sordros: Build B1 Sordros\n\n9) MadWuher: Discover Y1 Madwuher Y1 Edora\n\n10) sordros: Discover B1 Sordros B2 Blua\n\n11) MadWuher: Build Y2 Madwuher\n\n12) sordros: Build G1 Sordros\n\n13) MadWuher: Trade Y2 B2 Madwuher\n\n14) sordros: Trade G3 Y3 Sordros\n\n15) MadWuher: Build Y2 Madwuher\n\n16) sordros: Build G1 Sordros\n\n17) MadWuher: Build Y2 Madwuher\n\n18) sordros: Discover B1 Sordros G2 Verda\n\n19) MadWuher: Discover B2 Madwuher G1 Bologna\n\n20) sordros: Build B2 Verda\n\n21) MadWuher: Build B3 Bologna\n\n22) sordros: Trade B2 Y2 Verda\n\n23) MadWuher: Trade Y2 G2 Madwuher\n\n24) sordros: Build Y2 Verda\n\n25) MadWuher: Trade B2 R2 Bologna\n\n26) sordros: Trade Y3 R3 Sordros\n\n27) MadWuher: Move Y1 Madwuher Bologna\n\n\nHomeworlds Online (SDG# 12873)\nVariants: "Unrated, Hard time"\nStarted: 2009.2.13, Ended: 2009.4.17\nParticipants: pedrop (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R2 B3 G3\n\n2) pedrop: Homeworld Y1 B2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) pedrop: Build G1 Pedrop\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) pedrop: Trade G1 Y1 Pedrop\n\n7) MadWuher: Build Y2 Madwuher\n\tpedrop: Wow... so many spectators... I haven't known that so many people are just watching;) Or... You - MadWuher - are very famous Homeworlds gamer? :) Hello all and good luck MadWuher:)\n\n8) pedrop: Build Y2 Pedrop\n\n9) MadWuher: Discover Y1 Madwuher G1 Edora\n\n10) pedrop: Discover Y1 Pedrop G3 Ziemia\n\n11) MadWuher: Build G1 Madwuher\n\tMadWuher: Good luck to you too. (never seen that many before.... hmmm)\n\n12) pedrop: Build G1 Pedrop\n\n13) MadWuher: Trade G1 R1 Madwuher\n\n14) pedrop: Discover G1 Pedrop B3 Dupa\n\n15) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Edora\nBuild Y3 Edora\nBuild Y3 Madwuher\n\tpedrop: I want to make big games for Blam! and Robot Bettle Pigs - for 4 or more players, are You interested? (I will challenge players who will agree)\n\n16) pedrop: Move Y1 Ziemia Edora\nCatastrophe Edora Y\n\n17) MadWuher: Trade Y3 G3 Madwuher\n\n18) pedrop: Build G1 Dupa\n\n19) MadWuher: Build R1 Madwuher\n\n20) pedrop: Trade G1 R1 Dupa\n\n21) MadWuher: Trade R1 G1 Madwuher\n\n22) pedrop: Build G1 Dupa\n\n23) MadWuher: Discover G1 Madwuher B1 Edora\n\n24) pedrop: Build R1 Dupa\n\n25) MadWuher: Build G2 Edora\n\n26) pedrop: Build G2 Pedrop\n\n27) MadWuher: Trade G1 Y1 Edora\n\n28) pedrop: Move Y2 Pedrop Dupa\n\n29) MadWuher: Build G1 Edora\n\n30) pedrop: Discover G1 Dupa B2 Ziemia\n\n31) MadWuher: Discover G2 Edora G3 Bologna\n\n32) pedrop: Sacrifice G3 Pedrop\nBuild G2 Ziemia\nBuild G3 Pedrop\nBuild Y1 Dupa\n\n33) MadWuher: Sacrifice G2 Bologna\nBuild G2 Madwuher\nBuild G3 Edora\n\n34) pedrop: Discover Y1 Dupa B1 Niebo\n\n35) MadWuher: Move R1 Madwuher Edora\n\n36) pedrop: Move R1 Dupa Niebo\n\n37) MadWuher: Discover G1 Edora B3 Bologna\n\n\tpedrop: Sorry, had no time nowadays:/\n\tMadWuher: Totally understand. Not a problem. Hope to play against you again when you have more time.\n\nHomeworlds Online (SDG# 12882)\nVariants: "Hard time"\nStarted: 2009.2.14, Ended: 2009.3.29\nParticipants: pedrop (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B3 G3\n\n2) pedrop: Homeworld Y1 B2 G3\n\tagentofchaos: Hi again :)\n\n3) agentofchaos: Build G1 Agentofchaos\n\tpedrop: Hi:) Seeing You played so many games, I have decided to chellange You in hope for quite fast and dynamic game:) Good luck.\n\n4) pedrop: Build G1 Pedrop\n\tagentofchaos: I usually play pretty quickly, and try to logon everyday. I've only played this game a few times, so I'm no expert, but I think it's fun :-)\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\tpedrop: heh:) Those Homeworld games i'm playing now... are my first ever, so You may be an expert for me;) But I will be concetrated, so the game shouldn't be bad:) I also think this game is fun and maybe the most interesting on SDG - for me.\n\n6) pedrop: Trade G1 Y1 Pedrop\n\n7) agentofchaos: Build Y2 Agentofchaos\n\n8) pedrop: Build Y2 Pedrop\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) pedrop: Discover Y2 Pedrop B3 Blues\n\n11) agentofchaos: Discover Y2 Agentofchaos G2 Kantele\n\n12) pedrop: Move Y1 Pedrop Blues\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) pedrop: Trade Y1 B1 Blues\n\n15) agentofchaos: Discover G1 Agentofchaos Y2 Squid\n\n16) pedrop: Move B1 Blues Pedrop\n\n17) agentofchaos: Build G1 Squid\n\n18) pedrop: Build G2 Pedrop\n\n19) agentofchaos: Discover G1 Squid Y3 Kalki\n\n20) pedrop: Move G2 Pedrop Blues\n\n21) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Kalki\nBuild G3 Agentofchaos\nBuild Y1 Kantele\n\n22) pedrop: Sacrifice G2 Blues\nBuild Y3 Blues\nBuild Y3 Blues\n\tpedrop: Sorry for that "undo", but sytuation is getting more n more interesting;)\n\tagentofchaos: That's alright I use the undo button myself quite often ;-)\n\n23) agentofchaos: Move Y1 Kantele Blues\nCatastrophe Blues Y\n\n24) pedrop: Build B1 Pedrop\n\n25) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Squid\nBuild G3 Squid\nBuild G3 Agentofchaos\n\tagentofchaos: Be careful to avoid overpopulating your systems! ;-)\n\tpedrop: So... the overpopulation in binary(for two players) homeworlds is triggered when there are 3 elements of the same color? Not 4 like for Homewolrds for 3 and more players?\n\tpedrop: So... the overpopulation in binary(for two players) homeworlds is triggered when there are 3 elements of the same color? Not 4 like for Homewolrds for 3 and more players?\n\tagentofchaos: No it's still triggered by 4 elements of the same color. You had 3 of your own y elements in Blues, but I had a y ship in a connected system, so I sent it to Blues and triggered a catastrophe. So be careful of having 3 elements in a system that is connected to an opponent's system. \n\tpedrop: Oh...! I should predict it...;))) Thanks for answer:) Ok, let see what I can do now...:)\n\n26) pedrop: Trade B1 Y1 Pedrop\n\n27) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y2 Agentofchaos\nBuild Y3 Agentofchaos\nBuild G3 Agentofchaos\n\n28) pedrop: Discover B1 Pedrop Y3 Hard\n\n29) agentofchaos: Trade G1 B1 Agentofchaos\n\n30) pedrop: Build G1 Pedrop\n\tpedrop: By sacrifcing of yellow ship(2 or 3 size) can one discover a new system in first action, and then in secound action abendon it, an move furher?\n\tagentofchaos: Yes you can, I've known players to do that. \n\n31) agentofchaos: Move B1 Agentofchaos Squid\n\n32) pedrop: Trade Y1 R1 Pedrop\n\tpedrop: Thanks for answer. Knowing of such posibility may be vary handy:)\n\tagentofchaos: Yes it can be a very effective strategy :)\n\n33) agentofchaos: Build Y1 Kantele\n\n34) pedrop: Sacrifice G3 Pedrop\nBuild R1 Pedrop\nBuild R2 Pedrop\nBuild G3 Pedrop\n\n35) agentofchaos: Build B1 Squid\n\n36) pedrop: Move R1 Pedrop Kalki\n\n37) agentofchaos: Move B1 Squid Kalki\n\n38) pedrop: Sacrifice G3 Pedrop\nBuild R2 Pedrop\nBuild R2 Kalki\nBuild G3 Pedrop\n\n39) agentofchaos: Sacrifice Y3 Agentofchaos\nMove G1 Kalki Pedrop\nMove G2 Kalki Pedrop\nMove B1 Kalki Kantele\nCatastrophe Pedrop G\n\n40) pedrop: Trade B1 G1 Hard\n\n41) agentofchaos: Trade G3 R3 Squid\n\n42) pedrop: Move R2 Kalki Kantele\n\n43) agentofchaos: Sacrifice R3 Squid\nAttack R2S Kantele\nPass\nPass\n\n44) pedrop: Trade R1 G1 Pedrop\n\n45) agentofchaos: Build Y3 Agentofchaos\n\n46) pedrop: Build G2 Hard\n\n47) agentofchaos: Build G3 Agentofchaos\n\n48) pedrop: Build G3 Pedrop\n\n49) agentofchaos: Trade B1 R1 Squid\n\n50) pedrop: Trade R2 B2 Pedrop\n\n51) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R2 Squid\nBuild R3 Kantele\nBuild G3 Agentofchaos\n\n52) pedrop: Sacrifice G3 Pedrop\nBuild R3 Pedrop\nBuild R3 Kalki\nBuild G3 Pedrop\n\tpedrop: I want to make big games for Blam! and Robot Bettle Pigs - for 4 or more players, are You interested? (I will challenge players who will agree)\n\n53) agentofchaos: Move Y3 Agentofchaos Squid\n\tagentofchaos: I've never played those games, will think about it. \n\n54) pedrop: Move R3 Pedrop Hard\n\n55) agentofchaos: Sacrifice Y2 Kantele\nMove R2 Kantele Kalki\nMove R1 Squid Kalki\nCatastrophe Kalki R\n\n56) pedrop: Trade B2 Y2 Pedrop\n\n57) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Kantele\nBuild B1 Kantele\nBuild G3 Agentofchaos\n\n58) pedrop: Build R1 Pedrop\n\n59) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R1 Squid\nBuild B1 Kantele\nBuild G3 Agentofchaos\n\n60) pedrop: Trade R2 B2 Pedrop\n\n61) agentofchaos: Discover B1 Kantele B3 Juvar\n\n62) pedrop: Move B2 Pedrop Hard\n\n63) agentofchaos: Build R2 Kantele\n\n64) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild R2 Hard\nBuild R3 Pedrop\n\n65) agentofchaos: Move R3 Kantele Juvar\n\n66) pedrop: Discover R2 Hard B2 Never\n\n67) agentofchaos: Discover G1 Squid B3 Oa\n\n68) pedrop: Move R3 Pedrop Hard\n\n69) agentofchaos: Move B1 Kantele Oa\n\n70) pedrop: Move G1 Pedrop Oa\n\n71) agentofchaos: Move R2 Squid Oa\n\n72) pedrop: Move R3 Hard Never\n\n73) agentofchaos: Sacrifice Y2 Agentofchaos\nMove B1 Oa Pedrop\nMove B1 Juvar Pedrop\n\n74) pedrop: Trade R2 Y2 Never\n\n75) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Squid\nBuild R2 Squid\nPass\n\n76) pedrop: Move R3 Never Oa\n\n77) agentofchaos: Sacrifice Y3 Squid\nMove B1 Kantele Juvar\nMove B1 Juvar Pedrop\nMove Y1 Kantele Juvar\nCatastrophe Pedrop B\n\n78) pedrop: Discover Y2 Pedrop Y3 Ziemia\n\n79) agentofchaos: Move R2 Squid Ziemia\n\n80) pedrop: Sacrifice R3 Hard\nAttack R2 Ziemia\nAttack R2 Oa\nAttack G1 Oa\n\n81) agentofchaos: Build R3 Kantele\n\n82) pedrop: Move G1 Hard Squid\n\n83) agentofchaos: Move G2 Squid Juvar\n\n84) pedrop: Move G1 Squid Hard\n\n85) agentofchaos: Move R3 Kantele Ziemia\n\tpedrop: It looks like this is the end...:(\n\n86) pedrop: Sacrifice Y2 Ziemia\nMove G1 Oa Kantele\nMove G1 Oa Kantele\n\n87) agentofchaos: Build Y2 Juvar\n\tagentofchaos: Could be, but you're not making it easy! ;-)\n\n88) pedrop: Move G1 Hard Kantele\nCatastrophe Kantele G\n\n89) agentofchaos: Build Y3 Agentofchaos\n\tpedrop: And I won't...:)\n\n90) pedrop: Move Y2 Never Oa\n\n91) agentofchaos: Move Y1 Agentofchaos Squid\n\n92) pedrop: Discover R3 Oa G2 Theend\n\n93) agentofchaos: Sacrifice Y3 Agentofchaos\nMove Y1 Juvar Pedrop\nMove Y2 Juvar Pedrop\nMove Y1 Squid Pedrop\nCatastrophe Pedrop Y\n\n\tpedrop: So now it is the end for sure:) Thanks for a realy good game and see You in return match some day(now I have to many games;). \n\tagentofchaos: Thanks for a great game, and for your sportsmanship! Let me know when you would like a return match :-)\n\nHomeworlds Online (SDG# 12876)\nStarted: 2009.2.15, Ended: 2009.6.2\nParticipants: MadWuher (S), agentofchaos (N)\nWinner: MadWuher\n\n1) agentofchaos: Homeworld B1 R3 G3\n\n2) MadWuher: Homeworld R1 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) MadWuher: Build G1 Madwuher\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) MadWuher: Build G1 Madwuher\n\n9) agentofchaos: Discover G1 Agentofchaos Y2 Shaka\n\n10) MadWuher: Discover G1 Madwuher Y3 Edora\n\n11) agentofchaos: Build Y1 Agentofchaos\n\n12) MadWuher: Build Y2 Madwuher\n\n13) agentofchaos: Discover Y1 Agentofchaos B2 Zoovar\n\n14) MadWuher: Discover Y1 Madwuher B3 Bologna\n\n15) agentofchaos: Build G1 Agentofchaos\n\n16) MadWuher: Sacrifice G3 Madwuher\nBuild Y2 Madwuher\nBuild Y3 Madwuher\nBuild Y3 Bologna\n\n17) agentofchaos: Build G2 Shaka\n\n18) MadWuher: Trade Y2 G2 Madwuher\n\n19) agentofchaos: Sacrifice G2 Shaka\nBuild Y2 Zoovar\nBuild G2 Shaka\n\n20) MadWuher: Build G2 Madwuher\n\n21) agentofchaos: Trade G1 R1 Agentofchaos\n\n22) MadWuher: Trade Y2 R2 Madwuher\n\n23) agentofchaos: Build G1 Agentofchaos\n\n24) MadWuher: Build G3 Edora\n\n25) agentofchaos: Build Y2 Agentofchaos\n\n26) MadWuher: Trade Y1 R1 Bologna\n\n27) agentofchaos: Move R1 Agentofchaos Shaka\n\n28) MadWuher: Discover G2 Madwuher G3 Camelot\n\n29) agentofchaos: Build R2 Shaka\n\n30) MadWuher: Move R2 Madwuher Edora\n\n31) agentofchaos: Move R2 Shaka Camelot\n\n32) MadWuher: Sacrifice G2 Camelot\nBuild G2 Madwuher\nBuild Y1 Madwuher\n\n33) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R2 Camelot\nBuild R3 Shaka\nBuild G3 Agentofchaos\n\n34) MadWuher: Sacrifice G2 Madwuher\nBuild G2 Madwuher\nBuild R3 Bologna\n\n35) agentofchaos: Trade Y1 B1 Agentofchaos\n\n36) MadWuher: Trade G2 B2 Madwuher\n\n37) agentofchaos: Build Y1 Agentofchaos\n\n38) MadWuher: Sacrifice G3 Edora\nBuild G2 Madwuher\nBuild G3 Edora\nBuild B1 Madwuher\n\n39) agentofchaos: Move B1 Agentofchaos Shaka\n\n40) MadWuher: Move B2 Madwuher Edora\n\n41) agentofchaos: Move Y1 Zoovar Camelot\n\n42) MadWuher: Build B3 Edora\n\n43) agentofchaos: Build B3 Shaka\n\n44) MadWuher: Move R3 Bologna Zoovar\n\n45) agentofchaos: Sacrifice Y2 Zoovar\nMove B3 Shaka Camelot\nMove B1 Shaka Camelot\n\n46) MadWuher: Sacrifice B1 Madwuher\nTrade B2 Y2 Edora\n\n47) agentofchaos: Trade G1 B1 Agentofchaos\n\n48) MadWuher: Build B2 Edora\n\n49) agentofchaos: Move B1 Agentofchaos Shaka\n\n50) MadWuher: Move Y2 Edora Zoovar\n\n51) agentofchaos: Move G1 Shaka Edora\n\n52) MadWuher: Move G1 Edora Zoovar\n\n53) agentofchaos: Move G1 Edora Madwuher\n\n54) MadWuher: Sacrifice G2 Madwuher\nBuild G1 Edora\nBuild G2 Zoovar\n\n55) agentofchaos: Sacrifice Y2 Agentofchaos\nMove B1 Camelot Madwuher\nMove B3 Camelot Madwuher\n\n56) MadWuher: Sacrifice R3 Zoovar\nAttack G1 Madwuher\nAttack B3 Madwuher\nAttack B1 Madwuher\n\n57) agentofchaos: Build Y2 Camelot\n\n58) MadWuher: Move B3 Madwuher Camelot\n\n59) agentofchaos: Build R3 Camelot\n\n60) MadWuher: Sacrifice R2 Edora\nAttack R3 Camelot\nAttack Y2 Camelot\n\n61) agentofchaos: Build R2 Camelot\nCatastrophe Camelot R\n\n62) MadWuher: Sacrifice G2 Zoovar\nBuild G2 Zoovar\nBuild R2 Bologna\n\n63) agentofchaos: Move R1 Shaka Bologna\n\n64) MadWuher: Sacrifice R1 Bologna\nAttack R1 Bologna\n\n65) agentofchaos: Build R1 Shaka\n\n66) MadWuher: Move R2 Bologna Zoovar\n\n67) agentofchaos: Discover R3 Shaka R3 Irae\n\n68) MadWuher: Sacrifice G3 Edora\nBuild G3 Edora\nBuild R2 Bologna\nBuild R2 Zoovar\n\n69) agentofchaos: Sacrifice Y1 Agentofchaos\nMove R3 Irae Zoovar\n\n70) MadWuher: Sacrifice G3 Edora\nBuild G3 Edora\nBuild Y1 Zoovar\nBuild R3 Zoovar\nCatastrophe Zoovar R\n\n71) agentofchaos: Build R2 Shaka\n\n72) MadWuher: Move R1 Bologna Zoovar\n\n73) agentofchaos: Move R1 Shaka Bologna\n\n74) MadWuher: Attack R1 Bologna\n\n75) agentofchaos: Build R2 Shaka\n\n76) MadWuher: Sacrifice R1 Bologna\nAttack Y1 Camelot\n\n\nHomeworlds Online (SDG# 12904)\nVariants: "Hard time"\nStarted: 2009.2.15, Ended: 2009.3.27\nParticipants: pedrop (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B3 G3\n\n2) pedrop: Homeworld B2 Y1 G3\n\tJesse: Hello, and have a good game.\n\n3) Jesse: Build G1 Jesse\n\tpedrop: Hi. The same to You! Are You experienced player?\n\n4) pedrop: Build G1 Pedrop\n\tJesse: Yes, I am a very experienced player. I see from your comments in another game that you are new. It is always my pleasure to help a new player get better, so let me know if you have any questions.\n\n5) Jesse: Trade G1 Y1 Jesse\n\tpedrop: Thanks for that, and I hope that beacouse of the other games I won't do any more basic mistakes and be some challenge for You:)\n\n6) pedrop: Trade G1 Y1 Pedrop\n\n7) Jesse: Build Y2 Jesse\n\tpedrop: Of course feel free to comment my bad moves, if You will see such ones:)\n\n8) pedrop: Discover Y1 Pedrop G3 Newhope\n\tJesse: Certainly.\n\n9) Jesse: Trade Y1 R1 Jesse\n\n10) pedrop: Build G1 Pedrop\n\tJesse: There's a saying that when your opponent picks up a gun (red piece), you must pick up a gun. You do have a little time before you really have to, because it's hard for me to get to you this early in the game. Just don't wait too long...\n\n11) Jesse: Build R1 Jesse\n\tpedrop: Ok, I won't, thanks:) (You are fast with guns then... ;P ;) )\n\n12) pedrop: Trade G1 Y1 Pedrop\n\tJesse: I was fast with the guns mostly because I saw the opportunity to make it awkward for you to grab one yourself.\n\n13) Jesse: Discover R1 Jesse G2 Pripyat\n\tpedrop: I see:) (hmm... openinig with red small planet...;) ) \n\n14) pedrop: Build Y2 Pedrop\n\tJesse: The r1 system marker is mostly for defense early on, and the flexibility offered by defending with G3 and Y3 later. Jumping into red quickly makes the first point less important.\n\tJesse: It's also good for developing green and yellow early on, since you can have a couple of each at the homeworld without getting into danger of a catastrophe.\n\n15) Jesse: Discover R1 Jesse G2 Kyzyl\n\tpedrop: Thanks for advices:) I already have experienced that having yellow star on me starting system is \r\n"not-so-good";) I had to "loose" 1 action to move yellow ships out of it if i wanted to develop them further. And this action is usually very valuable...;) So I agree that this is very useful opening and advice from You.\n\tJesse: Having yellow in your system can also be good, because you can immediately start moving things out without taking a turn to trade for yellow. So there are pros and cons either way.\n\n16) pedrop: Trade Y2 R2 Pedrop\n\n17) Jesse: Build Y2 Jesse\n\n18) pedrop: Build R2 Pedrop\n\n19) Jesse: Move Y2 Jesse Pripyat\n\n20) pedrop: Move R2 Pedrop Newhope\n\n21) Jesse: Build G1 Jesse\n\n22) pedrop: Build G1 Pedrop\n\n23) Jesse: Trade G1 B1 Jesse\n\n24) pedrop: Trade G1 B1 Pedrop\n\n25) Jesse: Discover B1 Jesse G2 Suzdal\n\n26) pedrop: Build G1 Pedrop\n\tpedrop: I want to make big games for Blam! and Robot Bettle Pigs - for 4 or more players, are You interested? (I will challenge players who will agree)\n\n27) Jesse: Build G1 Jesse\n\n28) pedrop: Build G1 Pedrop\n\tJesse: I think I'll pass, for now.\n\n29) Jesse: Build B1 Suzdal\n\n30) pedrop: Discover Y1 Pedrop B3 Ziemia\n\n31) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y2 Jesse\nBuild Y3 Pripyat\n\n32) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild Y3 Ziemia\nBuild Y3 Newhope\n\tJesse: Have you seen this maneuver yet? If not, it's called the factory. If you have, it's still called the factory.\n\n33) Jesse: Sacrifice B1 Suzdal\nTrade Y3 B3 Pripyat\n\tpedrop: Yes I have seen it:) But didn't know how it's called:) But now I do:) Thanks.\n\n34) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild R2 Newhope\nBuild R3 Pedrop\n\n35) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y3 Pripyat\nBuild R3 Kyzyl\n\n36) pedrop: Move G1 Pedrop Ziemia\n\n37) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R3 Pripyat\nBuild B1 Pripyat\n\tJesse: I wonder why that registered that red build as a pass, the first time.\n\n38) pedrop: Move Y3 Ziemia Suzdal\n\n39) Jesse: Move R3 Pripyat Ziemia\n\n40) pedrop: Sacrifice Y1 Ziemia\nMove R2 Newhope Suzdal\n\n41) Jesse: Sacrifice Y2 Jesse\nMove B1 Suzdal Ziemia\nMove Y2 Pripyat Ziemia\n\n\n\tpedrop: Sorry, one of my family member was taken to hospital, so I haven't time to play.\n\tJesse: I'm sorry to hear that. I hope it turned out okay. It's too bad about the game, but there are more important things.\n\tpedrop: Thanks. It's better now with her. See You in other games.\n\nHomeworlds Online (SDG# 12918)\nVariants: "Unrated"\nStarted: 2009.2.16, Ended: 2009.2.25\nParticipants: dsheldon (S), xmiyux (N)\nWinner: dsheldon\n\n1) xmiyux: Homeworld B3 Y1 G3\n\n2) dsheldon: Homeworld B2 Y1 G3\n\tdsheldon: I see that you've gone with what's called a "Goldilocks" homeworld. It gives you direct access to medium stars. I'm going to go with a "Banker," which gives access to large stars. The general thinking is that the banker is the easiest to play but my personal experience has been an even split of success and failure.\n\n3) xmiyux: Build G1 Xmiyux\n\txmiyux: I have absolutely no idea what Goldilocks is other than a child in a fairy tale. *laugh* My thought process was that blue and green are both important in the beginning. I like being able to explore quickly so I wanted yellow. And when I was taught the game the person told me it is always best to take a large and a small for your first stars.\n\n4) dsheldon: Build G1 Dsheldon\n\tdsheldon: Goldilocks refers to the size of the stars, not their colors. Because you have a large and a small, your homeworld is adjacent to mediums. Mediums are neither too large nor too small. My homeworld is next to larges. The strategy I will be employing is to discover large stars with small green ships. This will take these pieces out of circulation until I'm ready to build them, stopping you from building them. As far as colors go, you're dead on. Only very extreme strategies suggest anything other than blue yellow and green for your opening.\n\n5) xmiyux: Trade G1 Y1 Xmiyux\n\tdsheldon: Your next move you have a very interesting choice. If you build another g1, you'll give me access to the g2s. Your other choices are to send your ship out exploring or to change it to a different color. Out of the two, I recommend exploration. Early on, since there's no danger to your homeworld, exploration is a very good idea. That, and every step away from home is a step toward your enemy and aggressiveness is good.\n\n6) dsheldon: Discover G1 Dsheldon Y3 Investment\n\tdsheldon: Very good move. See how I can't get a yellow ship at all since there are no y1's left in the stash? (I could, technically, trade my g3 for a y3, but that doesn't seem like a good idea right now.)\n\n7) xmiyux: Discover Y1 Xmiyux G2 Miranda\n\n8) dsheldon: Build G1 Dsheldon\n\txmiyux: So with the banker strategy you build the small greens, explore the large stars (most likely yellow so you can move the new ship out), and control the access to large yellows?\n\tdsheldon: Here's why my homeworld is called the Banker. Later, when I get some yellow (so not any time soon) I can sacrifice the g1 on Investment, anihilating the star, and then build the y3 wherever I have a yellow ship (assuming there aren't any y1s or y2s in the stash). In the end game yellow is very important because it's very easy to use to set up catastrophes.\n\n9) xmiyux: Build Y2 Miranda\n\n10) dsheldon: Build G1 Dsheldon\n\tdsheldon: Oh no, you don't move the little greenies away, you sacrifice them to /immediately/ build the large. It works for every color but green (you need a medium green to sacrifice because you'll have to build the g2 and the g3 or your investment is sort of wasted).\n\n11) xmiyux: Discover Y2 Miranda G3 Serenityvalley\n\n12) dsheldon: Sacrifice G3 Dsheldon\nBuild G2 Investment\nBuild G2 Investment\nBuild G3 Dsheldon\n\tdsheldon: Ah, now the problem here is that there are a lot of green ships in play, and now I'm going to take the rest of them, which will be a problem for you since you only have one.\n\n13) xmiyux: Build Y2 Miranda\n\tdsheldon: This is a classic move. Sac a green and rebuild it. You might think I should worry about the huge piles of green ships waiting for catastrophe, but since you only control one green ship, and it's alone in your homeworld, I have nothing to fear. You're seeing a prime example of having spread yourself too thin when there were good routes for growth toward reinforcement.\n\n14) dsheldon: Trade G1 B1 Dsheldon\n\txmiyux: I can definitely feel the pinch on green right now.\n\tdsheldon: Now I'm looking to transform my fleet. I'm going to try and get some of that yellow. I can't swap the 1Gs in my homeworld, and I don't want to give up my 3G because then you could build it. So I'll have to take a few extra steps to get where I want.\n\n15) xmiyux: Build G1 Xmiyux\n\tdsheldon: Now you can build another green ship, which is a really good idea because then you can sac and rebuild the g3 in your homeworld.\n\n16) dsheldon: Sacrifice B1 Dsheldon\nTrade G1 B1 Investment\n\txmiyux: Although had we been being competitive, you never would have given me that green would you?\n\tdsheldon: It's a calculated risk. I'm playing sort of "fast and loose," but I'm not intentionally playing poorly. I needed blue in my homeworld more than I needed you to not have green. Besides, I have more tricks up my sleeve to control the stash.\n\n17) xmiyux: Build G1 Xmiyux\n\n18) dsheldon: Trade G2 Y2 Investment\n\tdsheldon: Now, even when you do sac your g3, between having to build through the g1 I just put back in the stash and rebuilding your g3 ('cuz you've gotta keep that) you'll only be able to get one more build elsewhere (which you could have had anyway from the stars) and you won't be able to build a y3 this turn. Next turn looks a little sticky for me though.\n\tdsheldon: OK, you're just too fast. How's a guy supposed to pontificate if you're making your move while I'm still explaining my last one? ;)\n\tdsheldon: Ah, here's why I can make a good suggestion. If you had instead made this move:\r\n\r\ns g3 xmiyux\r\nb g1 xmiyux\r\nb g3 xmiyux\r\nb y2 serenityvalley\r\n\r\nYou'd be in the same position you are now, but with one more ship. Since I have no yellow there's no danger of me building up to the y3s and you'd be pretty much just better off than you are now.\n\n19) xmiyux: Discover G1 Xmiyux G2 Aker's\n\tdsheldon: Check. Watch out! If I "s y2 investment, d g2 investment r2 blah, m g2 blah xmiyux, c g xmiyux" you will lose. So trade or move some of that green.\n\n20) dsheldon: Move Y2 Investment Aker's\n\txmiyux: I knew you needed two moves to get to that system so I knew I was safe for a turn. I'm trying to prevent you from s the g3, rebuilding it and some mediums. On retrospect I should have traded that g1 instead of moving it so there would be at least a single g1 in the stash to make it rougher to rebuild a sacced g3.\n\tdsheldon: Sounds like you know more about what you're doing than you first implied. OK, what I *really* want to do right now is get a y3, but that makes me too vulnerable to catastrophe, and that makes me sad. I think I can still take a good stab at your homeworld though. If I move in my g2, there's not enough to nuke it yet, but you would have a very few options on how to respond.\n\n21) xmiyux: Build Y3 Serenityvalley\n\tdsheldon: Yeah, I decided against it. Discovering that g2 was a very smart move.\n\n22) dsheldon: Build Y3 Aker's\n\txmiyux: Well, i have been simultaneously playing against another total rookie and we have went through a couple games so i am getting more a grasp of the game.\r\n\r\nAlso, i run an after school board game club for kids and i made them sit down and play Homeworlds with me a couple times so i could puzzle out things. :lol:\n\n23) xmiyux: Move Y1 Miranda Xmiyux\n\tdsheldon: Not a lot to say on this move. I've got to have me that y3.\n\txmiyux: If you didn't take it i would have tried. :D\n\n24) dsheldon: Trade B1 R1 Investment\n\n25) xmiyux: Trade G1 B1 Xmiyux\n\tdsheldon: Sorry for the delay. Work and family conspired to keep me busy.\n\n26) dsheldon: Move Y3 Aker's Xmiyux\n\txmiyux: No worries at all. Between the beginning explanation and a few other games I have been playing I think I have a grasp of the general game right now if you would rather abandon this one if you are busy and such.\n\tdsheldon: By no means would I want to end the game, I just usually hope to able to play more than one move in four days. That's my apology to you, not a request to be released from the "obligation" of entertainment.\n\n27) xmiyux: Move Y2 Miranda Xmiyux\nCatastrophe Xmiyux Y\n\tdsheldon: Moving on with the lesson: now I'm got a three in your homeworld and a red on table. It looks like you'll have a tough time maintaining control of any large ships at home. You never got any red, so you can't take my y3 from me. You could move your g3 away, so that you don't lose it, but then you still won't have any large ships in your homeworld. I thought you might be able to destroy Investment (and my red ship), but you don't have enough yellow in the right places to do that either.\r\n\r\nIt's a tough position.\n\n28) dsheldon: Sacrifice R1 Investment\nAttack G1N Aker's\n\txmiyux: Yep. With your red you would take the G3. Then you my blue star to get a R3 and mate. I was pretty much stuck. I think the game is actually over now, but my only foreseen chance was to kill my own star to take out the Y3.\r\n\r\nThis connects our galaxies. Unfortunately I axed my own yellow abilities so it will take a turn or two to even get set up. Hypothetically if you sat on your hands without any threats I oculd move a G3 to your base, sac a R2 or R3 if I had them to try to attack.\r\n\r\nThat, however, is not going to happen. :lol:\n\tdsheldon: Woah, drastic. But I'm still in an awkward position to try any follow up attacks.\n\tdsheldon: Funny thing is, you're one move from destroying my homeworld: s y3 serenity valley; m g3 xmiyux dsheldon; m g1 aker's xmiyux; m g1 xmiyux dsheldon; c dsheldon g. So my first goal is to prevent that.\n\n29) xmiyux: Trade B1 R1 Xmiyux\n\n30) dsheldon: Trade G1 R1 Dsheldon\n\n31) xmiyux: Discover Y3 Serenityvalley G2 Miranda\n\tdsheldon: Allow me to commend your tenacity.\n\txmiyux: *laugh* Nothing ventured I guess.\n\n32) dsheldon: Build G1 Dsheldon\n\txmiyux: Almost handed you the win\n\n33) xmiyux: Build Y1 Miranda\n\n34) dsheldon: Sacrifice G3 Dsheldon\nBuild G1 Aker's\nBuild G3 Dsheldon\nBuild Y1 Aker's\n\n35) xmiyux: Move Y1 Miranda Xmiyux\n\n36) dsheldon: Trade G1 B1 Dsheldon\n\n37) xmiyux: Trade Y1 G1 Xmiyux\n\n38) dsheldon: Sacrifice Y2 Aker's\nMove G1 Aker's Xmiyux\nMove G1 Aker's Xmiyux\nCatastrophe Xmiyux G\n\n39) xmiyux: Trade R1 B1 Xmiyux\n\tdsheldon: It's important in your end game to have multiple attack avenues and to limit the possible moves available to your opponent. It is very unsafe for you to build green which is hampering your growth and, while that holds you down, I'm now building up a blue attack in my diversified homeworld. I don't think you need my advice anymore, you seem to have a really good handle on the game now.\n\tdsheldon: Wait... really? You could just *build* a g1, why the trade? And you've opened yourself to an even worse catastrophe. That doesn't look like a very good move.\n\tdsheldon: I guess if you were going to undo you'd have done it by now.\n\n40) dsheldon: Move B1 Dsheldon Xmiyux\n\txmiyux: Doh - yeah - a complete oversight. I had foreseen that move before. Then turned around and did it again. :lol: Thanks for punishing the mistake. The only way I will learn. :)\n\n41) xmiyux: Pass\n\txmiyux: Finish me off. I can't bring myself to resign. :lol:\n\tdsheldon: These are among the reasons I wish SDG had an easy way to notify players that you have a game related message for them. I guess I could have emailed you, I have your address... somewhere.\n\n42) dsheldon: Sacrifice G2 Investment\nBuild Y1 Aker's\nBuild B1 Xmiyux\nCatastrophe Xmiyux B\n\tdsheldon: I totally understand your preference to play out a game you've lost rather than to resign, I'm the same way.\n\txmiyux: Indeed. Well thanks for the game and the help. To be honest I think there needs to be a Facebook plugin for Super Duper so everyone could play through that site.\r\n\r\nI also think Homeworlds would make an absolute killer Community Game on Xbox Live. Andy needs to hook up with some programmers and make a little money on that front.\n\n\tdsheldon: I totally agree. I even downloaded some instructions once, long ago, about writing facebook aps for precisely that reason. I hadn't thought of it as far as XBL goes but that would rule too. Catan and Carcassone are raking it in, how about a little love for the icehouse set?\n\tdsheldon: Always have to finish with a bang. Glad I could help, I think you'll do well, you seemed to really learn a lot and quickly. Just be a bit more careful of catastrophes and you'll be a real competitor.\n\nHomeworlds Online (SDG# 12921)\nStarted: 2009.2.16, Ended: 2009.2.17\nParticipants: CanisFirebrand (S), xmiyux (N)\nWinner: xmiyux\n\n1) xmiyux: Homeworld Y2 B1 G3\n\n2) CanisFirebrand: Homeworld B2 Y1 G3\n\n3) xmiyux: Build G1 Xmiyux\n\n4) CanisFirebrand: Build G1 Canisfirebrand\n\n5) xmiyux: Trade G1 Y1 Xmiyux\n\n6) CanisFirebrand: Discover G1 Canisfirebrand Y3 Inverness\n\n7) xmiyux: Build G1 Xmiyux\n\n8) CanisFirebrand: Build G1 Canisfirebrand\n\n9) xmiyux: Discover Y1 Xmiyux G3 Miranda\n\n10) CanisFirebrand: Build G2 Canisfirebrand\n\n11) xmiyux: Discover G1 Xmiyux B3 Serenityvalley\n\n12) CanisFirebrand: Discover G1 Canisfirebrand R3 Erebus\n\n13) xmiyux: Build G2 Xmiyux\n\n14) CanisFirebrand: Build G2 Erebus\n\n15) xmiyux: Build Y1 Miranda\n\n16) CanisFirebrand: Trade G2 B2 Canisfirebrand\n\n17) xmiyux: Sacrifice G3 Xmiyux\nBuild G2 Serenityvalley\nBuild G3 Xmiyux\nBuild Y2 Miranda\n\n18) CanisFirebrand: Move B2 Canisfirebrand Erebus\n\n19) xmiyux: Discover Y1 Miranda Y2 Aker's\n\n20) CanisFirebrand: Move G1 Inverness Canisfirebrand\n\n21) xmiyux: Sacrifice G3 Xmiyux\nBuild G3 Xmiyux\nBuild Y3 Miranda\nBuild Y3 Aker's\n\n22) CanisFirebrand: Sacrifice G3 Canisfirebrand\nBuild G3 Canisfirebrand\nBuild B1 Erebus\nBuild B1 Erebus\n\n23) xmiyux: Sacrifice Y2 Miranda\nMove G1 Serenityvalley Canisfirebrand\nMove G2 Serenityvalley Canisfirebrand\nCatastrophe Canisfirebrand Green\n\n\tCanisFirebrand: That is a pretty good strategy to take almost all playable pieces of one color. Makes it difficult for your opponent to do much.\n\nHomeworlds Online (SDG# 12935)\nStarted: 2009.2.17, Ended: 2009.2.24\nParticipants: xmiyux (S), CanisFirebrand (N)\nWinner: xmiyux\n\n1) CanisFirebrand: Homeworld G3 B1 R3\n\n2) xmiyux: Homeworld B2 Y1 G3\n\n3) CanisFirebrand: Build R1 Canisfirebrand\n\n4) xmiyux: Build G1 Xmiyux\n\n5) CanisFirebrand: Trade R1 G1 Canisfirebrand\n\n6) xmiyux: Trade G1 Y1 Xmiyux\n\n7) CanisFirebrand: Build R1 Canisfirebrand\n\n8) xmiyux: Build G1 Xmiyux\n\n9) CanisFirebrand: Trade G1 Y1 Canisfirebrand\n\n10) xmiyux: Discover G1 Xmiyux G3 Miranda\n\n11) CanisFirebrand: Trade R1 G1 Canisfirebrand\n\n12) xmiyux: Build Y2 Xmiyux\n\n13) CanisFirebrand: Discover G1 Canisfirebrand B2 Inverness\n\n14) xmiyux: Discover Y1 Xmiyux B3 Serenity\n\n15) CanisFirebrand: Build R1 Canisfirebrand\n\n16) xmiyux: Build Y2 Xmiyux\n\n17) CanisFirebrand: Trade R3 B3 Canisfirebrand\n\n18) xmiyux: Discover Y2 Xmiyux B3 Aker's\n\n19) CanisFirebrand: Build Y2 Canisfirebrand\n\n20) xmiyux: Build G1 Xmiyux\n\n21) CanisFirebrand: Discover Y1 Canisfirebrand G2 Erebus\n\n22) xmiyux: Move Y2 Xmiyux Miranda\n\n23) CanisFirebrand: Build Y3 Erebus\n\n24) xmiyux: Build Y3 Miranda\n\n25) CanisFirebrand: Build G2 Inverness\n\n26) xmiyux: Trade G1 R1 Xmiyux\n\n27) CanisFirebrand: Sacrifice Y3 Erebus\nMove Y2 Canisfirebrand Inverness\nMove G1 Inverness Miranda\nMove G2 Inverness Miranda\nCatastrophe Miranda G\n\n28) xmiyux: Move Y2 Aker's Inverness\n\n29) CanisFirebrand: Sacrifice R1 Canisfirebrand\nAttack Y2 Inverness\n\n30) xmiyux: Build R1 Xmiyux\n\n31) CanisFirebrand: Build Y2 Erebus\n\n32) xmiyux: Build G1 Xmiyux\n\n33) CanisFirebrand: Move Y2 Inverness Canisfirebrand\n\n34) xmiyux: Trade G3 Y3 Xmiyux\n\n35) CanisFirebrand: Build Y3 Canisfirebrand\n\n36) xmiyux: Build G1 Xmiyux\n\n37) CanisFirebrand: Discover Y1 Erebus Y3 Dunsinane\n\n38) xmiyux: Move R1 Xmiyux Serenity\n\n39) CanisFirebrand: Build B1 Canisfirebrand\n\n40) xmiyux: Move G1 Xmiyux Serenity\n\n41) CanisFirebrand: Discover Y2 Inverness G3 Nottingham\n\n42) xmiyux: Trade Y3 G3 Xmiyux\n\n43) CanisFirebrand: Build Y3 Nottingham\n\n44) xmiyux: Build G1 Serenity\n\n45) CanisFirebrand: Sacrifice B3 Canisfirebrand\nTrade Y1 B1 Dunsinane\nTrade Y2 B2 Nottingham\nTrade Y3 B3 Nottingham\n\n46) xmiyux: Discover G1 Serenity Y2 Akers\n\n47) CanisFirebrand: Sacrifice Y3 Canisfirebrand\nMove B3 Nottingham Erebus\nMove B2 Nottingham Erebus\nMove B1 Canisfirebrand Erebus\n\n48) xmiyux: Discover R1 Serenity G2 Valley\n\n49) CanisFirebrand: Discover B1 Erebus B3 Inverness\n\n50) xmiyux: Sacrifice G3 Xmiyux\nBuild G2 Serenity\nBuild G3 Xmiyux\nBuild G3 Akers\n\n51) CanisFirebrand: Build B2 Erebus\n\n52) xmiyux: Sacrifice G3 Xmiyux\nBuild G3 Xmiyux\nBuild R1 Xmiyux\nBuild R2 Valley\n\n53) CanisFirebrand: Build Y1 Erebus\n\n54) xmiyux: Move G3 Akers Canisfirebrand\n\n55) CanisFirebrand: Sacrifice Y2 Erebus\nMove B2 Erebus Canisfirebrand\nMove B2 Erebus Canisfirebrand\n\n56) xmiyux: Sacrifice R2 Valley\nAttack Y2 Canisfirebrand\nAttack B2 Canisfirebrand\n\n57) CanisFirebrand: Move B3 Erebus Canisfirebrand\n\n58) xmiyux: Sacrifice G3 Xmiyux\nBuild G3 Xmiyux\nBuild R2 Valley\nBuild R2 Valley\nCatastrophe Canisfirebrand Blue\n\n\nHomeworlds Online (SDG# 12934)\nStarted: 2009.2.18, Ended: 2009.3.17\nParticipants: slitt_vicious (S), xmiyux (N), CanisFirebrand (E)\nWinner: slitt_vicious\n\n1) xmiyux: Homeworld Y1 B2 G3\n\n2) CanisFirebrand: Homeworld G3 B1 R3\n\n3) slitt_vicious: Homeworld R3 B2 G3\n\n4) xmiyux: Build G1 Xmiyux\n\n5) CanisFirebrand: Build R1 Canisfirebrand\n\n6) slitt_vicious: Build G1 Slitt_vicious\n\n7) xmiyux: Trade G1 B1 Xmiyux\n\n8) CanisFirebrand: Trade R1 G1 Canisfirebrand\n\n9) slitt_vicious: Trade G3 R3 Slitt_vicious\n\n10) xmiyux: Build B1 Xmiyux\n\n11) CanisFirebrand: Build G1 Canisfirebrand\n\n12) slitt_vicious: Build R1 Slitt_vicious\n\n13) xmiyux: Discover B1 Xmiyux R3 Serenity\n\n14) CanisFirebrand: Trade G1 Y1 Canisfirebrand\n\n15) slitt_vicious: Trade R1 Y1 Slitt_vicious\n\n16) xmiyux: Build G1 Xmiyux\n\n17) CanisFirebrand: Build Y1 Canisfirebrand\n\n18) slitt_vicious: Build Y2 Slitt_vicious\n\n19) xmiyux: Build G1 Xmiyux\n\n20) CanisFirebrand: Discover G1 Canisfirebrand B2 Inverness\n\n21) slitt_vicious: Build G2 Slitt_vicious\n\n22) xmiyux: Discover G1 Xmiyux Y3 Miranda\n\n23) CanisFirebrand: Build G2 Inverness\n\n24) slitt_vicious: Build G2 Slitt_vicious\n\n25) xmiyux: Trade B1 R1 Xmiyux\n\n26) CanisFirebrand: Move Y1 Canisfirebrand Inverness\n\txmiyux: Careful Slitt, you have 3 green in your home system - if you end up with 4 (or if someone moves in a 4th) they could declare a catastrophe and all the green in that system would die.\n\n27) slitt_vicious: Discover G2 Slitt_vicious B1 Poopy\n\n28) xmiyux: Discover R1 Xmiyux G3 Akers\n\tslitt_vicious: fuck me. This would be fun in person, but this website is just painful.\n\n29) CanisFirebrand: Build Y2 Canisfirebrand\n\n30) slitt_vicious: Move Y2 Slitt_vicious Poopy\n\n31) xmiyux: Build R1 Akers\n\n32) CanisFirebrand: Discover G1 Inverness B3 Erebus\n\n33) slitt_vicious: Build Y2 Poopy\n\n\tCanisFirebrand: I agree.. Unfortunetly I think continuing this game as a 2 player game won't work either since many pieces are out there. Probably best to quit the game and if slitt wants to learn still, challenge one of us to a 2 player game.\n\nHomeworlds Online (SDG# 12877)\nVariants: "Unrated, Hard time"\nStarted: 2009.3.1, Ended: 2009.3.19\nParticipants: acirruscloud (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld B2 R1 G3\n\tacirruscloud: homeworld g1 y2 y3\n\n2) acirruscloud: Homeworld B3 G1 Y3\n\tacirruscloud: Hallo and good luck. This and one other game are my first on the site. Sort of messed up already.\n\n3) MadWuher: Build G1 Madwuher\n\tMadWuher: not to worry. Feel free to ask any questions as we go along.\n\n4) acirruscloud: Build Y1 Acirruscloud\n\n5) MadWuher: Build G1 Madwuher\n\n6) acirruscloud: Discover Y1 Acirruscloud B2 Onett\n\n7) MadWuher: Trade G3 Y3 Madwuher\n\n8) acirruscloud: Build Y1 Acirruscloud\n\n9) MadWuher: Build G2 Madwuher\n\n10) acirruscloud: Trade Y3 G3 Acirruscloud\n\n11) MadWuher: Discover G2 Madwuher B3 Edora\n\n\nHomeworlds Online (SDG# 12895)\nStarted: 2009.3.1, Ended: 2009.3.28\nParticipants: agentofchaos (S), acirruscloud (N)\nWinner: agentofchaos\n\n1) acirruscloud: Homeworld B2 G1 Y3\n\tacirruscloud: homeworld g1 b2 y3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\tagentofchaos: Hi, enjoy the game. \n\n3) acirruscloud: Build Y1 Acirruscloud\n\tacirruscloud: Hi, thanks. You too. This is my first time on SDG.\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) acirruscloud: Trade Y3 G3 Acirruscloud\n\tagentofchaos: I've been on here a couple of months. Homeworlds is my favourite game here. \n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) acirruscloud: Build G1 Acirruscloud\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) acirruscloud: Discover G1 Acirruscloud Y3 Porre\n\n10) agentofchaos: Build G2 Agentofchaos\n\n11) acirruscloud: Discover G1 Porre B2 Enhasa\n\n12) agentofchaos: Trade G2 R2 Agentofchaos\n\n\nHomeworlds Online (SDG# 12961)\nStarted: 2009.3.1, Ended: 2009.3.31\nParticipants: agentofchaos (S), wmreed (N)\nWinner: wmreed\n\n1) wmreed: Homeworld G2 B1 R3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\twmreed: Hello!\n\tagentofchaos: Hello, enjoy the game!\n\n3) wmreed: B R1 Wmreed\n\n4) agentofchaos: Build G1 Agentofchaos\n\twmreed: How long have you been playing Homeworlds?\n\tagentofchaos: I started playing it about 2 months ago. You?\n\n5) wmreed: T R1 G1 Wmreed\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\twmreed: Longer. I get a game in every couple of months. \n\n7) wmreed: B R1 Wmreed\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) wmreed: Build G1 Wmreed\n\n10) agentofchaos: Trade Y1 R1 Agentofchaos\n\n11) wmreed: Trade G1 Y1 Wmreed\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) wmreed: B R2 Wmreed\n\n14) agentofchaos: Build Y1 Agentofchaos\n\n15) wmreed: T R3 Y3 Wmreed\n\n16) agentofchaos: Discover R2 Agentofchaos Y2 Eris\n\n17) wmreed: Trade Y1 B1 Wmreed\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) wmreed: Build B1 Wmreed\n\n20) agentofchaos: Move G1 Agentofchaos Eris\n\n21) wmreed: Discover B1 Wmreed G3 Odin\n\n22) agentofchaos: Build R2 Eris\n\n23) wmreed: Build B2 Odin\n\n24) agentofchaos: Build G1 Agentofchaos\n\n25) wmreed: Build R3 Wmreed\n\n26) agentofchaos: Discover Y1 Agentofchaos G2 Zurvan\n\n27) wmreed: Move R3 Wmreed Odin\n\n28) agentofchaos: Build R3 Eris\n\n29) wmreed: Trade B2 Y2 Odin\n\n30) agentofchaos: Discover R2 Eris Y3 Quasgar\n\n31) wmreed: M Y3 Wmreed Quasgar\n\n32) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R3 Quasgar\n\n33) wmreed: Sacrifice R1 Wmreed\nAttack R3 Quasgar\n\n34) agentofchaos: Move R3 Eris Quasgar\n\n35) wmreed: Sacrifice R3 Quasgar\nAttack R3 Quasgar\nAttack R2 Quasgar\nPass\n\n36) agentofchaos: Build Y1 Zurvan\n\n37) wmreed: Move R3 Quasgar Zurvan\n\n38) agentofchaos: Discover Y1 Zurvan Y3 Elysia\n\n39) wmreed: Attack Y1 Zurvan\n\n40) agentofchaos: Build G1 Agentofchaos\n\n41) wmreed: Move Y3 Quasgar Wmreed\n\n42) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Eris\nBuild R1 Eris\nBuild G3 Agentofchaos\n\n43) wmreed: M R2 Quasgar Zurvan\n\n44) agentofchaos: Discover R1 Agentofchaos Y2 Hades\n\n45) wmreed: Build Y3 Zurvan\n\n46) agentofchaos: Move G1 Agentofchaos Hades\n\n47) wmreed: Move R3 Odin Eris\n\n48) agentofchaos: Build R3 Eris\nCatastrophe Eris R\n\n49) wmreed: Move R3 Zurvan Odin\n\n\n50) agentofchaos: Build G3 Agentofchaos\n\n51) wmreed: M R3 Odin Eris\n\n52) agentofchaos: Move G2 Eris Elysia\n\n53) wmreed: Attack G1 Eris\n\n54) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R1 Hades\nBuild R2 Hades\nBuild G3 Agentofchaos\n\n55) wmreed: M R3 Eris Elysia\n\n56) agentofchaos: Move Y1 Agentofchaos Hades\n\n57) wmreed: Attack G2 Elysia\n\n58) agentofchaos: Discover Y1 Elysia B2 Morgoth\n\n59) wmreed: Build R3 Zurvan\n\n\twmreed: Here's something I can't remember: if I sacrifice the last ship in a system, to build for example, does that star become available in the pool to build right then?\n\tagentofchaos: Hi, I've been a bit busy last few days but didn't forget our game. \r\nI think sacrificing the last ship in a system would make the system marker available immediately. \n\n60) agentofchaos: Discover Y1 Hades B3 Skurve\n\n61) wmreed: Sacrifice Y3 Zurvan\nMove G2 Elysia Eris\nMove G2 Eris Agentofchaos\nMove G1 Eris Agentofchaos\nCatastrophe Agentofchaos Green\n\n\n\twmreed: I almost missed that. Thank you for the game!\n\tagentofchaos: Good game, well played. \n\nHomeworlds Online (SDG# 13003)\nStarted: 2009.3.2, Ended: 2009.6.18\nParticipants: pedrop (S), Orl (N)\nWinner: pedrop\n\n1) Orl: Homeworld R2 B1 G3\n\n2) pedrop: Homeworld B3 R1 G3\n\tOrl: hi\n\n3) Orl: Build G1 Orl\n\tpedrop: Hi! Good luck:)\n\tOrl: thanks. This is my first game\n\n4) pedrop: Build G1 Pedrop\n\n5) Orl: Trade G1 R1 Orl\n\tpedrop: Those games I'm currently playing are my first too, so I'm not an experienced player either:) What is good - beacouse this match should be balanced, I think:)\n\n6) pedrop: Trade G1 Y1 Pedrop\n\n7) Orl: Build G1 Orl\n\n8) pedrop: Build Y1 Pedrop\n\n9) Orl: Trade G1 Y1 Orl\n\n10) pedrop: Discover Y1 Pedrop G2 Ziemia\n\n11) Orl: Build G1 Orl\n\n12) pedrop: Build G1 Pedrop\n\n13) Orl: Discover G1 Orl Y3 Nova\n\n14) pedrop: Build Y2 Pedrop\n\n15) Orl: Build Y2 Orl\n\n16) pedrop: Build Y2 Pedrop\n\n17) Orl: Move Y1 Orl Nova\n\n18) pedrop: Trade Y1 R1 Pedrop\n\n19) Orl: Build G1 Orl\n\n20) pedrop: Discover G1 Pedrop B2 Niebo\n\n21) Orl: Trade G1 B1 Orl\n\n22) pedrop: Move Y2 Pedrop Niebo\n\n23) Orl: Move R1 Orl Nova\n\n24) pedrop: Move R1 Pedrop Niebo\n\n25) Orl: Build R2 Nova\n\n26) pedrop: Build Y1 Niebo\n\n27) Orl: Build Y3 Nova\n\n28) pedrop: Move Y1 Niebo Nova\nCatastrophe Nova Y\n\n29) Orl: Build Y1 Orl\n\tOrl: the Nova system has gone supernova...he he he\n\n30) pedrop: Build R1 Niebo\n\tpedrop: Hehe:) Maybe You have predicted it the moment You gave the name to the star? ;)\n\n31) Orl: Trade Y2 R2 Orl\n\n32) pedrop: Trade R1 B1 Niebo\n\tOrl: nope. I didn't even knew how SDG tells the loss of a system...\n\n33) Orl: Discover R2 Orl Y3 Nova2\n\n34) pedrop: Build B2 Niebo\n\n35) Orl: Build B2 Orl\n\n36) pedrop: Discover B2 Niebo G3 Ogien\n\n37) Orl: Move B2 Orl Ogien\n\n38) pedrop: Build B3 Ogien\n\n39) Orl: Build B3 Ogien\nCatastrophe Ogien B\n\n40) pedrop: Build R1 Niebo\n\n41) Orl: Build B2 Orl\n\n42) pedrop: Discover R1 Niebo G3 Ogien\n\n43) Orl: Move B1 Orl Nova2\n\n44) pedrop: Move B1 Niebo Ogien\n\tpedrop: Sorry, for delay:/\n\tOrl: No problem!\n\n45) Orl: Build G1 Orl\n\n\n46) pedrop: Build Y1 Ziemia\n\n47) Orl: Move R2 Nova2 Ziemia\n\n48) pedrop: Sacrifice G3 Pedrop\nBuild Y2 Niebo\nBuild Y3 Pedrop\nBuild Y3 Ziemia\n\n49) Orl: Move G1 Orl Nova2\n\n50) pedrop: Sacrifice R1 Niebo\nAttack R2 Ziemia\n\n51) Orl: Discover B1 Nova2 G2 Li\n\n52) pedrop: Build G1 Niebo\n\n53) Orl: Sacrifice G1 Nova2\nBuild Y3 Orl\n\n54) pedrop: Move Y3 Ziemia Ogien\n\n55) Orl: Discover B2 Orl G3 Esab\n\n56) pedrop: Move G1 Niebo Pedrop\n\n57) Orl: Build B2 Esab\n\n58) pedrop: Build B3 Ogien\n\n59) Orl: Build B3 Li\n\n60) pedrop: Move B3 Ogien Ziemia\n\n61) Orl: Sacrifice Y3 Orl\nMove B3 Li Pedrop\nMove B2 Esab Li\nMove B2 Li Pedrop\n\n\n62) pedrop: Build Y3 Pedrop\n\n63) Orl: Attack Y3 Pedrop\n\n64) pedrop: Sacrifice R2 Ziemia\nAttack Y3 Pedrop\nAttack B3 Pedrop\n\n65) Orl: Move Y1 Orl Esab\n\n66) pedrop: Move B3 Pedrop Ziemia\n\n67) Orl: Move B2 Esab Li\n\n68) pedrop: Attack B2 Pedrop\n\n69) Orl: Move Y1 Esab Li\n\n70) pedrop: Move Y3 Pedrop Li\n\n71) Orl: Discover B2 Li G1 G1\n\n72) pedrop: Build R1 Ogien\n\n73) Orl: Move Y1 Li G1\n\n74) pedrop: Build R2 Ogien\n\n75) Orl: Trade B2 R2 G1\n\n76) pedrop: Sacrifice Y3 Li\nMove R2 Ogien Orl\nMove R1 Ogien Orl\nMove R1 Ogien Orl\nCatastrophe Orl R\n\n77) Orl: Move R2 G1 Niebo\n\n78) pedrop: Sacrifice Y3 Pedrop\nMove B1 Ogien Orl\nMove B3 Ziemia Orl\nMove B3 Ziemia Orl\nCatastrophe Orl B\n\n\tpedrop: Thanks for the game.\n\tOrl: To you, too. I am way better with real pyramids... this way I can't concentrate.\n\tpedrop: I haven't play real piramides... so maybe thats the reson? :)\n\nHomeworlds Online (SDG# 13047)\nVariants: "Unrated"\nStarted: 2009.3.3, Ended: 2009.3.8\nParticipants: Ageless (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R3 G3\n\n\tagentofchaos: Hi, I hope you enjoy the game. I think it's fun. \n\tAgeless: I am sure I will. But please, wait a few days for me to begin. I am not understanding the notation. Sorry.\n\tAgeless: Sorry, but i did not understando how to play. English is not my first language.\n\nHomeworlds Online (SDG# 13040)\nStarted: 2009.3.3, Ended: 2009.4.22\nParticipants: pedrop (S), Mouce (N)\nWinner: Mouce\n\n1) Mouce: Homeworld Y1 B2 G3\n\n2) pedrop: Homeworld B3 R1 G3\n\n3) Mouce: Build G1 Mouce\n\n4) pedrop: Build G1 Pedrop\n\tMouce: Have a great game!\n\n5) Mouce: Build G1 Mouce\n\tpedrop: The same to You!\n\n6) pedrop: Trade G1 Y1 Pedrop\n\n7) Mouce: Discover G1 Mouce B3 Skrich\n\n8) pedrop: Build Y1 Pedrop\n\n9) Mouce: Build G1 Mouce\n\n10) pedrop: Build Y2 Pedrop\n\n11) Mouce: Build G2 Skrich\n\n12) pedrop: Build G2 Pedrop\n\n13) Mouce: Trade G2 Y2 Skrich\n\n14) pedrop: Discover Y1 Pedrop G2 Ziemia\n\n15) Mouce: Trade G1 R1 Mouce\n\n16) pedrop: Discover Y2 Pedrop G2 Niebo\n\n17) Mouce: Discover G1 Skrich B2 Gnaw\n\n18) pedrop: Sacrifice G3 Pedrop\nBuild Y2 Ziemia\nBuild Y3 Pedrop\nBuild Y3 Niebo\n\n19) Mouce: Sacrifice G3 Mouce\nBuild G1 Gnaw\nBuild G3 Mouce\nBuild Y3 Skrich\n\n20) pedrop: Build G3 Pedrop\n\n21) Mouce: Sacrifice Y2 Skrich\nMove Y3 Skrich Gnaw\nMove G1 Gnaw Pedrop\n\n22) pedrop: Trade G2 R2 Pedrop\n\n23) Mouce: Sacrifice G3 Mouce\nBuild G2 Pedrop\nBuild G3 Gnaw\nBuild G3 Mouce\n\n24) pedrop: Discover G3 Pedrop Y2 Ogien\n\n25) Mouce: Trade G1 R1 Gnaw\n\n26) pedrop: Build G1 Ogien\n\n27) Mouce: Move R1 Gnaw Pedrop\n\n28) pedrop: Move R2 Pedrop Ziemia\n\n29) Mouce: Sacrifice G3 Mouce\nBuild R2 Pedrop\nBuild R2 Pedrop\nBuild G3 Mouce\nCatastrophe Pedrop Red\n\n30) pedrop: Trade Y1 B1 Pedrop\n\n31) Mouce: Trade G2 B2 Pedrop\n\n32) pedrop: Sacrifice R2 Ziemia\nAttack B2 Pedrop\nAttack G1 Pedrop\n\n33) Mouce: Move G3 Gnaw Pedrop\n\n34) pedrop: Sacrifice Y3 Pedrop\nMove B1 Pedrop Mouce\nMove B2 Pedrop Mouce\nMove Y1 Ziemia Pedrop\n\n35) Mouce: Trade G3 B3 Pedrop\n\n36) pedrop: Sacrifice Y3 Niebo\nMove G1 Pedrop Mouce\nMove G1 Ogien Pedrop\nMove G1 Pedrop Mouce\nCatastrophe Mouce G\n\tMouce: I'll wait for you awhile yet... I've been enjoying our game.\n\n37) Mouce: Trade Y3 G3 Gnaw\n\tpedrop: Sorry, for delay - I have not much time nowdays:/ Thanks for waiting:) And I enjoy this game too. It is very interesting. And... before this game I didn't know that one can be agressive in Homewordls, like You(I mean Your strategy of course! ;). Thanks for that.\n\n38) pedrop: Sacrifice G3 Ogien\nBuild B1 Mouce\nBuild Y1 Niebo\nBuild Y2 Ziemia\nCatastrophe Mouce B\n\n39) Mouce: Sacrifice G3 Gnaw\nBuild B1 Pedrop\nBuild B1 Pedrop\nBuild R1 Mouce\nCatastrophe Pedrop Blue\n\n\tpedrop: Thanks for the game. It was realy interesting. Cheers.\n\tMouce: What a wacky game (and ending!); I really enjoyed it! I'm glad that i could introduce to you a different play-style. This game has a surprising amount of depth (I feel that I am scratching the surface as yet), and seems to have been well-honed on this server. I hope we will play again in the near future!\n\nHomeworlds Online (SDG# 13043)\nStarted: 2009.3.3, Ended: 2009.3.7\nParticipants: Mouce (S), MikeYarrum (N)\nWinner: Mouce\n\n\tMouce: Hi, enjoy the game!\n\nHomeworlds Online (SDG# 13004)\nStarted: 2009.3.4, Ended: 2009.8.11\nParticipants: pedrop (S), Orl (W), agentofchaos (N), alexcobo (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B3 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\tagentofchaos: Hi everybody, thanks for playing. I hope you all enjoy the game. \n\n3) pedrop: Homeworld R1 B2 G3\n\n4) Orl: Homeworld R2 B1 G3\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) pedrop: Build G1 Pedrop\n\n8) Orl: Build G1 Orl\n\tOrl: hi\n\n9) agentofchaos: Build G1 Agentofchaos\n\talexcobo: Hello. Good luck!\n\tagentofchaos: Thanks, you too!\n\n10) alexcobo: Trade Y1 R1 Alexcobo\n\n11) pedrop: Trade G1 Y1 Pedrop\n\n12) Orl: Trade G1 Y1 Orl\n\tpedrop: Good luck to You all! :)\n\n13) agentofchaos: Trade G1 Y1 Agentofchaos\n\n14) alexcobo: Build Y1 Alexcobo\n\n15) pedrop: Build G1 Pedrop\n\n16) Orl: Build G1 Orl\n\n17) agentofchaos: Build Y1 Agentofchaos\n\n18) alexcobo: Build Y2 Alexcobo\n\n19) pedrop: Build Y2 Pedrop\n\n20) Orl: Trade G1 B1 Orl\n\n21) agentofchaos: Build G1 Agentofchaos\n\n22) alexcobo: Trade Y1 G1 Alexcobo\n\n23) pedrop: Discover Y2 Pedrop G3 Ziemia\n\n24) Orl: Move B1 Orl Ziemia\n\n25) agentofchaos: Discover G1 Agentofchaos Y2 Skurj\n\n26) alexcobo: Discover G1 Alexcobo G1 Venia\n\n27) pedrop: Trade G1 R1 Pedrop\n\n28) Orl: Build B1 Ziemia\n\n29) agentofchaos: Discover Y1 Agentofchaos B2 Morgoth\n\n30) alexcobo: Build R1 Alexcobo\n\n31) pedrop: Move R1 Pedrop Ziemia\n\n32) Orl: Build G1 Orl\n\tOrl: a question: are we playing with the sinister homeworlds variant? I can't see nothing that states my alignment...\n\n33) agentofchaos: Build G2 Skurj\n\tpedrop: :) Not so long ago, I was asking for the same thing:) AFAIK the sinister variant is about that, who first beat oponent on his left - is the winner of whole game(and he doesn't have to beat others to be the winner). So I presume You are asking about standard Homeworlds rules, where there are good-evil designatons. This is not implemented on SDG. The standard rules(and those we are playing in this game) have one-man-standing winning condition.\n\tpedrop: There should be:\r\n"(...)The default rules on SDG(and those we are(...)"\r\nCouse those are not the standard rules for board game, I think.\n\tOrl: Ok, understood, thanks! But I think it would be very nice if SDG implemented standard rules.\n\n34) alexcobo: Trade R1 B1 Alexcobo\n\n35) pedrop: Build G2 Pedrop\n\n36) Orl: Build G2 Orl\n\n37) agentofchaos: Sacrifice G2 Skurj\nBuild Y1 Agentofchaos\nBuild Y2 Morgoth\n\n38) alexcobo: Sacrifice Y2 Alexcobo\nMove G1 Venia Ziemia\nMove G1 Ziemia Orl\nCatastrophe Orl G\n\n39) pedrop: Attack B1W Ziemia\n\tpedrop: Sorry, but I had to call an admin, couse I could'n attack b1 in Ziemia. I got the "The ship B1 could not be found in the Ziemia system." message.\n\talexcobo: Try this, pedrop: "attack b1w Ziemia".\r\nYou have to declare the position of the player you are attacking.\n\tAaron: aye\n\n40) Orl: Trade Y1 G1 Orl\n\tpedrop: Yes, You were right:/ I didn't read this notice, about 3+ Homeworlds games:/ Realy sorry for delay and making problems for Aron:/\n\tAaron: np at all\n\n41) agentofchaos: Trade Y1 R1 Morgoth\n\n42) alexcobo: Build R2 Alexcobo\n\n43) pedrop: Discover G2 Pedrop Y3 Niebo\n\n44) Orl: Build G1 Orl\n\n45) agentofchaos: Move G1 Agentofchaos Morgoth\n\n46) alexcobo: Build Y1 Alexcobo\n\n47) pedrop: Build R2 Ziemia\n\n48) Orl: Trade G1 Y1 Orl\n\n49) agentofchaos: Build R2 Morgoth\n\n50) alexcobo: Discover B1 Alexcobo G1 Inga\n\n51) pedrop: Move R2 Ziemia Skurj\n\n52) Orl: Build Y2 Orl\n\n53) agentofchaos: Discover G1 Skurj Y3 Orcus\n\n54) alexcobo: Trade R1 B1 Alexcobo\n\n55) pedrop: Build Y2 Ziemia\n\n56) Orl: Discover Y1 Orl G3 Glomi\n\n57) agentofchaos: Build Y3 Morgoth\n\n58) alexcobo: Build B2 Inga\n\n59) pedrop: Build Y3 Pedrop\n\n60) Orl: Build G1 Orl\n\n61) agentofchaos: Build G2 Orcus\n\n62) alexcobo: Trade B2 G2 Inga\n\n63) pedrop: Build G2 Pedrop\n\n64) Orl: Move G1 Orl Glomi\n\n65) agentofchaos: Build G2 Morgoth\n\n66) alexcobo: Build B2 Inga\n\n67) pedrop: Move B1 Ziemia Skurj\n\n68) Orl: Move G1 Glomi Orl\n\n69) agentofchaos: Move R1 Morgoth Orcus\n\n70) alexcobo: Trade B1 R1 Inga\n\n71) pedrop: Attack B1W Ziemia\n\n72) Orl: Trade G1 B1 Orl\n\n\n73) agentofchaos: Sacrifice G2 Orcus\nBuild R2 Morgoth\nBuild R3 Orcus\n\n74) alexcobo: Build R3 Alexcobo\n\n75) pedrop: Sacrifice G2 Pedrop\nBuild R3 Skurj\nBuild R3 Ziemia\n\n76) Orl: Move B1 Orl Glomi\n\n\n77) agentofchaos: Build G1 Agentofchaos\n\n78) alexcobo: Build R3 Inga\n\n79) pedrop: Build G2 Pedrop\n\n80) Orl: Build G2 Orl\n\n81) agentofchaos: Move R3 Orcus Orl\n\n82) alexcobo: Move Y3 Alexcobo Inga\n\n83) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild B2 Skurj\nBuild B3 Ziemia\n\n84) Orl: Build B3 Glomi\n\n85) agentofchaos: Attack Y2W Orl\n\n86) alexcobo: Build B3 Inga\n\n87) pedrop: Discover Y3 Pedrop B3 Nowy\n\n88) Orl: Move B3 Glomi Inga\n\n89) agentofchaos: Sacrifice Y2 Morgoth\nMove G1 Morgoth Inga\nMove G1 Orcus Inga\nCatastrophe Inga G\n\n90) alexcobo: Build Y2 Alexcobo\n\n91) pedrop: Build Y3 Pedrop\n\n92) Orl: Build G1 Orl\n\n93) agentofchaos: Attack G2W Orl\n\n94) alexcobo: Trade R2 G2 Alexcobo\n\n95) pedrop: Discover R3 Ziemia G1 Ogien\n\n96) Orl: Move B1 Glomi Orl\n\n97) agentofchaos: Move G2 Orl Orcus\n\n98) alexcobo: Discover Y2 Alexcobo G1 G1\n\n99) pedrop: Move B1 Skurj Niebo\n\n100) Orl: Move Y1 Glomi Orl\n\n101) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Orcus\nBuild R1 Orcus\nBuild G3 Agentofchaos\n\n102) alexcobo: Build R2 Alexcobo\n\n103) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild B2 Skurj\nBuild B3 Niebo\n\n\nHomeworlds Online (SDG# 13036)\nVariants: "Unrated, Hard time"\nStarted: 2009.3.8, Ended: 2009.4.8\nParticipants: a_magical_me (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B3 G3\n\n2) a_magical_me: Homeworld G3 B2 Y3\n\ta_magical_me: Hi.\n\n3) MadWuher: Build G1 Madwuher\n\n4) a_magical_me: Build Y1 A_magical_me\n\tMadWuher: Hi there. Hope you enjoy the game. If you have any questions, feel free to ask.\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\ta_magical_me: Sure. I've played a couple games, but don't really grok it yet. We'll see what happens.\n\n6) a_magical_me: Trade Y1 B1 A_magical_me\n\n7) MadWuher: Build G1 Madwuher\n\n8) a_magical_me: Build B1 A_magical_me\n\n9) MadWuher: Build G1 Madwuher\n\n10) a_magical_me: Discover B1 A_magical_me G1 Goo\n\n11) MadWuher: Discover G1 Madwuher Y2 Edora\n\n12) a_magical_me: Build B1 Goo\n\n13) MadWuher: Build G2 Edora\n\n14) a_magical_me: Build B2 Goo\n\n15) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G2 Edora\nBuild G3 Madwuher\n\n\nHomeworlds Online (SDG# 13057)\nStarted: 2009.3.9, Ended: 2009.3.12\nParticipants: MikeYarrum (S), Skotte (N)\nWinner: Skotte\n\n1) Skotte: Homeworld G1 Y3 R3 *\n\n\nHomeworlds Online (SDG# 13087)\nStarted: 2009.3.11, Ended: 2009.4.29\nParticipants: MikeYarrum (S), dethdukk (N)\nWinner: dethdukk\n\n1) dethdukk: Homeworld B2 Y1 G3\n\tdethdukk: I assume this is were I talk to you in?\r\n\n\tdethdukk: Just so you know, this is my first game on this system, give me some time to get used to it, I may have to ask a few questions.\n\n\nHomeworlds Online (SDG# 12913)\nStarted: 2009.3.11, Ended: 2009.3.15\nParticipants: dethdukk (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n2) dethdukk: Homeworld B2 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\tdethdukk: evening. This is my first game using this system (SDG that is) and my first homeworlds game against anyone outside of my immediate friends group. any suggestions or corrections at the end of the game would be appreciated\n\n4) dethdukk: Build G1 Dethdukk\n\tTwoShort: Sure. My typical approach with new players is to give them advice a little too late to actually help :) Only semi-intentionally though. It's hard to know what advice to give in advance, and no fun just telling people what to do in any case.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\tTwoShort: "evening"? you must be in a different time zone than me :)\n\n6) dethdukk: Build G1 Dethdukk\n\tdethdukk: I agree wholeheartedly. As I said, END of the game. I like to make my mistakes and learn from them, it helps imprint the lesson better. In any case, I think I understand most of the basis, its the details that'll get me.\n\n7) TwoShort: Build Y1 Twoshort\n\tdethdukk: I should have said "morning" or perhaps "afternoon". I tend to greet peaple with evening no matter the time of day. I am in the mountains.\n\n8) dethdukk: Discover G1 Dethdukk B3 Lauch\n\tTwoShort: I don't always remember the advice at the end of the game, which is why I figure "too late to help" is equivalent.. for example, be careful about letting your opponent get the last 1 point of a color you don't have before you have any 2 pointers...\r\n\n\tTwoShort: Where in the mountains? (he wonders from Boulder, CO)\n\tdethdukk: Denver actually. (gasps in astonishment as he realizes what just happened)\n\n9) TwoShort: Build Y2 Twoshort\n\n10) dethdukk: Build G1 Lauch\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) dethdukk: Sacrifice G3 Dethdukk\nBuild G2 Lauch\nBuild G2 Dethdukk\nBuild G3 Dethdukk\n\n13) TwoShort: Build G3 Twoshort\n\tdethdukk: there, that worked out pretty well... not to get my number of greens down. Thanks again for playing. I understand that you are a rather high-level player, hopefully playing against a completely new person isnt too annoying :P\n\tdethdukk: hm... is there a way to get the past turns, or perhaps review the game as a whole? I can save the pictures from here on out, but it would be nice to get the first few turns.\n\tdethdukk: for review. I want the past turns so I can review how the game went.\n\n14) dethdukk: Trade G2 Y2 Lauch\n\tTwoShort: You can step through past games once they are over by going to the homepage -> games history-> pick the specific game.\n\n15) TwoShort: Discover G3 Twoshort B2 Bluebird\n\tdethdukk: thanks\n\tTwoShort: Oh, and as far as playing new players, I don't mind at all. When people have no idea what they are doing it can be a little annoying because I don't always have time for a good tutorial, and I feel guilty just crushing them. But using a factory to escape my yellow lock means you're well beyond that.\n\n16) dethdukk: Trade G2 R2 Dethdukk\n\tdethdukk: So what you are saying is that you wont feel guilty after crushing me? Oh, and I dont think you will get a bluebird on me. Unless I have somehow mis-judged my position...\n\n17) TwoShort: Build G2 Twoshort\n\tTwoShort: I tend to name systems by free association; I was vaguely worried you'd leave yourself open to a bluebird right after I said how well you were doing. In any case, if I manage to crush you, I won't feel guilty at all :)\n\n18) dethdukk: Build Y2 Lauch\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluebird\nBuild G3 Twoshort\nBuild Y3 Grogar\n\tdethdukk: well I will try to give you a run for your money. I think I can do some damage, but I think you may have me because of your 2 builder ships.\n\n20) dethdukk: Sacrifice Y2 Lauch\nMove G1 Lauch Bluebird\nMove G1 Lauch Bluebird\nCatastrophe Bluebird G\n\n21) TwoShort: Discover Y1 Twoshort B2 Blitz\n\n22) dethdukk: Move Y2 Lauch Grogar\n\n23) TwoShort: Discover Y3 Grogar B3 Bonanza\n\n24) dethdukk: Discover G1 Dethdukk B3 Colony\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bonanza\nBuild Y3 Twoshort\nBuild Y3 Blitz\n\n26) dethdukk: Build G1 Dethdukk\n\n27) TwoShort: Trade Y3 G3 Bonanza\n\n28) dethdukk: Discover G1 Dethdukk Y3 Standing\n\n29) TwoShort: Build G1 Twoshort\n\n30) dethdukk: Build G2 Standing\n\tdethdukk: so the point of the game is not neccesarily to kill off the other player in one stroke, but rather to cut them down slowly by gaining control of the ship stash. which would mean that green is extremely important, yellow ia second most important, and perhaps even most important, red is helpfun but not needed except perhaps as surgical stikes, meant to cut someone out or a color, and blue is used almost exclusively for systems.\n\tdethdukk: yellow is second*, red is helpful*, any others I missed\n\n31) TwoShort: Trade G2 R2 Twoshort\n\tTwoShort: 3 pointers are the most important :) But yes, barring any big blunders, you win by buildign enough of a ship advantage that the exact mechanics of finishing the guy off become academic.\r\n\r\nGreen is essential early, and devastating if you can get the only factory ( a g3 you can sac to build 2 ships and itself right back).\r\n\r\nYellow has the biggest ability to transform the board; getting most of the big ones will be a big advantage.\r\n\r\nBlue is sometimes mostly systems like in this game, but there's a great strategy if you can get a complete monopoly (you can continually flip a b3 to something else and regrow it).\r\n\r\nI've only once had a red monopoly. Generally, you want an r2 (or 3, but a 2 is about as good) you can sacrifice somewhere, and "the gun rule" says you should take a red somewhere as soon as your opponent does. This is excellent advice, even though I'm currently ignoring it :)\n\n32) dethdukk: Move Y2 Grogar Colony\n\tdethdukk: I have been reading a bit... you believe that a small/large homeworld is better than a small/medium homeworld correct? Is this simply because you can explore mediums, and thus get to larges faster, or some other reason? Also, red seems to be the starting color of choice over yellow nowadays. I assume that that is simply because you can get a greater benifit out of a red system later on, where a yellow system looses its usefulness so long as you have even a single yellow ship.\n\n33) TwoShort: Move Y3 Blitz Colony\n\n34) dethdukk: Sacrifice Y2 Colony\nDiscover G1 Colony Y2 Point\nMove R2 Dethdukk Bonanza\n\tTwoShort: As far as goldilocks (1-3) vs. banker (1-2), I've probably changed my mind a half dozen times since I wrote that. Today I think they are about comparable. Both are better than Fortress (2-3). Certain good players (named Andy Looney) strongly prefer banker, and crush me with it. \r\n I like the red-blue homeworld best, mostly because you can grow more green and yellow ships without getting close to a catastrophe. The red is nice defensively, but that's secondary.\n\n35) TwoShort: Sacrifice R2 Twoshort\nAttack R2 Bonanza\nPass\n\n36) dethdukk: Build G2 Dethdukk\n\tdethdukk: thanks again for your help. I have 3 more questions, all of them unrelated to this game: Are you planning on going to origins? do you play icehouse at all? and would you play another homeworlds game against me after this one?\n\n37) TwoShort: Move G3 Bonanza Dethdukk\n\tTwoShort: - I'm not going to Origins (young children, limited budget, other commitments).\r\n- Back in the day (1992) I played vast amounts of Icehouse and was part of the team that won the fourth tournament. I haven't played it much in years though.\r\n - I'm always happy to play more homeworlds. I am going on vacation without net access the week after next, so if you start another game before then you'll wind up waiting a week for my next move at some point.\r\n\n\n38) dethdukk: Trade G2 R2 Dethdukk\n\n39) TwoShort: Sacrifice R2 Bonanza\nAttack G3 Dethdukk\nAttack R2 Dethdukk\n\n\tdethdukk: good game. I think you had me no matter what I did that turn. I will send you a challange, accept it when you wish. Thanks againfor the game/suggestions.\n\nHomeworlds Online (SDG# 12896)\nStarted: 2009.3.11, Ended: 2009.6.11\nParticipants: nilesenator (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R2 B3 G3\n\n2) nilesenator: Homeworld G3 B1 R3\n\tMadWuher: sorry for not being online sooner. hope you enjoy the game.\n\tnilesenator: No problem! Thanks for playing\n\n3) MadWuher: Build G1 Madwuher\n\n4) nilesenator: Build R1 Nilesenator\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) nilesenator: Trade R1 Y1 Nilesenator\n\n7) MadWuher: Build G1 Madwuher\n\n8) nilesenator: Build R1 Nilesenator\n\n9) MadWuher: Build G1 Madwuher\n\n10) nilesenator: Trade R1 G1 Nilesenator\n\n11) MadWuher: Discover G1 Madwuher B1 Bologna\n\n12) nilesenator: Build Y1 Nilesenator\n\n13) MadWuher: Build Y2 Madwuher\n\n14) nilesenator: Build R1 Nilesenator\n\n15) MadWuher: Build G2 Bologna\n\n16) nilesenator: Discover R1 Nilesenator G2 Emptyspace\n\n17) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G3 Madwuher\nBuild G3 Bologna\n\n\nHomeworlds Online (SDG# 12951)\nStarted: 2009.3.29, Ended: 2009.4.7\nParticipants: ts52 (S), pam (N)\nWinner: ts52\n\n1) pam: Homeworld Y1 B2 G3\n\tts52: Have a good game! Hey, two different games with you at once. Should be fun!\n\tpam: how do i make a move on this game?sorry,i thought i was going to be an observer!\n\n2) ts52: Homeworld B1 Y3 G3\n\tts52: No problem, first you need to create a homeworld. You only do this once, at the beginning of the game, with the homeworld command. A standard opening is 'homeworld y1 b2 g3' which gives you a homeworld with small yellow and medium blue stars with a large green ship.\n\n3) pam: Build G1 Pam\n\tpam: thanks!\n\n4) ts52: Build G1 Ts52\n\tpam: now what?\n\n5) pam: Build G1 Pam\n\tpam: \n\tts52: That's good.\n\n6) ts52: Discover G1 Ts52 B2 Grover\n\tts52: Now you can discover a new star, build another green ship, or trade one of your green ships for another color.\n\n\tpam: i'm sorry,maybe i can play this later after i watch some games\n\tts52: No problem. It's a game probably best learned in person. I'm probably not the best teacher, but if you'd like to challenge me to an unrated game, any time, I'd be happy to try to answer any questions. My only problem with SDG is you can't tell the system to notify you of new messages in a game.\n\nHomeworlds Online (SDG# 13194)\nVariants: "Hard time"\nStarted: 2009.3.30, Ended: 2009.4.21\nParticipants: fnord (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld R1 B2 G3\n\n2) fnord: Homeworld Y3 B1 G3\n\tjeep: Have a good game!\n\n3) jeep: Build G1 Jeep\n\n4) fnord: Build G1 Fnord\n\tfnord: Thanks, hope you do too!\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) fnord: Discover G1 Fnord B2 Discordia\n\n7) jeep: Build Y1 Jeep\n\n8) fnord: Build G1 Fnord\n\n9) jeep: Build Y1 Jeep\n\n10) fnord: Build G1 Fnord\n\n11) jeep: Discover Y1 Jeep G3 Thumb\n\n12) fnord: Build G2 Discordia\n\n13) jeep: Build G2 Jeep\n\n14) fnord: Trade G2 Y2 Discordia\n\n15) jeep: Sacrifice G3 Jeep\nBuild Y2 Thumb\nBuild Y2 Thumb\nBuild Y3 Jeep\n\n16) fnord: Move Y2 Discordia Thumb\nCatastrophe Thumb Yellow\n\n17) jeep: Sacrifice Y3 Jeep\nDiscover G2 Jeep Y3 Temp\nMove G2 Temp Discordia\nMove G2 Discordia Fnord\nCatastrophe Fnord Green\n\n\tjeep: Thanks for the game.\n\nHomeworlds Online (SDG# 13060)\nVariants: "Unrated, Hard time"\nStarted: 2009.3.31, Ended: 2009.4.18\nParticipants: Mouce (S), agentofchaos (N)\nWinner: Mouce\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) Mouce: Homeworld B1 R3 G3\n\tagentofchaos: Hi there, enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Mouce: Build G1 Mouce\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Mouce: Build G1 Mouce\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) Mouce: Trade G1 Y1 Mouce\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) Mouce: Build Y2 Mouce\n\n11) agentofchaos: Trade Y2 G2 Agentofchaos\n\n12) Mouce: Build Y2 Mouce\n\n13) agentofchaos: Build Y2 Agentofchaos\n\n14) Mouce: Discover Y2 Mouce B2 Nest\n\n15) agentofchaos: Discover Y1 Agentofchaos G3 Freakout\n\n16) Mouce: Sacrifice G1 Mouce\nBuild Y3 Nest\n\n17) agentofchaos: Build Y3 Freakout\n\n18) Mouce: Trade Y2 G2 Nest\n\n19) agentofchaos: Trade Y1 B1 Agentofchaos\n\n20) Mouce: Build G1 Nest\n\n21) agentofchaos: Build Y1 Agentofchaos\n\n22) Mouce: Move G1 Nest Freakout\n\n23) agentofchaos: Discover Y3 Freakout B2 Glurge\n\n24) Mouce: Sacrifice G2 Nest\nBuild Y2 Mouce\nBuild Y3 Nest\n\n25) agentofchaos: Move Y3 Glurge Mouce\nCatastrophe Mouce Y\n\n26) Mouce: Build G1 Mouce\n\n27) agentofchaos: Discover G2 Agentofchaos Y3 Midas\n\n28) Mouce: Trade G1 Y1 Mouce\n\n29) agentofchaos: Trade Y1 R1 Agentofchaos\n\n30) Mouce: Build G1 Mouce\n\n31) agentofchaos: Sacrifice R1 Agentofchaos\nAttack G1 Freakout\n\n32) Mouce: Move G1 Mouce Nest\n\n33) agentofchaos: Move B1 Agentofchaos Midas\n\n34) Mouce: Discover Y3 Nest B3 Droppings\n\n35) agentofchaos: Build Y1 Agentofchaos\n\n36) Mouce: Move G1 Nest Droppings\n\n37) agentofchaos: Build Y2 Freakout\n\n38) Mouce: Build Y2 Mouce\n\n39) agentofchaos: Build G1 Agentofchaos\n\n40) Mouce: Build G2 Droppings\n\n41) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Midas\nBuild B1 Midas\nBuild G3 Agentofchaos\n\n42) Mouce: Sacrifice Y3 Nest\nMove Y3 Droppings Agentofchaos\nMove G1 Droppings Agentofchaos\nMove G2 Droppings Agentofchaos\nCatastrophe Agentofchaos Green\n\n\tagentofchaos: well played\n\tMouce: thanks for the game, i'm glad we have another going! this game is pretty amazing. it's a bit like abstract wrestling \n\nHomeworlds Online (SDG# 12843)\nStarted: 2009.4.1, Ended: 2009.4.14\nParticipants: gregcrowe (S), Trollkin (W), soapdog (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B3 G3\n\n\tagentofchaos: Three people sign up and no-one's playing, what a disappointment!!\n\nHomeworlds Online (SDG# 13205)\nVariants: "Unrated"\nStarted: 2009.4.1, Ended: 2009.4.8\nParticipants: TwoShort (S), jeep (N)\nWinner: TwoShort\n\n1) jeep: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tjeep: pass first build\n\tjeep: Heh, that was supposed to be a note. I think that your flip to red strategy can be worse. You can actually take a R3 ship, grow, then flip the large on turn 2. Not sure it is any different than your way, but it sure feels worse to be locked out first turn.\n\tTwoShort: I need green and blue, so if I take the red ship, I have need to grow twice to get both 1s, so it's the same.\n\n3) jeep: Pass\n\tTwoShort: For maximum pain, I probably should have made a small universe...\n\n4) TwoShort: Build G1 Twoshort\n\n5) jeep: Build G1 Jeep\n\n6) TwoShort: Trade G1 R1 Twoshort\n\tjeep: Wow, we have a lot of spectators.\n\n7) jeep: Trade G1 Y1 Jeep\n\tTwoShort: Oh, that's just my adoring fans; they follow me everywhere :) Actually, I don't think any of them are there. Once you start "watching" a player, it takes an actual action to stop, so if they don't come back to the site, their ghost haunts me forever. Notably, only a couple of the names do I even vaguely remember as someone I might have played once. Also I periodically say "Hey, spectators, if you're really there PM me!" and they never do.\n\n8) TwoShort: Build R2 Twoshort\n\n9) jeep: Build G1 Jeep\n\tjeep: Wow... I don't even know how I'm going to deal with this. ;)\n\n10) TwoShort: Trade R2 Y2 Twoshort\n\tjeep: I'm now a man with a plan.\n\n11) jeep: Trade G3 R3 Jeep\n\tjeep: Yeah, small universe would be tough here.\n\n12) TwoShort: Discover R1 Twoshort G2 Noescape\n\tTwoShort: So this will get you out if I don't do something extreme, but knowing I was going to play this way, would you still play Banker, or would you go to fortress to avoid it?\n\tjeep: Fortress is better in this case.\n\tTwoShort: Well in any case, time to try something extreme :)\r\n\n\n13) jeep: Build G1 Jeep\n\tjeep: How is that extreme? Pretty rough on me, though. Have to think a little more than the 5 min while compiling.\n\n14) TwoShort: Build R2 Noescape\n\n15) jeep: Discover G1 Jeep R3 Onlyhope\n\tTwoShort: I was thinking the straight forward thing for me to do there was to build the r2 before moving out which would let you build an r2 and break the monopoly, and we'd emerge from the early game with me at a clear advantage, but the game still in play. This is the first step of a more extreme plan, which if it doesn't work, I'll be in a tough spot. But I think now it will work, and you'll be inescapably doomed :) \n\tjeep: Yep, the switch to red was bad.\n\n16) TwoShort: Build R2 Noescape\n\n17) jeep: Trade R3 G3 Jeep\n\n18) TwoShort: Sacrifice Y2 Twoshort\nMove R2 Noescape Onlyhope\nMove R1 Noescape Twoshort\n\tjeep: Okay, I want overs after this game. ;) \n\n19) jeep: Sacrifice G1 Onlyhope\nBuild Y1 Jeep\n\n20) TwoShort: Build G1 Twoshort\n\n21) jeep: Discover Y1 Jeep R3 Reserve\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild R2 Noescape\nBuild R3 Twoshort\nBuild G1 Twoshort\n\n23) jeep: Build G2 Jeep\n\n24) TwoShort: Trade R3 G3 Twoshort\n\n25) jeep: Trade G3 R3 Jeep\n\n26) TwoShort: Trade G1 Y1 Twoshort\n\n27) jeep: Discover G1 Jeep Y3 Mover\n\n28) TwoShort: Build Y2 Twoshort\n\n29) jeep: Trade R3 G3 Jeep\n\n30) TwoShort: Build R3 Noescape\n\n31) jeep: Sacrifice G2 Jeep\nBuild Y2 Jeep\nBuild Y2 Reserve\n\tjeep: Too much flipping in my homeworld. Bleh.\n\n32) TwoShort: Sacrifice Y2 Twoshort\nDiscover R2 Onlyhope B2 Bluestar\nMove R3 Noescape Reserve\n\n33) jeep: Sacrifice Y1 Reserve\nDiscover Y2 Reserve B2 Stage\n\n34) TwoShort: Build R3 Twoshort\n\n35) jeep: Discover Y1 Jeep Y3 Shaker\n\n36) TwoShort: Trade R3 Y3 Twoshort\n\n37) jeep: Build Y1 Jeep\n\n38) TwoShort: Sacrifice G1 Twoshort\nBuild R3 Reserve\n\n39) jeep: Sacrifice G1 Mover\nBuild Y2 Stage\n\n40) TwoShort: Sacrifice Y3 Twoshort\nMove R2 Noescape Reserve\nMove R3 Reserve Jeep\nMove R3 Reserve Jeep\n\tTwoShort: I've been pretty sure you were stuck since move 1, but it has certainly taken a long while to work that around into actual victory. Quite the valiant fight!\n\n\nHomeworlds Online (SDG# 13240)\nVariants: "Hard time"\nStarted: 2009.4.6, Ended: 2009.4.16\nParticipants: Subhan64 (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\tagentofchaos: Hi, enjoy the game. \n\n2) Subhan64: Homeworld G3 B2 Y3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Subhan64: Build Y1 Subhan64\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Subhan64: Discover Y1 Subhan64 R1 Omecronpersei8\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) Subhan64: Build Y1 Subhan64\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) Subhan64: Build Y2 Subhan64\n\n11) agentofchaos: Build G1 Agentofchaos\n\n12) Subhan64: Trade Y2 G2 Subhan64\n\n13) agentofchaos: Discover Y2 Agentofchaos G3 Seti\n\n14) Subhan64: Sacrifice Y3 Subhan64\nMove G2 Subhan64 Omecronpersei8\nMove G2 Omecronpersei8 Seti\nMove G2 Seti Agentofchaos\nCatastrophe Agentofchaos Green\n\n15) agentofchaos: Build Y2 Seti\n\n16) Subhan64: Trade Y1 G1 Subhan64\n\n17) agentofchaos: Sacrifice Y2 Seti\nMove Y2 Seti Omecronpersei8\nMove Y2 Omecronpersei8 Subhan64\n\n18) Subhan64: Build G1 Subhan64\n\n19) agentofchaos: Trade Y2 G2 Subhan64\nCatastrophe Subhan64 G\n\n\tSubhan64: GG, thanks! Totally spaced on your being able to use the star tech in my home system!\n\tagentofchaos: I didn't really understand that I could use another player's tech in their home system, until someone did it to me once - quite a learning experience! Thanks for the game :-)\n\nHomeworlds Online (SDG# 13080)\nVariants: "Unrated, Hard time"\nStarted: 2009.4.6, Ended: 2009.6.27\nParticipants: efwin (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld Y1 B3 G3\n\tefwin: Hi -- I'm trying this one for the first time, so any advice is appreciated\n\tMadWuher: I'll do my best. Have you read up on the rules and how the colours work?\n\n2) efwin: Homeworld G3 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\tefwin: I've read the rules and think I've understood them enough to give the game a try (we'll see how well soon enough, I imagine)\n\n4) efwin: Build Y1 Efwin\n\n5) MadWuher: Build G1 Madwuher\n\n6) efwin: Build Y1 Efwin\n\n7) MadWuher: Discover G1 Madwuher B2 Edora\n\n8) efwin: Trade Y1 B1 Efwin\n\n9) MadWuher: Trade G1 Y1 Edora\n\tefwin: Oops -- set up a catastrophe situation.... Need to do something different than that, or it will be a very short game\n\n10) efwin: Build Y2 Efwin\n\n11) MadWuher: Move G1 Madwuher Edora\n\tMadWuher: Good catch. It just gives me an opportunity to get into the yellow.\n\n12) efwin: Discover B1 Efwin G1 Enoneergtod\n\tefwin: Perhaps I should venture forth soon...\n\n13) MadWuher: Build Y2 Edora\n\tMadWuher: If there was any way I could get to your homeworld with my yellow, I would. =) Too bad you're going to start moving out of there shortly.\n\n14) efwin: Move Y1 Efwin Enoneergtod\n\tefwin: I better do something about my yellow situation next turn....\n\n15) MadWuher: Build G1 Madwuher\n\n16) efwin: Build Y2 Enoneergtod\n\n17) MadWuher: Discover Y1 Edora B1 Bologna\n\n18) efwin: Trade Y2 G2 Enoneergtod\n\n19) MadWuher: Build G2 Edora\n\n20) efwin: Build Y2 Enoneergtod\n\n21) MadWuher: Sacrifice G2 Edora\nBuild Y3 Edora\nBuild Y3 Bologna\n\n22) efwin: Trade Y2 G2 Efwin\n\n23) MadWuher: Trade G1 R1 Madwuher\n\n24) efwin: Discover G2 Enoneergtod Y2 Owtwolleytod\n\tefwin: Defense seemed like the prudent choice\n\n25) MadWuher: Build G1 Madwuher\n\n26) efwin: Build G2 Owtwolleytod\n\n27) MadWuher: Build G3 Edora\n\n28) efwin: Trade Y1 R1 Enoneergtod\n\n29) MadWuher: Trade G3 R3 Edora\n\n30) efwin: Move B1 Enoneergtod Owtwolleytod\n\tefwin: Strategy question -- I see that I could have sacrificed one of my yellow ships and moved greens to your homeworld or yellows to Bolonga to cause a catastrophe -- but it seemed like I would have had to have spent too many resources for what would have been a more or less even tradeoff of the ships -- am I thinking about that right? Do you typically only catastrophe if you hurt the opponent more than yourself? \n\tMadWuher: Right. Typically only cause catastrophes if you will end up ahead in the numbers game, or you take out more points of ships than you are losing. Right now, I could cause you to lose your 2 green 2's by losing only 4 points of ships (sac a y2 and move my g1's into owtwolleytod (DotYellowTwo??? interesting naming habit)) I'm just looking to see if there are any other options available for me. \n\n31) MadWuher: Build G3 Edora\n\n32) efwin: Trade G2 R2 Owtwolleytod\n\tefwin: OK, thanks for confirming that -- Not sure if I'll stick with the naming thing - when I had to name the first one, I thought "one green dot" and then just flipped each word -- but I guess "green one dot" or "one dot green" are really more accurate so maybe I'll have to switch things around the next game...\n\tMadWuher: Oh-oh. You might want to take that move back.......\r\n\r\n\n\tefwin: Thanks -- I only counted two green ships and thought I was safe (still learning)\n\n33) MadWuher: Discover G3 Edora Y1 Camelot\n\n34) efwin: Build G2 Owtwolleytod\n\n35) MadWuher: Move G1 Madwuher Edora\n\n36) efwin: Build R1 Enoneergtod\n\n37) MadWuher: Build R2 Madwuher\n\n38) efwin: Build R2 Owtwolleytod\n\n39) MadWuher: Discover R2 Madwuher B2 Dualla\n\n40) efwin: Discover G2 Owtwolleytod R3 Eerhtdertod\n\n41) MadWuher: Sacrifice G1 Edora\nBuild R3 Dualla\n\tefwin: I'm thinking that the fact that you have five size 3 ships and I have one, is not so good for me\n\n42) efwin: Sacrifice Y2 Enoneergtod\nMove R1 Enoneergtod Dualla\nMove R1 Enoneergtod Dualla\nCatastrophe Dualla R\n\n43) MadWuher: Build Y2 Edora\n\n44) efwin: Discover R2 Owtwolleytod G1 Enoneergtod\n\n45) MadWuher: Move Y3 Edora Enoneergtod\n\n46) efwin: Build R1 Owtwolleytod\n\n47) MadWuher: Sacrifice R1 Madwuher\nAttack R2 Enoneergtod\n\tefwin: Sacrifice question (v. hypothetical - I'm not planning anything) -- if you sacrifice a red ship, do you affect only ships up to the size of the sacrificed red ship in the other star systems, or can you affect a ship up to the largest size of a ship you have in that star system -- for example, I foolishly move my Y3 to Bologna, can you sacrifice your R1 @ MadWuher and attack my Y3 with your Y3 there, or not?\n\tMadWuher: Here are some options:\r\nIf you move an R3 into MadWuher I can attack it without sacrificing my r1 there. I have access to the technology at my homeworld so I can use it. \r\nIf instead you get your y3 to Camelot then I cannot attack your y3 without a sacrifice because I do not have access to red at that system. By sacrificing any size red at any system I can use the red power (attacking) at any system. If I sacrifice a sized 2 red ship, then I can make two attacks (each at different systems if I'd like). If I sacrifice a sized 2 ship, and I only wanted one attack action, then I type pass as my second attack action.\r\n\r\nDoes this make sense??\n\n48) efwin: Build G1 Owtwolleytod\n\n49) MadWuher: Move R3 Edora Madwuher\n\tefwin: OK, thanks -- that makes sense. I think I was confused by the red having the size comparison aspect... and I wasn't considering that access to technology = ability to use that technology with any ship in the system\n\n50) efwin: Build B1 Owtwolleytod\n\n51) MadWuher: Move Y3 Bologna Owtwolleytod\n\tefwin: Nice demonstration!\n\n52) efwin: Move R2 Owtwolleytod Bologna\n\tMadWuher: Always glad to show a bit of finesse, if I get the chance. =D\n\n53) MadWuher: Sacrifice Y1 Bologna\nDiscover G1 Edora Y1 Darfur\n\tefwin: Lack of yellow is going to be problematic for implementing any kind of galaxy-wide plans\n\n54) efwin: Move B1 Owtwolleytod Bologna\n\n55) MadWuher: Sacrifice R2 Enoneergtod\nAttack R1 Owtwolleytod\nAttack G2 Owtwolleytod\n\n56) efwin: Sacrifice G2 Eerhtdertod\nBuild B2 Owtwolleytod\nBuild B3 Bologna\n\n57) MadWuher: Build G2 Camelot\n\n58) efwin: Trade B3 R3 Bologna\n\n59) MadWuher: Attack B2 Owtwolleytod\n\n60) efwin: Move G1 Owtwolleytod Bologna\n\n61) MadWuher: Attack B1 Owtwolleytod\n\n62) efwin: Trade G2 R2 Efwin\n\n63) MadWuher: Build G2 Owtwolleytod\n\n64) efwin: Build R1 Efwin\n\n65) MadWuher: Move B1 Owtwolleytod Camelot\n\tefwin: Didn't seem to have any better options, but maybe I missed something\n\n66) efwin: Move R2 Efwin Darfur\n\n67) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Darfur\nBuild B3 Camelot\nBuild B3 Owtwolleytod\n\n68) efwin: Attack G1 Darfur\n\n69) MadWuher: Sacrifice R1 Owtwolleytod\nAttack R2 Darfur\n\n70) efwin: Discover G1 Darfur R3 Eerhtdertodii\n\n71) MadWuher: Move G2 Owtwolleytod Madwuher\n\n72) efwin: Build R1 Efwin\n\n73) MadWuher: Sacrifice G3 Camelot\nBuild G3 Camelot\nBuild R1 Darfur\nBuild R2 Madwuher\n\tefwin: not sure why trading an R2 for a G1 seemed like a good idea to me two moves ago....\n\n74) efwin: Move R1 Efwin Camelot\n\n75) MadWuher: Sacrifice R1 Darfur\nAttack R1 Camelot\n\n76) efwin: Build R1 Efwin\n\n77) MadWuher: Move B2 Owtwolleytod Darfur\n\tefwin: Is the goal of this game to own all of the stuff? :-)\n\n78) efwin: Move R1 Efwin Enoneergtod\n\tMadWuher: I thought I'd give it a try. =)\n\n79) MadWuher: Sacrifice Y3 Owtwolleytod\nMove B1 Camelot Efwin\nMove B3 Camelot Efwin\nMove B2 Darfur Efwin\nCatastrophe Efwin B\n\n80) efwin: Sacrifice Y3 Efwin\nMove G1 Eerhtdertodii Camelot\nMove G1 Bologna Edora\nMove G1 Edora Camelot\nCatastrophe Camelot G\n\n81) MadWuher: Move G3 Darfur Efwin\n\n82) efwin: Build R3 Efwin\n\n83) MadWuher: Sacrifice G2 Madwuher\nBuild G1 Efwin\nBuild G1 Efwin\nCatastrophe Efwin G\n\tMadWuher: One down.\r\n\r\nOne to go.\n\n\tefwin: well, you'll have to do a little extra typing to win, this way :-) Thanks for the game and the advice\n\tMadWuher: Thanks for the game.\n\nHomeworlds Online (SDG# 13101)\nStarted: 2009.4.8, Ended: 2011.2.6\nParticipants: Bubba_G (S), MikeYarrum (N)\nWinner: MikeYarrum\n\n\tBubba_G: homeworld green 3 yellow 1 3 red\n\tBubba_G: homeworld G3 Y1 3R\n\nHomeworlds Online (SDG# 13247)\nVariants: "Unrated"\nStarted: 2009.4.8, Ended: 2009.6.23\nParticipants: jeep (S), TwoShort (N)\nWinner: jeep\n\n1) TwoShort: Homeworld B1 R2 G3\n\n2) jeep: Homeworld B1 R2 G3\n\tjeep: Wow, didn't take fortress because you want to see if you can get out of it? I'm sure you won't have quite so many wasted moves. ;)\n\n3) TwoShort: Pass\n\n4) jeep: Build G1 Jeep\n\tTwoShort: Well, I figured the point of playing an unrated game was to do the experiment. If taking fortress is the way to go, then I'm convinced 2nd1st is worse than 1st1st; ditto for the other opening I considered: g1b2-G3. They might stop the one strategy, but even if they do I think they're not as good as being second in 1st1st.\n\n5) TwoShort: Build G1 Twoshort\n\n6) jeep: Trade G1 B1 Jeep\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) jeep: Build B2 Jeep\n\n9) TwoShort: Build Y1 Twoshort\n\n10) jeep: Trade B2 Y2 Jeep\n\n11) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n12) jeep: Build B2 Jeep\n\n13) TwoShort: Build Y1 Grogar\n\n14) jeep: Build Y2 Jeep\n\n15) TwoShort: Build Y2 Twoshort\n\n16) jeep: Discover Y2 Jeep B3 Moon\n\n17) TwoShort: Trade Y2 B2 Twoshort\n\tjeep: I think making this a small universe was a mistake.\n\n18) jeep: Move B2 Jeep Grogar\n\tjeep: Hmm... I feel like I should go total aggro to get you out of blue again, but wonder if that is smart. ;)\n\tTwoShort: I agree about the small universe. If I'd done it with red I could have immediately attacked everything you moved out of your Homeworld. But in terms of going for the monopoly, Goldilocks is better because you could have built a b2 instead of your second y2, then moved to the last b2 before I got it.\n\tTwoShort: As far as the all out attack to get me out of blue again, I'm refraining from comment at the insistence of my competitive nature :)\n\n19) TwoShort: Discover B2 Twoshort Y3 Yolonda\n\n20) jeep: Sacrifice G3 Jeep\nBuild Y2 Moon\nBuild Y3 Jeep\nBuild B2 Grogar\n\n21) TwoShort: Build Y3 Twoshort\n\n22) jeep: Sacrifice Y2 Jeep\nMove Y2 Moon Twoshort\nMove Y2 Moon Twoshort\nCatastrophe Twoshort Yellow\n\n23) TwoShort: Build G1 Twoshort\n\n24) jeep: Trade B2 R2 Grogar\n\tTwoShort: I saw that catastrophe coming and decided the net result of my build and that was a positive for me. But, ouch! Somehow I feel much more doomed now.\n\tjeep: Nod, it was net positive for you. Now I have three different things that I want to do... I need to determine what the right order is.\n\tjeep: Sorry, Easter yesterday and tonight is busy, so probably no move until tomorrow.\n\n25) TwoShort: Trade G1 Y1 Twoshort\n\n26) jeep: Attack Y1N Grogar\n\n27) TwoShort: Build Y2 Grogar\n\n28) jeep: Attack Y2N Grogar\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\nCatastrophe Grogar Yellow\n\n30) jeep: Build B2 Grogar\n\n31) TwoShort: Trade Y3 G3 Twoshort\n\tjeep: I missed something important... oops. Oh well.\n\n32) jeep: Build B3 Grogar\n\n33) TwoShort: Sacrifice Y2 Twoshort\nMove B2 Yolonda Twoshort\nMove B2 Twoshort Grogar\nCatastrophe Grogar Blue\n\n34) jeep: Trade Y3 G3 Jeep\n\tjeep: I forgot I needed to spend a turn to get green... boy, I suck.\n\n35) TwoShort: Build G1 Twoshort\n\n36) jeep: Build B2 Jeep\n\n37) TwoShort: Build Y1 Twoshort\n\n38) jeep: Trade B2 Y2 Jeep\n\n39) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n40) jeep: Build B2 Jeep\n\n41) TwoShort: Build Y1 Twoshort\n\n42) jeep: Discover B2 Jeep Y3 Submarine\n\n43) TwoShort: Build Y2 Twoshort\n\n44) jeep: Build B2 Jeep\n\n45) TwoShort: Discover Y1 Twoshort B3 Bonbon\n\n46) jeep: Build Y2 Jeep\n\tjeep: Sorry for the delay. This is hard and I haven't had time to really study this.\n\n47) TwoShort: Trade Y2 B2 Twoshort\n\n48) jeep: Move B2 Jeep Grogar\n\n49) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bonbon\nBuild Y3 Twoshort\n\n50) jeep: Move Y2 Jeep Bluestar\n\n51) TwoShort: Trade Y1 R1 Bonbon\n\tjeep: You never let me complete any of my plans... I guess I need better plans.\n\n52) jeep: Sacrifice R2 Grogar\nAttack Y2N Bluestar\nAttack Y1N Bluestar\n\n53) TwoShort: Move Y1 Twoshort Bluestar\nCatastrophe Bluestar Yellow\n\n54) jeep: Build B3 Grogar\n\n55) TwoShort: Discover B2 Twoshort G3 Guessso\n\n56) jeep: Build B3 Grogar\n\n57) TwoShort: Build G1 Twoshort\n\tjeep: Hmm... Eventually, I'll figure out how to get into a situation where I can pull the trigger, but it's taking me forever to figure it out.\n\n58) jeep: Trade B2 R2 Grogar\n\n59) TwoShort: Build B2 Guessso\n\n60) jeep: Trade B3 R3 Grogar\n\tTwoShort: sorry to take so long... life has been hectic, and I keep wanting to find a good move where there isn't one...\n\tjeep: No problem. I know the feeling. ;)\n\tjeep: Yeah, I feel I have a couple good moves... not sure which one I want to take... immediate gain or trying to set up a checkmate.\n\n61) TwoShort: Trade Y3 R3 Bonbon\n\n62) jeep: Build B3 Grogar\n\n63) TwoShort: Build G1 Twoshort\n\tjeep: So last turn, should I have moved the two B3s into your homeworld and forced you to catastrophe them away? I figured this forced you to spend a turn changing color and keeps me moving towards doomsday.\n\tTwoShort: I think you probably made the right choice. One of the classic ways to blow a dominant position like yours is to use up all your piece advantage destroying half a homeworld. You don't necessarily need to wait for a full doomsday machine, but you want to be looking at the situation after blowing up the first half, and feel like there's no way they can stop you. And my general rule is any move that forces the opponent to make one specific move in response is probably good, because that's probably not what they wanted to be doing.\n\n64) jeep: Trade B3 Y3 Grogar\n\n65) TwoShort: Move G1 Twoshort Grogar\n\n66) jeep: Build G2 Jeep\n\n67) TwoShort: Trade B2 Y2 Guessso\n\n68) jeep: Sacrifice Y2 Jeep\nDiscover R3 Grogar Y2 Movers\nDiscover Y3 Grogar G2 Shakers\n\tjeep: Sorry, thinking.\n\tjeep: Or, more accurately, waiting for some time to think... should move tomorrow.\n\tTwoShort: No rush\n\n69) TwoShort: Build B2 Guessso\n\tjeep: I almost didn't check tonight. Sorry for the delay, we're two weeks behind schedule and I have family in town. ;)\n\n70) jeep: Build B3 Grogar\n\n71) TwoShort: Sacrifice G1 Grogar\nBuild R1 Bonbon\n\n72) jeep: Move R3 Movers Bonbon\nCatastrophe Bonbon Red\n\n73) TwoShort: Sacrifice Y2 Guessso\nMove B2 Guessso Jeep\nMove B2 Guessso Jeep\nCatastrophe Jeep Blue\n\n74) jeep: Sacrifice G2 Jeep\nBuild B1 Submarine\nBuild B1 Submarine\n\n75) TwoShort: Trade G1 R1 Twoshort\n\n76) jeep: Sacrifice Y3 Shakers\nMove B3 Grogar Twoshort\nMove B3 Grogar Twoshort\nMove B2 Submarine Jeep\n\n\tTwoShort: good game!\n\tjeep: Thanks, it was a good game. I think that is a decent handicap for us. ;) I still had to think to get the win and you were able to hold out for a long time. I think that it shows that 2nd1st is pretty unbalanced.\n\nHomeworlds Online (SDG# 13102)\nStarted: 2009.4.9, Ended: 2009.4.22\nParticipants: TwoShort (S), Orl (N)\nWinner: TwoShort\n\n1) Orl: Homeworld B2 Y1 G3\n\tTwoShort: Howdy\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) Orl: Build G1 Orl\n\tOrl: Hi, have a good game!\n\n4) TwoShort: Build G1 Twoshort\n\n5) Orl: Discover G1 Orl B3 Nova\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Orl: Build G1 Nova\n\n8) TwoShort: Build Y1 Twoshort\n\n9) Orl: Build G1 Nova\n\n10) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n11) Orl: Build G2 Orl\n\n12) TwoShort: Build Y2 Grogar\n\n13) Orl: Trade G2 Y2 Orl\n\n14) TwoShort: Build G2 Twoshort\n\n15) Orl: Trade G1 R1 Nova\n\n16) TwoShort: Discover Y2 Grogar B3 Bluestar\n\n17) Orl: Move Y2 Orl Nova\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\nBuild Y3 Bluestar\n\n19) Orl: Build Y3 Nova\n\n20) TwoShort: Sacrifice Y2 Bluestar\nMove Y1 Grogar Nova\nMove Y2 Grogar Nova\nCatastrophe Nova Yellow\n\n21) Orl: Trade G1 Y1 Nova\n\n22) TwoShort: Build Y2 Twoshort\n\n23) Orl: Build Y2 Nova\n\n24) TwoShort: Discover Y1 Twoshort B2 Bonanza\n\n25) Orl: Build G1 Nova\n\n26) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bonanza\n\n27) Orl: Trade G1 B1 Nova\n\n28) TwoShort: Trade Y2 R2 Bluestar\n\n29) Orl: Build G1 Orl\n\n\n30) TwoShort: Trade Y3 G3 Bonanza\n\n31) Orl: Move Y1 Nova Orl\n\n\tTwoShort: Red Alert\n\n32) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Bonanza Bluestar\nMove G3 Bluestar Orl\nMove Y3 Bluestar Orl\n\n33) Orl: Move R1 Nova Orl\n\n34) TwoShort: Sacrifice R2 Bluestar\nAttack G3 Orl\nAttack R1 Orl\n\n35) Orl: Move G1 Nova Orl\nCatastrophe Orl G\n\n36) TwoShort: Attack Y1 Orl\n\tOrl: good game. I have to learn more this game...\n\tTwoShort: Thanks for the game.\n\n\nHomeworlds Online (SDG# 13253)\nStarted: 2009.4.11, Ended: 2009.5.2\nParticipants: TwoShort (S), agentofchaos (N)\nWinner: TwoShort\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\tagentofchaos: Hi again, enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) TwoShort: Build G1 Twoshort\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) TwoShort: Build G1 Twoshort\n\n9) agentofchaos: Discover Y1 Agentofchaos G3 Myxo\n\n10) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n11) agentofchaos: Trade G1 R1 Agentofchaos\n\n12) TwoShort: Build Y1 Twoshort\n\n13) agentofchaos: Build Y2 Myxo\n\n14) TwoShort: Move Y1 Twoshort Bluestar\n\n15) agentofchaos: Build R1 Agentofchaos\n\n16) TwoShort: Build Y2 Bluestar\n\n17) agentofchaos: Move Y2 Myxo Bluestar\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Twoshort\nBuild Y3 Twoshort\nCatastrophe Bluestar Yellow\n\n19) agentofchaos: Trade R1 Y1 Agentofchaos\n\n20) TwoShort: Trade Y3 G3 Twoshort\n\n21) agentofchaos: Build Y2 Myxo\n\n22) TwoShort: Move Y3 Twoshort Bluestar\n\n23) agentofchaos: Build Y2 Agentofchaos\n\n24) TwoShort: Discover G1 Bluestar Y3 Yolonda\n\n25) agentofchaos: Trade Y1 B1 Agentofchaos\n\n26) TwoShort: Build G1 Twoshort\n\n27) agentofchaos: Build G1 Agentofchaos\n\n28) TwoShort: Build G2 Yolonda\n\n29) agentofchaos: Discover G1 Agentofchaos Y3 Zurvan\n\n30) TwoShort: Move G1 Yolonda Bluestar\n\n31) agentofchaos: Discover Y2 Myxo B2 Seti\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Bluestar\nBuild G3 Twoshort\n\n33) agentofchaos: Move R1 Agentofchaos Myxo\n\n34) TwoShort: Trade G2 R2 Bluestar\n\n35) agentofchaos: Move Y1 Myxo Seti\n\n36) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild Y1 Bluestar\n\n37) agentofchaos: Build Y2 Agentofchaos\n\n38) TwoShort: Trade G1 B1 Bluestar\n\n39) agentofchaos: Trade Y1 G1 Seti\n\n40) TwoShort: Move B1 Bluestar Yolonda\n\n41) agentofchaos: Move B1 Agentofchaos Zurvan\n\n42) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Yolonda\nBuild B3 Yolonda\nBuild G3 Twoshort\n\n43) agentofchaos: Sacrifice Y2 Agentofchaos\nMove B1 Zurvan Seti\nMove B1 Seti Yolonda\nCatastrophe Yolonda B\n\n44) TwoShort: Trade Y1 B1 Bluestar\n\n45) agentofchaos: Build Y1 Seti\n\n46) TwoShort: Move G2 Bluestar Zurvan\n\n47) agentofchaos: Trade G3 R3 Agentofchaos\n\n48) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Zurvan\nBuild G3 Yolonda\n\n49) agentofchaos: Discover G1 Zurvan Y2 Titan\n\n50) TwoShort: Trade G1 B1 Twoshort\n\n51) agentofchaos: Build G1 Titan\n\n52) TwoShort: Sacrifice G2 Yolonda\nBuild B3 Bluestar\nBuild B3 Twoshort\n\n53) agentofchaos: Build G2 Seti\n\n54) TwoShort: Sacrifice Y3 Bluestar\nMove B3 Bluestar Yolonda\nMove B3 Yolonda Agentofchaos\nMove G3 Yolonda Agentofchaos\n\n55) agentofchaos: Attack B3 Agentofchaos\n\n56) TwoShort: Sacrifice R2 Bluestar\nAttack R3 Agentofchaos\nAttack B3 Agentofchaos\n\n57) agentofchaos: Sacrifice G2 Seti\nBuild Y1 Agentofchaos\nBuild Y3 Agentofchaos\n\n58) TwoShort: Trade B3 Y3 Agentofchaos\nCatastrophe Agentofchaos Yellow\n\tagentofchaos: gg\n\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 13193)\nStarted: 2009.4.13, Ended: 2009.4.30\nParticipants: ts52 (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld R1 B2 G3\n\n2) ts52: Homeworld R2 B3 G3\n\n3) jeep: Build G1 Jeep\n\tts52: Have a good game!\n\tjeep: You too.\n\n4) ts52: Build G1 Ts52\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) jeep: Build G1 Jeep\n\n8) ts52: Build G1 Ts52\n\n9) jeep: Discover G1 Jeep B3 Moon\n\n10) ts52: Discover G1 Ts52 B1 Grover\n\n11) jeep: Discover Y1 Jeep G3 Thumb\n\n12) ts52: Move Y1 Ts52 Grover\n\n13) jeep: Build G1 Moon\n\n14) ts52: Build G2 Ts52\n\n15) jeep: Trade G1 Y1 Moon\n\tjeep: BAH! That was supposed to be build in jeep, not Moon... *sigh* sloppy\n\n16) ts52: Build Y2 Grover\n\n17) jeep: Build Y2 Moon\n\n18) ts52: Move Y1 Grover Ts52\n\n19) jeep: Build G1 Jeep\n\n20) ts52: Build G2 Grover\n\n21) jeep: Trade G1 R1 Jeep\n\n22) ts52: Trade G1 R1 Grover\n\n23) jeep: Build G1 Jeep\n\n24) ts52: Build R2 Grover\n\n25) jeep: Move Y1 Moon Jeep\n\n26) ts52: Discover R2 Grover Y3 Bigbird\n\n27) jeep: Sacrifice G3 Jeep\nBuild Y2 Thumb\nBuild Y3 Moon\nBuild Y3 Jeep\n\n28) ts52: Discover R1 Grover G3 Kermit\n\n29) jeep: Move Y3 Moon Grover\n\n30) ts52: Move Y2 Grover Kermit\n\n31) jeep: Sacrifice R1 Jeep\nAttack G2S Grover\n\n32) ts52: Discover G2 Ts52 B1 Gonzo\n\n33) jeep: Build G1 Grover\n\n34) ts52: Build G2 Gonzo\n\n35) jeep: Discover G1 Moon B1 Stage\n\n36) ts52: Trade G3 R3 Ts52\n\n37) jeep: Build G3 Stage\n\n38) ts52: Move Y2 Kermit Gonzo\n\n39) jeep: Trade G2 R2 Grover\n\n40) ts52: Sacrifice G2 Gonzo\nBuild R1 Kermit\nBuild R3 Bigbird\n\n41) jeep: Sacrifice G3 Stage\nBuild G2 Grover\nBuild G2 Stage\nBuild G3 Jeep\n\n42) ts52: Move R3 Bigbird Stage\n\n43) jeep: Sacrifice G2 Stage\nBuild R3 Grover\nBuild G2 Grover\n\n44) ts52: Sacrifice Y2 Gonzo\nMove R1 Kermit Grover\nMove R1 Kermit Grover\nCatastrophe Grover Red\n\n45) jeep: Trade G2 R2 Grover\n\n46) ts52: Build G2 Gonzo\n\n47) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild G3 Grover\nBuild Y2 Grover\n\n48) ts52: Attack G1 Stage\n\n49) jeep: Build R1 Grover\n\n50) ts52: Sacrifice Y1 Ts52\nMove R3 Stage Thumb\n\n51) jeep: Sacrifice Y2 Thumb\nMove R1 Grover Ts52\nMove R2 Grover Ts52\nCatastrophe Ts52 Red\n\tjeep: Thanks for the game.\n\tts52: Thanks. Good game. \n\tjeep: Want to play again?\n\tts52: Sure, I'd be happy to play again.\n\n\nHomeworlds Online (SDG# 13105)\nStarted: 2009.4.13, Ended: 2009.6.16\nParticipants: jeep (S), MadWuher (N)\nWinner: jeep\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) jeep: Homeworld B1 R2 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) jeep: Build G1 Jeep\n\tjeep: Heh, oops, I didn't mean to create a small universe... I meant to go goldilocks. This will be interesting.\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) jeep: Trade G1 Y1 Jeep\n\tMadWuher: I am so unprepared for the small universe start. Well, it should be interesting. \n\n7) MadWuher: Build G1 Madwuher\n\n8) jeep: Build G1 Jeep\n\n9) MadWuher: Discover G1 Madwuher Y3 Edora\n\n10) jeep: Discover G1 Jeep Y3 Submarine\n\n11) MadWuher: Build G1 Madwuher\n\n12) jeep: Build G2 Jeep\n\n13) MadWuher: Trade G1 B1 Madwuher\n\n14) jeep: Discover G2 Jeep B3 Moon\n\n15) MadWuher: Build G1 Madwuher\n\n16) jeep: Move G1 Submarine Madwuher\n\n17) MadWuher: Trade G3 Y3 Madwuher\n\n18) jeep: Build G2 Moon\n\tjeep: Bah! I was going to factory... but forgot I can't put another green in my homeworld.\n\n19) MadWuher: Attack G1 Madwuher\n\n20) jeep: Trade G2 Y2 Moon\n\n21) MadWuher: Build G2 Edora\n\n22) jeep: Build G2 Moon\n\n23) MadWuher: Trade G1 R1 Madwuher\n\n24) jeep: Build Y1 Moon\n\n25) MadWuher: Discover Y1 Madwuher G3 Bologna\n\n26) jeep: Trade Y1 R1 Moon\n\n27) MadWuher: Move R1 Madwuher Edora\n\n28) jeep: Sacrifice G2 Moon\nBuild Y1 Moon\nBuild Y2 Moon\n\n29) MadWuher: Build Y2 Bologna\n\n30) jeep: Build Y3 Jeep\n\n31) MadWuher: Build R2 Edora\n\n32) jeep: Build R2 Moon\n\n33) MadWuher: Discover R2 Edora B1 Camelot\n\n34) jeep: Move Y1 Moon Madwuher\n\n35) MadWuher: Attack Y1 Madwuher\n\n36) jeep: Sacrifice Y3 Jeep\nMove Y2 Moon Madwuher\nMove Y2 Moon Madwuher\nMove G2 Moon Madwuher\nCatastrophe Madwuher Yellow\n\n37) MadWuher: Sacrifice G2 Edora\nBuild G1 Madwuher\nBuild G2 Madwuher\nCatastrophe Madwuher G\n\n38) jeep: Sacrifice Y1 Jeep\nMove R2 Moon Madwuher\n\n39) MadWuher: Sacrifice Y2 Bologna\nMove R2 Camelot Bologna\nMove R2 Bologna Madwuher\n\tMadWuher: The small universe start really threw me. No chance to recover since then. =)\n\n40) jeep: Attack R2N Madwuher\n\n41) MadWuher: Move R1 Edora Madwuher\nCatastrophe Madwuher R\n\n42) jeep: Build G1 Jeep\n\n43) MadWuher: Build Y1 Bologna\n\tjeep: Yeah, it's quite the uphill battle for you now. I'm good at screwing up won positions, though.\n\n44) jeep: Trade G1 Y1 Jeep\n\n45) MadWuher: Trade B1 R1 Madwuher\n\n46) jeep: Build Y2 Jeep\n\n47) MadWuher: Move Y1 Bologna Madwuher\n\n48) jeep: Sacrifice Y1 Jeep\nDiscover Y2 Jeep G3 Thumb\n\n49) MadWuher: Build G1 Edora\n\n50) jeep: Move Y2 Thumb Madwuher\n\n51) MadWuher: Sacrifice G1 Edora\nBuild R1 Madwuher\n\tjeep: Sorry for the delay.\n\tMadWuher: Not a problem. \n\n52) jeep: Build G1 Jeep\n\n53) MadWuher: Build G1 Edora\n\n54) jeep: Trade G3 R3 Jeep\n\n55) MadWuher: Sacrifice G1 Edora\nBuild R2 Madwuher\n\n56) jeep: Sacrifice R3 Jeep\nAttack R1N Madwuher\nAttack R1N Madwuher\nAttack R2N Madwuher\n\n\tMadWuher: Thanks for the game. I was trying to think of what I could do to stave off elimination, but to no avail.\n\tjeep: Thanks for the game.\n\nHomeworlds Online (SDG# 13173)\nVariants: "Hard time"\nStarted: 2009.4.14, Ended: 2009.4.30\nParticipants: Wheatberry (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\tJesse: Hello, and have a good game.\n\n2) Wheatberry: Homeworld R2 G1 B3\n\n3) Jesse: Build G1 Jesse\n\n\tWheatberry: Hi, Jesse. Back atcha. :)\n\n4) Wheatberry: Build B1 Wheatberry\n\tJesse: It's generally not a good idea to make your small system marker the same color as your opponent's ship. This will quickly make it difficult for you to get into green.\n\n5) Jesse: Build G1 Jesse\n\tWheatberry: Hrm, thanks. I'll remember that next time...\n\n6) Wheatberry: Trade B1 Y1 Wheatberry\n\n7) Jesse: Trade G3 Y3 Jesse\n\n8) Wheatberry: Build Y1 Wheatberry\n\n9) Jesse: Discover G1 Jesse B2 Disc\n\n10) Wheatberry: Trade B3 G3 Wheatberry\n\n11) Jesse: Build G2 Jesse\n\tWheatberry: Hmm... that's not going to work either... this is a miserable start.\n\n12) Wheatberry: Discover G3 Wheatberry B3 Donjon\n\n13) Jesse: Build G2 Disc\n\tWheatberry: When in doubt, try something crazy... :)\n\n14) Wheatberry: Build G2 Donjon\n\n15) Jesse: Sacrifice Y3 Jesse\nMove G2 Jesse Disc\nMove G1 Disc Donjon\nMove G2 Disc Donjon\nCatastrophe Donjon G\n\n16) Wheatberry: Discover Y1 Wheatberry B3 Deep\n\n17) Jesse: Build G1 Disc\n\n\n18) Wheatberry: Build Y1 Wheatberry\n\n19) Jesse: Build G2 Jesse\n\n\n20) Wheatberry: Build Y2 Wheatberry\n\n21) Jesse: Build G2 Jesse\n\n22) Wheatberry: Trade Y1 B1 Deep\n\n23) Jesse: Build G3 Disc\n\n24) Wheatberry: Move Y1 Wheatberry Deep\n\n25) Jesse: Trade G3 Y3 Disc\n\n26) Wheatberry: Move B1 Deep Wheatberry\n\n27) Jesse: Discover G2 Disc Y3 Ring\n\n28) Wheatberry: Trade Y1 R1 Wheatberry\n\n29) Jesse: Build G3 Disc\n\n30) Wheatberry: Build Y1 Wheatberry\n\n31) Jesse: Sacrifice G3 Disc\nBuild G3 Disc\nBuild G3 Ring\nBuild G3 Disc\n\n\tWheatberry: Pah, no point in playing out this massacre from here. I won't be able to build a large ship in time to stop you from sweeping my homeworld. Well done.\n\nHomeworlds Online (SDG# 13196)\nVariants: "Unrated, Hard time"\nStarted: 2009.4.14, Ended: 2009.5.5\nParticipants: agentofchaos (S), Mouce (N)\nWinner: Mouce\n\n1) Mouce: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) Mouce: Build G1 Mouce\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Mouce: Discover G1 Mouce B3 Hole\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Mouce: Build G1 Hole\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) Mouce: Trade G1 Y1 Hole\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) Mouce: Build Y2 Hole\n\n12) agentofchaos: Discover Y2 Agentofchaos G2 Galdr\n\n13) Mouce: Move Y1 Hole Galdr\n\n14) agentofchaos: Trade Y1 R1 Agentofchaos\n\n15) Mouce: Discover Y1 Galdr B3 Twitch\n\n16) agentofchaos: Build G1 Agentofchaos\n\n17) Mouce: Build G1 Mouce\n\n18) agentofchaos: Move G1 Agentofchaos Galdr\n\n19) Mouce: Build G2 Hole\n\n20) agentofchaos: Build G2 Agentofchaos\n\n21) Mouce: Move G1 Hole Galdr\n\n22) agentofchaos: Discover G1 Galdr Y3 Spunk\n\n23) Mouce: Build G3 Hole\n\n24) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Galdr\nBuild Y3 Agentofchaos\nBuild G3 Spunk\n\n25) Mouce: Trade G3 R3 Mouce\n\tagentofchaos: 'Abstract wrestling' - that's a clever way of describing this game, quite apt. \n\n26) agentofchaos: Trade Y1 B1 Agentofchaos\n\n27) Mouce: Sacrifice G3 Hole\nBuild G3 Hole\nBuild Y1 Hole\nBuild Y3 Twitch\n\n28) agentofchaos: Sacrifice G3 Spunk\nBuild G3 Agentofchaos\nBuild B1 Agentofchaos\nBuild G3 Spunk\n\n29) Mouce: Sacrifice Y1 Twitch\nMove G1 Galdr Agentofchaos\n\n30) agentofchaos: Move G2 Agentofchaos Galdr\n\n31) Mouce: Sacrifice G2 Hole\nBuild G2 Agentofchaos\nBuild R1 Mouce\n\n32) agentofchaos: Discover G3 Agentofchaos R2 Panik\n\n33) Mouce: Trade G2 B2 Agentofchaos\nCatastrophe Agentofchaos Blue\n\n34) agentofchaos: Attack G1 Agentofchaos\n\n35) Mouce: Trade Y2 R2 Hole\n\n36) agentofchaos: Move R1 Agentofchaos Spunk\n\n37) Mouce: Build R2 Hole\n\n38) agentofchaos: Build R3 Spunk\n\n39) Mouce: Sacrifice Y3 Twitch\nMove R2 Hole Agentofchaos\nMove R2 Hole Agentofchaos\nMove R1 Mouce Hole\n\n40) agentofchaos: Attack R2 Agentofchaos\n\tMouce: Glad you started yet another game! I look forward to it.\n\n41) Mouce: Move R1 Hole Agentofchaos\nCatastrophe Agentofchaos Red\n\tagentofchaos: Looks like the end is nigh! I'm hoping I'll do better in our other game. :-)\n\n\nHomeworlds Online (SDG# 13344)\nVariants: "Hard time"\nStarted: 2009.4.23, Ended: 2009.8.6\nParticipants: fnord (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld B2 G3 Y3\n\n2) fnord: Homeworld Y1 B2 G3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) fnord: Build G1 Fnord\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) fnord: Discover G1 Fnord B3 Eris\n\n7) Subhan64: Build Y1 Subhan64\n\n8) fnord: Build G1 Eris\n\n9) Subhan64: Build G2 Subhan64\n\n10) fnord: Trade G1 Y1 Eris\n\n11) Subhan64: Trade G2 R2 Subhan64\n\n12) fnord: Build G1 Fnord\n\n13) Subhan64: Build G2 Subhan64\n\n14) fnord: Sacrifice G3 Fnord\nBuild G2 Fnord\nBuild G2 Fnord\nBuild G3 Eris\n\n15) Subhan64: Discover Y1 Subhan64 B1 Vogon12\n\n16) fnord: Trade G2 R2 Fnord\n\n17) Subhan64: Build Y2 Subhan64\n\n18) fnord: Trade Y1 R1 Eris\n\n19) Subhan64: Trade G2 R2 Subhan64\n\n20) fnord: Build R1 Fnord\n\n21) Subhan64: Trade Y3 R3 Subhan64\n\n22) fnord: Trade G1 B1 Fnord\n\n23) Subhan64: Move R3 Subhan64 Vogon12\n\n24) fnord: Trade G1 Y1 Eris\n\tfnord: Gah! Thank you, for unknowingly pointing out a misunderstanding I've had in the ruled for quite a long time!\n\n25) Subhan64: Sacrifice Y2 Subhan64\nMove R3 Vogon12 Eris\nMove R3 Eris Fnord\n\n26) fnord: Sacrifice Y1 Eris\nMove R1 Eris Fnord\nCatastrophe Fnord Red\n\n27) Subhan64: Trade R2 Y2 Subhan64\n\n28) fnord: Build G1 Eris\n\n29) Subhan64: Move R2 Subhan64 Vogon12\n\n30) fnord: Trade G2 R2 Fnord\n\n31) Subhan64: Move R2 Vogon12 Eris\n\n32) fnord: Trade G1 Y1 Eris\n\n33) Subhan64: Attack Y1 Eris\n\n34) fnord: Trade R2 Y2 Fnord\n\n35) Subhan64: Move R2 Eris Fnord\n\n36) fnord: Sacrifice Y2 Fnord\nMove G3 Eris Fnord\nPass\n\n37) Subhan64: Build Y2 Subhan64\n\n38) fnord: Trade G3 R3 Fnord\n\n39) Subhan64: Sacrifice Y2 Subhan64\nMove R2 Fnord Eris\nMove R2 Eris Vogon12\n\n40) fnord: Trade B1 G1 Fnord\n\n41) Subhan64: Build Y2 Subhan64\n\n42) fnord: Build G1 Fnord\n\n43) Subhan64: Build G2 Subhan64\n\n44) fnord: Build G2 Fnord\n\n45) Subhan64: Move G1 Subhan64 Vogon12\n\n46) fnord: Move G2 Fnord Eris\n\n47) Subhan64: Trade Y2 R2 Subhan64\n\n48) fnord: Build G2 Eris\n\n49) Subhan64: Trade G1 R1 Vogon12\n\n50) fnord: Trade G2 Y2 Eris\n\n51) Subhan64: Move R2 Vogon12 Eris\n\n52) fnord: Move R3 Fnord Eris\n\n53) Subhan64: Sacrifice Y2 Subhan64\nMove R1 Vogon12 Eris\nMove R1 Eris Fnord\n\n54) fnord: Move Y2 Eris Fnord\n\n55) Subhan64: Move R2 Eris Fnord\n\n56) fnord: Sacrifice G2 Eris\nBuild Y2 Fnord\nBuild G1 Fnord\n\n57) Subhan64: Move Y1 Eris Fnord\nCatastrophe Fnord Yellow\n\n58) fnord: Trade R3 Y3 Eris\n\n59) Subhan64: Trade R2 G2 Fnord\nCatastrophe Fnord Green\n\n\tSubhan64: GG, thanks!\n\tfnord: Thanks for the game. I think I'm learning more, bit by bit, but this is a dense game.\n\tSubhan64: yeah, there's a lot going on!\n\nHomeworlds Online (SDG# 13279)\nStarted: 2009.4.28, Ended: 2009.5.1\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R3 B2 G3\n\n\nHomeworlds Online (SDG# 13361)\nStarted: 2009.4.28, Ended: 2009.5.1\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13362)\nStarted: 2009.4.28, Ended: 2009.5.1\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 13363)\nStarted: 2009.4.28, Ended: 2009.5.1\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13364)\nStarted: 2009.4.28, Ended: 2009.5.2\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 13365)\nStarted: 2009.4.28, Ended: 2009.5.2\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13277)\nVariants: "Hard time"\nStarted: 2009.4.29, Ended: 2009.5.10\nParticipants: CheshireSwift (S), headphoned (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) headphoned: Homeworld G1 B2 Y3\n\tagentofchaos: Hi everybody, thanks for playing, enjoy the game :-)\n\tCheshireSwift: You too!\n\n2) agentofchaos: Homeworld R3 B1 G3\n\theadphoned: I apologise in advance if I'm not very good. I can never talk anyone into playing icehouse games with me in real life, so this is my first time trying out Homeworlds. :)\n\tagentofchaos: Don't worry if you're not too good, I've only played a few games on this site, myself. The main thing is to have fun! :-)\n\n3) CheshireSwift: Homeworld G2 Y3 B3\n\tCheshireSwift: Well that makes two and a half of us, this is my first game too...\n\n4) headphoned: Build Y1 Headphoned\n\n5) agentofchaos: Build G1 Agentofchaos\n\tCheshireSwift: Eep. Not a good start =P\n\n6) CheshireSwift: Build B1 Cheshireswift\n\n7) headphoned: Discover Y1 Headphoned G3 Copernicus\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) CheshireSwift: Discover B1 Cheshireswift Y1 Aleph\n\n10) headphoned: Build Y1 Headphoned\n\n11) agentofchaos: Trade G1 Y1 Agentofchaos\n\n12) CheshireSwift: Discover B1 Aleph G2 Bet\n\n13) headphoned: Discover Y1 Copernicus R2 Elektro\n\n14) agentofchaos: Trade G1 R1 Agentofchaos\n\n15) CheshireSwift: Trade B1 G1 Bet\n\n16) headphoned: Trade Y1 R1 Headphoned\n\n17) agentofchaos: Move R1 Agentofchaos Bet\n\n18) CheshireSwift: Build B1 Cheshireswift\n\n19) headphoned: Build R1 Headphoned\n\n20) agentofchaos: Attack G1S Bet\n\n21) CheshireSwift: Trade B1 G1 Cheshireswift\n\n22) headphoned: Trade R1 G1 Headphoned\n\n23) agentofchaos: Build Y1 Agentofchaos\n\n24) CheshireSwift: Build G2 Cheshireswift\n\n25) headphoned: Build G2 Headphoned\n\n26) agentofchaos: Build G3 Agentofchaos\n\n27) CheshireSwift: Build G3 Cheshireswift\n\n28) headphoned: Build R1 Headphoned\nCatastrophe Cheshireswift G\n\n29) agentofchaos: Move Y1 Agentofchaos Bet\n\n30) CheshireSwift: Trade B3 G3 Cheshireswift\n\n31) headphoned: Build Y1 Headphoned\n\n32) agentofchaos: Build Y2 Bet\n\n33) CheshireSwift: Build G1 Cheshireswift\n\n34) headphoned: Sacrifice G2 Headphoned\nBuild G2 Headphoned\nBuild Y2 Headphoned\n\n35) agentofchaos: Sacrifice Y2 Bet\nDiscover G1 Bet R3 Mjolnir\nMove G1 Mjolnir Headphoned\nCatastrophe Headphoned G\n\n36) CheshireSwift: Move G1 Cheshireswift Elektro\n\n37) headphoned: Move Y1 Elektro Cheshireswift\n\n38) agentofchaos: Move Y1 Agentofchaos Headphoned\nCatastrophe Headphoned Y\n\n39) CheshireSwift: Sacrifice G1 Elektro\nBuild G1 Cheshireswift\n\n40) headphoned: Trade R1 Y1 Headphoned\n\n41) agentofchaos: Sacrifice Y1 Bet\nMove G3 Agentofchaos Headphoned\n\n42) CheshireSwift: Move G1 Cheshireswift Headphoned\n\n43) headphoned: Sacrifice R1 Headphoned\nAttack G1S Headphoned\n\n44) agentofchaos: Trade G3 R3 Headphoned\n\n45) CheshireSwift: Build G1 Cheshireswift\n\n46) headphoned: Sacrifice G1 Headphoned\nBuild Y1 Cheshireswift\n\n47) agentofchaos: Attack Y1N Headphoned\n\n48) agentofchaos: Pass\n\n49) CheshireSwift: Move G1 Cheshireswift Headphoned\n\n50) agentofchaos: Move Y1 Headphoned Cheshireswift\nCatastrophe Cheshireswift Y\n\n\tagentofchaos: Thanks for a fun game guys! :-)\n\tCheshireSwift: Likewise :)\n\nHomeworlds Online (SDG# 13276)\nStarted: 2009.4.29, Ended: 2009.7.7\nParticipants: MadWuher (S), dethdukk (N)\nWinner: MadWuher\n\n1) dethdukk: Homeworld B1 Y3 G3\n\n2) MadWuher: Homeworld B1 G2 B3 *\n\n3) dethdukk: Build G1 Dethdukk\n\tdethdukk: sorry about that... I didnt get an email letting me know it was my turn\n\n4) MadWuher: Build B1 Madwuher\n\tMadWuher: Not a problem\r\n\n\n5) dethdukk: Trade G3 B3 Dethdukk\n\n6) MadWuher: Trade B3 Y3 Madwuher\n\n7) dethdukk: Build B2 Dethdukk\n\tdethdukk: yeah, twoshort used this same strategy... I think I can break it if I stop you from locking me out.\n\n8) MadWuher: Build B2 Madwuher\n\n9) dethdukk: Discover B2 Dethdukk Y2 Time\n\n10) MadWuher: Discover B2 Madwuher G3 Edora\n\n11) dethdukk: Move B2 Time Edora\n\n12) MadWuher: Trade B1 R1 Madwuher\n\n13) dethdukk: Build B1 Edora\n\n14) MadWuher: Trade B2 R2 Edora\n\n\nHomeworlds Online (SDG# 13375)\nStarted: 2009.4.30, Ended: 2009.6.3\nParticipants: TwoShort (S), dethdukk (N)\nWinner: TwoShort\n\n1) dethdukk: Homeworld B1 Y3 G3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\n3) dethdukk: Build G1 Dethdukk\n\tdethdukk: taking a handicap? or just trying a strategy?\n\n4) TwoShort: Build B1 Twoshort\n\tTwoShort: Demonstrating the error in taking a b1 star as first player. :)\n\n5) dethdukk: Build G1 Dethdukk\n\tdethdukk: hm... never seen this one. should be interesting.\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) dethdukk: Discover G1 Dethdukk Y2 Launch\n\tTwoShort: It's a wacky tactic (which I'm inherently a sucker for), and at least reverses the 1st player advantage. Looking at it now, it appears it is actually slightly less devastating since you started with Goldilocks and not Banker.\n\n8) TwoShort: Build B2 Twoshort\n\n9) dethdukk: Build G1 Dethdukk\n\n10) TwoShort: Discover B2 Twoshort G3 Greed\n\n11) dethdukk: Sacrifice G3 Dethdukk\nBuild G2 Launch\nBuild G2 Launch\nBuild G3 Dethdukk\n\n12) TwoShort: Build B2 Twoshort\n\n13) dethdukk: Discover G1 Launch Y3 Point\n\n14) TwoShort: Discover B1 Twoshort G3 Grogar\n\n15) dethdukk: Discover G1 Dethdukk Y2 Move\n\n16) TwoShort: Build B2 Grogar\n\n17) dethdukk: Discover G2 Launch B3 Trader\n\n18) TwoShort: Build B3 Grogar\n\n19) dethdukk: Discover G2 Launch B3 Pull\n\n20) TwoShort: Trade B2 R2 Grogar\n\n21) dethdukk: Trade G2 R2 Pull\n\n22) TwoShort: Build B2 Grogar\n\n23) dethdukk: Build G2 Move\n\n24) TwoShort: Trade B2 Y2 Grogar\n\tdethdukk: hm. it is interesting. I wouldnt have thought you could lock me down quite that easily. I probably should have explored medium greens and gotten some G3 ships before you locked them into worlds\n\n25) dethdukk: Move G2 Move Pull\n\tTwoShort: Meanwhile, I've been thinking this strategy is really tough to pull off starting from banker; I usually do it from Goldilocks so I'm able to move out to a b2 and lock them down a turn faster. \n\n26) TwoShort: Build B2 Grogar\n\n27) dethdukk: Build R1 Pull\n\n28) TwoShort: Move B2 Grogar Move\n\n29) dethdukk: Trade R2 Y2 Pull\n\n30) TwoShort: Sacrifice B2 Greed\nTrade B3 G3 Grogar\nTrade B2 R2 Move\n\n31) dethdukk: Build Y1 Pull\n\n32) TwoShort: Attack G1 Move\n\n33) dethdukk: Trade G3 R3 Dethdukk\n\n34) TwoShort: Build G3 Move\n\n35) dethdukk: Build R1 Pull\n\n36) TwoShort: Discover G3 Grogar B2 Boomer\n\tdethdukk: so MadWuher tried using this same strategy with the game I am in with him... unless I am mistaken (which I might be) I believe I have escaped it by trading my G3 starting ship for a B3.\n\n37) dethdukk: Discover Y1 Pull Y1 Mobile\n\tTwoShort: Nice work. It's clear that this opening isn't effective vs. as many first player homeworlds as I previously thought.\n\n38) TwoShort: Sacrifice G3 Move\nBuild B2 Grogar\nBuild B3 Grogar\nBuild G3 Move\n\n\tdethdukk: ya got me, not much I can do about it now. good game, I learned a lot that I should be able to use.\n\nHomeworlds Online (SDG# 13366)\nStarted: 2009.5.1, Ended: 2009.5.4\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13384)\nStarted: 2009.5.1, Ended: 2009.5.4\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13288)\nVariants: "Hard time"\nStarted: 2009.5.2, Ended: 2009.5.30\nParticipants: heavytanhat (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) heavytanhat: Homeworld G1 B3 Y3\n\theavytanhat: homeworld b1 b3 y3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) heavytanhat: Build Y1 Heavytanhat\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) heavytanhat: Discover Y1 Heavytanhat G2 Halver\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) heavytanhat: Build Y1 Halver\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) heavytanhat: Build Y2 Heavytanhat\n\n11) agentofchaos: Discover Y2 Agentofchaos G3 Axolotl\n\n12) heavytanhat: Trade Y2 G2 Heavytanhat\n\n13) agentofchaos: Build Y2 Axolotl\n\n14) heavytanhat: Trade Y3 G3 Heavytanhat\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) heavytanhat: Move Y1 Halver Heavytanhat\n\n17) agentofchaos: Build Y3 Agentofchaos\n\n\nHomeworlds Online (SDG# 13385)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13283)\nVariants: "Unrated, Hard time"\nStarted: 2009.5.4, Ended: 2009.5.27\nParticipants: Mouce (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n2) Mouce: Homeworld Y1 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Mouce: Build G1 Mouce\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Mouce: Build G1 Mouce\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) Mouce: Discover G1 Mouce B3 Crumbz\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) Mouce: Build G1 Crumbz\n\n11) agentofchaos: Discover Y2 Agentofchaos B1 Ghost\n\n12) Mouce: Build G2 Crumbz\n\n13) agentofchaos: Build G2 Agentofchaos\n\n14) Mouce: Trade G2 Y2 Crumbz\n\n15) agentofchaos: Move G2 Agentofchaos Ghost\n\n16) Mouce: Discover G1 Crumbz B1 Nibble\n\n17) agentofchaos: Sacrifice G2 Ghost\nBuild Y2 Agentofchaos\nBuild Y3 Ghost\n\n18) Mouce: Build Y3 Crumbz\n\n19) agentofchaos: Trade Y3 R3 Ghost\n\n20) Mouce: Trade G1 R1 Mouce\n\n21) agentofchaos: Trade Y2 G2 Agentofchaos\n\n22) Mouce: Move Y3 Crumbz Nibble\n\n23) agentofchaos: Move G2 Agentofchaos Ghost\n\n24) Mouce: Build G1 Mouce\n\n25) agentofchaos: Build G2 Agentofchaos\n\n\nHomeworlds Online (SDG# 13394)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R2 B3 G3\n\n\nHomeworlds Online (SDG# 13395)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 13396)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13397)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13398)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 13399)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13400)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: MikeYarrum (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 13401)\nStarted: 2009.5.4, Ended: 2009.5.8\nParticipants: agentofchaos (S), MikeYarrum (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 13266)\nStarted: 2009.5.4, Ended: 2009.5.6\nParticipants: TwoShort (S), headphoned (N)\nWinner: TwoShort\n\n1) headphoned: Homeworld B3 G1 Y3\n\n2) TwoShort: Homeworld B1 R2 G3\n\tTwoShort: Howdy\n\n3) headphoned: Build Y1 Headphoned\n\n4) TwoShort: Build G1 Twoshort\n\n5) headphoned: Trade Y1 B1 Headphoned\n\n6) TwoShort: Build G1 Twoshort\n\n7) headphoned: Build B1 Headphoned\n\n8) TwoShort: Trade G1 Y1 Twoshort\n\n9) headphoned: Build Y1 Headphoned\n\n10) TwoShort: Build G1 Twoshort\n\n11) headphoned: Trade B1 R1 Headphoned\n\n12) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n13) headphoned: Build R1 Headphoned\n\n14) TwoShort: Build G2 Bluonia\n\n15) headphoned: Trade Y3 G3 Headphoned\n\n16) TwoShort: Trade G2 Y2 Bluonia\n\n17) headphoned: Build Y1 Headphoned\n\n18) TwoShort: Build G2 Bluonia\n\n19) headphoned: Build G2 Headphoned\n\n20) TwoShort: Sacrifice Y2 Bluonia\nDiscover G1 Bluonia B2 Boomtime\nMove G1 Boomtime Headphoned\nCatastrophe Headphoned Green\n\n\nHomeworlds Online (SDG# 13393)\nVariants: "Unrated, Hard time"\nStarted: 2009.5.4, Ended: 2009.5.11\nParticipants: headphoned (S), Mouce (N)\nWinner: Mouce\n\n1) Mouce: Homeworld Y1 B2 G3\n\tMouce: Welcome; have a great game!\n\n2) headphoned: Homeworld B3 G2 Y3\n\n3) Mouce: Build G1 Mouce\n\n4) headphoned: Build Y1 Headphoned\n\n5) Mouce: Build G1 Mouce\n\n6) headphoned: Build Y1 Headphoned\n\n7) Mouce: Discover G1 Mouce B3 Wisker\n\n8) headphoned: Trade Y3 G3 Headphoned\n\n9) Mouce: Build G1 Mouce\n\n10) headphoned: Build Y2 Headphoned\n\n11) Mouce: Discover G1 Mouce B3 Scritch\n\n12) headphoned: Build G2 Headphoned\n\n13) Mouce: Sacrifice G3 Mouce\nBuild G2 Scritch\nBuild G3 Wisker\nBuild G3 Mouce\n\n14) headphoned: Trade Y1 B1 Headphoned\n\n15) Mouce: Trade G2 Y2 Scritch\n\n16) headphoned: Discover G3 Headphoned Y1 Khat\n\n17) Mouce: Sacrifice Y2 Scritch\nMove G1 Wisker Khat\nMove G1 Khat Headphoned\n\n18) headphoned: Sacrifice Y2 Headphoned\nMove G3 Khat Scritch\nMove G3 Scritch Mouce\n\n19) Mouce: Trade G3 R3 Mouce\n\n20) headphoned: Sacrifice G2 Headphoned\nBuild Y1 Headphoned\nBuild Y2 Headphoned\n\n21) Mouce: Attack G3 Mouce\n\n22) headphoned: Trade Y1 R1 Headphoned\n\n23) Mouce: Sacrifice R3 Mouce\nAttack B1 Headphoned\nAttack R1 Headphoned\nAttack Y1 Headphoned\n\n24) headphoned: Build Y1 Headphoned\n\n25) Mouce: Build Y2 Headphoned\nCatastrophe Headphoned Yellow\n\n\tMouce: Thanks for the game - keep it up, it can take a little while to get used to homeworlds, but it's a great game! Challenge me anytime...\n\nHomeworlds Online (SDG# 13407)\nVariants: "Unrated, Hard time"\nStarted: 2009.5.6, Ended: 2009.5.21\nParticipants: zoltar (S), Mouce (N)\nWinner: zoltar\n\n1) Mouce: Homeworld B1 Y2 G3\n\tMouce: hi, have a great game\r\n\r\nyou aren't an automated fortune teller, by chance?\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) Mouce: Build G1 Mouce\n\tzoltar: Nope, I'm just a run of the mill alien!\r\nHave a fun game as well.\n\n4) zoltar: Build G1 Zoltar\n\n5) Mouce: Discover G1 Mouce B3 Skitter\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Mouce: Build G1 Skitter\n\n8) zoltar: Build Y1 Zoltar\n\n9) Mouce: Build G1 Mouce\n\n10) zoltar: Build G2 Zoltar\n\n11) Mouce: Trade G1 Y1 Skitter\n\n12) zoltar: Trade Y1 R1 Zoltar\n\n13) Mouce: Build G1 Skitter\n\n14) zoltar: Discover G2 Zoltar Y2 Yippee\n\n15) Mouce: Discover G1 Skitter B2 Squeak\n\n16) zoltar: Move G2 Yippee Skitter\n\n17) Mouce:\nBuild G2 Skitter\n\n18) zoltar: Trade G2 R2 Skitter\n\tzoltar: Nice move. I'm going to spend a day or two and look at this more carefully when I have the time before I reply.\n\tzoltar: On second thought, I now see a defense.\n\n19) Mouce: Sacrifice G2 Skitter\nBuild G2 Squeak\nBuild G2 Squeak\n\n20) zoltar: Attack G1 Skitter\n\n21) Mouce: Trade G1 Y1 Squeak\n\tzoltar: By imperial order of Zoltar the Evil Overlord, I hereby commandeer this vessel!\n\n22) zoltar: Attack Y1 Skitter\n\n23) Mouce: Sacrifice G2 Squeak\nBuild G1 Squeak\nBuild Y2 Squeak\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild G2 Skitter\nBuild Y2 Skitter\nBuild Y3 Zoltar\n\n25) Mouce: Trade G1 R1 Mouce\n\n26) zoltar: Discover Y2 Skitter R2 Redrum\n\tzoltar: Alright -- my turn for a fancy sacrifice!\n\n27) Mouce: Trade G2 R2 Squeak\n\n28) zoltar: Sacrifice G2 Skitter\nBuild Y3 Skitter\nBuild Y3 Redrum\n\n29) Mouce: Move Y1 Squeak Zoltar\n\n30) zoltar: Sacrifice Y2 Redrum\nDiscover Y1 Zoltar G2 Greenbelt\nMove Y3 Skitter Squeak\n\n31) Mouce: Sacrifice Y2 Squeak\nMove R2 Squeak Zoltar\nMove G1 Squeak Zoltar\n\n32) zoltar: Sacrifice R1 Zoltar\nAttack R2 Zoltar\n\n\tMouce: well played!\n\tzoltar: Thanks. I thought it was a great, close game until I sacked the g2 for the two remaining y3s. I figured you were going after 2 of the 3 r3s (I'd get one of them), and I've have the advantage, with all the yellow power, but far from a won game. Your trading pieces instead and letting my Y3s chase and destroy your fleet proved instead disastrous. Play again?\n\tMouce: yeah, take me up for another challenge\n\nHomeworlds Online (SDG# 13430)\nStarted: 2009.5.10, Ended: 2009.6.5\nParticipants: nycavri (S), molnar (N)\nWinner: nycavri\n\n1) molnar: Homeworld Y3 B1 G3\n\tmolnar: OK, hopefully I can figure out the interface...\n\n2) nycavri: Homeworld Y1 B2 G3\n\n3) molnar: Build G1 Molnar\n\n4) nycavri: Build G1 Nycavri\n\n5) molnar: Trade G1 R1 Molnar\n\n6) nycavri: Discover G1 Nycavri Y3 Mvb\n\n7) molnar: Build G1 Molnar\n\n8) nycavri: Build G1 Mvb\n\n9) molnar: Discover G1 Molnar Y2 Poop\n\n10) nycavri: Build G2 Nycavri\n\n11) molnar: Move R1 Molnar Poop\n\n12) nycavri: Build G2 Nycavri\n\n13) molnar: Move G1 Poop Mvb\n\n14) nycavri: Build G2 Mvb\nCatastrophe Mvb G\n\n15) molnar: Build G1 Molnar\n\tmolnar: on purpose?\r\nisn't that a lot of work for nothing?\n\n16) nycavri: Trade G2 Y2 Nycavri\n\tnycavri: Gives me a size advantage. You're building size 1s, while I already have size 2s . . .\n\n17) molnar: Move G3 Molnar Poop\n\n18) nycavri: Discover G2 Nycavri Y3 Mvg\n\n19) molnar: Move G3 Poop Mvg\n\n20) nycavri: Trade Y2 R2 Nycavri\n\n21) molnar: Build G1 Molnar\n\n22) nycavri: Move G2 Mvg Poop\n\n23) molnar: Move G3 Mvg Poop\n\n24) nycavri: Move G2 Poop Molnar\n\n25) molnar: Build R1 Poop\n\n26) nycavri: Build G1 Molnar\nCatastrophe Molnar G\n\tnycavri: Thanks for the game. Challenge anytime, and feel free to ask questions as swe play . . .\n\n\nHomeworlds Online (SDG# 13412)\nVariants: "Unrated, Hard time"\nStarted: 2009.5.21, Ended: 2009.5.27\nParticipants: Mouce (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) Mouce: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\tMouce: here we go again! enjoy the game\n\n4) Mouce: Build G1 Mouce\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Mouce: Build G1 Mouce\n\n7) zoltar: Build Y1 Zoltar\n\n8) Mouce: Discover G1 Mouce B3 Squeak\n\n9) zoltar: Trade Y1 R1 Zoltar\n\n10) Mouce: Trade G1 R1 Mouce\n\n11) zoltar: Build R2 Zoltar\n\n12) Mouce: Build R2 Mouce\n\n13) zoltar: Trade R1 B1 Zoltar\n\n14) Mouce: Build G1 Squeak\n\n15) zoltar: Build Y1 Zoltar\n\n16) Mouce: Trade G1 Y1 Squeak\n\n17) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n18) Mouce: Build Y2 Squeak\n\n19) zoltar: Build Y2 Zoltar\n\n\nHomeworlds Online (SDG# 13402)\nStarted: 2009.5.22, Ended: 2009.5.25\nParticipants: MikeYarrum (S), skykingt13 (N)\nWinner: skykingt13\n\n1) skykingt13: Homeworld Y2 G1 R3 *\n\n\nHomeworlds Online (SDG# 13409)\nStarted: 2009.5.22, Ended: 2009.5.27\nParticipants: TwoShort (S), skykingt13 (N)\nWinner: TwoShort\n\n1) skykingt13: Homeworld G1 B2 R3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n3) skykingt13: Build R1 Skykingt13\n\n\tskykingt13: 'ello\n\n4) TwoShort: Build G1 Twoshort\n\tskykingt13: good luck\r\n\r\n\n\n5) skykingt13: Trade R1 G1 Skykingt13\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) skykingt13: Build R1 Skykingt13\n\n8) TwoShort: Build G1 Twoshort\n\n9) skykingt13: Trade R1 Y1 Skykingt13\n\n10) TwoShort: Build G2 Twoshort\n\n11) skykingt13: Build G2 Skykingt13\n\n12) TwoShort: Discover G1 Twoshort G2 Graben\n\n13) skykingt13: Discover G1 Skykingt13 Y3 Space\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Graben\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n15) skykingt13: Move G1 Space Graben\nCatastrophe Graben Green\n\n16) TwoShort: Discover G3 Twoshort B2 Bluonia\n\n17) skykingt13: Discover R3 Skykingt13 Y3 Space\n\n18) TwoShort: Trade G2 R2 Twoshort\n\n19) skykingt13: Move R3 Space Bluonia\n\n20) TwoShort: Sacrifice R2 Twoshort\nAttack R3 Bluonia\nPass\n\tTwoShort: I think you must have missed how sacrifices work? Sometimes with new players, I'd encourage you to undo the first time you do something you obviously should not; but even doing something else now you'd be pretty doomed, so I'm just going to destroy you, sorry :) If you want pointers for next time: start with a green ship, and never move it out of your homeworld.\n\n21) skykingt13: Build Y1 Skykingt13\n\n22) TwoShort: Trade G3 Y3 Bluonia\n\n\nHomeworlds Online (SDG# 13380)\nVariants: "Hard time"\nStarted: 2009.5.22, Ended: 2009.5.26\nParticipants: skykingt13 (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 Y1 G3\n\tJesse: Hello, and have a good game.\n\n2) skykingt13: Homeworld B1 Y2 G3\n\tskykingt13: 'ello good luck\n\n3) Jesse: Build G1 Jesse\n\n4) skykingt13: Build G1 Skykingt13\n\n5) Jesse: Discover G1 Jesse B2 Time\n\n6) skykingt13: Discover G1 Skykingt13 B3 Space\n\n\n7) Jesse: Build G1 Time\n\n8) skykingt13: Build G2 Space\n\n9) Jesse: Build G2 Jesse\n\n10) skykingt13: Trade G2 Y2 Space\n\n11) Jesse: Trade G1 Y1 Time\n\n\n12) skykingt13: Build G1 Skykingt13\n\n13) Jesse: Build Y1 Time\n\n14) skykingt13: Build G2 Space\n\n15) Jesse: Discover Y1 Time G3 Energy\n\n\n16) skykingt13: Trade G2 R2 Space\n\n17) Jesse: Sacrifice G2 Jesse\nBuild Y2 Energy\nBuild Y3 Time\n\n18) skykingt13: Build Y3 Space\n\n19) Jesse: Trade Y1 R1 Time\n\n20) skykingt13: Trade Y2 G2 Space\n\n\n21) Jesse: Build G2 Jesse\n\n22) skykingt13: Build R1 Space\n\n23) Jesse: Sacrifice G3 Jesse\nBuild G2 Time\nBuild G3 Jesse\nBuild R1 Time\n\n24) skykingt13: Discover R2 Space Y2 Sky\n\n25) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y1 Time\nBuild Y3 Energy\n\n26) skykingt13: Sacrifice G3 Skykingt13\nBuild R2 Sky\nBuild R2 Space\nBuild R3 Sky\n\n27) Jesse: Sacrifice Y2 Energy\nMove Y3 Energy Skykingt13\nDiscover G1 Time B3 Will\n\n28) skykingt13: Sacrifice Y3 Space\nMove R3 Sky Jesse\nMove R2 Sky Jesse\nPass\n\tJesse: That would have been a good way to gain a red advantage, if it hadn't left your homeworld undefended. You could almost get away with it, but I think I have it covered. A better alternative would have been to trade your g3 for an r3, a move I had been considering myself to improve my homeworld defense and my red distribution.\n\n29) Jesse: Sacrifice R1 Time\nAttack G1 Skykingt13\n\tJesse: Thanks for the game. You played an excellent opening, forcing me to let you take a few small advantages. Things didn't go wrong for you until your discovery of Sky let me grab the remainder of the yellow.\n\n\nHomeworlds Online (SDG# 13461)\nVariants: "Unrated, Hard time"\nStarted: 2009.5.22, Ended: 2009.6.11\nParticipants: MadWuher (S), skykingt13 (N)\nWinner: MadWuher\n\n1) skykingt13: Homeworld B2 R1 G3\n\n\n2) MadWuher: Homeworld R2 B3 G3\n\n3) skykingt13: Build G1 Skykingt13\n\n4) MadWuher: Build G1 Madwuher\n\n5) skykingt13: Trade G1 Y1 Skykingt13\n\n6) MadWuher: Trade G1 Y1 Madwuher\n\n7) skykingt13: Build G1 Skykingt13\n\n8) MadWuher: Build G1 Madwuher\n\n9) skykingt13: Discover G1 Skykingt13 Y3 Space\n\n10) MadWuher: Discover G1 Madwuher B1 Bologna\n\n11) skykingt13: Build G1 Skykingt13\n\n12) MadWuher: Build G2 Madwuher\n\n13) skykingt13: Build Y1 Skykingt13\n\n14) MadWuher: Build Y2 Madwuher\n\n15) skykingt13: Move Y1 Skykingt13 Space\n\n16) MadWuher: Build G2 Bologna\n\n17) skykingt13: Discover Y1 Space R1 Sky\n\n18) MadWuher: Move Y2 Madwuher Sky\n\n19) skykingt13: Sacrifice G1 Skykingt13\nBuild Y2 Sky\n\n20) MadWuher: Attack Y2 Sky\n\n21) skykingt13: Sacrifice G3 Skykingt13\nBuild Y2 Sky\nBuild Y3 Skykingt13\nBuild Y3 Skykingt13\nCatastrophe Sky Yellow\n\n22) MadWuher: Trade G2 Y2 Bologna\n\n23) skykingt13: Trade Y3 G3 Skykingt13\n\n24) MadWuher: Build Y1 Bologna\n\n25) skykingt13: Discover Y1 Skykingt13 B3 Sky\n\n26) MadWuher: Discover G1 Bologna Y3 Edora\n\n27) skykingt13: Move G1 Space Bologna\n\n28) MadWuher: Trade Y1 R1 Bologna\n\n29) skykingt13: Trade Y1 R1 Sky\n\n30) MadWuher: Attack G1 Bologna\n\n31) skykingt13: Build Y1 Skykingt13\n\n\n32) MadWuher: Build R2 Bologna\n\n33) skykingt13: Move Y1 Skykingt13 Sky\n\n34) MadWuher: Build G1 Edora\n\n35) skykingt13: Move G3 Skykingt13 Sky\n\n36) MadWuher: Move R2 Bologna Edora\n\n\tMadWuher: Thanx for the game.\n\nHomeworlds Online (SDG# 13289)\nVariants: "Hard time"\nStarted: 2009.5.22, Ended: 2009.6.8\nParticipants: Qat (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) Qat: Homeworld Y3 B1 G3\n\tagentofchaos: Hi there, sorry I didn't start sooner, I've been very busy recently. Enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\tQat: No problem. Have fun yourself.\n\n4) Qat: Build G1 Qat\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) Qat: Build G2 Qat\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) Qat: Discover G2 Qat B2 Chaos\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) Qat: Build G1 Qat\n\n11) agentofchaos: Build Y1 Agentofchaos\n\n12) Qat: Trade G1 Y1 Qat\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) Qat: Build Y2 Qat\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) Qat: Move Y1 Qat Chaos\n\n17) agentofchaos: Discover Y1 Agentofchaos G3 Zool\n\n18) Qat: Trade G1 R1 Qat\n\n19) agentofchaos: Build R2 Agentofchaos\n\n20) Qat: Build R2 Qat\n\n21) agentofchaos: Move R2 Agentofchaos Zool\n\n22) Qat: Discover R2 Qat G2 Produce\n\n23) agentofchaos: Build R2 Zool\n\n24) Qat: Sacrifice G2 Chaos\nBuild R3 Qat\nBuild R3 Produce\n\n25) agentofchaos: Move R2 Zool Chaos\n\n26) Qat: Discover Y1 Chaos B3 Whoosh\n\n27) agentofchaos: Build R3 Zool\n\n28) Qat: Move R3 Qat Chaos\n\n29) agentofchaos: Sacrifice Y1 Zool\nDiscover R2 Chaos Y3 Kakradoom\n\n30) Qat: Sacrifice Y2 Qat\nMove R3 Produce Whoosh\nMove R2 Produce Whoosh\n\n31) agentofchaos: Move Y1 Agentofchaos Zool\n\n32) Qat: Trade R2 G2 Whoosh\n\n33) agentofchaos: Trade R1 B1 Agentofchaos\n\n34) Qat: Trade R3 B3 Whoosh\n\n35) agentofchaos: Move B1 Agentofchaos Kakradoom\n\n36) Qat: Discover B3 Whoosh G2 Produce\n\n37) agentofchaos: Build Y1 Zool\n\n38) Qat: Build Y2 Whoosh\n\n39) agentofchaos: Trade B1 G1 Kakradoom\n\n40) Qat: Sacrifice Y2 Whoosh\nMove R3 Chaos Whoosh\nMove B3 Produce Kakradoom\n\n41) agentofchaos: Discover R2 Kakradoom Y2 Kastria\n\n42) Qat: Sacrifice G2 Whoosh\nBuild Y2 Whoosh\nBuild Y3 Whoosh\n\n43) agentofchaos: Move Y2 Agentofchaos Whoosh\nCatastrophe Whoosh Y\n\n44) Qat: Sacrifice R1 Qat\nAttack G1 Kakradoom\n\n45) agentofchaos: Trade G1 Y1 Agentofchaos\n\n46) Qat: Build G1 Qat\n\n\nHomeworlds Online (SDG# 13483)\nStarted: 2009.5.22, Ended: 2009.6.19\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) zoltar: Build G1 Zoltar\n\n8) TwoShort: Build G1 Twoshort\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) TwoShort: Trade G1 B1 Twoshort\n\n11) zoltar: Build B2 Zoltar\n\n12) TwoShort: Build B2 Twoshort\n\n13) zoltar: Trade B1 R1 Zoltar\n\n14) TwoShort: Build G1 Twoshort\n\n15) zoltar: Build G1 Zoltar\n\n16) TwoShort: Discover B1 Twoshort G3 Grogar\n\n17) zoltar: Discover B2 Zoltar G2 Greenbelt\n\n18) TwoShort: Build G1 Twoshort\n\n19) zoltar: Build G2 Zoltar\n\n20) TwoShort: Discover G1 Twoshort B3 Bonanza\n\n21) zoltar: Sacrifice G2 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bonanza\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n23) zoltar: Move Y1 Zoltar Greenbelt\n\n24) TwoShort: Sacrifice B2 Twoshort\nTrade G2 Y2 Bonanza\nTrade G2 R2 Twoshort\n\n25) zoltar: Discover Y2 Zoltar G2 Greendale\n\n26) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n27) zoltar: S G3 Zoltar\nBuild Y2 Greendale\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n28) TwoShort: Sacrifice G1 Yolonda\nBuild Y3 Twoshort\n\n29) zoltar: Move R1 Zoltar Greenbelt\n\n30) TwoShort: Build G1 Twoshort\n\n31) zoltar: Build R1 Greenbelt\n\n32) TwoShort: Discover R2 Twoshort G3 Gondor\n\n33) zoltar: Move Y2 Greendale Grogar\n\n34) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Bonanza\nBuild B1 Grogar\n\tzoltar: yep -- I'm doomed!\n\n\tzoltar: Yep, with the factory, the rest of the ships are yours. Good game, as always!\n\nHomeworlds Online (SDG# 13482)\nStarted: 2009.5.22, Ended: 2009.5.28\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 13290)\nVariants: "Hard time"\nStarted: 2009.5.22, Ended: 2009.6.12\nParticipants: zoltar (S), agentofchaos (N)\nWinner: zoltar\n\n1) agentofchaos: Homeworld R3 B1 G3\n\n2) zoltar: Homeworld B2 R3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) zoltar: Build G1 Zoltar\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) zoltar: Build G1 Zoltar\n\n9) agentofchaos: Discover Y1 Agentofchaos B2 Groove\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) agentofchaos: Build G1 Agentofchaos\n\n12) zoltar: Build B1 Zoltar\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) zoltar: Trade B1 R1 Zoltar\n\n15) agentofchaos: Build G1 Agentofchaos\n\n16) zoltar: Build B1 Zoltar\n\n17) agentofchaos: Trade G1 Y1 Agentofchaos\n\n18) zoltar: Discover B1 Zoltar G1 Greenbelt\n\n19) agentofchaos: Build Y2 Agentofchaos\n\n20) zoltar: Build B2 Greenbelt\n\n21) agentofchaos: Build Y2 Agentofchaos\n\n22) zoltar: Build B3 Greenbelt\n\n23) agentofchaos: Build G1 Agentofchaos\n\n24) zoltar: Trade B3 Y3 Greenbelt\n\n25) agentofchaos: Discover Y2 Agentofchaos G2 Blackguard\n\n26) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Zoltar\nBuild B3 Zoltar\n\n27) agentofchaos: Build Y3 Blackguard\n\n28) zoltar: Trade B3 G3 Zoltar\n\n29) agentofchaos: Move G1 Agentofchaos Blackguard\n\n30) zoltar: Build G2 Zoltar\n\n31) agentofchaos: Move G1 Agentofchaos Groove\n\n32) zoltar: Sacrifice Y3 Greenbelt\nMove G3 Zoltar Greenbelt\nDiscover G3 Greenbelt Y3 Yellowstone\nMove B2 Greenbelt Groove\n\n33) agentofchaos: Move G1 Groove Agentofchaos\n\n34) zoltar: Sacrifice G3 Yellowstone\nBuild Y3 Greenbelt\nBuild B3 Greenbelt\nBuild B3 Groove\n\n35) agentofchaos: Discover Y1 Groove R1 Heme\n\n36) zoltar: Build B3 Zoltar\n\n37) agentofchaos: Move R1 Agentofchaos Blackguard\n\n38) zoltar: Sacrifice B2 Groove\nTrade B3 R3 Greenbelt\nTrade B3 G3 Zoltar\n\n39) agentofchaos: Build R2 Blackguard\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild B2 Groove\nBuild B3 Greenbelt\nBuild B3 Zoltar\n\n41) agentofchaos: Move R2 Blackguard Heme\n\n42) zoltar: Trade B3 G3 Zoltar\n\n43) agentofchaos: Sacrifice Y3 Blackguard\nMove R2 Heme Zoltar\nMove R1 Blackguard Heme\nMove R1 Heme Zoltar\nCatastrophe Zoltar R\n\n44) zoltar: Sacrifice Y3 Greenbelt\nMove G2 Zoltar Agentofchaos\nMove G3 Zoltar Agentofchaos\nMove B3 Groove Agentofchaos\nCatastrophe Agentofchaos G\n\n45) agentofchaos: Build Y3 Blackguard\n\n46) zoltar: Sacrifice Y2 Greenbelt\nMove Y1 Zoltar Agentofchaos\nMove Y3 Zoltar Agentofchaos\nCatastrophe Agentofchaos Y\n\n\tzoltar: Well, I had the extra 3 big blue ships, so I just had to bide my time and grab as many big ships left as possible and then slowly attack, but this ended things quickly. Play again?\n\tagentofchaos: Sure I'd like a rematch, see if I can do better :-)\n\nHomeworlds Online (SDG# 13275)\nStarted: 2009.5.22, Ended: 2009.6.19\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\tts52: Have a good game.\n\n3) ts52: Build G1 Ts52\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Trade G1 B1 Ts52\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) zoltar: Build G1 Zoltar\n\n9) ts52: Build B1 Kermit\n\n10) zoltar: Trade G3 B3 Zoltar\n\n11) ts52: Build B2 Kermit\n\n12) zoltar: Build B2 Zoltar\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) zoltar: Trade B3 G3 Zoltar\n\n15) ts52: Build G1 Ts52\n\n16) zoltar: Trade G1 R1 Zoltar\n\n17) ts52: Trade B1 R1 Kermit\n\n18) zoltar: Discover B2 Zoltar G2 Greenbelt\n\n19) ts52: Build R2 Kermit\n\n20) zoltar: Move R1 Zoltar Greenbelt\n\n21) ts52: M R2 Kermit Ts52\n\n22) zoltar: Build R2 Greenbelt\n\n23) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R3 Ts52\nBuild R3 Kermit\n\n24) zoltar: Trade R2 Y2 Greenbelt\n\n25) ts52: Trade R3 G3 Ts52\n\tzoltar: Good Job. I think I'm toast.\n\n26) zoltar: Build R2 Greenbelt\n\n27) ts52: D R3 Kermit Y1 Slimey\n\n28) zoltar: Discover R2 Greenbelt Y1 Yellowstone\n\n29) ts52: Build Y3 Kermit\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild R3 Yellowstone\nBuild R3 Greenbelt\n\n31) ts52: Discover R2 Ts52 Y3 Bigbird\n\n32) zoltar: Trade Y3 G3 Zoltar\n\n33) ts52: Sacrifice Y2 Kermit\nMove R1 Kermit Yellowstone\nMove R2 Bigbird Yellowstone\nCatastrophe Yellowstone Red\n\n34) zoltar: Build G1 Zoltar\n\n35) ts52: Discover R3 Slimey Y3 Bigbird\n\n36) zoltar: Discover B2 Greenbelt Y3 Yellowstone\n\n37) ts52: Move G1 Ts52 Bigbird\n\n38) zoltar: Build Y1 Greenbelt\n\n39) ts52: Build G1 Ts52\n\n40) zoltar: Build Y1 Greenbelt\n\n41) ts52: Build Y2 Kermit\n\n42) zoltar: Sacrifice Y2 Greenbelt\nMove Y1 Greenbelt Kermit\nMove Y1 Greenbelt Kermit\nCatastrophe Kermit Y\n\n43) ts52: Build R1 Bigbird\n\n44) zoltar: Build Y1 Zoltar\n\n45) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Ts52\nBuild G3 Ts52\n\n46) zoltar: Move Y1 Zoltar Greenbelt\n\n47) ts52: Move R2 Ts52 Kermit\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Greenbelt\n\n49) ts52: Trade G2 Y2 Ts52\n\n50) zoltar: Build Y3 Greenbelt\n\n51) ts52: Move Y2 Ts52 Kermit\n\n52) zoltar: Move Y3 Greenbelt Kermit\n\n53) ts52: Discover Y2 Kermit G2 Robin\n\n54) zoltar: Sacrifice R1 Greenbelt\nAttack R2 Kermit\n\n55) ts52: Move R1 Bigbird Robin\n\n56) zoltar: Attack B1 Kermit\n\n57) ts52: Build R1 Robin\n\n58) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Yellowstone\nBuild B2 Kermit\n\n59) ts52: Move R1 Robin Yellowstone\n\n60) zoltar: Discover B1 Yellowstone B2 Blueridge\n\n61) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Yellowstone\nBuild R2 Yellowstone\n\n62) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Kermit\nBuild B3 Yellowstone\n\n63) ts52: Attack B2 Yellowstone\n\n64) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B3 Yellowstone\nPass\n\n65) ts52: Move R2 Yellowstone Blueridge\n\n66) zoltar: Sacrifice R2 Kermit\nAttack R2 Yellowstone\nAttack B2 Yellowstone\n\n67) ts52: Sacrifice G2 Bigbird\nBuild G2 Bigbird\nBuild R2 Blueridge\n\n68) zoltar: Move Y3 Kermit Blueridge\n\n69) ts52: Attack B1 Blueridge\n\n70) zoltar: Move B3 Yellowstone Robin\n\tzoltar: My ships are bigger than your ships!\n\n71) ts52: Sacrifice Y2 Robin\nDiscover R3 Bigbird Y2 Littlebird\nMove G2 Bigbird Littlebird\n\n72) zoltar: Move Y1 Greenbelt Kermit\n\n73) ts52: Move G1 Bigbird Littlebird\n\n74) zoltar: Sacrifice G1 Zoltar\nBuild Y3 Zoltar\n\n75) ts52: Build G1 Littlebird\n\n76) zoltar: Sacrifice Y3 Zoltar\nMove B1 Kermit Ts52\nMove B2 Kermit Ts52\nMove B3 Yellowstone Ts52\n\n77) ts52: Trade G3 Y3 Ts52\n\n78) zoltar: Sacrifice R2 Yellowstone\nAttack G1 Ts52\nAttack Y3 Ts52\n\n\tzoltar: Good game, though it got rather one-sided after I got the advantage and slowly maneuvered to grab most of the pieces. Play again?\n\tts52: Wow. I'm really out of it today. I knew it was all but over a while ago, but I totally missed the fact that you'd moved all those ships into my homeworld. Sigh, just out of it toady. Anyway, well played. Thanks for the game.\n\tts52: Sure, I'd be glad to play again.\n\nHomeworlds Online (SDG# 13486)\nStarted: 2009.5.23, Ended: 2009.5.29\nParticipants: Deudanann (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Deudanann: Homeworld R1 B2 G3\n\tts52: Have a good game.\n\n3) ts52: Build G1 Ts52\n\n4) Deudanann: Build G1 Deudanann\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Deudanann: Trade G1 Y1 Deudanann\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) Deudanann: Discover Y1 Deudanann R3 Yipyip\n\n9) ts52: Build G1 Ts52\n\n10) Deudanann: Build G1 Deudanann\n\n11) ts52: Build B1 Kermit\n\n\nHomeworlds Online (SDG# 13485)\nStarted: 2009.5.23, Ended: 2009.5.27\nParticipants: Deudanann (S), MikeYarrum (N)\nWinner: Deudanann\n\n\nHomeworlds Online (SDG# 13478)\nVariants: "Unrated, Hard time"\nStarted: 2009.5.25, Ended: 2009.5.27\nParticipants: Mouce (S), mzmzmz (N)\nWinner: mzmzmz\n\n1) mzmzmz: Homeworld R1 G3 B3\n\n2) Mouce: Homeworld B1 Y2 G3\n\n3) mzmzmz: Build B1 Mzmzmz\n\n4) Mouce: Build G1 Mouce\n\tMouce: have a great game!\n\n5) mzmzmz: Trade B1 Y1 Mzmzmz\n\tmzmzmz: You too. This is my first time playing this, it seems like a good game.\n\n6) Mouce: Build G1 Mouce\n\n7) mzmzmz: Build B1 Mzmzmz\n\tMouce: i've only played it a handful of times, but it has great depth and a lot of possibility for creativity. the community here has some very strong players, too\n\tmzmzmz: cool. I'll have to get a set of these pieces and try it out offline some time :)\n\n8) Mouce: Discover G1 Mouce B3 Whisker\n\n9) mzmzmz: Discover B1 Mzmzmz G2 Vigor\n\n\tmzmzmz: ?\n\nHomeworlds Online (SDG# 13481)\nVariants: "Unrated, Hard time"\nStarted: 2009.5.27, Ended: 2009.7.8\nParticipants: mzmzmz (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) mzmzmz: Homeworld G3 Y1 B3\n\tMadWuher: Hi there.\n\n3) MadWuher: Build G1 Madwuher\n\n4) mzmzmz: Build B1 Mzmzmz\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\tmzmzmz: Hello\n\n6) mzmzmz: Discover B1 Mzmzmz G2 Carpet\n\n7) MadWuher: Build Y1 Madwuher\n\n8) mzmzmz: Build B1 Carpet\n\n9) MadWuher: Discover Y1 Madwuher G3 Edora\n\n10) mzmzmz: Trade B1 R1 Carpet\n\n11) MadWuher: Build Y2 Edora\n\n12) mzmzmz: Build B1 Mzmzmz\n\n13) MadWuher: Discover Y1 Edora G2 Bologna\n\n14) mzmzmz: Build B1 Carpet\n\n15) MadWuher: Build Y2 Bologna\n\n16) mzmzmz: Build B2 Carpet\n\n17) MadWuher: Build Y2 Madwuher\n\n18) mzmzmz: Build B2 Mzmzmz\n\n19) MadWuher: Sacrifice G3 Madwuher\nBuild Y3 Edora\nBuild Y3 Madwuher\nBuild Y3 Bologna\n\n20) mzmzmz: Trade B2 G2 Carpet\n\n21) MadWuher: Trade Y3 G3 Madwuher\n\n22) mzmzmz: Build B2 Carpet\n\n23) MadWuher: Build Y3 Madwuher\n\n24) mzmzmz: Trade B3 R3 Mzmzmz\n\n25) MadWuher: Trade Y3 R3 Madwuher\n\n26) mzmzmz: Build B3 Mzmzmz\n\n27) MadWuher: Build Y3 Madwuher\n\n28) mzmzmz: Trade B1 G1 Carpet\n\n29) MadWuher: Build G1 Madwuher\n\n30) mzmzmz: Move B3 Mzmzmz Carpet\n\n31) MadWuher: Discover G1 Madwuher R3 Camelot\n\n32) mzmzmz: Move B2 Mzmzmz Bologna\n\n33) MadWuher: Sacrifice Y1 Bologna\nDiscover Y2 Bologna Y1 Abydos\n\n34) mzmzmz: Build B1 Bologna\n\n35) MadWuher: Build R1 Madwuher\n\n36) mzmzmz: Build B3 Bologna\n\n37) MadWuher: Sacrifice R3 Madwuher\nAttack B3 Bologna\nAttack B2 Bologna\nAttack B1 Bologna\n\n38) mzmzmz: Move B1 Mzmzmz Bologna\nCatastrophe Bologna B\n\n39) MadWuher: Build G1 Madwuher\n\n40) mzmzmz: Build R2 Mzmzmz\n\n41) MadWuher: Build R2 Madwuher\n\n\tmzmzmz: Good game.\n\nHomeworlds Online (SDG# 13494)\nStarted: 2009.5.27, Ended: 2009.7.24\nParticipants: zoltar (S), skykingt13 (N)\nWinner: zoltar\n\n1) skykingt13: Homeworld Y3 B2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) skykingt13: Build G1 Skykingt13\n\n4) zoltar: Build G1 Zoltar\n\n5) skykingt13: Trade G1 R1 Skykingt13\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) skykingt13: Discover R1 Skykingt13 G1 Space\n\n8) zoltar: Build Y1 Zoltar\n\n9) skykingt13: Build G1 Skykingt13\n\n10) zoltar: Build Y1 Zoltar\n\n11) skykingt13: Build R1 Space\n\n12) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n13) skykingt13: Build R2 Space\n\n14) zoltar: Build Y2 Greenbelt\n\n15) skykingt13: Trade G1 B1 Skykingt13\n\n16) zoltar: Build Y2 Zoltar\n\n17) skykingt13: Move B1 Skykingt13 Space\n\n18) zoltar: Trade Y2 R2 Zoltar\n\n19) skykingt13: Trade R2 Y2 Space\n\n\n20) zoltar: Trade Y1 B1 Zoltar\n\n21) skykingt13: Move R1 Space Skykingt13\n\n22) zoltar: Discover R2 Zoltar G2 Greendale\n\n23) skykingt13: Build R2 Space\n\n24) zoltar: Move B1 Zoltar Greendale\n\n25) skykingt13: Move R2 Space Greenbelt\n\n26) zoltar: Sacrifice R2 Greendale\nAttack R2 Greenbelt\nPass\n\n27) skykingt13: Build R2 Space\n\n28) zoltar: Build G1 Zoltar\n\n29) skykingt13: Discover R2 Space B2 Sky\n\n30) zoltar: Discover Y2 Greenbelt B1 Blueberry\n\n31) skykingt13: Build R2 Space\n\n32) zoltar: Build R3 Greenbelt\n\n33) skykingt13: Sacrifice G3 Skykingt13\nBuild R3 Sky\nBuild R3 Skykingt13\nBuild B2 Space\n\n34) zoltar: Build B3 Greendale\n\n35) skykingt13: Move B1 Space Greendale\n\n\n36) zoltar: Trade B1 Y1 Greendale\n\n37) skykingt13: Trade R3 G3 Sky\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greendale\nBuild Y3 Blueberry\nBuild Y3 Zoltar\n\n39) skykingt13: Sacrifice G3 Sky\nBuild B1 Greendale\nBuild R3 Sky\nBuild B3 Space\n\n40) zoltar: Sacrifice Y2 Blueberry\nDiscover R3 Greenbelt G1 Greenville\nMove B3 Greendale Space\n\n41) skykingt13: Move R1 Skykingt13 Greenville\n\n42) zoltar: Sacrifice R3 Greenville\nAttack B3 Space\nAttack Y2 Space\nAttack R1 Space\n\n43) skykingt13: Build R3 Greenville\n\n44) zoltar: Sacrifice Y3 Zoltar\nDiscover R1 Space Y2 Yellowstone\nDiscover Y2 Space G2 Greenacres\nDiscover Y1 Greendale Y3 Oldyeller\n\n45) skykingt13: Trade R3 G3 Skykingt13\n\n46) zoltar: Build G3 Zoltar\n\n47) skykingt13: Build G3 Skykingt13\n\n48) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Yellowstone\nPass\n\n49) skykingt13: Pass\n\n50) zoltar: Move R3 Yellowstone Space\n\n51) skykingt13: Pass\n\n52) zoltar: Attack R2 Space\n\n53) skykingt13: Pass\n\n54) zoltar: Attack B2 Space\n\n55) skykingt13: Pass\n\n56) zoltar: Move G3 Zoltar Greendale\n\n57) skykingt13: Pass\n\n58) zoltar: Move G3 Greendale Oldyeller\n\n59) skykingt13: Pass\n\n60) zoltar: Move Y1 Oldyeller Space\n\n\nHomeworlds Online (SDG# 13267)\nVariants: "Hard time"\nStarted: 2009.5.27, Ended: 2009.6.15\nParticipants: agentofchaos (S), headphoned (W), zoltar (N), skykingt13 (E)\nWinner: agentofchaos\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) skykingt13: Homeworld B3 Y2 G3\n\n3) agentofchaos: Homeworld B3 R1 G3\n\n4) agentofchaos: Build G1 Agentofchaos\n\tagentofchaos: Hi everyone, enjoy the game. \n\n5) zoltar: Build G1 Zoltar\n\n6) skykingt13: Build G1 Skykingt13\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) skykingt13: Trade G1 R1 Skykingt13\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) zoltar: Build Y1 Zoltar\n\n12) skykingt13: Build R1 Skykingt13\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) zoltar: Build Y1 Zoltar\n\n\nHomeworlds Online (SDG# 13488)\nStarted: 2009.5.28, Ended: 2009.6.12\nParticipants: zoltar (S), MikeYarrum (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 13529)\nStarted: 2009.5.29, Ended: 2009.7.23\nParticipants: ts52 (S), jeep (N)\nWinner: jeep\n\n1) jeep: Homeworld R1 B2 G3\n\n2) ts52: H Y2 B3 G3\n\n3) jeep: Build G1 Jeep\n\tts52: Have a good game. \n\n4) ts52: B G1 Ts52\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) ts52: Trade G1 R1 Ts52\n\n7) jeep: Build G1 Jeep\n\n8) ts52: Build G1 Ts52\n\n9) jeep: Build Y1 Jeep\n\n10) ts52: Discover G1 Ts52 B1 Grover\n\n11) jeep: Discover Y1 Jeep G3 Thumb\n\n12) ts52: Build R1 Ts52\n\tjeep: Sorry for the delay.\n\n13) jeep: Build Y1 Thumb\n\tts52: no problem\n\n14) ts52: Build R2 Ts52\n\n15) jeep: Build Y2 Jeep\n\n16) ts52: Move R2 Ts52 Grover\n\n17) jeep: Build Y2 Thumb\n\n18) ts52: Build R2 Ts52\n\n19) jeep: Build Y3 Jeep\n\n20) ts52: Build R2 Grover\n\n21) jeep: Sacrifice Y3 Jeep\nDiscover G1 Jeep Y3 Temp\nDiscover Y1 Jeep Y3 Movement\nDiscover Y2 Jeep Y3 Lock\n\n22) ts52: Build G1 Ts52\n\tts52: Wow, well played. I didn't see that one coming...\n\n23) jeep: Build G2 Jeep\n\tjeep: Thanks, now, can I take advantage?\n\n24) ts52: Discover R2 Ts52 B1 Cookiemonster\n\n25) jeep: Sacrifice G1 Temp\nBuild Y3 Movement\n\n26) ts52: Move G1 Ts52 Cookiemonster\n\n27) jeep: Sacrifice Y3 Movement\nDiscover G2 Jeep Y3 Temp\nDiscover Y1 Thumb B2 Cache\nDiscover Y2 Thumb B2 Cache2\n\tjeep: Sorry, late night. I thought I'd already cashed the Y3.\n\n28) ts52: Discover R1 Ts52 B1 Gonzo\n\n29) jeep: Build G1 Jeep\n\n30) ts52: Build G2 Ts52\n\n31) jeep: Sacrifice G2 Temp\nBuild Y3 Cache\nBuild G2 Jeep\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Cookiemonster\nBuild G3 Ts52\nBuild R3 Ts52\n\n33) jeep: Trade G3 B3 Jeep\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild R3 Cookiemonster\n\n35) jeep: Move Y3 Cache Lock\n\n36) ts52: Sacrifice G2 Ts52\nBuild G2 Ts52\nBuild R3 Gonzo\n\n37) jeep: Build B3 Jeep\n\tjeep: I built that in the wrong place. :(\n\n38) ts52: Move G2 Ts52 Gonzo\n\n39) jeep: Move Y3 Lock Jeep\n\tjeep: And now the slow plod towards the doomsday machine...\n\n40) ts52: Pass\n\n41) jeep: Move G2 Jeep Thumb\n\n42) ts52: Pass\n\tts52: This is very curious. I'm sure I'm going to lose, but I'm not sure how.... And I know I don't want to do anything. Not sure if it's really legal to pass, but SDG seems to accept it.\n\tjeep: I think passing is actually legal. If nothing else, you could do a "no op" type move like: s g1 cookiemonster; b g1 cookiemonster\n\n43) jeep: Move Y1 Thumb Jeep\n\tts52: Right, that makes sense.\n\n44) ts52: Pass\n\n45) jeep: Move B3 Jeep Movement\n\n46) ts52: Pass\n\tts52: This is tough. With no transportation, I'm left to wait and watch you make your move...\n\tjeep: Nod, I'm about to make a move that would take several moves to undo if I later decide it's wrong, so I'm going to think about this for a little bit and not make the move at midnight. ;)\n\tjeep: Okay, here's a move I can undo if needed and I know I want to make it. ;)\n\n47) jeep: Move B3 Jeep Movement\n\n48) ts52: Pass\n\n49) jeep: Move Y1 Jeep Thumb\n\n50) ts52: Pass\n\n51) jeep: Move G2 Thumb Cache2\n\tjeep: *sigh* changed plans and had to undo a move I made earlier. :(\n\tts52: I'm still curious to see how you're going to get through. I'm starting to wonder if we've hit a stalemate.\n\n52) ts52: Pass\n\n53) jeep: Move Y2 Cache2 Thumb\n\tjeep: No, pretty sure my new plan will work, it's just slow.\n\tjeep: Bah, I guess I got off a line in my planned moves. I wasn't supposed to move both blue3 to movement, only 1... yet another wasted move. Good thing there isn't a 50 move rule here. ;)\n\n54) ts52: Pass\n\n55) jeep: Sacrifice G2 Cache2\nBuild G2 Jeep\nBuild B2 Movement\n\n56) ts52: Pass\n\n57) jeep: Move B3 Movement Jeep\n\n58) ts52: Pass\n\n59) jeep: Move G2 Jeep Thumb\n\n60) ts52: Pass\n\n61) jeep: Move G2 Thumb Cache\n\n62) ts52: Pass\n\n63) jeep: Move Y1 Cache Movement\n\n64) ts52: Pass\n\n65) jeep: Sacrifice G2 Cache\nBuild G2 Jeep\nBuild B2 Movement\n\n66) ts52: Pass\n\n67) jeep: Move Y1 Thumb Jeep\n\tts52: Yep, that's going to hurt. But at least I'll be able to get some yellow...\n\n68) ts52: Pass\n\tjeep: I hope not. ;) But it's a tricky plan, so I don't want to make it in a rush. I'm on vacation and will make my move when I'm settled at my destination and not on the road.\n\n69) jeep: Move G2 Jeep Thumb\n\n70) ts52: Pass\n\tts52: Sorry for the delay. I was away on vacation.\n\n71) jeep: Move Y2 Thumb Jeep\n\n72) ts52: Pass\n\n73) jeep: Sacrifice G2 Thumb\nBuild G2 Jeep\nBuild G3 Jeep\n\n74) ts52: Pass\n\n75) jeep: Move G1 Jeep Lock\n\n76) ts52: Pass\n\n77) jeep: Move G3 Jeep Lock\n\n78) ts52: Pass\n\n79) jeep: Move B3 Jeep Lock\n\tjeep: Woo Hoo, the action is about to start...\n\n80) ts52: Pass\n\tts52: Ok, let's see it! :)\n\tjeep: Gah! Stupid typo... \n\n81) jeep: Move B2 Movement Grover\n\n82) ts52: Attack B2 Grover\n\n83) jeep: Sacrifice Y3 Jeep\nDiscover G2 Jeep Y3 Cache\nMove B2 Movement Grover\nMove B3 Movement Grover\nCatastrophe Grover Blue\n\n84) ts52: Build G1 Ts52\n\tts52: Aha, the slow and painful death, I see... :)\n\n85) jeep: Sacrifice G3 Lock\nBuild G3 Lock\nBuild G3 Lock\nBuild B1 Lock\n\tjeep: Yeah, I hope to make you dwindle down to just your homeworld and in the meantime, I'll recover faster the extra material faster than you do. Then I'll have the opportunity to set up the doomsday and I'll be able to execute it before you have a chance to invade my space. At least, that's the plan.\n\n86) ts52: Trade R3 B3 Ts52\n\tts52: Sorry for the delay.\n\n87) jeep: Discover G3 Lock B2 Slow\n\n88) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R2 Ts52\n\n89) jeep: Sacrifice G2 Cache\nBuild G2 Lock\nBuild Y3 Jeep\n\n90) ts52: Build R3 Gonzo\n\n91) jeep: Build B2 Lock\n\n92) ts52: Sacrifice G1 Cookiemonster\nPass\n\n93) jeep: Build G1 Slow\n\n94) ts52: Sacrifice R1 Gonzo\nPass\n\n95) jeep: Discover B3 Lock R1 Slayer\n\n96) ts52: Sacrifice R1 Ts52\nPass\n\tjeep: I guess I need a red to make this plan work, eh? Hmm...\n\n97) jeep: Discover G3 Lock R1 Slayer2\n\n98) ts52: Pass\n\tts52: Yeah, I really didn't want to give one up, but I think it's my only shot at survival... ironically it may hasten my demise. :)\n\n99) jeep: Move B1 Lock Slayer2\n\tts52: And since I have no yellow, I can't move two ships in there to be able to take either of those systems. Yeah, I'm pretty much screwed...\n\n\tts52: Yeah, unfortunately the only way to stop you was to get a small star of my own that I could park blues on, to keep you from building the doomsday machine. But there was just no way that was going to work. Excellent game. Now I know, never let yourself get shut out of yellow!\n\tjeep: Thanks for the game. It was good. Shut out of any color is bad. Shut out of yellow is really bad. \n\nHomeworlds Online (SDG# 13533)\nVariants: "Unrated"\nStarted: 2009.5.29, Ended: 2009.6.10\nParticipants: johannz (S), riddick (N)\nWinner: johannz\n\n1) riddick: Homeworld B2 Y1 G3\n\n2) johannz: Homeworld Y3 B2 G3\n\n3) riddick: Build G1 Riddick\n\n4) johannz: Build G1 Johannz\n\n5) riddick: Discover G3 Riddick Y3 Nomansland\n\n6) johannz: Discover G3 Johannz R1 Gateway\n\n7) riddick: Build G1 Nomansland\n\n8) johannz: Build G2 Johannz\n\n9) riddick: Build G2 Riddick\n\n10) johannz: Trade G2 Y2 Johannz\n\n11) riddick: Trade G1 B1 Riddick\n\n12) johannz: Move Y2 Johannz Gateway\n\n13) riddick: Move B1 Riddick Nomansland\n\n14) johannz: Build G1 Johannz\n\n15) riddick: Build G2 Riddick\n\n16) johannz: Move G1 Johannz Gateway\n\n17) riddick: Build G2 Nomansland\n\n18) johannz: Move G1 Gateway Nomansland\nCatastrophe Nomansland Green\n\n19) riddick: Move G2 Riddick Nomansland\n\n20) johannz: Build G1 Johannz\n\tjohannz: Sorry Bryan, I just had to do it :)\n\tjohannz: Think of it as a learning experience\n\n21) riddick: Build G1 Riddick\n\n22) johannz: Trade G1 B1 Johannz\n\n23) riddick: Trade G2 R2 Nomansland\n\n24) johannz: Move B1 Johannz Gateway\n\n25) riddick: Move G2 Riddick Nomansland\n\triddick: Crap! If you think about it, I think you win this next turn. Think planetary sacrifice....\n\triddick: Actually -- maybe I'm still safe -- for some reason I though you could sacrifice system markers, but I guess it's only ships.\n\n26) johannz: Build Y1 Gateway\n\tjohannz: Not sure why you thought I could win this turn, even with planetary sacrifice. Don't have enough green close enough.\r\nBut I can seriously weaken you.\r\nBuild y1 in gateway\r\nsacrifice y2 in gateway, move b1 through nomansland into riddick\r\nsacrifice g3 in gateway, build 2 b's in riddick, catastrope blue (including planets) in riddick, build y1 in gateway.\r\nNow riddick is a y1 system, and directly accessible from my home world.\r\nYou still have some easy options to prevent this.\n\n27) riddick: Trade G1 R1 Riddick\n\n28) johannz: Trade G3 R3 Gateway\n\n29) riddick: Move G2 Nomansland Riddick\n\n30) johannz: Sacrifice Y2 Gateway\nMove R3 Gateway Nomansland\nMove R3 Nomansland Riddick\n\n31) riddick: Build G1 Riddick\n\n32) johannz: Attack G2 Riddick\n\n\triddick: You the man! I think at this point I'd just be creating ships that you'll then attach until you can catastrophe the whole system. I bow before you're interplanetary prowess!!\n\nHomeworlds Online (SDG# 13523)\nVariants: "Hard time"\nStarted: 2009.5.30, Ended: 2009.7.6\nParticipants: zoltar (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B2 R1 G3\n\tJesse: So, we meet again. Have a good game.\n\n2) zoltar: Homeworld B1 R3 G3\n\n3) Jesse: Build G1 Jesse\n\n4) zoltar: Build G1 Zoltar\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Jesse: Build G1 Jesse\n\n8) zoltar: Build G1 Zoltar\n\n9) Jesse: Trade G1 B1 Jesse\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) Jesse: Build B2 Jesse\n\n12) zoltar: Build B2 Zoltar\n\n13) Jesse: Discover B2 Jesse G3 Golem\n\n14) zoltar: Trade B1 R1 Zoltar\n\n15) Jesse: Build B1 Golem\n\n16) zoltar: Build B3 Zoltar\n\n17) Jesse: Build B3 Golem\n\n\n18) zoltar: Trade B3 Y3 Zoltar\n\n19) Jesse: Trade B1 R1 Golem\n\n20) zoltar: Build R2 Zoltar\n\n21) Jesse: Trade B3 Y3 Golem\n\n\n22) zoltar: Discover R1 Zoltar G2 Greenbelt\n\n23) Jesse: Build R2 Golem\n\n24) zoltar: Move Y3 Zoltar Greenbelt\n\n25) Jesse: Discover R2 Golem G2 Gorgon\n\n26) zoltar: Build G1 Zoltar\n\n27) Jesse: Build G1 Jesse\n\n28) zoltar: Discover R2 Zoltar Y2 Yellowstone\n\n29) Jesse: Build B1 Golem\n\n30) zoltar: Move B2 Zoltar Greenbelt\n\n31) Jesse: Move B1 Golem Gorgon\n\n\n32) zoltar: Build B3 Greenbelt\n\n33) Jesse: Build B3 Gorgon\n\n34) zoltar: Trade B3 R3 Greenbelt\n\n35) Jesse: Trade B3 Y3 Gorgon\n\n36) zoltar: Build B3 Greenbelt\n\n37) Jesse: Build B3 Gorgon\n\n\n38) zoltar: Discover R3 Greenbelt B3 Bluemoon\n\n39) Jesse: Build R2 Gorgon\n\n40) zoltar: Build R3 Greenbelt\n\n41) Jesse: Discover R1 Golem Y2 Yeti\n\n42) zoltar: Sacrifice Y3 Greenbelt\nMove R1 Greenbelt Bluemoon\nMove R1 Bluemoon Gorgon\nMove R3 Bluemoon Gorgon\nCatastrophe Gorgon R\n\n43) Jesse: Trade B3 R3 Gorgon\n\tzoltar: Yeah, looks like you've got a doomsday machine there and I'm pretty much doomed!\n\tJesse: Yes, I'm afraid your turns are numbered, my friend.\n\n44) zoltar: Sacrifice Y1 Zoltar\nDiscover B3 Greenbelt Y3 Yellowbelly\n\n45) Jesse: Build R1 Gorgon\n\n46) zoltar: Build B3 Greenbelt\n\n47) Jesse: Move R3 Gorgon Zoltar\n\n\tzoltar: Yep, it's mate in 2. Good game!\n\nHomeworlds Online (SDG# 13547)\nVariants: "No undo, Hard time"\nStarted: 2009.5.30, Ended: 2009.5.31\nParticipants: Qat (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B1 R3 G3\n\n2) Qat: Homeworld B2 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\tQat: Hi there, good luck to you\n\n4) Qat: Build G1 Qat\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Qat: Discover G1 Qat B3 Chaos\n\n7) zoltar: Build G1 Zoltar\n\n8) Qat: Build G1 Qat\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) Qat: Discover G1 Qat B3 Whoosh\n\n11) zoltar: Build B1 Zoltar\n\n12) Qat: Build G1 Qat\n\n13) zoltar: Build G2 Zoltar\n\n14) Qat: Build G2 Whoosh\n\n15) zoltar: Trade G2 Y2 Zoltar\n\n16) Qat: Trade G2 B2 Whoosh\n\n17) zoltar: Build G2 Zoltar\n\n18) Qat: Build G2 Whoosh\n\n19) zoltar: Discover B1 Zoltar Y2 Yellowstone\n\n20) Qat: Trade G2 Y2 Whoosh\n\n21) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n22) Qat: Sacrifice G3 Qat\nBuild G2 Whoosh\nBuild G3 Chaos\nBuild G3 Qat\n\n23) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Yellowstone\n\n24) Qat: Move B2 Whoosh Yellowstone\n\n25) zoltar: Trade B3 R3 Yellowstone\n\n26) Qat: Discover B2 Yellowstone Y1 Endgame\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild B3 Yellowstone\n\n\tQat: Cheers.\n\tzoltar: I thought you had the upper hand for a while when you threatened to get all the Greens, but breaking open with the Blue industry gave me the lead.\n\nHomeworlds Online (SDG# 13484)\nStarted: 2009.6.3, Ended: 2009.6.10\nParticipants: TwoShort (S), aleis (N)\nWinner: TwoShort\n\n1) aleis: Homeworld G2 B3 Y3\n\n2) TwoShort: Homeworld R1 B2 G3\n\taleis: Hi there, just to let you know I'm new to both homeworld and SDG so bare with me if you will.\n\n3) aleis: Build Y1 Aleis\n\tTwoShort: Welcome! I'll try to give you some tips from time to time, but they'll probably mostly be slightly to late to help you :) For example, I'd recomend starting with a green ship.\n\n4) TwoShort: Build G1 Twoshort\n\n5) aleis: Build Y1 Aleis\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) aleis: Trade Y1 B1 Aleis\n\n8) TwoShort: Build G1 Twoshort\n\n9) aleis: Discover B1 Aleis G1 Acentari\n\n10) TwoShort: Build G1 Twoshort\n\n11) aleis: Build B1 Acentari\n\n12) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n13) aleis: Trade B1 R1 Acentari\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n15) aleis: Move Y1 Aleis Acentari\n\tTwoShort: Essential Homeworlds tactic #1: The Factory. (this is a big part of why to start with a green ship)\n\n16) TwoShort: Trade G2 R2 Bluonia\n\n17) aleis: Build R1 Acentari\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Bluonia\nBuild G3 Twoshort\n\n19) aleis: Trade Y3 G3 Aleis\n\n20) TwoShort: Trade G3 Y3 Bluonia\n\n21) aleis: Move R1 Acentari Aleis\n\tTwoShort: Unfortunately, it's too late to take the green now. If you build another one, I'll sacrifice my big yellow to move a green of my own all the way to your Homeworld and cause a catastrophe.\n\n22) TwoShort: Discover G2 Bluonia Y1 Yolonda\n\n23) aleis: Build R2 Acentari\n\n24) TwoShort: Sacrifice Y3 Bluonia\nMove G1 Bluonia Yolonda\nMove G1 Yolonda Aleis\nMove G2 Yolonda Aleis\nCatastrophe Aleis Green\n\n25) aleis: Move R2 Acentari Aleis\n\n26) TwoShort: Move G3 Twoshort Aleis\n\n\nHomeworlds Online (SDG# 13530)\nStarted: 2009.6.3, Ended: 2010.6.29\nParticipants: MikeYarrum (S), aleis (N)\nWinner: MikeYarrum\n\n1) aleis: Homeworld G2 Y3 B3\n\n\nHomeworlds Online (SDG# 13550)\nStarted: 2009.6.3, Ended: 2009.10.28\nParticipants: aleis (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) aleis: Homeworld G3 Y2 B3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) aleis: Build B1 Aleis\n\n5) ts52: Trade G1 B1 Ts52\n\n6) aleis: Trade B1 G1 Aleis\n\taleis: Will try still fairly new at this, \n\n7) ts52: Build G1 Ts52\n\n8) aleis: Build B1 Aleis\n\n9) ts52: Discover B1 Ts52 G3 Kermit\n\n10) aleis: Trade B1 R1 Aleis\n\n11) ts52: Build B1 Kermit\n\n12) aleis: Discover R1 Aleis G1 Porcky\n\n13) ts52: Trade B1 R1 Kermit\n\n14) aleis: Build B1 Aleis\n\n15) ts52: Build G2 Ts52\n\n16) aleis: Build R1 Porcky\n\n17) ts52: Build R2 Kermit\n\taleis: What command do i use to grow a ship?\n\n18) aleis: Build R2 Porcky\n\tts52: You can't actually grow a ship. You can only build a new ship with the green power (cloning the color of a ship you have in that system, using the smallest available size from the stash)\n\n19) ts52: Trade B1 Y1 Kermit\n\n20) aleis: Trade B1 Y1 Aleis\n\n21) ts52: Move R1 Kermit Porcky\nCatastrophe Porcky Red\n\n22) aleis: Build B1 Aleis\n\n23) ts52: B Y2 Kermit\n\n24) aleis: Trade B1 R1 Aleis\n\n25) ts52: Discover G2 Ts52 Y3 Bigbird\n\n26) aleis: Discover Y1 Aleis G1 Elmer\n\n27) ts52: Discover Y2 Kermit B1 Grover\n\n28) aleis: Build Y2 Elmer\n\n29) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Ts52\nBuild G3 Ts52\n\n30) aleis: Build Y3 Elmer\n\n31) ts52: Move Y1 Kermit Elmer\nCatastrophe Elmer Yellow\n\n32) aleis: Trade B3 Y3 Aleis\n\n33) ts52: Discover G2 Ts52 Y3 Zoe\n\n34) aleis: Move G1 Aleis Grover\n\n35) ts52: Sacrifice G3 Ts52\nBuild G1 Zoe\nBuild G3 Ts52\nBuild R1 Kermit\n\n\nHomeworlds Online (SDG# 13284)\nVariants: "Hard time"\nStarted: 2009.6.4, Ended: 2009.6.4\nParticipants: agentofchaos (S), Joe (N)\nWinner: agentofchaos\n\n1) Joe: Homeworld G1 Y2 B3\n\n2) agentofchaos: Homeworld R3 B1 G3\n\tJoe: Hi agentofchaos, good luck (maybe you dont even need it, this is my first game ;) )\r\n\n\tagentofchaos: Hi Joe, thanks, I could always use some luck! I've played this a few times, but I'm no expert. I hope you enjoy it :-)\n\n3) Joe: Discover B3 Joe R3 Dilant\n\tJoe: Hmmm some serious mistake here...\n\tJoe: Ahh indeed, no ships in my homeworld :( Shall I set up a new game and we will begin the same as here?\r\n\n\n\nHomeworlds Online (SDG# 13580)\nVariants: "Unrated"\nStarted: 2009.6.5, Ended: 2009.6.13\nParticipants: fumanstu (S), Joe (N)\nWinner: Joe\n\n1) Joe: Homeworld G1 Y2 B3\n\tJoe: Hi fumantsu! Good luck! (And smack me if I do something wrong...)\n\n\nHomeworlds Online (SDG# 13584)\nVariants: "Hard time"\nStarted: 2009.6.5, Ended: 2009.6.12\nParticipants: Joe (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B3 R2 G3\n\n2) Joe: Homeworld G1 Y2 B3\n\tagentofchaos: Hi again Joe. I think it takes a while to get the hang of the rules in this game, it's a bit complicated I know. I hope you enjoy it anyway :-)\n\tJoe: Well, after reading I guess it is not THAT complicated, but such simple mistakes happen ;)\r\n\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Joe: Build B1 Joe\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) Joe: Build B1 Joe\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) Joe: Trade B1 G1 Joe\n\n9) agentofchaos: Build G2 Agentofchaos\n\n10) Joe: Build G2 Joe\n\n11) agentofchaos: Trade G1 B1 Agentofchaos\n\n12) Joe: Build B1 Joe\n\n13) agentofchaos: Build B2 Agentofchaos\n\n14) Joe: Trade B1 R1 Joe\n\n15) agentofchaos: Trade B2 Y2 Agentofchaos\n\n16) Joe: Trade B3 Y3 Joe\n\n17) agentofchaos: Discover G2 Agentofchaos Y1 Cymru\n\n18) Joe: Discover G2 Joe Y3 Prok\n\n19) agentofchaos: Build G1 Agentofchaos\n\n20) Joe: Trade Y3 R3 Joe\n\n21) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild G3 Cymru\nBuild G3 Agentofchaos\n\n22) Joe: Move R3 Joe Prok\n\n23) agentofchaos: Trade G1 R1 Agentofchaos\n\n24) Joe: Move R3 Prok Cymru\n\n25) agentofchaos: Sacrifice R1 Agentofchaos\nAttack R3 Cymru\n\n26) Joe: Build B1 Joe\n\n27) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R3 Cymru Prok\nMove R3 Prok Joe\n\n28) Joe: Move B1 Joe Prok\n\n29) agentofchaos: Sacrifice B1 Agentofchaos\nTrade G3 R3 Cymru\n\n30) Joe: Build R1 Joe\n\n31) agentofchaos: Sacrifice R3 Cymru\nAttack R1 Joe\nAttack R1 Joe\nAttack G1 Joe\n\n32) Joe: Move G2 Prok Joe\n\n33) agentofchaos: Attack G2 Joe\n\tJoe: Tough one there...\r\n\n\tJoe: m g2 prok joe\n\n\tagentofchaos: Yes, once I got my r3 into your homeworld you were pretty well lost :-)\n\tJoe: I will resign with dignity then ;)\n\tJoe: Thx, enlightening experience!\r\n\n\tagentofchaos: Thanks for a fun game! We can play again any time :-)\n\nHomeworlds Online (SDG# 13607)\nVariants: "Unrated"\nStarted: 2009.6.8, Ended: 2009.6.11\nParticipants: ZackStack (S), Joe (N)\nWinner: ZackStack\n\n1) Joe: Homeworld Y1 G2 B3\n\tJoe: HI Zack! Good luck and... smack me if I make a BIG mistake ;)\n\n2) ZackStack: Homeworld B3 R1 G3\n\tZackStack: Hey Joe! There's no luck in Homeworlds :-P Have fun anyway! :D I've only played around 10 games myself, but I'll point out anything really strange I see.\n\n3) Joe: Build B1 Joe\n\n4) ZackStack: Build G1 Zackstack\n\n5) Joe: Build B1 Joe\n\tZackStack: Well... I just learned a rule I had missed in my tabletop games! I thought you could build any color of ship if you had green tech... The restriction on like color ships will require more planning!\n\tJoe: Yup, thought about it also in that way...\r\n\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) Joe: Discover B1 Joe G3 Prinsh\n\n8) ZackStack: Build G1 Zackstack\n\n9) Joe: Build B1 Prinsh\n\n10) ZackStack: Discover G1 Zackstack B2 Azure\n\n11) Joe: Build B2 Prinsh\n\tZackStack: Nice work blocking up the blue ships for a bit! It looks like I'm behind the learning curve now that I can't spawn any color ship I want!\n\n12) ZackStack: Build G1 Azure\n\tJoe: That may be pure luck, not a strategy (for now) ;)\r\n\n\n13) Joe: Trade B2 R2 Prinsh\n\n14) ZackStack: Build Y1 Zackstack\n\tZackStack: chuckle... I know when I'm getting sharked :-D\n\n15) Joe: Trade B3 Y3 Joe\n\n16) ZackStack: Build Y2 Zackstack\n\tJoe: Ha! The longer road then...\n\tZackStack: Of course my move should buy me a little time :-)\n\tZackStack: Hmmm... Unexpected. Nice move!\n\n17) Joe: Move Y3 Joe Prinsh\n\n18) ZackStack: Sacrifice Y2 Zackstack\nDiscover G1 Azure Y3 Sunshine\nMove G1 Azure Sunshine\n\tJoe: We shall see... I am off home so dont know about playing today yet. Maaan this is interesting, I might get it on a table at home (though proxying with one Xeno stash instead of a Rainbow...).\r\n\n\n19) Joe: Build B2 Joe\n\tZackStack: I know what you mean about interesting! This is my favorite Icehouse game and it got even better now that I'm playing the build tech right.\n\tZackStack: Good luck with any table top play too! I hope the colors don't end up confusing anyone too much. Also, there is a three player unrated game waiting on the challenge board if you really want to break your brain (I've never played with more than two players...)\n\n20) ZackStack: Move G1 Sunshine Joe\n\n21) Joe: Trade Y3 R3 Prinsh\n\n22) ZackStack: Build G1 Joe\n\n23) Joe: Build B2 Joe\n\tZackStack: Did you get a chance to play tabletop yesterday?\n\tJoe: Nope... all my tabletop plays (also with other games) happen rather irregularly, as my wife is not that interested in gaming, maybe except Stone Age a couple of times, so I have to resort to scarce playing with my Dad and my brother, who live nearby... And I have a lot of work around the house ;) So sometimes I invite them both to help me out and after that we can play a game or two. But I plan to soon!\n\n24) ZackStack: Build G2 Sunshine\n\n25) Joe: Sacrifice R2 Prinsh\nAttack G1 Joe\nAttack G1 Joe\n\tZackStack: I know the feeling... My wife loves Alhambra and Ingenious so I get to play plenty of those. I do have a weekly game club, but I rarely have sucess bringing out the pyramids there.\n\n26) ZackStack: Move G1 Sunshine Joe\nCatastrophe Joe Green\n\tJoe: Whew... I fought! :)\n\tZackStack: Indeed. I wondered how long until you zapped those guys... now to learn about catastrophes!\n\n27) Joe: Trade B2 Y2 Joe\n\n28) ZackStack: Build Y2 Zackstack\n\tZackStack: Sorry about the undo... I forgot about the carriage return between commands...\n\tJoe: Ah, yes. Now I know the effect ;)\n\n29) Joe: Build B2 Prinsh\n\n30) ZackStack: Build G1 Zackstack\n\tZackStack: Of course now I have to be a little less aggressive since I used so many of my own ships to do that...\n\n31) Joe: Trade B2 Y2 Prinsh\n\n32) ZackStack: Discover Y2 Zackstack R2 Crimson\n\n33) Joe: Trade B1 R1 Joe\n\n34) ZackStack: Sacrifice G3 Zackstack\nBuild Y3 Crimson\nBuild Y3 Zackstack\nBuild G1 Sunshine\n\n35) Joe: Move R3 Prinsh Joe\n\n36) ZackStack: Sacrifice Y3 Zackstack\nMove Y3 Crimson Joe\nMove G2 Sunshine Crimson\nMove Y2 Crimson Joe\nCatastrophe Joe Yellow\n\n\tZackStack: Thanks for playing! I'm looking forward to the rematch!\n\nHomeworlds Online (SDG# 13595)\nStarted: 2009.6.8, Ended: 2009.6.28\nParticipants: Joe (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld G2 B1 Y3\n\tJoe: Hi Laurie! Good luck!\n\tLaurie_Menke: Hi Joe... you, too! Sorry for the delay in getting started. I moved this weekend and am just getting back into "normal" life. ;o)\r\n\r\nLet me know if you have any questions!\n\n2) Joe: Homeworld R1 B2 G3\n\tJoe: No probs Laurie! Sure, if I will have some, I will shout out. Or if you see something utterly stupid :) shout back...\n\n3) Laurie_Menke: Build Y1 Laurie_menke\n\n4) Joe: Build G1 Joe\n\n5) Laurie_Menke: Build Y1 Laurie_menke\n\n6) Joe: Build G1 Joe\n\n7) Laurie_Menke: Discover Y3 Laurie_menke G3 Jollygreengiant\n\n8) Joe: Trade G3 R3 Joe\n\n9) Laurie_Menke: Build Y1 Laurie_menke\n\n10) Joe: Trade G1 B1 Joe\n\n11) Laurie_Menke: Build Y2 Jollygreengiant\n\n12) Joe: Build G1 Joe\n\n13) Laurie_Menke: Discover Y1 Laurie_menke Y3 Bigyellowsun\n\n14) Joe: Pass\n\n15) Laurie_Menke: Discover Y1 Laurie_menke Y3 Bigyellowmoon\n\n16) Joe: Build G1 Joe\n\n17) Laurie_Menke: Discover Y2 Jollygreengiant Y2 Yellowsubmarine\n\n18) Joe: Build B1 Joe\n\tLaurie_Menke: Hey, Joe... I just realized that I meant to make this an unrated game, but accidentally made it rated. I'm sorry. :o( If you want to play another game (it takes a few to get the hang of it), feel free to challenge me any time, and definitely make it unrated. :o)\n\tJoe: That's no problem :) And I cannot move effectively, as I forgot to include yellow in my starting point :D\n\n19) Laurie_Menke: Build Y2 Laurie_menke\n\tLaurie_Menke: Right. And I took advantage of that and used up all the yellow so it would be hard for you to trade for some. ;o) That's how I learned... just played a few games until I got the hang of what kind of mischief my opponent could cook up. ;o)\n\n20) Joe: Pass\n\tJoe: So I sit tight and wait...\n\n21) Laurie_Menke: Trade Y2 B2 Laurie_menke\n\n22) Joe: Build R1 Joe\n\n23) Laurie_Menke: Sacrifice Y2 Yellowsubmarine\nMove B2 Laurie_menke Bigyellowmoon\nMove B2 Bigyellowmoon Joe\nCatastrophe Joe B\n\n24) Joe: Pass\n\tLaurie_Menke: Sorry... this game can be brutal sometimes. :o(\n\tJoe: Yes, especially when you start weirdly ;)\r\nI guess I am done for, as you can bash me with catastrophes on and on (one red and I am dead). Shall we call it quits now, rather than later?\n\n25) Laurie_Menke: Build Y2 Laurie_menke\n\tLaurie_Menke: Sure. You actually did quite well for one of your first games. It took me several games just to understand what to do without having to ask my opponent for help all the time. :o) If you'd like to go again, feel free to challenge me any time. And thanks for the fun! :o)\n\n\tJoe: Thx for the game also! I will sure come back again ;)\n\nHomeworlds Online (SDG# 13608)\nStarted: 2009.6.8, Ended: 2009.7.1\nParticipants: Joe (S), molnar (N)\nWinner: Joe\n\n1) molnar: Homeworld Y3 B1 G3\n\tJoe: Hi molnar! And good luck! :)\n\n2) Joe: Homeworld B1 G2 Y3\n\n3) molnar: Build G1 Molnar\n\n4) Joe: Build Y1 Joe\n\n5) molnar: Trade G1 R1 Molnar\n\n6) Joe: Build Y1 Joe\n\n7) molnar: Build G1 Molnar\n\n8) Joe: Trade Y1 G1 Joe\n\n9) molnar: Discover G1 Molnar Y2 Xxx\n\n10) Joe: Build G1 Joe\n\n11) molnar: Build G2 Molnar\n\n12) Joe: Trade G1 B1 Joe\n\n13) molnar: Move R1 Molnar Xxx\n\n14) Joe: Discover G1 Joe Y3 Bob\n\n15) molnar: Move G2 Molnar Xxx\n\n16) Joe: Trade Y3 R3 Joe\n\n17) molnar: Move G1 Xxx Molnar\n\n18) Joe: Build R1 Joe\n\n19) molnar: Trade G3 B3 Molnar\n\n20) Joe: Move B1 Joe Bob\n\n21) molnar: Build B2 Molnar\n\n22) Joe: Build Y1 Joe\n\n23) molnar: Move B3 Molnar Xxx\n\n24) Joe: Build B2 Bob\n\n25) molnar: Trade B2 R2 Molnar\n\n26) Joe: Trade B2 R2 Bob\n\n27) molnar: Build B2 Xxx\n\n28) Joe: Move R1 Joe Bob\n\n29) molnar: Trade B3 R3 Xxx\n\n30) Joe: Build R1 Joe\n\n31) molnar: Build B2 Xxx\n\n32) Joe: Build G1 Bob\n\n33) molnar: Trade B2 Y2 Xxx\n\n34) Joe: Move R3 Joe Bob\n\n35) molnar: Move R1 Xxx Bob\nCatastrophe Bob Red\n\n36) Joe: Move G1 Bob Joe\n\n37) molnar: Move R3 Xxx Bob\n\n38) Joe: Build G2 Joe\n\n\tmolnar: huh? did I time out?\n\tJoe: Yup, unfortunately....\n\nHomeworlds Online (SDG# 13643)\nVariants: "Unrated, Sinister"\nStarted: 2009.6.11, Ended: 2010.1.25\nParticipants: johannz (S), untcodegeek (N), riddick (E)\nWinner: riddick\n\n1) untcodegeek: Homeworld B1 Y2 G3\n\n2) riddick: Homeworld Y1 B2 G3\n\n3) johannz: Homeworld G3 Y1 B3\n\n4) untcodegeek: Build G1 Untcodegeek\n\triddick: From the Homeworlds website -- http://www.wunderland.com/WTS/Ginohn/games/Homeworlds/HomeworldsRules.html -- "Two systems are connected to each other if they do not share the same size system markers. If two systems contain the same size system marker, those two systems are not connected." -- So wouldn't that mean that my 1 and 2 sized star system homeworld is correct? Phil shouldn't be able to get to me if my star sizes match his.\n\tjohannz: I didn't say they were connected. I said they were "close together". Phil can go to a whatever-3, then straight to your homeworld. But if you had built a Y1, B3, he would have to go to a 2, then a 3, then your homeworld. Instead of 2 jumps away, you would be 3.\n\n5) riddick: Build G1 Riddick\n\triddick: Thanks man -- Phil and I will just be close to each other then this game.\n\n6) johannz: Build B1 Johannz\n\n\tjohannz: See forum message #7611 for details of issue \n\tAaron: Is riddick not able to play? My tests show he is the current player.\n\tjohannz: No, he is able to. The problem was earlier, on 2009-06-18 10:18:47, when untcodegeek accidently abandoned his homeworld. It glitched, but self-fixed when he undid the move.\n\nHomeworlds Online (SDG# 13639)\nVariants: "Unrated"\nStarted: 2009.6.12, Ended: 2009.6.22\nParticipants: ZackStack (S), Joe (N)\nWinner: ZackStack\n\n1) Joe: Homeworld Y3 B2 G3\n\n2) ZackStack: Homeworld Y3 B1 G3\n\tJoe: And off we go! Good luck!\n\n3) Joe: Build G1 Joe\n\tZackStack: Nice looking color choices to begin... I think I'll borrow them :-) Enjoy the game!\n\n4) ZackStack: Build G1 Zackstack\n\tJoe: Indeed ;)\r\nYou too!\n\n5) Joe: Build G1 Joe\n\n6) ZackStack: Discover G1 Zackstack B2 Grover\n\n7) Joe: Trade G1 Y1 Joe\n\n8) ZackStack: Build G1 Zackstack\n\n9) Joe: Discover G1 Joe Y1 Fogo\n\n10) ZackStack: Build G2 Grover\n\n11) Joe: Move G1 Fogo Grover\n\n12) ZackStack: Trade G2 R2 Grover\n\n13) Joe: Build G2 Joe\n\n14) ZackStack: Attack G1 Grover\n\n15) Joe: Trade G3 R3 Joe\n\n16) ZackStack: Trade G1 R1 Zackstack\n\tZackStack: I sure wish I had enough room to sacrafice my big green ship... I'll just have to take your little one instead :-)\n\n17) Joe: Build R1 Joe\n\tJoe: Well well... fighting, eh?\n\n18) ZackStack: Trade G1 Y1 Grover\n\n19) Joe: Discover R3 Joe Y1 Pope\n\n20) ZackStack: Discover R2 Grover G1 Oscar\n\n21) Joe: Move R3 Pope Joe\n\n22) ZackStack: Build G1 Zackstack\n\tZackStack: Ever get the 'Vader' theme in your head when you move those big warships? :-)\n\n23) Joe: Build G2 Joe\n\n24) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Grover\nBuild G3 Grover\nBuild G3 Zackstack\n\tJoe: Hehe, nope, but I hummed it right now! :)\n\n25) Joe: Move R3 Joe Oscar\n\n26) ZackStack: Sacrifice Y1 Grover\nMove R2 Oscar Grover\n\n27) Joe: Build G3 Joe\n\tZackStack: I sure like that trick :-)\n\n28) ZackStack: Trade G2 Y2 Grover\n\n29) Joe: Trade G3 R3 Joe\n\n30) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Zackstack\nBuild G3 Grover\nBuild G3 Zackstack\n\n31) Joe: Build R1 Oscar\n\tZackStack: I see you have a couple SDG games running... So, how are you liking Homeworlds so far? \n\n32) ZackStack: Discover G3 Grover Y1 Bigbird\n\tJoe: I like it! Mainly the thing that you have to think about many small things and im my phase now I am playing more or less intuitively. But once all of them *click* together, I will be able to foresee certain developments... Gotta buy another Rainbow stash or two ;)\n\n33) Joe: Move Y1 Joe Oscar\n\n34) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild R2 Grover\nBuild R2 Zackstack\n\n35) Joe: Build R3 Joe\n\n36) ZackStack: Sacrifice Y2 Grover\nMove R2 Grover Bigbird\nMove R2 Bigbird Joe\nCatastrophe Joe Red\n\n37) Joe: Trade G2 B2 Joe\n\n38) ZackStack: Move G3 Bigbird Joe\n\n39) Joe: Move R3 Oscar Joe\n\tZackStack: Maybe 3 turns was optimistic... but possible. Pull out the stops and show me I'm wrong :-)\n\n40) ZackStack: Sacrifice R2 Zackstack\nAttack R3 Joe\nAttack G2 Joe\n\tJoe: Hehe, the space is vaaaaaaaaaaaaaast...\r\n\n\n\tZackStack: Sorry Joe... the defense was a move to late I fear...\n\tJoe: Ah yesI forgot about the "attack where your ships are" part ;)\r\n\n\tJoe: Congrats! Will create a new one...\r\n\n\nHomeworlds Online (SDG# 13634)\nStarted: 2009.6.12, Ended: 2009.9.8\nParticipants: MrStickman (S), face (N)\nWinner: face\n\n1) face: Homeworld R3 B2 G3\n\tMrStickman: Hiya! Glad you could make it!\n\tMrStickman: Hiya! Glad you could make it!\n\n2) MrStickman: Homeworld G1 Y2 B3\n\tface: going to take some time getting used to these commands.\n\n3) face: Build G1 Face\n\tMrStickman: You do know the clock is currently set to never refill, right? That might hurt during your trip. We can change it later, if you want...\n\tface: nope. had no idea what refill is. thought i was setting it to allow 60 days for each turn.\n\n4) MrStickman: Build B1 Mrstickman\n\n5) face: Trade G3 Y3 Face\n\n6) MrStickman: Build B1 Mrstickman\n\n7) face: Build Y1 Face\n\tMrStickman: Type "~vote accept 85" (without the quotation marks) to make the clock do what you wanted.\n\n8) MrStickman: Trade B1 G1 Mrstickman\n\n9) face: Build G2 Face\n\n10) MrStickman: Discover G1 Mrstickman Y3 Lorem\n\n11) face: Trade G2 R2 Face\n\tface: trade g2 r2 face\n\tface: i just put that in the wrong place. sorry.\n\n12) MrStickman: Build G2 Lorem\n\n13) face: Discover R2 Face Y1 Jabulani\n\n14) MrStickman: Build G2 Lorem\n\n15) face: Move R2 Jabulani Lorem\n\tMrStickman: Welcome back to the Kingdom of Loathing. Noob.\n\n16) MrStickman: Move G2 Lorem Mrstickman\n\n17) face: Attack G2 Lorem\n\n18) MrStickman: Discover G1 Lorem Y2 Ipsum\n\n19) face: Trade Y1 B1 Face\n\n20) MrStickman: Trade B3 R3 Mrstickman\n\n21) face: Discover B1 Face Y1 Algebra Chainsaw\n\n22) MrStickman: Discover G1 Ipsum Y3 Dolor\n\n23) face: Move B1 Algebra Lorem\n\n24) MrStickman: Build R1 Mrstickman\n\n25) face: Build G2 Face\n\n26) MrStickman: Build G3 Dolor\n\n27) face: Build G3 Lorem\n\n28) MrStickman: Build G3 Dolor\n\n29) face: Discover G1 Face Y1 Saveseats\n\tMrStickman: You're playing more quickly. If you back from camp, do you mind if I speed the clock up a tad?\n\tMrStickman: You're playing more quickly. If you back from camp, do you mind if I speed the clock up a tad?\n\n30) MrStickman: Discover G3 Dolor B1 Sit\n\n31) face: Trade G3 R3 Lorem\n\tface: i am officially done with the camp thing.\n\n32) MrStickman: Sacrifice G3 Dolor\nBuild G3 Dolor\nBuild G3 Sit\nBuild B2 Mrstickman\n\n33) face: Build B2 Lorem\n\tMrStickman: Type "~vote accept 87" (without the quotes) to speed things up a bit.\n\tMrStickman: By the way, Zach left town, so I informed him that he was signing up for this site. His handle is "Griffandor".\n\tface: geez this is getting interesting. had to break out the real pieces to better visualize what is going on.\n\n34) MrStickman: Trade G2 Y2 Mrstickman\n\tMrStickman: This *is* a scary good game, so far. I figure ten more moves before I crack and revert to my usual bad gameplay. :)\n\n35) face: Build G2 Saveseats\n\n36) MrStickman: Move R1 Mrstickman Dolor\n\n37) face: Move B2 Lorem Saveseats\n\n38) MrStickman: Build R1 Dolor\n\n39) face: Build B3 Saveseats\n\n40) MrStickman: Move R1 Dolor Sit\n\n41) face: Build B3 Lorem\n\n42) MrStickman: Move B1 Mrstickman Dolor\n\n43) face: Trade B2 Y2 Saveseats\n\n44) MrStickman: Sacrifice G3 Sit\nBuild G3 Sit\nBuild B2 Dolor\nBuild B3 Mrstickman\n\n45) face: Build Y1 Saveseats\n\n46) MrStickman: Trade B1 Y1 Dolor\n\n47) face: Move Y1 Saveseats Lorem\n\tMrStickman: Have I mentioned lately that I love the notepad section on these pages?\n\n48) MrStickman: Sacrifice G3 Sit\nBuild G3 Sit\nBuild R1 Sit\nBuild B1 Dolor\n\n49) face: Move G1 Saveseats Lorem\n\tMrStickman: Also, I think I like this game more on SDG than in real life. I can take ten minutes for my turn and not bother anybody.\n\n50) MrStickman: Sacrifice Y2 Mrstickman\nMove R1 Sit Lorem\nMove R1 Sit Lorem\nCatastrophe Lorem Red\n\n51) face: Sacrifice Y2 Saveseats\nMove G1 Lorem Sit\nMove G2 Lorem Sit\nCatastrophe Sit Green\n\tface: huh. i didn't think that move was worth your time. but it surprisingly doesn't change my move.\n\n52) MrStickman: Discover B2 Dolor G1 Amet\n\n53) face: Trade B3 G3 Lorem\n\n54) MrStickman: Discover G1 Dolor B1 Adipiscing\n\n55) face: Build B3 Lorem\n\n56) MrStickman: Move R3 Mrstickman Lorem\n\n57) face: Sacrifice Y3 Face\nMove B1 Lorem Mrstickman\nMove B3 Lorem Mrstickman\nDiscover G3 Lorem Y2 Goodgame\nCatastrophe Mrstickman Blue\n\n\nHomeworlds Online (SDG# 13501)\nVariants: "Unrated"\nStarted: 2009.6.12, Ended: 2009.8.17\nParticipants: ZackStack (S), agentofchaos (N), mzmzmz (E)\nWinner: ZackStack\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) mzmzmz: Homeworld R2 G3 B3\n\tZackStack: This will be my first game of Homeworlds with more than two players... Enjoy taking advantage of my noobness! Have fun!\n\n3) ZackStack: Homeworld Y1 B3 G3\n\tmzmzmz: My first with more than two too, and only my third game ever :)\n\n4) agentofchaos: Build G1 Agentofchaos\n\tZackStack: Well, clearly we need to gang up on Agent then ;-) Have fun!\n\tagentofchaos: Looks like I could be in trouble...;-)\n\n5) mzmzmz: Build B1 Mzmzmz\n\n6) ZackStack: Build G1 Zackstack\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) mzmzmz: Build B1 Mzmzmz\n\n9) ZackStack: Discover G1 Zackstack B2 Zaan\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) mzmzmz: Trade B1 Y1 Mzmzmz\n\n12) ZackStack: Build G1 Zaan\n\n13) agentofchaos: Trade G1 B1 Agentofchaos\n\n14) mzmzmz: Discover B1 Mzmzmz G1 Clot\n\n15) ZackStack: Trade G1 Y1 Zaan\n\n16) agentofchaos: Build Y2 Agentofchaos\n\n17) mzmzmz: Build B1 Clot\n\n18) ZackStack: Build Y2 Zaan\n\n19) agentofchaos: Trade Y2 R2 Agentofchaos\n\n20) mzmzmz: Build Y2 Mzmzmz\n\n21) ZackStack: Build G1 Zackstack\n\n22) agentofchaos: Build Y2 Agentofchaos\n\n23) mzmzmz: Move Y2 Mzmzmz Clot\n\n24) ZackStack: Trade G1 R1 Zackstack\n\n25) agentofchaos: Discover Y2 Agentofchaos G3 Draco\n\n26) mzmzmz: Build Y2 Mzmzmz\n\n27) ZackStack: Trade Y1 R1 Zaan\n\n28) agentofchaos: Build G1 Agentofchaos\n\n29) mzmzmz: Move B1 Clot Draco\n\n30) ZackStack: Build G1 Zackstack\n\n31) agentofchaos: Move R2 Agentofchaos Draco\n\n32) mzmzmz: Trade B1 R1 Clot\n\n33) ZackStack: Discover G1 Zaan Y3 Lemon\n\n34) agentofchaos: Attack B1E Draco\n\n35) mzmzmz: Build R2 Clot\n\n36) ZackStack: Build G2 Lemon\n\n37) agentofchaos: Build Y1 Agentofchaos\n\tZackStack: Hey guys... sorry if this slows us down, but I'm leaving for a wedding out of state this weekend and will have no internet access while at my inlaws... I might get a chance to check in on Saturday... Otherwise, I'll check back in on Monday.\n\n38) mzmzmz: Build Y3 Clot\n\tagentofchaos: Enjoy the wedding! :-)\n\tmzmzmz: Yeah, have fun.\n\n39) ZackStack: Sacrifice G2 Lemon\nBuild Y3 Zaan\nBuild R2 Zackstack\n\n40) agentofchaos: Build Y3 Draco\n\n41) mzmzmz: Move R1 Clot Mzmzmz\n\n42) ZackStack: Discover Y3 Zaan R3 Clifford\n\n43) agentofchaos: Build R3 Draco\n\n44) mzmzmz: Build R3 Clot\n\n45) ZackStack: Sacrifice G1 Zackstack\nBuild R3 Zaan\n\n46) agentofchaos: Trade R2 G2 Draco\n\n47) mzmzmz: Build B1 Mzmzmz\n\n48) ZackStack: Sacrifice G1 Lemon\nBuild Y3 Zaan\n\n49) agentofchaos: Build R2 Draco\n\n50) mzmzmz: Trade B1 G1 Mzmzmz\n\n51) ZackStack: Trade R1 G1 Zackstack\n\n52) agentofchaos: Build B1 Draco\n\n53) mzmzmz: Build G2 Mzmzmz\n\n54) ZackStack: Sacrifice Y3 Zaan\nMove G1 Zackstack Zaan\nMove G1 Zaan Clot\nMove G1 Clot Mzmzmz\nCatastrophe Mzmzmz Green\n\tZackStack: Sorry mz... you made this too easy...\n\n55) agentofchaos: Build B1 Draco\n\n56) mzmzmz: Sacrifice Y2 Mzmzmz\nMove B3 Mzmzmz Clot\nMove Y3 Clot Mzmzmz\n\tmzmzmz: Yeah, I always forget that sacrifice rule. I thought those greens would be safe for 1 turn . . .\n\n57) ZackStack: Build G1 Zackstack\n\n58) agentofchaos: Discover R3 Draco Y2 Trog\n\n59) mzmzmz: Build B2 Clot\n\n60) ZackStack: Trade R3 G3 Zaan\n\n61) agentofchaos: Move B1 Draco Trog\n\n62) mzmzmz: Trade B2 G2 Clot\n\n63) ZackStack: Build G1 Zaan\n\n64) agentofchaos: Sacrifice G2 Draco\nBuild R1 Trog\nBuild R3 Draco\n\n65) mzmzmz: Build Y3 Clot\n\n66) ZackStack: Move G1 Zaan Clifford\n\n67) agentofchaos: Move G1 Agentofchaos Draco\n\n68) mzmzmz: Build B2 Clot\n\n69) ZackStack: Build G2 Zaan\n\n70) agentofchaos: Build G2 Agentofchaos\n\n71) mzmzmz: Move G2 Clot Mzmzmz\n\n72) ZackStack: Sacrifice Y2 Zaan\nMove G2 Zaan Draco\nMove G3 Zaan Draco\nCatastrophe Draco Green\n\n73) agentofchaos: Discover G2 Agentofchaos Y3 Fallen\n\n74) mzmzmz: Move R3 Clot Zaan\n\n75) ZackStack: Build R2 Zackstack\n\n76) agentofchaos: Build Y2 Agentofchaos\n\tZackStack: I don't know if I'm being to aggressive in a multi-player game... but that was also too good to pass up!\n\tagentofchaos: Alas, all my beautiful ships...\n\n77) mzmzmz: Trade B2 G2 Clot\n\n78) ZackStack: Build Y2 Clifford\n\n79) agentofchaos: Build G1 Agentofchaos\n\n80) mzmzmz: Build R3 Clot\n\n81) ZackStack: Move R2 Zackstack Mzmzmz\n\n82) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R1 Trog Clot\nMove R1 Clot Mzmzmz\nCatastrophe Mzmzmz R\n\n83) ZackStack: Move Y3 Clifford Clot\n\n84) agentofchaos: Move R3 Trog Clifford\n\tZackStack: Care to do the honors Agent?\n\n85) ZackStack: Sacrifice Y2 Clifford\nMove G1 Clifford Zaan\nMove R1 Zaan Clot\n\tagentofchaos: Sorry Mz, this is too tempting to resist! ;-)\n\n86) agentofchaos: Sacrifice Y1 Agentofchaos\nMove R3 Clifford Zaan\n\n87) ZackStack: Trade G1 R1 Zaan\n\n88) agentofchaos: Trade R3 Y3 Zaan\n\n89) ZackStack: Attack R3E Clot\n\n90) agentofchaos: Trade B1 R1 Agentofchaos\n\n91) ZackStack: Move R3 Clot Fallen\n\n92) agentofchaos: Sacrifice G2 Fallen\nBuild Y1 Zaan\nBuild Y1 Agentofchaos\n\n93) ZackStack: Attack B3E Clot\n\n94) agentofchaos: Sacrifice R1 Agentofchaos\nAttack R3E Zaan\n\n95) ZackStack: Discover Y3 Clot G3 Rygel\n\n96) agentofchaos: Attack R1S Zaan\n\n97) ZackStack: Build Y2 Rygel\n\n98) agentofchaos: Trade Y1 B1 Zaan\n\n99) ZackStack: Attack Y3E Clot\n\n100) agentofchaos: Sacrifice G1 Agentofchaos\nBuild B1 Trog\n\n101) ZackStack: Move B3 Clot Rygel\n\n102) agentofchaos: Sacrifice Y3 Zaan\nMove B1 Trog Zackstack\nMove B1 Trog Zackstack\nMove B1 Zaan Zackstack\nCatastrophe Zackstack B\n\n103) ZackStack: Build B1 Rygel\n\n104) agentofchaos: Trade Y1 G1 Agentofchaos\n\n105) ZackStack: Move R1 Clot Rygel\n\n106) agentofchaos: Trade R1 Y1 Zaan\n\n107) ZackStack: Build B1 Rygel\n\n108) agentofchaos: Discover G1 Agentofchaos Y3 Krakadoom\n\n109) ZackStack: Sacrifice Y3 Clot\nMove B1 Rygel Agentofchaos\nMove B1 Rygel Agentofchaos\nMove B3 Rygel Agentofchaos\nCatastrophe Agentofchaos Blue\n\n110) agentofchaos: Build G1 Agentofchaos\n\n111) ZackStack: Build R1 Rygel\n\n112) agentofchaos: Build Y1 Agentofchaos\n\n113) ZackStack: Sacrifice Y3 Rygel\nMove R1 Rygel Agentofchaos\nMove R1 Rygel Agentofchaos\nMove R3 Fallen Agentofchaos\nCatastrophe Agentofchaos Red\n\n\tZackStack: Good game Agent! Perhaps we'll have to try with just the two of us sometime...\n\nHomeworlds Online (SDG# 13647)\nVariants: "No undo, Hard time"\nStarted: 2009.6.12, Ended: 2009.6.17\nParticipants: Qat (S), agentofchaos (N)\nWinner: Qat\n\n1) agentofchaos: Homeworld R2 B3 G3\n\n2) Qat: Homeworld B1 Y2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Qat: Build G1 Qat\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Qat: Build G1 Qat\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) Qat: Discover G1 Qat B3 Whoosh\n\n9) agentofchaos: Trade Y1 B1 Agentofchaos\n\n10) Qat: Trade G1 B1 Qat\n\n11) agentofchaos: Build Y1 Agentofchaos\n\n12) Qat: Build B2 Qat\n\n13) agentofchaos: Build B2 Agentofchaos\n\n14) Qat: Discover B2 Qat G3 Verte\n\n15) agentofchaos: Trade B2 R2 Agentofchaos\n\n16) Qat: Sacrifice G3 Qat\nBuild B2 Verte\nBuild B2 Verte\nBuild B3 Qat\n\n17) agentofchaos: Discover R2 Agentofchaos Y1 Krombe\n\n18) Qat: Trade B2 R2 Verte\n\n19) agentofchaos: Build B2 Agentofchaos\n\n20) Qat: Sacrifice G1 Whoosh\nBuild B3 Verte\n\n21) agentofchaos: Build Y2 Agentofchaos\n\n22) Qat: Trade B3 Y3 Verte\n\n23) agentofchaos: Discover R2 Krombe B3 Glurgon\n\n24) Qat: Trade B3 G3 Qat\n\n25) agentofchaos: Build G1 Agentofchaos\n\n26) Qat: Build B3 Qat\n\n27) agentofchaos: Trade R2 Y2 Glurgon\n\n28) Qat: Discover B3 Qat Y3 Northward_ho\n\n29) agentofchaos: Build G1 Agentofchaos\n\n30) Qat: Discover B2 Verte Y1 Sandy\n\n31) agentofchaos: Discover B2 Agentofchaos G1 Hagrol\n\n32) Qat: Build Y3 Verte\n\n33) agentofchaos: Move Y2 Agentofchaos Hagrol\n\n34) Qat: Move R2 Verte Hagrol\n\n35) agentofchaos: Trade G1 R1 Agentofchaos\n\n36) Qat: Attack B2 Hagrol\n\n37) agentofchaos: Sacrifice R1 Agentofchaos\nAttack R2 Hagrol\n\n38) Qat: Sacrifice B2 Hagrol\nTrade B1 R1 Qat\nTrade B3 R3 Northward_ho\n\n39) agentofchaos: Move R2 Hagrol Glurgon\n\n40) Qat: Sacrifice Y3 Verte\nMove B2 Verte Sandy\nMove B2 Sandy Agentofchaos\nMove B2 Sandy Agentofchaos\nCatastrophe Agentofchaos B\n\n41) agentofchaos: Build Y1 Hagrol\n\n42) Qat: Build Y3 Verte\n\n43) agentofchaos: Sacrifice Y2 Glurgon\nMove Y1 Hagrol Verte\nMove Y1 Agentofchaos Verte\nCatastrophe Verte Y\n\n44) Qat: Discover R3 Northward_ho B1 Sapphire\n\n45) agentofchaos: Build G1 Agentofchaos\n\n46) Qat: Build G2 Qat\n\n47) agentofchaos: Move G1 Agentofchaos Glurgon\n\n48) Qat: Sacrifice G2 Qat\nBuild G2 Qat\nBuild R1 Sapphire\n\n49) agentofchaos: Build G2 Glurgon\n\n50) Qat: Discover G2 Qat Y3 Sahara\n\n51) agentofchaos: Sacrifice G2 Glurgon\nBuild Y1 Hagrol\nBuild Y1 Hagrol\n\n52) Qat: Build R1 Qat\n\n53) agentofchaos: Build Y2 Agentofchaos\n\n54) Qat: Trade G3 Y3 Qat\n\n55) agentofchaos: Build Y3 Agentofchaos\n\n56) Qat: Sacrifice Y3 Qat\nMove R3 Sapphire Agentofchaos\nMove R1 Sapphire Agentofchaos\nDiscover R1 Qat Y3 Gameover\n\n\nHomeworlds Online (SDG# 13578)\nStarted: 2009.6.15, Ended: 2009.7.29\nParticipants: TwoShort (S), skykingt13 (N)\nWinner: TwoShort\n\n1) skykingt13: Homeworld B3 R2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) skykingt13: Build G1 Skykingt13\n\n\n4) TwoShort: Build G1 Twoshort\n\n5) skykingt13: Trade G1 Y1 Skykingt13\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) skykingt13: Build G1 Skykingt13\n\n8) TwoShort: Build G1 Twoshort\n\n9) skykingt13: Trade G1 B1 Skykingt13\n\n10) TwoShort: Build G1 Twoshort\n\n11) skykingt13: Build B1 Skykingt13\n\n12) TwoShort: Trade G1 B1 Twoshort\n\n13) skykingt13: Trade B1 R1 Skykingt13\n\n14) TwoShort: Build G1 Twoshort\n\n\nHomeworlds Online (SDG# 13663)\nVariants: "Hard time"\nStarted: 2009.6.15, Ended: 2009.6.16\nParticipants: Qat (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) Qat: Homeworld G1 Y2 B3\n\n3) zoltar: Build G1 Zoltar\n\n4) Qat: Build B1 Qat\n\n5) zoltar: Build G1 Zoltar\n\n6) Qat: Trade B3 G3 Qat\n\n7) zoltar: Trade G1 Y1 Zoltar\n\n8) Qat: Build B1 Qat\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) Qat: Trade B1 Y1 Qat\n\n11) zoltar: Build G1 Zoltar\n\n12) Qat: Build B1 Qat\n\n13) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n14) Qat: Build B2 Qat\n\n15) zoltar: Build B2 Greenbelt\n\n16) Qat: Discover B2 Qat G3 Verte\n\n17) zoltar: Trade B2 Y2 Greenbelt\n\n18) Qat: Build B2 Verte\n\n19) zoltar: Build Y1 Greenbelt\n\n20) Qat: Trade B1 R1 Qat\n\n21) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\n\n22) Qat: Build R1 Qat\n\tQat: Ouch\n\n23) zoltar: Move Y3 Greenbelt Verte\n\n\nHomeworlds Online (SDG# 13579)\nStarted: 2009.6.15, Ended: 2009.6.19\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 13667)\nStarted: 2009.6.15, Ended: 2009.7.23\nParticipants: zoltar (S), agentofchaos (N)\nWinner: zoltar\n\n1) agentofchaos: Homeworld B3 R2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\tagentofchaos: Hi again!\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) zoltar: Build G1 Zoltar\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\tzoltar: Hi!\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) zoltar: Build G1 Zoltar\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) agentofchaos: Build G1 Agentofchaos\n\n12) zoltar: Build R2 Zoltar\n\n13) agentofchaos: Build Y1 Agentofchaos\n\n14) zoltar: Build Y2 Zoltar\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n17) agentofchaos: Trade Y1 B1 Agentofchaos\n\n18) zoltar: Trade R1 B1 Zoltar\n\n19) agentofchaos: Discover Y2 Agentofchaos G1 Drogue\n\n20) zoltar: Move R2 Zoltar Greenbelt\n\n21) agentofchaos: Move R1 Agentofchaos Drogue\n\n22) zoltar: Move B1 Zoltar Greenbelt\n\n23) agentofchaos: Move G1 Agentofchaos Drogue\n\n24) zoltar: Build B1 Greenbelt\n\n25) agentofchaos: Build G1 Agentofchaos\n\n26) zoltar: Discover B1 Greenbelt G3 Greengiant\n\n27) agentofchaos: Build G2 Agentofchaos\n\n28) zoltar: Build G2 Zoltar\n\n29) agentofchaos: Move B1 Agentofchaos Drogue\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Greenbelt\nBuild B2 Greengiant\n\n31) agentofchaos: Sacrifice G3 Agentofchaos\nBuild B2 Drogue\nBuild Y1 Agentofchaos\nBuild G3 Agentofchaos\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Zoltar\n\n33) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Drogue\nBuild R1 Drogue\nBuild G3 Agentofchaos\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Greenbelt\nBuild B3 Greenbelt\n\n35) agentofchaos: Move Y2 Drogue Greenbelt\nCatastrophe Greenbelt Y\n\n36) zoltar: Sacrifice B2 Greenbelt\nTrade B3 Y3 Greenbelt\nTrade B2 R2 Greengiant\n\n37) agentofchaos: Discover R1 Drogue Y2 Gathlok\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Greenbelt\nBuild R3 Greengiant\n\n39) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R3 Gathlok\n\n40) zoltar: Build B2 Greengiant\n\n41) agentofchaos: Discover R1 Drogue Y2 Flame\n\n42) zoltar: Sacrifice Y3 Zoltar\nMove R2 Greenbelt Greengiant\nMove R2 Greengiant Gathlok\nMove R2 Greengiant Gathlok\nCatastrophe Gathlok R\n\n43) agentofchaos: Trade B2 Y2 Drogue\n\n44) zoltar: Sacrifice G2 Zoltar\nBuild Y1 Greenbelt\nBuild Y3 Zoltar\n\n45) agentofchaos: Move R1 Flame Zoltar\n\n46) zoltar: Attack R1 Zoltar\n\n47) agentofchaos: Build Y2 Agentofchaos\n\tzoltar: Sorry, I was sick the last couple of days and have been distracted. I want to look this over when I have more time tomorrow or the day after.\n\n48) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Greenbelt Greengiant\nMove R3 Greenbelt Drogue\n\tzoltar: On second thought, I just went for the most greedy move. When in doubt, hoard big ships.\n\tagentofchaos: Take as much time as you need, there's no rush.\r\nHoarding big ships seems to work pretty well!\n\n49) agentofchaos: Sacrifice Y2 Drogue\nDiscover Y3 Drogue G2 Karnak\nMove B1 Drogue Agentofchaos\n\n50) zoltar: Attack G1 Drogue\n\n51) agentofchaos: Trade Y1 R1 Agentofchaos\n\n52) zoltar: Move B1 Greengiant Drogue\n\n53) agentofchaos: Discover R1 Agentofchaos Y1 Grump\n\n54) zoltar: Build B2 Drogue\n\n55) agentofchaos: Build Y2 Karnak\n\n56) zoltar: Build Y2 Greengiant\n\n57) agentofchaos: Move R1 Grump Karnak\n\n58) zoltar: Build G1 Zoltar\n\n59) agentofchaos: Build R2 Karnak\n\n60) zoltar: Move R1 Zoltar Greenbelt\n\n61) agentofchaos: Discover B1 Agentofchaos Y1 Ghast\n\n62) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B2 Greengiant\nBuild B3 Greenbelt\n\n63) agentofchaos: Move B1 Ghast Karnak\n\n64) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Drogue\nBuild R3 Greenbelt\n\n65) agentofchaos: Discover G2 Agentofchaos Y1 Kakradoom\n\n66) zoltar: Sacrifice Y2 Greengiant\nMove R3 Greenbelt Kakradoom\nMove B3 Greenbelt Kakradoom\n\n67) agentofchaos: Build Y2 Agentofchaos\n\n68) zoltar: Sacrifice Y3 Greenbelt\nMove R2 Drogue Agentofchaos\nMove R3 Drogue Agentofchaos\nMove R3 Kakradoom Agentofchaos\nCatastrophe Agentofchaos R\n\n\tzoltar: The Death Star is now in range of the Rebel Base. Prepare to Fire!\n\tagentofchaos: The rebels better surrender while they still have the chance! Well played. \n\nHomeworlds Online (SDG# 13666)\nStarted: 2009.6.18, Ended: 2009.6.23\nParticipants: MikeYarrum (S), CheshireSwift (N)\nWinner: CheshireSwift\n\n1) CheshireSwift: Homeworld B2 R1 G3\n\n\nHomeworlds Online (SDG# 13677)\nStarted: 2009.6.19, Ended: 2009.6.29\nParticipants: MikeYarrum (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 13672)\nVariants: "Hard time"\nStarted: 2009.6.19, Ended: 2009.6.20\nParticipants: zoltar (S), Qat (N)\nWinner: zoltar\n\n1) Qat: Homeworld B1 Y2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) Qat: Build G1 Qat\n\n4) zoltar: Build G1 Zoltar\n\n5) Qat: Trade G1 B1 Qat\n\n6) zoltar: Trade G1 B1 Zoltar\n\n7) Qat: Build B2 Qat\n\n8) zoltar: Build B2 Zoltar\n\n9) Qat: Discover B2 Qat G3 Verte\n\n10) zoltar: Trade B1 Y1 Zoltar\n\n11) Qat: Build B1 Verte\n\n12) zoltar: Discover B2 Zoltar G2 Greenbelt\n\n13) Qat: Trade B1 Y1 Verte\n\n14) zoltar: Build G1 Zoltar\n\n15) Qat: Build G1 Qat\n\n16) zoltar: Trade G1 R1 Zoltar\n\n17) Qat: Trade G1 R1 Qat\n\n18) zoltar: Build G1 Zoltar\n\n19) Qat: Build R2 Qat\n\n20) zoltar: Build R2 Zoltar\n\n21) Qat: Move R2 Qat Verte\n\n22) zoltar: Move R2 Zoltar Greenbelt\n\n23) Qat: Build B1 Verte\n\n24) zoltar: Trade R2 Y2 Greenbelt\n\n25) Qat: Trade B2 Y2 Verte\n\n26) zoltar: Move R1 Zoltar Greenbelt\n\n27) Qat: Discover Y2 Verte G2 Produce\n\n28) zoltar: Build R2 Greenbelt\n\n29) Qat: Sacrifice G3 Qat\nBuild B2 Verte\nBuild R2 Verte\nBuild R3 Qat\n\n30) zoltar: Discover R2 Greenbelt Y1 Yellowstone\n\n31) Qat: Build Y3 Produce\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\nBuild R3 Yellowstone\n\n33) Qat: Sacrifice Y2 Produce\nMove R2 Verte Yellowstone\nMove R2 Verte Yellowstone\nCatastrophe Yellowstone R\n\n34) zoltar: Build R2 Greenbelt\n\n35) Qat: Trade R1 G1 Qat\n\n\tzoltar: Why resign in such a close game? Am I missing something?\n\nHomeworlds Online (SDG# 13679)\nStarted: 2009.6.19, Ended: 2009.11.20\nParticipants: MikeYarrum (S), MatrixFrog (N)\nWinner: MatrixFrog\n\n1) MatrixFrog: Homeworld B2 G1 Y3\n\n\nHomeworlds Online (SDG# 13682)\nStarted: 2009.6.20, Ended: 2009.7.7\nParticipants: ts52 (S), ZackStack (N)\nWinner: ts52\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Hi TS! I've played a bit more Homeworlds on the tabletop than I have of Volcano... but I'm still interested in learning some new tricks! I hope I'm more of a challenge here than I turned out to be in Volcano :-)\n\n2) ts52: Homeworld Y2 B3 G3\n\tts52: Hey, happy to play either game. I'm still trying to work out homeworlds strategy. But I have a lot of fun playing.\n\n3) ZackStack: Build G1 Zackstack\n\tZackStack: Strategy would involve thinking, so I try to stay away from the stuff :-p\n\n4) ts52: Build G1 Ts52\n\tts52: Heh, good plan, (or unplan).\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) ts52: Discover G1 Ts52 B1 Gonzo\n\n7) ZackStack: Build G1 Zackstack\n\n8) ts52: Build G1 Gonzo\n\n9) ZackStack: Discover G1 Zackstack B3 Grover\n\n10) ts52: Build G2 Ts52\n\n11) ZackStack: Build Y1 Zackstack\n\n12) ts52: Trade G2 Y2 Ts52\n\n13) ZackStack: Build G2 Grover\n\n14) ts52: Build G2 Ts52\n\n15) ZackStack: Trade G1 R1 Grover\n\n16) ts52: Trade G2 R2 Ts52\n\n17) ZackStack: Build G1 Zackstack\n\n18) ts52: Build G2 Ts52\n\n19) ZackStack: Move Y1 Zackstack Grover\n\n20) ts52: Move Y2 Ts52 Gonzo\n\n21) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Zackstack\nBuild G3 Grover\nBuild G3 Zackstack\n\n22) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Grover\nMove G1 Grover Zackstack\nCatastrophe Zackstack Green\n\n23) ZackStack: Move G2 Grover Gonzo\n\tZackStack: I expected that might happen, but there was a chance you'd overlook it :-)\n\n24) ts52: Trade G3 Y3 Ts52\n\n25) ZackStack: Move G3 Grover Zackstack\n\tts52: Only a very, very small chance... (-:\n\n26) ts52: Build G1 Ts52\n\n27) ZackStack: Trade G2 R2 Gonzo\n\n28) ts52: Discover G2 Ts52 B1 Blueberry\n\n29) ZackStack: Attack G1S Gonzo\n\n30) ts52: Build Y1 Ts52\n\n31) ZackStack: Move Y1 Grover Gonzo\n\n32) ts52: Trade Y3 G3 Ts52\n\n33) ZackStack: Build Y2 Zackstack\n\n34) ts52: Move Y1 Ts52 Blueberry\n\n35) ZackStack: Build G1 Zackstack\n\n36) ts52: Move R2 Ts52 Blueberry\n\n37) ZackStack: Move Y2 Zackstack Grover\n\n38) ts52: Discover G2 Blueberry Y3 Bigbird\n\n39) ZackStack: Sacrifice G3 Zackstack\nBuild Y2 Grover\nBuild Y3 Zackstack\nBuild Y3 Gonzo\n\n40) ts52: Move G1 Ts52 Blueberry\n\tZackStack: Mmmm... Bright shiny yellow...\n\n41) ZackStack: Discover Y2 Grover R1 Elmo\n\n42) ts52: Sacrifice G2 Bigbird\nBuild Y3 Blueberry\nBuild G2 Ts52\n\n43) ZackStack: Discover Y2 Grover B1 Herry\n\tZackStack: Clever move turning that star into a big ship! I like it!\n\n44) ts52: Build G2 Blueberry\n\n45) ZackStack: Build G2 Zackstack\n\n46) ts52: Discover G2 Blueberry B3 Grape\n\n47) ZackStack: Build G3 Gonzo\n\n48) ts52: Sacrifice G2 Ts52\nBuild G2 Grape\nBuild G3 Blueberry\n\n49) ZackStack: Sacrifice Y3 Gonzo\nMove G1 Gonzo Ts52\nMove G3 Gonzo Ts52\nMove R2 Gonzo Ts52\n\n\n50) ts52: Sacrifice R2 Blueberry\nAttack G3N Ts52\nAttack R2N Ts52\n\n51) ZackStack: Sacrifice G2 Zackstack\nBuild G2 Ts52\nBuild Y3 Elmo\nCatastrophe Ts52 Green\n\n52) ts52: Move G3 Blueberry Ts52\n\n53) ZackStack: Trade Y2 G2 Herry\n\n54) ts52: Move Y1 Blueberry Grape\n\tZackStack: Hmmm... I would have been much better off moving a Y to your system than that R... I am still learning a lot of the nuances!\n\n55) ZackStack: Build G1 Herry\n\n56) ts52: Build G3 Blueberry\n\n57) ZackStack: Build G3 Zackstack\n\n58) ts52: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y2 Blueberry\nBuild R2 Ts52\n\n59) ZackStack: Trade G2 R2 Herry\n\n60) ts52: Move R2 Ts52 Gonzo\n\n61) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Herry\nBuild G3 Zackstack\nBuild R3 Herry\n\n62) ts52: Attack Y1N Gonzo\n\n63) ZackStack: Sacrifice Y3 Elmo\nMove G1 Herry Ts52\nMove R3 Herry Ts52\nMove G2 Herry Ts52\n\n64) ts52: Sacrifice R2 Ts52\nAttack R3N Ts52\nAttack G2N Ts52\n\n65) ZackStack: Sacrifice G1 Zackstack\nBuild G1 Ts52\nCatastrophe Ts52 Green\n\tZackStack: I thought that was a pretty solid attack, but wondered what response I'd missed... Thanks for another lesson :-)\n\n66) ts52: Move G3 Blueberry Ts52\n\n67) ZackStack: Move Y1 Zackstack Grover\n\n68) ts52: Sacrifice G2 Grape\nBuild R2 Ts52\nBuild R3 Gonzo\n\tts52: Sorry for the delay, I was away on vacation.\n\tZackStack: Not a problem. I hope you had a good time!\n\n69) ZackStack: Trade R1 G1 Grover\n\n70) ts52: Move R3 Ts52 Herry\n\n71) ZackStack: Sacrifice Y1 Grover\nMove R2 Herry Grover\n\n72) ts52: Move R3 Gonzo Grover\n\n73) ZackStack: Sacrifice G1 Grover\nBuild Y1 Elmo\n\n74) ts52: Attack R2 Grover\n\tZackStack: I know I should resign, but its interesting to see such a methodical endgame :-)\n\n75) ZackStack: Discover Y1 Elmo G3 Kermit\n\n76) ts52: Build Y3 Grape\n\tts52: My theory is not to resign until doom is absolutely certain. Never underestimate your opponents ability to really screw things up. ;)\n\n77) ZackStack: Discover Y1 Kermit B2 Beetle\n\tZackStack: Heh. I hear the fat lady singing and see the writing on the wall, but am pretty interested to see how it finishes :-)\n\n78) ts52: Move Y1 Grape Herry\n\n79) ZackStack: Trade Y1 G1 Beetle\n\n80) ts52: Sacrifice G2 Grape\nBuild R1 Herry\nBuild R3 Grover\n\n81) ZackStack: Move Y2 Elmo Beetle\n\n82) ts52: Sacrifice Y2 Blueberry\nMove R3 Grover Zackstack\nMove R3 Grover Zackstack\n\n83) ZackStack: Attack R3S Zackstack\n\n84) ts52: Sacrifice R3 Herry\nAttack R3N Zackstack\nAttack G3N Zackstack\nAttack Y3N Zackstack\n\tZackStack: And here I pictured you blowing up my red star... Nicely done! And thanks for the game!\n\n\tts52: I wasn't sure how this one was going to end for a while either. Thanks for the game.\n\nHomeworlds Online (SDG# 13700)\nVariants: "Hard time"\nStarted: 2009.6.22, Ended: 2009.6.26\nParticipants: Joe (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld G1 Y2 R3 *\n\tZackStack: And here we go again! Time to try an unconventional starting setup... let's see how bad an idea this is :-)\n\n2) Joe: Homeworld R1 Y3 G3 *\n\tJoe: Yup! Let's go!\n\n3) ZackStack: Build R1 Zackstack\n\tJoe: Countersetup! \n\tZackStack: No blue for you either? Now we're both in trouble :-)\n\n4) Joe: Build G1 Joe\n\n5) ZackStack: Build R1 Zackstack\n\tJoe: Trouble among the stars... :)\n\n6) Joe: Build G1 Joe\n\n7) ZackStack: Discover R1 Zackstack B3 Bigblue\n\n8) Joe: Discover G3 Joe B2 Mb\n\n9) ZackStack: Build R2 Zackstack\n\n10) Joe: Build G2 Joe\n\n11) ZackStack: Move R2 Zackstack Bigblue\n\n12) Joe: Move G1 Joe Mb\n\n13) ZackStack: Trade R2 G2 Bigblue\n\n14) Joe: Trade G3 R3 Mb\n\n15) ZackStack: Build R2 Bigblue\n\n16) Joe: Build G2 Mb\n\n17) ZackStack: Build G3 Bigblue\n\n18) Joe: Build R2 Mb\n\n19) ZackStack: Trade R2 Y2 Bigblue\n\n20) Joe: Trade G1 Y1 Mb\n\n21) ZackStack: Discover G3 Bigblue Y2 Oldyeller\n\n22) Joe: Move R2 Mb Joe\n\tZackStack: I'm still having a mighty fine time playing Homeworlds (and will happily play as many games as you'd like)... but I wondered if you'd like to try any games that are brand new to both of us. I'm interested in Alien City and Pikemen. Alien you could play tabletop if you made up some tiles and had another game to borrow some cubes for. Pikemen it will be a while for tabletop, but its a popular chesslike icehouse game. Let me know and I can set up a challenge (or we can just focus on Homeworlds for the time being...) \n\n23) ZackStack: Move G3 Oldyeller Joe\n\tZackStack: Hey Joe! You know to take over a ship you need one ship of equal size in the system right? In other words... moving that R2 to your homeworld wasn't a defense against my G3 ship. Feel free to undo if you'd like (or we can just see what happens...)\n\tJoe: Yup, I know that I cannot destroy it with the R2 ;)\r\nAnd I will happily play Alien City, cause it is just the game I am tinkering about (and read the rules two days ago!). I have issued a challenge already so you can jump on that vagon if you like...\n\n24) Joe: Move R3 Mb Bigblue\n\n25) ZackStack: Sacrifice R3 Zackstack\nAttack G1S Joe\nAttack G2S Joe\nAttack R2S Joe\n\tZackStack: Sorry Joe... you missed a big one!\n\tJoe: Ah, yes - attacking in a system with your ship, sacrificing R3 far far away ;)\n\n\nHomeworlds Online (SDG# 13664)\nStarted: 2009.6.23, Ended: 2009.6.25\nParticipants: CheshireSwift (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) CheshireSwift: Homeworld B2 R1 G3\n\tTwoShort: howdy\n\n3) TwoShort: Build G1 Twoshort\n\tCheshireSwift: Hey. Good luck.\n\n4) CheshireSwift: Build G1 Cheshireswift\n\n5) TwoShort: Trade G1 R1 Twoshort\n\n6) CheshireSwift: Build G1 Cheshireswift\n\n7) TwoShort: Build R2 Twoshort\n\n8) CheshireSwift: Trade G3 R3 Cheshireswift\n\n9) TwoShort: Trade R2 Y2 Twoshort\n\n10) CheshireSwift: Build R2 Cheshireswift\n\n11) TwoShort: Discover R1 Twoshort G2 Grogar\n\n12) CheshireSwift: Trade R3 Y3 Cheshireswift\n\n13) TwoShort: Build R2 Grogar\n\n14) CheshireSwift: Discover R2 Cheshireswift Y3 Aleph\n\n15) TwoShort: Build Y1 Twoshort\n\n16) CheshireSwift: Discover G1 Cheshireswift R3 Bet\n\n17) TwoShort: Build G1 Twoshort\n\n18) CheshireSwift: Build G2 Bet\n\n19) TwoShort: Move Y1 Twoshort Grogar\n\n20) CheshireSwift: Build Y1 Cheshireswift\n\n21) TwoShort: Discover R1 Grogar G3 Gordo\n\n22) CheshireSwift: Discover G1 Cheshireswift Y3 Gimel\n\n23) TwoShort: Move R2 Grogar Gimel\n\n24) CheshireSwift: Move G1 Gimel Grogar\n\n25) TwoShort: Sacrifice R1 Gordo\nAttack G1 Grogar\n\n26) CheshireSwift: Trade Y1 B1 Cheshireswift\n\n27) TwoShort: Move G1 Grogar Gimel\n\n28) CheshireSwift: Trade Y3 G3 Cheshireswift\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Gimel\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n30) CheshireSwift: Move R2 Aleph Grogar\n\n31) TwoShort: Move G3 Twoshort Grogar\n\n32) CheshireSwift: Attack Y1N Grogar\n\n33) TwoShort: Sacrifice R2 Gimel\nAttack R2 Grogar\nAttack Y1 Grogar\n\n34) CheshireSwift: Trade B1 R1 Cheshireswift\n\n35) TwoShort: Sacrifice G3 Grogar\nBuild G3 Gimel\nBuild Y1 Grogar\nBuild R2 Grogar\n\n36) CheshireSwift: Trade R1 Y1 Cheshireswift\n\n37) TwoShort: Move G3 Gimel Cheshireswift\n\n38) CheshireSwift: Attack G3 Cheshireswift\n\n39) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Gimel Cheshireswift\nMove G2 Gimel Cheshireswift\nCatastrophe Cheshireswift Green\n\n40) CheshireSwift: Sacrifice Y1 Cheshireswift\nMove G2 Bet Grogar\n\tCheshireSwift: There really isn't much hope for me here, is there? =P\n\tCheshireSwift: I don't know why, but I find Homeworld really hard on SDG. Playing it offline I somehow find it easier to see strategies. That said, good game, thanks :)\n\tTwoShort: Part of it might be the organization of the pieces - for really tough moves I set them up with real pyramids or copy the picture into a paint program to organize them the way I like. In any case, thanks for the game!\n\tCheshireSwift: Nice idea, I may try that. Thanks.\n\n\nHomeworlds Online (SDG# 13683)\nStarted: 2009.6.25, Ended: 2009.7.6\nParticipants: MikeYarrum (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Greetings Mike! I'm fairly new to the site and only have about 10 games of Homeworlds under my belt between tabletop and SDG... but I'm always interested in learning new ways to loose :-) Have Fun!\n\n\nHomeworlds Online (SDG# 13748)\nVariants: "Hard time"\nStarted: 2009.6.26, Ended: 2009.7.8\nParticipants: ZackStack (S), Joe (N)\nWinner: ZackStack\n\n1) Joe: Homeworld Y1 B2 G3\n\n2) ZackStack: Homeworld R2 B3 G3\n\tZackStack: Glutton for punishment? :-D Have a good game!\n\n3) Joe: Build G1 Joe\n\n4) ZackStack: Build G1 Zackstack\n\tJoe: Hell yeah!\n\n5) Joe: Build G1 Joe\n\n6) ZackStack: Build G2 Zackstack\n\n7) Joe: Discover G1 Joe B3 Ann\n\n8) ZackStack: Trade G2 Y2 Zackstack\n\n9) Joe: Build G2 Ann\n\n10) ZackStack: Discover G1 Zackstack Y1 Tina\n\n11) Joe: Trade G1 Y1 Ann\n\n12) ZackStack: Build G1 Zackstack\n\n13) Joe: Build G2 Ann\n\n14) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Zackstack\nBuild G3 Zackstack\nBuild G3 Tina\n\n15) Joe: Trade G3 R3 Joe\n\tZackStack: Hey Joe! Something to keep in mind strategically is supply control. Your creating the G2 ship on your last move allowed me to make my sacrifice move. Sometimes its worth making odd trades and other builds to keep an opponent from getting more and bigger ships than you. \n\tZackStack: Also, I haven't read it all, but you have enough understanding of how the game works that this strategy article might be very useful to you if you have the time: http://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy\n\n16) ZackStack: Discover G3 Tina R3 Gwen\n\n17) Joe: Build G3 Joe\n\n18) ZackStack: Discover G1 Zackstack B1 Belle\n\n19) Joe: Trade G2 R2 Ann\n\n20) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Belle\nBuild G3 Zackstack\nBuild Y2 Zackstack\n\n21) Joe: Move R2 Ann Belle\n\n22) ZackStack: Sacrifice Y2 Zackstack\nDiscover G1 Belle Y3 Gina\nMove G2 Belle Gina\n\n23) Joe: Build Y2 Ann\n\n24) ZackStack: Move G1 Gina Joe\n\n25) Joe: Sacrifice Y2 Ann\nMove G1 Joe Gina\nMove G3 Joe Ann\n\n26) ZackStack: Discover G1 Joe Y3 Daisy\n\n27) Joe: Trade G3 R3 Ann\n\tZackStack: Nice evade :-)\n\n28) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild Y2 Zackstack\nBuild G3 Daisy\n\tJoe: Phew, and a close one ;)\n\n29) Joe: Build Y2 Ann\n\n30) ZackStack: Move G1 Tina Gwen\n\n31) Joe: Trade Y2 R2 Ann\n\n32) ZackStack: Trade Y2 B2 Zackstack\n\n33) Joe: Build Y1 Ann\n\n34) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild B1 Zackstack\nBuild Y2 Zackstack\n\n35) Joe: Move Y1 Ann Belle\n\n36) ZackStack: Sacrifice B2 Zackstack\nTrade G1 B1 Daisy\nTrade G2 B2 Gina\n\n37) Joe: Move R2 Belle Gina\n\n38) ZackStack: Sacrifice G3 Daisy\nBuild B2 Daisy\nBuild B3 Daisy\nBuild G1 Zackstack\n\n39) Joe: Attack B2 Gina\n\tJoe: There is another Alien City game waiting, you can join ;)\n\tZackStack: On my way :-) Though I'll have to log off soon to make supper...\n\n40) ZackStack: Move B1 Daisy Joe\n\n41) Joe: Build R1 Ann\n\n42) ZackStack: Move B2 Daisy Joe\n\n43) Joe: Move R1 Ann Belle\n\n44) ZackStack: Discover G2 Zackstack R1 Pippi\n\n45) Joe: Build Y2 Ann\n\n46) ZackStack: Move Y2 Zackstack Pippi\n\n47) Joe: Move R3 Ann Pippi\n\n48) ZackStack: Sacrifice Y2 Zackstack\nMove Y2 Pippi Daisy\nMove G2 Pippi Daisy\n\n49) Joe: Sacrifice Y1 Ann\nMove R3 Pippi Daisy\n\n50) ZackStack: Sacrifice Y2 Daisy\nMove B3 Daisy Joe\nDiscover G2 Daisy Y2 Mae\nCatastrophe Joe Blue\n\n51) Joe: Build Y1 Ann\n\tZackStack: Tired of waiting for catastrophe to strike? :-)\n\n52) ZackStack: Trade G3 Y3 Zackstack\n\n53) Joe: Build G2 Gina\n\n54) ZackStack: Sacrifice G3 Gwen\nBuild G3 Zackstack\nBuild Y2 Zackstack\nBuild G3 Gwen\n\tJoe: well, it was a matter of time so I pursue my own course of action...\n\n55) Joe: Move R3 Daisy Belle\n\n56) ZackStack: Sacrifice B1 Zackstack\nTrade G3 Y3 Gwen\n\n57) Joe: Build B1 Gina\n\n58) ZackStack: Sacrifice G2 Mae\nBuild G2 Gwen\nBuild Y2 Gwen\n\n59) Joe: Move Y1 Ann Belle\n\n60) ZackStack: Sacrifice Y3 Zackstack\nMove Y2 Zackstack Joe\nMove Y2 Gwen Joe\nMove Y3 Gwen Joe\nCatastrophe Joe Yellow\n\n\tZackStack: You did a great job limiting my access to yellow in the mid-game, but you made that trade and let me get more yellow ships... Good game though! That was quite a fleet you were building up!\n\nHomeworlds Online (SDG# 13711)\nStarted: 2009.6.28, Ended: 2009.7.29\nParticipants: TwoShort (S), skykingt13 (N)\nWinner: TwoShort\n\n1) skykingt13: Homeworld R3 B2 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n\nHomeworlds Online (SDG# 13719)\nVariants: "Hard time"\nStarted: 2009.6.28, Ended: 2009.7.3\nParticipants: skykingt13 (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) skykingt13: Homeworld B3 R2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n\nHomeworlds Online (SDG# 13768)\nVariants: "Hard time"\nStarted: 2009.6.30, Ended: 2009.7.8\nParticipants: wyons (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B1 R3 G3\n\n2) wyons: Homeworld R2 B1 G3\n\n3) mneme: Build G1 Mneme\n\twyons: have a gg\n\tmneme: yt. \n\n4) wyons: Build G1 Wyons\n\n5) mneme: Trade G1 B1 Mneme\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) mneme: Build B2 Mneme\n\twyons: hmmm. not such a gd start for me.. :)\n\n8) wyons: Build Y1 Wyons\n\tmneme: Indeed not. I think matching my b1 in your home system was a blunder.\r\n\n\twyons: I agree. :{\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) wyons: Build G1 Wyons\n\n11) mneme: Build B2 Mneme\n\n\twyons: I think this has to be hopeless! Thank you!\n\tmneme: Thanks for the game. I usually continue them farther than this, but there's no shame in deciding it was lost once I got that kind of advantage.\r\n\n\nHomeworlds Online (SDG# 13761)\nStarted: 2009.7.1, Ended: 2009.7.20\nParticipants: MikeYarrum (S), Joe (N)\nWinner: Joe\n\n1) Joe: Homeworld Y1 B2 G3\n\tJoe: Hi Mike, good luck! ;)\n\n\nHomeworlds Online (SDG# 13774)\nStarted: 2009.7.2, Ended: 2009.7.6\nParticipants: mindloss (S), MikeYarrum (N)\nWinner: mindloss\n\n\nHomeworlds Online (SDG# 13783)\nVariants: "Unrated"\nStarted: 2009.7.4, Ended: 2009.7.4\nParticipants: mindloss (S), AnalogKid (N)\nWinner: AnalogKid\n\n1) AnalogKid: Homeworld Y3 B1 G3\n\tAnalogKid: Hello, how are you?\n\n2) mindloss: Homeworld B1 G2 Y3\n\n3) AnalogKid: Build G1 Analogkid\n\n4) mindloss: Discover Y3 Mindloss B3 Lorenzo\n\tmindloss: Good, my first game. How are you?\n\tAnalogKid: I'm fine. Is there an Undo button for your last move?? If not, do you want to start another game?\n\n\nHomeworlds Online (SDG# 13762)\nStarted: 2009.7.4, Ended: 2009.7.10\nParticipants: mindloss (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) mindloss: Homeworld B1 G2 Y3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tmindloss: howdy... first game for me, maybe i'll learn a little something :)\n\n4) mindloss: Build Y1 Mindloss\n\n5) TwoShort: Build G1 Twoshort\n\n6) mindloss: Discover Y1 Mindloss G3 Lorenzo\n\tTwoShort: So when I play new players, I try to give a few pointers, but usually a bit too late to actually help :) For example, I'd recommend starting with a green ship. \n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) mindloss: Build Y1 Mindloss\n\n9) TwoShort: Build Y2 Twoshort\n\n10) mindloss: Build Y2 Lorenzo\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) mindloss: Trade Y1 R1 Mindloss\n\n13) TwoShort: Build Y1 Grogar\n\n14) mindloss: Build Y2 Mindloss\n\n15) TwoShort: Build Y3 Twoshort\n\n16) mindloss: Build Y3 Lorenzo\n\tTwoShort: You probably didn't want to take the last y2. You can't build a y3 this turn because I'll blow it up, so now I have more 3 pointers, which is a big advantage.\n\n17) TwoShort: Move Y1 Grogar Lorenzo\nCatastrophe Lorenzo Yellow\n\n18) mindloss: Discover Y2 Mindloss B3 Sophia\n\n19) TwoShort: Discover Y3 Twoshort G2 Gonzo\n\n20) mindloss: Build Y1 Mindloss\n\n21) TwoShort: Build G1 Twoshort\n\n22) mindloss: Trade Y1 G1 Mindloss\n\n23) TwoShort: Discover G1 Twoshort B2 Bomber\n\n24) mindloss: Build G3 Mindloss\n\n25) TwoShort: Sacrifice Y2 Twoshort\nDiscover G1 Bomber B3 Boomtime\nMove G1 Boomtime Mindloss\nCatastrophe Mindloss Green\n\n26) mindloss: Move Y2 Sophia Grogar\n\n27) TwoShort: Move Y1 Grogar Twoshort\n\n28) mindloss: Trade R1 G1 Mindloss\n\n29) TwoShort: Trade G1 B1 Twoshort\n\n30) mindloss: Build G1 Mindloss\n\n31) TwoShort: Move B1 Twoshort Gonzo\n\n32) mindloss: Trade G1 R1 Mindloss\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild B1 Gonzo\nBuild B2 Gonzo\nPass\n\n34) mindloss: Move R1 Mindloss Gonzo\n\n35) TwoShort: Sacrifice Y3 Gonzo\nMove B1 Gonzo Mindloss\nMove B1 Gonzo Mindloss\nMove B2 Gonzo Mindloss\nCatastrophe Mindloss Blue\n\n\tmindloss: gg :)\n\tTwoShort: Thanks for the game :)\n\nHomeworlds Online (SDG# 13718)\nVariants: "Hard time"\nStarted: 2009.7.4, Ended: 2009.9.10\nParticipants: mindloss (S), Mandrel (W), agentofchaos (N), Uglyfoot (E)\nWinner: Uglyfoot\n\n1) agentofchaos: Homeworld R2 B1 G3\n\n2) Uglyfoot: Homeworld Y3 B2 G3\n\tagentofchaos: Hi everybody, thanks for joining the game, enjoy! \n\n3) mindloss: Homeworld R1 B2 G3\n\n4) Mandrel: Homeworld B3 Y1 G3\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) mindloss: Build G1 Mindloss\n\n8) Mandrel: Build G1 Mandrel\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) mindloss: Trade G1 Y1 Mindloss\n\n12) Mandrel: Build G1 Mandrel\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n15) mindloss: Build G1 Mindloss\n\n16) Mandrel: Trade G1 Y1 Mandrel\n\n17) agentofchaos: Build Y2 Agentofchaos\n\n18) Uglyfoot: Build Y2 Uglyfoot\n\n19) mindloss: Build Y2 Mindloss\n\n20) Mandrel: Build Y2 Mandrel\n\n21) agentofchaos: Discover G1 Agentofchaos Y3 Krome\n\n22) Uglyfoot: Discover Y2 Uglyfoot R1 Alpha\n\n23) mindloss: Trade Y1 R1 Mindloss\n\n24) Mandrel: Trade Y2 R2 Mandrel\n\n25) agentofchaos: Trade Y1 R1 Agentofchaos\n\n26) Uglyfoot: Move G1 Uglyfoot Alpha\n\n27) mindloss: Move G3 Mindloss Krome\n\n28) Mandrel: Discover G1 Mandrel R2 Happy\n\n29) agentofchaos: Move G1 Krome Agentofchaos\n\n30) Uglyfoot: Discover Y2 Alpha G3 Beta\n\n31) mindloss: Build Y1 Mindloss\n\n32) Mandrel: Move G3 Mandrel Happy\n\n33) agentofchaos: Build Y1 Agentofchaos\n\n34) Uglyfoot: Build Y2 Beta\n\n35) mindloss: Move Y2 Mindloss Krome\n\n36) Mandrel: Move Y1 Mandrel Happy\n\n37) agentofchaos: Trade Y2 R2 Agentofchaos\n\n38) Uglyfoot: Build Y2 Uglyfoot\n\n39) mindloss: Build G1 Mindloss\n\n40) Mandrel: Move G1 Happy Mandrel\n\n41) agentofchaos: Build Y2 Agentofchaos\n\n42) Uglyfoot: Trade Y2 R2 Uglyfoot\n\n43) mindloss: Move R1 Mindloss Krome\n\n44) Mandrel: Build G2 Mandrel\n\n45) agentofchaos: Discover R2 Agentofchaos Y3 Kazam\n\n46) Uglyfoot: Trade Y1 B1 Uglyfoot\n\n47) mindloss: Trade G1 B1 Mindloss\n\n48) Mandrel: Trade G1 B1 Mandrel\n\n49) agentofchaos: Trade Y1 B1 Agentofchaos\n\n50) Uglyfoot: Build B2 Uglyfoot\n\n51) mindloss: Build G1 Krome\n\n52) Mandrel: Build Y1 Happy\n\n53) agentofchaos: Move G1 Agentofchaos Kazam\n\n54) Uglyfoot: Move B2 Uglyfoot Alpha\n\n55) mindloss: Move B1 Mindloss Krome\n\n56) Mandrel: Move B1 Mandrel Happy\n\n57) agentofchaos: Build G1 Kazam\n\n58) Uglyfoot: Build B2 Alpha\n\n59) mindloss: Trade G3 R3 Krome\n\n60) Mandrel: Build G2 Mandrel\n\n61) agentofchaos: Move R1 Agentofchaos Kazam\n\n62) Uglyfoot: Move Y2 Beta Mindloss\n\n63) mindloss: Move R3 Krome Agentofchaos\n\n64) Mandrel: Build G2 Happy\n\n65) agentofchaos: Attack R3S Agentofchaos\n\n66) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack G1S Mindloss\nAttack Y1S Mindloss\n\tUglyfoot: The eastern world gives welcome. Trade good offered at reasonable rates...\n\n67) Mandrel: Move G2 Happy Krome\n\n68) agentofchaos: Move R3 Agentofchaos Krome\n\n69) Uglyfoot: Build G2 Uglyfoot\n\n70) Mandrel: Sacrifice G2 Krome\nBuild G2 Happy\nBuild B2 Happy\n\n71) agentofchaos: Attack Y2S Krome\n\n72) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Alpha\nBuild G3 Uglyfoot\nBuild G3 Mindloss\n\n73) Mandrel: Trade G2 Y2 Mandrel\n\n74) agentofchaos: Build G2 Agentofchaos\n\n75) Uglyfoot: Sacrifice Y1 Mindloss\nMove B2 Alpha Beta\n\n76) Mandrel: Build Y1 Mandrel\n\n77) agentofchaos: Move R3 Krome Alpha\n\n78) Uglyfoot: Sacrifice Y2 Mindloss\nDiscover G2 Alpha Y3 Delta\nMove B2 Alpha Delta\n\n79) Mandrel: Build R1 Mandrel\n\n80) agentofchaos: Attack G1E Alpha\n\n81) Uglyfoot: Trade G3 R3 Uglyfoot\n\n82) Mandrel: Build G3 Mandrel\n\n83) agentofchaos: Sacrifice B1 Agentofchaos\nTrade G1 Y1 Alpha\n\n84) Uglyfoot: Sacrifice G3 Mindloss\nBuild G1 Delta\nBuild G3 Mindloss\nBuild Y2 Beta\n\n85) Mandrel: Move G3 Happy Kazam\n\n86) agentofchaos: Sacrifice G2 Agentofchaos\nBuild G2 Kazam\nBuild Y3 Alpha\nCatastrophe Kazam G\n\n87) Uglyfoot: Sacrifice Y2 Beta\nMove Y2 Beta Happy\nMove Y2 Happy Mandrel\nCatastrophe Mandrel Y\n\n88) Mandrel: Trade G2 Y2 Mandrel\n\n89) agentofchaos: Build G1 Agentofchaos\n\n90) Uglyfoot: Trade B2 Y2 Beta\n\n91) Mandrel: Build G1 Happy\n\n92) agentofchaos: Sacrifice R2 Kazam\nAttack B1S Krome\nAttack G1S Krome\n\n93) Uglyfoot: Sacrifice Y2 Beta\nMove G1 Delta Agentofchaos\nMove G2 Delta Agentofchaos\nCatastrophe Agentofchaos G\n\n94) Mandrel: Sacrifice Y2 Mandrel\nMove R1 Mandrel Alpha\nMove R2 Mandrel Alpha\nCatastrophe Alpha Red\n\n95) agentofchaos: Trade Y2 G2 Krome\n\n96) Uglyfoot: Trade B2 Y2 Delta\n\n97) Mandrel: Trade G3 R3 Mandrel\n\n98) agentofchaos: Build B1 Krome\n\n99) Uglyfoot: Sacrifice Y2 Delta\nMove G3 Mindloss Kazam\nMove G3 Kazam Agentofchaos\n\n100) Mandrel: Move G1 Happy Mandrel\n\n101) agentofchaos: Trade Y2 G2 Agentofchaos\n\n102) Uglyfoot: Attack G2N Agentofchaos\n\n103) Uglyfoot: Discover B1 Uglyfoot R1 Pool\n\n104) Mandrel: Build R1 Mandrel\n\n105) Uglyfoot: Trade G3 Y3 Agentofchaos\n\tagentofchaos: Alas, darkness has fallen.... arrgghhh....\n\n106) Mandrel: Build G1 Happy\n\n107) Uglyfoot: Trade G2 B2 Agentofchaos\n\n108) Mandrel: Trade G2 R2 Happy\n\n109) Uglyfoot: Sacrifice G1 Mindloss\nBuild B2 Pool\n\n110) Mandrel: Trade R3 Y3 Mandrel\n\n111) Uglyfoot: Sacrifice Y3 Agentofchaos\nMove B2 Agentofchaos Mandrel\nMove B2 Pool Mandrel\nMove B1 Pool Mandrel\nCatastrophe Mandrel B\n\n\tUglyfoot: Thanks for the game everyone!\n\nHomeworlds Online (SDG# 13788)\nVariants: "Unrated"\nStarted: 2009.7.5, Ended: 2009.7.5\nParticipants: mindloss (S), zxcv411 (N)\nWinner: zxcv411\n\n1) zxcv411: Homeworld G3 Y1 B3\n\n\nHomeworlds Online (SDG# 13781)\nStarted: 2009.7.5, Ended: 2009.7.8\nParticipants: zxcv411 (S), MikeYarrum (N)\nWinner: zxcv411\n\n\nHomeworlds Online (SDG# 13799)\nStarted: 2009.7.5, Ended: 2009.7.8\nParticipants: zxcv411 (S), MikeYarrum (N)\nWinner: zxcv411\n\n\nHomeworlds Online (SDG# 13801)\nVariants: "Unrated"\nStarted: 2009.7.7, Ended: 2009.7.14\nParticipants: zxcv411 (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B3 G3\n\tZackStack: Hi zx! Have you played much homeworlds or is this a learning game for you? Either way... have fun!\n\n2) zxcv411: Homeworld R3 B2 G3\n\n3) ZackStack: Build G1 Zackstack\n\n4) zxcv411: Build G1 Zxcv411\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\tzxcv411: learning, but dont go too easy on me. Can't learn that way >.<\n\tZackStack: I won't :-) But I might point out any moves that seem strange.\n\n6) zxcv411: Build G1 Zxcv411\n\n7) ZackStack: Discover Y1 Zackstack G2 Emerald\n\n8) zxcv411: Trade G1 Y1 Zxcv411\n\n9) ZackStack: Build G1 Zackstack\n\n10) zxcv411: Discover G1 Zxcv411 B1 Richard\n\n11) ZackStack: Trade G1 B1 Zackstack\n\n12) zxcv411: Build G1 Richard\n\n13) ZackStack: Build B1 Zackstack\n\n14) zxcv411: Trade G1 R1 Richard\n\n15) ZackStack: Build G1 Zackstack\n\n16) zxcv411: Build R1 Richard\n\n17) ZackStack: Trade B1 Y1 Zackstack\n\n18) zxcv411: Build R2 Richard\n\n19) ZackStack: Move B1 Zackstack Emerald\n\n20) zxcv411: Build Y2 Zxcv411\n\n21) ZackStack: Build Y2 Emerald\n\n22) zxcv411: Trade R2 Y2 Richard\n\n23) ZackStack: Trade Y2 R2 Emerald\n\n24) zxcv411: Discover R1 Richard B2 Dave\n\n25) ZackStack: Build Y2 Emerald\n\n26) zxcv411: Discover Y2 Richard R2 Mark\n\n27) ZackStack: Discover B1 Emerald G1 Lime\n\n28) zxcv411: Move Y1 Zxcv411 Richard\n\n29) ZackStack: Move Y1 Emerald Lime\n\n30) zxcv411: Move G1 Richard Mark\n\n31) ZackStack: Sacrifice G3 Zackstack\nBuild Y3 Zackstack\nBuild Y3 Lime\nBuild Y3 Emerald\n\n32) zxcv411: Build G2 Mark\n\n33) ZackStack: Move R2 Emerald Lime\n\n34) zxcv411: Build G2 Zxcv411\n\tZackStack: So, what's on your mind these days zx?\n\tzxcv411: Nothing much, starting to build giant Icehouse pieces for a local game store's game day. You?\n\n35) ZackStack: Build G3 Zackstack\n\tZackStack: Heh, that's much cooler than anything I'm up too. What games are you planning to play?\r\n\r\nMy wife and I are starting to get into Go. Other than that new obsession its pretty much the same old stay at home Dad stuff... I just like to live vicariously throgh others sometimes :-)\n\n36) zxcv411: Move G2 Mark Richard\n\tzxcv411: Yeah, currently for now just Ice Towers, but if I can get enough stashes made, maybe a giant Volcano.\n\n37) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild B1 Lime\nBuild B2 Lime\n\tZackStack: That would be quite a sight! Be sure to post some pics to BGG if they're worth the effort!\n\n38) zxcv411: Build G3 Zxcv411\n\n39) ZackStack: Sacrifice Y3 Emerald\nMove G1 Zackstack Dave\nMove G1 Dave Lime\nMove G1 Lime Zxcv411\nCatastrophe Zxcv411 Green\n\tZackStack: Ooo... 3 ships of the same color in the same place is always dangerous at this point in the game.\n\n40) zxcv411: Build G1 Mark\n\n41) ZackStack: Move Y3 Lime Zxcv411\n\n42) zxcv411: Sacrifice G2 Richard\nBuild R2 Richard\nBuild R3 Richard\n\n43) ZackStack: Attack Y2S Zxcv411\n\tZackStack: Thanks for the game! I think you played fairly well and have a nice assault on my homeworld set up. I was just more aggresive and beat you too it... Let me know how those big icehouse pieces turn out and challenge me to a rematch any time!\n\n\nHomeworlds Online (SDG# 13811)\nStarted: 2009.7.7, Ended: 2009.7.8\nParticipants: ts52 (S), zxcv411 (N)\nWinner: zxcv411\n\n1) zxcv411: Homeworld B2 R1 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\n3) zxcv411: Build G1 Zxcv411\n\tts52: Have a good game.\n\tzxcv411: Why is it not letting me sacrifice my green to build 3 ships?\n\n4) ts52: Build G1 Ts52\n\tzxcv411: Nevermind, sorry first time playing Homeworlds >.<\n\n5) zxcv411: Trade G1 Y1 Zxcv411\n\tts52: No problem. It's generally a good idea to keep a large ship in your homeworld anyway.\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) zxcv411: Build Y1 Zxcv411\n\n8) ts52: Discover Y1 Ts52 G1 Robin\n\n9) zxcv411: Build Y2 Zxcv411\n\n10) ts52: Build Y2 Robin\n\n11) zxcv411: Sacrifice Y1 Zxcv411\nDiscover Y2 Zxcv411 R3 Reddwarf\n\n12) ts52: Build G1 Ts52\n\n13) zxcv411: Build Y1 Zxcv411\n\tts52: You might have meant to sacrifice the y1, but you didn't need to in order to move the y2. FYI.\n\n14) ts52: Discover Y1 Robin G3 Kermit\n\tzxcv411: Really, oh. I just wasted a turn then...\n\n15) zxcv411: Discover Y1 Zxcv411 Y3 Starbug\n\n16) ts52: Build Y3 Kermit\n\n17) zxcv411: Build Y3 Zxcv411\n\n18) ts52: Trade G1 B1 Ts52\n\n19) zxcv411: Trade Y1 G1 Zxcv411\n\n20) ts52: Move B1 Ts52 Robin\n\n21) zxcv411: Move G1 Zxcv411 Starbug\n\n22) ts52: Build B1 Robin\n\n23) zxcv411: Build G1 Starbug\n\n24) ts52: Build G2 Ts52\n\n25) zxcv411: Build G2 Zxcv411\n\n26) ts52: Move B1 Robin Kermit\n\n27) zxcv411: Move G2 Zxcv411 Reddwarf\n\n28) ts52: Discover B1 Robin G2 Oscar\n\n29) zxcv411: Discover G1 Starbug B1 Rimmer\n\n30) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B2 Oscar\n\n31) zxcv411: Sacrifice Y3 Zxcv411\nMove G1 Starbug Rimmer\nMove G1 Rimmer Ts52\nMove G1 Rimmer Ts52\nCatastrophe Ts52 Green\n\tzxcv411: Good game\n\tts52: Wow, I totally didn't see that coming. Well played.\n\n\nHomeworlds Online (SDG# 13800)\nStarted: 2009.7.7, Ended: 2009.7.11\nParticipants: MikeYarrum (S), zxcv411 (N)\nWinner: zxcv411\n\n1) zxcv411: Homeworld B2 R1 G3\n\n\nHomeworlds Online (SDG# 13807)\nVariants: "Hard time"\nStarted: 2009.7.10, Ended: 2009.8.1\nParticipants: Jesse (S), headphoned (N)\nWinner: Jesse\n\n1) headphoned: Homeworld B3 G2 Y3\n\n2) Jesse: Homeworld G1 B3 Y3\n\n3) headphoned: Build Y1 Headphoned\n\tJesse: Hello. Have a good game.\n\n4) Jesse: Build Y1 Jesse\n\n5) headphoned: Trade Y1 R1 Headphoned\n\n6) Jesse: Trade Y1 R1 Jesse\n\n7) headphoned: Build Y1 Headphoned\n\n8) Jesse: Build Y1 Jesse\n\n\n9) headphoned: Trade Y1 G1 Headphoned\n\n10) Jesse: Trade Y1 G1 Jesse\n\n\n11) headphoned: Build Y1 Headphoned\n\n12) Jesse: Build Y1 Jesse\n\n\n13) headphoned: Discover Y1 Headphoned B1 Alcatraz\n\n14) Jesse: Discover Y1 Jesse G2 Tomato\n\n15) headphoned: Discover G1 Headphoned Y1 Phlebas\n\n16) Jesse: Discover G1 Jesse B2 Newt\n\n17) headphoned: Build Y2 Headphoned\n\n18) Jesse: Build Y2 Jesse\n\n19) headphoned: Trade Y2 B2 Headphoned\n\n20) Jesse: Move Y2 Jesse Newt\n\n21) headphoned: Build Y2 Headphoned\n\n22) Jesse: Trade Y2 R2 Newt\n\n23) headphoned: Build G2 Phlebas\n\n24) Jesse: Build G3 Newt\n\n25) headphoned: Sacrifice Y2 Headphoned\nMove G2 Phlebas Newt\nMove G1 Phlebas Newt\nCatastrophe Newt Green\n\n26) Jesse: Trade R2 G2 Newt\n\n27) headphoned: Build B1 Headphoned\n\n28) Jesse: Build G1 Newt\n\n\nHomeworlds Online (SDG# 13825)\nStarted: 2009.7.11, Ended: 2009.7.14\nParticipants: zxcv411 (S), TwoShort (N)\nWinner: zxcv411\n\n\tTwoShort: I'm headed to vacation; I had meant to suspend the standing challenges sooner. Anyway, if you want to just leave this game active, I'll be able to play in a couple weeks.\n\nHomeworlds Online (SDG# 13829)\nStarted: 2009.7.11, Ended: 2009.7.14\nParticipants: zxcv411 (S), TwoShort (N)\nWinner: zxcv411\n\n\tTwoShort: I'm about to head off on vacation to the land of no internet. I'll be happy to play a game in a couple weeks.\n\nHomeworlds Online (SDG# 13778)\nStarted: 2009.7.12, Ended: 2009.9.19\nParticipants: iwilson (S), rogwyn (N)\nWinner: rogwyn\n\n1) rogwyn: Pass\n\n2) iwilson: Homeworld G3 B2 Y3\n\n3) rogwyn: Homeworld Y2 B1 G3\n\n4) iwilson: Build Y1 Iwilson\n\n5) rogwyn: Pass\n\n6) iwilson: Trade Y1 B1 Iwilson\n\n7) rogwyn: Build G1 Rogwyn\n\n8) iwilson: Trade B1 R1 Iwilson\n\n9) rogwyn: Trade G1 R1 Rogwyn\n\n10) iwilson: Discover R1 Iwilson Y1 Newone\n\n11) rogwyn: Build G1 Rogwyn\n\n12) iwilson: Move Y3 Iwilson Newone\n\n\nHomeworlds Online (SDG# 13779)\nStarted: 2009.7.12, Ended: 2009.12.11\nParticipants: rogwyn (S), iwilson (N)\nWinner: rogwyn\n\n1) iwilson: Homeworld G3 B2 Y3\n\n2) rogwyn: Homeworld B3 G2 R3\n\n3) iwilson: Build Y1 Iwilson\n\n4) rogwyn: Pass\n\n5) iwilson: Trade Y1 G1 Iwilson\n\n6) rogwyn: Build R1 Rogwyn\n\n7) iwilson: Build Y1 Iwilson\n\n8) rogwyn: Build R1 Rogwyn\n\n9) iwilson: Trade Y1 R1 Iwilson\n\n10) rogwyn: Build R2 Rogwyn\n\n11) iwilson: Build Y1 Iwilson\n\n12) rogwyn: Build R2 Rogwyn\n\n13) iwilson: Discover Y3 Iwilson G1 Newone\n\n14) rogwyn: Trade R1 Y1 Rogwyn\n\n15) iwilson: Move R1 Iwilson Newone\n\n16) rogwyn: Move R3 Rogwyn Newone\n\n17) iwilson: Build Y1 Iwilson\n\n18) rogwyn: Build Y2 Rogwyn\n\n19) iwilson: Build G1 Iwilson\n\n20) rogwyn: Trade R1 B1 Rogwyn\n\n21) iwilson: Move G1 Iwilson Newone\n\n22) rogwyn: Attack Y3 Newone\n\n23) iwilson: Trade Y1 R1 Iwilson\n\n24) rogwyn: Trade Y2 G2 Rogwyn\n\n25) iwilson: Move R1 Iwilson Newone\n\n26) rogwyn: Move R3 Newone Iwilson\n\n27) iwilson: Trade Y1 B1 Iwilson\n\n28) rogwyn: Attack G1 Iwilson\n\n29) iwilson: Build B1 Iwilson\n\n30) rogwyn: Attack B1 Iwilson\n\n31) iwilson: Build B2 Iwilson\n\n32) rogwyn: Attack B1 Iwilson\n\n33) iwilson: Trade B2 R2 Iwilson\n\n34) rogwyn: Attack R2 Iwilson\n\n\nHomeworlds Online (SDG# 13834)\nStarted: 2009.7.12, Ended: 2009.7.12\nParticipants: Twoflower (S), PottyTroll (N)\nWinner: PottyTroll\n\n1) PottyTroll: Homeworld G2 B1 Y3\n\n2) Twoflower: Homeworld B1 G2 Y3\n\tTwoflower: homeworld b1 g2 y3\n\n3) PottyTroll: Build Y1 Pottytroll\n\n4) Twoflower: Build Y1 Twoflower\n\n5) PottyTroll: Discover Y1 Pottytroll R3 Grundletown\n\n6) Twoflower: Trade Y1 G1 Twoflower\n\n7) PottyTroll: Build Y1 Pottytroll\n\n8) Twoflower: Discover G1 Twoflower B3 Theface\n\n9) PottyTroll: Trade Y1 B1 Pottytroll\n\n10) Twoflower: Build G1 Theface\n\n11) PottyTroll: Build B2 Pottytroll\n\n12) Twoflower: Trade G1 Y1 Theface\n\n13) PottyTroll: Trade B2 R2 Pottytroll\n\n14) Twoflower: Build Y1 Theface\n\n15) PottyTroll: Move R2 Pottytroll Theface\n\n16) Twoflower: Build Y2 Twoflower\n\n17) PottyTroll: Attack Y1 Theface\n\n18) Twoflower: Trade Y2 G2 Twoflower\n\n19) PottyTroll: Attack G1 Theface\n\n20) Twoflower: Build Y2 Twoflower\n\n21) PottyTroll: Sacrifice Y3 Pottytroll\nMove Y1 Grundletown Twoflower\nMove Y1 Theface Twoflower\nMove R2 Theface Twoflower\nCatastrophe Twoflower Y\n\n\nHomeworlds Online (SDG# 13835)\nStarted: 2009.7.12, Ended: 2009.7.13\nParticipants: PottyTroll (S), Twoflower (N)\nWinner: Twoflower\n\n1) Twoflower: Homeworld R2 G3 B3\n\n2) PottyTroll: Homeworld B3 G1 Y3\n\n3) Twoflower: Build B1 Twoflower\n\n4) PottyTroll: Build Y1 Pottytroll\n\n5) Twoflower: Build B1 Twoflower\n\n6) PottyTroll: Discover Y1 Pottytroll G2 Pigtesticles\n\n7) Twoflower: Trade B1 Y1 Twoflower\n\n8) PottyTroll: Build Y1 Pottytroll\n\n9) Twoflower: Build Y2 Twoflower\n\n10) PottyTroll: Build Y2 Pottytroll\n\n11) Twoflower: Trade Y2 R2 Twoflower\n\n12) PottyTroll: Trade Y2 B2 Pottytroll\n\n13) Twoflower: Build Y2 Twoflower\n\n14) PottyTroll: Move B2 Pottytroll Pigtesticles\n\n15) Twoflower: Discover R2 Twoflower B1 Cmot-dibbler\n\n16) PottyTroll: Trade Y1 R1 Pottytroll\n\n17) Twoflower: Trade Y2 G2 Twoflower\n\n18) PottyTroll: Build R1 Pottytroll\n\n19) Twoflower: Build G1 Twoflower\n\n20) PottyTroll: Move R1 Pottytroll Pigtesticles\n\n21) Twoflower: Move G1 Twoflower Cmot-dibbler\n\n22) PottyTroll: Discover R1 Pigtesticles B1 Cameltoe\n\n23) Twoflower: Sacrifice G2 Twoflower\nBuild G1 Cmot-dibbler\nBuild G2 Cmot-dibbler\n\n24) PottyTroll: Build B2 Pigtesticles\n\n25) Twoflower: Trade G2 B2 Cmot-dibbler\n\n26) PottyTroll: Trade B2 Y2 Pigtesticles\n\n27) Twoflower: Build G2 Cmot-dibbler\n\n28) PottyTroll: Move Y2 Pigtesticles Cameltoe\n\n29) Twoflower: Trade G1 Y1 Cmot-dibbler\n\n30) PottyTroll: Trade Y2 G2 Cameltoe\n\n31) Twoflower: Discover G1 Cmot-dibbler G3 Brainpick\n\n32) PottyTroll: Sacrifice Y1 Pigtesticles\nMove B2 Pigtesticles Cameltoe\n\n33) Twoflower: Discover G2 Cmot-dibbler Y2 Zombietestes\n\n34) PottyTroll: Trade B2 Y2 Cameltoe\n\n35) Twoflower: Sacrifice G2 Zombietestes\nBuild B2 Twoflower\nBuild B2 Cmot-dibbler\n\n36) PottyTroll: Sacrifice G2 Cameltoe\nBuild R1 Cameltoe\nBuild R2 Cameltoe\n\n37) Twoflower: Sacrifice G1 Brainpick\nBuild R3 Cmot-dibbler\n\n38) PottyTroll: Build R3 Pottytroll\n\n39) Twoflower: Discover B2 Cmot-dibbler G2 Poobag\n\n40) PottyTroll: Sacrifice Y3 Pottytroll\nMove R1 Cameltoe Twoflower\nMove R1 Cameltoe Twoflower\nMove R2 Cameltoe Twoflower\nCatastrophe Twoflower Red\n\n41) Twoflower: Build B3 Poobag\n\n42) PottyTroll: Build R1 Pottytroll\n\n43) Twoflower: Move R3 Cmot-dibbler Poobag\n\n44) PottyTroll: Trade R1 Y1 Pottytroll\n\n45) Twoflower: Build Y2 Twoflower\n\n46) PottyTroll: Build Y2 Pottytroll\n\n47) Twoflower: Sacrifice Y2 Twoflower\nMove R3 Poobag Pottytroll\nMove B3 Poobag Pottytroll\n\n48) PottyTroll: Attack R3 Pottytroll\n\n49) Twoflower: Sacrifice R2 Cmot-dibbler\nAttack R3 Pottytroll\nAttack R3 Pottytroll\n\n50) PottyTroll: Build R1 Pottytroll\nCatastrophe Pottytroll R\n\n51) Twoflower: Trade B3 R3 Twoflower\n\n\nHomeworlds Online (SDG# 13813)\nStarted: 2009.7.13, Ended: 2009.7.17\nParticipants: MikeYarrum (S), PottyTroll (N)\nWinner: PottyTroll\n\n1) PottyTroll: Homeworld G3 Y1 B3\n\n\nHomeworlds Online (SDG# 13837)\nStarted: 2009.7.14, Ended: 2009.7.19\nParticipants: MikeYarrum (S), zxcv411 (N)\nWinner: zxcv411\n\n1) zxcv411: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 13822)\nVariants: "Hard time"\nStarted: 2009.7.15, Ended: 2009.9.3\nParticipants: agentofchaos (S), ZackStack (W), zxcv411 (N), headphoned (E)\nWinner: ZackStack\n\n1) zxcv411: Homeworld R1 B2 G3\n\tZackStack: I'm having enough trouble keeping track of what I'm doing in my first three player game... this should get really interesting :-)\r\n\r\nHave fun everyone!\n\n2) headphoned: Homeworld G1 B3 Y3\n\n3) agentofchaos: Homeworld R2 B3 G3\n\tagentofchaos: Multiplayer games can be confusing, but that's part of the fun! Enjoy the game :-)\n\n4) ZackStack: Homeworld R1 B3 G3\n\n5) zxcv411: Build G1 Zxcv411\n\n6) headphoned: Build Y1 Headphoned\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) ZackStack: Build G1 Zackstack\n\n9) zxcv411: Build G1 Zxcv411\n\n10) headphoned: Trade Y1 R1 Headphoned\n\n11) agentofchaos: Build G2 Agentofchaos\n\n12) ZackStack: Trade G1 Y1 Zackstack\n\n13) zxcv411: Trade G1 Y1 Zxcv411\n\n14) headphoned: Build R1 Headphoned\n\n15) agentofchaos: Trade G1 Y1 Agentofchaos\n\n16) ZackStack: Build G1 Zackstack\n\n17) zxcv411: Trade G3 Y3 Zxcv411\n\n18) agentofchaos: Build Y1 Agentofchaos\n\n19) ZackStack: Build G1 Zackstack\n\n20) zxcv411: Discover Y1 Zxcv411 G3 Starbug\n\n21) agentofchaos: Trade Y1 R1 Agentofchaos\n\n22) ZackStack: Discover G1 Zackstack Y2 Criton\n\n23) zxcv411: Build Y1 Starbug\n\n24) agentofchaos: Build G1 Agentofchaos\n\n25) ZackStack: Build G2 Criton\n\n26) zxcv411: Move Y1 Starbug Zxcv411\n\n27) agentofchaos: Build R2 Agentofchaos\n\n28) ZackStack: Move G2 Criton Headphoned\n\n29) zxcv411: Trade Y1 B1 Zxcv411\n\n30) agentofchaos: Discover R2 Agentofchaos Y1 Quasgar\n\n31) ZackStack: Build G2 Headphoned\n\n32) zxcv411: Move B1 Zxcv411 Starbug\n\n33) agentofchaos: Build R2 Agentofchaos\n\n34) ZackStack: Trade G2 R2 Headphoned\n\n35) zxcv411: Build G2 Zxcv411\n\n36) agentofchaos: Move G1 Agentofchaos Quasgar\n\n37) ZackStack: Build G2 Zackstack\n\n38) zxcv411: Trade G2 R2 Zxcv411\n\n39) agentofchaos: Move R2 Quasgar Criton\n\n40) ZackStack: Discover G1 Criton B1 Lister\n\n41) zxcv411: Build R3 Zxcv411\n\n42) agentofchaos: Move R2 Agentofchaos Quasgar\n\n43) ZackStack: Sacrifice R2 Headphoned\nAttack R1E Headphoned\nAttack R1E Headphoned\n\n44) zxcv411: Move R3 Zxcv411 Starbug\n\n45) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R2 Criton\nBuild R3 Quasgar\n\n46) ZackStack: Build G2 Lister\n\n47) zxcv411: Build R3 Starbug\n\n48) agentofchaos: Discover R2 Criton Y3 Io\n\n49) ZackStack: Trade G2 Y2 Lister\n\n50) zxcv411: Build R3 Zxcv411\n\n51) agentofchaos: Move R2 Io Zxcv411\nCatastrophe Zxcv411 R\n\n52) ZackStack: Build G2 Lister\n\n53) zxcv411: Move R3 Starbug Zxcv411\n\n54) agentofchaos: Build G2 Quasgar\n\n55) ZackStack: Trade G2 Y2 Zackstack\n\n56) zxcv411: Move R3 Starbug Criton\n\n57) agentofchaos: Sacrifice G2 Quasgar\nBuild R1 Criton\nBuild R2 Criton\nCatastrophe Criton R\n\n58) ZackStack: Trade G1 R1 Lister\n\n59) zxcv411: Build B1 Starbug\n\n60) agentofchaos: Move R3 Quasgar Starbug\n\tZackStack: On second thought... that would probably be a bit too tempting for you zx :-)\n\n61) ZackStack: Build R2 Lister\n\n62) zxcv411: Build R2 Zxcv411\n\n63) agentofchaos: Discover R1 Agentofchaos Y1 Demento\n\n64) ZackStack: Build Y2 Lister\n\n65) zxcv411: Move R2 Zxcv411 Demento\n\n66) agentofchaos: Discover R1 Demento Y2 Yorgmoss\n\n67) ZackStack: Sacrifice Y2 Lister\nMove R1 Lister Agentofchaos\nMove R2 Lister Agentofchaos\n\n68) zxcv411: Trade Y3 R3 Zxcv411\n\n69) agentofchaos: Build Y2 Agentofchaos\n\n70) ZackStack: Sacrifice Y2 Zackstack\nMove R1 Headphoned Zxcv411\nMove R1 Headphoned Zxcv411\nCatastrophe Zxcv411 Red\n\n71) zxcv411: Move R2 Demento Agentofchaos\nCatastrophe Agentofchaos Red\n\n72) agentofchaos: Move R2 Quasgar Zxcv411\n\n73) ZackStack: Build G1 Lister\n\tZackStack: Looking for some revenge zx?\n\n74) zxcv411: Build G2 Zxcv411\n\n75) agentofchaos: Attack G2N Zxcv411\n\tZackStack: Sigh... by revenge I meant blow up Agent's red star! :-)\n\n76) ZackStack: Trade G1 B1 Zackstack\n\n77) zxcv411: Build B1 Starbug\n\tagentofchaos: Yes well that has happened anyway!\n\n78) agentofchaos: Attack G1N Zxcv411\n\tZackStack: I figured some incentive was in order :-)\n\n79) agentofchaos: Trade G2 B2 Zxcv411\n\n80) ZackStack: Discover B1 Zackstack Y2 Holly\n\n81) agentofchaos: Attack Y1N Starbug\n\n82) ZackStack: Build G1 Zackstack\n\n83) agentofchaos: Build G2 Agentofchaos\n\tagentofchaos: Payback time!\n\n84) ZackStack: Trade G2 B2 Lister\n\n85) agentofchaos: Sacrifice Y1 Agentofchaos\nMove B2 Zxcv411 Starbug\nCatastrophe Starbug B\n\n86) ZackStack: Sacrifice G2 Headphoned\nBuild B1 Holly\nBuild B1 Holly\n\n87) agentofchaos: Move R3 Starbug Holly\n\n88) ZackStack: Sacrifice Y2 Lister\nMove B1 Holly Agentofchaos\nMove B1 Holly Agentofchaos\n\n89) agentofchaos: Sacrifice R2 Zxcv411\nAttack B1W Agentofchaos\nAttack B1W Agentofchaos\n\n90) ZackStack: Move B1 Holly Agentofchaos\nCatastrophe Agentofchaos Blue\n\n\tZackStack: Thanks for the game! Now I need to find a 4 player where one of the players doesn't drop out...\n\tagentofchaos: Yes seems to be hard to find four reliable players. \n\nHomeworlds Online (SDG# 13851)\nVariants: "Unrated"\nStarted: 2009.7.16, Ended: 2009.7.23\nParticipants: ZackStack (S), umfpt (N)\nWinner: ZackStack\n\n1) umfpt: Homeworld B3 G1 Y3\n\n2) ZackStack: Homeworld Y1 B2 G3\n\n3) umfpt: Build Y1 Umfpt\n\n4) ZackStack: Build G1 Zackstack\n\tZackStack: Sorry about the undo... forgot what sizes I needed when I scrolled to the top... :-/ Have a good game!\n\n5) umfpt: Discover Y1 Umfpt B2 Tola\n\n6) ZackStack: Build G1 Zackstack\n\n7) umfpt: Build Y1 Umfpt\n\n8) ZackStack: Discover G1 Zackstack Y3 Daisy\n\tZackStack: Having 3 of a color in one place is dangerous later... but for now I'm safe from reprisal.\n\tumfpt: Yeah, there's no way for me to get there and I don't have any green ships anyway.\n\n9) umfpt: Build Y2 Umfpt\n\n10) ZackStack: Build G2 Daisy\n\n11) umfpt: Trade Y2 G2 Umfpt\n\n12) ZackStack: Discover G2 Daisy B2 Bluebell\n\n13) umfpt: Move G2 Umfpt Tola\n\n14) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Bluebell\nBuild G3 Daisy\nBuild G3 Zackstack\n\n15) umfpt: Build G3 Tola\n\tZackStack: This is a neat move to make with big green ships. :-)\n\n16) ZackStack: Trade G2 Y2 Bluebell\n\n17) umfpt: Discover G2 Tola Y3 Ohnoes\n\tumfpt: Nice\r\n\n\n18) ZackStack: Sacrifice G3 Daisy\nBuild Y2 Bluebell\nBuild G2 Daisy\nBuild G3 Bluebell\n\tZackStack: Are you going to be at DP tomorrow (Tuesday)? Or are we skipping construction week?\n\n19) umfpt: Move G2 Ohnoes Zackstack\n\tumfpt: I'll probably go on Tuesday to check out the setup. I could see it being difficult for you if you have Hazel with you.\n\n20) ZackStack: Trade G1 R1 Zackstack\n\tZackStack: I'll just have to keep it short... though Gwen might be able to pick her up. We'll see.\n\n21) umfpt: Sacrifice G2 Zackstack\nBuild G1 Tola\nBuild Y2 Tola\n\tZackStack: Bold, but dangerous :-)\n\n22) ZackStack: Build G2 Zackstack\n\n23) umfpt: Trade Y1 R1 Umfpt\n\n24) ZackStack: Discover G2 Daisy R2 Rose\n\tZackStack: Be careful with that homeworld...\n\n25) umfpt: Move G3 Tola Daisy\n\n26) ZackStack: Sacrifice Y2 Bluebell\nMove G2 Rose Umfpt\nMove G2 Bluebell Umfpt\n\n27) umfpt: Trade Y1 R1 Tola\n\n28) ZackStack: Sacrifice G1 Daisy\nBuild G1 Umfpt\nCatastrophe Umfpt Green\n\n29) umfpt: Move R1 Tola Daisy\n\tumfpt: Sorry about that. It seemed like a wasted move based on what I'm guessing your next move will be.\n\n30) ZackStack: Build R2 Zackstack\n\tZackStack: Good call on the wasted move. ;-)\n\n31) umfpt: Build R2 Daisy\n\n32) ZackStack: Trade Y2 R2 Bluebell\n\n33) umfpt: Sacrifice Y3 Umfpt\nMove G3 Daisy Zackstack\nMove R1 Daisy Zackstack\nMove R2 Daisy Zackstack\nCatastrophe Zackstack R\n\n34) ZackStack: Trade G2 R2 Zackstack\n\n35) umfpt: Move G3 Zackstack Umfpt\n\n36) ZackStack: Build G1 Bluebell\n\tZackStack: Hey! Retaliation! Good times :-)\n\n37) umfpt: Build R1 Umfpt\n\tumfpt: If only I had a plan of what to do now.\n\n38) ZackStack: Build G1 Zackstack\n\tZackStack: If it makes you feel better, I think I missed a chance to win on my last move... now we build up again :-)\n\n39) umfpt: Build G2 Umfpt\n\n40) ZackStack: Trade G3 Y3 Bluebell\n\n41) umfpt: Sacrifice G3 Umfpt\nBuild G2 Tola\nBuild Y1 Tola\nBuild Y1 Tola\n\n42) ZackStack:\nMove Y3 Bluebell Umfpt\n\n43) umfpt: Move Y1 Tola Umfpt\n\n44) ZackStack: Sacrifice R2 Bluebell\nAttack R1 Umfpt\nAttack R1 Umfpt\n\tZackStack: You probably shouldn't have destroyed your only size 3 ship... the G3 sacrifice is best when you get a size three or two out of it. Though I am curious how this plays out!\n\n45) umfpt: Sacrifice G2 Tola\nBuild Y2 Umfpt\nBuild Y2 Umfpt\nCatastrophe Umfpt Y\n\tumfpt: I couldn't move it and figured you would trigger a catastrophy if I didn't sacrifice it myself. That's if I'm remembering the game position correctly. \n\n46) ZackStack: Trade R1 B1 Umfpt\n\n47) umfpt: Move G1 Tola Umfpt\n\n48) ZackStack: Sacrifice G3 Zackstack\nBuild B1 Umfpt\nBuild B1 Umfpt\nBuild G2 Zackstack\nCatastrophe Umfpt Blue\n\n\tumfpt: Good game. I couldn't stop you winning this turn.\n\tZackStack: Good game. You're getting better fast!\n\nHomeworlds Online (SDG# 13845)\nVariants: "Unrated"\nStarted: 2009.7.17, Ended: 2009.10.15\nParticipants: jonaskoelker (S), AnalogKid (N)\nWinner: AnalogKid\n\n1) AnalogKid: Homeworld Y3 B1 G3\n\n2) jonaskoelker: Homeworld Y2 B1 G3\n\tAnalogKid: Hello! Thanks for accepting my challenge :)\r\nHave you played Homeworlds before?\n\n3) AnalogKid: Build G1 Analogkid\n\tjonaskoelker: No, this is my first game. I don't even have IceHouse pieces, though I have ordered my first set very recently. I've read the game between Andy and Russell and a few strategy discussions on the icehouse mailing list. I felt tempted to open with "homeworld G2 Y2 R3", then build, move, attack, but I think that fails when you make the first (real) move (you build, I build, you convert small to red, then I can't move)... oh well...\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\tAnalogKid: I think you chose a much better opening. The "banker" homeworld is a good option for new players and the supposedly choosing a homeworld only one hop away from your opponent is not.\r\n\r\nI have only played Homeworlds twice now myself. So, I am a newbie too. I like playing on SDG because you can take several days to think about a turn ^_^\n\tjonaskoelker: Yeah, that's what I hear. I also hear Andy prefers "homeworld B2 R1 G3", but maybe yellow will work out fine.\r\n\r\nIn any case, behold the constructive power of my fully armed an operational battlestati... erm, factory ;-)\r\n\n\n5) AnalogKid: Trade G1 Y1 Analogkid\n\tjonaskoelker: By the way, instead of building a small green, could I have sacrificed my large green an built three small ones?\r\n\r\nOr would I lose because I didn't have any ships in my homeworld? What if I had G3 R1 in some other system; could I sacrifice the G3 and build three greens? What if I had just the G3?\r\n\r\nMy interpretation is that star systems "die" "as soon as possible", so I when I sacrifice the lonely G3, its star system disappears before I can use my three build actions. Similarly, the green-producing ability it gave itself would be gone (but other green ships could give it to compensate).\r\n\r\nDo you know what SDG's interpretation is?\r\n\n\tjonaskoelker: "supposedly choosing a homeworld only one hop away from your opponent is not [good for newbies]."\r\n\r\nThat's interesting. I think it might--the game would be more tactical (as opposed to strategic)--you need to think a few moves ahead and examine them thoroughly, but you don't need to understand much of the broader, long term strategies that are useful if you want to conquer a large(st) world.\r\n\r\nI think it's also easier to know how good your position is---you'll probably either be thinking "I could win if only he didn't have that damn..." or "Whew, I would have lost if I hadn't found the defense against [maneuver]." I think the mid-game in large worlds are closer to "roughly evn", "slightly advantageous" and "moderately advantageous" in range.\r\n\r\nBut I speculate :)\n\n6) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\tAnalogKid: The 3HOUSE booklet, in the "Game Over" section says:\r\n\r\n"It's OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over."\r\n\r\n(I believe SDG follows this rule). Additionally, the rule about immediately returning abandoned stars to the bank only applies to non-homeworld star-systems.\r\n\r\nHowever, you still could not have sacrificed your large green effectively because you can only build ships of the same color as another ship you control in the target system. i.e. The colors of your stars and the sacrificed green ship are not usable. So, you would not have been allowed to build ANY ships if you had sac'd the G3. If you had had other ships anywhere, you could build new ships of the same color(s) in their systems, being careful to have a ship at your homeworld in the end.\n\tAnalogKid: I have read of some advanced players starting with a small universe (and presumably a red ship). I am too new of a player to judge the effectiveness of that strategy or to judge the relative merits of starting with red vs. yellow in the homeworld. I want to explore the B-Y G3 option for awhile before I move on to the others. :)\n\n7) AnalogKid: Discover Y1 Analogkid G2 Ramandu\n\tjonaskoelker: So, for instance, if I had (only) a Y3 at my homeworld, I could sacrifice it if I used (at least one of) the moves to move something back there. Isn't that also the only way in which I can temporarily leave my homeworld empty?\n\n8) jonaskoelker: Discover Y1 Jonaskoelker G3 Alderaan\n\tAnalogKid: Yes, my understanding is that sacrificing a yellow ship as you describe would be OK. I was also thinking you could sac your last ship at the homeworld if it was red and take control of an opponent's ship in that system. However, I see now that that fails too. The G, R, and B actions all require a ship in the target system (as do sacrifice actions).\n\n9) AnalogKid: Build G1 Analogkid\n\tjonaskoelker: "We are on a diplomatic mission. These aren't the death star blueprints you're looking for" ;-)\r\n\n\n10) jonaskoelker: Build G1 Jonaskoelker\n\n11) AnalogKid: Trade G1 B1 Analogkid\n\n12) jonaskoelker: Trade G3 B3 Jonaskoelker\n\n13) AnalogKid: Build B2 Analogkid\n\n14) jonaskoelker: Build B2 Jonaskoelker\n\tAnalogKid: I'm very curious to see how this series of moves works out :)\n\n15) AnalogKid: Discover Y1 Ramandu G3 Coriakin\n\tjonaskoelker: So am I...\n\n16) jonaskoelker: Move B2 Jonaskoelker Alderaan\n\n17) AnalogKid: Build G1 Analogkid\n\tjonaskoelker: I'll be interested to see how your plan develops :)\n\n18) jonaskoelker: Build B2 Alderaan\n\n19) AnalogKid: Trade B1 R1 Analogkid\n\n20) jonaskoelker: Trade B2 G2 Alderaan\n\n21) AnalogKid: Discover B2 Analogkid G2 Ramandu\n\n22) jonaskoelker: Build B1 Alderaan\n\n23) AnalogKid: Build Y1 Coriakin\n\tjonaskoelker: I'm not sure I like how the board looks...\n\tAnalogKid: Sorry for the long delay! I was finding it rather difficult to choose a move ...\n\n24) jonaskoelker: Build Y2 Alderaan\n\tjonaskoelker: That's fine--I have not been left homworlds-less in the meantime :)\n\n25) AnalogKid: Move Y1 Coriakin Ramandu\n\n26) jonaskoelker: Trade Y2 R2 Alderaan\n\n27) AnalogKid: Build Y2 Ramandu\n\n\tAnalogKid: Hi, I see that you've been swamped for awhile with your games, but I'm wondering whether you intend to continue this one. If so, I'm willing to wait, but if not, I'd like to start another Homeworlds game with someone. (But I don't want two games going at once ...)\n\tjonaskoelker: Hey, AnalogKid. Sorry for falling off the planet. Resigning me was fine.\n\nHomeworlds Online (SDG# 13828)\nVariants: "No undo, Sinister, Hard time"\nStarted: 2009.7.17, Ended: 2009.7.27\nParticipants: zoltar (S), headphoned (W), zxcv411 (N), mindloss (E)\nWinner: zxcv411\n\n1) zxcv411: Homeworld R1 B2 G3\n\n2) mindloss: Homeworld B2 R3 G3\n\n3) zoltar: Homeworld B1 R2 G3\n\n4) headphoned: Homeworld R1 B3 G3\n\n5) zxcv411: Build G1 Zxcv411\n\n6) mindloss: Build G1 Mindloss\n\n7) zoltar: Build G1 Zoltar\n\n8) headphoned: Build G1 Headphoned\n\n9) zxcv411: Trade G3 Y3 Zxcv411\n\n10) zoltar: Trade G1 Y1 Zoltar\n\n\tzoltar: With two of them gone, we should either play a new multi-player game or else just start a two-player one.\n\nHomeworlds Online (SDG# 13844)\nStarted: 2009.7.17, Ended: 2009.7.21\nParticipants: zoltar (S), TwoShort (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 13857)\nStarted: 2009.7.17, Ended: 2009.8.5\nParticipants: TwoShort (S), mick71 (N)\nWinner: TwoShort\n\n1) mick71: Homeworld B1 G3 R3\n\n2) TwoShort: Homeworld B1 R2 G3\n\tTwoShort: I had meant to suspend my standing challenge during my vacation. Sorry; I'm back now. Also, you appear to be a new player, and you've made, in my opinion, no offense, a disastrous opening. Which all adds up to probably nobody is reading this. On the other hand, if you want to play, or drop this game in favor of an unrated tutorial, or whatever, what the heck...\n\n\nHomeworlds Online (SDG# 13821)\nVariants: "Hard time"\nStarted: 2009.7.18, Ended: 2009.7.27\nParticipants: agentofchaos (S), PottyTroll (N)\nWinner: agentofchaos\n\n1) PottyTroll: Homeworld G3 B1 Y3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\tPottyTroll: good luck\n\tagentofchaos: Thanks, good luck to you too!\n\n3) PottyTroll: Build Y1 Pottytroll\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) PottyTroll: Build Y1 Pottytroll\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) PottyTroll: Discover Y1 Pottytroll R2 Hogdumpling\n\n8) agentofchaos: Build Y2 Agentofchaos\n\n9) PottyTroll: Build Y2 Pottytroll\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) PottyTroll: Move Y2 Pottytroll Hogdumpling\n\n12) agentofchaos: Trade Y1 R1 Agentofchaos\n\n13) PottyTroll: Trade Y1 B1 Pottytroll\n\n14) agentofchaos: Trade G1 B1 Agentofchaos\n\n15) PottyTroll: Build B2 Pottytroll\n\n16) agentofchaos: Discover B1 Agentofchaos Y1 Dreamzone\n\n17) PottyTroll: Move B2 Pottytroll Hogdumpling\n\n18) agentofchaos: Build Y1 Agentofchaos\n\n19) PottyTroll: Trade Y2 G2 Hogdumpling\n\n20) agentofchaos: Build G1 Agentofchaos\n\n21) PottyTroll: Build Y2 Hogdumpling\n\n22) agentofchaos: Move Y2 Agentofchaos Dreamzone\n\n23) PottyTroll: Trade Y2 R2 Hogdumpling\n\n24) agentofchaos: Build Y2 Agentofchaos\n\n25) PottyTroll: Move R2 Hogdumpling Dreamzone\n\n26) agentofchaos: Sacrifice R1 Agentofchaos\nAttack R2 Dreamzone\n\n27) PottyTroll: Build Y2 Hogdumpling\n\n28) agentofchaos: Trade Y2 G2 Dreamzone\n\tPottyTroll: oops\n\tagentofchaos: :-)\n\n29) PottyTroll: Trade B1 R1 Pottytroll\n\n30) agentofchaos: Build R1 Dreamzone\n\n31) PottyTroll: Sacrifice G2 Hogdumpling\nBuild Y2 Pottytroll\nBuild Y3 Pottytroll\n\n32) agentofchaos: Discover Y2 Agentofchaos G1 Earthroot\n\n33) PottyTroll: Trade Y2 G2 Hogdumpling\n\n34) agentofchaos: Sacrifice G2 Dreamzone\nBuild Y2 Agentofchaos\nBuild Y3 Earthroot\n\n35) PottyTroll: Discover Y3 Pottytroll B2 Baitmaster\n\n36) agentofchaos: Move Y3 Earthroot Hogdumpling\n\n37) PottyTroll: Move G2 Hogdumpling Earthroot\n\n38) agentofchaos: Discover Y2 Earthroot B2 Terrorworld\n\n39) PottyTroll: Trade Y2 G2 Pottytroll\n\n40) agentofchaos: Sacrifice R2 Dreamzone\nAttack B2 Hogdumpling\nAttack Y1 Hogdumpling\n\n41) PottyTroll: Build Y2 Pottytroll\n\n42) agentofchaos: Move B1 Dreamzone Terrorworld\n\n43) PottyTroll: Move Y2 Pottytroll Terrorworld\n\n44) agentofchaos: Sacrifice Y2 Terrorworld\nMove B1 Terrorworld Pottytroll\nMove B2 Hogdumpling Pottytroll\n\n45) PottyTroll: Build G1 Earthroot\n\n46) agentofchaos: Move G1 Agentofchaos Earthroot\nCatastrophe Earthroot G\n\n47) PottyTroll: Trade Y2 R2 Terrorworld\n\n48) agentofchaos: Build B1 Pottytroll\nCatastrophe Pottytroll B\n\n49) PottyTroll: Build G1 Pottytroll\n\n50) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G3 Agentofchaos Dreamzone\nMove G3 Dreamzone Pottytroll\nCatastrophe Pottytroll G\n\n\tagentofchaos: Thanks for a fun game :-)\n\tPottyTroll: yeah it was a good one, learned a few things there. thanks for playing\n\nHomeworlds Online (SDG# 13863)\nStarted: 2009.7.18, Ended: 2009.7.22\nParticipants: PottyTroll (S), umfpt (N)\nWinner: PottyTroll\n\n1) umfpt: Homeworld Y2 B1 G3\n\n2) PottyTroll: Homeworld G3 B1 Y3\n\tumfpt: Good luck.\n\n3) umfpt: Build G1 Umfpt\n\tPottyTroll: you too\n\n4) PottyTroll: Build Y1 Pottytroll\n\n5) umfpt: Build G1 Umfpt\n\n6) PottyTroll: Build Y1 Pottytroll\n\n7) umfpt: Discover G1 Umfpt B3 Tola\n\n8) PottyTroll: Discover Y1 Pottytroll R2 Spud\n\n9) umfpt: Build G1 Tola\n\n10) PottyTroll: Trade Y3 G3 Pottytroll\n\n11) umfpt: Trade G1 Y1 Tola\n\n12) PottyTroll: Build Y2 Pottytroll\n\n13) umfpt: Build Y2 Tola\n\n14) PottyTroll: Build Y3 Pottytroll\n\n15) umfpt: Sacrifice Y2 Tola\nMove Y1 Tola Spud\nMove Y1 Spud Pottytroll\nCatastrophe Pottytroll Y\n\n16) PottyTroll: Build G1 Pottytroll\n\n17) umfpt: Build G2 Tola\n\n18) PottyTroll: Trade G3 Y3 Pottytroll\n\n19) umfpt: Trade G2 Y2 Tola\n\n20) PottyTroll: Build G2 Pottytroll\n\n21) umfpt: Sacrifice Y2 Tola\nMove G1 Tola Spud\nMove G1 Spud Pottytroll\nCatastrophe Pottytroll G\n\n22) PottyTroll: Trade Y3 G3 Pottytroll\n\n23) umfpt: Discover G1 Umfpt Y3 Tola\n\n24) PottyTroll: Build G1 Pottytroll\n\n25) umfpt: Build G1 Umfpt\n\n26) PottyTroll: Trade G1 Y1 Pottytroll\n\n27) umfpt: Move G1 Tola Pottytroll\n\n28) PottyTroll: Trade Y1 R1 Pottytroll\n\n29) umfpt: Trade G1 Y1 Umfpt\n\n30) PottyTroll: Attack G1 Pottytroll\n\n31) umfpt: Discover Y1 Umfpt B3 Tola\n\n32) PottyTroll: Move Y1 Spud Pottytroll\n\n33) umfpt: Build G1 Umfpt\n\n34) PottyTroll: Move R1 Pottytroll Tola\n\n35) umfpt: Move Y1 Tola Pottytroll\n\n36) PottyTroll: Trade G1 R1 Pottytroll\n\n37) umfpt: Discover G1 Umfpt B3 Ohnoes\n\n38) PottyTroll: Attack Y1 Pottytroll\n\n39) umfpt: Build G1 Ohnoes\n\n40) PottyTroll: Move Y1 Pottytroll Tola\n\n41) umfpt: Trade G3 R3 Umfpt\n\n42) PottyTroll: Build G1 Pottytroll\n\n43) umfpt: Build G2 Ohnoes\n\n44) PottyTroll: Move G1 Pottytroll Ohnoes\nCatastrophe Ohnoes G\n\n45) umfpt: Trade R3 G3 Umfpt\n\tumfpt: Ouch.\r\n\n\n46) PottyTroll: Build G1 Pottytroll\n\n47) umfpt: Build G1 Umfpt\n\n48) PottyTroll: Move G1 Pottytroll Tola\n\n49) umfpt: Trade G1 R1 Umfpt\n\n50) PottyTroll: Build R2 Tola\n\n51) umfpt: Build G1 Umfpt\n\n52) PottyTroll: Trade R1 Y1 Tola\n\n53) umfpt: Trade G1 B1 Umfpt\n\n54) PottyTroll: Build Y2 Tola\n\n55) umfpt: Build B2 Umfpt\n\n56) PottyTroll: Trade Y2 B2 Tola\n\n57) umfpt: Discover B1 Umfpt Y3 Ohnoes\n\n58) PottyTroll: Build Y2 Pottytroll\n\n59) umfpt: Build B2 Umfpt\n\n60) PottyTroll: Move B2 Tola Umfpt\nCatastrophe Umfpt B\n\n61) umfpt: Build G1 Umfpt\n\n62) PottyTroll: Build Y2 Tola\n\n63) umfpt: Move B1 Ohnoes Umfpt\n\n64) PottyTroll: Move Y2 Tola Umfpt\n\n65) umfpt: Attack Y2S Umfpt\n\n66) PottyTroll: Sacrifice Y2 Pottytroll\nMove Y1 Tola Umfpt\nMove Y1 Tola Umfpt\nCatastrophe Umfpt Y\n\n\tPottyTroll: good game man\n\tumfpt: Thanks for the game. I've only played a couple of times before so I'm still learning.\n\tPottyTroll: hey, no worries, I'm learning too :)\n\nHomeworlds Online (SDG# 13823)\nVariants: "Hard time"\nStarted: 2009.7.19, Ended: 2009.10.15\nParticipants: agentofchaos (S), PottyTroll (N), umfpt (E)\nWinner: agentofchaos\n\n1) PottyTroll: Homeworld B2 Y1 G3\n\n2) umfpt: Homeworld Y3 B1 G3\n\n3) agentofchaos: Homeworld B3 R2 G3\n\tagentofchaos: Hi guys, enjoy the game :-)\n\n4) PottyTroll: Build G1 Pottytroll\n\n5) umfpt: Build G1 Umfpt\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) PottyTroll: Discover G1 Pottytroll Y3 Flapjacks\n\n8) umfpt: Discover G1 Umfpt B2 Tola\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) PottyTroll: Build G1 Pottytroll\n\n11) umfpt: Build G1 Umfpt\n\n12) agentofchaos: Build G2 Agentofchaos\n\n13) PottyTroll: Build G2 Pottytroll\n\n14) umfpt: Build G2 Tola\n\n15) agentofchaos: Build G2 Agentofchaos\n\n16) PottyTroll: Build G3 Flapjacks\n\n17) umfpt: Trade G2 Y2 Tola\n\n18) agentofchaos: Build Y1 Agentofchaos\n\n19) PottyTroll: Trade G1 B1 Pottytroll\n\n20) umfpt: Build Y1 Tola\n\n21) agentofchaos: Trade G2 R2 Agentofchaos\n\n22) PottyTroll: Move B1 Pottytroll Flapjacks\n\n23) umfpt: Trade G1 R1 Umfpt\n\n24) agentofchaos: Discover Y1 Agentofchaos G1 Ixion\n\n25) PottyTroll: Trade G3 R3 Flapjacks\n\n26) umfpt: Build R1 Umfpt\n\n27) agentofchaos: Discover Y1 Ixion G3 Dagon\n\n28) PottyTroll: Move R3 Flapjacks Tola\n\n29) umfpt: Sacrifice Y2 Tola\nMove G1 Tola Flapjacks\nMove G1 Flapjacks Pottytroll\n\n30) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Agentofchaos\nBuild Y2 Dagon\n\n31) PottyTroll: Trade G3 R3 Pottytroll\n\n32) umfpt: Move Y1 Tola Flapjacks\n\n33) agentofchaos: Build Y2 Dagon\n\n34) PottyTroll: Attack G1E Pottytroll\n\tPottyTroll: is there any reason the game isn't letting me attack the g1 ship in my homeworld?\n\tagentofchaos: In a multiplayer game the attack command has to specify the seat of the ship being attacked, i.e. the attack command for you would be 'a g1e pottytroll'. If you leave out the 'e' the command won't work. \n\tPottyTroll: ahh thanks :)\n\n35) umfpt: Build G1 Umfpt\n\n36) agentofchaos: Build Y2 Agentofchaos\n\n37) PottyTroll: Build R1 Pottytroll\n\n38) umfpt: Discover Y1 Flapjacks B1 Ohnoes\n\n39) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Dagon Pottytroll\nMove Y1 Dagon Pottytroll\n\n40) PottyTroll: Move G2 Pottytroll Flapjacks\n\n41) umfpt: Trade Y1 G1 Ohnoes\n\n42) agentofchaos: Move Y2 Dagon Pottytroll\nCatastrophe Pottytroll Y\n\n43) PottyTroll: Trade R1 Y1 Pottytroll\n\n44) umfpt: Build G2 Ohnoes\n\n45) agentofchaos: Build G2 Agentofchaos\n\n46) PottyTroll: Build G2 Pottytroll\n\n47) umfpt: Sacrifice G3 Umfpt\nBuild G3 Ohnoes\nBuild G3 Umfpt\nBuild G3 Umfpt\n\n48) agentofchaos: Move G2 Agentofchaos Ohnoes\nCatastrophe Ohnoes G\n\n49) PottyTroll: Move G1 Pottytroll Umfpt\nCatastrophe Umfpt G\n\n50) umfpt: Trade R1 G1 Umfpt\n\tPottyTroll: sorry bud :(\n\n51) agentofchaos: Build R1 Agentofchaos\n\tumfpt: lol well I expected one of the systems to get hit.\n\n52) PottyTroll: Build Y1 Pottytroll\n\n53) umfpt: Build G1 Umfpt\n\n54) agentofchaos: Build G1 Agentofchaos\n\n55) PottyTroll: Sacrifice Y1 Pottytroll\nMove R3 Tola Umfpt\n\n56) umfpt: Build R1 Umfpt\n\n57) agentofchaos: Trade R1 B1 Agentofchaos\n\n58) PottyTroll: Discover R3 Umfpt G2 Porkslap\n\n59) umfpt: Trade R1 Y1 Umfpt\n\n60) agentofchaos: Build G2 Agentofchaos\n\n61) PottyTroll: Build G3 Pottytroll\n\n62) umfpt: Build R1 Umfpt\n\n63) agentofchaos: Discover G3 Agentofchaos Y1 Lionheart\n\n64) PottyTroll: Build Y2 Pottytroll\n\n65) umfpt: Discover G1 Umfpt B2 Tola\n\n66) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G2 Agentofchaos Lionheart\nMove G3 Lionheart Agentofchaos\n\n67) PottyTroll: Move Y2 Pottytroll Umfpt\n\n68) umfpt: Move R1 Umfpt Tola\n\n69) agentofchaos: Build G3 Lionheart\n\n70) PottyTroll: Sacrifice G1 Flapjacks\nBuild Y2 Umfpt\nCatastrophe Umfpt Y\n\n71) umfpt: Trade R1 Y1 Tola\n\n72) agentofchaos: Build Y2 Agentofchaos\n\n73) PottyTroll: Build Y2 Pottytroll\n\n74) umfpt: Build Y2 Tola\n\n75) agentofchaos: Move G3 Lionheart Tola\n\n76) PottyTroll: Sacrifice Y1 Pottytroll\nMove R3 Porkslap Lionheart\n\n77) umfpt: Build G1 Umfpt\n\n78) agentofchaos: Discover G2 Lionheart Y2 Braveheart\n\n79) PottyTroll: Move G2 Pottytroll Lionheart\n\n80) umfpt: Build G2 Tola\n\n81) agentofchaos: Trade G3 R3 Tola\n\n82) PottyTroll: Build R1 Lionheart\n\n83) umfpt: Sacrifice Y2 Tola\nMove G2 Tola Flapjacks\nMove Y1 Tola Flapjacks\n\n84) agentofchaos: Move R2 Agentofchaos Umfpt\n\n85) PottyTroll: Build G3 Lionheart\n\n86) umfpt: Build Y1 Flapjacks\n\n87) agentofchaos: Move G1 Agentofchaos Umfpt\n\n88) PottyTroll: Move G2 Flapjacks Umfpt\nCatastrophe Umfpt G\n\n89) umfpt: Sacrifice G2 Flapjacks\nBuild R1 Umfpt\nBuild Y2 Flapjacks\n\n90) agentofchaos: Attack R1E Umfpt\nCatastrophe Flapjacks Y\n\n91) PottyTroll: Build Y1 Pottytroll\n\n92) umfpt: Attack R1S Umfpt\n\n93) agentofchaos: Attack G1E Tola\n\n94) PottyTroll: Discover G2 Lionheart B2 Baconwave\n\n95) umfpt: Trade R1 Y1 Umfpt\n\n96) agentofchaos: Discover Y2 Agentofchaos G1 Kirilthrendor\n\n97) PottyTroll: Trade Y1 B1 Pottytroll\n\n98) umfpt: Trade R1 G1 Umfpt\n\n99) agentofchaos: Sacrifice G2 Braveheart\nBuild G1 Agentofchaos\nBuild G2 Tola\n\n100) PottyTroll: Build G2 Lionheart\n\n101) umfpt: Build G2 Umfpt\n\n102) agentofchaos: Trade G1 R1 Agentofchaos\n\n103) PottyTroll: Move B1 Pottytroll Lionheart\n\n104) umfpt: Trade G1 R1 Umfpt\n\n105) agentofchaos: Discover R1 Agentofchaos Y1 Kakrafoon\n\n106) PottyTroll: Build B1 Lionheart\n\n107) umfpt: Attack R2S Umfpt\n\n108) agentofchaos: Move B1 Agentofchaos Kirilthrendor\n\n109) PottyTroll: Build Y2 Pottytroll\n\n110) umfpt: Build Y2 Umfpt\n\n111) agentofchaos: Sacrifice G2 Tola\nBuild Y3 Agentofchaos\nBuild Y3 Kirilthrendor\n\n112) PottyTroll: Trade G3 Y3 Lionheart\n\n113) umfpt: Build Y3 Umfpt\n\n114) agentofchaos: Build B2 Kirilthrendor\n\n115) PottyTroll: Move Y2 Pottytroll Umfpt\nCatastrophe Umfpt Y\n\n116) umfpt: Trade R1 Y1 Umfpt\n\n117) agentofchaos: Trade R3 B3 Tola\n\n118) PottyTroll: Sacrifice Y3 Lionheart\nMove B1 Lionheart Tola\nMove B1 Lionheart Tola\nMove R1 Lionheart Baconwave\nCatastrophe Tola B\n\n119) umfpt: Build Y2 Umfpt\n\n120) agentofchaos: Sacrifice B2 Kirilthrendor\nTrade Y2 B2 Kirilthrendor\nTrade R1 B1 Kakrafoon\n\n121) PottyTroll: Build Y2 Pottytroll\n\n122) umfpt: Build R1 Umfpt\n\n123) agentofchaos: Sacrifice Y3 Kirilthrendor\nMove B1 Kirilthrendor Pottytroll\nMove B1 Kakrafoon Pottytroll\nMove B2 Kirilthrendor Pottytroll\nCatastrophe Pottytroll B\n\n124) umfpt: Move R2 Umfpt Baconwave\n\n125) agentofchaos: Move Y3 Agentofchaos Lionheart\n\n126) umfpt: Attack G2N Baconwave\n\n127) agentofchaos: Trade Y1 R1 Agentofchaos\n\n128) umfpt: Sacrifice Y1 Umfpt\nMove R2 Baconwave Umfpt\n\n129) agentofchaos: Sacrifice R1 Agentofchaos\nAttack R3N Lionheart\n\n130) umfpt: Build G1 Umfpt\n\n131) agentofchaos: Attack G2N Lionheart\n\n132) umfpt: Sacrifice Y2 Umfpt\nMove G2 Umfpt Agentofchaos\nMove G1 Umfpt Agentofchaos\n\n133) agentofchaos: Sacrifice R3 Lionheart\nAttack G1E Agentofchaos\nAttack G2E Agentofchaos\nPass\n\n134) umfpt: Trade R2 Y2 Umfpt\n\n135) agentofchaos: Trade G2 R2 Agentofchaos\n\n136) umfpt: Sacrifice G2 Baconwave\nBuild R1 Umfpt\nBuild Y1 Umfpt\n\n137) agentofchaos: Trade R2 Y2 Agentofchaos\n\n138) umfpt: Trade Y1 G1 Umfpt\n\n139) agentofchaos: Move Y3 Lionheart Baconwave\n\n140) umfpt: Build G1 Umfpt\n\n141) agentofchaos: Move G1 Agentofchaos Lionheart\n\n142) umfpt: Build Y1 Umfpt\n\n143) agentofchaos: Move Y3 Baconwave Umfpt\n\n144) umfpt: Sacrifice Y2 Umfpt\nMove R1 Umfpt Agentofchaos\nMove R1 Umfpt Agentofchaos\n\n145) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G2 Lionheart Baconwave\nMove G2 Baconwave Umfpt\n\n146) umfpt: Sacrifice G1 Umfpt\nBuild R1 Agentofchaos\nCatastrophe Agentofchaos R\n\n147) agentofchaos: Trade Y3 R3 Umfpt\n\n148) umfpt: Build G1 Umfpt\n\n149) agentofchaos: Sacrifice G1 Lionheart\nBuild G1 Umfpt\nCatastrophe Umfpt G\n\n150) umfpt: Trade Y1 G1 Umfpt\n\n151) agentofchaos: Attack G1E Umfpt\n\n\tagentofchaos: Thanks for the game and for hanging in there. I enjoyed playing you :)\n\nHomeworlds Online (SDG# 13818)\nStarted: 2009.7.20, Ended: 2009.8.12\nParticipants: ts52 (S), wmreed (N)\nWinner: wmreed\n\n1) wmreed: Homeworld G2 B1 Y3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) wmreed: Build Y1 Wmreed\n\twmreed: Hello!\n\n4) ts52: Build G1 Ts52\n\n5) wmreed: Trade Y1 G1 Wmreed\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wmreed: Build G1 Wmreed\n\n8) ts52: Discover Y1 Ts52 G1 Robin\n\twmreed: Just FYI, I will be out of town Thurs. - Sun. if our game is still going on.\n\n9) wmreed: Discover G1 Wmreed B3 Ballard\n\n10) ts52: Build G2 Ts52\n\tts52: Ok, no problem. Thanks for the heads up.\n\n11) wmreed: B Y1 Wmreed\n\n12) ts52: D G2 Ts52 B1 Grover\n\n13) wmreed: T G1 R1 Wmreed\n\n14) ts52: Build G1 Grover\n\n15) wmreed: T Y3 G3 Wmreed\n\n16) ts52: Sacrifice Y1 Robin\nDiscover G2 Grover G3 Kermit\n\n17) wmreed: M G3 Wmreed Kermit\n\n18) ts52: Build G1 Kermit\nCatastrophe Kermit Green\n\n19) wmreed: Build R1 Wmreed\n\n20) ts52: Trade G3 R3 Ts52\n\twmreed: Nice play following my stupid move.\r\n\n\n21) wmreed: Build Y1 Wmreed\n\n22) ts52: Sacrifice G1 Grover\nBuild R1 Ts52\n\n23) wmreed: Build R2 Wmreed\n\n24) ts52: Trade R1 G1 Ts52\n\n25) wmreed: Move R1 Wmreed Ballard\n\n26) ts52: Build G1 Ts52\n\n27) wmreed: Build G2 Ballard\n\n28) ts52: Discover G1 Ts52 B1 Gonzo\n\n29) wmreed: Discover Y1 Wmreed G3 Logan\n\n30) ts52: Build R1 Ts52\n\n31) wmreed: Move R1 Wmreed Logan\n\n32) ts52: Move R1 Ts52 Gonzo\n\n33) wmreed: Build Y1 Logan\n\n34) ts52: Build R2 Gonzo\n\n35) wmreed: Sacrifice G2 Ballard\nBuild R2 Logan\nBuild R3 Wmreed\n\n36) ts52: Build R3 Ts52\n\n37) wmreed: Build Y2 Wmreed\n\n38) ts52: Trade R2 Y2 Gonzo\n\n39) wmreed: Discover R2 Wmreed Y3 Jessica\n\n40) ts52: Discover R3 Ts52 B1 Grover\n\n41) wmreed: Move Y2 Wmreed Ballard\n\twmreed: man, that's a lot of red.\r\n\n\n42) ts52: Build G2 Ts52\n\n43) wmreed: Build Y2 Wmreed\n\n44) ts52: Discover G1 Gonzo Y3 Bigbird\n\n45) wmreed: Sacrifice Y1 Logan\nDiscover R2 Logan Y1 Francis\n\n46) ts52: Sacrifice G2 Ts52\nBuild G2 Ts52\nBuild R2 Gonzo\n\n47) wmreed: Trade R3 G3 Wmreed\n\n48) ts52: Move G2 Ts52 Gonzo\n\n49) wmreed: Move R1 Ballard Wmreed\n\n50) ts52: Move G2 Gonzo Bigbird\n\n51) wmreed: Sacrifice G3 Wmreed\nBuild R3 Wmreed\nBuild G2 Ballard\nBuild G3 Ballard\n\n52) ts52: Build G3 Ts52\n\n53) wmreed: Move G3 Ballard Gonzo\n\n54) ts52: Move R2 Gonzo Ballard\n\n55) wmreed: Sacrifice R2 Jessica\nAttack R2 Ballard\nAttack Y2 Gonzo\n\n56) ts52: Trade R3 Y3 Grover\n\n57) wmreed: Sacrifice R1 Logan\nAttack R1 Gonzo\n\n58) ts52: Move R3 Ts52 Grover\n\n59) wmreed: Move G1 Ballard Francis\n\n60) ts52: Move R3 Grover Logan\n\n61) wmreed: Sacrifice Y2 Gonzo\nMove G3 Gonzo Ts52\nMove G1 Francis Ts52\nCatastrophe Ts52 Green\n\n\twmreed: Thank you for the game.\n\tts52: Well played. I somehow missed that you had the green ships in place to do that.\r\nThanks for the game.\n\nHomeworlds Online (SDG# 13861)\nVariants: "Unrated, Hard time"\nStarted: 2009.7.21, Ended: 2009.9.6\nParticipants: agentofchaos (S), jonaskoelker (N)\nWinner: agentofchaos\n\n1) jonaskoelker: Homeworld B2 R1 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\tagentofchaos: Hi, enjoy the game. \n\n4) agentofchaos: Build G1 Agentofchaos\n\tjonaskoelker: Hi. Thanks, You too :)\r\n\r\nAre you an experienced player? This is my second game of homeworlds, and my first is still in progress. Expect me to make a mistake or two ;)\r\n\r\nMaybe we can have a post-game strategy discussion?\r\n\n\tagentofchaos: I'm moderately experienced, I've played about a dozen games or so. I'd be happy to have a discussion about strategy afterwards. \n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n6) agentofchaos: Build G1 Agentofchaos\n\tjonaskoelker: cool, I'm looking forward to the post-game discussion :)\r\n\r\nAs a tangent, what do you think about micro-world openings (i.e. B2 Y1 G3 vs B3 Y3 G3)? How about extremely offensive microworlds, such as B2 Y1 G3 vs G3 Y3 R3?\n\tagentofchaos: I'm not sure if the rules allow you to have 2 stars of the same size in your homeworld but I could be wrong on that point. I think microworlds like b2 y1 g3 are fine, as I don't think the size of your homeworld stars matters too much. Personally I prefer to start with a red star in my homeworld so I can always protect it even if I don't have a red ship. \n\n7) jonaskoelker: Build Y1 Jonaskoelker\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) jonaskoelker: Build Y2 Jonaskoelker\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) jonaskoelker: Discover Y1 Jonaskoelker G3 Lush\n\n12) agentofchaos: Trade Y1 R1 Agentofchaos\n\n13) jonaskoelker: Trade Y1 R1 Jonaskoelker\n\n14) agentofchaos: Build Y1 Agentofchaos\n\tjonaskoelker: Sorry for the long delay, I'll try and play faster.\n\tagentofchaos: That's alright, how you use your time is up to you. \n\n15) jonaskoelker: Build R2 Jonaskoelker\n\n16) agentofchaos: Discover R1 Agentofchaos G1 Ykron\n\n17) jonaskoelker: Move R2 Jonaskoelker Lush\n\n18) agentofchaos: Build R2 Ykron\n\n19) jonaskoelker: Build R3 Lush\n\n20) agentofchaos: Sacrifice Y1 Agentofchaos\nDiscover R2 Ykron Y3 Jeroboam\n\tjonaskoelker: Planet wide celebration was held on Lush, in honor of the planet's first large ship. She has been christened "Red 3".\r\n\r\n(For bonus geek credit, name the pilot of Red 3 in A New Hope :D)\r\n\n\n21) jonaskoelker: Build R3 Lush\n\tagentofchaos: A joyous occasion I'm sure!\r\nI'll have to pass on the geek credit, my Star Wars trivia is a bit rusty :-)\n\tjonaskoelker: The answer is Biggs :)\n\n22) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R1 Ykron Lush\nPass\nCatastrophe Lush R\n\tjonaskoelker: Another large warship was constructed on Lush. The people celebrated yet again, and in honor of King Arthur, the greatest counter of numbers among men, named this ship "Red 5".\r\n\r\nRumor has it that our neighbors (with whom we have a friendly but tense relationship) wants to participate in the space race as well. But they are no match for jonaskoelkerian nor lushian proud red cosmonauts!\n\tagentofchaos: I'm getting a bit nervous about all those large red ships, time for drastic measures...\n\n23) jonaskoelker: Build G1 Jonaskoelker\n\n24) agentofchaos: Trade G1 Y1 Agentofchaos\n\tjonaskoelker: Yay, my plan worked :)\n\n25) jonaskoelker: Build Y1 Lush\n\tagentofchaos: A very dark design, I'll wager...\n\n26) agentofchaos: Build Y2 Agentofchaos\n\n27) jonaskoelker: Discover Y1 Lush B1 Smallblue\n\n28) agentofchaos: Trade Y1 G1 Agentofchaos\n\tjonaskoelker: Let's see what you will do about my next sinister plan... :)\n\n29) jonaskoelker: Build Y1 Lush\n\tagentofchaos: I shudder to think...\n\n30) agentofchaos: Build G1 Agentofchaos\n\n31) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild Y2 Smallblue\nBuild Y3 Jonaskoelker\nBuild Y3 Lush\n\n32) agentofchaos: Trade G1 B1 Agentofchaos\n\n33) jonaskoelker: Trade Y1 B1 Smallblue\n\tagentofchaos: Ooh you greedy so and so... ;-)\n\n34) agentofchaos: Build Y1 Agentofchaos\n\n35) jonaskoelker: Trade Y3 G3 Jonaskoelker\n\n36) agentofchaos: Discover Y1 Agentofchaos G1 Superfreak\n\tjonaskoelker: Yes, I am greedy. Very, very greedy! :)\r\n\n\n37) jonaskoelker: Build Y3 Jonaskoelker\n\n38) agentofchaos: Move Y1 Superfreak Lush\nCatastrophe Lush Y\n\n39) jonaskoelker: Move G3 Jonaskoelker Jeroboam\n\tjonaskoelker: You bunning castard! ;-)\n\tagentofchaos: I have my bunning moments!\n\n40) agentofchaos: Discover R2 Jeroboam Y1 Jehannum\n\n41) jonaskoelker: Discover Y2 Jonaskoelker G3 Large_green\n\n42) agentofchaos: Build Y1 Agentofchaos\n\n\tjonaskoelker: Aww crap, you overrun your time by a week and hard time triggers :(\r\n\r\nSorry for disappearing off the face of the earth for so long. I'd like to finish this game. How about you? (If you feel like it's just "going through the motions", that's okay...)\r\n\r\nWe can either recreate it here on SDG, or play by plain old email, or some other solution.\n\tagentofchaos: OK we can try recreating the game, email might get confusing as I don't have a set of icehouse pieces. Send me a challenge and we can set it up. \n\nHomeworlds Online (SDG# 13877)\nStarted: 2009.7.22, Ended: 2009.7.25\nParticipants: PottyTroll (S), TwoShort (N)\nWinner: PottyTroll\n\n\nHomeworlds Online (SDG# 13881)\nVariants: "No undo"\nStarted: 2009.7.22, Ended: 2009.7.22\nParticipants: uncledan (S), MangoToque (N)\nWinner: MangoToque\n\n1) MangoToque: Homeworld G2 Y1 B3\n\tuncledan: homeworld G3 B1 R3\n\n2) uncledan: Homeworld G3 B1 R3\n\n3) MangoToque: Build B1 Mangotoque\n\tMangoToque: done\r\n\n\n4) uncledan: Build R1 Uncledan\n\n5) MangoToque: Discover B1 Mangotoque G3 Bob\n\n6) uncledan: Trade R1 Y1 Uncledan\n\n7) MangoToque: Build B1 Bob\n\n8) uncledan: Build R1 Uncledan\n\n9) MangoToque: Build B2 Mangotoque\n\n10) uncledan: Discover R1 Uncledan B2 Jim\n\n11) MangoToque: Discover B2 Mangotoque G3 Ken\n\n12) uncledan: Sacrifice Y1 Uncledan\nMove R1 Jim Ken\n\n13) MangoToque: Build B2 Ken\n\n14) uncledan: Build R1 Uncledan\n\n15) MangoToque: Build B2 Mangotoque\n\n16) uncledan: Trade R1 Y1 Uncledan\n\n17) MangoToque: Build B3 Bob\n\n18) uncledan: Discover R3 Uncledan Y2 Jim\n\n19) MangoToque: Sacrifice B3 Mangotoque\nTrade B2 Y2 Ken\nTrade B3 R3 Bob\nTrade B1 R1 Bob\n\n20) uncledan: Discover R3 Jim Y3 Jack\n\n21) MangoToque: Sacrifice Y2 Ken\nDiscover R3 Bob Y2 Bill\nMove R3 Bill Uncledan\n\n22) uncledan: Build Y1 Uncledan\n\n23) MangoToque: Attack Y1 Uncledan\n\n24) uncledan: Build Y2 Uncledan\n\n25) MangoToque: Attack Y2 Uncledan\n\n26) uncledan: Build Y2 Uncledan\n\n27) MangoToque: Pass\nCatastrophe Uncledan Y\n\n\nHomeworlds Online (SDG# 13882)\nVariants: "No undo"\nStarted: 2009.7.22, Ended: 2009.7.28\nParticipants: uncledan (S), MangoToque (N)\nWinner: uncledan\n\n1) MangoToque: Homeworld Y2 G1 B3\n\n2) uncledan: Homeworld B3 G2 R3\n\n3) MangoToque: Build B1 Mangotoque\n\n4) uncledan: Build R1 Uncledan\n\n5) MangoToque: Discover B1 Mangotoque G3 Bob\n\n6) uncledan: Build R1 Uncledan\n\n7) MangoToque: Build B1 Mangotoque\n\n8) uncledan: Trade R1 Y1 Uncledan\n\n9) MangoToque: Build B1 Mangotoque\n\n10) uncledan: Build Y1 Uncledan\n\n11) MangoToque: Build B2 Bob\n\n12) uncledan: Build R1 Uncledan\n\n13) MangoToque: Build B2 Bob\n\n14) uncledan: Discover R1 Uncledan G1 Zog\n\n15) MangoToque: Sacrifice B2 Bob\nTrade B3 G3 Mangotoque\nTrade B2 Y2 Bob\n\n16) uncledan: Build R1 Zog\n\n17) MangoToque: Build B2 Bob\n\n18) uncledan: Build R2 Zog\n\n19) MangoToque: Build B2 Mangotoque\n\n20) uncledan: Sacrifice Y1 Uncledan\nMove R2 Zog Bob\n\n21) MangoToque: Sacrifice Y2 Bob\nDiscover B2 Bob B2 Ken\nMove B1 Bob Ken\n\n22) uncledan: Build R2 Bob\n\n23) MangoToque: Discover B2 Mangotoque R3 Bill\n\n24) uncledan: Build R2 Zog\n\n25) MangoToque: Discover B1 Mangotoque R3 Joe\n\n26) uncledan: Discover R3 Uncledan Y1 Gred\n\n27) MangoToque: Build G1 Mangotoque\n\n28) uncledan: Move R3 Gred Ken\n\n29) MangoToque: Sacrifice G3 Mangotoque\nBuild B3 Mangotoque\nBuild B3 Mangotoque\nBuild G2 Mangotoque\n\n30) uncledan: Attack B2 Ken\n\n31) MangoToque: Sacrifice B2 Bill\nTrade B3 R3 Mangotoque\nTrade G1 Y1 Mangotoque\n\n32) uncledan: Trade B2 Y2 Ken\n\n33) MangoToque: Move R3 Mangotoque Bob\n\n34) uncledan: Move R3 Ken Joe\n\n35) MangoToque: Sacrifice Y1 Mangotoque\nDiscover R3 Bob Y1 Tim\n\n36) uncledan: Sacrifice Y2 Ken\nMove R3 Joe Zog\nMove R3 Zog Uncledan\n\n37) MangoToque: Sacrifice B1 Joe\nTrade B3 R3 Mangotoque\n\n38) uncledan: Build Y1 Uncledan\n\n39) MangoToque: Build G1 Mangotoque\n\n40) uncledan: Move Y1 Uncledan Zog\n\n41) MangoToque: Trade G2 Y2 Mangotoque\n\n42) uncledan: Build Y2 Uncledan\n\n43) MangoToque: Discover R3 Mangotoque Y3 Dave\n\n44) uncledan: Build Y3 Uncledan\n\n45) MangoToque: Discover Y2 Mangotoque Y3 Bill\n\n46) uncledan: Sacrifice Y3 Uncledan\nMove R3 Uncledan Tim\nMove R3 Tim Bob\nMove R3 Bob Mangotoque\n\n47) MangoToque: Sacrifice Y2 Bill\nMove R3 Tim Uncledan\nMove R3 Dave Mangotoque\n\n48) uncledan: Sacrifice R2 Bob\nAttack R3 Mangotoque\nAttack B1 Mangotoque\n\n49) MangoToque: Attack Y2 Uncledan\n\n50) uncledan: Attack G1 Mangotoque\n\n\nHomeworlds Online (SDG# 13860)\nVariants: "Hard time"\nStarted: 2009.7.23, Ended: 2009.9.4\nParticipants: tikimcfee (S), PottyTroll (W), agentofchaos (N), umfpt (E)\nWinner: PottyTroll\n\n1) agentofchaos: Homeworld B2 R3 G3\n\n2) umfpt: Homeworld G3 B1 Y3\n\tagentofchaos: Hi guys, enjoy the game :-)\n\n3) tikimcfee: Homeworld B1 R2 G3\n\n4) PottyTroll: Homeworld Y3 G1 B3\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) umfpt: Build Y1 Umfpt\n\n7) tikimcfee: Build G1 Tikimcfee\n\n8) PottyTroll: Build B1 Pottytroll\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) umfpt: Trade Y1 G1 Umfpt\n\n11) tikimcfee: Build G2 Tikimcfee\n\n12) PottyTroll: Discover B1 Pottytroll G2 Trampstamp\n\n13) agentofchaos: Trade G1 Y1 Agentofchaos\n\n14) umfpt: Build G1 Umfpt\n\n15) tikimcfee: Trade G1 Y1 Tikimcfee\n\n16) PottyTroll: Build B1 Trampstamp\n\n17) agentofchaos: Trade G1 B1 Agentofchaos\n\n18) umfpt: Move G1 Umfpt Trampstamp\n\n19) tikimcfee: Build Y1 Tikimcfee\n\n20) PottyTroll: Build B2 Pottytroll\n\n21) agentofchaos: Build B2 Agentofchaos\n\n22) umfpt: Build Y1 Umfpt\n\n23) tikimcfee: Trade Y1 R1 Tikimcfee\n\n24) PottyTroll: Trade B1 R1 Trampstamp\n\n25) agentofchaos: Trade B1 R1 Agentofchaos\n\n26) umfpt: Discover Y1 Umfpt B2 Tola\n\n27) tikimcfee: Trade G3 B3 Tikimcfee\n\n28) PottyTroll: Attack G1E Trampstamp\n\n29) agentofchaos: Build G1 Agentofchaos\n\n30) umfpt: Trade G1 R1 Umfpt\n\n31) tikimcfee: Discover R1 Tikimcfee G3 Gobligook\n\n32) PottyTroll: Trade B2 Y2 Pottytroll\n\n33) agentofchaos: Build B1 Agentofchaos\n\n34) umfpt: Build R1 Umfpt\n\n35) tikimcfee: Build R2 Gobligook\n\n36) PottyTroll: Build R2 Trampstamp\n\n37) agentofchaos: Trade B2 Y2 Agentofchaos\n\n38) umfpt: Move R1 Umfpt Tola\n\n39) tikimcfee: Build B1 Tikimcfee\n\n40) PottyTroll: Build B2 Pottytroll\n\n41) agentofchaos: Discover Y2 Agentofchaos G1 Goldome\n\n42) umfpt: Build R2 Umfpt\n\n43) tikimcfee: Sacrifice Y1 Tikimcfee\nMove R2 Gobligook Tola\n\n44) PottyTroll: Trade G1 Y1 Trampstamp\n\n45) agentofchaos: Move R1 Agentofchaos Goldome\n\n46) umfpt: Sacrifice Y1 Tola\nMove R1 Tola Umfpt\n\n47) tikimcfee: Trade B3 Y3 Tikimcfee\n\n48) PottyTroll: Move R1 Trampstamp Umfpt\nCatastrophe Umfpt R\n\n49) agentofchaos: Move B1 Agentofchaos Goldome\n\n50) umfpt: Build Y1 Umfpt\n\n51) tikimcfee: Move B1 Tikimcfee Gobligook\n\n52) PottyTroll: Build Y1 Trampstamp\n\n53) agentofchaos: Build B2 Goldome\n\n54) umfpt: Trade Y1 R1 Umfpt\n\n55) tikimcfee: Build B2 Gobligook\n\n56) PottyTroll: Trade B2 R2 Pottytroll\n\n57) agentofchaos: Trade B2 G2 Goldome\n\n58) umfpt: Build Y1 Umfpt\n\n59) tikimcfee: Trade B1 Y1 Gobligook\n\n60) PottyTroll: Sacrifice Y2 Pottytroll\nMove Y1 Trampstamp Umfpt\nMove Y1 Trampstamp Umfpt\nCatastrophe Umfpt Y\n\n61) agentofchaos: Trade G2 R2 Goldome\n\n62) umfpt: Build R1 Umfpt\n\n63) tikimcfee: Sacrifice G2 Tikimcfee\nBuild R1 Tola\nBuild R3 Gobligook\n\n64) PottyTroll: Build R3 Pottytroll\n\n65) agentofchaos: Discover R2 Goldome G3 Agragore\n\n66) umfpt: Build R3 Umfpt\n\n67) tikimcfee: Sacrifice Y1 Gobligook\nMove R1 Tola Umfpt\nCatastrophe Umfpt R\n\n68) agentofchaos: Build Y1 Agentofchaos\n\n69) tikimcfee: Trade R1 Y1 Gobligook\n\n70) PottyTroll: Trade R2 Y2 Pottytroll\n\n71) agentofchaos: Build R1 Agragore\n\n72) tikimcfee: Build Y1 Gobligook\n\n73) PottyTroll: Build R1 Trampstamp\n\n74) agentofchaos: Sacrifice Y2 Goldome\nMove R1 Agragore Tikimcfee\nMove R2 Agragore Tikimcfee\n\n75) tikimcfee: Attack R2N Tikimcfee\n\n76) PottyTroll: Build B1 Trampstamp\n\n77) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R1 Tikimcfee\nCatastrophe Tikimcfee R\n\n78) tikimcfee: Trade B2 G2 Gobligook\n\n79) PottyTroll: Trade R1 G1 Trampstamp\n\n80) agentofchaos: Trade R1 Y1 Goldome\n\n81) tikimcfee: Move Y1 Gobligook Tola\n\n82) PottyTroll: Discover Y2 Pottytroll G2 Slippyfist\n\n83) agentofchaos: Discover B1 Goldome G3 Mjolnir\n\n84) tikimcfee: Trade Y1 G1 Tola\n\n85) PottyTroll: Build R1 Pottytroll\n\n86) agentofchaos: Build B1 Mjolnir\n\n87) tikimcfee: Sacrifice Y1 Gobligook\nMove R2 Tola Mjolnir\n\n88) PottyTroll: Build B2 Pottytroll\n\n89) agentofchaos: Sacrifice Y1 Goldome\nMove B1 Mjolnir Tikimcfee\n\n90) tikimcfee: Attack B1N Mjolnir\n\n91) PottyTroll: Sacrifice Y2 Slippyfist\nMove B1 Trampstamp Tikimcfee\nMove B1 Trampstamp Tikimcfee\nCatastrophe Tikimcfee B\n\n92) agentofchaos: Trade Y1 R1 Agentofchaos\n\n93) PottyTroll: Move B2 Pottytroll Trampstamp\n\n94) agentofchaos: Build G1 Agentofchaos\n\n95) PottyTroll: Trade G1 Y1 Trampstamp\n\n96) agentofchaos: Build Y1 Agentofchaos\n\n97) PottyTroll: Discover R2 Trampstamp G1 Porkslap\n\n98) agentofchaos: Discover Y1 Agentofchaos G1 Feldspar\n\n99) PottyTroll: Build R1 Porkslap\n\n100) agentofchaos: Move Y1 Feldspar Gobligook\n\n101) PottyTroll: Move B2 Trampstamp Porkslap\n\n102) agentofchaos: Build Y1 Gobligook\n\n103) PottyTroll: Move Y1 Trampstamp Porkslap\n\n104) agentofchaos: Trade G1 B1 Agentofchaos\n\n105) PottyTroll: Trade R2 Y2 Porkslap\n\n106) agentofchaos: Build Y1 Agentofchaos\n\n107) PottyTroll: Build B1 Porkslap\n\n108) agentofchaos: Discover B1 Agentofchaos G1 Dreamland\n\n109) PottyTroll: Build B1 Porkslap\n\n110) agentofchaos: Move Y1 Gobligook Porkslap\n\n111) PottyTroll: Move Y2 Porkslap Tola\n\n112) agentofchaos: Build Y2 Porkslap\n\n113) PottyTroll: Move B1 Porkslap Agentofchaos\n\n114) agentofchaos: Build Y2 Porkslap\nCatastrophe Porkslap Y\n\n115) PottyTroll: Sacrifice Y2 Tola\nMove B1 Porkslap Agentofchaos\nMove B2 Porkslap Agentofchaos\nCatastrophe Agentofchaos B\n\n116) agentofchaos: Build G1 Agentofchaos\n\n117) PottyTroll: Build B1 Pottytroll\n\tagentofchaos: You blackguard! ;-)\n\n118) agentofchaos: Trade B1 Y1 Dreamland\n\n119) PottyTroll: Move R3 Pottytroll Tola\n\n120) agentofchaos: Build G2 Agentofchaos\n\n121) PottyTroll: Attack G1S Tola\n\n122) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y2 Gobligook\n\n123) PottyTroll: Build G2 Tola\n\n124) agentofchaos: Build Y2 Dreamland\n\n125) PottyTroll: Trade G2 Y2 Tola\n\n126) agentofchaos: Sacrifice Y1 Agentofchaos\nDiscover R1 Agentofchaos Y1 Troubletimes\n\n127) PottyTroll: Sacrifice Y2 Tola\nMove R3 Tola Agentofchaos\nMove R1 Porkslap Agentofchaos\n\n128) agentofchaos: Attack R3W Agentofchaos\n\n129) PottyTroll: Sacrifice G1 Tola\nBuild R1 Agentofchaos\nCatastrophe Agentofchaos R\n\n\tPottyTroll: good game\n\tagentofchaos: well done\n\nHomeworlds Online (SDG# 13889)\nVariants: "Hard time"\nStarted: 2009.7.26, Ended: 2009.8.12\nParticipants: Horowits (S), agentofchaos (N)\nWinner: Horowits\n\n1) agentofchaos: Homeworld R3 B2 G3\n\n2) Horowits: Homeworld G3 Y1 B3\n\tagentofchaos: Hi enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\tHorowits: thanks, you too\n\n4) Horowits: Build B1 Horowits\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) Horowits: Build B1 Horowits\n\n7) agentofchaos: Trade G1 B1 Agentofchaos\n\n8) Horowits: Trade B1 R1 Horowits\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) Horowits: Discover B1 Horowits G2 Greens\n\n11) agentofchaos: Trade G1 Y1 Agentofchaos\n\n12) Horowits: Build R1 Horowits\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) Horowits: Build R2 Horowits\n\n15) agentofchaos: Build R2 Agentofchaos\n\n16) Horowits: Move R1 Horowits Greens\n\n17) agentofchaos: Build Y1 Agentofchaos\n\n18) Horowits: Trade R2 Y2 Horowits\n\n19) agentofchaos: Trade R1 G1 Agentofchaos\n\n20) Horowits: Build B1 Horowits\n\n21) agentofchaos: Sacrifice Y1 Agentofchaos\nDiscover R2 Agentofchaos Y1 Myxo\n\n22) Horowits: Build B2 Greens\n\n23) agentofchaos: Build Y2 Agentofchaos\n\n24) Horowits: Trade B2 Y2 Greens\n\n25) agentofchaos: Discover Y2 Agentofchaos G1 Glaucous\n\n26) Horowits: Build Y3 Greens\n\n27) agentofchaos: Build Y3 Glaucous\n\n28) Horowits: Sacrifice Y2 Horowits\nDiscover B1 Horowits G2 Gwar\nDiscover Y3 Greens R1 Gir\n\n29) agentofchaos: Build G1 Agentofchaos\n\n30) Horowits: Build B2 Gwar\n\n31) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R2 Myxo\n\n32) Horowits: Build B2 Horowits\n\n33) agentofchaos: Move B1 Agentofchaos Glaucous\n\n34) Horowits: Build B3 Greens\n\n35) agentofchaos: Build B3 Glaucous\n\n36) Horowits: Sacrifice Y2 Greens\nMove B1 Greens Glaucous\nMove B1 Gwar Glaucous\nCatastrophe Glaucous Blue\n\n37) agentofchaos: Build Y2 Glaucous\n\n38) Horowits: Trade B3 Y3 Greens\n\n39) agentofchaos: Discover Y2 Glaucous G2 Zurwheel\n\n40) Horowits: Trade B2 R2 Gwar\n\n41) agentofchaos: Build Y2 Agentofchaos\n\n42) Horowits: Build R3 Horowits\n\n43) agentofchaos: Move Y2 Glaucous Zurwheel\n\n44) Horowits: Move R3 Horowits Zurwheel\n\n45) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Zurwheel Horowits\nMove Y2 Zurwheel Horowits\n\n46) Horowits: Build R3 Horowits\n\n47) agentofchaos: Build Y2 Horowits\nCatastrophe Horowits Y\n\n48) Horowits: Sacrifice Y3 Greens\nMove R1 Horowits Myxo\nMove R2 Gwar Myxo\nDiscover B3 Horowits B1 Bluish\nCatastrophe Myxo Red\n\n49) agentofchaos: Trade G1 R1 Agentofchaos\n\n50) Horowits: Sacrifice Y3 Gir\nMove B3 Bluish Agentofchaos\nMove R3 Zurwheel Glaucous\nMove R3 Glaucous Agentofchaos\n\n51) agentofchaos: Attack R3 Agentofchaos\n\n52) Horowits: Sacrifice R3 Horowits\nAttack R3N Agentofchaos\nAttack G3N Agentofchaos\nAttack Y1N Agentofchaos\n\tagentofchaos: Hmm, a very bold move...\n\tHorowits: sorry for undo\n\tagentofchaos: confused me for a moment, didn't know what was happening!\n\tHorowits: yeah, shameful moment but a big error on my part :S\n\n\tagentofchaos: Arrgghhh, I'm overrun!! Very well played, your cunning plans have paid off :-)\n\tHorowits: thakns for your time, I had a lot of fun. :) good game.\n\nHomeworlds Online (SDG# 13879)\nStarted: 2009.7.27, Ended: 2009.8.11\nParticipants: PottyTroll (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B3 G3\n\tZackStack: Hey Potty! Have a good game!\n\n2) PottyTroll: Homeworld B2 Y1 G3\n\n3) ZackStack: Build G1 Zackstack\n\n4) PottyTroll: Build G1 Pottytroll\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) PottyTroll: Discover G1 Pottytroll B3 Porkslap\n\n7) ZackStack: Build G1 Zackstack\n\n8) PottyTroll: Build G1 Porkslap\n\n9) ZackStack: Discover G1 Zackstack B2 Meatpunch\n\n10) PottyTroll: Build G2 Porkslap\n\n11) ZackStack: Build G2 Zackstack\n\tZackStack: Tempting for a catastrophe there... but that would just set us back to square one I suppose :-)\n\n12) PottyTroll: Trade G2 Y2 Porkslap\n\tPottyTroll: haha I was wondering if you'd do it\n\n13) ZackStack: Build G2 Meatpunch\n\n14) PottyTroll: Build G2 Pottytroll\n\n15) ZackStack: Sacrifice Y1 Zackstack\nDiscover G2 Meatpunch G3 Hamkick\n\n16) PottyTroll: Trade G2 R2 Pottytroll\n\tZackStack: Have I mentioned I like your naming convention for systems? :-)\n\n17) ZackStack: Trade G2 Y2 Zackstack\n\tPottyTroll: sure seems like it :)\n\n18) PottyTroll: Build G2 Pottytroll\n\n19) ZackStack: Build G2 Meatpunch\n\n20) PottyTroll: Build R1 Pottytroll\n\n21) ZackStack: Trade G2 Y2 Meatpunch\n\n22) PottyTroll: Trade G2 B2 Pottytroll\n\n23) ZackStack: Build G2 Zackstack\n\n24) PottyTroll: Move G1 Porkslap Meatpunch\n\n25) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Meatpunch\nBuild G3 Zackstack\nBuild Y1 Meatpunch\n\n26) PottyTroll: Move G1 Porkslap Meatpunch\nCatastrophe Meatpunch G\n\n27) ZackStack: Trade Y2 R2 Meatpunch\n\n28) PottyTroll: Trade B2 G2 Pottytroll\n\n29) ZackStack: Move R2 Meatpunch Hamkick\n\n30) PottyTroll: Move G2 Pottytroll Porkslap\n\n31) ZackStack: Move G2 Zackstack Meatpunch\n\n32) PottyTroll: Build G1 Porkslap\n\n33) ZackStack: Build R1 Hamkick\n\n34) PottyTroll: Trade G2 R2 Porkslap\n\n35) ZackStack: Build G1 Meatpunch\n\n36) PottyTroll: Discover R2 Porkslap G2 Sausagepunt\n\n37) ZackStack: Trade G1 B1 Meatpunch\n\n38) PottyTroll: Build R3 Sausagepunt\n\n39) ZackStack: Discover G2 Meatpunch R3 Spamgrapple\n\n40) PottyTroll: Trade R2 Y2 Pottytroll\n\n41) ZackStack: Sacrifice G2 Hamkick\nBuild Y1 Zackstack\nBuild Y3 Meatpunch\n\n42) PottyTroll: Build Y3 Porkslap\n\n43) ZackStack: Move Y1 Meatpunch Hamkick\n\n44) PottyTroll: Move Y2 Porkslap Sausagepunt\n\n45) ZackStack: Build Y3 Hamkick\n\n46) PottyTroll: Build R2 Pottytroll\n\n47) ZackStack: Sacrifice Y2 Zackstack\nMove Y1 Hamkick Pottytroll\nMove Y3 Hamkick Pottytroll\nCatastrophe Pottytroll Yellow\n\n48) PottyTroll: Trade R2 Y2 Pottytroll\n\n49) ZackStack: Move B1 Meatpunch Hamkick\n\n50) PottyTroll: Build R2 Pottytroll\n\n51) ZackStack: Sacrifice G2 Spamgrapple\nBuild B1 Hamkick\nBuild B1 Hamkick\n\n52) PottyTroll: Build Y1 Sausagepunt\n\tPottyTroll: ahh. Well played man.\n\n53) ZackStack: Sacrifice Y3 Meatpunch\nMove B1 Hamkick Pottytroll\nMove B1 Hamkick Pottytroll\nMove B1 Hamkick Pottytroll\nCatastrophe Pottytroll Blue\n\tZackStack: Thanks! You too. It was a fun one!\n\n\nHomeworlds Online (SDG# 13892)\nStarted: 2009.7.31, Ended: 2009.10.1\nParticipants: jonaskoelker (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tjonaskoelker: Hi, TwoShort. This'll be my 6th game of Homeworlds, with two of my previous games still in progress, so I'm kinda' new. Feel free to give tips "too late" as I've seen you do before.\r\n\r\nI think I got the basics down: start with a green ship; have more large pieces than your opponent; don't get locked out of any color; always have a large ship in your homeworld.\r\n\r\nI also think it tends to be a good idea to have a diverse fleet, color-wise, that's spread out (so it's easier to make good use of a G3 sacrifice); and that it's good to have your pieces close to your opponent's homeworld (and your opponents pieces in general) so it's easier to threaten invasion or catastrophe.\r\n\r\nIn any case, I'd love to have a strategy-and-tactics discussion during and/or after the game. You up for it?\r\n\r\nIn any case, good luck and have fun :)\n\n2) jonaskoelker: Homeworld B1 R2 G3\n\tTwoShort: I'm generally up for strategy discussions. I should note that when I give people "late" tips, it's not generally because I want to make sure I win. Mostly it's just that it's not clear what tips to give until they're too late. \n\n3) TwoShort: Build G1 Twoshort\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\tjonaskoelker: Well, let me kick off some strategy discussion already, then:\r\n\r\nI've been looking a bit at http://superdupergames.org/?page=archive_play&gid=2121&idx=26\r\n\r\nIn the final move, you invade Andy's homeworld, threatening either conquest (by sacrificing R2 @home) or yellow catastrophe by building yellow @Andy.\r\n\r\nInstead of building G3 (@B3), how do you think Andy should have continued?\r\n\r\nI see three main lines; either trade Y3 to R3 @home; or sacrifice G2 to build R1 and R2 @B1; or trade Y2 to R2 @B1.\r\n\r\nAs far as I can tell, "trade Y3 R3 @home" is answered by "build G3 @B1", forcing Andy to sacrifice G2 to build R1 and R2 @(a mix of B1 and home). Then you have a 3-to-1 lead in large ships with a large "forward deployment" giving you a lot of initiative and putting Andy under pressure; maybe continue by building red @home and moving one forward (to a large star), threatening red catastrophe if Andy isn't careful. Or chase down the G1@B3 and try to monopolize the green pieces? Or maybe just hang back and grab all the large pieces and build 'em up slowly, banker-style.\r\n\r\nIf Andy continues with "sacrifice G2, build R1 and R2 @B1" instead, things get more interesting. One good next move might be "build R2 @home", threatening "sacrifice Y3 @home, move R2 home b1 (with red catastrophe), move Y3 b1 Andy", with conquest the next turn. Moving a red piece from B1 to Andy seems to counter this threat, and I'm not sure how to best proceed. What do you think?\r\n\r\nI'm not sure how to best proceed if Andy trades his Y2 for R2 @B1. How would you proceed?\r\n\r\nAlso, do you think you had the lead when Andy screwed up? What was the most decisive move in the game besides Andy's blunder? What helped tip the scales?\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\tTwoShort: Well, really I think Andy was doomed, and the previous move, when I advanced the g2, was the game winner. Before that, he had moved his Gs apart, threatening to grow and getting the better end of the g3s. He missed the immediate threat my move represented, but at the time I expected he would see it and be forced to deal with it, and none of his options there are any good. Since he can't build a G3 or immediately threaten me, I get to build a G3 the next turn, and wind up with at least one of the two remaining ones. Depending how that all works out, I get 4 or 5 3 points to his 1 or 2, and that's game over, pretty much whatever the details.\r\n\n\n7) TwoShort: Build G1 Twoshort\n\n8) jonaskoelker: Build G1 Jonaskoelker\n\tjonaskoelker: "the previous move, when I advanced the g2, was the game winner."\r\n\r\nInstead of moving the G2 forward, I think you can sacrifice the Y3 at home, move your Y1 and Y3 from B1 into Andy's homeworld, and move the G2 to the Y1 (where Andy has a G2). Your R2 at home threatens to take Andy's ships, so he has to get rid of your invaders; the only way I can see of doing that is to sacrifice a Y2 (or his Y3) and move his remaining yellow(s) and some other piece back home. Then you build G3 at Y1, and Andy can't defend against the impending invasion.\r\n\r\nYour thoughts?\r\n\r\n[but if instead you move G2 to B1 as you did] "I get to build a G3 the next turn" -- not if Andy sacrifices his G2 to build R1 and R2 at B1; it's not clear to me how to get an overwhelming material advantage (say a 3-pointer lead of at least two). What are your thoughts?\r\n\n\n9) TwoShort: Trade G1 B1 Twoshort\n\tTwoShort: My main thought is that you've analyzed this more deeply than I did at the time or have since :)\r\n\r\nLet's see - if he sacs to build the 2 reds, I build a 2 (@B1), he builds a 3 (@B3), I build a 3 (@Y2). He can then catastrophe my G3 (and \r\nG1) at the cost of his G3, G1, and Y2; or separate his gs to go after the last 3 at the cost of a y2, which I can block by moving something to g3. So best case (for him) I still have the single 3 advantage I started with, and I gain ground in the little stuff.\r\n\r\nHonestly, I seldom bother to think more than a move or two in advance. I figure out what happens if everyone does the most straightforward growing thing (like above), and hope I'll find as many clever twists as the other guy.\r\n\r\n Homeworlds positions in a developed game offer so many options, it's a struggle to not miss a good one considering a single position, once you get a few moves into speculation, the chance you're considering a position you'll actually reach vs. a real opponent is tiny... I look for ways to grab material; ways to force my opponent to do something other than grab material, and that's about it. Tactical, positional advantages are obviously what determines who gets to grab stuff, and are where all the action is. But if you can't turn them into a material advantage in a pretty short term, straightforward way, they may be illusory.\r\n\r\nThe other question is what constitutes an overwhelming material advantage. By my count, I had a pretty good lead before the g2 move, and was really only looking to prevent him using his tactical position to change that.\n\n10) jonaskoelker: Trade G1 B1 Jonaskoelker\n\tjonaskoelker: "My main thought is that you've analyzed this more deeply than I did at the time or have since :)"\r\n\r\nProbably true :) I think it's an interesting game with a lot of sharp variations near the (premature?) end, which illustrate the tactics of homeworlds very well.\r\n\r\nBy the way, as I look at the line of play I suggest instead of "14. move g2; ...", I don't think building G3 at Y1 in the end is good enough; then Andy can build G at Y1 and trigger a green catastrophe. But I better look at a board before I make any definitive claims about that.\r\n\r\n[Just got home from vacation. I'll move soon]\r\n\n\tjonaskoelker: Ah crap, I looked at the wrong position on SDG. Instead of "14. move g2", do the sac Y3 as suggested earlier. Then Andy has to move all his yellows home, and either R1 or G2. If he moves R1 home, invade with G2 and win; if he moves G2 home, build a G3 (which is safe from catastrophe, but wasn't in the position I looked at), invade and win.\r\n\n\n11) TwoShort: Build B2 Twoshort\n\tjonaskoelker: I'm not really sure this is the right move. It lets you get the B2s first; but alternatively I might get locked out of blue, which is no good either. Probably letting you get the first B2 is no problem, since you can't get the last too, unless you let me get the first B3.\r\n\r\nOh well, we'll see...\n\tjonaskoelker: Going back to your game vs. Andy (please let me know if you get bored of it), I've come to the conclusion that "13. ..., discover g1 different b3 BigBlueFrog" is the definitively losing move. But even in that position, I'd rather bet on you winning than him.\r\n\r\nBut how did you get to have the advantageous position? I may be going out on a limb here, but I think it might be on the strength of the banker opening; that, combined with your plays, got you the second Y3 which makes your position preferable.\r\n\r\nYour thoughts?\n\n12) jonaskoelker: Discover B1 Jonaskoelker G3 Biggreen\n\n13) TwoShort: Discover B2 Twoshort G2 Grogar\n\n14) jonaskoelker: Build B2 Biggreen\n\n15) TwoShort: Build B2 Grogar\n\tjonaskoelker: Do you think I made the right move here?\r\n\r\nI'm worried about you setting up a "green/blue factory", alternating between [sac g3, build b2/b3/b3] and [sac b2, trade b3/g3 and b3/*], netting you a big ship every other turn.\r\n\r\nMeanwhile, I of course want one of those. But I'm starting to suspect that sending out my blue was a bad move. Instead I should have built a b2, then ventured out. Maybe.\r\n\r\nWhat do you think?\r\n\n\tTwoShort: build b2 grogar\n\n16) jonaskoelker: Trade B2 Y2 Biggreen\n\tTwoShort: I'm not sure if building first would be better. I'd have done something different if you did - flip my initial b2 to red or yellow, then grow it again.\r\n\r\nAs long as you have blue somewhere that can grow, I can't do flip green and sac to get it back thing - you can take it in the middle. The threat I'm pursuing here is that I can sac my g3 to build both b3s, getting a 3 pointer lead. The hope is really that you'll have to do unproductive things to prevent this, while I can do productive things that also keep the threat going. Or you can build a 3 now, I'll blow it up, and I'll be ahead by a 2 point beyond my homeworld... Which is reasonably good from my perspective; from yours it's a question of whether you can do better, which is not clear to me...\r\n\r\nI used to think you should never take a b1 star as first player, but someone recently wiggled out of my response to that. My new theory is that you should never take a b1 star playing Banker; but I haven't played enough against people doing so as second player to be sure.\n\tjonaskoelker: hmm... you probably have a good point wrt. regrowing your blue. And wrt. me stopping your blue/green factory.\r\n\r\nHmm... let's see if there's something I can do about your evul schemes ;-)\n\tTwoShort: So the other reason I avoid giving timely advice is that opponents seem to think I have things all figured out, which isn't true... Just hope you're not stressing too much and thinking I have you entirely boxed in; I'm happy with my position, but you've certainly got options that I can't calculate the results of...\n\tjonaskoelker: I think I'm stressing out just enough ;-)\r\n\r\nI'd be happy with your position too, it seems better right now. But I still got a fighting chance, it's not just a matter of losing more slowly.\r\n\n\n17) TwoShort: Trade B2 R2 Grogar\n\tjonaskoelker: I hope this was one of the options you couldn't quite figure out ;-)\n\tTwoShort: Well, when I said you had good options, I really meant just that one :) On the other hand, I thought I had only a single obvious response, but it wasn't this...\n\n18) jonaskoelker: Trade Y1 R1 Jonaskoelker\n\n19) TwoShort: Build B2 Grogar\n\tjonaskoelker: That was not funny. Not funny at all :(\r\n\r\nI think my move was bad but the alternatives I could come up with were worse.\r\n\r\nIf I built b2 at biggreen, you'd move your b2 from Grogar to biggreen (sac y1 home), threatening to take my last blue ship. I can build and trigger catastrophe, but then you build b1 at home and I'm left... erm... "blueless" ;-)\r\n\r\nWhat do you think?\n\tTwoShort: I don't think your being blueless would have been a problem since there would have been plenty in the stash... which is why I would have moved in the r2 instead, expecting you to sac the y2 to run away with the other two. Which would have been not great for you. Better or worse than this, I'm not sure...\n\n20) jonaskoelker: Build B2 Biggreen\n\n21) TwoShort: Trade B2 Y2 Grogar\n\n22) jonaskoelker: Discover B2 Biggreen G2 Medium_green\n\n23) TwoShort: Build R1 Grogar\n\n24) jonaskoelker: Build B2 Biggreen\n\tjonaskoelker: eek... my position keeps getting worse :\\\n\n25) TwoShort: Build B3 Grogar\n\n26) jonaskoelker: Build B3 Medium_green\n\n27) TwoShort: Discover R1 Grogar Y3 Yolonda\n\n\nHomeworlds Online (SDG# 13923)\nStarted: 2009.8.1, Ended: 2009.8.6\nParticipants: TwoShort (S), agentofchaos (N)\nWinner: TwoShort\n\n1) agentofchaos: Homeworld R3 B1 G3\n\n2) TwoShort: Homeworld B1 G1 B3 *\n\tagentofchaos: Hi there, enjoy the game. \n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) TwoShort: Build B1 Twoshort\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) TwoShort: Build B2 Twoshort\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) TwoShort: Discover B1 Twoshort G3 Grogar\n\n11) agentofchaos: Build Y1 Agentofchaos\n\n12) TwoShort: Build B2 Twoshort\n\n13) agentofchaos: Trade G3 B3 Agentofchaos\n\n14) TwoShort: Discover B2 Twoshort Y2 Yak\n\n15) agentofchaos: Build G2 Agentofchaos\n\n16) TwoShort: Build B2 Grogar\n\n17) agentofchaos: Trade G1 R1 Agentofchaos\n\n18) TwoShort: Build B3 Twoshort\n\n19) agentofchaos: Discover G2 Agentofchaos Y2 Hakra\n\n20) TwoShort: Sacrifice Y3 Twoshort\nMove B1 Grogar Yak\nMove B1 Yak Agentofchaos\nMove B2 Yak Agentofchaos\nCatastrophe Agentofchaos Blue\n\n21) agentofchaos: Build Y1 Agentofchaos\n\n22) TwoShort: Trade B2 Y2 Twoshort\n\n\tagentofchaos: Nothing more I can do here, very well played\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 13930)\nStarted: 2009.8.1, Ended: 2009.11.20\nParticipants: MatrixFrog (S), jonaskoelker (N)\nWinner: MatrixFrog\n\n1) jonaskoelker: Homeworld R1 B2 G3\n\n2) MatrixFrog: Homeworld B2 Y3 G3\n\tjonaskoelker: Hi. I was on vacation and didn't see that the game begun. Would you mind cutting me a bit of slack on the time until I get a day or two saved up? I should be available for daily gaming in the near future (i.e. _at least_ a couple of months)\r\n\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\tMatrixFrog: Sure, I usually just let it go anyway because what do I gain by forcing resignation? Then I just have to start a whole new game and what fun is that...\n\n4) MatrixFrog: Build G1 Matrixfrog\n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n6) MatrixFrog: Build G1 Matrixfrog\n\tjonaskoelker: Behold! We have invented... THE HYPER DRIVE. Do not fly near our hyper drive test zones: a catastrophic collision might happen. We shall launch our convoy to share this wonderful technology with you in the near future.\r\n\r\n:-)\r\n\n\n7) jonaskoelker: Build G1 Jonaskoelker\n\n8) MatrixFrog: Trade G1 R1 Matrixfrog\n\n9) jonaskoelker: Build Y1 Jonaskoelker\n\n10) MatrixFrog: Discover G1 Matrixfrog Y1 Littlecheese\n\n11) jonaskoelker: Build Y2 Jonaskoelker\n\tjonaskoelker: Ahh, I see your people have a native understanding of physical principles behind THE HYPER DRIVE.\r\n\r\nHow pleasant to observe you venture forth, although we are not quite comfortable about your long-ranging artillery, and will be forced to take due precautions.\r\n\r\nOur scientists, military strategists and diplomats are working together to find the plan which will best enable the prosperity of my---I mean both our peoples.\r\n\n\n12) MatrixFrog: Build R1 Matrixfrog\n\n13) jonaskoelker: Trade Y2 R2 Jonaskoelker\n\n14) MatrixFrog: Build R2 Matrixfrog\n\n15) jonaskoelker: Build Y2 Jonaskoelker\n\n16) MatrixFrog: Trade R2 G2 Matrixfrog\n\n17) jonaskoelker: Discover G1 Jonaskoelker B3 Large_blue\n\n18) MatrixFrog: Build G1 Littlecheese\n\n19) jonaskoelker: Build G2 Jonaskoelker\n\n20) MatrixFrog: Build R2 Matrixfrog\n\n21) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild G2 Large_blue\nBuild G3 Jonaskoelker\nBuild G3 Jonaskoelker\n\tjonaskoelker: I'll be making a move very soon; please be patient?\n\tMatrixFrog: ok no problem\n\n22) MatrixFrog: Trade R2 Y2 Matrixfrog\n\n\tjonaskoelker: Hmm... interesting play...\n\tMatrixFrog: Sometimes I don't quite know what I'm doing. It seemed like a good idea, kind of...\n\nHomeworlds Online (SDG# 13977)\nVariants: "Hard time"\nStarted: 2009.8.2, Ended: 2009.8.25\nParticipants: TwoShort (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld B1 R2 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tDanner: Hello, and good luck!\n\n3) Danner: Build G1 Danner\n\tTwoShort: Howdy; have a good game.\n\tDanner: Oh, instant blue monopoly? This game might teach me not to start with a little star.\n\n4) TwoShort: Build B1 Twoshort\n\tDanner: Ooops, never mind\n\n5) Danner: Trade G3 B3 Danner\n\tTwoShort: Never mind? Because an instant monopoly that will teach you not to start with a little blue star was totally the idea :)\n\tDanner: :D\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) Danner: Build B2 Danner\n\n8) TwoShort: Build B2 Twoshort\n\n9) Danner: Trade B3 Y3 Danner\n\n10) TwoShort: Discover B2 Twoshort G2 Grogar\n\n11) Danner: Discover B2 Danner G3 Garrett\n\n12) TwoShort: Build Y1 Twoshort\n\n13) Danner: Build Y1 Danner\n\n14) TwoShort: Discover B1 Twoshort G2 Gloom\n\n15) Danner: Move Y1 Danner Garrett\n\n16) TwoShort: Move Y1 Twoshort Grogar\n\n17) Danner: Build G1 Danner\n\n18) TwoShort: Build Y1 Twoshort\n\n19) Danner: Build Y2 Garrett\n\n20) TwoShort: Build Y2 Grogar\n\n21) Danner: Build Y2 Danner\n\n22) TwoShort: Trade Y3 G3 Twoshort\n\n23) Danner: Trade Y2 R2 Garrett\n\n24) TwoShort: Discover Y2 Grogar B3 Bluestar\n\n25) Danner: Discover G1 Danner Y3 Sun\n\n26) TwoShort: Build B2 Gloom\n\n27) Danner: Build B3 Garrett\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Twoshort\nBuild B3 Grogar\n\n29) Danner: Sacrifice Y2 Danner\nMove B3 Garrett Grogar\nMove B3 Grogar Twoshort\n\n\tTwoShort: Ack! Well, that was dumb.\n\tTwoShort: Ack! Well, that was dumb.\n\tTwoShort: Dumb enough to say it twice, apparently :)\n\tTwoShort: Good game.\n\tDanner: Thanks the game :)\n\nHomeworlds Online (SDG# 13894)\nVariants: "Hard time"\nStarted: 2009.8.4, Ended: 2009.10.16\nParticipants: agentofchaos (S), zxcv411 (N), PottyTroll (E)\nWinner: agentofchaos\n\n1) zxcv411: Homeworld R1 B2 G3\n\n2) PottyTroll: Homeworld G3 B2 Y3\n\n3) agentofchaos: Homeworld R1 B3 G3\n\n4) zxcv411: Build G1 Zxcv411\n\n5) PottyTroll: Build Y1 Pottytroll\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) zxcv411: Trade G1 Y1 Zxcv411\n\n8) PottyTroll: Build Y1 Pottytroll\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) zxcv411: Build Y2 Zxcv411\n\n11) PottyTroll: Trade Y1 B1 Pottytroll\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) zxcv411: Discover Y1 Zxcv411 G3 Starbug\n\n14) PottyTroll: Discover B1 Pottytroll G1 Spankmaster\n\n15) agentofchaos: Trade G1 R1 Agentofchaos\n\n16) zxcv411: Build G1 Zxcv411\n\n17) PottyTroll: Build B1 Spankmaster\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) zxcv411: Build G1 Zxcv411\n\n20) PottyTroll: Trade Y1 R1 Pottytroll\n\n21) agentofchaos: Build G2 Agentofchaos\n\n22) zxcv411: Trade Y2 R2 Zxcv411\n\n23) PottyTroll: Build R2 Pottytroll\n\n24) agentofchaos: Trade G2 Y2 Agentofchaos\n\n25) zxcv411: Trade G1 Y1 Zxcv411\n\n26) PottyTroll: Trade B1 Y1 Spankmaster\n\n27) agentofchaos: Discover Y2 Agentofchaos B2 Domesday\n\n28) zxcv411: Build R2 Zxcv411\n\n29) PottyTroll: Build Y2 Spankmaster\n\n30) agentofchaos: Build Y2 Agentofchaos\n\n31) zxcv411: Move R2 Zxcv411 Starbug\n\n32) PottyTroll: Build Y2 Pottytroll\n\n33) agentofchaos: Sacrifice G1 Agentofchaos\nBuild Y3 Domesday\n\n34) zxcv411: Build Y3 Zxcv411\n\n35) PottyTroll: Trade Y2 R2 Spankmaster\n\n36) agentofchaos: Trade Y3 R3 Domesday\n\n37) zxcv411: Trade G3 B3 Zxcv411\n\n38) PottyTroll: Build R3 Spankmaster\n\n39) agentofchaos: Trade Y2 G2 Domesday\n\n40) zxcv411: Build R3 Starbug\n\n41) PottyTroll: Discover R2 Spankmaster G2 Slippyfist\n\n42) agentofchaos: Build R3 Domesday\n\n43) zxcv411: Pass\n\n44) PottyTroll: Build Y2 Spankmaster\n\n45) agentofchaos: Move Y1 Agentofchaos Domesday\n\n46) zxcv411: Build G1 Zxcv411\n\n47) PottyTroll: Move Y1 Spankmaster Slippyfist\n\n48) agentofchaos: Sacrifice G2 Domesday\nBuild Y2 Agentofchaos\nBuild Y3 Domesday\n\n49) zxcv411: Build Y3 Starbug\n\n50) PottyTroll: Build B1 Spankmaster\n\n51) agentofchaos: Build G1 Agentofchaos\n\n52) zxcv411: Move B3 Zxcv411 Starbug\n\n53) PottyTroll: Move B1 Spankmaster Slippyfist\n\n54) agentofchaos: Trade G1 B1 Agentofchaos\n\n55) zxcv411: Build B1 Starbug\n\n56) PottyTroll: Trade Y2 G2 Pottytroll\n\n57) agentofchaos: Sacrifice Y1 Domesday\nDiscover R3 Domesday Y1 Iago\n\n58) zxcv411: Move B3 Starbug Zxcv411\n\n59) PottyTroll: Build Y2 Slippyfist\n\n60) agentofchaos: Move R1 Agentofchaos Domesday\n\n61) zxcv411: Build B2 Starbug\n\n62) PottyTroll: Build B3 Slippyfist\n\n63) agentofchaos: Discover Y3 Domesday B3 Kakrafooge\n\n64) zxcv411: Move G1 Zxcv411 Starbug\n\n65) PottyTroll: Sacrifice Y2 Slippyfist\nMove B3 Slippyfist Agentofchaos\nMove B1 Slippyfist Agentofchaos\nCatastrophe Agentofchaos B\n\n66) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R1 Domesday Kakrafooge\nMove R3 Domesday Kakrafooge\n\n67) zxcv411: Build G1 Zxcv411\n\n68) PottyTroll: Build Y2 Slippyfist\n\n69) agentofchaos: Build Y2 Agentofchaos\n\n70) zxcv411: Discover G1 Starbug G2 Rimmer\n\n71) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R1 Kakrafooge Zxcv411\nMove R3 Kakrafooge Zxcv411\nCatastrophe Zxcv411 R\n\n72) zxcv411: Move R3 Starbug Zxcv411\n\n73) agentofchaos: Move Y3 Kakrafooge Spankmaster\n\n74) zxcv411: Pass\n\n75) agentofchaos: Sacrifice R3 Iago\nAttack R3E Spankmaster\nAttack Y2E Spankmaster\nAttack B1E Spankmaster\n\n76) zxcv411: Move G1 Zxcv411 Starbug\n\n77) agentofchaos: Build B1 Spankmaster\n\n78) zxcv411: Build G2 Zxcv411\n\n79) agentofchaos: Sacrifice Y2 Spankmaster\nMove B1 Spankmaster Zxcv411\nMove B1 Spankmaster Zxcv411\nCatastrophe Zxcv411 B\n\n\tagentofchaos: Thanks for a great game :-)\n\nHomeworlds Online (SDG# 13936)\nStarted: 2009.8.6, Ended: 2009.8.21\nParticipants: ZackStack (S), jonaskoelker (N)\nWinner: jonaskoelker\n\n1) jonaskoelker: Homeworld B1 Y2 G3\n\tZackStack: Hi Jonas! I understand you're pretty new to Icehouse. If you'd like I'd be happy to point out any particularly dangerous moves you make. Have a good game and have fun!\n\n2) ZackStack: Homeworld R1 B3 G3\n\tjonaskoelker: Good luck, have fun.\r\n\r\nAt http://www.superdupergames.org/?page=archive_play&gid=2121&idx=25 I think TwoShort has a better move than "14. move g2 yonder bluonia; ...". What do you think? [I'll give my answer below]\r\n\r\nI think I know some of the important strategic considerations: always have a large ship in your homeworld; try to have more large ships than your opponents; having your ships near your opponent's homeworld (and secondarily near your opponent's ships) is good since you can threaten invasion and either conquest or catastrophe more often (and generally make it harder for your opponent to build up a fleet); similarly, you want your opponent's ships away from your homeworld and your ships; ideally both, by having more and bigger yellow ships than your opponent. Don't get locked out of a color. *Really* don't get locked out of yellow. Pick the banker opening if you can. The gun rule (get red the turn after your opponent). Did I miss anything major?\r\n\r\nAt the position I pointed to, I think TwoShort should instead sacrifice his Y3 at home to move Y3 and Y1 to Andy's homeworld, and his G2 to the small yellow star. This threatens both a yellow catastrophe at Andy's homeworld, and a takeover of Andy's ships. This forces Andy to sacrifice a yellow ship, bring all his yellows and one other ship home, and trigger a yellow catastrophe himself. If he brings home his R1, TwoShort can then invade Andy's homeworld with the G2 at Y1, and Andy is defenseless. If instead Andy brings home his G2, TwoShort can build a G3 at Y1 and invade with that the next turn, against which Andy can build no adequate defense.\r\n\r\nI think TwoShort was already ahead in the position where he moved his g2, but I'm not quite sure which strategic element put him ahead. I'm leaning somewhat to the strength of the banker opening, which gave him an easy investment in the Y3 which he later cashed in on. But it's not clear to me how the race for big greens will turn out if both players play optimally.\r\n\r\nHow am I doing for a newbie? ;-)\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\tZackStack: You've clearly done your research. I look forward to seeing you put it into practice! :-)\r\n\r\nI think you might be right about that better move... but it would have left TwoShort without a large at his Homeworld and if Andy got out of his impending predicament somehow it would have left Two at a disadvantage. I've been learning patience is an important tactic in this game...\n\n4) ZackStack: Build G1 Zackstack\n\n5) jonaskoelker: Trade G1 B1 Jonaskoelker\n\n6) ZackStack: Build G1 Zackstack\n\n7) jonaskoelker: Build B1 Jonaskoelker\n\n8) ZackStack: Trade G1 Y1 Zackstack\n\tjonaskoelker: Oh, you don't need any small blues? I guess I'll have to keep them for myself then ;-)\r\n\n\n9) jonaskoelker: Discover B1 Jonaskoelker G3 Biggreen\n\tZackStack: Not right now... :-p\n\n10) ZackStack: Discover G1 Zackstack B2 Tooblue\n\n11) jonaskoelker: Build B2 Jonaskoelker\n\n12) ZackStack: Build G1 Tooblue\n\n13) jonaskoelker: Discover B1 Jonaskoelker Y3 Bigyellow\n\n14) ZackStack: Trade G1 Y1 Tooblue\n\n15) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild B2 Bigyellow\nBuild B3 Biggreen\nBuild B3 Jonaskoelker\n\n16) ZackStack: Discover Y1 Tooblue G3 Verygreen\n\tjonaskoelker: You don't need any blue? :-p\r\n\n\tZackStack: You'll have to trade them in for something else eventually :-)\n\n17) jonaskoelker: Trade B3 Y3 Biggreen\n\n18) ZackStack: Build G1 Zackstack\n\tjonaskoelker: How will you make use of a blue piece in the stash? Trade to it? Build it?\r\n\r\nI think I have strong answers to that until you have a second large ship; and I think I can build the large ships faster than you can.\r\n\r\nOh well, I guess I'll see :)\n\tZackStack: You are correct on all counts. That is a pretty nice blue strategy you put together. I'll have to try that myself sometime! :-)\n\n19) jonaskoelker: Build B3 Biggreen\n\n20) ZackStack: Build G1 Tooblue\n\n21) jonaskoelker: Trade B3 Y3 Biggreen\n\n22) ZackStack: Trade G1 Y1 Tooblue\n\n23) jonaskoelker: Build B3 Biggreen\n\n24) ZackStack: Build Y2 Tooblue\n\n25) jonaskoelker: Discover B3 Biggreen Y2 Medium_yellow\n\n26) ZackStack: Build G1 Tooblue\n\n27) jonaskoelker: Trade B3 R3 Jonaskoelker\n\n28) ZackStack: Discover Y2 Tooblue B3 Moreblue\n\tjonaskoelker: Behold the power of my fully armed and operational battle station! I foresee millions of ZackStack'ian souls crying out in terror, then being suddenly silenced.\r\n\r\n;-)\r\n\n\tZackStack: Eek! Just do me a favor and hum the Darth Vader Theme whenever you move that sucker :-)\n\n29) jonaskoelker: Sacrifice Y3 Biggreen\nMove Y3 Biggreen Medium_yellow\nMove Y3 Medium_yellow Zackstack\nMove B3 Medium_yellow Zackstack\n\n30) ZackStack: Build Y2 Tooblue\n\tjonaskoelker: I don't think humming will be necessary. My battle station has long-ranged weapons, capable of destroying a planet from afar, so it will stay behind and let the star destroyers do the invasion.\r\n\n\tZackStack: Wow. Well played sir! \n\n31) jonaskoelker: Sacrifice R3 Jonaskoelker\nAttack G3S Zackstack\nAttack G1S Zackstack\nAttack Y1S Zackstack\n\tZackStack: That thinking about your moves strategy of yours really worked out nicely... I'll have to try it sometime :-p\n\tjonaskoelker: Thank you :)\r\n\r\nI think you could have stayed alive longer if you traded to a medium red instead of discovering the b3.\r\n\r\nI'm surprised you never invaded biggreen with a green ship, threatening disaster in a few moves. Answering that threat would definitely delay and obstruct me.\r\n\r\nAlso, "capturing" the big pieces as stars seems like a good counter-move; if you could have done that earlier (I think--maybe--you could). It's hard for me to capture back those stars and letting myself rebuild them as ships without giving you the opportunity to re-steal them, which would delay and obstruct my amassing of large ships further.\r\n\r\nBut yeah, monopolizing blue works wonders :)\r\n\r\nThanks for the game, it was fun. I hope it was fun for you as well.\n\tZackStack: It was fun! And educational too... I had the same thought about big stars about two turns too late and didn't see the big 3 sacrifice coming (you'd been so focused on building on your "half" the sudden shift to the offense caught me totally by suprise!) I'm looking forward to a rematch sometime!\n\n\nHomeworlds Online (SDG# 13932)\nStarted: 2009.8.11, Ended: 2009.8.21\nParticipants: zxcv411 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld B1 R3 G3\n\n2) zxcv411: Homeworld R1 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) zxcv411: Build G1 Zxcv411\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) zxcv411: Build G1 Zxcv411\n\n7) TwoShort: Build G1 Twoshort\n\n8) zxcv411: Trade G1 Y1 Zxcv411\n\n9) TwoShort: Trade G1 B1 Twoshort\n\tTwoShort: I'm going to suggest you undo that...\n\n10) zxcv411: Discover G1 Zxcv411 Y3 Starbug\n\tzxcv411: Oh, that's right, you can call it too >.<\n\n11) TwoShort: Build B1 Twoshort\n\n12) zxcv411: Build G1 Zxcv411\n\n13) TwoShort: Discover B1 Twoshort G2 Grogar\n\n14) zxcv411: Trade G1 R1 Zxcv411\n\n15) TwoShort: Build B2 Twoshort\n\n16) zxcv411: Trade G3 Y3 Zxcv411\n\n17) TwoShort: Discover B1 Twoshort B2 Bonanza\n\n18) zxcv411: Build G1 Starbug\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Twoshort\nBuild B3 Grogar\nBuild B3 Bonanza\n\n20) zxcv411: Move G1 Starbug Zxcv411\n\n21) TwoShort: Sacrifice B2 Twoshort\nTrade B3 G3 Bonanza\nTrade B3 Y3 Grogar\n\n22) zxcv411: Build R1 Zxcv411\n\n23) TwoShort: Sacrifice G3 Bonanza\nBuild B2 Twoshort\nBuild B3 Bonanza\nBuild B3 Grogar\n\n24) zxcv411: Move R1 Zxcv411 Starbug\n\n25) TwoShort: Discover B3 Grogar R3 Rosy\n\n26) zxcv411: Build R2 Starbug\n\n27) TwoShort: Sacrifice B2 Twoshort\nTrade B3 R3 Twoshort\nTrade B3 G3 Bonanza\n\n28) zxcv411: Discover R1 Starbug B2 Rimmer\n\n29) TwoShort: Sacrifice G3 Bonanza\nBuild B3 Rosy\nBuild B3 Bonanza\nBuild Y1 Twoshort\n\n30) zxcv411: Sacrifice Y3 Zxcv411\nMove R2 Starbug Rimmer\nMove R2 Rimmer Twoshort\nMove R1 Rimmer Twoshort\nCatastrophe Twoshort Red\n\n31) TwoShort: Trade B3 R3 Bonanza\n\n32) zxcv411: Build Y2 Zxcv411\n\n33) TwoShort: Sacrifice Y3 Grogar\nMove B3 Rosy Zxcv411\nMove R3 Bonanza Twoshort\nMove B3 Rosy Twoshort\n\n34) zxcv411: Build Y2 Zxcv411\n\n35) TwoShort: Sacrifice R3 Twoshort\nAttack Y2 Zxcv411\nAttack Y2 Zxcv411\nAttack G1 Zxcv411\n\n36) zxcv411: Attack G1 Zxcv411\n\n37) TwoShort: Sacrifice B3 Twoshort\nTrade Y2 B2 Zxcv411\nTrade Y2 R2 Zxcv411\nTrade B3 G3 Zxcv411\n\n38) zxcv411: Build R1 Zxcv411\nCatastrophe Zxcv411 Red\n\n39) TwoShort: Sacrifice G3 Zxcv411\nBuild B3 Zxcv411\nBuild B3 Zxcv411\nPass\nCatastrophe Zxcv411 Blue\n\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 13990)\nStarted: 2009.8.11, Ended: 2009.9.8\nParticipants: zxcv411 (S), jonaskoelker (N)\nWinner: zxcv411\n\n1) jonaskoelker: Homeworld R1 B2 G3\n\n2) zxcv411: Homeworld R1 B2 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) zxcv411: Build G1 Zxcv411\n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n6) zxcv411: Build G1 Zxcv411\n\n7) jonaskoelker: Build G1 Jonaskoelker\n\n8) zxcv411: Trade G1 Y1 Zxcv411\n\n9) jonaskoelker: Discover G1 Jonaskoelker Y3 Large_yellow\n\n10) zxcv411: Build Y1 Zxcv411\n\tjonaskoelker: I must say I find your symmetric plays interesting. I look forward to seeing how the game develops.\r\n\r\nOh by the way, hi, and good luck have fun, and such ;-) May the best ("most stellar"? :D) man win.\n\n11) jonaskoelker: Build Y2 Jonaskoelker\n\n12) zxcv411: Trade Y1 B1 Zxcv411\n\n13) jonaskoelker: Trade Y1 R1 Jonaskoelker\n\n14) zxcv411: Move G1 Zxcv411 Large_yellow\n\n15) jonaskoelker: Build R2 Jonaskoelker\n\n16) zxcv411: Trade G3 Y3 Zxcv411\n\n\nHomeworlds Online (SDG# 14000)\nStarted: 2009.8.11, Ended: 2009.9.8\nParticipants: zxcv411 (S), jonaskoelker (N)\nWinner: zxcv411\n\n1) jonaskoelker: Homeworld B1 Y2 G3\n\n2) zxcv411: Homeworld R1 B2 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) zxcv411: Build G1 Zxcv411\n\n5) jonaskoelker: Trade G1 R1 Jonaskoelker\n\n6) zxcv411: Build G1 Zxcv411\n\n7) jonaskoelker: Build G1 Jonaskoelker\n\n8) zxcv411: Trade G1 Y1 Zxcv411\n\n9) jonaskoelker: Discover G1 Jonaskoelker Y3 Large_yellow\n\n10) zxcv411: Build Y1 Zxcv411\n\n11) jonaskoelker: Build G1 Large_yellow\n\n12) zxcv411: Trade Y1 R1 Zxcv411\n\n13) jonaskoelker: Build R2 Jonaskoelker\n\n14) zxcv411: Build R2 Zxcv411\n\n15) jonaskoelker: Move R2 Jonaskoelker Large_yellow\n\n16) zxcv411: Trade R2 B2 Zxcv411\n\n\nHomeworlds Online (SDG# 14001)\nStarted: 2009.8.11, Ended: 2009.9.8\nParticipants: jonaskoelker (S), zxcv411 (N)\nWinner: zxcv411\n\n1) zxcv411: Homeworld B1 R2 G3\n\n2) jonaskoelker: Homeworld B2 R3 G3\n\n3) zxcv411: Build G1 Zxcv411\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\n5) zxcv411: Trade G1 Y1 Zxcv411\n\n6) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n7) zxcv411: Build G1 Zxcv411\n\n8) jonaskoelker: Build G1 Jonaskoelker\n\n9) zxcv411: Trade G3 Y3 Zxcv411\n\n10) jonaskoelker: Trade G1 B1 Jonaskoelker\n\n11) zxcv411: Build G1 Zxcv411\n\n12) jonaskoelker: Build B1 Jonaskoelker\n\n13) zxcv411: Trade G1 R1 Zxcv411\n\n14) jonaskoelker: Discover B1 Jonaskoelker G1 Small_green\n\n15) zxcv411: Build R1 Zxcv411\n\n16) jonaskoelker: Build B2 Small_green\n\n17) zxcv411: Discover R1 Zxcv411 G3 Starbug\n\n18) jonaskoelker: Build B2 Jonaskoelker\n\n19) zxcv411: Move Y1 Zxcv411 Starbug\n\n20) jonaskoelker: Build B3 Small_green\n\n21) zxcv411: Build R1 Starbug\n\n\nHomeworlds Online (SDG# 14002)\nStarted: 2009.8.11, Ended: 2009.8.11\nParticipants: jonaskoelker (S), navn (N)\nWinner: jonaskoelker\n\n1) navn: Homeworld Y2 B1 G3\n\n2) jonaskoelker: Homeworld R2 B3 G3\n\n3) navn: Build G1 Navn\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\n5) navn: Trade G1 Y1 Navn\n\n6) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n7) navn: Discover Y1 Navn G3 Co\n\n8) jonaskoelker: Build G1 Jonaskoelker\n\n9) navn: Build G1 Navn\n\n10) jonaskoelker: Discover G1 Jonaskoelker B1 Hoth\n\n11) navn: Discover G1 Navn Y3 Ctrn\n\n12) jonaskoelker: Build G1 Jonaskoelker\n\n13) navn: Build G2 Navn\n\n14) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild G2 Hoth\nBuild G2 Hoth\nBuild G3 Jonaskoelker\n\n15) navn: Move G1 Ctrn Hoth\nCatastrophe Hoth G\n\n16) jonaskoelker: Build G1 Jonaskoelker\n\n17) navn: Move G3 Navn Co\n\n18) jonaskoelker: Discover G1 Jonaskoelker B1 Hoth\n\n19) navn: Discover Y1 Co G1 Nc\n\n20) jonaskoelker: Build G2 Hoth\n\n21) navn: Build G2 Navn\n\n22) jonaskoelker: Trade G2 Y2 Hoth\n\n23) navn: Discover G2 Navn Y3 Cost\n\n24) jonaskoelker: Build Y1 Hoth\n\n25) navn: Build G2 Navn\n\n26) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild G3 Jonaskoelker\nBuild Y2 Jonaskoelker\nBuild Y3 Hoth\n\n27) navn: Discover G2 Navn Y3 Coster\n\n28) jonaskoelker: Sacrifice Y2 Hoth\nMove Y3 Hoth Co\nMove Y3 Co Navn\n\n29) navn: Sacrifice G3 Co\nBuild G3 Cost\nBuild G3 Coster\nBuild Y2 Nc\n\n30) jonaskoelker: Trade G3 R3 Jonaskoelker\n\n\nHomeworlds Online (SDG# 13933)\nVariants: "Hard time"\nStarted: 2009.8.12, Ended: 2010.1.6\nParticipants: PottyTroll (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tJesse: Hello, and have a good game.\r\n\n\n2) PottyTroll: Homeworld Y3 B1 G3\n\tPottyTroll: hey, you too\n\n3) Jesse: Build G1 Jesse\n\n4) PottyTroll: Build G1 Pottytroll\n\tJesse: Have you played Homeworlds much?\n\n5) Jesse: Trade G1 Y1 Jesse\n\tPottyTroll: still kind of new but I've played a few games. You?\n\n6) PottyTroll: Discover G1 Pottytroll B2 Porkslap\n\tJesse: I have played a lot, and I am one of the stronger players on SDG. I'm always happy to help a new player out, so let me know if there's an area where you would like some guidance.\n\n7) Jesse: Build G1 Jesse\n\n\n8) PottyTroll: Build G1 Pottytroll\n\n9) Jesse: Build G2 Jesse\n\n10) PottyTroll: Build G2 Porkslap\n\n11) Jesse: Discover G2 Jesse G3 Blop\n\n12) PottyTroll: Trade G2 Y2 Porkslap\n\n13) Jesse: Build Y1 Jesse\n\n14) PottyTroll: Build G2 Porkslap\n\n15) Jesse: Discover G1 Jesse Y3 Dollop\n\n16) PottyTroll: Move G1 Porkslap Blop\n\n17) Jesse: Build G2 Dollop\n\n18) PottyTroll: Build Y1 Porkslap\n\n19) Jesse: Trade Y1 R1 Jesse\n\n20) PottyTroll: Trade Y1 B1 Porkslap\n\n21) Jesse: Move G2 Dollop Porkslap\n\n22) PottyTroll: Trade G1 R1 Pottytroll\n\n23) Jesse: Sacrifice R1 Jesse\nAttack Y2 Porkslap\n\n24) PottyTroll: Sacrifice R1 Pottytroll\nAttack Y2 Porkslap\n\n25) Jesse: Trade G2 R2 Porkslap\n\n\n26) PottyTroll: Sacrifice B1 Porkslap\nTrade G1 R1 Blop\n\n27) Jesse: Attack Y2 Porkslap\n\n28) PottyTroll: Sacrifice R1 Blop\nAttack R2 Porkslap\n\n29) Jesse: Discover Y2 Porkslap B3 Smidge\n\n30) PottyTroll: Build R1 Porkslap\n\n31) Jesse: Sacrifice G2 Blop\nBuild Y1 Smidge\nBuild G1 Jesse\n\n32) PottyTroll: Trade R1 Y1 Porkslap\n\n33) Jesse: Trade Y1 R1 Smidge\n\n34) PottyTroll: Build G1 Pottytroll\n\n35) Jesse: Build G2 Dollop\n\n36) PottyTroll: Trade G1 R1 Pottytroll\n\n37) Jesse: Sacrifice G1 Jesse\nBuild R2 Smidge\n\n38) PottyTroll: Sacrifice G2 Porkslap\nBuild R2 Pottytroll\nBuild R3 Porkslap\n\n39) Jesse: Discover R2 Smidge G2 Pinch\n\n40) PottyTroll: Trade R2 G2 Porkslap\n\n41) Jesse: Sacrifice G2 Dollop\nBuild R2 Pinch\nBuild R3 Smidge\n\n\tJesse: Well, that time it did the move I asked for. I don't know what was different before, but I certainly didn't put "pass" instead of "b r3 smidge".\n\tAaron: I'm glad it worked! I'll do a quick look-over the code anyway. Call me again if something odd happens.\n\nHomeworlds Online (SDG# 14007)\nStarted: 2009.8.12, Ended: 2009.12.10\nParticipants: jonaskoelker (S), Horowits (N)\nWinner: Horowits\n\n1) Horowits: Homeworld G3 Y2 B3\n\n2) jonaskoelker: Homeworld R1 B2 G3\n\tHorowits: ahoy. good luck and have fun :)\n\n3) Horowits: Build B1 Horowits\n\tjonaskoelker: Ahoy! Interesting opening, I don't think I've played against a big *blue* ship (opening) before. Let's see what will come of it.\r\n\r\nGood luck, have fun, and may the best interstellar commodore win ;-)\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\n5) Horowits: Build B1 Horowits\n\n6) jonaskoelker: Trade G1 B1 Jonaskoelker\n\n7) Horowits: Discover B1 Horowits G1 Rawg\n\tjonaskoelker: Hmm... I figure you're a sneaky bastard trying to monopolize the blue color. Wanna' discuss your opening strategy once it's no longer relevant (i.e. at the latest when the game is over, but before if you feel like it)?\r\n\n\n8) jonaskoelker: Build B2 Jonaskoelker\n\tHorowits: sure thing mon :)\n\n9) Horowits: Build B2 Horowits\n\n10) jonaskoelker: Trade B2 Y2 Jonaskoelker\n\n11) Horowits: Discover B2 Horowits G1 Megadeth\n\n12) jonaskoelker: Discover B1 Jonaskoelker G3 Large_green\n\n13) Horowits: Move B1 Horowits Rawg\n\tjonaskoelker: Were you hoping to have both the remaining two large blue ships for yourself? ;-)\r\n\n\n\nHomeworlds Online (SDG# 14021)\nStarted: 2009.8.14, Ended: 2009.10.28\nParticipants: ts52 (S), Horowits (N)\nWinner: ts52\n\n1) Horowits: Homeworld G3 R1 B3\n\n2) ts52: Homeworld Y1 B2 G3\n\tHorowits: ahoy. have fun and good luck :)\n\n3) Horowits: Build B1 Horowits\n\tts52: Good luck to you too. Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) Horowits: Build B1 Horowits\n\n6) ts52: Build G1 Ts52\n\n7) Horowits: Trade B3 Y3 Horowits\n\n8) ts52: Discover G1 Ts52 B3 Grover\n\n9) Horowits: Discover B1 Horowits G2 Gwar\n\n10) ts52: Build G1 Ts52\n\n11) Horowits: Build B1 Gwar\n\n12) ts52: Build G2 Grover\n\n13) Horowits: Build B2 Horowits\n\n14) ts52: Discover G1 Ts52 B3 Gonzo\n\n15) Horowits: Sacrifice B2 Horowits\nTrade B1 Y1 Gwar\nTrade B1 R1 Gwar\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Grover\n\n17) Horowits: Build R1 Gwar\n\n18) ts52: Trade G3 R3 Grover\n\n19) Horowits: Trade Y3 G3 Horowits\n\n20) ts52: Build R2 Grover\n\n21) Horowits: Move R1 Gwar Gonzo\n\n22) ts52: Trade R2 Y2 Grover\n\n\nHomeworlds Online (SDG# 14053)\nStarted: 2009.8.18, Ended: 2009.9.29\nParticipants: ZackStack (S), agentofchaos (N)\nWinner: ZackStack\n\n1) agentofchaos: Homeworld B3 R1 G3\n\tZackStack: Have a good game Agent! \n\tagentofchaos: Thanks you too Zack!\n\n2) ZackStack: Homeworld R1 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) ZackStack: Build G1 Zackstack\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) ZackStack: Build G1 Zackstack\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) ZackStack: Trade G1 Y1 Zackstack\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) ZackStack: Discover G1 Zackstack B3 Cookie\n\n11) agentofchaos: Trade Y1 R1 Agentofchaos\n\n12) ZackStack: Build G1 Zackstack\n\n13) agentofchaos: Build R2 Agentofchaos\n\n14) ZackStack: Build G1 Cookie\n\tZackStack: Ahhh... that's better :-) \n\n15) agentofchaos: Build G2 Agentofchaos\n\n16) ZackStack: Build G2 Zackstack\n\n17) agentofchaos: Discover Y2 Agentofchaos B2 Hearthome\n\n18) ZackStack: Trade G2 R2 Zackstack\n\n19) agentofchaos: Build G2 Agentofchaos\n\n20) ZackStack: Trade G1 Y1 Cookie\n\n21) agentofchaos: Move R2 Agentofchaos Hearthome\n\n22) ZackStack: Move R2 Zackstack Cookie\n\n23) agentofchaos: Build Y2 Agentofchaos\n\n24) ZackStack: Discover G1 Zackstack Y3 Zoe\n\n25) agentofchaos: Move R2 Hearthome Zoe\n\n26) ZackStack: Discover G1 Zoe R2 Elmo\n\n27) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R3 Zoe\nBuild Y2 Hearthome\n\n28) ZackStack: Build Y3 Zackstack\n\n29) agentofchaos: Move Y2 Agentofchaos Elmo\n\n30) ZackStack: Sacrifice Y3 Zackstack\nMove G1 Cookie Elmo\nMove G1 Elmo Agentofchaos\nMove G1 Elmo Agentofchaos\nCatastrophe Agentofchaos Green\n\n31) agentofchaos: Trade R1 G1 Agentofchaos\n\n32) ZackStack: Sacrifice G3 Zackstack\nBuild Y3 Zackstack\nBuild Y3 Cookie\nBuild R1 Cookie\n\tZackStack: Clearly I'm better at this when there is someone else around to distract you :-)\n\n33) agentofchaos: Sacrifice Y2 Hearthome\nMove R3 Zoe Hearthome\nMove R3 Hearthome Agentofchaos\n\tagentofchaos: Oh bugger...\n\n34) ZackStack: Discover R2 Cookie Y2 Abbie\n\n35) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R3 Zoe\n\n36) ZackStack: Sacrifice Y3 Cookie\nMove R2 Abbie Agentofchaos\nMove R1 Cookie Elmo\nMove R1 Elmo Agentofchaos\nCatastrophe Agentofchaos Red\n\n37) agentofchaos: Sacrifice Y2 Hearthome\nMove R3 Zoe Elmo\nMove R3 Elmo Agentofchaos\n\n38) ZackStack: Trade Y3 G3 Zackstack\n\tZackStack: And my glut of undo's continues... I guess my first instinct is to play conservatively, but once I make the conservative move I decide the field would look better if I went aggressive...\n\n39) agentofchaos: Trade Y1 G1 Agentofchaos\n\tagentofchaos: Sometimes the grass is greener... ;-)\n\n40) ZackStack: Build G1 Zackstack\n\tagentofchaos: Looks like it's all downhill from here...\n\n41) agentofchaos: Build G1 Agentofchaos\n\n42) ZackStack: Move G1 Zackstack Cookie\n\tZackStack: I'll do my best to make it quick and painless :-)\n\n43) agentofchaos: Trade G1 Y1 Agentofchaos\n\tagentofchaos: That's right kindly of you...\n\n44) ZackStack: Build Y2 Cookie\n\n45) agentofchaos: Build Y2 Agentofchaos\n\n46) ZackStack: Trade Y1 B1 Cookie\n\n47) agentofchaos: Trade Y1 B1 Agentofchaos\n\n48) ZackStack: Sacrifice Y2 Cookie\nDiscover G1 Cookie Y1 Tweetie\nMove B1 Cookie Tweetie\n\n\n49) agentofchaos: Build G1 Agentofchaos\n\tZackStack: Hmmm... why the heck am I building up Cookie system?\n\n50) ZackStack: Build B1 Tweetie\n\tagentofchaos: Are you a fan of cookie monster perhaps?\n\n51) agentofchaos: Move G1 Agentofchaos Elmo\n\tZackStack: Well... who isn't? :-)\n\n52) ZackStack: Move B1 Tweetie Agentofchaos\n\n53) agentofchaos: Sacrifice B1 Agentofchaos\nTrade R2 B2 Zoe\n\n54) ZackStack: Sacrifice G3 Zackstack\nBuild B1 Agentofchaos\nBuild B2 Agentofchaos\nBuild Y1 Zackstack\nCatastrophe Agentofchaos Blue\n\n\tZackStack: Thanks for the game agent!\n\nHomeworlds Online (SDG# 14057)\nVariants: "Hard time"\nStarted: 2009.8.20, Ended: 2010.1.1\nParticipants: alexcobo (S), Subhan64 (N)\nWinner: alexcobo\n\n1) Subhan64: Homeworld G3 B2 Y3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) alexcobo: Discover Y1 Alexcobo G1 Geneva\n\n7) Subhan64: Build Y1 Subhan64\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) Subhan64: Move Y1 Subhan64 Geneva\n\n10) alexcobo: Trade Y1 R1 Alexcobo\n\n11) Subhan64: Trade G1 R1 Subhan64\n\n12) alexcobo: Sacrifice R1 Alexcobo\nAttack Y1N Geneva\n\n13) Subhan64: Build R1 Subhan64\n\n14) alexcobo: Build Y1 Alexcobo\n\n15) Subhan64: Move R1 Subhan64 Geneva\n\n16) alexcobo: Build Y2 Geneva\n\n17) Subhan64: Attack Y1 Geneva\n\n18) alexcobo: Trade Y1 R1 Alexcobo\n\n19) Subhan64: Build R2 Geneva\n\n20) alexcobo: Sacrifice R1 Alexcobo\nAttack R2N Geneva\n\n21) Subhan64: Build Y1 Geneva\nCatastrophe Geneva Yellow\n\n22) alexcobo: Attack R1N Geneva\n\n23) Subhan64: Build Y1 Subhan64\n\n24) alexcobo: Build Y1 Alexcobo\n\n25) Subhan64: Trade Y1 G1 Subhan64\n\n26) alexcobo: Trade Y1 G1 Alexcobo\n\n27) Subhan64: Discover G1 Subhan64 Y1 Omicronpersei8\n\n28) alexcobo: Build Y1 Alexcobo\n\n29) Subhan64: Build G2 Omicronpersei8\n\n30) alexcobo: Discover G1 Alexcobo Y1 Ono\n\n31) Subhan64: Sacrifice G2 Omicronpersei8\nBuild G2 Omicronpersei8\nBuild G2 Omicronpersei8\n\n32) alexcobo: Build Y2 Alexcobo\n\n33) Subhan64: Sacrifice G2 Omicronpersei8\nBuild Y2 Subhan64\nBuild G2 Omicronpersei8\n\n34) alexcobo: Sacrifice Y2 Alexcobo\nMove G1 Ono Subhan64\nMove G1 Subhan64 Omicronpersei8\nCatastrophe Omicronpersei8 G\n\n35) Subhan64: Trade Y2 G2 Subhan64\n\n36) alexcobo: Build Y1 Alexcobo\n\n37) Subhan64: Build R1 Subhan64\n\n38) alexcobo: Trade Y3 R3 Alexcobo\n\tSubhan64: trade y2 g2 subhan64\n\n39) Subhan64: Build Y1 Subhan64\n\n40) alexcobo: Build R2 Alexcobo\n\n41) Subhan64: Move R1 Subhan64 Geneva\n\n42) alexcobo: Attack R1N Geneva\n\n43) Subhan64: Move R1 Subhan64 Geneva\nCatastrophe Geneva Red\n\n44) alexcobo: Discover R2 Alexcobo G1 Genevaagain\n\n45) Subhan64: Trade Y3 R3 Subhan64\n\n46) alexcobo: Build Y2 Alexcobo\n\n47) Subhan64: Build Y2 Subhan64\n\n48) alexcobo: Discover Y2 Alexcobo G1 Copy\n\n49) Subhan64: Move Y2 Subhan64 Copy\n\n50) alexcobo: Sacrifice R2 Genevaagain\nAttack Y2N Copy\nPass\n\n51) Subhan64: Trade G2 R2 Subhan64\n\n52) alexcobo: Build R1 Alexcobo\n\n53) Subhan64: Build Y2 Subhan64\n\n54) alexcobo: Trade Y1 B1 Alexcobo\n\n55) Subhan64: Trade Y2 G2 Subhan64\n\n56) alexcobo: Sacrifice B1 Alexcobo\nTrade Y2 R2 Copy\n\n57) Subhan64: Build Y1 Subhan64\n\n58) alexcobo: Build Y2 Alexcobo\n\n59) Subhan64: Discover Y1 Subhan64 G1 Sirius7\n\n60) alexcobo: Discover R2 Copy Y2 Waypoint\n\n61) Subhan64: Build Y3 Sirius7\n\n62) alexcobo: Build Y3 Copy\n\n63) Subhan64: Trade Y1 B1 Subhan64\n\n64) alexcobo: Move R2 Waypoint Copy\n\n65) Subhan64: Build B1 Subhan64\n\n66) alexcobo: Trade R1 G1 Alexcobo\n\n67) Subhan64: Sacrifice B1 Subhan64\nTrade Y3 R3 Sirius7\n\n68) alexcobo: Build G2 Alexcobo\n\n69) Subhan64: Trade G2 Y2 Subhan64\n\n70) alexcobo: Discover G2 Alexcobo R1 Titus\n\n71) Subhan64: Move R2 Subhan64 Titus\n\n72) alexcobo: Attack R2N Titus\n\n73) Subhan64: Sacrifice Y2 Subhan64\nMove R3 Sirius7 Alexcobo\nMove R3 Alexcobo Titus\n\n74) alexcobo: Sacrifice Y2 Copy\nMove R2 Copy Alexcobo\nMove R2 Alexcobo Titus\nCatastrophe Titus R\n\n75) Subhan64: Trade B1 Y1 Subhan64\n\n76) alexcobo: Trade Y1 R1 Alexcobo\n\tSubhan64: D'oh!\n\n77) Subhan64: Build R1 Subhan64\n\n78) alexcobo: Build G2 Alexcobo\n\n79) Subhan64: Build Y1 Subhan64\n\n80) alexcobo: Move R3 Alexcobo Sirius7\n\n81) Subhan64: Discover Y1 Sirius7 G2 Sirius9\n\n82) alexcobo: Sacrifice Y3 Copy\nMove R1 Alexcobo Sirius7\nMove R1 Sirius7 Subhan64\nMove R3 Sirius7 Subhan64\nCatastrophe Subhan64 R\n\n83) Subhan64: Build Y2 Subhan64\n\n84) alexcobo: Build Y2 Alexcobo\n\n85) Subhan64: Trade Y2 G2 Subhan64\n\n86) alexcobo: Trade G2 R2 Alexcobo\n\n87) Subhan64: Discover Y1 Sirius9 B1 Sirius8\n\n88) alexcobo: Sacrifice Y2 Alexcobo\nMove R2 Alexcobo Sirius8\nMove R2 Sirius8 Subhan64\n\n89) Subhan64: Build Y2 Subhan64\n\n90) alexcobo: Attack Y2N Subhan64\n\n91) Subhan64: Sacrifice G2 Subhan64\nBuild Y2 Sirius8\nBuild Y3 Sirius8\n\n92) alexcobo: Sacrifice R2 Subhan64\nAttack Y1N Subhan64\nAttack Y1N Subhan64\n\n\talexcobo: Thank you for the game.\r\nHave a very happy 2010!\n\nHomeworlds Online (SDG# 14062)\nStarted: 2009.8.25, Ended: 2009.8.31\nParticipants: JimTarnung (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) JimTarnung: Homeworld B1 G2 Y3\n\tTwoShort: Howdy.\n\n3) TwoShort: Build G1 Twoshort\n\tJimTarnung: To the stars and beyond!\n\n4) JimTarnung: Build Y1 Jimtarnung\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) JimTarnung: Trade Y1 G1 Jimtarnung\n\tJimTarnung: It's my first game of Homeworlds. I hope i don't suck too hard. I'm quite sure that I understand the rules, as I translated them to German.\n\n7) TwoShort: Build G1 Twoshort\n\n8) JimTarnung: Build Y1 Jimtarnung\n\n9) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n10) JimTarnung: Trade Y1 R1 Jimtarnung\n\tTwoShort: I usually try to give new players a few strategy pointers, but be aware that by the time I figure out what pointers to give, it's usually to late to use them :) For example, I'd generally reccomend starting with a green ship.\n\n11) TwoShort: Build G1 Twoshort\n\n12) JimTarnung: Build Y1 Jimtarnung\n\tJimTarnung: Sacrificing a big green surely seems very powerful. I guess I'll learn by doing. Don't hesitate to give advice as you see fit. Even if it is to late..\n\n13) TwoShort: Build G2 Bluonia\n\tTwoShort: Well, as far as too late advice... don't take a red before there is any threat of your using it. It's not hurting you, but you could have done something better with that turn.\n\n14) JimTarnung: Trade Y3 G3 Jimtarnung\n\tTwoShort: "The Factory" - sacrificing a g3 to grow 3 ships including a replacement g3, is definitely a key tactic. If your opponent gets that set up and you don't, you'll have a big problem. \n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Bluonia\nBuild G3 Twoshort\n\tTwoShort: That will get you a factory, but note that it's only safe because I can't get a green to your Homeworld for a catastrophe. If I took a y2, you'd need to move a green out, and wouldn't be able to use the factory without moving your 3 out.\r\n But for this turn at least,I'm more interested in using the factory myself...\n\n16) JimTarnung: Build Y1 Jimtarnung\n\tJimTarnung: Oh no! I didn't realise that you can rebuild the ship you just sacrificed. I traded for a big green to avoid that you get two big ones in one turn. Well, I learned something new again..\n\n17) TwoShort: Trade G3 Y3 Bluonia\n\tTwoShort: Yes, sacrificed ships go tot the stash imediately. The same is true of abandoned system markers; so if you sacrifice a green that was alone at a star, you can grow the star as a ship.\n\n18) JimTarnung: Discover G1 Jimtarnung Y3 Yello\n\n19) TwoShort: Trade G2 R2 Bluonia\n\n20) JimTarnung: Build Y2 Jimtarnung\n\n21) TwoShort: Discover G2 Twoshort B2 Blitzen\n\tJimTarnung: Yellow catastrophe? Are you willing to do it?\n\n22) JimTarnung: Trade Y1 B1 Jimtarnung\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Blitzen\nBuild G3 Twoshort\n\tTwoShort: The yellow catastrophe would have cost me a y3 & y1 for your y2 and 2 y1s, which I'd rate as a big loss for me. My super-crude rule of thumb is a 2-point is worth 3 1-points, and a 3-point is worth 3 2-points. So I'll pretty much never give up a 3 without getting one in return.\n\n24) JimTarnung: Move B1 Jimtarnung Yello\n\n25) TwoShort: Discover G2 Bluonia B3 Boomtime\n\n26) JimTarnung: Sacrifice G3 Jimtarnung\nBuild G3 Yello\nBuild B1 Yello\nBuild B2 Yello\n\n27) TwoShort: Sacrifice Y3 Bluonia\nMove G3 Blitzen Boomtime\nMove G3 Boomtime Jimtarnung\nPass\n\tJimTarnung: Lord have mercy..\n\n28) JimTarnung: Move B2 Yello Jimtarnung\n\n29) TwoShort: Sacrifice R2 Bluonia\nAttack B2 Jimtarnung\nAttack Y2 Jimtarnung\n\n30) JimTarnung: Move G3 Yello Jimtarnung\n\n31) TwoShort: Sacrifice G2 Blitzen\nBuild G2 Jimtarnung\nBuild B2 Jimtarnung\nCatastrophe Jimtarnung Green\n\n32) JimTarnung: Build G2 Yello\n\n33) TwoShort: Sacrifice G1 Bluonia\nBuild B2 Jimtarnung\nCatastrophe Jimtarnung Blue\n\tTwoShort: Thanks for the game. Hope it wasn't too demoralizing :)\n\tJimTarnung: Thank you too. I learned a few basic moves, but there's a long way to go. This won't be my last time playing..\n\n\nHomeworlds Online (SDG# 13841)\nStarted: 2009.8.27, Ended: 2009.9.1\nParticipants: MikeYarrum (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld G3 Y2 B3\n\tWerebear: Greetings!\n\n\nHomeworlds Online (SDG# 13868)\nVariants: "Hard time"\nStarted: 2009.8.27, Ended: 2009.10.4\nParticipants: agentofchaos (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld B3 Y2 G3\n\tWerebear: Hello!\n\n2) agentofchaos: Homeworld B3 R1 G3\n\tagentofchaos: Hi there, thanks for playing me!\n\n3) Werebear: Build G1 Werebear\n\tWerebear: My pleasure. Do you like a quiet game with no chatter, or are you a social player? I'll conform to whatever you like, but I do tend to be chattery if my fellow players enjoy that. Either way, I'll adhere to your pleasure.\n\n4) agentofchaos: Build G1 Agentofchaos\n\tagentofchaos: I'm quite open to a bit of chatter, it can be fun to get to know players. \n\n5) Werebear: Discover G1 Werebear Y1 Pergi\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Werebear: Build G1 Werebear\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) Werebear: Discover G1 Pergi B3 Mengubah\n\tWerebear: Sorry, kind sir - got called away for a few days.\n\n10) agentofchaos: Build G2 Agentofchaos\n\n11) Werebear: Sacrifice G3 Werebear\nBuild G2 Mengubah\nBuild G2 Mengubah\nBuild G3 Werebear\n\tagentofchaos: Not to worry, nature calls sometimes ;-)\n\tWerebear: We are a watery people, we who are called by our friends the Todak. We have nothing but peaceful intentions and a love of nature. And nature called us away, to our meditations. But now, we come to meet with you, our newest found friend! Greetings from the Todak!\n\n12) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y1 Agentofchaos\nBuild G3 Agentofchaos\n\tWerebear: *squinting*\r\nAhh. Our meditations bear fruit. Blessings!\n\tagentofchaos: Nothing but peaceful intentions?? Says the wolf-in-sheep's-clothing!\n\n13) Werebear: Build G3 Werebear\n\n14) agentofchaos: Discover G2 Agentofchaos Y2 Dhamballa\n\tWerebear: My friend, we've meditated on your thoughts. Surely, we're not wolves. Perhaps gentle bears? Perhaps your angry red sun tints your view of our peaceful people.\n\n15) Werebear: Discover G3 Werebear B1 Alkimia\n\tagentofchaos: How about locusts in gentle bears' clothing then? The peaceful blue sun balances the angry red one...\n\n16) agentofchaos: Trade Y1 B1 Agentofchaos\n\tWerebear: Oh, yes, my friend, we know about peaceful blue suns.\n\n17) Werebear: Trade G2 Y2 Mengubah\n\n18) agentofchaos: Build B1 Agentofchaos\n\n19) Werebear: Build G2 Alkimia\n\n20) agentofchaos: Move B1 Agentofchaos Dhamballa\n\n21) Werebear: Sacrifice G3 Alkimia\nBuild G3 Alkimia\nBuild Y1 Mengubah\nBuild Y3 Mengubah\n\n22) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild B2 Dhamballa\nBuild B2 Dhamballa\n\n23) Werebear: Discover Y2 Mengubah B2 Berbeda\n\n24) agentofchaos: Move B1 Dhamballa Mengubah\n\n25) Werebear: Sacrifice G3 Alkimia\nBuild G3 Alkimia\nBuild Y3 Mengubah\nBuild Y3 Berbeda\n\tWerebear: Pray tell, have you come to visit? Or are you delivering a message? In all truth, it is wonderful to have met you, finally!\n\n26) agentofchaos: Move B2 Dhamballa Mengubah\n\n27) Werebear: Sacrifice Y3 Mengubah\nDiscover G2 Mengubah R2 Pintu\nMove Y3 Mengubah Dhamballa\nMove Y1 Mengubah Pintu\n\tagentofchaos: Always happy to visit the neighbours I am and bring glad tidings! \n\tWerebear: Methinks you are delivering some sort of eviction notice? Is that what's in this envelope?\n\n28) agentofchaos: Sacrifice Y1 Agentofchaos\nMove B1 Mengubah Alkimia\n\n29) Werebear: Sacrifice Y3 Berbeda\nMove G1 Mengubah Pintu\nMove G1 Pintu Agentofchaos\nMove G2 Pintu Agentofchaos\nCatastrophe Agentofchaos Green\n\tagentofchaos: Actually fireworks to celebrate our wonderful meeting!\n\tWerebear: You like you some fireworks? We like fireworks too! Here's some for you!\n\n30) agentofchaos: Trade B2 G2 Mengubah\n\tWerebear: Intergalatic News Services has learned that a horrible calamity has struck in the agentofchaos home system. During a brilliantly executed fireworks display, that drew fascinated audiences from as far away as Mengubah, the star fleets orbiting the home world began colliding. Apparently, the fireworks had a mesmerizing quality that distracted the star ship crews, and before it was all done, thousands of lifeboats had launched down. All hands from all vessels survived, and the agentofchaosians thought that the gigantic star ship explosions were just part of the show. Happy partying continued long into the night, as the lifeboats landed with great relief and celebration.\n\tagentofchaos: Hmm, an investigation is being launched into those fireworks... Foul play is suspected...\n\n31) Werebear: Sacrifice Y2 Berbeda\nDiscover G3 Alkimia B2 Berbeda\nMove Y3 Dhamballa Agentofchaos\n\n32) agentofchaos: Sacrifice G2 Mengubah\nBuild Y1 Agentofchaos\nBuild Y2 Agentofchaos\n\tWerebear: As per your request, we'll send investigators to assist you. We definitely want to find out about those fireworks problems, before it can happen again.\n\n33) Werebear: Trade Y3 R3 Agentofchaos\n\tagentofchaos: Hmm, we'd really prefer to conduct an independent investigation, but something tells me it's too late for that....\n\n34) agentofchaos: Trade Y1 G1 Agentofchaos\n\tWerebear: Sorry about the delay, mate! But we think we've finally found the problem. The results of investigation will be released to two star days.\n\n35) Werebear: Attack G1S Agentofchaos\n\tagentofchaos: I wait with baited breath...\n\n36) agentofchaos: Trade Y1 G1 Agentofchaos\n\tWerebear: I think I found the problem - right 'cheer... Should be all better now. Troublesome green ship stirring up troubles...\n\tagentofchaos: Alas, I fear an age of darkness is falling upon the agentofchaos system...\n\n37) Werebear: Trade G3 R3 Berbeda\n\n\tWerebear: Here, that'll help...\n\nHomeworlds Online (SDG# 14091)\nVariants: "Hard time"\nStarted: 2009.8.27, Ended: 2009.9.26\nParticipants: Werebear (S), mzmzmz (N)\nWinner: Werebear\n\n1) mzmzmz: Homeworld G2 Y1 B3\n\tWerebear: Howdy!\n\n2) Werebear: Homeworld Y2 B1 G3\n\n3) mzmzmz: Build B1 Mzmzmz\n\tWerebear: Oy! It is such a joy to find friendly peoples so close to us! We look forward to much trade and happiness between our peoples! Greetings!\n\tmzmzmz: Greetings to you as well. We foresee great cultural exchanges between our peoples in the near future.\n\n4) Werebear: Build G1 Werebear\n\n5) mzmzmz: Trade B1 G1 Mzmzmz\n\n6) Werebear: Discover G1 Werebear Y3 Banana\n\n7) mzmzmz: Build B1 Mzmzmz\n\n8) Werebear: Build G1 Werebear\n\tWerebear: So sorry - started thinking too much.\n\n9) mzmzmz: Move G1 Mzmzmz Banana\n\n10) Werebear: Trade G1 R1 Werebear\n\n11) mzmzmz: Trade B1 Y1 Mzmzmz\n\n12) Werebear: Build R1 Werebear\n\tWerebear: Oy! We dance! What joy! Oy!\n\n13) mzmzmz: Build B1 Mzmzmz\n\n14) Werebear: Discover R1 Werebear G3 Spinach\n\n15) mzmzmz: Move B1 Mzmzmz Banana\n\n16) Werebear: Move R1 Werebear Banana\n\n\tmzmzmz: oops, sorry about that. I didn't mean to let the time expire.\n\nHomeworlds Online (SDG# 32026)\nVariants: "Hard time"\nStarted: 2017.4.23, Ended: 2017.6.28\nParticipants: SilentTitan (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) SilentTitan: Trade G1 R1 Silenttitan\n\n11) Draw5PlayAll: Build B1 Draw5playall\n\n12) SilentTitan: Build R1 Silenttitan\n\n13) Draw5PlayAll: Build Y1 Draw5playall\n\n14) SilentTitan: Build Y2 Silenttitan\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: UH OH.\n\n16) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n17) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n18) SilentTitan: Build Y2 Sol\n\n19) Draw5PlayAll: Discover R2 Draw5playall G2 G2\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n21) Draw5PlayAll: Move Y1 Draw5playall G2\n\n22) SilentTitan: Sacrifice Y2 Sol\nMove Y3 Silenttitan Sol\nMove Y3 Sol G2\n\n23) Draw5PlayAll: Sacrifice Y1 G2\nDiscover R2 G2 Y1 Y1\n\n24) SilentTitan: Discover R1 Silenttitan G1 Soul\n\n25) Draw5PlayAll: Discover B1 Draw5playall G2 G2b\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) Draw5PlayAll: Build B1 G2b\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 G2\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n29) Draw5PlayAll: Build B2 G2b\n\n30) SilentTitan: Trade Y3 B3 Silenttitan\n\n31) Draw5PlayAll: Build Y3 Draw5playall\n\n32) SilentTitan: Sacrifice Y2 Sol\nMove Y2 G2 Draw5playall\nMove Y3 G2 Draw5playall\nCatastrophe Draw5playall Yellow\n\n33) Draw5PlayAll: Trade B2 R2 G2b\n\n34) SilentTitan: Trade Y3 G3 Silenttitan\n\n35) Draw5PlayAll: Trade B1 Y1 G2b\n\tDraw5PlayAll: Thanks!\n\n36) SilentTitan: Move B3 Silenttitan Y1\n\tDraw5PlayAll: You gave more than I lost...\n\n37) Draw5PlayAll: Discover R2 Y1 Y3 Y3\n\n38) SilentTitan: Move B3 Y1 G2b\n\n39) Draw5PlayAll: Move R2 G2b Sol\n\n40) SilentTitan: Build R2 Soul\n\n41) Draw5PlayAll: Attack Y1 Sol\n\n42) SilentTitan: Sacrifice R2 Soul\nAttack B1 G2b\nAttack Y1 G2b\n\n43) Draw5PlayAll: Trade B1 Y1 Draw5playall\n\n44) SilentTitan: Build Y2 G2b\n\n45) Draw5PlayAll: Build Y2 Draw5playall\n\n46) SilentTitan: Move G3 Silenttitan Sol\n\n47) Draw5PlayAll: Discover Y1 Sol G3 G3\n\n48) SilentTitan: Sacrifice Y2 G2b\nDiscover B1 G2b Y3 Sole\nDiscover R1 Soul Y3 Tic\n\n49) Draw5PlayAll: Build Y2 G3\n\n\tSilentTitan: I've done that in the past but I'm not a good speller and I always have to look up how it is spelt\n\tdlwillson: Now you're both pushing ships aside! What kind of game is this?!\n\tdlwillson: Investments on the side... :-)\n\tFelix: Odd game indeed! I've never seen such a tidy row of Y3 stars.\n\tdlwillson: And 3's aren't in anyone's orbit! Most of the action is in deep space!\n\tDraw5PlayAll: Odd game. I have never had THIS many spectator comments in 28 hours.\n\tdlwillson: The Peanut Gallery is very noisy.\n\tFelix: Man, it's tragic to see a ladder game go the way of the hard time. :(\n\tSilentTitan: Good game. Sometimes life gets in the way. \n\tDraw5PlayAll: It is even worse to have to wait so long only to lose... and my position is doubtful at best.\n\nHomeworlds Online (SDG# 14093)\nStarted: 2009.9.1, Ended: 2009.9.5\nParticipants: MikeYarrum (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld R3 G1 B3\n\tWerebear: Quake in fear, for I have arrived.\r\nYou may not even want to dare enter this game!\r\nI shall wait.\n\n\nHomeworlds Online (SDG# 14125)\nStarted: 2009.9.2, Ended: 2009.9.11\nParticipants: braino (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld G3 Y1 B3\n\tWerebear: Greetings! We come in Peace. (That's the name of our ship, there, you see?). Peace.\n\n2) braino: Homeworld B3 Y2 G3\n\n3) Werebear: Build B1 Werebear\n\tWerebear: Our peoples seem so like each other. We sure we be fast friends, our peoples likes, much trade and happiness.\n\n4) braino: Build G1 Braino\n\n5) Werebear: Discover B1 Werebear G2 Kabbar\n\tbraino: I have some nuclear waste I would like to dispose of. Mind if I deliver to your homeworld?\n\n6) braino: Discover G1 Braino B1 Dismemberment\n\tWerebear: Oye? You like-uh the glowing blue stuff, you do? We does! We eats it for breakfasts, our peoples glow happily. Yes, please deliver promised delicious breakfasts to us! We bring gifts to you, as well!\n\n7) Werebear: Build B1 Werebear\n\n8) braino: Build G1 Dismemberment\n\tWerebear: Oops... one of our lifeboats fell out of our starship! Please avert your gazes, our peoples are embarrassed.\n\n9) Werebear: Build B2 Kabbar\n\tbraino: Bad move #1 ---->South's ship G1 ventured forth from braino and discovered a new B1 star system! It has been named Dismemberment. \n\n10) braino: Trade G3 B3 Braino\n\n11) Werebear: Trade B3 G3 Werebear\n\tWerebear: The Kabbar system peoples throws a huge party, builds a new Blue Cruiser for the peaceful Iblesors Peoples.\n\tWerebear: Why you thinka that moves be bad?\n\tbraino: It was bad because I shortened the blue stack for you.\n\tWerebear: Ahh, yes, the economy... that will gets peoples sometimes, 'twill.\n\n12) braino: Build G1 Dismemberment\n\tWerebear: We like the ways you peoples dance. We Iblesors dance counter point?\n\tbraino: this game f***s with my brain. \n\n13) Werebear: Sacrifice G3 Werebear\nBuild B2 Kabbar\nBuild B2 Werebear\nBuild B3 Werebear\n\tWerebear: We was just gonna say, you peoples need some green, it calms you peoples all down. Oh. No. Not there!\n\n14) braino: Trade G1 Y1 Dismemberment\n\tWerebear: You peoples stay calm there. Anythings can happen. And usually does.\n\n15) Werebear: Discover B2 Werebear Y2 Dubbiena\n\tbraino: Abanadon ships! Abandon Ships! \n\tbraino: I think the best bet is to restart this one. I have blown it. It is only a matter of time before I lose my base. Then you could just pick me away.\n\n16) braino: Trade G1 R1 Dismemberment\n\tWerebear: You peoples need some rescueing? We send ships, we help you peoples, you see. We come see you very soon. No worry.\n\n17) Werebear: Sacrifice B2 Kabbar\nTrade B3 G3 Werebear\nTrade B1 R1 Kabbar\n\n18) braino: Discover G1 Dismemberment B3 Statue\n\n19) Werebear: Build G1 Werebear\n\tWerebear: We peoples scared - why you peoples got gun? Surely no reason to fear nice little Iblesors peoples. We peoples thinkas you peoples must see real scary other bad peoples somewhere behinds you planet. We get ready to help you peoples.\n\n20) braino: Discover R1 Dismemberment G3 Postal\n\tbraino: I am exploring for space fish... Have you seen any out this way?\n\n21) Werebear: Move G1 Werebear Dubbiena\n\tWerebear: Oooohhh.... Space Fish? Oh, my. My peoples calls those "stilla huta". We send some peoples to come help you look. Theys very good with some saucy sweet. Yummy. Wes be right there, you wait, peoples, please?\n\n22) braino: Build G1 Statue\n\n23) Werebear: Build G2 Werebear\n\tWerebear: Is lonely in Dubienna. And that yellow star glow so brights. My peoples miss each other. We sends company and snacks.\n\n24) braino: Trade G1 Y1 Statue\n\tbraino: Ship is complete captain...\n\n25) Werebear: Sacrifice G3 Werebear\nBuild G1 Dubbiena\nBuild G2 Dubbiena\nBuild G3 Werebear\n\tWerebear: Did you find you the space fishes? My peoples wants to see.\n\n26) braino: Build Y2 Statue\n\tbraino: No fishes here...\n\n27) Werebear: Sacrifice B2 Dubbiena\nTrade G2 R2 Dubbiena\nTrade G3 Y3 Werebear\n\tWerebear: If you peoples are sure, we peoples believe you. We is sorely tempted to come see for our peoples selves, though.\n\tWerebear: ***buuurrrpppp***\r\nOh, my so sorry\n\n28) braino: Build Y3 Statue\n\tbraino: oh fishy fishy fishy, where are you sir fishy?\n\n29) Werebear: Discover G1 Dubbiena Y3 Anzen\n\n30) braino: Trade B3 G3 Braino\n\tbraino: "look at what I found Mom"\n\n31) Werebear: Build G2 Dubbiena\n\tWerebear: A nice new toy for you! Excellent. Our peoples are most pleased!\n\n32) braino: Discover Y1 Dismemberment B2 Hugs\n\n33) Werebear: Trade Y3 B3 Werebear\n\n34) braino: Trade Y2 B2 Statue\n\tWerebear: I see you peoples. You peoples be very sneaky wise, you are. You must have eaten of the fishies, we peoples think.\n\n35) Werebear: Trade B2 Y2 Kabbar\n\tWerebear: We think this big pretty blue be one of our lost peoples. Happy happy, we dance, we peoples party!\n\n36) braino: Move Y3 Statue Kabbar\n\n37) Werebear: Sacrifice G1 Anzen\nBuild Y3 Kabbar\n\tWerebear: We peoples appreciate making these peaceful trades with yous peoples. The Ilbesors are pleased that you take such good care of your wessels. We peoples likes the decorations. Fuzzy dices be a nice touch.\n\n38) braino: Move Y3 Kabbar Postal\n\tWerebear: Finally our peoples meet! What joy! Party party party!\n\n39) Werebear: Move Y3 Kabbar Statue\n\tWerebear: And you brought us a gift! So Sweet! Our peoples are very happy! Joy Joy! Party Party! Have some punch!\n\n40) braino: Build Y3 Postal\n\tbraino: "Just flying through"\n\tWerebear: Already our peoples miss yous peoples. 'twas so nice to have met yous.\n\n41) Werebear: Sacrifice R2 Dubbiena\nAttack B2S Statue\nAttack Y1S Statue\n\n42) braino: Move Y3 Postal Hugs\n\tWerebear: Fishy, fishy? Any space fishies here for our peoples?\n\n43) Werebear: Trade B2 R2 Statue\n\tbraino: no fishies here, I heard they were that way!\n\tWerebear: Wait, we find something. Ooohhh... the fishies ARE here... look, look deep into the fishies eyes. You peoples love the fishies, don't you? Now, just you peoples turn those little shippys around for the Ilbesors, like good peoples, you do. Yesss... Nice! Happy joy party!\n\n44) braino: Trade Y3 R3 Hugs\n\n45) Werebear: Build Y3 Kabbar\n\n46) braino: Build G1 Braino\n\n47) Werebear: Discover G1 Dubbiena B1 Bieb\n\n48) braino: Move R3 Hugs Bieb\n\tWerebear: Thankee!\n\tbraino: grrr....\n\n49) Werebear: Sacrifice Y3 Statue\nMove G1 Bieb Braino\nMove G2 Dubbiena Bieb\nMove G2 Bieb Braino\nCatastrophe Braino Green\n\n\tbraino: OH NOOOOsss!!! The fishies are gone!\n\tWerebear: And quite tasty, they were. Our peoples thanks yous peoples! yummmmmmmy! *smacks lips*\n\tWerebear: Thanks for playing! Good Game! Our peoples thanks yous peoples!\n\nHomeworlds Online (SDG# 14005)\nStarted: 2009.9.5, Ended: 2010.1.29\nParticipants: pedrop (S), JimTarnung (W), ZackStack (N), Mandrel (E)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Have a good game everyone!\n\n2) Mandrel: Homeworld Y3 B1 G3\n\n3) pedrop: Homeworld B3 Y2 G3\n\n4) JimTarnung: Homeworld Y1 B2 G3\n\tpedrop: The same to You.\n\n5) ZackStack: Build G1 Zackstack\n\n6) Mandrel: Build G1 Mandrel\n\n7) pedrop: Build G1 Pedrop\n\n8) JimTarnung: Build G1 Jimtarnung\n\n9) ZackStack: Trade G1 Y1 Zackstack\n\n10) Mandrel: Trade G1 R1 Mandrel\n\n11) pedrop: Discover G1 Pedrop B1 Ziemia\n\n12) JimTarnung: Discover G1 Jimtarnung B3 Blub\n\n13) ZackStack: Build G1 Zackstack\n\n14) Mandrel: Build G1 Mandrel\n\n15) pedrop: Build G1 Ziemia\n\n16) JimTarnung: Build G2 Jimtarnung\n\n17) ZackStack: Discover G1 Zackstack B3 Azure\n\n18) Mandrel: Build G2 Mandrel\n\n19) pedrop: Trade G1 Y1 Ziemia\n\n20) JimTarnung: Build G1 Blub\n\n21) ZackStack: Build G2 Zackstack\n\n22) Mandrel: Discover G1 Mandrel B2 Prosperity\n\n23) pedrop: Build G2 Ziemia\n\n24) JimTarnung: Trade G1 Y1 Blub\n\n25) ZackStack: Trade G2 Y2 Zackstack\n\n26) Mandrel: Build G1 Prosperity\n\n27) pedrop: Build G2 Pedrop\n\n28) JimTarnung: Sacrifice G3 Jimtarnung\nBuild G2 Blub\nBuild G3 Jimtarnung\nBuild Y1 Blub\n\n29) ZackStack: Build G3 Azure\n\n30) Mandrel: Trade G2 Y2 Mandrel\n\n31) pedrop: Trade G1 R1 Ziemia\n\n32) JimTarnung: Trade Y1 R1 Blub\n\n33) ZackStack: Sacrifice Y2 Zackstack\nMove G3 Azure Jimtarnung\nMove G1 Azure Jimtarnung\nCatastrophe Jimtarnung Green\n\n34) Mandrel: Build G1 Mandrel\n\tZackStack: My apologies Jim... you made this just a little too easy for me.\n\n35) pedrop: Build R1 Ziemia\n\n36) ZackStack: Build G1 Zackstack\n\n37) Mandrel: Build R2 Mandrel\n\n38) pedrop: Discover R1 Ziemia G3 Niebo\n\n39) ZackStack: Build Y1 Zackstack\n\n40) Mandrel: Trade G1 Y1 Prosperity\n\n41) pedrop: Build Y2 Ziemia\n\n42) ZackStack: Discover G1 Zackstack B3 Boo\n\n43) Mandrel: Build Y2 Prosperity\n\n44) pedrop: Trade Y1 B1 Ziemia\n\n45) ZackStack: Build G1 Zackstack\n\n46) Mandrel: Build G2 Prosperity\n\n47) pedrop: Sacrifice G3 Pedrop\nBuild G2 Ziemia\nBuild G3 Pedrop\nBuild Y1 Ziemia\n\n48) ZackStack: Build G3 Boo\n\n49) Mandrel: Trade G2 R2 Prosperity\n\n50) pedrop: Move Y2 Ziemia Niebo\n\n51) ZackStack: Move Y1 Zackstack Boo\n\n52) Mandrel: Move R2 Prosperity Blub\n\n53) pedrop: Move B1 Ziemia Niebo\n\n54) ZackStack: Sacrifice G3 Boo\nBuild Y2 Zackstack\nBuild Y3 Boo\nBuild G2 Boo\n\n55) Mandrel: Build G3 Prosperity\n\n56) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild Y3 Ziemia\nBuild Y3 Niebo\n\n57) ZackStack: Trade G2 R2 Boo\n\n58) Mandrel: Discover G1 Prosperity B1 Funland\n\n59) pedrop: Discover Y2 Niebo B1 Ogien\n\n60) ZackStack: Move Y3 Boo Funland\n\n61) Mandrel: Build G2 Funland\n\n62) pedrop: Sacrifice G3 Pedrop\nBuild G3 Pedrop\nBuild Y3 Ogien\nBuild R2 Niebo\n\n63) ZackStack: Sacrifice R2 Boo\nAttack G2E Funland\nAttack G1E Funland\n\n64) Mandrel: Move Y2 Prosperity Funland\n\n65) pedrop: Move R1 Niebo Ogien\n\n66) ZackStack: Sacrifice Y2 Zackstack\nMove G2 Funland Pedrop\nMove G1 Funland Pedrop\nCatastrophe Pedrop Green\n\n67) Mandrel: Build Y2 Prosperity\n\tZackStack: ... and then there were two... I think you have the edge Mandrel. But I'll go down swinging :-)\n\n68) ZackStack: Discover Y3 Funland G2 Rowan\n\tpedrop: Hehe... nice one:) But I think it should be a little harder for You to destroy my... but, of course its my fault...;) Let the best win now! :)\n\tZackStack: Hey pedrop! Thanks for taking your demise so well :-) Shoot me a one on one challenge if you up for some revenge! :-)\n\tpedrop: I probably will, but now I have to many games and to much work:) Take care.\n\tMandrel: I'm not so sure, still not entirely sure what I'm doing, not sure how I've managed to last this long!\n\n69) Mandrel: Move Y1 Prosperity Blub\n\tZackStack: Since I ended up whacking the other two... perhaps it was because I wasn't focusing on you... now I am <cue evil laughter> :-p\n\n70) ZackStack: Build Y2 Rowan\n\tMandrel: I feel the fear now, I can no longer hide in the shadows, it's maddening!\n\n71) Mandrel: Trade Y1 G1 Blub\n\n72) ZackStack: Move Y2 Rowan Mandrel\n\n73) Mandrel: Move Y2 Mandrel Rowan\n\n74) ZackStack: Sacrifice G1 Boo\nBuild Y1 Mandrel\n\tZackStack: Don't mind me... just visiting :-)\n\tMandrel: Phew! I was worried for a minute thhat you had ill intentions in your heart.\n\n75) Mandrel: Trade R2 G2 Blub\n\n76) ZackStack: Move Y3 Rowan Mandrel\nCatastrophe Mandrel Yellow\nCatastrophe Blub Green\n\tZackStack: Not at all... though I did invite the kid along :-p\n\n77) Mandrel: Build G1 Prosperity\n\tMandrel: As long as it's all in good will, welcome!\n\tZackStack: Do you want to undo that last move? I'm pretty sure I can cause a catastrophe in blub even though I don't have prescense there...\n\tZackStack: Got your geekmail! Here we go...\n\n78) ZackStack: Move G1 Zackstack Boo\n\tZackStack: Its not too often I get to type catastrophe twice on my turn! :-)\n\tMandrel: Oh dear. Things appear to have taken a slight turn for the worse.\n\n79) Mandrel: Discover G3 Prosperity Y3 Fear\n\tZackStack: You still have a major ship advantage. That should help.\n\n80) ZackStack: Build G1 Zackstack\n\n81) Mandrel: Build G1 Fear\n\n82) ZackStack: Move G1 Zackstack Fear\n\n83) Mandrel: Sacrifice Y2 Funland\nMove G1 Fear Zackstack\nMove G3 Fear Zackstack\n\n84) ZackStack: Attack G3E Zackstack\n\n85) Mandrel: Sacrifice G3 Mandrel\nBuild G2 Zackstack\nBuild Y1 Rowan\nBuild Y2 Prosperity\nCatastrophe Zackstack Green\n\tZackStack: Ooo.... That's not good...\n\n86) ZackStack: Sacrifice G1 Boo\nBuild Y2 Zackstack\n\n87) Mandrel: Discover Y2 Rowan G3 Winter\n\tMandrel: vengeance!\n\n88) ZackStack: Trade Y2 G2 Zackstack\n\tZackStack: Yup. Looking pretty ugly over here!\n\n89) Mandrel: Build Y2 Winter\n\n90) ZackStack: Build G1 Zackstack\n\n91) Mandrel: Build Y3 Rowan\n\n92) ZackStack: Trade Y1 G1 Boo\n\tZackStack: Merry Christmas!\n\tMandrel: You too (belatedly!)\r\n\n\n93) Mandrel: Build G2 Prosperity\n\n94) ZackStack: Build G3 Boo\n\n95) Mandrel: Sacrifice Y2 Prosperity\nMove Y3 Rowan Blub\nMove Y3 Blub Zackstack\n\n96) ZackStack: Sacrifice G3 Boo\nBuild Y1 Zackstack\nBuild Y2 Zackstack\nBuild G3 Boo\nCatastrophe Zackstack Yellow\n\n97) Mandrel: Sacrifice Y2 Winter\nMove G1 Prosperity Winter\nMove G1 Winter Zackstack\n\n98) ZackStack: Trade G1 Y1 Zackstack\n\tZackStack: I dont think I've ever created a catastrophe at my own homeworld before :-)\n\tMandrel: It has become a game of unusual catastrophes!\n\n99) Mandrel: Move Y2 Winter Zackstack\n\n100) ZackStack: Attack Y2E Zackstack\n\n101) Mandrel: Build G1 Zackstack\n\n102) ZackStack: Trade G2 R2 Zackstack\n\tZackStack: Why... thank you :-)\n\tMandrel: That wasn't very bright of me!\n\n103) Mandrel: Build G2 Mandrel\n\tZackStack: You are persistent though...\n\n104) ZackStack: Trade G3 Y3 Boo\n\n105) Mandrel: Build G3 Prosperity\n\n106) ZackStack: Move Y3 Boo Mandrel\n\n107) Mandrel: Trade G3 B3 Prosperity\n\n108) ZackStack: Attack G1E Zackstack\n\tZackStack: I am now humming the Darth Vader theme ;-)\n\tMandrel: Oh dear, I feel just like alderon.\n\n109) Mandrel: Build G3 Zackstack\n\tZackStack: Nice move with that trade!\n\n110) ZackStack: Sacrifice R2 Zackstack\nAttack R2E Mandrel\nAttack R1E Mandrel\n\n111) Mandrel: Move Y1 Rowan Mandrel\n\n112) ZackStack: Sacrifice R2 Mandrel\nAttack G2E Mandrel\nAttack G1E Mandrel\n\tZackStack: I sure hope I didn't miss an R3 lurking out there somewhere...\n\n113) Mandrel: Build G2 Zackstack\nCatastrophe Zackstack Green\n\tMandrel: Oh dear, its all looking rather grim.\n\tZackStack: Bought yourself another turn huh? :-)\n\n114) ZackStack: Attack Y1E Mandrel\n\n\tMandrel: I was lookin 4 the most dramatic final move I could muster, thats the best I could manage. Good game!\n\tZackStack: Well done. A catastrophe is always fun to go out on! Thanks for the game!\n\nHomeworlds Online (SDG# 14166)\nStarted: 2009.9.9, Ended: 2009.12.11\nParticipants: face (S), MrStickman (N)\nWinner: face\n\n1) MrStickman: Homeworld Y2 B3 G3\n\n2) face: Homeworld R3 B1 G3\n\tMrStickman: I can't promise a better performance than last time, unfortunately....\n\n3) MrStickman: Build G1 Mrstickman\n\n4) face: Build G1 Face\n\n5) MrStickman: Trade G1 R1 Mrstickman\n\n6) face: Trade G3 Y3 Face\n\n7) MrStickman: Build R1 Mrstickman\n\n8) face: Build Y1 Face\n\n9) MrStickman: Build R1 Mrstickman\n\n10) face: Build G1 Face\n\tMrStickman: Sorry for the delay; I was temporarily homeless.\n\tface: oh noes! is there a story worth telling?\n\n11) MrStickman: Discover R1 Mrstickman G1 Lorem\n\n12) face: Build G2 Face\n\tMrStickman: Not really; Candle brought a case of Ebola back from Burning Man and warned me not to be around.\n\n13) MrStickman: Build R2 Lorem\n\n14) face: Trade G2 R2 Face\n\n15) MrStickman: Build G2 Mrstickman\n\tMrStickman: So I injured my arm (no typing), then left town (no internet), then caught Martian Death Plague (no brain). Not the best month for using this site.\n\n16) face: Build G2 Face\n\tface: you injured your arm? what'd you do, get hit by a car?\n\n17) MrStickman: Discover R1 Mrstickman Y1 Ipsum\n\tMrStickman: Bicep strain, acquired through working at a job that I have.\n\n18) face: Discover Y1 Face B2 Waste\n\n19) MrStickman: Discover R1 Ipsum G3 Dolor\n\n20) face: Discover R2 Face Y2 Plaster\n\n21) MrStickman: Build R2 Dolor\n\n22) face: Move G2 Face Plaster\n\n23) MrStickman: Build R3 Mrstickman\n\n24) face: Build R3 Plaster\n\n25) MrStickman: Discover G2 Mrstickman B1 Sit\n\n26) face: Move G1 Face Waste\n\n27) MrStickman: Trade R1 Y1 Mrstickman\n\n28) face: Discover R2 Plaster Y1 Blitz\n\n29) MrStickman: Build R1 Mrstickman\n\n30) face: Build Y2 Face\n\n31) MrStickman: Move Y1 Mrstickman Lorem\n\n32) face: Build Y3 Waste\n\tMrStickman: You're in town in like two days for Reversi, right?\n\tface: ha. ha. ha.\n\n33) MrStickman: Build Y3 Lorem\n\n34) face: Move R3 Plaster Sit\n\n35) MrStickman: Sacrifice G2 Sit\nBuild G2 Mrstickman\nPass\n\n36) face: Trade Y2 B2 Face\n\n37) MrStickman: Discover Y1 Lorem G2 Amet\n\n38) face: Build G3 Plaster\n\n39) MrStickman: Build Y2 Amet\n\n40) face: Move B2 Face Plaster\n\n41) MrStickman: Move Y1 Amet Dolor\n\n42) face: Build B1 Plaster\n\n43) MrStickman: Trade R3 B3 Mrstickman\n\n44) face: Sacrifice G2 Plaster\nBuild G2 Plaster\nBuild R3 Blitz\n\n45) MrStickman: Move B3 Mrstickman Lorem\n\n46) face: Move B1 Plaster Blitz\n\n47) MrStickman: Build B2 Lorem\n\n48) face: Build B3 Plaster\n\n49) MrStickman: Move B3 Lorem Amet\n\tface: lol @ global reserve stash.\n\n50) face: Move G1 Waste Blitz\n\n51) MrStickman: Move R1 Lorem Amet\n\n52) face: Sacrifice Y3 Waste\nMove G1 Blitz Mrstickman\nMove G2 Plaster Blitz\nMove G2 Blitz Mrstickman\nCatastrophe Mrstickman Green\n\n53) MrStickman: Move Y3 Lorem Mrstickman\n\n54) face: Build Y3 Face\n\n55) MrStickman: Sacrifice Y3 Mrstickman\nMove Y1 Dolor Amet\nMove Y2 Amet Face\nMove Y1 Amet Face\nCatastrophe Face Y\n\n56) face: Move R3 Blitz Mrstickman\n\n\tMrStickman: Double monkey fuck damn christpunching son of a bitch.\r\n\r\nI mean, good game! Wanna start a new game (of something else?)\n\tface: worth noting that i took the time to set up the board with real pieces about three moves back and was actually hoping you would do exactly what you did.\n\nHomeworlds Online (SDG# 14188)\nStarted: 2009.9.10, Ended: 2009.10.21\nParticipants: Uglyfoot (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld G3 Y1 B3\n\n2) Uglyfoot: Homeworld Y3 B2 G3\n\tWerebear: Greetings! Thanks for accepting my challenge. I see that you do not always open Banker, so I will not, either. If you'd like to, that's cool, but that's of course up to you. Game on, Cap'n Uglyfoot!\n\n3) Werebear: Build B1 Werebear\n\tUglyfoot: greetings. open banker?\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Werebear: Discover B1 Werebear R2 Juang\n\n6) Uglyfoot: Discover G1 Uglyfoot R1 Basestar\n\n7) Werebear: Trade B1 G1 Juang\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) Werebear: Build G2 Juang\n\n10) Uglyfoot: Build G2 Basestar\n\tWerebear: Oy, the joys of a red system... argh.\n\n11) Werebear: Sacrifice G1 Juang\nBuild B1 Werebear\n\n12) Uglyfoot: Trade G1 B1 Uglyfoot\n\n13) Werebear: Trade B1 Y1 Werebear\n\n14) Uglyfoot: Move B1 Uglyfoot Basestar\n\n15) Werebear: Move Y1 Werebear Juang\n\n16) Uglyfoot: Trade G2 Y2 Basestar\n\n17) Werebear: Build B1 Werebear\n\n18) Uglyfoot: Build G1 Uglyfoot\n\n19) Werebear: Move B1 Werebear Juang\n\n20) Uglyfoot: Trade G1 R1 Uglyfoot\n\n21) Werebear: Build G1 Juang\n\n22) Uglyfoot: Discover B1 Basestar G2 Forward\n\n23) Werebear: Build B1 Werebear\n\n24) Uglyfoot: Build B2 Forward\n\n25) Werebear: Trade B3 R3 Werebear\n\n26) Uglyfoot: Trade B2 R2 Forward\n\n27) Werebear: Build B2 Werebear\n\n28) Uglyfoot: Build G1 Uglyfoot\n\n29) Werebear: Sacrifice G2 Juang\nBuild B2 Werebear\nBuild B3 Juang\n\n30) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild B3 Forward\nBuild G2 Basestar\nBuild G2 Uglyfoot\n\n31) Werebear: Build G3 Juang\n\tWerebear: Oops... sorry! Silly me...\n\n32) Uglyfoot: Sacrifice Y2 Basestar\nMove B1 Forward Werebear\nMove G1 Basestar Forward\nCatastrophe Werebear B\n\n33) Werebear: Build G3 Juang\n\n34) Uglyfoot: Build R1 Forward\n\tWerebear: Touche'...\n\n35) Werebear: Move B3 Juang Werebear\n\n36) Uglyfoot: Trade R2 Y2 Forward\n\n37) Werebear: Discover G3 Juang Y1 Pisang\n\n38) Uglyfoot: Sacrifice Y2 Forward\nMove B3 Forward Pisang\nMove B3 Pisang Uglyfoot\n\n39) Werebear: Sacrifice G3 Juang\nBuild G3 Juang\nBuild R2 Werebear\nBuild Y2 Juang\n\n40) Uglyfoot: Trade G2 Y2 Uglyfoot\n\n41) Werebear: Discover Y2 Juang B1 Bidla\n\n42) Uglyfoot: Build R2 Uglyfoot\n\n43) Werebear: Discover R2 Werebear Y2 Matahari\n\n44) Uglyfoot: Move Y2 Uglyfoot Basestar\n\n45) Werebear: Sacrifice G3 Juang\nBuild Y3 Bidla\nBuild Y3 Juang\nBuild R3 Matahari\n\n46) Uglyfoot: Build R3 Forward\n\n47) Werebear: Build B1 Juang\n\n48) Uglyfoot: Discover G2 Basestar B3 Outback\n\n49) Werebear: Move B1 Juang Pisang\n\n50) Uglyfoot: Build G2 Outback\n\n51) Werebear:\nBuild G3 Juang\n\n52) Uglyfoot: Move Y2 Basestar Forward\n\n53) Werebear: Sacrifice G3 Juang\nBuild G3 Juang\nBuild B2 Juang\nBuild B2 Pisang\n\n54) Uglyfoot: Move R1 Forward Werebear\n\n55) Werebear: Discover B1 Juang R1 Pedang\n\n56) Uglyfoot: Move R1 Uglyfoot Pisang\n\n57) Werebear: Sacrifice Y3 Juang\nMove R3 Matahari Bidla\nMove B1 Pedang Uglyfoot\nMove B1 Pisang Uglyfoot\nCatastrophe Uglyfoot Blue\n\n58) Uglyfoot: Build Y3 Forward\n\n59) Werebear: Sacrifice Y2 Bidla\nMove R3 Bidla Uglyfoot\nMove G3 Pisang Uglyfoot\n\n60) Uglyfoot: Sacrifice Y3 Forward\nMove R3 Forward Werebear\nMove R1 Pisang Forward\nMove R1 Forward Werebear\nCatastrophe Werebear R\n\n61) Werebear: Sacrifice R2 Matahari\nAttack R2S Uglyfoot\nAttack G1S Uglyfoot\n\n\tWerebear: Thank you very much for playing!\n\nHomeworlds Online (SDG# 14194)\nStarted: 2009.9.14, Ended: 2011.5.21\nParticipants: braino (S), Werebear (N)\nWinner: Werebear\n\n1) Werebear: Homeworld G1 Y3 B3\n\tWerebear: Oy, we meet again! Greetings, old friend!\n\n2) braino: Homeworld B3 Y1 G3\n\n3) Werebear: Build B1 Werebear\n\tbraino: "No, No, No"\r\n\n\n4) braino: Build G1 Braino\n\tWerebear: "Yes, Yes, Yes!"\n\n5) Werebear: Discover B1 Werebear Y2 Gobon\n\tbraino: "Oh, No!"\n\n6) braino: Discover G1 Braino Y2 Quinn\n\tWerebear: *tap tap tap*\r\n*tap tapity tap tap tap*\r\n"Attention! We come in Peace!\r\n(That's the name of our little ship. Ain't she pretty?)\n\n7) Werebear: Trade B1 G1 Gobon\n\tbraino: "Know thy neighbor..."\n\n8) braino: Build G2 Braino\n\tWerebear: You know the old saw about "Imitation is the best flattery", right?\n\n9) Werebear: Build B1 Werebear\n\tbraino: "Know... of course we know. We know everything!"\n\n10) braino: Discover G2 Braino Y2 Cribbs\n\n11) Werebear: Build G2 Gobon\n\tbraino: "No Justice, No Peace!"\n\n12) braino: Build G2 Braino\n\tWerebear: "Know Justice. Know Peace."\r\nPreach it, brother...\n\n13) Werebear: Sacrifice B1 Werebear\nTrade G1 B1 Gobon\n\tbraino: "Fools!"\n\n14) braino: Sacrifice G3 Braino\nBuild G1 Cribbs\nBuild G3 Quinn\nBuild G3 Braino\n\n15) Werebear: Build G3 Gobon\n\tbraino: "What do you have in your sleeve?"\n\n16) braino: Trade G3 Y3 Braino\n\tWerebear: "There is nothing up my sleeve! Nothing!"\n\n17) Werebear: Discover G2 Gobon Y3 Stilla\n\tbraino: I think I see something, let me get a closer look...\n\n18) braino: Sacrifice G3 Quinn\nBuild G3 Quinn\nBuild G3 Braino\nBuild Y1 Braino\n\tbraino: "..oops!"\n\n19) Werebear: Build B1 Gobon\n\tWerebear: Nice save\n\n20) braino: Sacrifice Y3 Braino\nMove G1 Cribbs Werebear\nMove G2 Cribbs Werebear\nMove G1 Quinn Werebear\nCatastrophe Werebear G\n\n21) Werebear: Move B1 Gobon Stilla\n\n22) braino: Trade G2 R2 Braino\n\n23) Werebear: Trade B1 R1 Gobon\n\tbraino: "why is it so quiet in here..."\n\n24) braino: Build Y1 Braino\n\n25) Werebear: Build G1 Gobon\n\n26) braino: Discover Y1 Braino B2 Jackson\n\n27) Werebear: Discover G1 Gobon Y3 Gwardja\n\tWerebear: "huh? Hrmbph... eh? You talking to me?"\n\n28) braino: Build R1 Braino\n\n29) Werebear: Trade G2 Y2 Stilla\n\n30) braino: Move G3 Quinn Stilla\n\n31) Werebear: Discover Y2 Stilla G2 Andar\n\tWerebear: I is back.\n\n32) braino: Sacrifice R1 Braino\nAttack B1 Stilla\n\tbraino: I was hoping that you weren't dead...\n\n33) Werebear: Build Y2 Andar\n\n34) braino: Build R1 Braino\n\n35) Werebear: Discover Y2 Andar R3 Strajk\n\tbraino: Nice move. I like it.\r\n\r\nMade me think....\n\n36) braino: Trade B1 R1 Stilla\n\n37) Werebear: Sacrifice G1 Gwardja\nBuild Y3 Strajk\n\n38) braino: Discover Y1 Braino G2 Anderson\n\n39) Werebear: Build R2 Gobon\n\n40) braino: Move R1 Braino Jackson\n\n41) Werebear: Move R2 Gobon Werebear\n\n42) braino: Sacrifice G3 Stilla\nBuild R2 Braino\nBuild R3 Stilla\nBuild R3 Jackson\n\n43) Werebear: Build G1 Gobon\n\n44) braino: Trade R3 G3 Jackson\n\n45) Werebear: Build R3 Gobon\n\n46) braino: Move R1 Stilla Anderson\n\n47) Werebear: Move G3 Gobon Werebear\n\n48) braino: Move R3 Stilla Andar\n\n49) Werebear: Sacrifice Y2 Andar\nDiscover Y2 Strajk G1 Anggur\nDiscover G1 Gobon Y3 Bersinar\n\tbraino: Sorry 'bout that\n\tbraino: more r3 Stilla Andar\n\n50) braino: Build Y2 Jackson\n\tWerebear: Welcome back.... Some party, eh?\n\n51) Werebear: Sacrifice G1 Bersinar\nBuild Y3 Strajk\n\n52) braino: Sacrifice Y2 Jackson\nMove Y1 Jackson Strajk\nMove Y1 Anderson Strajk\nCatastrophe Strajk Y\n\n53) Werebear: Build R3 Werebear\n\n54) braino: Trade R2 Y2 Braino\n\n55) Werebear: Build B1 Werebear\n\n56) braino: Move Y2 Braino Jackson\n\n57) Werebear: Build G1 Werebear\n\n58) braino: Build Y1 Jackson\n\n59) Werebear: Move R3 Werebear Anggur\n\n60) braino: Move Y1 Jackson Braino\n\n61) Werebear: Trade B3 Y3 Werebear\n\n62) braino: Sacrifice G3 Jackson\nBuild Y1 Jackson\nBuild Y3 Jackson\nBuild R2 Jackson\n\n63) Werebear: Move Y2 Anggur Jackson\nCatastrophe Jackson Yellow\n\n64) braino: Build Y1 Braino\n\n65) Werebear: Move Y3 Werebear Anderson\n\tbraino: damn. I can't undo twice!\n\n66) braino: Move Y1 Braino Andar\n\tWerebear: Whew... much neater now.\n\n67) Werebear: Build Y2 Anderson\n\n68) braino: Build Y2 Andar\n\tWerebear: Been meaning to visit. Look, I brought coffee-cake!\n\n69) Werebear: Move Y2 Anderson Anggur\n\n\nHomeworlds Online (SDG# 14016)\nVariants: "Unrated, Sinister, Hard time"\nStarted: 2009.9.19, Ended: 2009.11.7\nParticipants: JimTarnung (S), koikaze (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) JimTarnung: Homeworld B3 Y1 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\tagentofchaos: Enjoy the game! I suppose that other guy didn't want a 3-player game...but then why did he sign up in the first place?? I can't figure out some players...\n\n4) JimTarnung: Build G1 Jimtarnung\n\tJimTarnung: I hope you'll enjoy it too. I'm a bloody Beginner so don't expect a lot..\n\tagentofchaos: It's all a learning experience, have fun along the way :-)\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) JimTarnung: Build G1 Jimtarnung\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) JimTarnung: Discover G1 Jimtarnung B2 Blu\n\n9) agentofchaos: Discover G1 Agentofchaos Y3 Dagon7\n\n10) JimTarnung: Trade G1 R1 Jimtarnung\n\n11) agentofchaos: Trade Y1 R1 Agentofchaos\n\n12) JimTarnung: Build G1 Blu\n\n13) agentofchaos: Build R1 Agentofchaos\n\n14) JimTarnung: Trade G1 Y1 Blu\n\n15) agentofchaos: Trade R1 Y1 Agentofchaos\n\n16) JimTarnung: Build G1 Blu\n\n17) agentofchaos: Move R1 Agentofchaos Dagon7\n\n18) JimTarnung: Trade G1 R1 Blu\n\n19) agentofchaos: Build G1 Agentofchaos\n\n20) JimTarnung: Discover Y1 Blu G3 Gren\n\n21) agentofchaos: Build G1 Agentofchaos\n\n22) JimTarnung: Build G2 Blu\n\n23) agentofchaos: Build G2 Dagon7\n\n24) JimTarnung: Trade G2 Y2 Blu\n\n25) agentofchaos: Trade G1 B1 Agentofchaos\n\n26) JimTarnung: Build Y1 Blu\n\n27) agentofchaos: Build Y2 Agentofchaos\n\n28) JimTarnung: Build Y2 Gren\n\n29) agentofchaos: Discover Y2 Agentofchaos B3 Trigger\n\n30) JimTarnung: Trade Y1 B1 Blu\n\n31) agentofchaos: Move B1 Agentofchaos Dagon7\n\n32) JimTarnung: Move B1 Blu Gren\n\n33) agentofchaos: Discover B1 Dagon7 Y2 Kakron4\n\n34) JimTarnung: Discover Y2 Blu R3 Re\n\n35) agentofchaos: Sacrifice G1 Dagon7\nBuild B1 Kakron4\n\n\nHomeworlds Online (SDG# 14116)\nStarted: 2009.10.9, Ended: 2009.11.4\nParticipants: ExKirby (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: howdy\n\n2) ExKirby: Homeworld Y3 G1 B3\n\tExKirby: Hey, how do you make a homeworld? I'm new to this, so...\n\n3) TwoShort: Build G1 Twoshort\n\tExKirby: NM, sorted.\n\n4) ExKirby: Build B1 Exkirby\n\tTwoShort: Out of curiosity, have you played Homeworlds before? (off-line)\n\tExKirby: No, this would be my first game.\n\n5) TwoShort: Build G1 Twoshort\n\n6) ExKirby: Trade B1 Y1 Exkirby\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\tTwoShort: In that case, I'll throw out a few strategy tips... As second player, you usually want a star of the size I didn't use so we're three hops from each other; this way we're two. Also, most people think the 1-2 homeworld is best; I took the 1-3 homeworld partly to be nice :)\r\n Also, you usually want to start with a green ship.\n\tExKirby: OK... do you know how to make a new system?\n\n8) ExKirby: Discover Y1 Exkirby G2 Newstarname\n\tTwoShort: You could, for example, move your y1 to a new g2 with:\r\ndiscover y1 ExKirby g2 NewStarName\n\n9) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\tExKirby: Thanks.\n\n10) ExKirby: Build B1 Exkirby\n\n11) TwoShort: Build G1 Twoshort\n\n12) ExKirby: Move B1 Exkirby Bluestar\n\n13) TwoShort: Trade G1 Y1 Twoshort\n\n\nHomeworlds Online (SDG# 14163)\nStarted: 2009.10.13, Ended: 2009.11.2\nParticipants: nycavri (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Hi Avri! Have a good game!\n\n2) nycavri: Homeworld B3 Y2 G3\n\tnycavri: You too. I'm extraordinarily ordinary at this game . . .\n\n3) ZackStack: Build G1 Zackstack\n\n4) nycavri: Build G1 Nycavri\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) nycavri: Build G1 Nycavri\n\n7) ZackStack: Discover Y1 Zackstack G3 Blob\n\n8) nycavri: Trade G1 Y1 Nycavri\n\n9) ZackStack: Build G1 Zackstack\n\n10) nycavri: Trade G1 R1 Nycavri\n\tZackStack: At this point in live games I start cackling maniacly to unnerve my opponent :-)\n\tnycavri: Consider your opponent unnerved . . .\n\n11) ZackStack: Build G1 Zackstack\n\n12) nycavri: Discover Y1 Nycavri B1 Deacon\n\n13) ZackStack: Trade G1 Y1 Zackstack\n\n14) nycavri: Build G1 Nycavri\n\n15) ZackStack: Sacrifice G3 Zackstack\nBuild Y2 Blob\nBuild Y2 Zackstack\nBuild Y3 Zackstack\n\n16) nycavri: Sacrifice G1 Nycavri\nBuild Y3 Deacon\n\n17) ZackStack: Sacrifice Y2 Zackstack\nMove Y1 Blob Deacon\nMove Y2 Blob Deacon\nCatastrophe Deacon Yellow\n\n18) nycavri: Trade R1 Y1 Nycavri\n\n19) ZackStack: Build G1 Zackstack\n\n20) nycavri: Discover Y1 Nycavri B1 May\n\n21) ZackStack: Discover G1 Zackstack B3 June\n\n22) nycavri: Discover Y1 May B3 Mercury\n\tnycavri: Funny man . . .\n\n23) ZackStack: Trade Y1 R1 Zackstack\n\n24) nycavri: Build G1 Nycavri\n\n25) ZackStack: Build G2 June\n\n26) nycavri: Discover G1 Nycavri Y1 Taylor\n\n27) ZackStack: Trade G2 Y2 June\n\n28) nycavri: Build G2 Nycavri\n\n29) ZackStack: Sacrifice Y2 June\nMove G1 June Taylor\nMove G1 Taylor Nycavri\n\tZackStack: Either you lured me in with the "extrodinarily ordinary" comment and I'm in trouble... or you missed this...\n\n30) nycavri: Trade G2 R2 Nycavri\n\n31) ZackStack: Build G2 Nycavri\n\tnycavri: I saw that, but didn't I also have the counter (this move) set up . . . ?\n\n32) nycavri: Trade G3 Y3 Nycavri\n\tZackStack: Very true. I think I thought I had more greens clustered around my Homeworld :-)\n\n33) ZackStack: Sacrifice R1 Zackstack\nAttack R2 Nycavri\n\n34) nycavri: Move G1 Taylor Mercury\n\n35) ZackStack: Trade Y3 B3 Zackstack\n\n36) nycavri: Build G2 Mercury\n\tZackStack: Remember that maniacal laughing from earlier? :-) You'll have to school me in pikemen when we're done with this. Some practice as the tournament begins wouldn't hurt!\n\n37) ZackStack: Sacrifice B3 Zackstack\nTrade G1 Y1 Nycavri\nTrade G2 Y2 Nycavri\nTrade R2 Y2 Nycavri\nCatastrophe Nycavri Yellow\n\tZackStack: Thanks for the game! That's one of the emptier end game boards I've seen...\n\n\nHomeworlds Online (SDG# 14412)\nStarted: 2009.10.21, Ended: 2010.1.23\nParticipants: face (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld B2 Y1 G3\n\n2) face: Homeworld R3 B2 G3\n\n3) Mandrel: Build G1 Mandrel\n\n4) face: Build G1 Face\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) face: Trade G3 Y3 Face\n\n7) Mandrel: Build G1 Mandrel\n\n8) face: Build G1 Face\n\n9) Mandrel: Discover G1 Mandrel Y3 Awesome\n\n10) face: Build G2 Face\n\n11) Mandrel: Build G2 Mandrel\n\n12) face: Trade G1 R1 Face\n\n13) Mandrel: Trade G2 R2 Mandrel\n\n14) face: Discover G2 Face B1 Tank\n\n15) Mandrel: Build G1 Awesome\n\n16) face: Build G2 Face\n\n17) Mandrel: Build G2 Mandrel\n\n18) face: Build G3 Tank\n\n19) Mandrel: Trade G2 Y2 Mandrel\n\n20) face: Trade G3 Y3 Tank\n\n21) Mandrel: Move Y1 Mandrel Awesome\n\n22) face: Move R1 Face Tank\n\n23) Mandrel: Discover G1 Awesome B1 Honour\n\n24) face: Build Y1 Tank\n\n25) Mandrel: Move G1 Awesome Honour\n\n26) face: Discover G2 Face R1 Blitz\n\n27) Mandrel: Build G2 Mandrel\n\n28) face: Build G3 Blitz\n\n29) Mandrel: Trade G2 B2 Mandrel\n\n30) face: Discover Y1 Tank G3 Plaster\n\n31) Mandrel: Move Y2 Mandrel Plaster\n\n32) face: Build Y2 Tank\n\n33) Mandrel: Move Y1 Awesome Tank\n\n34) face: Discover Y3 Tank R3 Smash\n\n35) Mandrel: Build Y2 Plaster\n\n36) face: Attack Y1 Tank\n\n37) Mandrel: Build G2 Mandrel\n\n38) face: Sacrifice G3 Blitz\nBuild G3 Blitz\nBuild Y3 Smash\nBuild R1 Tank\n\n39) Mandrel: Move G2 Mandrel Plaster\n\n40) face: Discover Y1 Tank R3 Waste\n\n41) Mandrel: Move G2 Plaster Blitz\n\n42) face: Sacrifice G2 Blitz\nBuild G2 Tank\nPass\n\n43) Mandrel: Build R2 Mandrel\n\n44) face: Attack G2 Blitz\n\n45) Mandrel: Move R2 Mandrel Waste\n\n46) face: Move Y1 Plaster Mandrel\n\n47) Mandrel: Move Y2 Plaster Honour\n\n48) face: Move Y1 Waste Mandrel\n\n49) Mandrel: Build R2 Mandrel\n\n50) face: Move Y3 Smash Mandrel\nCatastrophe Mandrel Yellow\n\n51) Mandrel: Trade G3 Y3 Mandrel\n\n52) face: Move Y3 Smash Blitz\n\n53) Mandrel: Build Y1 Honour\n\n54) face: Discover R1 Tank B3 Intoxicate\n\n55) Mandrel: Build Y1 Plaster\n\n56) face: Sacrifice G3 Blitz\nBuild G3 Blitz\nBuild R3 Intoxicate\nBuild Y1 Tank\n\n57) Mandrel: Sacrifice Y2 Plaster\nMove Y1 Honour Face\nMove Y2 Honour Face\n\n58) face: Trade Y3 B3 Face\n\n59) Mandrel: Sacrifice B2 Mandrel\nTrade Y2 B2 Face\nTrade Y1 B1 Face\nCatastrophe Face Blue\n\n60) face: Move Y3 Blitz Face\n\n61) Mandrel: Sacrifice Y1 Plaster\nMove G1 Honour Mandrel\n\tface: haha i'm an idiot... that was a very nice move.\n\n62) face: Build Y1 Face\n\n63) Mandrel: Move R2 Mandrel Face\n\tMandrel: Kinda came from nowhere, spot of luck!\n\n64) face: Attack R2 Face\n\n65) Mandrel: Sacrifice Y3 Mandrel\nMove R2 Mandrel Face\nMove R2 Waste Mandrel\nMove R2 Mandrel Face\nCatastrophe Face Red\n\tface: wow i royally screwed that one up... i have been sorely outplayed. good game.\n\n\tMandrel: Not sure how that happened really, think I just had a run of luck at the end there, good game!\n\nHomeworlds Online (SDG# 14123)\nStarted: 2009.10.22, Ended: 2009.12.13\nParticipants: face (S), MikeYarrum (N)\nWinner: face\n\n\nHomeworlds Online (SDG# 14352)\nStarted: 2009.10.22, Ended: 2009.11.14\nParticipants: TwoShort (S), face (N)\nWinner: TwoShort\n\n1) face: Homeworld R3 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) face: Build G1 Face\n\n4) TwoShort: Build G1 Twoshort\n\n5) face: Trade G3 Y3 Face\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) face: Build Y1 Face\n\n8) TwoShort: Build G1 Twoshort\n\n9) face: Trade Y1 R1 Face\n\n10) TwoShort: Build Y1 Twoshort\n\n11) face: Discover R1 Face Y1 Plaster\n\n12) TwoShort: Build Y2 Twoshort\n\n13) face: Build Y2 Face\n\n14) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n15) face: Move Y2 Face Plaster\n\n16) TwoShort: Build G1 Twoshort\n\n17) face: Build G2 Face\n\n18) TwoShort: Discover G1 Twoshort B2 Bonanza\n\n19) face: Move G2 Face Plaster\n\n20) TwoShort: Trade Y2 R2 Twoshort\n\n21) face: Build Y2 Face\n\n22) TwoShort: Build Y2 Grogar\n\n23) face: Discover Y2 Face B1 Trash\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bonanza\nBuild G3 Twoshort\nBuild Y3 Twoshort\n\n25) face: Build Y3 Face\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Bonanza\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n27) face: Sacrifice Y2 Trash\nMove G2 Plaster Grogar\nMove G2 Grogar Twoshort\nCatastrophe Twoshort Green\n\n28) TwoShort: Sacrifice Y2 Grogar\nMove G3 Bonanza Plaster\nMove G1 Bonanza Twoshort\n\n29) face: Sacrifice Y2 Plaster\nDiscover R1 Plaster G2 Buzz\nDiscover Y3 Face R1 Tank\n\n30) TwoShort: Discover Y1 Grogar G3 Gonzo\n\n31) face: Build Y2 Face\n\n32) TwoShort: Build G1 Plaster\n\n33) face: Build R2 Buzz\n\n34) TwoShort: Discover R2 Twoshort Y2 Yolonda\n\n35) face: Build R2 Buzz\n\n36) TwoShort: Sacrifice G3 Plaster\nBuild G2 Twoshort\nBuild G3 Bonanza\nBuild G3 Plaster\n\n37) face: Move Y3 Tank Yolonda\n\n38) TwoShort: Move R2 Yolonda Plaster\n\n39) face: Sacrifice Y3 Yolonda\nMove R2 Buzz Twoshort\nMove R2 Buzz Twoshort\nMove R1 Buzz Twoshort\nCatastrophe Twoshort Red\n\n40) TwoShort: Trade G3 R3 Bonanza\n\tface: my gut tells me that move puts me in too weak a position, but let's see.\n\n41) face: Trade Y2 B2 Face\n\tTwoShort: I agree with your gut :) But I don't think you had a better option.\n\n42) TwoShort: Sacrifice Y3 Twoshort\nMove R3 Bonanza Plaster\nMove R3 Plaster Face\nMove G3 Plaster Face\n\n43) face: Build G2 Face\n\tface: very nice.\n\n44) TwoShort: Sacrifice R3 Face\nAttack Y3 Face\nAttack G2 Face\nAttack B2 Face\n\n45) face: Build G3 Face\n\n46) TwoShort: Pass\nCatastrophe Face Green\n\tTwoShort: Thanks for the game!\n\tface: going out on my terms!\n\tface: ha. was going to cause a green catastrophe in face, but it says "You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn."\n\n\tTwoShort: Don't worry, I'll help you out :)\n\nHomeworlds Online (SDG# 14386)\nStarted: 2009.10.22, Ended: 2009.11.11\nParticipants: ZackStack (S), face (N)\nWinner: ZackStack\n\n1) face: Homeworld R3 B2 G3\n\n2) ZackStack: Homeworld B1 R2 G3\n\tZackStack: Hey Face! Thanks for the game. Have a good one!\n\n3) face: Build G1 Face\n\n4) ZackStack: Build G1 Zackstack\n\n5) face: Trade G3 Y3 Face\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) face: Build Y1 Face\n\n8) ZackStack: Build G1 Zackstack\n\n9) face: Build G1 Face\n\n10) ZackStack: Discover G1 Zackstack B3 Crush\n\n11) face: Build G2 Face\n\n12) ZackStack: Build G2 Zackstack\n\n13) face: Trade G1 R1 Face\n\n14) ZackStack: Build Y1 Zackstack\n\n15) face: Discover Y1 Face G1 Trash\n\n16) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Zackstack\nBuild G3 Zackstack\nBuild G3 Crush\n\n17) face: Build G3 Face\n\n18) ZackStack: Trade G2 R2 Zackstack\n\n19) face: Move G3 Face Trash\n\n20) ZackStack: Move R2 Zackstack Crush\n\n21) face: Move R1 Face Trash\n\n22) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Crush\nBuild G3 Zackstack\nBuild Y2 Zackstack\n\n23) face: Trade G2 B2 Face\n\n24) ZackStack: Trade G2 Y2 Crush\n\n25) face: Discover G3 Trash Y3 Plaster\n\n26) ZackStack: Discover G3 Crush B1 Stomp\n\n27) face: Discover Y1 Trash R3 Buzz\n\n28) ZackStack: Move Y2 Zackstack Buzz\n\n29) face: Discover Y1 Buzz B2 Waste\n\n30) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Stomp\nBuild G2 Crush\nBuild G3 Zackstack\n\n31) face: Move G3 Plaster Waste\n\n32) ZackStack: Move R2 Crush Trash\n\n33) face: Trade B2 R2 Face\n\n34) ZackStack: Attack R1 Trash\n\n35) face: Discover R2 Face R1 Plaster\n\n36) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild Y2 Crush\nBuild Y3 Buzz\n\n37) face: Build Y3 Waste\n\n38) ZackStack: Move Y3 Buzz Plaster\n\n39) face: Sacrifice Y1 Waste\nMove R2 Plaster Waste\n\n40) ZackStack: Move G1 Crush Plaster\n\n41) face: Build Y1 Face\n\n42) ZackStack: Move Y2 Crush Trash\n\n43) face: Discover Y1 Face R1 Tank\n\n44) ZackStack: Trade G3 R3 Stomp\n\n45) face: Build G3 Waste\n\n46) ZackStack: Sacrifice Y3 Plaster\nMove R3 Stomp Face\nMove R2 Trash Face\nMove R1 Trash Face\nCatastrophe Face Red\n\tZackStack: You just had to make me do this the hard way didn't you? :-)\n\n47) face: Sacrifice G3 Waste\nBuild G3 Waste\nBuild Y3 Tank\nBuild R1 Waste\n\tface: i do my best.\n\n48) ZackStack: Trade Y1 B1 Zackstack\n\n49) face: Move G3 Waste Plaster\n\n50) ZackStack: Move B1 Zackstack Buzz\n\n51) face: Move G3 Waste Buzz\n\n52) ZackStack: Sacrifice Y2 Buzz\nMove B1 Buzz Trash\nMove G1 Plaster Face\n\n53) face: Move R2 Waste Trash\n\n54) ZackStack: Sacrifice G2 Zackstack\nBuild B2 Trash\nBuild B3 Trash\n\tZackStack: I knew letting you get that large advantage was going to be ugly :-)\n\n55) face: Sacrifice G3 Buzz\nBuild G2 Plaster\nBuild R2 Waste\nBuild R3 Trash\n\tface: maybe. but you're in a good enough position that you can afford a mistake or two.\n\n56) ZackStack: Sacrifice Y2 Trash\nMove B1 Trash Face\nMove B2 Trash Face\n\tZackStack: I do try to keep the pressure on! :-) Though you're doing a good job of that yourself!\n\n57) face: Sacrifice Y3 Tank\nMove G3 Plaster Face\nMove G2 Plaster Face\nDiscover R1 Waste B3 Goodgame\nCatastrophe Face Green\n\tZackStack: Eek!\n\n58) ZackStack: Sacrifice Y1 Zackstack\nMove B3 Trash Face\nCatastrophe Face Blue\n\tface: was the "eek" just for show? i'm not sure if i can get out of this... should have build another r3 instead of the g2. may have to think about this one for a bit.\n\tZackStack: It was my initial reaction to the large red ships popping up all over my space... As you say, I might have found my one way out :-)\n\n\tface: after staring at the board off and on for a couple of days, i figure you got me good. very well played. care to play another? i'll try to be more competative.\n\tZackStack: Dont sell yourself short! You played the ship supply part of the game better than I did... I just got after your Homeworld a little sooner. I'm looking forward to the rematch!\n\nHomeworlds Online (SDG# 14423)\nStarted: 2009.10.24, Ended: 2009.10.26\nParticipants: TwoShort (S), winner (N)\nWinner: TwoShort\n\n1) winner: Homeworld G1 B2 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) winner: Build Y1 Winner\n\n4) TwoShort: Build G1 Twoshort\n\n5) winner: Build Y1 Winner\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) winner: Trade Y1 G1 Winner\n\n8) TwoShort: Build G1 Twoshort\n\n9) winner: Build G2 Winner\n\n10) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n11) winner: Discover Y3 Winner B3 Hello\n\n12) TwoShort: Build G2 Twoshort\n\n13) winner: Trade Y3 R3 Hello\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n15) winner: Build G3 Winner\n\n16) TwoShort: Trade G2 R2 Twoshort\nCatastrophe Winner Green\n\n17) winner: Trade R3 G3 Hello\n\n18) TwoShort: Move G3 Twoshort Winner\n\tTwoShort: Not sure what happened there - I was going to suggest you undo your move, but since you redid it I guess you can't... I'll be happy to play again if you like, but in any case, thanks for the game...\n\n\nHomeworlds Online (SDG# 14457)\nVariants: "Unrated"\nStarted: 2009.10.30, Ended: 2009.12.13\nParticipants: captncavern (S), supergnouf (N)\nWinner: supergnouf\n\n1) supergnouf: Homeworld B3 G1 Y3\n\n2) captncavern: Homeworld B3 G2 Y3\n\n3) supergnouf: Build Y1 Supergnouf\n\tcaptncavern: Ouverture classique :)\n\n4) captncavern: Build Y1 Captncavern\n\n5) supergnouf: Discover Y1 Supergnouf G2 Loki\n\n6) captncavern: Trade Y1 R1 Captncavern\n\n7) supergnouf: Build Y1 Supergnouf\n\n8) captncavern: Build R1 Captncavern\n\tsupergnouf: c'est pas exactement les memes regles que celles qu'on utilisait...\n\tcaptncavern: Ah bon ? C'est quoi les différences ?\n\n9) supergnouf: Trade Y1 R1 Supergnouf\n\tsupergnouf: essaie de fabriqué un vaisseau vert ou bleu\n\n10) captncavern: Discover R1 Captncavern Y1 Kaori\n\tcaptncavern: Ah oui, en fait, c'est écrit dans les règles. Bon, ben, on va faire comme ça, alors.\n\n11) supergnouf: Build R2 Supergnouf\n\tcaptncavern: D'ailleurs, je viens de vérifier, c'était écrit comme ça aussi dans 3HOUSE. Pas la première erreur de lecture de règles que j'aurai faite... ni la dernière.\n\n12) captncavern: Build R2 Captncavern\n\n13) supergnouf: Move R2 Supergnouf Loki\n\n14) captncavern: Trade R1 G1 Captncavern\n\n15) supergnouf: Build R1 Supergnouf\n\n16) captncavern: Move G1 Captncavern Kaori\n\n17) supergnouf: Move R2 Loki Kaori\n\n18) captncavern: Build R2 Kaori\n\n19) supergnouf: Build R3 Supergnouf\n\n20) captncavern: Build R3 Captncavern\n\n21) supergnouf: Move R3 Supergnouf Loki\n\tcaptncavern: T'es à Dampierre, là ?\n\n22) captncavern: Discover G1 Kaori Y2 Kiiro\n\n23) supergnouf: Attack R2 Kaori\n\tsupergnouf: ouaip, pour le week end, mais j'ai pas mal de boulot à faire pour lundi...\n\n24) captncavern: Move R1 Kaori Kiiro\n\n25) supergnouf: Build R3 Loki\n\tcaptncavern: Et tu perds du temps à jouer ! :p\r\nMoi aussi, je bosse, aujourd'hui... Trop de boulot en ce moment.\n\n26) captncavern: Build G1 Kiiro\n\n27) supergnouf: Move R2 Kaori Kiiro\n\n28) captncavern: Move R3 Captncavern Kaori\n\n29) supergnouf: Sacrifice R2 Kaori\nAttack G1 Kiiro\nAttack R1 Kiiro\n\n30) captncavern: Move R3 Kaori Kiiro\n\n31) supergnouf: Move R1 Supergnouf Kiiro\nCatastrophe Kiiro R\n\n32) captncavern: Build Y1 Captncavern\n\n33) supergnouf: Sacrifice R1 Supergnouf\nAttack G1 Kiiro\n\n34) captncavern: Build R1 Captncavern\n\n35) supergnouf: Discover R3 Loki Y1 Fall\n\n36) captncavern: Discover Y1 Captncavern B1 Alaide\n\tcaptncavern: Pfff... Je suis mal barré, moi !\n\n37) supergnouf: Build Y2 Loki\n\n38) captncavern: Discover Y1 Alaide B2 Coucou\n\tsupergnouf: je dois dire qu'a certain moment, je n'ai pas compris tes choix, du coup je respire un peu parce qu'à un moment, je le sentais pas :)\n\n39) supergnouf: Move G1 Kiiro Supergnouf\n\n40) captncavern: Move Y1 Coucou Supergnouf\n\n41) supergnouf: Build R1 Loki\n\tcaptncavern: T'as retrouvé Internet, ça y est ?\n\n42) captncavern: Build Y2 Supergnouf\n\tsupergnouf: ouaip, c'est mieux du coup chez moi, mais il y a encore pas mal de boulot avant que ce soit agréable à vivre...\n\n43) supergnouf: Build Y3 Loki\n\n44) captncavern: Trade R2 B2 Captncavern\n\tsupergnouf: petit con va :)\r\nqu'est ce que je vais bien pouvoir faire de ce suicidaire...\n\n45) supergnouf: Sacrifice Y2 Loki\nMove R3 Loki Supergnouf\nDiscover G1 Supergnouf Y2 Omely\n\n46) captncavern: Sacrifice B2 Captncavern\nTrade Y2 B2 Supergnouf\nTrade Y1 B1 Supergnouf\n\tcaptncavern: Ah, ben ça... À toi de voir, mais il se multiplie, à ta place, j'agirais vite ;)\n\tsupergnouf: je sais je sais, mais je vais pas sacrifier un trois rouge pour un 1 jaune...\n\tsupergnouf: aller, il faut savoir prendre des risques dans la vie\n\n47) supergnouf: Sacrifice R3 Supergnouf\nAttack B1 Supergnouf\nAttack B2 Supergnouf\nPass\n\n48) captncavern: Build R1 Captncavern\n\tcaptncavern: Y a du monde à Loki, dis-moi :)\n\tsupergnouf: c'est quoi ca ? des menaces :)\r\nben ouai, mais la j'ai trop de trucs à faire et qu'un coup à jouer alors...\n\n49) supergnouf: Discover G1 Kiiro Y1 Mer\n\n50) captncavern: Build Y2 Captncavern\n\tsupergnouf: mouai, pas mal comme tactique, mais je suis pas sur que ce soit réelement à ton avantage\n\n51) supergnouf: Move R1 Loki Mer\n\n52) captncavern: Discover R1 Captncavern B1 Hop\n\tcaptncavern: Fallait bien que je tente quelque chose, et dans ma position, je n'avais pas trop le choix :(\n\n53) supergnouf: Move Y3 Loki Hop\n\n54) captncavern: Build R2 Captncavern\n\n55) supergnouf: Build R2 Mer\n\n56) captncavern: Discover R2 Captncavern B1 Aie\n\n57) supergnouf: Sacrifice R1 Mer\nAttack R1 Hop\n\n58) captncavern: Trade R2 B2 Aie\n\n59) supergnouf: Discover Y1 Loki R1 Mad\n\n60) captncavern: Sacrifice Y2 Captncavern\nMove B2 Aie Omely\nMove B2 Omely Supergnouf\nCatastrophe Supergnouf B\n\n61) supergnouf: Sacrifice G1 Omely\nBuild Y2 Mad\n\n62) captncavern: Build R2 Captncavern\n\n63) supergnouf: Build Y2 Supergnouf\n\tcaptncavern: Bon, je tente un truc, mais ce sera surement pas ça qui va me sauver\n\n64) captncavern: Move R1 Captncavern Supergnouf\n\n65) supergnouf: Sacrifice Y3 Hop\nMove Y1 Mad Captncavern\nMove Y2 Mad Captncavern\nMove Y2 Supergnouf Captncavern\nCatastrophe Captncavern Y\n\tcaptncavern: J'avais oublié de déclarer la catastrophe :)\n\n66) captncavern: Build R1 Captncavern\n\n67) supergnouf: Move R3 Fall Captncavern\n\n68) captncavern: Trade R1 Y1 Captncavern\n\tcaptncavern: Ca sent très mauvais pour moi !\n\n69) supergnouf: Sacrifice R2 Mer\nAttack R2 Captncavern\nAttack Y1 Captncavern\n\tsupergnouf: fait chier, je peux pas faire de troisieme ordre après une catastrophe\n\n\tcaptncavern: Bah, les carottes sont cuites !\n\tcaptncavern: Si t'as du temps à tuer, Grim Reaper est bien chouette, comme jeu\n\tcaptncavern: Ah ah ! Et t'as quand même failli faire la boulette :)\n\nHomeworlds Online (SDG# 14510)\nStarted: 2009.11.3, Ended: 2010.1.12\nParticipants: ZackStack (S), agentofchaos (N)\nWinner: ZackStack\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) ZackStack: Homeworld B3 R1 G3\n\tagentofchaos: Hi again, enjoy the game. \n\tZackStack: Hey Agent! Thanks for the challenge. Have fun!\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) ZackStack: Build G1 Zackstack\n\tagentofchaos: Sure will! :)\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) ZackStack: Build G1 Zackstack\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) ZackStack: Trade G1 Y1 Zackstack\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) ZackStack: Discover G1 Zackstack B2 Gooey\n\n11) agentofchaos: Trade Y1 G1 Agentofchaos\n\n12) ZackStack: Build G1 Zackstack\n\n13) agentofchaos: Build G2 Agentofchaos\n\n14) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Gooey\nBuild G2 Zackstack\nBuild G3 Zackstack\n\n15) agentofchaos: Discover G2 Agentofchaos Y3 Despero\n\n16) ZackStack: Trade G2 Y2 Gooey\n\n17) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G2 Despero Gooey\nMove G2 Gooey Zackstack\nCatastrophe Zackstack G\n\n18) ZackStack: Build G1 Gooey\n\n19) agentofchaos: Trade G1 R1 Agentofchaos\n\tZackStack: Oooo... That's really bad. I havent made that particular mistake before :-)\n\n20) ZackStack: Move G1 Gooey Zackstack\n\n21) agentofchaos: Build R2 Agentofchaos\n\n22) ZackStack: Build Y1 Gooey\n\n23) agentofchaos: Discover R2 Agentofchaos Y3 Phreniaville\n\tagentofchaos: i thought it seemed unlike you :-)\n\n24) ZackStack: Trade Y2 R2 Gooey\n\n25) agentofchaos: Build Y2 Agentofchaos\n\n26) ZackStack: Build Y2 Zackstack\n\n27) agentofchaos: Build G1 Agentofchaos\n\n28) ZackStack: Build Y2 Gooey\n\n29) agentofchaos: Discover Y1 Agentofchaos G3 Aporia\n\n30) ZackStack: Discover Y1 Zackstack G2 Gummy\n\tZackStack: So... am I only still alive out of kindness over there? :-)\n\n31) agentofchaos: Build Y3 Agentofchaos\n\n32) ZackStack: Build Y3 Zackstack\n\n33) agentofchaos: Move R1 Agentofchaos Aporia\n\n34) ZackStack: Discover Y2 Gooey G3 Slimey\n\n35) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R2 Aporia\n\n36) ZackStack: Build R3 Gooey\n\tagentofchaos: Sorry to keep you waiting, the site was offline for a while I didn't know it was back up. \n\n37) agentofchaos: Move R2 Aporia Gummy\n\n38) ZackStack: Move Y1 Gummy Slimey\n\tZackStack: No problem! I just figured you were on holiday. \n\n39) agentofchaos: Trade Y2 G2 Agentofchaos\n\n40) ZackStack: Move R3 Gooey Aporia\n\n41) agentofchaos: Move Y1 Aporia Gummy\n\n42) ZackStack: Build R3 Gooey\n\n43) agentofchaos: Build R3 Gummy\n\n44) ZackStack: Attack R1 Aporia\n\n45) agentofchaos: Build Y2 Gummy\n\n46) ZackStack: Sacrifice Y2 Slimey\nMove R1 Aporia Agentofchaos\nMove R3 Aporia Agentofchaos\n\n47) agentofchaos: Sacrifice R2 Phreniaville\nAttack R3 Agentofchaos\nAttack R1 Agentofchaos\n\n48) ZackStack: Sacrifice Y2 Zackstack\nMove R2 Gooey Slimey\nMove R2 Slimey Agentofchaos\nCatastrophe Agentofchaos Red\n\tZackStack: Might as well go out with a bang :-)\n\n49) agentofchaos: Trade G2 R2 Agentofchaos\n\tagentofchaos: indeed...\n\n50) ZackStack: Build Y2 Gooey\n\n51) agentofchaos: Build R1 Agentofchaos\n\n52) ZackStack: Build G1 Zackstack\n\n53) agentofchaos: Sacrifice Y2 Gummy\nMove R1 Agentofchaos Zackstack\nMove R2 Gummy Zackstack\n\n54) ZackStack: Build Y2 Slimey\n\n55) agentofchaos: Build Y2 Gummy\n\n56) ZackStack: Trade Y1 B1 Gooey\n\n57) agentofchaos: Build R1 Gummy\n\n58) ZackStack: Move B1 Gooey Slimey\n\n59) agentofchaos: Move R3 Gummy Slimey\n\n60) ZackStack: Sacrifice Y2 Slimey\nDiscover B1 Slimey Y1 Binky\nMove Y1 Slimey Binky\n\n61) agentofchaos: Build R2 Slimey\n\n62) ZackStack: Build R3 Gooey\n\n63) agentofchaos: Move R1 Gummy Zackstack\nCatastrophe Zackstack R\n\n64) ZackStack: Trade G1 B1 Zackstack\n\n65) agentofchaos: Build R1 Agentofchaos\n\n66) ZackStack: Build B1 Zackstack\n\n\tZackStack: Thanks for the game agent! I still can't beleive I came back from that early blunder...\n\nHomeworlds Online (SDG# 14436)\nStarted: 2009.11.4, Ended: 2009.11.5\nParticipants: shmil1 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) shmil1: Homeworld B3 G1 R3\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy\n\n4) shmil1: Build R1 Shmil1\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) shmil1: Trade R1 Y1 Shmil1\n\n7) TwoShort: Build G1 Twoshort\n\n8) shmil1: Discover Y1 Shmil1 G2 Shmil2\n\n9) TwoShort: Build G1 Twoshort\n\n10) shmil1: Trade R3 G3 Shmil1\n\n11) TwoShort: Discover G1 Twoshort Y2 Threat\n\n12) shmil1: Build G2 Shmil1\n\n13) TwoShort: Move G1 Threat Shmil1\nCatastrophe Shmil1 Green\n\n\nHomeworlds Online (SDG# 14520)\nVariants: "Hard time"\nStarted: 2009.11.4, Ended: 2009.11.11\nParticipants: shmil1 (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R3 B2 G3\n\n2) shmil1: Homeworld B3 G3 Y3 *\n\tagentofchaos: Hi, enjoy the game\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) shmil1: Build Y1 Shmil1\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) shmil1: Trade Y3 R3 Shmil1\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) shmil1: Build R1 Shmil1\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) shmil1: Trade R1 G1 Shmil1\n\n11) agentofchaos: Trade G1 R1 Agentofchaos\n\n12) shmil1: Build R1 Shmil1\n\n13) agentofchaos: Discover R1 Agentofchaos Y1 Terrorworld\n\n14) shmil1: Build Y2 Shmil1\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) shmil1: Move R3 Shmil1 Terrorworld\n\n17) agentofchaos: Move R1 Terrorworld Agentofchaos\n\n18) shmil1: Move R3 Terrorworld Agentofchaos\n\n19) agentofchaos: Attack R3 Agentofchaos\n\n20) shmil1: Sacrifice Y2 Shmil1\nDiscover R1 Shmil1 G1 Giborum\nMove R1 Giborum Agentofchaos\nCatastrophe Agentofchaos Red\n\n21) agentofchaos: Move G3 Agentofchaos Shmil1\n\n22) shmil1: Trade G1 R1 Shmil1\n\n23) agentofchaos: Trade Y2 R2 Agentofchaos\n\n24) shmil1: Trade R1 B1 Shmil1\n\n25) agentofchaos: Sacrifice R2 Agentofchaos\nAttack B1 Shmil1\nAttack Y1 Shmil1\n\tagentofchaos: Thanks for the game :)\n\n\nHomeworlds Online (SDG# 14015)\nVariants: "Hard time"\nStarted: 2009.11.11, Ended: 2010.3.25\nParticipants: shmil1 (S), MadWuher (W), agentofchaos (N), alexcobo (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\tMadWuher: Have a good game. (First time playing in months so I may be a bit rusty)\n\n2) alexcobo: Homeworld G3 B2 R3\n\tagentofchaos: Have fun everyone!\n\n3) shmil1: Homeworld B2 R1 G3\n\n4) MadWuher: H B1 R3 G3\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) alexcobo: Build R1 Alexcobo\n\n7) shmil1: Build G1 Shmil1\n\n8) MadWuher: B G1 Madwuher\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) alexcobo: Trade R1 Y1 Alexcobo\n\n11) shmil1: Build G1 Shmil1\n\n12) MadWuher: Trade G1 Y1 Madwuher\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) alexcobo: Build Y1 Alexcobo\n\n15) MadWuher: Build G1 Madwuher\n\n16) agentofchaos: Discover Y1 Agentofchaos G3 Krome\n\n17) alexcobo: Trade Y1 G1 Alexcobo\n\n18) MadWuher: Build G2 Madwuher\n\n19) agentofchaos: Build G2 Agentofchaos\n\n20) alexcobo: Build G2 Alexcobo\n\n21) MadWuher: Discover G1 Madwuher Y2 Edora\n\n22) agentofchaos: Trade G2 Y2 Agentofchaos\n\n23) alexcobo: Discover G2 Alexcobo R1 Hot\n\n24) MadWuher: Build G2 Edora\n\n25) agentofchaos: Build G2 Agentofchaos\n\n26) alexcobo: Build G2 Hot\n\n27) MadWuher: Discover G1 Edora B3 Bologna\n\n28) agentofchaos: Trade G1 R1 Agentofchaos\n\n29) alexcobo: Build R1 Alexcobo\n\n30) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Bologna\nBuild G3 Madwuher\nBuild Y1 Madwuher\n\n31) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y2 Agentofchaos\nBuild G3 Agentofchaos\n\n32) alexcobo: Build Y2 Alexcobo\n\n33) MadWuher: Discover Y1 Madwuher B2 Camelot\n\n34) agentofchaos: Trade Y2 B2 Agentofchaos\n\n35) alexcobo: Trade Y1 B1 Alexcobo\n\n36) MadWuher: Trade G1 B1 Bologna\n\n37) agentofchaos: Move B2 Agentofchaos Krome\n\n38) alexcobo: Build Y1 Alexcobo\n\n39) MadWuher: Sacrifice G3 Madwuher\nBuild G1 Edora\nBuild G3 Madwuher\nBuild Y2 Camelot\n\n40) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y2 Krome\nBuild R2 Agentofchaos\nBuild G3 Agentofchaos\n\n41) alexcobo: Build Y3 Alexcobo\n\n42) MadWuher: Sacrifice G3 Madwuher\nBuild G3 Madwuher\nBuild Y3 Madwuher\nBuild Y3 Camelot\n\n43) agentofchaos: Move Y1 Krome Camelot\nCatastrophe Camelot Y\n\n44) alexcobo: Sacrifice Y2 Alexcobo\nMove G2 Hot Bologna\nMove G2 Bologna Shmil1\n\n45) MadWuher: Sacrifice B1 Bologna\nTrade G2 R2 Edora\nCatastrophe Shmil1 G\n\n46) agentofchaos: Move R1 Agentofchaos Krome\n\n47) alexcobo: Build G1 Hot\n\n48) MadWuher: Trade Y1 B1 Madwuher\n\n49) agentofchaos: Build B1 Krome\n\n50) alexcobo: Move Y3 Alexcobo Hot\n\n51) MadWuher: Move B1 Madwuher Edora\n\n52) agentofchaos: Move R2 Agentofchaos Bologna\n\n53) alexcobo: Build Y1 Hot\n\n54) MadWuher: Sacrifice G1 Bologna\nBuild Y1 Madwuher\n\n55) agentofchaos: Trade R2 Y2 Bologna\n\n56) alexcobo: Move B1 Alexcobo Hot\n\n57) MadWuher: Discover G2 Madwuher B2 Camelot\n\n58) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y1 Krome\nBuild Y2 Bologna\n\n59) alexcobo: Build Y3 Alexcobo\n\n60) MadWuher: Move Y3 Madwuher Camelot\n\n61) agentofchaos: Sacrifice Y2 Bologna\nDiscover B1 Krome G2 Klaatu\nDiscover B2 Krome G2 Plasmor\n\n62) alexcobo: Build B1 Hot\n\n63) MadWuher: Build G1 Madwuher\n\n64) agentofchaos: Build B2 Klaatu\n\n65) alexcobo: Move Y3 Hot Edora\n\n66) MadWuher: Trade R2 Y2 Edora\n\n67) agentofchaos: Move Y1 Krome Edora\nCatastrophe Edora Y\n\n68) alexcobo: Move R1 Alexcobo Hot\n\n69) MadWuher: Trade G2 R2 Camelot\n\n70) agentofchaos: Build G1 Agentofchaos\n\n71) alexcobo: Discover G2 Hot R2 Heat\n\tMadWuher: =) Thanks agentofchaos..... That's what I had planned for the system too. \n\n72) MadWuher: Move G1 Madwuher Camelot\n\tagentofchaos: Don't tell me I'm doing you're dirty work for you!?\n\n73) agentofchaos: Discover R1 Krome Y2 Dagon\n\n74) alexcobo: Build G1 Heat\n\n75) MadWuher: Build G2 Madwuher\n\n76) agentofchaos: Sacrifice Y2 Bologna\nMove B1 Klaatu Madwuher\nMove B2 Klaatu Madwuher\n\n77) alexcobo: Sacrifice Y3 Alexcobo\nMove G1 Hot Camelot\nMove G1 Camelot Madwuher\nMove G1 Heat Madwuher\nCatastrophe Madwuher G\n\n78) MadWuher: Move Y3 Camelot Madwuher\n\n79) agentofchaos: Sacrifice B2 Plasmor\nTrade B1 Y1 Madwuher\nTrade B2 Y2 Madwuher\nCatastrophe Madwuher Y\n\n80) alexcobo: Build G1 Heat\n\n81) agentofchaos: Move Y2 Krome Camelot\n\n82) alexcobo: Move G1 Alexcobo Hot\n\tagentofchaos: Sorry Madwuher, thanks for playing with us :-)\n\n83) agentofchaos: Sacrifice R1 Dagon\nAttack R2W Camelot\n\tMadWuher: not a prob....... thanks for the game.......\n\n84) alexcobo: Build Y1 Alexcobo\n\n85) agentofchaos: Attack G1W Camelot\n\n86) alexcobo: Build R1 Alexcobo\n\n87) agentofchaos: Build R1 Camelot\n\n88) alexcobo: Build R2 Hot\n\n89) agentofchaos: Move R1 Camelot Hot\nCatastrophe Hot R\n\n90) alexcobo: Discover Y1 Alexcobo G1 Waypoint\n\n91) agentofchaos: Build R1 Camelot\n\n92) alexcobo: Build Y1 Waypoint\n\n93) agentofchaos: Move R2 Camelot Waypoint\n\n94) alexcobo: Sacrifice Y1 Waypoint\nMove Y1 Waypoint Heat\n\n95) agentofchaos: Build R1 Waypoint\n\n96) alexcobo: Build Y1 Heat\n\n97) agentofchaos: Build R1 Camelot\n\n98) alexcobo: Build Y1 Alexcobo\n\n99) agentofchaos: Build Y2 Camelot\n\n100) alexcobo: Build Y2 Heat\n\n101) agentofchaos: Sacrifice Y2 Camelot\nDiscover Y1 Agentofchaos R3 Thanax\nMove Y1 Thanax Heat\nCatastrophe Heat Y\n\n102) alexcobo: Trade Y1 G1 Alexcobo\n\n103) agentofchaos: Build R2 Camelot\n\n104) alexcobo: Build Y1 Alexcobo\n\n105) agentofchaos: Trade R2 Y2 Camelot\n\n106) alexcobo: Build G2 Heat\n\n107) agentofchaos: Sacrifice Y2 Camelot\nMove R1 Waypoint Alexcobo\nMove R2 Waypoint Alexcobo\nCatastrophe Alexcobo R\n\n108) alexcobo: Build G1 Alexcobo\n\n109) agentofchaos: Sacrifice Y2 Agentofchaos\nDiscover G1 Camelot Y1 Dagon\nMove G1 Dagon Alexcobo\nCatastrophe Alexcobo G\n\n110) agentofchaos: Discover Y2 Camelot G3 Dagon\n\n\tagentofchaos: Thanks for the game!\n\nHomeworlds Online (SDG# 14438)\nVariants: "Sinister"\nStarted: 2009.11.11, Ended: 2010.9.17\nParticipants: agentofchaos (S), shmil1 (W), alexcobo (N), Mandrel (E)\nWinner: agentofchaos\n\n1) alexcobo: Homeworld G3 B2 Y3\n\tagentofchaos: Hi everyone, enjoy the game :)\n\talexcobo: Hello. Good luck, everyone.\n\n2) Mandrel: Homeworld Y1 B3 G3\n\tMandrel: Oops, sorry. Have a good game!\n\n3) agentofchaos: Homeworld R1 B2 G3\n\n4) shmil1: Homeworld R1 B2 G3\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) Mandrel: Build G1 Mandrel\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) shmil1: Build G1 Shmil1\n\n9) alexcobo: Build Y1 Alexcobo\n\n10) Mandrel: Build G1 Mandrel\n\n11) agentofchaos: Trade G1 Y1 Agentofchaos\n\n12) shmil1: Trade G1 B1 Shmil1\n\n13) alexcobo: Trade Y1 R1 Alexcobo\n\n14) Mandrel: Trade G1 Y1 Mandrel\n\n15) agentofchaos: Build G1 Agentofchaos\n\n16) shmil1: Build B1 Shmil1\n\n17) alexcobo: Trade Y1 G1 Alexcobo\n\n18) Mandrel: Discover G1 Mandrel Y2 Party\n\n19) agentofchaos: Trade G1 R1 Agentofchaos\n\n20) shmil1: Trade B1 Y1 Shmil1\n\n21) alexcobo: Build Y1 Alexcobo\n\n22) Mandrel: Build G1 Party\n\n23) agentofchaos: Build Y2 Agentofchaos\n\n24) shmil1: Build Y2 Shmil1\n\n25) alexcobo: Trade Y1 G1 Alexcobo\n\n26) Mandrel: Build G1 Mandrel\n\n27) agentofchaos: Build G2 Agentofchaos\n\n28) shmil1: Build G2 Shmil1\n\n29) alexcobo: Build G2 Alexcobo\n\n30) Mandrel: Trade G1 B1 Mandrel\n\n31) agentofchaos: Discover G2 Agentofchaos Y3 Kakrafoon\n\n32) shmil1: Build B1 Shmil1\n\n33) alexcobo: Discover G2 Alexcobo B1 Trade\n\n34) Mandrel: Move B1 Mandrel Party\n\n35) agentofchaos: Build G1 Agentofchaos\n\n36) shmil1: Move G2 Shmil1 Kakrafoon\n\n37) alexcobo: Build G2 Trade\n\n38) Mandrel: Build G2 Mandrel\n\n39) agentofchaos: Sacrifice R1 Agentofchaos\nAttack G2W Kakrafoon\n\n40) shmil1: Build G3 Shmil1\n\n41) alexcobo: Build R1 Alexcobo\n\n42) Mandrel: Trade G2 R2 Mandrel\n\n43) agentofchaos: Sacrifice Y2 Agentofchaos\nDiscover G2 Kakrafoon R1 Death\nMove G2 Death Alexcobo\nCatastrophe Alexcobo G\n\n44) shmil1: Move G3 Shmil1 Kakrafoon\n\tshmil1: move g3 shmil1 kakrafoon\n\n45) alexcobo: Trade G2 R2 Trade\n\n46) Mandrel: Discover G1 Party B3 Joy\n\n47) agentofchaos: Trade G1 R1 Agentofchaos\n\n48) shmil1: Sacrifice Y2 Shmil1\nMove B1 Shmil1 Kakrafoon\nMove B1 Shmil1 Kakrafoon\n\n49) alexcobo: Build R2 Trade\n\n50) Mandrel: Build R2 Mandrel\n\n51) agentofchaos: Trade Y1 B1 Agentofchaos\n\n52) shmil1: Move G3 Kakrafoon Alexcobo\n\n53) alexcobo: Attack G3W Alexcobo\n\n54) Mandrel: Build B2 Party\n\talexcobo: That was a nice gift. Not quite a Green Star, but it will work. Thank you very much.\n\n55) agentofchaos: Build G1 Agentofchaos\n\n56) shmil1: Trade B1 G1 Kakrafoon\n\n57) alexcobo: Build Y1 Alexcobo\n\n58) Mandrel: Move Y1 Mandrel Party\n\n59) agentofchaos: Trade G1 Y1 Agentofchaos\n\n60) shmil1: Build B1 Kakrafoon\n\n61) alexcobo: Trade R2 Y2 Trade\n\n62) Mandrel: Build G1 Mandrel\n\n63) agentofchaos: Sacrifice B1 Agentofchaos\nTrade G2 R2 Kakrafoon\n\n64) shmil1: Move B1 Kakrafoon Alexcobo\n\n65) alexcobo: Attack B1W Alexcobo\n\n66) Mandrel: Trade B2 G2 Party\n\n67) agentofchaos: Attack G1W Kakrafoon\n\n68) shmil1: Build Y2 Shmil1\n\n69) alexcobo: Sacrifice Y2 Trade\nMove R1 Alexcobo Mandrel\nMove R1 Alexcobo Mandrel\nCatastrophe Mandrel R\n\n70) Mandrel: Trade G1 R1 Mandrel\n\n71) agentofchaos: Attack B1W Kakrafoon\n\n72) shmil1: Build Y2 Shmil1\n\n73) alexcobo: Trade B1 R1 Alexcobo\n\n74) Mandrel: Build G1 Joy\n\n75) agentofchaos: Build Y2 Agentofchaos\n\n76) shmil1: Sacrifice Y2 Shmil1\nMove Y1 Shmil1 Joy\nMove Y1 Joy Alexcobo\n\n77) alexcobo: Attack Y1W Alexcobo\n\n78) Mandrel: Build R2 Mandrel\n\n79) agentofchaos: Build R2 Kakrafoon\n\n80) shmil1: Build Y2 Shmil1\n\n81) alexcobo: Build R2 Trade\n\n82) Mandrel: Move R2 Mandrel Party\n\n83) agentofchaos: Discover R2 Kakrafoon G2 Kirilthrendor\n\n84) shmil1: Move Y2 Shmil1 Joy\n\n85) alexcobo: Build R3 Alexcobo\n\n86) Mandrel: Build R3 Mandrel\n\n87) agentofchaos: Build R3 Kakrafoon\n\n88) shmil1: Move Y2 Joy Alexcobo\nCatastrophe Alexcobo Yellow\n\n89) alexcobo: Build G1 Alexcobo\n\n90) Mandrel: Build G2 Mandrel\n\n91) agentofchaos: Build R3 Kirilthrendor\n\n92) shmil1: Build G2 Shmil1\n\n93) alexcobo: Trade R2 Y2 Trade\n\n94) Mandrel: Trade G1 Y1 Joy\n\n95) agentofchaos: Move Y1 Agentofchaos Kakrafoon\n\n96) shmil1: Discover G2 Shmil1 G3 Zelenina\n\n97) alexcobo: Build G1 Alexcobo\n\n98) Mandrel: Trade G3 Y3 Mandrel\n\n99) agentofchaos: Build G3 Kakrafoon\n\n100) shmil1: Build Y1 Shmil1\n\n101) alexcobo: Build R2 Trade\n\n102) Mandrel: Build R3 Party\n\n103) agentofchaos: Move Y1 Kakrafoon Kirilthrendor\n\n104) shmil1: Trade Y1 B1 Shmil1\n\n105) Mandrel: Move R2 Party Joy\n\n106) agentofchaos: Build B1 Kakrafoon\n\n107) shmil1: Move B1 Shmil1 Zelenina\n\n108) Mandrel: Sacrifice Y3 Mandrel\nMove R3 Party Joy\nMove R2 Joy Agentofchaos\nMove R3 Joy Agentofchaos\nCatastrophe Agentofchaos Red\n\n109) agentofchaos: Move R3 Kakrafoon Party\n\n110) shmil1: Build B2 Zelenina\n\n111) Mandrel: Sacrifice G2 Party\nBuild G2 Joy\nBuild Y1 Joy\n\tagentofchaos: Didn't see that coming...\n\n112) agentofchaos: Move R2 Kirilthrendor Zelenina\n\n113) shmil1: Sacrifice Y2 Shmil1\nMove B1 Zelenina Agentofchaos\nMove G2 Zelenina Agentofchaos\n\n114) Mandrel: Move G2 Joy Agentofchaos\n\n115) agentofchaos: Sacrifice R3 Kirilthrendor\nAttack G2W Agentofchaos\nAttack G2E Agentofchaos\nAttack B1W Agentofchaos\n\n116) shmil1: Trade B2 Y2 Zelenina\n\n117) Mandrel: Move G1 Joy Agentofchaos\nCatastrophe Agentofchaos Green\n\n118) agentofchaos: Move G3 Kakrafoon Agentofchaos\n\tagentofchaos: I'm not going down without a fight!!\n\n119) shmil1: Build G1 Shmil1\n\n120) Mandrel: Move B1 Party Mandrel\n\n121) agentofchaos: Attack Y2W Zelenina\n\n122) shmil1: Trade G3 Y3 Shmil1\n\n123) Mandrel: Build G2 Mandrel\n\n124) agentofchaos: Build Y2 Zelenina\n\n125) shmil1: Build G2 Shmil1\n\n126) Mandrel: Sacrifice G2 Mandrel\nBuild G2 Mandrel\nBuild Y3 Joy\n\n127) agentofchaos: Attack Y1E Party\n\n128) shmil1: Discover G1 Shmil1 Y3 Budanebo\n\n129) Mandrel: Move Y3 Joy Trade\n\n130) agentofchaos: Move R3 Party Kakrafoon\n\n131) shmil1: Move G1 Budanebo Alexcobo\nCatastrophe Alexcobo Green\n\n132) Mandrel: Sacrifice R1 Mandrel\nAttack R2N Trade\n\n133) agentofchaos: Build Y3 Kirilthrendor\n\n134) shmil1: Build Y3 Shmil1\n\n135) Mandrel: Sacrifice R2 Trade\nAttack R2N Trade\nAttack G2N Trade\n\n136) agentofchaos: Trade B1 R1 Agentofchaos\n\n137) shmil1: Discover Y3 Shmil1 B3 Modrina\n\n138) Mandrel: Trade Y1 B1 Joy\n\n139) agentofchaos: Build B2 Kakrafoon\n\n140) shmil1: Build G1 Shmil1\n\n141) Mandrel: Trade G2 B2 Trade\n\n142) agentofchaos: Sacrifice Y2 Zelenina\nMove B1 Kakrafoon Trade\nMove B1 Kakrafoon Trade\nCatastrophe Trade B\n\n143) shmil1: Move G2 Shmil1 Modrina\n\n144) Mandrel: Build G1 Party\n\n145) agentofchaos: Move R3 Kakrafoon Party\n\n146) shmil1: Build G1 Modrina\n\n147) Mandrel: Sacrifice G1 Party\nBuild Y1 Joy\n\n148) agentofchaos: Attack G1E Party\n\n149) shmil1: Trade G2 R2 Modrina\n\n150) Mandrel: T G2 Y2 Mandrel\n\n151) agentofchaos: Build Y2 Zelenina\n\n152) shmil1: Build G1 Modrina\n\n153) Mandrel: Build G2 Mandrel\n\n154) agentofchaos: Move B2 Kakrafoon Party\n\n155) shmil1: Sacrifice Y3 Modrina\nMove G1 Modrina Agentofchaos\nMove G1 Modrina Agentofchaos\nMove R2 Modrina Agentofchaos\n\n156) Mandrel: Build R1 Mandrel\n\n157) agentofchaos: Sacrifice R3 Party\nAttack R2W Agentofchaos\nAttack G1W Agentofchaos\nAttack G1W Agentofchaos\n\n158) shmil1: Build G2 Shmil1\n\n159) Mandrel: Move G2 Mandrel Agentofchaos\nCatastrophe Agentofchaos Green\n\n160) agentofchaos: Sacrifice G1 Party\nBuild Y3 Agentofchaos\n\tagentofchaos: You scoundrel!!\n\n161) shmil1: Build Y3 Shmil1\n\n162) Mandrel: Build G1 Mandrel\n\n163) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Zelenina Shmil1\nMove Y2 Zelenina Shmil1\nCatastrophe Shmil1 Y\n\n164) shmil1: Trade G2 Y2 Shmil1\n\n165) Mandrel: D B1 Mandrel G2 Calm\n\n166) agentofchaos: Move Y3 Kirilthrendor Kakrafoon\n\n167) shmil1: Build Y2 Shmil1\n\n168) Mandrel: B B1 Calm\n\n169) agentofchaos: Sacrifice Y3 Kakrafoon\nMove Y1 Kirilthrendor Mandrel\nMove Y1 Party Mandrel\nMove B2 Party Joy\nCatastrophe Mandrel Y\n\n170) shmil1: Build G1 Shmil1\n\n171) Mandrel: T G2 Y2 Mandrel\n\n172) agentofchaos: Sacrifice R2 Agentofchaos\nAttack B1E Joy\nAttack Y1E Joy\n\n173) shmil1: Trade Y2 R2 Shmil1\n\n174) Mandrel: S Y1 Joy\nMove B1 Calm Mandrel\n\n175) agentofchaos: Discover B2 Joy Y2 Volapuk\n\n176) shmil1: Move R2 Shmil1 Joy\n\tMandrel: Ouch!\n\n177) Mandrel: B B1 Calm\n\tagentofchaos: A bit of payback! ;-)\n\n178) agentofchaos: Discover B1 Joy Y2 Sacher\n\n179) shmil1: Build Y1 Shmil1\n\n180) Mandrel: Trade B1 Y1 Calm\n\n181) agentofchaos: Sacrifice G1 Kakrafoon\nBuild B1 Volapuk\n\n182) shmil1: Move G1 Shmil1 Joy\n\n183) Mandrel: Build B1 Calm\n\tshmil1: system says there´s no y1 in joy. i see it? and you?\n\tMandrel: Is it an attack command? You have to put n/e/s/w after the ship you're attacking for attack. If so I had the same problem for ages, I thought it was the system having a problem after someone dropping out.\n\n184) agentofchaos: Move B1 Volapuk Mandrel\n\tshmil1: yes, i have tried it out in many different ways. \n\n185) shmil1: Build G1 Joy\n\n186) Mandrel: Discover B1 Mandrel Y1 Inspiration\n\n187) agentofchaos: Move B1 Sacher Mandrel\n\n188) shmil1: Trade G1 Y1 Joy\n\n189) Mandrel: Build Y2 Calm\n\n190) agentofchaos: Move B2 Volapuk Mandrel\nCatastrophe Mandrel B\n\n191) agentofchaos: Move R2 Kakrafoon Calm\n\n192) shmil1: Build Y2 Joy\n\n193) agentofchaos: Sacrifice R2 Zelenina\nAttack Y2E Calm\nAttack Y1E Calm\n\n194) shmil1: Move Y1 Joy Agentofchaos\n\n195) agentofchaos: Attack Y1W Agentofchaos\n\n196) shmil1: Sacrifice Y2 Shmil1\nMove Y2 Joy Agentofchaos\nMove G1 Joy Agentofchaos\n\tagentofchaos: Thanks for playing Mandrel :-)\n\n197) agentofchaos: Sacrifice R2 Calm\nAttack Y2W Agentofchaos\nAttack G1W Agentofchaos\n\tMandrel: Cheers, It's been fun, have a good rest of game you two.\n\n198) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Calm Joy\nMove Y2 Joy Shmil1\n\n\tagentofchaos: did you try the command 'a y1s joy'?\n\nHomeworlds Online (SDG# 14558)\nStarted: 2009.11.11, Ended: 2009.12.16\nParticipants: ZackStack (S), face (N)\nWinner: face\n\n1) face: Homeworld R3 B2 G3\n\n2) ZackStack: Homeworld B1 R2 G3\n\tZackStack: Hey face! Enjoy the rematch!\n\n3) face: Build G1 Face\n\n4) ZackStack: Build G1 Zackstack\n\n5) face: Trade G3 Y3 Face\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\tZackStack: Hmmm... I'm tempted to tempt you to take us both out in one turn :-)\n\n7) face: Build Y1 Face\n\n8) ZackStack: Build G1 Zackstack\n\n9) face: Trade Y1 R1 Face\n\n10) ZackStack: Discover G1 Zackstack B3 Bigboy\n\n11) face: Discover R1 Face Y1 Blitz\n\n12) ZackStack: Build G1 Zackstack\n\n13) face: Build G2 Face\n\n14) ZackStack: Build G2 Bigboy\n\n15) face: Move G2 Face Blitz\n\n16) ZackStack: Trade G1 Y1 Bigboy\n\n17) face: Build Y2 Face\n\n18) ZackStack: Build Y2 Bigboy\n\n19) face: Trade Y2 B2 Face\n\n20) ZackStack: Trade Y1 R1 Bigboy\n\n21) face: Move B2 Face Blitz\n\n22) ZackStack: Discover Y2 Bigboy G1 Pea\n\n23) face: Build B1 Blitz\n\n24) ZackStack: Build R1 Bigboy\n\n25) face: Discover B1 Blitz Y3 Smash\n\n26) ZackStack: Trade R1 B1 Bigboy\n\n27) face: Build Y1 Face\n\n28) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Bigboy\nBuild G3 Zackstack\nBuild Y2 Pea\n\n29) face: Discover Y1 Face R1 Plaster\n\n30) ZackStack: Trade G2 Y2 Bigboy\n\n31) face: Build Y3 Face\n\n32) ZackStack: Sacrifice Y2 Bigboy\nMove Y2 Pea Face\nMove Y2 Pea Face\nCatastrophe Face Yellow\n\tZackStack: I think that was a mistake...\n\n33) face: Sacrifice G2 Blitz\nBuild B2 Smash\nBuild B3 Blitz\n\tface: haha yeah.\r\ni'm still having trouble visualizing with the arrangement of the board. i tend not to make mistakes when i take the time to set up the game with real icehouse pieces.\n\n34) ZackStack: Build Y2 Zackstack\n\tface: pretty sure that was game, but i'll still try to put up a fight.\n\tZackStack: I prefer playing in person too... but I get to play a lot more here! I wish I was in position to take better advantage... I don't think this is over by a longshot!\n\n35) face: Move B3 Blitz Face\n\n36) ZackStack: Build R2 Bigboy\n\n37) face: Trade B3 Y3 Face\n\n38) ZackStack: Sacrifice Y2 Zackstack\nMove R2 Bigboy Blitz\nMove G2 Bigboy Blitz\n\n39) face: Attack R2 Blitz\n\n40) ZackStack: Move G2 Blitz Bigboy\n\tZackStack: Oops\n\n41) face: Build G1 Face\n\n42) ZackStack: Build R2 Bigboy\n\n43) face: Move G1 Face Blitz\n\n44) ZackStack: Trade R2 Y2 Bigboy\n\n45) face: Build B3 Blitz\n\n46) ZackStack: Build Y2 Zackstack\n\n47) face: Trade B3 G3 Blitz\n\n48) ZackStack: Move Y2 Bigboy Plaster\n\n49) face: Discover Y1 Plaster G3 Tank\n\n50) ZackStack: Sacrifice Y2 Zackstack\nMove B1 Bigboy Plaster\nMove G2 Bigboy Plaster\n\n51) face: Build Y2 Tank\n\tZackStack: Have I complimented your pyramid advantage lately? :-)\n\n52) ZackStack: Build B3 Plaster\n\tface: heh. still having trouble turning "advantage" into "win."\n\n53) face: Build B3 Blitz\n\n54) ZackStack: Move Y1 Zackstack Tank\n\n55) face: Discover Y2 Tank G2 Waste\n\n56) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Plaster\nBuild Y2 Plaster\nBuild G3 Zackstack\n\n57) face: Build Y3 Waste\n\n58) ZackStack: Sacrifice R1 Bigboy\nAttack Y1 Tank\n\n59) face: Discover Y2 Waste B3 Buzz\n\n60) ZackStack: Trade B1 R1 Plaster\n\n61) face: Move G1 Blitz Buzz\n\n62) ZackStack: Move Y1 Tank Zackstack\n\n63) face: Move R2 Blitz Tank\n\n64) ZackStack: Discover Y1 Tank B1 Speck\n\n65) face: Sacrifice G3 Blitz\nBuild G3 Buzz\nBuild R2 Tank\nBuild R3 Blitz\n\n66) ZackStack: Sacrifice Y2 Plaster\nMove G2 Plaster Buzz\nMove G1 Zackstack Buzz\nCatastrophe Buzz Green\n\tZackStack: Its only a matter of time now... but I'll try to do some damage on my way out :-)\n\n67) face: Move B1 Smash Zackstack\n\n68) ZackStack: Build Y2 Plaster\n\n69) face: Sacrifice Y3 Waste\nMove B2 Blitz Smash\nMove B2 Smash Zackstack\nMove B2 Smash Zackstack\nCatastrophe Zackstack Blue\n\tZackStack: Bye bye blue star...\n\n70) ZackStack: Move B3 Plaster Tank\n\n71) face: Sacrifice Y3 Face\nMove R2 Tank Zackstack\nMove R2 Tank Zackstack\nMove R1 Blitz Zackstack\nCatastrophe Zackstack Red\n\tface: still not certain how i recovered from that early mistake. very well played.\n\tZackStack: Well played indeed. You were able to get a new large ship built and back to your homeworld very quickly while I simply tried to recover the ships I had burnt to blow up your first one... Then you did a much better job building a large fleet of large ships! Very good game!\n\n\nHomeworlds Online (SDG# 32028)\nVariants: "Hard time"\nStarted: 2017.4.24, Ended: 2017.5.3\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n2) wil: H Y3 R2 G3 *\n\n3) Felix: Build G1 Felix\n\tFelix: Here we go again. Interesting starting setup! I thought you'd go for the classic yellow/blue banker.\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 Y1 Felix\n\n6) wil: D G1 Wil B1 B1\n\n7) Felix: Build G1 Felix\n\twil: I like playing around with openings... This one might be too deep a hole to dig myself out if\n\twil: Of\n\tFelix: I like to do the same, but I've found that the ladder world is typically too aggressive for experimentation :P\n\n8) wil: B G1 B1\n\n9) Felix: Build G2 Felix\n\n10) wil: B G2 B1\n\twil: Meh... I want to see the responses... Look at my record...losing is not a thing that bothers me much.\n\n11) Felix: Trade G1 B1 Felix\n\tFelix: Well I'll be more experimental with you in the future :)\n\n12) wil: T G1 R1 B1\n\twil: That would be to your benefit... My failure here is the same as chess...I don't have the patience, attention, or interest to take the time and look for the best move... I shoot from the hip, and often to my detriment.\n\tFelix: I often do the same when playing on here, actually. I'd be more inclined to strategize when playing in real life, but I often make moves on here while at work and can't afford more than a minute or two to think over my move.\n\n13) Felix: Trade G2 R2 Felix\n\n14) wil: T G1 B1 B1\n\n15) Felix: Build B2 Felix\n\n16) wil: B B2 B1\n\n17) Felix: Discover B2 Felix G2 G2\n\n18) wil: T B1 Y1 B1\n\n19) Felix: Build G1 Felix\n\n20) wil: B R1 B1\n\n21) Felix: Move R2 Felix G2\n\n22) wil: B R2 B1\n\n23) Felix: Build R3 G2\n\n24) wil: M R1 B1 G2\n\n25) Felix: Sacrifice R2 G2\nAttack R1 G2\nPass\n\n26) wil: Move B2 B1 Wil\n\twil: I like taking unknown paths\n\twil: Anybody scouted these rapids before we started?\n\n27) Felix: Trade R1 Y1 G2\n\tFelix: My ol' grandpappy Cletus did once, but he ain't been heard from since.\n\twil: that was an elegant solution\n\n28) wil: B Y2 B1\n\n29) Felix: Build Y2 G2\n\tFelix: Why, thank you!\n\n30) wil: D Y2 B1 B2 B2\n\n31) Felix: Discover Y1 G2 G1 Rasp\n\n32) wil: B G1 B1\n\n33) Felix: Sacrifice G3 Felix\nBuild Y2 Rasp\nBuild Y3 G2\nBuild Y3 Felix\n\n34) wil: Move G1 B1 B2\n\n35) Felix: Move Y3 G2 B1\n\n36) wil: Move R2 B1 B2\n\n37) Felix: Sacrifice R3 G2\nAttack R1 B1\nAttack Y1 B1\nAttack G2 B1\n\n38) wil: B G2 Wil\n\n39) Felix: Build G3 B1\n\tFelix: Ah, a three for one deal.\n\twil: yeah...I am behind on this one...awaiting you to make a mistake\n\n40) wil: S G3 Wil\nB G3 Wil\nB G3 B2\nB R1 B2\n\tFelix: I had the early advantage thanks to your experimental opening, so it's a bitter upper hand I bear :P\n\n41) Felix: Sacrifice Y3 Felix\nMove G3 B1 Wil\nMove G2 B1 Wil\nMove Y3 B1 Wil\nCatastrophe Wil Green\n\n42) wil: S G3 B2\nB B1 Wil\nB B3 Wil\nB Y3 B2\n\n43) Felix: Sacrifice B1 Felix\nTrade Y3 B3 Wil\nCatastrophe Wil Blue\n\twil: Sweet\n\n\tFelix: Beginning without blue is a difficult opening to pull off, but I'd love to experiment with it more myself and see if it's possible to turn it to an advantage. It's hard to see it as anything but a handicap right now...\n\twil: It is fun to try things.. Make mistakes and learn... Thx for the game!\n\nHomeworlds Online (SDG# 14699)\nVariants: "Hard time"\nStarted: 2009.12.3, Ended: 2010.1.21\nParticipants: Uglyfoot (S), fnord (N)\nWinner: Uglyfoot\n\n1) fnord: Homeworld Y1 B2 G3\n\tfnord: Hi there! Thanks for the challenge! Just FYI, I'm leaving for a week-long cruise tomorrow morning. I expect to have some internet access on board the ship, but I'm hoping to get enough moves in before going away that I can ride out the timer.\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\n3) fnord: Build G1 Fnord\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) fnord: Discover G1 Fnord Y3 Eris\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n7) fnord: Build G1 Fnord\n\n8) Uglyfoot: Discover Y1 Uglyfoot R1 Fort\n\n9) fnord: Trade G1 B1 Fnord\n\n10) Uglyfoot: Build G1 Uglyfoot\n\tfnord: *waves to the audience*\n\n11) fnord: Move B1 Fnord Eris\n\n12) Uglyfoot: Move G1 Uglyfoot Fort\n\n13) fnord: Build B1 Eris\n\n14) Uglyfoot: Build G1 Uglyfoot\n\n15) fnord: Build G2 Fnord\n\n16) Uglyfoot: Build G2 Fort\n\n17) fnord: Trade G2 Y2 Fnord\n\n18) Uglyfoot: Discover G2 Fort B3 Dogstar\n\n19) fnord: Trade B1 Y1 Eris\n\n20) Uglyfoot: Build G2 Fort\n\n21) fnord: Build G2 Eris\n\n22) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Dogstar\nBuild Y2 Fort\n\n23) fnord: Trade Y2 R2 Fnord\n\n24) Uglyfoot: Move Y2 Fort Dogstar\n\n25) fnord: Build R1 Fnord\n\n26) Uglyfoot: Sacrifice G3 Dogstar\nBuild G3 Dogstar\nBuild Y2 Dogstar\nBuild Y3 Fort\n\n\tfnord: Sorry about the Resignation, I've not been able to get to the site from work, where I usually log on.\n\nHomeworlds Online (SDG# 14748)\nVariants: "Hard time"\nStarted: 2009.12.9, Ended: 2010.2.7\nParticipants: mneme (S), Danner (N)\nWinner: mneme\n\n1) Danner: Homeworld B1 R2 G3\n\tDanner: Hi! Good luck!\n\n2) mneme: Homeworld G3 R1 B3\n\n3) Danner: Build G1 Danner\n\n4) mneme: Build B1 Mneme\n\n5) Danner: Trade G1 B1 Danner\n\n6) mneme: Build B2 Mneme\n\n7) Danner: Build B2 Danner\n\n8) mneme: Trade B2 Y2 Mneme\n\n9) Danner: Trade B2 Y2 Danner\n\n10) mneme: Discover B1 Mneme G2 Alpha\n\n11) Danner: Discover B1 Danner G3 Beta\n\n12) mneme: Build B2 Mneme\n\n13) Danner: Build B2 Beta\n\n14) mneme: Build B2 Alpha\n\n15) Danner: Trade B2 Y2 Beta\n\n16) mneme: Discover B2 Mneme G2 Gamma\n\n17) Danner: Build G1 Danner\n\n18) mneme: Trade B2 R2 Alpha\n\n19) Danner: Build B2 Beta\n\n20) mneme: Build B2 Alpha\n\n21) Danner: Discover B1 Beta G2 Delta\n\n22) mneme: Build B3 Mneme\n\n23) Danner: Build B3 Delta\n\n24) mneme: Move B3 Mneme Delta\n\n25) Danner: Sacrifice Y2 Danner\nDiscover B1 Delta Y3 Epsilon\nDiscover B3 Delta Y3 Zeta\n\n26) mneme: Trade B2 Y2 Alpha\n\n27) Danner: Trade G1 R1 Danner\n\n28) mneme: Trade B3 Y3 Delta\n\n29) Danner: Move B3 Zeta Alpha\n\n30) mneme: Sacrifice Y2 Alpha\nMove R2 Alpha Epsilon\nMove Y3 Delta Beta\n\n31) Danner: Build Y1 Beta\n\n32) mneme: Sacrifice B1 Alpha\nTrade Y3 R3 Beta\n\n33) Danner: Sacrifice Y2 Beta\nMove Y1 Beta Alpha\nDiscover B2 Beta Y2 Delta\n\n34) mneme: Attack B1 Epsilon\n\n35) Danner: Build G1 Danner\n\n36) mneme: Build B1 Gamma\n\n37) Danner: Build Y1 Alpha\n\n38) mneme: Trade B2 G2 Gamma\n\n39) Danner: Discover Y1 Alpha B3 Zeta\n\n40) mneme: Build B2 Gamma\n\n41) Danner: Build B2 Alpha\n\n42) mneme: Trade B2 R2 Gamma\n\n43) Danner: Sacrifice Y1 Alpha\nDiscover R1 Danner Y3 Eta\n\n44) mneme: Sacrifice G2 Gamma\nBuild R1 Gamma\nBuild R3 Epsilon\n\n45) Danner: Sacrifice G1 Danner\nBuild R3 Eta\n\n46) mneme: Sacrifice Y2 Mneme\nMove R2 Gamma Eta\nMove R1 Gamma Eta\nCatastrophe Eta R\n\n\tDanner: Sorry for my slowness. And congratulations!\n\tmneme: Thanks. So it goes; I'd have preferred to play it out--I only had a minor advantage!\r\n\n\nHomeworlds Online (SDG# 14750)\nVariants: "Hard time"\nStarted: 2009.12.9, Ended: 2009.12.21\nParticipants: Horowits (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) Horowits: Homeworld G3 B1 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) Horowits: Build Y1 Horowits\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) Horowits: Trade Y1 B1 Horowits\n\n7) MadWuher: Build G1 Madwuher\n\n8) Horowits: Build B1 Horowits\n\n9) MadWuher: Build G1 Madwuher\n\n10) Horowits: Discover B1 Horowits G2 Jello\n\n\nHomeworlds Online (SDG# 14017)\nVariants: "Hard time"\nStarted: 2009.12.11, Ended: 2009.12.16\nParticipants: ExKirby (S), zoltar (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 11422)\nStarted: 2009.12.11, Ended: 2010.5.3\nParticipants: Danner (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) Danner: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\tDanner: Hi! Have a good game!\n\tDanner: Did you choose the nickname 'zoltar' after the Iceland character?\n\tzoltar: No I didn't, it was from a silly movie, actually. Have a great game!\n\n4) Danner: Build G1 Danner\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Danner: Trade G1 R1 Danner\n\n7) zoltar: Build Y1 Zoltar\n\n8) Danner: Build R1 Danner\n\n9) zoltar: Build Y1 Zoltar\n\n10) Danner: Build R2 Danner\n\tzoltar: b y1 zoltar\n\n11) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n12) Danner: Trade R2 Y2 Danner\n\n13) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n14) Danner: Discover Y2 Danner G3 Garrett\n\tzoltar: Yellow Alert!\n\tDanner: :D\n\n15) zoltar: Sacrifice Y1 Zoltar\nDiscover Y1 Greenbelt G1 Greendale\n\n16) Danner: Build G1 Danner\n\n17) zoltar: T Y3 G3 Zoltar\n\n18) Danner: Discover G1 Danner Y3 Zombie\n\n19) zoltar: Discover Y2 Greenbelt B3 Bluebeard\n\n20) Danner: Build G1 Danner\n\n21) zoltar: Build G2 Zoltar\n\n22) Danner: Discover G1 Danner Y3 Artemus\n\n23) zoltar: Trade Y2 R2 Bluebeard\n\n24) Danner: Build G2 Danner\n\n25) zoltar: Sacrifice G2 Zoltar\nBuild G2 Zoltar\nBuild R2 Bluebeard\n\n26) Danner: Move R1 Danner Artemus\n\n27) zoltar: Move Y3 Greenbelt Artemus\n\n28) Danner: Discover G1 Artemus Y2 Yellowbelt\n\n29) zoltar: Move G2 Zoltar Yellowbelt\n\n30) Danner: Discover G1 Yellowbelt Y1 Freeway\n\n31) zoltar: Move G2 Yellowbelt Zombie\n\n32) Danner: Sacrifice G3 Danner\nBuild G2 Zombie\nBuild G3 Danner\nBuild Y2 Garrett\n\n33) zoltar: Sacrifice R2 Bluebeard\nAttack R1 Artemus\nAttack G2 Zombie\n\n34) Danner: Move G1 Freeway Zombie\nCatastrophe Zombie G\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Greendale\nBuild Y3 Zoltar\nBuild R2 Bluebeard\n\n36) Danner: Move Y2 Garrett Greendale\n\n37) zoltar: Trade R2 G2 Bluebeard\n\n38) Danner: Build R2 Danner\n\n39) zoltar: Discover Y1 Zoltar R2 Redriver\n\n40) Danner: Sacrifice R1 Danner\nAttack Y1N Greendale\n\n41) zoltar: Move Y1 Redriver Greendale\nCatastrophe Greendale Y\n\n42) Danner: Build R1 Danner\n\n43) zoltar: Sacrifice G2 Bluebeard\nBuild R2 Bluebeard\nBuild R3 Artemus\n\n44) Danner: Move R2 Danner Garrett\n\n45) zoltar: Trade R2 G2 Bluebeard\n\n46) Danner: Build Y1 Garrett\n\n47) zoltar: Build G1 Bluebeard\n\n48) Danner: Sacrifice G2 Danner\nBuild R2 Danner\nBuild R3 Garrett\n\n49) zoltar: Build R3 Bluebeard\n\n50) Danner: Sacrifice Y2 Garrett\nMove R1 Danner Bluebeard\nMove R2 Danner Bluebeard\nCatastrophe Bluebeard R\n\n51) zoltar: Build G1 Bluebeard\n\n52) Danner: Move R3 Garrett Danner\n\n53) zoltar: Trade G2 Y2 Bluebeard\n\n54) Danner: Build Y1 Garrett\n\n55) zoltar: Sacrifice G1 Bluebeard\nBuild Y1 Zoltar\n\n56) Danner: Discover Y1 Garrett Y2 Gamall\n\n57) zoltar: Move R3 Artemus Gamall\n\n58) Danner: Discover Y1 Gamall R3 Orland\n\n59) zoltar: Build G1 Bluebeard\n\n60) Danner: Build R1 Garrett\n\tDanner: Oh yeah, the most stable homeworld.\n\tDanner: Pardon me, that I don't make my next move now, but I must go to the parliament.\n\n61) zoltar: Sacrifice G1 Bluebeard\nBuild R2 Artemus\n\n62) Danner: Build G1 Danner\n\n63) zoltar: Trade Y1 G1 Zoltar\n\n64) Danner: Build Y1 Garrett\n\n65) zoltar: Build G2 Bluebeard\n\n66) Danner: Discover G1 Danner B3 Caduca\n\n67) zoltar:\nBuild G2 Bluebeard\n\n68) Danner: Discover Y1 Garrett B2 Builder\n\n69) zoltar: Sacrifice G2 Bluebeard\nBuild G2 Bluebeard\nBuild R2 Artemus\n\n70) Danner: Move R2 Garrett Builder\n\n71) zoltar: Sacrifice Y3 Artemus\nMove R1 Artemus Danner\nMove R2 Artemus Danner\nMove R2 Artemus Danner\nCatastrophe Danner R\n\n72) Danner: Move R1 Garrett Danner\n\n73) zoltar: Sacrifice G2 Bluebeard\nBuild Y3 Bluebeard\nBuild Y3 Zoltar\n\n74) Danner: Build G2 Caduca\n\n75) zoltar: Build G2 Bluebeard\n\n76) Danner: Trade G1 R1 Caduca\n\n77) zoltar: Move G1 Bluebeard Danner\n\n78) Danner: Sacrifice G3 Danner\nBuild R2 Builder\nBuild R2 Builder\nBuild R3 Danner\n\n79) zoltar: Trade G2 B2 Bluebeard\n\n80) Danner: Move R2 Builder Bluebeard\n\n81) zoltar: Move Y3 Zoltar Builder\n\n82) Danner: Sacrifice R2 Builder\nAttack B2N Bluebeard\nAttack Y2N Bluebeard\n\tDanner: Victory is near... too bad it isn't mine\n\tzoltar: Well, then I'd better start attacking, eh?\n\n83) zoltar: Sacrifice R3 Gamall\nAttack R2 Bluebeard\nAttack Y2 Bluebeard\nAttack B2 Bluebeard\n\n84) Danner: Sacrifice R2 Builder\nAttack G1N Danner\nPass\n\tDanner: Maybe.\n\n85) zoltar: Build Y2 Zoltar\n\tzoltar: Banzai!!!\n\n86) Danner: Move Y1 Garrett Builder\n\n87) zoltar: Move Y3 Builder Caduca\n\tDanner: Red Alert! The Homeworld is under seige!\n\tzoltar: nice defense!\n\n88) Danner: Move Y1 Builder Zoltar\n\tzoltar: Yeah, I don't even think it's worth wasting a move saving my 'invasion force'. I have more pieces, but your defense was great. Had I seen that coming I would have sacked to move all three green ships into your homeworld and blow up your G3 immediately before you could have sacked it.\n\tDanner: Thanks!\n\n89) zoltar: Move Y2 Zoltar Builder\n\n90) Danner: Attack G1N Zoltar\n\n91) zoltar: Build R2 Bluebeard\n\n92) Danner: Discover R1 Danner G3 Garrett\n\n93) zoltar: Sacrifice R2 Bluebeard\nAttack Y1 Builder\nAttack R1 Caduca\n\n94) Danner: Sacrifice G2 Caduca\nBuild G1 Zoltar\nBuild G2 Zoltar\n\n95) zoltar: Attack G2 Zoltar\n\n96) Danner: Trade G1 B1 Zoltar\n\n97) zoltar: Sacrifice G2 Zoltar\nBuild R2 Bluebeard\nBuild B1 Bluebeard\n\n98) Danner: Build R2 Garrett\n\n99) zoltar: Build R3 Bluebeard\n\n100) Danner: Trade R3 G3 Danner\n\n101) zoltar: Trade R2 G2 Bluebeard\n\tDanner: Garrett is back, hurray!\n\n102) Danner: Sacrifice G1 Danner\nBuild B2 Zoltar\n\n103) zoltar: Build G1 Bluebeard\n\n104) Danner: Sacrifice Y1 Orland\nMove R2 Garrett Danner\n\n105) zoltar: Attack B2 Zoltar\n\n106) Danner: Build Y1 Zoltar\n\n107) zoltar: Move Y2 Builder Garrett\n\n108) Danner: Build G1 Zoltar\n\n109) zoltar: Sacrifice R3 Bluebeard\nAttack R1 Garrett\nAttack G1 Zoltar\nAttack G1 Zoltar\n\n110) Danner: Attack G1N Zoltar\n\n111) zoltar: Sacrifice G2 Bluebeard\nBuild R2 Garrett\nBuild R3 Caduca\n\n\n112) Danner: Discover B1 Zoltar G2 Karras\n\n113) zoltar: Move B2 Bluebeard Karras\n\n114) Danner: Attack G1N Zoltar\n\n115) zoltar: Sacrifice G2 Bluebeard\nBuild R3 Bluebeard\nBuild R3 Garrett\n\n116) Danner: Build G2 Zoltar\n\n117) zoltar: Attack G2 Zoltar\n\n118) Danner: Move G1 Zoltar Builder\n\n119) zoltar: Sacrifice R3 Garrett\nAttack G1 Zoltar\nAttack Y1 Zoltar\nAttack Y1 Zoltar\n\n120) Danner: Build G2 Builder\n\n121) zoltar: Sacrifice G2 Zoltar\nBuild G2 Bluebeard\nBuild G3 Zoltar\n\n122) Danner: Pass\n\n123) zoltar: Build R3 Garrett\n\n124) Danner: Pass\n\n125) zoltar: Move R3 Garrett Builder\n\n126) Danner: Pass\n\n127) zoltar: Sacrifice R3 Bluebeard\nAttack B1 Karras\nAttack G2 Builder\nAttack G1 Builder\n\n128) Danner: Pass\n\n129) zoltar: Sacrifice G2 Builder\nBuild G2 Bluebeard\nBuild R3 Bluebeard\n\n130) Danner: Pass\n\n131) zoltar: Move R2 Bluebeard Danner\n\tDanner: I bet null-move heuristic would not work with HomeWorlds. :D\n\n132) Danner: Sacrifice R2 Danner\nAttack R2N Danner\nPass\n\tDanner: Even the Global Reserve Stash has gone bankrupt.\n\n133) zoltar: Sacrifice Y3 Zoltar\nMove Y1 Zoltar Karras\nMove B2 Karras Caduca\nMove B1 Karras Caduca\n\n134) Danner: Pass\n\tzoltar: My starfleet now rules the known galaxy!\n\tDanner: My starfleet is getting tired of doing nothing.\n\n135) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Caduca\nBuild R2 Bluebeard\n\n136) Danner: Pass\n\n137) zoltar: Sacrifice Y3 Caduca\nMove R1 Caduca Danner\nMove R1 Garrett Danner\nMove R2 Bluebeard Danner\nCatastrophe Danner R\n\n138) Danner: Pass\n\tDanner: Nice fleet!\n\n139) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Garrett\nBuild R1 Caduca\n\tzoltar: Thanks. I guess it's time to attack!\n\n140) Danner: Move G3 Danner Bluebeard\nCatastrophe Bluebeard G\n\n\tDanner: Oh, then this was cruel :(\r\nI didn't really think it will allow me to do this. HW rules don't allow this.\n\tDanner: "Oh, then this was cruel" I mean, what I did. I'm not sure how well I can express myself in English.\r\nI remembered that this rule was implemented, but it seems, not completly, or I'm just wrong.\n\tDanner: Anyway, congratulations on your victory, and sorry for the sudden end.\n\tzoltar: Oh, well, I was planning to assimilate the Danner homeworld peacefully.... But that's interesting to know. You used to not be able to abandon your homeworld, and I wonder what happens if you blow the other guy's up in the same move?\n\tDanner: Yeah, rightful question.\n\nHomeworlds Online (SDG# 14476)\nStarted: 2009.12.11, Ended: 2010.1.4\nParticipants: zoltar (S), shmil1 (N)\nWinner: zoltar\n\n1) shmil1: Homeworld R1 B3 G3\n\n2) zoltar: Homeworld B2 R3 G3\n\n3) shmil1: Build G1 Shmil1\n\n4) zoltar: Build G1 Zoltar\n\n5) shmil1: Sacrifice G3 Shmil1\nBuild G1 Shmil1\nBuild G2 Shmil1\nBuild G2 Shmil1\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) shmil1: Trade G2 Y2 Shmil1\n\n8) zoltar: Build Y1 Zoltar\n\n9) shmil1: Discover G2 Shmil1 R2 K25\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) shmil1: Trade G1 B1 Shmil1\n\n12) zoltar: Build Y1 Zoltar\n\n13) shmil1: Move B1 Shmil1 K25\n\n14) zoltar: Trade Y1 B1 Zoltar\n\n15) shmil1: Sacrifice G2 K25\nBuild B1 K25\nBuild B2 K25\n\n16) zoltar: Build B2 Zoltar\n\n17) shmil1: Sacrifice Y2 Shmil1\nDiscover B2 K25 Y1 Mac\nMove B1 K25 Mac\n\n18) zoltar: Move B2 Zoltar Mac\n\n19) shmil1: Move B2 Mac Zoltar\n\n20) zoltar: Sacrifice R1 Zoltar\nAttack B1 Mac\n\n21) shmil1: Build G1 Shmil1\n\n22) zoltar: Sacrifice B1 Zoltar\nTrade B2 R2 Mac\n\n23) shmil1: Sacrifice B1 K25\nTrade B2 R2 Zoltar\n\n24) zoltar: Attack R2 Zoltar\n\n25) shmil1: Build G1 Shmil1\n\tzoltar: Zoronians cheer in celebration as the Zoltar homeworld has been successfully defended from alien barbarians!\n\n26) zoltar: Discover R2 Mac Y2 Deathstar\n\n27) shmil1: Trade G1 R1 Shmil1\n\n28) zoltar: Move R2 Deathstar Shmil1\n\n29) shmil1: Trade G1 Y1 Shmil1\n\n30) zoltar: Sacrifice R2 Zoltar\nAttack G1 Shmil1\nAttack Y1 Shmil1\n\n\nHomeworlds Online (SDG# 14561)\nStarted: 2009.12.11, Ended: 2010.1.25\nParticipants: zoltar (S), ZackStack (N)\nWinner: zoltar\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Thanks for the challenge Zoltar! Have a good game.\n\n2) zoltar: Homeworld B1 R3 G3\n\n3) ZackStack: Build G1 Zackstack\n\n4) zoltar: Build G1 Zoltar\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ZackStack: Build G1 Zackstack\n\n8) zoltar: Build G1 Zoltar\n\n9) ZackStack: Discover G1 Zackstack B3 Or\n\tzoltar: Hi, ZackStack!\n\tZackStack: Hello zoltar! I see we play similar opens... now to name a system something that strikes fear into all Zendo players... ;-)\n\n10) zoltar: Trade G1 B1 Zoltar\n\tzoltar: "Mu" perhaps?\n\n11) ZackStack: Build G1 Or\n\n12) zoltar: Build B1 Zoltar\n\n13) ZackStack: Build G1 Or\n\n14) zoltar: Build G2 Zoltar\n\n15) ZackStack: Build G2 Zackstack\n\n16) zoltar: Discover G2 Zoltar Y2 Yellowstone\n\n17) ZackStack: Trade G1 Y1 Or\n\n18) zoltar: Build Y2 Zoltar\n\n19) ZackStack: Build Y2 Or\n\n20) zoltar: Discover Y1 Zoltar B2 Blueridge\n\n21) ZackStack: Trade Y2 B2 Or\n\n22) zoltar: Move B1 Zoltar Yellowstone\n\n23) ZackStack: Discover B2 Or G2 Greengorge\n\n24) zoltar: Sacrifice G2 Yellowstone\nBuild B3 Yellowstone\nBuild B3 Yellowstone\n\n25) ZackStack: Build Y2 Or\n\tZackStack: Ooo... Nice move! And Merry Christmas!\n\n26) zoltar: Trade B3 R3 Yellowstone\n\tzoltar: Thanks, and Merry Christmas to you too.\n\n27) ZackStack: Build B3 Greengorge\n\n28) zoltar: Sacrifice B1 Zoltar\nTrade B3 Y3 Yellowstone\n\n29) ZackStack: Trade B2 R2 Greengorge\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Blueridge\nBuild R1 Yellowstone\n\tzoltar: Well, I'll try something fancy again!\n\n31) ZackStack: Trade G1 R1 Or\n\n32) zoltar: Trade R1 G1 Yellowstone\n\tZackStack: Yup. You're getting way too fancy for me over there :-)\n\n33) ZackStack: Build R1 Greengorge\n\n34) zoltar: Build R2 Yellowstone\n\n35) ZackStack: Discover R1 Or G2 With\n\n36) zoltar: Move R3 Yellowstone Or\n\tzoltar: Now I'm really confused. So many colors and planets and possibilities.\n\n37) ZackStack: Sacrifice Y2 Or\nMove R1 With Zoltar\nMove R1 Greengorge Zoltar\n\tZackStack: Isn't that why we play this game? ;-)\r\n\r\nAlso... I find it is manditory to hum Vader's Theme whenever moving a big red ship :-)\n\n38) zoltar: Sacrifice R2 Yellowstone\nAttack G1 Or\nAttack Y1 Or\n\n39) ZackStack: Sacrifice G2 Zackstack\nBuild R2 Zoltar\nBuild Y2 Zackstack\nCatastrophe Zoltar Red\n\n\n40) zoltar: Sacrifice Y2 Zoltar\nDiscover Y3 Yellowstone B3 Bluemoon\nDiscover G1 Yellowstone B1 Blueberry\n\tzoltar: Well, I may be doomed now...\n\tZackStack: I'm sure you'll find a way to keep things interesting!\n\n41) ZackStack: Discover Y2 Zackstack G3 Greengiant\n\n42) zoltar: Trade Y3 G3 Bluemoon\n\tzoltar: Well, this is the best I can come up with. I can for now try to not let you get more than one blue piece so I may stay alive!\n\tZackStack: Effective... now I need a new plan :-)\n\n43) ZackStack: Trade B3 Y3 Greengorge\n\n44) zoltar: Sacrifice G3 Bluemoon\nBuild Y2 Or\nBuild B2 Yellowstone\nBuild B3 Yellowstone\n\n45) ZackStack: Build G1 Zackstack\n\tZackStack: On second thought...\n\n46) zoltar: Build G2 Or\n\n47) ZackStack: Trade G1 R1 Zackstack\n\tzoltar: Yeah, I was afraid if I traded in a Y3 you'd grab it: I liked my position much better when I had all 3 Y3 ships. \n\tzoltar: But now I've successfully hoarded the Blues!\n\tZackStack: Well... I wasn't going to break in on the blue market any time soon... so snagging some movement seemed like the most valuable move.\n\n48) zoltar: Move B3 Yellowstone Greengiant\n\n49) ZackStack: Discover Y2 Greengiant R2 Redsun\n\n50) zoltar: Build B3 Greengiant\n\n51) ZackStack: Move R2 Greengorge Blueberry\n\tZackStack: Sorry for the delay... I haven't had much time to sit an puzzle through games lately... I should be back on track now! Erm... in RL anyway. I'm feeling quite in trouble here :-)\n\n52) zoltar: Sacrifice G1 Blueberry\nBuild G1 Or\n\n53) ZackStack: Discover R1 Zackstack G3 Greenglob\n\tZackStack: I even saw that coming... what to do about it? Not sure...\n\n54) zoltar: Trade B3 R3 Greengiant\n\n55) ZackStack: Sacrifice Y2 Redsun\nMove R2 Blueberry Yellowstone\nMove R1 Greenglob Zoltar\n\tzoltar: Retreat!\n\tZackStack: How have you not turned that ship advantage into a win yet? :-p\n\n56) zoltar: Sacrifice R3 Greengiant\nAttack R1 Zoltar\nAttack R2 Yellowstone\nPass\n\n57) ZackStack: Build Y2 Greengorge\n\tzoltar: I'm working on it! But I'd like more big ships first.\n\tZackStack: Well... who wouldn't :-p\n\n58) zoltar: Move G1 Or Zackstack\n\n59) ZackStack: Move Y3 Greengorge Zoltar\n\tzoltar: I knew having a second red ship would come in handy!\n\n60) zoltar: Sacrifice Y3 Blueridge\nMove G2 Or Zackstack\nMove G1 Or Zackstack\nMove B3 Greengiant Zackstack\nCatastrophe Zackstack G\n\n61) ZackStack: Move Y2 Greengorge Zoltar\n\tzoltar: Attack!!!\n\tZackStack: I'm not even in position to go down swinging here... good game! I'll enjoy watching the end of my homeworld :-)\n\n62) zoltar: Sacrifice R3 Or\nAttack Y2 Zoltar\nAttack Y3 Zoltar\nAttack Y1 Zackstack\n\n\tZackStack: I think we'll watch from here where its safe :-)\n\tzoltar: gg -- wanna play again?\n\tZackStack: I don't think I've ever lost *all* of my ships before :-) And yes, I'd enjoy another game!\n\nHomeworlds Online (SDG# 14718)\nStarted: 2009.12.11, Ended: 2009.12.17\nParticipants: zoltar (S), larry (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 14769)\nVariants: "Hard time"\nStarted: 2009.12.12, Ended: 2010.1.29\nParticipants: wyons (S), zoltar (N)\nWinner: wyons\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) wyons: Homeworld R2 B1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) wyons: Build G1 Wyons\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) wyons: Trade G1 Y1 Wyons\n\n7) zoltar: Build G1 Zoltar\n\tzoltar: b g1 zoltar\n\n8) wyons: Build G1 Wyons\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) wyons: Trade G1 B1 Wyons\n\n11) zoltar: Build B2 Zoltar\n\n12) wyons: Build B2 Wyons\n\n13) zoltar: Trade B2 R2 Zoltar\n\n14) wyons: Trade B1 R1 Wyons\n\n15) zoltar: Build G1 Zoltar\n\n16) wyons: Build G1 Wyons\n\n17) zoltar: Discover G1 Zoltar B2 Blueridge\n\n18) wyons: Discover G1 Wyons Y3 Armadillo\n\n19) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n20) wyons: Move B2 Wyons Armadillo\n\n21) zoltar: Move R2 Zoltar Blueridge\n\n22) wyons: Move R1 Wyons Armadillo\n\n23) zoltar: Build G1 Zoltar\n\n24) wyons: Build Y1 Wyons\n\n25) zoltar: Build Y2 Zoltar\n\n26) wyons: Build Y2 Wyons\n\n27) zoltar: Move Y1 Zoltar Blueridge\n\n28) wyons: Discover Y1 Wyons G3 Zebra\n\n29) zoltar: Build G2 Blueridge\n\n30) wyons: Trade Y1 R1 Wyons\n\n31) zoltar: Discover G2 Blueridge Y3 Yellowsun\n\n32) wyons: Build G2 Wyons\n\n33) zoltar: Discover G1 Blueridge Y3 Yellowjacket\n\n34) wyons: Move B2 Armadillo Greenbelt\n\n35) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Greenbelt\nBuild B2 Greenbelt\nCatastrophe Greenbelt B\n\n36) wyons: Sacrifice G3 Wyons\nBuild Y1 Wyons\nBuild G2 Armadillo\nBuild G3 Wyons\n\n37) zoltar: Build Y2 Zoltar\n\n38) wyons: Trade Y1 B1 Wyons\n\n39) zoltar: Sacrifice Y2 Zoltar\nMove G1 Yellowjacket Wyons\nMove G2 Yellowsun Wyons\nCatastrophe Wyons G\n\n40) wyons: Move G1 Armadillo Wyons\n\twyons: woops, I missed that.\n\n41) zoltar: Discover R2 Blueridge Y3 Yellowstone\n\twyons: ...and it may be fatal\n\n42) wyons: Build B1 Wyons\n\tzoltar: Yeah, but I have no easy way to exploit it yet, but only if I can attack before we both grow more 3-pip ships, then you're done for.\n\tzoltar: Actually, I better undo my move and think about this tomorrow, as I'm sleepy and I've had an exhaustive weekend of partying!\n\n43) zoltar: Move G1 Zoltar Blueridge\n\n44) wyons: Move B1 Wyons Armadillo\n\n45) zoltar: Discover G1 Blueridge Y3 Mellowyellow\n\n46) wyons: Build B2 Armadillo\n\n47) zoltar: Build Y1 Zoltar\n\n48) wyons: Build B2 Armadillo\n\n49) zoltar: Build Y2 Zoltar\n\n50) wyons: Build B3 Wyons\n\tzoltar: Wow, I'm about ready to resign. I think I'm lost.\n\n\tzoltar: Yeah, that is just as good as knocking out all my yellows. I'm shut out of the Blues, and you can simply swap them for all the other larges and then grow them back immediately again. I don't have a chance. Well played. We can play again if you wish. Thanks!\n\nHomeworlds Online (SDG# 14804)\nStarted: 2009.12.13, Ended: 2009.12.23\nParticipants: supergnouf (S), captncavern (N)\nWinner: supergnouf\n\n1) captncavern: Homeworld B2 G3 R3\n\n2) supergnouf: Homeworld G3 B1 Y3\n\n3) captncavern: Build R1 Captncavern\n\n4) supergnouf: Build Y1 Supergnouf\n\tsupergnouf: ca t'as pas suffit la derniere fois :)\n\n5) captncavern: Trade R1 Y1 Captncavern\n\tcaptncavern: Ben, on va essayer de se rattraper ce coup-ci :)\n\n6) supergnouf: Trade Y1 R1 Supergnouf\n\n7) captncavern: Build R1 Captncavern\n\n8) supergnouf: Build Y1 Supergnouf\n\n9) captncavern: Trade R1 G1 Captncavern\n\n10) supergnouf: Trade Y1 G1 Supergnouf\n\n11) captncavern: Build Y1 Captncavern\n\tcaptncavern: Ben alors, tu joues, mais tu réponds plus aux mails ?\n\n12) supergnouf: Build R1 Supergnouf\n\n13) captncavern: Discover Y1 Captncavern B1 Un\n\n14) supergnouf: Discover R1 Supergnouf Y2 Picoro\n\n15) captncavern: Build R1 Captncavern\n\n16) supergnouf: Build R2 Supergnouf\n\n17) captncavern: Build R2 Captncavern\n\n18) supergnouf: Build R2 Supergnouf\n\n19) captncavern: Move R2 Captncavern Un\n\tcaptncavern: Oh ! Qu'est-ce que tu fais ? Tu veux plus me parler ? :p\n\n20) supergnouf: Sacrifice G1 Supergnouf\nBuild R3 Picoro\n\tsupergnouf: non, mais j'ai pas grand chose à dire et je suis un peu occupé :)\r\npar ailleurs, je peux maintenant jouer de mon lieu de travail :D je suis pas sur que ce soit une bonne chose, m'enfin, comme ca les journées passent plus vite.\n\n21) captncavern: Discover R2 Un Y2 Deux\n\n22) supergnouf: Discover R2 Supergnouf Y2 Bou\n\n23) captncavern: Build R3 Captncavern\n\n24) supergnouf: Sacrifice Y3 Supergnouf\nMove R1 Picoro Un\nMove R1 Un Captncavern\nDiscover R3 Picoro Y1 Freeze\nCatastrophe Captncavern R\n\n25) captncavern: Build Y2 Captncavern\n\n26) supergnouf: Move R3 Freeze Captncavern\n\tcaptncavern: Je croyais pas que tu ferais ça, mais c'est vrai que ça me fout dans la m...\n\n27) captncavern: Trade G1 R1 Captncavern\n\n28) supergnouf: Sacrifice R2 Bou\nAttack Y2 Captncavern\nAttack R1 Captncavern\n\tcaptncavern: Tiens, tu peux aller sur cette page et me dire ce que tu penses de l'idée de logo de Fumie : http://forums.superdupergames.org/viewtopic.php?p=7954#7954 ?\n\tcaptncavern: Fumie dit qu'elle préfèrerait un cercle entier autour...\n\n29) captncavern: Build Y1 Captncavern\n\n30) supergnouf: Sacrifice R2 Supergnouf\nAttack Y1 Captncavern\nAttack Y1 Captncavern\n\tcaptncavern: Vite vu, celle-là !\n\n\nHomeworlds Online (SDG# 14846)\nVariants: "Hard time"\nStarted: 2009.12.16, Ended: 2010.1.31\nParticipants: jeep (S), stoneaxe (N)\nWinner: jeep\n\n1) stoneaxe: Homeworld B2 Y3 G3\n\n2) jeep: Homeworld B1 R2 G3\n\n3) stoneaxe: Build G1 Stoneaxe\n\n4) jeep: Build G1 Jeep\n\n5) stoneaxe: Trade G1 Y1 Stoneaxe\n\n6) jeep: Trade G1 Y1 Jeep\n\tstoneaxe: Hi Jeep. Thanks for the game of HW! I haven't played this one in awhile, so I might be rusty.\n\tjeep: Yeah, me too. ;)\n\n7) stoneaxe: Build G1 Stoneaxe\n\n8) jeep: B G1 Jeep\n\n9) stoneaxe: Trade G1 R1 Stoneaxe\n\n10) jeep: D G1 Jeep Y3 Bank\n\n11) stoneaxe: Build G1 Stoneaxe\n\n12) jeep: D Y1 Jeep Y3 Submarine\n\n13) stoneaxe: Discover G1 Stoneaxe B1 Bogey\n\n14) jeep: Build G1 Jeep\n\n15) stoneaxe: Build G2 Stoneaxe\n\n16) jeep: Trade G1 Y1 Jeep\n\n17) stoneaxe: Build Y2 Stoneaxe\n\n18) jeep: Build Y2 Jeep\n\n\nHomeworlds Online (SDG# 14850)\nVariants: "Hard time"\nStarted: 2009.12.19, Ended: 2010.1.25\nParticipants: agentofchaos (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\tZackStack: Here's to a better game than that last one... :-)\n\n3) ZackStack: Build G1 Zackstack\n\tagentofchaos: We'll see...\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) ZackStack: Build G1 Zackstack\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) ZackStack: Discover G1 Zackstack B3 Bigblue\n\n10) agentofchaos: Build Y1 Agentofchaos\n\n11) ZackStack: Build Y2 Zackstack\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) ZackStack: Build G1 Bigblue\n\n14) agentofchaos: Build G2 Agentofchaos\n\n15) ZackStack: Sacrifice Y2 Zackstack\nDiscover G1 Bigblue Y2 Jump\nMove G1 Jump Agentofchaos\nCatastrophe Agentofchaos Green\n\tZackStack: Returning a favor from last game? :-)\n\n16) agentofchaos: Trade Y2 G2 Agentofchaos\n\tagentofchaos: oops...\n\n17) ZackStack: Build Y2 Zackstack\n\n18) agentofchaos: Build Y2 Agentofchaos\n\n19) ZackStack: Build G1 Bigblue\n\n20) agentofchaos: Build G1 Agentofchaos\n\n21) ZackStack: Build G2 Zackstack\n\n\tZackStack: Lousy hard time...\n\nHomeworlds Online (SDG# 14525)\nStarted: 2009.12.21, Ended: 2010.1.17\nParticipants: rawg (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy... I'm travelling on vacation right now, so while I'm happy to play, my moves might not be very prompt for a bit...\n\n2) rawg: Homeworld G3 B2 Y3\n\n3) TwoShort: Build G1 Twoshort\n\trawg: Hello. No worries. Enjoy your vacation :)\n\n4) rawg: Build Y1 Rawg\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) rawg: Trade Y1 B1 Rawg\n\n7) TwoShort: Build G1 Twoshort\n\n8) rawg: Build Y1 Rawg\n\trawg: a happy new year to you\n\n9) TwoShort: Build G1 Twoshort\n\n10) rawg: Discover B1 Rawg G1 Smalls\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n12) rawg: Sacrifice Y1 Rawg\nDiscover B1 Smalls G2 Med\n\n13) TwoShort: Build G1 Bluonia\n\n\nHomeworlds Online (SDG# 14456)\nStarted: 2009.12.22, Ended: 2009.12.22\nParticipants: ts52 (S), matthulgan (N)\nWinner: ts52\n\n\tts52: Sorry about that. I apparently missed several new game emails.\n\nHomeworlds Online (SDG# 14893)\nStarted: 2009.12.25, Ended: 2010.3.27\nParticipants: ts52 (S), face (N)\nWinner: ts52\n\n1) face: Homeworld R3 B2 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) face: Build G1 Face\n\tts52: Have a good game.\n\n4) ts52: B G1 Ts52\n\n5) face: Trade G3 Y3 Face\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) face: Build G1 Face\n\n8) ts52: Discover Y1 Ts52 G3 Grover\n\n9) face: Trade G1 R1 Face\n\n10) ts52: Build G1 Ts52\n\n11) face: Discover R1 Face Y1 Smash\n\n12) ts52: B Y2 Grover\n\n13) face: Build Y2 Face\n\n14) ts52: T G1 B1 Ts52\n\n15) face: Build G1 Face\n\tface: build g1 face\n\n16) ts52: M B1 Ts52 Grover\n\n17) face: Trade Y2 R2 Face\n\n18) ts52: Trade Y2 R2 Grover\n\n19) face: Build Y2 Face\n\n20) ts52: Build Y2 Grover\n\n21) face: Move R2 Face Smash\n\n22) ts52: Build R1 Grover\n\n23) face: Move G1 Face Smash\n\n24) ts52: B B1 Grover\n\n25) face: Trade Y2 B2 Face\n\n26) ts52: Move R1 Grover Ts52\n\n27) face: Build Y2 Face\n\n28) ts52: B R1 Grover\n\n29) face: Move B2 Face Smash\n\n30) ts52: Discover R2 Grover G2 Kermit\n\n31) face: Move Y2 Face Smash\n\n32) ts52: M Y1 Grover Kermit\n\n33) face: Discover Y2 Smash R3 Waste\n\n34) ts52: M B1 Grover Kermit\n\n35) face: Build G1 Smash\n\n36) ts52: Build G2 Ts52\n\n37) face: Move G1 Smash Waste\n\n38) ts52: D G2 Ts52 R3 Elmo\n\n39) face: Discover R1 Smash G3 Plaster\n\n40) ts52: Build G2 Ts52\n\n41) face: Build R2 Plaster\n\n42) ts52: D G2 Ts52 Y3 Bigbird\n\n43) face: Build B1 Smash\n\n44) ts52: S G2 Elmo\nB G2 Ts52\nB R3 Grover\n\n45) face: Move G1 Smash Plaster\n\n46) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Grover\nBuild Y3 Kermit\n\n47) face: Sacrifice Y2 Waste\nMove G1 Waste Ts52\nMove G1 Plaster Ts52\nCatastrophe Ts52 Green\n\n48) ts52: Sacrifice Y2 Grover\nMove Y3 Kermit Grover\nMove Y3 Grover Ts52\n\n49) face: Move B1 Smash Plaster\n\n50) ts52: Build R3 Kermit\n\tts52: Nice move. I should have seen that coming.\n\tface: thanks... still thinking this is going to be your game in the long run.\n\n51) face: Build B3 Plaster\n\n52) ts52: T Y3 G3 Ts52\n\n53) face: Trade B3 Y3 Plaster\n\n54) ts52: M R3 Grover Smash\n\n55) face: Discover R2 Smash Y2 Waste\n\n56) ts52: Attack B2 Smash\n\n57) face: Build Y2 Plaster\n\n58) ts52: Discover R1 Grover G1 Robin\n\n59) face: Build B3 Plaster\n\n60) ts52: Sacrifice Y2 Grover\nMove B1 Kermit Plaster\nMove B2 Smash Plaster\nCatastrophe Plaster Blue\n\n61) face: Build G1 Face\n\n62) ts52: Build G2 Ts52\n\n63) face: Trade G1 B1 Face\n\n64) ts52: Sacrifice G3 Ts52\nBuild G1 Bigbird\nBuild G3 Ts52\nBuild Y2 Kermit\n\n65) face: Discover B1 Face B1 Tank\n\n66) ts52: Move Y2 Kermit Grover\n\n67) face: Move R2 Plaster Robin\n\n68) ts52: Move G1 Bigbird Smash\n\n69) face: Attack R1 Robin\n\n70) ts52: S G2 Bigbird\nB G2 Smash\nB Y3 Grover\n\n71) face: Move Y2 Plaster Tank\n\n72) ts52: Move R3 Kermit Tank\n\n73) face: Move Y3 Plaster Kermit\n\n74) ts52: Attack Y2 Tank\n\n75) face: Sacrifice R2 Robin\nAttack Y1 Kermit\nAttack R2 Kermit\n\n76) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild B2 Grover\n\n77) face: Move Y1 Kermit Plaster\n\n78) ts52: Attack B1 Tank\n\n79) face: Discover R2 Kermit B3 Trash\n\n80) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Grover\nBuild B3 Tank\n\n81) face: Move Y1 Plaster Robin\n\n82) ts52: Move R2 Ts52 Plaster\n\n83) face: Move R1 Robin Plaster\n\n84) ts52: Move G2 Smash Grover\n\n85) face: Sacrifice Y3 Kermit\nMove R1 Plaster Ts52\nMove R1 Plaster Ts52\nMove R2 Trash Ts52\n\n86) ts52: Sacrifice G3 Ts52\nBuild G2 Smash\nBuild G3 Ts52\nBuild Y3 Tank\nCatastrophe Ts52 Red\n\n\tface: now i concede. just wanted to have a little fun first.\r\ni got sorely outplayed.\n\tts52: It was fun, thanks for the game.\n\nHomeworlds Online (SDG# 14948)\nVariants: "Unrated"\nStarted: 2010.1.4, Ended: 2010.1.6\nParticipants: face (S), logikal (N)\nWinner: face\n\n1) logikal: Homeworld G2 B1 Y3\n\n2) face: Homeworld R3 B2 G3\n\tmakertron: I want to play.\n\n3) logikal: Trade Y3 G3 Logikal\n\n\n\nHomeworlds Online (SDG# 14904)\nStarted: 2010.1.5, Ended: 2010.1.17\nParticipants: ts52 (S), MatrixFrog (N)\nWinner: ts52\n\n1) MatrixFrog: Homeworld G2 B3 Y3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) MatrixFrog: Build Y1 Matrixfrog\n\tts52: Have a good game.\n\n4) ts52: Build G1 Ts52\n\n5) MatrixFrog: Build Y1 Matrixfrog\n\n6) ts52: Discover G1 Ts52 Y3 Bigbird\n\n7) MatrixFrog: Discover Y1 Matrixfrog G1 Pea\n\n8) ts52: Build G1 Bigbird\n\n9) MatrixFrog: Build Y2 Matrixfrog\n\n10) ts52: B G2 Ts52\n\n11) MatrixFrog: Discover Y1 Pea G3 Broccoli\n\n12) ts52: Trade G2 Y2 Ts52\n\n13) MatrixFrog: Build Y2 Broccoli\n\n14) ts52: Discover Y2 Ts52 G3 Kermit\n\n15) MatrixFrog: Trade Y2 G2 Matrixfrog\n\n16) ts52: M G1 Bigbird Ts52\n\n17) MatrixFrog: Trade Y1 B1 Matrixfrog\n\n18) ts52: S G3 Ts52\nB G1 Bigbird\nB G2 Bigbird\nB G3 Ts52\n\n19) MatrixFrog: Build Y1 Broccoli\n\n20) ts52: Discover G2 Bigbird B1 Gonzo\n\n21) MatrixFrog: Sacrifice G2 Matrixfrog\nBuild Y2 Matrixfrog\nPass\n\n22) ts52: Sacrifice G3 Ts52\nBuild Y3 Kermit\nBuild G2 Gonzo\nBuild G3 Ts52\n\n23) MatrixFrog: Sacrifice Y3 Matrixfrog\nMove Y1 Broccoli Ts52\nMove Y1 Broccoli Ts52\nMove Y2 Broccoli Ts52\nCatastrophe Ts52 Y\n\n24) ts52: B G3 Gonzo\n\n25) MatrixFrog: Build Y1 Matrixfrog\n\n26) ts52: T G3 R3 Gonzo\n\n27) MatrixFrog: Trade Y1 R1 Matrixfrog\n\n28) ts52: B G3 Gonzo\n\n29) MatrixFrog: Build Y1 Matrixfrog\n\n30) ts52: T G3 R3 Gonzo\n\n31) MatrixFrog: Discover Y1 Matrixfrog B1 Wokka\n\n32) ts52: S Y3 Kermit\nM R3 Gonzo Matrixfrog\nM G2 Gonzo Matrixfrog\nM G2 Gonzo Matrixfrog\n\n33) MatrixFrog: Build Y1 Matrixfrog\n\n34) ts52: S R3 Matrixfrog\nA R1 Matrixfrog\nA Y2 Matrixfrog\nA Y1 Matrixfrog\n\n35) MatrixFrog: Build B2 Matrixfrog\n\n36) ts52: T G2 B2 Matrixfrog\nC Matrixfrog Blue\n\n\nHomeworlds Online (SDG# 15056)\nStarted: 2010.1.6, Ended: 2010.2.2\nParticipants: Asur (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld G2 Y3 B3\n\tZackStack: Hey Ze' Mario! Welcome to SDG. Let me know if you have any questions about how things work.\n\n2) Asur: Homeworld G1 Y2 B3\n\tAsur: Hello! I'll review the manual in a minute and play. Thanks.\n\tAsur: How do I see if I'm evil or good?\n\n3) ZackStack: Build B1 Zackstack\n\tZackStack: Evil and good are not necessary in 2 player games. We just have to take out the other player's homeworld!\n\tZackStack: Also... its a good idea to have different sized stars in your homeworld than I have in mine (say, small green and medium yellow). With the movement rules that would keep me "farther away" Feel free to undo, or we can just try this the way it is!\n\n4) Asur: Build B1 Asur\n\tAsur: Ok, Thanks!\n\n5) ZackStack: Discover B1 Zackstack G1 Emerald\n\tZackStack: I should have thought to mention it when I placed my Homeworld... \n\n6) Asur: Discover B1 Asur Y3 Saphire\n\tAsur: No problem ;)\n\tAsur: You should construct another small blue ship, right? :P\n\tZackStack: Yup. You pretty well need to start with blue and green at your homeworld... and your first move is always to make a small ship. From there you slowly get more options... but the game doesn't really get going for a few turns.\n\n7) ZackStack: Build B1 Emerald\n\tZackStack: Also... if you had left your homeworld sizes as they were... my small blue ship at emerald would have been "right next" to your homeworld instead of needing to visit a large first.\n\n8) Asur: Build B2 Asur\n\n9) ZackStack: Build B2 Zackstack\n\n10) Asur: Trade B2 R2 Asur\n\n11) ZackStack: Trade B1 Y1 Emerald\n\tZackStack: Turn based works pretty well for this game... but I prefer having my opponent across the table to make it easier to chat about tactics :-)\n\tAsur: I know. I'm not a big fan of online versions for games. I tend to get lost... :)\n\n12) Asur: Move R2 Asur Saphire\n\n13) ZackStack: Trade B2 R2 Zackstack\n\n14) Asur: Move R2 Saphire Emerald\n\n15) ZackStack: Sacrifice Y1 Emerald\nMove B1 Emerald Saphire\n\n16) Asur: Build B1 Asur\n\tZackStack: Good move... pleasantly aggressive. I probably should have traded for a yellow on my last turn so I could sacrifice for two moves...\n\n17) ZackStack: Trade B1 G1 Saphire\n\tAsur: Oh, you can move two ships at once? I didn't know that :)\n\n18) Asur: Trade B1 R1 Saphire\n\tZackStack: If you sacrifice a ship you may perform its technology actions once for each pip on the icehouse piece. On my turn I sacrificed my little yellow ship to make one move with my blue ship (mostly to keep you from getting either). Its generally a more valuable move when you sacrifice larger ships :-)\n\n19) ZackStack: Sacrifice R2 Zackstack\nAttack R1 Saphire\nPass\n\n20) Asur: Build R1 Emerald\n\n21) ZackStack: Build G2 Saphire\n\tZackStack: Here I thought we could coexist peacfully around that star :-p \n\n22) Asur: Build B1 Asur\n\tAsur: Eheh. Sorry I took so long. I was kind of stuck regarding what I should do... :P I just realized I can't bring my red ships back home, ahah\n\tZackStack: No problem. One of my friend's comments during his first couple games was: "I can never do what I want to do!" There is definitely a large amount of planning ahead necessary in this one!\n\n23) ZackStack: Build B1 Zackstack\n\n24) Asur: Discover B1 Asur G3 Diamond\n\n25) ZackStack: Sacrifice B1 Zackstack\nTrade G1 B1 Saphire\n\n26) Asur: Move B1 Asur Diamond\n\n27) ZackStack: Build B2 Zackstack\n\tZackStack: There. Now I'm ready to cause some trouble :-)\n\n28) Asur: Trade B1 Y1 Diamond\n\tAsur: Eheh \r\n\n\tZackStack: That's a really bad move. I can simply move my b1 ship from Saphire to Asur to cause a blue catastrophe. You would loose all your ships at your homeworld and loose the game. Feel free to undo!\n\tAsur: Just checking if you were paying attention.\r\n-blush- :P\n\n29) ZackStack: Discover B2 Zackstack Y1 Topaz\n\n30) Asur: Move Y1 Diamond Emerald\n\tAsur: Sigh... I completely messed up the colors.\n\n31) ZackStack: Build G1 Saphire\n\tZackStack: Bummer. Its no fun when your ships won't do what you think they should! :-)\n\n32) Asur: Build Y1 Emerald\n\n33) ZackStack: Discover B2 Topaz G3 Garnet\n\n34) Asur: Discover Y1 Emerald R2 Stall\n\n35) ZackStack: Build B1 Garnet\n\tZackStack: Saphire is actually defended from that right now. My G2 ship can use the attack action on your R2 ship since I have red technology in the system (my R1). Please undo or I will simply flip your ship to the dark... I mean... my side :-)\n\n36) Asur: Build B2 Asur\n\n37) ZackStack: Trade B2 Y2 Garnet\n\n38) Asur: Move Y1 Emerald Diamond\n\n39) ZackStack: Build B2 Garnet\n\n40) Asur: Move B2 Asur Diamond\n\n41) ZackStack: Build B2 Saphire\n\n42) Asur: Build B3 Diamond\n\tZackStack: Be careful... or its going to be business time! :-p\n\n43) ZackStack: Trade B1 Y1 Saphire\n\tAsur: Garnet: Sacrificing your Y2 to move both blues to my homeworld, right, causing overpopulation?\n\n44) Asur: Move B3 Diamond Emerald\n\tZackStack: Yes. Leaving two blue at your home would have won me the game. I'll have to try something else now :-)\n\n45) ZackStack: Sacrifice Y2 Garnet\nMove B1 Garnet Asur\nMove B2 Garnet Asur\n\tAsur: You wish. :P\n\n46) Asur: Trade B3 R3 Asur\n\n47) ZackStack: Sacrifice B2 Saphire\nTrade B1 R1 Asur\nTrade B2 R2 Asur\n\n48) Asur: Sacrifice B1 Diamond\nTrade R3 B3 Asur\n\n49) ZackStack: Move R2 Asur Saphire\n\tZackStack: Let's see how this goes ;-)\n\n50) Asur: Move Y1 Diamond Emerald\n\tAsur: Hummm\n\tZackStack: I should have taken a longer look at the ships availible in the stacks before I did that... lets see how this works!\n\n51) ZackStack: Build B1 Zackstack\n\n52) Asur: Trade B3 R3 Emerald\n\tAsur: Talk about prolonging your eventual death. :)\n\tAsur: *my \n\tZackStack: Yeah... I should have picked yellow or green to blow up one of your home stars this turn. I was greedy and hoped for another bad mistake :-D\n\n53) ZackStack: Move R1 Saphire Emerald\nCatastrophe Emerald Red\n\n54) Asur: Build Y2 Emerald\n\n55) ZackStack: Move Y1 Saphire Asur\n\n56) Asur: Sacrifice Y1 Stall\nMove B2 Diamond Emerald\n\tZackStack: I feel a little dirty for doing this...\n\n57) ZackStack: Build Y1 Asur\n\tAsur: Nooooo\n\tAsur: Enemies forever, Santa! :)\n\tZackStack: Well... at least until the end of this game :-)\n\n58) Asur: Trade Y1 B1 Emerald\n\n59) ZackStack: Trade B1 R1 Zackstack\n\n60) Asur: Trade B3 R3 Asur\n\n61) ZackStack: Sacrifice G2 Saphire\nBuild R1 Asur\nBuild R2 Asur\nCatastrophe Asur Red\n\n\tAsur: No, no more undos :) I'm on my own, now. \r\n\r\n(prepare yourself for a pikemen or alien city play after this :))\n\tZackStack: Bad time to pick being on your own I fear :-)\r\n\r\nI'll be happy to play either game (or both) send me a challenge and I'll accept!\r\n\r\nThanks for trying out Homeworlds as well. I prefer 2 player person... but have played the vast majority of games on here.\n\nHomeworlds Online (SDG# 15040)\nVariants: "Unrated"\nStarted: 2010.1.6, Ended: 2010.3.31\nParticipants: makertron (S), logikal (N)\nWinner: logikal\n\n1) logikal: Homeworld R2 B1 G3\n\n2) makertron: Homeworld R2 B1 G3\n\n3) logikal: Build G1 Logikal\n\n4) makertron: Build G1 Makertron\n\n5) logikal: Trade G1 Y1 Logikal\n\n6) makertron: Trade G1 Y1 Makertron\n\n7) logikal: Discover Y1 Logikal Y3 L1\n\n8) makertron: Trade Y1 R1 Makertron\n\n9) logikal: Move Y1 L1 Logikal\n\n10) makertron: Trade R1 Y1 Makertron\n\n11) logikal: Build G1 Logikal\n\n12) makertron: Build G1 Makertron\n\n13) logikal: Discover G1 Logikal G3 L1\n\n14) makertron: Discover G1 Makertron Y3 L2\n\n15) logikal: Build Y1 Logikal\n\n16) makertron: Build G1 L2\n\n17) logikal: Sacrifice G1 L1\nBuild Y2 Logikal\n\n18) makertron: Build Y2 Makertron\n\n19) logikal: Build G1 Logikal\n\n20) makertron: Build G2 L2\n\n21) logikal: Trade Y1 B1 Logikal\n\n22) makertron: Build Y1 Makertron\n\n23) logikal: Build B2 Logikal\n\n24) makertron: Trade Y2 B2 Makertron\n\n25) logikal: Discover G1 Logikal Y3 L1\n\n26) makertron: Build Y2 Makertron\n\n27) logikal: Sacrifice Y2 Logikal\nMove G1 L1 Logikal\nMove G1 Logikal L2\nCatastrophe L2 Green\n\n28) makertron: Discover Y1 Makertron Y3 Spacehat\n\n29) logikal: Discover B1 Logikal G3 L1\n\n30) makertron: Trade Y1 G1 Makertron\n\n31) logikal: Build B2 L1\n\n32) makertron: Discover Y2 Makertron B3 Jhaze\n\n33) logikal: Trade B1 G1 L1\n\n34) makertron: Trade G1 Y1 Makertron\n\n35) logikal: Build G1 Logikal\n\n36) makertron: Build G1 Makertron\n\n37) logikal: Build Y2 Logikal\n\n38) makertron: Build Y2 Makertron\n\n39) logikal: Move Y1 Logikal L1\n\n40) makertron: Move G1 Makertron Spacehat\n\n41) logikal: Build B1 L1\n\n42) makertron: Build B3 Makertron\n\n43) logikal: Build Y3 L1\n\n44) makertron: Move B2 Makertron Spacehat\n\n45) logikal: Build Y3 Logikal\n\n46) makertron: Build B3 Spacehat\n\n47) logikal: Trade B2 R2 Logikal\n\n48) makertron: Trade B3 R3 Spacehat\n\n49) logikal: Sacrifice Y2 Logikal\nMove B1 L1 Makertron\nMove B2 L1 Makertron\nCatastrophe Makertron Blue\n\n50) makertron: Build B1 Spacehat\n\n51) logikal: Build Y2 Logikal\n\n52) makertron: Move B1 Spacehat Makertron\n\n53) logikal: Move R2 Logikal L1\n\n54) makertron: Build G2 Spacehat\n\n55) logikal: Discover Y2 Logikal B3 L2\n\n56) makertron: Build G2 Makertron\n\n\nHomeworlds Online (SDG# 15061)\nVariants: "Unrated"\nStarted: 2010.1.7, Ended: 2010.1.28\nParticipants: makertron (S), mathochist (N)\nWinner: mathochist\n\n1) mathochist: Homeworld R1 G2 B3\n\tmathochist: It's my first time, be gentle :)\r\nOn my first turn, do I just set up my homeworld, or do I do that and then also take an action?\n\n2) makertron: Homeworld R2 B1 G3\n\n3) mathochist: Build B1 Mathochist\n\n4) makertron: Build G1 Makertron\n\n5) mathochist: Trade B1 Y1 Mathochist\n\n6) makertron: Trade G1 Y1 Makertron\n\n7) mathochist: Build B1 Mathochist\n\n8) makertron: Discover Y1 Makertron Y3 L2\n\n9) mathochist: Trade B1 R1 Mathochist\n\n10) makertron: Build G1 Makertron\n\n11) mathochist: Build R1 Mathochist\n\n12) makertron: Build G1 Makertron\n\n13) mathochist: Discover R1 Mathochist B3 Fred\n\n14) makertron: Trade G1 Y1 Makertron\n\n15) mathochist: B R2 Mathochist\n\n16) makertron: Build G1 Makertron\n\n17) mathochist: Build Y2 Mathochist\n\n18) makertron: Build G1 Makertron\n\n19) mathochist: B Y2 Mathochist\nC Makertron Green\n\n20) makertron: Trade Y1 G1 Makertron\n\n21) mathochist: M R2 Mathochist L2\n\n22) makertron: Build G1 Makertron\n\n23) mathochist: Move R2 L2 Makertron\n\n24) makertron: Build G1 Makertron\n\n25) mathochist: Attack G1 Makertron\n\n26) makertron: Build G2 Makertron\n\n27) mathochist: P\nC Makertron G\n\n\nHomeworlds Online (SDG# 15063)\nVariants: "Hard time"\nStarted: 2010.1.7, Ended: 2010.3.24\nParticipants: alexcobo (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: Homeworld R1 B2 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) MadWuher: Build G1 Madwuher\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) alexcobo: Discover Y1 Alexcobo G1 Grow\n\n7) MadWuher: Build G1 Madwuher\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) MadWuher: Build Y2 Madwuher\n\n10) alexcobo: Build Y2 Grow\n\n11) MadWuher: Discover Y1 Madwuher G3 Edora\n\n12) alexcobo: Trade Y1 R1 Alexcobo\n\n13) MadWuher: Build G1 Madwuher\n\n14) alexcobo: Build R1 Alexcobo\n\n15) MadWuher: Discover G1 Madwuher Y3 Camelot\n\n16) alexcobo: Build R2 Alexcobo\n\n17) MadWuher: Build G2 Camelot\n\n18) alexcobo: Move Y2 Grow Camelot\n\n19) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G2 Camelot\nBuild G3 Madwuher\n\n20) alexcobo: Sacrifice R2 Alexcobo\nAttack G2N Camelot\nAttack G2N Camelot\n\n21) MadWuher: Sacrifice G1 Madwuher\nBuild G1 Camelot\nCatastrophe Camelot G\n\n22) alexcobo: Trade R1 G1 Alexcobo\n\n23) MadWuher: T G2 R2 Madwuher\n\n24) alexcobo: Build G1 Alexcobo\n\n25) MadWuher: Build G2 Madwuher\n\n26) alexcobo: Trade G1 B1 Alexcobo\n\n27) MadWuher: Discover G2 Madwuher Y3 Bologna\n\tMadWuher: Sorry..... Just moved and don't have internet access at home yet. Sorry if I'm a bit delayed in my turns.\n\n28) alexcobo: Move B1 Alexcobo Grow\n\n29) MadWuher: Build G1 Madwuher\n\n30) alexcobo: Build B1 Grow\n\n31) MadWuher: Sacrifice G3 Madwuher\nBuild G2 Madwuher\nBuild G2 Madwuher\nBuild G3 Bologna\n\n32) alexcobo: Move B1 Grow Camelot\n\n33) MadWuher: Move G3 Bologna Grow\n\n34) alexcobo: Sacrifice Y1 Grow\nMove B1 Grow Camelot\n\n35) MadWuher: Move G2 Madwuher Edora\n\n36) alexcobo: Build R1 Alexcobo\n\n37) MadWuher: Move R2 Madwuher Edora\n\n38) alexcobo: Trade Y2 R2 Camelot\n\n39) MadWuher: Sacrifice Y1 Edora\nMove G3 Grow Camelot\n\n40) alexcobo: Discover R2 Camelot G1 Grow\n\n41) MadWuher: Move G3 Camelot Grow\n\n42) alexcobo: Build Y1 Alexcobo\n\n43) MadWuher: Sacrifice R2 Edora\nAttack R2 Grow\nPass\n\n44) alexcobo: Discover R1 Alexcobo Y1 Waypoint\n\n45) MadWuher: Discover G2 Madwuher B3 Endor\n\n46) alexcobo: Build R2 Alexcobo\n\n47) MadWuher: Sacrifice G2 Edora\nBuild G2 Endor\nBuild G3 Madwuher\n\n48) alexcobo: Move G1 Alexcobo Waypoint\n\n49) MadWuher: Move G2 Bologna Waypoint\n\n50) alexcobo: Move G1 Waypoint Camelot\n\n51) MadWuher: Sacrifice R2 Grow\nAttack R1 Waypoint\nPass\n\n52) alexcobo: Move Y3 Alexcobo Waypoint\n\n53) MadWuher: Sacrifice Y2 Madwuher\nMove G3 Grow Alexcobo\nMove R1 Waypoint Endor\n\n54) alexcobo: Sacrifice R2 Alexcobo\nAttack G2N Waypoint\nPass\n\n55) MadWuher: Trade G3 R3 Madwuher\n\n\nHomeworlds Online (SDG# 15072)\nStarted: 2010.1.8, Ended: 2010.1.8\nParticipants: GrantHenninger (S), logikal (N)\nWinner: logikal\n\n1) logikal: Homeworld R2 B1 G3\n\tGrantHenninger: homeworld C2 Y1 R3\n\n2) GrantHenninger: Homeworld G2 Y1 R3 *\n\tGrantHenninger: homeworld C2 Y1 R3\n\n3) logikal: Build G1 Logikal\n\n4) GrantHenninger: Build R1 Granthenninger\n\n5) logikal: Build G1 Logikal\n\n6) GrantHenninger: Build R1 Granthenninger\n\n7) logikal: Trade G1 Y1 Logikal\n\n8) GrantHenninger: Build R1 Granthenninger\n\n9) logikal: Discover G1 Logikal Y3 L1\n\n10) GrantHenninger: Build R2 Granthenninger\n\n11) logikal: Build Y1 Logikal\nCatastrophe Granthenninger Red\n\n\nHomeworlds Online (SDG# 15073)\nVariants: "Unrated"\nStarted: 2010.1.8, Ended: 2010.1.10\nParticipants: logikal (S), GrantHenninger (N)\nWinner: logikal\n\n1) GrantHenninger: Homeworld B1 Y2 G3\n\n2) logikal: Homeworld R3 B2 G3\n\n3) GrantHenninger: Build G1 Granthenninger\n\n4) logikal: Build G1 Logikal\n\n5) GrantHenninger: Trade G3 R3 Granthenninger\n\n6) logikal: Build G1 Logikal\n\n7) GrantHenninger: Build G2 Granthenninger\n\n8) logikal: Trade G1 Y1 Logikal\n\n9) GrantHenninger: Build R1 Granthenninger\n\n10) logikal: Discover G1 Logikal B1 L1\n\n11) GrantHenninger: Discover G2 Granthenninger R3 Gmh1\n\n12) logikal: Build G1 L1\n\n13) GrantHenninger: Build G2 Gmh1\n\n14) logikal: Build G2 L1\n\n15) GrantHenninger: Build G3 Gmh1\n\n16) logikal: Sacrifice G2 L1\nBuild G2 Logikal\nBuild G3 L1\n\n17) GrantHenninger: Trade R1 B1 Granthenninger\n\n18) logikal: Build Y1 Logikal\n\n19) GrantHenninger: Move B1 Granthenninger Gmh1\n\n20) logikal: Trade G1 Y1 L1\n\n21) GrantHenninger: Trade G2 R2 Gmh1\n\n22) logikal: Build Y2 L1\n\n23) GrantHenninger: Build B2 Gmh1\n\n24) logikal: Trade Y2 B2 L1\n\n25) GrantHenninger: Build B3 Gmh1\n\n26) logikal: Move B2 L1 Gmh1\nCatastrophe Gmh1 Blue\n\n27) GrantHenninger: Build R1 Granthenninger\n\n28) logikal: Discover Y1 Logikal G1 L2\n\n29) GrantHenninger: Build G2 Granthenninger\n\n30) logikal: Sacrifice G3 L1\nBuild G3 L1\nBuild Y2 L2\nBuild Y2 L2\n\n31) GrantHenninger: Trade G1 B1 Granthenninger\n\n32) logikal: Sacrifice G2 Logikal\nBuild Y3 Logikal\nBuild Y3 Logikal\n\n33) GrantHenninger: Move B1 Granthenninger Gmh1\n\n34) logikal: Build Y3 L1\n\n35) GrantHenninger: Build B2 Gmh1\n\n36) logikal: Sacrifice G3 L1\nBuild G1 L1\nBuild G2 L1\nBuild G3 Logikal\n\n37) GrantHenninger: Build B2 Gmh1\n\n38) logikal: Trade G3 B3 Logikal\n\n39) GrantHenninger: Trade R3 B3 Granthenninger\n\n40) logikal: Build B3 Logikal\n\n41) GrantHenninger: Build G3 Granthenninger\n\n42) logikal: Discover G1 L1 R3 L3\n\n43) GrantHenninger: Sacrifice G3 Granthenninger\nBuild G3 Granthenninger\nBuild R1 Granthenninger\nBuild R1 Granthenninger\n\n44) logikal: Move G2 L1 Logikal\n\n45) GrantHenninger: Sacrifice G3 Gmh1\nBuild G3 Gmh1\nBuild R2 Gmh1\nBuild R2 Gmh1\n\n46) logikal: Move B3 Logikal L1\nCatastrophe Gmh1 Red\n\n47) GrantHenninger: Move R1 Granthenninger L3\n\n48) logikal: Attack R1 L3\n\n49) GrantHenninger: Trade G3 R3 Granthenninger\n\n50) logikal: Sacrifice G3 Logikal\nBuild G2 L1\nBuild G3 L3\nBuild G3 Logikal\n\n51) GrantHenninger: Build G3 Granthenninger\n\n52) logikal: Move B3 L1 L3\n\n53) GrantHenninger: Sacrifice G2 Granthenninger\nBuild G2 Granthenninger\nBuild B1 Granthenninger\n\n54) logikal: Sacrifice Y2 L2\nMove B3 L3 Granthenninger\nMove R1 L3 Granthenninger\nCatastrophe Granthenninger Blue\nCatastrophe Granthenninger Red\n\n55) GrantHenninger: Move G3 Granthenninger L2\n\n56) logikal: Sacrifice Y3 Logikal\nMove Y1 L2 Granthenninger\nMove Y2 L2 Granthenninger\nMove Y1 L1 Granthenninger\nCatastrophe Granthenninger Yellow\n\n\nHomeworlds Online (SDG# 15080)\nVariants: "No undo, Unrated"\nStarted: 2010.1.9, Ended: 2010.1.20\nParticipants: GrantHenninger (S), makertron (N)\nWinner: GrantHenninger\n\n1) makertron: Homeworld B1 Y2 G3\n\n2) GrantHenninger: Homeworld Y1 B2 G3\n\n3) makertron: Build G1 Makertron\n\n4) GrantHenninger: Build G1 Granthenninger\n\n5) makertron: Discover G1 Makertron Y3 L2\n\n6) GrantHenninger: Trade G1 Y1 Granthenninger\n\n7) makertron: Build G1 L2\n\n8) GrantHenninger: Build Y1 Granthenninger\n\n9) makertron: Build G1 Makertron\n\n10) GrantHenninger: Trade Y1 R1 Granthenninger\n\n11) makertron: Trade G1 R1 Makertron\n\n12) GrantHenninger: Build G1 Granthenninger\n\n13) makertron: Move R1 Makertron L2\n\n14) GrantHenninger: Trade G1 B1 Granthenninger\n\n15) makertron: Build G1 Makertron\n\n16) GrantHenninger: Build G2 Granthenninger\n\n17) makertron: Trade G1 B1 Makertron\n\n18) GrantHenninger: Sacrifice G2 Granthenninger\nBuild B2 Granthenninger\nBuild B2 Granthenninger\n\n19) makertron: Build G1 Makertron\n\n20) GrantHenninger: Trade B2 R2 Granthenninger\n\n21) makertron: Build B2 Makertron\n\n22) GrantHenninger: Discover B1 Granthenninger Y3 Gmh1\n\n23) makertron: Trade B1 Y1 Makertron\n\n24) GrantHenninger: Build G2 Granthenninger\n\n25) makertron: Build G2 L2\n\n26) GrantHenninger: Sacrifice G3 Granthenninger\nBuild G2 Granthenninger\nBuild G3 Granthenninger\nBuild G3 Granthenninger\n\n27) makertron: Trade G1 R1 Makertron\n\n28) GrantHenninger: Move G2 Granthenninger L2\nCatastrophe L2 G\n\n29) makertron: Build G1 Makertron\n\n30) GrantHenninger: Build Y2 Granthenninger\n\n31) makertron: Build R2 Makertron\n\n32) GrantHenninger: Move R1 Granthenninger Gmh1\n\n33) makertron: Build Y2 Makertron\n\n34) GrantHenninger: Sacrifice Y2 Granthenninger\nMove Y1 Granthenninger Gmh1\nMove Y1 Gmh1 Makertron\nCatastrophe Makertron Y\n\n35) makertron: Trade G1 Y1 Makertron\n\n36) GrantHenninger: Sacrifice G3 Granthenninger\nBuild B1 Gmh1\nBuild B3 Gmh1\nBuild B3 Granthenninger\n\n37) makertron: Build G1 Makertron\n\n38) GrantHenninger: Trade B1 G1 Gmh1\n\n39) makertron: Move G1 Makertron L2\n\n40) GrantHenninger: Trade B3 Y3 Granthenninger\n\n41) makertron: Build R2 Makertron\n\n42) GrantHenninger: Sacrifice G3 Granthenninger\nBuild R3 Gmh1\nBuild R3 Gmh1\nBuild R3 Granthenninger\n\n43) makertron: Build B1 Makertron\n\n44) GrantHenninger: Move B1 Gmh1 Makertron\nCatastrophe Makertron B\n\n\nHomeworlds Online (SDG# 15084)\nVariants: "Unrated"\nStarted: 2010.1.10, Ended: 2010.1.11\nParticipants: melktart (S), logikal (N)\nWinner: logikal\n\n1) logikal: Homeworld B1 R2 G3\n\n2) melktart: Homeworld R1 B3 G3\n\n3) logikal: Build G1 Logikal\n\n4) melktart: Build G1 Melktart\n\n5) logikal: Trade G1 Y1 Logikal\n\n6) melktart: Trade G1 Y1 Melktart\n\n7) logikal: Build G1 Logikal\n\n8) melktart: Build G1 Melktart\n\n9) logikal: Discover G1 Logikal G3 L1\n\n10) melktart: Trade G1 R1 Melktart\n\n11) logikal: Build G1 Logikal\n\n12) melktart: Discover R1 Melktart R2 M2\n\n13) logikal: Build G1 Logikal\n\n14) melktart: Build G2 Melktart\n\n15) logikal: Discover G1 Logikal Y3 L2\n\n16) melktart: Move G2 Melktart M2\n\n17) logikal: Sacrifice G3 Logikal\nBuild G2 L2\nBuild G2 Logikal\nBuild G3 Logikal\n\n18) melktart: Build Y1 Melktart\n\n19) logikal: Discover G1 Logikal Y3 L3\n\n20) melktart: Move Y1 Melktart M2\n\n21) logikal: Sacrifice G3 Logikal\nBuild G3 Logikal\nBuild Y2 Logikal\nBuild Y2 Logikal\n\n22) melktart: Move R1 M2 L3\n\n23) logikal: Trade G2 B2 Logikal\n\n24) melktart: Attack G1 L3\n\n25) logikal: Move G2 L2 Logikal\n\n26) melktart: Build G2 M2\n\n27) logikal: Move Y2 Logikal L1\n\n28) melktart: Build Y2 Melktart\n\n29) logikal: Sacrifice G3 Logikal\nBuild Y3 Logikal\nBuild G3 Logikal\nBuild B1 Logikal\n\n30) melktart: Trade Y1 R1 Melktart\n\n31) logikal: Trade B2 R2 Logikal\n\n32) melktart: Build R3 Melktart\n\n33) logikal: Sacrifice G3 Logikal\nBuild G3 Logikal\nBuild R3 Logikal\nBuild Y1 L1\n\n34) melktart: Move R3 Melktart M2\n\n35) logikal: Sacrifice G1 L2\nBuild Y3 L1\n\n36) melktart: Move R3 M2 L1\n\n37) logikal: Move R3 Logikal L1\n\n38) melktart: Attack R3 L1\n\n39) logikal: Sacrifice Y2 L1\nDiscover Y3 L1 B2 L4\nMove G1 L1 L4\n\n40) melktart: Attack Y1 L1\n\n41) logikal: Move R2 Logikal L3\n\n42) melktart: Move R3 L1 M2\n\n43) logikal: Attack R1 L3\n\n44) melktart: Move R3 M2 L3\n\n45) logikal: Move R2 L3 L4\n\n46) melktart: Attack R1 L3\n\n47) logikal: Build R3 L4\n\n48) melktart: Move R1 Melktart M2\n\n49) logikal: Build Y2 L4\n\n50) melktart: Move R3 L3 M2\n\n51) logikal: Sacrifice Y2 L4\nMove R2 L4 L3\nMove R2 L3 M2\nCatastrophe M2 Red\n\n52) melktart: Move Y1 L1 Logikal\nCatastrophe Logikal Yellow\n\n53) logikal: Build R1 L4\n\n54) melktart: Build R2 L1\n\n55) logikal: Discover R3 L4 G1 L5\n\n56) melktart: Build G2 Melktart\n\n57) logikal: Sacrifice G3 Logikal\nBuild G2 L4\nBuild Y1 L4\nBuild G3 Logikal\n\n58) melktart: Sacrifice Y2 Melktart\nMove G2 Melktart L4\nMove G3 Melktart L4\nCatastrophe L4 Green\n\n\tlogikal: This seems to have let melktart make a move that caused her to abandon her system, which shouldn't be legal. neither of us can remember if there was another ship in her home system, but the game shouldn't have let her make that move.\n\tlogikal: Request that an admin rollback the game to the previous turn (if possible)\n\tlogikal: after checking the history, the game allowed melktart to abandon her homeworld, which should not be a legal move.\n\tlogikal: from the rules PDF: "You are never allowed to take an action or trigger a catastrophe that causes you to own no ships in your Homeworld at the end of \r\nyour turn. You may temporarily abandon your Homeworld during your turn, as long as you own at least one ship in it at the end of \r\nyour turn. "\n\tAaron: You are correct. I will examine the code. Normally such moves are caught.\n\nHomeworlds Online (SDG# 15086)\nVariants: "Unrated"\nStarted: 2010.1.11, Ended: 2010.1.13\nParticipants: logikal (S), GrantHenninger (N)\nWinner: logikal\n\n1) GrantHenninger: Homeworld Y1 B2 G3\n\n2) logikal: Homeworld Y1 B3 G3\n\n3) GrantHenninger: Build G1 Granthenninger\n\n4) logikal: Build G1 Logikal\n\n5) GrantHenninger: Trade G1 Y1 Granthenninger\n\n6) logikal: Build G1 Logikal\n\n7) GrantHenninger: Build Y2 Granthenninger\n\n8) logikal: Discover G1 Logikal Y2 L1\n\n9) GrantHenninger: Discover Y2 Granthenninger Y3 Gmh1\n\n10) logikal: Discover G1 L1 Y3 L2\n\n11) GrantHenninger: Build G1 Granthenninger\n\n12) logikal: Build G2 L2\n\n13) GrantHenninger: Move G1 Granthenninger Gmh1\n\n14) logikal: Discover G2 L2 B2 L3\n\n15) GrantHenninger: Build G2 Granthenninger\n\n16) logikal: Sacrifice G3 Logikal\nBuild G2 L3\nBuild G3 Logikal\nBuild G3 Logikal\n\n17) GrantHenninger: Sacrifice G3 Granthenninger\nBuild Y2 Granthenninger\nBuild G3 Granthenninger\nBuild Y2 Gmh1\n\n18) logikal: Trade G3 Y3 Logikal\n\n19) GrantHenninger: Build G3 Gmh1\n\n20) logikal: Sacrifice G1 L2\nBuild Y3 Logikal\n\n21) GrantHenninger: Sacrifice Y2 Granthenninger\nMove Y2 Gmh1 L3\nMove Y2 L3 Logikal\nCatastrophe Logikal Y\n\n22) logikal: Trade G1 R1 Logikal\n\n23) GrantHenninger: Trade G3 R3 Granthenninger\n\n24) logikal: Trade G2 Y2 L3\n\n25) GrantHenninger: Build G1 Granthenninger\n\n26) logikal: Build Y1 L3\n\n27) GrantHenninger: Move G3 Gmh1 Granthenninger\n\n28) logikal: Sacrifice Y2 L3\nMove G2 L3 Gmh1\nMove G2 Gmh1 Granthenninger\nCatastrophe Granthenninger Green\n\n29) GrantHenninger: Trade Y1 G1 Granthenninger\n\n30) logikal: Move Y1 L3 Logikal\n\n31) GrantHenninger: Build R1 Granthenninger\n\n32) logikal: Build G1 Logikal\n\n33) GrantHenninger: Build G2 Gmh1\n\n34) logikal: Build Y1 Logikal\n\n35) GrantHenninger: Build G2 Granthenninger\n\n36) logikal: Discover G1 Logikal Y2 L1\n\n37) GrantHenninger: Sacrifice Y2 Gmh1\nMove R3 Granthenninger Gmh1\nMove R3 Gmh1 L1\n\n38) logikal: Discover G1 L1 B3 L2\n\n39) GrantHenninger: Move G1 Gmh1 L1\n\n40) logikal: Build G2 Logikal\n\n41) GrantHenninger: Sacrifice G2 Granthenninger\nBuild G2 Granthenninger\nBuild G3 L1\n\n42) logikal: Build G3 L2\n\n43) GrantHenninger: Trade G2 Y2 Granthenninger\n\n44) logikal: Trade G2 B2 Logikal\n\n45) GrantHenninger: Trade G1 B1 Granthenninger\n\n46) logikal: Build B1 Logikal\n\n47) GrantHenninger: Move B1 Granthenninger Gmh1\n\n48) logikal: Discover B2 Logikal G1 L3\n\n49) GrantHenninger: Move B1 Gmh1 L1\n\n50) logikal: Trade B2 Y2 L3\n\n51) GrantHenninger: Trade G3 R3 L1\n\n52) logikal: Trade G3 R3 L2\n\n53) GrantHenninger: Sacrifice Y2 Granthenninger\nMove R3 L1 Logikal\nMove R3 L1 Logikal\n\n54) logikal: Sacrifice R3 L2\nAttack R3 Logikal\nAttack R3 Logikal\nPass\n\n55) GrantHenninger: Move R1 Granthenninger Logikal\nCatastrophe Logikal R\n\n\nHomeworlds Online (SDG# 15087)\nVariants: "Unrated"\nStarted: 2010.1.11, Ended: 2010.1.28\nParticipants: GrantHenninger (S), logikal (N), makertron (E)\nWinner: GrantHenninger\n\n1) logikal: Homeworld Y1 B2 G3\n\n2) makertron: Homeworld B2 Y3 G3\n\n3) GrantHenninger: Homeworld B3 Y2 G3\n\n4) logikal: Build G1 Logikal\n\n5) makertron: Build G1 Makertron\n\n6) GrantHenninger: Build G1 Granthenninger\n\n7) logikal: Discover G1 Logikal G3 L1\n\n8) makertron: Build G1 Makertron\n\n9) GrantHenninger: Discover G1 Granthenninger Y1 Gmh1\n\n10) logikal: Build G2 Logikal\n\n11) makertron: Discover G1 Makertron Y1 Spacehat\n\n12) GrantHenninger: Build G2 Granthenninger\n\n13) logikal: Build G2 Logikal\n\n14) makertron: Build G2 Makertron\n\n15) GrantHenninger: Move G1 Gmh1 Makertron\nCatastrophe Makertron G\n\n16) logikal: Trade G2 B2 Logikal\n\n17) GrantHenninger: Trade G2 Y2 Granthenninger\n\n18) logikal: Move B2 Logikal L1\n\n19) GrantHenninger: Build Y1 Granthenninger\n\n20) logikal: Build G1 Logikal\n\n21) GrantHenninger: Trade Y1 R1 Granthenninger\n\n22) logikal: Trade G1 Y1 Logikal\n\n23) GrantHenninger: Move R1 Granthenninger Spacehat\n\n24) logikal: Trade G1 Y1 L1\n\n25) GrantHenninger: Move R1 Spacehat Granthenninger\n\n26) logikal: Pass\n\n27) GrantHenninger: Build Y2 Granthenninger\n\n28) GrantHenninger: Move R1 Granthenninger Spacehat\n\n\nHomeworlds Online (SDG# 14890)\nStarted: 2010.1.11, Ended: 2010.1.12\nParticipants: MaxL (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) MaxL: Homeworld B1 G3 R3\n\tTwoShort: Howdy\n\tMaxL: Hi, this is my first game. I've read about it in the book but I'm just trying to learn.\n\n3) TwoShort: Build G1 Twoshort\n\n4) MaxL: Build R1 Maxl\n\tTwoShort: I'll try to give you some pointers as we go... for example, in future games, I'd recommend starting with a green ship.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MaxL: Trade R1 Y1 Maxl\n\n7) TwoShort: Build G1 Twoshort\n\n8) MaxL: Discover Y1 Maxl B2 Beta\n\n9) TwoShort: Build G1 Twoshort\n\tTwoShort: You probably wanted to grow again before moving out. Having 4 colors (or at least Green and Yellow) at each world (or at least your Homeworld) lets you build faster. \n\n10) MaxL: Move Y1 Beta Maxl\n\n11) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n12) MaxL: Build R1 Maxl\n\n13) TwoShort: Build G1 Twoshort\n\n14) MaxL: Move R1 Maxl Bluestar\n\n15) TwoShort: Build G2 Bluestar\n\n16) MaxL: Attack G1 Bluestar\n\n17) TwoShort: Discover G1 Twoshort G2 Grogar\n\n18) MaxL: Move R3 Maxl Grogar\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Grogar\nBuild G3 Bluestar\nBuild G3 Twoshort\n\n20) MaxL: Attack G2 Grogar\n\tTwoShort: So there's why you wanted a G3 :)\n\tMaxL: Ohhhhh.\r\n\r\nBluebird mistake?\n\n21) TwoShort: Sacrifice G2 Bluestar\nBuild G2 Grogar\nBuild Y1 Twoshort\nCatastrophe Grogar Green\n\tTwoShort: No, the "Bluebird mistake" is having only one color ships in your homeworld when the opponent can move in enough to cause a catastrophe.\r\n What I just did, sacrificing a G3 to grow 3 ships, one of which is the same G3 back again, we call the "Factory". If your opponent gets the factory going and you don't, you're in trouble. It's easiest to avoid that if you start with a g3 to begin with (and Green is a good color to have early anyway.)\r\n I believe Andy refers to "the prime directive": Don't leave your homeworld without a 3 point.\r\n And there's no special name for putting your only 3 point at a star the opponent can blow up, but...\n\tMaxL: No wait, Bluebird would be if I had all the same colour.\n\n22) MaxL: Discover Y1 Maxl Y2 Gamma\n\tMaxL: woops\n\tMaxL: forgot about that\r\n\r\nthanks for playing\n\tTwoShort: Weird, I didn't think it would let you abandon the Homeworld. You couldn't have stopped me moving my g3 in then turning it red and taking over, so it wasn't long to go in any case.\r\nI hope it wasn't too demoralizing :) One's first game is pretty much certain to be a disaster, because early missteps are generally impossible to recover from.\r\n As a general guideline, try to concentrate at first on growing as efficiently as possible; the longer you can focus on expanding your forces rather than attacking the other guy, the better.\r\n I mostly ignore the final goal at first, and pretend the whole game is to see who has more 3 pointers when we run out of one or two colors in the stash. If you win that race, you'll probably win the game. \n\n\nHomeworlds Online (SDG# 15092)\nVariants: "Unrated"\nStarted: 2010.1.11, Ended: 2010.1.20\nParticipants: melktart (S), logikal (N)\nWinner: logikal\n\n1) logikal: Homeworld R1 B2 G3\n\n2) melktart: Homeworld R1 B3 G3 Melktart\n\n3) logikal: Build G1 Logikal\n\n4) melktart: Build G1 Melktart\n\n5) logikal: Trade G1 Y1 Logikal\n\n6) melktart: Trade G1 Y1 Melktart\n\n7) logikal: Build G1 Logikal\n\n8) melktart: Build G1 Melktart\n\n9) logikal: Discover G1 Logikal Y3 L1\n\n10) melktart: Trade G1 R1 Melktart\n\n11) logikal: Build G1 Logikal\n\n12) melktart: Discover R1 Melktart G2 M2\n\n13) logikal: Build G1 Logikal\n\n14) melktart: Build Y1 Melktart\n\n15) logikal: Build G2 L1\n\n16) melktart: Move Y1 Melktart M2\n\n17) logikal: Trade G1 B1 Logikal\n\n18) melktart: Move R1 M2 L1\n\n19) logikal: Sacrifice B1 Logikal\nTrade G2 R2 L1\n\n20) melktart: Move R1 L1 M2\n\n21) logikal: Build G1 L1\n\n22) melktart: Build R2 M2\n\n23) logikal: Build Y2 Logikal\n\n24) melktart: Build Y2 M2\n\n25) logikal: Trade Y1 B1 Logikal\n\n26) melktart: Sacrifice Y2 M2\nMove R1 M2 L1\nMove R2 M2 L1\n\n27) logikal: Attack R2 L1\n\n28) melktart: Build G2 Melktart\n\n29) logikal: Sacrifice G3 Logikal\nBuild G2 Logikal\nBuild G3 Logikal\nBuild G3 L1\n\n30) melktart: Move G2 Melktart M2\n\n31) logikal: Discover G1 L1 B1 L2\n\n32) melktart: Move R1 L1 M2\n\n33) logikal: Move R2 L1 L2\n\n34) melktart: Discover R1 M2 Y3 M3\n\n35) logikal: Move R2 L1 M2\n\n36) melktart: Move G2 M2 M3\n\n37) logikal: Trade G2 Y2 Logikal\n\n38) melktart: Build G2 Melktart\n\n39) logikal: Sacrifice G3 Logikal\nBuild G3 Logikal\nBuild B1 Logikal\nBuild R2 M2\n\n40) melktart: Trade G2 B2 Melktart\n\n41) logikal: Sacrifice G3 Logikal\nBuild G2 L2\nBuild G3 Logikal\nBuild R3 L2\n\n42) melktart: Build R3 M3\n\n43) logikal: Move B1 Logikal L1\n\n44) melktart: Move Y1 M2 M3\n\n45) logikal: Move Y2 Logikal L1\n\n46) melktart: Discover R3 M3 B2 M4\n\n47) logikal: Trade G2 Y2 L2\n\n48) melktart: Move B2 Melktart M4\n\n49) logikal: Sacrifice G3 L1\nBuild G2 L2\nBuild G3 L1\nBuild B3 L1\n\n50) melktart: Trade R3 Y3 M4\n\n51) logikal: Build Y1 Logikal\n\n52) melktart: Sacrifice G2 M3\nBuild R3 M3\nBuild R3 M3\n\n53) logikal: Move R2 L2 M3\nCatastrophe M3 Red\n\n54) melktart: Build G2 Melktart\n\n55) logikal: Move R3 L2 M4\n\n56) melktart: Move Y3 M4 L1\n\n57) logikal: Attack B2 M4\n\n58) melktart: Trade G3 B3 Melktart\n\n59) logikal: Sacrifice Y1 Logikal\nMove R3 M4 L1\n\n60) melktart: Move Y1 M3 M4\n\n61) logikal: Trade Y2 R2 L1\n\n62) melktart: Move G2 Melktart M4\n\n63) logikal: Move R2 L1 M4\n\n64) melktart: Move Y3 L1 L2\n\n65) logikal: Sacrifice G3 Logikal\nBuild G3 Logikal\nBuild R1 L1\nBuild R3 M4\n\n66) melktart: Move G2 M4 L2\n\n67) logikal: Build R3 L1\n\n68) melktart: Trade B3 G3 Melktart\n\n69) logikal: Sacrifice Y2 Logikal\nMove R3 L1 L2\nMove R3 L1 M2\n\n70) melktart: Move G3 Melktart M4\n\n71) logikal: Attack Y3 L2\n\n72) melktart: Move G3 M4 Melktart\n\n73) logikal: Sacrifice Y3 L2\nMove R3 M4 Melktart\nMove G3 L1 M4\nMove G3 M4 Melktart\n\n74) melktart: Attack R3 Melktart\n\n75) logikal: Sacrifice R3 L2\nAttack R3 Melktart\nAttack G3 Melktart\nAttack Y1 Melktart\n\n\nHomeworlds Online (SDG# 15088)\nStarted: 2010.1.12, Ended: 2012.1.8\nParticipants: makertron (S), MaxL (N), GrantHenninger (E)\nWinner: GrantHenninger\n\n1) MaxL: Homeworld B3 R1 G3\n\n2) GrantHenninger: Homeworld Y1 B2 G3\n\n3) makertron: Homeworld Y2 B1 G3\n\tMaxL: Howdy, this is my second game. I'm still a little fresh.\n\n4) MaxL: Build G1 Maxl\n\n5) GrantHenninger: Build G1 Granthenninger\n\n6) makertron: Build G1 Makertron\n\n7) MaxL: Trade G1 Y1 Maxl\n\n8) GrantHenninger: Build G1 Granthenninger\n\n9) makertron: Build G1 Makertron\n\n10) MaxL: Build G2 Maxl\n\n11) GrantHenninger: Trade G1 R1 Granthenninger\n\n12) makertron: Trade G1 R1 Makertron\n\n13) MaxL: Build Y1 Maxl\n\n14) GrantHenninger: Build G1 Granthenninger\n\n15) makertron: Build G1 Makertron\n\n16) MaxL: Discover Y1 Maxl R2 Sectorx\n\n17) GrantHenninger: Trade G1 B1 Granthenninger\n\n18) makertron: Build G1 Makertron\n\n19) MaxL: Move G2 Maxl Sectorx\nCatastrophe Makertron Green\n\n20) GrantHenninger: Discover G1 Granthenninger B3 Gmh1\n\n21) makertron: Trade R1 G1 Makertron\n\n22) MaxL: Build G1 Maxl\n\n23) GrantHenninger: Build G1 Gmh1\n\n24) makertron: Build G2 Makertron\n\n25) MaxL: Build G2 Maxl\n\n26) GrantHenninger: Trade G1 Y1 Gmh1\n\n27) makertron: Trade G1 B1 Makertron\n\n28) MaxL: Trade G1 R1 Maxl\n\n29) GrantHenninger: Build Y2 Gmh1\n\n30) makertron: Build G1 Makertron\n\n31) MaxL: Build Y2 Sectorx\n\n32) GrantHenninger: Move Y1 Gmh1 Granthenninger\n\n33) makertron: Discover G1 Makertron R3 Onoff\n\n34) MaxL: Move Y2 Sectorx Onoff\n\n35) GrantHenninger: Build Y2 Gmh1\n\n36) makertron: Move B1 Makertron Onoff\n\n37) MaxL: Build Y3 Maxl\n\n38) GrantHenninger: Trade Y2 R2 Gmh1\n\n39) makertron: Build G1 Makertron\n\n40) MaxL: Build G1 Sectorx\n\n41) GrantHenninger: Build G2 Gmh1\n\n42) makertron: Trade G1 R1 Makertron\n\n43) MaxL: Move G1 Sectorx Onoff\n\n44) GrantHenninger: Build R2 Granthenninger\n\n45) makertron: Build R2 Makertron\n\n46) MaxL: Build G1 Maxl\n\n47) GrantHenninger: Sacrifice G2 Gmh1\nBuild G2 Gmh1\nBuild G3 Granthenninger\n\n48) GrantHenninger: Sacrifice G3 Granthenninger\nBuild G3 Granthenninger\nBuild R3 Gmh1\nBuild R3 Granthenninger\n\n49) MaxL: Sacrifice G3 Maxl\nBuild G3 Maxl\nBuild G3 Sectorx\nBuild R3 Maxl\n\n50) GrantHenninger: Discover G1 Gmh1 Y2 Gmh2\n\n\nHomeworlds Online (SDG# 15091)\nStarted: 2010.1.12, Ended: 2010.1.16\nParticipants: MaxL (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tMaxL: Hello again!\n\tTwoShort: Hello again. Here's my chance to get a pointer in when it can help: You probably want one of your stars to be a 2. That will put your homeworld 3 hops from mine instead of 2. the "small universe" we played last time makes for a more quickly aggressive game, but that's generally thought to be to the first players advantage. Most people think a 1/2 homeworld ("Banker") is best, and I agree. My habit of taking 1/3 ("Goldilocks") vs. new players is mostly to be nice, as opposed to an example to follow...\n\n2) MaxL: Homeworld B3 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) MaxL: Build G1 Maxl\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) MaxL: Build G1 Maxl\n\n7) TwoShort: Build Y1 Twoshort\n\n8) MaxL: Trade G1 Y1 Maxl\n\n9) TwoShort: Build Y2 Twoshort\n\n10) MaxL: Build G1 Maxl\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) MaxL: Trade G1 R1 Maxl\n\n13) TwoShort: Build G1 Twoshort\n\n14) MaxL: Discover Y1 Maxl B1 Abc\n\tTwoShort: Don't flip it back now, but as a general guideline, I wouldn't take red before you need to. Until having a red means you could get to me and do real damage, or that I can't do real damage even though I could get to you, it's not doing anything for you. \n\n15) TwoShort: Build G1 Twoshort\n\n16) MaxL: Move R1 Maxl Abc\n\n17) TwoShort: Discover G1 Twoshort B2 Bonanza\n\n18) MaxL: Move R1 Abc Grogar\n\n19) TwoShort: Discover Y1 Grogar B1 Blitzen\n\n20) MaxL: Move Y1 Abc Maxl\n\n21) TwoShort: Build G2 Bonanza\n\n22) MaxL: Trade G1 R1 Maxl\n\tTwoShort: Not sure I understand that; moving backward is seldom a good idea. Note that if you build yellow at home, I can move in and blow it up.\n\tTwoShort: Green too.\n\n23) TwoShort: Discover Y1 Twoshort G2 Gonzo\n\n24) MaxL: Build R2 Grogar\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G3 Twoshort\nBuild G3 Bonanza\n\n26) MaxL: Build R2 Grogar\n\n27) TwoShort: Trade G2 R2 Bonanza\n\n28) MaxL: Build Y2 Maxl\n\n29) TwoShort: Move Y1 Blitzen Maxl\nCatastrophe Maxl Yellow\n\n30) MaxL: Trade R1 Y1 Maxl\n\n31) TwoShort: Sacrifice G3 Bonanza\nBuild R1 Bonanza\nBuild Y1 Twoshort\nBuild Y2 Gonzo\n\n32) MaxL: Build Y2 Maxl\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bonanza\nBuild G3 Twoshort\nBuild Y3 Twoshort\n\n\n34) MaxL: Discover Y1 Maxl B1 Zeus\n\tMaxL: I've started teaching some people how to play IRL, I just wanted to know if you could move if there was only a yellow ship in the system and not a yellow star.\n\n35) TwoShort: Sacrifice Y3 Twoshort\nMove R1 Bonanza Maxl\nMove R1 Maxl Grogar\nMove G2 Bonanza Maxl\nCatastrophe Grogar Red\n\tMaxL: Sorry, the thing early was me explaining why I reversed my last move.\n\n36) MaxL: Move Y1 Zeus Maxl\n\n37) TwoShort: Trade G2 B2 Maxl\n\n38) MaxL: Trade Y2 R2 Maxl\n\n39) TwoShort: Sacrifice G3 Twoshort\nBuild B1 Maxl\nBuild B1 Maxl\nPass\nCatastrophe Maxl Blue\n\n\tMaxL: Oh damn!\r\n\r\nI didn't even realize that move!\r\n\r\nGood game.\n\nHomeworlds Online (SDG# 15094)\nStarted: 2010.1.12, Ended: 2010.2.4\nParticipants: ZackStack (S), MaxL (N)\nWinner: ZackStack\n\n1) MaxL: Homeworld B3 R1 G3\n\n2) ZackStack: Homeworld B1 R2 G3\n\tZackStack: Hey Max! Thanks for the challenge. Have a good game!\n\n3) MaxL: Build G1 Maxl\n\tMaxL: No problem!\r\n\r\nI'm still trying to get a solid gameplay plan out, I'm fairly new to homeworlds but I think it's a pretty sweet game.\r\n\r\nIf you have any constructive critism or pointers please tell me!\n\n4) ZackStack: Build G1 Zackstack\n\tZackStack: Will do! I really enjoy playing also... but can't seem to interest anyone in actually playing in person :-(\n\n5) MaxL: Build G1 Maxl\n\tMaxL: See, I am the person starting Icehouse where I live. Everyone learns the games because I teach them, so I need to know the rules solidly, which I can't say I know about Homeworlds.\r\n\r\nSo I'm just trying to learn the rules inside and out and be a better player.\n\n6) ZackStack: Build G2 Zackstack\n\tZackStack: I'm in the same boat where I live... but few of the regular guys at my club are into abstracts. I still get to play plenty of other games though :-)\r\n\r\nPlaying Homeworlds here definitely gave me a great grasp of how the game works though!\n\n7) MaxL: Trade G1 Y1 Maxl\n\tZackStack: One warning: If you leave a possible catastrophe on the board I can set it off on my turn...\n\n8) ZackStack: Trade G2 Y2 Zackstack\n\tZackStack: Hey Max! That was what I meant! On my turn I could cause a catastrophe to blow up all your green ships and win the game... Undo that last build and try something else :-)\n\n9) MaxL: Discover G1 Maxl B2 Jupiter\n\tZackStack: Much Better ;-)\n\n10) ZackStack: Discover G1 Zackstack B3 Zeus\n\n11) MaxL: Trade G1 Y1 Jupiter\n\n12) ZackStack: Build G1 Zackstack\n\n13) MaxL: Build G1 Maxl\n\n14) ZackStack: Build G2 Zeus\n\n15) MaxL: Move G1 Maxl Jupiter\n\n16) ZackStack: Trade G1 Y1 Zeus\n\n17) MaxL: Build Y2 Maxl\n\n18) ZackStack: Build G1 Zeus\n\tZackStack: That is a very dangerous move! I can sacrifice the Y2 in my system to move my G1 at Zeus to your homeworld and cause a green catastrophe there. Not insurmountable perhaps... but a major setback for you all the same. \n\tZackStack: ... feel free to undo!\n\n19) MaxL: Build G2 Jupiter\n\n20) ZackStack: Sacrifice G2 Zeus\nBuild Y2 Zackstack\nBuild Y3 Zeus\n\n21) MaxL: Build Y3 Jupiter\n\n22) ZackStack: Trade Y3 R3 Zeus\n\n23) MaxL: Trade Y1 R1 Jupiter\n\n24) ZackStack: Discover R3 Zeus G2 Gaia\n\tZackStack: So... what do you think so far?\n\n25) MaxL: Build G2 Maxl\n\n26) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zeus\nBuild G3 Zackstack\nBuild R1 Gaia\n\n27) MaxL: Build R2 Jupiter\n\n28) ZackStack: Move Y1 Zeus Gaia\n\n29) MaxL: Discover G2 Maxl B2 Bluestar\n\tZackStack: Now here's a neat trick... ;-)\n\n30) ZackStack: Move Y2 Zackstack Zeus\n\n31) MaxL: Move Y1 Maxl Bluestar\n\n32) ZackStack: Sacrifice G3 Zackstack\nBuild Y1 Zeus\nBuild Y3 Gaia\nBuild Y3 Zackstack\n\n33) MaxL: Sacrifice Y2 Maxl\nMove G1 Jupiter Zeus\nMove G2 Jupiter Zeus\nCatastrophe Zeus Green\n\n34) ZackStack: Trade Y2 R2 Zeus\n\n35) MaxL: Discover R1 Jupiter G1 Saturn\n\n36) ZackStack: Discover R2 Zeus Y2 Apollo\n\n37) MaxL: Build G1 Maxl\n\n38) ZackStack: Sacrifice G1 Zackstack\nBuild R3 Apollo\n\tZackStack: I didn't see that coming... nice work! Its always fun to blow up big ships :-)\n\n39) MaxL: Build R3 Saturn\n\n40) ZackStack: Move R3 Apollo Maxl\n\n41) MaxL: Attack R3 Maxl\n\n42) ZackStack: Sacrifice Y2 Zackstack\nMove R2 Apollo Maxl\nMove R1 Gaia Maxl\nCatastrophe Maxl Red\n\n43) MaxL: Build Y2 Bluestar\n\n44) ZackStack: Trade Y3 G3 Zackstack\n\n45) MaxL: Trade G1 R1 Maxl\n\n46) ZackStack: Move Y1 Zeus Zackstack\n\tZackStack: Boom!\n\n47) MaxL: Move Y1 Bluestar Saturn\n\n48) ZackStack: Build Y2 Zackstack\n\n49) MaxL: Build G1 Bluestar\n\n50) ZackStack: Trade Y1 B1 Zackstack\n\n51) MaxL: Build G1 Maxl\n\n52) ZackStack: Build B1 Zackstack\n\n53) MaxL: Trade G1 Y1 Maxl\n\n54) ZackStack: Discover B1 Zackstack Y3 Hera\n\n55) MaxL: Build Y2 Maxl\n\n56) ZackStack: Move B1 Hera Gaia\n\n57) MaxL: Build Y3 Saturn\n\n58) ZackStack: Build B2 Gaia\n\n59) MaxL: Discover G1 Bluestar B3 Kefka\n\n60) ZackStack: Sacrifice Y3 Gaia\nMove B2 Gaia Maxl\nMove B1 Gaia Maxl\nMove B1 Zackstack Maxl\nCatastrophe Maxl Blue\n\n\tZackStack: Thanks for the game Max! I hope you enjoyed it and got a better handle on some of the rules. Shoot me a challenge for another... or a different game if you're in the mood. Good Gaming!\n\nHomeworlds Online (SDG# 15108)\nVariants: "Unrated"\nStarted: 2010.1.13, Ended: 2010.1.14\nParticipants: tvgide (S), grico (N)\nWinner: grico\n\n1) grico: Homeworld R3 G2 B3\n\tgrico: whore\n\ttvgide: bitch\n\n2) tvgide: Homeworld B1 Y2 G3\n\tgrico: start the game already\n\ttvgide: monk, i need a monk!\n\n3) grico: Build B1 Grico\n\ttvgide: monk, i need a monk!\n\n4) tvgide: Build G1 Tvgide\n\n5) grico: Trade B1 Y1 Grico\n\n6) tvgide: Trade G1 R1 Tvgide\n\n7) grico: Build Y1 Grico\n\n8) tvgide: Trade R1 Y1 Tvgide\n\n9) grico: Discover Y1 Grico G1 Teamslack\n\n10) tvgide: Discover Y1 Tvgide R3 Tvgide2\n\ttvgide: i'm just moving the king through, i promise.\n\n11) grico: Build Y2 Teamslack\n\n12) tvgide: Build G1 Tvgide\n\n13) grico: Build Y2 Grico\n\n14) tvgide: Trade G1 R1 Tvgide\n\n15) grico: Build Y3 Grico\n\n16) tvgide: Build R1 Tvgide\n\n17) grico: Trade Y3 R3 Grico\n\n18) tvgide: Build G1 Tvgide\n\n19) grico: Build Y3 Grico\n\n20) tvgide: Move G1 Tvgide Tvgide2\n\n21) grico: Move R3 Grico Teamslack\n\n22) tvgide: Build G1 Tvgide2\n\n23) grico: Move Y1 Teamslack Tvgide2\n\n24) tvgide: Attack Y1 Tvgide2\n\n25) grico: Build Y3 Teamslack\n\n26) tvgide: Build Y3 Tvgide2\n\n27) grico: Move Y2 Teamslack Tvgide2\nCatastrophe Tvgide2 Y\n\n28) tvgide: Trade R1 Y1 Tvgide\n\n29) grico: Build Y1 Teamslack\n\n30) tvgide: Move G3 Tvgide Tvgide2\n\n31) grico: Sacrifice Y2 Grico\nMove R3 Teamslack Tvgide2\nMove R3 Tvgide2 Tvgide\n\n32) tvgide: Pass\n\n33) grico: Attack R1 Tvgide\n\n34) tvgide: Build G2 Tvgide2\n\n35) grico: Pass Catastrophe Tvgide2 G\n\n36) tvgide: Trade Y1 B1 Tvgide\nCatastrophe Tvgide2 G\n\n37) grico: Attack B1 Tvgide\n\n\nHomeworlds Online (SDG# 15120)\nVariants: "Unrated"\nStarted: 2010.1.14, Ended: 2010.1.20\nParticipants: tvgide (S), grico (N)\nWinner: tvgide\n\n1) grico: Homeworld Y3 G1 B3\n\n2) tvgide: Homeworld G2 B1 Y3\n\n3) grico: Build B1 Grico\n\n4) tvgide: Build Y1 Tvgide\n\n5) grico: Trade B1 Y1 Grico\n\n6) tvgide: Discover Y1 Tvgide B3 T1\n\n7) grico: Build B1 Grico\n\n8) tvgide: Build Y1 Tvgide\n\n9) grico: Build Y2 Grico\n\n10) tvgide: Trade Y1 R1 Tvgide\n\n11) grico: Trade B1 R1 Grico\n\n12) tvgide: Trade Y1 G1 T1\n\n13) grico: Discover Y1 Grico G2 G1\n\n14) tvgide: Build R1 Tvgide\n\n15) grico: Build R2 Grico\n\n16) tvgide: Move R1 Tvgide T1\n\n17) grico: Move R2 Grico G1\n\n18) tvgide: Build R2 T1\n\n19) grico: Build B1 Grico\n\n20) tvgide: Trade R2 Y2 T1\n\n21) grico: Trade B1 G1 Grico\n\n22) tvgide: Build R2 Tvgide\n\n23) grico: Move G1 Grico G1\n\n24) tvgide: Discover R2 Tvgide G3 T2\n\n25) grico: Build G2 G1\n\n26) tvgide: Move G1 T1 G1\nCatastrophe G1 Green\n\n27) grico: Build R2 Grico\n\n28) tvgide: Trade R1 G1 T1\n\n29) grico: Build B1 Grico\n\n30) tvgide: Build Y1 T1\n\n31) grico: Trade B1 G1 Grico\n\n32) tvgide: Discover Y2 T1 R2 T3\n\n33) grico: Discover G1 Grico G2 G1\n\n34) tvgide: Build Y1 Tvgide\n\n35) grico: Build Y1 Grico\n\n36) tvgide: Sacrifice Y2 T3\nMove Y1 T1 G1\nMove Y1 G1 Grico\nCatastrophe Grico Yellow\n\n37) grico: Build B1 Grico\n\n38) tvgide: Move Y1 Tvgide T2\n\n39) grico: Trade B1 Y1 Grico\n\n40) tvgide: Move R2 T2 G1\n\n41) grico: Build Y1 Grico\n\n42) tvgide: Attack G1 G1\n\n43) grico: Build R1 Grico\n\n44) tvgide: Build G2 T1\n\n45) grico: Discover R2 Grico B3 G2\n\n46) tvgide: Trade G2 Y2 T1\n\n47) grico: Move Y1 Grico G2\n\n48) tvgide: Build Y2 T1\n\n49) grico: Build Y2 Grico\n\n50) tvgide: Build Y3 T2\n\n51) grico: Move Y1 Grico G2\n\n52) tvgide: Trade Y2 G2 T1\n\n53) grico: Sacrifice Y2 Grico\nMove R2 G2 Grico\nMove R2 Grico T1\n\n54) tvgide: Sacrifice R1 Tvgide\nAttack R2 T1\n\n55) grico: Build R1 Grico\n\n56) tvgide: Build Y2 Tvgide\n\n57) grico: Build R2 Grico\n\n58) tvgide: Build R3 G1\nCatastrophe Grico Red\n\n59) grico: Move Y1 G2 Tvgide\n\n60) tvgide: Sacrifice Y2 Tvgide\nMove R3 G1 Grico\nPass\n\n61) grico: Move Y1 G2 Grico\n\n62) tvgide: Sacrifice R2 G1\nAttack B3 Grico\nAttack Y1 Grico\n\n\nHomeworlds Online (SDG# 15122)\nStarted: 2010.1.14, Ended: 2010.1.14\nParticipants: logikal (S), tvgide (N)\nWinner: tvgide\n\n1) tvgide: Homeworld G3 B2 Y3\n\n2) logikal: Homeworld R1 B2 G3\n\n3) tvgide: Build Y1 Tvgide\n\n4) logikal: Build G1 Logikal\n\n5) tvgide: Build Y1 Tvgide\n\n6) logikal: Build G1 Logikal\n\n7) tvgide: Discover Y1 Tvgide Y1 T1\n\n8) logikal: Trade G3 Y3 Logikal\n\n9) tvgide: Build Y2 Tvgide\n\n10) logikal: Discover G1 Logikal B3 L1\n\n11) tvgide: Trade Y1 R1 Tvgide\n\n12) logikal: Build Y1 Logikal\n\n13) tvgide: Sacrifice Y2 Tvgide\nMove R1 Tvgide T1\nMove R1 T1 L1\n\n14) logikal: Build G1 Logikal\n\n15) tvgide: Attack G1 L1\n\n16) logikal: Build Y2 Logikal\n\n17) tvgide: Build Y2 Tvgide\n\n18) logikal: Trade Y2 B2 Logikal\n\n19) tvgide: Trade Y2 R2 Tvgide\n\n20) logikal: Trade G1 R1 Logikal\n\n21) tvgide: Build R2 L1\n\n22) logikal: Discover R1 Logikal Y3 L2\n\n23) tvgide: Trade R2 Y2 L1\n\n24) logikal: Build G1 Logikal\n\n25) tvgide: Build R2 L1\n\n26) logikal: Move R1 L2 T1\n\n27) tvgide: Move R2 L1 T1\n\n28) logikal: Discover R1 T1 B3 L2\n\n29) tvgide: Build Y2 Tvgide\n\n30) logikal: Move B2 Logikal L2\n\n31) tvgide: Move Y2 Tvgide T1\n\n32) logikal: Move Y1 Logikal L2\n\n33) tvgide: Discover Y2 T1 R3 T2\n\n34) logikal: Move Y3 Logikal T2\n\n35) tvgide: Build G2 L1\n\n36) logikal: Trade G1 B1 Logikal\n\n37) tvgide: Sacrifice G2 L1\nBuild Y2 Tvgide\nBuild Y3 L1\n\n38) logikal: Discover Y3 T2 B1 L3\n\n39) tvgide: Trade Y3 R3 L1\n\n40) logikal: Trade Y3 G3 L3\n\n41) tvgide: Move R3 L1 Logikal\n\n42) logikal: Sacrifice G3 L3\nBuild Y3 L2\nBuild B1 L2\nBuild B1 L2\n\n43) tvgide: Sacrifice R2 T1\nAttack B1 Logikal\nAttack G1 Logikal\n\n\nHomeworlds Online (SDG# 15132)\nStarted: 2010.1.15, Ended: 2010.2.10\nParticipants: GrantHenninger (S), tvgide (N)\nWinner: GrantHenninger\n\n1) tvgide: Homeworld G3 B2 Y3\n\n2) GrantHenninger: Homeworld Y1 B2 G3\n\n3) tvgide: Build Y1 Tvgide\n\n4) GrantHenninger: Build G1 Granthenninger\n\n5) tvgide: Trade Y1 R1 Tvgide\n\n6) GrantHenninger: Build G1 Granthenninger\n\n7) tvgide: Discover R1 Tvgide G1 T1\n\n8) GrantHenninger: Trade G1 R1 Granthenninger\n\n9) tvgide: Build Y1 Tvgide\n\n10) GrantHenninger: Discover G1 Granthenninger B3 Gmh1\n\n11) tvgide: Trade Y1 R1 Tvgide\n\n12) GrantHenninger: Build R2 Granthenninger\n\n13) tvgide: Build R2 T1\n\n14) GrantHenninger: Move R1 Granthenninger Gmh1\n\n15) tvgide: Build Y1 Tvgide\n\n16) GrantHenninger: Sacrifice G3 Granthenninger\nBuild R2 Gmh1\nBuild R3 Granthenninger\nBuild R3 Gmh1\n\n17) tvgide: Move Y1 Tvgide T1\n\n18) GrantHenninger: Trade R2 Y2 Gmh1\n\n19) tvgide: Build Y1 Tvgide\n\n20) GrantHenninger: Trade R2 Y2 Granthenninger\n\n21) tvgide: Build Y2 T1\n\n22) GrantHenninger: Build Y3 Gmh1\n\n23) tvgide: Sacrifice Y2 T1\nMove R1 T1 Gmh1\nMove R2 T1 Gmh1\nCatastrophe Gmh1 Red\n\n24) GrantHenninger: Trade Y3 G3 Gmh1\n\n25) tvgide: Trade Y1 B1 Tvgide\n\n26) GrantHenninger: Discover G1 Gmh1 Y1 Gmh2\n\n27) tvgide: Build R1 Tvgide\n\n28) GrantHenninger: Build Y2 Gmh1\n\n29) tvgide: Build Y3 Tvgide\n\n30) GrantHenninger: Build Y3 Gmh1\n\n31) tvgide: Move Y1 T1 Gmh1\nCatastrophe Gmh1 Yellow\n\n32) GrantHenninger: Build G1 Gmh1\n\n33) tvgide: Move Y3 Tvgide Gmh2\n\n34) GrantHenninger: Trade G1 Y1 Gmh1\n\n35) tvgide: Move R1 Tvgide Gmh2\n\n36) GrantHenninger: Trade Y1 R1 Gmh1\n\n37) tvgide: Attack G1 Gmh2\n\n38) GrantHenninger: Build R2 Gmh1\n\n39) tvgide: Build Y1 Gmh2\n\n40) GrantHenninger: Trade R2 Y2 Gmh1\n\n41) tvgide: Build B1 Tvgide\n\n42) GrantHenninger: Build R2 Gmh1\n\n43) tvgide: Move B1 Tvgide Gmh2\n\n44) GrantHenninger: Trade R2 G2 Gmh1\n\n45) tvgide: Trade Y3 G3 Gmh2\n\n46) GrantHenninger: Move G2 Gmh1 Granthenninger\n\n47) tvgide: Build R2 Gmh2\n\n48) GrantHenninger: Build Y2 Gmh1\n\n49) tvgide: Trade Y1 B1 Gmh2\n\n50) GrantHenninger: Sacrifice G2 Granthenninger\nBuild Y1 Gmh1\nBuild Y3 Granthenninger\n\n51) tvgide: Discover G3 Gmh2 B3 T1\n\n52) GrantHenninger: Build R2 Gmh1\n\n53) tvgide: Trade G3 Y3 T1\n\n54) GrantHenninger: Discover Y2 Granthenninger B3 Gmh3\n\n55) tvgide: Build G1 Gmh2\n\n56) GrantHenninger: Discover Y2 Gmh1 G1 Gmh4\n\n57) tvgide: Move G1 Gmh2 T1\n\n58) GrantHenninger: Move R2 Gmh1 Gmh4\n\n59) tvgide: Move R1 Gmh2 T1\n\n60) GrantHenninger: Build G2 Gmh1\n\n61) tvgide: Build G2 T1\n\n62) GrantHenninger: Move G2 Gmh1 Granthenninger\n\n63) tvgide: Build B2 Gmh2\n\n64) GrantHenninger: Build G2 Gmh1\n\n65) tvgide: Sacrifice Y3 T1\nMove G2 T1 Granthenninger\nMove G1 T1 Granthenninger\nMove R1 T1 Granthenninger\n\n66) GrantHenninger: Attack R1 Granthenninger\n\n67) tvgide: Sacrifice G2 Granthenninger\nBuild B3 Tvgide\nBuild Y3 Tvgide\n\n68) GrantHenninger: Sacrifice G3 Gmh1\nBuild R2 Gmh1\nBuild R3 Gmh4\nBuild R3 Granthenninger\n\n69) tvgide: Move R2 Gmh2 Gmh3\n\n70) GrantHenninger: Move R3 Granthenninger Gmh3\n\n71) tvgide: Sacrifice Y3 Tvgide\nMove B1 Gmh2 Gmh3\nMove B1 Gmh2 Gmh3\nMove B2 Gmh2 Gmh3\nCatastrophe Gmh3 Blue\n\n72) GrantHenninger: Attack G1 Granthenninger\n\n73) tvgide: Build G2 Gmh2\n\n74) GrantHenninger: Build G3 Gmh1\n\n75) tvgide: Build Y2 Tvgide\n\n76) GrantHenninger: Sacrifice G3 Gmh1\nBuild Y3 Gmh4\nBuild G3 Gmh1\nBuild G3 Granthenninger\n\n77) tvgide: Sacrifice Y2 Tvgide\nMove G1 Gmh2 Gmh1\nMove G1 Gmh1 Granthenninger\nCatastrophe Granthenninger Green\n\n78) GrantHenninger: Trade R1 B1 Gmh1\n\n79) tvgide: Move B3 Tvgide Gmh2\n\n80) GrantHenninger: Move B1 Gmh1 Gmh4\n\n81) tvgide: Trade B3 R3 Gmh2\n\n82) GrantHenninger: Trade R2 G2 Gmh4\n\n83) tvgide: Move B1 Tvgide Gmh2\n\n84) GrantHenninger: Sacrifice Y2 Gmh1\nMove R3 Granthenninger Gmh1\nMove R3 Gmh1 Gmh4\n\n85) tvgide: Build G1 Gmh2\n\n86) GrantHenninger: Sacrifice Y2 Gmh4\nMove R3 Gmh4 Tvgide\nMove R3 Gmh4 Tvgide\n\n\nHomeworlds Online (SDG# 15149)\nStarted: 2010.1.16, Ended: 2010.1.23\nParticipants: captncavern (S), supergnouf (N)\nWinner: supergnouf\n\n1) supergnouf: Homeworld G3 B1 Y3\n\tcaptncavern: J'en déduis qu'Ordo ne t'intéresse pas ;)\n\n2) captncavern: Homeworld G3 B2 Y3\n\n3) supergnouf: Build Y1 Supergnouf\n\n4) captncavern: Build Y1 Captncavern\n\n5) supergnouf: Trade Y1 R1 Supergnouf\n\n6) captncavern: Build Y1 Captncavern\n\n7) supergnouf: Build R1 Supergnouf\n\n8) captncavern: Trade Y1 G1 Captncavern\n\n9) supergnouf: Trade R1 G1 Supergnouf\n\n10) captncavern: Trade Y1 R1 Captncavern\n\n11) supergnouf: Build Y1 Supergnouf\n\n12) captncavern: Discover G1 Captncavern Y1 Jaune\n\n13) supergnouf: Discover Y1 Supergnouf G2 Kilman\n\n14) captncavern: Build G1 Jaune\n\n15) supergnouf: Build Y1 Supergnouf\n\n16) captncavern: Build G2 Jaune\n\n17) supergnouf: Build Y2 Kilman\n\n18) captncavern: Build Y2 Captncavern\n\n19) supergnouf: Build Y2 Supergnouf\n\n20) captncavern: Build R1 Captncavern\n\n21) supergnouf: Sacrifice Y2 Supergnouf\nMove G1 Supergnouf Kilman\nMove G1 Kilman Jaune\nCatastrophe Jaune G\n\n22) captncavern: Discover Y2 Captncavern G1 Vert\n\n23) supergnouf: Build R2 Supergnouf\n\n24) captncavern: Build R2 Captncavern\n\n25) supergnouf: Discover Y1 Kilman B1 Tort\n\n26) captncavern: Trade R1 G1 Captncavern\n\n27) supergnouf:\nDiscover Y3 Supergnouf G2 Tiaw\n\n28) captncavern: Move G1 Captncavern Vert\n\n29) supergnouf: Sacrifice Y2 Kilman\nMove Y3 Tiaw Vert\nMove Y1 Tort Captncavern\n\n30) captncavern: Discover Y2 Vert G2 Plus\n\n31) supergnouf: Build Y1 Captncavern\n\n32) captncavern: Sacrifice R2 Captncavern\nAttack Y1 Captncavern\nAttack Y1 Captncavern\n\n33) supergnouf: Build Y2 Supergnouf\n\n34) captncavern: Sacrifice G1 Vert\nBuild R1 Captncavern\n\n35) supergnouf: Move Y3 Vert Captncavern\nCatastrophe Captncavern Y\n\n36) captncavern: Build R2 Captncavern\n\n37) supergnouf: Discover R2 Supergnouf G2 Roto\n\tcaptncavern: Agressif le Nico !\n\n38) captncavern: Trade R1 Y1 Captncavern\n\n39) supergnouf: Move Y1 Supergnouf Roto\n\n40) captncavern: Discover R1 Captncavern Y1 Hop\n\n41) supergnouf: Build R1 Supergnouf\n\n42) captncavern: Build Y2 Plus\n\n43) supergnouf: Build Y3 Roto\n\n44) captncavern: Build Y3 Captncavern\n\n45) supergnouf: Build Y3 Supergnouf\n\n46) captncavern: Discover Y2 Plus B1 Moins\n\n47) supergnouf: Move Y3 Roto Hop\n\n48) captncavern: Trade Y1 G1 Captncavern\n\n49) supergnouf: Sacrifice R1 Supergnouf\nAttack R1 Hop\n\n50) captncavern: Build Y1 Plus\n\n51) supergnouf: Discover Y2 Supergnouf B2 Atoa\n\n52) captncavern: Build R1 Captncavern\n\n53) supergnouf: Build R2 Supergnouf\n\n54) captncavern: Move R2 Captncavern Moins\n\n55) supergnouf: Build R3 Roto\n\n56) captncavern: Build R3 Captncavern\n\n57) supergnouf: Move R3 Roto Moins\n\n58) captncavern: Move R2 Moins Plus\n\n59) supergnouf: Build R3 Roto\n\tsupergnouf: ca resemble a une course à l'armement ce qu'on fait la...\n\n60) captncavern: Discover Y2 Moins G2 Loin\n\tcaptncavern: Y'a trop de monde, là, ça devient difficile de s'y retrouver.\n\n61) supergnouf: Move Y3 Supergnouf Plus\n\n62) captncavern: Sacrifice Y2 Loin\nMove Y1 Plus Hop\nMove Y2 Plus Hop\nCatastrophe Hop Y\n\tsupergnouf: ca deviendra vraiment le bordel quand on fera du vert et du bleu...\n\n63) supergnouf: Sacrifice R1 Supergnouf\nAttack R2 Plus\n\n64) captncavern: Build G1 Captncavern\n\n65) supergnouf: Build R1 Supergnouf\n\n66) captncavern: Trade R3 Y3 Captncavern\n\tcaptncavern: Un peu de ménage, mais pas forcément à mon avantage :(\n\n67) supergnouf: Trade R2 G2 Supergnouf\n\tsupergnouf: j'ai fait un peu de promo pour ton site ice house sur trick track.\r\nPar ailleur, je me disais que ca pourrais être bien que ton logo en haut à gauche (enfin, pour le moment ta pile de pyramide) soit en fait un lien vers la page d'accueil du site. Souvennt c'est comme ca sur les sites et du coup, quand t'es un peu perdu i3l suffit de cliquer en haut sur le logo et te revoila à l'entrée :)\r\ntu me dira que ton site est pas encore dédalesque mais bon... de toute les manière, je ne fais que proposer :)\n\tcaptncavern: Merci pour la pub. Je comprends pas trop comment fonctionne tric-trac, mais c'est plus par flemme qu'autre chose, je pense. J'ai rajouté des liens sur les pages des jeux qui en ont, mais c'est tout, pour l'instant.\r\nTrès bonne idée, le lien sur l'image, et pas compliqué à faire. Ce sera fait dans le WE, normalement. Je vais aussi réfléchir à une galerie de photos, dès que j'aurai un peu de temps.\r\nAh, et je me demandais si le lien du Flux RSS était suffisamment clair. Je vais peut-être expliciter un peu plus dans l'info-bulle, mais je ne suis pas sûr que ça suffise. Il faudrait que je regarde comment c'est fait sur d'autres sites.\n\n68) captncavern: Build R1 Captncavern\n\tsupergnouf: je suis toujours pas convaincu par les fils rss du coup je me suis pas trop penché sur le tient.\n\n69) supergnouf: Build R2 Plus\n\n70) captncavern: Sacrifice Y3 Captncavern\nDiscover Y3 Captncavern Y1 Aa\nDiscover Y3 Aa Y2 Bb\nMove Y3 Bb Supergnouf\n\tcaptncavern: Ben, les fils rss, c'est bien, mais il faut pas en avoir trop, sinon, tu les lis jamais. Ca t'évite juste d'avoir à faire le tour des sites où tu passes régulièrement alors qu'il n'y a rien de nouveau. C'est typiquement utile pour un petit site comme le mien où je rajoute un truc intéressant de temps en temps, et inutile pour un gros site qui brasse des tonnes d'infos, à mon avis.\n\n71) supergnouf: Sacrifice Y2 Atoa\nMove R3 Moins Captncavern\nMove Y1 Roto Supergnouf\n\tsupergnouf: je sais bien à quoi ca sert, mais les quelquesfois ou j'ai essayé de m'en servir, ca ne marchait pas suffisament bien pour que ca me soit vraiment utile (globalement ca foirais les dates d'un rss qui du coup n'apparaissait pas dans la liste)\n\n72) captncavern: Sacrifice R1 Captncavern\nAttack R1 Supergnouf\n\n73) supergnouf: Sacrifice R3 Roto\nAttack R1 Captncavern\nAttack G1 Captncavern\nAttack G1 Captncavern\n\tcaptncavern: Ca, c'est surement que le flux rss en question était mal foutu. Le mien, normalement il arrive bien, et avec la bonne date :D\n\n\nHomeworlds Online (SDG# 15105)\nStarted: 2010.1.16, Ended: 2010.4.1\nParticipants: Mandrel (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B3 G3\n\n2) Mandrel: Homeworld B2 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\tMandrel: Have a good game!\n\tzoltar: You too!\n\n4) Mandrel: Build G1 Mandrel\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) Mandrel: Trade G1 R1 Mandrel\n\n7) zoltar: Build Y1 Zoltar\n\n8) Mandrel: Build R1 Mandrel\n\n9) zoltar: Build Y2 Zoltar\n\n10) Mandrel: Build R2 Mandrel\n\n11) zoltar: Trade Y2 R2 Zoltar\n\n12) Mandrel: Trade R2 Y2 Mandrel\n\n13) zoltar: Build Y2 Zoltar\n\n14) Mandrel: Build R2 Mandrel\n\n15) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n16) Mandrel: Discover R2 Mandrel G3 Light\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenbelt\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n18) Mandrel: Move Y2 Mandrel Light\n\tzoltar: oh wait -- I can try a more fancy move instead!\n\n19) zoltar: Sacrifice Y1 Zoltar\nMove Y3 Greenbelt Light\n\tMandrel: Blimey, thats a bit scary!\n\n20) Mandrel: Move Y2 Light Mandrel\n\n21) zoltar: Sacrifice R2 Zoltar\nAttack R2 Light\nPass\n\n22) Mandrel: Build G1 Mandrel\n\n23) zoltar: Trade Y3 G3 Zoltar\n\n24) Mandrel: Discover G1 Mandrel Y3 Darkness\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Light\nBuild R2 Light\nBuild Y3 Zoltar\n\n26) Mandrel: Discover Y2 Mandrel B3 Grey\n\n27) zoltar: Trade Y2 G2 Zoltar\n\n28) Mandrel: Move R1 Mandrel Grey\n\n29) zoltar: Sacrifice Y2 Greenbelt\nMove Y3 Light Greenbelt\nMove Y3 Greenbelt Grey\n\n30) Mandrel: Sacrifice G1 Darkness\nBuild R2 Grey\n\n31) zoltar: Sacrifice R2 Light\nAttack R2 Grey\nAttack Y2 Grey\n\n32) Mandrel: Build R2 Mandrel\n\n33) zoltar: Sacrifice G2 Zoltar\nBuild R3 Light\nBuild R3 Grey\n\n34) Mandrel: Move R1 Mandrel Grey\nCatastrophe Grey Red\n\n35) zoltar: Build Y2 Light\n\n36) Mandrel: Build G1 Mandrel\n\n37) zoltar: Trade Y3 G3 Grey\n\n38) Mandrel: Trade G3 Y3 Mandrel\n\n39) zoltar: Sacrifice Y2 Grey\nMove Y2 Light Mandrel\nMove Y1 Light Mandrel\nCatastrophe Mandrel Y\n\n40) Mandrel: Build G1 Mandrel\n\n41) zoltar: Trade G3 Y3 Grey\n\n42) Mandrel: Build G1 Mandrel\n\n43) zoltar: Move Y3 Grey Mandrel\n\n44) Mandrel: Trade G1 B1 Mandrel\n\n45) zoltar: Sacrifice R3 Light\nAttack R2 Mandrel\nAttack G1 Mandrel\nAttack G1 Mandrel\n\n46) Mandrel: Trade B1 G1 Mandrel\n\n47) zoltar: Trade R2 G2 Mandrel\nCatastrophe Mandrel G\n\n\tzoltar: Thanks for the game!\n\nHomeworlds Online (SDG# 15103)\nStarted: 2010.1.17, Ended: 2010.1.25\nParticipants: MaxL (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Pass\n\n2) MaxL: Homeworld B2 Y1 G3\n\tTwoShort: I'll let you go first, since it randomly picked me for the third time in a row...\n\n3) TwoShort: Homeworld R1 B3 G3\n\n4) MaxL: Build G1 Maxl\n\n5) TwoShort: Build G1 Twoshort\n\n6) MaxL: Discover G1 Maxl Y3 Jaune\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) MaxL: Build G1 Maxl\n\n9) TwoShort: Build Y1 Twoshort\n\n10) MaxL: Build G1 Jaune\n\n11) TwoShort: Build G2 Twoshort\n\n12) MaxL: Trade G1 R1 Maxl\n\n13) TwoShort: Build G1 Twoshort\n\tTwoShort: You should have kept growing. New players almost always over-value red. I take a red star in my homeworld chiefly to give me more room to grow yellow & green. I generally take a red ship only when it means I could use it to take a particularly critical piece within two turns or when it will prevent my opponent from doing so. An r1 in your homeworld at this point I can just ignore. \r\n If you'd grown a green & moved it out you could factory for the G3. I can't factory green unless I get another, which would have been the last 2 and given you the 3 anyway. I'd have had to take desperate measures to make sure you didn't get it either (by moving to a g3 star), which I'd have done, but forcing me to do unproductive things while you grow is good enough.\r\n Oh, and while I like giving strategy advice, if you'd rather I didn't jump in and tell you when I think you made a bad move, just tell me to shut up :) \n\n14) MaxL: Build G2 Maxl\n\tMaxL: The advice is much appreciated.\n\n15) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n16) MaxL: Discover G2 Maxl G3 Vertino\n\tTwoShort: OK. I just sometimes feel bad because when I see what I think you should obviously do, I don't want to tell you until you get it wrong :) \n\n17) TwoShort: Build Y2 Twoshort\n\n18) MaxL: Build G2 Maxl\n\n19) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n20) MaxL: Move G1 Jaune Yolonda\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bluestar\n\n22) MaxL: Sacrifice G2 Vertino\nBuild G2 Yolonda\nBuild G3 Jaune\n\n23) TwoShort: Trade Y2 R2 Bluestar\n\tTwoShort: Nice move. \n\n24) MaxL: Trade G2 Y2 Maxl\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild Y3 Bluestar\nBuild G3 Twoshort\nCatastrophe Yolonda Green\n\n26) MaxL: Move G3 Jaune Maxl\n\n27) TwoShort: Trade Y3 B3 Bluestar\n\n28) MaxL: Build G1 Jaune\n\tTwoShort: Generally I'd say never move backward; and indeed, I don't see what it's doing for you here. Eventually you might like to leave a green alone at Jaune so you can sac and build it, but you're not ready for that yet (and I can disrupt it).\n\n29) TwoShort: Move B3 Bluestar Jaune\n\n30) MaxL: Discover G1 Jaune B1 Plus\n\n31) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Twoshort\n\n32) MaxL: Build G1 Plus\n\n33) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Bluestar Jaune\nMove Y3 Jaune Maxl\nMove B3 Jaune Maxl\n\n34) MaxL: Attack B3 Maxl\n\tTwoShort: Gotcha :) So the other reason to wait before you take red is that you really want to get an r2; it's much better than an r1. \n\n35) TwoShort: Sacrifice R2 Bluestar\nAttack R1 Maxl\nAttack B3 Maxl\n\n36) MaxL: Trade Y2 R2 Maxl\n\n37) TwoShort: Attack R2 Maxl\n\n38) MaxL: Trade G1 R1 Plus\n\n39) TwoShort: Sacrifice R2 Maxl\nAttack G3 Maxl\nAttack G3 Maxl\n\n\nHomeworlds Online (SDG# 15060)\nVariants: "Hard time"\nStarted: 2010.1.17, Ended: 2010.2.26\nParticipants: Jesse (S), MaxL (N)\nWinner: Jesse\n\n1) MaxL: Homeworld B2 Y1 G3\n\n2) Jesse: Homeworld G3 B1 Y3\n\n3) MaxL: Build G1 Maxl\n\tJesse: Hello, and have a good game.\n\n4) Jesse: Build Y1 Jesse\n\n5) MaxL: Build G1 Maxl\n\n6) Jesse: Build Y1 Jesse\n\tMaxL: Same to you!\n\n7) MaxL: Discover G1 Maxl G3 Sectorz\n\n8) Jesse: Discover Y1 Jesse B2 Moon\n\n9) MaxL: Trade G1 B1 Maxl\n\n10) Jesse: Build Y2 Jesse\n\n11) MaxL: Move B1 Maxl Sectorz\n\n12) Jesse: Trade Y2 B2 Jesse\n\n13) MaxL: Build B1 Sectorz\n\n14) Jesse: Build Y2 Jesse\n\n15) MaxL: Build G1 Maxl\n\n16) Jesse: Build B3 Jesse\n\n17) MaxL: Trade B1 R1 Sectorz\n\n18) Jesse: Discover Y2 Jesse G2 Groon\n\n19) MaxL: Build R1 Sectorz\n\n20) Jesse: Build Y2 Groon\n\n21) MaxL: Discover G1 Maxl Y3 Saviour\n\n22) Jesse: Build Y2 Jesse\n\n23) MaxL: Build G1 Saviour\n\n24) Jesse: Trade Y2 R2 Jesse\n\n25) MaxL: Move G1 Saviour Groon\n\n26) Jesse: Build Y2 Jesse\n\n27) MaxL: Build G2 Groon\n\n28) Jesse: Discover Y2 Jesse G2 Grood\n\n29) MaxL: Move G1 Saviour Groon\nCatastrophe Groon G\n\n30) Jesse: Build Y2 Jesse\n\n\tJesse: Thanks for the game. Sorry if it was a frustrating one. I know the yellow freeze-out can be a particularly annoying position to be in.\n\nHomeworlds Online (SDG# 15173)\nVariants: "Hard time"\nStarted: 2010.1.18, Ended: 2010.1.28\nParticipants: jonaskoelker (S), rootbier (N)\nWinner: jonaskoelker\n\n1) rootbier: Homeworld B1 R3 G3\n\n2) jonaskoelker: Homeworld B2 R1 G3\n\trootbier: hey. first timer here.\r\ni have played the game face-to-face.\r\nwe'll see how it goes with coding my moves :)\n\n3) rootbier: Build G1 Rootbier\n\tjonaskoelker: Hi, rootbier. Good luck, have fun.\r\n\r\nI've played a few games; I'm not that great, but I seem to have a firmer grasp of the game than the friends I play face-to-face.\r\n\r\nI found the move encoding to be reasonably straightforward. Once you grasp the homeworld command, the rest should be fairly easy. You may also want to see Andy's game vs. Russell at http://www.wunderland.com/WTS/Andy/Games/HomeworldsPBEM/Game1Report1.html --- the notation is different, but it may help.\r\n\r\nMay the best intergalactic space fleet commander win! :)\r\n\n\tjonaskoelker: Captain's log, stardate 20100120: Our terraformers have just flown into the gravity well of a double system. We have named the system after ourselves, jonaskoelker. Headquarters informs us that settlers from an alien civilization may be occupying systems nearby in the galaxy. We will proceed to make first contact immediately, in order to study these alcohol-based life forms.\r\n\n\trootbier: *BURP* You she'here pal ... isch not really my fault. Isch jusch the una*URP*foidable an' unfor*URP*chunate composischun of my blood.\n\n4) jonaskoelker: Build G1 Jonaskoelker\n\n5) rootbier: Trade G1 B1 Rootbier\n\tjonaskoelker: Captain's Log, stardate 20100121: We have just received our first communication from the strange alcohol-based life forms. It appears their are peaceful and even submissive towards us, yet they multiply at an alarming rate. I have ordered the construction of more ships. We may need them for our safety.\r\n\n\n6) jonaskoelker: Trade G1 B1 Jonaskoelker\n\n7) rootbier: Sacrifice G3 Rootbier\nBuild B2 Rootbier\nBuild B2 Rootbier\nBuild B3 Rootbier\n\tjonaskoelker: Captain's Log, stardate 20100127: We have reequipped one of our terraformer ships with trading technology, in anticipation of trade with our neighbours.\n\n8) jonaskoelker: Build B3 Jonaskoelker\nCatastrophe Rootbier Blue\n\trootbier: Am I seein' dubble *HIC* or whud? Seems like I dun' gonen' shploded myschelf up innta big li'l bits *HIC*\n\tjonaskoelker: Captain's Log, stardate 20100128: Our radio astronomers have reported an unexpected supernova from the nearby stars, where the alien civilization lives.\r\n\r\nOr rather used to live. The radiation from the nearby blue giant's sudden explosion must have killed them.\r\n\r\nThere is nothing more to explore in this galaxy. On to new adventures.\r\n\n\tjonaskoelker: Lesson: Keep the catastrophes in mind. They limit the use of G3 in the early game.\r\n\r\nDon't blame the G3's, though---they're good mid-game threats, when you have a few systems and some different colours.\r\n\r\nThanks for playing. I'm up for another game if you are :)\r\n\n\trootbier: yeah -- somehow it is too abstract for me in iconic pixel form -- i have never done such a move when i have the pyramids in front of me -- so yes -- let's do that again\n\n\nHomeworlds Online (SDG# 15179)\nVariants: "Hard time"\nStarted: 2010.1.19, Ended: 2010.4.22\nParticipants: captncavern (S), face (N)\nWinner: face\n\n1) face: Homeworld R3 B2 G3\n\n2) captncavern: Homeworld G3 B1 Y3\n\n3) face: Build G1 Face\n\tcaptncavern: Thanks for accepting the challenge!\n\tface: no problem. i joined the ladder to play more homeworld games... i really see no good reason to reject a challenge.\n\n4) captncavern: Build Y1 Captncavern\n\tcaptncavern: Well I was rejected twice, so I was starting to believe I would never be able to play :)\n\n5) face: Trade G3 Y3 Face\n\n6) captncavern: Trade Y1 R1 Captncavern\n\n7) face: Build Y1 Face\n\n8) captncavern: Build R1 Captncavern\n\n9) face: Build G1 Face\n\n10) captncavern: Build Y1 Captncavern\n\n11) face: Discover G1 Face B1 Smash\n\n12) captncavern: Trade Y3 G3 Captncavern\n\n13) face: Move Y1 Face Smash\n\n14) captncavern: Build Y1 Captncavern\n\n15) face: Build Y2 Smash\n\n16) captncavern: Discover Y1 Captncavern B2 Out\n\n17) face: Build Y2 Face\n\n18) captncavern: Sacrifice G3 Captncavern\nBuild Y2 Out\nBuild Y3 Captncavern\nBuild R1 Captncavern\n\n19) face: Discover Y1 Smash R2 Tank\n\n20) captncavern: Move Y2 Out Smash\n\n21) face: Move G1 Smash Tank\n\n22) captncavern: Sacrifice R1 Captncavern\nAttack Y2 Smash\n\n23) face: Build Y3 Tank\n\n24) captncavern: Move Y1 Captncavern Tank\n\n25) face: Discover Y3 Tank R3 Waste\n\n26) captncavern: Discover Y1 Tank B1 Big\n\n27) face: Discover Y2 Face G1 Plaster\n\n28) captncavern: Discover Y1 Out R1 Come\n\n29) face: Move Y3 Waste Come\n\n30) captncavern: Sacrifice Y2 Smash\nMove Y1 Come Face\nMove Y1 Big Face\n\n31) face: Build Y2 Tank\n\n32) captncavern: Move Y2 Smash Face\n\n33) face: Build G2 Tank\nCatastrophe Face Y\n\n34) captncavern: Build R2 Captncavern\n\tface: that was... obnoxiously clever.\n\tcaptncavern: But you have a huge fleet now, and I have almost nothing!\n\n35) face: Move Y3 Come Face\n\n36) captncavern: Discover R2 Captncavern Y2 Not\n\tface: still, the next time someone asks me "why wouldn't you declare a catastrophe?" i'll finally have an answer other than "i don't know."\n\tcaptncavern: Oh! It's the first time I had an opportunity not to declare it too. I can't really see it work though, since you can always declare it on your turn.\n\n37) face: Build G2 Face\n\n38) captncavern: Move Y3 Captncavern Tank\n\n39) face: Move G2 Tank Captncavern\n\n40) captncavern: Move R2 Not Plaster\n\n41) face: Build G2 Captncavern\n\n42) captncavern: Attack Y2 Plaster\n\n43) face: Trade G2 R2 Captncavern\n\n44) captncavern: Move Y3 Tank Captncavern\n\n45) face: Sacrifice G2 Face\nBuild R1 Captncavern\nBuild G2 Captncavern\n\n46) captncavern: Sacrifice R2 Plaster\nAttack G2 Captncavern\nAttack G2 Captncavern\nCatastrophe Captncavern R\n\n47) face: Move G1 Tank Captncavern\nCatastrophe Captncavern G\n\n48) captncavern: Build Y1 Plaster\n\n49) face: Build Y1 Face\n\n50) captncavern: Trade Y3 G3 Captncavern\n\n51) face: Build G1 Face\n\n52) captncavern: Move Y1 Plaster Face\n\n53) face: Discover Y1 Face R1 Smash\n\n54) captncavern: Attack G1 Face\n\n55) face: Attack G1 Face\n\n56) captncavern: Move Y1 Face Captncavern\n\n57) face: Move G1 Face Smash\n\n58) captncavern: Trade Y1 R1 Captncavern\n\n59) face: Build G2 Face\n\n60) captncavern:\nBuild R1 Captncavern\n\n61) face: Trade G1 B1 Face\n\n62) captncavern: Trade R1 Y1 Captncavern\n\n63) face: Build B1 Face\n\n64) captncavern: Sacrifice G3 Captncavern\nBuild Y2 Plaster\nBuild Y3 Plaster\nBuild Y3 Captncavern\n\n65) face: Move Y1 Tank Plaster\nCatastrophe Plaster Y\n\n66) captncavern: Trade Y1 G1 Captncavern\n\n67) face: Sacrifice Y2 Tank\nMove B1 Face Captncavern\nMove B1 Face Captncavern\n\n68) captncavern: Attack B1 Captncavern\n\n69) face: Sacrifice G1 Smash\nBuild B2 Captncavern\nCatastrophe Captncavern B\n\n\tface: good game, man.\n\tcaptncavern: Great game! I definitely suck at it, but I love it :)\n\nHomeworlds Online (SDG# 15194)\nVariants: "Unrated"\nStarted: 2010.1.20, Ended: 2010.5.10\nParticipants: makertron (S), grico (N)\nWinner: makertron\n\n1) grico: Homeworld R1 B3 G3\n\n2) makertron: Homeworld B3 Y2 G3 Makertron\n\n3) grico: Build G1 Grico\n\n4) makertron: Build G1 Makertron\n\n5) grico: Trade G1 Y1 Grico\n\n6) makertron: Discover G1 Makertron R1 Tatu\n\n\nHomeworlds Online (SDG# 15202)\nVariants: "Unrated"\nStarted: 2010.1.21, Ended: 2010.1.29\nParticipants: logikal (S), melktart (N)\nWinner: logikal\n\n1) melktart: Homeworld R1 B2 G3\n\n2) logikal: Homeworld B3 R1 G3\n\n3) melktart: Build G1 Melktart\n\n4) logikal: Build G1 Logikal\n\n5) melktart: Trade G3 Y3 Melktart\n\n6) logikal: Trade G1 Y1 Logikal\n\n7) melktart: Build G1 Melktart\n\n8) logikal: Build G1 Logikal\n\n9) melktart: Discover G1 Melktart R3 M1\n\n10) logikal: Discover G1 Logikal B2 L1\n\n11) melktart: Build G2 M1\n\n12) logikal: Build G2 L1\n\n13) melktart: Build G2 Melktart\n\n14) logikal: Trade G1 R1 L1\n\n15) melktart: Trade G1 B1 Melktart\n\n16) logikal: Build G1 L1\n\n17) melktart: Move B1 Melktart M1\n\n18) logikal: Trade G1 Y1 L1\n\n19) melktart: Trade G1 Y1 M1\n\n20) logikal: Build Y2 L1\n\n21) melktart: Build Y2 M1\n\n22) logikal: Build R2 L1\n\n23) melktart: Trade Y2 R2 M1\n\n24) logikal: Build G1 Logikal\n\n25) melktart: Build G1 M1\n\n26) logikal: Discover G1 Logikal B2 L2\n\n27) melktart: Discover G1 M1 Y2 M2\n\n28) logikal: Sacrifice Y2 L1\nMove R2 L1 M1\nMove R2 M1 M2\n\n29) melktart: Move R2 M1 L2\n\n30) logikal: Sacrifice G3 Logikal\nBuild G1 L1\nBuild G3 L2\nBuild Y2 Logikal\n\n31) melktart: Attack G1 L2\n\n32) logikal: Trade G3 R3 L2\n\n33) melktart: Build G3 M2\n\n34) logikal: Sacrifice G2 L1\nBuild R2 L2\nBuild R3 M2\n\n35) melktart: Move G3 M2 M1\n\n36) logikal: Trade Y2 G2 Logikal\n\n37) melktart: Discover G3 M1 Y2 Dtms\n\n38) logikal: Attack R2 L2\n\n39) melktart: Build B1 M1\n\n40) logikal: Move R3 M2 M1\n\n41) melktart: Sacrifice G2 M1\nBuild G2 Dtms\nBuild B1 M1\n\n42) logikal: Build G3 Logikal\n\n43) melktart: Sacrifice Y3 Melktart\nMove B1 M1 L2\nMove B1 M1 L2\nMove B1 M1 L2\nCatastrophe L2 Blue\n\n44) logikal: Sacrifice Y1 L1\nMove R3 M1 Melktart\n\n45) melktart: Build G1 Melktart\n\n46) logikal: Sacrifice R2 M2\nAttack G2 Melktart\nAttack G1 Melktart\n\n\nHomeworlds Online (SDG# 15248)\nStarted: 2010.1.25, Ended: 2010.2.13\nParticipants: dethdukk (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) dethdukk: Homeworld R1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) dethdukk: Build G1 Dethdukk\n\n5) dlwillson: Discover G1 Dlwillson Y2 Jimmy\n\n6) dethdukk: Trade G1 Y1 Dethdukk\n\n7) dlwillson: Build G1 Dlwillson\n\n8) dethdukk: Build Y1 Dethdukk\n\n9) dlwillson: Trade G1 Y1 Dlwillson\n\n10) dethdukk: Build Y2 Dethdukk\n\n11) dlwillson: Discover Y1 Dlwillson B2 Bobby\n\n12) dethdukk: Discover Y1 Dethdukk B3 Smallstep\n\n13) dlwillson: Build G1 Dlwillson\n\n14) dethdukk: Build G1 Dethdukk\n\n15) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dlwillson\nBuild G2 Jimmy\nBuild Y2 Bobby\n\n16) dethdukk: Discover G1 Dethdukk R3 Giantleap\n\n17) dlwillson: Move Y2 Bobby Giantleap\n\n18) dethdukk: Sacrifice G1 Giantleap\nBuild Y3 Smallstep\n\n19) dlwillson: Sacrifice G2 Jimmy\nBuild Y3 Bobby\nBuild G1 Jimmy\n\n20) dethdukk: Build G2 Dethdukk\n\n21) dlwillson: Trade G2 R2 Dlwillson\n\n22) dethdukk: Trade Y2 R2 Dethdukk\n\n23) dlwillson: Move Y3 Bobby Dlwillson\n\n24) dethdukk: Move G2 Dethdukk Smallstep\n\n25) dlwillson: Sacrifice G1 Jimmy\nBuild Y2 Giantleap\n\n26) dethdukk: Build G1 Dethdukk\n\n27) dlwillson: Build G2 Jimmy\n\n28) dethdukk: Build G2 Smallstep\n\n29) dlwillson: Sacrifice G2 Jimmy\nBuild G2 Dlwillson\nBuild G3 Dlwillson\n\n30) dethdukk: Sacrifice Y3 Smallstep\nMove G2 Smallstep Bobby\nMove G2 Bobby Dlwillson\nMove G2 Smallstep Jimmy\nCatastrophe Dlwillson Green\n\n31) dlwillson: Sacrifice G1 Jimmy\nBuild Y3 Bobby\n\n32) dethdukk: Build G1 Dethdukk\n\tdethdukk: *sound of gun cocking*... POW!\n\n33) dlwillson: Trade Y1 G1 Bobby\n\n34) dethdukk: Move G1 Dethdukk Smallstep\n\n35) dlwillson: Trade Y3 G3 Dlwillson\n\tdlwillson: Maybe it was the sound of a trap closing... snap! :-) It's your turn.\n\tdlwillson: Why don't the systems arrange themselves by proximity? It'd be easier to read the map. And, why don't I own that spawning cruiser in Jimmy?\n\tdethdukk: Because I moved it there using my y3 sacrifice. so its miiine.\n\n36) dethdukk: Build Y1 Smallstep\n\n37) dlwillson: Build Y3 Bobby\n\n38) dethdukk: Trade Y1 R1 Smallstep\n\n39) dlwillson: Sacrifice Y2 Giantleap\nMove Y3 Bobby Smallstep\nMove G1 Bobby Dlwillson\n\n40) dethdukk: Move R1 Smallstep Jimmy\n\n41) dlwillson: Build R1 Dlwillson\n\n42) dethdukk: Build Y1 Smallstep\n\n43) dlwillson: Sacrifice Y3 Smallstep\nMove R1 Dlwillson Jimmy\nMove R1 Jimmy Smallstep\nMove R1 Smallstep Dethdukk\n\n44) dethdukk: Sacrifice R2 Dethdukk\nAttack R1 Dethdukk\nPass\n\n45) dlwillson: Trade Y3 G3 Bobby\n\n46) dethdukk: Sacrifice G3 Dethdukk\nBuild G2 Smallstep\nBuild G2 Smallstep\nBuild G3 Dethdukk\n\tdethdukk: I keep getting what I think are good ideas until you move and I see a flaw.\n\n47) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild Y2 Giantleap\nBuild R2 Dlwillson\n\n48) dethdukk: Sacrifice G3 Dethdukk\nBuild G3 Dethdukk\nBuild Y3 Dethdukk\nBuild Y3 Smallstep\n\n49) dlwillson: Move Y2 Giantleap Bobby\n\n50) dethdukk: Sacrifice G3 Dethdukk\nBuild G3 Dethdukk\nBuild R2 Jimmy\nBuild R3 Dethdukk\n\n51) dlwillson: Move Y2 Bobby Smallstep\nCatastrophe Smallstep Yellow\n\n52) dethdukk: Sacrifice G3 Dethdukk\nBuild G3 Jimmy\nPass\nPass\n\n53) dlwillson: Sacrifice Y2 Giantleap\nDiscover R2 Dlwillson Y2 Gambit\nMove G1 Dlwillson Gambit\n\tdlwillson: Grr... My red torpedo definitely didn't cause all the disruption I hoped it would.\n\n54) dethdukk: Move R1 Dethdukk Smallstep\n\n55) dlwillson: Sacrifice G3 Bobby\nBuild G3 Gambit\nBuild R3 Gambit\nBuild R3 Dlwillson\n\n56) dethdukk: Trade R3 Y3 Dethdukk\n\n57) dlwillson: Trade R2 Y2 Dlwillson\n\n58) dethdukk: Move Y3 Dethdukk Smallstep\n\n59) dlwillson: Move G1 Gambit Smallstep\nCatastrophe Smallstep Green\n\n60) dethdukk: Build G1 Dethdukk\n\tdethdukk: I think I have you in... 2-3 turns.\n\tdlwillson: I think you're frickin' mistaken.\n\n61) dlwillson: Build G1 Dlwillson\n\n62) dethdukk: Move G1 Dethdukk Smallstep\n\n63) dlwillson: Discover R3 Gambit B3 Potato\n\n64) dethdukk: Sacrifice G3 Jimmy\nBuild G2 Dethdukk\nBuild G2 Smallstep\nBuild G3 Jimmy\n\tdlwillson: Look, are you just fiddling around with me or what?\n\n65) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild R2 Potato\nBuild R3 Gambit\n\n66) dethdukk: Sacrifice G3 Jimmy\nBuild G3 Jimmy\nBuild Y1 Smallstep\nBuild Y1 Smallstep\n\tdethdukk: nah, looks like you found a move to hold me off for a bit. still got you in a few more moves.\n\n67) dlwillson: Discover Y2 Dlwillson B2 Carrot\n\n68) dethdukk: Discover Y1 Smallstep B2 Finaljump\n\n69) dlwillson: Discover R2 Gambit B3 Rutabaga\n\n70) dethdukk: Move Y1 Smallstep Finaljump\n\tdlwillson: Any idea how I change my nick?\r\n\n\n71) dlwillson: Move G3 Dlwillson Finaljump\n\n72) dethdukk: Move Y1 Finaljump Dlwillson\n\tdethdukk: nah, no idea. probably just make a new account...\n\n73) dlwillson: Sacrifice R2 Potato\nAttack Y1 Finaljump\nAttack Y1 Dlwillson\n\n74) dethdukk: Sacrifice Y3 Smallstep\nMove R1 Smallstep Jimmy\nMove R1 Jimmy Dlwillson\nMove R1 Jimmy Dlwillson\n\n75) dlwillson: Sacrifice G3 Gambit\nBuild G3 Dlwillson\nBuild Y3 Carrot\nBuild R2 Rutabaga\n\n76) dethdukk: Sacrifice Y3 Dethdukk\nMove G2 Jimmy Dlwillson\nMove G1 Smallstep Jimmy\nMove G1 Jimmy Dlwillson\nCatastrophe Dlwillson Green\n\n77) dlwillson: Sacrifice Y2 Carrot\nMove R3 Gambit Potato\nMove R3 Potato Dethdukk\n\n78) dethdukk: Sacrifice G2 Smallstep\nBuild Y2 Dethdukk\nBuild Y2 Dethdukk\n\tdlwillson: So, my reaction was: AAAAH! Holy crap! Oh, wait... Nevermind. :-)\n\n79) dlwillson: Sacrifice R2 Rutabaga\n\nAttack G1 Dethdukk\nAttack G2 Dethdukk\n\n80) dethdukk: Sacrifice Y2 Dethdukk\nMove R2 Jimmy Dlwillson\nMove G3 Jimmy Dlwillson\nCatastrophe Dlwillson Red\n\n81) dlwillson: Sac R3 Potato\nAttack Y1 Dethdukk\nAttack Y2 Dethdukk\nPass\n\n\nHomeworlds Online (SDG# 14757)\nVariants: "Hard time"\nStarted: 2010.1.25, Ended: 2010.2.26\nParticipants: mathochist (S), dethdukk (W), alexcobo (N), crysnamtodshire (E)\nWinner: mathochist\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) crysnamtodshire: Homeworld G2 B1 R3\n\n3) mathochist: Homeworld R3 B1 G3\n\tmathochist: What's the goal? Defeat the player to your left, or defeat everyone, or what? I'm not sure what the default is, here.\n\n4) dethdukk: Homeworld R3 B1 G3\n\n5) alexcobo: Build Y1 Alexcobo\n\tdethdukk: this isnt sinister, so I am going to assume kill everyone but you.\n\talexcobo: As far as I know, every Homeworld game at Superduper is LastOneStanding.\n\n6) crysnamtodshire: Build R1 Crysnamtodshire\n\tmathochist: Alexcobo: no, sinister is offered as a variant. I had seen on the wiki that n the sinister version, killing another player other than your left-hand neighbor doesn't end the game.\r\n\r\nSince it's offered as a variant but didn't show up in the offering or the title bar as such, I was pretty sure it wasn't that... and I didn't see anything to indicate good or evil, so I didn't think it was that, either. I just wasn't sure whether it might be something else I hadn't thought of. Thanks!\r\n\n\tdethdukk: oh, good luck everyone.\n\n7) mathochist: Build G1 Mathochist\n\n8) dethdukk: Build G1 Dethdukk\n\n9) alexcobo: Trade Y1 R1 Alexcobo\n\n10) crysnamtodshire: Build R1 Crysnamtodshire\n\talexcobo: I felt rather "naked" seeing how all of you had Red Tech and I didn't.\n\tmathochist: that's ok, I'm in another game where everybody chose the exact same 2 colors for their stars and the exact same color for their ships\n\n11) mathochist: T G1 Y1 Mathochist\n\n12) dethdukk: Build G1 Dethdukk\n\n13) alexcobo: Build Y1 Alexcobo\n\tdethdukk: I just took the set I did hoping math was going to be a little slower on the start (due to his red star). also, I happen to like red stars.\n\n14) crysnamtodshire: Trade R1 Y1 Crysnamtodshire\n\n15) mathochist: Build G1 Mathochist\n\n16) dethdukk: Trade G1 Y1 Dethdukk\n\n17) alexcobo: Build R1 Alexcobo\n\n18) mathochist: Discover G1 Mathochist Y2 Magica\n\n19) dethdukk: Trade G1 R1 Dethdukk\n\n20) alexcobo: Discover Y1 Alexcobo G1 Beta\n\n21) mathochist: Build G1 Mathochist\n\n22) dethdukk: Build G1 Dethdukk\n\n23) alexcobo: Trade R1 G1 Alexcobo\n\n24) mathochist: Build G2 Mathochist\n\n25) dethdukk: Build G2 Dethdukk\n\n26) alexcobo: Build G2 Alexcobo\n\n27) mathochist: Move G1 Magica Dethdukk\nCatastrophe Dethdukk G\n\n28) dethdukk: Trade R1 G1 Dethdukk\n\n29) alexcobo: Build R1 Alexcobo\n\tdethdukk: whoh... yeah, didnt see that you could reach me. serious mistake there...\n\n30) mathochist: Trade G1 R1 Mathochist\n\tmathochist: yeah, you left yourself open. sorry!\n\tdethdukk: nah, my bad. maybe I'll be able to pll off a miraculous recovery...\n\n31) dethdukk: Build G1 Dethdukk\n\n32) alexcobo: Build Y1 Beta\n\n33) mathochist: Build Y2 Mathochist\n\n34) dethdukk:\nBuild Y2 Dethdukk\n\n35) alexcobo: Build Y2 Alexcobo\n\n36) mathochist: Discover Y2 Mathochist G2 Meta\n\n37) dethdukk: Discover Y1 Dethdukk B2 Twin\n\n38) mathochist: B Y2 Mathochist\n\n39) dethdukk: Move G1 Dethdukk Twin\n\n40) mathochist: Trade Y1 B1 Mathochist\n\tmathochist: Wonder whether it's worth scavenging all those undefended ships. .. prolly not, there are still plenty of good ships left.\n\n\tmathochist: You can resign if you like. We can start a second 1v1 if you like, too... I'm liking this game a lot, and I've put up a standing challenge. :)\r\n\n\tdethdukk: k. gl in our 1v1 then\n\nHomeworlds Online (SDG# 15251)\nVariants: "Unrated"\nStarted: 2010.1.25, Ended: 2010.2.1\nParticipants: johannz (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) johannz: Homeworld Y2 B1 G3\n\tjohannz: homeworld y2 b1 g3\n\n3) dlwillson: Build G1 Dlwillson\n\tjohannz: Space. The final frontier. This is where Adam's brain is most days...\n\tdlwillson: :-)\n\n4) johannz: Build G1 Johannz\n\n5) dlwillson: Discover G1 Dlwillson Y2 Blarfo\n\n6) johannz: Trade G3 Y3 Johannz\n\n7) dlwillson: Build G1 Dlwillson\n\n8) johannz: Build G2 Johannz\n\n9) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Blarfo\nBuild G2 Blarfo\nBuild G3 Dlwillson\n\n10) johannz: Trade G2 Y2 Johannz\n\tdlwillson: You're doing great, Adam. Are you watching any other games while you play this one? So you know, I'm going to try to shut you out of green.\n\n11) dlwillson: Discover G2 Blarfo B3 Gungho\n\tjohannz: No, I'm not watching any other games.\r\nI realize that you are going for green. I have a vague plan in mind.\n\n12) johannz: Move Y3 Johannz Gungho\n\n13) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Blarfo\nBuild G3 Gungho\nBuild G3 Dlwillson\n\n14) johannz: Build G3 Johannz\n\n15) dlwillson: Trade G3 Y3 Gungho\n\n16) johannz: Sacrifice Y2 Johannz\nMove G1 Johannz Gungho\nMove G1 Gungho Blarfo\nCatastrophe Blarfo G\n\n17) dlwillson: Trade G2 R2 Gungho\n\tjohannz: I don't know if it was a good plan, I just know it was a vague plan. :)\n\n18) johannz: Trade Y3 R3 Gungho\n\tdlwillson: Excellent! I'd forgotten about that catastrophic possibility.\n\n19) dlwillson: Sacrifice R2 Gungho\nAttack R3 Gungho\nPass\n\tdlwillson: I thought of something even better... I think I have you in a couple moves. Not totally sure, but we'll see.\n\n20) johannz: Build G1 Johannz\n\tjohannz: Well, I think I saw the "y3 to johannz, let adam make a ship in johannz, sacrifice r2 in gungho to capture everything in johannz with the y3" move. Hopefully I countered it correctly.\n\n21) dlwillson: Move Y3 Gungho Johannz\n\tjohannz: Apparently I didn't counter it correctly.\n\n22) johannz: Discover G3 Johannz Y3 Mxyzptlk\n\n23) dlwillson: Sacrifice R3 Gungho\nAttack G1 Johannz\nPass\nPass\n\n\tdlwillson: Good game.\n\tjohannz: yes it was. I forgot you lost when you lost control of your home system. I thought you had to leave the system before I died. So I was going to move the G3 back in after you conquered the ships in the system.\n\nHomeworlds Online (SDG# 15253)\nStarted: 2010.1.25, Ended: 2010.3.15\nParticipants: ZackStack (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) ZackStack: Homeworld B1 R2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) ZackStack: Build G1 Zackstack\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) zoltar: Build G1 Zoltar\n\n8) ZackStack: Build G1 Zackstack\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) ZackStack: Discover G1 Zackstack B3 Bluemoon\n\n11) zoltar: Discover B1 Zoltar G1 Greenpea\n\n12) ZackStack: Build G1 Bluemoon\n\n13) zoltar: Build G2 Zoltar\n\n14) ZackStack: Build G2 Zackstack\n\n15) zoltar: Sacrifice G2 Zoltar\nBuild B1 Greenpea\nBuild B2 Greenpea\n\n16) ZackStack: Trade G1 R1 Bluemoon\n\n17) zoltar: Trade B2 Y2 Greenpea\n\n18) ZackStack: Build R1 Bluemoon\n\n19) zoltar: Build B2 Greenpea\n\n20) ZackStack: Trade G2 B2 Zackstack\n\n21) zoltar: Discover B2 Greenpea G3 Greengiant\n\n22) ZackStack: Move B2 Zackstack Greengiant\n\n23) zoltar: Build B3 Greenpea\n\n24) ZackStack: Sacrifice R1 Bluemoon\nAttack B2N Greengiant\n\n25) zoltar: Sacrifice Y2 Greenpea\nMove B1 Greenpea Greengiant\nMove B1 Greenpea Greengiant\nCatastrophe Greengiant B\n\n26) ZackStack: Trade G1 Y1 Bluemoon\n\n27) zoltar: Build Y2 Zoltar\n\n28) ZackStack: Build Y2 Zackstack\n\n29) zoltar: Move Y1 Zoltar Greenpea\n\n30) ZackStack: Build G1 Zackstack\n\n31) zoltar: Build B1 Greenpea\n\n32) ZackStack: Move G1 Zackstack Bluemoon\n\n33) zoltar: Build B1 Greenpea\n\n34) ZackStack: Trade Y2 B2 Zackstack\n\n35) zoltar: Trade B1 R1 Greenpea\n\n36) ZackStack: Discover R1 Bluemoon G1 Greenpip\n\n37) zoltar: Build G2 Zoltar\n\n38) ZackStack: Move Y1 Bluemoon Greenpip\n\n39) zoltar: Move G2 Zoltar Greenpip\n\n40) ZackStack: Build G2 Zackstack\n\n41) zoltar: Trade B3 G3 Greenpea\n\n42) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Bluemoon\nBuild Y2 Greenpip\nBuild G3 Zackstack\n\n43) zoltar: Sacrifice G3 Greenpea\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Greenpea\n\n44) ZackStack: Attack G2 Greenpip\n\n45) zoltar: Move Y3 Greenpea Bluemoon\n\n46) ZackStack: Sacrifice Y1 Greenpip\nDiscover G2 Bluemoon Y1 Yellowdot\n\n47) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Bluemoon\nBuild Y3 Greenpea\n\n48) ZackStack: Sacrifice Y2 Greenpip\nMove G2 Greenpip Zoltar\nMove G2 Yellowdot Zoltar\nCatastrophe Zoltar Green\n\n49) zoltar: Sacrifice R1 Greenpea\nAttack G1 Bluemoon\n\n50) ZackStack: Build Y1 Zackstack\n\n51) zoltar: Trade Y3 G3 Bluemoon\n\tZackStack: After that this is just a minor pyrric victory...\n\n52) ZackStack: Discover G2 Zackstack Y3 Sunburst\n\n53) zoltar: Trade G1 R1 Bluemoon\n\tzoltar: Yeah, that leaves me with a devastatingly powerful position, owning all the large yellow ships.\n\n54) ZackStack: Discover Y1 Zackstack G3 Muchoverde\n\tZackStack: Yeah... I need to starting thinking a few more moves in advance in our games :-)\n\n55) zoltar: Move Y3 Greenpea Sunburst\n\n56) ZackStack: Discover G2 Sunburst B1 Bluedot\n\n57) zoltar: Build Y2 Greenpea\n\n58) ZackStack: Move Y1 Muchoverde Greenpip\n\n59) zoltar: Move Y2 Zoltar Greenpip\n\n60) ZackStack: Move Y1 Greenpip Sunburst\n\n61) zoltar: Move Y3 Sunburst Bluedot\n\n62) ZackStack: Build G1 Zackstack\n\n63) zoltar: Sacrifice R1 Bluemoon\nAttack G2 Bluedot\n\n64) ZackStack: Discover G1 Zackstack B3 Freefall\n\n65) zoltar: Build G2 Bluemoon\n\n66) ZackStack: Build R1 Greenpip\n\tZackStack: Is it just me or am I doing even worse than last time? :-)\n\n67) zoltar: Sacrifice G3 Bluemoon\nBuild G2 Bluemoon\nBuild G3 Bluemoon\nBuild G3 Bluedot\n\n68) ZackStack: Move B2 Zackstack Sunburst\n\tzoltar: Yeah, you're in bad shape, and I'm just slowly building my lead. I have the same problem with TwoShort, who crushes me every game. I actually did beat him once, but have lost every one of the next half-dozen games since, and I'm losing my current game against him.\n\tZackStack: Heh. I'm at a point where I manhandle newbs and inexperienced players and have a winning record against moderate players... but you pros trounce me every time :-) I need to start paying attention so I can stop making the same mistakes...\n\n69) zoltar: Move G3 Bluemoon Zackstack\n\n70) ZackStack: Attack G3 Zackstack\n\n71) zoltar: Sacrifice Y3 Bluedot\nMove G2 Bluemoon Zackstack\nMove G2 Bluemoon Zackstack\nMove Y3 Bluemoon Zackstack\nCatastrophe Zackstack G\n\n72) ZackStack: Move Y1 Sunburst Zackstack\n\tzoltar: I'm violating all the basic rules: I've left my homeworld without a large ship, and I don't have a gun; but just by sheer overwhelming numbers it just doesn't matter.\n\tZackStack: Thanks for reminding me. :-p Sorry I'm not the sort to resign... I enjoy seeing the manner of my demise :-)\n\n73) zoltar: Sacrifice G3 Bluedot\nBuild Y3 Zackstack\nPass\nPass\nCatastrophe Zackstack Y\n\tzoltar: I can win without a gun. My 'pacifist green army' is just going to march into your capital.\n\n\nHomeworlds Online (SDG# 15153)\nStarted: 2010.1.26, Ended: 2010.1.28\nParticipants: TwoShort (S), mathochist (N)\nWinner: TwoShort\n\n1) mathochist: Homeworld B1 R2 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tTwoShort: Howdy\n\n3) mathochist: Build G1 Mathochist\n\tmathochist: hiya!\n\n4) TwoShort: Build B1 Twoshort\n\n5) mathochist: Trade G1 Y1 Mathochist\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) mathochist: Discover Y1 Mathochist G3 George\n\tmathochist: neat trick, that\n\n8) TwoShort: Build B2 Twoshort\n\n9) mathochist: Build G1 Mathochist\n\tmathochist: typo\n\n10) TwoShort: Discover B2 Twoshort G2 Grogar\n\n11) mathochist: Trade G1 Y1 Mathochist\n\n12) TwoShort: Build B2 Twoshort\n\n13) mathochist: Build G1 Mathochist\n\n14) TwoShort: Build B2 Grogar\n\n15) mathochist: Discover G1 Mathochist B3 Sam\n\n16) TwoShort: Build B3 Grogar\n\n17) mathochist: D Y1 Mathochist B3 Fred\n\n18) TwoShort: Trade B3 Y3 Grogar\n\n19) mathochist: B G1 Mathochist\n\n20) TwoShort: Trade B2 R2 Grogar\n\n21) mathochist: B G1 Mathochist\n\n22) TwoShort: Build B2 Grogar\n\n23) mathochist: Build G2 Sam\n\n24) TwoShort: Move B2 Grogar George\n\n25) mathochist: Trade G2 R2 Sam\n\n26) TwoShort: Build B3 George\n\n27) mathochist: T G1 Y1 Mathochist\n\n28) TwoShort: Trade B3 R3 George\n\n29) mathochist: B Y2 Mathochist\n\n30) TwoShort: Build R1 George\n\n31) mathochist: M Y1 Mathochist Sam\n\n32) TwoShort: Sacrifice Y3 Grogar\nMove R3 George Mathochist\nMove R1 George Mathochist\nDiscover R2 Grogar Y3 Yolonda\n\n33) mathochist: A R3 Mathochist\n\n34) TwoShort: Move R2 Yolonda Mathochist\nCatastrophe Mathochist Red\n\tTwoShort: The Death Star is clear to fire... :)\n\n35) mathochist: S Y2 Mathochist\nM Y1 Sam Grogar\nM R2 Sam Grogar\n\n\n36) TwoShort: Sacrifice Y3 Twoshort\nMove B2 Grogar Mathochist\nMove B2 George Mathochist\nDiscover B2 Twoshort Y2 Boomtime\n\n37) mathochist: M R2 Grogar Twoshort\n\n38) TwoShort: Move B2 Boomtime Mathochist\nCatastrophe Mathochist Blue\n\n\tmathochist: good game! that was a terrific opening for you, I'll have to remember that one.\n\tTwoShort: Thanks for the game! I, indeed, love that opening. I don't get to play it much, because nobody seems to take a b1 star as first player against me much anymore :) Anyway, if you want to not take a b1 and have a more typical game, I'm up for a rematch any time...\n\nHomeworlds Online (SDG# 15059)\nVariants: "Hard time"\nStarted: 2010.1.28, Ended: 2010.1.31\nParticipants: Jesse (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld G3 Y1 G3 *\n\n\tJesse: Sorry, this was not a good time for me to start a new game.\n\nHomeworlds Online (SDG# 15247)\nStarted: 2010.1.28, Ended: 2010.2.22\nParticipants: ZackStack (S), shmil1 (N)\nWinner: ZackStack\n\n1) shmil1: Homeworld G3 B1 Y3\n\n2) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Hey Schmil! Have a good game!\n\n3) shmil1: Build Y1 Shmil1\n\n4) ZackStack: Build G1 Zackstack\n\tZackStack: I noticed you haven't played many games... would you like me to point out particularly bad moves when I see them to help your learning the game?\n\n5) shmil1: Discover Y1 Shmil1 G2 Eldor\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) shmil1: Discover Y1 Eldor G3 Techos\n\n8) ZackStack: Build G1 Zackstack\n\n9) shmil1: Move Y1 Techos Zackstack\n\n10) ZackStack: Attack Y1 Zackstack\n\n11) shmil1: Trade Y3 G3 Shmil1\n\n12) ZackStack: Discover G1 Zackstack B3 Azure\n\tZackStack: Hey Schmil! You know I can just attack and capture your ship right? Feel free to undo...\n\tZackStack: Sorry Schmil... I don't want to time out here.\n\n13) shmil1: Build G1 Shmil1\n\n\n14) ZackStack: Move Y1 Zackstack Azure\n\tshmil1: Sorry for mistake. I had a busy days to check it out. :(\n\tZackStack: Its okay. Now you just have to trick me into giving it back :-)\n\n15) shmil1: Trade G1 R1 Shmil1\n\n16) ZackStack: Build Y1 Azure\n\n17) shmil1: Build G1 Shmil1\n\n18) ZackStack: Build Y2 Azure\n\n19) shmil1: Trade G3 Y3 Shmil1\n\tshmil1: build g1 shmil1\n\n20) ZackStack: Trade Y1 R1 Azure\n\tZackStack: I'd love to, but I don't have any presence in that system yet :-p\n\n21) shmil1: Build R2 Shmil1\n\n22) ZackStack: Trade Y1 B1 Azure\n\n23) shmil1: Discover R2 Shmil1 G2 Gramm\n\n24) ZackStack: Build R2 Azure\n\n25) shmil1: Build Y1 Shmil1\n\n26) ZackStack: Discover B1 Azure G2 Verde\n\n27) shmil1: Move Y1 Shmil1 Gramm\n\n28) ZackStack: Build G1 Zackstack\n\n29) shmil1: Build R2 Gramm\n\n30) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Azure\nBuild G3 Zackstack\nBuild G3 Azure\n\n31) shmil1: Build R3 Shmil1\n\n32) ZackStack: Move G3 Azure Verde\n\n33) shmil1: Move R3 Shmil1 Verde\n\tZackStack: That move always feels a little like cheating...\n\n34) ZackStack: Sacrifice R1 Azure\nAttack R3 Verde\n\n35) shmil1: Trade Y3 B3 Shmil1\n\n36) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild B1 Verde\nBuild Y1 Azure\n\tZackStack: Hey schmil! I hope you see this one in time... I can sacrifice one of my red ships to capture your R3 there. You might want to undo!\n\tZackStack: Sorry... this might be the last time I log in until tomorrow night...\n\n37) shmil1: Build Y2 Gramm\n\n38) ZackStack: Sacrifice Y2 Azure\nMove B1 Verde Shmil1\nMove B1 Verde Shmil1\nCatastrophe Shmil1 Blue\n\n39) shmil1: Discover Y2 Gramm R3 Lastworld\n\n40) ZackStack: Sacrifice Y1 Azure\nMove G3 Verde Shmil1\n\n41) shmil1: Sacrifice Y2 Lastworld\nMove R2 Gramm Shmil1\nMove R2 Gramm Shmil1\n\n42) ZackStack: Sacrifice G1 Azure\nBuild G1 Shmil1\nCatastrophe Shmil1 Green\n\tZackStack: Ouch. Not a very optimistic star name! \n\n\tZackStack: Thanks again for the game! Sorry a couple of those moves got away from you... let me know if you'd like a rematch sometime! \n\tshmil1: i would like to rematch although you are much more better. but it is good to have good teachers. once or twice i have played in a hurry in surgery. but it is no excuse...\n\nHomeworlds Online (SDG# 15297)\nVariants: "Unrated"\nStarted: 2010.1.28, Ended: 2010.4.5\nParticipants: MattWorden (S), makertron (N)\nWinner: MattWorden\n\n1) makertron: Homeworld R3 B1 G3\n\tMattWorden: Hi makertron ... I have not played this game before, but it looks very interesting. Do you mind playing a newbie-learner? :-)\n\n2) MattWorden: Homeworld G3 R1 Y3 *\n\tmakertron: not at all. i'm pretty inexperienced myself.\n\n3) makertron: Build G1 Makertron\n\n4) MattWorden: Build Y1 Mattworden\n\n5) makertron: Trade G1 Y1 Makertron\n\n6) MattWorden: Discover Y1 Mattworden B2 Butterball\n\n7) makertron: Build G1 Makertron\n\n8) MattWorden: Trade Y1 G1 Butterball\n\n9) makertron: Discover G1 Makertron B2 Ballbutter\n\n10) MattWorden: Build Y1 Mattworden\n\n11) makertron: Build Y1 Makertron\n\n12) MattWorden: Move Y1 Mattworden Butterball\n\n13) makertron: Move Y1 Makertron Ballbutter\n\n14) MattWorden: Trade Y1 R1 Butterball\n\n15) makertron: Build Y1 Ballbutter\n\n16) MattWorden: Build Y2 Mattworden\n\n17) makertron: Trade Y1 R1 Ballbutter\n\n18) MattWorden: Move Y2 Mattworden Butterball\n\n19) makertron: Build G1 Makertron\n\n20) MattWorden: Trade Y2 R2 Butterball\n\n21) makertron: Build R2 Ballbutter\n\n22) MattWorden: Build G2 Butterball\n\n23) makertron: Sacrifice G3 Makertron\nBuild G2 Ballbutter\nBuild G2 Ballbutter\nBuild G3 Makertron\n\n24) MattWorden: Build G3 Butterball\n\n25) makertron: Move G1 Makertron Butterball\n\n26) MattWorden: Attack G1 Butterball\n\n27) makertron: Build R2 Ballbutter\nCatastrophe Butterball Green\n\n28) MattWorden: Trade R1 G1 Butterball\n\tMattWorden: Wow -- nice one! :-p\n\n29) makertron: Build G1 Makertron\n\n30) MattWorden: Build Y1 Mattworden\n\n31) makertron: Move G2 Ballbutter Makertron\n\n32) MattWorden: Move Y1 Mattworden Butterball\n\n33) makertron: Move R2 Ballbutter Makertron\n\n34) MattWorden: Build G2 Butterball\n\n35) makertron: Trade G2 Y2 Makertron\n\n36) MattWorden: Sacrifice G2 Butterball\nBuild R1 Butterball\nBuild R3 Butterball\n\n37) makertron: Build R3 Makertron\n\n38) MattWorden: Move R1 Butterball Makertron\nCatastrophe Makertron R\n\n39) makertron: Move R1 Ballbutter Makertron\n\n40) MattWorden: Build Y2 Butterball\n\n41) makertron: Build Y2 Ballbutter\n\n42) MattWorden: Move R2 Butterball Mattworden\n\n43) makertron: Trade Y1 R1 Makertron\n\n44) MattWorden: Build G2 Butterball\n\n45) makertron: Trade G1 B1 Makertron\n\n46) MattWorden: Build R2 Butterball\n\n47) makertron: Build R3 Ballbutter\n\n48) MattWorden: Trade G1 B1 Butterball\n\n49) makertron: Trade R1 G1 Makertron\n\n50) MattWorden: Move B1 Butterball Mattworden\n\n51) makertron: Discover G1 Makertron R3 Sol\n\n52) MattWorden: Trade G2 B2 Butterball\n\n53) makertron: Sacrifice Y2 Ballbutter\nMove R3 Ballbutter Mattworden\nMove R2 Ballbutter Mattworden\nCatastrophe Mattworden R\n\n54) MattWorden: Build B3 Mattworden\n\n55) makertron: Build B3 Makertron\n\n56) MattWorden: Move B2 Butterball Makertron\nCatastrophe Makertron B\n\n\tMattWorden: Thanks for the game, makertron.\n\nHomeworlds Online (SDG# 15261)\nStarted: 2010.1.29, Ended: 2010.2.6\nParticipants: dethdukk (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) dethdukk: Homeworld R1 B2 G3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tdethdukk: g'day. thanks for letting me take banker.\n\n4) dethdukk: Build G1 Dethdukk\n\tdethdukk: so, after reviewing your past games, I notice that you never actually lost to andy looney... so why is it that you are considered the second best? as andy is the world champ at this point.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) dethdukk: Build G1 Dethdukk\n\n7) TwoShort: Build G1 Twoshort\n\n8) dethdukk: Trade G1 Y1 Dethdukk\n\n9) TwoShort: Build G1 Twoshort\n\tTwoShort: dangit, I've been composing a lengthy reply to your question and not paying enough attention :) should have built yellow.\n\n10) dethdukk: Build G2 Dethdukk\n\tdethdukk: It worked! Actually, I really did just ask cause i was curious. I am liking this start, but I have no clue how to run banker (I actually prefer fortress) so I guess we will see how this turns out.\n\n11) TwoShort: Discover G1 Twoshort G2 Greenorama\n\tTwoShort: So, the lengthy response: \r\nWho says I'm second best?! :) Actually, I know someone wrote that in the wiki some number of years ago; but I don't know who or if they still think so. Definitive Homeworlds rankings do not exist. Andy is world champion because he won the annual tournament at the Origins game convention; but the tournament is not terribly well attended, and I've never been to it. If I did go, I expect I'd lose. I beat Andy all 3 times we played here, but I've played him in person maybe 6 times and lost every one. I expect there are several people who would ususally be better than me under the time constraints of in-person play. Around here, when I can take 20 minutes (or 2 days) to think about a move any time I want, I'm pretty good :) My completely stratospheric rating here should imply I'm completely dominant, but honestly there's at least 3 players I wouldn't bet beating the next time we play.\n\tTwoShort: How to play Banker: Move greens out to 3s (often yellow) in hopes that when that color is gone you can sacrifice the ships to build stars as ships without my ever getting a crack at them.\r\n How to play Goldilocks: Move out to 2s, choosing the color based on what to pull out of the stash and control who gets the 3s. for example...\r\n\n\n12) dethdukk: Discover G2 Dethdukk G3 Smallstep\n\tTwoShort: A vast number of other strategies and guidelines also apply, but that's my nutshell analysis of the strategies uniquely available based on opening.\n\tdethdukk: hm, so next turn you sac the g3 to get 2 g3s and a g2... I *think* the best move is...\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n14) dethdukk: Discover G1 Dethdukk B3 Giantleap\n\n15) TwoShort: Trade G2 R2 Twoshort\n\n16) dethdukk: Build Y2 Dethdukk\n\n17) TwoShort: Move Y1 Twoshort Greenorama\n\tdethdukk: hm, that was annoying... so judging by how you normally play, that means that you either see a way to use that ship soon, or you did that just to stop me from getting a g3.\n\n18) dethdukk: Build G2 Dethdukk\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Twoshort\nBuild Y2 Greenorama\n\tTwoShort: I generally want to use it, or have it force you to take a red also (The Gun Rule); since you could safely ignore it, yes, it was just the best move that stopped you getting the 3. Of course, now that I've got it, I'll try to develop the treat and force you to take a red when you'd rather do something else.\n\tdethdukk: hm, odd. I undid my turn, and it says it is my turn (to me at least), but all i got is an undo button.\n\n20) dethdukk: Move Y1 Dethdukk Giantleap\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Greenorama\n\tdethdukk: hm. yeah, either way I did that you took the advantage. \n\n22) dethdukk: Build Y3 Dethdukk\n\n23) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Greenorama Giantleap\nMove Y2 Greenorama Smallstep\n\n24) dethdukk: Trade G3 R3 Dethdukk\n\n25) TwoShort: Trade Y3 R3 Giantleap\n\n26) dethdukk: Build G3 Dethdukk\n\n27) TwoShort: Sacrifice R2 Twoshort\nAttack G2 Smallstep\nAttack G1 Giantleap\n\n28) dethdukk: Move Y3 Dethdukk Smallstep\n\n29) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Giantleap\nBuild Y2 Smallstep\nBuild Y3 Greenorama\n\tdethdukk: ya got me. you want to play it out, or call it?\n\n30) dethdukk: Trade G2 B2 Dethdukk\n\tTwoShort: I'm always happy to play it out, but it's up to you; I'd rather you resign not be having fun. \r\n By my reckoning, I've got only a slight material advantage at the moment; but I can gain a big one this turn. Personally, I don't resign until I can see exactly how the opponent can force victory no matter what I do; and I don't see that here quite yet.\n\n31) TwoShort: Sacrifice G3 Giantleap\nBuild G2 Giantleap\nBuild G3 Smallstep\nBuild R1 Giantleap\n\n32) dethdukk: Discover Y3 Smallstep R2 Haven\n\n33) TwoShort: Trade G2 B2 Giantleap\n\n34) dethdukk: Discover B2 Dethdukk B3 Stall\n\n35) TwoShort: Sacrifice Y3 Greenorama\nMove R3 Giantleap Dethdukk\nMove R1 Giantleap Dethdukk\nMove B2 Giantleap Dethdukk\nCatastrophe Dethdukk Red\n\n\tTwoShort: OK, now I've got you :) You can make me take two more turns to win instead of one, but that's it. Anyway, nice game; you were right with me until I got you in the grow-a-3-or-defend-vs-red bind, and you made it awfully hard to finally close the door after that.\n\tdethdukk: Thank ya much. Yeah, I felt that you were always just one step ahead. Did much better than the last time I played against you in any case. Thanks for the game, hope to do another when some of mine end and college slows down a bit.\n\nHomeworlds Online (SDG# 15302)\nVariants: "Hard time"\nStarted: 2010.1.29, Ended: 2010.2.4\nParticipants: dethdukk (S), shmil1 (N)\nWinner: dethdukk\n\n1) shmil1: Homeworld G1 B2 Y3\n\n2) dethdukk: Homeworld R1 B3 G3\n\n\tdethdukk: Good luck, have fun.\n\nHomeworlds Online (SDG# 15309)\nVariants: "Hard time"\nStarted: 2010.1.29, Ended: 2010.4.4\nParticipants: TwoShort (S), zoltar (N)\nWinner: TwoShort\n\n1) zoltar: Homeworld B2 R1 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) zoltar: Build G1 Zoltar\n\tTwoShort: Howdy\n\tzoltar: Hi!\n\n4) TwoShort: Build G1 Twoshort\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) zoltar: Build G1 Zoltar\n\n8) TwoShort: Build G1 Twoshort\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) TwoShort: Trade G1 B1 Twoshort\n\n11) zoltar: Build B2 Zoltar\n\n12) TwoShort: Build B2 Twoshort\n\n13) zoltar: Trade B2 R2 Zoltar\n\n14) TwoShort: Trade B2 Y2 Twoshort\n\n15) zoltar: Build B2 Zoltar\n\n16) TwoShort: Build B2 Twoshort\n\n17) zoltar: Trade B2 Y2 Zoltar\n\n18) TwoShort: Discover B1 Twoshort G2 Grogar\n\n19) zoltar: Discover B1 Zoltar G3 Greenbelt\n\n20) TwoShort: Discover B2 Twoshort Y2 Yolonda\n\n21) zoltar: Move Y2 Zoltar Greenbelt\n\n22) TwoShort: Trade B2 R2 Yolonda\n\n23) zoltar: Build B2 Greenbelt\n\n24) TwoShort: Move Y1 Twoshort Grogar\n\n25) zoltar: Move B2 Greenbelt Grogar\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild B2 Greenbelt\nBuild B3 Grogar\n\n28) TwoShort: Sacrifice Y1 Twoshort\nMove Y3 Grogar Greenbelt\n\n29) zoltar: Sacrifice B2 Greenbelt\nTrade B1 Y1 Greenbelt\nTrade B3 R3 Grogar\n\n30) TwoShort: Sacrifice B1 Grogar\nTrade Y3 R3 Greenbelt\n\n31) zoltar: Sacrifice Y2 Greenbelt\nDiscover Y1 Greenbelt G2 Greendale\nDiscover Y1 Zoltar G3 Greenville\n\tzoltar: Once again, I never saw your big sack coming, and my counter-sack did little. I think I'm doomed!\n\n32) TwoShort: Trade Y3 G3 Twoshort\n\n33) zoltar: A Y1 Grogar\n\n34) TwoShort: Move R2 Yolonda Greenville\n\n35) zoltar: Build Y2 Greendale\n\n36) TwoShort: Attack Y1 Greenville\n\tzoltar: I survived all that sacrifices stuff and somehow came out of it with a good position, unless I missed your next trick...\n\tTwoShort: I've thought your position was good throughout. I just didn't say anything because I figured if you wanted to psych yourself out I should let you :) Of course, that might imply I'm saying so now to psych you out so you'll miss my next trick... I guess it depends if I come up with one :)\n\tzoltar: Well, you're the only player that consistently plays moves I didn't anticipate -- usually I figure I know what all the candidate moves are and I'm not surprised. When you play something I didn't even consider, then I'm automatically scared.\n\n37) zoltar: Trade R2 G2 Zoltar\n\n38) TwoShort: Build G1 Twoshort\n\n39) zoltar: Build Y2 Zoltar\n\n40) TwoShort: Build Y3 Greenville\n\n41) zoltar: Sacrifice Y2 Greendale\nMove Y1 Grogar Greenville\nMove Y1 Greendale Greenville\nCatastrophe Greenville Y\n\n42) TwoShort: Discover G1 Twoshort Y2 Yonderboy\n\n43) zoltar: Build B1 Grogar\n\n44) TwoShort: Build G1 Twoshort\n\n45) zoltar: Trade B1 Y1 Grogar\n\n46) TwoShort: Build G1 Yonderboy\n\n47) zoltar: Build G2 Zoltar\n\n48) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild R1 Greenbelt\nBuild G3 Twoshort\n\n49) zoltar: Discover Y2 Zoltar B3 Bluemoon\n\n50) TwoShort: Discover Y2 Twoshort B2 Bluestar\n\n51) zoltar: Build B1 Grogar\n\n52) TwoShort: Sacrifice G3 Twoshort\nBuild R1 Greenville\nBuild R2 Greenville\nBuild G3 Twoshort\n\n53) zoltar: Discover G2 Zoltar Y3 Goldilox\n\n54) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluestar\nBuild Y3 Twoshort\nBuild G3 Twoshort\n\tTwoShort: Sorry to be so slow... I'm having a busy week and and this game is getting more than a little bit complicated :) \n\n55) zoltar: Sacrifice G2 Goldilox\nBuild Y3 Grogar\nBuild R2 Grogar\n\n56) TwoShort: Sacrifice Y2 Bluestar\nMove R1 Greenville Grogar\nMove R1 Greenbelt Grogar\nCatastrophe Grogar Red\n\tzoltar: That's ok. I've pretty much given up on this one anyway.\n\tTwoShort: If your pessimism is motivated by a move you see for me, I wish you'd let me know what it is :) I see a couple ways either of us could launch massive attacks that wouldn't quite be enough for victory and would cripple the attacker. It seems like there should be a way for one of us to push it over the tipping point, but I don't see it yet. \n\tzoltar: I don't see the victory, but I think I'm slowly being squeezed, and now you have a factory and I don't; nor do I have any plan of attack or way to threaten you. I am in the blue economy, but with your factory you can catch up and get most of the remaining pieces, I think. \n\tzoltar: I just wish I could see more clearly in a position like this, the way I can in chess, where I know if my opponent's advantage is crushing, or if I have good drawing chances, etc. Here I only am in a fog with a feeling of impending doom at any moment...\n\tTwoShort: I guess I just want to assure you that I too feel like I'm in a fog of impending doom. If I set up the position in real pyramids and make the moves I'm considering, I can see if you can crush me in any obvious way the very next turn, but that's about as far as it goes. \r\n I'm happy to have the factory, but I can't beat you to the blues, or even get one without giving you the choice of blowing up half my world or taking both b3s. If I take the red this turn, you catastrophe me and put the g3 you need in the stash so I spend a turn keeping it away from you. If I take yellow, you can cash Goldilox, which I guess is what I'm leaning toward, but it's not much better than even.\r\n I don't see how to force catastrophes so I can get more of the pieces after. So it seems like the game is reaching a stable detente. Since that never happens, I assume one of us will find the killer move here somewhere, but I don't see it so far.\n\tzoltar: That makes sense. I created Goldilox as an investment to make sure I could get one of the Y3's as if you get them both I'm in big trouble, and I guess there's no way right now to use your factory in crushing way without my having powerful counter-moves. Making it an interesting game. I think my position has improved over the last few moves, too, and I'm holding my own much better than I usually do in my games with you. And, even given all that, I feel I'm in that fog of impending doom!\n\n57) zoltar: Trade Y3 R3 Grogar\n\n58) TwoShort: Discover G1 Yonderboy Y3 Yoyodyne\n\n59) zoltar: Move R3 Grogar Yoyodyne\n\n60) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yonderboy\nBuild G3 Twoshort\nBuild Y2 Bluestar\n\n61) zoltar: Attack G1 Yoyodyne\n\n62) TwoShort: Move Y3 Twoshort Grogar\n\n63) zoltar: Move R3 Yoyodyne Yonderboy\n\n64) TwoShort: Sacrifice G2 Yonderboy\nBuild R1 Greenbelt\nBuild R1 Greenville\n\n65) zoltar: Sacrifice G1 Yoyodyne\nBuild Y3 Bluemoon\n\n66) TwoShort: Sacrifice R2 Greenville\nAttack B2 Grogar\nAttack B1 Grogar\n\n\tzoltar: Well, that does it; my position has rapidly deteriorated, and now I lost all my blue pieces.\n\nHomeworlds Online (SDG# 15249)\nStarted: 2010.2.4, Ended: 2010.2.17\nParticipants: dethdukk (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) dethdukk: Homeworld R1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\tdethdukk: Hello, good luck in the game.\n\tzoltar: Hi, same to you!\n\n4) dethdukk: Build G1 Dethdukk\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) dethdukk: Trade G1 Y1 Dethdukk\n\n7) zoltar: Build G1 Zoltar\n\n8) dethdukk: Build G1 Dethdukk\n\n9) zoltar: Trade G1 R1 Zoltar\n\tdethdukk: kind of weird... my best choice is really to just do what you have done (so far)\n\n10) dethdukk: Build G1 Dethdukk\n\n11) zoltar: Build R1 Zoltar\n\n12) dethdukk: Discover G1 Dethdukk B2 Smallstep\n\n13) zoltar: Discover R1 Zoltar B1 Blueberry\n\n14) dethdukk: Trade G1 B1 Dethdukk\n\n15) zoltar: Build R2 Zoltar\n\n16) dethdukk: Build G1 Dethdukk\n\n17) zoltar: Trade R2 Y2 Zoltar\n\n18) dethdukk: Build G1 Dethdukk\n\n19) zoltar: Build G2 Zoltar\n\n20) dethdukk: Discover G1 Dethdukk Y2 Giantleap\n\n21) zoltar: Move G2 Zoltar Blueberry\n\n22) dethdukk: Build B1 Dethdukk\n\n23) zoltar: Build R2 Blueberry\n\n24) dethdukk: Move B1 Dethdukk Giantleap\n\n25) zoltar: Sacrifice Y1 Zoltar\nMove R2 Blueberry Giantleap\n\n26) dethdukk: Build B2 Giantleap\n\n27) zoltar: Attack B2 Giantleap\n\n28) dethdukk: Build B3 Giantleap\n\n29) zoltar: Sacrifice G2 Blueberry\nBuild R2 Blueberry\nBuild B3 Giantleap\nCatastrophe Giantleap B\n\n30) dethdukk: Discover G1 Giantleap R3 Pin\n\n31) zoltar: Trade R2 G2 Blueberry\n\n32) dethdukk: Build B1 Dethdukk\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild R2 Blueberry\nBuild R2 Giantleap\nBuild R3 Zoltar\n\n34) dethdukk: Discover B1 Dethdukk B2 Chess\n\n35) zoltar: Trade R3 G3 Zoltar\n\n36) dethdukk: Build B3 Dethdukk\n\n37) zoltar: Build R3 Blueberry\n\tdethdukk: interesting game so far. never seen someone concentrate on red before.\n\n38) dethdukk: Sacrifice G1 Dethdukk\nBuild B3 Chess\n\n39) zoltar: Sacrifice Y2 Zoltar\nMove R2 Blueberry Smallstep\nMove R3 Blueberry Chess\n\tzoltar: Well, I've never tried concentrating on red before.\n\tdethdukk: doing pretty good so far... you've got my HW pinned down pretty well, and I keep feeling like I've got no gun while you've got a lot of them.\n\n40) dethdukk: Sacrifice B3 Chess\nTrade B1 G1 Chess\nTrade G1 B1 Pin\nTrade B3 G3 Dethdukk\n\tzoltar: Then I say it's time to start shootin'!\n\n41) zoltar: Sacrifice R2 Giantleap\nAttack G1 Chess\nAttack G1 Smallstep\n\tdethdukk: I must admit that even if this game is completely odd, it is funny as hell trying to counter your attacks using blue...\n\n42) dethdukk: Sacrifice G3 Dethdukk\nBuild B3 Dethdukk\nBuild B3 Pin\nBuild Y1 Dethdukk\n\n43) zoltar: Build R2 Chess\n\n44) dethdukk: Trade B3 G3 Pin\n\n45) zoltar: Trade R3 Y3 Chess\n\n46) dethdukk: Build B3 Pin\n\n47) zoltar: Build R3 Smallstep\n\tdethdukk: not much I can do to stop whats coming... fortunately its not quite the end of the game.\n\n48) dethdukk: Discover Y1 Dethdukk Y2 Expansion\n\n49) zoltar: Sacrifice Y3 Chess\nMove R1 Blueberry Pin\nMove R2 Giantleap Pin\nMove R2 Smallstep Pin\nCatastrophe Pin R\n\tzoltar: Well, you could have sacrificed that y1 and moved one of the big ships to 'expansion' instead, I think.\n\tdethdukk: true... I think that I will be a little better off in the long run this way. \n\n50) dethdukk: Discover B3 Dethdukk R2 Reboot\n\n51) zoltar: Build R1 Smallstep\n\tdethdukk: yeah, I knew it was gunna happen when you made the Y3. I was trying to decide if I should try to save a ship or not. I think you'll get me in the long run, it takes too long to grow using blues as a main I think, so you are slowly out-growing me... but yet sure tho, we'll see. I'm off for tonight.\n\tzoltar: Reboot is right -- it's a whole new game!\n\tzoltar: I'm going to bed -- will come back to this with a fresh look later!\n\n52) dethdukk: Sacrifice G3 Dethdukk\nBuild B1 Reboot\nBuild B3 Dethdukk\nBuild Y1 Dethdukk\n\n53) zoltar: Sacrifice G2 Blueberry\nBuild R2 Smallstep\nBuild R3 Chess\n\n54) dethdukk: Trade B3 G3 Dethdukk\n\n55) zoltar: Trade R3 Y3 Smallstep\n\n56) dethdukk: Trade B3 R3 Reboot\n\n57) zoltar: Trade R3 Y3 Chess\n\tdethdukk: I has guns! bwahahahah. or something like that.\n\n58) dethdukk: Sacrifice G3 Dethdukk\nBuild B1 Reboot\nBuild B3 Dethdukk\nBuild B3 Reboot\n\n59) zoltar: Sacrifice G3 Zoltar\nBuild R3 Zoltar\nBuild Y2 Chess\nBuild Y2 Smallstep\n\tzoltar: Yeah, I was afraid of that, but yellow is so crucial, that I was going to have to give up at least one R3 if I wanted to get into the Yellow industry. I might as well go for more yellow, then, now that you've got a red ship.\n\n60) dethdukk: Move Y1 Dethdukk Reboot\n\tzoltar: Ok, I can do that too!\n\n61) zoltar: Trade R3 Y3 Zoltar\n\n62) dethdukk: Trade B3 G3 Dethdukk\n\tzoltar: There have been more large ship swaps and sacks in this game than in any homeworlds game I've ever played, I think.\n\n63) zoltar: Discover R1 Smallstep B3 Blueyoudonthave\n\tdethdukk: I think its cause we both went for different colors, and we both succeeded. or something.\n\n64) dethdukk: Trade B1 G1 Reboot\n\n65) zoltar: Sacrifice Y3 Smallstep\nDiscover R1 Zoltar B1 Wormhole\nMove R1 Wormhole Reboot\nMove R1 Blueyoudonthave Reboot\nCatastrophe Reboot R\n\tzoltar: Well, this is looking too dangerous, so I think once again, I'll simplify us down, and take the interest I get after the simplification.\n\n66) dethdukk: Build B1 Dethdukk\n\tdethdukk: narg, ya got me... that should be game in a couple turns. didnt see that you could do that, I'da moved the red ship outta there. cant believe I didnt see it actually. well gg, I'd like to play you again when college calms down once more.\n\n67) zoltar: Trade Y3 G3 Chess\n\tzoltar: I was expecting you to move your red ship to challenge my small red ship. Then I sack my Y2 and move my two R2's into the system and blow up your red ship, still retaining my Y3. But leaving both the B3 and R3 in the reboot system meant I could sac a Y3 and just the two R1's and take out two of your large ships leaving me with the two-to-one large ship ratio, which gives me too much of an advantage now. The move of the R1 was to both block your growing the B3 and threaten to blow up reboot so I figured I'd get to knock out your R3 and take away your only gun again when you moved it to respond.\n\n\tdethdukk: yeah, I'm gunna have to forfeit. If I move out, you move and capture me, if I stay in my homeworld, you catastrophy my ships soon as I get past 2. gg as before, I'll ask for another when I have more time. was very fun\n\tzoltar: Ok. Yeah, you can't expand, and I'm gonna sack my G3 for all 3 remaining yellows next move, freezing you out of the yellow as well, and then just slowly build until I have a doomsday machine and can sack Y3's two turns in a row to move in and blow up your double star. There's really nothing you could do. I'd like to go back and have you redo the move before I blew up the reboot system, but the system isn't sophisticated enough to allow it. \n\nHomeworlds Online (SDG# 15424)\nVariants: "Hard time"\nStarted: 2010.2.7, Ended: 2010.3.26\nParticipants: headphoned (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) headphoned: Homeworld R1 B2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) headphoned: Build G1 Headphoned\n\n5) Uglyfoot: Discover G1 Uglyfoot R1 Fort\n\n6) headphoned: Trade G1 Y1 Headphoned\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) headphoned: Build Y1 Headphoned\n\n9) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n10) headphoned: Build Y2 Headphoned\n\n11) Uglyfoot: Build Y2 Uglyfoot\n\n12) headphoned: Trade Y1 R1 Headphoned\n\n13) Uglyfoot: Trade Y2 R2 Uglyfoot\n\n14) headphoned: Build R2 Headphoned\n\n15) Uglyfoot: Move Y1 Uglyfoot Fort\n\n16) headphoned: Discover R2 Headphoned G3 Trof\n\n17) Uglyfoot: Build Y1 Fort\n\n18) headphoned: Trade Y1 B1 Headphoned\n\n19) Uglyfoot: Discover Y1 Fort B3 Mall\n\n20) headphoned: Move B1 Headphoned Trof\n\n21) Uglyfoot: Build Y1 Fort\n\n22) headphoned: Build G1 Headphoned\n\n23) Uglyfoot: Build Y2 Fort\n\n24) headphoned: Build Y3 Headphoned\n\n25) Uglyfoot: Move Y1 Fort Mall\n\n26) headphoned: Move Y2 Headphoned Trof\n\n27) Uglyfoot: Build Y3 Fort\n\n28) headphoned: Move Y2 Trof Fort\nCatastrophe Fort Yellow\n\n29) Uglyfoot: Build G1 Uglyfoot\n\n30) headphoned: Move G1 Headphoned Trof\n\n31) Uglyfoot: Build G2 Fort\n\n32) headphoned: Trade R2 Y2 Trof\n\n33) Uglyfoot: Move Y1 Mall Fort\n\n34) headphoned: Discover G1 Trof B1 Kwest\n\n35) Uglyfoot: Move G1 Fort Mall\n\n36) headphoned: Move B1 Trof Kwest\n\n37) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Fort\nBuild G2 Mall\nBuild G3 Uglyfoot\n\n38) headphoned: Build B1 Kwest\n\n39) Uglyfoot: Trade G2 B2 Mall\n\n\theadphoned: WTF. I didn't resign and I didn't get an e-mail that it was my turn. Goddamnit. Oh well. \n\tUglyfoot: Play again? Without hard time?\n\nHomeworlds Online (SDG# 15392)\nStarted: 2010.2.9, Ended: 2010.4.3\nParticipants: dethdukk (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B2 R1 G3\n\n2) dethdukk: Homeworld R1 B3 G3\n\tagentofchaos: Hi, enjoy the game. \n\tdethdukk: thanks, you too.\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) dethdukk: Build G1 Dethdukk\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) dethdukk: Trade G1 Y1 Dethdukk\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) dethdukk: Build G1 Dethdukk\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) dethdukk: Trade G1 B1 Dethdukk\n\n11) agentofchaos: Build R2 Agentofchaos\n\n12) dethdukk: Build B1 Dethdukk\n\n13) agentofchaos: Trade R2 Y2 Agentofchaos\n\n14) dethdukk: Discover B1 Dethdukk G2 Twin\n\n15) agentofchaos: Build R2 Agentofchaos\n\n16) dethdukk: Build B1 Dethdukk\n\n17) agentofchaos: Trade R2 G2 Agentofchaos\n\n18) dethdukk: Discover B1 Dethdukk R2 Bind\n\n19) agentofchaos: Build R2 Agentofchaos\n\n20) dethdukk: Sacrifice G3 Dethdukk\nBuild B2 Twin\nBuild B2 Bind\nBuild B3 Dethdukk\n\n21) agentofchaos: Discover Y2 Agentofchaos B3 Sinistrex\n\n22) dethdukk: Trade B3 G3 Dethdukk\n\n23) agentofchaos: Trade G3 B3 Agentofchaos\n\n24) dethdukk: Trade B2 R2 Twin\n\n25) agentofchaos: Move R1 Agentofchaos Sinistrex\n\n26) dethdukk: Build R3 Twin\n\n27) agentofchaos: Build R3 Agentofchaos\n\n28) dethdukk: Trade B2 Y2 Bind\n\n29) agentofchaos: Move R3 Agentofchaos Sinistrex\n\n30) dethdukk: Build B2 Dethdukk\n\n31) agentofchaos: Build Y1 Agentofchaos\n\n32) dethdukk: Trade B2 Y2 Dethdukk\n\n33) agentofchaos: Build G1 Agentofchaos\n\n34) dethdukk: Move Y1 Dethdukk Twin\n\n35) agentofchaos: Move G1 Agentofchaos Sinistrex\n\n36) dethdukk: Sacrifice G3 Dethdukk\nBuild Y3 Dethdukk\nBuild Y3 Bind\nBuild Y3 Twin\n\n37) agentofchaos: Build G1 Agentofchaos\n\n\nHomeworlds Online (SDG# 15486)\nVariants: "Hard time"\nStarted: 2010.2.10, Ended: 2010.2.19\nParticipants: jake007 (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld G2 R1 B3\n\n2) jake007: Homeworld G3 Y1 B3\n\n3) shmil1: Build B1 Shmil1\n\tjake007: To nechápu...\n\n4) jake007: Build B1 Jake007\n\tshmil1: koukni na pravidla :) http://mwe.cz/binaryhomeworldspravidla.html\n\tshmil1: v t&#283;ch p&#345;íkazech nahrazuješ barvy písmeny b=blue... a velikosti jsou 1-3. v každém koleš zvol typ p&#345;íkazu (build, move...) a pak to rozepiš...\n\n5) shmil1: Trade B3 Y3 Shmil1\n\n6) jake007: Trade B3 Y3 Jake007\n\n7) shmil1: Discover B1 Shmil1 G3 Olddays\n\n8) jake007: Build B1 Jake007\n\n9) shmil1: Build B2 Olddays\n\tjake007: Nic jiného mi nefunguje, nevim, co mám d&#283;lat.\n\n\tjake007: nevim co mam delat, jak se mam pohnout, nic nefunguje\n\tjake007: nevim co mam delat, jak se mam pohnout, nic nefunguje, kdyz se skusim pohnout, pise to, ze systems are not connected\n\tshmil1: jasne, protoze jsou spolu spojene jen ruzne velke hvezdy. tak holt fungujou cervi diry. ty mas malou a velkou, tak jsi spojen jen se stredni. a tu musis teprve objevit...\n\nHomeworlds Online (SDG# 15487)\nVariants: "Hard time"\nStarted: 2010.2.10, Ended: 2010.3.14\nParticipants: Kermit (S), jeep (N)\nWinner: jeep\n\n1) jeep: H R1 B2 G3\n\n2) Kermit: Homeworld Y1 B2 G3\n\n3) jeep: B G1 Jeep\n\n4) Kermit: Build G1 Kermit\n\n5) jeep: T G1 Y1 Jeep\n\n6) Kermit: Trade G1 B1 Kermit\n\n7) jeep: B Y1 Jeep\n\n8) Kermit: Discover B1 Kermit G3 Freebus\n\n9) jeep: B Y2 Jeep\n\n10) Kermit: B B1 Freebus\n\tjeep: Haha. I missed that this is a small universe. I really should have noticed immediately \n\n11) jeep: Discover Y1 Jeep B3 Moon\n\n12) Kermit: Build G1 Kermit\n\n\n\n13) jeep: Trade Y2 G2 Jeep\n\n14) Kermit: Trade G1 R1 Kermit\n\n15) jeep: Build Y2 Jeep\n\n16) Kermit: Move R1 Kermit Moon\n\n17) jeep: Discover Y1 Moon B2 Far\n\n\tKermit: me be toast ... can't build yellow can't trade for it\n\tjeep: I don't think you were that bad off... You could have traded your G3 for yellow...\n\nHomeworlds Online (SDG# 15301)\nStarted: 2010.2.11, Ended: 2010.2.17\nParticipants: TwoShort (S), umfpt (N)\nWinner: TwoShort\n\n1) umfpt: Homeworld B2 Y1 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) umfpt: Build G1 Umfpt\n\n4) TwoShort: Build G1 Twoshort\n\n5) umfpt: Discover G1 Umfpt Y3 Tola\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) umfpt: Build G1 Umfpt\n\n8) TwoShort: Build Y1 Twoshort\n\n9) umfpt: Trade G1 B1 Umfpt\n\n10) TwoShort: Build Y2 Twoshort\n\n11) umfpt: Build G1 Tola\n\n12) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n13) umfpt: Move G1 Tola Bluonia\n\n14) TwoShort: Discover Y1 Twoshort Y2 Yelly\n\n15) umfpt: Build G1 Bluonia\n\n16) TwoShort: Build G2 Twoshort\n\n17) umfpt:\n\nBuild G2 Tola\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n19) umfpt: Trade G1 R1 Bluonia\n\n20) TwoShort: Trade Y2 R2 Bluonia\n\n21) umfpt: Move B1 Umfpt Tola\n\n22) TwoShort: Attack R1 Bluonia\n\n23) umfpt: Move G2 Tola Yelly\n\n24) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Bluonia Tola\nMove Y3 Tola Umfpt\n\n25) umfpt: Build G1 Umfpt\n\n26) TwoShort: Sacrifice R2 Bluonia\nAttack G3 Umfpt\nAttack G1 Umfpt\n\tTwoShort: Thanks for the game.\n\n\nHomeworlds Online (SDG# 15507)\nStarted: 2010.2.17, Ended: 2010.3.30\nParticipants: dethdukk (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) dethdukk: Homeworld B1 Y2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) dethdukk: Build G1 Dethdukk\n\tdlwillson: Dood, that took FOREVER. I know it's hard to select homeworld colors, though. Especially when you're new... ;-)\n\n5) dlwillson: Discover G1 Dlwillson B1 Golly\n\n6) dethdukk: Trade G1 B1 Dethdukk\n\n7) dlwillson: Build G1 Dlwillson\n\n8) dethdukk: Build B2 Dethdukk\n\n9) dlwillson: Build G1 Golly\n\n10) dethdukk: Discover B1 Dethdukk R3 Bounds\n\n11) dlwillson: Trade G1 Y1 Golly\n\n12) dethdukk: Sacrifice G3 Dethdukk\nBuild B2 Bounds\nBuild B2 Bounds\nBuild B3 Dethdukk\n\n13) dlwillson: Trade G3 B3 Dlwillson\n\tdlwillson: wow!\n\n14) dethdukk: Trade B2 Y2 Bounds\n\n15) dlwillson: Discover B3 Dlwillson G1 Sprout\n\n16) dethdukk: Trade B1 R1 Bounds\n\n17) dlwillson: Build G2 Dlwillson\n\n18) dethdukk: Trade B3 G3 Dethdukk\n\tdlwillson: I can never decide whether to be annoyed or proud that you're beating me. Mumble...\n\n19) dlwillson: Build G2 Golly\n\n20) dethdukk: Build G2 Dethdukk\n\n21) dlwillson: Discover G1 Golly B3 Whuhoo\n\n22) dethdukk: Move G2 Dethdukk Bounds\n\n23) dlwillson: Build G3 Golly\n\n24) dethdukk: Build G3 Dethdukk\n\n25) dlwillson: Trade G2 R2 Dlwillson\n\n26) dethdukk: Sacrifice G3 Dethdukk\nBuild G2 Dethdukk\nBuild G3 Bounds\nBuild Y1 Bounds\n\n27) dlwillson: Sacrifice G3 Golly\nBuild G3 Dlwillson\nBuild B1 Sprout\nBuild R1 Dlwillson\n\n28) dethdukk: Sacrifice G3 Dethdukk\nBuild G3 Dethdukk\nBuild R1 Bounds\nBuild B2 Dethdukk\n\n29) dlwillson: Trade B3 Y3 Sprout\n\n30) dethdukk: Sacrifice B2 Dethdukk\nTrade B2 R2 Dethdukk\nTrade R1 Y1 Bounds\n\n31) dlwillson: Move Y3 Sprout Whuhoo\n\n32) dethdukk: Move Y2 Bounds Sprout\n\n33) dlwillson: Sacrifice G3 Dlwillson\nBuild Y3 Golly\nBuild Y3 Whuhoo\nBuild G3 Dlwillson\n\n34) dethdukk: Move Y1 Bounds Golly\n\n35) dlwillson: Sacrifice Y3 Golly\nMove Y1 Golly Whuhoo\nMove Y3 Whuhoo Dethdukk\nMove Y1 Whuhoo Dethdukk\n\n36) dethdukk: Sacrifice R1 Bounds\nAttack Y3 Dethdukk\n\tdlwillson: I think I got you, buddy.\n\n37) dlwillson: S G1 Whuhoo\nB Y3 Dethdukk\nC Dethdukk Yellow\n\n\nHomeworlds Online (SDG# 15156)\nStarted: 2010.2.20, Ended: 2010.2.24\nParticipants: mathochist (S), ts52 (N)\nWinner: mathochist\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) mathochist: Homeworld Y1 B3 G3\n\tts52: Have a good game.\n\n3) ts52: B G1 Ts52\n\n4) mathochist: B G1 Mathochist\n\n5) ts52: D G1 Ts52 B3 Gonzo\n\n6) mathochist: Trade G1 Y1 Mathochist\n\n7) ts52: Build G1 Ts52\n\n8) mathochist: Build Y2 Mathochist\n\n9) ts52: Trade G1 R1 Ts52\n\n10) mathochist: Build G1 Mathochist\n\n11) ts52: Build R1 Ts52\n\n12) mathochist: Discover Y2 Mathochist B2 Kermit\n\n13) ts52: Move R1 Ts52 Gonzo\n\n14) mathochist: B Y2 Mathochist\n\n15) ts52: Build R1 Ts52\n\n16) mathochist: Move G1 Mathochist Kermit\n\n17) ts52: Build R2 Ts52\n\n18) mathochist: B Y2 Kermit\n\n19) ts52: Discover R2 Ts52 Y3 Bigbird\n\n20) mathochist: B Y3 Kermit\n\n21) ts52: B R2 Ts52\n\n22) mathochist: Trade Y3 R3 Kermit\n\n23) ts52: Discover R2 Ts52 Y3 Zoe\n\n24) mathochist: Build Y3 Kermit\n\n25) ts52: Trade R1 B1 Ts52\n\n26) mathochist: Build R1 Kermit\n\tts52: I don't think this one's going to well for me. Should have seen you getting all the yellow. D'oh!\n\tmathochist: I've only played this game a handful of times, but I do seem to be picking up a few tricks. :) But I still have to figure out what to do with it now that I have it all. \n\n27) ts52: Build R2 Gonzo\n\n28) mathochist: Move R3 Kermit Bigbird\n\n29) ts52: Build R3 Ts52\n\n30) mathochist: Build R3 Kermit\n\n31) ts52: Move B1 Ts52 Zoe\n\n32) mathochist: M G1 Kermit Bigbird\n\n33) ts52: Attack G1 Bigbird\n\n34) mathochist: A R2 Bigbird\n\tmathochist: Huh that was weird, thought I'd made another move\n\n35) ts52: Move G1 Bigbird Ts52\n\n36) mathochist: M Y2 Kermit Bigbird\n\n37) ts52: Discover R3 Ts52 G3 Oscar\n\n38) mathochist: M R3 Kermit Zoe\n\n39) ts52: Pass\n\n40) mathochist: Attack R2 Zoe\n\n\tts52: yeah, I don't see a way out of this unless you make some serious goofs. But I'd love to play another if you're up for it.\n\tmathochist: This one was fun, anyway :) I started a rematch already.\n\nHomeworlds Online (SDG# 15546)\nStarted: 2010.2.20, Ended: 2010.4.3\nParticipants: dethdukk (S), mathochist (N)\nWinner: mathochist\n\n1) mathochist: Homeworld R1 B2 G3\n\n2) dethdukk: Homeworld B1 Y3 G3\n\tdethdukk: sorry that took a while, I lost internet for 5+ days\n\n3) mathochist: Build G1 Mathochist\n\tmathochist: no problem.\n\n4) dethdukk: Build G1 Dethdukk\n\n5) mathochist: T G1 Y1 Mathochist\n\n6) dethdukk: Build G1 Dethdukk\n\n7) mathochist: Build Y1 Mathochist\n\n8) dethdukk: Trade G1 Y1 Dethdukk\n\n9) mathochist: Build Y2 Mathochist\n\n10) dethdukk: Build Y2 Dethdukk\n\n11) mathochist: Discover Y1 Mathochist G3 Dude\n\n12) dethdukk: Trade G1 R1 Dethdukk\n\n13) mathochist: Sacrifice Y2 Mathochist\nDiscover Y1 Dude G2 Babe\nMove Y1 Babe Dethdukk\nCatastrophe Dethdukk Yellow\n\n14) dethdukk: Build R1 Dethdukk\n\n15) mathochist: Build G1 Mathochist\n\n16) dethdukk: Build R2 Dethdukk\n\n17) mathochist: Build Y1 Mathochist\n\n18) dethdukk: Trade R2 Y2 Dethdukk\n\n19) mathochist: Discover G1 Mathochist Y3 Wishingstar\n\n20) dethdukk: Move R1 Dethdukk Wishingstar\n\n21) mathochist: Move G1 Wishingstar Mathochist\n\n\nHomeworlds Online (SDG# 15587)\nVariants: "Hard time"\nStarted: 2010.2.22, Ended: 2010.3.22\nParticipants: mneme (S), wyons (N)\nWinner: mneme\n\n1) wyons: Homeworld B1 R3 G3\n\n2) mneme: Homeworld R1 G2 B3\n\n3) wyons: Build G1 Wyons\n\n4) mneme: Build B1 Mneme\n\n5) wyons: Trade G1 B1 Wyons\n\n6) mneme: Build B2 Mneme\n\twyons: naaah , .. need to think!\n\tmneme: Understandable.\r\n\n\n7) wyons: Build B2 Wyons\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) wyons: Trade B1 Y1 Wyons\n\n10) mneme: Discover B2 Mneme G3 Alpha\n\n11) wyons: Discover B2 Wyons G2 Bonanza\n\n12) mneme: Build Y1 Mneme\n\n13) wyons: Build G1 Wyons\n\n14) mneme: Build B1 Alpha\n\n15) wyons: Trade G1 R1 Wyons\n\n16) mneme: Trade B2 G2 Alpha\n\n17) wyons: Build R1 Wyons\n\n18) mneme: Build B2 Alpha\n\n19) wyons: Move R1 Wyons Bonanza\n\n20) mneme: Trade B2 R2 Alpha\n\n21) wyons: Build R2 Bonanza\n\n22) mneme: Build B2 Mneme\n\n23) wyons: Trade R2 Y2 Bonanza\n\n24) mneme: Discover B2 Mneme Y3 Beta\n\n25) wyons: Discover Y2 Bonanza B3 Zardoz\n\n26) mneme: Sacrifice G2 Alpha\nBuild B2 Alpha\nBuild B3 Mneme\n\n27) wyons: Build B3 Bonanza\n\n28) mneme: Sacrifice B1 Alpha\nTrade B3 G3 Mneme\n\n29) wyons: Sacrifice Y1 Wyons\nDiscover B2 Bonanza B3 Ypres\n\n30) mneme: Build R2 Alpha\n\n31) wyons: Trade B2 R2 Ypres\n\n32) mneme: Trade R2 Y2 Alpha\n\n33) wyons: Build G1 Wyons\n\n34) mneme: Move G3 Mneme Ypres\n\n\twyons: I'm out on this, sorry but you are a clear winner. thanks again.\n\tmneme: It's fair enough--you were in a bad place. GG!\r\n\n\nHomeworlds Online (SDG# 15600)\nVariants: "Hard time"\nStarted: 2010.2.23, Ended: 2010.5.7\nParticipants: stoneaxe (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld B1 G3 Y3\n\n2) stoneaxe: Homeworld B1 R2 G3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) stoneaxe: Build G1 Stoneaxe\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\tstoneaxe: Hello and good luck. We're off to an interesting start so far.\n\n6) stoneaxe: Trade G1 Y1 Stoneaxe\n\n7) Subhan64: Build G1 Subhan64\n\n8) stoneaxe: Build G1 Stoneaxe\n\n9) Subhan64: Trade G1 B1 Subhan64\n\n10) stoneaxe: Trade G1 R1 Stoneaxe\n\n11) Subhan64: Build B2 Subhan64\n\n12) stoneaxe: Build R1 Stoneaxe\n\n13) Subhan64: Trade B2 R2 Subhan64\n\n14) stoneaxe: Discover R1 Stoneaxe Y3 Yps\n\n15) Subhan64: Build B2 Subhan64\n\n16) stoneaxe: Build G1 Stoneaxe\n\n17) Subhan64: Trade B2 G2 Subhan64\n\n18) stoneaxe: Trade G3 B3 Stoneaxe\n\n19) Subhan64: Discover B1 Subhan64 R2 Harlans_world\n\n20) stoneaxe: Build G1 Stoneaxe\n\n21) Subhan64: Sacrifice G2 Subhan64\nBuild R1 Subhan64\nBuild R3 Subhan64\n\n22) stoneaxe: Sacrifice G1 Stoneaxe\nBuild R3 Yps\n\n23) Subhan64: Move R1 Subhan64 Harlans_world\n\n24) stoneaxe: Discover G1 Stoneaxe R3 Raz\n\n25) Subhan64: Build Y1 Subhan64\n\n26) stoneaxe: Move R3 Yps Harlans_world\n\n27) Subhan64: Move R2 Subhan64 Harlans_world\nCatastrophe Harlans_world Red\n\n28) stoneaxe: Trade B3 G3 Stoneaxe\n\n29) Subhan64: Build R1 Subhan64\n\n30) stoneaxe: Build G1 Stoneaxe\n\n31) Subhan64: Discover Y3 Subhan64 Y2 Sirius7\n\n32) stoneaxe: Build G2 Raz\n\n33) Subhan64: Move Y3 Sirius7 Raz\n\n34) stoneaxe: Move G1 Stoneaxe Yps\n\n35) Subhan64: Attack G2 Raz\n\n36) stoneaxe: Build G2 Stoneaxe\n\n37) Subhan64: Sacrifice G2 Raz\nBuild Y1 Subhan64\nBuild Y2 Raz\n\n\n38) stoneaxe: Build R2 Yps\n\n39) Subhan64: Discover R1 Subhan64 Y2 Dont_blink\n\n40) stoneaxe: Sacrifice G3 Stoneaxe\nBuild G2 Raz\nBuild G2 Yps\nBuild G3 Stoneaxe\n\n41) Subhan64: Build G3 Subhan64\n\n\nHomeworlds Online (SDG# 15547)\nVariants: "Hard time"\nStarted: 2010.2.24, Ended: 2010.3.16\nParticipants: dlwillson (S), shmil1 (N)\nWinner: dlwillson\n\n1) shmil1: Homeworld B2 Y1 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\n3) shmil1: Build G1 Shmil1\n\tdlwillson: Thanks for taking my challenge. Why two games?\n\n4) dlwillson: Build G1 Dlwillson\n\n5) shmil1: Discover G1 Shmil1 B3 Modry\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) shmil1: Build G1 Modry\n\n8) dlwillson: Build Y1 Dlwillson\n\n9) shmil1: Trade G1 R1 Modry\n\n10) dlwillson: Build Y2 Dlwillson\n\n11) shmil1: Build G1 Modry\n\n12) dlwillson: Trade Y2 R2 Dlwillson\n\n13) shmil1: Build R1 Modry\n\n14) dlwillson: Build Y2 Dlwillson\n\n15) shmil1: Build G1 Shmil1\n\n16) dlwillson: Build G2 Dlwillson\n\n17) shmil1: Build G2 Shmil1\n\n18) dlwillson: Sacrifice Y2 Dlwillson\nDiscover R2 Dlwillson Y2 Temp\nMove R2 Temp Modry\n\n19) shmil1: Trade G2 R2 Shmil1\n\n20) dlwillson: Sacrifice G2 Dlwillson\nBuild R2 Modry\nBuild G2 Dlwillson\nCat Modry Red\n\n21) shmil1: Build G2 Modry\n\n22) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dlwillson\nBuild G2 Dlwillson\nBuild G3 Dlwillson\n\n23) shmil1: Trade G2 Y2 Modry\n\n24) dlwillson: Discover G2 Dlwillson B2 Dingo\n\n25) shmil1: Move G1 Modry Dingo\n\n26) dlwillson: Trade G2 R2 Dingo\n\n27) shmil1: Sacrifice G3 Shmil1\nBuild G2 Modry\nBuild G2 Modry\nBuild G3 Shmil1\n\n28) dlwillson: Sacrifice Y2 Dlwillson\nMove G2 Dlwillson Dingo\n\nMove G2 Dingo Modry\nCatastrophe Modry Green\n\n29) shmil1: Move G1 Shmil1 Modry\n\n30) dlwillson: Move Y1 Dlwillson Dingo\n\n31) shmil1: Build R1 Shmil1\n\n32) dlwillson: Build Y2 Dlwillson\n\n33) shmil1: Build G1 Dingo\n\n34) dlwillson: Discover Y1 Dlwillson B2 Sparkle\n\n35) shmil1: Sacrifice Y2 Modry\nMove G1 Dingo Dlwillson\nMove G1 Dingo Dlwillson\n\n36) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dingo\nBuild Y2 Sparkle\nBuild Y3 Dlwillson\n\n37) shmil1: Trade G1 R1 Dlwillson\n\n38) dlwillson: Attack R1 Dlwillson\n\n39) shmil1: Attack R1 Dlwillson\n\n40) dlwillson: Sacrifice R2 Dingo\nAttack R1 Dlwillson\nAttack G1 Dlwillson\n\n41) shmil1: Build R2 Shmil1\n\n42) dlwillson: Trade Y3 G3 Dlwillson\n\n43) shmil1: Trade G3 Y3 Shmil1\n\n44) dlwillson: Build Y3 Dlwillson\n\n45) shmil1: Move R2 Shmil1 Modry\n\n46) dlwillson: Move Y3 Dlwillson Dingo\n\n47) shmil1: Sacrifice Y3 Shmil1\nMove R2 Modry Dingo\nMove R1 Shmil1 Modry\nMove R1 Modry Sparkle\n\n48) dlwillson: Sacrifice Y2 Dingo\nMove Y3 Dingo Modry\nMove Y3 Modry Shmil1\n\n\nHomeworlds Online (SDG# 15500)\nStarted: 2010.2.24, Ended: 2010.3.2\nParticipants: shmil1 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) shmil1: Homeworld B2 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) shmil1: Build G1 Shmil1\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) shmil1: Discover G1 Shmil1 R3 Rudy\n\n7) TwoShort: Build G1 Twoshort\n\n8) shmil1: Build G1 Rudy\n\n9) TwoShort: Build G2 Twoshort\n\n10) shmil1: Build G2 Shmil1\n\n11) TwoShort: Trade G2 Y2 Twoshort\n\n12) shmil1: Build G2 Shmil1\n\n13) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n14) shmil1: Trade G2 B2 Shmil1\n\n15) TwoShort: Build Y1 Twoshort\n\n16) shmil1: Build G2 Rudy\n\n17) TwoShort: Discover Y1 Twoshort Y2 Yolonda\n\n18) shmil1: Move B2 Shmil1 Rudy\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluonia\nBuild Y3 Bluonia\nBuild Y3 Twoshort\n\n20) shmil1: Trade G3 Y3 Shmil1\n\n21) TwoShort: Discover Y2 Bluonia G3 Grogar\n\n22) shmil1: Build G2 Shmil1\n\n23) TwoShort: Sacrifice Y3 Bluonia\nMove Y1 Yolonda Grogar\nMove Y1 Grogar Shmil1\nMove Y2 Grogar Shmil1\nCatastrophe Shmil1 Yellow\n\n24) shmil1: Trade G2 R2 Shmil1\n\n25) TwoShort: Trade Y2 R2 Twoshort\n\n26) shmil1: Trade G2 Y2 Rudy\n\n27) TwoShort: Move Y3 Twoshort Shmil1\n\n28) shmil1: Sacrifice Y2 Rudy\nMove G1 Rudy Shmil1\nMove G1 Rudy Shmil1\n\n29) TwoShort: Sacrifice R2 Twoshort\nAttack R2 Shmil1\nAttack G2 Shmil1\n\n30) shmil1: Sacrifice B2 Rudy\nTrade G1 R1 Shmil1\nTrade G1 Y1 Shmil1\n\n31) TwoShort: Sacrifice R2 Shmil1\nAttack R1 Shmil1\nAttack Y1 Shmil1\n\tTwoShort: Thanks for the game!\n\n\nHomeworlds Online (SDG# 15398)\nStarted: 2010.2.24, Ended: 2010.3.26\nParticipants: shmil1 (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld G1 R3 B3\n\n2) shmil1: Homeworld B2 Y1 G3\n\tZackStack: Hi shmil! You should have mentioned you are a busy surgeon! My wife is a Physician Assisstant in a surgical department... I won't worry about time in this one :-)\n\n3) ZackStack: Build B1 Zackstack\n\n4) shmil1: Build G1 Shmil1\n\n5) ZackStack: Build B1 Zackstack\n\n6) shmil1: Discover G1 Shmil1 B3 Polar\n\n7) ZackStack: Trade B1 Y1 Zackstack\n\n8) shmil1: Build G1 Polar\n\n9) ZackStack: Discover B1 Zackstack Y2 Sunburst\n\n10) shmil1: Build G2 Polar\n\n11) ZackStack: Discover B1 Sunburst G3 Oaktree\n\n12) shmil1: Build G2 Shmil1\n\n13) ZackStack: Build B1 Oaktree\n\n14) shmil1: Move G2 Shmil1 Oaktree\n\n15) ZackStack: Trade B1 Y1 Oaktree\n\n16) shmil1: Build G2 Shmil1\n\n17) ZackStack: Build Y2 Oaktree\n\n18) shmil1: Trade G2 Y2 Polar\n\n19) ZackStack: Trade Y1 R1 Oaktree\n\n20) shmil1: Sacrifice Y2 Polar\nDiscover G1 Polar R2 Rudy\nMove G2 Shmil1 Oaktree\n\n21) ZackStack: Move Y2 Oaktree Rudy\n\n22) shmil1: Sacrifice G2 Oaktree\nBuild G2 Rudy\nBuild G2 Rudy\n\n23) ZackStack: Attack G2 Rudy\n\n24) shmil1: Attack Y2 Rudy\n\n25) ZackStack: Build G3 Rudy\nCatastrophe Rudy Green\n\n26) shmil1: Sacrifice G2 Oaktree\nBuild G1 Polar\nBuild G2 Polar\n\n27) ZackStack: Build B1 Oaktree\n\n28) shmil1: Build G2 Shmil1\n\n29) ZackStack: Build B1 Zackstack\n\n30) shmil1: Trade G1 Y1 Polar\n\n31) ZackStack: Build B2 Oaktree\n\n32) shmil1: Sacrifice Y2 Rudy\nDiscover G2 Polar Y2 Slunce\nMove G1 Polar Slunce\n\n33) ZackStack: Trade B2 Y2 Oaktree\n\n34) shmil1: Trade G2 R2 Shmil1\n\n35) ZackStack: Build B2 Oaktree\n\n36) shmil1: Sacrifice G2 Slunce\nBuild G1 Slunce\nBuild G2 Slunce\n\n37) ZackStack: Build Y2 Oaktree\n\n38) shmil1: Move G1 Slunce Zackstack\n\n39) ZackStack: Attack G1 Zackstack\n\n40) shmil1: Move G1 Slunce Zackstack\n\tshmil1: so, who will be quicker?\n\tZackStack: That will depend on what we're trying to do I suppose ;-)\n\n41) ZackStack: Discover G1 Zackstack B2 Puddle\n\n42) shmil1: Sacrifice G2 Slunce\nBuild G2 Zackstack\nBuild G2 Zackstack\nCatastrophe Zackstack Green\n\n43) ZackStack: Sacrifice Y2 Oaktree\nMove B1 Oaktree Shmil1\nMove B1 Oaktree Shmil1\n\n44) shmil1: Move R2 Shmil1 Zackstack\n\n45) ZackStack: Attack R2 Zackstack\n\n46) shmil1: Build G1 Shmil1\n\tZackStack: You really need to stop sending your ships over just to watch them get captured at red planets!\n\n47) ZackStack: Build B3 Oaktree\n\n48) shmil1: Move Y1 Polar Shmil1\n\n49) ZackStack: Sacrifice R2 Zackstack\nAttack Y1 Shmil1\nAttack G1 Shmil1\n\n50) shmil1: Trade G3 R3 Shmil1\n\n51) ZackStack: Build Y2 Shmil1\n\n52) shmil1: Attack G1 Shmil1\n\n53) ZackStack: Move B2 Oaktree Shmil1\nCatastrophe Shmil1 Blue\n\n54) shmil1: Build G1 Shmil1\n\n55) ZackStack: Move Y1 Zackstack Shmil1\nCatastrophe Shmil1 Yellow\n\n\tZackStack: Thanks for the game Shmil! You are getting better. But you really need to stop giving ships to your opponent!\n\nHomeworlds Online (SDG# 15603)\nVariants: "Unrated"\nStarted: 2010.2.24, Ended: 2010.3.4\nParticipants: ZackStack (S), shmil1 (N)\nWinner: ZackStack\n\n1) shmil1: Homeworld B2 Y1 G3\n\n2) ZackStack: Homeworld Y1 G3 B3\n\tZackStack: Ahhh... Yellow stars make such friendly targets I think I'll make one too :-)\n\n3) shmil1: Build G1 Shmil1\n\n4) ZackStack: Build B1 Zackstack\n\n5) shmil1: Build G1 Shmil1\n\n6) ZackStack: Discover B1 Zackstack B2 Bluemoon\n\n7) shmil1: Discover G1 Shmil1 B3 Modry\n\n8) ZackStack: Trade B1 G1 Bluemoon\n\n9) shmil1: Build G2 Modry\n\n10) ZackStack: Build B1 Zackstack\n\n11) shmil1: Trade G2 Y2 Modry\n\n12) ZackStack: Build G2 Bluemoon\n\n13) shmil1: Build G2 Modry\n\n14) ZackStack: Trade G2 Y2 Bluemoon\n\n15) shmil1: Move G2 Modry Bluemoon\n\n16) ZackStack: Trade B1 R1 Zackstack\n\n17) shmil1: Trade G2 R2 Bluemoon\n\n18) ZackStack: Sacrifice R1 Zackstack\nAttack R2 Bluemoon\n\n19) shmil1: Sacrifice Y2 Modry\nMove G1 Modry Bluemoon\nMove G1 Bluemoon Zackstack\n\tZackStack: Thanks schmil! It can be kind of hard to go on the attack in this game...\n\n20) ZackStack: Build B1 Zackstack\n\n21) shmil1: Sacrifice G3 Shmil1\nBuild G2 Zackstack\nBuild G2 Zackstack\nBuild G2 Zackstack\nCatastrophe Zackstack Green\n\n22) ZackStack: Sacrifice Y2 Bluemoon\nDiscover G1 Bluemoon Y3 Passingthrough\nMove G1 Passingthrough Shmil1\n\tZackStack: I thought you might try that. Its always dangerous to leave yourself without a defensive large at your Homeworld!\n\n23) shmil1: Trade G1 R1 Shmil1\n\n24) ZackStack: Sacrifice R2 Bluemoon\nAttack R1 Shmil1\nPass\n\tZackStack: Good work on your attack to destroy one of my stars. It might have been a good idea to wait until your defenses were better able to handle loosing that many ships... \n\n\nHomeworlds Online (SDG# 15612)\nVariants: "Hard time"\nStarted: 2010.2.24, Ended: 2010.3.7\nParticipants: shmil1 (S), dlwillson (N)\nWinner: shmil1\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) shmil1: Homeworld B2 Y3 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) shmil1: Build G1 Shmil1\n\n5) dlwillson: Discover G1 Dlwillson B1 Lucky\n\n6) shmil1: Trade G1 R1 Shmil1\n\n7) dlwillson: Build G1 Lucky\n\n8) shmil1: Move R1 Shmil1 Lucky\n\n9) dlwillson: Build G1 Dlwillson\n\n10) shmil1: Attack G1 Lucky\n\n11) dlwillson: Build G2 Dlwillson\n\n12) shmil1: Build G2 Shmil1\n\n13) dlwillson: Discover G2 Dlwillson Y1 Rich\n\n14) shmil1: Trade G2 R2 Shmil1\n\tdlwillson: I think I've got you in a few moves. Maybe not, though... How are you doing? Do you ever play Dethdukk? He's my son. \n\n15) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Lucky\nBuild G2 Rich\nBuild G3 Dlwillson\n\n16) shmil1: Build G3 Shmil1\n\n17) dlwillson: Move G2 Rich Shmil1\n\n18) shmil1: Trade G3 Y3 Shmil1\n\n19) dlwillson: Sacrifice G2 Lucky\nBuild G2 Shmil1\nBuild G3 Lucky\n\n20) shmil1: Sacrifice Y3 Shmil1\nMove G3 Shmil1 Rich\nMove G3 Rich Dlwillson\nMove G1 Lucky Dlwillson\nCatastrophe Dlwillson Green\n\tdlwillson: Good game. I forgot the universe was small. OOPS!\n\n\nHomeworlds Online (SDG# 15308)\nStarted: 2010.2.24, Ended: 2010.8.24\nParticipants: mathochist (S), zoltar (W), shmil1 (N), pedrop (E)\nWinner: zoltar\n\n1) shmil1: Homeworld B2 Y1 G3\n\n2) pedrop: Homeworld Y1 B3 G3\n\n3) mathochist: Homeworld B1 G2 Y3\n\n4) zoltar: Homeworld R3 B2 G3\n\n5) shmil1: Build G1 Shmil1\n\tmathochist: have fun all!\n\n6) pedrop: Build G1 Pedrop\n\n7) mathochist: Build Y1 Mathochist\n\n8) zoltar: Build G1 Zoltar\n\n9) shmil1: Build G1 Shmil1\n\n10) pedrop: Build G1 Pedrop\n\n11) mathochist: Trade Y3 G3 Mathochist\n\tpedrop: The same to You!\n\n12) zoltar: Build G2 Zoltar\n\n13) shmil1: Discover G1 Shmil1 R3 Rudy\n\n14) pedrop: Trade G1 Y1 Pedrop\n\n15) mathochist: Build Y1 Mathochist\n\n16) zoltar: Trade G2 Y2 Zoltar\n\tpedrop: (Czy&#380;by Polak? )\n\tmathochist: huh?\n\n17) shmil1: Build G1 Rudy\n\n18) pedrop: Discover G1 Pedrop B2 Begining\n\n19) mathochist: Discover Y1 Mathochist G3 Tofu\n\n20) zoltar: Build G2 Zoltar\n\n21) shmil1: Build G2 Shmil1\n\n22) pedrop: Build G2 Pedrop\n\n23) mathochist: Build G2 Mathochist\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y2 Zoltar\n\n25) shmil1: Trade G2 Y2 Shmil1\n\n26) pedrop: Sacrifice G3 Pedrop\nBuild G2 Begining\nBuild G3 Pedrop\nBuild Y2 Pedrop\n\n27) mathochist: Sacrifice G3 Mathochist\nBuild Y3 Tofu\nBuild Y3 Mathochist\nBuild Y3 Mathochist\n\n28) zoltar: Sacrifice Y2 Zoltar\nDiscover Y2 Zoltar B1 Blueberry\nMove G2 Zoltar Blueberry\n\n29) shmil1: Move Y2 Shmil1 Rudy\n\n30) pedrop: Move Y2 Pedrop Begining\n\n31) mathochist: Sacrifice Y1 Mathochist\nDiscover G2 Mathochist G3 Donut\n\n32) zoltar: Pass\n\n33) shmil1: Trade G1 R1 Shmil1\n\n34) pedrop: Trade G1 B1 Begining\n\n35) mathochist: Trade Y3 R3 Mathochist\n\n36) zoltar: Build G1 Blueberry\n\n37) shmil1: Move G1 Rudy Begining\n\n38) pedrop: Trade G2 R2 Begining\n\n39) mathochist: Build R1 Mathochist\n\n40) zoltar: Trade G2 R2 Blueberry\n\n41) shmil1: Sacrifice Y2 Rudy\nMove G1 Rudy Begining\nMove G1 Begining Pedrop\n\n42) pedrop: Trade G2 R2 Pedrop\n\n43) mathochist: B Y1 Mathochist\n\n44) zoltar: Build Y2 Blueberry\n\n45) shmil1: Build G1 Pedrop\n\tmathochist: Sorry! I actually fell asleep on this last night. :( still trying to get causght all the way up.\n\n46) pedrop: Discover G3 Pedrop R2 Dont\n\n47) mathochist: S Y3 Tofu\nM R3 Mathochist Tofu\nM R3 Tofu Dont\nM R3 Dont Pedrop\n\n48) zoltar: Discover Y2 Blueberry B3 Bluemoon\n\n49) shmil1: Trade G1 R1 Pedrop\n\n50) pedrop: Sacrifice G3 Dont\nBuild Y2 Begining\nBuild Y3 Pedrop\nBuild R1 Pedrop\nCatastrophe Pedrop Red\n\n51) mathochist: B Y3 Tofu\n\n52) zoltar: Build Y3 Blueberry\n\n53) shmil1: Build G1 Begining\n\n54) pedrop: Trade Y1 R1 Pedrop\n\n55) mathochist: Trade Y1 B1 Mathochist\n\tmathochist: Pedrop? You there?\n\tpedrop: Sorry... been too busy lately:/ And this game requires much thinking... ;) I'm making my move now.\n\n56) zoltar: Build G2 Blueberry\n\n57) shmil1: Trade G1 Y1 Begining\n\n58) pedrop: Trade Y2 G2 Begining\n\n59) mathochist: Move B1 Mathochist Tofu\n\n60) zoltar: Discover G2 Blueberry Y3 Goldmine\n\n61) shmil1: Move Y1 Begining Pedrop\n\n62) pedrop: Trade Y3 G3 Pedrop\n\n63) mathochist: Build B1 Tofu\n\n64) zoltar: Sacrifice G3 Zoltar\nBuild G1 Blueberry\nBuild G2 Goldmine\nBuild G3 Zoltar\n\n65) shmil1: Build Y1 Pedrop\n\n66) pedrop: Sacrifice R2 Begining\nAttack Y1N Pedrop\nAttack Y1N Pedrop\n\n67) mathochist: Sacrifice Y3 Tofu\nMove Y1 Tofu Begining\nMove Y1 Begining Pedrop\nMove B1 Tofu Begining\nCatastrophe Pedrop Y\n\n68) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Bluemoon\nBuild Y1 Bluemoon\n\n69) shmil1: Build R1 Shmil1\n\n70) pedrop: T B1 R1 Begining\n\n71) mathochist: Build Y1 Mathochist\n\n72) zoltar: Sacrifice Y2 Blueberry\nMove Y1 Bluemoon Mathochist\nMove Y1 Bluemoon Mathochist\nCatastrophe Mathochist Y\n\n73) shmil1: Sacrifice R1 Shmil1\nAttack R1E Pedrop\n\n74) pedrop: A B1S Begining\n\n75) mathochist: Trade B1 Y1 Tofu\n\n76) zoltar: Sacrifice Y2 Bluemoon\nMove G1 Blueberry Pedrop\nMove G1 Blueberry Pedrop\nCatastrophe Pedrop G\n\n77) shmil1: Trade R1 G1 Pedrop\n\n78) mathochist: Build R1 Mathochist\n\n79) zoltar: Move R2 Blueberry Begining\n\tmathochist: Dayamn!\n\n80) shmil1: Build G1 Pedrop\n\tzoltar: Yeah, I decided to go wild and blow lots of stuff up.\n\n81) mathochist: Trade R1 G1 Mathochist\n\n82) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\n\n83) shmil1: Trade G1 Y1 Pedrop\n\n84) mathochist: Build R1 Mathochist\n\n85) zoltar: Attack Y2E Begining\n\n86) shmil1: Build G1 Begining\n\n87) mathochist: Build Y1 Tofu\n\n88) zoltar: Sacrifice Y1 Zoltar\nMove G3 Zoltar Blueberry\n\n89) shmil1: Trade G1 Y1 Begining\n\n90) mathochist: Move Y1 Tofu Mathochist\n\n91) zoltar: Attack G1N Begining\n\n92) shmil1: Discover Y1 Begining G1 Malazelena\n\n93) mathochist: B Y2 Mathochist\n\n94) zoltar: Discover G1 Begining Y3 Hummus\n\n95) shmil1: Build Y2 Malazelena\n\n96) mathochist: Discover G1 Mathochist Y3 Curry\n\n97) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Blueberry\nBuild Y3 Begining\n\n98) shmil1: Build R1 Shmil1\n\n99) mathochist: Trade R1 B1 Mathochist\n\n100) zoltar: Move Y2 Begining Curry\n\n101) shmil1: Move R1 Shmil1 Pedrop\n\n102) mathochist: B R1 Mathochist\n\n103) zoltar: Sacrifice G1 Hummus\nBuild Y3 Zoltar\n\n104) shmil1: Sacrifice Y2 Malazelena\nMove G1 Pedrop Mathochist\nMove Y1 Pedrop Mathochist\n\n105) mathochist: Attack Y1N Mathochist\n\n106) zoltar: Sacrifice Y2 Blueberry\nMove G2 Goldmine Mathochist\nMove Y2 Curry Mathochist\nCatastrophe Mathochist Y\n\n107) shmil1: Build G1 Mathochist\nCatastrophe Mathochist Green\n\n108) mathochist: Move G1 Curry Mathochist\n\n109) zoltar: Attack R1E Begining\n\n110) shmil1: Build Y1 Malazelena\n\n111) mathochist: Build Y1 Tofu\n\n112) zoltar: Move Y2 Zoltar Mathochist\n\n113) shmil1: Move Y1 Malazelena Pedrop\n\n114) zoltar: Attack G2E Begining\n\tmathochist: Ouch! Ganging up on me, no fair :P\n\n115) shmil1: Build Y2 Malazelena\n\n116) zoltar: Build Y2 Blueberry\n\n117) shmil1: Move R1 Pedrop Malazelena\n\n118) zoltar: Move R2 Begining Donut\n\n119) shmil1: Sacrifice Y2 Malazelena\nMove R1 Malazelena Zoltar\nMove Y1 Malazelena Zoltar\n\n120) zoltar: Sacrifice G1 Zoltar\nBuild R2 Donut\n\n121) shmil1: Sacrifice G3 Shmil1\nBuild R2 Zoltar\nBuild R2 Zoltar\nBuild Y2 Zoltar\nCatastrophe Zoltar Red\n\n122) zoltar: Sacrifice Y2 Blueberry\nMove Y3 Zoltar Pedrop\nMove Y3 Pedrop Shmil1\n\n123) shmil1: Trade Y2 G2 Zoltar\n\n124) zoltar: Sacrifice R2 Donut\nAttack G2N Zoltar\nAttack R1N Shmil1\n\n\nHomeworlds Online (SDG# 15619)\nStarted: 2010.2.24, Ended: 2010.5.2\nParticipants: mathochist (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) mathochist: Homeworld B1 G3 B3 *\n\tts52: Lets try this again. :)\n\n3) ts52: Build G1 Ts52\n\n4) mathochist: Build B1 Mathochist\n\n5) ts52: T G3 B3 Ts52\n\n6) mathochist: Trade B3 Y3 Mathochist\n\n7) ts52: Build B2 Ts52\n\n8) mathochist: Build B2 Mathochist\n\n9) ts52: Trade B3 G3 Ts52\n\n10) mathochist: D B1 Mathochist G2 Frito\n\n11) ts52: Discover B2 Ts52 G3 Kermit\n\n12) mathochist: Build Y1 Mathochist\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) mathochist: Move Y1 Mathochist Frito\n\n15) ts52: Move Y1 Ts52 Kermit\n\n16) mathochist: T B2 R2 Mathochist\n\n17) ts52: Build G1 Ts52\n\n18) mathochist: Build B2 Frito\n\n19) ts52: T G1 R1 Ts52\n\n20) mathochist: Trade B1 R1 Frito\n\n21) ts52: Build G1 Ts52\n\n22) mathochist: D Y1 Frito B3 Dorito\n\n23) ts52: Discover G1 Ts52 Y3 Bigbird\n\n24) mathochist: B B1 Frito\n\n25) ts52: Build G1 Ts52\n\n26) mathochist: Trade B1 Y1 Frito\n\n27) ts52: Build Y2 Kermit\n\n28) mathochist: Build Y2 Frito\n\n29) ts52: Discover Y2 Kermit G2 Robin\n\n30) mathochist: B Y3 Mathochist\n\n31) ts52: Sacrifice G1 Bigbird\nBuild Y3 Kermit\n\n32) mathochist: M Y3 Mathochist Robin\n\n33) ts52: Move Y2 Robin Dorito\n\n34) mathochist: Move Y3 Robin Kermit\n\n35) ts52: Move Y3 Kermit Frito\n\n36) mathochist: M R1 Frito Kermit\n\n37) ts52: Trade Y2 R2 Dorito\n\n38) mathochist: T Y2 R2 Frito\n\n39) ts52: Sacrifice R1 Ts52\nAttack R2 Frito\n\n40) mathochist: Sacrifice R1 Kermit\nAttack R2 Frito\n\n41) ts52: Attack Y1 Dorito\n\n42) mathochist: M B2 Frito Kermit\n\n43) ts52: Sacrifice R2 Dorito\nAttack R2 Frito\nAttack B2 Kermit\n\n44) mathochist: B R1 Mathochist\n\n45) ts52: Build R1 Frito\n\n46) mathochist: Build Y2 Mathochist\n\n47) ts52: Move G1 Ts52 Dorito\n\n48) mathochist: Sacrifice R2 Mathochist\nAttack B2 Kermit\nAttack B2 Kermit\n\n49) ts52: Build Y2 Kermit\n\n50) mathochist: Build B1 Kermit\n\n51) ts52: S R2 Frito\nA B2 Kermit\nA B2 Kermit\n\n52) mathochist: Build B2 Kermit\nCatastrophe Kermit Blue\n\n53) ts52: Attack Y1 Frito\n\n54) mathochist: Move Y2 Mathochist Frito\n\n55) ts52: Attack Y2 Frito\n\n56) mathochist: Move Y3 Kermit Frito\nCatastrophe Frito Yellow\n\n57) ts52: Build G1 Dorito\n\n58) mathochist: B Y1 Mathochist\n\n59) ts52: Move Y1 Kermit Frito\n\n60) mathochist: Discover Y1 Mathochist G2 Waldo\n\n61) ts52: Build G1 Ts52\n\n62) mathochist: Build Y2 Mathochist\n\n63) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild Y3 Dorito\nBuild Y3 Kermit\n\n64) mathochist: Trade Y3 G3 Mathochist\n\n65) ts52: B Y3 Frito\n\n66) mathochist: B R1 Mathochist\n\n67) ts52: Move Y3 Kermit Ts52\n\n68) mathochist: D G3 Mathochist R2 Cheeto\n\n69) ts52: Move Y3 Frito Mathochist\n\n70) mathochist: M Y2 Mathochist Cheeto\n\n71) ts52: S R1 Frito\nA R1 Mathochist\n\n72) mathochist: Attack R1 Mathochist\n\n73) ts52: Trade Y3 R3 Mathochist\n\tmathochist: Ulp!\n\n74) mathochist: M Y1 Waldo Mathochist\n\n75) ts52: B Y3 Frito\n\n76) mathochist: Build R1 Mathochist\nCatastrophe Mathochist R\n\n77) ts52: S Y2 Kermit\nM Y1 Frito Mathochist\nM Y3 Frito Mathochist\n\n78) mathochist: Move G3 Cheeto Mathochist\n\n79) ts52: Trade Y3 R3 Mathochist\n\n\tmathochist: Gleep! I could delay another turn or two, but it's pointless. Thanks for the game!\r\n\n\tts52: Thanks for the game. \n\nHomeworlds Online (SDG# 15615)\nVariants: "Hard time"\nStarted: 2010.2.27, Ended: 2010.4.12\nParticipants: dlwillson (S), ZackStack (N)\nWinner: dlwillson\n\n1) ZackStack: Homeworld B1 R2 G3\n\n2) dlwillson: Homeworld Y1 B3 G3\n\tZackStack: Hey DL! Have a good game.\n\n3) ZackStack: Build G1 Zackstack\n\n4) dlwillson: Build G1 Dlwillson\n\tZackStack: I noticed you've only played a couple of games here on SDG. Have you played much on the tabletop?\n\tdlwillson: Half a dozen or so, I think. I love Homeworlds, but it's hard to find players...\n\tdlwillson: How 'bout you?\n\tZackStack: Pretty much just the games here on SDG. I taught the game to a couple guys from my game group but they aren't interested to get good enough to be challenging :-(\n\tdlwillson: Where are you, geographically speaking? I'm in CO.\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\tZackStack: Minnesota. Perhaps we could meet halfway sometime :-)\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\tdlwillson: Sure. But we'll have to play several games to make the trip worth it! :-)\n\n7) ZackStack: Build G1 Zackstack\n\n8) dlwillson: Build Y2 Dlwillson\n\n9) ZackStack: Build Y2 Zackstack\n\tdlwillson: You seem to have the lead... :-) You're good.\n\tZackStack: Buttering me up so I make a mistake I see :-p\n\n10) dlwillson: Discover Y2 Dlwillson G2 Spot\n\n11) ZackStack: Discover Y2 Zackstack G3 Blob\n\n12) dlwillson: Trade Y1 R1 Dlwillson\n\n13) ZackStack: Discover G1 Zackstack B3 Blub\n\n14) dlwillson: Move Y2 Spot Blub\n\n15) ZackStack: Sacrifice G1 Blub\nBuild G1 Zackstack\n\n16) dlwillson: Build G1 Dlwillson\n\n17) ZackStack: Trade G1 B1 Zackstack\n\n18) dlwillson: Build R1 Dlwillson\n\n19) ZackStack: Move B1 Zackstack Blob\n\n20) dlwillson: Trade Y2 R2 Blub\n\tdlwillson: Sorry for the delay, Zach. I've been super-busy day and night, lately. I'll try to get my turn in over lunch or this evening.\n\tZackStack: Take your time. We're not on hard time so nothing bad can happen if you need to take some time off :-)\n\n21) ZackStack: Build Y1 Blob\n\n22) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Blub\nBuild R2 Blub\nBuild R3 Dlwillson\n\n23) ZackStack: Sacrifice G3 Zackstack\nBuild Y2 Zackstack\nBuild Y2 Blob\nBuild Y3 Zackstack\n\tdlwillson: Davey pulled off a blue rush on me the other day, and I about pissed myself. Do red rushes work, too? Let's find out... :-}\n\tZackStack: Hmmm... That would be a new one on me. Good luck!\n\n24) dlwillson: Trade R3 Y3 Dlwillson\n\n25) ZackStack: Trade Y3 G3 Zackstack\n\n26) dlwillson: Sacrifice Y3 Dlwillson\nMove R2 Blub Zackstack\nMove R1 Blub Zackstack\nDiscover R1 Dlwillson G2 Kitty\n\n27) ZackStack: Attack R2 Zackstack\n\n28) dlwillson: Build R3 Dlwillson\n\n29) ZackStack: Build Y3 Zackstack\n\tZackStack: Here I was hoping locking you out of yellow would benefit me a little longer... :-)\n\n30) dlwillson: Trade R3 G3 Dlwillson\n\n31) ZackStack: Move Y3 Zackstack Blub\n\tdlwillson: It seems I went after you one turn too early or something. I can't quite get the earth-shattering kaboom I want.\n\tZackStack: Heh. Its okay. I forgive you :-)\n\n32) dlwillson: S G3 Dlwillson\nB R3 Dlwillson\nB R3 Blub\nB R3 Zackstack\nC Zackstack Red\n\n33) ZackStack: Move Y3 Blub Kitty\n\n34) dlwillson:\nT R3 Y3 Blub\n\tZackStack: Guess I should have seen that coming... :-)\n\n35) ZackStack: Build Y3 Kitty\n\n36) dlwillson: Trade R3 G3 Dlwillson\n\tdlwillson: Sorry for my lack of chat, Zack. My phone can't submit chat messages. Your yellow battleships in orbit are scaring me...\n\n37) ZackStack: Discover Y2 Blob R2 Crimson\n\tZackStack: No prob on the chat. I'm glad they are scaring you... now to figure out what to do with them :-/\n\n38) dlwillson: B R1 Kitty\n\n39) ZackStack: Move Y2 Crimson Dlwillson\n\n40) dlwillson: A Y2 Dlwillson\n\tZackStack: Nice bind you're getting me into with the red supply. Well done.\n\n41) ZackStack: Sacrifice Y3 Kitty\nMove Y3 Kitty Dlwillson\nMove Y1 Blob Kitty\nMove Y1 Kitty Dlwillson\nCatastrophe Dlwillson Yellow\n\n42) dlwillson: Move Y3 Blub Zackstack\n\tZackStack: You have the upper hand here... use it well :-)\n\tdlwillson: Excellent! I think I've still got you, but I suppose we'll see, eh?\n\n43) ZackStack: Build Y1 Zackstack\nCatastrophe Zackstack Yellow\n\tZackStack: Probably... but I'm not afraid to try some drastic things here :-)\n\n44) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Blub\nBuild R2 Blub\nBuild R3 Dlwillson\n\tdlwillson: Excellent choice. Sorry for the poor move on my part... :-/\n\n45) ZackStack: Build G1 Zackstack\n\tZackStack: No troubles... I'm still very much in trouble at the moment :-)\n\n46) dlwillson: Trade R2 Y2 Blub\n\n47) ZackStack: Discover B1 Blob G2 Goob\n\n48) dlwillson: Trade R3 G3 Dlwillson\n\n49) ZackStack: Build B1 Goob\n\n50) dlwillson: S G3 Dlwillson\nB R2 Kitty\nB R3 Blub\nB R3 Dlwillson\n\n51) ZackStack: Trade G3 R3 Zackstack\n\n52) dlwillson: Sacrifice Y2 Blub\nMove R2 Blub Goob\nMove R2 Kitty Blob\n\n53) ZackStack: Sacrifice Y2 Blob\nDiscover B1 Goob Y1 Pip\nDiscover B1 Goob Y1 Speck\n\n54) dlwillson: Trade R3 Y3 Dlwillson\n\n55) ZackStack: Trade R3 Y3 Zackstack\n\tZackStack: I'm so screwed... now I'm just waiting to see how you decide to finish me off :-)\n\n56) dlwillson: Sacrifice Y3 Dlwillson\nMove R3 Blub Zackstack\nMove R1 Kitty Blub\nMove R1 Kitty Speck\n\n57) ZackStack: Sacrifice Y3 Zackstack\nMove B1 Pip Dlwillson\nMove B1 Speck Dlwillson\nPass\n\tdlwillson: I really wanted to get a red and a blue in, with a g2 sac'able, but I never had time. Way to keep pressure on me, even in a declining game. Great play!\n\tZackStack: Thanks! I didn't feel like I was causing you enough trouble... but I'm glad you appreciated what I could do :-) So close...\n\n58) dlwillson: Attack G1 Zackstack\n\tdlwillson: Red rush can work! :-) Thanks for the great game, Zack! I'd challenge you to a ladder-match, if I weren't already in one. I have an open challenge, if you are up for a rematch.\n\tZackStack: I don't think my ladder match has been accepted yet... I'll know in a day or two if I've been rejected. If so I'll welcome your challenge :-) Otherwise, I'll go find your open challenge. Thanks for the good game!\n\n\nHomeworlds Online (SDG# 15613)\nStarted: 2010.2.27, Ended: 2010.3.7\nParticipants: TwoShort (S), einhorn303 (N)\nWinner: TwoShort\n\n1) einhorn303: Homeworld G2 B3 Y3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) einhorn303: Build Y1 Einhorn303 (n)\n\teinhorn303: Excuse me, this is my first time playing on SuperDuperGames. How do I find out the names of systems?\n\tTwoShort: When you use the yellow power, SuperDuper distinguishes between "move" to an existing system, or "discover" a new one. If you discover a system, you give it a name.\r\n Just out of curiosity, have you played Homeworlds much off-line?\n\n4) TwoShort: Build G1 Twoshort\n\n5) einhorn303: Discover Y1 Einhorn303 B1 Abyss\n\teinhorn303: I wouldn't say I play it *much*, since I can't always find nearby gamers, but I have been playing it sparsely for about four/five years.\r\n\r\nI was curious to know for "# build ship inSystem." I know that moving completely out of your home system is an illegal move, of course (ha).\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) einhorn303: Build Y1 Einhorn303\n\n8) TwoShort: Build Y2 Twoshort\n\n9) einhorn303: Build Y2 Einhorn303\n\n10) TwoShort: Build Y2 Twoshort\n\n11) einhorn303: Move Y2 Einhorn303 Abyss\n\n12) TwoShort: Trade Y2 R2 Twoshort\n\n13) einhorn303: Trade Y1 R1 Abyss\n\n14) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n15) einhorn303: Trade Y1 B1 Einhorn303\n\teinhorn303: discover Y1 G1 Virga\n\teinhorn303: discover Y1 einhorn303 G1 Virga\n\n16) TwoShort: Build G1 Twoshort\n\n17) einhorn303: Discover B1 Einhorn303 G1 Virga\n\n18) TwoShort: Build G1 Twoshort\n\n19) einhorn303: Trade Y2 G2 Abyss\n\n20) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n21) einhorn303: Build Y1 Einhorn303\n\n22) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n23) einhorn303: Build B1 Virga\n\n24) TwoShort: Sacrifice Y1 Grogar\nMove G3 Yolonda Abyss\n\n25) einhorn303: Trade Y3 G3 Einhorn303\n\n26) TwoShort: Build Y1 Twoshort\n\n27) einhorn303: Build B2 Virga\n\n28) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Abyss Einhorn303\nDiscover G1 Yolonda Y1 Gotcha\n\n29) einhorn303: Trade G3 R3 Einhorn303\n\n30) TwoShort: Sacrifice R2 Twoshort\nAttack R3 Einhorn303\nAttack Y1 Einhorn303\n\n\nHomeworlds Online (SDG# 15614)\nStarted: 2010.3.10, Ended: 2010.4.7\nParticipants: disk (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld B1 R2 G3\n\tZackStack: Hey disk! Thanks for the challenge and have a good game.\n\n\nHomeworlds Online (SDG# 15623)\nStarted: 2010.3.13, Ended: 2010.6.8\nParticipants: mathochist (S), zoltar (N)\nWinner: mathochist\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) mathochist: H R1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) mathochist: Build G1 Mathochist\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) mathochist: T G1 R1 Mathochist\n\n7) zoltar: Build Y1 Zoltar\n\n8) mathochist: B R2 Mathochist\n\n9) zoltar: Build Y1 Zoltar\n\tmathochist: Neh, I just saw the opportunity and thought I'd see how it worked. :)\n\n10) mathochist: T R2 Y2 Mathochist\n\n11) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n12) mathochist: Build Y2 Mathochist\n\n13) zoltar: Build Y2 Zoltar\n\n14) mathochist: Discover Y2 Mathochist R3 Redhat\n\n15) zoltar: Trade Y2 R2 Zoltar\n\n16) mathochist: Build G1 Mathochist\n\n17) zoltar: Discover Y1 Zoltar B2 Bluemoon\n\n18) mathochist: Sacrifice G3 Mathochist\nBuild Y2 Mathochist\nBuild Y3 Mathochist\nBuild Y3 Redhat\n\tzoltar: You're in trouble in our 4-player Homeworlds game. Shmil1 can sacrifice his Y2 and move his two G1's into your homeworld and destroy your green star and your G3 and G2, leaving you crippled with only two Y1's and one star left.\n\tzoltar: In the 4-player game, you're probably going to have to sack your G3 for three Yellow ships to avoid such a disaster.\n\tmathochist: Oh frak... that won't even protect me. Getting rid of one green ship would still leave one green ship and one green star, and he can wipe those out. I'm not sure there's any way out of that. Ouch!\n\tzoltar: Well, if you sac your G3 for three yellows, including a Y3 in your homeworld and a Y3 in your outpost, he might not waste his resources to blow up a star and a G2, figuring that he weakens himself as well this early; but if you leave your G3 there, it's too much of a target to resist. Btw, this is why I start with red and blue stars and never green ones.\n\n19) zoltar: Build Y3 Greenbelt\n\tmathochist: true. and I usually don't start with green stars either, but I'm pretty new to the game and still experimenting (like with grabbing the reds early in this game so I could get to the medium pieces quickly. I'm not sure it really put me ahead of where I would have been anyway, by a couple turns later, y'know?)\n\n20) mathochist: Discover Y2 Mathochist G3 Greensun\n\n21) zoltar: Move R2 Zoltar Greenbelt\n\n22) mathochist: Move Y2 Redhat Bluemoon\n\tmathochist: well, at least I wound up with 3 large yellows (in the 4 player game). if he destroys my star, I still have several large pieces and am not *too* badly off, considering. but I can still hope he doesn't.\n\n23) zoltar: Build R2 Greenbelt\n\tzoltar: I don't think he well, as you could sack one of your Y3's to move your two Y2's into his homeworld and blow up his star, so he probably doesn't want to weaken both of you by attacking so early. If he doesn't attack, you're in the best position by far.\n\n24) mathochist: Trade Y2 R2 Bluemoon\n\n25) zoltar: Sacrifice Y1 Bluemoon\nDiscover R2 Greenbelt G3 Greendale\n\tzoltar: Wow, I'm pretty much doomed in this game!\n\n26) mathochist: Move R1 Mathochist Greensun\n\n27) zoltar: Build R3 Greendale\n\n28) mathochist: B R3 Greensun\n\n29) zoltar: Build G1 Zoltar\n\n30) mathochist: B G1 Mathochist\n\n31) zoltar: Trade G1 B1 Zoltar\n\n32) mathochist: Trade Y2 B2 Mathochist\n\n33) zoltar: Move B1 Zoltar Greenbelt\n\tmathochist: You don't look doomed. Did I make a mistake? :)\n\n34) mathochist: Move G1 Mathochist Redhat\n\tzoltar: No, I'm still holding my own, and my position looks better to me now, but I don't think you made any mistake.\n\n35) zoltar: Discover Y1 Greenbelt G1 Greentree\n\n36) mathochist: M R1 Greensun Bluemoon\n\n37) zoltar: Build G2 Zoltar\n\n38) mathochist: B G2 Redhat\n\n39) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Greentree\n\n40) mathochist: Move R3 Greensun Greentree\n\n41) zoltar: Sacrifice Y1 Greentree\nMove Y2 Greentree Greendale\n\n42) mathochist: Move G1 Redhat Bluemoon\n\n43) zoltar: Discover G2 Zoltar Y2 Yellojello\n\n44) mathochist: B Y1 Greensun\n\n45) zoltar: Build B1 Greenbelt\n\n46) mathochist: Move Y3 Redhat Bluemoon\n\n47) zoltar: Move B1 Greenbelt Greendale\n\n48) mathochist: Move B2 Mathochist Greensun\n\n49) zoltar: Move Y3 Greenbelt Redhat\n\n50) mathochist: S G2 Redhat\nB G2 Bluemoon\nB B1 Greensun\n\n\n51) zoltar: Build B3 Greenbelt\n\n52) mathochist: Build B3 Greensun\n\n53) zoltar: Sacrifice Y1 Zoltar\nMove B1 Greenbelt Greensun\nCatastrophe Greensun B\n\n54) mathochist: B Y1 Bluemoon\n\n55) zoltar: Sacrifice G2 Yellojello\nBuild Y2 Greendale\nBuild B1 Greendale\n\n56) mathochist: B G2 Mathochist\n\tmathochist: Yeah, I half expected that.\n\n57) zoltar: Build B1 Greendale\n\n58) mathochist: S Y3 Bluemoon\nM G1 Bluemoon Greendale\nM G2 Bluemoon Greendale\nM G1 Mathochist Greendale\nC Greendale G\n\n59) zoltar: Trade B3 Y3 Greenbelt\n\n60) mathochist: Build Y2 Mathochist\n\n61) zoltar: Build Y2 Zoltar\n\tzoltar: Ouch! I didn't expect that.\n\tmathochist: Too many eggs in one basket. \n\n62) mathochist: Build G1 Mathochist\n\n63) zoltar: Trade Y1 B1 Zoltar\n\n64) mathochist: Trade R2 G2 Bluemoon\n\n65) zoltar: Move Y3 Redhat Bluemoon\n\n66) mathochist: Discover G2 Bluemoon G3 Greenmoon\n\n67) zoltar: Move Y3 Greenbelt Greenmoon\n\n68) mathochist: S G2 Greenmoon\nB Y1 Bluemoon\nB R2 Greentree\n\n\n\n69) zoltar: Discover Y3 Bluemoon B3 Bluedeath\n\n70) mathochist: Trade R1 B1 Bluemoon\n\n71) zoltar: Move B1 Zoltar Greenbelt\n\n72) mathochist: Move Y1 Bluemoon Greentree\n\n73) zoltar: Build B1 Greenbelt\n\n74) mathochist: M R3 Greentree Greenbelt\n\n\tzoltar: I looked at the position several times over the weekend and I don't see any way to save my pieces, and sacrificing a Y3 just lets you build it and get an even bigger advantage. Well done, good game.\n\tmathochist: Thanks! This was sure an interesting one. At one point didn't we have all but 1 or 2 of the pieces in play? Amazing.\n\nHomeworlds Online (SDG# 15721)\nVariants: "Hard time"\nStarted: 2010.3.13, Ended: 2010.3.21\nParticipants: zoltar (S), dlwillson (N)\nWinner: zoltar\n\n1) dlwillson:\nHomeworld B2 R1 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\tdlwillson: Hi Zoltar, thanks for choosing to take a game with me. Couldn't say Hi before because I was on my phone...\n\tdlwillson: and the phone's browser won't post chat messages, for some reason...\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: Hi!\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) dlwillson: Build G1 Dlwillson\n\n8) zoltar: Build G1 Zoltar\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) dlwillson: Build G1 Dlwillson\n\n12) zoltar: Build B1 Zoltar\n\n13) dlwillson: Discover R1 Dlwillson G3 Blueberry\n\n14) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n15) dlwillson: Discover G1 Dlwillson B3 Luniversal\n\n16) zoltar: Build B2 Greenbelt\n\n17) dlwillson: Build G1 Dlwillson\n\n18) zoltar: Build B2 Zoltar\n\n19) dlwillson: Trade G3 B3 Dlwillson\n\n20) zoltar: Trade B2 Y2 Greenbelt\n\n21) dlwillson: Discover B3 Dlwillson Y3 Jumper\n\n22) zoltar: Trade B2 R2 Zoltar\n\n23) dlwillson: Build R1 Blueberry\n\n24) zoltar: Build B2 Greenbelt\n\n25) dlwillson: Build G1 Dlwillson\n\n26) zoltar: Move B2 Greenbelt Blueberry\n\n27) dlwillson: Discover G1 Dlwillson B3 Ring\n\n28) zoltar: Build G2 Zoltar\n\n29) dlwillson:\nBuild R2 Blueberry\n\n30) zoltar: Sacrifice Y1 Zoltar\nMove B2 Blueberry Dlwillson\n\n\tdlwillson: Good game. Any advice for me?\n\tzoltar: Yeah: never, ever move your only large ship out of your homeworld. If you hadn't done that, it would still be a close game!\n\nHomeworlds Online (SDG# 15643)\nVariants: "Hard time"\nStarted: 2010.3.13, Ended: 2010.4.12\nParticipants: zoltar (S), Jesse (N)\nWinner: zoltar\n\n1) Jesse: Homeworld Y1 B2 G3\n\tJesse: Greetings, Zoltar.\n\n2) zoltar: Homeworld B3 R1 G3\n\n3) Jesse: Build G1 Jesse\n\tzoltar: Greetings, Human!\n\n4) zoltar: Build G1 Zoltar\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Jesse: Build Y2 Jesse\n\n8) zoltar: Build Y2 Zoltar\n\n9) Jesse: Trade Y1 R1 Jesse\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) Jesse: Build R2 Jesse\n\n12) zoltar: Build R2 Zoltar\n\n13) Jesse: Discover R1 Jesse G3 Cabbage\n\n14) zoltar: Trade R1 B1 Zoltar\n\n15) Jesse: Build R1 Jesse\n\n16) zoltar: Discover R2 Zoltar G2 Greenbelt\n\n17) Jesse: Trade R1 B1 Jesse\n\n18) zoltar: Move B1 Zoltar Greenbelt\n\n19) Jesse: Move B1 Jesse Cabbage\n\n20) zoltar: Build Y1 Zoltar\n\n21) Jesse: Move Y2 Jesse Cabbage\n\n22) zoltar: Move Y1 Zoltar Greenbelt\n\n23) Jesse: Build R1 Jesse\n\n24) zoltar: Build G1 Zoltar\n\n25) Jesse: Build G1 Jesse\n\n26) zoltar: Build Y1 Zoltar\n\n27) Jesse: Build Y2 Cabbage\n\n28) zoltar: Discover Y2 Zoltar B2 Bluecheese\n\n29) Jesse: Discover Y2 Cabbage G2 Zucchini\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Bluecheese\nBuild Y3 Greenbelt\nBuild Y3 Zoltar\n\n\tJesse: Oops. Sorry about that. Oh well, I was probably going down anyway. Well played.\n\tzoltar: Thanks -- it was close up until that last move -- having all three Y3's is a huge advantage, as I just need to get a couple more blues and then move my pieces into position for the Doomsday Machine.\n\tJesse: Yeah, I don't know why I missed that. I'd been looking at it earlier, but for some reason just at that moment I only saw yellows on two systems. :/\n\nHomeworlds Online (SDG# 31951)\nVariants: "Unrated"\nStarted: 2017.4.23, Ended: 2017.5.9\nParticipants: wil (S), Personman (N)\nWinner: wil\n\n1) Personman: Homeworld B3 Y1 G3\n\n2) wil: H B1 R2 G3\n\n3) Personman: Build G1 Personman\n\n4) wil: B G1 Wil\n\n5) Personman: Trade G1 Y1 Personman\n\n6) wil: T G1 Y1 Wil\n\n7) Personman: Build Y2 Personman\n\n8) wil: Build Y2 Wil\n\n9) Personman: Discover Y2 Personman B2 B2\n\n10) wil: T Y1 B1 Wil\n\n11) Personman: Build G1 Personman\n\n12) wil: B B1 Wil\n\n13) Personman: Move G1 Personman B2\n\n14) wil: D B1 Wil Y3 Y3\n\n15) Personman: Build Y1 B2\n\n16) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n17) Personman: Build Y2 Personman\n\n18) wil: Discover Y2 Wil G3 G3\n\n19) Personman: Trade Y1 R1 Personman\n\n20) wil: T B3 G3 Wil\n\n21) Personman: Move Y2 B2 Y3\n\n22) wil: T B1 R1 Wil\n\n23) Personman: Sacrifice R1 Personman\nAttack B2 Y3\n\n24) wil: T B2 R2 Y3\n\n25) Personman: Sacrifice Y2 Y3\nDiscover Y2 Personman G2 G2\nMove B2 Y3 G2\n\n26) wil: Move R2 Y3 G2\n\n27) Personman: Trade Y1 R1 B2\n\n28) wil: A Y2 G2\n\twil: I knew I should a went after the little ones\n\n\tPersonman: i keep not making a move here because everything seems terrible, so I think I'll concede and start another one soon. Sorry for the wait!\n\nHomeworlds Online (SDG# 15656)\nStarted: 2010.3.16, Ended: 2010.5.9\nParticipants: mathochist (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) mathochist: H R1 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) mathochist: B G1 Mathochist\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) mathochist: T G1 R1 Mathochist\n\n7) TwoShort: Build Y1 Twoshort\n\n8) mathochist: B R2 Mathochist\n\n9) TwoShort: Build Y1 Twoshort\n\n10) mathochist: Trade R2 Y2 Mathochist\n\n11) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n12) mathochist: Build Y2 Mathochist\n\n13) TwoShort: Build Y2 Twoshort\n\n14) mathochist: Discover Y2 Mathochist G3 Greonia\n\n15) TwoShort: Sacrifice Y1 Twoshort\nDiscover Y1 Twoshort B2 Bluestar\n\n16) mathochist: Build G1 Mathochist\n\n17) TwoShort: Build G1 Twoshort\n\n18) mathochist: Sacrifice G3 Mathochist\nBuild Y1 Greonia\nBuild Y3 Mathochist\nBuild R2 Mathochist\n\n19) TwoShort: Build Y3 Twoshort\n\n20) mathochist: D G1 Mathochist Y3 Yellowstar\n\n21) TwoShort: Move Y1 Bluonia Greonia\n\n22) mathochist: Move Y1 Greonia Bluestar\n\n23) TwoShort: Sacrifice Y3 Twoshort\nMove Y1 Bluestar Greonia\nMove Y1 Greonia Mathochist\nMove Y1 Greonia Mathochist\nCatastrophe Mathochist Yellow\n\n24) mathochist: B G1 Yellowstar\n\n25) TwoShort: Discover G3 Twoshort B2 Blitz\n\n26) mathochist: Move G1 Yellowstar Mathochist\n\tmathochist: Damn, I need a large ship. I think I'm done for.\n\n27) TwoShort: Build G2 Twoshort\n\n28) mathochist: B G2 Mathochist\n\n29) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Blitz\nBuild Y1 Twoshort\n\n30) mathochist: Sacrifice Y2 Greonia\nDiscover G2 Mathochist G3 Fritz\nDiscover R1 Mathochist G3 Glitz\n\tTwoShort: You need a large, and I can prevent your getting one if I don't blow it, so I also think you're done for. But it sure looks like you can stave it off for a long time.\n\n31) TwoShort: Trade G2 R2 Blitz\n\tmathochist: Well, I can hold on to a couple larges, for now, even if I can't exactly put them to use.\n\n32) mathochist: Build G2 Mathochist\n\n33) TwoShort: Sacrifice Y1 Twoshort\nMove R2 Blitz Yellowstar\n\n34) mathochist: Move G1 Yellowstar Bluestar\n\n35) TwoShort: Build Y1 Twoshort\n\n36) mathochist: Build G2 Mathochist\n\n37) TwoShort: Sacrifice G3 Blitz\nBuild G3 Twoshort\nBuild R2 Yellowstar\nBuild Y1 Twoshort\n\n38) mathochist: Move Y1 Bluestar Twoshort\nCatastrophe Twoshort Yellow\n\n39) TwoShort: Move R2 Yellowstar Bluestar\n\n40) mathochist: S G1 Bluestar\nB R3 Glitz\n\tmathochist: Well, I still need a large, but I feel a little safer for the moment now.\n\tTwoShort: Yeah, I definitely jumped too fast in my haste to finish you.\n\n41) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G3 Twoshort\nBuild R3 Yellowstar\n\n42) mathochist: Trade G2 Y2 Mathochist\n\n43) TwoShort: Sacrifice G1 Twoshort\nBuild R3 Bluestar\n\n44) mathochist: Sacrifice Y2 Mathochist\nMove R3 Glitz Mathochist\nDiscover R2 Mathochist Y3 Zit\n\n45) TwoShort: Move R3 Yellowstar Mathochist\n\n46) mathochist: A R3 Mathochist\n\tmathochist: Well, I finally have a large piece at my homeworld. Whew!\n\tTwoShort: Unfortunately, it's only visiting briefly :)\n\n47) TwoShort: Move R2 Yellowstar Mathochist\nCatastrophe Mathochist Red\n\n48) mathochist: T G2 Y2 Mathochist\n\tmathochist: Dammit. This time I was in too much of a hurry.\n\n49) TwoShort: Trade R2 Y2 Bluestar\n\n50) mathochist: M R2 Zit Mathochist\n\n51) TwoShort: Sacrifice Y2 Bluestar\nMove G3 Twoshort Mathochist\nDiscover R3 Bluestar Y1 Yonder\n\n52) mathochist: Sacrifice G2 Fritz\nBuild G1 Mathochist\nBuild G2 Mathochist\nCatastrophe Mathochist Green\n\n53) TwoShort: Move R3 Yonder Mathochist\n\n54) mathochist: Move R2 Mathochist Twoshort\n\n55) TwoShort: Attack Y2 Mathochist\n\n\tmathochist: I just need one more move, or one more piece!\n\tTwoShort: :) thanks for the game.\n\tmathochist: I actually didn't understand why you didn't move a large piece to my home system much earlier in the game. I didn't think I'd be able to stop you from winning in a few turns, at the time.\n\nHomeworlds Online (SDG# 15820)\nVariants: "Hard time"\nStarted: 2010.3.16, Ended: 2010.4.2\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: SilentTitan\n\n1) dlwillson: Homeworld R1 B3 G3\n\n2) SilentTitan: Homeworld Y1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) SilentTitan: Discover G1 Silenttitan Y3 Ook\n\n7) dlwillson: Build G1 Dlwillson\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) dlwillson: Discover G1 Dlwillson B2 Stuph\n\n10) SilentTitan: Trade G1 R1 Silenttitan\n\n11) dlwillson: Build Y1 Dlwillson\n\n12) SilentTitan: Build G1 Ook\n\n13) dlwillson: Build G2 Dlwillson\n\n14) SilentTitan: Move G1 Ook Stuph\n\tdlwillson: Can you take back your last move? You might want to build that g1 at your homeworld, or add a red so you can split them up. If you build a g1 in ook, you won't be able to multi-build, even if I short the greens.\n\tdlwillson: And do you want me to make suggestions, or just shut up and play? I can do either...\n\tSilentTitan: ok.. .thanks for the help. I'll go ahead and do it my way this time. Take your turn.\n\n15) dlwillson: Build G2 Stuph\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Stuph\nBuild G3 Ook\nBuild G3 Ook\nCatastrophe Stuph G\n\n17) dlwillson: Build Y2 Dlwillson\n\n18) SilentTitan: Move G3 Ook Silenttitan\n\tSilentTitan: Well I think you got me ..... but that was still fun :)\n\tdlwillson: Great Scott! I actually didn't see that one coming!\n\n19) dlwillson: Discover Y1 Dlwillson G2 Boogie\n\n20) SilentTitan: Sacrifice G3 Ook\nBuild R1 Silenttitan\nBuild R2 Silenttitan\nBuild G1 Ook\n\n21) dlwillson: Discover Y2 Dlwillson B2 Twist\n\n22) SilentTitan: Discover G1 Ook B2 Eek\n\n23) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Twist\nBuild Y2 Twist\nBuild Y3 Dlwillson\n\n24) SilentTitan: Trade R2 G2 Silenttitan\n\n25) dlwillson: Trade Y3 G3 Dlwillson\n\n26) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Ook\nBuild G3 Silenttitan\nBuild G3 Eek\n\n27) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB Y3 Dlwillson\nB Y3 Boogie\n\n28) SilentTitan: Move R1 Silenttitan Ook\n\n29) dlwillson: Sacrifice Y3 Dlwillson\nDiscover Y3 Boogie R3 Samba\nDiscover Y2 Twist R3 Tango\nMove Y1 Boogie Tango\n\n30) SilentTitan: Trade G3 Y3 Eek\n\n31) dlwillson: Trade G2 R2 Dlwillson\n\n32) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Eek\nBuild G2 Eek\nBuild G3 Silenttitan\n\n33) dlwillson: Sacrifice Y2 Twist\nMove Y2 Twist Ook\nMove Y1 Tango Silenttitan\n\n34) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Silenttitan\nBuild R2 Silenttitan\nBuild R3 Ook\n\n35) dlwillson: S Y2 Tango\nM Y1 Silenttitan Ook\nM Y3 Samba Silenttitan\n\n36) SilentTitan: Sacrifice Y3 Eek\nMove G2 Eek Dlwillson\nMove G2 Eek Dlwillson\nMove G1 Eek Dlwillson\nCatastrophe Dlwillson G\n\n37) dlwillson: S R2 Dlwillson\n\nA G2 Silenttitan\n\nA R2 Silenttitan\n\n38) SilentTitan: Sacrifice R3 Ook\nAttack R2 Silenttitan\nAttack G2 Silenttitan\nAttack Y1 Ook\n\n39) dlwillson: T Y3 G3 Silenttitan\n\n40) SilentTitan: Build Y2 Ook\nCatastrophe Ook Y\n\n41) dlwillson: T Y1 G1 Dlwillson\n\n42) SilentTitan: Trade R2 Y2 Silenttitan\n\n43) dlwillson: B G1 Dlwillson\n\tSilentTitan: SOoooooooo Let's go back to the Beginning? eh? only I'll start with a 2pip Green? Maybe?\n\n44) SilentTitan: Build G1 Silenttitan\n\n45) dlwillson: B G2 Dlwillson\n\n46) SilentTitan: Build G2 Silenttitan\nCatastrophe Silenttitan G\n\n47) dlwillson: T G1 Y1 Dlwillson\n\n48) SilentTitan: Trade R2 G2 Silenttitan\n\n49) dlwillson: Discover G1 Dlwillson B2 Mook\n\n50) SilentTitan: Build R1 Silenttitan\n\n51) dlwillson: Build G1 Dlwillson\n\n52) SilentTitan: Build G1 Silenttitan\n\n53) dlwillson: S G2 Dlwillson\nB Y1 Dlwillson\nB G2 Mook\n\n54) SilentTitan: Discover R1 Silenttitan G3 Thunder\n\n55) dlwillson: Move Y1 Dlwillson Mook\n\n56) SilentTitan: Build R2 Thunder\n\n57) dlwillson: Trade G2 R2 Mook\n\n58) SilentTitan: Sacrifice Y2 Silenttitan\nMove R2 Thunder Mook\nMove R2 Mook Dlwillson\n\n59) dlwillson: Move R2 Mook Dlwillson\n\n60) SilentTitan: Attack R2 Dlwillson\n\n\tSilentTitan: I maybe be???? wow.. what I'm missing is any sort of gramatical ability. \n\tdlwillson: Yep. You got me. Good play.\n\nHomeworlds Online (SDG# 15778)\nStarted: 2010.3.18, Ended: 2010.10.17\nParticipants: mathochist (S), zoltar (W), agentofchaos (N), xoet (E)\nWinner: zoltar\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) xoet: Homeworld B3 G2 Y2 *\n\n3) mathochist: Homeworld Y1 B2 G3\n\n4) zoltar: Homeworld R3 B1 G3\n\n5) agentofchaos: Build G1 Agentofchaos\n\tagentofchaos: Hi everybody!\n\n6) xoet: Build Y1 Xoet\n\tmathochist: have fun!\n\n7) mathochist: Build G1 Mathochist\n\n8) zoltar: Build G1 Zoltar\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) xoet: Trade Y1 G1 Xoet\n\n11) mathochist: B G1 Mathochist\n\n12) zoltar: Trade G1 Y1 Zoltar\n\n13) agentofchaos: Build Y1 Agentofchaos\n\n14) xoet: Build Y1 Xoet\n\n15) mathochist: Discover G1 Mathochist Y3 Otter\n\n16) zoltar: Build Y2 Zoltar\n\n17) agentofchaos: Build Y2 Agentofchaos\n\n18) xoet: Build Y2 Xoet\n\n19) mathochist: Trade G3 Y3 Mathochist\n\n20) zoltar: Discover Y1 Zoltar G2 Greenland\n\tmathochist: Wow, yellow is going like hotcakes. I may have made a mistake not getting some earlier.\n\n21) agentofchaos: Trade Y1 R1 Agentofchaos\n\n22) xoet: Trade Y1 B1 Xoet\n\tagentofchaos: Get 'em while they're hot!\n\n23) mathochist: Build G1 Mathochist\n\tzoltar: Well, it's mathochist's turn in no less than 40 games (that must be a record), but I hope he bothers to make a move in the next couple of days!\n\tmathochist: Sorry I've been slower than usual the past couple weeks. I have chronic illness and it's been acting up lately, plus I had family here for half a week over Easter, and conventions to attend 2 weekends in a row, and now it's tax time. I'll be able to really catch up once the taxes are done this week.\n\n24) zoltar: Build Y1 Zoltar\n\tzoltar: No problem. I just thought you started too many games and had gotten overwhelmed and sick of them or something!\n\n25) agentofchaos: Move R1 Agentofchaos Otter\n\tmathochist: Nah, no such thing. :)\n\n26) xoet: Build G1 Xoet\n\n27) mathochist: Discover G1 Otter R1 Bear\n\tmathochist: Okay, so it's taken me a few more days past tax time...\n\tmathochist: sorry, guys!\n\n28) zoltar: Build G2 Zoltar\n\n29) agentofchaos: Build G2 Agentofchaos\n\n30) xoet: Discover Y2 Xoet R1 Poet\n\n31) mathochist: T Y3 G3 Mathochist\n\n32) zoltar: Discover G2 Zoltar B2 Bluesky\n\n33) agentofchaos: Move G2 Agentofchaos Otter\n\n34) xoet: Trade G1 Y1 Xoet\n\n35) mathochist: T G1 R1 Mathochist\n\n36) zoltar: Move Y1 Zoltar Bluesky\n\n37) agentofchaos: Build G1 Otter\n\n38) xoet: Move G1 Xoet Poet\n\n39) mathochist: Discover G1 Mathochist Y3 Tree\n\n40) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Bluesky\nBuild Y3 Greenland\nBuild Y3 Zoltar\n\n41) agentofchaos: Trade Y1 B1 Agentofchaos\n\n42) xoet: Build B1 Xoet\n\n43) mathochist: B G1 Mathochist\n\n44) zoltar: Trade Y3 G3 Zoltar\n\n45) agentofchaos: Build B2 Agentofchaos\n\n46) xoet: Move B1 Xoet Poet\n\n47) mathochist: S G3 Mathochist\nB G2 Bear\nB G3 Tree\nB G3 Mathochist\n\n48) zoltar: Build G3 Bluesky\n\n49) agentofchaos: Move B1 Agentofchaos Otter\n\n50) xoet: Trade Y1 R1 Xoet\n\n51) mathochist: Trade G1 Y1 Mathochist\n\n52) zoltar: Trade G2 R2 Bluesky\n\n53) agentofchaos: Build B2 Otter\n\n54) xoet: Build B2 Poet\n\n55) mathochist: Build R2 Mathochist\n\n56) zoltar: Move Y3 Greenland Bear\n\n57) agentofchaos: Trade B1 Y1 Otter\n\n58) xoet: Trade B1 G1 Xoet\n\n59) mathochist: Move G3 Tree Poet\n\n60) zoltar: Sacrifice G3 Bluesky\nBuild G2 Zoltar\nBuild Y3 Greenland\nBuild Y3 Bear\n\n61) agentofchaos: Build G3 Agentofchaos\n\n62) xoet: Build R2 Xoet\n\n63) mathochist: Attack Y2E Poet\n\n64) zoltar: Move R2 Bluesky Tree\n\tmathochist: Huh. I'm attempting to attack a ship, and it keeps telling me the ship cannot be found in that system. I can see the ship, and I can see in the log when it came in, and that it hasn't left. I've tried attacking every other ship in the system, too, with the same results. Has anybody had that happen before?\n\txoet: you either have no red ship or the size difference is wrong?\n\tmathochist: Neh. It's the poet system. Red star, my ship is large, the others are medium and small. It should work, no?\n\tzoltar: You have to include the direction of the ship when you attack in a 4-player game, e.g., "a y2e poet" \n\tmathochist: oh! ok. I never noticed that fine print under the "recognized commands". Thanks!\n\n65) agentofchaos: Move G3 Agentofchaos Tree\n\n66) xoet: Move R1 Xoet Poet\n\n67) mathochist: Move Y1 Mathochist Otter\n\n68) zoltar: Sacrifice Y2 Bluesky\nMove R2 Tree Poet\nMove Y1 Greenland Otter\nCatastrophe Otter Y\n\txoet: i too am back and did not know how to set that away message thing just did the forum away post.\n\n69) agentofchaos: Trade B2 R2 Agentofchaos\n\n70) xoet: Build Y1 Xoet\n\n71) mathochist: A R2W Poet\n\n72) zoltar: Attack G2S Bear\n\n73) agentofchaos: Move R2 Agentofchaos Tree\n\n74) xoet: Trade B1 Y1 Poet\n\n75) zoltar: Attack G1S Bear\n\n76) agentofchaos: Attack G1S Tree\n\n77) zoltar: Sacrifice G3 Zoltar\nBuild Y1 Greenland\nBuild Y2 Bluesky\nBuild Y3 Zoltar\n\n78) agentofchaos: Move G3 Tree Mathochist\n\n79) zoltar: Sacrifice Y2 Zoltar\nDiscover Y1 Greenland B3 Iceland\nMove G2 Bear Iceland\n\n80) agentofchaos: Build Y2 Agentofchaos\n\n81) zoltar: Sacrifice Y3 Bear\nMove G1 Bear Iceland\nMove G1 Iceland Mathochist\nMove G2 Iceland Mathochist\nCatastrophe Mathochist G\n\n82) agentofchaos: Build R1 Tree\n\n83) zoltar: Build Y3 Zoltar\n\n84) agentofchaos: Build R3 Tree\n\n85) zoltar: Sacrifice Y3 Zoltar\nMove Y3 Bear Tree\nMove Y2 Bluesky Tree\nMove Y1 Bluesky Tree\nCatastrophe Tree Y\n\n86) agentofchaos: Trade Y2 R2 Agentofchaos\n\n87) zoltar: Build G1 Zoltar\n\n88) agentofchaos: Build R1 Agentofchaos\n\n89) zoltar: Trade Y1 R1 Iceland\n\n90) agentofchaos: Discover R2 Agentofchaos Y3 Dread\n\n91) zoltar: Sacrifice G1 Zoltar\nBuild R3 Iceland\n\n92) agentofchaos: Trade R1 G1 Agentofchaos\n\n93) zoltar: Trade R3 G3 Iceland\n\n94) agentofchaos: Discover G1 Agentofchaos Y3 Deimos\n\n95) zoltar: Build G1 Iceland\n\n96) agentofchaos: Build G1 Deimos\n\n97) zoltar: Build Y1 Greenland\n\n98) agentofchaos: Build G2 Deimos\n\n99) zoltar: Sacrifice G3 Iceland\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild G3 Iceland\n\n\tCuc: Is this game being played? When does it end?\r\n\n\tzoltar: It ended in November.\n\nHomeworlds Online (SDG# 15762)\nStarted: 2010.3.18, Ended: 2010.5.25\nParticipants: agentofchaos (S), mathochist (N)\nWinner: mathochist\n\n1) mathochist: H R1 B2 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) mathochist: Build G1 Mathochist\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) mathochist: Trade G1 Y1 Mathochist\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) mathochist: Build Y1 Mathochist\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) mathochist: Trade Y1 R1 Mathochist\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) mathochist: B G1 Mathochist\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) mathochist: Build R2 Mathochist\n\n14) agentofchaos: Build R2 Agentofchaos\n\n15) mathochist: Discover R2 Mathochist G3 Lgs\n\n16) agentofchaos: Discover R2 Agentofchaos G1 Entanglement\n\n17) mathochist: Build R3 Lgs\n\n18) agentofchaos: Build R3 Entanglement\n\n19) mathochist: Build R3 Mathochist\n\n20) agentofchaos: Build G2 Agentofchaos\n\n21) mathochist: Move G1 Mathochist Lgs\n\n22) agentofchaos: Trade G2 Y2 Agentofchaos\n\n23) mathochist: Trade R3 Y3 Mathochist\n\n24) agentofchaos: Move Y1 Agentofchaos Entanglement\n\n25) mathochist: Discover R1 Mathochist Y3 Lys\n\n26) agentofchaos: Trade R1 B1 Agentofchaos\n\n27) mathochist: Build G2 Mathochist\n\n28) agentofchaos: Build B1 Agentofchaos\n\n29) mathochist: Trade G2 B2 Mathochist\n\n30) agentofchaos: Move B1 Agentofchaos Entanglement\n\n31) mathochist: Build G2 Mathochist\n\n32) agentofchaos: Move G1 Agentofchaos Entanglement\n\n33) mathochist: Move G2 Mathochist Lys\n\n34) agentofchaos: Build G2 Agentofchaos\n\n35) mathochist: Build G2 Mathochist\n\n36) agentofchaos: Build Y1 Agentofchaos\n\n37) mathochist: Move Y1 Mathochist Lgs\n\n38) agentofchaos: Build Y2 Entanglement\n\n39) mathochist: S Y3 Mathochist\nM G1 Lgs Entanglement\nM G2 Lys Entanglement\nM G2 Mathochist Lys\nC Entanglement G\n\n40) agentofchaos: Build Y1 Agentofchaos\n\n41) mathochist: Build Y2 Lgs\n\n42) agentofchaos: Discover Y1 Agentofchaos G1 Despero\n\n43) mathochist: Move R2 Lgs Despero\n\n44) agentofchaos: Discover Y1 Despero R3 Hades\n\n45) mathochist: Sacrifice Y1 Lgs\nMove B2 Mathochist Hades\n\n\tagentofchaos: Don't think I can do much here, good game\n\tmathochist: Thanks for the game!\n\nHomeworlds Online (SDG# 15821)\nVariants: "Hard time"\nStarted: 2010.3.18, Ended: 2010.4.24\nParticipants: SilentTitan (S), dethdukk (W), dlwillson (N), johannz (E)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) johannz: Homeworld Y2 B1 G3\n\tdlwillson: Sorry that took so long! I'm on customer site.\n\tdlwillson: The rules, to review, are: 2 teams of 2. Me and Tripp versus Davey and Adam. The game is over as soon as one player falls.\n\tdlwillson: Now, hurry up you guys! :-)\n\n3) SilentTitan: Homeworld Y3 B1 G3\n\tjohannz: Fine. I went. See what you made me do :)\n\n4) dethdukk: Homeworld G3 B2 R3\n\n5) dlwillson: Build G1 Dlwillson\n\n6) johannz: Build G1 Johannz\n\tdlwillson: Umm... I thought we were going to choose same size homeworlds for teams?\n\tdlwillson: Davey... Weren't we going to have same size homeworlds for teams, so that you are closer to your team-mate, and more easily able to contribute ships and aid?\n\tdlwillson: Is this thing on?\n\tjohannz: I actually am cool with him taking a different size. This way, you guys have to choose who to go after. You'll leave home to system 2, then you have to either go to a system 3 to attack me, or a system 1 to attack him. Either way, your intentions are clear.\n\tdlwillson: Hummm... I'm not sure I'm OK with giving you guys an advantage, either! But we'll go on with what we have and if Tripp and I lose, I can blame it on this... :-D\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) dethdukk: Build R1 Dethdukk\n\tdethdukk: my phone is on more than this thing is dad :P. Also, having the same size homeworld is both helpful and hurtful. I just dont like banker :/\n\n9) dlwillson: Discover G1 Dlwillson B2 Zulu\n\n10) johannz: Trade G1 Y1 Johannz\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) dethdukk: Trade R1 Y1 Dethdukk\n\n13) dlwillson: Build G1 Dlwillson\n\n14) johannz: Build Y1 Johannz\n\n15) SilentTitan: Discover G1 Silenttitan Y2 Xyzzy\n\n16) dethdukk: Build Y1 Dethdukk\n\n17) dlwillson: T G1 B1 Dlwillson\n\n18) johannz: Discover Y1 Johannz G3 Jprime\n\n19) SilentTitan: Build G1 Xyzzy\n\n20) dethdukk: Build Y2 Dethdukk\n\n21) dlwillson: Discover B1 Dlwillson G2 Warlord\n\n22) johannz: Build Y2 Jprime\n\n23) SilentTitan: Discover G1 Xyzzy Y3 Bankone\n\n24) dethdukk: Discover Y2 Dethdukk G1 Lastchance\n\n25) dlwillson: Build G2 Dlwillson\n\n26) johannz: Build G2 Johannz\n\n27) SilentTitan: Discover G1 Xyzzy Y3 Banktwo\n\n28) dethdukk: Build R1 Dethdukk\n\n29) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dlwillson\nBuild G2 Dlwillson\nBuild G3 Zulu\n\n30) johannz: Sacrifice Y2 Jprime\nMove Y1 Jprime Zulu\nMove Y1 Zulu Silenttitan\n\tdlwillson: Wow, Davey! Like to let the timer run a little close, do we? Where you been, kiddo?\n\n31) SilentTitan: Build G3 Banktwo\n\n32) dethdukk: Move R3 Dethdukk Lastchance\n\n33) dlwillson: Trade G2 R2 Dlwillson\n\tdethdukk: yeah, a little close :p I was busy with school, and I didn't realize my turn had come up so fast.\n\n34) johannz: Sacrifice G3 Johannz\nBuild Y2 Silenttitan\nBuild Y2 Silenttitan\nBuild G2 Johannz\nCatastrophe Silenttitan Y\n\tdlwillson: Like ONE HOUR close!\n\n35) SilentTitan: Trade G3 R3 Silenttitan\n\n36) dethdukk: Build Y1 Lastchance\n\tjohannz: Just call me the Catastrophe King, Baby...\n\tjohannz: When you sacrifice something, does it become available for building immediately? If so, I could do this without losing anything...Let's try it\n\n37) dlwillson: Sacrifice G3 Zulu\nBuild G3 Zulu\nBuild G3 Zulu\nBuild G3 Dlwillson\n\tjohannz: Cool. Same effect on SilentTitan, and all it cost was downgrading a G3 to a G2 ship instead of losing a g3.\n\n38) johannz: Build Y2 Johannz\n\tdethdukk: probably should have sacced a g2 to cat instead of the g3. my mistake, I meant to advise you of that earlier. the way you did it leaves them open to grab all the g3 stuff. simple mistake tho, I have done it a couple times.\n\n39) SilentTitan: Move G3 Banktwo Johannz\n\n40) dethdukk: Build Y2 Dethdukk\n\n41) dlwillson: Sacrifice G3 Dlwillson\nBuild B1 Warlord\nBuild B1 Warlord\nBuild G3 Dlwillson\n\n42) johannz: Trade Y2 R2 Johannz\n\n43) SilentTitan: Sacrifice R3 Silenttitan\nAttack R2E Johannz\nAttack G2E Johannz\nAttack G2E Johannz\n\n\nHomeworlds Online (SDG# 15814)\nStarted: 2010.3.21, Ended: 2010.4.14\nParticipants: TwoShort (S), Moves (N)\nWinner: TwoShort\n\n1) Moves: Homeworld B1 Y2 G3\n\tMoves: Hello! This is my first game of Homeworlds.\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) Moves: Build G1 Moves\n\n4) TwoShort: Build G1 Twoshort\n\n5) Moves: Discover G1 Moves G3 Kuat\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\tMoves: I love how you can name the planets yourself.\n\tTwoShort: Welcome to SDG. I generally try to give new players a few pointers, but I'm having a hectic week, so you might not get as many as ususal... Anyway, the standard early-game advice: the goal early on is generally to out-grow your opponent; particularly, to get more 3 point ships than the other guy.\n\n7) Moves: Build G1 Moves\n\tMoves: Thanks TwoShort. I have read all the written up material about the tactics of the game I could find. Some by you! I'm actually happy that I go before you, since I have to learn and not just copy your move.\n\n8) TwoShort: Build G1 Twoshort\n\n9) Moves: Build G2 Moves\n\n10) TwoShort: Build G2 Twoshort\n\n11) Moves: Discover G2 Moves B3 Gunray\n\n12) TwoShort: Discover G2 Twoshort B2 Bluonia\n\n13) Moves: Trade G1 Y1 Moves\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n15) Moves: Discover Y1 Moves Y3 Kessel\n\tMoves: Oh wow! What a move.\n\tMoves: ah, I also did not know you could split it up into different locations. Nice.\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y2 Twoshort\nBuild G3 Twoshort\n\tMoves: Ok, now I know how a Green sacrifice works. So, how does a Red sacrifice work?\n\tTwoShort: So for any sacrifice, the piece you sac goes back in the stash, then you get the chance to perform the action associated with that color as many times as the size of the peice, and you can use those actions with any of your ships. For a red sacrifice, you would first need a red peice, and you would need a different piece (any color) that was in the same system as one of my pieces. Red sacrifices are somewhat unusual, except as the final coup de grace. The threat of a red sac often makes the opponent do something less-than-optimal to block, but by the time they can't prevent it, the game is effectively won.\r\n The most common sacrifice is the tactic I just employed: sacrificing a g3 for three grows when you are able to use one of them to re-grow the same g3. We call this "the factory". It's definitely a key stratagem since it lets you grow twice as fast as otherwise, and anywhere you have ships. If your opponent gets a factory going and you don't, you're probably in trouble.\r\n In your current position, you've got a g3, so you're not entirely locked out, but you don't have the extra green at home to let you regrow there. You could get either of your smaller greens back home by sacrificing it, and using the action to regrow it at home. \r\n Generally, you don't want to move ships out to stars that are the same color; it means you have less options. Unless you sac something somewhere elsewhere, all you can do at Kessel is leave, and you can't currently do anything at Kuat. Even if there were greens available, if you grew one there, I could move one of mine in and cause a catastrophe.\n\n17) Moves: Sacrifice G2 Gunray\nBuild G2 Moves\nBuild Y2 Kessel\n\tMoves: Whoah! Crazy!\n\n18) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort R2 Temporary\nMove Y1 Temporary Kessel\nCatastrophe Kessel Yellow\n\tMoves: If the G sac was the most common, I wish the rules writer would have used that as the example instead of the yellow sac. :)\n\tTwoShort: Yellow sacs are also very important. Most attacks will involve moving multiple pieces into an enemy system at once and/or moving one pieice multiple steps. (An "attack" meaning generically either moving in more pieces than they can take with red while you have a sac-able red elsewhere, or moving in enough pieces to cause a catastrophe.) So late in the game, Y3s are generally the most valuable pieces; and I'd really like to set up to take them now that they are available.\r\n But, for the super-topical example, if it were your turn now you could sac your y2 to move either your y1 or your g1 to a 3 star and then to my homeworld, and cause a catastrophe of the relevant color. I lose more than you in either of those, so instead I'm going to take even losses by sac'ing my own y2....\r\n \r\n\n\n19) Moves: Trade G2 Y2 Moves\n\tTwoShort: Where I said "3 star", I should have said "2 point star"\n\tMoves: heh, I forgot the star counted for catastrophe as well...\n\n20) TwoShort: Discover G1 Twoshort G2 Grendel\n\tTwoShort: So I mentioned before that you generally don't want move ships to stars of the same color. The reason you would want to do it sometimes is if your whole purpose is to pull the star piece out of the stash.\n\n21) Moves: Build Y1 Moves\n\n22) TwoShort: Trade G2 Y2 Bluonia\n\n23) Moves: Build G2 Moves\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluonia\nBuild Y3 Twoshort\nBuild G3 Twoshort\n\n25) Moves: Discover Y1 Moves Y3 Aimless\n\n26) TwoShort: Sacrifice Y1 Twoshort\nDiscover G1 Grendel Y3 Yolonda\n\n27) Moves: Trade G2 R2 Moves\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G2 Bluonia\nBuild G3 Twoshort\n\n29) Moves: Move Y2 Moves Kuat\n\n30) TwoShort: Trade G2 R2 Bluonia\n\n31) Moves: Move G1 Kuat Moves\n\n32) TwoShort: Sacrifice Y2 Bluonia\nMove G2 Yolonda Moves\nMove G1 Yolonda Moves\nCatastrophe Moves Green\n\n33) Moves: Trade R2 G2 Moves\n\n34) TwoShort: Sacrifice Y3 Twoshort\nDiscover G3 Twoshort B2 Goodgame\nDiscover G3 Goodgame B3 Thanks\nMove G3 Thanks Moves\n\tMoves: uhhgg...\n\n\nHomeworlds Online (SDG# 15885)\nVariants: "Hard time"\nStarted: 2010.3.21, Ended: 2010.3.24\nParticipants: shmil1 (S), dlwillson (N)\nWinner: shmil1\n\n1) dlwillson: Homeworld B3 R1 G3\n\n2) shmil1: Homeworld B1 R2 G3\n\tdlwillson: Thanks for playing with me again, Shmil1. :-)\n\n3) dlwillson: Build G1 Dlwillson\n\n4) shmil1: Build G1 Shmil1\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) shmil1: Build G1 Shmil1\n\n7) dlwillson: B Y1 Dlwillson\n\n8) shmil1: Trade G1 B1 Shmil1\n\n9) dlwillson: D Y1 Dlwillson B2 Potato\n\n10) shmil1: Build G1 Shmil1\n\n11) dlwillson: Build Y1 Dlwillson\n\n12) shmil1: Build B1 Shmil1\n\n13) dlwillson: Discover Y1 Dlwillson G2 Rutabaga\n\n14) shmil1: Trade G1 R1 Shmil1\n\n15) dlwillson: Build Y2 Dlwillson\n\n16) shmil1: Build R1 Shmil1\n\n17) dlwillson: Discover Y1 Rutabaga B3 Carrot-of-doom\n\n18) shmil1: Pass\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Carrot-of-doom\nBuild Y2 Dlwillson\nBuild Y3 Carrot-of-doom\n\n20) shmil1: Trade G3 Y3 Shmil1\n\n21) dlwillson: Trade Y2 R2 Carrot-of-doom\n\n22) shmil1: Build Y2 Shmil1\n\n23) dlwillson: Move R2 Carrot-of-doom Shmil1 Cat Red Shmil1\n\n24) shmil1: Sacrifice Y3 Shmil1\nMove Y2 Shmil1 Carrot-of-doom\nMove Y2 Carrot-of-doom Potato\nMove Y2 Potato Dlwillson\nCatastrophe Dlwillson Yellow\n\n\tdlwillson: Ha! Same way as last time you won! Apparently, I learn slowly. AND my red catastrophe didn't get in. Not that it would have mattered. Good job, Shmil1.\n\nHomeworlds Online (SDG# 15846)\nStarted: 2010.3.21, Ended: 2010.5.11\nParticipants: mathochist (S), Professor_Rabbit (N)\nWinner: mathochist\n\n1) Professor_Rabbit: Homeworld R1 G2 B3\n\n2) mathochist: Homeworld R1 B3 G3\n\n3) Professor_Rabbit: Build B1 Professor_rabbit\n\n\n4) mathochist: Build G1 Mathochist\n\n5) Professor_Rabbit: Trade B1 Y1 Professor_rabbit\n\n6) mathochist: Trade G1 Y1 Mathochist\n\n7) Professor_Rabbit: Discover Y1 Professor_rabbit G3 Alpha\n\n8) mathochist: Build G1 Mathochist\n\n9) Professor_Rabbit: Build Y1 Alpha\n\n10) mathochist: Build Y2 Mathochist\n\n11) Professor_Rabbit: Build Y2 Alpha\n\n12) mathochist: Sacrifice Y2 Mathochist\nDiscover Y1 Mathochist B2 Beta\nMove Y1 Beta Alpha\nCatastrophe Alpha Yellow\n\n13) Professor_Rabbit: Build B1 Professor_rabbit\n\n\n\n14) mathochist: Trade G1 R1 Mathochist\n\n15) Professor_Rabbit: Trade B1 Y1 Professor_rabbit\n\n\n16) mathochist: Build R2 Mathochist\n\n17) Professor_Rabbit: Discover Y1 Professor_rabbit Y3 Delta\n\n18) mathochist: Trade R2 Y2 Mathochist\n\n\tmathochist: Hello?\n\nHomeworlds Online (SDG# 15883)\nStarted: 2010.3.22, Ended: 2010.3.29\nParticipants: llasram (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) llasram: Homeworld R1 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) llasram: Build G1 Llasram\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) llasram: Trade G1 Y1 Llasram\n\n7) TwoShort: Build G1 Twoshort\n\n8) llasram: Build G1 Llasram\n\n9) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n10) llasram: Discover G1 Llasram B3 Starb3a\n\n11) TwoShort: Build G1 Twoshort\n\n12) llasram: Build G2 Llasram\n\n13) TwoShort: Build Y1 Twoshort\n\n14) llasram: Build Y2 Llasram\n\n15) TwoShort: Build Y2 Twoshort\n\n16) llasram: Trade Y1 B1 Llasram\n\n17) TwoShort: Build G2 Bluonia\n\n18) llasram: Sacrifice G3 Llasram\nBuild G2 Llasram\nBuild G3 Starb3a\nBuild G3 Llasram\n\n19) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Bluonia Starb3a\nMove G1 Starb3a Llasram\nCatastrophe Llasram Green\n\n\nHomeworlds Online (SDG# 15889)\nVariants: "Hard time"\nStarted: 2010.3.23, Ended: 2010.4.15\nParticipants: agentofchaos (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld R3 B1 G3\n\n2) agentofchaos: Homeworld B2 R1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\tagentofchaos: enjoy the game\n\n4) agentofchaos: Build G1 Agentofchaos\n\tdlwillson: You too! Thanks for taking one of my games!\n\tagentofchaos: My pleasure\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) dlwillson: Discover Y1 Dlwillson B2 Smorgasbord\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) dlwillson: B Y2 Dlwillson\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) dlwillson: Discover Y1 Dlwillson G2 Buffet\n\n14) agentofchaos: Trade G1 R1 Agentofchaos\n\n15) dlwillson: Build G1 Dlwillson\n\n16) agentofchaos: Discover Y2 Agentofchaos G3 Dagon\n\n17) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Smorgasbord\nBuild Y3 Buffet\nBuild Y3 Dlwillson\n\n18) agentofchaos: Build Y3 Dagon\n\n19) dlwillson: Sacrifice Y2 Dlwillson\nMove Y1 Buffet Dagon\nMove Y1 Smorgasbord Dagon\nCatastrophe Dagon Yellow\n\n20) agentofchaos: Build R1 Agentofchaos\n\n21) dlwillson: B G1 Dlwillson\n\n22) agentofchaos: Build Y1 Agentofchaos\n\n23) dlwillson: Move G1 Dlwillson Smorgasbord\n\n\tdlwillson: Agent... You're running awfully short on time. Are you still thinking?\n\nHomeworlds Online (SDG# 15916)\nVariants: "Hard time"\nStarted: 2010.3.24, Ended: 2010.4.8\nParticipants: rootbier (S), shmil1 (N)\nWinner: rootbier\n\n1) shmil1: Homeworld Y1 B3 G3\n\n2) rootbier: Homeworld B2 R2 G3 *\n\n3) shmil1: Build G1 Shmil1\n\trootbier: if you have no homeworld defense i am going brutal style :) but then i always make dumb mistakes so don't worry too much. good luck :)\n\n4) rootbier: Build G1 Rootbier\n\n5) shmil1: Trade G1 R1 Shmil1\n\n6) rootbier: Trade G1 Y1 Rootbier\n\trootbier: right. guess that's all it takes eh. this is maybe my fifth or sixth game ever (including face-to-face with icehouse pieces)\n\n7) shmil1: Build G1 Shmil1\n\n8) rootbier: Build G1 Rootbier\n\n9) shmil1: Trade G1 B1 Shmil1\n\n10) rootbier: Trade G1 R1 Rootbier\n\n11) shmil1: Build R1 Shmil1\n\n12) rootbier: Discover R1 Rootbier G3 Bagatelle\n\n13) shmil1: Build R2 Shmil1\n\n14) rootbier: Build Y1 Rootbier\n\n15) shmil1: Trade R2 Y2 Shmil1\n\n16) rootbier: Move Y1 Rootbier Bagatelle\n\n17) shmil1: Build R2 Shmil1\n\n18) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Bagatelle\nBuild Y2 Bagatelle\nBuild Y3 Rootbier\n\n19) shmil1: Sacrifice Y2 Shmil1\nMove R1 Shmil1 Rootbier\nMove R1 Shmil1 Rootbier\n\n20) rootbier: Build R2 Bagatelle\n\n21) shmil1: Sacrifice G3 Shmil1\nBuild R3 Shmil1\nBuild B1 Shmil1\nBuild R3 Rootbier\nCatastrophe Rootbier Red\n\n22) rootbier: Trade Y3 R3 Rootbier\n\n23) shmil1: Trade R2 G2 Shmil1\n\n24) rootbier: Trade Y1 G1 Rootbier\n\n25) shmil1: Move B1 Shmil1 Rootbier\n\n26) rootbier: Attack B1 Rootbier\n\n27) shmil1: Build B1 Shmil1\n\n28) rootbier: Sacrifice Y1 Bagatelle\nMove B1 Rootbier Shmil1\nCatastrophe Shmil1 Blue\n\trootbier: I like your style. Sacrifice kaboom... but don't you need one more blue to make that work? I take this one. You send the next. I take that one. We're still only at three here. Guess I'll find out.\n\n29) shmil1: Discover G2 Shmil1 B3 Obloha\n\n30) rootbier: Sacrifice Y2 Bagatelle\nMove Y2 Bagatelle Rootbier\nMove Y2 Rootbier Obloha\n\n31) shmil1: Build G1 Obloha\n\trootbier: or you could do that\n\n32) rootbier: Sacrifice R2 Bagatelle\nAttack G1 Obloha\nAttack G2 Obloha\n\n33) shmil1: Pass\n\n34) rootbier: Build Y1 Obloha\n\n\trootbier: you know this is going to take a while -- more or less for no reason. i build some yellows drop em in on you. bye bye homeworld.\n\nHomeworlds Online (SDG# 15920)\nVariants: "Hard time"\nStarted: 2010.3.24, Ended: 2010.4.2\nParticipants: dlwillson (S), dethdukk (N)\nWinner: dlwillson\n\n1) dethdukk: Homeworld R3 B1 G3\n\n2) dlwillson: Homeworld B3 R2 G3\n\n3) dethdukk: Build G1 Dethdukk\n\n4) dlwillson: Build G1 Dlwillson\n\n\nHomeworlds Online (SDG# 15914)\nVariants: "Hard time"\nStarted: 2010.3.26, Ended: 2010.5.8\nParticipants: Danner (S), jeep (N)\nWinner: Danner\n\n1) jeep: Homeworld R1 B2 G3\n\tDanner: Hi! Have a great game!\n\n2) Danner: Homeworld B1 G2 R3\n\tjeep: Thanks, you too.\n\n3) jeep: B G1 Jeep\n\n4) Danner: Build R1 Danner\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Danner: Build R1 Danner\n\n7) jeep: Build G1 Jeep\n\n8) Danner: Trade R3 Y3 Danner\n\n9) jeep: Build Y1 Jeep\n\n10) Danner: Build R2 Danner\n\n11) jeep: B Y1 Jeep\n\n12) Danner: Discover R1 Danner Y3 Garrett\n\n13) jeep: Discover Y1 Jeep G3 Stage\n\n14) Danner: Build R2 Danner\n\n15) jeep: Build Y2 Jeep\n\n16) Danner: Move R2 Danner Stage\n\n17) jeep: Discover Y1 Stage Y2 Far\n\n18) Danner: Build R2 Stage\n\n19) jeep: Discover Y1 Jeep R3 Cornhuskers\n\n20) Danner: Build R3 Danner\n\n21) jeep: Sacrifice G3 Jeep\nBuild Y2 Cornhuskers\nBuild Y3 Jeep\nBuild G1 Jeep\n\n22) Danner: Trade R3 B3 Danner\n\n23) jeep: T G1 B1 Jeep\n\n24) Danner: Build R3 Danner\n\n25) jeep: Discover Y1 Jeep R3 Store\n\tjeep: Heh, oops, I got ahead of myself there. Was going to stop that...\n\n26) Danner: Move B3 Danner Cornhuskers\n\n27) jeep: Sacrifice Y2 Cornhuskers\nDiscover Y1 Cornhuskers Y2 Hrm\nPass\n\n28) Danner: Trade R2 G2 Danner\n\n29) jeep: Build G1 Jeep\n\n30) Danner: Move G2 Danner Store\n\n31) jeep: Discover Y1 Store R2 Depression\n\n32) Danner: Move R1 Garrett Jeep\n\n33) jeep: Build G1 Jeep\n\n34) Danner: Sacrifice Y3 Danner\nMove R2 Stage Jeep\nMove R2 Stage Jeep\nMove B3 Cornhuskers Jeep\nCatastrophe Jeep R\n\tjeep: I sure wish I'd noticed the small universe immediately. ;) You've played it well and I've let you get me over the barrel.\n\tDanner: Thx :)\n\n\nHomeworlds Online (SDG# 15946)\nVariants: "Hard time"\nStarted: 2010.3.27, Ended: 2010.4.9\nParticipants: ZackStack (S), alexcobo (N)\nWinner: ZackStack\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Have a good game Alex!\n\n3) alexcobo: Build Y1 Alexcobo\n\talexcobo: You too Zack!\n\n4) ZackStack: Build G1 Zackstack\n\n5) alexcobo: Trade Y1 R1 Alexcobo\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n\tZackStack: Hmmm... that was unclimactic. Shoot me a rematch when you have the time :-)\n\nHomeworlds Online (SDG# 15891)\nStarted: 2010.3.28, Ended: 2010.8.11\nParticipants: wmreed (S), mathochist (N)\nWinner: wmreed\n\n1) mathochist: H R1 B2 G3\n\n2) wmreed: Homeworld B3 G1 Y3\n\n3) mathochist: B G1 Mathochist\n\twmreed: Hello! Have you been playing Homeworlds long?\n\tmathochist: Just learned a few weeks ago, actually. You?\n\n4) wmreed: B Y1 Wmreed\n\n5) mathochist: T G1 Y1 Mathochist\n\twmreed: A while, but not often. \n\n6) wmreed: D Y1 Wmreed G2 Alice\n\n7) mathochist: Build G1 Mathochist\n\n8) wmreed: B Y1 Wmreed\n\n9) mathochist: Build Y2 Mathochist\n\n10) wmreed: T Y1 R1 Wmreed\n\n11) mathochist: Build G1 Mathochist\n\n12) wmreed: Build Y1 Wmreed\n\n13) mathochist: Discover G1 Mathochist B3 Hatter\n\n14) wmreed: B Y2 Alice\n\n15) mathochist: D Y1 Mathochist G3 Cheshire\n\n16) wmreed: Trade Y1 B1 Wmreed\n\n17) mathochist: S G3 Mathochist\nB G2 Hatter\nB G2 Mathochist\nB G3 Mathochist\n\n18) wmreed: Trade Y3 G3 Wmreed\n\n19) mathochist: S G3 Mathochist\nB G3 Mathochist\nB Y1 Mathochist\nB Y2 Cheshire\n\n20) wmreed: M Y1 Alice Wmreed\n\tmathochist: Thought I was still in another game; the command box still held the text from my move in that game. Oops\n\n21) mathochist: Discover G1 Mathochist Y3 Tweedledee\n\n22) wmreed: B B1 Wmreed\n\n23) mathochist: Trade Y1 B1 Mathochist\n\n24) wmreed: Move B1 Wmreed Alice\n\n25) mathochist: S G3 Mathochist\nB Y1 Mathochist\nB Y3 Mathochist\nB G3 Mathochist\n\n26) wmreed: Build R1 Wmreed\n\n27) mathochist: T Y2 R2 Mathochist\n\n28) wmreed: Move R1 Wmreed Alice\n\n29) mathochist: M R2 Mathochist Tweedledee\n\n30) wmreed: Build R2 Alice\n\n31) mathochist: T G2 R2 Hatter\n\n32) wmreed: Trade R2 G2 Alice\n\n33) mathochist: S Y2 Cheshire\nM G1 Hatter Alice\nM G1 Tweedledee Alice\nC Alice G\n\n34) wmreed: Build Y2 Wmreed\n\n35) mathochist: Build Y2 Cheshire\n\n36) wmreed: Discover Y2 Wmreed B2 Mock\n\n37) mathochist: Move G2 Mathochist Tweedledee\n\n38) wmreed: T Y2 G2 Mock\n\n39) mathochist: B G1 Tweedledee\n\n40) wmreed: Build R1 Wmreed\n\n41) mathochist: Move R2 Tweedledee Mock\n\n42) wmreed: Sacrifice R1 Wmreed\nAttack R2 Mock\n\n43) mathochist: D G1 Tweedledee Y2 Tweedledum\n\n44) wmreed: T G3 R3 Wmreed\n\n45) mathochist: Build G1 Mathochist\n\tmathochist: Foo! I forgot you could do that :P\n\n46) wmreed: B Y2 Wmreed\n\n47) mathochist: Sacrifice G3 Mathochist\nBuild Y3 Mathochist\nBuild G2 Tweedledum\nBuild G3 Mathochist\n\n48) wmreed: B G3 Mock\n\n49) mathochist: Move Y3 Mathochist Hatter\n\n50) wmreed: Sacrifice Y1 Wmreed\nMove G3 Mock Cheshire\n\n51) mathochist: S G3 Mathochist\nB R1 Hatter\nB Y1 Hatter\nB G3 Mathochist\n\n52) wmreed: Sacrifice R1 Wmreed\nAttack Y2 Cheshire\n\n53) mathochist: Sacrifice Y3 Mathochist\nMove G1 Mathochist Cheshire\nMove G1 Tweedledum Cheshire\nMove R1 Hatter Tweedledum\nCatastrophe Cheshire G\n\n54) wmreed: Build Y1 Wmreed\n\n55) mathochist: Build G1 Mathochist\n\n56) wmreed: T Y1 G1 Wmreed\n\n57) mathochist: Sacrifice G3 Mathochist\nBuild G3 Mathochist\nBuild G3 Tweedledee\nBuild G3 Tweedledum\n\n58) wmreed: Build Y1 Wmreed\n\n59) mathochist: Sacrifice G3 Mathochist\nBuild Y2 Mathochist\nBuild Y3 Mathochist\nBuild G3 Mathochist\n\n60) wmreed: Move G1 Wmreed Mock\n\n61) mathochist: S G3 Mathochist\nB G3 Mathochist\nB B1 Mathochist\nB R1 Hatter\n\n62) wmreed: Move Y1 Wmreed Mock\n\n63) mathochist: Discover Y2 Mathochist R3 Cheshire\n\twmreed: Everything OK?\n\tmathochist: Yeah, just lots going on. Sorry!\n\n64) wmreed: Sacrifice G2 Mock\nBuild R2 Wmreed\nBuild R3 Mock\n\n\nHomeworlds Online (SDG# 15983)\nStarted: 2010.4.1, Ended: 2010.4.16\nParticipants: makertron (S), logikal (N)\nWinner: logikal\n\n1) logikal: Homeworld B1 Y2 G3\n\n2) makertron: Homeworld R3 B2 G3\n\n3) logikal: Build G1 Logikal\n\n4) makertron: Build G1 Makertron\n\n5) logikal: Discover G1 Logikal B3 L1\n\n6) makertron: Trade G1 Y1 Makertron\n\n7) logikal: Build G1 Logikal\n\n8) makertron: Build G1 Makertron\n\n9) logikal: Build G2 L1\n\n10) makertron: Discover G1 Makertron B1 Underage\n\n11) logikal: Trade G2 R2 L1\n\n12) makertron: Build G2 Underage\n\n13) logikal: Trade G1 Y1 L1\n\n14) makertron: Trade G1 R1 Underage\n\n15) logikal: Move G1 Logikal L1\n\n16) makertron: Build G1 Underage\n\n17) logikal: Build R1 L1\n\n18) makertron: Trade G1 Y1 Underage\n\n19) logikal: Build Y2 L1\n\n20) makertron: Build Y2 Underage\n\n21) logikal: Move Y1 L1 Logikal\n\n22) makertron: Build Y3 Makertron\n\n23) logikal: Build Y3 L1\n\n24) makertron: Build G1 Underage\n\n25) logikal: Discover Y1 Logikal Y3 L2\n\n26) makertron: Discover G1 Underage G3 Cumdumpster\n\n27) logikal: Move Y1 L2 Logikal\n\n28) makertron: Move Y2 Underage Cumdumpster\n\n29) logikal: Trade Y1 R1 Logikal\n\n30) makertron: Build R2 Underage\n\n31) logikal: Discover R2 L1 G2 L2\n\n32) makertron: Trade R1 B1 Underage\n\n33) logikal: Move Y3 L1 Underage\n\n34) makertron: Move Y3 Makertron Underage\n\n35) logikal: Sacrifice R2 L2\nAttack Y3 Underage\nAttack R2 Underage\n\n36) makertron: Move Y2 Cumdumpster Underage\nCatastrophe Underage Y\n\n37) logikal: Attack G2 Underage\n\n38) makertron: Build Y1 Makertron\n\n39) logikal: Attack B1 Underage\n\n40) makertron: Build G1 Makertron\n\n41) logikal: Sacrifice G3 Logikal\nBuild G2 Underage\nBuild G2 L1\nBuild G3 L1\n\n42) makertron: Discover G1 Makertron Y1 Spacehat\n\n43) logikal: Move G2 L1 Logikal\n\n44) makertron: Trade Y1 R1 Makertron\n\n45) logikal: Sacrifice G3 L1\nBuild G3 L1\nBuild R2 L1\nBuild R2 Underage\n\n46) makertron: Move R1 Makertron Spacehat\n\n47) logikal: Move G3 L1 Spacehat\n\n48) makertron: Build R3 Spacehat\n\n49) logikal: Sacrifice R1 L1\nAttack R3 Spacehat\n\n50) makertron: Build Y1 Makertron\n\n51) logikal: Sacrifice G3 Spacehat\nBuild G3 L1\nBuild R1 Logikal\nBuild R3 Spacehat\n\n52) makertron: Move R1 Spacehat Makertron\n\n53) logikal: Attack G1 Spacehat\n\n54) makertron: Build Y2 Makertron\n\n55) logikal: Build Y3 L1\n\n56) makertron: Build Y3 Makertron\n\n57) logikal: Build Y3 L1\nCatastrophe Makertron Yellow\n\n58) makertron: Trade R1 Y1 Makertron\n\n59) logikal: Sacrifice Y3 L1\nMove R3 Spacehat Makertron\nMove Y3 L1 Underage\nMove Y3 Underage Makertron\n\n60) makertron: Move G3 Makertron Spacehat\n\n61) logikal: Sacrifice R2 Underage\nAttack G3 Spacehat\nAttack Y1 Makertron\n\n\nHomeworlds Online (SDG# 15899)\nStarted: 2010.4.4, Ended: 2010.4.28\nParticipants: TwoShort (S), dlwillson (N)\nWinner: TwoShort\n\n1) dlwillson: Homeworld B3 R1 G3\n\n2) TwoShort: Homeworld B1 R2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) TwoShort: Build G1 Twoshort\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) dlwillson:\nB G1 Dlwillson\n\n8) TwoShort: Build G1 Twoshort\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\n10) TwoShort: Trade G1 B1 Twoshort\n\n11) dlwillson: Discover R1 Dlwillson G2 Dingo\n\n12) TwoShort: Build B1 Twoshort\n\n13) dlwillson: B G1 Dlwillson\n\n14) TwoShort: Discover B1 Twoshort G3 Grogar\n\n15) dlwillson: B G1 Dlwillson\n\n16) TwoShort: Build B2 Grogar\n\tTwoShort: Hadn't had coffee :)\n\n17) dlwillson: Discover G1 Dlwillson R2 Bingo\n\n18) TwoShort: Build G1 Twoshort\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dlwillson\nBuild G2 Bingo\nBuild G3 Dlwillson\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B2 Grogar\nBuild B2 Twoshort\n\n21) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Dingo\nBuild R2 Dingo\nBuild G3 Dlwillson\n\n22) TwoShort: Discover B1 Twoshort R3 Rover\n\n23) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Dlwillson\nBuild Y2 Dlwillson\nBuild G3 Dlwillson\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Twoshort\nBuild B3 Rover\nBuild G3 Twoshort\n\n25) dlwillson: Move Y1 Dlwillson Dingo\n\n26) TwoShort: Sacrifice B2 Grogar\nTrade B3 R3 Twoshort\nTrade B3 Y3 Rover\n\n27) dlwillson: Sacrifice G2 Dlwillson\nBuild Y2 Dingo\nBuild Y2 Dingo\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Rover\nBuild B3 Grogar\nBuild B3 Twoshort\n\n29) dlwillson: S Y2 Dingo\nD R1 Dingo Y3 Xerox\nD R1 Dingo Y3 Ditto\n\tdlwillson: I'm unlikely to win this one, so I'll have to take satisfaction from your doubled moves. OK, it's not much, but it's what I've got.\n\n30) TwoShort: Sacrifice Y3 Rover\nDiscover R3 Twoshort G3 Grover\nDiscover B2 Twoshort R3 Rogar\nMove B3 Grogar Dingo\n\tdlwillson: Large ships? We don't need no steenkeeng large ships. OK, we do.\n\n31) dlwillson: Sacrifice Y2 Dingo\nMove R2 Dingo Ditto\nMove R1 Ditto Twoshort\n\n32) TwoShort: Attack R1 Twoshort\n\n33) dlwillson: Sacrifice Y2 Dlwillson\nMove R1 Xerox Twoshort\nMove R2 Ditto Twoshort\nCatastrophe Twoshort Red\n\n34) TwoShort: Sacrifice B2 Rover\nTrade B3 Y3 Twoshort\nTrade B2 R2 Rogar\n\n35) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dlwillson\nBuild Y2 Dingo\nBuild G2 Dlwillson\n\n36) TwoShort: Sacrifice Y3 Twoshort\nMove R3 Grover Dingo\nMove R3 Dingo Dlwillson\nMove B3 Dingo Dlwillson\n\tTwoShort: I deduce from the Icehouse mailing list that you are in Denver? (I'm in Boulder) \n\n37) dlwillson: Sacrifice Y2 Dingo\nMove G1 Bingo Twoshort\nMove G2 Bingo Twoshort\n\tdlwillson: Yep, I'm in Denver. I'm Dethdukk's Dad. I hope you're not in a hurry for my turn; I haven't come up with any great ideas.\n\tTwoShort: No hurry... but I'll note that I don't see a way for you to stop me from victory in 3. \n\tdlwillson: Neither do I. Ah well. Why'd you ask about the location? Want to play with real plastic sometime?\n\n38) TwoShort: Sacrifice R2 Rogar\nAttack G2 Dlwillson\nAttack Y2 Dlwillson\n\tTwoShort: I'm always curious where online opponents are, and it's kind of neat to find one not all that far away. I'm theoretically interested in playing in person some time, but practically, my schedule is often busy and I don't own a car :) If you keep me apprised (directly or via the Icehouse mailing list) of the progress of this "Icehouse Games at Tacticon" concept, I'll most likely be there.\n\n39) dlwillson: Build G3 Twoshort\nCatastrophe Twoshort G\n\tdlwillson: Your playing a game with my brother-in-law, SilentTitan! Two more turns...\n\n40) TwoShort: Sacrifice R3 Dlwillson\nAttack G1 Dlwillson\nAttack Y1 Dlwillson\nPass\n\n\n\tdlwillson: Good game. Let me know if you want to come to my next Pyramid Party. I have another friend in Boulder, and I could ask him to pick you up.\n\tTwoShort: Thanks for the game. As far as pyramid parties, I'd certainly like to hear of such things, just don't be offended if I can't make it :) It's as much a question of scheduling as transportation, as I have many time-consuming activities (notably, two children).\n\nHomeworlds Online (SDG# 16017)\nStarted: 2010.4.5, Ended: 2010.4.15\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: SilentTitan\n\n1) dlwillson: Homeworld R3 Y1 G3 *\n\n2) SilentTitan: Homeworld Y3 B2 G3\n\tdlwillson: Heh... Let's see what happens here. OOP! Late for dinner is what happens! Bye\n\n3) dlwillson: Build G1 Dlwillson\n\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dlwillson: Discover G1 Dlwillson B2 Fungo\n\n6) SilentTitan: Discover G1 Silenttitan Y1 Escort\n\n7) dlwillson: Trade G1 Y1 Fungo\n\n8) SilentTitan: Discover G1 Escort Y3 Vanbytheriver\n\n9) dlwillson: B G1 Dlwillson\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) dlwillson: Move G1 Dlwillson Fungo\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) dlwillson: B G2 Dlwillson\n\n14) SilentTitan: Trade G1 R1 Silenttitan\n\n15) dlwillson: Build Y1 Fungo\n\n16) SilentTitan: Trade G2 Y2 Silenttitan\n\n17) dlwillson: B Y2 Fungo\n\n18) SilentTitan: Move G1 Vanbytheriver Fungo\n\n19) dlwillson: T Y2 R2 Fungo\n\n\n20) SilentTitan: Discover Y2 Silenttitan G1 Fin\n\n21) dlwillson: A G1 Fungo\n\n22) SilentTitan: Build Y2 Fin\n\n23) dlwillson: Discover Y1 Fungo B1 Dingo\n\n24) SilentTitan: Discover Y2 Fin B2 Done\n\n25) dlwillson: Sacrifice G2 Dlwillson\nBuild Y2 Fungo\nBuild Y3 Dingo\n\n26) SilentTitan: Trade Y2 G2 Done\n\n27) dlwillson: Build G2 Dlwillson\n\n28) SilentTitan: Build G2 Done\n\n29) dlwillson: Trade Y1 B1 Fungo\n\n\tdlwillson: Grr... Same oversight TWICE. Let's see if I can't win one of the other ones.\n\tdlwillson: By the way, you played an excellent game. Sorry for grumbling. I was just annoyed at myself.\n\tSilentTitan: I understand\n\nHomeworlds Online (SDG# 15976)\nStarted: 2010.4.6, Ended: 2010.9.18\nParticipants: Mandrel (S), dethdukk (N)\nWinner: Mandrel\n\n1) dethdukk: Homeworld B3 R1 G3\n\n2) Mandrel: Homeworld B2 R1 G3\n\n3) dethdukk: Build G1 Dethdukk\n\n4) Mandrel: Build G1 Mandrel\n\n5) dethdukk: Trade G1 R1 Dethdukk\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) dethdukk: Build R2 Dethdukk\n\n8) Mandrel: Build Y1 Mandrel\n\n9) dethdukk: Trade R2 Y2 Dethdukk\n\n10) Mandrel: Trade Y1 B1 Mandrel\n\n11) dethdukk: Build R2 Dethdukk\n\n12) Mandrel: Build Y1 Mandrel\n\n13) dethdukk: Discover R1 Dethdukk G2 Leaps\n\n14) Mandrel: Build G1 Mandrel\n\n15) dethdukk: Build R2 Leaps\n\n16) Mandrel: Discover Y1 Mandrel G3 Imposition\n\n17) dethdukk: Build R2 Dethdukk\n\n18) Mandrel: Build Y1 Mandrel\n\n19) dethdukk: Build Y2 Dethdukk\n\n20) Mandrel: Build Y2 Imposition\n\n\nHomeworlds Online (SDG# 16027)\nVariants: "Hard time"\nStarted: 2010.4.6, Ended: 2010.4.27\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld Y1 B2 G3\n\n2) dlwillson: Homeworld B3 Y1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dlwillson: Build G1 Dlwillson\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dlwillson: Build G1 Dlwillson\n\n7) SilentTitan: Build Y2 Silenttitan\n\n8) dlwillson: D G1 Dlwillson B2 Bell\n\n9) SilentTitan: Discover Y1 Silenttitan G3 Dell\n\n10) dlwillson: Discover G1 Dlwillson B2 Well\n\n11) SilentTitan: Build Y2 Dell\n\n12) dlwillson: Build G1 Dlwillson\n\n13) SilentTitan: Build Y2 Silenttitan\n\n14) dlwillson: B G2 Dlwillson\n\n15) SilentTitan: Build Y3 Dell\n\n16) dlwillson: Trade G1 R1 Dlwillson\n\n17) SilentTitan: Move Y3 Dell Bell\n\n18) dlwillson: Sacrifice G2 Dlwillson\nBuild G1 Dlwillson\nBuild G2 Well\n\n19) SilentTitan: Trade Y3 R3 Bell\n\n20) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Bell\nBuild G2 Well\nBuild G3 Dlwillson\n\n21) SilentTitan: Attack G2 Bell\n\n22) dlwillson: Trade G2 R2 Well\n\n23) SilentTitan: Attack G1 Bell\n\n24) dlwillson: Trade G1 B1 Dlwillson\n\n25) SilentTitan: Sacrifice Y2 Silenttitan\nMove G2 Bell Dlwillson\nMove G1 Bell Dlwillson\n\n26) dlwillson: Sacrifice R2 Well\nAttack G1 Dlwillson\nAttack G2 Dlwillson\n\n27) SilentTitan: Build Y2 Dell\n\n28) dlwillson: Trade G2 R2 Dlwillson\n\n29) SilentTitan: Sacrifice Y2 Dell\nDiscover Y2 Dell R2 Sell\nDiscover Y1 Dell Y2 Cell\n\n30) dlwillson: M G3 Dlwillson Sell\n\n31) SilentTitan: Discover Y2 Sell G3 Pell\n\n32) dlwillson: M R1 Dlwillson Cell\n\n33) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Pell\nBuild Y3 Cell\nBuild Y3 Silenttitan\n\tdlwillson: Pell? What's Pell?\n\n34) dlwillson: A Y1 Cell\n\n35) SilentTitan: Sacrifice R3 Bell\nAttack R1 Cell\nAttack Y1 Cell\nPass\n\n36) dlwillson: B G1 Sell\n\n37) SilentTitan: Move Y3 Cell Dlwillson\n\n38) dlwillson: Move R2 Dlwillson Cell\n\n39) SilentTitan: Sacrifice R1 Cell\nAttack G1S Dlwillson\n\n40) dlwillson: Sacrifice R2 Cell\nAttack G1 Dlwillson\nPass\n\n41) SilentTitan: Trade Y3 R3 Silenttitan\n\n42) dlwillson: Sacrifice G3 Sell\nBuild G2 Dlwillson\nBuild G2 Dlwillson\nBuild B1 Dlwillson\n\n43) SilentTitan: Sacrifice R3 Silenttitan\nAttack G2S Dlwillson\nAttack G2S Dlwillson\nAttack G1S Dlwillson\n\n44) dlwillson: T B1 R1 Dlwillson\n\n45) SilentTitan: Trade G1 B1 Dlwillson\n\tSilentTitan: Pell Mell... I thought you'd name the next system Mell.... \r\n\n\n46) dlwillson: Sacrifice G2 Well\nBuild B1 Dlwillson\nBuild G1 Well\nCatastrophe Dlwillson Blue\n\tdlwillson: We never got to Mell. I kept expecting Heck.\n\n47) SilentTitan: Sacrifice Y3 Pell\nMove Y1 Cell Pell\nMove Y1 Pell Dlwillson\nMove Y2 Pell Dlwillson\nCatastrophe Dlwillson Y\n\n\nHomeworlds Online (SDG# 16028)\nVariants: "Hard time"\nStarted: 2010.4.6, Ended: 2010.5.10\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld G3 R2 B3\n\n2) dlwillson: Homeworld R3 B1 G3\n\n3) SilentTitan: Build B1 Silenttitan\n\n4) dlwillson: Build G1 Dlwillson\n\n5) SilentTitan: Trade B1 Y1 Silenttitan\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) SilentTitan: Build B1 Silenttitan\n\n8) dlwillson: B G1 Dlwillson\n\n9) SilentTitan: Discover B1 Silenttitan B1 Runningaway\n\n10) dlwillson: Build G1 Dlwillson\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) dlwillson: Discover G1 Dlwillson Y2 Silentrunning\n\n13) SilentTitan: Discover B2 Silenttitan R1 Cheeto\n\n14) dlwillson: B G1 Silentrunning\n\n15) SilentTitan: Build B2 Silenttitan\n\n16) dlwillson: Discover G1 Silentrunning R1 Dorito\n\n17) SilentTitan: Discover B2 Silenttitan Y1 Wrench\n\n18) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dorito\nBuild G2 Silentrunning\nBuild G2 Dlwillson\n\n19) SilentTitan: Trade B3 G3 Silenttitan\n\n20) dlwillson: Build G3 Dlwillson\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Cheeto\nBuild B3 Wrench\nBuild B3 Wrench\n\n22) dlwillson: Sacrifice Y1 Dlwillson\nMove G2 Dorito Silenttitan\n\n23) SilentTitan: Move B3 Wrench Silenttitan\n\n24) dlwillson: Sacrifice G2 Silentrunning\nBuild G2 Silenttitan\nBuild G3 Silenttitan\nCatastrophe Silenttitan Green\n\n25) SilentTitan: Sacrifice B2 Cheeto\nTrade B2 Y2 Cheeto\nTrade B3 G3 Wrench\n\n26) dlwillson: T G2 Y2 Dlwillson\n\n27) SilentTitan: Sacrifice G3 Wrench\nBuild Y1 Cheeto\nBuild Y3 Cheeto\nBuild Y3 Silenttitan\n\n28) dlwillson: Build Y3 Dlwillson\n\n29) SilentTitan: Sacrifice Y3 Cheeto\nMove Y1 Silenttitan Cheeto\nDiscover Y1 Cheeto B2 Screwdriver\nDiscover Y1 Cheeto B2 Toast\n\n30) dlwillson: D Y3 Dlwillson G2 Taco\n\n31) SilentTitan: Trade B3 G3 Silenttitan\n\n32) dlwillson: B Y3 Taco\n\n33) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Runningaway\nBuild B3 Wrench\nBuild B3 Wrench\n\n34) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dlwillson\nBuild G2 Dorito\nBuild G3 Dlwillson\n\n35) SilentTitan: Sacrifice B2 Wrench\nTrade B3 R3 Wrench\nTrade B3 G3 Runningaway\n\n36) dlwillson: Sacrifice Y3 Taco\nDiscover G2 Dorito Y3 Cheese\nDiscover G1 Dorito B3 Justlikemoms\nDiscover G2 Dlwillson B2 Mysterymeat\n\n37) SilentTitan: Sacrifice Y2 Cheeto\nMove G3 Runningaway Cheese\nMove B3 Wrench Taco\n\n38) dlwillson: Sacrifice Y2 Dlwillson\nDiscover Y3 Taco R3 Spaghetti\nDiscover G1 Silentrunning B3 Burnt\n\n39) SilentTitan: Sacrifice R3 Wrench\nAttack G2S Cheese\nPass\nPass\n\n40) dlwillson: Sacrifice G2 Mysterymeat\nBuild G2 Justlikemoms\nBuild G3 Burnt\n\n41) SilentTitan: Sacrifice G3 Cheese\nBuild Y1 Silenttitan\nBuild Y2 Toast\nBuild G3 Cheese\n\n42) dlwillson: Trade G3 R3 Burnt\n\n43) SilentTitan: Sacrifice Y2 Toast\nMove G3 Cheese Toast\nMove G3 Toast Dlwillson\n\n44) dlwillson: Sacrifice Y3 Spaghetti\nMove R3 Burnt Toast\nMove G2 Justlikemoms Runningaway\nMove R3 Toast Dlwillson\n\n45) SilentTitan: Sacrifice G3 Dlwillson\nBuild Y2 Toast\nBuild Y2 Screwdriver\nBuild G3 Cheese\n\n46) dlwillson: T G3 Y3 Dlwillson\n\n47) SilentTitan: Sacrifice B3 Taco\nTrade B1 R1 Runningaway\nTrade Y1 R1 Screwdriver\nTrade Y1 R1 Toast\n\n48) dlwillson: T R3 B3 Dlwillson\n\n49) SilentTitan: Sacrifice G3 Cheese\nBuild R2 Toast\nBuild R2 Screwdriver\nBuild R3 Runningaway\n\n50) dlwillson: S G2 Runningaway\nB G2 Justlikemoms\nB G2 Burnt\n\n51) SilentTitan: Sacrifice G2 Cheese\nBuild Y1 Screwdriver\nBuild Y1 Toast\n\n52) dlwillson: B G2 Justlikemoms\n\n53) SilentTitan: Trade R3 G3 Runningaway\n\n54) dlwillson: Build G3 Dlwillson\n\n55) SilentTitan: Sacrifice G3 Runningaway\nBuild R3 Screwdriver\nBuild R3 Toast\nBuild Y2 Silenttitan\n\n56) dlwillson: Move Y3 Dlwillson Silenttitan\nCatastrophe Silenttitan Yellow\n\n\tSilentTitan: Geez.. I hope I don't need a third color anywhere\n\tdlwillson: Thanks Tripp! :-)\n\tSilentTitan: I had no idea you could do that... I thought you had to still maintain the enty point I started the game with .... I would have never had done that had I known. \n\nHomeworlds Online (SDG# 16044)\nStarted: 2010.4.8, Ended: 2010.5.24\nParticipants: dethdukk (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld R3 B1 G3\n\n2) dethdukk: Homeworld G3 B1 B3 *\n\n3) rootbier: Build G1 Rootbier\n\n4) dethdukk: Build B1 Dethdukk\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) dethdukk: Trade B1 Y1 Dethdukk\n\n7) rootbier: Build G1 Rootbier\n\n8) dethdukk: Build B1 Dethdukk\n\n9) rootbier: Trade G3 B3 Rootbier\n\n10) dethdukk: Discover B1 Dethdukk G2 Planetx\n\n11) rootbier: Discover G1 Rootbier Y2 Bagatelle\n\n12) dethdukk: Build B2 Planetx\n\n13) rootbier: Build G1 Bagatelle\n\n14) dethdukk: Build B2 Dethdukk\n\n15) rootbier: Move G1 Bagatelle Dethdukk\n\n16) dethdukk: Trade B2 R2 Dethdukk\n\n17) rootbier: Build G1 Dethdukk\n\n\nHomeworlds Online (SDG# 16069)\nVariants: "Hard time"\nStarted: 2010.4.9, Ended: 2010.4.25\nParticipants: rootbier (S), jonaskoelker (N)\nWinner: rootbier\n\n1) jonaskoelker: Homeworld B1 R2 G3\n\n2) rootbier: Homeworld R3 B1 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) rootbier: Build G1 Rootbier\n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) jonaskoelker: Build G1 Jonaskoelker\n\n8) rootbier: Build G1 Rootbier\n\n\trootbier: oh :( bad ladder hard time :(\n\tjonaskoelker: Evil, naughty, distracting girlfriend :D\r\n\n\trootbier: lucky tricksy bastard :P\n\nHomeworlds Online (SDG# 15967)\nStarted: 2010.4.9, Ended: 2010.5.11\nParticipants: sucotronic (S), mathochist (N)\nWinner: mathochist\n\n1) mathochist: Homeworld R1 B2 G3\n\tsucotronic: star1 star2 ship\n\n2) sucotronic: Homeworld B3 G1 R3\n\tmathochist: you want to enter "homeworld colorsize colorsize colorsize", picking your stars & ship. For example, "homeworld blue1 yellow3 green3" would give you a small blue and large yellow for stars, and a large green ship.\n\tsucotronic: homeworld Y3 B1 R3\n\tsucotronic: homeworld yellow3 blue1 red3\n\n3) mathochist: B G1 Mathochist\n\tsucotronic: thanks for info, this is my first time in superdupergames and I'm a bit lost :P\n\tmathochist: Yeah, the interface isn't exactly intuitive. Looks like you figured it out. :) you probably want to read the wiki (click the link in the red bar, above). You can abbreviate commands and colors to their first letters, too.\n\n4) sucotronic: Build R1 Sucotronic\n\n5) mathochist: Trade G1 Y1 Mathochist\n\n6) sucotronic: Trade R1 Y1 Sucotronic\n\n7) mathochist: B G1 Mathochist\n\n8) sucotronic: Discover Y1 Sucotronic G2 Trantor\n\n9) mathochist: Discover G1 Mathochist Y3 Renton\n\n10) sucotronic: Build R1 Sucotronic\n\n11) mathochist: Build G1 Mathochist\n\n12) sucotronic: Trade R1 B1 Sucotronic\n\n13) mathochist: Sacrifice G3 Mathochist\nBuild G2 Mathochist\nBuild G2 Renton\nBuild G3 Mathochist\n\n14) sucotronic: Build R1 Sucotronic\n\n15) mathochist: Discover G2 Mathochist G3 Kent\n\n16) sucotronic: Build B1 Sucotronic\n\n17) mathochist: Sacrifice G3 Mathochist\nBuild G3 Mathochist\nBuild G3 Mathochist\nBuild Y1 Mathochist\n\n18) sucotronic: Build Y2 Trantor\n\n19) mathochist: M Y1 Mathochist Kent\n\n20) sucotronic: Discover Y2 Trantor B3 Terminus\n\n21) mathochist: S G3 Mathochist\nB G3 Mathochist\nB Y2 Mathochist\nB Y2 Kent\n\n\n\n22) sucotronic: Build Y3 Trantor\n\n23) mathochist: T Y1 B1 Mathochist\n\n24) sucotronic: Sacrifice Y3 Trantor\nMove Y2 Terminus Trantor\nMove Y2 Trantor Kent\nMove Y1 Trantor Kent\n\n25) mathochist: S G3 Mathochist\nB Y1 Mathochist\nB Y3 Mathochist\nB G2 Mathochist\nC Kent Y\n\n\n26) sucotronic: Trade R3 G3 Sucotronic\n\n27) mathochist: S Y3 Mathochist\nM B1 Mathochist Kent\nD B1 Kent R2 Temp\nM B1 Temp Sucotronic\nC Sucotronic B\n\n\n\tsucotronic: good played, maybe I have to practice a bit more before next game :P\n\tmathochist: Challenge me again any time :)\n\nHomeworlds Online (SDG# 16006)\nVariants: "Hard time"\nStarted: 2010.4.13, Ended: 2010.4.19\nParticipants: ZackStack (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Pass\n\n2) ZackStack: Homeworld B1 R2 G3\n\tdlwillson: I won the last game, you can have first turn if you like.\n\tZackStack: That was unneccessary... but thanks.\n\n3) dlwillson: H Y3 B2 G3\n\n4) ZackStack: Build G1 Zackstack\n\n5) dlwillson: Build G1 Dlwillson\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) dlwillson: T G1 B1 Dlwillson\n\n8) ZackStack: Build Y1 Zackstack\n\tZackStack: I see blue denial in my future :-)\n\n9) dlwillson: Build B1 Dlwillson\n\n10) ZackStack: Build Y1 Zackstack\n\n11) dlwillson: D B1 Dlwillson G1 Frog\n\n12) ZackStack: Discover Y1 Zackstack G3 Toad\n\n13) dlwillson: B G1 Dlwillson\n\tdlwillson: We'll see... I've never tried the "Blue Denial" strategy before, but Davey (dethdukk) swears it's nearly unbeatable. Says TwoShort uses it to great effect.\n\n\tdlwillson: I reset my move, hoping it would add some time to your timer, but no dice. Sorry. I'll change the cap on my standing challenge.\n\tZackStack: Thanks for trying... I just couldn't get free much to get on the computer this weekend.\n\nHomeworlds Online (SDG# 16103)\nVariants: "Hard time"\nStarted: 2010.4.14, Ended: 2010.5.5\nParticipants: mneme (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) mneme: Homeworld G3 B1 R3\n\n3) TwoShort: Build G1 Twoshort\n\n4) mneme: Build R1 Mneme\n\n5) TwoShort: Build G1 Twoshort\n\n6) mneme: Build R1 Mneme\n\n7) TwoShort: Trade G1 Y1 Twoshort\n\n8) mneme: Trade R3 Y3 Mneme\n\n9) TwoShort: Build G1 Twoshort\n\n10) mneme: Build R2 Mneme\n\n11) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n12) mneme: Trade R2 G2 Mneme\n\n13) TwoShort: Discover G1 Twoshort G3 Greedo\n\n14) mneme: Build R2 Mneme\n\n15) TwoShort: Build G1 Twoshort\n\tTwoShort: Sorry, saw the certain death right as I hit the button :)\n\n16) mneme: Discover R2 Mneme Y2 Staging\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Greedo\nBuild G2 Twoshort\nBuild G3 Twoshort\n\tmneme: heh. Yeah, that would have been kinda bad. \n\n18) mneme: Move R2 Staging Bluonia\n\n19) TwoShort: Trade G2 R2 Twoshort\n\n20) mneme: Attack G1 Bluonia\n\n21) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n22) mneme: Build Y1 Mneme\n\n23) TwoShort: Sacrifice G1 Greedo\nBuild G1 Yolonda\n\n24) mneme: Sacrifice G2 Mneme\nBuild R2 Mneme\nBuild R3 Bluonia\n\n25) TwoShort: Discover G1 Yolonda G2 Grinder\n\n26) mneme: Trade R3 Y3 Bluonia\n\n27) TwoShort: Build G2 Twoshort\n\n28) mneme: Build R3 Bluonia\n\tmneme: hmm. I didn't realize until I did it what your plan was and that I'd just foiled it. Kinda bemusing. \n\n29) TwoShort: Move R2 Twoshort Yolonda\n\tTwoShort: I'm excited to hear I had a plan :) Well, I guess I had faint hopes you'd do something else last turn, but that's about it. Overall, my long held "ignore the early monopoly if it is red" theory is not seeming so solid in practice...\n\n30) mneme: Discover R1 Mneme Y2 Hunter\n\tmneme: We'll see; I haven't beaten you yet. \n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild R3 Yolonda\nBuild Y1 Twoshort\n\n32) mneme: Build R3 Mneme\n\tTwoShort: Oh certainly; I'm not despairing, I just had higher hopes for the stratagem.\n\n33) TwoShort: Discover Y1 Twoshort B3 Blathe\n\n34) mneme: Sacrifice Y3 Mneme\nMove R1 Mneme Hunter\nMove R1 Hunter Yolonda\nMove R1 Hunter Yolonda\nCatastrophe Yolonda R\n\n35) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Blathe\nBuild Y2 Twoshort\nBuild G3 Twoshort\n\n36) mneme: Build Y2 Mneme\n\n37) TwoShort: Trade Y2 R2 Blathe\n\n38) mneme: Sacrifice Y1 Mneme\nMove R3 Bluonia Grinder\n\n39) TwoShort: Sacrifice G2 Greedo\nBuild G2 Grinder\nBuild G3 Yolonda\n\tmneme: sorry. My first analysis missed the r1 in hunter.\r\n\n\tTwoShort: No problem. I was briefly excited you hadn't done that, but oh well :)\n\n40) mneme: Sacrifice Y2 Mneme\nDiscover R3 Grinder Y3 Sign\nPass\n\n41) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Blathe\nBuild R1 Blathe\nBuild G3 Twoshort\n\n42) mneme: Trade R2 Y2 Mneme\n\n43) TwoShort: Trade Y1 B1 Blathe\n\n44) mneme: Move G1 Bluonia Grinder\nCatastrophe Grinder G\n\n45) TwoShort: Sacrifice Y2 Twoshort\nDiscover G1 Yolonda G2 Getit\nDiscover R1 Blathe G2 Gotit\n\n46) mneme: Move R2 Bluonia Gotit\n\n47) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yolonda\nBuild G1 Yolonda\nBuild G3 Twoshort\n\n48) mneme: Attack R1 Gotit\n\n49) TwoShort: Discover B1 Blathe Y2 Yelly\n\n50) mneme: Build R1 Mneme\n\tmneme: that factory was really irritating, you know?\n\tTwoShort: I guess it depends what side of the board you're on :)\n\n51) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y2 Blathe\nBuild G3 Twoshort\n\n52) mneme: Move R1 Mneme Getit\n\n53) TwoShort: Sacrifice G3 Yolonda\nBuild B1 Yelly\nBuild B2 Yelly\nBuild G3 Getit\n\n54) mneme: Attack G1 Getit\n\n55) TwoShort: Sacrifice Y2 Blathe\nMove B2 Yelly Mneme\nMove G1 Yolonda Yelly\n\n56) mneme: Attack B2 Mneme\n\n57) TwoShort: Move B1 Yelly Mneme\n\n58) mneme: Move B2 Mneme Gotit\n\n59) TwoShort: Sacrifice G3 Getit\nBuild B2 Mneme\nBuild B3 Mneme\nBuild G3 Yelly\n\n60) mneme: Trade R2 Y2 Gotit\nCatastrophe Mneme B\n\n61) TwoShort: Move G1 Yelly Mneme\n\n62) mneme: Attack G1 Mneme\n\n63) TwoShort: Move G3 Twoshort Mneme\n\n64) mneme: Sacrifice Y3 Bluonia\nMove G1 Mneme Twoshort\nMove B2 Gotit Mneme\nMove R3 Sign Twoshort\n\n65) TwoShort: Sacrifice R2 Blathe\nAttack R3 Mneme\nAttack B2 Mneme\n\tmneme: hmm? Oh, interesting! Delaying the catastrophe preventing me from growing blue. Hadn't thought of that one.\n\n66) mneme: Attack G2 Twoshort\n\tTwoShort: That, and delaying when you were adjacent to my Homeworld. I'm not sure if either mattered, but I hadn't thought through the possibilities, and you obviously had to call it.\n\n67) TwoShort: Attack Y2 Mneme\n\n\nHomeworlds Online (SDG# 16099)\nVariants: "Hard time"\nStarted: 2010.4.14, Ended: 2010.5.27\nParticipants: ZackStack (S), sordros (N)\nWinner: ZackStack\n\n1) sordros: Homeworld B1 Y2 G3\n\n2) ZackStack: Homeworld R1 B3 G3\n\tsordros: Hi there\n\tZackStack: Hello! Have a good game.\n\n3) sordros: Build G1 Sordros\n\n4) ZackStack: Build G1 Zackstack\n\n5) sordros: Trade G1 B1 Sordros\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) sordros: Build G1 Sordros\n\n8) ZackStack: Build Y1 Zackstack\n\n9) sordros: Build G1 Sordros\n\n10) ZackStack: Build Y1 Zackstack\n\n11) sordros: Build B1 Sordros\n\n12) ZackStack: Discover Y1 Zackstack G2 Globe\n\n13) sordros: Discover B1 Sordros G3 Verdega\n\n14) ZackStack: Build Y2 Zackstack\n\n15) sordros: Build B2 Verdega\n\n16) ZackStack: Build Y2 Globe\n\n17) sordros: Trade B2 R2 Verdega\n\n18) ZackStack: Trade Y2 R2 Zackstack\n\n19) sordros: Build B2 Sordros\n\n20) ZackStack: Build Y2 Zackstack\n\n21) sordros: Discover B2 Sordros Y3 Flavega\n\n22) ZackStack: Trade Y2 B2 Zackstack\n\n23) sordros: Sacrifice G3 Sordros\nBuild B2 Verdega\nBuild B3 Flavega\nBuild B3 Sordros\n\n24) ZackStack: Move B2 Zackstack Globe\n\n25) sordros: Sacrifice B2 Flavega\nTrade B3 G3 Sordros\nTrade B2 Y2 Verdega\n\n26) ZackStack: Trade Y1 G1 Globe\n\n\nHomeworlds Online (SDG# 15940)\nStarted: 2010.4.20, Ended: 2010.5.13\nParticipants: ZackStack (S), rootbier (N)\nWinner: ZackStack\n\n1) rootbier: Homeworld G3 B1 B3 *\n\n2) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Thanks for the challenge! Have you played much?\n\n3) rootbier: Build B1 Rootbier\n\trootbier: couple games face to face with my pyramids. few more here with varying success. played one recently with a strange starting strategy that i didn't quite understand but thought i would try.\n\n4) ZackStack: Build G1 Zackstack\n\tZackStack: I must admit that based on your starting setup that I thought about blitzing you with blue ships... but I heard Admiral Ackbar yelling "Its a trap!" in the back of my mind and decided to play it straight :-)\n\n5) rootbier: Trade B1 Y1 Rootbier\n\trootbier: yeah. those were my first thoughts when I saw the set-up. i think maybe the other guy went second on setup... but basically - by the time you get mobile enough to do anything i'll be safe. (unsure)\n\trootbier: "second on making his homeworld"*\n\n6) ZackStack: Build G1 Zackstack\n\tZackStack: I figured I couldn't get there fast enough to make a risky setup worthwhile :-)\n\n7) rootbier: Build B1 Rootbier\n\n8) ZackStack: Trade G1 B1 Zackstack\n\n9) rootbier: Discover B1 Rootbier Y2 Bagatelle\n\n10) ZackStack: Build B2 Zackstack\n\n11) rootbier: Build B2 Rootbier\n\n12) ZackStack: Trade B2 Y2 Zackstack\n\n13) rootbier: Discover B1 Bagatelle G3 Pistachio\n\n14) ZackStack: Discover B1 Zackstack Y3 Lemon\n\n15) rootbier: Trade B2 R2 Rootbier\n\n16) ZackStack: Build G1 Zackstack\n\n17) rootbier: Build B2 Pistachio\n\n18) ZackStack: Move G1 Zackstack Lemon\n\n19) rootbier: Trade B2 Y2 Pistachio\n\n20) ZackStack: Build B2 Lemon\n\n21) rootbier: Build B2 Pistachio\n\n22) ZackStack: Trade B1 R1 Lemon\n\n23) rootbier: Sacrifice Y2 Pistachio\nMove B1 Pistachio Zackstack\nMove B2 Pistachio Zackstack\n\n24) ZackStack: Attack B2 Zackstack\n\tZackStack: Hmmm... Aggressive and dangerous... I think I like it :-)\n\n25) rootbier: Trade Y1 G1 Rootbier\n\trootbier: slight miscalculation on my part :)\n\trootbier: makes the danger less dangery\n\n26) ZackStack: Attack B1 Zackstack\n\tZackStack: I didn't say who I thought it was dangerous for :-) Pesky red worlds...\n\n27) rootbier: Build R1 Rootbier\n\trootbier: no no - i expected that.\r\njust kind of forgot i had no green to dump.\n\n28) ZackStack: Trade B2 Y2 Zackstack\n\n29) rootbier: Trade R1 Y1 Rootbier\n\n30) ZackStack: Build G2 Lemon\n\n31) rootbier: Discover G1 Rootbier Y2 Banksy\n\n32) ZackStack: Discover G2 Lemon B2 Grape\n\n33) rootbier: Build G2 Banksy\n\trootbier: regretting that starting "thing" i was trying. not liking having a green homestar.\n\n34) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Grape\nBuild G3 Lemon\nBuild G3 Zackstack\n\tZackStack: Its too useful having a big green to sacrifice to pass it up (unless you really like blue denial). \n\n35) rootbier: Move G1 Banksy Lemon\n\n36) ZackStack: Discover G1 Lemon R2 Cherry\n\n37) rootbier: Build R1 Rootbier\n\n38) ZackStack: Attack G1 Lemon\n\trootbier: no no - i USUALLY have big green - just bleh - should have traded long ago\n\tZackStack: Gotcha. I've had my share of bleh playing Homeworlds too ;-)\n\n39) rootbier: Move B3 Rootbier Grape\n\n40) ZackStack: Sacrifice Y2 Zackstack\nMove G2 Grape Rootbier\nMove G2 Grape Rootbier\n\trootbier: Aggress! The desperation begins.\n\tZackStack: I see...\n\n41) rootbier: Build R2 Rootbier\n\trootbier: I was just happy to learn that "aggress" is a valid verb :) The desperation continues.\n\n42) ZackStack: Sacrifice Y2 Zackstack\nMove R1 Lemon Cherry\nMove R1 Cherry Rootbier\nCatastrophe Rootbier Red\n\tZackStack: Hurrah for expanding vocabulary! Sorry for the despair though...\n\n43) rootbier: Trade B3 Y3 Grape\n\trootbier: Nah. It's not actually me despairing - it's the sad fools of the short-lived Rootbier empire - and they're imaginary. Plus it's more like the "reckless abandon" than the "no more hope" kind of desperation.\n\n44) ZackStack: Trade G2 R2 Rootbier\n\tZackStack: <chuckle> \n\n45) rootbier: Move Y3 Grape Rootbier\n\n46) ZackStack: Sacrifice B2 Lemon\nTrade G2 Y2 Rootbier\nTrade R2 Y2 Rootbier\nCatastrophe Rootbier Yellow\n\tZackStack: Thanks for the game. I'm up for a rematch if you are!\n\n\nHomeworlds Online (SDG# 15982)\nVariants: "Unrated"\nStarted: 2010.4.20, Ended: 2012.2.27\nParticipants: makertron (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld Y1 B2 G3\n\n2) makertron: Homeworld B3 Y1 G3\n\tsordros: Hi, let's have a good game. Cheers!\n\n3) sordros: Build G1 Sordros\n\tmakertron: Hi! You're going to win, but it will be fun for me regardless.\n\n4) makertron: Build G1 Makertron\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) makertron: Trade G1 R1 Makertron\n\n7) sordros: Build Y2 Sordros\n\n8) makertron: Build G1 Makertron\n\n9) sordros: Build G1 Sordros\n\n10) makertron: Discover G1 Makertron B2 Catastrophe\n\n11) sordros: Trade Y2 B2 Sordros\n\n12) makertron: Build G1 Makertron\n\n13) sordros: Trade G1 R1 Sordros\n\n14) makertron: Build R1 Makertron\n\n15) sordros: Build Y2 Sordros\n\n16) makertron: Build R2 Makertron\n\n17) sordros: Discover Y2 Sordros B3 Azurra\n\n18) makertron: Move R1 Makertron Catastrophe\n\n19) sordros: Build R2 Sordros\n\n20) makertron: Build R2 Catastrophe\n\n21) sordros: Sacrifice G3 Sordros\nBuild Y2 Azurra\nBuild Y2 Azurra\nBuild Y3 Sordros\n\n22) makertron: Build R3 Makertron\n\n23) sordros: Sacrifice B2 Sordros\nTrade Y3 G3 Sordros\nTrade R2 B2 Sordros\n\n24) makertron: Trade R2 G2 Catastrophe\n\n25) sordros: Build R2 Sordros\n\n26) makertron: Move R2 Makertron Catastrophe\n\n27) sordros: Trade Y2 R2 Azurra\n\n\nHomeworlds Online (SDG# 16013)\nStarted: 2010.4.21, Ended: 2010.5.18\nParticipants: sordros (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) sordros: Homeworld B1 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) sordros: Build G1 Sordros\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) sordros: Trade G1 Y1 Sordros\n\n7) TwoShort: Build G1 Twoshort\n\n8) sordros: Build G1 Sordros\n\n9) TwoShort: Trade G1 B1 Twoshort\n\n10) sordros: Trade G1 R1 Sordros\n\n11) TwoShort: Build B1 Twoshort\n\n12) sordros: Build R1 Sordros\n\n13) TwoShort: Discover B1 Twoshort G2 Grogar\n\n14) sordros: Build R2 Sordros\n\n15) TwoShort: Build B2 Grogar\n\n16) sordros: Trade R2 B2 Sordros\n\n17) TwoShort: Trade B2 Y2 Grogar\n\n18) sordros: Build R2 Sordros\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B2 Grogar\nBuild B3 Twoshort\n\n20) sordros: Discover R2 Sordros B3 Bluega\n\n21) TwoShort: Sacrifice B2 Grogar\nTrade B2 R2 Grogar\nTrade B3 G3 Twoshort\n\n22) sordros: Build G1 Sordros\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Grogar\nBuild B2 Grogar\nBuild B3 Twoshort\n\n24) sordros: Build G1 Sordros\n\n25) TwoShort: Sacrifice B2 Grogar\nTrade B2 Y2 Grogar\nTrade B3 G3 Twoshort\n\n26) sordros: Build B2 Sordros\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Grogar\nBuild Y3 Twoshort\nBuild B2 Grogar\n\n28) sordros: Sacrifice G3 Sordros\nBuild R2 Bluega\nBuild R3 Bluega\nBuild R3 Sordros\n\n29) TwoShort: Sacrifice Y2 Grogar\nMove B1 Grogar Bluega\nMove B1 Bluega Sordros\nCatastrophe Sordros Blue\n\n30) sordros: Sacrifice Y1 Sordros\nMove R3 Bluega Grogar\n\n31) TwoShort: Discover Y2 Grogar G3 Greenland\n\n32) sordros: Attack B2 Grogar\n\n33) TwoShort: Sacrifice Y3 Twoshort\nMove Y2 Greenland Sordros\nMove Y1 Twoshort Sordros\nDiscover Y1 Grogar B3 Deathstar\n\n34) sordros: Sacrifice R2 Bluega\nAttack Y1 Sordros\nAttack Y2 Sordros\n\n35) TwoShort: Move Y1 Deathstar Sordros\nCatastrophe Sordros Yellow\n\tsordros: Thanks for the game!\n\tTwoShort: Good Game!\n\n\nHomeworlds Online (SDG# 16158)\nVariants: "Unrated"\nStarted: 2010.4.23, Ended: 2010.5.28\nParticipants: radio414 (S), makertron (N)\nWinner: radio414\n\n1) makertron: Homeworld R2 B3 G3\n\n2) radio414: Homeworld B2 R1 G3\n\n3) makertron: Build G1 Makertron\n\n4) radio414: Build G1 Radio414\n\n5) makertron: Trade G1 Y1 Makertron\n\n6) radio414: Trade G1 Y1 Radio414\n\n7) makertron: Build G1 Makertron\n\n8) radio414: Build G1 Radio414\n\n9) makertron: Discover G1 Makertron B1 Sol\n\n10) radio414: Trade G1 R1 Radio414\n\n11) makertron: Build G1 Makertron\n\n12) radio414: Discover Y1 Radio414 B3 Luna\n\n13) makertron: Trade G1 B1 Makertron\n\n14) radio414: Build G1 Radio414\n\n15) makertron: Move B1 Makertron Sol\n\n16) radio414: Trade G1 Y1 Radio414\n\n17) makertron: Build Y2 Makertron\n\n18) radio414: Trade Y1 G1 Luna\n\n19) makertron: Trade Y2 R2 Makertron\n\n20) radio414: Move R1 Radio414 Luna\n\n21) makertron: Move R2 Makertron Sol\n\n22) radio414: Build Y1 Radio414\n\n23) makertron: Build Y2 Makertron\n\n24) radio414: Build Y2 Radio414\n\n25) makertron: Move Y1 Makertron Sol\n\n26) radio414: Move Y2 Radio414 Luna\n\n27) makertron: Build Y2 Makertron\n\n28) radio414: Build Y3 Luna\n\n29) makertron: Build Y3 Sol\n\n30) radio414: Trade Y1 G1 Radio414\n\n31) makertron: Build G2 Sol\n\n32) radio414: Build G2 Luna\n\n33) makertron: Move G2 Sol Makertron\n\n34) radio414: Trade G1 B1 Luna\n\n35) makertron: Trade Y2 R2 Makertron\n\n36) radio414: Move G1 Radio414 Luna\n\n37) makertron: Build G1 Sol\n\n38) radio414: Build G2 Radio414\n\n39) makertron: Build G3 Makertron\n\n40) radio414: Sacrifice Y2 Luna\nMove G1 Luna Sol\nMove G1 Sol Makertron\nCatastrophe Makertron G\n\n41) makertron: Trade R2 G2 Makertron\n\n42) radio414: Trade G2 R2 Radio414\n\n43) makertron: Move Y3 Sol Makertron\n\n44) radio414: Move Y3 Luna Sol\n\n45) makertron: Sacrifice G2 Makertron\nBuild R1 Sol\nBuild R3 Sol\n\n46) radio414: Sacrifice Y1 Radio414\nMove R1 Luna Sol\nCatastrophe Sol Red\n\n47) makertron: Trade Y2 G2 Makertron\n\n48) radio414: Sacrifice R2 Radio414\nAttack Y1N Sol\nAttack B1N Sol\n\n49) makertron: Sacrifice G1 Sol\nBuild Y1 Makertron\n\n50) radio414: Trade B1 R1 Sol\n\n51) makertron: Build G1 Makertron\n\n52) radio414: Attack G1N Sol\n\n53) makertron: Discover G1 Makertron B1 Radion\n\n54) radio414: Move Y3 Sol Makertron\n\n55) makertron: Attack Y3 Makertron\n\n56) radio414: Move Y1 Sol Makertron\nCatastrophe Makertron Y\n\n57) makertron: Build G1 Makertron\n\n58) radio414: Build G2 Radio414\n\n59) makertron: Sacrifice G2 Makertron\nBuild G2 Radion\nBuild G3 Makertron\n\n60) radio414: Trade B1 Y1 Luna\n\n61) makertron: Trade G1 Y1 Makertron\n\n62) radio414: Sacrifice G3 Radio414\nBuild G1 Luna\nBuild G3 Sol\nBuild G3 Radio414\n\n63) makertron: Trade G1 Y1 Radion\n\n64) radio414: Build Y2 Luna\n\n65) makertron: Build Y2 Makertron\n\n66) radio414: Trade G2 Y2 Radio414\n\n67) makertron: Build Y3 Radion\n\n68) radio414: Build Y3 Radio414\n\n69) makertron: Trade Y1 G1 Radion\n\n70) radio414: Trade Y3 B3 Radio414\n\n71) makertron: Trade G1 R1 Radion\n\n72) radio414: Trade G1 B1 Sol\n\n73) makertron: Build R2 Radion\n\n74) radio414: Build R2 Sol\n\n75) makertron: Move R1 Radion Makertron\n\n76) radio414: Trade R1 G1 Sol\n\n77) makertron: Move R2 Radion Luna\n\n78) radio414: Sacrifice R2 Sol\nAttack R2N Luna\nPass\n\n79) makertron: Move R1 Makertron Radion\n\n80) radio414: Build B2 Radio414\n\n81) makertron: Build R1 Radion\n\n82) radio414: Move B3 Radio414 Luna\n\n83) makertron: Discover R1 Radion Y3 Radio\n\n84) radio414: Sacrifice Y2 Luna\nMove G1 Sol Makertron\nMove G3 Sol Makertron\n\n85) makertron: Attack G3 Makertron\n\n86) radio414: Build G1 Makertron\nCatastrophe Makertron Green\n\n87) makertron: Trade Y1 G1 Makertron\n\n88) radio414: Sacrifice Y2 Radio414\nMove B3 Luna Radion\nMove B3 Radion Makertron\n\n\nHomeworlds Online (SDG# 16171)\nVariants: "Unrated"\nStarted: 2010.4.24, Ended: 2011.5.21\nParticipants: rootbier (S), cnyh (N)\nWinner: rootbier\n\n\nHomeworlds Online (SDG# 16046)\nStarted: 2010.4.25, Ended: 2010.7.18\nParticipants: rootbier (S), bootdisk (N)\nWinner: rootbier\n\n1) bootdisk: Homeworld B1 G2 Y3\n\tbootdisk: incidentally i forgot the rules seth... -.- gimme a few days. my semester has going into its third week and it's beginning to become stressy. don't expect me to think a lot about this :P\n\n2) rootbier: Homeworld Y1 B3 G3\n\n3) bootdisk: Discover Y3 Bootdisk R3 R31\n\tbootdisk: d'oh!\r\nthis happens if you don't read the rules again - after a long time. for a moment i wondered what kind of strange view-mode it is that hides my homeworld :P\r\n\r\nuhm.. rematch?\n\trootbier: oops there. it shouldn't actually let you finish yourself but i guess they didn't code suicide prevention into it. i have a standing challenge out there. you can use it to start a new game any time you like.\n\n\nHomeworlds Online (SDG# 16195)\nVariants: "Hard time"\nStarted: 2010.4.25, Ended: 2010.4.28\nParticipants: dethdukk (S), captncavern (N)\nWinner: captncavern\n\n1) captncavern: Homeworld B3 G1 R3\n\n\nHomeworlds Online (SDG# 16199)\nStarted: 2010.4.26, Ended: 2010.6.17\nParticipants: logikal (S), makertron (N)\nWinner: makertron\n\n1) makertron: Homeworld R3 B2 G3\n\n2) logikal: Homeworld R1 B2 G3\n\n3) makertron: Build G1 Makertron\n\n4) logikal: Build G1 Logikal\n\n5) makertron: Trade G1 Y1 Makertron\n\n6) logikal: Trade G1 Y1 Logikal\n\n7) makertron: Build G1 Makertron\n\n8) logikal: Build G1 Logikal\n\n9) makertron: Discover G1 Makertron B1 Sol\n\n10) logikal: Trade G1 B1 Logikal\n\n11) makertron: Build G1 Sol\n\n12) logikal: Discover B1 Logikal G3 L1\n\n13) makertron: Trade G1 R1 Sol\n\n14) logikal: Trade B1 R1 L1\n\n15) makertron: Build R2 Sol\n\n16) logikal: Build R2 L1\n\n17) makertron: Trade R1 Y1 Sol\n\n18) logikal: Build Y2 Logikal\n\n19) makertron: Build Y2 Makertron\n\n20) logikal: Move Y1 Logikal L1\n\n21) makertron: Trade Y2 G2 Makertron\n\n22) logikal: Build Y2 L1\n\n23) makertron: Sacrifice G2 Makertron\nBuild Y2 Makertron\nBuild Y3 Sol\n\n24) logikal: Build Y3 Logikal\n\n25) makertron: Trade Y1 B1 Sol\n\n26) logikal: Discover Y2 L1 G1 L2\n\n27) makertron: Build R1 Sol\n\n28) logikal: Move G3 Logikal L1\n\n29) makertron: Discover R1 Sol R3 Los\n\n30) logikal: Move Y2 L2 Los\n\n31) makertron: Build G1 Makertron\n\n32) logikal: Trade Y2 G2 Logikal\n\n33) makertron: Build R2 Sol\n\n34) logikal: Attack R1 Los\n\n35) makertron: Trade R2 G2 Sol\n\n36) logikal: Move R1 L1 Sol\n\n37) makertron: Discover G1 Sol Y3 Beta\n\n38) logikal: Move G2 Logikal Beta\n\n39) makertron: Sacrifice G3 Makertron\nBuild G1 Beta\nBuild G2 Sol\nBuild G3 Makertron\n\n40) logikal: Move G2 Beta Logikal\n\n41) makertron: Attack R1 Sol\n\n42) logikal: Sacrifice G3 L1\nBuild G3 Logikal\nBuild Y1 L1\nBuild Y2 Logikal\n\n43) makertron: Move R1 Sol Beta\n\n44) logikal: Discover G3 Logikal R3 L2\n\n45) makertron: Discover G1 Beta B1 Qo'nos\n\n\nHomeworlds Online (SDG# 16164)\nStarted: 2010.4.26, Ended: 2010.5.5\nParticipants: SilentTitan (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) SilentTitan: Homeworld B1 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) SilentTitan: Discover G1 Silenttitan Y3 Charm\n\n7) TwoShort: Build G1 Twoshort\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) TwoShort: Build G2 Twoshort\n\n10) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Charm\nBuild G2 Silenttitan\nBuild G3 Silenttitan\n\n11) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n12) SilentTitan: Discover G2 Silenttitan G3 Roses\n\n13) TwoShort: Trade G2 Y2 Twoshort\n\n14) SilentTitan: Trade G1 R1 Silenttitan\n\n15) TwoShort: Build G1 Twoshort\n\n16) SilentTitan: Discover G2 Charm B2 Fear\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild Y1 Twoshort\nBuild G3 Twoshort\n\n18) SilentTitan: Sacrifice G2 Roses\nBuild G2 Charm\nBuild G3 Silenttitan\n\n19) TwoShort: Discover Y1 Twoshort B2 Bluonia\n\n20) SilentTitan: Trade G3 Y3 Silenttitan\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluonia\nBuild Y3 Twoshort\nBuild G3 Yolonda\n\n22) SilentTitan: Sacrifice Y3 Silenttitan\nMove G2 Charm Bluonia\nMove G1 Charm Yolonda\nMove G2 Fear Twoshort\n\tTwoShort: Just out of curiosity, have you played much Homeworlds off line?\n\n23) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yolonda\nBuild G3 Twoshort\nBuild Y3 Bluonia\nCatastrophe Twoshort Green\n\tSilentTitan: yes... but I'm not very good off line\n\tTwoShort: I'm not at all as good off-line either. Others I've played are much better at coming up with a reasonably good move in 30 seconds or so, but I'm better at coming up with a better move if I think for a half hour, or maybe wait a day until I'm in the right mood; which doesn't work so well with an opponent sitting there :)\n\n24) SilentTitan: Sacrifice G2 Bluonia\nBuild G1 Yolonda\nBuild G2 Silenttitan\nCatastrophe Yolonda G\n\n25) TwoShort: Trade Y3 G3 Twoshort\n\n26) SilentTitan: Discover G2 Silenttitan Y3 Toast\n\n27) TwoShort: Discover Y1 Bluonia B3 Boomer\n\n28) SilentTitan: Build G1 Silenttitan\n\n29) TwoShort: Build G1 Twoshort\n\n30) SilentTitan: Discover G1 Silenttitan Y3 Jelly\n\n31) TwoShort: Build Y2 Twoshort\n\n32) SilentTitan: Build G1 Silenttitan\n\n33) TwoShort: Trade Y2 R2 Twoshort\n\n34) SilentTitan: Build G2 Jelly\n\n35) TwoShort: Build Y2 Twoshort\n\n36) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Jelly\nBuild G3 Toast\nBuild G3 Silenttitan\n\n37) TwoShort: Trade Y2 B2 Twoshort\n\n38) SilentTitan: Discover G2 Jelly Y2 Snake\n\n39) TwoShort: Move B2 Twoshort Snake\n\n40) SilentTitan: Move G2 Snake Twoshort\n\n41) TwoShort: Attack G2 Twoshort\n\n42) SilentTitan: Trade G3 R3 Silenttitan\n\n43) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B1 Snake\nBuild B1 Snake\n\n44) SilentTitan: Move G2 Jelly Snake\n\n45) TwoShort: Sacrifice Y2 Twoshort\nDiscover G2 Twoshort Y2 Yolonda\nDiscover B1 Snake G3 Gonzo\n\n46) SilentTitan: Discover R1 Silenttitan B3 Yrua\n\n47) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Boomer\nBuild B2 Gonzo\n\n48) SilentTitan: Sacrifice G3 Toast\nBuild G2 Silenttitan\nBuild G3 Snake\nBuild R1 Yrua\n\n49) TwoShort: Sacrifice Y3 Bluonia\nMove B2 Snake Boomer\nMove B2 Boomer Silenttitan\nDiscover Y1 Bluonia R3 Rover\n\n50) SilentTitan: Move G3 Snake Twoshort\n\n51) TwoShort: Sacrifice R2 Twoshort\nAttack G3 Twoshort\nAttack G2 Silenttitan\n\n52) SilentTitan: Move G2 Snake Twoshort\nCatastrophe Twoshort G\n\n53) TwoShort: Sacrifice G2 Silenttitan\nBuild B2 Silenttitan\nBuild Y3 Twoshort\n\n54) SilentTitan: Sacrifice G2 Toast\nBuild R2 Yrua\nBuild R2 Silenttitan\n\tSilentTitan: oh... well my mistake. I missed calculating that you'd be able to take the g2 in my homeworld\r\n\n\n55) TwoShort: Sacrifice Y3 Twoshort\nMove Y1 Boomer Silenttitan\nMove Y2 Boomer Silenttitan\nMove Y1 Rover Silenttitan\nCatastrophe Silenttitan Yellow\n\tTwoShort: I was glad when I spotted it, since I had missed the threat to my 3 pointer :)\n\n56) SilentTitan: Sacrifice R2 Silenttitan\nAttack B2N Silenttitan\nAttack B2N Silenttitan\n\n57) TwoShort: Move B1 Snake Silenttitan\nCatastrophe Silenttitan Blue\n\n\nHomeworlds Online (SDG# 16153)\nVariants: "Hard time"\nStarted: 2010.4.26, Ended: 2010.6.12\nParticipants: dlwillson (S), radio414 (N)\nWinner: dlwillson\n\n1) radio414: Homeworld B2 R1 G3\n\n2) dlwillson: H B3 Y2 G3\n\n3) radio414: Build G1 Radio414\n\n4) dlwillson: B G1 Dlwillson\n\n5) radio414: Trade G1 Y1 Radio414\n\n6) dlwillson: Build G1 Dlwillson\n\n7) radio414: Build Y1 Radio414\n\n8) dlwillson: Discover G1 Dlwillson B1 Funkytown\n\n9) radio414: Trade Y1 B1 Radio414\n\n10) dlwillson: Trade G1 Y1 Dlwillson\n\n11) radio414: Discover B1 Radio414 G3 Lonelystreet\n\n12) dlwillson: Build G1 Dlwillson\n\n13) radio414: Build B1 Lonelystreet\n\n14) dlwillson: Trade G1 R1 Dlwillson\n\n15) radio414: Build B2 Lonelystreet\n\n16) dlwillson: B G1 Dlwillson\n\n17) radio414: Trade B2 R2 Lonelystreet\n\n18) dlwillson: B G1 Dlwillson\n\n19) radio414: Build B2 Lonelystreet\n\n20) dlwillson: B G2 Funkytown\n\n21) radio414: Build G2 Radio414\n\n22) dlwillson: T G2 B2 Funkytown\n\n23) radio414: Trade B1 Y1 Lonelystreet\n\n24) dlwillson: Move Y1 Dlwillson Funkytown\n\n25) radio414: Move G2 Radio414 Lonelystreet\n\n26) dlwillson: Discover G1 Dlwillson B1 Electric_avenue\n\n27) radio414: Build Y2 Radio414\n\n28) dlwillson: Discover B2 Funkytown G2 Detroit\n\n29) radio414: Move R2 Lonelystreet Funkytown\n\n30) dlwillson: Sacrifice Y1 Funkytown\nDiscover G1 Funkytown B3 Heartbrk_hotel\n\n31) radio414: Build G2 Radio414\n\n32) dlwillson: Build B3 Detroit\n\n33) radio414: Sacrifice Y2 Radio414\nMove B1 Lonelystreet Detroit\nMove B2 Lonelystreet Detroit\nCatastrophe Detroit B\n\n34) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Heartbrk_hotel\nBuild G3 Dlwillson\nBuild R1 Dlwillson\n\n35) radio414: Trade G2 R2 Radio414\n\n36) dlwillson: Move R1 Dlwillson Electric_avenue\n\n37) radio414: Build G2 Radio414\n\tdlwillson: You're doing great! I'll have to think a minute on this one, and put in a move tonight.\n\tradio414: Thanks. I sometimes play with one of my friends who taught me this game. He's the player to beat.\n\n38) dlwillson:\nT G2 Y2 Heartbrk_hotel\n\tdlwillson: I need a couple more moves to get caught up, but that'll have to do for now. How long have you been playing? How many games? For me 2 years, and about a dozen or so... Maybe 2 dozen at most.\n\n39) radio414: Move G2 Lonelystreet Funkytown\n\tradio414: I usually play on friday if i have free time. I started last year.\n\n40) dlwillson: B G2 Electric_avenue\n\n41) radio414: Trade R2 Y2 Radio414\n\n42) dlwillson: T G1 Y1 Electric_avenue\n\n43) radio414: Build Y3 Lonelystreet\n\n44) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Heartbrk_hotel\nBuild G3 Dlwillson\nBuild Y3 Electric_avenue\n\n45) radio414: Trade Y2 R2 Radio414\n\n46) dlwillson: Sacrifice Y3 Electric_avenue\nMove G1 Heartbrk_hotel Radio414\nMove G1 Heartbrk_hotel Radio414\nMove R1 Electric_avenue Heartbrk_hotel\nCatastrophe Radio414 G\n\n47) radio414: Move Y3 Lonelystreet Radio414\n\n48) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Heartbrk_hotel\nBuild R2 Heartbrk_hotel\nBuild R3 Dlwillson\n\n49) radio414: Trade R2 G2 Radio414\n\n50) dlwillson: Build Y3 Electric_avenue\n\n51) radio414: Build Y3 Lonelystreet\n\n52) dlwillson: Sacrifice Y3 Electric_avenue\nMove Y2 Heartbrk_hotel Radio414\nMove R2 Heartbrk_hotel Radio414\nMove G2 Electric_avenue Heartbrk_hotel\n\n53) radio414: Sacrifice R2 Funkytown\nAttack R2S Radio414\nAttack Y2S Radio414\n\n54) dlwillson: Move Y2 Heartbrk_hotel Radio414\nCatastrophe Radio414 Y\n\n55) radio414: Move Y3 Lonelystreet Radio414\n\n56) dlwillson: Move R1 Dlwillson Electric_avenue\n\n57) radio414: Build G1 Funkytown\n\n58) dlwillson: Build G1 Heartbrk_hotel\n\n59) radio414: Build G3 Radio414\n\n60) dlwillson: Build G3 Dlwillson\n\n61) radio414: Build Y1 Radio414\n\n62) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild Y2 Electric_avenue\nBuild R2 Heartbrk_hotel\n\n63) radio414: Trade R2 B2 Radio414\n\n64) dlwillson: Sacrifice Y2 Electric_avenue\nMove R1 Heartbrk_hotel Radio414\nMove R2 Heartbrk_hotel Radio414\n\n65) radio414: Build Y2 Lonelystreet\n\n66) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Radio414\nBuild R2 Electric_avenue\nBuild R3 Dlwillson\nCatastrophe Radio414 Red\n\n67) radio414: Trade Y1 R1 Radio414\n\n68) dlwillson: Sacrifice G2 Heartbrk_hotel\nBuild G2 Dlwillson\nBuild G3 Heartbrk_hotel\n\n69) radio414: Sacrifice Y2 Lonelystreet\nMove G2 Funkytown Heartbrk_hotel\nMove G1 Funkytown Heartbrk_hotel\nCatastrophe Heartbrk_hotel G\n\n70) dlwillson: Trade R2 B2 Electric_avenue\n\n71) radio414: Build Y1 Lonelystreet\n\n72) dlwillson: T R3 Y3 Dlwillson\n\n73) radio414: Move G3 Radio414 Electric_avenue\n\n74) dlwillson: Sacrifice Y3 Dlwillson\nMove R1 Electric_avenue Radio414\nMove B2 Electric_avenue Radio414\nMove Y1 Electric_avenue Radio414\n\n\tdlwillson: Checkmate?\n\nHomeworlds Online (SDG# 16197)\nVariants: "Hard time"\nStarted: 2010.4.26, Ended: 2010.5.14\nParticipants: Uglyfoot (S), rootbier (N)\nWinner: Uglyfoot\n\n1) rootbier: Homeworld B1 Y3 G3\n\n2) Uglyfoot: Homeworld Y3 B2 G3\n\n3) rootbier: Build G1 Rootbier\n\trootbier: good luck mate.\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) rootbier: Trade G1 R1 Rootbier\n\tUglyfoot: thanks! have a good game.\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) rootbier: Build R1 Rootbier\n\n8) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n9) rootbier: Discover R1 Rootbier B2 Ruination\n\n10) Uglyfoot: Discover Y1 Uglyfoot R1 Moat\n\n11) rootbier: Build R2 Rootbier\n\n12) Uglyfoot: Build G1 Uglyfoot\n\n13) rootbier: Build R2 Rootbier\n\n14) Uglyfoot: Move G1 Uglyfoot Moat\n\n15) rootbier: Move R2 Rootbier Ruination\n\n16) Uglyfoot: Build G1 Moat\n\n17) rootbier: Trade R1 Y1 Ruination\n\n18) Uglyfoot: Build G2 Moat\n\n19) rootbier: Trade R2 G2 Ruination\n\n20) Uglyfoot: Discover G2 Moat Y2 Hub\n\n21) rootbier: Discover G2 Ruination Y1 Falter\n\n22) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Moat\nBuild G3 Uglyfoot\nBuild G3 Hub\n\n23) rootbier: Trade R2 Y2 Rootbier\n\trootbier: i been sleepin' something fierce here - nice fleet you've got there :)\n\n24) Uglyfoot: Trade G1 B1 Uglyfoot\n\n25) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Ruination\nBuild Y3 Rootbier\nBuild R1 Rootbier\n\n26) Uglyfoot: Move G1 Moat Uglyfoot\n\trootbier: i swear my brain is on sideways right now - i somehow convinced myself i didn't see Ruination\n\n27) rootbier: Move Y3 Rootbier Hub\n\n28) Uglyfoot: Move G3 Hub Rootbier\n\n29) rootbier: Move Y3 Hub Rootbier\n\n30) Uglyfoot: Move Y1 Moat Hub\n\n31) rootbier: Trade Y3 G3 Rootbier\n\n32) Uglyfoot: Trade G3 Y3 Rootbier\n\n33) rootbier: Trade Y2 B2 Rootbier\n\n34) Uglyfoot: Move Y3 Rootbier Ruination\n\n35) rootbier: Sacrifice G2 Falter\nBuild R2 Rootbier\nBuild Y1 Ruination\nCatastrophe Ruination Y\n\trootbier: i underestimated you based on your record. you're tricksy :) -- it's fun\r\n\n\n36) Uglyfoot: Move B1 Uglyfoot Moat\n\trootbier: i am trying to do the following\r\n\r\nsacrifice g2 falter\r\nbuild r2 rootbier\r\nbuild y2 ruination\r\ncatastrophe ruination y\r\n\r\nand am getting an error message telling me to choose the smallest Y piece... which in this case is indeed y2... am i confused or is there a problem here?\n\tUglyfoot: I agree that you should be able to do that. (Even if I don't like it. ;> )\n\tUglyfoot: Wait. When you sacrifice a ruination the star (Y1) becomes available and you should build with it before triggering the catastrophe.\n\tUglyfoot: \n\tUglyfoot: not ruination. when you sacrifice at falter...\n\trootbier: right right - i am pulling an all-nighter and space space out - thanks\r\ncancelled the page that is...\n\n37) rootbier: Move R2 Rootbier Hub\n\n38) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Hub\nBuild G2 Hub\nBuild G3 Uglyfoot\n\n39) rootbier: Attack G2 Hub\n\n40) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y1 Hub\nBuild Y1 Hub\nCatastrophe Hub Y\n\n41) rootbier: Discover B2 Rootbier G2 Flax\n\n42) Uglyfoot: Trade G2 Y2 Moat\n\trootbier: wow. drastic. :)\n\n43) rootbier: Discover R1 Rootbier B2 Bell\n\n44) Uglyfoot: Build G1 Moat\n\n45) rootbier: Build G2 Rootbier\n\n46) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Moat\n\n47) rootbier: Trade B2 Y2 Flax\n\n48) Uglyfoot: Trade G2 R2 Uglyfoot\n\n49) rootbier: Sacrifice Y2 Flax\nDiscover G2 Rootbier G2 Snap\nMove G2 Snap Moat\nCatastrophe Moat G\n\n50) Uglyfoot: Move G1 Uglyfoot Moat\n\n51) rootbier: Sacrifice G3 Rootbier\nBuild R2 Rootbier\nBuild R2 Bell\nBuild R3 Rootbier\n\tUglyfoot: Oh Snap!\n\n52) Uglyfoot: Move R2 Uglyfoot Moat\n\n53) rootbier: Trade R3 G3 Rootbier\n\n54) Uglyfoot: Build R3 Moat\n\n55) rootbier: Trade R2 Y2 Bell\n\n56) Uglyfoot: Move R3 Moat Bell\n\n57) rootbier: Sacrifice Y2 Bell\nDiscover R1 Bell Y1 Offramp\nDiscover R1 Rootbier B2 Opine\n\n58) Uglyfoot: Build G1 Uglyfoot\n\n59) rootbier: Sacrifice G3 Rootbier\nBuild R2 Offramp\nBuild R3 Opine\nBuild R3 Rootbier\n\n60) Uglyfoot: Move R2 Moat Bell\n\n61) rootbier: Trade R2 G2 Rootbier\n\n62) Uglyfoot: Move G1 Moat Bell\n\n63) rootbier: Trade R3 G3 Opine\n\n64) Uglyfoot: Trade R3 B3 Bell\n\n65) rootbier: Trade R3 Y3 Rootbier\n\n66) Uglyfoot: Build R2 Bell\n\n67) rootbier: Sacrifice Y3 Rootbier\nMove G3 Opine Moat\nMove R1 Opine Rootbier\nMove R2 Offramp Bell\n\n68) Uglyfoot: Sacrifice Y2 Moat\nMove B3 Bell Rootbier\nDiscover R2 Bell Y1 Fort\n\n69) rootbier: Sacrifice G3 Moat\nBuild R3 Rootbier\nBuild R3 Rootbier\nBuild G1 Rootbier\n\n70) Uglyfoot: Sacrifice R2 Bell\nAttack R3 Rootbier\nAttack R3 Rootbier\n\trootbier: r2 not r2 :)\n\n71) rootbier: Build G2 Rootbier\n\n72) Uglyfoot: Sacrifice R3 Rootbier\nAttack R1 Rootbier\nAttack G2 Rootbier\nAttack G2 Rootbier\n\n73) rootbier: Build G2 Rootbier\n\n74) Uglyfoot: Build G3 Bell\nCatastrophe Rootbier G\n\n\nHomeworlds Online (SDG# 15901)\nVariants: "Hard time"\nStarted: 2010.4.27, Ended: 2010.5.6\nParticipants: agentofchaos (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld B1 Y2 G3\n\n2) agentofchaos:\nHomeworld B1 R3 G3\n\tagentofchaos: h b1 r3 g3\n\n3) shmil1: Build G1 Shmil1\n\tagentofchaos: Hi enjoy the game. \n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) shmil1: Trade G1 R1 Shmil1\n\n6) agentofchaos: Trade G1 R1 Agentofchaos\n\n7) shmil1: Build G1 Shmil1\n\n\nHomeworlds Online (SDG# 16215)\nVariants: "Hard time"\nStarted: 2010.4.27, Ended: 2010.5.16\nParticipants: radio414 (S), shmil1 (N)\nWinner: radio414\n\n1) shmil1: Homeworld R1 B2 G3\n\n2) radio414: Homeworld B3 R1 G3\n\n3) shmil1: Build G1 Shmil1\n\n4) radio414: Build G1 Radio414\n\n5) shmil1: Trade G1 Y1 Shmil1\n\n6) radio414: Trade G1 Y1 Radio414\n\n7) shmil1: Build G1 Shmil1\n\n8) radio414: Build G1 Radio414\n\n9) shmil1: Trade G1 B1 Shmil1\n\n10) radio414: Trade G1 B1 Radio414\n\n11) shmil1: Build G1 Shmil1\n\n12) radio414: Build G1 Radio414\n\n13) shmil1: Discover G1 Shmil1 B3 Modry\n\n14) radio414: Discover B1 Radio414 G2 Jaroslav\n\n15) shmil1: Move B1 Shmil1 Modry\n\n16) radio414: Move G1 Radio414 Jaroslav\n\n17) shmil1: Move Y1 Shmil1 Modry\n\n18) radio414: Build B1 Jaroslav\n\n19) shmil1: Build B2 Modry\n\n20) radio414: Sacrifice Y1 Radio414\nMove B1 Jaroslav Modry\nCatastrophe Modry B\n\n21) shmil1: Build G1 Shmil1\n\n22) radio414: Build B1 Jaroslav\n\n23) shmil1: Trade G1 Y1 Shmil1\n\n24) radio414: Build G1 Radio414\n\n25) shmil1: Build Y1 Shmil1\n\n26) radio414: Trade G1 B1 Radio414\n\n27) shmil1: Build G1 Shmil1\n\n28) radio414: Trade B1 R1 Jaroslav\n\n29) shmil1: Discover G1 Shmil1 B3 Modradobra\n\n30) radio414: Build R2 Jaroslav\n\n31) shmil1: Move Y1 Shmil1 Modradobra\n\n32) radio414: Trade R1 Y1 Jaroslav\n\n33) shmil1: Build Y2 Modradobra\n\n34) radio414: Build Y2 Jaroslav\n\n35) shmil1: Trade Y1 B1 Modradobra\n\n36) radio414: Move R2 Jaroslav Modradobra\n\n37) shmil1: Sacrifice Y2 Modradobra\nMove B1 Modradobra Jaroslav\nMove G1 Modradobra Jaroslav\n\n38) radio414: Trade B1 R1 Jaroslav\n\n39) shmil1: Build G1 Jaroslav\nCatastrophe Jaroslav Green\n\n40) radio414: Build G1 Radio414\n\n41) shmil1: Build G1 Shmil1\n\n42) radio414: Trade B1 Y1 Radio414\n\n43) shmil1: Discover G1 Shmil1 Y3 Zluta\n\n44) radio414: Trade G1 B1 Radio414\n\n45) shmil1: Discover G1 Zluta B2 Modra2\n\n46) radio414: Move B1 Radio414 Modra2\n\n47) shmil1: Build G1 Modra2\n\n48) radio414: Sacrifice R2 Modradobra\nAttack G1N Modra2\nAttack G1N Modra2\n\n49) shmil1: Build G1 Shmil1\n\n50) radio414: Build G2 Radio414\n\n51) shmil1: Discover G1 Shmil1 Y3 Zluty\n\n52) radio414: Trade G1 R1 Modra2\n\n53) shmil1: Discover G1 Zluty B2 Modry\n\n54) radio414: Build R2 Modra2\n\n55) shmil1: Build G1 Modry\n\n56) radio414: Trade G2 Y2 Radio414\n\n57) shmil1: Trade G1 Y1 Modry\n\n58) radio414: Build B1 Modra2\n\n59) shmil1: Build Y2 Shmil1\n\n60) radio414: Move Y1 Radio414 Modry\n\n61) shmil1: Sacrifice G3 Shmil1\nBuild Y2 Modry\nBuild Y3 Shmil1\nBuild G1 Modry\n\n62) radio414: Sacrifice Y2 Radio414\nDiscover Y1 Modry R3 Goodgame\nMove Y1 Goodgame Shmil1\nCatastrophe Shmil1 Yellow\n\n\nHomeworlds Online (SDG# 16184)\nStarted: 2010.4.29, Ended: 2010.5.2\nParticipants: rootbier (S), Teo (N)\nWinner: rootbier\n\n1) Teo: Homeworld G1 B2 Y3\n\n2) rootbier: Homeworld Y3 B1 G3\n\trootbier: Do you think you understand the game? We could do a round in person at some point - that would make it all clearer :) Thanks so much for coming last night.\n\n3) Teo: Build Y1 Teo\n\tTeo: I'll read the rules a second time and try to concentrate myself...\n\n4) rootbier: Build G1 Rootbier\n\n5) Teo: Build Y1 Teo\n\n6) rootbier: Trade G1 R1 Rootbier\n\trootbier: be careful about building too many of one color. catastrophes can be triggered by anyone - even if they haven't had a part in shaping the situation. \r\n\r\nnot a big deal now because i can't easily a yellow ship in there to mess with you. not yet :)\n\n7) Teo: Trade Y1 G1 Teo\n\n8) rootbier: Discover R1 Rootbier G2 Bagatelle\n\n9) Teo: Trade Y1 R1 Teo\n\n10) rootbier: Build G1 Rootbier\n\n11) Teo: Discover R1 Teo Y3 Frisbee\n\n12) rootbier: Trade G1 R1 Rootbier\n\n13) Teo: Move G1 Teo Frisbee\n\n14) rootbier: Build R2 Rootbier\n\n15) Teo: Build R2 Frisbee\n\n16) rootbier: Trade R2 Y2 Rootbier\n\n17) Teo: Move R2 Frisbee Bagatelle\n\n18) rootbier: Build R2 Bagatelle\n\n19) Teo: Build R2 Frisbee\n\n20) rootbier: Sacrifice G3 Rootbier\nBuild R3 Rootbier\nBuild R3 Bagatelle\nPass\nCatastrophe Bagatelle Red\n\n21) Teo: Build Y1 Teo\n\n22) rootbier: Trade R3 G3 Rootbier\n\n23) Teo: Trade Y1 B1 Teo\n\n24) rootbier: Build Y1 Rootbier\n\n25) Teo: Move B1 Teo Frisbee\n\n26) rootbier: Sacrifice Y2 Rootbier\nDiscover R1 Rootbier G2 Whateva\nDiscover R1 Whateva B3 Pratfall\n\n27) Teo: Discover R2 Frisbee Y2 Game\n\n28) rootbier: Trade R1 Y1 Pratfall\n\n29) Teo: Move R2 Game Pratfall\n\n30) rootbier: Move Y1 Pratfall Teo\n\n31) Teo: Trade Y3 R3 Teo\n\n32) rootbier: Discover Y1 Teo G3 Pistachio\n\n33) Teo: Trade R2 Y2 Pratfall\n\n34) rootbier: Trade Y1 R1 Rootbier\n\n35) Teo: Discover Y2 Pratfall G2 Intership\n\n36) rootbier: Build Y1 Pistachio\n\n37) Teo: Move R1 Frisbee Intership\n\n38) rootbier: Discover Y1 Pistachio R2 Knuckles\n\n39) Teo: Move B1 Frisbee Intership\n\n40) rootbier: Trade G3 R3 Rootbier\n\n41) Teo: Move G1 Frisbee Teo\n\n42) rootbier: Move R3 Rootbier Intership\n\n43) Teo: Move Y2 Intership Rootbier\n\n44) rootbier: Sacrifice Y1 Pistachio\nMove R3 Intership Rootbier\n\n45) Teo: Move Y2 Rootbier Knuckles\n\n46) rootbier: Move Y1 Knuckles Rootbier\n\n47) Teo: Build R1 Intership\n\n48) rootbier: Trade R3 G3 Rootbier\n\n49) Teo: Build R2 Teo\n\n50) rootbier: Discover R1 Rootbier Y2 Resignation\n\n51) Teo: Trade R1 Y1 Intership\n\n52) rootbier: Trade Y1 R1 Rootbier\n\n53) Teo: Trade R3 Y3 Teo\n\n54) rootbier: Build G1 Rootbier\n\n55) Teo: Build Y1 Intership\n\n56) rootbier: Sacrifice G3 Rootbier\nBuild G2 Rootbier\nBuild R2 Resignation\nBuild R3 Rootbier\n\n57) Teo: Sacrifice Y3 Teo\nMove Y1 Intership Rootbier\nMove Y1 Intership Rootbier\nMove Y2 Knuckles Rootbier\nCatastrophe Rootbier Y\n\n58) rootbier: Trade G1 Y1 Rootbier\n\n59) Teo: Build R2 Intership\n\n60) rootbier: Trade R1 B1 Rootbier\n\n61) Teo: Trade G1 Y1 Teo\n\n62) rootbier: Move R3 Rootbier Intership\n\n63) Teo: Build R1 Intership\nCatastrophe Intership R\n\n64) rootbier: Discover R2 Resignation Y3 Focus\n\n65) Teo: Build B2 Intership\n\n66) rootbier: Move R2 Focus Intership\n\n67) Teo: Sacrifice Y1 Teo\nMove B2 Intership Rootbier\n\n68) rootbier: Sacrifice R1 Resignation\nAttack B2 Rootbier\n\n69) Teo: Build B2 Intership\n\n70) rootbier: Trade B1 R1 Rootbier\n\n71) Teo: Build R1 Teo\n\n72) rootbier: Attack B2 Intership\n\n73) Teo: Build B1 Intership\n\n74) rootbier: Build B3 Rootbier\n\n75) Teo: Trade R1 Y1 Teo\n\n76) rootbier: Sacrifice R2 Intership\nAttack B1 Intership\nAttack B1 Intership\n\n77) Teo: Build R1 Teo\n\n78) rootbier: Sacrifice B2 Rootbier\nTrade B2 Y2 Intership\nTrade B3 G3 Rootbier\n\n79) Teo: Build Y1 Teo\n\n80) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Intership\nBuild Y2 Intership\nBuild Y3 Rootbier\n\n81) Teo: Discover Y1 Teo G3 Upside\n\n82) rootbier: Trade Y2 R2 Intership\n\n83) Teo: Trade R2 B2 Teo\n\n84) rootbier: Discover Y2 Intership R3 Bonus\n\n85) Teo: Build Y2 Teo\n\n86) rootbier: Sacrifice Y3 Rootbier\nMove G2 Rootbier Bonus\nMove G2 Bonus Teo\nMove Y2 Bonus Teo\n\n87) Teo: Attack G2 Teo\n\n88) rootbier: Sacrifice R2 Intership\nAttack R1 Teo\nAttack G2 Teo\n\n89) Teo: Sacrifice Y2 Teo\nMove B2 Teo Upside\nMove B2 Upside Rootbier\n\n90) rootbier: Attack Y1 Teo\n\n\nHomeworlds Online (SDG# 16239)\nStarted: 2010.4.30, Ended: 2010.5.14\nParticipants: ringebri (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld Y1 G2 B3\n\tringebri: I guess it's your first move. I looked at an archive game, step by step. Still not sure exactly how to do this but will give it a try.\n\n2) ringebri: Homeworld G1 B2 Y3\n\tMagicJohn: Here goes....\n\tMagicJohn: Here goes.... Isn't krepy going to try it?\n\tringebri: Forgot to ask him. He's staying at Wendy's until Saturday.\n\n3) MagicJohn: Build B1 Magicjohn (n)\n\tringebri: Certainly is a colorful game!\n\n4) ringebri: Build Y1 Ringebri\n\tMagicJohn: Finally figured out how to construct a ship!!!! It was "build b1 MagicJohn (N)\n\tMagicJohn: Forgot the end quotes...\n\n5) MagicJohn: Build B1 Magicjohn (n)\n\tringebri: my command was "build y1 ringebri". No seating designation.\n\n6) ringebri: Build Y1 Ringebri\n\tringebri: I'll try to play this one from home. Cell play not good.\n\n7) MagicJohn: Build B1 Magicjohn\n\n8) ringebri: Build Y2 Ringebri\n\n9) MagicJohn: Trade B1 G1 Magicjohn\n\n10) ringebri: Build Y2 Ringebri\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) ringebri: Trade Y2 B2 Ringebri\n\n13) MagicJohn: Build G2 Magicjohn\n\n14) ringebri: Build B1 Ringebri\n\n15) MagicJohn: Discover G1 Magicjohn R3 Patches1\n\n16) ringebri: Discover Y2 Ringebri G3 Buffy1\n\n17) MagicJohn: Build G2 Patches1\n\tringebri: We both discovered dog stars!\n\tMagicJohn: Canis you ever be Sirius?\n\n18) ringebri: Build Y2 Buffy1\n\n19) MagicJohn: Build G3 Patches1\n\n20) ringebri: Build Y2 Buffy1\n\n21) MagicJohn: Move B1 Magicjohn Patches1\n\n22) ringebri: Build Y3 Ringebri\n\tMagicJohn: Have you heard of the MIM? It's a new (as in just constructed)250 million dollar - 190,000-square foot Musical Instrument Museum. It's acquired 12,000 instruments so far. Thought you might be interested.\n\n23) MagicJohn: Trade G1 R1 Patches1\nCatastrophe Ringebri Y\n\tringebri: Sounds interesting. Where is it? What an orchestra that would be!\n\n24) ringebri: Trade B1 Y1 Ringebri\n\tMagicJohn: \n\tMagicJohn: Global warming perhaps? : }\n\tringebri: So. A catastrophe wiped out all my beautiful yellow ships! How dasterdly! And you've got an attack ship ready to pounce. I'll look at this later at home.\n\n25) MagicJohn: Trade G1 Y1 Magicjohn\n\n26) ringebri: Build Y3 Ringebri\n\n27) MagicJohn: Move Y1 Magicjohn Buffy1\nCatastrophe Buffy1 Y\n\n28) ringebri: Trade B2 R2 Ringebri\n\tMagicJohn: Maybe if you monitored your CO2 emissions........\n\tringebri: Woof! Wimper! I didn't see that coming.\r\n\n\n29) MagicJohn: Trade G3 R3 Patches1\n\n30) ringebri: Move R2 Ringebri Patches1 Catastrophe Patches1 Red\n\n31) MagicJohn: Attack R2 Patches1\n\n32) ringebri: Trade Y3 R3 Ringebri\nCatastrophe Patches1 Red\n\n33) MagicJohn: Build G1 Magicjohn\n\tringebri: I'm so sorry! I'll call the president. Maybe he'll send in the national guard to help out!\n\tMagicJohn: You killed Patches. The President Hell, I'm calling the ASPCA. \n\n34) ringebri: Trade Y1 G1 Ringebri\n\n35) MagicJohn: Discover G1 Magicjohn B3 Patches2\n\n36) ringebri: Build G2 Ringebri\n\n37) MagicJohn: Trade G2 Y2 Magicjohn\n\n38) ringebri: Build R1 Ringebri\n\n39) MagicJohn: Move Y2 Magicjohn Patches2\n\n40) ringebri: T G2 Y2 Ringebri D Y2 Ringebri Y3 Buffy2\n\n41) MagicJohn: Trade B3 R3 Magicjohn\n\n\n42) ringebri: Discover Y2 Ringebri Y3 Buffy2\n\n43) MagicJohn: Trade Y2 R2 Patches2\n\n44) ringebri: Trade R3 Y3 Ringebri\n\n45) MagicJohn: Move R3 Magicjohn Buffy2\n\n46) ringebri: Build G2 Ringebri\n\n47) MagicJohn: Attack Y2 Buffy2\n\n48) ringebri: Build R1 Ringebri\n\n49) MagicJohn: Build B1 Magicjohn\n\n50) ringebri: Build Y1 Ringebri\n\n51) MagicJohn: Trade B1 Y1 Magicjohn\n\n52) ringebri: Move G1 Ringebri Buffy2\n\n53) MagicJohn: Attack G1 Buffy2\n\tringebri: uh-oh! bad guys here!\n\n54) ringebri: Trade G2 R2 Ringebri\n\tMagicJohn: Not bad guys, simply superior beings.\n\n55) MagicJohn: Build R1 Buffy2\n\tringebri: Beings with big heads, you mean.\n\n56) ringebri: Move R2 Ringebri Patches2\n\tMagicJohn: ET had a big head and he was cute!\n\n57) MagicJohn: Attack R2 Patches2\n\tringebri: "Where no man has gone before!" "I see a patchesite!"\n\n58) ringebri: Build Y2 Ringebri\n\n59) MagicJohn: Move Y2 Buffy2 Ringebri\nCatastrophe Ringebri Y\n\n60) ringebri: Trade R1 Y1 Ringebri\n\tringebri: Aaaaaahhh! the suffering and pain!\n\n61) MagicJohn: Move R3 Buffy2 Ringebri\n\tMagicJohn: Remember, you are responsible for an entire civilization..... no matter how backwards they may be.\n\n62) ringebri: Construct R1 Ringebri\n\n63) MagicJohn: Attack Y1 Ringebri\n\tringebri: My people are very apprehensive. Doom is in the atmosphere.\n\n64) ringebri: Construct R2 Ringebri\n\n65) MagicJohn: Build R3 Buffy2\nCatastrophe Ringebri Red\n\tringebri: Hmmm. We're dead. Ok.\n\n\nHomeworlds Online (SDG# 15947)\nStarted: 2010.5.3, Ended: 2010.5.4\nParticipants: jims (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 R2 G3 *\n\n\tts52: Have a good game.\n\nHomeworlds Online (SDG# 16258)\nVariants: "Hard time"\nStarted: 2010.5.3, Ended: 2010.6.22\nParticipants: SilentTitan (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) SilentTitan: Homeworld B1 R3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) SilentTitan: Discover G1 Silenttitan Y2 Sol\n\n11) agentofchaos: Discover Y1 Agentofchaos G3 Invictus\n\n12) SilentTitan: Discover G1 Sol Y3 Sole\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) SilentTitan: Build G1 Sole\n\n15) agentofchaos: Trade G1 Y1 Agentofchaos\n\n16) SilentTitan: Build Y2 Silenttitan\n\n17) agentofchaos: Build Y2 Invictus\n\n18) SilentTitan: Discover Y1 Silenttitan G2 Soul\n\n19) agentofchaos: Trade Y1 B1 Agentofchaos\n\n20) SilentTitan: Build G1 Silenttitan\n\n21) agentofchaos: Build B2 Agentofchaos\n\n22) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Sole Agentofchaos\nMove G1 Sole Agentofchaos\n\n23) agentofchaos: Trade G3 Y3 Agentofchaos\n\n24) SilentTitan: Trade G1 R1 Agentofchaos\n\n25) agentofchaos: Move R1 Agentofchaos Invictus\n\n26) SilentTitan: Build R1 Agentofchaos\n\n27) agentofchaos: Attack G1 Agentofchaos\n\n28) SilentTitan: Trade R1 Y1 Agentofchaos\n\n29) agentofchaos: Attack Y1 Agentofchaos\n\n30) SilentTitan: Trade G3 Y3 Silenttitan\n\n31) agentofchaos: Attack R1 Agentofchaos\n\n32) SilentTitan: Build Y2 Silenttitan\n\n33) agentofchaos: Trade B2 G2 Agentofchaos\n\n34) SilentTitan: Trade Y2 B2 Silenttitan\n\n35) agentofchaos: Discover G2 Agentofchaos Y3 Plasmore\n\n36) SilentTitan: Build Y2 Silenttitan\n\n37) agentofchaos: Build R1 Agentofchaos\n\n38) SilentTitan: Build G1 Silenttitan\n\n39) agentofchaos: Build R2 Invictus\n\n40) SilentTitan: Discover G1 Silenttitan Y2 Flash\n\n41) agentofchaos: Build B2 Agentofchaos\n\n42) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover G1 Flash B3 Sump\nMove Y1 Soul Sump\n\n43) agentofchaos: Move B2 Agentofchaos Sump\n\n\tSilentTitan: good game.. Thanks\n\nHomeworlds Online (SDG# 16250)\nVariants: "Hard time"\nStarted: 2010.5.4, Ended: 2010.5.14\nParticipants: captncavern (S), jonaskoelker (N)\nWinner: captncavern\n\n1) jonaskoelker: Homeworld B1 R2 G3\n\n2) captncavern: Homeworld G3 B1 Y3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) captncavern: Build Y1 Captncavern\n\n\tjonaskoelker: I forgot to play AGAIN? :( Seems to happen a lot these days. I'm sorry.\r\n\n\tcaptncavern: Well, you lost it, so it doesn't really matter to me ;)\r\nIf you care about the ratings, however, maybe Aaron can cancel this game...\n\tjonaskoelker: Nah, the ratings don't matter (that) much; it's more the fact that I can't seem to stick to playing homeworlds. No need to cancel the game. And why aren't you disappointed---did you play to win and not to play? :O ;-)\n\tcaptncavern: Oh... well, If you look at my rating for Homeworlds, you'll see that I'm not playing this game for the ratings ;) I love the game, but I really can't get my head around it.\r\n\r\nI'm actually (a little) more serious about Ordo, with the tournament going on right now and a chance to get the game from Nestorgames :)\n\nHomeworlds Online (SDG# 16095)\nVariants: "Hard time"\nStarted: 2010.5.6, Ended: 2010.5.13\nParticipants: Jesse (S), rootbier (N)\nWinner: Jesse\n\n1) rootbier: Homeworld B2 Y1 G3\n\n2) Jesse: Homeworld R1 B3 G3\n\trootbier: Impressive record.\r\nI'll try to give you some challenge.\n\n3) rootbier: Build G1 Rootbier\n\tJesse: Thanks. Have a good game.\n\n4) Jesse: Build G1 Jesse\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) rootbier: Build G1 Rootbier\n\n8) Jesse: Build Y1 Jesse\n\n9) rootbier: D G1 Rootbier B3 Bagatelle\n\n10) Jesse: Build Y2 Jesse\n\n11) rootbier: Build R1 Rootbier\n\n12) Jesse: Discover Y2 Jesse B2 Eggplanet\n\n13) rootbier: Build R2 Rootbier\n\n14) Jesse: Sacrifice G3 Jesse\nBuild Y2 Eggplanet\nBuild Y2 Eggplanet\nBuild Y3 Jesse\n\n15) rootbier: Discover R2 Rootbier Y3 Aubergine\n\n16) Jesse: Trade Y2 R2 Eggplanet\n\n17) rootbier: Discover R1 Rootbier Y3 Mainfest\n\trootbier: that's the second time i've moved when i should have traded for yellow. color control! :)\n\n18) Jesse: Trade Y3 G3 Jesse\n\n19) rootbier: Sacrifice G3 Rootbier\nBuild R2 Aubergine\nBuild R3 Mainfest\nBuild R3 Rootbier\n\n20) Jesse: Sacrifice G3 Jesse\nBuild Y2 Eggplanet\nBuild Y3 Jesse\nBuild R3 Eggplanet\n\tJesse: Yellow freeze out is especially painful, if you can't find a way out of it.\n\n21) rootbier: Discover R3 Mainfest B1 Pony\n\trootbier: I'm not sure why I am using this game (against super-pro you) to try new things. :)\n\n22) Jesse: Trade Y2 G2 Eggplanet\n\n23) rootbier: Discover R1 Mainfest B2 Typo\n\n24) Jesse: Discover R2 Eggplanet Y3 Check\n\n25) rootbier: Trade R1 B1 Rootbier\n\n26) Jesse: Build Y2 Eggplanet\n\trootbier: trying to bluebird me :D\n\n27) rootbier: Move B1 Rootbier Aubergine\n\tJesse: I'd rather not catch you with your pants down on that one, hence the warning in the system name. Defending keeps you busy so I can grab that y2 back up again, though.\n\n28) Jesse: Build R1 Eggplanet\n\n29) rootbier: Discover R2 Aubergine G2 Pesto\n\n30) Jesse: Sacrifice Y3 Jesse\nMove R3 Eggplanet Check\nMove R3 Check Rootbier\nMove R2 Check Rootbier\n\n31) rootbier: Sacrifice R2 Aubergine\nAttack R2 Rootbier\nAttack R3 Rootbier\n\n32) Jesse: Sacrifice Y2 Eggplanet\nMove R1 Eggplanet Aubergine\nMove R1 Aubergine Rootbier\nCatastrophe Rootbier R\n\trootbier: might as well at least go out owning the ships :P\n\n\trootbier: thanks for the game. i learned a valuable lesson (which i have already used once against a friend face-to-face)\n\tJesse: Thanks for the game.\n\nHomeworlds Online (SDG# 16276)\nStarted: 2010.5.7, Ended: 2010.8.7\nParticipants: rootbier (S), Mandrel (N)\nWinner: rootbier\n\n1) Mandrel: Homeworld B2 R1 G3\n\tMandrel: Have a good game!\n\n2) rootbier: Homeworld B1 Y3 G3\n\trootbier: You're the first to take my standing challenge :) Have a good one yourself :)\n\n3) Mandrel: Build G1 Mandrel\n\n4) rootbier: Build G1 Rootbier\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) rootbier: Trade G1 R1 Rootbier\n\n7) Mandrel: Build Y1 Mandrel\n\n8) rootbier: Build R1 Rootbier\n\n9) Mandrel: Build G1 Mandrel\n\n10) rootbier: Trade R1 Y1 Rootbier\n\n11) Mandrel: Build Y2 Mandrel\n\n12) rootbier: Build Y2 Rootbier\n\n13) Mandrel: Discover Y1 Mandrel G3 Queasy\n\n14) rootbier: Trade Y1 B1 Rootbier\n\n15) Mandrel: Build Y1 Mandrel\n\n16) rootbier: Discover Y2 Rootbier G2 Pesto\n\n17) Mandrel: T Y1 B1 Mandrel\n\n18) rootbier: Build B2 Rootbier\n\n19) Mandrel: Build B2 Mandrel\n\n20) rootbier: Discover B1 Rootbier Y2 Stone\n\n21) Mandrel: M B2 Mandrel Queasy\n\n22) rootbier: Move B2 Rootbier Pesto\n\n23) Mandrel: Build B3 Queasy\n\n24) rootbier: Build B3 Pesto\n\n25) Mandrel: Trade B3 R3 Queasy\n\n26) rootbier: Discover B2 Pesto R3 Ungarn\n\n27) Mandrel: Move R3 Queasy Stone\n\n28) rootbier: Move B1 Stone Queasy\n\n29) Mandrel: Move B1 Mandrel Queasy\n\n30) rootbier: Build G1 Rootbier\n\n31) Mandrel: Move B1 Queasy Stone\n\n32) rootbier: Sacrifice Y2 Pesto\nMove B2 Ungarn Mandrel\nMove B1 Queasy Mandrel\n\n33) Mandrel: Sacrifice R3 Stone\nAttack B1S Mandrel\nAttack B2S Mandrel\nPass\n\n34) rootbier: Discover G1 Rootbier G2 Posthaste\n\n35) Mandrel: Build Y1 Queasy\n\n36) rootbier: Build B3 Pesto\n\trootbier: If I had a plan when I made that last move - I've since forgotten it. Thanks for your patience while I was away.\n\n37) Mandrel: Sacrifice G1 Mandrel\nBuild B3 Stone\n\tMandrel: No worries! Often have the same thing, a move that seemed part of some grand plan that I can't remember a few days later.\n\n38) rootbier: Trade B3 Y3 Pesto\n\n39) Mandrel: Trade B2 R2 Mandrel\n\n40) rootbier: Build B2 Pesto\n\n41) Mandrel: Trade B3 R3 Stone\n\n42) rootbier: Trade B3 R3 Pesto\n\n43) Mandrel: Move B2 Queasy Posthaste\n\n44) rootbier: Move B2 Pesto Queasy\n\n45) Mandrel: S Y1 Queasy\nMove Y1 Queasy Posthaste\n\n46) rootbier: Build B3 Queasy\n\n47) Mandrel: M B1 Mandrel Queasy\n\n48) rootbier: Trade B2 R2 Queasy\n\n49) Mandrel: Build B2 Posthaste\n\n50) rootbier: Build G1 Rootbier\n\n51) Mandrel: T B2 R2 Posthaste\n\n52) rootbier: Sacrifice G3 Rootbier\nBuild G1 Posthaste\nBuild G2 Posthaste\nBuild G3 Rootbier\nCatastrophe Posthaste G\n\n53) Mandrel: Build G1 Mandrel\n\n54) rootbier: Build R1 Queasy\n\n55) Mandrel: Discover R2 Mandrel Y3 Hollow\n\n56) rootbier: Move R3 Pesto Hollow\n\trootbier: btw. it's your turn on our four-(now three)-way game. http://superdupergames.org/main.html?page=play_homeworlds&num=16201 i think the turn reporting might be messed up with that other player out.\n\n57) Mandrel: M R2 Hollow Stone\n\tMandrel: Cheers, I'd almost forgotten about that game at all\n\n58) rootbier: Move R1 Rootbier Stone\n\n59) Mandrel: Sacrifice B1 Stone\nTrade R2 G2 Stone\n\n60) rootbier: Sacrifice G3 Rootbier\nBuild R2 Stone\nBuild R2 Stone\nBuild R3 Hollow\nCatastrophe Stone R\n\n61) Mandrel: M G2 Stone Rootbier\n\n62) rootbier: Move Y3 Pesto Rootbier\n\n63) Mandrel: Build G1 Rootbier\n\n64) rootbier: Sacrifice R2 Queasy\nAttack G1 Rootbier\nAttack G2 Rootbier\n\trootbier: Welcome to rootbier. Can I take your order?\n\n65) Mandrel: T G1 R1 Mandrel\n\n66) rootbier: Trade G2 Y2 Rootbier\n\tMandrel: Nothing for me thank you, just popping in briefly.\n\trootbier: At rootbier we have and enforce a chain-wide $10.00 minimum order policy. I'm afraid I have to ask you to either order or kindly leave the establishment.\n\n67) Mandrel: Build Y1 Mandrel\n\n68) rootbier: Sacrifice Y2 Rootbier\nMove B3 Queasy Mandrel\nMove R3 Hollow Mandrel\n\n69) Mandrel: B R2 Mandrel\nC Mandrel Red\n\tMandrel: Fair enough, i'll bear that in mind on any future visits.\n\n70) rootbier: Sacrifice R3 Hollow\nAttack G3 Mandrel\nAttack Y2 Mandrel\nAttack Y1 Mandrel\n\n71) Mandrel: T Y1 R1 Mandrel\n\n72) rootbier: Sacrifice R1 Queasy\nAttack R1 Mandrel\n\n\trootbier: Thanks for the game. Grab my standing if you want a rematch.\n\tMandrel: Good game, well played.\n\nHomeworlds Online (SDG# 16201)\nStarted: 2010.5.8, Ended: 2010.12.4\nParticipants: rootbier (S), Mandrel (W), radio414 (N), zoltar (E)\nWinner: zoltar\n\n1) radio414: Homeworld B2 R1 G3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) rootbier: Homeworld Y1 B3 G3\n\n4) Mandrel: Homeworld B1 R2 G3\n\n5) radio414: Build G1 Radio414\n\n6) zoltar: Build G1 Zoltar\n\n7) rootbier: Build G1 Rootbier\n\n8) Mandrel: Build G1 Mandrel\n\n9) radio414: Trade G1 Y1 Radio414\n\n10) zoltar: Trade G1 Y1 Zoltar\n\n11) rootbier: Trade G1 R1 Rootbier\n\trootbier: last man standing is it?\n\n12) Mandrel: Trade G1 Y1 Mandrel\n\n13) radio414: Build G1 Radio414\n\tMandrel: Yeah, that's the default setting for 3+ players.\n\n14) zoltar: Build G1 Zoltar\n\n15) rootbier: Build G1 Rootbier\n\n16) Mandrel: B G1 Mandrel\n\n17) radio414: Trade G1 B1 Radio414\n\n18) zoltar: Trade G1 B1 Zoltar\n\n19) rootbier: Trade G1 Y1 Rootbier\n\n20) Mandrel: Build Y2 Mandrel\n\n21) radio414: Build Y2 Radio414\n\n22) zoltar: Build Y2 Zoltar\n\n23) rootbier: Build Y2 Rootbier\n\n24) Mandrel: D Y2 Mandrel G3 Recovery\n\n25) radio414: Build G1 Radio414\n\n26) zoltar: Discover Y1 Zoltar G1 Greenpea\n\n27) rootbier: Discover Y2 Rootbier B2 Aubergine\n\n28) Mandrel: Trade G1 R1 Mandrel\n\n29) radio414: Build B1 Radio414\n\n30) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenpea\nBuild Y3 Zoltar\nBuild Y3 Zoltar\n\n31) rootbier: Discover Y2 Aubergine G3 Pesto\n\n32) Mandrel: Build Y3 Recovery\n\n33) radio414: Trade Y1 R1 Radio414\n\n34) zoltar: Sacrifice Y2 Zoltar\nMove Y2 Greenpea Recovery\nMove Y1 Greenpea Recovery\nCatastrophe Recovery Y\n\n35) rootbier: Build G1 Rootbier\n\n36) Mandrel: Build G1 Mandrel\n\n37) radio414: Trade B1 Y1 Radio414\n\n38) zoltar: Trade Y3 G3 Zoltar\n\n39) rootbier: Trade G1 B1 Rootbier\n\n40) Mandrel: Discover G1 Mandrel Y3 Anxiety\n\n41) radio414: Discover Y2 Radio414 B3 Nothing\n\n42) zoltar: Discover B1 Zoltar G1 Greenpea\n\n43) rootbier: Discover Y1 Rootbier B2 Serendipity\n\n44) Mandrel: Build G1 Anxiety\n\n45) radio414: Move G1 Radio414 Nothing\n\n46) zoltar: Build B1 Greenpea\n\n47) rootbier: Move Y1 Serendipity Greenpea\n\n48) Mandrel: Build G1 Mandrel\n\n49) radio414: Build G2 Nothing\n\n50) zoltar: Build B2 Greenpea\n\n51) rootbier: Sacrifice Y2 Pesto\nDiscover B1 Rootbier R2 Nong\nMove B1 Nong Greenpea\nCatastrophe Greenpea B\n\n52) Mandrel: Build G2 Anxiety\n\n53) zoltar: Build G2 Zoltar\n\n54) rootbier: Build G2 Rootbier\n\n55) Mandrel: Discover G1 Anxiety B2 Empty\n\n56) zoltar: Discover G3 Zoltar B1 Blueberry\n\n57) rootbier: Trade G2 Y2 Rootbier\n\n58) Mandrel: Build G2 Empty\n\n59) zoltar: Build G2 Blueberry\n\n60) rootbier: Build G3 Rootbier\n\n61) Mandrel: Trade G2 Y2 Empty\n\n62) zoltar: Sacrifice G3 Blueberry\nBuild G2 Blueberry\nBuild G3 Zoltar\nBuild Y1 Zoltar\n\n63) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Greenpea\nBuild G3 Rootbier\nBuild R1 Rootbier\n\n64) Mandrel: B Y2 Empty\n\n65) zoltar: Move Y3 Zoltar Blueberry\n\n66) rootbier: Sacrifice Y2 Rootbier\nMove G3 Rootbier Empty\nMove Y2 Greenpea Nothing\n\n67) Mandrel: B Y2 Mandrel\n\n68) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Blueberry\n\n69) rootbier: Build Y3 Greenpea\n\n70) Mandrel: M G1 Anxiety Radio414\n\n71) zoltar: Trade G2 R2 Blueberry\n\n72) rootbier: Build G2 Rootbier\n\n73) Mandrel: S Y2 Empty\nMove Y2 Empty Rootbier\nMove G1 Empty Rootbier\n\n74) zoltar: Sacrifice Y3 Blueberry\nMove G2 Blueberry Empty\nMove G2 Empty Rootbier\nMove R2 Blueberry Nothing\nCatastrophe Rootbier G\n\n75) rootbier: Sacrifice Y1 Greenpea\nMove G3 Empty Rootbier\n\n76) Mandrel: Move R1 Mandrel Anxiety\n\n77) zoltar: Attack Y2S Nothing\n\n78) Mandrel: B R2 Anxiety\n\n79) zoltar: Attack G2N Nothing\n\n80) Mandrel: Attack R1N Radio414\n\n81) zoltar: Attack G1N Nothing\n\n82) Mandrel: Attack Y1N Radio414\n\tzoltar: rootbier: are you back from your mega-business tour yet?\n\n83) zoltar: Move Y3 Blueberry Anxiety\n\n84) Mandrel: Sacrifice Y2 Mandrel\nMove R2 Anxiety Greenpea\nMove G2 Anxiety Greenpea\n\n85) zoltar: Sacrifice Y3 Zoltar\nMove G1 Nothing Mandrel\nMove G2 Nothing Mandrel\nMove Y3 Anxiety Mandrel\nCatastrophe Mandrel G\n\n86) Mandrel: Move R1 Anxiety Mandrel\n\n87) zoltar: Sacrifice R2 Nothing\nAttack Y1W Mandrel\nAttack R1W Mandrel\n\n\tMandrel: eep.\n\tzoltar: Yeah, the Y3 is the most dangerous ship in the game, when it comes to sacrificing.\n\nHomeworlds Online (SDG# 16244)\nStarted: 2010.5.8, Ended: 2010.6.9\nParticipants: zoltar (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\tMandrel: Have a good game.\n\n3) Mandrel: Build G1 Mandrel\n\n4) zoltar: Build G1 Zoltar\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Mandrel: Build G1 Mandrel\n\n8) zoltar: Build G1 Zoltar\n\n9) Mandrel: Trade G1 R1 Mandrel\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) Mandrel: Build R2 Mandrel\n\n12) zoltar: Build R2 Zoltar\n\n13) Mandrel: Build G1 Mandrel\n\n14) zoltar: Trade R1 B1 Zoltar\n\n15) Mandrel: D G1 Mandrel Y3 Grim\n\n16) zoltar: Discover R2 Zoltar G2 Greenbelt\n\n17) Mandrel: Build G1 Mandrel\n\n18) zoltar: Sacrifice Y1 Zoltar\nMove R2 Greenbelt Grim\n\n19) Mandrel: Trade R2 Y2 Mandrel\n\n20) zoltar: Attack G1 Grim\n\n21) Mandrel: Trade G1 B1 Mandrel\n\n22) zoltar: Build B2 Zoltar\n\n23) Mandrel: Build R1 Mandrel\n\n24) zoltar: Trade B2 Y2 Zoltar\n\n25) Mandrel: Discover R1 Mandrel G3 Sleep\n\n26) zoltar: Build R2 Grim\n\n27) Mandrel: Build R2 Sleep\n\n28) zoltar: Sacrifice Y2 Zoltar\nMove R2 Grim Mandrel\nMove R2 Grim Mandrel\nCatastrophe Mandrel R\n\n29) Mandrel: Sacrifice Y1 Mandrel\nDiscover R2 Sleep B2 Disappointment\n\n30) zoltar: Build G1 Zoltar\n\n31) Mandrel: Trade R2 B2 Disappointment\n\n32) zoltar: Sacrifice B1 Zoltar\nTrade G1 B1 Grim\n\n33) Mandrel: Build G1 Mandrel\n\n34) zoltar: Sacrifice G1 Zoltar\nBuild B3 Grim\n\n35) Mandrel: Sacrifice Y2 Mandrel\nMove G3 Mandrel Zoltar\nMove G1 Mandrel Zoltar\n\n\tzoltar: Oh, I forgot about that. My blowing up your star was terribly premature and a standard beginners' mistake, and I realized I was lost after I did that and should've known better. I used to do better, but these days I've been losing every game these days, except the 4-player games. Good Game.\n\tMandrel: Thanks for the game, still quite new to it, thought I'd lost when my star went, and was convinced I'd overlooked something in the last move, Good game!\n\nHomeworlds Online (SDG# 16210)\nVariants: "Hard time"\nStarted: 2010.5.8, Ended: 2010.5.9\nParticipants: dlwillson (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 16298)\nVariants: "Hard time"\nStarted: 2010.5.8, Ended: 2010.5.18\nParticipants: zoltar (S), SilentTitan (N)\nWinner: zoltar\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) zoltar: Build G1 Zoltar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) zoltar: Build G1 Zoltar\n\n9) SilentTitan: Discover G1 Silenttitan Y3 Swing\n\n10) zoltar: Discover G1 Zoltar B2 Bluemoon\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) zoltar: Build G2 Bluemoon\n\n13) SilentTitan: Build G2 Silenttitan\n\n14) zoltar: Trade G1 R1 Bluemoon\n\n15) SilentTitan: Discover G2 Silenttitan G3 Loaner\n\n16) zoltar: Build G1 Zoltar\n\n17) SilentTitan: Discover G1 Silenttitan R3 Wastenot\n\n18) zoltar: Sacrifice G3 Zoltar\nBuild G2 Bluemoon\nBuild G3 Zoltar\nBuild R1 Bluemoon\n\n19) SilentTitan: Sacrifice G2 Loaner\nBuild G2 Silenttitan\nBuild G3 Swing\n\n20) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Zoltar\nBuild Y2 Zoltar\n\n21) SilentTitan: Trade G3 Y3 Silenttitan\n\n22) zoltar: Sacrifice Y2 Zoltar\nMove G2 Bluemoon Swing\nMove G2 Bluemoon Swing\nCatastrophe Swing G\n\n23) SilentTitan: Build Y2 Silenttitan\n\n24) zoltar: Build Y2 Zoltar\n\n25) SilentTitan: Discover Y1 Silenttitan B3 Simple\n\n26) zoltar: Move Y1 Zoltar Bluemoon\n\n27) SilentTitan: Trade Y2 R2 Silenttitan\n\n28) zoltar: Discover Y2 Zoltar G2 Greenbelt\n\n29) SilentTitan: Build G1 Silenttitan\n\n30) zoltar: Move G1 Zoltar Bluemoon\n\n31) SilentTitan: Discover G2 Silenttitan G3 Whippy\n\n32) zoltar: Discover R1 Bluemoon G3 Greengiant\n\n33) SilentTitan: Move R2 Silenttitan Simple\n\n34) zoltar: Build G2 Zoltar\n\n35) SilentTitan: Sacrifice G2 Whippy\nBuild G2 Wastenot\nBuild G3 Silenttitan\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Bluemoon\nBuild R3 Greengiant\n\n37) SilentTitan: Sacrifice Y3 Silenttitan\nDiscover Y1 Simple B2 Ablaze\nDiscover G2 Wastenot Y2 Ablare\nDiscover G1 Wastenot Y2 Ablame\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Bluemoon\nBuild Y3 Zoltar\n\n39) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Ablaze\nBuild R3 Simple\nBuild G3 Silenttitan\n\n40) zoltar: Sacrifice Y3 Bluemoon\nMove G3 Zoltar Greenbelt\nMove G3 Greenbelt Greengiant\nMove G3 Greengiant Silenttitan\n\n\tSilentTitan: good game ... thanks\n\tzoltar: gg -- I didn't see the win until the last move. I was aware you were vulnerable with only green in your homeworld, and my plan had been to sacrifice a Y2 to move my G1 from bluemoon into your homeworld to create a threat, but then I realized I can just put the large green in now, and you lose if you capture it and you lose if you don't. Your one defense was to sacrifice the Y3 to bring your own g1 back to your homeworld and blow up the greens, but use the other two moves of the sacrifice to bring your R3 and Y1 back as well: you'd still be alive, but down in material, and then I could sacrifice my other Y3 to move two red pieces to your homeworld and blow up your R3 and red star. That game got really exciting and was close to the end!\n\nHomeworlds Online (SDG# 16047)\nStarted: 2010.5.8, Ended: 2010.5.23\nParticipants: zoltar (S), dethdukk (N)\nWinner: zoltar\n\n1) dethdukk: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) dethdukk: Build G1 Dethdukk\n\n4) zoltar: Build G1 Zoltar\n\n\nHomeworlds Online (SDG# 16297)\nStarted: 2010.5.8, Ended: 2010.5.18\nParticipants: Teo (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B3 R1 G3\n\tTeo: homeworld b1 v2 y3\n\tTeo: oh I have to wait for you...\n\n2) Teo: Homeworld B1 G2 Y3\n\n3) rootbier: Build G1 Rootbier\n\n4) Teo: Build Y1 Teo\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) Teo: Trade Y1 G1 Teo\n\n7) rootbier: Build Y1 Rootbier\n\n8) Teo: Build G1 Teo\n\n9) rootbier: Trade Y1 R1 Rootbier\n\n10) Teo: Trade G1 B1 Teo\n\n11) rootbier: Build R1 Rootbier\n\n12) Teo: Build G1 Teo\n\n13) rootbier: Discover R1 Rootbier B2 Springless\n\n14) Teo: Trade Y3 R3 Teo\n\n15) rootbier: Build Y1 Rootbier\n\n16) Teo: Build R2 Teo\n\n17) rootbier: Build Y1 Rootbier\n\n18) Teo: Trade R2 Y2 Teo\n\n19) rootbier: Discover Y1 Rootbier G2 Special\n\n20) Teo: Build Y2 Teo\n\n21) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Special\nBuild Y3 Rootbier\nBuild R2 Springless\n\n22) Teo: Build R2 Teo\n\n23) rootbier: Discover Y1 Rootbier G2 Optimal\n\n24) Teo: Discover Y2 Teo R3 Sun\n\n25) rootbier: Build Y3 Optimal\n\n26) Teo: Build Y3 Teo\n\n27) rootbier: Trade Y3 G3 Rootbier\n\n28) Teo: Move G1 Teo Sun\n\n29) rootbier: Discover Y1 Special B3 Noteworthy\n\n30) Teo: Move Y3 Teo Sun\n\n31) rootbier: Trade Y1 G1 Noteworthy\n\n32) Teo: Build G3 Sun\n\n33) rootbier: Build G3 Noteworthy\n\n34) Teo: Move Y3 Sun Springless\n\n35) rootbier: Sacrifice G3 Noteworthy\nBuild G3 Noteworthy\nBuild Y1 Special\nBuild Y3 Rootbier\n\n36) Teo: Move G1 Sun Springless\n\n37) rootbier: Sacrifice Y2 Special\nMove G1 Noteworthy Teo\nMove G3 Noteworthy Teo\nCatastrophe Teo G\n\n38) Teo: Trade B1 G1 Teo\n\n39) rootbier: Trade Y3 B3 Rootbier\n\n40) Teo: Trade R2 B2 Teo\n\n41) rootbier: Build Y2 Special\n\n42) Teo: Build Y3 Teo\n\n43) rootbier: Sacrifice B3 Rootbier\nTrade Y2 B2 Special\nTrade Y1 B1 Special\nTrade Y1 B1 Optimal\n\n\nHomeworlds Online (SDG# 16314)\nVariants: "Hard time"\nStarted: 2010.5.8, Ended: 2010.6.2\nParticipants: zoltar (S), jeep (N)\nWinner: zoltar\n\n1) jeep: Homeworld R1 B2 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) jeep: Build G1 Jeep\n\tjeep: b g1 jeep\n\tjeep: heh, oops. My last two games have been small universes and I didn't notice until a couple moves in. This time, I actually looked at the starting position. ;)\n\n4) zoltar: Build G1 Zoltar\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) jeep: Build G1 Jeep\n\n8) zoltar: Build G1 Zoltar\n\n9) jeep: Trade G1 B1 Jeep\n\n10) zoltar: Build G1 Zoltar\n\n11) jeep: Build B1 Jeep\n\n12) zoltar: Trade G1 R1 Zoltar\n\n13) jeep: Discover B1 Jeep G3 Builder\n\n14) zoltar: Build R1 Zoltar\n\n\tzoltar: As usual, I think I'm utterly lost from the start. I'm almost ready to resign already. I think you can get all the blue pieces and I can't stop you\n\tjeep: Well, that became my plan. Monopolize blue... We'll see how it goes. I'm baffled by your "as usual" statement. Aren't you (at least) one of the top rated players on SDG? You can't be in this situation too often. And you can't be talking about games against me... I don't think I've beat you at Homeworlds. Or, is it the "think" part that is important? Do you always start off thinking you are losing, but win anyways? ;) \n\tzoltar: .\r\nI tend to get the worst of it in openings, even though I often play better and catch up in the middle. I whine the most with TwoShort, who beats me every game (I managed to beat him once a long time ago). So I do pull out of these situations, but I find myself in them with much lower-rated players. I'm always playing catch-up, it seems. This one seems especially bad. I can get reds, but you'll get blues first. I'm just surprised that I'm continuing my streak of getting far behind in the opening. Anyway, it's nice to be playing you again. \n\tzoltar: Very good plan, btw, to get the advantage in blues right away, especially as they are the most easily cashed in for other colors, as you don't need a blue star or a sacrifice, as you do with the others. I'll have to try to get creative.\n\tzoltar: What the? Damn, as I felt you had the upper hand, I was looking forward to try to catch up and play my best. I guess there's nothing I can do if it's set to 'hard time'. Oh well.\n\tjeep: *sigh* sorry. I just got too busy. I'm out of the country and have sporadic internet. When I had access, I didn't have time to play. :(\n\nHomeworlds Online (SDG# 16301)\nVariants: "Hard time"\nStarted: 2010.5.9, Ended: 2010.5.27\nParticipants: dlwillson (S), zoltar (N)\nWinner: dlwillson\n\n1) zoltar: Homeworld R3 B1 G3\n\n2) dlwillson: Homeworld B2 Y1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) dlwillson: B G1 Dlwillson\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) zoltar: Build Y1 Zoltar\n\n8) dlwillson: Build B1 Dlwillson\n\n9) zoltar: Build Y2 Zoltar\n\n10) dlwillson: Discover B1 Dlwillson G3 Farmville\n\n11) zoltar: Trade Y2 B2 Zoltar\n\tdlwillson: good to see you again, z. hope you're well.\n\n12) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Farmville\nBuild B3 Farmville\nBuild B3 Dlwillson\n\n13) zoltar: Build B3 Zoltar\n\n14) dlwillson: Trade B3 Y3 Farmville\n\n15) zoltar: Discover B2 Zoltar G2 Greenbelt\n\tzoltar: nice to see you again too!\r\n\n\n16) dlwillson: Trade B3 G3 Dlwillson\n\tzoltar: never seen so much blue so early before!\n\n17) zoltar: Build B3 Greenbelt\n\tdlwillson: Let's put some back then! ;-)\n\n18) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Farmville\nBuild Y2 Farmville\nBuild B3 Dlwillson\n\n19) zoltar: Sacrifice B2 Greenbelt\nTrade B3 Y3 Greenbelt\nTrade Y1 R1 Zoltar\n\tzoltar: Wow. I think I'm going to take a long time out here and come back to this position tomorrow. It's pretty interesting, and I see 3 interesting moves I can make.\n\n20) dlwillson: Sacrifice B2 Farmville\nTrade B3 G3 Dlwillson\nTrade Y2 R2 Farmville\n\n21) zoltar: Move B3 Zoltar Greenbelt\n\n22) dlwillson: B G1 Dlwillson\n\n23) zoltar: Build G1 Zoltar\n\n24) dlwillson: Build B2 Farmville\n\n25) zoltar: Build B2 Greenbelt\n\n26) dlwillson: Sacrifice Y2 Farmville\nMove B1 Farmville Greenbelt\nMove B2 Farmville Greenbelt\nCatastrophe Greenbelt B\n\n27) zoltar: Trade G1 B1 Zoltar\n\tdlwillson: And now, there's hardly any blue anywhere... I'm sad. No wait, I'm blue... :-)\n\n28) dlwillson: Move B1 Dlwillson Farmville\n\n29) zoltar: Move B1 Zoltar Greenbelt\n\n30) dlwillson: Trade G1 R1 Dlwillson\n\n31) zoltar: Build B2 Greenbelt\n\n32) dlwillson: Build R1 Farmville\n\n33) zoltar: Trade B2 R2 Greenbelt\n\n34) dlwillson: Discover R1 Farmville B2 Cafeworld\n\n35) zoltar: Discover R1 Zoltar Y2 Yellowstone\n\n36) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Cafeworld\nBuild R3 Farmville\nBuild R3 Dlwillson\n\n37) zoltar: Move R1 Yellowstone Farmville\n\n38) dlwillson: Move B1 Farmville Dlwillson\n\tdlwillson: Excellent move! I have to think some more...\n\tzoltar: Well, not as good as your 'factory' move, where you got a free large red ship: I had to try to do something in response and not just be a whole large ship behind.\n\n39) zoltar: Move R2 Greenbelt Farmville\nCatastrophe Farmville R\n\tdlwillson: Excellent move, like I said. Let's see if I can recover.\n\n40) dlwillson: T B1 R1 Dlwillson\n\tdlwillson: Is that what you meant to do?\n\tzoltar: No, it wasn't. My position is lost probably, but somehow it didn't catastrophe; I thought I added that.\n\n41) zoltar: Build B1 Greenbelt\n\n42) dlwillson: Move Y3 Farmville Greenbelt\n\n43) zoltar: Build Y1 Greenbelt\n\n44) dlwillson: Sacrifice R2 Cafeworld\nAttack B1 Greenbelt\nAttack B1 Greenbelt\n\n\tzoltar: Yeah, I'm lost. Good game.\n\tdlwillson: Good game, Zoltar. I look forward to playing you again, anytime. You're a good opponent.\n\nHomeworlds Online (SDG# 16315)\nVariants: "Hard time"\nStarted: 2010.5.9, Ended: 2010.6.24\nParticipants: Danner (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) Danner: Homeworld B1 G2 R3\n\tDanner: Hi! Good luck!\n\n3) TwoShort: Build G1 Twoshort\n\n4) Danner: Build R1 Danner\n\n5) TwoShort: Trade G1 R1 Twoshort\n\n6) Danner: Trade R3 Y3 Danner\n\n7) TwoShort: Build R2 Twoshort\n\n8) Danner: Build R2 Danner\n\n9) TwoShort: Trade R2 Y2 Twoshort\n\n10) Danner: Build R2 Danner\n\n11) TwoShort: Build R2 Twoshort\n\n12) Danner: Trade R2 G2 Danner\n\n13) TwoShort: Discover R2 Twoshort G3 Grogar\n\n14) Danner: Move Y3 Danner Grogar\n\n15) TwoShort: Build R2 Twoshort\n\n16) Danner: Sacrifice R1 Danner\nAttack R2N Grogar\n\n17) TwoShort: Discover R1 Twoshort G3 Gonzo\n\n18) Danner: Build G1 Danner\n\n19) TwoShort: Build G1 Twoshort\n\n20) Danner: Trade G1 Y1 Danner\n\n21) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n22) Danner: Move G2 Danner Yolonda\n\n23) TwoShort: Build G1 Twoshort\n\tDanner: Sorry for not making moves lately. I'm in exam period, and the situation is not easy in the game either.\n\tTwoShort: No problem.\n\n24) Danner: Build Y1 Danner\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yolonda\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n26) Danner: Discover Y1 Danner R3 Builder\nCatastrophe Yolonda G\n\n27) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Twoshort Gonzo\nMove G3 Gonzo Danner\n\n28) Danner: Build Y1 Danner\n\n29) TwoShort: Sacrifice R2 Twoshort\nAttack R2 Danner\nAttack Y1 Danner\n\tDanner: Yeah, I hoped you won't notice it. I risked it because I didn't have much chance anyway.\n\n30) Danner: Sacrifice Y3 Grogar\nMove Y1 Builder Danner\nMove R2 Grogar Danner\nPass\n\tDanner: I think that things have gone wrong because I didn't manage to get a Y2 long time ago.\n\tTwoShort: Great game. I was feeling pretty cornered all the way up to a couple moves ago.\n\n31) TwoShort: Sacrifice G3 Danner\nBuild Y2 Danner\nBuild R1 Danner\nBuild R2 Danner\nCatastrophe Danner Yellow\nCatastrophe Danner Red\n\n\tDanner: One more turn :)\n\tTwoShort: Nope :)\n\tDanner: Yeah :D\r\nThx for the game :)\n\nHomeworlds Online (SDG# 16316)\nVariants: "Hard time"\nStarted: 2010.5.10, Ended: 2010.5.12\nParticipants: dlwillson (S), makertron (N)\nWinner: dlwillson\n\n1) makertron: Homeworld B1 R3 G3\n\n2) dlwillson: Homeworld B3 Y2 G3\n\n\tdlwillson: I hope you noticed that the timing is pretty tight on my standing challenge... You only get about a day per move, buildable to 10 days.\n\nHomeworlds Online (SDG# 16306)\nStarted: 2010.5.10, Ended: 2012.2.27\nParticipants: makertron (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld Y1 B2 G3\n\n2) makertron: Homeworld Y1 B2 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) makertron: Build G1 Makertron\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) makertron: Trade G1 R1 Makertron\n\n7) rootbier: Build Y2 Rootbier\n\n8) makertron: Build G1 Makertron\n\n9) rootbier: Discover Y2 Rootbier B3 Palpate\n\n10) makertron: Discover G1 Makertron B3 Homeworld\n\n11) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Palpate\nBuild Y2 Palpate\nBuild Y3 Rootbier\n\n12) makertron: Trade G3 Y3 Makertron\n\n13) rootbier: Sacrifice Y2 Palpate\nMove Y2 Palpate Makertron\nMove Y2 Palpate Makertron\nCatastrophe Makertron Y\n\n14) makertron: Trade R1 G1 Makertron\n\n15) rootbier: Trade Y3 G3 Rootbier\n\n16) makertron: Build G1 Makertron\n\n17) rootbier: Build Y1 Rootbier\n\n18) makertron: Build G2 Makertron\n\n19) rootbier: Discover Y1 Rootbier B3 Bolus\n\n\trootbier: poke.\n\nHomeworlds Online (SDG# 16156)\nStarted: 2010.5.10, Ended: 2010.6.2\nParticipants: ZackStack (S), makertron (N)\nWinner: ZackStack\n\n1) makertron: Homeworld B1 R3 G3\n\n2) ZackStack: Homeworld B2 R1 G3\n\tZackStack: Thanks for the challenge! Have a good game.\n\n\nHomeworlds Online (SDG# 16228)\nStarted: 2010.5.10, Ended: 2010.5.13\nParticipants: makertron (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n\nHomeworlds Online (SDG# 16322)\nVariants: "Hard time"\nStarted: 2010.5.10, Ended: 2010.5.12\nParticipants: dlwillson (S), makertron (N)\nWinner: dlwillson\n\n1) makertron: Homeworld R3 B1 G3\n\n2) dlwillson: Homeworld B3 Y2 G3\n\n\tdlwillson: why did you start two games exactly the same way\n\tdlwillson: Makertron, my standing challenge is hard time, and only allows about a day per turn. You might want to take a turn.\n\nHomeworlds Online (SDG# 16321)\nStarted: 2010.5.11, Ended: 2010.5.14\nParticipants: radio414 (S), makertron (N)\nWinner: radio414\n\n\nHomeworlds Online (SDG# 31739)\nVariants: "Unrated, Hard time"\nStarted: 2017.4.21, Ended: 2017.4.27\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: wil\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) wil: H Y2 B1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n6) wil: T G1 R1 Wil\n\n7) Draw5PlayAll: Build B1 Draw5playall\n\n8) wil: B R1 Wil\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\n10) wil: B R2 Wil\n\n11) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\twil: Somebody has left these cruise missiles everywhere...they must be good for something.\n\n12) wil: D R1 Wil B3 B3\n\n13) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n14) wil: S G3 Wil\nB R2 B3\nB R2 B3\nB R3 Wil\n\n15) Draw5PlayAll: Build B2 G2\n\n16) wil: D R2 Wil G3 G3\n\n17) Draw5PlayAll: Build B2 Draw5playall\n\n18) wil: T R3 G3 Wil\n\n19) Draw5PlayAll: Discover B1 Draw5playall Y2 Y2\n\n20) wil: S G3 Wil\nB R3 Wil\nB R3 G3\nB R3 Wil\n\n21) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B2 Y2\nBuild B3 Draw5playall\nBuild Y1 Draw5playall\n\n22) wil: D R3 Wil Y3 Y3\n\n23) Draw5PlayAll: Trade B3 G3 Draw5playall\n\n24) wil: M R3 Y3 Y2\n\n25) Draw5PlayAll: Build B3 G2\n\tDraw5PlayAll: Permission to resign?\n\n26) wil: Attack B2 Y2\n\twil: Any time, but i am not clear it is that bad.. this is such a game of capitalizing on mistakes...\n\n\tDraw5PlayAll: See, you even have blue now.\n\nHomeworlds Online (SDG# 16343)\nVariants: "Hard time"\nStarted: 2010.5.12, Ended: 2010.7.15\nParticipants: face (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) face: Homeworld R3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) face: Build G1 Face\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) face: Trade G3 Y3 Face\n\n7) dlwillson: Build G1 Dlwillson\n\n8) face: Build Y1 Face\n\n9) dlwillson: B R1 Dlwillson\n\n10) face: Trade Y1 B1 Face\n\n11) dlwillson: Build R1 Dlwillson\n\n12) face: Build Y1 Face\n\n13) dlwillson: Discover R1 Dlwillson B2 Potato\n\n14) face: Discover Y1 Face B1 Smash\n\n15) dlwillson: Discover R1 Dlwillson Y2 Meat\n\n16) face: Build Y1 Face\n\n17) dlwillson: S G3 Dlwillson\nB R2 Meat\nB R2 Meat\nB R2 Potato\n\n18) face: Trade Y3 R3 Face\n\n19) dlwillson: Build R3 Dlwillson\n\n20) face: Build Y2 Face\n\n21) dlwillson: M R2 Meat Smash\n\n22) face: Discover Y1 Smash G3 Waste\n\n23) dlwillson: T R3 Y3 Dlwillson\n\n24) face: Trade R3 Y3 Face\n\n25) dlwillson: B R3 Dlwillson\n\n26) face: Discover Y2 Face G1 Trash\n\n27) dlwillson: Build R3 Dlwillson\n\n28) face: Build Y2 Waste\n\n29) dlwillson: M Y3 Dlwillson Potato\n\n30) face: Build Y3 Trash\n\n31) dlwillson: T R3 G3 Dlwillson\n\n32) face: Move B1 Face Trash\n\n33) dlwillson: S G1 Dlwillson\nB R3 Smash\n\n34) face: Discover Y2 Trash G3 Tank\n\n35) dlwillson: M R3 Dlwillson Meat\n\n36) face: Build B1 Trash\n\n37) dlwillson: Move R3 Meat Smash\n\n38) face: Discover Y1 Waste G2 Plaster\n\n39) dlwillson: S Y3 Potato\nM R3 Smash Face\nM R3 Smash Face\nPass\n\n40) face: Discover Y2 Tank G2 Blitz\n\n41) dlwillson: Sacrifice R3 Face\nAttack Y3 Face\nAttack Y1 Face\nAttack G1 Face\n\n\nHomeworlds Online (SDG# 16361)\nStarted: 2010.5.13, Ended: 2010.5.21\nParticipants: rootbier (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Have a good game! And don't forget to count your ships before you attack ;-)\n\n2) rootbier: Homeworld R1 B3 G3\n\n3) ZackStack: Build G1 Zackstack\n\n4) rootbier: Build G1 Rootbier\n\n5) ZackStack: Trade G1 R1 Zackstack\n\trootbier: here's where i see my first mistake and you put me in a temporary red freeze\n\trootbier: though now i think i know a good way out of color control freeze-out -- i haven't gotten to use it yet - but it ought to work just fine\n\tZackStack: Well... since you asked so nicely :-)\n\n6) rootbier: Build G1 Rootbier\n\n7) ZackStack: Build R2 Zackstack\n\n8) rootbier: Trade G1 Y1 Rootbier\n\n9) ZackStack: Trade R2 Y2 Zackstack\n\n10) rootbier: Trade G1 B1 Rootbier\n\n11) ZackStack: Build R2 Zackstack\n\n12) rootbier: Discover B1 Rootbier Y2 Falls\n\n13) ZackStack: Discover R2 Zackstack B3 Saphire\n\n14) rootbier: Build Y1 Rootbier\n\n15) ZackStack: Sacrifice G3 Zackstack\nBuild R2 Saphire\nBuild R2 Saphire\nBuild R3 Zackstack\n\n16) rootbier: Discover Y1 Rootbier Y2 Otter\n\tZackStack: Guess I'm feeling kind of warlike this game...\n\trootbier: guess i pushed you that way - setting up the red freeze on myself\n\trootbier: but don't worry - it's intimidating nonetheless\n\n17) ZackStack: Trade R3 G3 Zackstack\n\n18) rootbier: Discover B1 Falls R3 Bell\n\tZackStack: Don't get me wrong... I do appreciate it :-)\n\trootbier: i do have to get past the "intimidation" and figure out what makes sense -- that much red is stressful\n\n19) ZackStack: Move Y2 Zackstack Bell\n\n20) rootbier: Sacrifice B1 Bell\nTrade Y1 G1 Otter\n\tZackStack: I understand how you feel. I got pummelled by a red rush a few games ago :-/\n\n21) ZackStack: Build R3 Zackstack\n\n22) rootbier: Build Y1 Rootbier\n\trootbier: i'm definitely low on clever ideas here\n\n23) ZackStack: Trade R2 Y2 Saphire\n\tZackStack: I had a clever idea once... it didn't work out particularly well :-)\n\n24) rootbier: Trade Y1 B1 Rootbier\n\n25) ZackStack: Move R2 Saphire Otter\n\n26) rootbier: Discover G1 Otter B1 Olive\n\n27) ZackStack: Trade R3 Y3 Zackstack\n\n28) rootbier: Trade G1 Y1 Olive\n\n29) ZackStack: Sacrifice G3 Zackstack\nBuild R2 Zackstack\nBuild R3 Otter\nBuild R3 Otter\n\tZackStack: sacrifice g3 zackstack\r\nbuild r2 zackstack\r\nbuild r3 otter\r\nbuild r3 otter\n\tZackStack: Oops. \n\n30) rootbier: Sacrifice G3 Rootbier\nBuild Y1 Olive\nBuild Y3 Rootbier\nBuild B1 Rootbier\n\n31) ZackStack: Sacrifice Y2 Saphire\nMove R3 Otter Rootbier\nMove R3 Otter Rootbier\n\trootbier: greenless universe\n\tZackStack: Very strange. I don't think I've ever seen that before...\n\n\tZackStack: I would like you to know that I am humming "Vader's Theme" right now ;-)\n\trootbier: you mean the imperial march?\n\trootbier: do over :P\n\tZackStack: Rematch indeed! :-)\n\nHomeworlds Online (SDG# 16323)\nStarted: 2010.5.16, Ended: 2010.6.19\nParticipants: rootbier (S), MagicJohn (N)\nWinner: rootbier\n\n1) MagicJohn: Homeworld G1 B2 R3\n\n2) rootbier: Homeworld B3 Y1 G3\n\n3) MagicJohn: Build R1 Magicjohn\n\n4) rootbier: Build G1 Rootbier\n\trootbier: Thanks for taking the challenge. Have a good game.\n\tMagicJohn: This is my second game of HW. I'm looking forward to seeing new approaches and strategies. Have a good game.\n\n5) MagicJohn: Trade R1 Y1 Magicjohn\n\trootbier: welcome to the game. i just flicked through the first few moves of your first (didn't know I could do that didja? :))\r\n\r\nand i'll tell you one thing that definitely won't work -- building four of the same color straight out like both you and ringebri did - it is possible to call catastrophes from all the way across the universe - rengebri could have beat you without doing anything on just his fourth move-- you could have done it to him on your fifth and sixth\r\n\r\nso. good plan on your next is trade. then start building up again. getting up to size 2 ships won't help if they can all just be catastrophied away. :)\r\n\r\ni'm no super pro but i've been playing a bunch lately and getting better - ask along the way if you have questions or concerns\n\n6) rootbier: Trade G1 Y1 Rootbier\n\trootbier: I flipped through a bit more of the game. I see you started to get the catastrophe's after a bit. They are far and away the most dangerous part of the game. Attacking is more or a defensive threat than anything. Best of luck :)\n\n7) MagicJohn: Build Y2 Magicjohn\n\n8) rootbier: Build Y2 Rootbier\n\n9) MagicJohn: Discover Y1 Magicjohn R3 Patches\n\n10) rootbier: Discover Y1 Rootbier G2 Pickle\n\n11) MagicJohn: Build R1 Magicjohn\n\n12) rootbier: Discover Y2 Rootbier B2 Aubergine\n\n13) MagicJohn: Move R1 Magicjohn Patches\n\n14) rootbier: Build G1 Rootbier\n\n15) MagicJohn: Build Y2 Magicjohn\n\n16) rootbier: Build Y3 Pickle\n\n17) MagicJohn: Build Y3 Magicjohn\n\n18) rootbier: Sacrifice Y2 Aubergine\nMove Y1 Pickle Patches\nMove Y1 Patches Magicjohn\nCatastrophe Magicjohn Y\n\n19) MagicJohn: Build R1 Magicjohn\n\n20) rootbier: Trade G1 R1 Rootbier\n\n21) MagicJohn: Trade R1 Y1 Magicjohn\n\tMagicJohn: I wondered if you would sacrifice two ships to destroy three. Found out.....\n\trootbier: you also have to consider the size of the ships - i lost a 1 and a 2 - you lost 2 2s and a 3. so yeah - i calc that as worth it.\n\n22) rootbier: Move Y3 Pickle Patches\n\n23) MagicJohn: Build Y2 Magicjohn\n\tMagicJohn: Kinda screws up my logistics too.\n\n24) rootbier: Attack Y1 Patches\n\trootbier: That's vague -- but yeah -- losing a technology will slow you down.\r\n\r\nBe careful here. Minimize your losses.\n\n25) MagicJohn: Trade Y1 G1 Magicjohn\n\n26) rootbier: Discover Y1 Patches G2 Pickle\n\n27) MagicJohn: Build Y1 Magicjohn\n\n28) rootbier: Build G1 Rootbier\n\n29) MagicJohn: Discover Y1 Magicjohn B3 Terra Yoda\n\n30) rootbier: Build G2 Rootbier\n\n31) MagicJohn: Build Y2 Magicjohn\n\n32) rootbier: Discover G2 Rootbier B2 Olive\n\n33) MagicJohn: Move Y2 Magicjohn Terra\n\n34) rootbier: Sacrifice G3 Rootbier\nBuild G2 Rootbier\nBuild G3 Rootbier\nBuild G3 Olive\n\n35) MagicJohn: Build G3 Magicjohn\n\tMagicJohn: Sorry about the time-warp. I was trying to make the game do something it objected to. Had to re-read the rules. Didn't know that all actions resulting from a sacrifice had to correspond to the color of the sacrificed ship.\n\n36) rootbier: Sacrifice Y3 Patches\nMove G2 Olive Patches\nMove G2 Patches Magicjohn\nDiscover G3 Olive B3 Bakeware\nCatastrophe Magicjohn G\n\trootbier: Did we time-warp? OOH!\r\nI'm unclear-- did you think sacrifice was "Do whatever the heck you want!" or... did you think it just meant "Take X number of legal actions."?\n\n37) MagicJohn: Trade Y2 G2 Magicjohn\n\tMagicJohn: "B"\n\n38) rootbier: Trade G2 Y2 Rootbier\n\n39) MagicJohn: Move Y1 Terra Pickle\n\n40) rootbier: Discover Y2 Rootbier B2 Porcelain\n\n41) MagicJohn: Build G1 Magicjohn\n\n42) rootbier: Trade G1 B1 Rootbier\n\n43) MagicJohn: Move Y2 Terra Magicjohn\n\n44) rootbier: M Y1 Pickle Bakeware\n\n45) MagicJohn: Build Y2 Magicjohn\n\n46) rootbier: Sacrifice G3 Bakeware\nBuild Y3 Bakeware\nBuild Y3 Porcelain\nBuild B1 Rootbier\n\n47) MagicJohn: Sacrifice Y2 Magicjohn\nMove Y2 Magicjohn Rootbier\nMove Y1 Pickle Rootbier\n\n48) rootbier: Sacrifice Y2 Porcelain\nMove B1 Rootbier Magicjohn\nMove B1 Rootbier Magicjohn\n\n49) MagicJohn: Sacrifice G1 Magicjohn\nBuild Y2 Rootbier\nCatastrophe Rootbier Yellow\n\tMagicJohn: I know experienced players have an advantage...... but the system making excuses for you, geez...... : ) Final exams in process. Been there, done that, no fun. \n\n50) rootbier: Sacrifice G3 Rootbier\nBuild B1 Magicjohn\nBuild B2 Magicjohn\nBuild B3 Magicjohn\nCatastrophe Magicjohn B\n\tMagicJohn: Aha! Discovered life forms in the universe.\n\n\tMagicJohn: Kind of a "Spite Check". BP must be at work on rootbier as well as TP. Perhaps I could have captured a couple of blue ships and flown them out next turn, but this was more fun. \n\tMagicJohn: Thanks for the game....... learned a lot\n\trootbier: We'll do another one after I am back from this conference thing next Monday.\n\tMagicJohn: OK\n\nHomeworlds Online (SDG# 16393)\nVariants: "Hard time"\nStarted: 2010.5.17, Ended: 2010.6.21\nParticipants: radio414 (S), jonaskoelker (N)\nWinner: jonaskoelker\n\n1) jonaskoelker: Homeworld R1 B2 G3\n\n2) radio414: Homeworld B3 R1 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) radio414: Build G1 Radio414\n\n5) jonaskoelker: Trade G1 R1 Jonaskoelker\n\n6) radio414: Trade G3 R3 Radio414\n\n7) jonaskoelker: Build R2 Jonaskoelker\n\n8) radio414: Build R2 Radio414\n\n9) jonaskoelker: Trade R2 Y2 Jonaskoelker\n\n10) radio414: Trade R3 G3 Radio414\n\n11) jonaskoelker: Build R2 Jonaskoelker\n\n12) radio414: Build R2 Radio414\n\n13) jonaskoelker: Discover R2 Jonaskoelker Y3 Big_yellow\n\n14) radio414: Trade R2 Y2 Radio414\n\n15) jonaskoelker: Build R2 Jonaskoelker\n\n16) radio414: Build Y1 Radio414\n\n17) jonaskoelker: Discover R2 Jonaskoelker B3 Big_blue\n\n18) radio414: Discover Y2 Radio414 B2 Not_so_big_blue\n\n19) jonaskoelker: Sacrifice G3 Jonaskoelker\nBuild R3 Jonaskoelker\nBuild R3 Big_yellow\nBuild R3 Big_blue\n\n20) radio414: Move R2 Radio414 Not_so_big_blue\n\n21) jonaskoelker: Trade R3 G3 Jonaskoelker\n\n\tjonaskoelker: I hope you have some good tricks up your sleeve ;-)\n\nHomeworlds Online (SDG# 16379)\nStarted: 2010.5.17, Ended: 2010.5.17\nParticipants: AdamBadura (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld G1 B2 Y3\n\n2) AdamBadura: Homeworld B1 G2 R3\n\tgoulo: Hi!\n\n3) goulo: Build Y1 Goulo\n\tAdamBadura: Hi!\n\tAdamBadura: Sorry for the delay but SuperDuperGames emails got into spam so I found them today.\n\n4) AdamBadura: Build R1 Adambadura\n\tgoulo: I wondered if the email got lost like that. :)\n\tgoulo: I am amused that our homesystems are named "goulo" and "AdamBadura". They could both sound sort of like science fiction star system names. :)\n\n5) goulo: Build Y1 Goulo\n\n6) AdamBadura: Build R1 Adambadura\n\n7) goulo: Trade Y1 R1 Goulo\n\tAdamBadura: I wonder how this game will end... This time I plan to use a different approach. But I guess you will win anyway... ;)\n\n8) AdamBadura: Trade R1 Y1 Adambadura\n\n9) goulo: Discover Y1 Goulo G3 Austin\n\n10) AdamBadura: Move R1 Adambadura Austin\n\n11) goulo: Move Y1 Austin Goulo\n\tAdamBadura: Why there are so many spectators here? Do those people really follow the game or they just came once by accident?\n\tgoulo: I think they just set some setting so that they automatically watch every game that starts.\r\n\r\nBy the way, if your "new approach" was "hope that Russ does something stupid", it's working OK so far. I didn't pay attention that both our homesystems connect to large stars...\n\n12) AdamBadura: Move R3 Adambadura Austin\n\n13) goulo: Trade Y3 R3 Goulo\n\n14) AdamBadura: Build Y1 Adambadura\n\n15) goulo: Build Y2 Goulo\n\n16) AdamBadura: Move Y1 Adambadura Austin\n\n17) goulo: Sacrifice Y2 Goulo\nMove R3 Goulo Austin\nMove R3 Austin Adambadura\n\n18) AdamBadura: Build Y2 Adambadura\n\tAdamBadura: No. Nooooooooooo!!! How didn't I see that coming?! I must be really stupid. Especially that I remebered about this trick and I tried to prevent it.\n\n19) goulo: Attack Y2 Adambadura\n\tAdamBadura: From my current observation the main problem in this game is when to allow your oponent to build 2 ship and which should it be. And this time I failed to time it properly... ;)\n\n\tgoulo: It's only fair; I made a mistake earlier, so then you made a mistake. :)\n\tAdamBadura: No point in continuing. I will lose it. I must produce a ship each turn so you will not win by capturing my last ship. But I can produce only yellow ships and after making forth in this solar system you will make catastroph and leave me with no ships...\n\tgoulo: Technically, you could also move your red ships back home, but I think that will not work out much better. :)\n\tAdamBadura: I could have moved my small red ship back and count on your mistake to capture the yellow one rather than the red one and to not sacrifice the large ship. If you did so than I could produce red ships and the catastrophe would free me of your attack. It would be even quite good situation. But it is doubtfull you would make that.\n\nHomeworlds Online (SDG# 16387)\nVariants: "Unrated"\nStarted: 2010.5.17, Ended: 2010.8.11\nParticipants: radio414 (S), wmreed (N)\nWinner: wmreed\n\n1) wmreed: Homeworld G1 B2 Y3\n\n2) radio414: Homeworld B3 R1 G3\n\twmreed: Hi Felix!\n\n3) wmreed: Build Y1 Wmreed\n\n4) radio414: Build G1 Radio414\n\tradio414: Hi Bill\n\n5) wmreed: Trade Y1 G1 Wmreed\n\n6) radio414: Trade G1 Y1 Radio414\n\n7) wmreed: Build Y1 Wmreed\n\n8) radio414: Build Y1 Radio414\n\n9) wmreed: Discover Y1 Wmreed B3 Gandalf\n\n10) radio414: Build Y2 Radio414\n\tradio414: Gandalf? Really?\n\n11) wmreed: B G1 Wmreed\n\n12) radio414: Build G2 Radio414\n\twmreed: Why not?\n\n13) wmreed: Move G1 Wmreed Gandalf\n\n14) radio414: Trade Y1 R1 Radio414\n\n15) wmreed: B G2 Gandalf\n\n16) radio414: Discover G2 Radio414 Y2 Eagle\n\n17) wmreed: Trade G1 R1 Gandalf\n\n18) radio414: Build G1 Radio414\n\n19) wmreed: B R2 Gandalf\n\n20) radio414: Build R2 Radio414\n\n21) wmreed: Move R2 Gandalf Wmreed\n\n22) radio414: Trade R1 B1 Radio414\n\n23) wmreed: B R1 Gandalf\n\n24) radio414: Build G2 Eagle\n\n25) wmreed: Build G3 Gandalf\n\tradio414: Wrong ship, and wrong system. Oops\n\n26) radio414: Sacrifice Y2 Radio414\nMove G2 Eagle Gandalf\nMove G2 Eagle Gandalf\nCatastrophe Gandalf G\n\n27) wmreed: Build G2 Wmreed\n\n28) radio414: Build G2 Radio414\n\tradio414: Those eagles must have been comin'\n\n29) wmreed: Move G2 Wmreed Gandalf\n\n30) radio414: Discover G2 Radio414 B2 Bobadil\n\n31) wmreed: Build G2 Gandalf\n\n32) radio414: Trade R2 Y2 Radio414\n\n33) wmreed: Move G2 Gandalf Bobadil\n\n\twmreed: Are we still playing?\n\nHomeworlds Online (SDG# 16397)\nStarted: 2010.5.17, Ended: 2010.5.18\nParticipants: goulo (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld B3 G2 R3\n\n2) goulo: Homeworld G1 B2 Y3\n\n3) AdamBadura: Build R1 Adambadura\n\n4) goulo: Build Y1 Goulo\n\n5) AdamBadura: Trade R1 Y1 Adambadura\n\tgoulo: I am talking with planszoweczka Michal/meehau at bgg about ordering some more pyramids in the 'correct' rainbow colors for this game and for RAMbots (a robot combat programming game I think you'd enjoy and I want to try). :)\n\n6) goulo: Trade Y3 R3 Goulo\n\n7) AdamBadura: Build R1 Adambadura\n\tAdamBadura: If you establish anything then let me know and maybe I would join in the order.\n\n8) goulo: Build R1 Goulo\n\tgoulo: Right now the open question is whether he can get 5 Rainbow sets from rebel immediately or soon. I don't want partial (fewer than 15 pyramids in each color) sets again, that was frustrating. :) Meanwhile I am definitely ordering a full pink set. :) Also Martian Coasters. He said he orders from rebel.pl each Tuesday, so let him know before 11.00 tomorrow, it seems, or else wait a week. :) I will tell you what I learn about getting the set of 5 Rainbows.\n\n9) AdamBadura: Trade R1 B1 Adambadura\n\tAdamBadura: I thought it was more complex thus. If he just tkaes them from Rebel then he may do it any time and there is no rush for me. Thanks for info.\n\n10) goulo: Build R1 Goulo\n\tgoulo: He might get a higher discount if more people order the same thing, I don't know. :)\r\n\r\nBut right, no rush. The advantage ordering through him is no shipping costs and a possible small discount.\n\n11) AdamBadura: Build B1 Adambadura\n\n12) goulo: Trade R1 G1 Goulo\n\n13) AdamBadura: Build R1 Adambadura\n\n14) goulo: Discover R3 Goulo G3 Zarkcity\n\n15) AdamBadura: Pass\n\tAdamBadura: Let me know what price Micha³ offers (can offer). 5 sets costs in Rebel ~150 and it feels a bit much. After all I could get a good game with that price while here I get a set of plastic pyrmides... ;) (My wide would not understand that too... :)) Pity that book is out in Rebel.\n\tAdamBadura: Hmmmm... You forced me into bad situation here. I wonder what should I do now.\n\n16) goulo: Build Y1 Goulo\n\n17) AdamBadura: Build Y2 Adambadura\n\tgoulo: I wonder if I would have passed also, if that would have ended the game in a tie...?\n\n18) goulo: Build Y2 Goulo\n\tAdamBadura: That is a good question. :)\n\n19) AdamBadura: Trade Y2 G2 Adambadura\n\tAdamBadura: By the way. Is this game playable with more than 2 players? I guess it is not. But I don't see technical reasons for not allowing it. There are at least 4 well distinguishable angles..\n\n20) goulo: Move Y1 Goulo Zarkcity\n\n21) AdamBadura: Build Y2 Adambadura\n\tgoulo: Yes, it can have more than 2, and I want to play it that way. (I have in real life.) The rules talk about it.\n\tAdamBadura: Did you really wanted to make this move (catastrophe!)? If not then undo it.\n\tAdamBadura: Then we can try it here or in real life sometime. I would like to experience it.\n\tgoulo: Thanks for the undo. That was indeed a lame move. :)\n\n22) goulo: Build R1 Goulo\n\tgoulo: This game is surprisingly and interestingly easy to make really bad mistakes in, considering how simple and elegant its rules are. :)\n\tgoulo: I hope to get more people in the local club interested in playing! And not just Homeworlds; I suspect some people may enjoy RAMbots (which I've not played yet) as it seems to be similar to RoboRally but more elegant and without the randomness of card draws, just the chaos of simultaneous robot programming.\n\n23) AdamBadura: Build R2 Adambadura\n\tAdamBadura: What you told me about this game indeed seems interesting so I would gladly try it out. Saddly I tend to come less often to locla club nowadays. I prefer playing at home (either my place or Max's) - but that doesn't happen that often either.\n\n24) goulo: Build R2 Zarkcity\n\n25) AdamBadura: Discover R2 Adambadura G1 Throughtheages\n\n26) goulo: Move R3 Zarkcity Throughtheages\n\n27) AdamBadura: Move R1 Adambadura Throughtheages\n\tAdamBadura: Are we going to build all the ships before we get to real action - I wonder? :)\n\tAdamBadura: And as it comes to how easy is to make really bad mistake let me remaind you that I lost previous three games due to the same stupid mistake... ;)\n\n28) goulo: Attack R2 Throughtheages\n\n29) AdamBadura: Build R2 Throughtheages\nCatastrophe Throughtheages R\n\n30) goulo: Trade Y1 B1 Goulo\n\n31) AdamBadura: Discover B1 Adambadura Y1 Newbetterworld\n\tAdamBadura: Haven't you forseen that?\n\tgoulo: ah, clever!\n\tgoulo: No, I was thinking only that you might move your R3 from AdamBadura to ThroughTheAges. Forgot that it was a green star so you could construct there. Such a sneaky game! :)\n\n32) goulo: Build B2 Goulo\n\n33) AdamBadura: Build G1 Adambadura\n\n34) goulo: Build G2 Goulo\n\n35) AdamBadura: Move G1 Adambadura Newbetterworld\n\n36) goulo: Discover G2 Goulo R3 Tzaar\n\n37) AdamBadura: Sacrifice G2 Adambadura\nBuild G2 Newbetterworld\nBuild G3 Newbetterworld\n\n38) goulo: Sacrifice Y1 Zarkcity\nMove G2 Tzaar Newbetterworld\nCatastrophe Newbetterworld G\n\n39) AdamBadura: Trade Y1 G1 Adambadura\n\tAdamBadura: Actually I didn't plant that. When I saw your ship invade my solar system I paniced. ;) But after caliming down I thought to my self that now I have to do whatever I can. Obviously moving R3 there would be a suicide. But then I thought about moving R1 and taking advantage.\r\n\r\nAlso I think you should have instead of attacking me sacrifice Y1 or Y2 and run away. Unless you realized what was comming to you first when you actually saw it.\n\n40) goulo: Build Y1 Goulo\n\n41) AdamBadura: Build G2 Adambadura\n\n42) goulo: Discover B1 Goulo Y3 Dvonn\n\n43) AdamBadura: Move G2 Adambadura Newbetterworld\n\n44) goulo: Move Y1 Goulo Zarkcity\n\n45) AdamBadura: Build B2 Newbetterworld\n\n46) goulo: Move B2 Goulo Zarkcity\n\n47) AdamBadura: Trade B2 Y2 Newbetterworld\n\n48) goulo: Build R1 Zarkcity\n\n49) AdamBadura: Build G2 Newbetterworld\n\n50) goulo: Build B2 Zarkcity\n\n51) AdamBadura: Move G2 Newbetterworld Dvonn\n\n52) goulo: Move B2 Zarkcity Goulo\n\n53) AdamBadura: Sacrifice G2 Newbetterworld\nBuild G2 Dvonn\nBuild G3 Adambadura\n\n54) goulo: Build R2 Goulo\n\n55) AdamBadura: Sacrifice Y2 Newbetterworld\nMove G2 Dvonn Goulo\nMove G2 Dvonn Goulo\nCatastrophe Goulo G\n\n\tAdamBadura: Show them no mercy as you will receive none! KILL THEM ALL!\n\tAdamBadura: Honestly there was time (at least one my round; but I think there were few such rounds) in which I could destroy your blue technology by moving my blue ship with sacrificed yellow ship. But when I realized that it was to late becase on your turn you moved away the blue ship.\n\tAdamBadura: This game is indeed interesting.\r\n\r\nThe interactions are deep. Shared usage of stars adds much to the game.\r\n\r\nBut I think with more than 2 players it will become a little chaotic. Still I want to try it that way. Does this system allow that?\r\n\r\nI have browsed through rules briefly and saw with muylti-player there is Good/Evil and special victory conditions which do not go well with this game I guess as they introduce hidden information (but still might be interesting). This was surprising as I thought there will be "one man standing" mode...\n\tAdamBadura: If the RAMbots game is as interesting (and it sounds so) then I will reconsider buying pyrmids as 150 z³ for two good games is fine (also the games have the advantage of taking little space and being playable in travel or similar conditions).\n\tgoulo: yes, i noticed that you had an opportunity to do a blue catastrophe a while back and was relieved that you didn't. but after i lost my 3-ship early on, it seems this game was very hard for me in any case. i see now that the 3-ship we start with must stay safe! :)\n\tgoulo: Multiplayer homeworlds in its original form has the hidden good/evil stuff (like the werewolf/mafia type games), which indeed seems strange to me too. But there is also the "sinister" variant, where you win by killing the player to your left. And of course there is "last survivor wins" variant. So no problem, just don't play the good/evil version. :)\r\n\n\tAdamBadura: Yes. I think that loosing that ship was the beginning of the end (I think you will lose if I will not make any stupid move). Its not that one definitly looses after loosing 3-ship but it is much more defence later one.\r\n\r\nNote thou that you had lots of opportunities to build a 3-ship (you still have).\n\tgoulo: if you want to play on, we can, but i think i can safely resign this game and start a new one if you like. let me know... :)\n\tgoulo: every chance i had to build a 3-ship, you could have then moved in to make a catastrophe. it was frustrating! :)\n\tAdamBadura: OK, lets play new game\n\tgoulo: congrats. :)\n\tgoulo: Not my day for playing well. I just got my butt kicked in online Hive tournament (opponent won 3 games, I won 1). Ouch!\n\nHomeworlds Online (SDG# 16259)\nStarted: 2010.5.17, Ended: 2010.5.24\nParticipants: AltF4 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) AltF4: Homeworld B3 G2 R3\n\n3) ts52: Build G1 Ts52\n\n4) AltF4: Build R1 Altf4\n\tts52: Have a good game.\n\tAltF4: thanks\n\n5) ts52: Trade G1 R1 Ts52\n\n6) AltF4: Trade R1 Y1 Altf4\n\tAltF4: you have a good game too\n\n7) ts52: Discover R1 Ts52 G3 Kermit\n\n8) AltF4: Build Y1 Altf4\n\n9) ts52: Build R1 Kermit\n\n10) AltF4: Discover Y1 Altf4 G1 Apophis\n\n11) ts52: Build G1 Ts52\n\n12) AltF4: Build Y2 Altf4\n\n13) ts52: Trade G1 B1 Ts52\n\n14) AltF4: Build Y2 Apophis\n\n15) ts52: Discover B1 Ts52 G3 Oscar\n\n16) AltF4: Move Y2 Apophis Kermit\n\n17) ts52: Build G1 Ts52\n\n18) AltF4: Build Y2 Kermit\n\n19) ts52: Build B1 Oscar\n\n20) AltF4: Build Y3 Apophis\n\tts52: Sorry about the undo. I know I'm in hot water, but that would have been suicide.\n\n21) ts52: Trade B1 R1 Oscar\n\n22) AltF4: Build Y3 Kermit\n\n23) ts52: Build R2 Kermit\n\n24) AltF4: Move Y3 Kermit Ts52\n\n25) ts52: Sacrifice R1 Kermit\nAttack Y3 Ts52\n\n26) AltF4: Move Y2 Kermit Ts52\n\tAltF4: that is okay, I sometimes undo\n\n27) ts52: Trade Y3 R3 Ts52\n\n28) AltF4: Move Y2 Kermit Ts52\n\n29) ts52: Sacrifice R2 Kermit\nAttack Y2 Ts52\nAttack Y2 Ts52\n\n30) AltF4: Sacrifice Y2 Altf4\nMove Y1 Apophis Kermit\nMove Y1 Kermit Ts52\nCatastrophe Ts52 Y\n\n31) ts52: Trade G1 Y1 Ts52\n\tAltF4: how do you sacrifice\n\n32) AltF4: Build Y1 Apophis\n\n33) ts52: B Y2 Ts52\n\n34) AltF4: Build Y2 Altf4\n\n35) ts52: Move Y2 Ts52 Oscar\n\n36) AltF4: Trade Y2 B2 Altf4\n\n37) ts52: Build Y2 Ts52\n\n38) AltF4: Move B2 Altf4 Apophis\n\tAltF4: sorry I keep undoing moves\n\tts52: No problem.\n\n39) ts52: M R3 Ts52 Apophis\n\n40) AltF4: Sacrifice R3 Altf4\nAttack R3 Apophis\nPass\nPass\n\n41) ts52: Sacrifice Y2 Ts52\nMove G3 Ts52 Apophis\nMove G3 Apophis Altf4\n\n42) AltF4: Build Y2 Altf4\n\n43) ts52: Sacrifice R1 Oscar\nAttack Y2 Altf4\n\n44) AltF4: Sacrifice Y3 Apophis\nMove Y1 Apophis Altf4\nMove B2 Apophis Altf4\nPass\n\n45) ts52: Build Y2 Altf4\nCatastrophe Altf4 Yellow\n\n\nHomeworlds Online (SDG# 16365)\nVariants: "Hard time"\nStarted: 2010.5.17, Ended: 2010.5.30\nParticipants: SilentTitan (S), AltF4 (N)\nWinner: SilentTitan\n\n1) AltF4: Homeworld B3 G2 R3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) AltF4: Build R1 Altf4\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) AltF4: Trade R1 Y1 Altf4\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) AltF4: Build Y1 Altf4\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) AltF4: Discover Y1 Altf4 G1 Aquagoran\n\n10) SilentTitan: Trade Y2 G2 Silenttitan\n\n11) AltF4: Build Y2 Aquagoran\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) AltF4: Build Y2 Altf4\n\n14) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover G2 Silenttitan Y3 Sol\n\n15) AltF4: Discover Y2 Aquagoran R3 Theunknown\n\n16) SilentTitan: Trade Y2 G2 Silenttitan\n\n17) AltF4: Trade Y2 B2 Altf4\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Sol\nBuild G1 Sol\nBuild G3 Silenttitan\n\n19) AltF4: Build R1 Altf4\n\n20) SilentTitan: Build G3 Silenttitan\n\n21) AltF4: Discover Y1 Aquagoran G3 Gondor\n\n22) SilentTitan: Discover G1 Sol Y1 Sole\n\n23) AltF4: Move R1 Altf4 Sole\n\n24) SilentTitan: Move G1 Sole Altf4\n\n25) AltF4: Build Y2 Gondor\n\n26) SilentTitan: Trade G3 B3 Silenttitan\n\n27) AltF4: Build Y2 Altf4\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Altf4\nBuild G3 Sol\nBuild G3 Silenttitan\n\n29) AltF4: Sacrifice R3 Altf4\nAttack G1S Altf4\nAttack G1S Altf4\nPass\n\n30) SilentTitan: Move G2 Sol Sole\n\n31) AltF4: Trade G1 R1 Altf4\n\n32) SilentTitan: Sacrifice B3 Silenttitan\nTrade G3 Y3 Sol\nTrade G2 R2 Silenttitan\nPass\n\n33) AltF4: Move R1 Sole Gondor\n\n34) SilentTitan: Build G1 Silenttitan\n\n35) AltF4: Build R2 Gondor\n\n36) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Sole\nBuild G3 Sol\nBuild G3 Silenttitan\n\n\nHomeworlds Online (SDG# 16405)\nStarted: 2010.5.18, Ended: 2010.5.19\nParticipants: AdamBadura (S), goulo (N)\nWinner: AdamBadura\n\n1) goulo: Homeworld Y3 G2 B3\n\n2) AdamBadura: Homeworld B3 G1 R3\n\tgoulo: I'll try a different opening for variety!\n\n3) goulo: Build B1 Goulo\n\tAdamBadura: It is a disadviced strategy. But let us see the results...\n\n4) AdamBadura: Build R1 Adambadura\n\n5) goulo: Build B1 Goulo\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) goulo: Trade B1 R1 Goulo\n\n8) AdamBadura: Build R1 Adambadura\n\n9) goulo: Trade B1 Y1 Goulo\n\n10) AdamBadura: Trade R1 G1 Adambadura\n\n11) goulo: Build B1 Goulo\n\n12) AdamBadura: Build R1 Adambadura\n\n13) goulo: Build B1 Goulo\n\n14) AdamBadura: Discover R1 Adambadura Y2 Bombay\n\n15) goulo: Trade B1 G1 Goulo\n\n16) AdamBadura: Build G2 Adambadura\n\n17) goulo: Build G2 Goulo\n\n18) AdamBadura: Move G1 Adambadura Bombay\n\n19) goulo: Discover G2 Goulo Y1 Mumbai\n\n20) AdamBadura: Build G3 Bombay\n\tAdamBadura: I read the rules which are available here. There are two things which you tought me differently (or at least I understood it so):\r\n1) You homeworld can be made up from two pieces of the same size or same color (however sam color is useless and very risky).\r\n2) While using attack action you can capture an enemy ship which is not larger than your largest ship in that system; while I thought it is that you may capture a ship which is not larger than your largest red ship in that system.\n\n21) goulo: Build G3 Mumbai\n\tgoulo: Oh, I didn't remember/know your home system could have two pieces of the same size! Interesting!\r\n\r\nThe attack information indeed changes things. I'm not sure if I knew that or not. :) This is one of those games where I find myself continually making silly errors (e.g. trying to build when I have no green, etc), so even though I "know" the rules theoretically, I don't "know" them deeply and automatically and instinctively yet. Which is interesting, because the rules really are pretty simple, yet somehow they are very mind-bending. :)\n\n22) AdamBadura: Sacrifice G3 Bombay\nBuild G3 Bombay\nBuild Y2 Adambadura\nBuild G3 Adambadura\n\tgoulo: BTW, thanks for reading and verifying the rules! :)\n\n23) goulo: Sacrifice G3 Mumbai\nBuild G3 Mumbai\nBuild R1 Goulo\nBuild Y2 Goulo\n\n24) AdamBadura: Discover G3 Adambadura B2 Newdelhi\n\tgoulo: This game feels interestingly different from the previous ones. I guess we are learning or something! :)\n\n25) goulo: Move R1 Goulo Mumbai\n\n26) AdamBadura: Sacrifice G3 Bombay\nBuild G3 Bombay\nBuild Y3 Adambadura\nBuild R2 Adambadura\n\n27) goulo: Move Y1 Goulo Mumbai\n\n28) AdamBadura: Sacrifice Y3 Adambadura\nMove G3 Bombay Mumbai\nMove G3 Mumbai Goulo\nMove G1 Bombay Mumbai\n\n29) goulo: Discover G1 Goulo B1 Varkala\n\tAdamBadura: It's time to do some action. I hope I haven't missed any alternative and that in long term it will not be a mistake.\n\n30) AdamBadura: Sacrifice R3 Adambadura\nAttack B3 Goulo\nAttack Y2 Goulo\nAttack R1 Goulo\n\n\tgoulo: Oh crap, I forgot about that whole "you don't need a red ship there to capture" thing. :/\n\tAdamBadura: I think you should have accepted the los of G. Now it seems you will loose the game instead. But maybe I'm mistaken?\r\n\r\nWhy do you think 3 and 2 initial stars are bad?\n\tgoulo: Let's see, you have 11 ships, I have 6 ships...\n\tAdamBadura: I considered suggesting another undo but you already did one and also I didn't want to sound arrogant. :)\r\n\r\nBut if you want to we may start a new game and repeat it step by step to that point so you can chose a different approach. However it seems the situation was difficult for you anyway.\n\tAdamBadura: But I don't think the numer of ships we have has anything to do with sizes of stars we started with. Colors may do matter thou.\n\tgoulo: 3 & 2 star seems bad because it really hurt my mobility to leave my star, as many of the 1-pyramids were gone when I wanted to move out.\n\tgoulo: I doubt I was going to find a way to win this game after you pulled the trigger with the double invasion and threat to catastrophe in 2 places.\n\tgoulo: BTW I just geekmailed the guy who taught me homeworlds to see if he wants to play 3-player with us. :)\n\tgoulo: And now I pause to do "real world" stuff. :)\n\tAdamBadura: Great! Awaiting...\n\nHomeworlds Online (SDG# 16324)\nStarted: 2010.5.19, Ended: 2010.6.9\nParticipants: AdamBadura (S), mathochist (N)\nWinner: AdamBadura\n\n1) mathochist: Homeworld R1 B2 G3\n\tmathochist: Hi there. Are you new to this game?\n\tAdamBadura: Not quite. But novious. I played 5 times.\n\n2) AdamBadura: Homeworld B3 G1 R3\n\n3) mathochist: B G1 Mathochist\n\tmathochist: I've played about twice that many. It's a great game, I wish I had more people to play with offline.\n\n4) AdamBadura: Build R1 Adambadura\n\n5) mathochist: Trade G1 Y1 Mathochist\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) mathochist: Build G1 Mathochist\n\n8) AdamBadura: Build R1 Adambadura\n\n9) mathochist: Build G1 Mathochist\n\n10) AdamBadura: Trade R1 B1 Adambadura\n\n11) mathochist: B Y1 Mathochist\n\n12) AdamBadura: Build Y2 Adambadura\n\n13) mathochist: Build Y2 Mathochist\n\n14) AdamBadura: Trade Y2 G2 Adambadura\n\n15) mathochist: Discover G1 Mathochist Y3 Cheerio\n\n16) AdamBadura: Build Y2 Adambadura\n\n17) mathochist: Sacrifice G3 Mathochist\nBuild G2 Cheerio\nBuild G2 Mathochist\nBuild G3 Mathochist\n\n18) AdamBadura: Build G3 Adambadura\n\n19) mathochist: Discover Y2 Mathochist G3 Kix\n\n20) AdamBadura: Discover G3 Adambadura B2 Thevoid\n\n21) mathochist: Sacrifice G3 Mathochist\nBuild Y2 Kix\nBuild Y3 Mathochist\nBuild G3 Mathochist\n\n22) AdamBadura: Move Y1 Adambadura Thevoid\n\n23) mathochist: Trade G1 R1 Mathochist\n\n24) AdamBadura: Build Y3 Adambadura\n\n25) mathochist: Move Y1 Mathochist Cheerio\n\n26) AdamBadura: Build G1 Adambadura\n\n27) mathochist: Sacrifice Y2 Kix\nMove G1 Cheerio Thevoid\nMove G1 Thevoid Adambadura\nCatastrophe Adambadura G\n\n28) AdamBadura: Trade G3 R3 Thevoid\n\n29) mathochist: Trade Y1 B1 Mathochist\n\n30) AdamBadura: Sacrifice Y2 Adambadura\nMove Y3 Adambadura Mathochist\nMove R3 Adambadura Mathochist\n\n31) mathochist: Move B1 Mathochist Adambadura\n\tAdamBadura: A bit risky move but let us see the results... :)\n\tmathochist: well, that is a conundrum.\r\nHmm, this might take a little time.\n\tAdamBadura: I will wait... :)\n\tAdamBadura: But how long do I have to wait...?\n\tmathochist: Sorry, I had a busy start to the week and then I got sick and I've been sleeping a lot. I'll get back to this tomorrow (after a few more hours' sleep).\n\tAdamBadura: OK No problem then...\n\n32) AdamBadura: Sacrifice R3 Thevoid\nAttack B1 Adambadura\nAttack G3 Mathochist\nAttack Y3 Mathochist\n\n33) mathochist: Build R1 Mathochist\nCatastrophe Mathochist R\n\n34) AdamBadura: Sacrifice B1 Adambadura\nTrade Y3 R3 Mathochist\n\tmathochist: Well, I had to try.\r\nOne more chance... just to see what happens.\n\n\tAdamBadura: Yes. It seems that your next turn will be your last turn...\n\tmathochist: Yeah, you got me. Good game!\n\nHomeworlds Online (SDG# 16421)\nVariants: "Sinister"\nStarted: 2010.5.19, Ended: 2010.5.23\nParticipants: zara2stra (S), goulo (N), AdamBadura (E)\nWinner: goulo\n\n1) goulo: Homeworld G1 B2 Y3\n\tAdamBadura: What are the victory conditions?\n\tzara2stra: Kill the one to the left?\n\tAdamBadura: Or be the last man standing?\n\tzara2stra: in f2f I usually play with kill the one to the left (or kill the bad/good one) because the victor of the first fight will usually be weakened and easier to attack.\n\tzara2stra: in a three player game that might lead to turtling... of course we can play LMS if you want :)\n\tAdamBadura: Hmmm... I haven't thought about the weakening aspect. Lets wait for goulo to see what he says.\n\tAdamBadura: And to establis some facts:\r\n1) zara2stra is to the left of AdamBadura,\r\n2) goulo is to the left of zara2stra\r\n3) Adam Badura is to the left of goulo\r\n\r\nright?\n\tAdamBadura: Also in case of "kill the one to the left" mode the winner is obvious. But what about second and third place? Is it so that eliminated player looses eliminating player wins and game continues? (In case of 3 players game only one player is left so he gets the second place.)\n\tzara2stra: Concerning the lefty compass - yes. Concerning the winner - in KTOTTL there's only the winner; the player who manages to destroy his neighbour fastest wins, the remaining players are loosers. I think that it's much nicer in the standard good/bad mode, but the standard game works best in f2f mode, and would be rather hard to pull off online.\n\tAdamBadura: There is another way in OMS mode. Untill now I only thought of two subvariants:\r\n1) All ships of eliminated player are removed from the game (but not the homeworld - after all it can contain ships of other players).\r\n2) All ships of eliminated player remain int he game as neutral (so they still can be captured or lead to overpopulation).\r\n\r\nBut there is a third subvariant which might solve the weakening problem:\r\n3) The eliminating player takes control of all ships of the elimnated player.\r\n\r\nHowever would that make him/her too strong? But on the other hand this would encourage players to try to eliminate one another ASAP.\r\n\r\nAnother question is what mode is implemented here.\n\tgoulo: Hi! I selected the "sinister" (kill the guy on your left) variant.\n\tgoulo: And I agree with the "who's on the left" summary earlier, given the north/east/south alignment we have. :)\n\n2) AdamBadura: Homeworld G3 B1 R3\n\n3) zara2stra: Homeworld G3 Y2 B3\n\n4) goulo: Build Y1 Goulo\n\n5) AdamBadura: Build R1 Adambadura\n\n6) zara2stra: Build B1 Zara2stra\n\n7) goulo: Build Y1 Goulo\n\n8) AdamBadura: Trade R1 Y1 Adambadura\n\tgoulo: Does the user interface show your homesystem at the bottom, as if you were looking at a live game on a table? I.e. I see zara at the top, adam on the left, and me on the bottom. Does adam see it with zara on left, adam on bottom, and goulo on right? Or is goulo on bottom for everyone?\n\n9) zara2stra: Build B1 Zara2stra\n\tAdamBadura: I see me on bottom, goulo on right, zara2stra on left so the system is smart. And now it is easy to see whom I shall destroy :) and from who is going to attack me.\n\n10) goulo: Trade Y1 R1 Goulo\n\n11) AdamBadura: Build Y1 Adambadura\n\n12) zara2stra: Trade B1 R1 Zara2stra\n\n13) goulo: Build R1 Goulo\n\n14) AdamBadura: Trade Y1 B1 Adambadura\n\n15) zara2stra: Discover B1 Zara2stra G1 Alphacentauri\n\n16) goulo: Build Y1 Goulo\n\tzara2stra: We come in peace :)\n\n17) AdamBadura: Discover B1 Adambadura Y2 Coldandempty\n\n18) zara2stra: Build B1 Alphacentauri\n\n19) goulo: Discover R1 Goulo G3 Verda\n\n20) AdamBadura: Trade B1 R1 Coldandempty\n\n21) zara2stra: Move R1 Zara2stra Alphacentauri\n\n22) goulo: Build R2 Verda\n\n23) AdamBadura: Build R2 Adambadura\n\tgoulo: We build in peace!\n\n24) zara2stra: Trade B1 Y1 Alphacentauri\n\n25) goulo: Move Y1 Goulo Verda\n\n26) AdamBadura: Build Y2 Adambadura\n\n27) zara2stra: Build R2 Alphacentauri\n\n28) goulo: Trade Y1 B1 Goulo\n\n29) AdamBadura: Trade Y1 B1 Adambadura\n\n30) zara2stra: Move R1 Alphacentauri Zara2stra\n\n31) goulo: Build B2 Goulo\n\n32) AdamBadura: Build B2 Adambadura\n\n33) zara2stra: Build B2 Alphacentauri\n\n34) goulo: Move B1 Goulo Verda\n\n35) AdamBadura: Trade B2 G2 Adambadura\n\n36) zara2stra: Trade B1 G1 Alphacentauri\n\n37) goulo: Build Y1 Verda\n\n38) AdamBadura: Move G2 Adambadura Coldandempty\n\n39) zara2stra: Discover B2 Alphacentauri G3 Mecatolrex\n\n40) goulo: Discover R1 Verda Y2 Flava\n\n41) AdamBadura: Move R2 Adambadura Flava\n\n42) zara2stra: Move G1 Alphacentauri Mecatolrex\n\n43) goulo: Move R1 Flava Verda\n\n44) AdamBadura: Sacrifice G2 Coldandempty\nBuild R2 Coldandempty\nBuild R3 Flava\n\n45) zara2stra: Move R2 Alphacentauri Mecatolrex\n\tAdamBadura: Its time to increase military fleet! Its time to go to war!\n\n46) goulo: Build R3 Goulo\n\n47) AdamBadura: Build R3 Adambadura\n\n48) zara2stra: Move Y1 Alphacentauri Mecatolrex\n\n49) goulo: Build Y1 Verda\n\n50) AdamBadura: Move R3 Flava Mecatolrex\n\tgoulo: Adam, you are dominating again!\r\n\r\nBTW, are either or both of you interested in a game of Volcano or Martian Chess or Branches?\n\n51) zara2stra: Sacrifice B2 Mecatolrex\nTrade R2 G2 Mecatolrex\nTrade Y1 G1 Mecatolrex\nCatastrophe Mecatolrex G\n\tAdamBadura: I prefer this to Branches however I might try again. Those other two I don't know so I would better learn them first. :)\n\tzara2stra: I never played Martian Chess nor Branches, but I used to play Volcano with my wife - it's a fun game, and I'd be happy to play (although it would be best to start it during the weekend - I have a lot of work tommorow). \n\tAdamBadura: This will be a bloody game... ;)\r\n\r\nPity that except for red ships I'm very weak... :)\n\tAdamBadura: goulo, we have to be careful! zara2stra is going into a very secure strategy. He wants us all to use all the 1-ships so we cannot use them as stars while invading his homeworld. We have to maintain at least one 1-size star system to terrorize him... :)\n\tAdamBadura: By the way, what are our policies for politics? :)\r\n\r\nAs it comes to me I am very pro-politics either explitly here or through private messages.\n\n52) goulo: Trade R3 G3 Goulo\n\tzara2stra: This should mess things up a little :P\n\tzara2stra: I have nothing against politics, although IMO this game really shines with the standard alignment game; there's much more room for bluff and politics.\n\tgoulo: for me the standard game seems very odd; there's simply no way to know if someone is good or evil, so it's essentially random guessing, or acting skills (like a party game like Werewolf, which I don't think of as very strategic or interesting, but maybe that's just me :)\n\n53) AdamBadura: Discover R3 Adambadura G2 Thevoid\n\n54) zara2stra: Build R2 Zara2stra\n\n55) goulo: Sacrifice G3 Goulo\nBuild R3 Goulo\nBuild R3 Verda\nBuild B1 Verda\n\tzara2stra: Goulo, you're right that the game gets a new flavour - but which one you prefer is entirely a question of preferences. Contrary to what you say there is a way to know if a certain player is good or evil. It takes a good liar to deceive other players both with what he says and what he does. \n\tzara2stra: All good players work in a team against the bad one(s). So usually they will be much more reluctant to actually attack someone, unless they are sure that they face an evil player. Evil players on the other hand, won't care who attacks who, and won't have any second thoughts on attacking other players - they have to kill only one player and that's it. \n\tgoulo: Except how do you know who the other good players are, to work "together" with them? And a bad player can also work in a team against the alleged bad ones. Then if he gets a chance to be the supposedly good player who kills the supposed bad player, he wins. And if some other good player kills another good player, the bad player is OK with that result too. :)\r\n\r\nI agree there are psychological/social skills that can come into play, but it's a lot more nebulous. Usually in these kinds of games I end up with 2 different players staring at me with serious sincere faces pointing at each other and both saying "Russ, I'M not the evil one, HE is", and it's indistinguishable from random noise for me. Quite possibly I am simply too socially lame to do well in such games. :)\n\n56) AdamBadura: Discover R2 Flava Y1 Nothingness\n\n57) zara2stra: Build B2 Zara2stra\n\n58) goulo: Move R3 Verda Coldandempty\n\tAdamBadura: The Good/Evil mode seems indeed like Mafia game.\r\n\r\nI enjoyed that game a lot. However in this full-information-no-luck game it feels kind of wierd. But still I would gladly try it out.\r\n\r\n\r\nBy the way. What happens if someone kills a wrong player? If I would kill goulo than there is no way to win for zara2stra so the only possibilities are that either I win or non of us. Or maybe I would become zara2stra's new left player?\r\n\r\n\r\nIt is easy to see we are very militaristic this time. :) But I guess zara2stra that the catastrophe you made helped only goulo. I'm not sure whether that wasa good move... :)\n\tgoulo: I believe if your left-hand target is eliminated by another player, then the former left-hand target of your now-dead target becomes your new left-hand target.\n\tgoulo: I'm sure zara is happier having you and me each have 2 R3's instead of you, who wants to kill him, having 3 R3's. :)\n\tzara2stra: By killing goulo you would become my new target. \r\n\r\nAs for the catastrophe; Any other move would get you 3 ships in a decent system (after sacrificing an R3). The situation was bad due to my error (not taking the r3 when it was available). Right now I helped goulo, but my military situation would be bad either way, and by aiding him I took a bit of strain off my back - after all, the only way for guolo to win is to kill you before you kill me. \n\n59) AdamBadura: Move R2 Nothingness Coldandempty\nCatastrophe Coldandempty R\n\n60) zara2stra: Discover B2 Zara2stra G1 Mostlyharmless\n\tAdamBadura: That costed me dearly. goulo keep in mind that if I am strong zara2stra have to play more defence against me than attack you. So in other words your safty is in my power. You should support me... :P\n\n61) goulo: Discover Y1 Verda G2 Stelo\n\tzara2stra: Yeah, he should support you the same way you should support me: namely by trying to kill you at the same time ;)\n\n62) AdamBadura: Build Y1 Adambadura\n\n63) zara2stra: Trade B2 Y2 Mostlyharmless\n\n64) goulo: Build B2 Goulo\n\tAdamBadura: I undid my move. Hope you didn't mind. Sorry. Somehow I missed that I can just build that Y ship...\n\n65) AdamBadura: Move Y1 Adambadura Thevoid\n\n66) zara2stra: Build B2 Zara2stra\n\tgoulo: I don't mind an undo if it's done quickly. Otherwise there's the risk another player is already thinking about or typing their turn. :)\n\n67) goulo: Build B3 Verda\n\n68) AdamBadura: Build Y2 Thevoid\n\n69) zara2stra: Move B2 Zara2stra Mostlyharmless\n\n70) goulo: Discover B2 Goulo Y3 Freneza\n\n71) AdamBadura: Build Y3 Adambadura\n\n72) zara2stra: Build Y3 Mostlyharmless\n\n73) goulo: Move B1 Verda Stelo\n\n74) AdamBadura: Move B1 Adambadura Thevoid\n\n75) zara2stra: Build B3 Mostlyharmless\n\n76) goulo: Move B3 Verda Stelo\n\n77) AdamBadura: Build B3 Thevoid\n\n78) zara2stra: Sacrifice Y3 Mostlyharmless\nDiscover B3 Mostlyharmless G3 Betelgeuse\nMove B2 Mostlyharmless Betelgeuse\nMove Y2 Mostlyharmless Betelgeuse\n\n79) goulo: Discover B2 Goulo Y3 Zamenhof\n\n80) AdamBadura: Discover R3 Thevoid G1 Emptiness\n\n81) zara2stra: Trade B2 G2 Betelgeuse\n\n82) goulo: Discover B2 Zamenhof R2 Auld\n\n83) AdamBadura: Move Y1 Thevoid Emptiness\n\n84) zara2stra: Build G1 Betelgeuse\n\n85) goulo: Build Y3 Goulo\n\n86) AdamBadura: Move B1 Thevoid Emptiness\n\n87) zara2stra: Trade G2 R2 Betelgeuse\n\n88) goulo: Sacrifice Y3 Goulo\nMove B2 Auld Adambadura\nMove B3 Stelo Adambadura\nMove B1 Stelo Adambadura\nCatastrophe Adambadura Blue\n\n89) AdamBadura: Build Y3 Thevoid\n\n90) zara2stra: Build B1 Betelgeuse\n\tgoulo: I just felt a disturbance in The Force...\n\tAdamBadura: :(\r\n\r\nI knew you were trying to do that. Yet somehow I thought I am keeping my eyes on you... ;)\n\n91) goulo: Trade B2 G2 Freneza\n\tAdamBadura: I think it is zara2stra's fault. He is not pushing you strong enough... ;D\n\n92) AdamBadura: Sacrifice Y2 Adambadura\nDiscover Y2 Thevoid G1 Theendisnear\nMove Y3 Thevoid Theendisnear\n\tzara2stra: Ships are needed to threaten, and you attacked me in a system where I was one step away from goulo - ideal place to take him off your back. Blame yourself :P\n\n93) zara2stra: Sacrifice Y2 Betelgeuse\nMove B1 Betelgeuse Goulo\nMove B3 Betelgeuse Goulo\n\tgoulo: Adam, it's all your fault, for not having won and ended the game before I had the chance to catastrophe your blue star. :)\n\tAdamBadura: :D\n\tAdamBadura: On the plus side now it will be difficult to catastrophe me as G is used mostly for stars... :)\n\n94) goulo: Sacrifice R2 Verda\nAttack B3S Goulo\nAttack B1S Goulo\n\n95) AdamBadura: Sacrifice Y3 Adambadura\nMove Y1 Emptiness Zara2stra\nMove Y2 Theendisnear Zara2stra\nMove Y3 Theendisnear Zara2stra\nCatastrophe Zara2stra Y\n\n96) zara2stra: Build B1 Zara2stra\n\tzara2stra: here goes nothing - I hoped you would somehow miss it :)\n\n97) goulo: Trade B1 G1 Goulo\n\n98) AdamBadura: Trade B1 Y1 Emptiness\n\n99) zara2stra: Trade R2 Y2 Zara2stra\n\tgoulo: for some strange reason, there seem to be a lot more ships available again... :)\n\tAdamBadura: I'm considering group-attacking goulo... ;)\n\n100) goulo: Trade B3 Y3 Goulo\n\n101) AdamBadura: Move Y1 Emptiness Adambadura\n\tzara2stra: sorry \n\tzara2stra: I forgot how close we all have become :P\n\n102) zara2stra: Build Y2 Zara2stra\n\n103) goulo: Build G2 Freneza\n\n104) AdamBadura: Build Y2 Adambadura\n\n105) zara2stra: Build R1 Zara2stra\n\n106) goulo: Sacrifice Y3 Goulo\nMove G2 Freneza Stelo\nMove G2 Stelo Adambadura\nDiscover G2 Freneza Y2 Malfreneza\n\n\tAdamBadura: Good game. Another one?\n\tAdamBadura: (Obvioulsy I blame zara2stra for my failure... ;D)\n\tzara2stra: yeah obviously - were I to lay on my back and wait for you to rip my throat you would surely win :) Ok - I'm in for a rematch :)\n\tgoulo: thanks! a good epic game! :)\n\nHomeworlds Online (SDG# 16390)\nStarted: 2010.5.21, Ended: 2010.7.17\nParticipants: rootbier (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B3 G3\n\n2) rootbier: Homeworld R2 B3 G3\n\tZackStack: Rematch time! Have a good game :-)\n\n3) ZackStack: Build G1 Zackstack\n\n4) rootbier: Build G1 Rootbier\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) ZackStack: Build G1 Zackstack\n\n8) rootbier: Build G1 Rootbier\n\n9) ZackStack: Discover G1 Zackstack B2 Globe\n\n10) rootbier: Discover G1 Rootbier B1 Aubergine\n\n11) ZackStack: Build G1 Zackstack\n\n12) rootbier: Build G2 Rootbier\n\n13) ZackStack: Move Y1 Zackstack Globe\n\n14) rootbier: Discover G2 Rootbier B1 Uva\n\n15) ZackStack: Trade G1 B1 Zackstack\n\n16) rootbier: Build G1 Rootbier\n\n17) ZackStack: Build Y1 Globe\n\n18) rootbier: Sacrifice G3 Rootbier\nBuild G2 Uva\nBuild G2 Aubergine\nBuild G3 Rootbier\n\n19) ZackStack: Build G3 Globe\n\tZackStack: I hope you're enjoying your inside track to all the larger ships :-)\n\trootbier: I'd say that's a pretty durn standard tactic - more bigger stronger.\n\trootbier: You're not taking it easy on me I hope.\n\n20) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild Y2 Rootbier\nBuild Y2 Rootbier\n\tZackStack: Certainly not. You put yourself in a good position. I'll do my best to take you out of it :-)\n\n21) ZackStack: Discover Y1 Globe R1 Crumb\n\trootbier: Looks to be a pretty balanced spread right now.\n\trootbier: No - I guess I'm a little better placed for growth.\n\n22) rootbier: Trade Y1 R1 Rootbier\n\n23) ZackStack: Sacrifice G3 Globe\nBuild G3 Globe\nBuild B2 Zackstack\nBuild Y1 Crumb\n\n24) rootbier: Move Y2 Rootbier Aubergine\n\n25) ZackStack: Trade B2 R2 Zackstack\n\n26) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Aubergine\nBuild Y3 Rootbier\nBuild R2 Rootbier\n\n27) ZackStack: Sacrifice G3 Globe\nBuild G3 Globe\nBuild Y3 Globe\nBuild G3 Zackstack\n\n28) rootbier: Sacrifice Y2 Rootbier\nMove G1 Aubergine Globe\nMove Y2 Aubergine Globe\n\n29) ZackStack: Sacrifice Y3 Globe\nMove G3 Globe Crumb\nMove G1 Globe Crumb\nMove Y1 Globe Zackstack\n\n30) rootbier: Sacrifice Y2 Aubergine\nMove G1 Globe Zackstack\nMove G2 Uva Globe\n\n31) ZackStack: Trade G3 Y3 Zackstack\n\n32) rootbier: Sacrifice G1 Rootbier\nBuild G1 Zackstack\n\n33) ZackStack: Sacrifice Y3 Zackstack\nMove R2 Zackstack Globe\nMove R2 Globe Aubergine\nMove R2 Aubergine Rootbier\nCatastrophe Rootbier Red\n\trootbier: Thanks for your patience while I was away.\n\n34) rootbier: Sacrifice G2 Aubergine\nBuild G2 Zackstack\nBuild G3 Uva\nCatastrophe Zackstack G\n\tZackStack: No problem. I'm always willing to wait for a good opponent! Nice move by the way...\n\trootbier: Looked like a nice way to press you a little. Question now is: How much am I willing to lose to press you further?\n\n35) ZackStack: Move Y1 Crumb Rootbier\n\trootbier: Let's see where this goes.\n\tZackStack: Noplace pleasant I'm sure... ;-)\n\n36) rootbier: Move G2 Globe Rootbier\n\n37) ZackStack: Sacrifice G3 Crumb\nBuild Y2 Rootbier\nBuild Y2 Rootbier\nBuild Y3 Zackstack\nCatastrophe Rootbier Yellow\n\trootbier: Ajjhh - you did indeed red warp cat me.\r\nNew shape of the known universe.\n\n38) rootbier: Build G1 Rootbier\n\n39) ZackStack: Build G1 Crumb\n\trootbier: Too many options! Choice freeze!\n\n40) rootbier: Trade G1 Y1 Rootbier\n\tZackStack: Woot! That's why we play isn't it? :-)\n\n41) ZackStack: Build Y2 Crumb\n\trootbier: Bah! You did it without losing your 3 -- I didn't look far enough down that line.\n\tZackStack: I forgive you ;-)\n\n42) rootbier: Sacrifice G2 Uva\nBuild Y2 Globe\nBuild Y3 Rootbier\n\trootbier: I made my big mistake there -- I'll keep it simple (and safe?) for now.\r\n\r\nActually of to Tel&#269; (Czech Republic) in the morning for some workshops/conferences -- won't hear from me again until some time on Monday. Sorry for the summer slowdown :)\n\tZackStack: Enjoy your conference! I'll be here when you get back :-)\n\n43) ZackStack: Trade Y3 G3 Zackstack\n\n44) rootbier: Discover Y1 Rootbier G2 Greengrape\n\n45) ZackStack: Discover B1 Zackstack G2 Verde\n\n46) rootbier: Move G2 Rootbier Verde\n\n47) ZackStack: Build B1 Verde\n\tZackStack: Whew... That was close. I'd rather not hand you the game quite yet... ;-)\n\n48) rootbier: Sacrifice G3 Uva\nBuild G1 Verde\nBuild G3 Verde\nBuild Y3 Rootbier\nCatastrophe Verde G\n\n49) ZackStack: Build Y3 Zackstack\n\n50) rootbier: Sacrifice Y2 Globe\nMove Y2 Globe Zackstack\nMove Y1 Greengrape Zackstack\nCatastrophe Zackstack Y\n\n51) ZackStack: Build G1 Zackstack\n\n52) rootbier: Trade Y3 G3 Rootbier\n\n53) ZackStack: Trade G1 Y1 Zackstack\n\tZackStack: Clearly that was unexpected :-)\n\n54) rootbier: Build Y1 Rootbier\n\trootbier: In past I have waited far too long to address threats on my second star.\n\n55) ZackStack: Build Y2 Zackstack\n\trootbier: Hmmm... not sure if I should - but yeah I will.\n\n56) rootbier: Discover Y1 Rootbier G2 Huh\n\tZackStack: You took my bait! Now only if I knew *why* I set that bait... :-)\n\n57) ZackStack: Trade Y1 B1 Zackstack\n\trootbier: Ha hah. Well. You're not bad off. I have two 3s against your one 3 and many smaller :/ Not quite sure why I took it. Guess I love the destruction(?)\n\n58) rootbier: Build Y1 Rootbier\n\trootbier: "I guess I will do that," he said plaintively.\n\n59) ZackStack: Discover B1 Zackstack Y2 Sunspot\n\n60) rootbier: Build Y3 Huh\n\n61) ZackStack: Move B1 Sunspot Rootbier\n\n\trootbier: oh right - too long sighted to what was right there. one move action too far away to stop you.\n\nHomeworlds Online (SDG# 16453)\nVariants: "Sinister"\nStarted: 2010.5.23, Ended: 2010.5.27\nParticipants: goulo (S), zara2stra (N), AdamBadura (E)\nWinner: goulo\n\n1) zara2stra: Homeworld G3 Y1 B3\n\n2) AdamBadura: Homeworld G1 B2 R3\n\n3) goulo: Homeworld B3 G2 Y3\n\n4) zara2stra: Build B1 Zara2stra\n\tgoulo: have fun!\n\n5) AdamBadura: Build R1 Adambadura\n\tzara2stra: Just after ending the previous game I realized the flaw of this mod. Since you exactly know who you are after and who's after you, the third player can choose exactly the same planet sizes for his homeworld to draw himself near to his designated enemy. No, I didn't want to share it before the start of this game ;)\n\tAdamBadura: Yes. Indeed. In two players mode this is not a good strategy but in this mode it might be.\n\n6) goulo: Build Y1 Goulo\n\tgoulo: maybe, maybe not. i think only testing would tell. :)\n\n7) zara2stra: Build B1 Zara2stra\n\n8) AdamBadura: Trade R1 Y1 Adambadura\n\n9) goulo: Trade Y1 G1 Goulo\n\n10) zara2stra: Trade B1 R1 Zara2stra\n\n11) AdamBadura: Build Y1 Adambadura\n\n12) goulo: Build G1 Goulo\n\n13) zara2stra: Trade B1 G1 Zara2stra\n\n14) AdamBadura: Trade Y1 B1 Adambadura\n\n15) goulo: Trade G1 R1 Goulo\n\n16) zara2stra: Build B1 Zara2stra\n\n17) AdamBadura: Build Y1 Adambadura\n\n18) goulo: Build R1 Goulo\n\n19) zara2stra: Trade B1 Y1 Zara2stra\n\n20) AdamBadura: Build Y2 Adambadura\n\n21) goulo: Build Y2 Goulo\n\n22) zara2stra: Build B1 Zara2stra\n\n23) AdamBadura: Discover Y1 Adambadura G3 Neighbourhood\n\n24) goulo: Discover Y2 Goulo G1 Arbeto\n\n25) zara2stra: Discover G1 Zara2stra B2 Hyperion\n\n26) AdamBadura: Build Y2 Neighbourhood\n\n27) goulo: Move R1 Goulo Arbeto\n\n28) zara2stra: Build G2 Hyperion\n\n29) AdamBadura: Build B1 Adambadura\n\n30) goulo: Build Y2 Goulo\n\n31) zara2stra: Move Y1 Zara2stra Hyperion\n\n32) AdamBadura: Move B1 Adambadura Neighbourhood\n\n33) goulo: Build Y3 Arbeto\n\n34) zara2stra: Build Y3 Hyperion\n\n35) AdamBadura: Build Y3 Adambadura\n\n36) goulo: Trade Y2 B2 Goulo\n\n37) zara2stra: Trade G1 R1 Hyperion\n\n38) AdamBadura: Discover Y1 Adambadura G3 Nextdoor\n\n39) goulo: Build Y2 Goulo\n\n40) zara2stra: Build R2 Hyperion\n\n41) AdamBadura: Build R2 Adambadura\n\n42) goulo: Build R2 Arbeto\n\n43) zara2stra: Discover Y3 Hyperion B3 Endymion\n\n44) AdamBadura: Move R2 Adambadura Neighbourhood\n\n45) goulo: Move B2 Goulo Arbeto\n\n46) zara2stra: Move R1 Hyperion Endymion\n\n47) AdamBadura: Trade Y1 G1 Neighbourhood\n\n48) goulo: Discover G1 Goulo Y1 Egiptujo\n\n49) zara2stra: Build G2 Hyperion\n\n50) AdamBadura: Discover Y1 Nextdoor B1 Nextstreet\n\n51) goulo: Move Y3 Arbeto Hyperion\n\n52) zara2stra: Sacrifice Y3 Endymion\nMove G2 Hyperion Endymion\nMove G2 Hyperion Endymion\nMove Y1 Hyperion Endymion\n\n53) AdamBadura: Build Y3 Neighbourhood\n\tzara2stra: Sorry guys, I'm still in work and I had a lot to do. Didn't have a chance to drop by earlier.\n\n54) goulo: Sacrifice R1 Arbeto\nAttack R2N Hyperion\n\n55) zara2stra: Build G2 Endymion\n\tgoulo: no problem, that's why we're playing by email/web and not real-time. :)\n\n56) AdamBadura: Build B2 Neighbourhood\n\n57) goulo: Build B3 Arbeto\n\n58) zara2stra: Move G2 Endymion Adambadura\n\n59) AdamBadura: Attack G2N Adambadura\n\tAdamBadura: I wonder what zara2stra meant with this move.\r\n\r\nI am eager to see but somehow command:\r\nattack G2 AdamBadura\r\nclaims that:\r\n"The ship G2 could not be found in the AdamBadura system."\r\n\r\nWhat to do now?\r\n\r\nAnd by the way: if both of you would have the same ship in my system how would I tell which one to attack?\n\tzara2stra: in the help, it says you should attack with a player designation so to attack my g2 you should attack g2n adambadura\n\n60) goulo: Trade B3 G3 Arbeto\n\tAdamBadura: It helped. Thanks! I two players mode it allowed to skip player mark and so I didn't new it is required.\n\n61) zara2stra: Move G2 Endymion Adambadura\n\n62) AdamBadura: Move G2 Adambadura Endymion\n\n63) goulo: Build G3 Egiptujo\n\n64) zara2stra: Attack G2E Endymion\n\n65) AdamBadura: Attack G2N Adambadura\n\n66) goulo: Move G3 Egiptujo Hyperion\n\n67) zara2stra: Build R1 Endymion\n\n68) AdamBadura: Build B3 Adambadura\n\n69) goulo: Sacrifice Y2 Goulo\nMove G1 Egiptujo Neighbourhood\nMove G3 Arbeto Neighbourhood\nCatastrophe Neighbourhood G\n\n70) zara2stra: Move G2 Endymion Adambadura\n\tgoulo: Who could resist killing 7 enemy ships in a supernova? :)\n\tgoulo: Or 6, I forget how many exactly. :)\n\n71) AdamBadura: Discover G2 Adambadura Y3 Endlessrage\n\n72) goulo: Build G1 Hyperion\n\tAdamBadura: So as I see kill the one on your left was changed to kill AdamBadura... ;)\n\tgoulo: No, just good old fashioned "hurt the guy with the most ships AND the most 3-ships". :) After that result, we all became more equal.\n\n73) zara2stra: Sacrifice G2 Endymion\nBuild G1 Adambadura\nBuild G2 Adambadura\nCatastrophe Adambadura G\n\tzara2stra: besides, as I see it, goulo needed the supplies in the yellow stash :P I see this as an opportunity to use a plan he thwarted few turns earlier\n\tzara2stra: Anyway, what does this button do?\n\n74) AdamBadura: Sacrifice Y2 Adambadura\nDiscover B1 Adambadura G1 Runaways\nMove B3 Adambadura Runaways\n\n75) goulo: Sacrifice G3 Hyperion\nBuild Y1 Hyperion\nBuild Y2 Arbeto\nBuild Y2 Goulo\n\tzara2stra: forgot to add the catastrophe part\n\tAdamBadura: I don't know how I missed that way... :(\n\tzara2stra: The first time I tried it goulo took the last g ship from the stash\n\n76) zara2stra: Trade R1 G1 Endymion\n\tAdamBadura: Now I have to twice that careful. The game really got complex with goulo attacking me instead of zara2stra ;) and now loosing one of my stars... :(\n\tzara2stra: But that was normal - your fleet heeded his way.\n\tzara2stra: I mean, most of the time players plot to get as close to their target with as large fleet as possible, occasionally thwarting plans of the player who tries to get them. \n\tzara2stra: I mean, most of the time players plot to get as close to their target with as large fleet as possible, occasionally thwarting plans of the player who tries to get them. \n\tgoulo: Wow, i come back from lunch, and man! What a mess you guys have made in the galaxy!\n\n77) AdamBadura: Trade Y1 B1 Nextstreet\n\n78) goulo: Build G2 Hyperion\n\n79) zara2stra: Build G2 Endymion\n\n80) AdamBadura: Sacrifice Y3 Adambadura\nMove B1 Runaways Goulo\nMove B3 Runaways Goulo\nMove B1 Nextstreet Goulo\nCatastrophe Goulo B\n\n81) goulo: Discover Y2 Arbeto R2 Rubeno\n\n82) zara2stra: Trade G2 Y2 Endymion\n\tAdamBadura: However I am afraid this might have allowed zara2stra to win.\r\n\r\nSo consider goulo securing me for some time. As stupid as it sounds keep in mind that I am an easy target now and if zara2stra wins you will not... ;)\n\n83) AdamBadura: Build G1 Endlessrage\n\n84) goulo: Build R1 Hyperion\n\n85) zara2stra: Sacrifice Y2 Endymion\nMove B3 Zara2stra Adambadura\nMove B1 Zara2stra Adambadura\n\n86) AdamBadura: Attack B3N Adambadura\n\n87) goulo: Sacrifice Y3 Hyperion\nMove R1 Goulo Zara2stra\nMove R1 Hyperion Zara2stra\nMove R2 Hyperion Zara2stra\nCatastrophe Zara2stra R\n\tzara2stra: check\n\tzara2stra: ooops, should probably take that back - but in a live game I would really miss that possibility :(\n\tzara2stra: Ok, I take the last statement back - it seems that it was a good move after all :) \n\tzara2stra: for several minutes after the last move I thought that goulo will be able to catastrophe me with red in my HS\n\tzara2stra: oh but he will - excuse me, I'm really tired ;)\n\tzara2stra: shitshitshit - ROTFL. I just explained how to win to my oponent. Note to self for future plays: do not make hasty moves after a several hour brake from analysing the situation.\n\tzara2stra: I just described my hilarious mistake on Blip. Folko sends his regards :)\n\tAdamBadura: Hmmm... I agree to undo your last move since you have seen it before I did and I guess befor goulo did as well. So if you still want to undo and goulo doesn't mind the do it. Otherwise let me know to continue.\n\tgoulo: Ummm. what a strange chat sequence! I guess take it back, given our convention so far in this game. And perhaps next game we should simply play with the No Undo option to avoid these confusing dilemmas. :) \n\tgoulo: By the way, convince Folko to start playing at superdupergames! I told him about it, but he is lazy and distracted. :)\n\tzara2stra: naah, I won't undo it - that's exactly the kind of error that often happens during a live game. I'll try to talk Folko into playing here - I think he would like it:) And BTW - Homeworlds once more? or maybe something light like Blam! I would also like to try the online interpretation of Alien City, but it's two player only. \n\n\tAdamBadura: So lets goulo finish the game properly.\r\n\r\nI would gladly play another one. Also I want to play Skurðir but they don't have it here.\n\tAdamBadura: By the way I wonder what did you intend to do now after moving those two B ships into my homeworld? Did you count on goulo to finish me off (as you already cooparted in the past agains me... :P)?\n\tAdamBadura: Sacrificing a G ship. Now I see it. Nice. A close game. Saddly not for me... ;)\n\tgoulo: thanks for the game!\r\nI will happily play this again, as well as Blam, Branches, Martian Chess, Subdivision, all of which are neat little pyramid games I've played in real life and here online. Adam, will you join us for Blam? And do either of you want to play any of the others as well?\r\n\r\nI've never played Alien City but always heard it's good. Feel free to challenge me, zara.\n\tAdamBadura: I never played Blam. I don't know the rules so start without me if you want to as I don't know when I will read them.\n\tzara2stra: Ok, I'll challenge you during the weekend - I have a business trip to Pozna&#324; tommorow, so for most of the time I won't have access to a computer. As for Homeworlds and Blam, we can start today :) Thanks for the game.\n\tzara2stra: Adam, the rules for blam are easy - you place pyramids on a chessboard and all surrounding pyramids move away from the piece you place. The goal is for pyramids to fall from the board. You take your pyramids to use them again, and take any pieces from other players as trophies. that's all :)\n\tAdamBadura: Seems easy enogh. You may challange me as well... :)\n\nHomeworlds Online (SDG# 16363)\nVariants: "Hard time"\nStarted: 2010.5.24, Ended: 2010.6.16\nParticipants: Jesse (S), rootbier (N)\nWinner: Jesse\n\n1) rootbier: Homeworld B1 Y3 G3\n\n2) Jesse: Homeworld G2 B1 B3 *\n\n3) rootbier: Build G1 Rootbier\n\n4) Jesse: Build B1 Jesse\n\n5) rootbier: Build G1 Rootbier\n\trootbier: all the tricks :) schooling again thanks.\n\trootbier: or... no. that doesn't work that way... hmm.\n\n6) Jesse: Trade B3 Y3 Jesse\n\n7) rootbier: Discover G1 Rootbier Y2 Procra\n\trootbier: who are you and what have you done with Jesse?\n\tJesse: Heh. Good question. Apparently my brain has severe gas this morning. I'll just correct that, if you don't mind.\n\n8) Jesse: Build B2 Jesse\n\trootbier: Some catastrophes you just can't feel good about eh?\n\n9) rootbier: Build G1 Procra\n\n10) Jesse: Discover B2 Jesse G3 Canada\n\tJesse: Indeed. Usually I'm the one giving a newbie a second chance when they make some silly oversight. I guess karma has to count for something.\n\trootbier: Feel free to pretend I am a newbie at some point.\n\n11) rootbier: Discover G1 Procra B3 Stinat\n\n12) Jesse: Build B2 Canada\n\tJesse: Should the need arise, you've got a deal.\n\n13) rootbier: Sacrifice G3 Rootbier\nBuild G2 Procra\nBuild G2 Stinat\nBuild G3 Rootbier\n\n14) Jesse: Build B2 Jesse\n\n\nHomeworlds Online (SDG# 16433)\nVariants: "Hard time"\nStarted: 2010.5.24, Ended: 2010.6.8\nParticipants: rootbier (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B2 Y1 G3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) rootbier: Build G1 Rootbier\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) SilentTitan: Discover B1 Silenttitan G3 All\n\n8) rootbier: Build Y1 Rootbier\n\n9) SilentTitan: Build B1 All\n\n10) rootbier: Discover Y1 Rootbier G2 Pesto\n\n11) SilentTitan: Build B2 All\n\n12) rootbier: Build Y2 Rootbier\n\n13) SilentTitan: Trade B2 Y2 All\n\n14) rootbier: Trade Y1 R1 Rootbier\n\n15) SilentTitan: Build B2 All\n\n16) rootbier: Trade Y2 B2 Rootbier\n\n17) SilentTitan: Sacrifice Y2 All\nDiscover B1 All Y2 Ball\nMove B2 All Silenttitan\n\n18) rootbier: Move R1 Rootbier Ball\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Ball\nBuild B3 All\nBuild B3 Silenttitan\n\n20) rootbier: Move B2 Rootbier Pesto\n\n21) SilentTitan: Sacrifice B3 All\nTrade B3 R3 Ball\nTrade B3 G3 Silenttitan\nTrade B1 R1 All\n\n22) rootbier: Build G1 Rootbier\n\n23) SilentTitan: Attack R1S Ball\n\trootbier: Rinse and repeat :/\n\n24) rootbier: Trade G3 R3 Rootbier\n\n25) SilentTitan: Sacrifice G3 Silenttitan\nBuild B1 Ball\nBuild B3 Ball\nBuild B3 Silenttitan\n\n26) rootbier: Build B3 Pesto\n\n27) SilentTitan: Sacrifice B2 Silenttitan\nTrade B3 Y3 Ball\nTrade B1 R1 Ball\n\n28) rootbier: Build G1 Rootbier\n\n29) SilentTitan: Move R1 Ball Rootbier\n\n30) rootbier: Sacrifice B2 Pesto\nTrade R3 B3 Rootbier\nTrade B3 R3 Pesto\n\n31) SilentTitan: Trade R1 B1 Rootbier\n\trootbier: What's that chirping sound?\n\n32) rootbier: Trade B3 R3 Rootbier\n\trootbier: Sounded a bit like an Eastern Bluebird, but without visual confirmation I can't really say with any certainty.\n\n33) SilentTitan: Trade Y3 G3 Ball\n\trootbier: all the jokey ribbing :P in the world wouldn't have saved me if i'd let that sit :)\n\n34) rootbier: Attack B1 Rootbier\n\n35) SilentTitan: Build B2 Ball\n\trootbier: Ooh. I see that you do indeed have me in a bind. I'll end up having to sab my b3 to get out of this - knew i should have done it in the first place.\n\n36) rootbier: Move B1 Rootbier Pesto\n\n37) SilentTitan: Trade B2 Y2 Ball\n\tSilentTitan: I couldn't push the button fast enought to catch you on the no red in your homeworld move\n\trootbier: Hmm... maybe you weren't planning what I thought you were planning. You really had me in trouble there.\n\n38) rootbier: Build B2 Pesto\n\trootbier: Why did you switch the y3? You could have totally pulled off the move I think you were planning with the y3 and the little reds.\n\n39) SilentTitan: Sacrifice G3 Ball\nBuild B2 Ball\nBuild B3 Ball\nBuild B3 Silenttitan\n\n40) rootbier: Trade R3 G3 Pesto\n\n41) SilentTitan: Sacrifice B2 Ball\nTrade B3 R3 Silenttitan\nTrade B3 Y3 Silenttitan\n\n42) rootbier: Discover B1 Pesto G3 Flaco\n\n43) SilentTitan: Sacrifice Y2 Ball\nMove R3 Silenttitan All\nMove R3 All Pesto\n\tSilentTitan: you know ... that's a good question...I thought I had a great idea ... but then I quess I much have lost track of what I was doing... happens I guess\n\tSilentTitan: much = must\n\trootbier: way i saw it i was at best going to lose my size 3 at home along with your three little reds at the sacrifice of your y3 - now that doesn't seem like a great trade off but you'd have been a good deal ahead on position and remaining shipage -- might be okay either way\n\n44) rootbier: Sacrifice G3 Pesto\nBuild B2 Pesto\nBuild B3 Flaco\nBuild R1 Rootbier\n\n45) SilentTitan: Trade B3 Y3 Ball\n\n46) rootbier: Move R1 Rootbier Pesto\n\n47) SilentTitan: Sacrifice Y3 Ball\nMove R3 Pesto Rootbier\nMove R3 Ball Rootbier\nMove B1 Ball Rootbier\n\n48) rootbier: Build R2 Rootbier\nCatastrophe Rootbier R\n\n49) SilentTitan: Sacrifice R1 All\nAttack G1S Rootbier\n\n50) rootbier: Move B2 Pesto Rootbier\n\n51) SilentTitan: Build B3 Rootbier\nCatastrophe Rootbier B\n\n\nHomeworlds Online (SDG# 16327)\nVariants: "Hard time"\nStarted: 2010.5.24, Ended: 2010.6.9\nParticipants: dlwillson (S), rootbier (N)\nWinner: dlwillson\n\n1) rootbier: Homeworld Y1 B2 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) dlwillson: Build G1 Dlwillson\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) rootbier: Build Y1 Rootbier\n\n8) dlwillson: Build B1 Dlwillson\n\n9) rootbier: Discover Y1 Rootbier G3 Calabash\n\n10) dlwillson: Discover B1 Dlwillson G2 Bottlegourd\n\n11) rootbier: Build Y2 Calabash\n\n12) dlwillson: B B2 Bottlegourd\n\n13) rootbier: Move Y2 Calabash Bottlegourd\n\n14) dlwillson: B B2 Dlwillson\n\n15) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Calabash\nBuild Y2 Bottlegourd\nBuild Y3 Rootbier\n\n16) dlwillson: Trade B2 R2 Dlwillson\n\n17) rootbier: Build Y3 Bottlegourd\n\n18) dlwillson: Sacrifice R2 Dlwillson\nA Y2 Bottlegourd\nA Y2 Bottlegourd\n\n19) rootbier: Trade Y1 R1 Rootbier\n\n20) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Bottlegourd\nBuild B2 Bottlegourd\nBuild B3 Dlwillson\n\n21) rootbier: Sacrifice Y2 Calabash\nDiscover Y3 Bottlegourd G3 Butternut\nMove Y1 Calabash Bottlegourd\nCatastrophe Bottlegourd Y\n\n22) dlwillson: Sacrifice B2 Bottlegourd\nTrade B3 G3 Dlwillson\nTrade B2 R2 Bottlegourd\n\n23) rootbier: Trade Y3 G3 Rootbier\n\n24) dlwillson: B B2 Dlwillson\n\n\tdlwillson: good game, thank you\n\nHomeworlds Online (SDG# 16325)\nStarted: 2010.5.24, Ended: 2010.6.18\nParticipants: TwoShort (S), rootbier (N)\nWinner: TwoShort\n\n1) rootbier: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) TwoShort: Build G1 Twoshort\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) rootbier: Build R1 Rootbier\n\n8) TwoShort: Build Y1 Twoshort\n\n9) rootbier: Build R2 Rootbier\n\n10) TwoShort: Build Y2 Twoshort\n\n11) rootbier: Trade R2 Y2 Rootbier\n\n12) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n13) rootbier: Build R2 Rootbier\n\trootbier: Professor Slogar is determind to creat the perfect groom for her daughter?\n\n14) TwoShort: Trade Y2 R2 Twoshort\n\tTwoShort: Yes! Well, sort of: Keith Baker and I are old friends and a long time ago we would both have thought of 'Grogar' as a giant green monster; add some years and some free-associating to get 'Grogar' the monstrous teddy bear in his mind and 'Grogar' the green star name in mine...\n\n15) rootbier: Discover R2 Rootbier G3 Popsicle\n\trootbier: Rad 'nuff.\r\n\r\nI have to say it's a really pretty game and a great mechanic (stacking the clear cards) - but I don't get a lot of (re)play out of it.\r\n\r\nYou guys used to crawl/campaign together? Or?\r\nAre you also a designer/writer?\r\nDo you have a BGG account? Link me so I can check your collection :P :D\n\tTwoShort: Keith and I have been best friends since we met in college..let's see...20 years ago!?! Yikes! I'm old! We've mostly lived in the same cities since, until he moved a couple months ago :(\r\n\r\nAnyway:\r\n -Gloom is fun, but not exactly my thing either. I go more for the gear-headed: recent game-night favorites are Dominion and Small World.\r\n -Professionally, I'm a software engineer. I've got a play-tester credit on Gloom, and probably some D&D stuff, but that's about the extent of my game career.\r\n - No BGG account, but my collection is easily described: Many Icehouse pyramids. One of everything else by Looney Labs. A random assortment of stuff that didn't fit in Keiths car when he moved :)\r\n\r\nSo how did you come across Homeworlds? It shouldn't, but it still surprises me when people I don't know play Icehouse games. :)\n\trootbier: First time I encountered pyramids was err... 8 years ago(?)... playing Zendo with a best friend's kind-of-brother-in-law and his geekforce. Kind of got sucked into gaming properly a couple years ago - hanging out with this German chick at the international student village we were living in (I've been studying in Norway for the last three years).\r\n\r\nI hear good things about Small World but haven't gotten to play it yet. I only get to play things I buy - which means --- things I bought last summer when I was back home for the first time. Even still it's mostly been just a lot of Carcassonne - which is fun but --- I wish my friends here were a bit more willing to mix it up.\r\n\r\nAnyway - one of the things I brought back here with me was 5 Treehouse/Icehouse sets. So I've been trying to spread a bit of homeworlds to other folks. ... I should be studying for tomorrow's exam. :/\n\n16) TwoShort: Build Y2 Twoshort\n\n17) rootbier: Discover R1 Rootbier B3 Aubergine\n\trootbier: I was studying for the wrong exam -- genius. I think I still probably pulled off a C without having read a page. Which is considered fine here - not by my standards but by the country's. I am switching programs anyway - so I am not too bothered. Though I imagine I could have aced it had I checked to see which one was coming.\r\n\r\nExtra bonus: I won't have to study much for the one that happens next week.\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Grogar\nBuild Y3 Twoshort\n\n19) rootbier: Sacrifice G3 Rootbier\nBuild R2 Popsicle\nBuild R3 Aubergine\nBuild R3 Rootbier\n\trootbier: such a tease - aaargh\n\n20) TwoShort: Move Y3 Grogar Popsicle\n\trootbier: forgot i had my own to do :)\n\n21) rootbier: Sacrifice Y2 Rootbier\nDiscover R2 Popsicle Y2 Maniac\nMove R2 Popsicle Maniac\n\n22) TwoShort: Build Y3 Grogar\n\n23) rootbier: Trade R1 G1 Aubergine\n\n24) TwoShort: Move Y3 Popsicle Maniac\n\n25) rootbier: Discover R2 Maniac G1 Pollen\n\n26) TwoShort: Trade Y2 G2 Twoshort\n\n27) rootbier: Move R2 Maniac Aubergine\n\n28) TwoShort: Build Y2 Twoshort\n\n29) rootbier: Trade R3 G3 Rootbier\n\n30) TwoShort: Build G1 Twoshort\n\n31) rootbier: Build G2 Rootbier\n\n32) TwoShort: Build G3 Twoshort\n\n33) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild G3 Aubergine\nBuild R1 Pollen\n\n34) TwoShort: Trade G1 B1 Twoshort\n\n35) rootbier: Trade G2 B2 Rootbier\n\trootbier: you're going to do something exciting soon right... :/\n\n36) TwoShort: Move B1 Twoshort Grogar\n\tTwoShort: Something exiting like sacrificing all my 3 pointers one after another to win? Soon. :)\n\trootbier: well there's only so much building i can still do and then i'll just have to pass pass pass\n\n37) rootbier: Discover B2 Rootbier B3 Thpppbt\n\n38) TwoShort: Sacrifice G3 Twoshort\nBuild B1 Grogar\nBuild B1 Grogar\nBuild G1 Twoshort\n\tTwoShort: Yeah, once I got the yellow monopoly it was just a matter of time. Anyway... Victory in 5.\n\n39) rootbier: Sacrifice G3 Aubergine\nBuild G2 Rootbier\nBuild R3 Rootbier\nBuild G3 Aubergine\n\n40) TwoShort: Sacrifice Y3 Twoshort\nDiscover B1 Grogar Y3 Yonder\nMove B1 Grogar Yonder\nMove B1 Grogar Yonder\n\n41) rootbier: Sacrifice B2 Thpppbt\nTrade R3 B3 Aubergine\nTrade R2 B2 Pollen\n\n42) TwoShort: Sacrifice Y3 Grogar\nMove B1 Yonder Rootbier\nMove B1 Yonder Rootbier\nMove B1 Yonder Rootbier\nCatastrophe Rootbier Blue\n\n\trootbier: Now I remember where we were :)\r\nThanks for your patience while I was away.\n\nHomeworlds Online (SDG# 16452)\nStarted: 2010.5.24, Ended: 2010.11.7\nParticipants: dethdukk (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld Y1 B2 G3\n\n2) dethdukk: Homeworld R3 B2 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) dethdukk: Build G1 Dethdukk\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) dethdukk: Trade G1 Y1 Dethdukk\n\n7) rootbier: Build Y2 Rootbier\n\n8) dethdukk: Build Y2 Dethdukk\n\n9) rootbier: Trade Y1 R1 Rootbier\n\n10) dethdukk: Build G1 Dethdukk\n\n11) rootbier: Build G1 Rootbier\n\n12) dethdukk: Discover G1 Dethdukk G1 Green\n\n13) rootbier: Trade G1 B1 Rootbier\n\trootbier: poke\n\tdethdukk: hey sorry, my life kicked my ass and I dropped out of sdg for a number of months... I'll see if i can get back into it.\n\n\nHomeworlds Online (SDG# 16462)\nVariants: "Hard time"\nStarted: 2010.5.24, Ended: 2010.6.13\nParticipants: rootbier (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\trootbier: I'm back for more school. :)\n\tUglyfoot: OK. Let the lesson in pain begin. Mwua-ha-ha!\n\n4) rootbier: Build G1 Rootbier\n\tUglyfoot: ;>\n\n5) Uglyfoot: Discover G1 Uglyfoot R1 Step\n\n6) rootbier: Discover G1 Rootbier Y2 Son\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) rootbier: Build G2 Rootbier\n\n9) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n10) rootbier: Discover G1 Son B1 Daughter\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) rootbier: Build G2 Daughter\n\n13) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Step\n\n14) rootbier: Trade G2 Y2 Daughter\n\n15) Uglyfoot: Trade G2 R2 Uglyfoot\n\n16) rootbier: Build G2 Daughter\n\n17) Uglyfoot: Build G2 Step\n\n18) rootbier: Sacrifice Y2 Daughter\nMove G1 Daughter Uglyfoot\nMove G1 Uglyfoot Step\nCatastrophe Step G\n\n19) Uglyfoot: Move R2 Uglyfoot Daughter\n\n20) rootbier: Build G1 Daughter\n\n21) Uglyfoot: Attack G2 Daughter\n\n22) rootbier: Build G1 Daughter\n\n23) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Daughter\nBuild G3 Uglyfoot\nBuild G3 Uglyfoot\nCatastrophe Daughter G\n\n24) rootbier: Trade G2 B2 Rootbier\n\n25) Uglyfoot: Discover G3 Uglyfoot Y1 Links\n\n26) rootbier: Build B1 Rootbier\n\n27) Uglyfoot: Discover G3 Links Y2 Forward\n\n28) rootbier: Trade B1 R1 Rootbier\n\n29) Uglyfoot: Move Y1 Uglyfoot Daughter\n\n\nHomeworlds Online (SDG# 16467)\nStarted: 2010.5.26, Ended: 2010.7.19\nParticipants: dethdukk (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) dethdukk: Homeworld B2 R3 G3\n\tSilentTitan: been playing for a while now.... time to take you down.\r\n\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dethdukk: Build G1 Dethdukk\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dethdukk: Trade G1 Y1 Dethdukk\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) dethdukk: Build G1 Dethdukk\n\n9) SilentTitan: Discover G1 Silenttitan Y3 Crazy\n\tSilentTitan: ha .... I almost trapped you into that move\r\n\n\n10) dethdukk: Trade G1 R1 Dethdukk\n\tdethdukk: yeah, I miscounted moves, then realized that I had when I submitted\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) dethdukk: Build R1 Dethdukk\n\tdethdukk: gotcha out of red methinks... so the real question is if it will matter\n\n13) SilentTitan: Build G1 Crazy\n\n14) dethdukk: Build G2 Dethdukk\n\n15) SilentTitan: Discover G1 Crazy B2 Mispelled\n\n16) dethdukk: Discover G2 Dethdukk Y1 Leaps\n\n17) SilentTitan: Build G2 Crazy\n\n18) dethdukk: Move R1 Dethdukk Leaps\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Mispelled\nBuild G3 Silenttitan\nBuild G3 Silenttitan\n\n20) dethdukk: Build R2 Leaps\n\n21) SilentTitan: Trade G2 Y2 Mispelled\n\n22) dethdukk: Move R2 Leaps Mispelled\n\n23) SilentTitan: Sacrifice Y2 Mispelled\nDiscover G1 Mispelled R3 Danger\nDiscover G3 Silenttitan B3 Group\n\n\nHomeworlds Online (SDG# 16360)\nStarted: 2010.5.27, Ended: 2010.6.2\nParticipants: ZackStack (S), goulo (N)\nWinner: ZackStack\n\n1) goulo: Homeworld G1 B2 Y3\n\n2) ZackStack: Homeworld B1 R3 G3\n\tgoulo: hi, have fun!\n\tZackStack: You too! Thanks for the challenge!\n\n3) goulo: Build Y1 Goulo\n\n4) ZackStack: Build G1 Zackstack\n\n5) goulo: Trade Y1 G1 Goulo\n\tZackStack: Have you played Homeworlds very much?\n\tgoulo: 10 times. More than a newbie, but less than you. :)\n\n6) ZackStack: Build G2 Zackstack\n\tZackStack: Fair enough! I like to give the true newbies some tips when they do something particularly perplexing ;-)\n\n7) goulo: Build G2 Goulo\n\tgoulo: I'm open to tips, or general chat about strategy. Especially if I've already done something particularly perplexing. :)\n\n8) ZackStack: Trade G2 Y2 Zackstack\n\n9) goulo: Trade G1 R1 Goulo\n\tZackStack: Well... I wondered if you'd try mutual annihilation last turn (I have yet to see what SDG makes of that... :-)\n\tgoulo: I noticed that, but it is illegal to suicide according to the rules. So I assume the system would/should reject that order. But I didn't feel like testing that. :)\n\n10) ZackStack: Discover G1 Zackstack B2 Berry\n\n11) goulo: Discover G2 Goulo B3 Anna\n\n12) ZackStack: Build G1 Zackstack\n\n13) goulo: Build G2 Anna\n\n14) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Berry\nBuild G3 Zackstack\nBuild G3 Berry\n\n15) goulo: Build Y1 Goulo\n\n16) ZackStack: Trade G3 Y3 Berry\n\n17) goulo: Trade G2 Y2 Anna\n\n18) ZackStack: Discover G2 Berry Y3 Lemon\n\n19) goulo: Trade Y3 G3 Goulo\n\n20) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Lemon\nBuild G3 Zackstack\nBuild G3 Berry\n\n21) goulo: Move G3 Goulo Anna\n\n22) ZackStack: Sacrifice Y2 Zackstack\nMove G3 Berry Anna\nMove G3 Anna Goulo\n\n23) goulo: Move G3 Anna Goulo\n\n24) ZackStack: Sacrifice G1 Berry\nBuild G1 Goulo\nCatastrophe Goulo Green\n\tgoulo: Wow, you are totally kicking my butt...! Thanks for the lesson in the power cycling through greens... :)\n\tZackStack: You bet! ;-) Big green ships are pretty darn awsome!\n\n\tgoulo: Thanks! I will try another game with you when I am more of a challenge for you. :)\n\tZackStack: I look forward too it! Or I'd be happy to play an unrated challenge if you think you can learn from more games but are worried about your rating.\n\tgoulo: I'm not worried about my rating. I prefer playing rated games, whether against weaker, stronger, or same-strength players, so that there is more data in the ratings pool and the ratings become more accurate. :)\n\nHomeworlds Online (SDG# 16490)\nVariants: "No undo, Sinister"\nStarted: 2010.5.27, Ended: 2010.6.4\nParticipants: AdamBadura (S), goulo (N), zara2stra (E)\nWinner: goulo\n\n1) goulo: Homeworld B1 G2 Y3\n\n2) zara2stra: Homeworld Y3 G1 B3\n\n3) AdamBadura: Homeworld B2 G1 R3\n\n4) goulo: Build Y1 Goulo\n\tAdamBadura: Lets see how zara2stra idea works in reality... :)\n\n5) zara2stra: Build B1 Zara2stra\n\tzara2stra: aww - we could all build same homesystems for a quick and brutal game.\n\n6) AdamBadura: Build R1 Adambadura\n\n7) goulo: Trade Y1 B1 Goulo\n\n8) zara2stra: Build B1 Zara2stra\n\n9) AdamBadura: Trade R1 G1 Adambadura\n\n10) goulo: Build B2 Goulo\n\n11) zara2stra: Trade B1 G1 Zara2stra\n\n12) AdamBadura: Build G2 Adambadura\n\n13) goulo: Trade B2 G2 Goulo\n\n14) zara2stra: Discover G1 Zara2stra R2 Hopesend\n\n15) AdamBadura: Trade G1 Y1 Adambadura\n\n16) goulo: Build Y1 Goulo\n\n17) zara2stra: Trade B1 R1 Zara2stra\n\n18) AdamBadura: Build Y1 Adambadura\n\n19) goulo: Trade Y1 R1 Goulo\n\n20) zara2stra: Build B1 Zara2stra\n\n21) AdamBadura: Discover Y1 Adambadura G3 Thevoid\n\n22) goulo: Build Y1 Goulo\n\n23) zara2stra: Build R1 Zara2stra\n\n24) AdamBadura: Build R1 Adambadura\n\n25) goulo: Build R2 Goulo\n\n26) zara2stra: Trade R1 Y1 Zara2stra\n\n27) AdamBadura: Build Y2 Thevoid\n\n28) goulo: Discover Y1 Goulo G3 Smeraldo\n\n29) zara2stra: Move Y1 Zara2stra Hopesend\n\n30) AdamBadura: Move Y2 Thevoid Hopesend\n\n31) goulo: Build Y2 Smeraldo\n\n32) zara2stra: Build Y2 Hopesend\n\n33) AdamBadura: Attack Y2E Hopesend\n\tzara2stra: Adam, I hope you're just passing by?\n\n34) goulo: Move Y1 Smeraldo Hopesend\nCatastrophe Hopesend Y\n\tAdamBadura: Yeah... It was a bad move. It wasted my two moves and a 2 ship. You will lose likely as well... :)\n\n35) zara2stra: Trade B1 Y1 Zara2stra\n\n36) AdamBadura: Trade R1 B1 Adambadura\n\n37) goulo: Build R1 Goulo\n\tAdamBadura: I'm surprised goulo did that. I expected zara2stra to build Y ship in that system and catastrophe it.\n\tgoulo: Unclear to me if zara would do that, so I figured it was worth it for me to do it. :)\n\n38) zara2stra: Build B1 Zara2stra\n\n39) AdamBadura: Move B1 Adambadura Thevoid\n\n40) goulo: Move R2 Goulo Smeraldo\n\n41) zara2stra: Build B2 Zara2stra\n\n42) AdamBadura: Build B2 Thevoid\n\n43) goulo: Move G2 Goulo Thevoid\n\n44) zara2stra: Move B2 Zara2stra Hopesend\n\n45) AdamBadura: Build B2 Thevoid\n\n46) goulo: Move B1 Goulo Thevoid\nCatastrophe Thevoid B\n\n47) zara2stra: Move Y1 Zara2stra Hopesend\n\n48) AdamBadura: Build R1 Adambadura\n\n49) goulo: Sacrifice R1 Goulo\nAttack Y1S Thevoid\n\n50) zara2stra: Build B1 Hopesend\n\n51) AdamBadura: Build Y1 Adambadura\n\n52) goulo: Build Y2 Goulo\n\n53) zara2stra: Build Y2 Hopesend\n\n54) AdamBadura: Discover Y1 Adambadura G3 Nexttothevoid\n\n55) goulo: Discover Y2 Smeraldo G2 Avokado\n\n56) zara2stra: Sacrifice B2 Hopesend\nTrade Y1 G1 Hopesend\nTrade B3 G3 Zara2stra\n\n57) AdamBadura: Trade R1 B1 Adambadura\n\n58) goulo: Build Y1 Avokado\n\n59) zara2stra: Build B2 Hopesend\n\n60) AdamBadura: Sacrifice G2 Adambadura\nBuild Y2 Adambadura\nBuild Y3 Nexttothevoid\n\n61) goulo: Build Y3 Thevoid\n\n62) zara2stra: Sacrifice Y2 Hopesend\nMove G1 Hopesend Thevoid\nMove G1 Hopesend Thevoid\nCatastrophe Thevoid G\n\n63) AdamBadura: Build R1 Adambadura\n\tAdamBadura: Great! I like it when you are smashing your heads yourself... :)\n\n64) goulo: Trade Y2 G2 Goulo\n\n65) zara2stra: Trade B2 G2 Hopesend\n\n66) AdamBadura: Move R1 Adambadura Nexttothevoid\n\n67) goulo: Build G1 Goulo\n\n68) zara2stra: Build B2 Hopesend\n\n69) AdamBadura: Trade Y1 G1 Adambadura\n\n70) goulo: Discover G1 Goulo G3 Piro\n\n71) zara2stra: Trade B2 Y2 Hopesend\n\n72) AdamBadura: Move B1 Adambadura Nexttothevoid\n\n73) goulo: Discover Y2 Avokado Y1 Banano\n\n74) zara2stra: Build B2 Hopesend\n\n75) AdamBadura: Build B2 Nexttothevoid\n\n76) goulo: Build Y1 Avokado\n\n77) zara2stra: Discover G2 Hopesend Y3 Fria\n\n78) AdamBadura: Build Y2 Adambadura\n\n79) goulo: Sacrifice Y2 Banano\nMove Y1 Avokado Zara2stra\nMove Y1 Avokado Zara2stra\n\n80) zara2stra: Build G2 Fria\n\n81) AdamBadura: Trade Y2 B2 Adambadura\n\tzara2stra: This will hurt\n\n82) goulo: Sacrifice G1 Piro\nBuild Y1 Zara2stra\nCatastrophe Zara2stra Y\n\n83) zara2stra: Sacrifice Y2 Hopesend\nMove G2 Fria Adambadura\nMove G2 Fria Adambadura\nCatastrophe Adambadura G\n\tgoulo: who knew 3 little y1 ships could do so much damage? :)\n\n84) AdamBadura: Discover B2 Adambadura Y3 Bravenewworld\n\n85) goulo: Build G1 Goulo\n\n86) zara2stra: Trade G3 Y3 Zara2stra\n\n87) AdamBadura: Sacrifice Y3 Nexttothevoid\nMove B2 Bravenewworld Goulo\nMove B2 Nexttothevoid Goulo\nMove B1 Nexttothevoid Goulo\nCatastrophe Goulo B\n\n88) goulo: Discover G1 Goulo R3 Pomo\n\n89) zara2stra: Build B1 Zara2stra\n\n90) AdamBadura: Sacrifice Y2 Adambadura\nMove R1 Nexttothevoid Zara2stra\nMove Y1 Nexttothevoid Zara2stra\n\tAdamBadura: goulo, unless you stop zara2stra somehow he will destroy me in two moves...\n\n91) goulo: Build G1 Goulo\n\tAdamBadura: This is just agony, but lets end this normally. Somehow I suck at multi-player version. I have srious problems with timing.\n\n92) zara2stra: Attack R1S Zara2stra\n\tgoulo: Then of course I must try to stop zara2stra! :)\n\tzara2stra: It's obvious since at least three turns, that I won't be able to stop goulo from eliminating me, nor will I be able to eliminate Adam first. So thanks for another nice game guys :) Maybe next time we should find another player to bring some variety to whom goulo eliminates :P \n\n93) AdamBadura: Build Y1 Zara2stra\n\tAdamBadura: :D\n\n94) goulo: Sacrifice Y3 Goulo\nMove G1 Pomo Zara2stra\nMove G1 Goulo Zara2stra\nMove G2 Goulo Zara2stra\nCatastrophe Zara2stra G\n\tgoulo: Thanks for the game! Very close!\r\na2na and I are going to Berlin for a long weekend. Feel free to start another game with me, just don't expect as frequent updates during the weekend. Maybe arturion would be a 4th for Homeworlds (feel free to ask him, Adam). Although then the players left and right of the newbie would have an advantage. :)\r\nOr start another game of blam for now. :)\n\n\nHomeworlds Online (SDG# 16464)\nVariants: "Hard time"\nStarted: 2010.5.27, Ended: 2010.6.7\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld B1 Y2 G3\n\n2) dlwillson: Homeworld R3 G1 B3\n\tSilentTitan: Ok.... Step1 DONE* um... step to may be much harder...............\n\tSilentTitan: lol step2\n\tSilentTitan: oh... yeah.. I can see where this is going .... "flurry of turns" was the selling phrase I beleive.............\n\tSilentTitan: Hey... this is fun... maybe I should mock all the others ...... maybe they take turns faster then?\r\n\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dlwillson: Build B1 Dlwillson\n\n5) SilentTitan: Discover G1 Silenttitan B3 Really\n\n6) dlwillson: B B1 Dlwillson\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) dlwillson: T B3 Y3 Dlwillson\n\n9) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Really\nBuild G2 Really\nBuild G2 Silenttitan\n\n10) dlwillson: B B2 Dlwillson\n\tdlwillson: Impressive!\n\tSilentTitan: only if it leads to a win\n\tdlwillson: Well, it's still impressive. Even if it's just 'Zilla bait.\n\tSilentTitan: did you have a turn you wanted to submit to counter that ... or just chat about it some more?\r\n\n\tdlwillson: Just chat. I'll do a turn later. At work now and plenty to do.\n\n11) SilentTitan: Build G3 Silenttitan\n\n12) dlwillson: Discover B2 Dlwillson B2 Illusion\n\n13) SilentTitan: Trade G3 Y3 Silenttitan\n\n14) dlwillson: D B1 Dlwillson B2 Mystery\n\n15) SilentTitan: Build G3 Silenttitan\n\n16) dlwillson: Build B3 Dlwillson\n\n17) SilentTitan: Sacrifice Y3 Silenttitan\nDiscover G2 Really Y2 Crazy\nDiscover G2 Really Y2 Isdaveyhelpingu\nDiscover G2 Silenttitan B3 Uhhunsure\n\n18) dlwillson: Trade B3 R3 Dlwillson\n\n19) SilentTitan: Trade G1 R1 Silenttitan\n\tSilentTitan: oh.. come on... there are great system names... yet no comment? \n\n20) dlwillson: Build B3 Dlwillson\n\n21) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: wow.. I really screwed up this game .. sorry about that\r\n\n\n22) dlwillson: Sacrifice Y3 Dlwillson\nDiscover B1 Mystery G3 Insanity\nDiscover B2 Illusion G3 Dementia\nMove R3 Dlwillson Crazy\n\tdlwillson: :-) Yes, yes, you did. And yes, of course Davey is helping me. But never underestimate my ability to snatch defeat from the jaws of victory.\n\n23) SilentTitan: Move G2 Crazy Dementia\n\n24) dlwillson: B B2 Dementia\n\n25) SilentTitan: Trade G2 B2 Uhhunsure\n\n26) dlwillson: Sacrifice B2 Dementia\nTrade B1 Y1 Dlwillson\nTrade B1 Y1 Insanity\n\n27) SilentTitan: Sacrifice G2 Dementia\nBuild G2 Isdaveyhelpingu\nBuild R1 Silenttitan\n\n28) dlwillson: B Y1 Insanity\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Isdaveyhelpingu\nBuild G3 Silenttitan\nBuild R1 Silenttitan\n\n30) dlwillson: B Y3 Dlwillson\n\n31) SilentTitan: Move G2 Isdaveyhelpingu Dlwillson\n\n32) dlwillson: A G2 Dlwillson\n\n33) SilentTitan: Move G2 Isdaveyhelpingu Dlwillson\n\n34) dlwillson: Sacrifice G2 Dlwillson\nBuild Y3 Dlwillson\nBuild Y3 Insanity\n\n35) SilentTitan: Sacrifice G2 Isdaveyhelpingu\nBuild G2 Dlwillson\nBuild G2 Dlwillson\nCatastrophe Dlwillson G\n\n36) dlwillson: Trade Y3 R3 Dlwillson\n\tSilentTitan: OOK\n\n37) SilentTitan: Move R1 Silenttitan Dlwillson\n\n38) dlwillson: S R3 Dlwillson\nA R1 Dlwillson\nPass\nPass\n\tSilentTitan: you're dead honey\n\n39) SilentTitan: Trade B2 Y2 Uhhunsure\n\n40) dlwillson: Sacrifice B2 Dementia\nTrade R1 G1 Dlwillson\nTrade Y1 R1 Insanity\n\n41) SilentTitan: Build G2 Really\n\n42) dlwillson: Build G2 Dlwillson\n\n43) SilentTitan: Sacrifice G2 Really\nBuild Y1 Uhhunsure\nBuild G2 Really\n\n44) dlwillson: Sacrifice Y3 Insanity\nMove G1 Dlwillson Silenttitan\nMove G2 Dlwillson Silenttitan\nMove Y3 Dlwillson Silenttitan\nCatastrophe Silenttitan G\n\n45) SilentTitan: Sacrifice Y2 Uhhunsure\nMove Y1 Uhhunsure Silenttitan\nMove G1 Really Silenttitan\n\n46) dlwillson: S R3 Crazy\nA G1 Silenttitan\nA R1 Silenttitan\nA R1 Silenttitan\n\tdlwillson: Looks like you only turned me into a llama, or something...\n\n\tSilentTitan: yup... made the one mistake that let you win\n\tSilentTitan: of course... 5 battleships to 1 .. I should have never even had a chance at you. \n\tdlwillson: Technically, you had a pretty good chance when you had me locked out of green. Want to play again?\n\nHomeworlds Online (SDG# 16465)\nStarted: 2010.5.27, Ended: 2010.6.9\nParticipants: TwoShort (S), bhorner (N)\nWinner: TwoShort\n\n1) bhorner: Homeworld G2 B1 Y3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\tTwoShort: Howdy\n\n3) bhorner: Build Y1 Bhorner\n\n4) TwoShort: Build B1 Twoshort\n\tbhorner: Hello.\n\n5) bhorner: Build Y1 Bhorner\n\tbhorner: I can't wait to see what you're doing. Your moves seem so unwise that I can't help but learn something.\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) bhorner: Trade Y1 G1 Bhorner\n\n8) TwoShort: Build B2 Twoshort\n\n9) bhorner: Build Y1 Bhorner\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) bhorner: Discover G1 Bhorner B3 Stumpy\n\n12) TwoShort: Build B2 Grogar\n\n13) bhorner: Move Y1 Bhorner Stumpy\n\n14) TwoShort: Build B2 Twoshort\n\tbhorner: It never seems like the right moment to make a blue... I'm sure this will be my downfall somehow.\n\tbhorner: *seemed...\n\n15) bhorner: Discover Y1 Stumpy G2 Toolate\n\tTwoShort: I think turn 1 was the only right moment. Not that it would have made for a great opening, but that was the last time you could flip the three, grow a blue, and flip back or move out before I could get a y2 and throw in another for the catastrophe. I also think this will be your downfall, but I know how :)\n\n16) TwoShort: Build B3 Grogar\n\n17) bhorner: Build Y1 Toolate\n\n18) TwoShort: Sacrifice B2 Grogar\nTrade B2 R2 Twoshort\nTrade B3 G3 Grogar\n\tbhorner: That would have been funny if I'd caught you there. :)\n\n19) bhorner: Trade Y1 R1 Bhorner\n\tTwoShort: Yeah. I was thinking the right move, just somehow typed the wrong one :)\n\n20) TwoShort: Sacrifice G3 Grogar\nBuild B2 Grogar\nBuild B2 Twoshort\nBuild B3 Grogar\n\n21) bhorner: Build G1 Stumpy\n\tbhorner: Can you give me a gauge on how far ahead of me you think you are? Is it like 60-40, or worse? I can't see anything obviously threatening me... are you just building up material for a big strike?\n\tTwoShort: Big pieces are much more valuable than little ones. My super-crude rule of thumb is 2s are worth 3 1s, 3s are worth 3 2s. So by that, I'm up about 2-to-1. That's subject to a lot of exceptions for position details of course. But in this case, I've got the blue engine going that will keep getting me more big pieces. I'm not threatening directly now, but that's how most games go; barring a big blunder by the opponent, the winner usually gets there by getting control of more/better material, building up until the actual attack is unstoppable. I may threaten you shortly, but mostly to force you to deal with it rather than building. Until I can get all the way to victory, if I can expand my 3 pointer advantage, that's the top priority.\n\n22) TwoShort: Trade B2 Y2 Grogar\n\n23) bhorner: Sacrifice Y1 Toolate\nMove G1 Stumpy Toolate\n\n24) TwoShort: Discover B3 Grogar G3 Gonzo\n\n25) bhorner: Trade Y3 G3 Bhorner\n\n26) TwoShort: Build B2 Grogar\n\n27) bhorner: Build Y1 Toolate\n\n28) TwoShort: Build B3 Gonzo\n\n29) bhorner: Sacrifice Y1 Toolate\nMove G1 Stumpy Bhorner\n\n30) TwoShort: Sacrifice Y2 Grogar\nMove B3 Gonzo Bhorner\nMove B3 Gonzo Bhorner\n\tTwoShort: Red Alert.\n\tTwoShort: So I typed that because "Red Alert" is the traditional warning to newer players meaning I have a crushing move next turn if you don't do something about it. But now that I'm looking at it more, I don't think you can do anything about it.\r\n I feel a little guilty in that the fast blue monopoly opening I used is a bit of a special case response to someone taking a small blue as part of a 1-2 homeworld as first player. It's hard to deal with, and doesn't necessarily teach you much about the more general game, so sometimes I don't do it vs. new players; but this time I was in a bit of a rush and didn't check how much you'd played... Anyhow, I hope it wasn't too demoralizing :) \r\n I'll be happy to play a more instructive game anytime; just don't take a b1 star :)\n\tbhorner: I bet this will hold you off for a move. :)\n\n31) bhorner: Trade G3 B3 Bhorner\nCatastrophe Bhorner B\n\n32) TwoShort: Move B2 Twoshort Bhorner\n\n33) bhorner: Build R1 Bhorner\n\n34) TwoShort: Sacrifice R2 Twoshort\nAttack R1 Bhorner\nAttack R1 Bhorner\n\n35) bhorner: Move G1 Toolate Twoshort\n\n36) TwoShort: Attack G1 Bhorner\n\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 16438)\nStarted: 2010.5.27, Ended: 2010.6.14\nParticipants: bhorner (S), rootbier (N)\nWinner: bhorner\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) bhorner: Homeworld B3 G2 Y3\n\trootbier: Welcome to the site Have you played homeworlds off-line?\n\n3) rootbier: Build G1 Rootbier\n\tbhorner: Hello, yes a few times (maybe 4?) with 3 and 4 players, two players seems like it should be a better game.\n\trootbier: Ahh good good - then good luck and good game and feel free to ask/discuss along the way.\n\n4) bhorner: Build Y1 Bhorner\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) bhorner: Build Y1 Bhorner\n\n7) rootbier: Build G1 Rootbier\n\n8) bhorner: Discover Y1 Bhorner G1 S1\n\tbhorner: I've started a couple games, and it seems like everyone against me uses BY for their world, and G for their ship... Is there a reason? I made my ship Yellow for later triple sacrifice catastrophe moves, couldn't think of any other reason...\n\n9) rootbier: Discover Y1 Rootbier B3 Cornfed\n\trootbier: The g3 sacrifice can be really powerful (green sacrifices in general can be). None of the other sacrifices will give you back a size 3 ship (save certain rare attack situations I suppose) -- the g3-sac can not only get you right back to a g3 but can give you two more ships. You could generate half a catastrophe without losing a 3. You could generate multiple additional 3s.\r\n\r\nAs far as not having red at home -- I think people mix it up and sometimes do take it... but your safer just having a single little red ship at home (not supplying attack tech to visitors). And of course if you have the g3 as your flagship you're not going to want or need a green star... hence BY homes.\r\n\r\nI'm often angling for a g3sac -- so you'll probably see it soon enough. It's also sometimes easy to just repeat and repeat.\n\n10) bhorner: Trade Y1 B1 Bhorner\n\n11) rootbier: Build G1 Rootbier\n\n12) bhorner: Discover Y1 S1 G3 Uncreative\n\n13) rootbier: Move G1 Rootbier Cornfed\n\n14) bhorner: Build Y1 Uncreative\n\n\nHomeworlds Online (SDG# 16401)\nStarted: 2010.5.27, Ended: 2010.6.1\nParticipants: bhorner (S), ts52 (N)\nWinner: bhorner\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) bhorner: Homeworld B3 G2 Y3\n\tts52: Have a good game.\n\tbhorner: You too!\n\n3) ts52: Build G1 Ts52\n\n4) bhorner: Build Y1 Bhorner\n\n5) ts52: Build G1 Ts52\n\n6) bhorner: Build Y1 Bhorner\n\n7) ts52: Trade G1 Y1 Ts52\n\n8) bhorner: Discover Y1 Bhorner G1 S1\n\n9) ts52: Discover Y1 Ts52 G3 Oscar\n\n10) bhorner: Build Y2 S1\n\n11) ts52: Discover G1 Ts52 Y3 Bigbird\n\n12) bhorner: Trade Y1 B1 Bhorner\n\n13) ts52: Build G1 Ts52\n\n14) bhorner: Move Y2 S1 Bigbird\n\n15) ts52: Build G2 Bigbird\n\n16) bhorner: Sacrifice B1 Bhorner\nTrade Y2 R2 Bigbird\n\n17) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Bigbird\n\n18) bhorner: Attack G2 Bigbird\n\n19) ts52: Discover G2 Ts52 Y3 Zoe\n\tbhorner: Thanks, I've learned something, I wonder if anyone could still pull this out?\n\n20) bhorner: Attack G1 Bigbird\n\tts52: It's probably possible. I've recovered from some pretty bad spots, and lost some games that looked like they should have been mine.\n\n21) ts52: Discover G3 Bigbird Y2 Banana\n\n22) bhorner: Move Y1 S1 Bhorner\n\n23) ts52: Trade G1 B1 Ts52\n\n24) bhorner: Sacrifice Y3 Bhorner\nMove G2 Bigbird Ts52\nMove G1 Bigbird Ts52\nMove R2 Bigbird Ts52\n\n25) ts52: Trade G3 Y3 Ts52\n\tbhorner: going for broke!\n\n26) bhorner: Attack B1 Ts52\n\tts52: Good move. \n\n27) ts52: Discover G3 Banana Y1 Lemon\n\n28) bhorner: Build B1 Ts52\n\n29) ts52: M G3 Lemon Bhorner\n\n30) bhorner: Trade B1 Y1 Ts52\n\n31) ts52: T Y3 R3 Ts52\n\tbhorner: Oh wow... when you said good move, I thought you were just humoring me. I think I've got you...? Up until just now, I thought you were going to take me out, but I'd get half your homeworld first.\n\tts52: Yeah, I failed to remember one of the central tenants of home worlds. When your enemy gets a gun, you get a gun.\n\n32) bhorner: Sacrifice G2 Ts52\nBuild R1 Ts52\nBuild R1 Ts52\nCatastrophe Ts52 R\n\tts52: Thanks for the game.\n\tbhorner: Oops, I posted the same thing: "Thanks for the game!", but I put it in the notes section, instead of here. So... Thanks for the game!\n\n\nHomeworlds Online (SDG# 16419)\nStarted: 2010.5.27, Ended: 2010.6.28\nParticipants: mathochist (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld G2 B1 Y3\n\n2) mathochist: Homeworld B1 Y3 G3\n\n3) bhorner: Build Y1 Bhorner\n\n4) mathochist: Build G1 Mathochist\n\n5) bhorner: Build Y1 Bhorner\n\n6) mathochist: Trade G1 B1 Mathochist\n\n7) bhorner: Discover Y1 Bhorner G3 S1\n\n8) mathochist: Build B2 Mathochist\n\n9) bhorner: Build Y1 S1\n\n10) mathochist: Discover B1 Mathochist G2 Oscar\n\n11) bhorner: Trade Y3 G3 Bhorner\n\n12) mathochist: Sacrifice G3 Mathochist\nBuild B2 Oscar\nBuild B2 Oscar\nBuild B3 Mathochist\n\n13) bhorner: Build Y2 Bhorner\n\n14) mathochist: Trade B3 G3 Mathochist\n\n15) bhorner: Discover Y1 S1 G2 Namey\n\n16) mathochist: Build B3 Mathochist\n\n17) bhorner: Move Y1 Bhorner S1\n\n18) mathochist: T B2 Y2 Oscar\n\n19) bhorner: Sacrifice G3 Bhorner\nBuild Y2 S1\nBuild Y3 Bhorner\nBuild Y3 Namey\n\n20) mathochist: Sacrifice B2 Oscar\nTrade B3 G3 Mathochist\nTrade B2 R2 Mathochist\n\tmathochist: Eep, there go all the yellows\n\n21) bhorner: Trade Y2 R2 Bhorner\n\n22) mathochist: Discover G3 Mathochist Y2 Ernie\n\tmathochist: This is an interesting game.\n\tbhorner: I think I'm behind, but I haven't played enough to know for certain.\r\n\n\n23) bhorner: Discover Y1 S1 B2 Other\n\n24) mathochist: Move Y2 Oscar S1\n\tmathochist: Hard to say, but by most counts, I think you're actually ahead.\n\n25) bhorner: Move Y2 S1 Other\n\tbhorner: I hope I win then. :)\n\n\nHomeworlds Online (SDG# 16476)\nVariants: "Hard time"\nStarted: 2010.5.28, Ended: 2010.6.13\nParticipants: dethdukk (S), mathochist (N)\nWinner: mathochist\n\n1) mathochist: Homeworld B1 R2 G3\n\n2) dethdukk: Homeworld B1 G3 B3 *\n\n3) mathochist: Build G1 Mathochist\n\tmathochist: Grar, I think I made a mistake. Oh well.\n\n4) dethdukk: Build B1 Dethdukk\n\tdethdukk: it depends... its pretty easy to beat if you do well, and i havent used it much so I might mess up.\n\n5) mathochist: Build G1 Mathochist\n\n6) dethdukk: Trade B1 Y1 Dethdukk\n\tmathochist: Hmm. That's one possible way around it, but looking at it again, I can see the risk. No good.\n\n7) mathochist: Trade G1 B1 Mathochist\n\n\tmathochist: Eep, sorry you ran out of time! Challenge me again without hard time, if you like.\n\nHomeworlds Online (SDG# 16517)\nStarted: 2010.5.30, Ended: 2010.5.31\nParticipants: bhorner (S), TomClem (N)\nWinner: bhorner\n\n1) TomClem: Homeworld R1 B2 G3\n\n2) bhorner: Homeworld B3 G2 Y3\n\tTomClem: Good Luck!\n\n3) TomClem: Build G1 Tomclem\n\tbhorner: Can't move?\n\n4) bhorner: Build Y1 Bhorner\n\tTomClem: I'll have yellow soon\n\n5) TomClem: B G1 Tomclem\n\n6) bhorner: Build Y1 Bhorner\n\n7) TomClem: Trade G1 Y1 Tomclem\n\n8) bhorner: Discover Y1 Bhorner G1 S1\n\tTomClem: how are your other games going? feeling good about them?\n\n9) TomClem: Build Y2 Tomclem\n\tbhorner: Can't tell about the other games, it concerns me that they all seem to be using the same homeworld setup against me... and I don't know why. I have a couple guesses though.\n\n10) bhorner: Build Y2 S1\n\n11) TomClem: Discover Y2 Tomclem G3 Badben\n\tTomClem: http://wiki.superdupergames.org/games/homeworlds\r\nI assume you have read the openings section?\n\tbhorner: Section of what?\n\n12) bhorner: Trade Y1 B1 Bhorner\n\tTomClem: of that wiki page. they discuss what is considered the best starting position\n\tbhorner: I have now, sounds like it's all up in the air... except for what we already thought about YBG at the homeworld...\n\n13) TomClem: Move G1 Tomclem Badben\n\n14) bhorner: Sacrifice B1 Bhorner\nTrade Y2 R2 S1\n\n15) TomClem: Build G1 Tomclem\n\n16) bhorner: Move R2 S1 Badben\n\n17) TomClem: Move Y2 Badben S1\n\n18) bhorner: Attack G1 Badben\n\n19) TomClem: Trade G1 B1 Tomclem\n\n20) bhorner: Build Y1 Bhorner\n\n21) TomClem: Build Y2 Tomclem\n\n22) bhorner: Build R1 Badben\n\n23) TomClem: Build G1 Tomclem\n\n24) bhorner: Move Y1 S1 Badben\n\n25) TomClem: Sacrifice B1 Tomclem\nTrade Y2 R2 S1\n\n26) bhorner: Discover Y1 Badben G2 Stall\n\n27) TomClem: Move G1 Tomclem Badben\n\n28) bhorner: Attack G1 Badben\n\n29) TomClem: Build G2 Tomclem\n\n30) bhorner: Sacrifice G1 Badben\nBuild Y2 Stall\n\n31) TomClem: Move G2 Tomclem Badben\n\n32) bhorner: Attack G2 Badben\n\n33) TomClem: Sacrifice Y1 Tomclem\nMove R2 S1 Stall\n\n34) bhorner: Sacrifice R1 Badben\nAttack R2 Stall\n\n35) TomClem: Move G3 Tomclem Badben\nCatastrophe Badben Green\n\n36) bhorner: Discover Y1 Stall G3 Stage\n\tTomClem: gg\n\tbhorner: I don't see a fast way to win, though it seems I have a big advantage...\n\n37) TomClem: Trade Y2 G2 Tomclem\n\n38) bhorner: Trade Y3 G3 Bhorner\n\n39) TomClem: Build G1 Tomclem\n\n40) bhorner: Build Y1 Stage\n\n41) TomClem: Trade G2 Y2 Tomclem\n\n42) bhorner: Build R1 Stall\n\n43) TomClem: Build G1 Tomclem\n\n44) bhorner: Discover G3 Bhorner B1 Twoaway\n\n45) TomClem: Build Y2 Tomclem\n\n46) bhorner: Sacrifice G3 Twoaway\nBuild Y3 Stall\nBuild Y3 Bhorner\nBuild Y3 Bhorner\n\n47) TomClem: Build G1 Tomclem\n\n48) bhorner: Sacrifice Y2 Stall\nMove Y1 Stage Tomclem\nMove Y1 Stage Tomclem\nCatastrophe Tomclem Y\n\n49) TomClem: Trade G1 Y1 Tomclem\n\n50) bhorner: Sacrifice Y3 Bhorner\nDiscover R2 Stall R3 Temp\nMove R2 Temp Tomclem\nPass\n\n51) TomClem: Build Y1 Tomclem\n\n52) bhorner: Attack G1 Tomclem\n\n53) TomClem: Build G1 Tomclem\n\n54) bhorner: Attack Y1 Tomclem\n\n55) TomClem: Build Y2 Tomclem\n\n56) bhorner: Build Y2 Tomclem\nCatastrophe Tomclem Y\n\n57) TomClem: Sacrifice G1 Tomclem\nBuild G1 Tomclem\n\n58) bhorner: Build G2 Tomclem\nCatastrophe Tomclem G\n\n\nHomeworlds Online (SDG# 16463)\nVariants: "Hard time"\nStarted: 2010.6.3, Ended: 2010.6.19\nParticipants: toriano (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) toriano: Homeworld B2 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) toriano: Build G1 Toriano\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) toriano: Discover G1 Toriano Y1 Lucy\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) toriano: Build G1 Toriano\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) toriano: Trade G3 Y3 Toriano\n\n11) SilentTitan: Trade Y1 B1 Silenttitan\n\n12) toriano: Build G1 Toriano\n\n13) SilentTitan: Discover Y2 Silenttitan R3 Burn\n\n14) toriano: Build G2 Lucy\n\n15) SilentTitan: Build G2 Silenttitan\n\n16) toriano: Trade G1 B1 Toriano\n\n17) SilentTitan: Move B1 Silenttitan Burn\n\n18) toriano: Move B1 Toriano Lucy\n\n19) SilentTitan: Move G2 Silenttitan Burn\n\n\tSilentTitan: I guess that game was too short for you ... we can play again if you'd like and use a longer time frame.\n\nHomeworlds Online (SDG# 16565)\nVariants: "Hard time"\nStarted: 2010.6.4, Ended: 2010.6.16\nParticipants: SilentTitan (S), ZackStack (N)\nWinner: ZackStack\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Hi Titan. Have a good game!\n\n2) SilentTitan: Homeworld B2 G3 R3\n\n3) ZackStack: Build G1 Zackstack\n\tSilentTitan: Hey, thanks you too\n\n4) SilentTitan: Build R1 Silenttitan\n\n5) ZackStack: Trade G1 R1 Zackstack\n\n6) SilentTitan: Build R2 Silenttitan\n\n7) ZackStack: Build R2 Zackstack\n\n8) SilentTitan: Trade R2 Y2 Silenttitan\n\n9) ZackStack: Trade R2 Y2 Zackstack\n\n10) SilentTitan: Discover R1 Silenttitan Y1 Sol\n\n11) ZackStack: Discover R1 Zackstack B3 Azure\n\n12) SilentTitan: Build R2 Silenttitan\n\n13) ZackStack: Build G1 Zackstack\n\n14) SilentTitan: Trade R2 G2 Silenttitan\n\n15) ZackStack: Move G1 Zackstack Azure\n\n16) SilentTitan: Sacrifice G2 Silenttitan\nBuild R2 Sol\nBuild R2 Silenttitan\n\n17) ZackStack: Build R2 Azure\n\tZackStack: On second thought...\n\n18) SilentTitan: Discover R2 Sol Y3 Sole\n\n19) ZackStack: Trade R2 Y2 Azure\n\n20) SilentTitan: Trade R2 B2 Silenttitan\n\n21) ZackStack: Build R2 Azure\n\n22) SilentTitan: Trade Y2 G2 Silenttitan\n\n23) ZackStack: Trade R2 G2 Azure\n\n24) SilentTitan: Sacrifice G2 Silenttitan\nBuild R2 Sol\nBuild B1 Silenttitan\n\n25) ZackStack: Trade G1 B1 Azure\n\n26) SilentTitan: Trade B2 Y2 Silenttitan\n\n27) ZackStack: Discover B1 Azure G1 Pea\n\n28) SilentTitan: Move B1 Silenttitan Sol\n\n29) ZackStack: Build G1 Zackstack\n\n30) SilentTitan: Trade R2 G2 Sol\n\n31) ZackStack: Discover G1 Zackstack R3 Rojo\n\n32) SilentTitan: Sacrifice G2 Sol\nBuild B1 Sol\nBuild R2 Sol\n\n33) ZackStack: Build B2 Pea\n\n34) SilentTitan: Discover B1 Sol G3 Soul\n\n35) ZackStack: Trade B1 Y1 Pea\n\n36) SilentTitan: Trade Y2 G2 Silenttitan\n\n37) ZackStack: Sacrifice G2 Azure\nBuild B1 Pea\nBuild B3 Pea\n\n38) SilentTitan: Sacrifice G2 Silenttitan\nBuild B3 Soul\nBuild R2 Sole\n\tZackStack: Bah. That didn't look as good as I thought it would :-)\n\n39) ZackStack: Sacrifice Y2 Zackstack\nMove B1 Pea Silenttitan\nMove B2 Pea Silenttitan\n\tSilentTitan: well.. I don't know ... this has to be the most convoluted game of this I've played\n\tZackStack: You haven't played very much? ;-)\n\tSilentTitan: true this is like only my 10th game I think\n\n40) SilentTitan: Sacrifice B3 Soul\nTrade R2 G2 Sole\nTrade B1 G1 Soul\nTrade R2 Y2 Sol\n\tdlwillson: Hey! You already used the "sole" theme!\n\tdlwillson: I always wondered if the peanut gallery could chime in. I guess they can.\n\tdlwillson: Hey Zack. Hey Tripp. I'm going back on radio silence now, unless you talk to me, then I'll pick it right back up. I promise not to shout advice, except in generic and unusable ways, like, "RUN SILENT!" or things like that.\n\n41) ZackStack: Build B1 Silenttitan\nCatastrophe Silenttitan Blue\n\tZackStack: Hey DL! I hope you're enjoying the view from the gallery ;-) If you could take care of humming the imperial march for me I'll be able to focus on what I'm doing here better :-D\n\tSilentTitan: wow... you'd think that guy would spend more time trying to figure out how to win.\n\n42) SilentTitan: Build G2 Sole\n\tZackStack: HA! Watching us is unlikely to help I think :-D\n\n43) ZackStack: Trade B3 R3 Pea\n\n44) SilentTitan: Sacrifice Y2 Sol\nMove G1 Soul Zackstack\nMove G2 Sole Zackstack\n\tdlwillson: Actually, I'm learning a lot. Good game both. Here's your Imperial March, Zack. :-)\r\nhttp://www.youtube.com/watch?v=-bzWSJG93P8\n\n45) ZackStack: Trade G3 Y3 Zackstack\n\tZackStack: BOOM! Now for the hard part...\n\n46) SilentTitan: Trade G1 Y1 Zackstack\n\n47) ZackStack: Sacrifice R3 Pea\nAttack Y1 Zackstack\nAttack G2 Zackstack\nPass\n\tZackStack: On second thought...\n\n48) SilentTitan: Build R2 Silenttitan\n\n49) ZackStack: Move R1 Azure Pea\n\n50) SilentTitan: Sacrifice B1 Sol\nTrade R2 B2 Silenttitan\n\n51) ZackStack: Sacrifice G2 Zackstack\nBuild Y2 Pea\nBuild Y2 Azure\n\tZackStack: I hate to loose this large... but I don't see a better move.\n\n52) SilentTitan: Build R2 Sole\n\n53) ZackStack: Build R2 Pea\n\n54) SilentTitan: Sacrifice G2 Sole\nBuild R3 Sol\nBuild B1 Silenttitan\n\n55) ZackStack: Build Y3 Pea\n\n56) SilentTitan: Move R3 Sol Azure\n\n57) ZackStack: Sacrifice Y2 Azure\nDiscover Y2 Azure B2 Berry\nMove R1 Pea Berry\n\n58) SilentTitan: Trade B2 Y2 Silenttitan\n\n59) ZackStack: Sacrifice G1 Rojo\nBuild R3 Berry\n\n60) SilentTitan: Trade R3 G3 Silenttitan\n\n61) ZackStack: Trade R1 G1 Berry\n\n62) SilentTitan: Trade R3 G3 Azure\n\n63) ZackStack: Build G1 Berry\n\n64) SilentTitan: Trade G3 B3 Silenttitan\n\n65) ZackStack: Sacrifice Y3 Pea\nMove G1 Berry Silenttitan\nMove G1 Berry Silenttitan\nMove R3 Berry Silenttitan\n\n\tSilentTitan: good game\n\tZackStack: Yes. Thanks for playing!\n\nHomeworlds Online (SDG# 16496)\nStarted: 2010.6.8, Ended: 2010.6.14\nParticipants: rootbier (S), cleverpun (N)\nWinner: cleverpun\n\n1) cleverpun: Homeworld B2 Y1 G3\n\n\nHomeworlds Online (SDG# 16589)\nStarted: 2010.6.8, Ended: 2010.6.25\nParticipants: captncavern (S), supergnouf (N)\nWinner: supergnouf\n\n1) supergnouf: Homeworld G3 B1 Y3\n\n2) captncavern: Homeworld B3 G2 Y3\n\tcaptncavern: Allez, encore une partie que je vais perdre ;)\n\tsupergnouf: V'la l'optimisme ! En attendant si tu jouais ? :-)\n\n3) supergnouf: Buil Y1 Supergnouf\n\tcaptncavern: Désolé, j'ai dû oublier de valider mon coup :)\n\n4) captncavern: Build Y1 Captncavern\n\n5) supergnouf: Trade Y1 B1 Supergnouf\n\n6) captncavern: Build Y1 Captncavern\n\n7) supergnouf: Build Y1 Supergnouf\n\n8) captncavern: Discover Y1 Captncavern G1 Abc\n\n9) supergnouf: Discover Y1 Supergnouf G2 Caraba\n\tsupergnouf: Bravo, vive l'originalité pour le nom de ce système\r\npourquoi pas azerty tant qu'on y est... :-)\n\n10) captncavern: Trade Y1 R1 Captncavern\n\n11) supergnouf: Build B1 Supergnouf\n\n12) captncavern: Build R1 Captncavern\n\n13) supergnouf: Move B1 Supergnouf Caraba\n\tcaptncavern: Parce que c'est le premier nom qui m'est venu :)\n\tcaptncavern: Ah, et pour azerty, merci, je note l'idée ;)\n\n14) captncavern: Build R1 Captncavern\n\n15) supergnouf: Build B2 Caraba\n\n16) captncavern: Move R1 Captncavern Abc\n\n17) supergnouf: Trade B2 R2 Caraba\n\n18) captncavern: Discover R1 Abc Y2 Azerty\n\n19) supergnouf: Build R2 Caraba\n\n20) captncavern: Trade R1 G1 Captncavern\n\n21) supergnouf: Build B2 Caraba\n\n22) captncavern: Build G1 Captncavern\n\tcaptncavern: T'as eu le temps de jeter un oeil à mes petits dessins ou t'es déjà en vacances ?\n\n23) supergnouf: Trade B2 G2 Caraba\n\tsupergnouf: Ni trop le temps ni trop les moyens de recarder tes productions, vite fait, je dirais qu'on s'attend a voir la deuxième "aile" des vaisseaux au fond, rien a dire sur le reste.\n\n24) captncavern: Trade G1 R1 Captncavern\n\n25) supergnouf: Build B2 Caraba\n\n26) captncavern: Discover R1 Captncavern Y1 Xyz\n\n27) supergnouf: Move R2 Caraba Supergnouf\n\n28) captncavern: Build Y2 Abc\n\n29) supergnouf: Sacrifice G2 Caraba\nBuild Y2 Supergnouf\nBuild Y3 Caraba\n\n30) captncavern: Build G1 Captncavern\n\n31) supergnouf: Trade B2 G2 Caraba\n\n32) captncavern: Move G1 Captncavern Abc\n\n33) supergnouf: Move G2 Caraba Xyz\n\n34) captncavern: Move G1 Captncavern Xyz\n\n35) supergnouf: Sacrifice R2 Caraba\nAttack R1 Xyz\nAttack G1 Xyz\n\n36) captncavern: Build R2 Captncavern\n\n37) supergnouf: Sacrifice Y3 Caraba\nMove G1 Xyz Captncavern\nMove G2 Xyz Captncavern\nMove R1 Xyz Captncavern\n\tcaptncavern: C'est pas franchement la fête !\n\n38) captncavern: Attack R1 Captncavern\n\tsupergnouf: Ça va pas trop mal en ce qui me concerne :-)\r\n\n\tsupergnouf: Aller, je tente un truc, on verra bien\r\n\n\n39) supergnouf: Build G3 Captncavern\nCatastrophe Captncavern G\n\n40) captncavern: Move R2 Captncavern Caraba\n\tcaptncavern: Ouais, ben c'est pas ça qui va arranger mes bidons !\n\n41) supergnouf: Move Y3 Supergnouf Caraba\n\n42) captncavern: Sacrifice Y1 Abc\nDiscover R2 Caraba Y3 Bleu\n\n43) supergnouf: Build B2 Caraba\n\n44) captncavern: Trade R1 Y1 Captncavern\n\n45) supergnouf: Discover B1 Supergnouf B2 Vandemaar\n\n46) captncavern: Sacrifice Y3 Captncavern\nMove Y1 Captncavern Caraba\nMove Y2 Abc Caraba\nMove G1 Abc Captncavern\nCatastrophe Caraba Y\n\n47) supergnouf: Sacrifice Y2 Supergnouf\nMove B2 Caraba Captncavern\nPass\n\n48) captncavern: Move R2 Bleu Caraba\n\n49) supergnouf: Build R1 Supergnouf\n\tcaptncavern: Ah ! Ben on y voit plus clair :)\n\n50) captncavern: Build R2 Captncavern\n\n51) supergnouf: Sacrifice R2 Supergnouf\nAttack R2 Captncavern\nAttack R1 Captncavern\n\tcaptncavern: Tiens, j'ai fini mon jeu (aux playtests près, donc il peut encore beaucoup changer), tu peux voir ça là : http://www.boardgamegeek.com/boardgame/73209/spacebooters-sneaking-and-smuggling (il y a une erreur dans les composants actuels, la correction est en chemin) et les règles sont là : http://www.griffon-traduction.com/temp/Spacebooters-Sneaking_and_smuggling_V0.2.doc\n\n52) captncavern: Build G1 Captncavern\n\tsupergnouf: J'irais voir ça des que je suis chez moi, avec un peu de chance lundi prochain, présentement, je suis enfermé dehors :-(\r\nn'oublie pas de ramener une version de ton jeu\n\tcaptncavern: T'inquiètes, c'était bien prévu ;)\r\nComment tu t'es débrouillé pour te retrouver enfermé dehors ? Et où tu dors ?\n\n53) supergnouf: Sacrifice R2 Captncavern\nAttack G1 Captncavern\nAttack G1 Captncavern\n\n\tcaptncavern: Bon, ben, comme d'hab.\r\nOn remet ça quand tu veux. Dis-moi si tu veux que je lance une partie.\n\nHomeworlds Online (SDG# 16504)\nVariants: "Unrated"\nStarted: 2010.6.9, Ended: 2010.6.12\nParticipants: makertron (S), Pename (N)\nWinner: Pename\n\n1) Pename: Homeworld G2 B1 Y3\n\n\nHomeworlds Online (SDG# 16493)\nVariants: "Hard time"\nStarted: 2010.6.9, Ended: 2010.6.22\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld G1 B2 Y3\n\n2) dlwillson: H B3 R2 G3\n\tSilentTitan: I don't think I've tried this configuration yet\n\n3) SilentTitan: Build Y1 Silenttitan\n\n4) dlwillson: B G1 Dlwillson\n\n5) SilentTitan: Trade Y1 G1 Silenttitan\n\n6) dlwillson: Trade G3 Y3 Dlwillson\n\n7) SilentTitan: Build G2 Silenttitan\n\n8) dlwillson: B G2 Dlwillson\n\tSilentTitan: neh.... can't get me\n\n9) SilentTitan: Trade G2 R2 Silenttitan\n\n10) dlwillson: D G1 Dlwillson B1 First\n\n11) SilentTitan: Build G2 Silenttitan\n\n12) dlwillson: B G2 Dlwillson\n\n13) SilentTitan: Discover G2 Silenttitan Y3 Tic\n\n14) dlwillson: B G3 First\n\n15) SilentTitan: Discover G2 Tic B1 Toe\n\n16) dlwillson: S G2 Dlwillson\nB G2 First\nB G3 Dlwillson\n\n17) SilentTitan: Build G3 Toe\n\n18) dlwillson: Sacrifice Y3 Dlwillson\nMove G2 Dlwillson Toe\nMove G1 First Dlwillson\nMove G1 Dlwillson Toe\nCatastrophe Toe G\n\n19) SilentTitan: Trade R2 Y2 Silenttitan\n\n20) dlwillson: Trade G2 Y2 First\n\tdlwillson: That was expensive and I'm not sure I like it. Oh well. It'll have to do.\n\n21) SilentTitan: Trade Y3 R3 Silenttitan\n\n22) dlwillson: B G1 Dlwillson\n\n23) SilentTitan: Discover G1 Silenttitan Y3 Banana\n\n24) dlwillson: B G2 First\n\n25) SilentTitan: Build R1 Silenttitan\n\n26) dlwillson: Trade G1 Y1 Dlwillson\n\n27) SilentTitan: Discover G1 Banana B1 Grape\n\n28) dlwillson: T G3 R3 First\n\tSilentTitan: uh oh... I've forgotten what I was going to do next\n\n29) SilentTitan: Build G1 Grape\n\n30) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 First\nBuild R1 First\nBuild G2 First\n\n31) SilentTitan: Trade G1 R1 Grape\n\n32) dlwillson: Move G2 First Dlwillson\n\n33) SilentTitan: Build R2 Grape\n\n34) dlwillson: Build Y1 First\n\n35) SilentTitan: Trade R2 Y2 Grape\n\n36) dlwillson: T Y1 G1 First\n\n37) SilentTitan: Trade R3 G3 Silenttitan\n\n38) dlwillson: D R3 First B3 Second\n\n39) SilentTitan: Build R2 Grape\n\n40) dlwillson: Move Y1 First Second\n\n41) SilentTitan: Discover R1 Grape Y3 Ugly\n\n42) dlwillson: Sacrifice G2 First\nBuild Y1 Second\nBuild R2 Second\n\n43) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Grape\nBuild R3 Silenttitan\n\tdlwillson: Evan says to tell you that he's rootin' for you to win.\n\n44) dlwillson: S Y2 First\nM R3 Second First\nM R3 First Dlwillson\n\tSilentTitan: well... tell Evan Thanks\n\n45) SilentTitan: Sacrifice Y3 Grape\nMove R1 Ugly Grape\nMove R1 Grape Dlwillson\nMove R2 Grape Dlwillson\nCatastrophe Dlwillson Red\n\tdlwillson: Huh. I think Evan's team might win... I'll let you know if I think of a way to grow my foot back.\n\n46) dlwillson: Sacrifice Y1 Second\nMove R1 First Dlwillson\n\n47) SilentTitan: Move Y3 Silenttitan Dlwillson\n\n\nHomeworlds Online (SDG# 16610)\nVariants: "Hard time"\nStarted: 2010.6.10, Ended: 2010.8.7\nParticipants: mneme (S), dlwillson (N)\nWinner: mneme\n\n1) dlwillson: H B2 R1 G3\n\n2) mneme: Homeworld G3 B2 R3\n\n3) dlwillson: B G1 Dlwillson\n\n4) mneme: Build R1 Mneme\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) mneme: Build R1 Mneme\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) mneme: Trade R3 Y3 Mneme\n\n9) dlwillson: B G1 Dlwillson\n\n10) mneme: Build R2 Mneme\n\n11) dlwillson: Build G1 Dlwillson\n\n12) mneme: Trade R2 G2 Mneme\n\n13) dlwillson: Trade G1 B1 Dlwillson\n\n14) mneme: Build R2 Mneme\n\n15) dlwillson: B B1 Dlwillson\n\n16) mneme: Trade R2 B2 Mneme\n\n17) dlwillson: Discover B1 Dlwillson G3 Suse\n\n18) mneme: Discover B2 Mneme G1 Forest\n\n19) dlwillson: M Y1 Dlwillson Suse\n\n20) mneme: Build R2 Mneme\n\n21) dlwillson: D G1 Dlwillson B3 Fedora\n\n22) mneme: Trade R2 Y2 Mneme\n\n23) dlwillson: Build G1 Dlwillson\n\n24) mneme: Build G2 Mneme\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Fedora\nBuild Y1 Suse\nBuild G3 Dlwillson\n\n26) mneme: Move Y2 Mneme Forest\n\n27) dlwillson: T G2 R2 Fedora\n\n28) mneme: Move R1 Mneme Forest\n\n29) dlwillson: Sacrifice G3 Dlwillson\nB G2 Fedora\nB Y2 Dlwillson\nB G3 Dlwillson\n\n30) mneme: Sacrifice G2 Mneme\nBuild Y2 Forest\nBuild Y3 Mneme\n\n31) dlwillson: Sacrifice Y2 Dlwillson\nMove B1 Dlwillson Suse\nMove B1 Suse Forest\n\n32) mneme: Sacrifice Y2 Forest\nMove Y3 Mneme Forest\nMove Y3 Forest Fedora\n\n33) dlwillson: Trade G1 B1 Fedora\n\n34) mneme: Build B3 Forest\n\n35) dlwillson: Build B3 Forest\nCatastrophe Forest B\n\n36) mneme: Build R2 Forest\n\n37) dlwillson: Build B1 Fedora\n\n38) mneme: Sacrifice R2 Forest\nAttack R2 Fedora\nAttack G2 Fedora\n\n39) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Fedora\nBuild B3 Suse\nBuild B3 Suse\nCatastrophe Fedora B\n\n40) mneme: Discover R1 Forest Y2 Safe\n\n41) dlwillson: Trade B3 R3 Suse\n\n42) mneme: Build R2 Mneme\n\n43) dlwillson: M B3 Suse Dlwillson\n\n44) mneme: Move R2 Mneme Forest\n\n45) dlwillson: Discover Y1 Suse G1 Mint\n\n46) mneme: Build G2 Mneme\n\n47) dlwillson: Trade B3 G3 Dlwillson\n\n48) mneme: Sacrifice G2 Mneme\nBuild R2 Mneme\nBuild R2 Safe\n\n49) dlwillson: S G3 Dlwillson\nB Y2 Mint\nB Y3 Suse\nB Y3 Dlwillson\n\n50) mneme: Sacrifice G2 Mneme\nBuild R3 Mneme\nBuild R3 Forest\n\n51) dlwillson: B G2 Dlwillson\n\n52) mneme: Trade R3 G3 Mneme\n\n53) dlwillson: B R3 Suse\n\n54) mneme: Sacrifice Y2 Forest\nMove R1 Safe Suse\nMove R2 Forest Suse\nCatastrophe Suse R\n\n55) dlwillson: Trade Y3 R3 Suse\n\n56) mneme: Move R2 Safe Mint\n\n57) dlwillson: B Y2 Mint\n\n58) mneme: Attack Y2 Mint\n\n59) dlwillson: S R3 Suse\nA R2 Mint\nA Y2 Mint\nPass\n\n60) mneme: Move G3 Mneme Mint\n\n61) dlwillson: Sacrifice Y2 Mint\nMove R2 Mint Suse\nDiscover Y1 Mint B3 Fedora\n\n62) mneme: Sacrifice R1 Mneme\nAttack Y2 Mint\n\n63) dlwillson: Move G2 Dlwillson Fedora\n\n64) mneme: Move G3 Mint Suse\n\n65) dlwillson: T R2 G2 Suse\n\n66) mneme: Sacrifice R2 Mneme\nAttack G2 Suse\nAttack B1 Suse\n\n67) dlwillson: M G1 Dlwillson Suse\nC Suse G\n\n68) mneme: Build Y1 Mneme\n\n69) dlwillson: Trade Y1 R1 Fedora\n\n70) mneme: Trade Y1 R1 Mneme\n\n71) dlwillson: Move Y1 Dlwillson Fedora\n\tmneme: damn. forgot about the g1 in your homeworld!\n\n72) mneme: Build R2 Mneme\n\n73) dlwillson: B R2 Fedora\n\n74) mneme: Trade R2 G2 Mneme\n\tdlwillson: Good game so far. Extremely challenging for me. That brouhaha in SUSE was just like the one in fedora earlier in the game, as expensive for me as it was for you, maybe more. Only worth it for the reduction of opportunity, but very costly.\n\tmneme: Oh, the one in fedora was deliberate for me; I figured I was destroying enough of your material to be worth losing a Large for. I think I could have done better in SUSE, though had I realized you really did have your hand on the trigger.\r\n\r\n\n\n75) dlwillson: B G1 Fedora\n\n76) mneme: Build R2 Mneme\n\n77) dlwillson: Sacrifice G2 Fedora\nBuild Y1 Dlwillson\nBuild G2 Fedora\n\n78) mneme: Build R2 Forest\n\n79) dlwillson: Discover R2 Fedora Y1 Ydl\n\n80) mneme: Trade R2 B2 Mneme\n\n81) dlwillson: T Y3 G3 Dlwillson\n\n82) mneme: Sacrifice Y2 Mint\nDiscover R3 Forest B3 Touchstone\nMove B2 Mneme Forest\n\n83) dlwillson: S G2 Fedora\nBuild R2 Ydl\nB R3 Fedora\n\n84) mneme: Build R3 Forest\n\n85) dlwillson: B G1 Dlwillson\n\n86) mneme: Trade R3 Y3 Forest\n\n87) dlwillson: D R2 Ydl R3 Redhat\n\n88) mneme: Build B1 Forest\n\n89) dlwillson: Build G2 Fedora\n\n90) mneme: Build Y2 Forest\n\n91) dlwillson: M G1 Fedora Ydl\n\n92) mneme: Discover B2 Forest G3 Harpershall\n\n93) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Ydl\nBuild Y2 Fedora\nBuild G3 Dlwillson\n\n94) mneme: Discover R2 Forest Y3 Harper\n\n95) dlwillson: S Y2 Fedora\nM G2 Ydl Mneme\nM G1 Ydl Mneme\nC Mneme G\n\n96) mneme: Build B1 Harpershall\n\n97) dlwillson: Discover R1 Fedora G1 Suse\n\n98) mneme: Build B1 Harpershall\n\n99) dlwillson: T R3 B3 Fedora\n\n100) mneme: Sacrifice Y3 Forest\nMove B1 Harpershall Dlwillson\nMove B1 Harpershall Dlwillson\nMove B2 Harpershall Dlwillson\nCatastrophe Dlwillson B\n\n\tdlwillson: Excellent game, Mneme\n\tmneme: Thanks -- Excellent game!\n\nHomeworlds Online (SDG# 16558)\nStarted: 2010.6.12, Ended: 2010.6.23\nParticipants: dlwillson (S), ZackStack (N)\nWinner: dlwillson\n\n1) ZackStack: Homeworld R1 B3 G3\n\n2) dlwillson: H Y3 B2 G3\n\tZackStack: Hey DL! Have a good game.\n\n3) ZackStack: Build G1 Zackstack\n\n4) dlwillson: Build G1 Dlwillson\n\tZackStack: I hope you won't be turning my strategy from my game against Titan against me ;-)\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\tdlwillson: I sure hope so! Actually, I'm intending to green-race or red-race, whichever one works out. They both look promising from here. You'll grab the other and beat me, or you'll go blue and beat me, or you'll lock me out of yellow and beat me. :-))))\n\tZackStack: Well... so long as we're clear on that point :-p\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) ZackStack: Build Y1 Zackstack\n\tdlwillson: "Red!" said Fred. :-)\n\n8) dlwillson: Build R1 Dlwillson\n\n9) ZackStack: Build Y1 Zackstack\n\n10) dlwillson: B R2 Dlwillson\n\n11) ZackStack: Discover Y1 Zackstack G2 Apple\n\n12) dlwillson: Discover R2 Dlwillson B1 Ibm\n\n13) ZackStack: Build Y2 Apple\n\n14) dlwillson: Discover R1 Dlwillson B1 Novell\n\tZackStack: Heh. Nice.\n\n15) ZackStack: Build Y2 Apple\n\n16) dlwillson: B R2 Dlwillson\n\n17) ZackStack: Build Y2 Zackstack\n\n18) dlwillson: B G1 Dlwillson\n\n19) ZackStack: Discover Y2 Apple G1 Linux\n\n20) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Novell\nBuild R3 Novell\nBuild R3 Ibm\n\n21) ZackStack: Trade G3 R3 Zackstack\n\n22) dlwillson: T R3 Y3 Novell\n\tdlwillson: Gotta tell you, I don't know what it is about this game in particular, but I think this is a new "most fun" I've had playing Homeworlds. :-)\n\tZackStack: Great! I'm glad you're enjoying the game.\n\n23) ZackStack: Build Y3 Linux\n\n24) dlwillson: Build R3 Dlwillson\n\n25) ZackStack: Trade Y1 G1 Zackstack\n\n26) dlwillson: Trade R3 G3 Dlwillson\n\n27) ZackStack: Discover Y1 Apple B1 Macos\n\n28) dlwillson: Trade R3 G3 Ibm\n\n29) ZackStack: Sacrifice Y2 Apple\nMove Y3 Linux Dlwillson\nMove Y2 Linux Dlwillson\n\n30) dlwillson: Sacrifice R2 Novell\nAttack Y3 Dlwillson\nAttack Y2 Dlwillson\n\n31) ZackStack: Move Y1 Macos Dlwillson\nCatastrophe Dlwillson Yellow\n\n32) dlwillson: S Y3 Novell\nM R2 Dlwillson Zackstack\nM R1 Dlwillson Zackstack\nM G3 Dlwillson Zackstack\nC Zackstack R\n\tdlwillson: Hm... Hm... think, think... Sure do like playing this game with you. ... I think. :-D\n\n\tdlwillson: I think that ends it, but not sure. Do you see something I missed?\r\n\n\tZackStack: Nope. I'm doomed! Doomed I tells ya! Good game!\n\tdlwillson: Yes, excellent game, thank you!\n\nHomeworlds Online (SDG# 16629)\nStarted: 2010.6.13, Ended: 2010.8.27\nParticipants: ZackStack (S), efwin (N)\nWinner: efwin\n\n1) efwin: Homeworld G1 B2 Y3\n\n2) ZackStack: Homeworld B3 R2 G3\n\tefwin: Hello, again -- I only played this one once before, so we'll see what's what...\n\tZackStack: I'll try to be gentle then ;-) Have a good game!\n\n3) efwin: Build Y1 Efwin\n\n4) ZackStack: Build G1 Zackstack\n\n5) efwin: Build Y1 Efwin\n\n6) ZackStack: Trade G1 Y1 Zackstack\n\n7) efwin: Discover Y1 Efwin G3 Neergeerht\n\n8) ZackStack: Build Y2 Zackstack\n\n9) efwin: Build Y2 Efwin\n\n10) ZackStack: Discover Y1 Zackstack G1 Faargurt\n\n11) efwin: Trade Y2 R2 Efwin\n\tZackStack: Danger Will Robinson! <waves arms about frantically>\n\n12) ZackStack: Build Y2 Faargurt\n\tefwin: Thanks for the warning -- I remembered about the more than three of any one color being a problem\n\tZackStack: I figured it was probably unneccessary... but am just too big a fan of frantically waving my arms around ;-)\n\n13) efwin: Build Y2 Neergeerht\n\n14) ZackStack: Build G1 Zackstack\n\tefwin: Well, it is best to do a lot of exercise due to the low gravity out here in space\n\tZackStack: <chuckle>\n\n15) efwin: Build R1 Efwin\n\n16) ZackStack: Discover Y2 Faargurt B3 Biggbloo\n\n17) efwin: Discover Y2 Neergeerht G2 Neergwot\n\n18) ZackStack: Sacrifice G3 Zackstack\nBuild Y3 Zackstack\nBuild Y3 Biggbloo\nBuild G2 Zackstack\n\n19) efwin: Trade R2 G2 Efwin\n\n20) ZackStack: Discover G1 Zackstack B1 Lilbloo\n\n21) efwin: Discover G2 Efwin R3 Dereerht\n\n22) ZackStack: Build G3 Lilbloo\n\tZackStack: You might want to Undo. The green ship at LilBloo can make it to your Homeworld if I sac a yellow...\n\tefwin: Thanks -- I counted to two (ships) and figured I was OK -- I think I'll try something different...\n\n23) efwin: Trade Y1 B1 Efwin\n\tZackStack: I also realized I can cause some serious damage if I sacrifice my y2 and send the ships from BigBloo to your home... just thought I'd point that out :-)\n\n24) ZackStack: Build G3 Zackstack\n\n25) efwin: Build Y1 Neergeerht\n\tefwin: hmmmmmmmmm -- there's so much to watch out for in the universe\n\n26) ZackStack: Move Y2 Zackstack Lilbloo\n\n27) efwin: Discover Y1 Neergeerht B1 Eulbeno\n\n28) ZackStack: Move G3 Lilbloo Dereerht\n\n29) efwin: Sacrifice G2 Dereerht\nBuild B2 Efwin\nBuild R1 Efwin\n\n30) ZackStack: Trade G2 B2 Zackstack\n\n31) efwin: Move B2 Efwin Neergeerht\n\tefwin: Figured I might as well get a little something from my ship rather than let you just flip it to your side...\n\n32) ZackStack: Discover G1 Lilbloo B3 Largbloo\n\tZackStack: I figured you would respond with something like that. Well played.\n\n33) efwin: Move B2 Neergeerht Eulbeno\n\tefwin: Thanks -- still doesn't quite make up for the fact that you have about 1000 size three ships and I have one\n\n34) ZackStack: Move B2 Zackstack Faargurt\n\n35) efwin: Move R1 Efwin Neergeerht\n\n36) ZackStack: Sacrifice G1 Largbloo\nBuild B3 Faargurt\n\n37) efwin: Build R1 Efwin\n\n38) ZackStack: Move B2 Faargurt Dereerht\n\n39) efwin: Build R2 Neergeerht\n\n40) ZackStack: Trade Y2 R2 Biggbloo\n\n41) efwin: Build Y2 Neergwot\n\n42) ZackStack: Move Y2 Lilbloo Dereerht\n\n43) efwin: Move R2 Neergeerht Neergwot\n\n44) ZackStack: Build B1 Dereerht\n\n45) efwin: Sacrifice Y2 Neergwot\nMove B1 Efwin Dereerht\nMove B2 Eulbeno Dereerht\nCatastrophe Dereerht Blue\n\n46) ZackStack: Build Y2 Dereerht\n\n47) efwin: Build R3 Neergeerht\n\tefwin: Probably should have just moved the blue away from danger -- but figured I'd try something with a little bigger impact and see how that goes\n\tZackStack: Well... it set back my immediate plans. Well done! :-)\n\n48) ZackStack: Sacrifice Y3 Zackstack\nMove Y3 Biggbloo Efwin\nMove Y2 Dereerht Efwin\nMove Y2 Dereerht Efwin\nCatastrophe Efwin Yellow\n\n49) efwin: Sacrifice Y2 Neergwot\nMove R3 Neergeerht Efwin\nDiscover R1 Efwin Y3 Wolleyeerht\n\tefwin: Thanks\n\n50) ZackStack: Sacrifice G3 Dereerht\nBuild G1 Zackstack\nBuild R3 Biggbloo\nBuild Y2 Faargurt\n\tZackStack: You're welcome ;-)\n\n51) efwin: Trade R3 Y3 Efwin\n\tefwin: Well, your move was going to put me in a bad spot... Hopefully, that gives me momentary safety\n\n52) ZackStack: Move B3 Faargurt Neergeerht\n\tZackStack: Good defense... but I'm hoping I can keep your back against the wall for a little while longer!\n\n53) efwin: Build Y2 Efwin\n\tefwin: You are forcing my moves at the moment... \n\n54) ZackStack: Sacrifice R2 Biggbloo\nAttack Y1 Neergeerht\nAttack R1 Neergeerht\n\n55) efwin: Trade Y2 G2 Efwin\n\n56) ZackStack: Build Y2 Neergeerht\n\n57) efwin: Build R2 Neergwot\n\n58) ZackStack: Trade Y2 G2 Neergeerht\n\n59) efwin: Build Y2 Efwin\n\n60) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild R3 Biggbloo\nBuild B1 Neergeerht\n\n61) efwin: Sacrifice Y2 Efwin\nMove R2 Neergwot Biggbloo\nMove R1 Efwin Biggbloo\nCatastrophe Biggbloo Red\n\n62) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild Y2 Neergeerht\nBuild R1 Neergeerht\n\tZackStack: Sometimes that move feels like cheating...\n\tefwin: ... and yet, it seems to have been legal and something you can enjoy again\n\n63) efwin: Build R2 Neergwot\n\tZackStack: I wondered if I'd made that system too big a target... :-)\n\n64) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild G3 Zackstack\nBuild Y2 Faargurt\n\n65) efwin: Discover G2 Efwin Y3 Wolleyeerhtii\n\tefwin: I'm afraid I'm just managing to put off the inevitable at this point -- but maybe the fleet at neergeerht is contemplating vacation spots ;-)\n\tZackStack: And here all I see is all my eggs in one basket!\n\n66) ZackStack: Trade G3 B3 Zackstack\n\tZackStack: Normally that move is insanely dangerous... but I think I have one turn to fix it before you can take advantage...\n\n67) efwin: Sacrifice G2 Wolleyeerhtii\nBuild Y3 Eulbeno\nBuild R3 Wolleyeerht\n\tefwin: I couldn't see anything better to do than carry through with the threat...\n\n68) ZackStack: Sacrifice Y2 Faargurt\nMove B3 Zackstack Faargurt\nDiscover B3 Faargurt G3 Yohgeert\n\tZackStack: Nice work denying the Y3 I wanted :-)\n\n69) efwin: Move R3 Wolleyeerht Faargurt\n\tefwin: Thanks -- Sorry for the delay. A storm knocked out power to our area TH afternoon and we only got it back this afternoon (Sun)\n\n70) ZackStack: Sacrifice Y2 Faargurt\nMove Y1 Faargurt Yohgeert\nMove B1 Neergeerht Efwin\n\tZackStack: Sorry to hear about the power outage! I hope it hasn't been as nasty hot there as it has been here...\n\n71) efwin: Move Y1 Eulbeno Neergwot\n\tefwin: It's been hot here (DC) all summer -- but that's probably been the case around much of the country this year\n\n72) ZackStack: Sacrifice G2 Neergeerht\nBuild B1 Efwin\nBuild B2 Efwin\nCatastrophe Efwin Blue\n\n73) efwin: Move R2 Neergwot Efwin\n\tefwin: I'm suspicious of the little blue visitor\n\tZackStack: Visitors are always trouble in this game...\n\n74) ZackStack: Trade Y2 G2 Neergeerht\n\n75) efwin: Build R3 Efwin\n\tefwin: Sorry to have to put your plans to dominate the universe on hold, but I'll be away the rest of the week (no computer) so won't be able to move again until Sunday -- have a good week\n\tZackStack: No problem! Thanks for letting me know. I'll be out of town from Thursday until Monday/Tuesday (also without a computer) so we'll finish up when we're both back! :-)\n\n76) ZackStack: Move R1 Neergeerht Efwin\n\n77) efwin: Sacrifice Y3 Efwin\nMove Y3 Eulbeno Zackstack\nMove R3 Efwin Zackstack\nMove Y1 Neergwot Efwin\n\n\tefwin: I hope I thought that through correctly...\n\tZackStack: You thought it through well. Good Game!\n\tefwin: Thanks for the game\n\nHomeworlds Online (SDG# 16636)\nVariants: "No undo, Sinister"\nStarted: 2010.6.14, Ended: 2010.6.21\nParticipants: zara2stra (S), goulo (N), AdamBadura (E)\nWinner: AdamBadura\n\n1) goulo: Homeworld B1 G2 Y3\n\n2) AdamBadura: Homeworld B2 G3 R3\n\n3) zara2stra: Homeworld G3 Y1 B3\n\n4) goulo: Build Y1 Goulo\n\n5) AdamBadura: Build R1 Adambadura\n\n6) zara2stra: Build B1 Zara2stra\n\n7) goulo: Build Y1 Goulo\n\n8) AdamBadura: Trade R3 Y3 Adambadura\n\n9) zara2stra: Trade B1 Y1 Zara2stra\n\n10) goulo: Trade Y1 G1 Goulo\n\n11) AdamBadura: Discover R1 Adambadura B1 Bravenewworld\n\n12) zara2stra: Build B1 Zara2stra\n\n13) goulo: Discover Y1 Goulo G3 Smeraldo\n\n14) AdamBadura: Build Y1 Adambadura\n\n15) zara2stra: Build Y2 Zara2stra\n\n16) goulo: Build Y2 Smeraldo\n\n17) AdamBadura: Move Y1 Adambadura Bravenewworld\n\n18) zara2stra: Discover Y2 Zara2stra R2 Alpha\n\n19) goulo: Build Y2 Goulo\n\n20) AdamBadura: Build Y2 Adambadura\n\n21) zara2stra: Trade Y1 G1 Zara2stra\n\n22) goulo: Trade Y2 R2 Goulo\n\n23) AdamBadura: Move Y2 Adambadura Bravenewworld\n\n24) zara2stra: Trade B1 R1 Zara2stra\n\n25) goulo: Build R1 Goulo\n\n26) AdamBadura: Trade Y3 G3 Adambadura\n\n27) zara2stra: Build B1 Zara2stra\n\tAdamBadura: Another one of Branches? After winning previous game I suddenly started to like that game... ;)\n\n28) goulo: Move R2 Goulo Smeraldo\n\n29) AdamBadura: Trade Y2 R2 Bravenewworld\n\n30) zara2stra: Move G1 Zara2stra Alpha\n\n31) goulo: Discover G1 Goulo B3 Safiro\n\n32) AdamBadura: Trade G3 B3 Adambadura\n\n33) zara2stra: Move B1 Zara2stra Alpha\n\n34) goulo: Discover Y2 Smeraldo G1 Verdeto\n\n35) AdamBadura: Build B1 Adambadura\n\n36) zara2stra: Build B2 Alpha\n\n37) goulo: Build Y1 Goulo\n\n38) AdamBadura: Trade B3 Y3 Adambadura\n\n39) zara2stra: Build Y2 Alpha\n\tAdamBadura: Somehow I feel I'm lost in this game. I must have made some bad moves at the begining and now it seems difficult to progress... But we shall see what the future brings...\n\tgoulo: I would not be surprised if we all feel that way. :)\r\nBTW Adam, zara2stra and I just finished a game of Alien City and it's excellent! Strictly 2-player though. If you want to play a game with me, I'm happy to. :)\n\n40) goulo: Build Y2 Smeraldo\n\n41) AdamBadura: Build Y3 Adambadura\n\n42) zara2stra: Move Y2 Alpha Smeraldo\n\n43) goulo: Attack Y2S Smeraldo\n\n44) AdamBadura: Move Y1 Bravenewworld Smeraldo\nCatastrophe Smeraldo Y\n\tAdamBadura: Some how I feel goulo is ploting against me... ;)\n\n45) zara2stra: Build B2 Zara2stra\n\n46) goulo: Build Y1 Verdeto\n\n47) AdamBadura: Move Y3 Adambadura Verdeto\n\n48) zara2stra: Move Y2 Alpha Verdeto\nCatastrophe Verdeto Y\n\tAdamBadura: Oh... A bad move... :) Pity!\n\n49) goulo: Build R1 Smeraldo\n\n50) AdamBadura: Trade R1 G1 Bravenewworld\n\n51) zara2stra: Trade B2 Y2 Alpha\n\tAdamBadura: goule: I started reading Alien City rules... I will challange you as soon as I'm ready.\n\n52) goulo: Move Y1 Goulo Smeraldo\n\n53) AdamBadura: Build B2 Adambadura\n\n54) zara2stra: Move B2 Zara2stra Alpha\n\n55) goulo: Build Y1 Goulo\n\n56) AdamBadura: Build R1 Bravenewworld\n\n57) zara2stra: Discover B2 Alpha R3 Beta\n\n58) goulo: Build R2 Goulo\n\n59) AdamBadura: Trade R1 Y1 Bravenewworld\n\n60) zara2stra: Move G1 Alpha Beta\n\n61) goulo: Move Y3 Goulo Beta\n\n62) AdamBadura: Build Y2 Bravenewworld\n\n63) zara2stra: Sacrifice Y2 Alpha\nMove B2 Beta Alpha\nMove G1 Beta Alpha\n\n64) goulo: Move Y3 Beta Bravenewworld\n\n65) AdamBadura: Build Y2 Bravenewworld\nCatastrophe Bravenewworld Y\n\n66) zara2stra: Trade B2 Y2 Alpha\n\tAdamBadura: I hope you are happy now goulo... :P\n\n67) goulo: Trade R2 B2 Goulo\n\tgoulo: Hm, that's what I get for doing too many turns in too many games... mistakes! :P\n\n68) AdamBadura: Discover B2 Adambadura G1 Theendisnigh\n\tAdamBadura: I considered this to be a mistake. I even considered making private agreements with you after that move.\r\n\r\nBut I changed my mind and deleted the email as you are my direct opponent and thus it was hard for me to trust you.\r\n\r\nSo basicly both of us lost and zara2stra gained...\n\n69) zara2stra: Build G2 Alpha\n\n70) goulo: Build R1 Goulo\n\n71) AdamBadura: Build G2 Bravenewworld\n\n72) zara2stra: Discover G2 Alpha R3 Beta\n\n73) goulo: Move B2 Goulo Smeraldo\n\n74) AdamBadura: Trade G2 Y2 Bravenewworld\n\n75) zara2stra: Build G2 Beta\n\n76) goulo: Discover R2 Smeraldo Y1 Poleno\n\n77) AdamBadura: Build Y2 Adambadura\n\n78) zara2stra: Sacrifice Y2 Alpha\nMove G2 Beta Goulo\nMove G2 Beta Goulo\n\n79) goulo: Build R2 Goulo\n\tgoulo: Hmm, this game is not my finest hour... :)\n\n80) AdamBadura: Build R3 Bravenewworld\n\n81) zara2stra: Build G2 Goulo\nCatastrophe Goulo G\n\n82) goulo: Build R3 Smeraldo\n\n83) AdamBadura: Build R3 Bravenewworld\n\tAdamBadura: goulo, look at the bright side. Now you are directly connected to my system... :)\n\n84) zara2stra: Build R3 Zara2stra\n\n85) goulo: Move R1 Smeraldo Bravenewworld\nCatastrophe Bravenewworld R\n\n86) AdamBadura: Build G2 Bravenewworld\n\tAdamBadura: goulo: Good move. Now zara2stra will have more freedom to destroy you... ;P\n\n87) zara2stra: Build G2 Alpha\n\n88) goulo: Build B2 Smeraldo\n\n89) AdamBadura: Build B3 Theendisnigh\n\n90) zara2stra: Build B3 Alpha\n\n91) goulo: Build Y2 Smeraldo\n\n92) AdamBadura: Trade B2 Y2 Theendisnigh\n\n93) zara2stra: Trade B3 Y3 Alpha\n\n94) goulo: Trade R2 G2 Goulo\n\n95) AdamBadura: Sacrifice G2 Bravenewworld\nBuild Y3 Bravenewworld\nBuild Y3 Theendisnigh\n\n96) zara2stra: Sacrifice Y3 Alpha\nMove B3 Zara2stra Alpha\nMove B3 Alpha Goulo\nMove B1 Alpha Zara2stra\n\tAdamBadura: I like it when they are big... ;) (Ships, I meant ships....)\n\n97) goulo: Build B2 Smeraldo\n\n98) AdamBadura: Sacrifice Y2 Adambadura\nMove Y3 Bravenewworld Alpha\nMove Y3 Theendisnigh Alpha\n\tgoulo: Bleah... if there were 2 blues left to build, zara wins next turn.\n\n99) zara2stra: Sacrifice R1 Zara2stra\nAttack G2N Goulo\n\n100) goulo: Move Y1 Smeraldo Goulo\n\n101) AdamBadura: Trade Y2 R2 Theendisnigh\n\n102) zara2stra: Sacrifice G2 Alpha\nBuild B3 Goulo\nBuild R1 Zara2stra\n\n103) goulo: Build Y2 Smeraldo\n\n104) AdamBadura: Move B1 Adambadura Goulo\nCatastrophe Goulo B\n\n105) AdamBadura: Sacrifice Y3 Alpha\nMove Y3 Alpha Zara2stra\nMove B3 Theendisnigh Alpha\nMove B3 Alpha Zara2stra\n\tAdamBadura: Sorry goulo but it was to much risk zara2stra would manage to destroy you before I would destroy him.\n\tAdamBadura: Why again it is my turn?\n\n106) zara2stra: Attack B3E Zara2stra\n\tzara2stra: you won :/\n\n107) AdamBadura: Sacrifice R2 Theendisnigh\nAttack R3S Zara2stra\nAttack B3S Zara2stra\n\n108) zara2stra: Build R1 Zara2stra\n\n109) AdamBadura: Sacrifice R3 Zara2stra\nAttack R1S Zara2stra\nAttack R1S Zara2stra\nAttack B1S Zara2stra\n\tAdamBadura: Yes. I know. I was palnning to do that before, but first goulo destroyed my two 3 ships, and then you were to close to goulo.\r\n\r\nI think turning point of the game was when goulo (by mistake) lost his 3 ship by invading my system and forcing me to catastrophe.\r\n\r\nThen you attacked goulo lessering his pressure on me.\r\n\r\nBut in the end I think you somehow misscalculated your attcions with goulo. Haven't you thought of me destroying that system?\n\tAdamBadura: This was an interesting game bacause it is first time that only one player lost any stars. It is first time a player loses without loosing any star and it is first time a player is destroyed by the left one rather than the right one.\r\n\r\nAnother one?\n\tgoulo: Yes, interesting different game play! A good sign for Homeworlds as a game with lasting replay value. :)\r\n\r\nAnd yeah, I agree it made sense for Adam to destroy me before zara destroyed me and won. Good game!\r\n\r\nI am happy to play another. Zara2stra, you want to also?\n\tgoulo: BTW Adam in theory I will have 3 rainbow pyramid sets before Saturday, so we could play binary homeworlds live then if you like. :)\n\tAdamBadura: I'm not sure now whether I will be at Saturday at UP. But I will try to remember to let you know. Although if I will be it is most likely I will be at 11 as usually.\r\n\r\nWhy it took so long to get those sets? I though you had them for a long time now...\n\tzara2stra: Ok, we can play another game (although expect lags on my part during this week).\n\tgoulo: Rebel apparently had 3 rainbow stashes in stock, and then forgot to order more (and the Martian Coasters I wanted). Sigh. So now they are ordering the additional ones. Eventually I will have them all... :)\n\n\nHomeworlds Online (SDG# 16497)\nStarted: 2010.6.14, Ended: 2010.6.18\nParticipants: ts52 (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld B1 G2 Y3\n\n2) ts52: Homeworld B2 Y3 G3\n\tgoulo: Hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\tts52: Thanks. You too!\n\n4) ts52: Build G1 Ts52\n\n5) goulo: Build Y1 Goulo\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) goulo: Trade Y1 G1 Goulo\n\n8) ts52: Discover Y1 Ts52 G1 Robin\n\n9) goulo: Discover Y1 Goulo G3 Smeraldo\n\n10) ts52: Build G1 Ts52\n\n11) goulo: Build G2 Goulo\n\n12) ts52: Discover Y1 Robin G3 Kermit\n\n13) goulo: Trade G2 R2 Goulo\n\n14) ts52: Trade G1 R1 Ts52\n\n15) goulo: Build R1 Goulo\n\n16) ts52: Build G1 Ts52\n\n17) goulo: Move R2 Goulo Smeraldo\n\n18) ts52: Discover G1 Ts52 B1 Grover\n\n19) goulo: Build Y1 Smeraldo\n\n20) ts52: Build Y2 Kermit\n\n21) goulo: Build Y2 Goulo\n\n22) ts52: Build G1 Ts52\n\n23) goulo: Discover G1 Goulo Y3 Citrono\n\n24) ts52: Move Y2 Kermit Grover\n\n25) goulo: Move Y2 Goulo Kermit\n\n26) ts52: Build Y2 Grover\n\n27) goulo: Sacrifice G1 Citrono\nBuild Y3 Goulo\n\n28) ts52: B G1 Grover\n\n29) goulo: Build R1 Goulo\n\n30) ts52: Build R2 Ts52\n\n31) goulo: Sacrifice R1 Goulo\nAttack Y1 Kermit\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Ts52\nBuild G3 Ts52\n\n33) goulo: Discover Y2 Kermit R1 Rubeno\n\n34) ts52: Move R2 Ts52 Grover\n\n35) goulo: Discover Y1 Smeraldo B1 Mirtelo\n\n36) ts52: Move G2 Ts52 Mirtelo\n\n37) goulo: Move Y1 Mirtelo Ts52\n\n38) ts52: Attack Y1 Ts52\n\n39) goulo: Sacrifice Y3 Goulo\nMove Y1 Smeraldo Rubeno\nMove Y1 Rubeno Ts52\nMove Y2 Rubeno Ts52\nCatastrophe Ts52 Y\n\n40) ts52: Move R2 Grover Kermit\n\n41) goulo: Discover Y1 Kermit R1 Sangero\n\n42) ts52: Move Y2 Grover Kermit\n\n43) goulo: Build R2 Goulo\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Ts52\nBuild R3 Kermit\n\n45) goulo: Build R3 Smeraldo\n\n46) ts52: Build Y1 Grover\n\n47) goulo: Move Y1 Sangero Smeraldo\n\n48) ts52: Trade R1 Y1 Ts52\n\n49) goulo: Move R3 Smeraldo Grover\n\n50) ts52: Sacrifice Y2 Grover\nDiscover G2 Grover Y3 Bigbird\nMove G1 Grover Bigbird\n\n51) goulo: Attack Y1 Grover\n\n52) ts52: Sacrifice G1 Grover\nBuild G1 Bigbird\n\n53) goulo: Move R3 Grover Bigbird\n\n54) ts52: Sacrifice Y2 Kermit\nMove G2 Bigbird Goulo\nMove G1 Bigbird Goulo\n\n55) goulo: Attack G1 Bigbird\n\n56) ts52: Sacrifice G1 Ts52\nBuild G1 Goulo\nCatastrophe Goulo Green\n\n57) goulo: Trade R2 B2 Goulo\n\n58) ts52: Build Y2 Ts52\n\n59) goulo: Move B2 Goulo Bigbird\n\n60) ts52: Move R3 Ts52 Smeraldo\n\n61) goulo: Sacrifice Y1 Smeraldo\nMove R2 Smeraldo Grover\n\n62) ts52: Trade G2 B2 Mirtelo\n\n63) goulo: Build B3 Bigbird\n\n64) ts52: Move Y1 Ts52 Mirtelo\n\n65) goulo: Move R3 Bigbird Mirtelo\n\n66) ts52: Discover B2 Mirtelo Y2 Zoe\n\n67) goulo: Trade R3 B3 Mirtelo\n\n68) ts52: Sacrifice Y2 Ts52\nMove R3 Kermit Goulo\nMove R3 Smeraldo Goulo\n\n69) goulo: Sacrifice Y3 Goulo\nMove B3 Mirtelo Ts52\nMove B3 Bigbird Ts52\nMove B2 Bigbird Ts52\nCatastrophe Ts52 B\n\tts52: Thanks for the game.\n\tgoulo: Thanks! Man, that was a tense close tough game. :)\n\n\nHomeworlds Online (SDG# 16645)\nVariants: "Hard time"\nStarted: 2010.6.14, Ended: 2010.6.21\nParticipants: fnord (S), captncavern (N)\nWinner: captncavern\n\n1) captncavern: Homeworld G3 B1 Y3\n\tcaptncavern: Have a good game!\n\n2) fnord: Homeworld B2 Y3 G3\n\n3) captncavern: Build Y1 Captncavern\n\n\nHomeworlds Online (SDG# 16574)\nVariants: "Hard time"\nStarted: 2010.6.16, Ended: 2010.8.10\nParticipants: Mandrel (S), SilentTitan (N)\nWinner: Mandrel\n\n1) SilentTitan: Homeworld Y2 G3 B3\n\n2) Mandrel: Homeworld R1 B3 G3\n\n3) SilentTitan: Build B1 Silenttitan\n\tMandrel: Have a good game\n\tSilentTitan: you too\n\n4) Mandrel: Build G1 Mandrel\n\n5) SilentTitan: Discover B1 Silenttitan B1 Blue\n\n6) Mandrel: Trade G1 B1 Mandrel\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) Mandrel: Build B2 Mandrel\n\n9) SilentTitan: Trade B3 G3 Silenttitan\n\n10) Mandrel: Trade B2 Y2 Mandrel\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) Mandrel: Build B2 Mandrel\n\n13) SilentTitan: Build B3 Silenttitan\n\n14) Mandrel: Trade B1 R1 Mandrel\n\n15) SilentTitan: Discover B2 Silenttitan G1 Green\n\n16) Mandrel: Discover B2 Mandrel G2 Resolution\n\n17) SilentTitan: Trade B2 R2 Silenttitan\n\n18) Mandrel: Build Y1 Mandrel\n\n19) SilentTitan: Discover G3 Silenttitan R1 Red\n\n20) Mandrel: Build R2 Mandrel\n\n21) SilentTitan: Trade B2 R2 Green\n\n22) Mandrel: Move R2 Mandrel Resolution\n\n23) SilentTitan: Trade R2 Y2 Silenttitan\n\n24) Mandrel: Sacrifice Y1 Mandrel\nMove R2 Resolution Blue\n\n25) SilentTitan: Trade B3 R3 Silenttitan\n\n26) Mandrel: Attack B1N Blue\n\n27) SilentTitan: Build Y1 Silenttitan\n\n28) Mandrel: Trade B1 Y1 Blue\n\n29) SilentTitan: Move Y2 Silenttitan Green\n\n30) Mandrel: Build G1 Mandrel\n\n31) SilentTitan: Discover Y2 Green G2 Sink\n\n32) Mandrel: Sacrifice G1 Mandrel\nBuild Y1 Blue\n\n33) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover G3 Red B2 Rand\n\n34) Mandrel: Trade B2 R2 Resolution\n\n35) SilentTitan: Build G1 Rand\n\n36) Mandrel: Trade Y1 R1 Blue\n\n37) SilentTitan: Build R3 Green\n\n38) Mandrel: Build R3 Resolution\n\n39) SilentTitan: Trade G1 B1 Rand\n\n40) Mandrel: Trade R1 Y1 Mandrel\n\n41) SilentTitan: Sacrifice B1 Rand\nTrade R3 B3 Silenttitan\n\n42) Mandrel: Trade Y1 B1 Mandrel\n\n43) SilentTitan: Build G1 Rand\n\n44) Mandrel: Build Y1 Mandrel\n\n45) SilentTitan: Trade G1 Y1 Rand\n\n46) Mandrel: B G1 Mandrel\n\n47) SilentTitan: Sacrifice G3 Rand\nBuild Y3 Rand\nBuild Y3 Sink\nBuild B1 Silenttitan\n\n48) Mandrel: Sacrifice G1 Mandrel\nBuild Y3 Blue\n\n49) SilentTitan: Sacrifice Y3 Sink\nMove Y2 Sink Blue\nMove Y1 Rand Blue\nMove R3 Green Rand\nCatastrophe Blue Yellow\n\n50) Mandrel: T R2 Y2 Blue\n\n51) SilentTitan: Build B2 Silenttitan\n\n52) Mandrel: Move Y2 Mandrel Resolution\n\n53) SilentTitan: Sacrifice B2 Silenttitan\nTrade R2 B2 Green\nTrade B3 G3 Silenttitan\n\n54) Mandrel: Move B1 Mandrel Resolution\n\n55) SilentTitan: Build G1 Silenttitan\n\n56) Mandrel: T R2 G2 Resolution\n\n57) SilentTitan: Trade G1 Y1 Silenttitan\n\n58) Mandrel: Move G2 Resolution Blue\n\n59) SilentTitan: Sacrifice Y1 Silenttitan\nMove B2 Green Rand\n\n60) Mandrel: B Y1 Blue\n\n61) SilentTitan: Trade B2 G2 Rand\n\n62) Mandrel: B G1 Blue\n\n63) SilentTitan: Trade G3 R3 Silenttitan\n\n64) Mandrel: B Y1 Resolution\n\n65) SilentTitan: Build R1 Rand\n\n66) Mandrel: B Y3 Mandrel\n\n67) SilentTitan: Build B2 Silenttitan\n\n68) Mandrel: D Y1 Resolution G1 Tragedy\n\n69) SilentTitan: Move B1 Silenttitan Blue\n\n70) Mandrel: A B1N Blue\n\n71) SilentTitan: Build R2 Silenttitan\n\n72) Mandrel: B Y3 Resolution\n\n73) SilentTitan: Move R2 Silenttitan Tragedy\n\n74) Mandrel: S Y3 Resolution\nMove Y1 Tragedy Silenttitan\nMove Y1 Blue Silenttitan\nMove Y2 Blue Silenttitan\nC Silenttitan Yellow\n\n\tSilentTitan: Good game ... congrats\r\n\n\tMandrel: Good game!\n\nHomeworlds Online (SDG# 16632)\nVariants: "Hard time"\nStarted: 2010.6.16, Ended: 2010.7.23\nParticipants: Uglyfoot (S), sordros (N)\nWinner: Uglyfoot\n\n1) sordros: Homeworld Y1 B2 G3\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\tsordros: Hi, good luck\n\n3) sordros: Build G1 Sordros\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) sordros: Build G1 Sordros\n\n8) Uglyfoot: Discover G1 Uglyfoot R1 Step\n\n9) sordros: Build G2 Sordros\n\n10) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Step\nBuild G2 Step\nBuild G3 Uglyfoot\n\n11) sordros: Discover G2 Sordros G3 Verdega\n\n12) Uglyfoot: Trade G1 B1 Uglyfoot\n\n13) sordros: Trade G1 B1 Sordros\n\n14) Uglyfoot: Move B1 Uglyfoot Step\n\n15) sordros: Build G1 Sordros\n\n16) Uglyfoot: Trade G2 Y2 Step\n\n17) sordros: Trade G1 R1 Sordros\n\n18) Uglyfoot: Build G1 Uglyfoot\n\n19) sordros: Build R1 Sordros\n\n20) Uglyfoot: Move G1 Step Verdega\n\n21) sordros: Discover R1 Sordros B3 Bluega\n\n22) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G1 Verdega\nBuild G2 Step\nBuild G3 Uglyfoot\nCatastrophe Verdega G\n\n23) sordros: Build R2 Sordros\n\n24) Uglyfoot: Trade G2 R2 Step\n\n25) sordros: Build G1 Sordros\n\n26) Uglyfoot: Discover R2 Step Y3 Node\n\n\nHomeworlds Online (SDG# 16665)\nStarted: 2010.6.17, Ended: 2010.6.22\nParticipants: logikal (S), tvgide (N)\nWinner: logikal\n\n1) tvgide: Homeworld G3 B2 R3\n\n2) logikal: Homeworld B1 G3 Y3\n\n3) tvgide: Build R1 Tvgide\n\n4) logikal: Build Y1 Logikal\n\n5) tvgide: Trade R1 Y1 Tvgide\n\n6) logikal: Trade Y1 R1 Logikal\n\n7) tvgide: Discover R3 Tvgide Y1 Tv2\n\n8) logikal: Build R1 Logikal\n\n9) tvgide: Build Y1 Tvgide\n\n10) logikal: Build Y2 Logikal\n\n11) tvgide: Trade Y1 G1 Tvgide\n\n12) logikal: Trade Y3 G3 Logikal\n\n13) tvgide: Move G1 Tvgide Tv2\n\n14) logikal: Trade R1 B1 Logikal\n\n15) tvgide: Build G1 Tv2\n\n16) logikal: Discover G3 Logikal B2 L1\n\n17) tvgide: Trade Y1 R1 Tvgide\n\n18) logikal: Sacrifice Y2 Logikal\nMove G3 L1 Tv2\nMove G3 Tv2 Tvgide\n\n19) tvgide: Build R1 Tvgide\n\n20) logikal: Build R2 Logikal\n\n21) tvgide: Build R2 Tvgide\n\n22) logikal: Sacrifice R1 Logikal\nAttack R2 Tvgide\n\n23) tvgide: Move G1 Tv2 Tvgide\n\n24) logikal: Trade G3 Y3 Tvgide\n\n25) tvgide: Discover R3 Tv2 Y2 Tv1\n\n26) logikal: Sacrifice R2 Tvgide\nAttack R1 Tvgide\nAttack G1 Tvgide\n\n27) tvgide: Move R3 Tv1 Logikal\n\n28) logikal: Attack R1 Tvgide\n\n\nHomeworlds Online (SDG# 16625)\nVariants: "Unrated"\nStarted: 2010.6.17, Ended: 2010.8.17\nParticipants: makertron (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld G1 B2 Y3\n\n\tMandrel: Have a godd game!\n\tMandrel: Have a good game!\n\nHomeworlds Online (SDG# 16654)\nVariants: "Hard time"\nStarted: 2010.6.19, Ended: 2010.7.11\nParticipants: Jesse (S), daselva (N)\nWinner: Jesse\n\n1) daselva: Homeworld B2 G3 Y3\n\n2) Jesse: Homeworld R1 B3 G3\n\n3) daselva: Build Y1 Daselva\n\n4) Jesse: Build G1 Jesse\n\tJesse: Hello, and have a good game.\n\n5) daselva: Trade Y1 G1 Daselva\n\n6) Jesse: Trade G1 Y1 Jesse\n\tdaselva: hello,sorry if I do wrong things...I´m a beginner\n\n7) daselva: Build G1 Daselva\n\tJesse: Have you read the tips on the wiki page?\n\n8) Jesse: Build G1 Jesse\n\tdaselva: yes I did...thank you,but reading is different of playing...you will be my first teacher\n\tJesse: Well, here's a tip: Variety is good. That yellow star isn't helping your yellow ship do anything. A green would let you build more ships, which would be the usual choice for a yellow ship. A blue star would let you change your ship's color, but that would be more efficiently done directly at the homeworld, or it would be done after you'd built some ships at a green system. A red would provide you some security against small ships coming for you, but would not help you develop.\r\n\r\nDiscovering a same-colored system like that can be useful in situations where you're trying to keep a color to yourself. If you were using up the last small yellow, for instance, to make it so I couldn't trade a small green for a yellow. (That wouldn't work here, though, since I've chosen a red-blue home system in part for the flexibility to trade either the large or the small ship for yellow at this point.)\r\n\r\nDo you want to stick with your move? It won't cause anything horrible to happen, but may not be developing quite as smoothly as you could.\n\n9) daselva: Trade G1 R1 Daselva\n\tdaselva: thank you , you are very generous!...are you a lover of homeworlds? what do you think of it? is it a good and « serious» game?\n\tJesse: Yes, absolutely. As Andy Looney puts it, Homeworlds is the True Space Chess. I think it's an apt comparison of the depth of strategy involved. But Homeworlds is a lot more to my taste.\n\n10) Jesse: Trade G1 R1 Jesse\n\n11) daselva: Build R2 Daselva\n\n12) Jesse: Build G1 Jesse\n\n13) daselva: Build R2 Daselva\n\tJesse: Don't forget about the catastrophe rule. If there are four pieces of the same color in a system at the end of either player's turn, that player may choose for a catastrophe to occur which sends them back to the bank. In this case, you now have four greens in your home system, including the green star. You'll lose those ships and half your system with a move like that.\n\n14) Jesse: Discover R1 Jesse G2 Beeble\n\tdaselva: ok, thank you ,I understood that\n\n15) daselva: Trade R2 Y2 Daselva\n\n16) Jesse: Build R2 Beeble\n\tdaselva: hello.Can you explain me this?...Are there draws in homeworlds? Take this hypothetical situation:I´ve reached the Homeworld of my opponent with a R3 ship.HIs Homeworld is a R1 G3 and the ships in his Homeworld are Y2 Y2 and B1.So if I attack one of his Y2,I will change it to mine.Then he will attack this Y2 and change it to his.Then I will do the same and my opponent to ...etc ...etc\n\n17) daselva: Discover R2 Daselva Y1 Letsee\n\tJesse: There is no rule for resolving such situations, unfortunately. With sacrifices making it possible to perform multiple actions, there's usually a way out of a situation like that, though.\n\n18) Jesse: Build Y1 Jesse\n\tdaselva: thank you\n\n19) daselva: Build Y2 Daselva\n\n20) Jesse: Move Y1 Jesse Beeble\n\n21) daselva: Trade Y2 G2 Daselva\n\n22) Jesse: Build Y2 Beeble\n\n23) daselva: Move G1 Daselva Letsee\n\n24) Jesse: Discover R2 Beeble G1 Bobble\n\n\tdaselva: hello Jesse, can you help me? ...in the present situation I would to sacrifice the g2 in my HW in order to build a r2 in my HW and build a r3 in Letsee system butI don´t know how to write these commands\n\tdaselva: I wanted to say«I would like to»...by the way ,what is «carriage return»?\n\tJesse: Darn. Too bad about that time limit. To answer your question, though, you would write:\r\n\r\nsacrifice g2 daselva\r\nbuild r2 daselva\r\nbuild r3 letsee\r\n\r\nYou could also shorten the commands. My habit is to write "sac" for "sacrifice" and just "b" for "build". A carriage return is the character you get from hitting [return] or [enter] on most keyboards. Basically, you put each piece of a complex command on its own line.\n\tdaselva: Hello Jess thank you and forgive me...it was not timee limit,it was just ...awkward.Trying to find what that «carriage return» was,that I ´ve finally reached that was the changing line button,I carelessly pressed Resignation...I hope to play again whith you one day that I will have more experience (I´ve noticed you are a shark).I will never forget you were my first teacher\n\nHomeworlds Online (SDG# 16675)\nVariants: "Hard time"\nStarted: 2010.6.19, Ended: 2010.6.22\nParticipants: shmil1 (S), goulo (N)\nWinner: shmil1\n\n1) goulo: Homeworld B1 G2 Y3\n\n2) shmil1: Homeworld G1 B2 R3\n\tgoulo: Hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\n4) shmil1: Build R1 Shmil1\n\n5) goulo: Build Y1 Goulo\n\n6) shmil1: Trade R1 Y1 Shmil1\n\n7) goulo: Trade Y1 R1 Goulo\n\n8) shmil1: Build R1 Shmil1\n\n9) goulo: Discover Y1 Goulo R3 Rubeno\n\n10) shmil1: Move R3 Shmil1 Rubeno\n\n11) goulo: Discover Y1 Rubeno R2 Sangero\n\n12) shmil1: Build Y1 Shmil1\n\n13) goulo: Build Y2 Goulo\n\n14) shmil1: Move Y1 Shmil1 Rubeno\n\n15) goulo: Build R1 Goulo\n\n16) shmil1: Build Y2 Shmil1\n\n17) goulo: Sacrifice Y2 Goulo\nMove R1 Goulo Rubeno\nMove R1 Goulo Rubeno\nCatastrophe Rubeno R\n\n18) shmil1: Sacrifice Y2 Shmil1\nDiscover R1 Shmil1 G3 Velka\nMove R1 Velka Goulo\n\n19) goulo: Trade Y3 R3 Goulo\n\n20) shmil1: Build R1 Goulo\n\n21) goulo: Trade R3 Y3 Goulo\n\n22) shmil1: Trade R1 Y1 Goulo\n\n23) goulo: Discover Y1 Sangero G3 Smeraldo\n\n24) shmil1: Build Y2 Goulo\n\n25) goulo: Trade Y3 G3 Goulo\n\n26) shmil1: Trade Y2 G2 Goulo\n\n27) goulo: Trade G3 R3 Goulo\n\n28) shmil1: Sacrifice G2 Goulo\nBuild R1 Goulo\nBuild R1 Goulo\nCatastrophe Goulo Red\n\tgoulo: Thanks for a good strange game! Very instructive. :) In all my previous games, killing an enemy's only 3-ship was a Good Thing. But in this game, I did it to you too soon and had too few ships of my own afterward. Good lesson. :)\n\n\nHomeworlds Online (SDG# 16495)\nStarted: 2010.6.19, Ended: 2010.6.24\nParticipants: TwoShort (S), shmil1 (N)\nWinner: TwoShort\n\n1) shmil1: Homeworld R1 B1 G3 *\n\n2) TwoShort: Homeworld G1 B1 B3 *\n\n3) shmil1: Build G1 Shmil1\n\tTwoShort: Howdy.\n\n4) TwoShort: Build B1 Twoshort\n\n5) shmil1: Trade G1 Y1 Shmil1\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) shmil1: Build G1 Shmil1\n\n8) TwoShort: Build B2 Twoshort\n\n9) shmil1: Discover G1 Shmil1 Y3 Zluty\n\n10) TwoShort: Trade B2 R2 Twoshort\n\n11) shmil1: Build Y1 Shmil1\n\n12) TwoShort: Build B2 Twoshort\n\n13) shmil1: Discover Y1 Shmil1 G2 Zeleny\n\n14) TwoShort: Move B2 Twoshort Zeleny\n\n15) shmil1: Build Y1 Zeleny\n\n16) TwoShort: Sacrifice R2 Twoshort\nAttack Y1 Zeleny\nAttack Y1 Zeleny\n\n17) shmil1: Build G1 Zluty\n\n18) TwoShort: Build B2 Twoshort\n\n19) shmil1: Move G1 Zluty Twoshort\n\n20) TwoShort: Trade B2 R2 Twoshort\n\n21) shmil1: Sacrifice G3 Shmil1\nBuild G2 Twoshort\nBuild G2 Twoshort\nBuild G3 Zluty\nCatastrophe Twoshort Green\n\n22) TwoShort: Build B2 Zeleny\n\n23) shmil1: Move G3 Zluty Shmil1\n\n24) TwoShort: Discover B2 Zeleny G3 Grogar\n\n25) shmil1: Build Y2 Shmil1\n\n26) TwoShort: Build B2 Grogar\n\n27) shmil1: Trade G3 B3 Shmil1\n\n28) TwoShort: Build B3 Zeleny\n\n29) shmil1: Trade Y1 G1 Shmil1\n\n30) TwoShort: Sacrifice Y3 Twoshort\nMove B2 Grogar Shmil1\nMove B2 Grogar Shmil1\nPass\nCatastrophe Shmil1 Blue\n\n31) shmil1: Build G1 Shmil1\n\n32) TwoShort: Move B3 Zeleny Shmil1\n\n33) shmil1: Build G2 Zluty\n\n34) TwoShort: Attack Y2 Shmil1\n\n35) shmil1: Build G2 Shmil1\n\n36) TwoShort: Trade B3 G3 Shmil1\nCatastrophe Shmil1 Green\n\n\nHomeworlds Online (SDG# 16601)\nVariants: "Hard time"\nStarted: 2010.6.19, Ended: 2010.6.28\nParticipants: dlwillson (S), shmil1 (N)\nWinner: dlwillson\n\n1) shmil1: Homeworld Y3 B1 G3\n\n2) dlwillson: Homeworld B2 R3 G3\n\n3) shmil1: Build G1 Shmil1\n\n4) dlwillson: Build G1 Dlwillson\n\n5) shmil1: Discover G1 Shmil1 B2 Modra\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) shmil1: Build G1 Modra\n\n8) dlwillson: B B1 Dlwillson\n\n9) shmil1: Trade G1 Y1 Modra\n\n10) dlwillson: B G1 Dlwillson\n\n11) shmil1: Build Y1 Modra\n\n12) dlwillson: Trade G3 Y3 Dlwillson\n\n13) shmil1: Discover Y1 Modra G1 Zelena\n\n14) dlwillson: Move B1 Dlwillson Zelena\n\n15) shmil1: Build Y1 Zelena\n\n16) dlwillson: B B2 Zelena\n\n17) shmil1: Build Y2 Modra\n\n18) dlwillson: Trade B2 R2 Zelena\n\n19) shmil1: Sacrifice Y2 Modra\nMove Y1 Zelena Dlwillson\nMove Y1 Zelena Dlwillson\n\n20) dlwillson: Trade Y3 G3 Dlwillson\n\n21) shmil1: Attack G1 Dlwillson\n\n22) dlwillson: Attack G1 Dlwillson\n\n23) shmil1: Build G2 Modra\n\n24) dlwillson: A Y1 Dlwillson\n\n25) shmil1: Trade G2 R2 Modra\n\n26) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Zelena\nBuild B3 Zelena\nBuild B3 Dlwillson\n\n27) shmil1: Sacrifice R2 Modra\nAttack Y1 Dlwillson\nAttack G1 Dlwillson\n\n28) dlwillson: Attack G1 Dlwillson\n\n29) shmil1: Attack B1 Dlwillson\n\n30) dlwillson: Sacrifice R2 Zelena\nAttack B1 Dlwillson\nAttack Y1 Dlwillson\n\n31) shmil1: Build G2 Shmil1\n\n32) dlwillson: A Y1 Dlwillson\n\n33) shmil1: Trade G3 R3 Shmil1\n\n34) dlwillson: M Y1 Dlwillson Zelena\n\n35) shmil1: Move G1 Modra Zelena\n\n36) dlwillson: D B3 Zelena Y2 Grappa\n\n37) shmil1: Sacrifice G2 Shmil1\nBuild G2 Zelena\nBuild Y2 Modra\n\n38) dlwillson: S G1 Dlwillson\nB B3 Grappa\n\n39) shmil1: Sacrifice Y2 Modra\nMove G1 Zelena Dlwillson\nMove G2 Zelena Dlwillson\n\n40) dlwillson: A G2 Dlwillson\n\n41) shmil1: Attack B1 Dlwillson\n\n42) dlwillson: A G1 Dlwillson\n\n43) shmil1: Move Y1 Modra Zelena\n\n44) dlwillson: Attack B1 Dlwillson\n\n45) shmil1: Build Y2 Zelena\n\n46) dlwillson: Sacrifice B2 Zelena\nTrade G2 Y2 Dlwillson\nTrade B3 R3 Dlwillson\n\n47) shmil1: Sacrifice Y2 Zelena\nMove Y1 Zelena Grappa\nMove Y1 Grappa Shmil1\n\n48) dlwillson: Sacrifice Y2 Dlwillson\nMove B3 Grappa Shmil1\nMove B3 Grappa Shmil1\n\n49) shmil1: Attack B3 Shmil1\n\n50) dlwillson: Sacrifice R3 Dlwillson\nAttack B3 Shmil1\nAttack R3 Shmil1\nAttack Y1 Shmil1\n\n\tdlwillson: Thanks for the game, Shmil1. What's our record now, 2 each?\n\tshmil1: i do all the time the same mistake - i start too much games at once. let us play once again. i will concetrate more. :)\n\tdlwillson: I'd love to play again! I've got a standing challenge, just accept it and off we go. If you want to move first or second, just let me know.\n\nHomeworlds Online (SDG# 16605)\nStarted: 2010.6.19, Ended: 2010.7.2\nParticipants: shmil1 (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld Y1 B2 G3\n\n2) shmil1: Homeworld G1 B2 R3\n\tMandrel: Have a good game!\n\n3) Mandrel: Build G1 Mandrel\n\n4) shmil1: Build R1 Shmil1\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) shmil1: Trade R1 Y1 Shmil1\n\n7) Mandrel: Build G1 Mandrel\n\n8) shmil1: Build R1 Shmil1\n\n9) Mandrel: Build G1 Mandrel\n\n10) shmil1: Discover R1 Shmil1 Y3 Slunce\n\n11) Mandrel: Discover G1 Mandrel B3 Guilt\n\n12) shmil1: Build Y1 Shmil1\n\n13) Mandrel: Build G2 Guilt\n\n14) shmil1: Move Y1 Shmil1 Guilt\n\n15) Mandrel: Sacrifice R1 Mandrel\nAttack Y1S Guilt\n\n16) shmil1: Move R1 Slunce Mandrel\n\n17) Mandrel: Trade G3 R3 Mandrel\n\n18) shmil1: Move R1 Mandrel Guilt\n\n19) Mandrel: Trade G2 R2 Guilt\n\n20) shmil1: Attack G1 Guilt\n\n21) Mandrel: A R1S Guilt\n\n22) shmil1: Build G2 Guilt\n\n23) Mandrel: Attack G2S Guilt\n\n24) shmil1: Build G2 Guilt\n\n25) Mandrel: Sacrifice R2 Guilt\nAttack G1S Guilt\nAttack G2S Guilt\n\n26) shmil1: Build Y2 Shmil1\n\n27) Mandrel: Build G2 Mandrel\n\n28) shmil1: Discover Y2 Shmil1 B3 Modry\n\n29) Mandrel: Build G3 Mandrel\n\n30) shmil1: Build Y2 Shmil1\n\n31) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild R1 Mandrel\nBuild Y2 Guilt\n\n32) shmil1: Move Y2 Shmil1 Guilt\n\n33) Mandrel: Sacrifice Y2 Guilt\nMove G1 Guilt Shmil1\nMove G2 Guilt Shmil1\n\n34) shmil1: Attack G2 Shmil1\n\n35) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild G3 Shmil1\nBuild G3 Shmil1\n\n36) shmil1: Sacrifice G2 Shmil1\nBuild Y2 Modry\nBuild Y3 Modry\nCatastrophe Shmil1 Green\n\n37) Mandrel: Attack Y2S Guilt\n\n38) shmil1: Trade Y3 G3 Modry\n\n39) Mandrel: Move G3 Mandrel Modry\n\n40) shmil1: Sacrifice Y2 Modry\nMove G3 Modry Mandrel\nMove Y2 Modry Mandrel\n\n41) Mandrel: A G3S Mandrel\n\n42) shmil1: Sacrifice R3 Shmil1\nAttack G2 Mandrel\nAttack G1 Mandrel\nAttack R1 Mandrel\n\n43) Mandrel: Move G2 Guilt Shmil1\n\n44) shmil1: Sacrifice G2 Mandrel\nBuild Y2 Mandrel\nBuild Y3 Shmil1\n\n45) Mandrel: Sacrifice R3 Mandrel\nAttack Y2S Mandrel\nAttack Y2S Mandrel\nAttack R1S Mandrel\n\n46) shmil1: Trade Y3 R3 Shmil1\n\n47) Mandrel: Sacrifice Y1 Guilt\nMove G2 Shmil1 Guilt\n\n48) shmil1: Trade G1 Y1 Mandrel\nCatastrophe Mandrel Yellow\n\n49) Mandrel: B G1 Guilt\n\n50) shmil1: Trade Y1 G1 Shmil1\n\n51) Mandrel: Trade G3 R3 Modry\n\n52) shmil1: Build G1 Shmil1\n\n53) Mandrel: Sacrifice Y2 Guilt\nMove G1 Guilt Shmil1\nMove G2 Guilt Shmil1\nCatastrophe Shmil1 Green\n\n54) shmil1: Trade R3 G3 Shmil1\n\n55) Mandrel: T R1 Y1 Guilt\n\n56) shmil1: Build G1 Shmil1\n\n57) Mandrel: S Y1 Guilt\nMove R3 Modry Shmil1\n\n58) shmil1: Trade G1 R1 Shmil1\n\n59) Mandrel: Attack G3S Shmil1\n\n60) shmil1: Pass\n\n61) Mandrel: Attack R1S Shmil1\n\n\tMandrel: Good game!\n\nHomeworlds Online (SDG# 16618)\nStarted: 2010.6.19, Ended: 2010.9.3\nParticipants: MagicJohn (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld Y3 B2 G3\n\n2) MagicJohn: Homeworld B1 G2 R3\n\tMandrel: Have a good game!\r\n\n\tMagicJohn: Thanks, you too. I'm a little new at this game (3rd try). I guess I'll find out how much my learning curve has flattened in my dotage. \n\n3) Mandrel: Build G1 Mandrel\n\tMandrel: Cool, I'm still learnin the ropes myself!\r\n\n\n4) MagicJohn: Build R1 Magicjohn\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) MagicJohn: Trade R1 Y1 Magicjohn\n\n7) Mandrel: Build G1 Mandrel\n\n8) MagicJohn: Build Y1 Magicjohn\n\n9) Mandrel: Trade G1 Y1 Mandrel\n\n10) MagicJohn: Build Y2 Magicjohn\n\n11) Mandrel: Build Y2 Mandrel\n\n12) MagicJohn: Trade Y2 G2 Magicjohn\n\n13) Mandrel: Discover Y1 Mandrel G1 Relief\n\n14) MagicJohn: Discover Y1 Magicjohn G3 Boonies\n\n15) Mandrel: Build Y2 Relief\n\n16) MagicJohn: Sacrifice G2 Magicjohn\nBuild Y2 Boonies\nBuild Y3 Magicjohn\n\n17) Mandrel: Build G1 Mandrel\n\n18) MagicJohn: Move Y1 Boonies Relief\n\n19) Mandrel: Sacrifice R1 Mandrel\nAttack Y1S Relief\n\n20) MagicJohn: Move Y2 Boonies Relief\nCatastrophe Relief Yellow\n\n21) Mandrel: T G1 R1 Mandrel\n\tMagicJohn: Shouldda moved my y2 instead of my y1 last turn. Rats!\n\tMandrel: How frustrating! At least you've still got two larges\n\n22) MagicJohn: Trade Y1 G1 Magicjohn\n\tMagicJohn: That was kinda my plan. I'm not sure whether that small advantage is worth the sacrifice. Guess I'll find out.\n\n23) Mandrel: B G1 Mandrel\n\n24) MagicJohn: Build Y1 Magicjohn\n\n25) Mandrel: T G1 B1 Mandrel\n\n26) MagicJohn: Trade Y1 B1 Magicjohn\n\n27) Mandrel: Build G1 Mandrel\n\n28) MagicJohn: Build B2 Magicjohn\n\n29) Mandrel: D B1 Mandrel G1 Relief\n\n30) MagicJohn: Discover B1 Magicjohn G3 Plopplopfizzfiz\n\n31) Mandrel: B Y1 Mandrel\n\n32) MagicJohn: Build Y1 Magicjohn\n\n33) Mandrel: M Y1 Mandrel Relief\n\n34) MagicJohn: Trade Y3 G3 Magicjohn\n\n35) Mandrel: B G2 Mandrel\n\n36) MagicJohn: Discover B2 Magicjohn Y3 Arrakis\n\n37) Mandrel: T G2 R2 Mandrel\n\n38) MagicJohn: Move G1 Magicjohn Plopplopfizzfiz\n\n39) Mandrel: B G2 Mandrel\n\n40) MagicJohn: Trade B1 Y1 Plopplopfizzfiz\n\n41) Mandrel: B Y2 Relief\n\n42) MagicJohn: Build Y2 Magicjohn\n\n43) Mandrel: T G2 B2 Mandrel\n\n44) MagicJohn: Build Y3 Plopplopfizzfiz\n\n45) Mandrel: M G1 Mandrel Relief\n\n46) MagicJohn: Move Y1 Plopplopfizzfiz Relief\n\n47) Mandrel: S R1 Mandrel\nAttack Y1S Relief\n\n48) MagicJohn: Sacrifice Y2 Magicjohn\nMove R3 Magicjohn Arrakis\nMove R3 Arrakis Relief\n\n49) Mandrel: S Y2 Relief\nDiscover G1 Relief B3 Apprehension\nMove B1 Relief Apprehension\n\n50) MagicJohn: Attack Y1 Relief\n\n51) Mandrel: B G2 Apprehension\n\n52) MagicJohn: Move G3 Magicjohn Arrakis\n\n53) Mandrel: S Y2 Mandrel\nMove B1 Apprehension Magicjohn\nMove G2 Apprehension Magicjohn\n\n54) MagicJohn: Sacrifice Y3 Plopplopfizzfiz\nMove R3 Relief Arrakis\nMove R3 Arrakis Magicjohn\nPass\n\n55) Mandrel: S G3 Mandrel\nBuild G2 Magicjohn\nBuild B1 Magicjohn\nBuild B3 Magicjohn\nC Magicjohn Blue\n\n56) MagicJohn: Attack G2 Magicjohn\n\n57) Mandrel: B G3 Magicjohn\nCatastrophe Magicjohn Green\n\tMagicJohn: Spite check.....\n\tMagicJohn: Well played!\n\tMandrel: Cheers, good game.\n\n\nHomeworlds Online (SDG# 16714)\nVariants: "No undo, Sinister"\nStarted: 2010.6.22, Ended: 2010.7.6\nParticipants: zara2stra (S), goulo (N), AdamBadura (E)\nWinner: AdamBadura\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) AdamBadura: Homeworld B1 G2 Y3\n\tgoulo: I'm playing my first game in the Homeworlds Ladder and it turned quite strange/interesting. I killed his 3-ship soon, which I thought would give me a quick win afterwards, but now he has several pesky 1-ships like annoying mosquitoes at my homeworld which I can't capture safely or easily. :)\r\nJoin the ladder and we can meta-compete to see who of us can get the highest. :)\n\n3) zara2stra: Homeworld Y3 G1 B3\n\tAdamBadura: How to join it? How does it work? What is it that ladder?\n\n4) goulo: Build Y1 Goulo\n\tgoulo: See the link "Ladders" at top of page: http://superdupergames.org/?page=ladders\r\n\r\nBasically you can challenge someone up to 5 positions higher than you, and if you lose, nothing happens, but if you win, you move up to their place.\r\n\r\nI advise clicking user info to verify that the person is active recently. Some people haven't logged in for months or over a year, so I assume there is no use in challenging them...\n\n5) AdamBadura: Build Y1 Adambadura\n\n6) zara2stra: Build B1 Zara2stra\n\tAdamBadura: I did.\n\tgoulo: Great! In the forum I requested that a Branches ladder be created, but so far there was no reply. So I am currently in the ladders for Homeworlds, Alien City, and Mirador (a cool abstract 2-player connection game)\n\tgoulo: Sadly we still don't have 6 in the Mirador ladder to activate it. So feel free to check out Mirador and join it if you like the game. :)\n\tAdamBadura: This system sucks. From 5 available (to challange) players two are already in play (you and the other), two didn't log in for 2 weeks and 1 for over a year.\n\tgoulo: So challenge one of the 2-week people. Or wait a day or so and I'll probably (incredible to me - it's a good lesson!) lose my ladder game soon (where I killed his 3-ship and now I'll probably lose, so weird!!!).\n\n7) goulo: Discover Y1 Goulo G1 Smeraldeto\n\tzara2stra: Sorry again for the time it took me to get to SDG - I'm having a real hell at where I work\n\n8) AdamBadura: Trade Y1 R1 Adambadura\n\tgoulo: No problem! Good luck with it!\n\n9) zara2stra: Build B1 Zara2stra\n\n10) goulo: Build Y1 Goulo\n\n11) AdamBadura: Build R1 Adambadura\n\tgoulo: By the way, I totally lost that ladder game. Very surprising interesting lesson for me! Killing the enemy 3-ship too early can be fatal if you yourself have to sacrifice too much in the process of killing their 3-ship.\n\n12) zara2stra: Trade B1 R1 Zara2stra\n\tAdamBadura: I have seen that game (in the logs) and trace it move by move. (It was a quick one.)\r\n\r\nI don't think that killing 3 ship was to much to early. There was just "bad luck" that you hadn't any R ship in your homeworld and he was able to reach it within a single move (with sacrificing). If you wouldn't destroy his 3 ship the same might have happened.\r\n\r\nI think you mistake was hope that you will cope with the problem. You were afraid of loosing your 3 ship in a catastrophe so you lost the game instead. You should have acknowledge earlier that your 3 ship is lost and accept catastrophe. (Its not your first time - you already lost in that way with me once.)\r\n\r\nWhat I concluded from that game is that in 2 player game it seems extremely important to constantly keep R ship it your homeworld even at the beginning of the game. 2 player games are far more aggressive because there is much less back-watching. With 3 players if I attack my left opponent he will go into defence and make it easier for his left opponent. But his left opponent is my right one and he will use that occasion to press my stronger and so I will have to retreat. The cycle closes. With two players it is far easier.\n\tAdamBadura: By the way I am now fighting with him/her. I hope I will do better.\r\n\r\nOne catastrophe was already there but I make it better for me (after catastrophe I hade 3,1,1 ships while he had only 3,1 and I had one of those ships in a different system so it was like 2 moves advantage).\n\n13) goulo: Trade Y1 R1 Goulo\n\tgoulo: I also wasted 2 moves at a critical moment after the catastrophe, changing my y3 to r3 and then having to change it back to y3 when he built a 2nd r1. I think I should have instead immediately moved my other y1 to a green world to start building elsewhere.\n\n14) AdamBadura: Discover R1 Adambadura G3 Shipyard\n\n15) zara2stra: Build R2 Zara2stra\n\n16) goulo: Build R2 Goulo\n\n17) AdamBadura: Build R2 Shipyard\n\n18) zara2stra: Discover R2 Zara2stra G2 Mostlyharmless\n\n19) goulo: Move R2 Goulo Smeraldeto\n\n20) AdamBadura: Build Y1 Adambadura\n\n21) zara2stra: Move B1 Zara2stra Mostlyharmless\n\n22) goulo: Build Y1 Goulo\n\n23) AdamBadura: Move Y1 Adambadura Shipyard\n\n24) zara2stra: Trade B1 Y1 Mostlyharmless\n\n25) goulo: Build Y2 Goulo\n\n26) AdamBadura: Build Y2 Adambadura\n\n27) zara2stra: Build Y2 Mostlyharmless\n\n28) goulo: Trade Y1 B1 Goulo\n\n29) AdamBadura: Discover R1 Shipyard Y2 Outpost\n\n30) zara2stra: Build B1 Zara2stra\n\n31) goulo: Move B1 Goulo Smeraldeto\n\n32) AdamBadura: Trade Y2 G2 Adambadura\n\n33) zara2stra: Move B1 Zara2stra Mostlyharmless\n\n34) goulo: Trade Y2 G2 Goulo\n\n35) AdamBadura: Sacrifice G2 Adambadura\nBuild R2 Adambadura\nBuild R3 Adambadura\n\n36) zara2stra: Build R3 Mostlyharmless\n\n37) goulo: Sacrifice G2 Goulo\nBuild R3 Goulo\nBuild R3 Smeraldeto\n\n38) AdamBadura: Move R1 Adambadura Shipyard\n\n39) zara2stra: Trade Y1 G1 Mostlyharmless\n\n40) goulo: Build Y1 Goulo\n\n41) AdamBadura: Build Y1 Shipyard\n\n42) zara2stra: Discover R2 Mostlyharmless Y3 Luna\n\tAdamBadura: I managed to regain our honour by defeating shmil1.\r\n\r\nIt was an even quicker game than yours (around 20 rounds). We lost 3-size ships quite soon (I put myself in risk of catastrophe but it could be done only by him sacrificing his own 3-size ship so I took my chances and he decided to sacrifice).\r\n\r\nIn general I think he made 3 major mistakes during the game and the last one costed him the game. HE possibly knew that his last action was bad but he was already in such bad possition that all he could count for was either my mistake or his quick and painless death. So I became the Grim Reaper. :)\n\tgoulo: Congrats!\n\n43) goulo: Build Y2 Smeraldeto\n\n44) AdamBadura: Build Y2 Adambadura\n\n45) zara2stra: Move R2 Luna Outpost\n\n46) goulo: Discover R2 Smeraldeto Y3 Citronego\n\n47) AdamBadura: Discover R1 Outpost G3 Betteroutpost\n\n48) zara2stra: Move G1 Mostlyharmless Zara2stra\n\n49) goulo: Move R3 Smeraldeto Citronego\n\n50) AdamBadura: Discover R3 Adambadura G3 Backyard\n\n51) zara2stra: Move G1 Zara2stra Outpost\n\n52) goulo: Move R3 Goulo Smeraldeto\n\n53) AdamBadura: Move Y2 Adambadura Backyard\n\n54) zara2stra: Build B1 Zara2stra\n\n55) goulo: Build B2 Smeraldeto\n\n56) AdamBadura: Move R3 Backyard Outpost\n\n57) zara2stra: Move R2 Outpost Betteroutpost\n\n58) goulo: Move B1 Smeraldeto Citronego\n\n59) AdamBadura: Attack G1S Outpost\n\n60) zara2stra: Attack R1E Betteroutpost\n\n61) goulo: Trade R2 G2 Citronego\n\n62) AdamBadura: Build R2 Adambadura\n\n63) zara2stra: Build B2 Mostlyharmless\n\n64) goulo: Build G1 Citronego\n\tgoulo: I have lost my elite Homeworlds skills lately :( :( :(\n\n65) AdamBadura: Build G2 Outpost\n\tAdamBadura: That started some time ago... ;) You win 3 player games bacause zara2stra helps you. :)\n\tgoulo: Ha!\n\n66) zara2stra: Sacrifice Y2 Mostlyharmless\nMove R2 Betteroutpost Smeraldeto\nMove R1 Betteroutpost Smeraldeto\n\n67) goulo: Trade G2 B2 Citronego\n\tzara2stra: After all the games we are playing now, I will have to take a break. For the next two weeks I won't be as often online :(\n\n68) AdamBadura: Build Y2 Adambadura\n\n69) zara2stra: Attack Y2N Smeraldeto\n\n70) goulo: Attack Y2S Smeraldeto\n\tgoulo: a2na and I will be away this weekend (starting around 16.00 today). But back on sunday evening.\n\n71) AdamBadura: Move G1 Outpost Backyard\n\tgoulo: zara2stra, I propose we do not capture and recapture the y2 ship back and forth while adam continues to build and progress. :)\n\n72) zara2stra: Attack Y2N Smeraldeto\n\tzara2stra: Well, as I see it, from my inferior position, you will loose much more in loosing your turn to recapture it. And someone might still want to catastrophe this system...\n\n73) goulo: Attack R2S Smeraldeto\n\n74) AdamBadura: Move R1 Shipyard Smeraldeto\nCatastrophe Smeraldeto R\n\n75) zara2stra: Sacrifice R3 Mostlyharmless\nAttack B2N Smeraldeto\nAttack Y1N Smeraldeto\nPass\n\tAdamBadura: Problem solved. No more arguing. ;)\n\tzara2stra: Thanks - that's exactly what I meant when I moved those ships in the first place :)\n\n76) goulo: Build B3 Citronego\n\n77) AdamBadura: Build G2 Outpost\n\tAdamBadura: Great! Now I will lose B...\n\n78) zara2stra: Build B3 Smeraldeto\n\n79) goulo: Build G3 Citronego\n\n80) AdamBadura: Sacrifice Y2 Backyard\nMove G2 Outpost Citronego\nMove G2 Outpost Citronego\nCatastrophe Citronego G\n\n81) zara2stra: Trade B2 Y2 Mostlyharmless\n\n82) goulo: Discover R3 Citronego R1 Rubeneto\n\n83) AdamBadura: Trade R2 B2 Adambadura\n\n84) zara2stra: Build B3 Mostlyharmless\n\n85) goulo: Sacrifice Y3 Goulo\nMove R3 Rubeneto Goulo\nMove B1 Citronego Adambadura\nMove B2 Citronego Adambadura\nCatastrophe Adambadura B\n\n86) AdamBadura: Build Y3 Shipyard\n\n87) zara2stra: Move Y1 Smeraldeto Shipyard\nCatastrophe Shipyard Y\n\tAdamBadura: goulo, I will have my revange on you!\n\tAdamBadura: By the way I climbed up 5 steps in the ladder. But in an unsatisfable manner. The game was ended (automatically) because player did not make his setup move after requested time. But I hope people in higher parts of the ladder tend to play more.\n\n88) goulo: Build Y1 Goulo\n\n89) AdamBadura: Build R1 Shipyard\n\n90) zara2stra: Sacrifice Y2 Smeraldeto\nMove B3 Smeraldeto Goulo\nMove B2 Smeraldeto Goulo\n\n91) goulo: Attack B3S Goulo\n\n92) AdamBadura: Move Y2 Adambadura Shipyard\n\n93) zara2stra: Build B1 Goulo\nCatastrophe Goulo B\n\n94) goulo: Trade B3 G3 Citronego\n\n95) AdamBadura: Build Y1 Shipyard\n\n96) zara2stra: Trade B1 R1 Mostlyharmless\n\n97) goulo: Discover Y1 Goulo B1 Safireto\n\n98) AdamBadura: Build R2 Adambadura\n\n99) zara2stra: Build R2 Mostlyharmless\n\n100) goulo: Sacrifice G3 Citronego\nBuild Y1 Safireto\nBuild Y2 Safireto\nBuild Y3 Goulo\n\n101) AdamBadura: Move Y1 Shipyard Safireto\nCatastrophe Safireto Y\n\n102) zara2stra: Sacrifice Y2 Mostlyharmless\nMove R1 Mostlyharmless Goulo\nMove R2 Mostlyharmless Goulo\nCatastrophe Goulo R\n\n103) goulo: Discover Y1 Goulo B1 Safireto\n\n104) AdamBadura: Sacrifice Y2 Shipyard\nMove R3 Outpost Zara2stra\nMove Y3 Adambadura Zara2stra\n\tgoulo: Ouch! I see I will not survive much longer...!\n\n105) zara2stra: Build R1 Zara2stra\n\n106) goulo: Build Y1 Goulo\n\n107) AdamBadura: Sacrifice R3 Zara2stra\nAttack B3S Zara2stra\nAttack R1S Zara2stra\nAttack R1S Zara2stra\n\n108) zara2stra: Build B1 Zara2stra\n\tAdamBadura: I think goulo you will last to the very end of the game... ;)\n\n109) goulo: Trade Y1 R1 Safireto\n\n110) AdamBadura: Sacrifice R2 Shipyard\nAttack B1S Zara2stra\nAttack B1S Zara2stra\n\tgoulo: Yay! I wasn't eliminated! :)\r\n\r\nNow you should learn Alien City to celebrate your victory...\n\tAdamBadura: Interesting game. Somewhere in the middle of the game I though I will lose as my position was worse they yours and I had no idea what to do. Then goulo prpared to destroy B star in my system. But this acutally I considered an advantage. It made a direct connection from my system to zara2stra's so I could keep 3-size ships in my system to protect it while being still able to move to zara2stra in a single move.\r\n\r\nAll would be fine if goulo would indeed destroy B. But he waited. And my position was becoming worse as I could build much and zara2stra was nearing goulo's destruction. So I made a B ship in my home worldd to lure goulo. And it worked. I lost B. But it costed goulo one lestt B ship. And it was a B3 ship. So I still could not make the prepared attack because goulo in respons would invide my own system and conquere it faster.\r\n\r\nSo I waited for some mistake or a bit of luck. And after the catastrophes period I come out stronger. It seems to me I lost less the you, or at least less in key positions which I needed to attack zara2stra.\r\n\r\nAnotherone for me. :) A good one - thanks! \n\n\nHomeworlds Online (SDG# 16725)\nVariants: "Hard time"\nStarted: 2010.6.23, Ended: 2010.6.27\nParticipants: shmil1 (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld G1 B2 R3\n\n2) shmil1: Homeworld G1 B2 Y3\n\n3) AdamBadura: Build R1 Adambadura\n\n4) shmil1: Build Y1 Shmil1\n\n5) AdamBadura: Trade R1 Y1 Adambadura\n\n6) shmil1: Discover Y1 Shmil1 G3 Zelena\n\n7) AdamBadura: Build R1 Adambadura\n\n8) shmil1: Build Y1 Shmil1\n\n9) AdamBadura: Move R1 Adambadura Zelena\n\n10) shmil1: Build Y2 Zelena\n\n11) AdamBadura: Attack Y1 Zelena\n\n12) shmil1: Build Y2 Zelena\n\n13) AdamBadura: Build Y2 Zelena\nCatastrophe Zelena Y\n\n14) shmil1: Trade Y1 R1 Shmil1\n\n15) AdamBadura: Build Y1 Adambadura\n\tAdamBadura: What "Hard time" variant means? How rules are changed?\n\tshmil1: no idea, somehow connected to time you have for a move...\n\n16) shmil1: Build R1 Shmil1\n\n17) AdamBadura: Build R2 Zelena\n\n18) shmil1: Discover R1 Shmil1 G3 Cesta\n\n19) AdamBadura: Move Y1 Adambadura Zelena\n\n20) shmil1: Build R2 Cesta\n\n21) AdamBadura: Trade Y1 B1 Adambadura\n\n22) shmil1: Build R2 Cesta\n\n23) AdamBadura: Build R3 Adambadura\n\n24) shmil1: Sacrifice Y3 Shmil1\nMove R1 Cesta Adambadura\nMove R2 Cesta Adambadura\nMove R2 Cesta Shmil1\nCatastrophe Adambadura Red\n\n25) AdamBadura: Build B1 Adambadura\n\n26) shmil1: Trade R2 Y2 Shmil1\n\n27) AdamBadura: Move R1 Zelena Adambadura\n\n28) shmil1: Build R1 Shmil1\n\n29) AdamBadura: Build R2 Zelena\n\n30) shmil1: Move R1 Shmil1 Zelena\n\n31) AdamBadura: Sacrifice B1 Adambadura\nTrade R2 Y2 Zelena\n\n32) shmil1: Build R2 Zelena\n\n33) AdamBadura: Sacrifice R2 Zelena\nAttack R2 Zelena\nAttack R1 Zelena\n\n34) shmil1: Build R2 Shmil1\n\n35) AdamBadura: Discover R1 Zelena Y2 Outpost\n\n36) shmil1: Sacrifice Y2 Shmil1\nMove R2 Shmil1 Zelena\nMove R2 Zelena Adambadura\n\n37) AdamBadura: Move Y2 Zelena Shmil1\n\n38) shmil1: Build R2 Shmil1\n\n39) AdamBadura: Sacrifice R2 Zelena\nAttack R2 Shmil1\nAttack R1 Shmil1\n\n\nHomeworlds Online (SDG# 16695)\nStarted: 2010.6.24, Ended: 2010.8.29\nParticipants: daselva (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R1 B2 G3\n\tMandrel: Have a good game!\n\n2) daselva: Homeworld G3 Y2 B3\n\n3) Mandrel: Build G1 Mandrel\n\tdaselva: thank you,I will try...I´m doing my first steps ,so forgive me if I do wrong things...\n\tMandrel: No worries, I'm not particularly experienced, but if you have any questions feel free to ask and I'll help if I can.\n\n4) daselva: Build B1 Daselva\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) daselva: Trade B3 R3 Daselva\n\n7) Mandrel: B Y1 Mandrel\n\n8) daselva: Build B1 Daselva\n\n9) Mandrel: Build G1 Mandrel\n\n10) daselva: Build R1 Daselva\n\n11) Mandrel: Discover Y1 Mandrel G3 Contentment\n\n12) daselva: Trade B1 G1 Daselva\n\n13) Mandrel: Build Y1 Mandrel\n\n14) daselva: Trade R3 Y3 Daselva\n\n15) Mandrel: Build Y2 Contentment\n\n16) daselva: Discover Y3 Daselva G1 Maybe\n\n17) Mandrel: Trade Y1 B1 Mandrel\n\n18) daselva: Build B1 Daselva\n\n19) Mandrel: Move B1 Mandrel Contentment\n\n20) daselva: Move B1 Daselva Maybe\n\n21) Mandrel: B B2 Contentment\n\n22) daselva: Build G2 Daselva\n\n23) Mandrel: Trade B2 G2 Contentment\n\n24) daselva: Move G1 Daselva Maybe\n\n25) Mandrel: B B2 Contentment\n\n26) daselva: Discover B1 Maybe Y3 S3\n\n27) Mandrel: T B2 R2 Contentment\n\n28) daselva: Sacrifice Y3 Maybe\nMove G1 Maybe Contentment\nDiscover G2 Daselva Y1 S2\nMove G2 S2 Contentment\nCatastrophe Contentment Green\n\n29) Mandrel: B Y1 Mandrel\n\n30) daselva: Trade B1 G1 S3\n\n31) Mandrel: T Y1 B1 Mandrel\n\n32) daselva: Build G1 S3\n\n33) Mandrel: Build Y1 Mandrel\n\n34) daselva: Build R1 Daselva\n\n35) Mandrel: D Y1 Mandrel G3 Lethargy\n\n36) daselva: Build R2 Daselva\n\n37) Mandrel: B Y1 Lethargy\n\n38) daselva: Trade R2 Y2 Daselva\n\n39) Mandrel: B Y2 Lethargy\n\n40) daselva: Discover G1 S3 B2 S4\n\n41) Mandrel: B Y3 Mandrel\n\n42) daselva: Build G2 S4\n\n43) Mandrel: B Y3 Mandrel\n\n44) daselva: Move G1 S3 Mandrel\n\n45) Mandrel: A G1S Mandrel\n\n46) daselva: Sacrifice Y2 Daselva\nDiscover G1 S4 R3 S5\nMove G1 S5 Mandrel\nCatastrophe Mandrel Green\n\n47) Mandrel: D Y2 Lethargy G1 Rundown\n\n48) daselva: Trade G2 Y2 S4\n\n49) Mandrel: Build Y3 Rundown\n\n50) daselva: Move R1 Daselva Rundown\n\n51) Mandrel: Sacrifice B1 Mandrel\nT Y3 R3 Rundown\n\n52) daselva: Build R2 Rundown\n\n53) Mandrel: Sacrifice Y3 Mandrel\nMove R3 Rundown Daselva\nMove Y2 Rundown Daselva\nPass\n\n54) daselva: Build R2 Rundown\n\n55) Mandrel: Sacrifice R3 Daselva\nAttack R1S Daselva\nAttack B1S Daselva\nPass\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 16609)\nVariants: "Hard time"\nStarted: 2010.6.24, Ended: 2010.8.19\nParticipants: dlwillson (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\n2) dlwillson: Homeworld B3 R1 G3\n\tDanner: Hi! I have finished my exams, let's play :)\n\tdlwillson: Excellent, thanks for taking my challenge, Danner!\n\n3) Danner: Homeworld B1 Y2 G3\n\n4) dlwillson: B G1 Dlwillson\n\tDanner: My pleasure!\n\n5) Danner: Build G1 Danner\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) Danner: Trade G1 B1 Danner\n\n8) dlwillson:\nB B2 Dlwillson\n\n9) Danner: Build B2 Danner\n\n10) dlwillson: Build G1 Dlwillson\n\n11) Danner: Discover B2 Danner Y3 Artemus\n\n12) dlwillson: T B2 Y2 Dlwillson\n\n13) Danner: Build B2 Danner\n\n14) dlwillson: D B1 Dlwillson G2 Jimwest\n\n15) Danner: Trade B1 R1 Danner\n\n16) dlwillson: Trade G1 R1 Dlwillson\n\n17) Danner: Build R2 Danner\n\n18) dlwillson: B R2 Dlwillson\n\n19) Danner: Build R2 Danner\n\n20) dlwillson: M R1 Dlwillson Jimwest\n\n21) Danner: Trade R2 Y2 Danner\n\n22) dlwillson: B R2 Jimwest\n\n23) Danner: Move R1 Danner Artemus\n\n24) dlwillson: T R1 Y1 Jimwest\n\n25) Danner: Build G1 Danner\n\n26) dlwillson: B Y1 Jimwest\n\n27) Danner: Discover B2 Danner Y3 Garrett\n\n28) dlwillson: Build Y1 Dlwillson\n\n29) Danner: Discover G1 Danner Y3 Gamall\n\tdlwillson: Good move. Thief 3? Hmm...\n\n30) dlwillson: Discover Y1 Jimwest B3 Miguelito\n\tDanner: Thx. Yes, have you played it?\n\n31) Danner: Discover Y2 Danner R3 Builder\n\n32) dlwillson: Discover R2 Dlwillson B2 Ulysses\n\tdlwillson: Nah. I was going for a Wild Wild West theme. Still fits with your Artemus. I suppose I'll have to play the Thief series sometime. Good?\n\tDanner: I liked that movie.\r\nYeah, if you like stealth games. I recommend you to start with T3, because the first two games are harder, and their graphics looks rather old. What I especially like in the series is its fantasy-steampunk world.\n\n33) Danner: Sacrifice G1 Gamall\nBuild Y3 Builder\n\tDanner: Builder is the god of the Hammerites. They represent order and technology. And they wear red. :)\n\n34) dlwillson: Trade Y2 G2 Dlwillson\n\n35) Danner: Move Y3 Builder Jimwest\n\n36) dlwillson: M R2 Jimwest Miguelito\n\n37) Danner: Move Y3 Jimwest Miguelito\n\n38) dlwillson: T R2 Y2 Miguelito\n\n39) Danner: Move Y3 Miguelito Ulysses\n\n40) dlwillson: S Y1 Jimwest\nM R2 Ulysses Miguelito\n\n41) Danner: Trade B2 G2 Garrett\n\n42) dlwillson: T Y1 G1 Miguelito\n\n43) Danner: Move Y3 Ulysses Miguelito\n\n44) dlwillson: Sacrifice G2 Dlwillson\nBuild Y1 Miguelito\nBuild Y1 Miguelito\nCatastrophe Miguelito Y\n\n45) Danner: Move G3 Danner Miguelito\n\tDanner: Good move!\n\tdlwillson: Thank you! About WWW: I was talking about the TV show, not the movie. The Will Smith WWW movie did everything for WWW that the Matt Broderick Godzilla movie did for Godzilla.\n\tDanner: Sorry for being inactive lately. The situation is complicated in both the game and the real life.\n\tdlwillson: No worries. I'm taking a whole day for every turn in my game with mneme. You're both very good, and I have to be on my toes...\n\n46) dlwillson: Trade R2 G2 Miguelito\n\tDanner: Thank you for your patience.\n\n47) Danner: Trade G3 R3 Miguelito\n\n48) dlwillson: B G1 Dlwillson\n\n49) Danner: Attack G2S Miguelito\n\n50) dlwillson: D G1 Dlwillson B2 Train\n\n51) Danner: Attack G1S Miguelito\n\n52) dlwillson: B G1 Train\n\n53) Danner: Trade G1 Y1 Miguelito\n\n54) dlwillson: Build G1 Dlwillson\n\n55) Danner: Build G3 Miguelito\n\n56) dlwillson: Trade G3 Y3 Dlwillson\n\n57) Danner: Sacrifice G3 Miguelito\nBuild G3 Miguelito\nBuild G3 Miguelito\nBuild G3 Garrett\n\n58) dlwillson: Sacrifice Y1 Dlwillson\nMove G1 Train Miguelito\nCatastrophe Miguelito G\n\n59) Danner: Move R3 Miguelito Train\n\n60) dlwillson: B Y1 Dlwillson\n\n61) Danner: Attack G1S Train\n\n62) dlwillson: Move Y1 Dlwillson Jimwest\n\n63) Danner: Move R1 Artemus Jimwest\n\n64) dlwillson: Build Y1 Jimwest\n\n65) Danner: Attack Y1S Jimwest\n\n66) dlwillson: Build Y2 Dlwillson\n\n67) Danner: Attack Y1S Jimwest\n\n68) dlwillson: Trade Y2 R2 Dlwillson\n\n69) Danner: Sacrifice G3 Garrett\nBuild R1 Train\nBuild R2 Danner\nBuild Y2 Jimwest\n\n70) dlwillson: B R3 Dlwillson\n\n71) Danner: Sacrifice Y2 Jimwest\nMove R1 Train Dlwillson\nMove R3 Train Miguelito\nCatastrophe Dlwillson R\n\n\tdlwillson: I need a free move, then I can do some damage, but there's no free move, so that was more like going out with a small bang. Good game, Danner. We'll have to play again some time.\n\tDanner: Thx for the game.\n\nHomeworlds Online (SDG# 16740)\nVariants: "Hard time"\nStarted: 2010.6.25, Ended: 2010.6.28\nParticipants: mathochist (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld G2 B3 Y3\n\n\tgoulo: Hi, have fun!\n\nHomeworlds Online (SDG# 16756)\nVariants: "Hard time"\nStarted: 2010.6.27, Ended: 2010.7.3\nParticipants: Danner (S), jeep (N)\nWinner: Danner\n\n1) jeep: Homeworld R1 B2 G3\n\tDanner: Hi!\r\nHave a great game!\n\tjeep: Hi... I don't think I got notified that this game was ready. You too.\n\n2) Danner: Homeworld B1 G2 R3\n\n\tDanner: :(\n\nHomeworlds Online (SDG# 16768)\nVariants: "Hard time"\nStarted: 2010.6.30, Ended: 2010.7.1\nParticipants: goulo (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld B2 G1 R3\n\n2) goulo: Homeworld G2 B3 Y3\n\n3) AdamBadura: Build R1 Adambadura\n\tgoulo: I already challenged some other guy in the ladder, but he's not responded yet, so I finally accepted your challenge. I guess if he responds/accepts then I'll be in 2 ladder games at the same time or something. I didn't realize you can challenge me when I have a challenge pending with someone else. The mysteries of the ladder!\n\n4) goulo: Build Y1 Goulo\n\tAdamBadura: No. I cannot. But it seems challenge is automatically rejected after some time (24-48 hours) which is good IMHO.\n\tAdamBadura: Anyway it was obvious that sooner or later we will fight with each other as we are here all the time... ;)\n\n5) AdamBadura: Trade R1 Y1 Adambadura\n\tgoulo: Strange, it says "Challenges remain open for 7 days before being counted as being declined." and he didn't explicitly decline. Maybe while the challenge was pending, you could also challenge me, and then when I get into one Ladder game it nullifies any other pending challenges with me.\n\tgoulo: But we shouldn't KEEP challenging each other, or we'll not both climb up the ladder! We'll only climb onto the other and push the other down. :)\n\n6) goulo: Trade Y1 R1 Goulo\n\tAdamBadura: I had it already twice that I challenged someone and there after 24-48 hours I can again challenge someone without any message or anything.\r\n\r\nYes. But this time challenging you was a good move for me as you were much higher and I think I am able to defeat you... ;)\n\tgoulo: We shall see! :)\n\n7) AdamBadura: Build Y1 Adambadura\n\tgoulo: speaking of ladders, have a look at Mirador. It's not a pyramid game, but still a cool abstract game, and its ladder is inactive from having only 5 players, not the necessary 6 to activate it. :)\n\tgoulo: Heh, I just joined the Blam! ladder too.\r\nI requested a Branches ladder in the forum, but Aaron has not replied. :/\n\tAdamBadura: By the way. Yesterday I played Chicago Express with Arturion through Vassal (actually it was Wabash Cannonball but it is the same game). It was a two player game.\r\n\r\nWe interrupted it after 2nd round as I had large both money and dividend advantage and there was no point in continuing.\r\n\r\nHe overpaid initial auctions. Thanks to this after first round I had 3 shares while he had only 2 and I had more money. Also I bought yellow and green which have larger initial income. While he chose red and blue which are typically considered better as they have less shares to share the income.\r\n\r\n2 player game of CE is very non-forgiving. In multiplayer game you can count on others mistakes or king making effect. But in two player mode once you make a mistake it is your end (unless your opponent makes something stupid too). It is just a math game in this mode. But still want to test it more.\n\n8) goulo: Build R1 Goulo\n\tgoulo: It just seems less interesting 2-player due to completely losing the "temporary alliance" aspect (that you might own 1 share and I own 2 shares of a company, so the company helps me more than you, but we both still want it to succeed since it helps us against the other players). I guess I'd try it again 2-player sometime, but it seems to lose a lot of the core of the game.\n\n9) AdamBadura: Discover Y1 Adambadura G3 Shipyard\n\n10) goulo: Discover R1 Goulo G1 Smeraldeto\n\n11) AdamBadura: Build Y1 Shipyard\n\n12) goulo: Build Y2 Goulo\n\n13) AdamBadura: Build Y2 Adambadura\n\n14) goulo: Move Y2 Goulo Smeraldeto\n\n15) AdamBadura: Move Y1 Shipyard Smeraldeto\n\n16) goulo: Attack Y1 Smeraldeto\n\n17) AdamBadura: Build Y2 Shipyard\n\n18) goulo: Build Y3 Goulo\n\n19) AdamBadura: Discover Y1 Shipyard G2 Docks\n\n20) goulo: Discover Y2 Smeraldeto Y3 Citronego\n\n21) AdamBadura: Trade Y1 G1 Adambadura\n\tgoulo: BTW it looks like my usual Wednesday evening wargaming is not going to happen. Are you interested in coming over this evening to try Gnostica or some other games?\n\tAdamBadura: Saddly no. Today I cannot.\r\n\r\nNice move with taking Y3 as start. Why haven't I forseen that! This puts me in a bad situation...\n\n22) goulo: Trade Y3 G3 Goulo\n\n23) AdamBadura: Move G1 Adambadura Shipyard\n\n24) goulo: Build R1 Goulo\n\n25) AdamBadura: Build G2 Shipyard\n\n26) goulo: Sacrifice Y2 Citronego\nMove G3 Goulo Smeraldeto\nMove G3 Smeraldeto Shipyard\nCatastrophe Shipyard G\n\n27) AdamBadura: Build R2 Adambadura\n\tAdamBadura: Was it worth it? I considered my previous poisition as very bad. Now I do not...\n\n28) goulo: Build R2 Smeraldeto\n\tgoulo: I'm not sure if it was worth it or not. We lost similar amounts of ship points/pips, but you lost more ships, so I supposed it was worth it. Time will tell. :)\n\n29) AdamBadura: Discover R2 Adambadura G3 Shipyard\n\n30) goulo: Discover R1 Goulo Y1 Citroneto\n\n31) AdamBadura: Build R2 Adambadura\n\n32) goulo: Build R3 Goulo\n\n33) AdamBadura: Build R3 Shipyard\n\n34) goulo: Discover R2 Smeraldeto Y3 Citronego\n\n35) AdamBadura: Build Y2 Adambadura\n\n36) goulo: Move R3 Goulo Smeraldeto\n\n37) AdamBadura: Move Y2 Adambadura Shipyard\n\n38) goulo: Trade Y3 B3 Goulo\n\n39) AdamBadura: Trade R3 G3 Adambadura\n\n40) goulo: Build R3 Goulo\n\n41) AdamBadura: Sacrifice G3 Adambadura\nBuild Y2 Docks\nBuild Y3 Adambadura\nBuild Y3 Shipyard\n\n42) goulo: Build B1 Goulo\n\tAdamBadura: A kind of Y technology denial strategy. ...but what now? ;)\n\n43) AdamBadura: Move R2 Shipyard Citroneto\n\tgoulo: hmm, yeah, that was probably a mistake on my part.\n\n44) goulo: Move R1 Citroneto Citronego\n\n45) AdamBadura: Discover Y1 Docks B3 Ontheway\n\n46) goulo: Move R1 Citronego Citroneto\n\n47) AdamBadura: Attack R1 Citroneto\n\n48) goulo: Move R2 Citronego Citroneto\n\n49) AdamBadura: Sacrifice Y2 Adambadura\nMove R1 Citroneto Goulo\nMove R2 Citroneto Goulo\nCatastrophe Goulo R\n\n50) goulo: Trade B1 R1 Goulo\n\tAdamBadura: Nice dilema for me... :)\n\tAdamBadura: I knew there was a plan behind your previous move (invading my system with your R1 ship) but I just couldn't see what it was and decided to check it... ;)\n\n51) AdamBadura: Trade R2 G2 Adambadura\n\n52) goulo: Trade B3 Y3 Goulo\n\n53) AdamBadura: Build Y2 Adambadura\n\tgoulo: Yeah, but it was just a small clever trick that won't really change my ultimate defeat. :/\n\n54) goulo: Build R1 Goulo\n\n55) AdamBadura: Build R2 Shipyard\n\n56) goulo: Move R1 Smeraldeto Ontheway\n\n57) AdamBadura: Discover Y1 Ontheway B1 Stillontheway\n\n58) goulo: Move R3 Smeraldeto Shipyard\n\n59) AdamBadura: Sacrifice R2 Shipyard\nAttack R3 Shipyard\nPass\n\n60) goulo: Trade R1 G1 Goulo\n\n61) AdamBadura: Move G2 Adambadura Shipyard\n\n62) goulo: Move Y1 Smeraldeto Ontheway\n\tAdamBadura: Thanks! ;)\n\tgoulo: Desperate times call for desperate measures... unfortunately you didn't respond as I hoped. :)\n\n63) AdamBadura: Move R3 Shipyard Citroneto\n\n64) goulo: Move R2 Citroneto Goulo\n\n65) AdamBadura: Build R1 Shipyard\n\n66) goulo: Trade R1 G1 Ontheway\n\n67) AdamBadura: Move R3 Citroneto Ontheway\n\n68) goulo: Build Y1 Goulo\n\n69) AdamBadura: Attack Y1 Ontheway\n\n70) goulo: Sacrifice Y1 Goulo\nDiscover G1 Ontheway R1 Rubeneto\n\n71) AdamBadura: Move Y2 Docks Rubeneto\n\tgoulo: Interested in Gnostica etc tonight (18.30 or later)?\n\n72) goulo: Sacrifice Y3 Goulo\nMove G1 Rubeneto Shipyard\nMove G1 Goulo Stillontheway\nMove G1 Stillontheway Shipyard\nCatastrophe Shipyard G\n\tAdamBadura: I'm already appointed (cinema). Tomorrow my parents-in-law come to visit so I cannot as well.\r\n\r\nBut thnaks for asking. I would like to try that game sometime as you seem to be pushing on it hard... ;)\n\n73) AdamBadura: Sacrifice Y2 Rubeneto\nMove R3 Ontheway Stillontheway\nMove R3 Stillontheway Goulo\n\n74) goulo: Build R1 Goulo\nCatastrophe Goulo R\n\n\tAdamBadura: Suddenyl it is all so small... ;)\n\tgoulo: Interesting bug. It's supposed to be illegal to make a move that destroys your own homeworld. :)\n\tAdamBadura: :)\n\tAdamBadura: I think the first catastrophe you made was bad for you. I lost more but my position became better. Or at least I felt so.\n\tgoulo: With the benefit of hindsight, I must agree! :)\n\tgoulo: I think I've been analyzing too much in terms of material advantage (who has more ships, whose ships are worth more pips) and not enough in terms of position.\n\nHomeworlds Online (SDG# 16498)\nStarted: 2010.7.1, Ended: 2010.7.4\nParticipants: mathochist (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld B3 Y2 G3\n\n\tmathochist: Sorry. :( It's been a rough couple weeks for me, and I've fallen behind in all my games. \n\nHomeworlds Online (SDG# 16729)\nStarted: 2010.7.1, Ended: 2010.7.18\nParticipants: ZackStack (S), daselva (N)\nWinner: ZackStack\n\n1) daselva: Homeworld G3 Y2 B3\n\n2) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Greetings! Thanks for the challenge and have a good game.\n\n3) daselva: Build B1 Daselva\n\n4) ZackStack: Build G1 Zackstack\n\tdaselva: hello,sorry if I´m not a very good opponent but I´m doing my first steps...\n\tZackStack: I'll try to be gentle then! :-)\n\n5) daselva: Trade B1 R1 Daselva\n\tdaselva: please don´t I want to feel the game\n\n6) ZackStack: Trade G1 R1 Zackstack\n\n7) daselva: Build B1 Daselva\n\n8) ZackStack: Build R2 Zackstack\n\n9) daselva: Build R2 Daselva\n\n10) ZackStack: Trade R2 Y2 Zackstack\n\n11) daselva: Trade R1 Y1 Daselva\n\n12) ZackStack: Build G1 Zackstack\n\n13) daselva: Trade B3 G3 Daselva\n\n14) ZackStack: Build G1 Zackstack\n\n15) daselva: Build B1 Daselva\n\n16) ZackStack: Discover G1 Zackstack B3 Deepsea\n\n17) daselva: Discover B1 Daselva G1 Blue\n\n18) ZackStack: Build G2 Deepsea\n\n19) daselva: Build G2 Daselva\n\n20) ZackStack: Build G2 Deepsea\n\n21) daselva: Move G2 Daselva Blue\n\n22) ZackStack: Trade G2 Y2 Deepsea\n\tZackStack: I could have sacrificed the y2 in my home system to send one of my greens from DeepSea to your homeworld to cause a catastrophe... you might want to do something about that :-)\n\tdaselva: hello Zack thank you for your generousity...I´m a beginner and I´m trying to understand this game that I´m finding very intersting.The present situation is a new and interestingsituation for me.I´ve played like I did because I thought that by not having yellow power in DeepSEa you could´t go from there to my HW.Besides the two systemes are not conected... What can you tell me about this?\n\tdaselva: hello again...I understand that by sacrificing y2 in your HW you could bring one of your greens from DeepSea to blue and then from there to my HW,but once again,there is no yellow power in Blue...\n\n23) daselva: Trade B1 Y1 Blue\n\tZackStack: By sacrificing a ship of a certain color you may use its power even in a system that does not have that color. For instance if you sacrificed the Y1 at your homeworld you would be able to move one of your ships at Blue. This can lead to some very unexpected moves!\n\n24) ZackStack: Discover G1 Deepsea B1 Puddle\n\n25) daselva: Move R2 Daselva Puddle\n\n26) ZackStack: Sacrifice Y2 Deepsea\nMove G1 Puddle Daselva\nDiscover G2 Deepsea Y1 Spark\n\n27) daselva: Trade G3 R3 Daselva\n\n28) ZackStack: Sacrifice G3 Zackstack\nBuild G2 Daselva\nBuild G3 Daselva\nBuild G3 Zackstack\nCatastrophe Daselva Green\n\tZackStack: There. A sacrifice example for you ;-)\n\n29) daselva: Sacrifice G2 Blue\nBuild Y2 Blue\nBuild Y3 Daselva\n\n30) ZackStack: Build Y3 Zackstack\n\n31) daselva: Trade Y1 R1 Daselva\n\n32) ZackStack: Discover Y2 Zackstack G3 Melon\n\tdaselva: trade y1 r1 daselva\n\tdaselva: trade y1 r1 daselva\n\n33) daselva: Sacrifice Y1 Blue\nMove R2 Puddle Melon\n\tdaselva: (I must be sleeping)\n\tZackStack: Heh. I don't think I've ever done that twice before :-)\n\n34) ZackStack: Discover Y2 Melon G1 Pea\n\n35) daselva: Build R2 Melon\n\n36) ZackStack: Build Y1 Pea\n\n37) daselva: Sacrifice Y3 Daselva\nMove R2 Melon Zackstack\nMove R2 Melon Zackstack\nMove R1 Daselva Pea\nCatastrophe Zackstack Red\n\n\n38) ZackStack: Sacrifice Y3 Zackstack\nMove Y1 Pea Daselva\nMove Y2 Pea Daselva\nMove G2 Spark Daselva\n\n39) daselva: Attack G2 Daselva\n\n\tZackStack: It seems like I should have seen that coming... I guess the board was getting pretty busy :-)\n\n40) ZackStack: Sacrifice G1 Zackstack\nBuild Y1 Daselva\nCatastrophe Daselva Yellow\n\n\tZackStack: Thanks for the game! I hope you had a good time, and if nothing else got a better grasp of the power of sacrificing ships. Have fun learning Homeworlds and I'll be happy to play rated or unrated any time!\n\tdaselva: thank you I´ve learned a lot with you and with this game\n\nHomeworlds Online (SDG# 16787)\nVariants: "Hard time"\nStarted: 2010.7.1, Ended: 2010.7.4\nParticipants: rootbier (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld G1 B2 R3\n\n\nHomeworlds Online (SDG# 16588)\nStarted: 2010.7.3, Ended: 2010.7.3\nParticipants: Tank_7 (S), rootbier (N)\nWinner: rootbier\n\n\nHomeworlds Online (SDG# 16827)\nVariants: "Hard time"\nStarted: 2010.7.4, Ended: 2010.7.16\nParticipants: AdamBadura (S), captncavern (N)\nWinner: AdamBadura\n\n1) captncavern: Homeworld B2 G1 Y3\n\tcaptncavern: Good game!\n\n2) AdamBadura: Homeworld G3 B1 R3\n\n3) captncavern: Build Y1 Captncavern\n\n4) AdamBadura: Build R1 Adambadura\n\n5) captncavern: Trade Y1 R1 Captncavern\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) captncavern: Build Y1 Captncavern\n\n8) AdamBadura: Build R1 Adambadura\n\n9) captncavern: Trade Y1 G1 Captncavern\n\n10) AdamBadura: Trade R1 B1 Adambadura\n\n11) captncavern: Build Y1 Captncavern\n\n12) AdamBadura: Build R1 Adambadura\n\n13) captncavern: Discover Y1 Captncavern G3 Aloha\n\tAdamBadura: Amusing game... ;)\n\n14) AdamBadura: Build B1 Adambadura\n\n15) captncavern: Build G1 Captncavern\n\n16) AdamBadura: Discover B1 Adambadura G2 Shipyard\n\n17) captncavern: Move G1 Captncavern Aloha\n\n18) AdamBadura: Build B2 Shipyard\n\n19) captncavern: Build G2 Captncavern\n\n20) AdamBadura: Build B2 Shipyard\n\n21) captncavern: Sacrifice G2 Captncavern\nBuild G2 Aloha\nBuild R1 Captncavern\n\n22) AdamBadura: Build B3 Adambadura\n\n23) captncavern: Sacrifice G2 Aloha\nBuild G2 Aloha\nBuild R2 Captncavern\n\n24) AdamBadura: Build Y1 Adambadura\n\n25) captncavern: Build Y2 Captncavern\n\n26) AdamBadura: Move Y1 Adambadura Shipyard\n\n27) captncavern: Discover G2 Aloha Y2 Ichi\n\n28) AdamBadura: Move B2 Shipyard Aloha\n\n29) captncavern: Move G1 Aloha Ichi\n\n30) AdamBadura: Build B3 Aloha\n\n31) captncavern: Build G2 Ichi\n\n32) AdamBadura: Build B3 Shipyard\n\n33) captncavern: Build G3 Captncavern\n\n34) AdamBadura: Sacrifice R1 Adambadura\nAttack Y1 Aloha\n\n\nHomeworlds Online (SDG# 16642)\nStarted: 2010.7.6, Ended: 2010.7.13\nParticipants: addesso (S), ts52 (N)\nWinner: ts52\n\n1) ts52: H B1 Y3 G3\n\taddesso: first time playing. looks real interesting tho!\n\tts52: It's a great game. If you have any questions, just ask. Then make a move and undo it, so SDG will send me an email.\n\n2) addesso: Homeworld G2 B1 Y3\n\n3) ts52: B G1 Ts52\n\n4) addesso: Build Y1 Addesso\n\n5) ts52: T G1 B1 Ts52\n\n6) addesso: Trade Y1 G1 Addesso\n\n7) ts52: Discover B1 Ts52 G2 Oscar\n\n8) addesso: Build Y1 Addesso\n\n9) ts52: Build B2 Oscar\n\n10) addesso: Trade Y3 B3 Addesso\n\n11) ts52: Trade B2 Y2 Oscar\n\n12) addesso: Discover B3 Addesso G3 Pegasus\n\n13) ts52: Build B2 Oscar\n\n14) addesso: Build B2 Pegasus\n\n15) ts52: Trade B2 R2 Oscar\n\n16) addesso: Trade B3 R3 Pegasus\n\n17) ts52: Build G1 Ts52\n\n18) addesso: Build B2 Pegasus\n\n19) ts52: Build B2 Oscar\n\n20) addesso: Trade B2 Y2 Pegasus\n\n21) ts52: Discover B2 Oscar G3 Kermit\n\n22) addesso: Build B2 Pegasus\n\n23) ts52: Build B3 Kermit\n\n24) addesso: Move B2 Pegasus Addesso\n\n25) ts52: Trade B3 R3 Kermit\n\n26) addesso: Build B3 Addesso\n\n27) ts52: Sacrifice Y2 Oscar\nMove B2 Kermit Addesso\nMove R3 Kermit Addesso\nCatastrophe Addesso Blue\n\n28) addesso: Build Y1 Addesso\n\taddesso: ah man. i miscalculated how far your ships could jump. lol\n\n29) ts52: Attack G1S Addesso\n\n30) addesso: Sacrifice B2 Pegasus\nTrade Y1 R1 Addesso\nTrade Y1 R1 Addesso\n\tts52: sorry about that. It's definitely an important lesson to learn.\n\n31) ts52: Sacrifice R2 Oscar\nAttack R1S Addesso\nAttack R1S Addesso\n\tts52: Thanks for the game. I'd be happy to play again, any time.\n\n\nHomeworlds Online (SDG# 16811)\nStarted: 2010.7.7, Ended: 2010.7.14\nParticipants: daselva (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) daselva: Homeworld Y3 G2 B3\n\n3) rootbier: Build G1 Rootbier\n\n4) daselva: Build B1 Daselva\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) daselva: Trade B3 G3 Daselva\n\n7) rootbier: Build G1 Rootbier\n\n8) daselva: Build B1 Daselva\n\n9) rootbier: Build Y1 Rootbier\n\n10) daselva: Build B2 Daselva\n\n11) rootbier: Discover Y1 Rootbier B3 Uva\n\n12) daselva: Discover B1 Daselva G1 Roxo\n\n13) rootbier: Build Y1 Rootbier\n\n14) daselva: Build B2 Roxo\n\n15) rootbier: Sacrifice G3 Rootbier\nBuild G1 Rootbier\nBuild Y2 Uva\nBuild Y2 Uva\n\n16) daselva: Trade B2 R2 Roxo\n\n17) rootbier: Discover Y1 Rootbier G3 Watermelon\n\n18) daselva: Build B2 Roxo\n\n19) rootbier: Build Y3 Rootbier\n\n20) daselva: Trade G3 Y3 Daselva\n\n21) rootbier: Trade Y3 G3 Rootbier\n\n22) daselva: Trade Y3 R3 Daselva\n\n23) rootbier: Sacrifice G3 Rootbier\nBuild Y3 Watermelon\nBuild Y3 Rootbier\nBuild G2 Rootbier\n\n24) daselva: Sacrifice B2 Daselva\nTrade B2 R2 Roxo\nPass\n\tdaselva: hello,can you help me?...I don´t know how to introduce the commands for «sacrifice».what is a «carriage return»?\n\n25) rootbier: Move G2 Rootbier Uva\n\n26) daselva: Build B2 Daselva\n\tdaselva: hello again,ok I found it ,it´s the changing line button... \n\trootbier: carriage return is old terminology from typewriter days. but yeah -- basically you need a new line between each command.\n\trootbier: i see you're new to the game (both from letting me control yellow and from questions and from your game record) welcome. where are you from? :P :D \n\n27) rootbier: Build G2 Uva\n\trootbier: sadly. you're in a lot of trouble now. your only move get's you to size one stars... that's only red from here out unless you sacrifice something. but basically you can not reach my ships at all. so i can just mass up what i need to catastrophe you and you can't do much about it.\n\tdaselva: hello ...and thank you .yes is my first HW game ,I´m from Lisbon .I´m beggining to find HW a great game(what do you think about it?).Ithink a good way to understand and feel a game is to have a good defeat-I´m working hard on it...:)\n\n28) daselva: Build B2 Roxo\n\trootbier: The game definitely has a learning curve. You'll see soon enough that catastrophes are far more dangerous than attacks.\n\n29) rootbier: Trade G2 B2 Uva\n\n30) daselva: Trade B2 G2 Daselva\n\n31) rootbier: Build G3 Uva\n\n32) daselva: Build G3 Daselva\n\n33) rootbier: Discover G3 Uva R1 Trap\n\n34) daselva: Build R1 Daselva\n\n35) rootbier: Sacrifice Y3 Watermelon\nMove Y1 Uva Trap\nMove Y1 Watermelon Trap\nMove G3 Trap Daselva\nCatastrophe Daselva G\n\n36) daselva: Move R3 Daselva Rootbier\n\n37) rootbier: Sacrifice Y3 Rootbier\nMove Y1 Rootbier Daselva\nMove Y1 Trap Daselva\nMove Y1 Trap Daselva\nCatastrophe Daselva Y\n\n\tdaselva: hello rootbier,thank you very much for all your comments.I´ve already take note of all the game, I will remake it and learn a lot... thank you\n\nHomeworlds Online (SDG# 16846)\nStarted: 2010.7.7, Ended: 2010.7.25\nParticipants: Teo (S), rootbier (N)\nWinner: Teo\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) Teo: Homeworld G3 B1 Y3\n\trootbier: Hey buddy. How was first frisbee? How's your living place?\n\n3) rootbier: Build G1 Rootbier\n\tTeo: Hallo !\r\nAll is ok.\r\nGood frisbee teams. (they play with 3 handlers and 2 midles, a bit strange :s how ever I manage to make really good zone-cut and good defense too)\r\nWork no really interesting but ok.\r\nI miss our diners !\r\nI Hope evry thing is ok for you (work-pass, knee, ankle, friends, music, exam results, art, plan for summer...)\r\nbye\r\nTéo\n\trootbier: Zzzz.... sleep now. Talk tomorrow.\n\n4) Teo: Build Y1 Teo\n\n5) rootbier: Trade G1 Y1 Rootbier\n\trootbier: work - no. knee - ok but maybe cuz nothing is happening here. music - played drums yesterday for maybe second time in three years - didn't go so well. exam results - acceptable. my general mood is not good though. i also miss our dinners and whatever else we did. i miss your company.\n\n6) Teo: Trade Y1 B1 Teo\n\n7) rootbier: Build G1 Rootbier\n\trootbier: too smart :P\n\n8) Teo: Build Y1 Teo\n\n9) rootbier: Build G1 Rootbier\n\n10) Teo: Build B2 Teo\n\n11) rootbier: Discover G1 Rootbier B3 Aubergine\n\n12) Teo: Discover B2 Teo G2 Cucumber\n\n13) rootbier: Build G1 Aubergine\n\tTeo: You're cool as a cucumber !\n\n14) Teo: Sacrifice Y1 Teo\nMove B2 Cucumber Aubergine\n\n15) rootbier: Build G2 Aubergine\n\n16) Teo: Trade B2 G2 Aubergine\nCatastrophe Aubergine G\n\n17) rootbier: Trade G1 R1 Rootbier\n\n18) Teo: Build B2 Teo\n\n19) rootbier: Build Y1 Rootbier\n\n20) Teo: Discover B2 Teo G2 Heatwave\n\n21) rootbier: Discover Y1 Rootbier B3 Badday\n\n22) Teo: Build B2 Heatwave\n\n23) rootbier: Build G1 Rootbier\n\n24) Teo: Build B2 Teo\n\n25) rootbier: Move G1 Rootbier Badday\n\n26) Teo: Discover B2 Teo G2 Zone\n\n27) rootbier: Build Y1 Badday\n\n28) Teo: Build B3 Zone\n\n29) rootbier: Move Y1 Badday Heatwave\n\n30) Teo: Trade B3 R3 Zone\n\trootbier: best with controlling blue is to do frequent blue sacrifice(2s or 3s) to get other colors and then still be the only one to get blue. can build a BIG fleet very quickly.\n\n31) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Badday\nBuild Y2 Heatwave\nBuild Y3 Rootbier\n\n32) Teo: Sacrifice R3 Zone\nAttack Y2 Heatwave\nAttack Y1 Heatwave\nPass\n\tTeo: ok but not yet...\n\n33) rootbier: Trade Y3 G3 Rootbier\n\n34) Teo: Build Y3 Teo\n\n35) rootbier: Sacrifice Y2 Badday\nMove Y1 Badday Heatwave\nMove Y1 Heatwave Teo\n\n36) Teo: Sacrifice B2 Heatwave\nTrade Y3 R3 Teo\nTrade Y3 G3 Teo\n\n37) rootbier: Build Y2 Teo\n\n38) Teo: Sacrifice R3 Teo\nAttack Y2 Teo\nAttack Y1 Teo\nPass\n\n39) rootbier: Move Y1 Rootbier Badday\n\n40) Teo: Move Y1 Heatwave Badday\n\n41) rootbier: Discover G1 Badday B2 Owwday\n\n42) Teo: Sacrifice G3 Teo\nBuild Y3 Heatwave\nBuild Y3 Teo\nBuild Y3 Badday\n\n43) rootbier: Build G1 Rootbier\n\n44) Teo: Trade Y1 R1 Badday\n\n45) rootbier: Move Y1 Badday Owwday\n\n46) Teo: Trade Y2 R2 Teo\n\n47) rootbier: Build Y1 Owwday\n\n48) Teo: Build Y2 Heatwave\n\n49) rootbier: Sacrifice G3 Rootbier\nBuild G1 Owwday\nBuild G2 Owwday\nBuild G3 Rootbier\n\n50) Teo: Move Y1 Teo Owwday\n\n51) rootbier: Trade Y1 R1 Owwday\n\n52) Teo: Move Y1 Owwday Badday\n\n53) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild G3 Rootbier\nBuild R2 Rootbier\n\n54) Teo: Discover Y2 Heatwave R3 Killer\n\n55) rootbier: Trade G3 B3 Rootbier\n\n56) Teo: Sacrifice Y3 Heatwave\nMove Y1 Badday Rootbier\nMove Y3 Badday Rootbier\nMove Y2 Killer Rootbier\nCatastrophe Rootbier Y\n\n57) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild G3 Rootbier\nBuild R2 Owwday\n\n58) Teo: Sacrifice Y2 Heatwave\nMove B2 Heatwave Rootbier\nMove B2 Zone Rootbier\nCatastrophe Rootbier B\n\n\nHomeworlds Online (SDG# 16851)\nStarted: 2010.7.9, Ended: 2012.2.27\nParticipants: rayla (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 16852)\nVariants: "No undo"\nStarted: 2010.7.12, Ended: 2010.9.30\nParticipants: Arturion (S), goulo (N), AdamBadura (E)\nWinner: goulo\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) AdamBadura: Homeworld G1 B2 R3\n\n3) Arturion: Homeworld R3 B2 Y3 *\n\n4) goulo: Build Y1 Goulo\n\n5) AdamBadura: Build R1 Adambadura\n\tgoulo: arturion, welcome! your first homeworlds lesson is that it's good to start with green=production ability in your home system. :)\n\n6) Arturion: Trade Y3 G3 Arturion\n\n7) goulo: Build Y1 Goulo\n\n8) AdamBadura: Trade R1 Y1 Adambadura\n\tgoulo: PS: http://boardgames.famdepaus.nl/FS/index.html :)\n\n9) Arturion: Build G1 Arturion\n\tAdamBadura: I noticed Artur is not reliable in doing his turns ASAP... ;)\n\n10) goulo: Trade Y1 B1 Goulo\n\n11) AdamBadura: Build R1 Adambadura\n\n12) Arturion: Trade G1 Y1 Arturion\n\n13) goulo: Discover Y1 Goulo G1 Smeraldeto\n\n14) AdamBadura: Trade R1 G1 Adambadura\n\n15) Arturion: Discover Y1 Arturion G1 Endor\n\n16) goulo: Build B1 Goulo\n\n17) AdamBadura: Build R1 Adambadura\n\n18) Arturion: Build Y1 Endor\n\n19) goulo: Trade B1 R1 Goulo\n\n20) AdamBadura: Build Y2 Adambadura\n\n21) Arturion: Build G2 Arturion\n\n22) goulo: Build Y2 Smeraldeto\n\n23) AdamBadura: Trade R3 G3 Adambadura\n\n24) Arturion: Trade G2 R2 Arturion\n\tAdamBadura: Arturion, zanim zbudujesz 3 zielony statek w swoim uk³adzie to zauwa¿, ¿e ja mogê tam dolecieæ swoim G1 poœwiêcaj¹c Y2. Wtedy bêd¹ 4 "kawa³ki" G w tym uk³adzie i wywo³am katastrofê niszcz¹c ca³e G. To by pozbawi³o Ciê wszystkich statków w uk³adzie i spowodowa³o Twoj¹ przegran¹ a moje zwyciêstwo.\n\n25) goulo: Move B1 Goulo Smeraldeto\n\n26) AdamBadura: Discover Y2 Adambadura R3 Outpost\n\n27) Arturion: Trade R2 B2 Arturion\n\n28) goulo: Trade Y2 G2 Smeraldeto\n\n29) AdamBadura: Move G1 Adambadura Outpost\n\n30) Arturion: Trade B2 R2 Arturion\n\n31) goulo: Build Y2 Goulo\n\n32) AdamBadura: Build Y2 Outpost\n\n33) Arturion: Move Y1 Endor Goulo\n\n34) goulo: Trade Y2 R2 Goulo\n\n35) AdamBadura: Discover Y2 Outpost R1 Ontheway\n\n36) Arturion: Discover Y1 Endor R3 Tatooine\n\n37) goulo: Attack Y1S Goulo\n\n38) AdamBadura: Build Y2 Adambadura\n\n39) Arturion: Trade R2 Y2 Arturion\n\n40) goulo: Build Y3 Smeraldeto\n\n41) AdamBadura: Build Y3 Adambadura\n\n42) Arturion: Move Y2 Arturion Smeraldeto\n\tAdamBadura: Aj... Mia³ byæ w Outpost... :(\n\tAdamBadura: Jednak brak opcji Undo jest do kitu...\n\n43) goulo: Sacrifice Y3 Smeraldeto\nMove Y1 Smeraldeto Tatooine\nMove Y1 Tatooine Adambadura\nMove R1 Goulo Smeraldeto\nCatastrophe Adambadura Yellow\n\n44) AdamBadura: Build G1 Outpost\n\n45) Arturion: Move Y2 Smeraldeto Outpost\n\n46) goulo: Trade G2 Y2 Smeraldeto\n\n47) AdamBadura: Attack Y2S Outpost\n\n48) Arturion: Build G2 Arturion\n\n49) goulo: Build Y1 Smeraldeto\n\n50) AdamBadura: Move Y2 Outpost Adambadura\n\tgoulo: Artur, ne forgesu pri: http://boardgames.famdepaus.nl/FS/index.html :)\n\n51) Arturion: Move Y1 Tatooine Ontheway\n\n52) goulo: Build B1 Smeraldeto\n\n53) AdamBadura: Build G2 Adambadura\n\tgoulo: i am in germanz this week and internet access is rare...\n\tAdamBadura: And considering "z" in place of "y" in "germany" keyboard layout is also German one... ;)\n\n54) Arturion: Trade G2 R2 Arturion\n\n55) goulo: Trade Y2 G2 Smeraldeto\n\n56) AdamBadura: Discover G2 Adambadura Y3 Newland\n\tgoulo: We just returned from Germany. It was a good vacation. :)\n\n57) Arturion: Move Y1 Ontheway Newland\n\n58) goulo: Discover G2 Smeraldeto Y3 Novlando\n\n59) AdamBadura: Trade G3 Y3 Adambadura\n\n60) Arturion: Pass\n\n61) goulo: Build R1 Goulo\n\n62) AdamBadura: Move G1 Outpost Ontheway\n\tAdamBadura: I guess it was an automatic pass.\n\n63) Arturion: Pass\n\tgoulo: I sent artur a nudging reminder email last night about turns here and Wysokie Napiecie. :)\n\tAdamBadura: I noticed Artur is nort a good online player. He doesn't make his turns even though he is online.\n\n64) goulo: Build G2 Novlando\n\n65) AdamBadura: Build R2 Adambadura\n\tAdamBadura: I doubt passing was a good move...\n\n66) AdamBadura: Build G2 Newland\n\tAdamBadura: I'm going on a leave from 2010-09-04 to 2010-09-11 inclusive.\n\tgoulo: shall we just terminate this game? i suppose artur is no longer interested in playing since he passed his last couple of turns anyway...\n\tAdamBadura: Yes. I guess so. So terminate it when you read this. You may also challange me... ;)\n\n67) goulo: Sacrifice G2 Novlando\nBuild R2 Goulo\nBuild R3 Smeraldeto\n\tgoulo: Oh interesting, the game apparently continues with just the 2 of us!\n\tgoulo: Heh, and artur's ships exist as non-player ships apparently.\n\tgoulo: but somehow it's your turn again instead of mine. Hmm.\n\tAdamBadura: Yes. Wired. Do you want to continue?\n\tgoulo: sure, why not... :)\n\n68) AdamBadura: Build R3 Adambadura\n\tAdamBadura: How is gaming today? Pity I couldn't come. But please, if you don't mind, ask me next time as well. Hopefully I will manage next time.\r\n\r\nBy the way I just ended another Ladder Homeworlds game. Again I won. Which is somewhat surprising taking into account that player was stronger then me (judging by rank; but he also quickly gained advantage - luckily he lost anyway ;)). So now I'm at position 2. :)\r\n\r\nMaybe we should invait zara2stra again?\n\tgoulo: zara2stra was very busy and didn't play for several weeks, but is playing alien city with me again (finally). so maybe he'd be interested in homeworlds again, i'm not sure.\r\n\r\nwhich reminds me, you should learn alien city! :)\n\n69) goulo: Move R3 Smeraldeto Newland\n\n70) AdamBadura: Sacrifice G2 Newland\nBuild G2 Ontheway\nBuild G2 Outpost\n\n71) goulo: Build G3 Novlando\n\tgoulo: BTW in the end there was no gaming last night. So I read. :)\n\n72) AdamBadura: Build G3 Outpost\n\n73) goulo: Attack G2E Newland\n\n74) AdamBadura: Discover R3 Adambadura B3 Wrap\n\n75) goulo: Move R2 Goulo Smeraldeto\n\n76) AdamBadura: Sacrifice G3 Outpost\nBuild G3 Outpost\nBuild Y1 Ontheway\nBuild Y2 Outpost\n\n77) goulo: Move G2 Novlando Adambadura\n\n78) AdamBadura: Attack G2N Adambadura\n\n79) goulo: Move G3 Novlando Adambadura\n\n80) AdamBadura: Attack G3N Adambadura\n\n81) goulo: Move G2 Newland Adambadura\nCatastrophe Adambadura G\n\n82) AdamBadura: Sacrifice Y1 Ontheway\nMove R3 Wrap Ontheway\n\tAdamBadura: Nicely done. ;)\n\n83) goulo: Attack Y1S Newland\n\tgoulo: maybe, maybe not... we'll see if it was the right time to do it or not. :)\n\n\tAdamBadura: It was clear you would have won. No point in continuing. Thanks for the game!\n\tgoulo: Yeah, I was all set to sacrifice y3 and then move 2 yellows and my r3 to your homeworld, catastrophe yellow, and you're stuck with an r1 and r2 there. A few turns back I thought I was going to lose, as you had more ships, and even the extra turn after we knocked artur out. :) But the situation was complex and hard to analyze! Thanks for the game!\n\tAdamBadura: Yes. I thought that my position is better as well. ;)\n\nHomeworlds Online (SDG# 16861)\nStarted: 2010.7.13, Ended: 2010.7.25\nParticipants: MagicJohn (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) MagicJohn: Homeworld B1 Y3 G3\n\tMagicJohn: Hello again. Guess I get to check out my learning curve.\n\n3) rootbier: Build G1 Rootbier\n\trootbier: I don't quite remember how the last one ended -- but good luck :D !\n\n4) MagicJohn: Build G1 Magicjohn\n\tMagicJohn: I'm still a bit of a newbie in this game. As such, the ending was unfortunately, very predictable. I hope that I prove to be a bit more competition this time around.\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) MagicJohn: Trade G1 Y1 Magicjohn\n\n7) rootbier: Build B2 Rootbier\n\n8) MagicJohn: Build G1 Magicjohn\n\n9) rootbier: Discover B2 Rootbier G3 Factory\n\n10) MagicJohn: Discover G1 Magicjohn B2 Mauisands\n\n11) rootbier: Build B2 Factory\n\n12) MagicJohn: Build Y1 Magicjohn\n\n13) rootbier: Build B3 Rootbier\n\n14) MagicJohn: Build G1 Magicjohn\n\n15) rootbier: Build B3 Factory\n\n16) MagicJohn: Trade G3 B3 Magicjohn\n\n17) rootbier: Sacrifice B2 Factory\nTrade B3 Y3 Factory\nTrade B3 R3 Rootbier\n\trootbier: so what have you learned already in this game? if you are building your home system second - better not to use the same color small star (there are other ways around this but they make other problems).\n\tMagicJohn: I am a big fan of Joni Mitchell's "Blue Album" but this is ridiculous. You obtained access to large ships very quickly. By the time I saw it coming there was little I could do in terms of quick response. Maybe I should have tried to build yellow as an alternative rout to larger ships? I'm still not sure if I should trade my G3 for a blue. I suspect that I need to try to forestall a blue catastrophe in my home system. \n\n18) MagicJohn: Build G1 Mauisands\n\trootbier: you could have tried to grab yellow but you couldn't really have blocked me out of it - especially not since it was "trade" ships i was filling up on. once someone has a level two ship it becomes much harder to lock them out of a color.\n\n19) rootbier: Sacrifice G3 Rootbier\nBuild B2 Factory\nBuild B3 Factory\nBuild B3 Rootbier\n\trootbier: btw ... feel free to build blue now :D\n\n20) MagicJohn: Build G2 Magicjohn\n\n21) rootbier: Sacrifice B2 Factory\nTrade B2 Y2 Factory\nTrade B3 R3 Factory\n\n22) MagicJohn: Trade Y1 R1 Magicjohn\n\trootbier: rinse and repeat\n\n23) rootbier: Move R3 Factory Mauisands\n\n24) MagicJohn: Build G2 Magicjohn\n\n25) rootbier: Attack G1 Mauisands\n\n26) MagicJohn: Discover G2 Magicjohn Y2 Anyport\n\trootbier: *koff* defenseless *koff*\r\n*koff* need red somewhere *koff*\r\n*koff* undo or die *koff*\n\n27) rootbier: Move Y3 Factory Anyport\n\tMagicJohn: Thanks for the heads up. I was too involved trying to figure out how to change my "shrink art" fleet into something more substantial. Haven't learned a thing since Pearl Harbor I guess.\n\n28) MagicJohn: Trade G2 R2 Magicjohn\n\n29) rootbier: Move B1 Rootbier Factory\n\n30) MagicJohn: Build G2 Anyport\n\n31) rootbier: Sacrifice R3 Rootbier\nAttack G2 Anyport\nAttack G2 Anyport\nAttack G1 Mauisands\n\n32) MagicJohn: Discover R2 Magicjohn B2 Holeinthewall\n\trootbier: two 3s on your doorstep. make sure you can handle that.\n\n33) rootbier: Sacrifice G2 Anyport\nBuild B2 Rootbier\nBuild B3 Factory\n\n34) MagicJohn: Discover G1 Magicjohn G2 Arthurbrown\n\n35) rootbier: Sacrifice B2 Rootbier\nTrade G1 Y1 Mauisands\nTrade G1 Y1 Mauisands\n\n36) MagicJohn: Move Y1 Magicjohn Holeinthewall\n\tMagicJohn: It looked extremely rocky for the Mudville nine that day........ \n\n37) rootbier: Sacrifice G2 Anyport\nBuild B2 Factory\nBuild Y3 Mauisands\n\n38) MagicJohn: Build G1 Arthurbrown\n\n39) rootbier: Sacrifice Y2 Factory\nMove Y1 Mauisands Magicjohn\nMove Y1 Mauisands Magicjohn\n\n\tMagicJohn: My last few moves have been either defensive or pointless, but I wanted to see how the attack developed. Thanks for the game. MJ \n\trootbier: boo. see it through. i've been known to make some bonehead mistakes at crucial moments.\n\tMagicJohn: If I can get Aaron to undo my resignation I'll give it a shot.\n\tMagicJohn: Aaron, apparently rootbier thinks I should blunder through to the very end of this game. I'm always up for a good humiliation, so if you can rewind this mess please do. Thanks (I think) MagicJohn \n\trootbier: no no. not worth bothering someone else about. just start a new one.\n\nHomeworlds Online (SDG# 16661)\nVariants: "Hard time"\nStarted: 2010.7.14, Ended: 2010.8.2\nParticipants: zoltar (S), SilentTitan (N)\nWinner: zoltar\n\n1) SilentTitan: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) zoltar: Build G1 Zoltar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) zoltar: Build G1 Zoltar\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) zoltar: Build R2 Zoltar\n\n13) SilentTitan: Discover R2 Silenttitan B1 Antimirror\n\n14) zoltar: Trade R1 B1 Zoltar\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) zoltar: Build B1 Zoltar\n\n17) SilentTitan: Discover R1 Silenttitan R1 Trialrun\n\n18) zoltar: Discover R2 Zoltar G2 Greenbelt\n\n19) SilentTitan: Build G1 Silenttitan\n\n20) zoltar: Move B1 Zoltar Greenbelt\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Antimirror\nBuild R3 Antimirror\nBuild R3 Trialrun\n\n22) zoltar: Sacrifice Y1 Zoltar\nMove R2 Greenbelt Antimirror\nCatastrophe Antimirror R\n\tzoltar: Yikes!\n\n23) SilentTitan: Sacrifice Y1 Silenttitan\nMove R3 Trialrun Greenbelt\n\n24) zoltar: Sacrifice B1 Greenbelt\nTrade B1 Y1 Zoltar\n\n25) SilentTitan: Trade G1 B1 Silenttitan\n\n26) zoltar: Build Y1 Zoltar\n\n27) SilentTitan: Build R2 Greenbelt\n\n28) zoltar: Build Y1 Zoltar\n\n29) SilentTitan: Sacrifice B1 Silenttitan\nTrade R2 B2 Greenbelt\n\n30) zoltar: Discover Y1 Zoltar G2 Greendale\n\n31) SilentTitan: Build R2 Greenbelt\n\n32) zoltar: Build Y2 Greendale\n\n33) SilentTitan: Trade R2 Y2 Greenbelt\n\n34) zoltar: Discover Y1 Zoltar B2 Blueridge\n\n35) SilentTitan: Sacrifice Y2 Greenbelt\nMove R3 Greenbelt Trialrun\nMove R3 Trialrun Silenttitan\n\n36) zoltar: Build Y2 Greendale\n\n37) SilentTitan: Trade R3 Y3 Silenttitan\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Blueridge\nBuild Y3 Blueridge\nBuild Y3 Zoltar\n\n39) SilentTitan: Build G1 Silenttitan\n\n40) zoltar: Trade Y1 G1 Blueridge\n\n41) SilentTitan: Build B1 Greenbelt\n\n42) zoltar: Trade Y3 R3 Blueridge\n\n43) SilentTitan: Trade B1 Y1 Greenbelt\n\n44) zoltar: Build Y3 Blueridge\n\n45) SilentTitan: Build B1 Greenbelt\n\n46) zoltar: Sacrifice Y2 Greendale\nMove R3 Blueridge Trialrun\nMove R3 Trialrun Greenbelt\n\n47) SilentTitan: Move G1 Silenttitan Trialrun\n\n48) zoltar: Build R2 Greenbelt\n\n49) SilentTitan: Trade B2 G2 Greenbelt\n\n50) zoltar: Sacrifice R2 Greenbelt\nAttack G2 Greenbelt\nAttack Y1 Greenbelt\n\n51) SilentTitan: Build Y2 Silenttitan\n\n52) zoltar: Move G2 Greenbelt Trialrun\n\n53) SilentTitan: Build G3 Trialrun\n\n54) zoltar: Build G3 Trialrun\nCatastrophe Trialrun G\n\n55) SilentTitan: Build G1 Silenttitan\n\n56) zoltar: Trade Y3 G3 Zoltar\n\n57) SilentTitan: Move G1 Silenttitan Trialrun\n\n58) zoltar: Trade Y3 G3 Blueridge\n\n59) SilentTitan: Build R2 Trialrun\n\n60) zoltar: Sacrifice G3 Blueridge\nBuild Y3 Blueridge\nBuild Y3 Greenbelt\nBuild R2 Greenbelt\n\n61) SilentTitan: Build G2 Silenttitan\n\n62) zoltar: Move R2 Greenbelt Trialrun\nCatastrophe Trialrun R\n\n63) SilentTitan: Trade Y2 R2 Silenttitan\n\n64) zoltar: Build G1 Zoltar\n\n65) SilentTitan: Build Y2 Silenttitan\n\n66) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueridge\n\n67) SilentTitan: Build R1 Silenttitan\n\n68) zoltar: Trade Y3 R3 Blueridge\n\n69) SilentTitan: Discover Y2 Silenttitan R1 Farside\n\n70) zoltar: Sacrifice G3 Blueridge\nBuild G3 Blueridge\nBuild Y3 Zoltar\nBuild R2 Blueridge\n\n71) SilentTitan: Trade R1 B1 Silenttitan\n\n72) zoltar: Attack B1 Greenbelt\n\n73) SilentTitan: Pass\n\n74) zoltar: Move R3 Blueridge Farside\n\n75) SilentTitan: Discover Y2 Farside R2 Nearside\n\n76) zoltar: Move G3 Zoltar Nearside\n\n77) SilentTitan: Discover Y2 Nearside B3 Sideside\n\n78) zoltar: Move G3 Blueridge Sideside\n\n79) SilentTitan: Discover Y2 Sideside B2 Charmed\n\n80) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Greenbelt\nBuild B3 Greenbelt\n\n81) SilentTitan: Build R1 Silenttitan\n\n82) zoltar: Sacrifice Y3 Zoltar\nMove B3 Greenbelt Farside\nMove B3 Farside Silenttitan\nMove R3 Farside Silenttitan\nCatastrophe Silenttitan R\n\n83) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y2 Charmed Zoltar\nMove G2 Silenttitan Zoltar\nMove G1 Silenttitan Zoltar\nCatastrophe Zoltar Green\n\n84) zoltar: Sacrifice G3 Nearside\nBuild B2 Silenttitan\nBuild Y3 Zoltar\nBuild Y3 Zoltar\nCatastrophe Silenttitan B\n\tzoltar: Well, with 7 largs ships, I suppose it's time to attack!\n\n\tSilentTitan: I had to redo it the more flamboyant way. \n\tzoltar: Yep. I was wary for a while when I had only one color, knowing that the "bluebird" checkmate was a possibility if I ever got to a position like this.\n\tzoltar: Well, then, I'll have to end with a flamboyant finish. Though I wonder what would happen if I blew up my own homeworld along with yours?\r\n\r\nHahaha, it won't let me blow up my homeworld as well, and it crashes the program when I try!\n\tzoltar: Good game! Play again?\n\tSilentTitan: yep\n\nHomeworlds Online (SDG# 16664)\nVariants: "Sinister"\nStarted: 2010.7.14, Ended: 2010.11.14\nParticipants: Mandrel (S), daselva (N), zoltar (E)\nWinner: zoltar\n\n1) daselva: Homeworld G3 Y2 B3\n\n2) zoltar: Homeworld R1 B2 G3\n\n3) Mandrel: H Y1 B3 G3\n\n4) daselva: Build B1 Daselva\n\tMandrel: Have a good game.\n\n5) zoltar: Build G1 Zoltar\n\n6) Mandrel: Build G1 Mandrel\n\n7) daselva: Trade B3 G3 Daselva\n\n8) zoltar: Trade G1 Y1 Zoltar\n\n9) Mandrel: Trade G1 R1 Mandrel\n\n10) daselva: Build G1 Daselva\n\n11) zoltar: Build Y1 Zoltar\n\n12) Mandrel: B G1 Mandrel\n\n13) daselva: Trade G3 Y3 Daselva\n\n14) zoltar: Trade Y1 B1 Zoltar\n\n15) Mandrel: T G1 Y1 Mandrel\n\n16) daselva: Build B1 Daselva\n\n17) zoltar: Build G1 Zoltar\n\n18) Mandrel: B G1 Mandrel\n\n19) daselva: Trade B1 R1 Daselva\n\n20) zoltar: Discover G1 Zoltar B3 Bluemoon\n\n21) Mandrel: T G1 B1 Mandrel\n\n22) daselva: Build B1 Daselva\n\n23) zoltar: Build B2 Zoltar\n\n24) Mandrel: B B2 Mandrel\n\n25) daselva: Discover B1 Daselva G1 S2\n\n26) zoltar: Discover B2 Zoltar G3 Greengiant\n\n27) Mandrel: D B1 Mandrel G2 Time\n\n28) daselva: Build B2 S2\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild B3 Zoltar\nBuild B3 Greengiant\nBuild G1 Bluemoon\n\n30) Mandrel: B G2 Mandrel\n\n31) daselva: Trade B2 Y2 S2\n\n32) zoltar: Sacrifice B2 Greengiant\nTrade B3 G3 Zoltar\nTrade G1 Y1 Bluemoon\n\n33) Mandrel: B B2 Time\n\n34) daselva: Build B2 S2\n\n35) zoltar: Build B3 Greengiant\n\n36) Mandrel: M Y1 Mandrel Time\n\n37) daselva: Move B1 S2 Bluemoon\n\n38) zoltar: Sacrifice B1 Zoltar\nTrade B3 Y3 Greengiant\n\n39) Mandrel: B Y2 Time\n\n40) daselva: Build B1 S2\n\n41) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Bluemoon\nBuild Y3 Greengiant\nBuild Y3 Zoltar\n\n42) Mandrel: Move Y1 Time Greengiant\n\n43) daselva: Move B1 S2 Greengiant\n\n44) zoltar: Sacrifice Y2 Bluemoon\nDiscover Y3 Greengiant G1 Greenpea\nDiscover B3 Greengiant G2 Greentea\n\n45) Mandrel: B Y2 Time\n\n46) daselva: Move B2 S2 Greengiant\n\n47) zoltar: Trade B3 R3 Greentea\n\n48) Mandrel: Discover Y1 Greengiant R1 Foolishness\n\n49) daselva: Build B3 Greengiant\n\n50) zoltar: Discover Y3 Greengiant G2 Greensea\n\n51) Mandrel: Move B1 Time Greengiant\nCatastrophe Greengiant Blue\n\n52) daselva: Build R2 Daselva\n\n53) zoltar: Build G3 Bluemoon\n\n54) Mandrel: Move Y2 Time Foolishness\n\n55) daselva: Move R2 Daselva S2\n\n56) zoltar: Move G1 Bluemoon Zoltar\n\n57) Mandrel: Sacrifice Y2 Time\nMove Y1 Foolishness Daselva\nMove Y2 Foolishness Daselva\nCatastrophe Daselva Yellow\n\n58) daselva: Move R2 S2 Time\n\n59) zoltar: Build G3 Zoltar\n\n60) Mandrel: Sacrifice R1 Mandrel\nAttack R2N Time\n\n61) daselva: Move Y2 S2 Daselva\n\n62) zoltar: Move Y3 Greenpea Time\n\n63) Mandrel: Sacrifice B2 Time\nTrade G2 Y2 Mandrel\nTrade B2 R2 Mandrel\n\n64) daselva: Trade B1 Y1 Bluemoon\n\n65) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Time\nBuild Y2 Greensea\nBuild Y3 Bluemoon\n\n66) Mandrel: B G1 Mandrel\n\n67) daselva: Sacrifice R1 Daselva\nAttack Y1E Bluemoon\n\n68) zoltar: Build R1 Greentea\n\n69) Mandrel: Discover G1 Mandrel B2 Weary\n\n70) daselva: Trade Y2 R2 Daselva\n\n71) zoltar: Sacrifice R3 Greentea\nAttack R2S Time\nAttack Y1N Bluemoon\nAttack Y1N Bluemoon\n\n72) Mandrel: Move Y2 Mandrel Weary\n\n73) daselva: Build R1 Daselva\n\n74) zoltar: Move Y3 Bluemoon Weary\n\n75) Mandrel: Build G1 Weary\n\n76) daselva: Trade G1 B1 Daselva\n\n77) zoltar: Sacrifice R2 Time\nAttack Y2S Weary\nAttack G1S Weary\n\n78) Mandrel: Build R1 Mandrel\n\n79) daselva: Trade R2 Y2 Daselva\n\n80) zoltar: Build G1 Bluemoon\n\n81) Mandrel: Build G2 Mandrel\n\n82) daselva: Build R2 Daselva\n\n83) zoltar: Sacrifice G3 Bluemoon\nBuild R2 Greentea\nBuild G3 Bluemoon\nBuild G3 Zoltar\n\n84) Mandrel: Trade R2 B2 Mandrel\n\n85) daselva: Move R2 Daselva Time\n\n86) zoltar: Sacrifice R2 Greentea\nAttack R2N Time\nAttack G1S Weary\n\n87) Mandrel: Discover G2 Mandrel B2 Final\n\n88) daselva: Build R2 Daselva\n\n89) zoltar: Sacrifice Y3 Zoltar\nMove G1 Zoltar Daselva\nMove G1 Weary Daselva\nMove G1 Weary Daselva\nCatastrophe Daselva G\n\n90) zoltar: Build Y2 Greensea\n\n91) Mandrel: B G1 Mandrel\n\n92) zoltar: Build Y3 Bluemoon\n\n93) Mandrel: Build G1 Final\n\tzoltar: The Zoltarian fleet rules the galaxy!\n\n94) zoltar: Trade Y3 G3 Weary\n\tMandrel: oh dear, I'm a little concerned about your intentions.\n\n95) Mandrel: Build B1 Mandrel\n\n96) zoltar: Sacrifice G3 Bluemoon\nBuild G1 Weary\nBuild G3 Bluemoon\nBuild Y3 Weary\n\tzoltar: My intentions are to blow stuff up!\n\n97) Mandrel: Trade G2 R2 Final\n\n98) zoltar: Sacrifice Y3 Bluemoon\nMove Y3 Greensea Mandrel\nMove G1 Weary Mandrel\nMove G3 Weary Mandrel\nCatastrophe Mandrel G\n\n99) Mandrel: Trade B1 G1 Mandrel\n\tMandrel: Thats exactly what I was afraid of!\n\n100) zoltar: Trade Y3 B3 Mandrel\n\n101) Mandrel: Trade B2 G2 Mandrel\n\n102) zoltar: Sacrifice Y2 Greensea\nMove Y3 Weary Mandrel\nMove Y3 Time Mandrel\n\n103) Mandrel: Trade R2 Y2 Final\n\n104) zoltar: Sacrifice G3 Bluemoon\nBuild B1 Mandrel\nBuild B1 Mandrel\nBuild Y3 Mandrel\nCatastrophe Mandrel B\nCatastrophe Mandrel Y\n\n\tzoltar: Good game!\n\tMandrel: Good game, was obviously over long ago, well played.\n\tzoltar: Yep, once daselva was eliminated, I had such a big advantage that I could just slowly build up and then just overwhelm your homeworld.\n\nHomeworlds Online (SDG# 16901)\nVariants: "Hard time"\nStarted: 2010.7.15, Ended: 2010.7.20\nParticipants: rootbier (S), SilentTitan (N)\nWinner: rootbier\n\n1) SilentTitan: Homeworld B2 R1 G3\n\n2) rootbier: Homeworld B1 Y2 G3\n\trootbier: Let's see if I can manage to not time out a bajillion games at once this time. I think I lost my last two ladder games that way.\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) rootbier: Build G1 Rootbier\n\tSilentTitan: yikes\r\n\n\trootbier: exams and then sick and traveling - oh well\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) rootbier: Build G1 Rootbier\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) rootbier: Trade G1 R1 Rootbier\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) rootbier: Discover R1 Rootbier G3 Rc\n\n13) SilentTitan: Trade R1 B1 Silenttitan\n\n14) rootbier: Build G1 Rootbier\n\n15) SilentTitan: Move R2 Silenttitan Rc\n\n16) rootbier: Build R1 Rc\n\n17) SilentTitan: Build Y1 Silenttitan\n\n18) rootbier: Build Y2 Rootbier\n\n19) SilentTitan: Discover Y1 Silenttitan B3 Bigblue\n\n20) rootbier: Move Y2 Rootbier Bigblue\n\n21) SilentTitan: Attack R1S Rc\n\n22) rootbier: Build R2 Rc\nCatastrophe Rc R\n\n23) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Bigblue\nBuild Y3 Bigblue\nBuild Y3 Silenttitan\nCatastrophe Bigblue Yellow\n\n24) rootbier: Trade G1 B1 Rootbier\n\n25) SilentTitan: Trade B1 R1 Silenttitan\n\n26) rootbier: Build B1 Rootbier\n\n27) SilentTitan: Trade Y3 G3 Silenttitan\n\n28) rootbier: Discover B1 Rootbier G3 Ulm\n\n29) SilentTitan: Build R1 Silenttitan\n\n30) rootbier: Sacrifice G3 Rootbier\nBuild B2 Ulm\nBuild B2 Ulm\nBuild B3 Rootbier\n\n\tSilentTitan: good game\n\trootbier: i know i got some ships in your face ... but giving up? nothing is inevitable. i could have made some mistakes. wasn't a lock.\n\nHomeworlds Online (SDG# 16903)\nStarted: 2010.7.15, Ended: 2010.7.25\nParticipants: rootbier (S), daselva (N)\nWinner: rootbier\n\n1) daselva: Homeworld G3 Y1 B3\n\tdaselva: hello ,nice to see you again\n\n2) rootbier: Homeworld B1 Y2 G3\n\n3) daselva: Build B1 Daselva\n\n4) rootbier: Build G1 Rootbier\n\trootbier: I will try to leave the nasty stuff for later in. We'll have a nice friendly start.\n\n5) daselva: Trade B3 G3 Daselva\n\n6) rootbier: Trade G1 B1 Rootbier\n\n7) daselva: Build G1 Daselva\n\n8) rootbier: Build B2 Rootbier\n\n9) daselva: Build B2 Daselva\n\n10) rootbier: Discover B1 Rootbier Y3 Banan\n\n11) daselva: Trade B1 R1 Daselva\n\n12) rootbier: Build G1 Rootbier\n\n13) daselva: Build B1 Daselva\n\n14) rootbier: Sacrifice G3 Rootbier\nBuild B2 Banan\nBuild B3 Banan\nBuild B3 Rootbier\n\n15) daselva: Trade B2 Y2 Daselva\n\n16) rootbier: Sacrifice B2 Rootbier\nTrade B2 Y2 Banan\nTrade B1 G1 Banan\n\n17) daselva: Discover G1 Daselva B2 S2\n\n18) rootbier: Build G2 Banan\n\n19) daselva: Build Y1 Daselva\n\trootbier: There's a threat there that you need to recognize and address. Think about it a while.\n\n20) rootbier: Discover B3 Banan R2 Gates\n\n21) daselva: Trade G1 Y1 S2\n\n22) rootbier: Move G1 Banan Gates\n\n23) daselva: Move G3 Daselva S2\n\n24) rootbier: Trade B3 R3 Rootbier\n\n25) daselva: Move G3 S2 Daselva\n\n26) rootbier: Move Y2 Banan Gates\n\n27) daselva: Discover Y1 Daselva G2 Ss3\n\n28) rootbier: Build Y3 Gates\n\n29) daselva: Trade Y2 R2 Daselva\n\trootbier: pulling your only size 3 ship away from your homeworld is not the best idea. you're okay right now cuz i have no red at the moment. but otherwise - you'd have some big trouble.\n\n30) rootbier: Discover G2 Banan B2 Fluff\n\n31) daselva: Trade G3 B3 Daselva\n\trootbier: and now i have all the red i need - you should fly that big guy back home.\n\n32) rootbier: Build Y2 Gates\n\n33) daselva: Build Y3 Ss3\n\n34) rootbier: Sacrifice Y2 Gates\nMove G2 Fluff Daselva\nMove G1 Gates Daselva\n\n35) daselva: Sacrifice Y3 Ss3\nDiscover Y1 Ss3 G3 S4\nMove Y1 S2 S4\nPass\n\trootbier: My plan (as it stands) is to sacrifice that y2 at Gates to move in both my big guys. Having only the one little red you won't be able to take both of them. On the next turn I sacrifice my big red at home to attack with the remaining large ship and take three in your homeworld.\r\n\r\nThere is one thing you can do to stop me. Take time to think about it a while. Let me know if you don't sort it out.\n\tdaselva: thank you for sharing your thoughts.I think the answer to your question is trade my y2 for a r2 in my HW.So if you came with your 2 big ones in my HW,I can sacrifice this r2 to attack both.Am I right?\n\n36) rootbier: Build G1 Daselva\nCatastrophe Daselva G\n\trootbier: you are correct! well done.\n\n37) daselva: Move Y1 S4 Rootbier\n\n38) rootbier: Attack Y1 Rootbier\n\trootbier: New threat. Pretty straightforward. See it?\n\tdaselva: green catastrophe in my HW?\n\n39) daselva: Build Y2 S4\n\trootbier: Yeah.\r\n\r\nBut basically you're really behind the 8-ball (in a bad position) - cuz two moves from now I will cause that catastrophe anyway. And then I will start working on massing up ships for a yellow catastrope. It is too late to stop the green one - but you need to look for an opening to catastrophe my yellows as I build them - I may not give you that opening. (Or maybe I will just to test your awareness :) I haven't decided yet.)\n\trootbier: Actually - it won't be two moves from now - I am going to take a little more time here to try to save time on building yellows later. Not sure that will help you but do your best.\r\n\r\nAnd ask questions. If you are considering something and not sure if it is a good plan or not -- you can just ask.\n\n40) rootbier: Discover Y1 Rootbier G3 Dage\n\n41) daselva: Build Y3 S4\n\n42) rootbier: Sacrifice Y3 Gates\nMove B3 Gates Daselva\nMove Y2 Gates Daselva\nMove Y1 Dage Daselva\n\trootbier: trouble. if you take one i just build with the other and call cat green. if you sac the r2 to take both i pull my sac y2 to move my two big guys in.\r\n\r\nbut don't worry - i get over eager and mess up often enough ;) you'll probably find a chink in my armor before it's over.\n\tdaselva: playing this game with all your comments has been very useful for me to understand this game that I´m finding very interesting and very demanding(it´s hard to understand all it´s mechanics).I´m felling that g3 and y3 are the most important ships...in the actual situation I think I can´t do much to your attack.. .. \n\n43) daselva: Attack Y2 Daselva\n\n44) rootbier: Trade B3 Y3 Daselva\nCatastrophe Daselva Y\n\trootbier: it's a very deep game. it moves slowly until things are set up and then... sacrifices make some quick things happen. always have to be looking for the trouble that might come from a sacrifice.\n\trootbier: it isn't going to make a big difference this time... but you always want to note how movement/connection changes when one of the homestars gets wiped out - sometimes it will mean that the two home systems become directly connected - which can mean new opportunities and new trouble.\n\n\trootbier: that simply won't do it man. though at this point - there was very little (maybe nothing) that would have.\n\nHomeworlds Online (SDG# 16906)\nVariants: "Hard time"\nStarted: 2010.7.16, Ended: 2010.8.10\nParticipants: dlwillson (S), agentofchaos (N)\nWinner: dlwillson\n\n1) agentofchaos: Homeworld R1 B2 G3\n\tagentofchaos: Hi there, enjoy the game \n\n2) dlwillson: Homeworld Y1 B3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\tdlwillson: You too, Agent! Good to play you again. I have SDG on my phone, so I'll get my turns in ASAP. If I take a long time, it means your kickin' my butt. :-)\n\n4) dlwillson: B G1 Dlwillson\n\tagentofchaos: I can only hope I might be kickin' yr butt, stranger things have happened! ;-)\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) agentofchaos: Build G1 Agentofchaos\n\tdlwillson: This is really much too slow for me. I don't mind playing slow in a regular game, but this is keeping me from playing other ladder matches. Kill me quick, wouldja?\n\tdlwillson: How about a turn a day?\n\tagentofchaos: Sorry i've just been distracted the last few days, I'll step up the pace a bit now\n\n8) dlwillson: Build R1 Dlwillson\n\n9) agentofchaos: Build Y1 Agentofchaos\n\n10) dlwillson: B R2 Dlwillson\n\n11) agentofchaos: Build Y2 Agentofchaos\n\n12) dlwillson: D R2 Dlwillson B2 Sticky\n\n13) agentofchaos: Trade Y2 R2 Agentofchaos\n\n14) dlwillson: B G1 Dlwillson\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) dlwillson: D R1 Dlwillson Y2 Slick\n\n17) agentofchaos: Discover Y2 Agentofchaos B3 Klabberjass\n\n18) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Slick\nBuild R3 Sticky\nBuild R3 Dlwillson\n\n19) agentofchaos: Build R3 Agentofchaos\n\n20) dlwillson: T R3 Y3 Dlwillson\n\n21) agentofchaos: Move R3 Agentofchaos Klabberjass\n\n22) dlwillson: Build R3 Dlwillson\n\n23) agentofchaos: Discover G1 Agentofchaos Y3 Blackguard\n\n24) dlwillson: M R2 Slick Blackguard\n\n25) agentofchaos: Sacrifice G1 Blackguard\nBuild Y2 Klabberjass\n\n26) dlwillson: Sacrifice Y3 Dlwillson\nMove R1 Slick Blackguard\nMove R2 Blackguard Agentofchaos\nMove R1 Blackguard Agentofchaos\nCatastrophe Agentofchaos R\n\n27) agentofchaos: Build G1 Agentofchaos\n\n28) dlwillson: Trade R3 Y3 Sticky\n\tagentofchaos: Ouch..\n\n29) agentofchaos: Trade Y2 G2 Klabberjass\n\n30) dlwillson: T R2 B2 Sticky\n\tdlwillson: Expensive, but worth it, I hope. Now, how was I going to finish this? I don't seem to have any of the colors I need and you have that darned R3...\n\tagentofchaos: yes it will be interesting to see how this plays out..\n\n31) agentofchaos: Build G1 Klabberjass\n\n32) dlwillson: D B2 Sticky G3 Puffy\n\n33) agentofchaos: Build G2 Klabberjass\n\n34) dlwillson: Build B1 Puffy\n\n35) agentofchaos: Sacrifice Y2 Klabberjass\nMove R3 Klabberjass Sticky\nMove R3 Sticky Puffy\n\n36) dlwillson: S Y3 Sticky\nM B2 Puffy Agentofchaos\nM B1 Puffy Agentofchaos\nPass\n\n37) agentofchaos: Sacrifice R3 Puffy\nAttack B1 Agentofchaos\nAttack B2 Agentofchaos\nPass\n\n38) dlwillson: M R3 Dlwillson Agentofchaos\n\n\tagentofchaos: Looks like it's all over now, well played :-)\n\tdlwillson: Thank you, Agent! Good game!\n\nHomeworlds Online (SDG# 16888)\nVariants: "Hard time"\nStarted: 2010.7.17, Ended: 2010.8.13\nParticipants: goulo (S), jonaskoelker (N)\nWinner: goulo\n\n1) jonaskoelker: Homeworld B1 R2 G3\n\n2) goulo: Homeworld B3 G2 Y3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) goulo: Build Y1 Goulo\n\tjonaskoelker: Hi. Good luck, have fun :)\n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\tgoulo: Hi, I'm slow this week due to travel. :)\n\n6) goulo: Discover Y1 Goulo G1 Smeraldeto\n\tjonaskoelker: Okay. I hope I'm stressing you with the time limits (?)\n\n7) jonaskoelker: Build G1 Jonaskoelker\n\n8) goulo: Build Y1 Goulo\n\tjonaskoelker: I meant I hope I'm *not* stressing you with the time limits, wrt. vacationing :)\n\n9) jonaskoelker: Build Y2 Jonaskoelker\n\tgoulo: Ha, OK. :)\r\nIn any case, we are home again. The vacation was good. :)\n\n10) goulo: Build Y2 Smeraldeto\n\tjonaskoelker: Ah, good to hear :) I'll be away from monday on, but I'll be able to check in every once in a while.\n\n11) jonaskoelker: Discover Y1 Jonaskoelker G3 Big_green\n\n12) goulo: Trade Y1 R1 Goulo\n\n13) jonaskoelker: Build Y1 Big_green\n\n14) goulo: Build R1 Goulo\n\tjonaskoelker: Except for being on the receiving end, I really like your opening; it's quite agressive. Of course, your starfleet is no match against the power of the force :P\n\n15) jonaskoelker: Move Y1 Big_green Smeraldeto\n\tgoulo: That's a neat thing getting to play with various people and see different styles. Many of my games were played with the same people, so by playing with other folks I hope to break out of our groupthink. :)\n\n16) goulo: Move Y2 Smeraldeto Big_green\n\n\nHomeworlds Online (SDG# 16841)\nStarted: 2010.7.19, Ended: 2010.10.29\nParticipants: ts52 (S), ZackStack (N)\nWinner: ts52\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Hi TS! Its been a while... have a good game!\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) ZackStack: Build G1 Zackstack\n\tts52: Thanks. You too!\n\n4) ts52: Build G1 Ts52\n\n5) ZackStack: Trade G1 Y1 Zackstack\n\n6) ts52: Trade G1 R1 Ts52\n\n7) ZackStack: Trade Y1 R1 Zackstack\n\tZackStack: Sigh... we can't have that now... :-)\n\n8) ts52: Build R2 Ts52\n\n9) ZackStack: Build R2 Zackstack\n\n10) ts52: Discover R2 Ts52 G2 Oscar\n\n11) ZackStack: Trade R2 Y2 Zackstack\n\n12) ts52: Build R2 Ts52\n\n13) ZackStack: Discover R1 Zackstack G3 Gilbert\n\n14) ts52: Build G1 Ts52\n\n15) ZackStack: Build G1 Zackstack\n\n16) ts52: Trade G1 B1 Ts52\n\n17) ZackStack: Trade G1 B1 Zackstack\n\n18) ts52: Build B2 Ts52\n\n19) ZackStack: Build B2 Zackstack\n\n20) ts52: Move B2 Ts52 Oscar\n\n21) ZackStack: Move B2 Zackstack Gilbert\n\n22) ts52: Build B3 Oscar\n\n23) ZackStack: Build B3 Gilbert\n\n24) ts52: Trade B3 Y3 Oscar\n\n25) ZackStack: Trade B2 Y2 Gilbert\n\n26) ts52: Build G1 Ts52\n\n27) ZackStack: Build B2 Gilbert\n\n28) ts52: Build B3 Oscar\n\n29) ZackStack: Discover B2 Gilbert G2 Froggy\n\n30) ts52: D Y3 Oscar B3 Gonzo\n\n31) ZackStack: Move B1 Zackstack Gilbert\n\n32) ts52: D G1 Ts52 Y2 Bigbird\n\n33) ZackStack: Move B1 Gilbert Froggy\n\n34) ts52: Move B1 Ts52 Bigbird\n\n35) ZackStack: Build Y1 Gilbert\n\n36) ts52: Move G1 Bigbird Gonzo\n\n37) ZackStack: Move Y2 Gilbert Froggy\n\n38) ts52: Build G1 Ts52\n\n39) ZackStack: Build G1 Zackstack\n\n40) ts52: Move R2 Ts52 Bigbird\n\n41) ZackStack: Build Y1 Froggy\n\n42) ts52: Discover R2 Bigbird Y3 Fozzie\n\n43) ZackStack: Discover B3 Gilbert G2 Tadpole\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Fozzie\nBuild R3 Ts52\n\n45) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild R3 Gilbert\nBuild Y1 Gilbert\n\n46) ts52: Build R3 Oscar\n\n47) ZackStack: Move Y1 Gilbert Tadpole\n\n48) ts52: Move R3 Ts52 Froggy\n\n49) ZackStack: Sacrifice Y2 Froggy\nMove B1 Froggy Ts52\nMove B2 Froggy Ts52\n\n50) ts52: Trade B2 Y2 Oscar\n\n\nHomeworlds Online (SDG# 16919)\nStarted: 2010.7.20, Ended: 2011.2.25\nParticipants: ZackStack (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) ZackStack: Homeworld R1 B3 G3\n\tZackStack: Here we go again :-) Have a good game!\n\n3) rootbier: Build G1 Rootbier\n\trootbier: I think you mean - good luck not boning yourself with some foolish oversight :P Thanks :) Maybe this will be the time.\n\n4) ZackStack: Build G1 Zackstack\n\tZackStack: My main tactic is to have my opponent make foolish oversights... I hardly ever discourage it :-)\n\n5) rootbier: Trade G1 B1 Rootbier\n\trootbier: I am sure you have many accommodating opponents.\n\n6) ZackStack: Trade G1 B1 Zackstack\n\n7) rootbier: B B2 Rootbier\n\tZackStack: I return my fair share of the particular favor :-)\n\n8) ZackStack: Build B2 Zackstack\n\trootbier: Going by your record, "fair" is the operative and very flexibly defineable word in that sentence :D\n\tZackStack: <chuckle> \n\n9) rootbier: Discover B2 Rootbier G3 Tango\n\n10) ZackStack: Trade B2 Y2 Zackstack\n\n11) rootbier: Discover B1 Rootbier Y3 Quasi\n\n12) ZackStack: Discover B1 Zackstack G2 Cash\n\n13) rootbier: Build B2 Tango\n\n14) ZackStack: Build Y1 Zackstack\n\trootbier: I used to love that movie. When I was but a simple teen.\n\tZackStack: I was sure that's where you were going after you named the first system :-)\n\n15) rootbier: Build G1 Rootbier\n\trootbier: Not necessarily but it was a possibility.\n\n16) ZackStack: Move Y1 Zackstack Cash\n\n17) rootbier: Trade B2 Y2 Tango\n\n18) ZackStack: Build B2 Cash\n\tZackStack: There. That feels less like going backwards :-)\n\n19) rootbier: Build B2 Tango\n\n20) ZackStack: Trade B2 R2 Cash\n\n21) rootbier: Discover B2 Tango G2 Gabriel\n\n22) ZackStack: Move R2 Cash Tango\n\n23) rootbier: Move Y2 Tango Gabriel\n\n24) ZackStack: Attack B2 Tango\n\n25) rootbier: Discover B1 Quasi G1 Raymond\n\n26) ZackStack: Build R1 Tango\n\trootbier: OMG F ME - I have always always always read the attack rule incorrectly and this is the FIRST time I have ever encountered it in contradiction to my reading. (I have even taught it incorrectly to a couple people ...and I think I might like mine better)\r\n\r\nI've always played that you could not attack ANY ship in a system if you didn't have size equal to or greater than their largest...\r\n ...in other words-- that the mere presence of my B3 would be enough to protect my 2s at Tango.\r\n\r\nI checked the old print-out I originally learned from and I must have misread it from the very beginning. And yet.... huh... how have I been playing so long without that happening before.\r\n\r\nI feel so confused and lost now. How many games have I thrown away by not attacking smaller ships? How many times have I left myself needlessly exposed? What do I tell the people I have taught. OMG. UGH.\r\n\r\nI have to absorb this before I can go further.\n\tZackStack: Ouch. I hate when that sort of thing happens. My moment was during my first game on SDG when I realized you couldn't build ships of any color! Up to that point I felt blue ships/stars were pretty useless... Feel free to undo your response in light of your new knowledge!\n\trootbier: Ha hah. Aren't you the friendliest competitor around. My only justification is ... my friend and I were just so completely perplexed while trying to learn the game off of this piece of paper... something was bound to go wrong.\r\n\r\nWe knew we couldn't trade up - and didn't see how always having to build the smallest available pieces (obivously 1s if you interpret the rules the wrong way) ever got us anything larger.\r\n\r\nAnyway - I feel rather dumb but actually like my interpretation of attack (it's never led to a disappointing game before) ... whatever. Onward and thank you.\n\n27) rootbier: Trade B2 R2 Gabriel\n\trootbier: I sleep now.\n\tZackStack: Its a rare game where someone sneaks a smaller ship under a large to steal other ships so I'm not suprised you haven't had it happen before! I might get a nap if both girls sleep at the same time... ;-)\n\n28) ZackStack: Trade R1 G1 Tango\n\tZackStack: Thank you for the competitor compliment as well. I certainly would have given your moves back in person... so why not on here!\n\n29) rootbier: Build Y1 Gabriel\n\n30) ZackStack: Build G2 Zackstack\n\n31) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild R1 Gabriel\nBuild B2 Raymond\n\n32) ZackStack: Sacrifice G3 Zackstack\nBuild G3 Zackstack\nBuild B2 Tango\nBuild B3 Cash\n\n33) rootbier: Sacrifice Y2 Gabriel\nMove B1 Raymond Cash\nMove B2 Raymond Cash\nCatastrophe Cash B\n\n34) ZackStack: Sacrifice G3 Zackstack\nBuild G1 Zackstack\nBuild G3 Zackstack\nBuild R1 Tango\n\n\nHomeworlds Online (SDG# 16866)\nVariants: "Hard time"\nStarted: 2010.7.20, Ended: 2010.9.4\nParticipants: Jesse (S), rootbier (N)\nWinner: Jesse\n\n1) rootbier: Homeworld B1 Y2 G3\n\trootbier: I promise to try not to time out on this one :P\n\n2) Jesse: Homeworld Y1 B3 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) Jesse: Build G1 Jesse\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) rootbier: Build Y2 Rootbier\n\n8) Jesse: Build Y2 Jesse\n\n9) rootbier: Discover Y1 Rootbier G3 Skade\n\n10) Jesse: Discover Y2 Jesse G2 Hippo\n\n11) rootbier: Build Y3 Rootbier\n\n12) Jesse: Build Y3 Hippo\n\n13) rootbier: Trade Y2 R2 Rootbier\n\n14) Jesse: Trade Y1 R1 Jesse\n\n15) rootbier: Discover Y3 Rootbier B3 Plane\n\n16) Jesse: Discover Y3 Hippo B3 Croc\n\n17) rootbier: Build R1 Rootbier\n\n18) Jesse: Build R1 Jesse\n\n19) rootbier: Move R2 Rootbier Skade\n\n20) Jesse: Move R1 Jesse Hippo\n\n21) rootbier: Build R2 Rootbier\n\n22) Jesse: Build R2 Jesse\n\n23) rootbier: Move Y3 Plane Hippo\n\n24) Jesse: Sacrifice Y2 Hippo\nMove R1 Hippo Croc\nDiscover R2 Jesse G2 Antel\n\n25) rootbier: Build R3 Skade\n\n26) Jesse: Build R3 Antel\n\n27) rootbier: Build R3 Skade\n\n28) Jesse: Build G1 Jesse\n\trootbier: Calculated. Calculte.\n\trootbier: Calculated. Calculate.\n\n29) rootbier: Move R3 Skade Hippo\n\n30) Jesse: Trade G1 B1 Jesse\n\trootbier: I still can't keep a good sense of continuity playing HW here. What was I actually thinking last time? Don't know... my brain is made of strange putties lately.\n\n31) rootbier: Sacrifice Y3 Hippo\nMove R2 Skade Antel\nMove R1 Rootbier Skade\nMove R1 Skade Antel\nCatastrophe Antel R\n\n32) Jesse: Build G1 Jesse\n\n33) rootbier: Build G1 Rootbier\n\n34) Jesse: Discover G1 Jesse Y2 Phan\n\n35) rootbier: Discover G1 Rootbier B3 Balm\n\n36) Jesse: Move G1 Phan Croc\n\n37) rootbier: Discover R3 Skade B2 Reflux\n\n38) Jesse: Build G1 Jesse\n\n\nHomeworlds Online (SDG# 16681)\nStarted: 2010.7.21, Ended: 2010.8.20\nParticipants: scottobear (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) scottobear: Homeworld R2 B1 G3\n\tTwoShort: \n\tTwoShort: \n\tTwoShort: Howdy. I'm on vacation deep in the land of not much internet. I'm happy to play, but don't expect very frequent moves until next week.\n\tscottobear: no worries! take all the time you like - I enjoy leisurely games :)\n\n3) TwoShort: Build G1 Twoshort\n\n4) scottobear: Build G1 Scottobear\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) scottobear: Trade G1 Y1 Scottobear\n\n7) TwoShort: Build G1 Twoshort\n\n8) scottobear: Build G1 Scottobear\n\n9) TwoShort: Build G1 Twoshort\n\n10) scottobear: Build G2 Scottobear\n\n11) TwoShort: Discover G1 Twoshort G2 Greenzilla\n\n\nHomeworlds Online (SDG# 16928)\nStarted: 2010.7.21, Ended: 2010.10.29\nParticipants: ts52 (S), scottobear (N)\nWinner: ts52\n\n1) scottobear: Homeworld R2 B3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) scottobear: Build G1 Scottobear\n\tts52: Have a good game.\n\tscottobear: thanks! a long time since I've played! :D\n\n4) ts52: Build G1 Ts52\n\n5) scottobear: Trade G1 Y1 Scottobear\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) scottobear: Discover Y1 Scottobear G1 Boog\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) scottobear: Build G1 Scottobear\n\n10) ts52: Build Y2 Kermit\n\n11) scottobear: Build Y2 Boog\n\n12) ts52: Build G1 Ts52\n\n\nHomeworlds Online (SDG# 16774)\nStarted: 2010.7.21, Ended: 2010.9.23\nParticipants: Mandrel (S), scottobear (N)\nWinner: Mandrel\n\n1) scottobear: Homeworld B2 R1 G3\n\n2) Mandrel: H B2 R3 G3\n\n3) scottobear: Build G1 Scottobear\n\tMandrel: Have a good game.\n\tscottobear: thank you! I'm new, but look forward to learning some strategy. :)\n\n4) Mandrel: B G1 Mandrel\n\tMandrel: Cool, i've been playing a fair bit recently, but still barely past the basics strategy-wise.\n\n5) scottobear: Trade G1 Y1 Scottobear\n\n6) Mandrel: T G1 Y1 Mandrel\n\n\nHomeworlds Online (SDG# 16884)\nStarted: 2010.7.21, Ended: 2012.2.27\nParticipants: scottobear (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) scottobear: Homeworld R2 B1 G3\n\trootbier: Thanks for grabbing the challenge. Good luck.\n\tscottobear: Thanks! I'm still a tenderfoot at this... hope you have fun too!\n\tscottobear: Thanks! I'm still a tenderfoot at this... hope you have fun too!\n\n3) rootbier: Build G1 Rootbier\n\trootbier: Should I call out things that strike me as mistakes/poor choices? First one was your build with respect to mine. Taking the same small star - I will be able to take that remaining b1 before you -- which will give me early access to larger ships. You will be stuck building up through the small ships of another color while I build 2s and even 3s.\r\n\r\nI can show you how that goes or you can undo and just switch the sizes on your two stars.\n\trootbier: Well... onward then.\n\n4) scottobear: Build G1 Scottobear\n\tscottobear: Sorry I missed that note until now - I look forward to any hints or tricks!\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) scottobear: Trade G1 Y1 Scottobear\n\n7) rootbier: Build B2 Rootbier\n\n8) scottobear: Build G1 Scottobear\n\n9) rootbier: Discover B1 Rootbier G3 Slake\n\n\nHomeworlds Online (SDG# 16920)\nStarted: 2010.7.21, Ended: 2011.12.28\nParticipants: dethdukk (S), scottobear (N)\nWinner: dethdukk\n\n1) scottobear: Homeworld B2 R1 G3\n\n2) dethdukk: Homeworld R3 B1 G3\n\n\nHomeworlds Online (SDG# 16960)\nStarted: 2010.7.21, Ended: 2010.8.20\nParticipants: TwoShort (S), scottobear (N)\nWinner: TwoShort\n\n1) scottobear: Homeworld R2 B1 G3\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) scottobear: Build G1 Scottobear\n\n4) TwoShort: Build B1 Twoshort\n\n5) scottobear: Trade G1 Y1 Scottobear\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) scottobear: Build G1 Scottobear\n\n8) TwoShort: Build B2 Twoshort\n\n9) scottobear: Build G1 Scottobear\n\n10) TwoShort: Discover B2 Twoshort G2 Grogar\n\n11) scottobear: Discover Y1 Scottobear R3 Warzone\n\n12) TwoShort: Build B2 Twoshort\n\n\nHomeworlds Online (SDG# 16682)\nVariants: "Hard time"\nStarted: 2010.7.21, Ended: 2010.7.23\nParticipants: dlwillson (S), brikwars560 (N)\nWinner: dlwillson\n\n1) brikwars560: Pass\n\tbrikwars560: hi\n\n2) dlwillson: H B3 Y2 G3\n\n\tdlwillson: Hello? Are you there?\n\nHomeworlds Online (SDG# 16972)\nVariants: "Unrated"\nStarted: 2010.7.22, Ended: 2010.10.27\nParticipants: riddick (S), johannz (N), enochroot (E)\nWinner: johannz\n\n1) johannz: Homeworld B1 Y3 G3\n\n2) enochroot: Homeworld B2 Y1 G3\n\n3) riddick: Homeworld B3 Y2 G3\n\n4) johannz: Build G1 Johannz\n\tjohannz: build g1 johannz\n\n5) enochroot: Build G1 Enochroot\n\n6) riddick: Build G1 Riddick\n\tjohannz: New user accidentally clicked the "Page Admin" button. He has been chastised :) \n\n7) johannz: Discover G1 Johannz G2 Teleflora\n\n8) enochroot: Build G1 Enochroot\n\n\nHomeworlds Online (SDG# 16973)\nStarted: 2010.7.22, Ended: 2010.7.23\nParticipants: Lurch (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) Lurch: Homeworld Y2 B1 G3\n\tdlwillson: Dude, you are amazingly fast.\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Lurch: Build G1 Lurch\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Lurch: Discover G1 Lurch Y3 Alphacentauri\n\n7) dlwillson: Build B1 Dlwillson\n\tdlwillson: I sure like a fast game.\n\n8) Lurch: Build G1 Lurch\n\n9) dlwillson: Discover B1 Dlwillson B2 Brooder\n\tLurch: I concur. \n\n10) Lurch: Trade G1 R1 Lurch\n\n11) dlwillson: Build B2 Dlwillson\n\n12) Lurch: Discover R1 Lurch B3 Beta\n\n13) dlwillson: Discover B2 Dlwillson B2 Skulker\n\n14) Lurch: Trade R1 G1 Beta\n\n15) dlwillson: Build B3 Dlwillson\n\n16) Lurch: Build G1 Beta\n\n17) dlwillson: Sacrifice B2 Skulker\nTrade G3 Y3 Dlwillson\nTrade B3 R3 Dlwillson\n\tLurch: good night\n\tdlwillson: 'Night. Think I've got you in this one, Lurch. Three or so moves, maybe. Depends...\n\n18) Lurch: Trade G1 Y1 Beta\n\n19) dlwillson: S Y3 Dlwillson\nM R3 Dlwillson Brooder\nM R3 Brooder Beta\nM R3 Beta Lurch\n\n20) Lurch: Build G1 Lurch\n\n21) dlwillson: A G3 Lurch\n\n22) Lurch: Move Y1 Beta Lurch\n\n23) dlwillson: Sacrifice R3 Lurch\nAttack Y1 Lurch\nAttack G1 Lurch\nPass\n\tdlwillson: I can put in my turns from my phone, but I can't chat from it, which is why I've been so quiet.\r\n\r\nThat was the fastest I've ever played a game on SDG, and I've played many here! Usually, it's a turn or two per day. Some players it's days per turn.\r\n\r\nDo you want to try a handicap in the next game? I could start out with a small ship or all blue or something.\r\n\r\nI HAVE played a lot of Homeworlds...\n\tLurch: Yes, I think a handicap would make it more balanced.\n\tdlwillson: OK, let's do another one. Go to Challenges and pick up my standing challenge.\r\n\r\nI'll go all-blue, which should be a Hell of a good handicap. I have to start with a trade to grow, and can't move until I trade again.\r\n\r\nLesson from this game:\r\n\r\nNever let the other guy lock you out of a color, take the last small or medium if you must, but you can't let the other guy keep a monopoly.\n\n\nHomeworlds Online (SDG# 16962)\nStarted: 2010.7.22, Ended: 2010.7.29\nParticipants: Lurch (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) Lurch: Homeworld B3 Y1 G3\n\trootbier: Welcome to the site and the game. Have you ever played it before/offline?\n\n3) rootbier: Build G1 Rootbier\n\n4) Lurch: Build G1 Lurch\n\n5) rootbier: Trade G1 Y1 Rootbier\n\n6) Lurch: Trade G1 B1 Lurch\n\n7) rootbier: Build Y1 Rootbier\n\n8) Lurch: Build B1 Lurch\n\n9) rootbier: Discover Y1 Rootbier G3 Bamam\n\tLurch: I have played once offline with dlwilson. I'm a total noob.\n\n10) Lurch: Discover B1 Lurch G2 Alpha\n\n11) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Bamam\nBuild Y2 Bamam\nBuild Y3 Rootbier\n\trootbier: we all were at some point. feel free to ask questions. right now - you're in a little trouble because i am already going to mostly lock you out of yellow. and from there it gets ugly. you could do the same to me with blue - but blue isn't nearly as valuable as yellow.\n\trootbier: you understand that you can't build another blue there right now ... i'd be able to call catastrophe and wipe them all out. so you need to move at least once (like i just did) before building more blue. you can build green but that doesn't get you to larger ships so fast. you can't really just trade your big to yellow - cuz then you'll have no green... the whole game is baby steps :)\r\n\r\nexcept for sacrifices :D\n\n12) Lurch: Build B2 Alpha\n\tLurch: My plan is to build it and trade it before you could call a catastrophe :)\n\trootbier: it doesn't work that way. i can call it right now and you lose all your blue - including your star. you can undo or i can teach you the painful lesson.\n\trootbier: ;)\n\tLurch: I guess I don't understand. I can change my ship in one move but I don't see how you can get a blue into my home world in one move. You still need to discover a size 2 star, move to my home world and build or trade to get a blue ship.\n\trootbier: I don't need to be there. I don't need to be the CAUSE of the overpopulation. I just need to see that there are four of the same color in a system and put in the command. Means you even have to control your own population/growth.\r\n\r\nI made a similar mistake when I was starting and paid dearly for it. \n\tLurch: dough, I see what you mean now.\n\n13) rootbier: Trade Y3 B3 Rootbier\n\n14) Lurch: Move G3 Lurch Alpha\n\n15) rootbier: Discover Y2 Bamam G2 Plat\n\n16) Lurch: Trade G3 Y3 Alpha\n\n17) rootbier: Trade Y1 G1 Rootbier\n\n18) Lurch: Trade B1 G1 Lurch\n\n19) rootbier: Build B1 Rootbier\n\n20) Lurch: Sacrifice Y3 Alpha\nMove B1 Alpha Bamam\nMove B1 Bamam Rootbier\nMove B2 Alpha Bamam\nCatastrophe Rootbier B\n\n21) rootbier: Build Y1 Plat\n\n22) Lurch: Trade B2 R2 Bamam\n\n23) rootbier: Sacrifice Y1 Bamam\nMove Y2 Bamam Plat\n\n24) Lurch: Build G1 Lurch\n\n25) rootbier: Build G2 Rootbier\n\trootbier: seemed like a good idea but you have effectively locked yourself out of yellows and will be sitting pretty still for a while.\n\n26) Lurch: Trade G1 B1 Lurch\n\n27) rootbier: Discover Y2 Plat G1 Ooger\n\n28) Lurch: Build G2 Lurch\n\n29) rootbier: Sacrifice G2 Rootbier\nBuild Y1 Plat\nBuild Y3 Ooger\n\n30) Lurch: Discover B1 Lurch G2 Beta\n\n31) rootbier: Build Y3 Ooger\n\n32) Lurch: Move G1 Lurch Rootbier\n\n33) rootbier: Sacrifice Y3 Ooger\nMove Y3 Ooger Rootbier\nDiscover Y2 Ooger B3 Cathe\nMove Y1 Plat Cathe\n\n34) Lurch: Build G1 Rootbier\n\n35) rootbier: Build G3 Rootbier\nCatastrophe Rootbier G\n\n36) Lurch: Build G1 Lurch\n\n37) rootbier: Trade Y1 B1 Cathe\n\n38) Lurch: Trade B1 Y1 Beta\n\n39) rootbier: Move B1 Cathe Rootbier\n\n40) Lurch: Build Y3 Beta\n\n41) rootbier: Trade Y3 R3 Rootbier\n\n42) Lurch: Move Y3 Beta Bamam\n\trootbier: Let me help you along there.\n\tLurch: That is not exactly what I was going for but thanks :)\n\n43) rootbier: Build Y3 Plat\n\trootbier: I didn't imagine it was ;)\n\n44) Lurch: Build Y3 Bamam\n\n45) rootbier: Move Y3 Plat Lurch\n\n46) Lurch: Sacrifice Y3 Bamam\nMove Y3 Bamam Plat\nMove Y1 Beta Bamam\nMove Y1 Bamam Plat\nCatastrophe Plat Y\n\n47) rootbier: Sacrifice R3 Rootbier\nAttack G1 Lurch\nAttack G2 Lurch\nPass\n\n\tLurch: Thanks, I think that my take away from this game is not to give up a size 3 ship in your homeworld for early gains.\n\trootbier: Yeah. Having a three at home is pretty crucial. If I have to go without for a turn -- okay I will -- but unless I have LOTS of yellow to spare I will always (try to) have a big ship within one easy step of home. Blah blah and blah.\r\n\r\nAnd watch what you lose on cats - you may hurt the other guy bad (you did) - but you can easily end up screwing yourself over in the process (you did).\n\nHomeworlds Online (SDG# 16969)\nVariants: "Hard time"\nStarted: 2010.7.23, Ended: 2010.7.25\nParticipants: dlwillson (S), Lurch (N)\nWinner: Lurch\n\n1) Lurch: Homeworld Y1 B2 G3\n\n2) dlwillson: Homeworld B3 B1 B3 *\n\n3) Lurch: Build G1 Lurch\n\n4) dlwillson: Trade B3 G3 Dlwillson\n\n5) Lurch: Trade G1 B1 Lurch\n\n6) dlwillson: B G1 Dlwillson\n\n7) Lurch: Discover B1 Lurch G3 Beta\n\n8) dlwillson: T G1 Y1 Dlwillson\n\n9) Lurch: Build B1 Beta\n\n10) dlwillson: B Y1 Dlwillson\n\n11) Lurch: Build B2 Beta\n\n12) dlwillson: B Y2 Dlwillson\n\n13) Lurch: Trade B2 Y2 Beta\n\n14) dlwillson: D Y2 Dlwillson B2 Gamma\n\n15) Lurch: Build Y2 Beta\n\n16) dlwillson: B Y3 Dlwillson\n\n17) Lurch: Sacrifice Y2 Beta\nMove B1 Beta Gamma\nMove B1 Beta Gamma\n\n18) dlwillson: T Y1 R1 Dlwillson\n\n19) Lurch: Sacrifice Y2 Beta\nMove B1 Gamma Dlwillson\nMove B1 Gamma Dlwillson\nCatastrophe Dlwillson B\n\n\nHomeworlds Online (SDG# 16981)\nVariants: "Hard time"\nStarted: 2010.7.24, Ended: 2010.7.31\nParticipants: AdamBadura (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld B3 Y2 G3\n\n2) AdamBadura: Homeworld G3 B2 R3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) AdamBadura: Build R1 Adambadura\n\n5) Uglyfoot: Trade G1 R1 Uglyfoot\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) Uglyfoot: Discover G1 Uglyfoot B1 Tart\n\n10) AdamBadura: Build R1 Adambadura\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) AdamBadura: Move R1 Adambadura Tart\n\n13) Uglyfoot: Sacrifice R1 Uglyfoot\nAttack R1 Tart\n\n14) AdamBadura: Build R1 Adambadura\n\n15) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n16) AdamBadura: Trade Y1 G1 Adambadura\n\n17) Uglyfoot: Build G1 Tart\n\n18) AdamBadura: Build Y1 Adambadura\n\n19) Uglyfoot: Build Y2 Uglyfoot\n\n20) AdamBadura: Discover G1 Adambadura R1 Outpost\n\n21) Uglyfoot: Move Y2 Uglyfoot Outpost\n\n22) AdamBadura: Build G2 Outpost\n\n23) Uglyfoot: Attack G2 Outpost\n\n24) AdamBadura: Sacrifice Y1 Adambadura\nDiscover G1 Outpost Y3 Lastresort\n\n25) Uglyfoot: Build G2 Uglyfoot\n\n26) AdamBadura: Discover R1 Adambadura Y1 Ontheway\n\n27) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Outpost\n\n28) AdamBadura: Build R2 Adambadura\n\n29) Uglyfoot: Sacrifice Y1 Uglyfoot\nMove G1 Tart Adambadura\n\n30) AdamBadura: Move G1 Lastresort Ontheway\n\n31) Uglyfoot: Sacrifice G2 Uglyfoot\nBuild G2 Adambadura\nBuild R2 Tart\n\n32) AdamBadura: Build R2 Ontheway\n\n33) Uglyfoot: Sacrifice Y2 Outpost\nMove R1 Tart Adambadura\nMove R2 Tart Adambadura\nCatastrophe Adambadura R\n\n34) AdamBadura: Build Y1 Adambadura\n\n35) Uglyfoot: Trade G3 R3 Uglyfoot\n\tAdamBadura: Oh... I havn't seen that. I knew I was going to lose but it will come quicker than I though...\n\n36) AdamBadura: Build G3 Ontheway\n\n37) Uglyfoot: Sacrifice R3 Uglyfoot\nAttack Y1 Adambadura\nAttack Y1 Adambadura\nPass\n\n\nHomeworlds Online (SDG# 16362)\nStarted: 2010.7.25, Ended: 2012.3.6\nParticipants: the_luggage (S), rootbier (N), Teo (E)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) Teo: Homeworld B2 Y3 G3\n\n3) the_luggage: Homeworld B1 Y3 G3\n\n4) rootbier: Build G1 Rootbier\n\trootbier: OMG amazing! It's a LARS!\n\n5) Teo: Build G1 Teo\n\n6) the_luggage: Build G1 The_luggage\n\n7) rootbier: Trade G1 B1 Rootbier\n\n8) Teo: Trade G1 Y1 Teo\n\n9) the_luggage: Discover G1 The_luggage B2 Discworld\n\tTeo: Ohhhh Yeah !\n\n10) rootbier: Build B1 Rootbier\n\n11) Teo: Build G1 Teo\n\n12) the_luggage: Build G1 Discworld\n\n13) rootbier: Discover B1 Rootbier G3 Skerrd\n\n14) Teo: Trade G1 R1 Teo\n\n15) the_luggage: Trade G1 Y1 Discworld\n\n16) rootbier: Sacrifice G3 Rootbier\nBuild B2 Skerrd\nBuild B2 Skerrd\nBuild B3 Rootbier\n\n17) Teo: Build Y1 Teo\n\tTeo: Sorry I'm a bit late !\n\n\nHomeworlds Online (SDG# 16974)\nStarted: 2010.7.25, Ended: 2010.7.31\nParticipants: rootbier (S), Tank_7 (N)\nWinner: rootbier\n\n1) Tank_7: Homeworld G2 R1 B3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) Tank_7: Build B1 Tank_7\n\n4) rootbier: Build G1 Rootbier\n\n5) Tank_7: Trade B3 Y3 Tank_7\n\trootbier: Welcome to the site and the game. Have you ever played before/offline?\n\tTank_7: I have played offline before, its nice to have this site I see!\n\n6) rootbier: Trade G1 B1 Rootbier\n\n7) Tank_7: Build B2 Tank_7\n\trootbier: played a lot or a little?\n\n8) rootbier: Discover B1 Rootbier G2 Achio\n\n9) Tank_7: Discover B1 Tank_7 G3 Nidulon\n\n10) rootbier: Build G1 Rootbier\n\tTank_7: played just a little, under 10 solid games\n\n11) Tank_7: Build B2 Nidulon\n\n12) rootbier: Trade G1 Y1 Rootbier\n\n13) Tank_7: Trade B1 Y1 Nidulon\n\n14) rootbier: Build G1 Rootbier\n\n15) Tank_7: Build B1 Nidulon\n\n16) rootbier: Build G1 Rootbier\n\n17) Tank_7: Trade B2 G2 Nidulon\n\n18) rootbier: Discover G1 Rootbier B2 Palace\n\n19) Tank_7: Trade B2 Y2 Tank_7\n\n20) rootbier: Build B2 Achio\n\n21) Tank_7: Build B2 Nidulon\n\n22) rootbier: Build G1 Palace\n\n23) Tank_7: Sacrifice B1 Nidulon\nTrade Y3 G3 Tank_7\n\n24) rootbier: Trade B1 R1 Achio\n\tTank_7: I'm an idiot!\n\n25) Tank_7: Trade G2 R2 Nidulon\n\n26) rootbier: Sacrifice G3 Rootbier\nBuild G2 Palace\nBuild G3 Rootbier\nBuild B1 Achio\n\n27) Tank_7: Move R2 Nidulon Palace\n\n28) rootbier: Sacrifice R1 Achio\nAttack R2 Palace\n\n29) Tank_7: Build B1 Nidulon\n\n30) rootbier: Move Y1 Rootbier Achio\n\n31) Tank_7: Discover B2 Nidulon Y2 Kamu\n\n32) rootbier: Discover B2 Achio R3 Azel\n\n33) Tank_7: Build B3 Nidulon\n\n34) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild B3 Azel\nBuild B3 Achio\n\n35) Tank_7: Trade B1 R1 Nidulon\n\n36) rootbier: Sacrifice B2 Azel\nTrade G3 Y3 Rootbier\nTrade G1 R1 Palace\n\n37) Tank_7: Sacrifice Y2 Tank_7\nMove B3 Nidulon Tank_7\nDiscover G3 Tank_7 R3 Canopus\n\n38) rootbier: Sacrifice Y3 Rootbier\nMove B3 Achio Azel\nMove B3 Azel Tank_7\nMove B3 Azel Tank_7\n\n39) Tank_7: Sacrifice G3 Canopus\nBuild B1 Tank_7\nBuild B2 Tank_7\nBuild R2 Nidulon\n\n40) rootbier: Pass\nCatastrophe Tank_7 B\n\n\nHomeworlds Online (SDG# 16987)\nStarted: 2010.7.25, Ended: 2011.3.23\nParticipants: rootbier (S), MagicJohn (N)\nWinner: rootbier\n\n1) MagicJohn: Homeworld G2 Y1 B3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) MagicJohn: Build B1 Magicjohn\n\n4) rootbier: Build G1 Rootbier\n\n5) MagicJohn: Trade B3 G3 Magicjohn\n\n6) rootbier: Trade G1 B1 Rootbier\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) rootbier: Build B2 Rootbier\n\n9) MagicJohn: Discover G1 Magicjohn Y3 Dune\n\n10) rootbier: Discover B2 Rootbier G2 Nude\n\n11) MagicJohn: Discover B1 Magicjohn G3 Theshire\n\tMagicJohn: Sorry about the wait. One of my generals is being openly critical of my policies. I've had to fire him.\n\n12) rootbier: Build B2 Rootbier\n\trootbier: "fire"\n\n13) MagicJohn: Build G1 Magicjohn\n\n14) rootbier: Discover B2 Rootbier Y2 Helmet\n\n15) MagicJohn: Move G1 Magicjohn Theshire\n\n16) rootbier: Sacrifice G3 Rootbier\nBuild B2 Nude\nBuild B3 Helmet\nBuild B3 Rootbier\n\tMagicJohn: I keep having to squirm out of situations that I created. Annoying....... Very annoying.\n\trootbier: ? Don't panic man. Count moves if you have to. I doubt I have put you in any serious danger yet.\r\n\r\nIf you're talking about always being at the edge of overpopulation... that's part of the game yeah.\n\n17) MagicJohn: Build B3 Theshire\n\n18) rootbier: Sacrifice B2 Helmet\nTrade B3 G3 Rootbier\nTrade B2 Y2 Nude\n\tMagicJohn: Panic,,,,no.... Grinding my teeth.... probably..... I am just at a point where my current awareness of game variables totally exceeds my ability to juggle them. Patience with that situation has never been my forte'.\n\n19) MagicJohn: Trade B3 Y3 Theshire\n\n20) rootbier: Sacrifice Y2 Nude\nMove B3 Helmet Dune\nMove B3 Dune Magicjohn\n\n21) MagicJohn: Sacrifice B1 Theshire\nTrade G3 R3 Magicjohn\n\trootbier: Hi!\n\n22) rootbier: Sacrifice G3 Rootbier\nBuild B1 Magicjohn\nBuild B2 Magicjohn\nBuild B2 Nude\n\tMagicJohn: My wife must be issuing invitations behind my back again. Just in time for dinner. We're just having rootbier floats.\n\n23) MagicJohn: Attack B3 Magicjohn\n\trootbier: Blueberries!\n\tMagicJohn: I need a rules interpretation. I submitted the action of sacrificing my r3 and turning your blue ships in magicjohn. The game refuses my move and says that I must own a ship in my home system at the end of my turn. At the end of my turn, wouldn't I own three "blueberries" in magicjohn? \n\n24) rootbier: Trade B2 G2 Nude\n\tMagicJohn: Apparently the program likes this move, so I will trundle on. I'm still puzzled why the other move was disallowed.\n\trootbier: Sacrifice moves happen in exact order. You can not sacrifice your red because it is your ONLY ship there - you would lose the moment it was gone. Furthermore - you would need a ship to attack with. If you sacrificed it you would have no ship to there to take your three by-the-rules attack actions with. Imagining that you had another smaller ship there - if you sacrificed the large red one - you would then have three attack moves using that smaller ship and would not be able to attack my larger ship.\r\n\r\nNow I am just trying to figure out why I did what I did.\n\n25) MagicJohn: Attack B2 Magicjohn\n\n26) rootbier: Sacrifice G2 Nude\nBuild B2 Magicjohn\nBuild B3 Rootbier\nCatastrophe Magicjohn B\n\tMagicJohn: No doubt giving me small fires to put out while you build an empire. PS.... Thanks for the clear explanation although, in some instances, I prefer my "magic thinking" to logic. : )\n\trootbier: Taking those ships one at a time and not trading them off blue --- with green in your system -- that doesn't help you. Just wastes your turns.\n\n27) MagicJohn: Build R1 Magicjohn\n\trootbier: I am SO bad at remembering my plans from one move to the next and I almost never bother to use the notebook.\n\n28) rootbier: Build B1 Nude\n\trootbier: That feels much better :)\r\n\r\nP.S. No empire plans. Maybe I just hoped to catch you sleeping. Which I didn't. And then I did.\n\tMagicJohn: No more dinner invitations.....\n\tMagicJohn: Oh!...... So if I stall long enough between moves your armies may become prone to memory-based strategic anomalies....\n\n29) MagicJohn: Discover R1 Magicjohn B3 Loci\n\trootbier: Sorry. What? Huh?\n\n30) rootbier: Trade B3 R3 Rootbier\n\n31) MagicJohn: Build R1 Magicjohn\n\n32) rootbier: Build B2 Nude\n\n33) MagicJohn: Move G1 Theshire Nude\n\n34) rootbier: Trade B2 Y2 Nude\n\n35) MagicJohn: Build G1 Dune\n\n36) rootbier: Build B2 Nude\n\n37) MagicJohn: Sacrifice Y3 Theshire\nMove G1 Dune Nude\nMove G1 Dune Nude\nPass\nCatastrophe Nude Green\n\n38) rootbier: Trade B1 G1 Rootbier\n\n39) MagicJohn: Trade R1 G1 Loci\n\trootbier: You need a plan man. Or at least you need to know some possible plans to move towards/how to be a threat.\r\n\r\nWhat's your general thought process on all this at this point?\n\n40) rootbier: Build G1 Rootbier\n\tMagicJohn: I am having trouble building or trading for blue ships. I was considering dropping my dune ships into nude and blowing up the system. That would make some blue ships available and limit your travel for the time being. I was also trying to limit your travel by limiting the number of Y3's available to you although the afore-mentioned tactic would free them up. \n\trootbier: You're having trouble getting blue because I am controlling it. You can move to blues fairly easily - but yeah - it doesn't get done what I think you're looking for.\r\n\r\nYou're clearly going for the system. It's a great thing to consider and it's yours at the cost of that big yellow. Any slower than that it won't work so well. It could well be worth the cost if you think you'll take some of my control away. \r\n\r\nRemember that I will have the next move in that "redefined" world (three systems would disappear at once). Consider your state after - my state after - and the Stash's state after. If you have trouble visualizing - make the move and I can lay off taking my own. Give you the chance to look at it and decide if you like it. Give you time to undo.\r\n\r\nYou've definitely had the advantage since my failed blue invasion. Press it. Push me and limit me.\n\n41) MagicJohn: Move R3 Magicjohn Loci\n\tMagicJohn: Still thinking about this. You will probably trade your red for a green and I will have to scramble to keep up. I also sacrificed material for a minor positional advantage.\n\trootbier: Do you want me to wait while you consider it? Just let me know when to press on.\n\tMagicJohn: Still cogitating......\n\trootbier: ...\n\tMagicJohn: ............ Wife hit rough health time. Priorities and all. Go with the inputted move.\n\trootbier: Oof... very sorry to hear that.\r\nSomething chronic or a new thing?\r\n\r\nI think your move was fine.\n\n42) rootbier: Trade G1 Y1 Rootbier\n\tMagicJohn: Chronic problem suddenly got a lot worse....\n\n43) MagicJohn: Build R1 Loci\n\n44) rootbier: Build Y1 Rootbier\n\trootbier: Sorry to hear. I don't pray to anything - but I hope you guys have better times ahead.\n\n45) MagicJohn: Trade R3 G3 Loci\n\n46) rootbier: Discover Y1 Rootbier Y2 Bamama\n\n47) MagicJohn: Build R1 Loci\n\n48) rootbier: Build Y2 Rootbier\n\n49) MagicJohn: Trade G3 Y3 Loci\n\n50) rootbier: Discover Y1 Bamama G3 Bleak\n\n51) MagicJohn: Build Y2 Loci\n\n52) rootbier: Discover Y1 Rootbier G2 Glowb\n\n53) MagicJohn: Trade Y3 G3 Loci\n\n54) rootbier: Build Y2 Bleak\n\n55) MagicJohn: Build Y3 Loci\n\n56) rootbier: Sacrifice Y2 Rootbier\nMove Y2 Bleak Magicjohn\nMove Y1 Bleak Magicjohn\n\n57) MagicJohn: Build R2 Magicjohn\n\n58) rootbier: Sacrifice R3 Rootbier\nAttack R2 Magicjohn\nAttack R1 Magicjohn\nPass\n\tMagicJohn: Wife's in hospital... I'll play when I can but priorities and all.....\n\n\tMagicJohn: Please ignore last gibberish. I suspect I should have moved a G3 to MagicJohn or sacrificed a Y3 and moved in an armada so you could not capture everything.....?\n\trootbier: Thanks for the welcome.\r\n\r\nHope you and yours are doing better/well. It's been an odd half-year.\r\n\r\nAnd you're right ... I can't capture a 2 with a 1.\n\nHomeworlds Online (SDG# 16896)\nVariants: "Hard time"\nStarted: 2010.7.27, Ended: 2010.8.14\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 R1 G3\n\n2) SilentTitan: Homeworld Y2 G3 B3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) SilentTitan: Build B1 Silenttitan\n\n5) dlwillson: B G1 Dlwillson\n\n6) SilentTitan: Discover B1 Silenttitan B1 Bluemoon\n\n7) dlwillson: Trade G1 B1 Dlwillson\n\n8) SilentTitan: Trade B1 G1 Bluemoon\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\n10) SilentTitan: Build G1 Bluemoon\n\n11) dlwillson: Build R1 Dlwillson\n\n12) SilentTitan: Trade G1 Y1 Bluemoon\n\n13) dlwillson: B G1 Dlwillson\n\n14) SilentTitan: Build Y1 Bluemoon\n\n15) dlwillson: T G1 Y1 Dlwillson\n\n16) SilentTitan: Discover Y1 Bluemoon R2 Hagar\n\n17) dlwillson: B Y2 Dlwillson\n\n18) SilentTitan: Discover G1 Bluemoon Y3 Yaz\n\n19) dlwillson: Discover Y1 Dlwillson G2 Ell-bore-oom\n\n20) SilentTitan: Build B1 Silenttitan\n\n21) dlwillson: B B2 Dlwillson\n\n22) SilentTitan: Trade B3 Y3 Silenttitan\n\n23) dlwillson: B Y2 Dlwillson\n\n24) SilentTitan: Build B2 Silenttitan\n\n25) dlwillson: Move B2 Dlwillson Hagar\n\n26) SilentTitan: Sacrifice G1 Yaz\nBuild Y3 Hagar\n\n27) dlwillson: Build Y3 Ell-bore-oom\n\n28) SilentTitan: Trade B2 R2 Silenttitan\n\n29) dlwillson:\nS Y2 Dlwillson\nD R1 Dlwillson B2 Hellboreboom\nD B2 Hagar G1 Smellodoom\n\n30) SilentTitan: Trade Y3 G3 Silenttitan\n\n31) dlwillson: Move Y1 Ell-bore-oom Smellodoom\n\n32) SilentTitan: Move Y3 Hagar Smellodoom\n\n33) dlwillson: T Y1 G1 Smellodoom\n\n34) SilentTitan: Discover Y3 Smellodoom G2 Redonk\n\n35) dlwillson: Build G1 Dlwillson\n\n36) SilentTitan: Sacrifice B1 Silenttitan\nTrade Y3 R3 Redonk\n\n37) dlwillson: S G3 Dlwillson\nB G2 Smellodoom\nB G3 Dlwillson\nB Y1 Ell-bore-oom\n\n38) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Redonk\nBuild R3 Silenttitan\nBuild Y2 Bluemoon\n\n39) dlwillson: S G3 Dlwillson\nB R3 Hellboreboom\nB G3 Dlwillson\nB G3 Dlwillson\n\n40) SilentTitan: Trade Y2 B2 Bluemoon\n\n41) dlwillson: Sacrifice Y2 Dlwillson\nDiscover R1 Hellboreboom B1 Bestbuy\nMove R3 Hellboreboom Bestbuy\n\n42) SilentTitan: Sacrifice B2 Bluemoon\nTrade R3 Y3 Redonk\nTrade R3 B3 Silenttitan\n\n43) dlwillson: Sacrifice Y3 Ell-bore-oom\nMove B2 Smellodoom Silenttitan\nMove G1 Smellodoom Silenttitan\nMove R1 Bestbuy Ell-bore-oom\n\n44) SilentTitan: Sacrifice R2 Redonk\nAttack B2 Silenttitan N\nAttack G1 Silenttitan N\n\n45) dlwillson: S G3 Dlwillson\nB R2 Dlwillson\nB R3 Ell-bore-oom\nB R3 Bestbuy\n\n46) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Hagar\n\n47) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Smellodoom\nBuild G3 Dlwillson\nBuild G3 Dlwillson\n\n48) SilentTitan: Sacrifice Y3 Redonk\nMove R2 Silenttitan Bluemoon\nMove R2 Bluemoon Hagar\nMove R2 Hagar Dlwillson\nCatastrophe Dlwillson Red\n\n49) dlwillson: Sacrifice Y1 Ell-bore-oom\nMove R3 Bestbuy Silenttitan\n\n50) SilentTitan: Trade Y1 R1 Bluemoon\n\n51) dlwillson: Sacrifice R3 Ell-bore-oom\nAttack B3 Silenttitan\nAttack B2 Silenttitan\nPass\n\tSilentTitan: good game.... I figured that was the best I could do in the face of such overwhelming odds...\n\n\tdlwillson: So, about those Wednesdays?\n\tSilentTitan: RUSH this Wednesday\n\nHomeworlds Online (SDG# 16963)\nStarted: 2010.7.27, Ended: 2010.7.31\nParticipants: mathochist (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n\tdlwillson: Learn to use "My SDG" to manage your games, dude.\n\nHomeworlds Online (SDG# 16964)\nStarted: 2010.7.27, Ended: 2010.8.25\nParticipants: dlwillson (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld B3 Y2 G3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tdlwillson: Good to see you again. Hope all's well.\n\n4) dlwillson: Build G1 Dlwillson\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) TwoShort: Build Y1 Twoshort\n\n8) dlwillson: Build R1 Dlwillson\n\n9) TwoShort: Build Y1 Twoshort\n\n10) dlwillson: Discover R1 Dlwillson B1 Duct_tape\n\n11) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n12) dlwillson: B G1 Dlwillson\n\n13) TwoShort: Build Y2 Twoshort\n\n14) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Duct_tape\nBuild R2 Duct_tape\nBuild R2 Dlwillson\n\n15) TwoShort: Build Y2 Grogar\n\n16) dlwillson: Build R3 Dlwillson\n\n17) TwoShort: Build Y3 Grogar\n\n18) dlwillson: D R3 Dlwillson B1 Wd40\n\n19) TwoShort: Sacrifice Y3 Grogar\nDiscover Y1 Twoshort Y3 Flip\nDiscover Y1 Twoshort Y3 Flap\nDiscover Y2 Twoshort Y3 Yelly\n\n20) dlwillson: B R3 Dlwillson\n\n21) TwoShort: Build G1 Twoshort\n\n22) dlwillson: Trade R2 G2 Duct_tape\n\n23) TwoShort: Trade G1 B1 Twoshort\n\n24) dlwillson: T R2 B2 Dlwillson\n\n25) TwoShort: Build B2 Twoshort\n\n26) dlwillson: B B3 Dlwillson\n\n27) TwoShort: Move Y2 Grogar Twoshort\n\n28) dlwillson: D B3 Dlwillson G1 Pliers\n\n29) TwoShort: Discover B2 Twoshort B3 Bluestar\n\n30) dlwillson: Discover B2 Dlwillson G1 Bfh\n\n31) TwoShort: Discover B1 Twoshort G3 Groundhog\n\n32) dlwillson:\nB G2 Dlwillson\n\n33) TwoShort: Build G2 Twoshort\n\tTwoShort: When I think I can definitely win a game, I like to calculate the maximum number of moves my opponent can hold me off for. It's usually 3 or 4; one game recently was notable because it was 6.\r\n\r\nSo I'm sorry to say, I think I've got you here. But if it's any consolation, this is a really cool game: Unless I'm mistaken, I can force victory, but it will take 23 moves!\n\n34) dlwillson: B R2 Dlwillson\n\tdlwillson: So, is there any way for me to have recovered after you popped the Y3 to control all the Y?\n\tTwoShort: I'm not entirely sure, but probably not. When I decided to do it I figured to be sure I could maneuver from here to victory without giving you a yellow I needed control of 3 blue, and second green ship. Since then I realized I also two non-blue-non-yellow 3-point stars. I still can't figure out for sure if you could have denied me any of those in ways I couldn't overcome, but it looked pretty good...\n\n35) TwoShort: Move G2 Twoshort Flip\n\n36) dlwillson: Move R2 Dlwillson Pliers\n\n37) TwoShort: Move Y1 Flip Twoshort\n\n38) dlwillson: Build R2 Dlwillson\n\n39) TwoShort: Sacrifice G2 Flip\nBuild Y3 Grogar\nBuild G2 Twoshort\n\tdlwillson: 23 moves is a lot... :-)\n\tdlwillson: I don't suppose it'll take that long. I see all sorts of ways to accelerate my demise.\n\n40) dlwillson: Build R3 Duct_tape\n\n41) TwoShort: Move G2 Twoshort Yelly\n\n42) dlwillson: Sacrifice B2 Bfh\nTrade R1 G1 Duct_tape\nTrade R2 B2 Dlwillson\n\tdlwillson: I can't really move very much. Not even to retreat. So, if you invaded my 2-pip system with a 3-pip, I wouldn't be able to do anything to you, or get away, just as an example. Lesson from this game: TwoShort will work very hard to lock a fellow out of yellow, and knows how to use the advantage, once gained. Corollary: Don't get locked out of yellow.\n\n43) TwoShort: Discover Y2 Yelly R1 Roger\n\n44) dlwillson: Build R2 Dlwillson\n\tTwoShort: Without red, I can't do much to attack until I can cause catastrophes, so I don't want to make contact until I can finish you. But now that you mention it, controlling a 1-point star probably saves me a turn or two.\r\n But yeah, getting locked out of yellow is pretty certainly bad. Sometimes the other guy can't get enough non-yellow stuff without giving one up.\n\n45) TwoShort: Sacrifice G2 Yelly\nBuild Y3 Roger\nBuild G2 Twoshort\n\n46) dlwillson: Pass\n\n47) TwoShort: Move Y2 Roger Bluestar\n\n48) dlwillson: Pass\n\tTwoShort: The r1 star helps a lot... 7 more moves I think.\n\n49) TwoShort: Move B2 Bluestar Roger\n\n50) dlwillson: Pass\n\n51) TwoShort: Sacrifice Y3 Roger\nMove B1 Groundhog Roger\nMove B1 Roger Dlwillson\nMove B2 Roger Dlwillson\nCatastrophe Dlwillson Blue\n\tTwoShort: Or 2...\n\n52) dlwillson: Trade B3 Y3 Pliers\n\tdlwillson: Ah, my problem is always insufficient attention to detail. I didn't realize that the cat blue would leave you ready for the cat yellow. Figured I had a turn or two to move. Oh well.\n\n53) TwoShort: Sacrifice Y3 Grogar\nMove Y1 Grogar Dlwillson\nMove Y1 Flap Dlwillson\nMove Y2 Bluestar Dlwillson\nCatastrophe Dlwillson Yellow\n\tdlwillson: Good game. I learned.\n\tTwoShort: Thanks for the game!\n\n\nHomeworlds Online (SDG# 16979)\nVariants: "Hard time"\nStarted: 2010.7.28, Ended: 2010.8.17\nParticipants: dlwillson (S), shmil1 (N)\nWinner: dlwillson\n\n1) shmil1: Homeworld R3 B1 G3\n\n2) dlwillson: H G3 Y2 B3\n\n3) shmil1: Build G1 Shmil1\n\n4) dlwillson: Build B1 Dlwillson\n\n5) shmil1: Build G1 Shmil1\n\n6) dlwillson: Build B1 Dlwillson\n\n7) shmil1: Trade G1 Y1 Shmil1\n\n8) dlwillson: D B1 Dlwillson G1 Nearquat\n\n9) shmil1: Discover G1 Shmil1 Y2 Zluta\n\n10) dlwillson: Trade B3 G3 Dlwillson\n\n11) shmil1: Move G1 Zluta Nearquat\n\n12) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Nearquat\nBuild B2 Nearquat\nBuild B2 Dlwillson\n\n13) shmil1: Build G1 Nearquat\n\n14) dlwillson: B B3 Dlwillson\n\n15) shmil1: Trade G3 B3 Shmil1\n\n16) dlwillson: T B2 R2 Nearquat\n\n17) shmil1: Build G2 Nearquat\nCatastrophe Nearquat Green\n\n18) dlwillson: D B1 Dlwillson G1 Plan_b\n\n19) shmil1: Trade Y1 G1 Shmil1\n\n20) dlwillson: D B2 Dlwillson G1 Expansion\n\n21) shmil1: Build G2 Shmil1\n\n22) dlwillson: B B1 Dlwillson\n\n23) shmil1: Build B2 Shmil1\n\n24) dlwillson: Build B2 Expansion\n\n25) shmil1: Build G2 Shmil1\n\n26) dlwillson: Build B3 Plan_b\n\n27) shmil1: Trade B2 Y2 Shmil1\n\n28) dlwillson: T B3 Y3 Plan_b\n\n29) shmil1: Discover B3 Shmil1 Y2 Slunce\n\n30) dlwillson: Trade B3 R3 Dlwillson\n\n31) shmil1: Move B3 Slunce Expansion\n\n32) dlwillson: S Y3 Plan_b\nM R3 Dlwillson Expansion\nD R3 Expansion B2 Tempo\nM R3 Tempo Shmil1\n\n33) shmil1: Sacrifice B3 Expansion\nTrade G1 R1 Shmil1\nTrade G2 R2 Shmil1\nTrade G2 B2 Shmil1\nCatastrophe Shmil1 Red\n\n34) dlwillson: Build B3 Dlwillson\n\tshmil1: wow!\n\n35) shmil1: Move B2 Shmil1 Dlwillson\n\n36) dlwillson: Sacrifice B1 Dlwillson\nTrade B2 R2 Expansion\n\tdlwillson: I don't know why, but I thought I had you that turn. Nice job surviving! :-)\n\n37) shmil1: Build B1 Dlwillson\n\tdlwillson: Why do I never remember that connectivity changes with planet destruction?!? Grr me...\n\n38) dlwillson: Sacrifice R2 Expansion\nAttack B2 Dlwillson\nAttack B1 Dlwillson\n\tdlwillson: There, that should do it.\n\n39) shmil1: Trade Y2 G2 Shmil1\n\n40) dlwillson: Trade B2 R2 Dlwillson\n\n41) shmil1: Build G1 Shmil1\n\n42) dlwillson: Move B3 Dlwillson Shmil1\n\n43) shmil1: Trade G2 Y2 Shmil1\n\n44) dlwillson: Sacrifice R2 Dlwillson\nAttack Y2 Shmil1\nAttack G1 Shmil1\n\n\tdlwillson: Good game as always, Shmil1. Thank you.\n\nHomeworlds Online (SDG# 16998)\nVariants: "Hard time"\nStarted: 2010.7.28, Ended: 2010.7.30\nParticipants: dlwillson (S), Lurch (N)\nWinner: dlwillson\n\n1) Lurch: Homeworld Y1 B2 G3\n\n2) dlwillson: Homeworld B3 Y2 G3\n\n3) Lurch: Build G1 Lurch\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Lurch: Trade G1 Y1 Lurch\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Lurch: Build Y2 Lurch\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Lurch: Trade Y1 B1 Lurch\n\n10) dlwillson: D Y1 Dlwillson B1 Change\n\n11) Lurch: Discover B1 Lurch G3 Alpha\n\n12) dlwillson: B G1 Dlwillson\n\n13) Lurch: Build G1 Lurch\n\n14) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Change\nBuild Y3 Change\nBuild Y3 Dlwillson\n\n15) Lurch: Move Y2 Lurch Alpha\n\n16) dlwillson: Trade Y1 R1 Change\n\n17) Lurch: Build Y1 Alpha\n\n18) dlwillson: D Y2 Dlwillson G1 Growth\n\n19) Lurch: Discover Y2 Alpha B1 Beta\n\n20) dlwillson: Sacrifice Y2 Growth\nMove Y3 Change Alpha\nMove Y3 Alpha Lurch\n\n21) Lurch: Trade G3 R3 Lurch\n\n22) dlwillson: Sacrifice R1 Change\nAttack R3 Lurch\n\n23) Lurch: Build G1 Lurch\n\tdlwillson: Tip #3(?): Whenever the other guy "gets a gun" (a red ship), get a gun of your own ASAP.\n\n24) dlwillson: Sacrifice R3 Lurch\nAttack G1 Lurch\nAttack G1 Lurch\nPass\n\n\nHomeworlds Online (SDG# 16986)\nStarted: 2010.7.30, Ended: 2010.8.11\nParticipants: Lurch (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Pass\n\n2) Lurch: Homeworld Y1 B2 G3\n\n3) rootbier: Homeworld Y1 G3 Y3 *\n\n4) Lurch: Build G1 Lurch\n\n5) rootbier: Build Y1 Rootbier\n\n6) Lurch: Trade G3 Y3 Lurch\n\n7) rootbier: Discover Y1 Rootbier G2 Bates\n\n8) Lurch: Build Y2 Lurch\n\n9) rootbier: Build Y2 Bates\n\n10) Lurch: Discover Y2 Lurch G3 Alpha\n\n11) rootbier: Discover Y1 Bates B3 Worth\n\n12) Lurch: Build Y2 Alpha\n\n13) rootbier: Trade Y1 B1 Worth\n\n14) Lurch: Build G1 Lurch\n\trootbier: I had to try that again. I feel there has to be some way to make that kind of early color lock work... but maybe I am just too hopeful. Or maybe only with certain colors.\n\n15) rootbier: Move Y2 Bates Worth\n\n16) Lurch: Trade G1 B1 Lurch\n\n17) rootbier: Sacrifice B1 Worth\nTrade Y3 B3 Rootbier\n\n18) Lurch: Move B1 Lurch Alpha\n\n19) rootbier: Build B1 Rootbier\n\n20) Lurch: Build B1 Alpha\n\n21) rootbier: Trade B1 R1 Rootbier\n\n22) Lurch: Trade Y2 R2 Alpha\n\n23) rootbier: Build R1 Rootbier\n\n24) Lurch: Build R1 Alpha\n\n25) rootbier: Discover R1 Rootbier G2 Flak\n\n26) Lurch: Discover B1 Alpha G2 Beta\n\n27) rootbier: Build R2 Flak\n\n28) Lurch: Move R2 Alpha Beta\n\n29) rootbier: Move Y2 Worth Flak\n\n30) Lurch: Build Y1 Alpha\n\n31) rootbier: Build Y2 Flak\n\n32) Lurch: Build Y3 Alpha\n\n33) rootbier: Move Y2 Flak Alpha\nCatastrophe Alpha Y\n\n34) Lurch: Trade R2 Y2 Beta\n\trootbier: Watch your limits, good sir.\n\n35) rootbier: Move R2 Flak Alpha\n\n36) Lurch: Trade Y2 R2 Beta\n\n37) rootbier: Attack B1 Alpha\n\tLurch: I thought you would be more concerned with my Homeworld. But I guess it was an easy and low cost move for you.\n\n38) Lurch: Build R2 Beta\n\n39) rootbier: Build R3 Flak\n\trootbier: Low cost and now for whatever reason you traded a ship and traded it back. I'd say I've had a good couple rounds.\n\n40) Lurch: Trade R2 Y2 Beta\n\n41) rootbier: Discover R3 Flak G3 Intro\n\n42) Lurch: Build R2 Beta\n\n43) rootbier: Build R3 Rootbier\n\n44) Lurch: Build R3 Alpha\n\n45) rootbier: Sacrifice R1 Rootbier\nAttack R1 Alpha\n\n46) Lurch: Attack B1 Alpha\n\n47) rootbier: Build R1 Alpha\nCatastrophe Alpha R\n\n48) Lurch: Build Y1 Beta\n\n49) rootbier: Move R1 Flak Alpha\n\n50) Lurch: Build G1 Lurch\n\trootbier: I don't need to trade when I can build.\n\n51) rootbier: Build R1 Alpha\n\tLurch: I figured if you were going to cause a catastrophe at least I would still have the b1\n\n52) Lurch: Trade G1 R1 Lurch\n\trootbier: Of course - but was there really nothing more effective at that moment?\n\n53) rootbier: Build Y2 Flak\n\n54) Lurch: Discover G1 Lurch B3 Gama\n\n55) rootbier: Sacrifice Y2 Flak\nMove R1 Alpha Beta\nMove R1 Alpha Beta\nCatastrophe Beta R\n\n56) Lurch: Move Y1 Beta Alpha\n\n57) rootbier: Move Y2 Flak Intro\n\n58) Lurch: Build Y2 Beta\n\n59) rootbier: Build Y3 Intro\n\n60) Lurch: Build Y3 Alpha\n\n61) rootbier: Sacrifice Y2 Intro\nMove R3 Intro Lurch\nMove Y3 Intro Lurch\n\n62) Lurch: Attack R3 Lurch\n\n63) rootbier: Sacrifice R3 Rootbier\nAttack R3 Lurch\nAttack Y3 Lurch\nAttack R1 Lurch\n\n\nHomeworlds Online (SDG# 17002)\nVariants: "Hard time"\nStarted: 2010.7.30, Ended: 2010.8.31\nParticipants: Lurch (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) Lurch: Homeworld Y1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Lurch: Build G1 Lurch\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Lurch: Trade G1 R1 Lurch\n\n7) dlwillson: B G1 Dlwillson\n\n8) Lurch: Build G1 Lurch\n\n9) dlwillson:\nT G1 B1 Dlwillson\n\n10) Lurch: Trade G1 Y1 Lurch\n\n11) dlwillson: B G1 Dlwillson\n\n12) Lurch: Build Y2 Lurch\n\n13) dlwillson: T G3 Y3 Dlwillson\n\n14) Lurch: Discover Y2 Lurch G3 Alpha\n\n15) dlwillson: Build Y2 Dlwillson\n\n16) Lurch: Trade Y1 B1 Lurch\n\n17) dlwillson: Discover Y2 Dlwillson G2 Fungus\n\n18) Lurch: Move B1 Lurch Alpha\n\n19) dlwillson: B G1 Dlwillson\n\n20) Lurch: Build B1 Alpha\n\n21) dlwillson: M B1 Dlwillson Fungus\n\n22) Lurch: Discover B1 Alpha G2 Beta\n\n23) dlwillson: D G1 Dlwillson B2 Phosphor\n\n24) Lurch: Build B2 Beta\n\n25) dlwillson: B B3 Fungus\n\n26) Lurch: Build B3 Alpha\n\n27) dlwillson: Trade B3 G3 Fungus\n\n28) Lurch: Build B3 Beta\n\n29) dlwillson: S Y2 Fungus\nM B1 Fungus Alpha\nM B1 Alpha Beta\nC Beta B\n\n30) Lurch: Build B1 Alpha\n\n31) dlwillson: Build G1 Fungus\n\n32) Lurch: Build G2 Lurch\n\n33) dlwillson: S G3 Fungus\nB G2 Phosphor\nB G3 Dlwillson\nB Y1 Dlwillson\n\n34) Lurch: Discover B3 Alpha Y2 Beta\n\n35) dlwillson: Sacrifice Y1 Dlwillson\nDiscover G1 Fungus B3 Fluor\n\n36) Lurch: Discover G2 Lurch Y3 Gamma\n\n37) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Fluor\nBuild G3 Dlwillson\nBuild Y1 Dlwillson\n\n38) Lurch: Move G2 Gamma Beta\n\n39) dlwillson: M Y3 Dlwillson Phosphor\n\tdlwillson: Actually, you're doing a lot better this game. Rather than moving your G2 to a green planet and risking a catastrophe with supernova, consider sac'ing the G2 to monopolize blue. Or, start trading your blues for other things you might want.\n\tdlwillson: catastrophe with supernova is bad, even if I have to give up a battleship to do it.\n\n40) Lurch: Move B1 Alpha Beta\n\tLurch: Lurch: Patiently waiting...\n\tdlwillson: When the green bank is low, consider leaving a little green near your G3, so you can rebuild your G3 from it after a sacrifice.\n\n41) dlwillson: T G1 B1 Phosphor\n\tdlwillson: Like that. I had two "extra" builds. The G2 build was needed to get me back to my G3, but I have a good place for it. Then, I could build a second R or a second Y. Before building a second Y, I made sure there wasn't an easy way for you to build both remaining Y.\n\n42) Lurch: Build B2 Alpha\n\tdlwillson: ... or cat Y in my home system. I have the three Y, but you don't have an extra Y to throw.\n\n43) dlwillson: Discover B1 Phosphor Y3 Lumen\n\n44) Lurch: Trade B3 R3 Beta\n\n45) dlwillson: T G1 R1 Fluor\n\n46) Lurch: Build B3 Beta\n\n47) dlwillson: Build R2 Fluor\n\n48) Lurch: Trade B3 Y3 Beta\n\tdlwillson: I did that move to prevent you from sac'ing your Y2 to put both blues in and supernova the system, destroying my Y3. I'd rather have traded one of the greens in fluor for red to get another red spot. Next turn I'll probably do that. Gosh, you have a lot of blue, and I have ~none~. Hm. How can you take advantage of that? Maybe you could trade your B3 for something tasty. I can't build it, and trading for it in my home system would slow me down. I might move a ship to it. Anyway, it's a thought.\n\n49) dlwillson: Sacrifice G1 Dlwillson\nBuild B3 Lumen\n\n50) Lurch: Trade Y3 R3 Beta\n\n51) dlwillson: Build G1 Dlwillson\n\n52) Lurch: Build R2 Lurch\n\tdlwillson: Sorry I'm taking so long lately... Been busy/distracted.\n\tLurch: t b3 y3 beta\n\n53) dlwillson: Trade B1 G1 Lumen\n\tLurch: \n\tLurch: I didn't mean for that to be a comment.\n\n54) Lurch: Sacrifice Y2 Alpha\nMove R3 Beta Dlwillson\nMove R3 Beta Dlwillson\n\tdlwillson: So, I guess I can build it, I just have to be willing to sacrifice.\n\n55) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Dlwillson\nBuild G1 Fluor\nBuild G3 Dlwillson\nCatastrophe Dlwillson R\n\tLurch: Well there go my plans for world domination\n\n56) Lurch: Build B1 Beta\n\tdlwillson: OK, explain. To me, your first move looked much better than your second.\n\n57) dlwillson: Trade Y1 R1 Dlwillson\n\tdlwillson: Again, I build a small green next to the big green anytime I can safely do so, so that later, I can sac the big green and have a little green to rebuild it from.\n\n58) Lurch: Trade B1 Y1 Alpha\n\n59) dlwillson: Sacrifice Y3 Phosphor\nMove R1 Fluor Lurch\nMove R2 Fluor Lurch\nMove B3 Lumen Lurch\nCatastrophe Lurch R\n\n60) Lurch: Move B2 Alpha Beta\n\tdlwillson: Huh. I didn't notice you'd moved in on me. I suppose I'd better deal with that, rather than moving in on you, as I had originally planned.\n\n61) dlwillson: Sacrifice R1 Dlwillson\nAttack G3 Lurch\n\n\nHomeworlds Online (SDG# 17022)\nStarted: 2010.8.1, Ended: 2010.8.15\nParticipants: rootbier (S), Tank_7 (N)\nWinner: Tank_7\n\n1) Tank_7: Homeworld B1 R2 G3\n\n2) rootbier: Homeworld Y1 B2 G3\n\n3) Tank_7: Build G1 Tank_7\n\n4) rootbier: Build G1 Rootbier\n\n5) Tank_7: Build G1 Tank_7\n\n6) rootbier: Build G2 Rootbier\n\n7) Tank_7: Trade G1 Y1 Tank_7\n\n8) rootbier: Trade G2 Y2 Rootbier\n\n9) Tank_7: Discover G1 Tank_7 B3 Malfadoris\n\n10) rootbier: Trade G1 R1 Rootbier\n\n11) Tank_7: Trade G1 R1 Malfadoris\n\n12) rootbier: Build G1 Rootbier\n\n13) Tank_7: Build G1 Tank_7\n\n14) rootbier: Move Y2 Rootbier Malfadoris\n\n15) Tank_7: Sacrifice R1 Malfadoris\nPass\n\n16) rootbier: Build G1 Rootbier\n\n17) Tank_7: Trade G1 R1 Tank_7\n\n18) rootbier: Build R1 Rootbier\n\n19) Tank_7: Build Y1 Tank_7\n\tTank_7: Man I am a really weak player.\n\n20) rootbier: Sacrifice G1 Rootbier\nBuild Y2 Malfadoris\n\trootbier: ? What makes you say that right now. Ask if you have questions or need advice.\n\n21) Tank_7: Discover Y1 Tank_7 G3 Fyzan\n\tTank_7: The move I undid was a build green, you could have catastrophe'd 3 of my ships and my only large ship.\n\n22) rootbier: Build R2 Rootbier\n\trootbier: Doesn't make you weak - you saw it - and responded ... oh - not so quickly. S'alright - new does not equal weak. And you can blame me for putting us in a "Cage Match" (That's what I have been calling the close quarters homestar setups:) That takes some extra getting used to. End to end with a Y2.\r\n\r\n...so on the subject (of building things and tempting fate/disaster) are you absolutely sure you like your latest move?\n\tTank_7: Ah geeze I'm overfocusing on the stash and trying to win at "ship size wars"\n\n23) Tank_7: Build Y2 Fyzan\n\n24) rootbier: Move R1 Rootbier Malfadoris\n\n25) Tank_7: Move R1 Tank_7 Fyzan\n\n26) rootbier: Sacrifice Y2 Malfadoris\nDiscover R1 Rootbier Y3 Pluma\nMove G1 Rootbier Pluma\n\n27) Tank_7: Build G1 Tank_7\n\n28) rootbier: Sacrifice G3 Rootbier\nBuild R2 Rootbier\nBuild R3 Pluma\nBuild R3 Malfadoris\n\trootbier: Malfadoris! Malfadoris! Malfadoris! That's the last time I let you name the stars :P\n\tTank_7: It's from Space Empires 3 or 4 sorry :) www.malfador.com\n\n29) Tank_7: Build R3 Fyzan\n\n30) rootbier: Trade R2 G2 Rootbier\n\trootbier: Just kidding :)\n\n31) Tank_7: Sacrifice Y2 Fyzan\nMove G3 Tank_7 Fyzan\nMove G3 Fyzan Rootbier\n\n32) rootbier: Sacrifice Y2 Malfadoris\nMove G1 Pluma Rootbier\nMove R1 Pluma Rootbier\n\n33) Tank_7: Sacrifice R3 Fyzan\nAttack R2 Rootbier\nAttack G2 Rootbier\nAttack G1 Rootbier\n\n\tTank_7: Before I found this website I was working on my own methods of playing Homeworlds online. One method involved the popular PC game Starcraft, and the other way was a .bmp (basic windows paint file) players could exchange over e-mail or I.M.\n\trootbier: Yeah - I am glad this system is here (I pretty much only play homeworlds here at this point). The "chess by mail" style definitely makes it easier to find time to play - but carries with it certain inherent drawbacks. I should use the notebook more - but when I actually do see something great it seems so clear that I always think I will remember it when I come back.\r\n\r\nIt won't let me take you out in a blaze of catastrophic kablooey. So. I will content myself with knowing I have two large red ships floating out there and eager to avenge the rootbier civilization.\n\nHomeworlds Online (SDG# 17035)\nStarted: 2010.8.1, Ended: 2010.8.10\nParticipants: bhorner (S), rootbier (N)\nWinner: bhorner\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) bhorner: Homeworld G2 B1 B3 *\n\n3) rootbier: Build G1 Rootbier\n\tbhorner: This was done to me once, not sure if it will work for me. :)\n\trootbier: It can work alright with blue. I tried it with yellow recently and it failed hard.\n\n4) bhorner: Build B1 Bhorner\n\n5) rootbier: Trade G3 B3 Rootbier\n\n6) bhorner: Trade B3 Y3 Bhorner\n\n7) rootbier: Build B2 Rootbier\n\n8) bhorner: Discover B1 Bhorner G3 Other\n\n9) rootbier: Discover B2 Rootbier Y3 Slate\n\n10) bhorner: Trade Y3 R3 Bhorner\n\n11) rootbier: Build B2 Rootbier\n\n12) bhorner: Build B2 Other\n\n13) rootbier: Trade B3 G3 Rootbier\n\n14) bhorner: Trade B2 Y2 Other\n\n15) rootbier: Discover B2 Rootbier Y3 Sprout\n\n16) bhorner: Build R1 Bhorner\n\n17) rootbier: Trade G1 R1 Rootbier\n\n18) bhorner: Trade R1 Y1 Bhorner\n\n19) rootbier: Build G1 Rootbier\n\n20) bhorner: Build R1 Bhorner\n\n21) rootbier: Sacrifice G3 Rootbier\nBuild B2 Slate\nBuild B3 Sprout\nBuild G1 Rootbier\n\n22) bhorner: Build B3 Other\n\n23) rootbier: Move B3 Sprout Rootbier\n\n24) bhorner: Discover R1 Bhorner B3 Tricky\n\n25) rootbier: Trade B3 G3 Rootbier\n\n26) bhorner: Discover B1 Other Y2 Jen\n\trootbier: I need to work on my "Cage Match" games (that's what I've been calling the close home setups in my head). I think a strong red presence means a lot more in the tight quarters.\n\n27) rootbier: Sacrifice G1 Rootbier\nBuild B3 Sprout\n\tbhorner: I usually play with at least 3 people, so this is a different experience for me. I like the lack of politics. I think you're probably much more aware of important aspects than I am.\n\n28) bhorner: Trade R1 G1 Tricky\n\n29) rootbier: Move G1 Rootbier Sprout\n\n30) bhorner: Sacrifice G1 Tricky\nBuild B3 Other\n\trootbier: I was expecting you to cat my blues at home. Was a good opportunity for you.\r\n\r\nI have only played a couple 3/4 player games. Actually none of them have played through yet - with one of the four disappearing on each one (which leaves some weird ghost ships floating out there). So far they have all been pretty non-political. Are you talking about cutting deals and the like? I have been trying to stay away from that and as far as I can tell the same is true for my opponents. There is of course some amount of it in there no matter what. Like... if I move in this third ship - will the next guy throw in a fourth so we can be rid of those 3s there. Blah blah.\r\n\r\nI would like to play more larger ones. Mmm.\n\n31) rootbier: Trade B2 R2 Sprout\n\tbhorner: The politics comes in with the alignment cards... "Are you evil?", "Are you good?" I don't know how they run multiplayer on this site. We play pretty much daily at lunch, but no one will play me 1 v 1.\r\n\r\nI would have lost my big blue, and had little remaining offense if I cat'ed half your home world... I may not know how to finish very well...\n\n32) bhorner: Trade B1 G1 Jen\n\trootbier: Ahh you mean in person. Ok yeah. I think I would totally skip that and just play Sinister or last man standing.\r\n\r\nYou would have still had your R3 - and I would be very far from getting another 3. With the short distances I think you could have given me some real trouble. Once the other guy is 3less you've got good chances.\n\n33) rootbier: Move R2 Sprout Jen\n\n34) bhorner: Discover G1 Jen Y3 Jenny\n\tbhorner: I didn't want to give it away, but I just did what I'd been planning to do instead of cat'ing your homeworld. You could have stopped me if you'd moved a ship there.\n\trootbier: I'm not sure I see the one more 3 does for you that having me completely WITHOUT a 3 wouldn't have done. You're not in position to really threaten me with a blue cat problem invasion and all I have to do to stop you from coming in hard with your two 3s is trade one of my B2s to R2.\r\n\r\nMaybe I'm missing something. Suppose we'll find out.\n\n35) rootbier: Move R2 Jen Other\n\tbhorner: I was wracking my brain, and couldn't see a way out for you. The trade to r2 solved the problem. :)\n\n36) bhorner: Discover Y2 Other G2 Runaway\n\n37) rootbier: Move B2 Slate Runaway\n\n38) bhorner: Discover Y2 Runaway G3 Runtoward\n\n39) rootbier: Trade B3 R3 Sprout\n\n40) bhorner: Trade B3 R3 Other\n\n41) rootbier: Build R1 Other\n\n42) bhorner: Sacrifice Y1 Bhorner\nMove R3 Other Runaway\n\n43) rootbier: Sacrifice B2 Runaway\nTrade R2 Y2 Other\nTrade R1 G1 Rootbier\n\n44) bhorner: Build G2 Jenny\n\n45) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild R1 Other\nBuild R1 Sprout\n\n46) bhorner: Sacrifice Y2 Runtoward\nMove G2 Jenny Rootbier\nMove G1 Jenny Rootbier\nCatastrophe Rootbier Green\n\n\trootbier: I suppose that's what smelly old lithuanian surprise house guests will do - make you not see the simple threats in front of you. I am very very ashamed of myself for paying so little attention. Set up the rematch and watch out!\n\tbhorner: sorry I didn't see the new chat until just now... you had smelly old lithuanian surprise house guests??? That seems like a major disadvantage. :) I'll set up the rematch right now.\n\nHomeworlds Online (SDG# 17038)\nStarted: 2010.8.1, Ended: 2010.8.18\nParticipants: rootbier (S), dlwillson (N)\nWinner: rootbier\n\n1) dlwillson: H B3 Y1 G3\n\n2) rootbier: Homeworld B1 Y2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) rootbier: Build G1 Rootbier\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) dlwillson: B Y2 Dlwillson\n\n8) rootbier: Build Y2 Rootbier\n\n9) dlwillson: D Y1 Dlwillson B2 Ebay\n\n10) rootbier: Discover Y1 Rootbier G3 Obol\n\n11) dlwillson: Move Y1 Ebay Obol\n\n12) rootbier: Build G1 Rootbier\n\n13) dlwillson: Move Y1 Obol Rootbier\n\n14) rootbier: Build Y3 Obol\n\tdlwillson: Oh, why not? I have no idea how this'll turn out, but let's try it. :-)\n\n15) dlwillson: Trade Y2 G2 Dlwillson\n\tdlwillson: That was not the out-of-scale, dramatic, and self-destructive response I was hoping for... Now, I have to recover. Dang. :-)\n\n16) rootbier: Sacrifice Y2 Rootbier\nDiscover Y1 Obol B2 Ench\nMove Y3 Obol Ench\n\trootbier: Yeah - it's a little too early for freak out here.\n\n17) dlwillson: Sacrifice G2 Dlwillson\nBuild Y2 Rootbier\nBuild G1 Dlwillson\n\n18) rootbier: Trade G1 R1 Rootbier\n\n19) dlwillson: Sacrifice G1 Dlwillson\nBuild Y2 Rootbier\nCatastrophe Rootbier Y\n\tdlwillson: How 'bout NOW?! Are you freaking out NOW!? ... :-) No, huh?\n\trootbier: Not really, no.\n\n20) rootbier: Move Y3 Ench Dlwillson\n\n21) dlwillson: Trade G3 R3 Dlwillson\n\tdlwillson: Drat.\n\n22) rootbier: Sacrifice R1 Rootbier\nAttack R3 Dlwillson\n\trootbier: Sorry.\n\tdlwillson: Nah, good fun game. How 'bout a ladder match? I seem to be right next to you now, and the three guys ahead of you haven't signed in for over a month... :-/\n\n\trootbier: yeah. start us up. otherwise we could just take their spots by challenging them until they reach the force limit :P\n\nHomeworlds Online (SDG# 17036)\nStarted: 2010.8.1, Ended: 2010.8.7\nParticipants: rootbier (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld G2 B1 R3\n\n2) rootbier: Homeworld Y1 B3 G3\n\n3) AdamBadura: Build R1 Adambadura\n\n4) rootbier: Build G1 Rootbier\n\n5) AdamBadura: Trade R1 Y1 Adambadura\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) AdamBadura: Build Y2 Adambadura\n\n8) rootbier: Discover Y1 Rootbier G2 Banter\n\n9) AdamBadura: Discover Y2 Adambadura G3 Shipyard\n\n10) rootbier: Build Y2 Banter\n\n11) AdamBadura: Build Y2 Shipyard\n\n12) rootbier: Build G1 Rootbier\n\n13) AdamBadura: Build Y3 Adambadura\n\n14) rootbier: Discover Y2 Banter B3 Udi-2w\n\n15) AdamBadura: Move Y2 Shipyard Banter\n\n16) rootbier: Sacrifice G1 Rootbier\nBuild Y3 Udi-2w\n\n17) AdamBadura: Build Y3 Shipyard\n\n18) rootbier: Build G1 Rootbier\n\n19) AdamBadura: Build R1 Adambadura\n\n20) rootbier: Trade G1 B1 Rootbier\n\n21) AdamBadura: Sacrifice Y2 Shipyard\nMove Y3 Shipyard Banter\nMove Y3 Banter Rootbier\n\n22) rootbier: Sacrifice Y3 Udi-2w\nMove Y2 Udi-2w Banter\nMove Y2 Banter Rootbier\nMove Y1 Banter Rootbier\nCatastrophe Rootbier Y\n\n23) AdamBadura: Move Y3 Adambadura Rootbier\n\trootbier: I space walked myself into that one.\n\tAdamBadura: What are you thinging about for so long?\n\trootbier: The chaos of my life.\n\tAdamBadura: ;)\n\n\trootbier: Wasn't actually ever really even the very slightest possible chance you wouldn't use the new connection. Rematch me as not a space cadet (I hope).\n\nHomeworlds Online (SDG# 17033)\nVariants: "Hard time"\nStarted: 2010.8.1, Ended: 2010.8.9\nParticipants: captncavern (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) captncavern: Homeworld G3 B2 R3\n\n3) rootbier: Build G1 Rootbier\n\n4) captncavern: Build R1 Captncavern\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) captncavern: Trade R1 Y1 Captncavern\n\n7) rootbier: Build B1 Rootbier\n\n8) captncavern: Build R1 Captncavern\n\n9) rootbier: Discover B1 Rootbier G3 Bloke\n\n10) captncavern: Discover R1 Captncavern Y1 Boule\n\n11) rootbier: Sacrifice G3 Rootbier\nBuild B2 Bloke\nBuild B2 Bloke\nBuild B3 Rootbier\n\n12) captncavern: Discover R1 Boule Y3 Passe\n\n13) rootbier: Sacrifice B2 Bloke\nTrade B3 G3 Rootbier\nTrade B2 R2 Bloke\n\n14) captncavern: Build Y1 Captncavern\n\n15) rootbier: Sacrifice G3 Rootbier\nBuild B2 Bloke\nBuild B2 Bloke\nBuild B3 Rootbier\n\n16) captncavern: Build R1 Captncavern\n\n17) rootbier: Trade B2 Y2 Bloke\n\n18) captncavern: Build Y1 Captncavern\n\n19) rootbier: Discover B2 Bloke G1 Flake\n\n20) captncavern: Discover Y1 Captncavern G1 Autre\n\n21) rootbier: Build B2 Bloke\n\n22) captncavern: Trade R3 G3 Captncavern\n\n23) rootbier: Build Y2 Bloke\n\n24) captncavern: Sacrifice G3 Captncavern\nBuild Y3 Autre\nBuild R1 Passe\nBuild R2 Captncavern\n\n25) rootbier: Build B3 Flake\n\n26) captncavern: Sacrifice Y1 Captncavern\nMove Y3 Autre Captncavern\n\n27) rootbier: Build B3 Flake\n\n28) captncavern: Move R2 Captncavern Autre\n\n29) rootbier: Sacrifice B2 Bloke\nTrade B3 R3 Flake\nTrade B3 Y3 Flake\n\n30) captncavern: Discover R2 Autre B3 Caillou\n\n31) rootbier: Build B2 Flake\n\n32) captncavern: Move Y1 Autre Caillou\n\n33) rootbier: Build B3 Flake\n\n34) captncavern: Trade Y3 G3 Captncavern\n\n35) rootbier: Sacrifice B3 Flake\nTrade B2 G2 Flake\nTrade B2 G2 Flake\nTrade B3 R3 Rootbier\n\n36) captncavern: Sacrifice G3 Captncavern\nBuild Y1 Caillou\nBuild Y3 Captncavern\nBuild R2 Caillou\n\n37) rootbier: Sacrifice Y2 Bloke\nMove Y2 Bloke Flake\nMove Y2 Flake Captncavern\n\n38) captncavern: Sacrifice Y3 Captncavern\nMove R1 Passe Rootbier\nMove R1 Passe Rootbier\nMove R2 Caillou Rootbier\n\n39) rootbier: Sacrifice R3 Flake\nAttack R1 Captncavern\nAttack Y1 Captncavern\nAttack R2 Rootbier\n\n\trootbier: you might have meant to call cat - but you can see it's too late for that to actuallt make a difference. thanks for the game.\n\tcaptncavern: Ah! I missed the fact you could attack me. I always overlook something as important as that.\r\nYou played better than I did the whole game, anyway.\r\n\n\trootbier: Sorry. I tend to like giving a lot of advice - but I decided not to on ladder matches. Have to have more pure competition somewhere :) It was hard to hold my tongue at moments.\n\tcaptncavern: Don't worry, I like the game, but I know I won't ever be good at it, even with all the advice anyone could give me. There are more possibilities and interactions than my brain can take.\n\nHomeworlds Online (SDG# 17034)\nStarted: 2010.8.2, Ended: 2010.8.8\nParticipants: rootbier (S), cleverpun (N)\nWinner: rootbier\n\n1) cleverpun: Homeworld Y1 B2 G3\n\n2) rootbier: Homeworld B1 Y2 G3\n\n3) cleverpun: Build G1 Cleverpun\n\n4) rootbier: Build G1 Rootbier\n\n5) cleverpun: Discover G1 Cleverpun R3 Milkyway\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) cleverpun: Build G1 Cleverpun\n\n8) rootbier: Build Y1 Rootbier\n\n9) cleverpun: Trade G3 Y3 Cleverpun\n\n10) rootbier: Discover Y1 Rootbier B3 Cage\n\n11) cleverpun: Build Y2 Cleverpun\n\n12) rootbier: Move Y1 Cage Cleverpun\nCatastrophe Cleverpun Y\n\n13) cleverpun: Build G1 Milkyway\n\n14) rootbier: Build G2 Rootbier\n\tcleverpun: doh, that's what I get for going for the large yellows\n\n15) cleverpun: Build G2 Cleverpun\n\trootbier: and here i was thinking - "that's what you get for timing me out on our last game"\n\n16) rootbier: Discover G2 Rootbier Y3 Nomin\n\n17) cleverpun: Trade G2 R2 Cleverpun\n\tcleverpun: Touche. The readout kept telling me that you had passed the time limit, but perhaps I was premature regardless.\n\trootbier: I was indeed out of time and beyond. Taking the win though -- that's just generally not the way we do it around here.\r\n\r\nIt's not like there is a maximum number of games you can have going and you need to clear space -- so people tend to lean towards patience.\n\n18) rootbier: Build G2 Rootbier\n\n19) cleverpun: Trade G1 Y1 Cleverpun\n\tcleverpun: Well, still being new to the system, I'll admit that it was a faux pas on my end.\r\n\r\nIf you want an admin to delete it I wouldn't object (is deleting them even possible?); a win by default isn't something to be proud of anyway.\n\trootbier: No no. Just keep playing. I'll whupp you slowly and then start giving nice advice on the next one :)\n\n20) rootbier: Move G3 Rootbier Nomin\n\n21) cleverpun: Move R2 Cleverpun Nomin\n\tcleverpun: Funny, I'm usually the one doing that. Haven't been a newbie at a game in a while it seems. :D\n\n22) rootbier: Trade G2 R2 Rootbier\n\n23) cleverpun: Attack G2S Nomin\n\n24) rootbier: Sacrifice R2 Rootbier\nAttack R2 Nomin\nAttack G2 Nomin\n\n25) cleverpun: Sacrifice G1 Milkyway\nBuild Y1 Cleverpun\n\n26) rootbier: Move G3 Nomin Cleverpun\n\trootbier: Yeah. Definite n00bness on your side. Over in two.\n\n27) cleverpun: Trade Y1 G1 Cleverpun\n\n28) rootbier: Sacrifice R2 Nomin\nAttack Y1 Cleverpun\nAttack G1 Cleverpun\n\n\trootbier: Just grab yourself a rematch from the standing challenges and I'll fill you in a bit.\n\nHomeworlds Online (SDG# 16995)\nVariants: "Hard time"\nStarted: 2010.8.2, Ended: 2010.8.5\nParticipants: killbyll (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 B2 G3\n\n\nHomeworlds Online (SDG# 17037)\nStarted: 2010.8.2, Ended: 2010.11.30\nParticipants: SilentTitan (S), rootbier (N)\nWinner: SilentTitan\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) rootbier: Build B2 Rootbier\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) rootbier: Build G1 Rootbier\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) rootbier: Discover B1 Rootbier G3 Starve\n\n12) SilentTitan: Trade B2 Y2 Silenttitan\n\n13) rootbier: Trade B2 Y2 Rootbier\n\n14) SilentTitan: Discover B1 Silenttitan G1 Burtblack\n\n15) rootbier: Build G2 Rootbier\n\n16) SilentTitan: Build G2 Silenttitan\n\n17) rootbier: Build B2 Starve\n\n18) SilentTitan: Build Y1 Silenttitan\n\n19) rootbier: Discover G1 Rootbier B3 Tail\n\n20) SilentTitan: Trade G1 R1 Silenttitan\n\n21) rootbier: Sacrifice G3 Rootbier\nBuild G1 Rootbier\nBuild G2 Tail\nBuild G3 Rootbier\n\n22) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Burtblack Starve\nMove B1 Starve Rootbier\n\n23) rootbier: Sacrifice G3 Rootbier\nBuild G1 Tail\nBuild G3 Rootbier\nBuild B2 Starve\n\n24) SilentTitan: Trade B1 Y1 Rootbier\n\n25) rootbier: Sacrifice B2 Starve\nTrade Y2 R2 Rootbier\nTrade G2 Y2 Tail\n\n26) SilentTitan: Sacrifice Y1 Rootbier\nDiscover G2 Silenttitan Y1 Scamper\n\n27) rootbier: Sacrifice Y2 Tail\nDiscover B1 Starve Y1 Pluma\nMove G1 Tail Pluma\n\n28) SilentTitan: Build G2 Scamper\n\n29) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild B1 Starve\nBuild B2 Pluma\n\n30) SilentTitan: Sacrifice G2 Scamper\nBuild G2 Silenttitan\nBuild Y2 Silenttitan\n\n31) rootbier: Sacrifice G3 Rootbier\nBuild G3 Tail\nBuild B3 Pluma\nBuild B3 Starve\n\n32) SilentTitan: Sacrifice Y2 Silenttitan\nMove R1 Silenttitan Pluma\nDiscover G2 Scamper Y3 Plume\n\n33) rootbier: Sacrifice B3 Starve\nTrade G2 Y2 Rootbier\nTrade B2 G2 Pluma\nTrade G3 Y3 Tail\n\n34) SilentTitan: Attack G1 Pluma North\n\n35) rootbier: Sacrifice Y3 Tail\nMove G2 Pluma Silenttitan\nMove G1 Tail Pluma\nMove G1 Pluma Silenttitan\nCatastrophe Silenttitan G\n\n36) SilentTitan: Move G1 Pluma Silenttitan\n\n\nHomeworlds Online (SDG# 16997)\nStarted: 2010.8.4, Ended: 2010.8.15\nParticipants: daselva (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n2) daselva: Homeworld G1 Y2 B3\n\n3) TwoShort: Build G1 Twoshort\n\n4) daselva: Build B1 Daselva\n\n5) TwoShort: Build G1 Twoshort\n\n6) daselva: Trade B3 G3 Daselva\n\n7) TwoShort: Trade G3 Y3 Twoshort\n\n8) daselva: Trade B1 R1 Daselva\n\n9) TwoShort: Build G2 Twoshort\n\n10) daselva: Build R1 Daselva\n\n11) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n12) daselva: Discover R1 Daselva B3 S1\n\n13) TwoShort: Build G2 Bluonia\n\n14) daselva: Build R2 Daselva\n\n15) TwoShort: Trade G2 Y2 Bluonia\n\n16) daselva: Move R2 Daselva S1\n\n17) TwoShort: Build G2 Bluonia\n\n18) daselva: Trade R1 Y1 S1\n\n19) TwoShort: Trade G2 R2 Bluonia\n\n20) daselva: Trade R2 B2 S1\n\n21) TwoShort: Build G2 Bluonia\n\n22) daselva: Move B2 S1 Daselva\n\n23) TwoShort: Move G2 Bluonia S1\n\n24) daselva: Trade G3 Y3 Daselva\n\n25) TwoShort: Build G2 S1\n\n26) daselva: Build R1 Daselva\n\n27) TwoShort: Sacrifice G2 S1\nBuild G2 Bluonia\nBuild G3 S1\n\n28) daselva: Move R1 Daselva S1\n\n29) TwoShort: Sacrifice G3 S1\nBuild G3 S1\nBuild G3 S1\nBuild R2 Bluonia\n\n30) daselva: Build B1 Daselva\n\n31) TwoShort: Sacrifice Y2 Bluonia\nMove G3 S1 Daselva\nMove G3 S1 Daselva\n\n32) daselva: Build B1 Daselva\n\n33) TwoShort: Sacrifice R2 Bluonia\nAttack Y3 Daselva\nAttack B2 Daselva\n\n34) daselva: Build R2 Daselva\n\n35) TwoShort: Sacrifice G3 Daselva\nBuild Y1 Daselva\nBuild Y1 Daselva\nBuild G3 Daselva\n\n36) daselva: Pass\n\n37) TwoShort: Build G3 Daselva\nCatastrophe Daselva Yellow\nCatastrophe Daselva Green\n\n\tTwoShort: Thanks for the game.\n\nHomeworlds Online (SDG# 17053)\nVariants: "Hard time"\nStarted: 2010.8.4, Ended: 2010.9.20\nParticipants: AdamBadura (S), ZackStack (N)\nWinner: AdamBadura\n\n1) ZackStack: Homeworld R1 B2 G3\n\tZackStack: Thanks for the challenge! Have a good game.\n\n2) AdamBadura: Homeworld G1 B2 R3\n\n3) ZackStack: Build G1 Zackstack\n\tAdamBadura: I think I will lose this one (considering your rank) but let us see... ;)\n\tZackStack: We can only take one game at a time around here ;-)\n\n4) AdamBadura: Build R1 Adambadura\n\n5) ZackStack: Trade G1 R1 Zackstack\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) ZackStack: Build G1 Zackstack\n\n8) AdamBadura: Build R1 Adambadura\n\n9) ZackStack: Build R2 Zackstack\n\n10) AdamBadura: Build R2 Adambadura\n\n11) ZackStack: Trade R2 Y2 Zackstack\n\n12) AdamBadura: Discover R1 Adambadura G3 Shipyard\n\n13) ZackStack: Move Y2 Zackstack Shipyard\n\n14) AdamBadura: Trade R2 Y2 Adambadura\n\tZackStack: Hmmm... I haven't played two jumps away in a while. This could get interesting :-)\n\n15) ZackStack: Sacrifice R1 Zackstack\nAttack R1 Shipyard\n\n16) AdamBadura: Build R1 Adambadura\n\n17) ZackStack: Build R2 Shipyard\n\n18) AdamBadura: Discover R1 Adambadura G3 Drydocks\n\n19) ZackStack: Build R2 Shipyard\n\n20) AdamBadura: Move Y1 Adambadura Drydocks\n\n21) ZackStack: Sacrifice Y2 Shipyard\nMove R1 Shipyard Adambadura\nMove R2 Shipyard Adambadura\n\n22) AdamBadura: Sacrifice R3 Adambadura\nAttack R1 Adambadura\nAttack R2 Adambadura\nPass\n\n23) ZackStack: Build G1 Zackstack\n\tZackStack: Blowing your large seemed worth it... we'll see!\n\tZackStack: To me I mean... :-)\n\n24) AdamBadura: Build R2 Drydocks\n\tAdamBadura: Yes. I think you gained advantage. But I had no other choice as all other ways I could think of would give you victory rather than advantage... ;)\n\n25) ZackStack: Trade G1 Y1 Zackstack\n\n26) AdamBadura: Discover R1 Adambadura Y3 Outpost\n\n27) ZackStack: Build R3 Shipyard\n\tZackStack: Now I just need to find a clever way to exploit that advantage :-)\n\n28) AdamBadura: Build R3 Adambadura\n\n29) ZackStack: Trade G1 B1 Zackstack\n\n30) AdamBadura: Discover R1 Drydocks Y1 Ontheway\n\tZackStack: So much for taking advantage :-)\n\n31) ZackStack: Move B1 Zackstack Shipyard\n\n32) AdamBadura: Build R3 Drydocks\n\n33) ZackStack: Build Y2 Zackstack\n\n34) AdamBadura: Build Y2 Drydocks\n\n35) ZackStack: Sacrifice Y2 Zackstack\nMove Y1 Zackstack Shipyard\nMove R2 Shipyard Adambadura\n\n36) AdamBadura: Sacrifice R2 Adambadura\nAttack R2 Adambadura\nPass\n\n37) ZackStack: Build G1 Zackstack\n\n38) AdamBadura: Build R2 Drydocks\n\tZackStack: Very nice counter move!\n\n39) ZackStack: Trade G1 B1 Zackstack\n\tAdamBadura: Yes. I learned that trick some time ago. But it is second time I do it in this game. I thought you had some clever plan beyond it.\n\tAdamBadura: We are playing too safe. I wonder how will this end... ;)\n\n40) AdamBadura: Build Y2 Drydocks\n\tZackStack: So far clever plans are overrated in this particular game. And for some reason I saw it coming the first time but not the second :-)\n\n41) ZackStack: Build Y3 Shipyard\n\n42) AdamBadura: Sacrifice Y2 Drydocks\nMove R2 Drydocks Zackstack\nMove R2 Drydocks Zackstack\n\n43) ZackStack: Build B1 Shipyard\n\n44) AdamBadura: Attack B1 Zackstack\n\tAdamBadura: I'm going on a leave from 2010-09-04 to 2010-09-11 inclusive.\n\n45) ZackStack: Attack R2 Zackstack\n\tZackStack: Enjoy your leave!\n\n46) AdamBadura: Move R1 Outpost Zackstack\nCatastrophe Zackstack R\n\n47) ZackStack: Build R1 Shipyard\n\n48) AdamBadura: Sacrifice Y2 Drydocks\nMove R1 Ontheway Shipyard\nMove R2 Adambadura Shipyard\nCatastrophe Shipyard R\n\n\tAdamBadura: What is keeping you from playing?\n\nHomeworlds Online (SDG# 17066)\nVariants: "Hard time"\nStarted: 2010.8.5, Ended: 2010.8.18\nParticipants: SilentTitan (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R2 G3\n\n2) SilentTitan: Homeworld Y3 G1 B3\n\n3) zoltar: Build G1 Zoltar\n\tSilentTitan: this ought to be interesting\n\n4) SilentTitan: Build B1 Silenttitan\n\n5) zoltar: Build G1 Zoltar\n\n6) SilentTitan: Discover B1 Silenttitan G2 Wondertoe\n\n7) zoltar: Trade G3 Y3 Zoltar\n\n8) SilentTitan: Build B1 Wondertoe\n\n9) zoltar: Build G2 Zoltar\n\n10) SilentTitan: Build B1 Silenttitan\n\n11) zoltar: Discover G1 Zoltar Y1 Yellowstone\n\n12) SilentTitan: Build B2 Silenttitan\n\n13) zoltar: Trade G2 B2 Zoltar\n\n14) SilentTitan: Trade B2 Y2 Silenttitan\n\n15) zoltar: Move B2 Zoltar Yellowstone\n\n16) SilentTitan: Discover B1 Silenttitan G2 Mymy\n\n17) zoltar: Build G2 Yellowstone\n\n18) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover B1 Wondertoe Y1 Riff\nDiscover B1 Wondertoe Y1 Raff\n\n19) zoltar: Discover G2 Yellowstone B2 Blueridge\n\n20) SilentTitan: Trade B3 R3 Silenttitan\n\n21) zoltar: Build G2 Blueridge\n\n22) SilentTitan: Build R1 Silenttitan\n\n23) zoltar: Build G3 Zoltar\n\n24) SilentTitan: Build B2 Mymy\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Yellowstone\nBuild B3 Yellowstone\n\n26) SilentTitan: Trade B2 Y2 Mymy\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Blueridge\nBuild Y2 Zoltar\n\tSilentTitan: wow I just suck at this game ... I'm sorry for the poor play.\n\tzoltar: You've gotten into trouble really early somehow in this game. I think green and yellow stars in one's homeworld don't work well, and that blue/red is the best combination to use.\n\tSilentTitan: I think you are exactly right.\n\n28) SilentTitan: Build Y2 Mymy\n\n29) zoltar: Sacrifice B3 Yellowstone\nTrade G3 Y3 Blueridge\nTrade G2 R2 Blueridge\nTrade G3 R3 Yellowstone\n\n30) SilentTitan: Sacrifice B1 Mymy\nTrade R3 B3 Silenttitan\n\n31) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueridge\nBuild G3 Yellowstone\nBuild G3 Zoltar\n\n32) SilentTitan: Build B1 Silenttitan\n\n33) zoltar: Sacrifice Y3 Zoltar\nMove G3 Yellowstone Blueridge\nMove G3 Blueridge Silenttitan\nMove Y3 Blueridge Silenttitan\n\n34) SilentTitan: Attack G3 Silenttitan North\n\n35) zoltar: Sacrifice R2 Blueridge\nAttack B3 Silenttitan\nAttack G3 Silenttitan\n\n36) SilentTitan: Sacrifice Y2 Mymy\nMove B1 Riff Zoltar\nMove B1 Raff Zoltar\n\n37) zoltar: Sacrifice R3 Yellowstone\nAttack B1 Zoltar\nAttack B1 Zoltar\nAttack R1 Silenttitan\n\n38) SilentTitan: Move Y2 Mymy Silenttitan\n\n39) zoltar: Sacrifice G3 Zoltar\nBuild G2 Silenttitan\nBuild G3 Silenttitan\nBuild Y1 Silenttitan\nCatastrophe Silenttitan Y\nCatastrophe Silenttitan G\n\n\tzoltar: Good game.\n\tSilentTitan: yes... well I learned a lot ... prolly boring for you tho\n\nHomeworlds Online (SDG# 17007)\nStarted: 2010.8.5, Ended: 2012.2.27\nParticipants: rootbier (S), TofuInjection (N)\nWinner: rootbier\n\n1) TofuInjection: Homeworld B2 G1 Y3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) TofuInjection: Build Y1 Tofuinjection\n\n4) rootbier: Build G1 Rootbier\n\n5) TofuInjection: Discover Y1 Tofuinjection G3 Porkslap\n\trootbier: Like the name. Welcome to the site and the game. Have you played offline?\n\tTofuInjection: thanks. I have a few times. You?\n\n6) rootbier: Build G1 Rootbier\n\trootbier: I have a 5 treehouse sets - have only managed one-on-one games so far. And playing a bunch here. Still learning/honing for sure - and occasionally overlook/space-out really obvious direct threats.\n\n7) TofuInjection: Build Y1 Porkslap\n\n8) rootbier: Trade G1 Y1 Rootbier\n\n9) TofuInjection: Build Y2 Tofuinjection\n\n10) rootbier: Discover Y1 Rootbier G2 Curran\n\n11) TofuInjection: Trade Y2 B2 Tofuinjection\n\n12) rootbier: Build Y2 Curran\n\n13) TofuInjection: Move B2 Tofuinjection Porkslap\n\n14) rootbier: Discover Y1 Curran G3 Alvin\n\n\nHomeworlds Online (SDG# 17024)\nVariants: "Unrated"\nStarted: 2010.8.5, Ended: 2010.8.26\nParticipants: daselva (S), TofuInjection (N)\nWinner: daselva\n\n1) TofuInjection: Homeworld Y3 G1 B3\n\n2) daselva: Homeworld R1 G2 B3\n\n3) TofuInjection: Build B1 Tofuinjection\n\n4) daselva: Build B1 Daselva\n\n5) TofuInjection: Discover B1 Tofuinjection G2 Porkslap\n\n6) daselva: Trade B3 Y3 Daselva\n\n7) TofuInjection: Build B1 Porkslap\n\n8) daselva: Build B2 Daselva\n\n9) TofuInjection: Build B2 Tofuinjection\n\n10) daselva: Trade B1 G1 Daselva\n\n11) TofuInjection: Trade B1 Y1 Porkslap\n\n12) daselva: Discover B2 Daselva G3 S2\n\n13) TofuInjection: Trade B3 R3 Tofuinjection\n\n14) daselva: Build B1 S2\n\n15) TofuInjection: Build Y1 Porkslap\n\n16) daselva: Trade B2 Y2 S2\n\n17) TofuInjection: Trade Y1 R1 Porkslap\n\n18) daselva: Discover Y2 S2 G2 S3\n\n19) TofuInjection: Build Y1 Porkslap\n\n20) daselva: Build Y1 S3\n\n\nHomeworlds Online (SDG# 17046)\nVariants: "Hard time"\nStarted: 2010.8.7, Ended: 2010.8.14\nParticipants: TofuInjection (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) TofuInjection: Homeworld Y1 G2 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) TofuInjection: Build B1 Tofuinjection\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n\nHomeworlds Online (SDG# 17011)\nVariants: "Hard time"\nStarted: 2010.8.7, Ended: 2010.8.8\nParticipants: TofuInjection (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 17088)\nVariants: "No undo"\nStarted: 2010.8.8, Ended: 2010.12.6\nParticipants: rootbier (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld B1 G2 R3\n\n2) rootbier: Homeworld Y1 B3 G3\n\n3) AdamBadura: Build R1 Adambadura\n\n4) rootbier: Build G1 Rootbier\n\n5) AdamBadura: Trade R1 Y1 Adambadura\n\n6) rootbier: Trade G1 Y1 Rootbier\n\n7) AdamBadura: Build Y2 Adambadura\n\n8) rootbier: Build Y2 Rootbier\n\n9) AdamBadura: Discover Y2 Adambadura G3 Shipyard\n\n10) rootbier: Discover Y1 Rootbier G2 Drydock\n\n11) AdamBadura: Build Y2 Adambadura\n\n12) rootbier: Build Y3 Drydock\n\n13) AdamBadura: Build Y3 Shipyard\n\n14) rootbier: Build G1 Rootbier\n\n15) AdamBadura: Sacrifice Y2 Adambadura\nMove Y3 Shipyard Drydock\nMove Y3 Drydock Rootbier\n\n16) rootbier: Build Y2 Rootbier\nCatastrophe Rootbier Y\n\trootbier: guess i did it again. you have found my very clear weakness.\n\n17) AdamBadura: Build R1 Adambadura\n\trootbier: i must say that i find your backlash against my needing extra time on the last game (no undo/very short clock) to be more than a little off-putting. i'd go so far as to say it seems childishly vindicative.\n\tAdamBadura: I didn't temper with time. It was a default one. I shut off Undo indeed. Actually for no reason. Or to be more specific we decided to play so with my friends. I even actually prefer to play with Undo. But still mechanically I turned it off. Sorry for that. Next time I will try to remember that you prefer Undo.\n\tAdamBadura: As for your style of playing. I think you keep making a mistake of not having R technology. I prefer to have R3 ship in my homeworld. But an R1 builded later will do as well in many cases. But you have not R ship at all...\n\n18) rootbier: Trade G1 R1 Rootbier\n\trootbier: Standard clock is 3(start)/1(inc)/10(max) -- you must have accidentally bumped of the "0" at the end. It looked pushy after our previous conversation about time and thinking and life chaos. Sorry for the accusation.\r\n\r\nAnd yeah I'm simply not used to no-undo -- I find it too hard to visualize certain things online.\r\n\r\nI am in no way unclear on the way I have been screwing up. And I know how to defend myself -- used to always grab myself an r1 at home... but lately I have been shying more and more away from red. I simply don't like the color :D \r\nVery few people have made anything out of it - but then I think most don't start with an R3.\n\trootbier: or.... not too hard to visualize ... but too easy to miss certain things.\n\n19) AdamBadura: Move R1 Adambadura Shipyard\n\n20) rootbier: Build G1 Rootbier\n\n21) AdamBadura: Build Y1 Shipyard\n\n22) rootbier: Move Y1 Drydock Rootbier\n\n23) AdamBadura: Move Y1 Shipyard Drydock\n\n24) rootbier: Discover Y3 Drydock G3 Flunk\n\n25) AdamBadura: Build R1 Shipyard\n\n26) rootbier: Build Y2 Flunk\n\n27) AdamBadura: Build Y2 Drydock\n\n28) rootbier: Build R2 Rootbier\n\n29) AdamBadura: Build Y3 Adambadura\n\n30) rootbier: Sacrifice Y3 Flunk\nMove Y2 Flunk Adambadura\nMove Y1 Rootbier Adambadura\nDiscover G1 Rootbier B2 Baoon\n\n31) AdamBadura: Move R1 Shipyard Drydock\nCatastrophe Adambadura Y\n\trootbier: GAH! No undo! and I forgot to trigger my cat cuz i spent so long deciing on the non-yellow move action. I would take it as a real kindness if you would consider those yellow ships at home dead and trigger the cat yourself at the end of the turn.\n\tAdamBadura: OK, I will.\n\n32) rootbier: Trade R1 Y1 Rootbier\n\trootbier: Thank you kind sir.\n\n33) AdamBadura: Build Y1 Shipyard\n\n34) rootbier: Build Y2 Rootbier\n\n35) AdamBadura: Move Y1 Shipyard Adambadura\n\n36) rootbier: Discover Y1 Rootbier G1 Pip\n\n37) AdamBadura: Build Y3 Adambadura\n\n38) rootbier: Build Y3 Pip\n\n39) AdamBadura: Build Y3 Shipyard\n\n40) rootbier: Sacrifice Y2 Rootbier\nMove Y3 Pip Rootbier\nDiscover G1 Baoon B3 Palome\n\n41) AdamBadura: Move R1 Shipyard Pip\n\n42) rootbier: Sacrifice G3 Rootbier\nBuild G1 Palome\nBuild G2 Palome\nBuild Y2 Pip\n\n43) AdamBadura: Attack Y1 Pip\n\n\tAdamBadura: I'm going on a leave from 2010-09-04 to 2010-09-11 inclusive.\n\tAdamBadura: You ignored both the game and me so I forced your surrender.\n\nHomeworlds Online (SDG# 17091)\nStarted: 2010.8.8, Ended: 2012.2.27\nParticipants: Galaxian (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\tGalaxian: homeworld B2 Y1 G3\n\tGalaxian: Sorry, I'm new here.\n\trootbier: No problem. New is fine. Have you played the game offline?\r\n\r\nYour move is properly coded... but this is the chat area. You need to put your move in the box up at the top of the page... on the left side. You can also just use the first letters for commands. "h b2 y2 g3" is valid.\r\n\r\nIf you have never played - just ask for help. It's much more fun to teach as I go than to just play to win.\n\n2) Galaxian: Homeworld B3 Y2 G3\n\trootbier: Now it is your turn and you can build your homeworld. You probably want a home system with two different size stars for now. Get tricky later.\n\n3) rootbier: Build G1 Rootbier\n\tGalaxian: Thanks! I have played offline before, but I'm not very good at it.\n\trootbier: Be aware that your choice of star sizes puts us very close. It is only two steps from your home to mine instead of the more standard three steps. \r\n\r\nThis is okay - but it makes for a "faster" game.\r\n\r\nAsk questions :) Or even just think out loud and I will help you talk/think through stuff or can tell you if your strategies/ways of thinking about the game seem sound.\n\tGalaxian: Yeah, sorry about that. I just noticed it.\n\trootbier: Do you want to go on with that or do you want to undo and choose another size star?\n\n4) Galaxian: Build G1 Galaxian\n\tGalaxian: Oh. I didn't know I could do that. There you go.\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) Galaxian: Trade G1 Y1 Galaxian\n\n7) rootbier: Build B1 Rootbier\n\n8) Galaxian: Build G1 Galaxian\n\n9) rootbier: Discover B1 Rootbier G3 Wamel\n\n10) Galaxian: Build Y1 Galaxian\n\n11) rootbier: Build B2 Wamel\n\n12) Galaxian: Discover Y1 Galaxian G1 Alpha\n\n13) rootbier: Build B2 Wamel\n\n14) Galaxian: Build Y1 Alpha\n\n15) rootbier: Build B2 Rootbier\n\n16) Galaxian: Build Y2 Alpha\n\n17) rootbier: Discover B1 Rootbier Y3 Stone\n\n18) Galaxian: Build Y3 Galaxian\n\n19) rootbier: Sacrifice G3 Rootbier\nBuild B3 Rootbier\nBuild B3 Stone\nPass\n\n20) Galaxian: Discover Y1 Alpha Y3 Beta\n\n21) rootbier: Discover B3 Stone G1 Prodigal\n\n\nHomeworlds Online (SDG# 17069)\nVariants: "Unrated"\nStarted: 2010.8.9, Ended: 2010.10.26\nParticipants: johannz (S), enochroot (N)\nWinner: johannz\n\n1) enochroot: Homeworld B1 Y3 G3\n\n2) johannz: Homeworld Y1 B2 G3\n\tjohannz: Oh, the beauty and simplicity of your opening move. It moves me to tears.\r\nHow will I ever hope to stand against you?\r\n:)\n\n3) enochroot: Build G1 Enochroot\n\n4) johannz: Build G1 Johannz\n\n5) enochroot: Trade G1 Y1 Enochroot\n\n6) johannz: Discover G1 Johannz Y3 Prima\n\n7) enochroot: Build Y1 Enochroot\n\n\nHomeworlds Online (SDG# 17123)\nVariants: "Hard time"\nStarted: 2010.8.11, Ended: 2010.8.17\nParticipants: captncavern (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) captncavern: Homeworld B3 R1 G3\n\tdlwillson: Excellent! Thank you, Captain!\n\tdlwillson: BTW, how'd you come up with your nickname/call-sign?\n\tcaptncavern: I'm here for the games, you know ;)\r\nMy nickname comes from when I was long-haired and had a beard... like the cartoon character that's called "Capitaine Caverne" in France.\n\n3) dlwillson: Build G1 Dlwillson\n\n4) captncavern: Build G1 Captncavern\n\tdlwillson: I know Captain Caveman; I used to love that cartoon character! The gals called him Cavey Wavey when they were trying to get him to do things, and when he was buffing, he yelled, "CAP TEN CAVE MA-AAAN!"\n\tcaptncavern: That's the guy :) That used to be me... although I didn't have any girl calling me with cute names!\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) captncavern: Trade G1 Y1 Captncavern\n\n7) dlwillson: Build G1 Dlwillson\n\n8) captncavern: Build Y1 Captncavern\n\n9) dlwillson: B R1 Dlwillson\n\n10) captncavern: Trade Y1 B1 Captncavern\n\n11) dlwillson: B R2 Dlwillson\n\n12) captncavern: Build Y1 Captncavern\n\n13) dlwillson: D R1 Dlwillson B1 Frob\n\n14) captncavern: Build Y1 Captncavern\n\n15) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Frob\nBuild R2 Dlwillson\nBuild R3 Frob\n\n16) captncavern: Discover Y1 Captncavern G2 Bille\n\n17) dlwillson: D R2 Dlwillson G1 Grok\n\n18) captncavern: Discover Y1 Bille G1 Pomme\n\n19) dlwillson: B R3 Dlwillson\n\n20) captncavern: Build G2 Captncavern\n\n21) dlwillson: Trade R3 Y3 Dlwillson\n\n22) captncavern: Build Y2 Pomme\n\n23) dlwillson: M Y3 Dlwillson Grok\n\n24) captncavern: Sacrifice G3 Captncavern\nBuild Y2 Pomme\nBuild Y3 Captncavern\nBuild G2 Captncavern\n\n25) dlwillson: B R3 Dlwillson\n\n26) captncavern: Discover Y1 Captncavern B2 Truc\n\n27) dlwillson: T R3 Y3 Frob\n\n28) captncavern: Sacrifice B1 Captncavern\nTrade Y2 G2 Pomme\n\n29) dlwillson: B R3 Grok\n\n30) captncavern: Sacrifice G2 Captncavern\nBuild Y2 Truc\nBuild G2 Captncavern\n\n31) dlwillson: B R3 Grok\n\n32) captncavern: Discover Y1 Truc B1 Patate\n\n33) dlwillson: M R3 Grok Truc\n\n34) captncavern: Sacrifice Y2 Truc\nMove Y1 Pomme Dlwillson\nMove Y1 Patate Dlwillson\n\n35) dlwillson: Sacrifice Y3 Grok\nMove R3 Grok Truc\nMove R3 Truc Captncavern\nMove R3 Truc Captncavern\n\n36) captncavern: Trade Y1 B1 Dlwillson\n\n37) dlwillson: Sacrifice R3 Captncavern\nAttack Y3 Captncavern\nAttack Y1 Dlwillson\nAttack B1 Dlwillson\n\n38) captncavern: Build G3 Captncavern\n\tdlwillson: I think this game is mine next turn or the turn after. If you're interested in a friendly game after this one, let me know.\n\n39) dlwillson: Sacrifice R3 Captncavern\nAttack G3 Captncavern\nAttack G2 Captncavern\nAttack G2 Captncavern\n\tcaptncavern: Indeed! It's been a long time since I won a game of Homeworlds... Maybe a friendly game wouldn't hurt :)\n\n40) captncavern: Sacrifice Y2 Pomme\nDiscover G2 Pomme Y2 Last\nMove G2 Last Captncavern\nCatastrophe Captncavern G\n\n41) dlwillson: Attack Y1 Captncavern\n\tcaptncavern: At least, I'm bringing down quite a few of your ships with me :)\r\nPlease don't mention most of them were mine only seconds before...\n\tdlwillson: Thanks for the fast turns, Captain. I notice you play a lot of other games here, too. May I offer a trade? You teach me your favorite non-Homeworlds game, and I'll teach you anything I might have learned about Homeworlds in a few non-rated games.\n\tcaptncavern: First, congratulation for the winning!\r\nI'm not a very skilled teacher and I don't analyse the games I play too much, but if you want to try Mirador or Ordo... Those are the games I'm best at right now. I always have a challenge open at both of them. Mirador is a very short connection game, but it still offers interesting possibilities. In Ordo, you must reach your opponent's first line while preventing your opponent to split your pieces through capture. If any of this appeals to you...\n\n\nHomeworlds Online (SDG# 17155)\nStarted: 2010.8.15, Ended: 2010.9.1\nParticipants: Tank_7 (S), rootbier (N)\nWinner: Tank_7\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) Tank_7: Homeworld G3 B1 Y3\n\n3) rootbier: Build G1 Rootbier\n\n4) Tank_7: Build Y1 Tank_7\n\n5) rootbier: Trade G1 B1 Rootbier\n\n6) Tank_7: Discover Y1 Tank_7 B2 Mycon\n\n7) rootbier: Build B2 Rootbier\n\n8) Tank_7: Build Y1 Tank_7\n\n9) rootbier: Discover B2 Rootbier G3 Seint\n\tTank_7: you evil guy getting size 2 ships already :(\n\trootbier: what lesson have you learned?\n\n10) Tank_7: Build Y1 Tank_7\n\tTank_7: Avoiding same color Size 1 homeworld stars, or, if there is such a situation then trading for that color is a high priority.\n\n11) rootbier: Sacrifice G3 Rootbier\nBuild B2 Seint\nBuild B3 Seint\nBuild B3 Rootbier\n\tTank_7: since it was your turn first i should have gone different homeworld like B3 G1 instead.\n\tTank_7: hmm better yet never use the 2nd Size 1 of any color for anything, homeworld or ship\n\tTank_7: no wait i take that back, never use the 3rd Size 1... this was 2nd and you traded for 3rd locking me out from blue\n\trootbier: you seemed to be there and then you got confusing. don't use the same size 1 in your homeworld build - makes for a good freeze out.\r\n\r\nby the same token... yeah. if someone trades and grabs the second 1 of a color - as their first trade - try to grab the third so they can't freeze you.\r\n\r\nmaybe that is hard to communicate. just look out for it in the early steps of your next few games.\n\n12) Tank_7: Discover Y1 Tank_7 G2 Kentares\n\n\tTank_7: are you alive my friend?\n\nHomeworlds Online (SDG# 17096)\nStarted: 2010.8.15, Ended: 2012.2.27\nParticipants: rootbier (S), Hackmaster (N)\nWinner: rootbier\n\n\nHomeworlds Online (SDG# 17172)\nVariants: "Unrated"\nStarted: 2010.8.15, Ended: 2010.8.15\nParticipants: mole561 (S), irisheyes (N)\nWinner: irisheyes\n\n\tmole561: homeworld G2 B1 Y3\n\nHomeworlds Online (SDG# 17173)\nVariants: "Unrated"\nStarted: 2010.8.15, Ended: 2010.8.15\nParticipants: irisheyes (S), mole561 (N)\nWinner: mole561\n\n1) mole561: Homeworld G2 B1 Y3\n\n2) irisheyes: Homeworld G3 B1 Y3\n\n\nHomeworlds Online (SDG# 17177)\nVariants: "Hard time"\nStarted: 2010.8.16, Ended: 2010.9.1\nParticipants: shmil1 (S), Lurch (N)\nWinner: Lurch\n\n1) Lurch: Homeworld B2 Y1 G3\n\n2) shmil1: Homeworld R1 B2 G3\n\n3) Lurch: Build G1 Lurch\n\n4) shmil1: Build G1 Shmil1\n\n5) Lurch: Trade G1 B1 Lurch\n\n6) shmil1: Build G1 Shmil1\n\n7) Lurch: Discover B1 Lurch G3 Alpha\n\n8) shmil1: Trade G1 Y1 Shmil1\n\n9) Lurch: Build B1 Alpha\n\n10) shmil1: Trade G1 B1 Shmil1\n\n11) Lurch: Build G1 Lurch\n\n12) shmil1: Build G1 Shmil1\n\n13) Lurch: Trade B1 Y1 Alpha\n\n14) shmil1: Discover G1 Shmil1 Y3 Zluta\n\n15) Lurch: Build Y2 Alpha\n\n16) shmil1: Move G1 Zluta Lurch\n\n17) Lurch: Trade G3 R3 Lurch\n\n18) shmil1: Sacrifice G3 Shmil1\nBuild G1 Lurch\nBuild G2 Lurch\nBuild Y2 Shmil1\nCatastrophe Lurch Green\n\n19) Lurch: Build B1 Alpha\n\n20) shmil1: Trade B1 G1 Shmil1\n\n21) Lurch: Trade Y1 B1 Alpha\n\n22) shmil1: Trade Y2 R2 Shmil1\n\n23) Lurch: Move B1 Alpha Shmil1\n\n24) shmil1: Attack B1 Shmil1\n\n25) Lurch: Sacrifice Y2 Alpha\nMove B1 Alpha Shmil1\nMove B1 Alpha Shmil1\nCatastrophe Shmil1 B\n\n26) shmil1: Discover G1 Shmil1 Y3 Zluty\n\n27) Lurch: Trade R3 G3 Lurch\n\n28) shmil1: Move G1 Zluty Lurch\n\n29) Lurch: Trade G3 R3 Lurch\n\n30) shmil1: Discover G1 Lurch Y3 Druhazluta\n\n31) Lurch: Trade R3 G3 Lurch\n\n32) shmil1: Move G1 Druhazluta Lurch\n\n33) Lurch: Trade G3 R3 Lurch\n\tshmil1: i did it for last time :) \r\ni promise ...\n\tshmil1: just to show you we can draw\n\tLurch: Yea, I get it :-)\n\n34) shmil1: Build G1 Lurch\n\n35) Lurch: Attack G1 Lurch\n\n36) shmil1: Build G1 Lurch\n\n37) Lurch: Trade G1 B1 Lurch\n\n38) shmil1: Trade G1 R1 Lurch\n\n39) Lurch: Attack R1 Lurch\n\n40) shmil1: Sacrifice R2 Shmil1\nAttack B1 Lurch\nAttack R1 Lurch\n\n41) Lurch: Attack R1 Lurch\n\n42) shmil1: Build B1 Lurch\n\n43) Lurch: Attack G1 Lurch\n\n44) shmil1: Trade B1 R1 Lurch\n\n45) Lurch: Sacrifice R1 Lurch\nAttack R1 Lurch\n\n46) shmil1: Sacrifice B1 Lurch\nTrade Y1 G1 Shmil1\n\n47) Lurch: Discover G1 Lurch Y3 Alpha\n\n48) shmil1: Build G1 Shmil1\n\n49) Lurch: Build G2 Alpha\n\n50) shmil1: Pass\n\n51) Lurch: Move G2 Alpha Shmil1\n\n\nHomeworlds Online (SDG# 17184)\nVariants: "Hard time"\nStarted: 2010.8.17, Ended: 2010.9.23\nParticipants: captncavern (S), MadWuher (N)\nWinner: MadWuher\n\n1) MadWuher: H R1 B2 G3\n\n2) captncavern: Homeworld B3 G1 R3\n\tcaptncavern: Thanks!\n\n3) MadWuher: Build G1 Madwuher\n\n4) captncavern: Build R1 Captncavern\n\tMadWuher: Haven't played for a while..... Sorry if I seem a bit rusty. Have a good game.\n\tcaptncavern: Don't worry, I'm not a good player at all... I keep losing all my games, but still have fun playing.\n\n5) MadWuher: Trade G1 Y1 Madwuher\n\n6) captncavern: Build R1 Captncavern\n\n7) MadWuher: B G1 Madwuher\n\n8) captncavern: Trade R1 Y1 Captncavern\n\n9) MadWuher: Trade G1 R1 Madwuher\n\n10) captncavern: Build R2 Captncavern\n\n11) MadWuher: B R2 Madwuher\n\n12) captncavern: Trade R1 G1 Captncavern\n\n13) MadWuher: Discover R2 Madwuher G3 Edora\n\n14) captncavern: Build R1 Captncavern\n\n15) MadWuher: B R2 Madwuher\n\n16) captncavern: Discover R1 Captncavern Y2 Mako\n\n17) MadWuher: T R2 Y2 Madwuher\n\tcaptncavern: d r1 y2 Mako\n\n18) captncavern: Build Y1 Captncavern\n\tcaptncavern: Wow, I'm tired... I don't know what I type, nor where I type it!\n\n19) MadWuher: Move Y2 Madwuher Edora\n\tMadWuher: Lol :)\n\n20) captncavern: Build G1 Captncavern\n\n21) MadWuher: Build G2 Madwuher\n\n22) captncavern: Discover R2 Captncavern G2 Chia\n\n23) MadWuher: Discover G2 Madwuher G3 Camelot\n\n24) captncavern: Discover R1 Mako Y3 Kazu\n\n25) MadWuher: Build G2 Madwuher\n\n26) captncavern: Move Y1 Captncavern Chia\n\n27) MadWuher: M G2 Madwuher Kazu\n\n28) captncavern: Move R1 Kazu Madwuher\n\n29) MadWuher: S R1 Madwuher\nA R1 Madwuher\n\n30) captncavern: Discover G1 Captncavern Y2 Fumi\n\n31) MadWuher: S G2 Camelot\nB G2 Madwuher\nB G3 Kazu\n\n32) captncavern: Discover R2 Chia Y3 Mari\n\n33) MadWuher: Sacrifice G3 Kazu\nBuild G3 Kazu\nBuild Y2 Madwuher\nBuild Y3 Edora\n\n34) captncavern: Move G1 Fumi Mari\n\n35) MadWuher: Trade Y1 B1 Madwuher\n\n36) captncavern: Build R1 Mari\n\n37) MadWuher: Sacrifice Y2 Edora\nDiscover G2 Madwuher R3 Camelot\nMove R2 Edora Chia\n\n38) captncavern: Move R1 Mari Madwuher\n\n39) MadWuher: Sacrifice R1 Madwuher\nAttack R1 Madwuher\n\n40) captncavern: Build R1 Captncavern\n\n41) MadWuher: A Y1 Chia\n\n42) captncavern: Trade R1 B1 Captncavern\n\n43) MadWuher: Move B1 Madwuher Edora\n\n44) captncavern: Build R1 Mari\n\n45) MadWuher: Move R1 Madwuher Edora\n\n46) captncavern: Discover B1 Captncavern Y2 Tomo\n\n47) MadWuher: Sacrifice G3 Kazu\nBuild G3 Kazu\nBuild R2 Edora\nBuild R3 Chia\n\n48) captncavern: Build Y1 Captncavern\n\n49) MadWuher: Sacrifice G2 Kazu\nBuild G2 Madwuher\nBuild Y2 Edora\n\n50) captncavern: Move G1 Captncavern Tomo\n\n51) MadWuher: M R2 Edora Tomo\n\n52) captncavern: Move G1 Tomo Mari\n\n53) MadWuher: A B1 Tomo\n\n54) captncavern: Move G1 Mari Madwuher\n\n55) MadWuher: S G2 Madwuher\nB G2 Kazu\nB B1 Edora\n\n\tcaptncavern: It won't lead anywhere good for me, so I'll let you challenge someone better...\r\nWell played!\n\nHomeworlds Online (SDG# 17180)\nVariants: "Unrated"\nStarted: 2010.8.23, Ended: 2010.8.26\nParticipants: makertron (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 17128)\nVariants: "Hard time"\nStarted: 2010.8.24, Ended: 2010.8.31\nParticipants: zoltar (S), Lurch (N)\nWinner: zoltar\n\n1) Lurch: Homeworld B2 Y1 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) Lurch: Build G1 Lurch\n\n4) zoltar: Build G1 Zoltar\n\n5) Lurch: Trade G1 B1 Lurch\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) Lurch: Build B1 Lurch\n\n8) zoltar: Build Y1 Zoltar\n\n9) Lurch: Build G1 Lurch\n\n10) zoltar: Build Y2 Zoltar\n\n11) Lurch: Trade G3 Y3 Lurch\n\n12) zoltar: Discover Y1 Zoltar G2 Greenbelt\n\n13) Lurch: Discover B1 Lurch G3 Alpha\n\n14) zoltar: Trade Y2 B2 Zoltar\n\n15) Lurch: Build B2 Alpha\n\n16) zoltar: Build B3 Zoltar\n\n17) Lurch: Build B3 Alpha\n\n18) zoltar: Move B2 Zoltar Greenbelt\n\n19) Lurch: Trade B2 Y2 Alpha\n\n20) zoltar: Build Y2 Greenbelt\n\n21) Lurch: Discover B1 Alpha G2 Beta\n\n22) zoltar: Move B3 Zoltar Beta\n\n23) Lurch: Move B3 Alpha Greenbelt\n\n24) zoltar: Trade B3 R3 Beta\n\n25) Lurch: Trade B3 R3 Greenbelt\n\n26) zoltar: Sacrifice Y2 Greenbelt\nDiscover Y1 Greenbelt G3 Greengiant\nMove B2 Greenbelt Greengiant\n\n27) Lurch: Build Y2 Alpha\n\n28) zoltar: Build Y2 Greengiant\n\n29) Lurch: Move Y2 Alpha Greenbelt\n\n30) zoltar: Move Y1 Greengiant Lurch\n\n31) Lurch: Move R3 Greenbelt Greengiant\n\n32) zoltar: Move B2 Greengiant Lurch\n\n33) Lurch: Sacrifice Y3 Lurch\nMove R3 Greengiant Lurch\nMove B1 Lurch Alpha\nMove B1 Alpha Greenbelt\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild B2 Lurch\nBuild B3 Lurch\nBuild Y3 Lurch\n\n35) Lurch: Attack Y3 Lurch\n\n36) zoltar: Move Y2 Greengiant Lurch\nCatastrophe Lurch B\nCatastrophe Lurch Y\n\n\tzoltar: Good game!\n\nHomeworlds Online (SDG# 17154)\nVariants: "Unrated"\nStarted: 2010.8.24, Ended: 2010.8.30\nParticipants: daselva (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) daselva: Homeworld R1 B2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) daselva: Build G1 Daselva\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) daselva: Build G1 Daselva\n\n7) zoltar: Build Y1 Zoltar\n\n8) daselva: Trade G1 Y1 Daselva\n\n9) zoltar: Build Y2 Zoltar\n\n10) daselva: Build Y2 Daselva\n\n11) zoltar: Discover Y1 Zoltar G1 Greenpea\n\n12) daselva: Discover Y1 Daselva G3 S1\n\n13) zoltar: Trade Y1 B1 Zoltar\n\n14) daselva: Build Y1 S1\n\n15) zoltar: Move B1 Zoltar Greenpea\n\n16) daselva: Discover Y1 S1 B1 S2\n\n17) zoltar: Build B1 Greenpea\n\n18) daselva: Sacrifice G3 Daselva\nBuild Y2 S1\nBuild Y3 S2\nBuild Y3 Daselva\n\n19) zoltar: Build Y3 Zoltar\n\n20) daselva: Trade Y2 B2 Daselva\n\n21) zoltar: Discover B1 Greenpea G3 Greengiant\n\n22) daselva: Move B2 Daselva S1\n\n23) zoltar: Build B3 Greengiant\n\n24) daselva: Move B2 S1 S2\n\n25) zoltar: Build B3 Greenpea\n\n26) daselva: Trade Y3 R3 S2\n\n27) zoltar: Sacrifice Y3 Zoltar\nMove B1 Greenpea Greengiant\nMove B1 Greengiant S2\nMove B1 Greengiant S2\nCatastrophe S2 B\n\n28) daselva: Build Y1 Daselva\n\n29) zoltar: Build Y2 Greenpea\n\n30) daselva: Discover Y1 S1 B1 S3\n\n31) zoltar: Trade Y1 R1 Greenpea\n\n32) daselva: Move G1 Daselva S1\n\n33) zoltar: Build B1 Greengiant\n\n34) daselva: Move G1 S1 S3\n\n35) zoltar: Trade B3 Y3 Greengiant\n\n36) daselva: Discover Y2 S1 B1 S4\n\n37) zoltar: Move Y3 Greengiant Daselva\n\n38) daselva: Trade Y1 G1 Daselva\n\n39) zoltar: Attack Y3 Daselva\n\n\nHomeworlds Online (SDG# 17085)\nStarted: 2010.8.26, Ended: 2010.8.29\nParticipants: daselva (S), mathochist (N)\nWinner: daselva\n\n\nHomeworlds Online (SDG# 17248)\nVariants: "Unrated"\nStarted: 2010.8.28, Ended: 2010.8.31\nParticipants: daselva (S), makertron (N)\nWinner: daselva\n\n\nHomeworlds Online (SDG# 17267)\nVariants: "Hard time"\nStarted: 2010.8.28, Ended: 2010.10.15\nParticipants: SilentTitan (S), Subhan64 (N)\nWinner: SilentTitan\n\n1) Subhan64: Homeworld B1 G2 Y3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Subhan64: Build G1 Subhan64\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n10) SilentTitan: Discover G1 Silenttitan B1 Otg\n\n11) Subhan64: Build G2 Subhan64\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) Subhan64: Trade G2 Y2 Subhan64\n\n14) SilentTitan: Build Y1 Silenttitan\n\n15) Subhan64: Discover G1 Subhan64 Y3 Ernie\n\n16) SilentTitan: Trade G2 Y2 Silenttitan\n\n17) Subhan64: Build G2 Ernie\n\n18) SilentTitan: Trade Y1 B1 Silenttitan\n\n19) Subhan64: Build Y1 Subhan64\n\n20) SilentTitan: Build B2 Silenttitan\n\n21) Subhan64: Trade Y3 G3 Subhan64\n\n22) SilentTitan: Move Y2 Silenttitan Otg\n\n23) Subhan64: Trade Y2 R2 Subhan64\n\n24) SilentTitan: Trade B2 R2 Silenttitan\n\n25) Subhan64: Move R2 Subhan64 Bigbird\n\n26) SilentTitan: Build B2 Silenttitan\n\n27) Subhan64: Move R2 Bigbird Otg\n\n28) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 Otg N\nPass\n\n29) Subhan64: Trade Y1 R1 Subhan64\n\n30) SilentTitan: Discover B2 Silenttitan Y1 Ktf\n\n31) Subhan64: Build G2 Subhan64\n\n32) SilentTitan: Sacrifice Y2 Otg\nMove G1 Otg Ernie\nMove G1 Ernie Subhan64\nCatastrophe Subhan64 Green\n\n\tSubhan64: gg, thanks!\n\tSilentTitan: Thank you \n\nHomeworlds Online (SDG# 17171)\nStarted: 2010.8.29, Ended: 2010.10.12\nParticipants: rootbier (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld R1 B2 G3\n\n2) rootbier: Homeworld B1 Y2 G3\n\tdaselva: hello I´m still learning...\n\n3) daselva: Build G1 Daselva\n\trootbier: learning is good. I'll be largely away the month of september. Will try to give advice when i have time.\n\n\nHomeworlds Online (SDG# 17280)\nVariants: "Hard time"\nStarted: 2010.8.30, Ended: 2010.10.1\nParticipants: agentofchaos (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld B3 G2 Y3\n\tagentofchaos: Hi there, enjoy the game. \n\tgoulo: Hi, have fun!\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) goulo: Build Y1 Goulo\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) goulo: Build Y1 Goulo\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) goulo: Trade Y1 R1 Goulo\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) goulo: Discover Y1 Goulo G1 Smeraldeto\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) goulo: Build R1 Goulo\n\n12) agentofchaos: Discover G1 Agentofchaos Y2 Dreamzone\n\n13) goulo: Build R2 Goulo\n\n14) agentofchaos: Build G2 Agentofchaos\n\n15) goulo: Trade R2 G2 Goulo\n\n16) agentofchaos: Build G3 Dreamzone\n\n17) goulo: Build G3 Goulo\n\n18) agentofchaos: Trade G2 R2 Agentofchaos\n\n19) goulo: Discover G3 Goulo Y1 Citroneto\n\n20) agentofchaos: Build Y2 Agentofchaos\n\n21) goulo: Build Y2 Goulo\n\n22) agentofchaos: Trade G1 B1 Agentofchaos\n\n23) goulo: Build Y3 Smeraldeto\n\n24) agentofchaos: Move R2 Agentofchaos Dreamzone\n\n25) goulo: Move R1 Goulo Smeraldeto\n\n26) agentofchaos: Build R2 Dreamzone\n\n27) goulo: Build Y3 Goulo\n\n28) agentofchaos: Build B1 Agentofchaos\n\n29) goulo: Build G1 Citroneto\n\n30) agentofchaos: Build G2 Agentofchaos\n\n31) goulo: Trade G2 B2 Goulo\n\n32) agentofchaos: Move B1 Agentofchaos Dreamzone\n\n33) goulo: Build R2 Goulo\n\n34) agentofchaos: Discover Y1 Agentofchaos B2 Kompazmor\n\n35) goulo: Move Y3 Goulo Citroneto\n\n36) agentofchaos: Discover R2 Dreamzone B1 Smaragdin\n\n37) goulo: Build B2 Goulo\n\n38) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R3 Dreamzone\nBuild B3 Dreamzone\n\n39) goulo: Move B2 Goulo Smeraldeto\n\n40) agentofchaos: Move R2 Dreamzone Smaragdin\n\n41) goulo: Move R2 Goulo Smaragdin\n\n42) agentofchaos: Attack R2 Smaragdin\n\n43) goulo: Move R1 Goulo Smaragdin\nCatastrophe Smaragdin Red\n\n44) agentofchaos: Build R1 Dreamzone\n\n45) goulo: Build R2 Smeraldeto\n\n46) agentofchaos: Sacrifice Y1 Kompazmor\nDiscover R3 Dreamzone Y1 Dethstar\n\n47) goulo: Trade B2 R2 Goulo\n\n48) agentofchaos: Sacrifice G3 Dreamzone\nBuild R2 Dreamzone\nBuild R3 Dethstar\nBuild G2 Agentofchaos\n\n49) goulo: Sacrifice Y2 Goulo\nDiscover B2 Smeraldeto Y2 Citrono\nMove G3 Citroneto Citrono\n\n50) agentofchaos: Move G2 Agentofchaos Dreamzone\n\n51) goulo: Build G2 Citrono\n\n52) agentofchaos: Move B1 Dreamzone Dethstar\n\n53) goulo: Build B1 Citrono\n\n54) agentofchaos: Move B1 Agentofchaos Citrono\n\n55) goulo: Sacrifice G3 Citrono\nBuild G3 Citrono\nBuild G3 Citroneto\nBuild R3 Goulo\n\n56) agentofchaos: Move B1 Dethstar Citrono\nCatastrophe Citrono B\n\n57) goulo: Sacrifice Y3 Citroneto\nMove R1 Smeraldeto Goulo\nMove R1 Goulo Dethstar\nMove R2 Goulo Dethstar\nCatastrophe Dethstar Red\n\n58) agentofchaos: Trade B3 Y3 Dreamzone\n\n59) goulo: Sacrifice Y3 Goulo\nMove G3 Citroneto Goulo\nMove Y1 Smeraldeto Dreamzone\nMove Y3 Smeraldeto Dreamzone\nCatastrophe Dreamzone Y\n\n60) agentofchaos: Build Y1 Agentofchaos\n\n61) goulo: Sacrifice G3 Citrono\nBuild G1 Goulo\nBuild G2 Citroneto\nBuild G3 Citrono\n\n62) agentofchaos: Trade Y1 R1 Agentofchaos\n\n63) goulo: Trade R3 Y3 Goulo\n\n64) agentofchaos: Discover Y2 Agentofchaos B2 Perdition\n\n65) goulo: Sacrifice G1 Goulo\nBuild G1 Citrono\n\n66) agentofchaos: Trade R1 Y1 Agentofchaos\n\n67) goulo: Move G3 Citrono Agentofchaos\n\n68) agentofchaos: Attack G3 Agentofchaos\n\n69) goulo: Sacrifice Y3 Goulo\nMove G2 Citroneto Citrono\nMove G2 Citrono Agentofchaos\nMove G1 Citrono Agentofchaos\nCatastrophe Agentofchaos G\n\n\tagentofchaos: gg\n\tgoulo: thanks for the game!\n\nHomeworlds Online (SDG# 17298)\nVariants: "Hard time"\nStarted: 2010.8.31, Ended: 2010.9.9\nParticipants: dlwillson (S), Uglyfoot (N)\nWinner: dlwillson\n\n1) Uglyfoot: Homeworld B3 Y1 G3\n\n2) dlwillson: H B3 R2 G3\n\n3) Uglyfoot: Build G1 Uglyfoot\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Uglyfoot: Build Y2 Uglyfoot\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Uglyfoot: Discover Y1 Uglyfoot B2 Dogstar\n\n10) dlwillson: Discover Y1 Dlwillson R1 Catworld\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) dlwillson: Build G1 Dlwillson\n\n13) Uglyfoot: Move G1 Uglyfoot Dogstar\n\n14) dlwillson: M G1 Dlwillson Catworld\n\n15) Uglyfoot: Trade Y2 R2 Uglyfoot\n\n16) dlwillson: B Y2 Catworld\n\n17) Uglyfoot: Build G1 Uglyfoot\n\n18) dlwillson: B G2 Dlwillson\n\n19) Uglyfoot: Build Y2 Dogstar\n\n20) dlwillson: B Y3 Dlwillson\n\n21) Uglyfoot: Discover G1 Dogstar B1 Gerbilcomet\n\n22) dlwillson: M Y3 Dlwillson Gerbilcomet\n\tdlwillson: I can't think of any reason for you to have pushed up the yellow battleships, so either you made a mistake, or I'm about to get blindsided.\n\n23) Uglyfoot: Build G2 Gerbilcomet\n\n24) dlwillson: S G2 Dlwillson\nB Y3 Gerbilcomet\nBuild Y3 Dlwillson\n\n25) Uglyfoot: Sacrifice Y2 Dogstar\nMove G1 Gerbilcomet Dlwillson\nMove G2 Gerbilcomet Dlwillson\n\n26) dlwillson: T G3 R3 Dlwillson\n\n27) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Dlwillson\nBuild G2 Dlwillson\nBuild G3 Uglyfoot\n\n28) dlwillson: B G3 Catworld\nC Dlwillson G\n\n\tdlwillson: I looked at your game history and you almost never lose Homeworlds. What happened with this game?\n\tUglyfoot: Perhaps you haven't look far enough. I have played many games of this just to become a "marginal" player. I tried something that didn't work and I will not repeat that mistake (hopefully).\n\tdlwillson: We can play again anytime you like. I have a standing challenge up.\n\nHomeworlds Online (SDG# 17307)\nVariants: "Unrated"\nStarted: 2010.8.31, Ended: 2010.9.22\nParticipants: zoltar (S), makertron (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 17284)\nStarted: 2010.9.1, Ended: 2010.9.7\nParticipants: rootbier (S), Tank_7 (N)\nWinner: Tank_7\n\n1) Tank_7: Homeworld G2 B1 Y3\n\n\nHomeworlds Online (SDG# 17086)\nVariants: "Hard time"\nStarted: 2010.9.6, Ended: 2010.9.18\nParticipants: dlwillson (S), daselva (N)\nWinner: dlwillson\n\n1) daselva: Homeworld R1 B2 G3\n\n2) dlwillson: H B3 R2 G3\n\n3) daselva: Build G1 Daselva\n\n4) dlwillson: B G1 Dlwillson\n\n5) daselva: Build G1 Daselva\n\n6) dlwillson: B G2 Dlwillson\n\n7) daselva: Trade G1 Y1 Daselva\n\n8) dlwillson: T G2 Y2 Dlwillson\n\n9) daselva: Discover G1 Daselva Y3 S1\n\n10) dlwillson: Trade G1 R1 Dlwillson\n\n11) daselva: Build G1 S1\n\tdlwillson: Remember to always count the bank. Be aware of what you're making available to the other person, and whether you get one, too, if they do. That G2 was a pretty nice gift and you're still stuck building ones, at least for a while.\n\n12) dlwillson: B R1 Dlwillson\n\n13) daselva: Trade G3 R3 Daselva\n\n14) dlwillson: B Y1 Dlwillson\n\n15) daselva: Move G1 S1 Daselva\n\n16) dlwillson: D Y1 Dlwillson B1 Wm\n\n17) daselva: Move G1 S1 Wm\n\n18) dlwillson: M R1 Dlwillson Wm\n\n19) daselva: Discover Y1 Daselva G3 S2\n\n20) dlwillson: Attack G1 Wm\n\n21) daselva: Build Y1 S2\n\n22) dlwillson: B R2 Wm\n\n23) daselva: Move Y1 S2 Daselva\n\n24) dlwillson: M R2 Wm S2\n\n25) daselva: Discover Y1 S2 G2 S3\n\n26) dlwillson: B Y2 Wm\n\n27) daselva: Build Y2 S3\n\n28) dlwillson: S G3 Dlwillson\nBuild R2 S2\nB R3 Wm\nBuild Y3 Dlwillson\n\n29) daselva: Trade R3 Y3 Daselva\n\n30) dlwillson: M Y2 Wm S3\n\n31) daselva: Discover Y2 S3 B1 S4\n\n32) dlwillson: Build Y3 Wm\n\n33) daselva: Build G1 Daselva\n\n34) dlwillson: S Y2 S3\nM R2 S2 Daselva\nMove R2 S2 Daselva\n\tdlwillson: How are you liking SDG?\n\tdaselva: I´m liking SDG very much.I only regret that players take to much time to make their moves and so I just can´t feel the flow of games ,what makes difficult the «learning curve».I´m feeling with these 2 games that I´m finding very interesting:Homeworlds and Pikemen.Do you like others?\n\n35) daselva: Build Y2 S3\n\n36) dlwillson: S R3 Wm\nA G1 Daselva\nA G1 Daselva\nA Y1 Daselva\n\n37) daselva: Attack R2 Daselva\n\tdlwillson: Yeah, moves tend to go pretty slow here. One a day is about the best you can expect. Sometimes faster, sometimes slower.\r\n\r\nThere is no "flow" to a Homeworlds game, because, as they say, no plan survives contact with the enemy. You really have to look at the board every turn, especially here.\r\n\r\nI've only tried one other game one time, here on SDG: Mirador. I liked it. Very simple concept, but a neat game, and it can be played in pen and paper.\r\n\r\nAre you good at Pikemen? I'd be happy to join you for a round. I've played in plastic, but not on SDG.\n\n38) dlwillson: B R3 Daselva\nC Daselva R\n\n39) daselva: Trade Y3 R3 Daselva\n\n40) dlwillson: T Y1 B1 Daselva\n\n41) daselva: Move Y1 S3 S4\n\tdaselva: I´ve only played 3 games of Pikemen ;i´m learning it to.thank you for telling me about Mirador...\n\tdaselva: «too»\n\n42) dlwillson: B B2 Daselva\n\n43) daselva: Sacrifice Y2 S3\nMove Y1 S4 Dlwillson\nMove Y2 S4 Dlwillson\nCatastrophe Dlwillson Y\n\n44) dlwillson: T G1 B1 Daselva\nC Daselva B\n\n\tdlwillson: Good game! Thank you!\n\nHomeworlds Online (SDG# 17313)\nStarted: 2010.9.9, Ended: 2010.9.15\nParticipants: rootbier (S), Tank_7 (N)\nWinner: Tank_7\n\n1) Tank_7: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 17403)\nStarted: 2010.9.15, Ended: 2010.9.18\nParticipants: Tank_7 (S), rootbier (N)\nWinner: Tank_7\n\n\tTank_7: Hey how are you.. Back from your business trip yet?\n\nHomeworlds Online (SDG# 17388)\nVariants: "Hard time"\nStarted: 2010.9.15, Ended: 2010.9.28\nParticipants: Kermit (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\tdlwillson: I like to do a turn or three each day. How about you?\r\n\n\n2) Kermit: Homeworld G1 B2 Y3\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: Also, I finally have a phone that can handle SDG,so I see the turns right away, and I'll usually be able to put my response in pretty quickly. So basically, we can go as fast as you like.\n\n4) Kermit: Build Y1 Kermit\n\tdlwillson: I'm strictly competitive in ladder matches, but I like to play for fun, too.\n\tdlwillson: And have a great game! I'll be quiet for a few moves. :-)\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Kermit: Build Y2 Kermit\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Kermit: Discover Y2 Kermit B3 Backwater\n\n9) dlwillson: D Y1 Dlwillson G2 Carrot\n\n10) Kermit: Trade Y2 G2 Backwater\n\n11) dlwillson: B Y2 Dlwillson\n\n12) Kermit: Build G1 Backwater\n\tdlwillson: Hey there! How's everything?\n\tKermit: reasonable\n\n13) dlwillson: D Y2 Dlwillson Y2 Camelot\n\n14) Kermit: Move Y1 Kermit Backwater\n\n15) dlwillson: S G3 Dlwillson\nB Y3 Dlwillson\nB Y3 Carrot\nPass\n\n16) Kermit: Move Y1 Backwater Camelot\n\n17) dlwillson: Trade Y3 R3 Dlwillson\n\n18) Kermit: Build Y3 Kermit\n\n19) dlwillson: S Y2 Camelot\nM Y3 Carrot Backwater\nM Y3 Backwater Kermit\n\n\tdlwillson: I could be wrong, but I think that's game.\n\tKermit: yep\n\nHomeworlds Online (SDG# 17340)\nVariants: "Hard time"\nStarted: 2010.9.15, Ended: 2010.10.26\nParticipants: Mandrel (S), Lurch (N)\nWinner: Mandrel\n\n1) Lurch: Homeworld Y1 B3 G3\n\n2) Mandrel: Homeworld R1 B2 G3\n\n3) Lurch: Build G1 Lurch\n\tMandrel: Have a good game.\n\n4) Mandrel: Build G1 Mandrel\n\tLurch: You as well.\n\n5) Lurch: Trade G1 Y1 Lurch\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) Lurch: Build Y2 Lurch\n\n8) Mandrel: B Y2 Mandrel\n\n9) Lurch: Discover Y2 Lurch B2 Alpha\n\n10) Mandrel: D Y1 Mandrel G3 Solo\n\n11) Lurch: Build G1 Lurch\n\n12) Mandrel: B Y2 Solo\n\n13) Lurch: Move G1 Lurch Alpha\n\n14) Mandrel: B Y3 Mandrel\n\n15) Lurch: Build Y3 Alpha\n\n16) Mandrel: D Y3 Mandrel B3 Activity\n\n17) Lurch: Trade Y1 R1 Lurch\n\n18) Mandrel: Build G1 Mandrel\n\n19) Lurch: Discover G1 Alpha Y3 Beta\n\n20) Mandrel: Trade Y2 R2 Mandrel\n\n21) Lurch: Build G1 Beta\n\n22) Mandrel: T G1 Y1 Mandrel\n\n23) Lurch: Move G1 Beta Alpha\n\n24) Mandrel: M R2 Mandrel Beta\n\n25) Lurch: Trade Y3 R3 Alpha\n\n26) Mandrel: D Y3 Activity G2 Mystery\n\n27) Lurch: Move R3 Alpha Beta\n\n28) Mandrel: M R2 Beta Mystery\n\n29) Lurch: Build Y2 Alpha\n\n30) Mandrel: B Y3 Mystery\n\n31) Lurch: Trade G1 B1 Alpha\n\n32) Mandrel: B G1 Mandrel\n\n33) Lurch: Build G1 Beta\n\n34) Mandrel: Trade G3 B3 Mandrel\n\n35) Lurch: Move B1 Alpha Beta\n\n36) Mandrel: B G2 Mandrel\n\n37) Lurch: Trade G1 B1 Beta\n\n38) Mandrel: S Y3 Mystery\nM Y3 Mystery Solo\nM Y3 Solo Mandrel\nM B3 Mandrel Solo\n\n39) Lurch: Build B1 Beta\n\n40) Mandrel: Build Y3 Mandrel\n\n41) Lurch: Move B1 Beta Mandrel\n\n42) Mandrel: B B2 Solo\n\n43) Lurch: Move B1 Beta Mandrel\n\n44) Mandrel: Move Y1 Solo Mystery\n\n45) Lurch: Move B1 Beta Mandrel\nCatastrophe Mandrel B\n\n46) Mandrel: M Y1 Mandrel Mystery\n\n47) Lurch: Build G1 Beta\n\n48) Mandrel: Discover Y2 Solo B2 Reset\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 17404)\nStarted: 2010.9.17, Ended: 2010.10.9\nParticipants: Tank_7 (S), rootbier (N)\nWinner: Tank_7\n\n\tTank_7: Are you avoiding playing against me?\n\trootbier: if you look up at the player list you will see that i am still on the road. i'll start this game with you if you promise not to force resign/surrender me when i run out of time.\n\nHomeworlds Online (SDG# 17170)\nStarted: 2010.9.18, Ended: 2010.10.9\nParticipants: Tank_7 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTank_7: Hi :)\n\tTwoShort: Howdy.\n\n2) Tank_7: Homeworld Y2 B1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Tank_7: Build G1 Tank_7\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Tank_7: Trade G1 B1 Tank_7\n\n7) TwoShort: Build G1 Twoshort\n\n8) Tank_7: Build B1 Tank_7\n\n9) TwoShort: Build G1 Twoshort\n\n10) Tank_7: Discover B1 Tank_7 Y3 Plem\n\n11) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n12) Tank_7: Build B2 Tank_7\n\n13) TwoShort: Build G1 Twoshort\n\n14) Tank_7: Trade B2 G2 Tank_7\n\n15) TwoShort: Discover G1 Twoshort G2 Grogar\n\n16) Tank_7: Sacrifice G3 Tank_7\nBuild B2 Plem\nBuild G2 Tank_7\nBuild G3 Tank_7\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n18) Tank_7: Trade G2 Y2 Tank_7\n\n19) TwoShort: Discover Y1 Twoshort B2 Bonsai\n\n20) Tank_7: Move B2 Plem Bonsai\n\n21) TwoShort: Sacrifice G3 Yolonda\nBuild Y1 Bonsai\nBuild Y3 Bonsai\nBuild Y3 Twoshort\n\n22) Tank_7: Discover G2 Tank_7 B3 Forni\n\n23) TwoShort: Trade Y3 R3 Bonsai\n\n24) Tank_7: Sacrifice G2 Forni\nBuild G2 Tank_7\nBuild B2 Plem\n\n25) TwoShort: Sacrifice Y3 Twoshort\nDiscover R3 Bonsai R3 Gunrule\nMove R3 Gunrule Tank_7\nDiscover G1 Yolonda Y3 Yoyodyne\n\n26) Tank_7: Sacrifice B2 Plem\nTrade B1 R1 Plem\nTrade B1 R1 Tank_7\n\n27) TwoShort: Attack G3 Tank_7\n\n28) Tank_7: Sacrifice G2 Tank_7\nBuild R2 Tank_7\nBuild R2 Tank_7\nCatastrophe Tank_7 Red\n\n29) TwoShort: Trade G3 R3 Twoshort\n\n30) Tank_7: Trade Y2 G2 Tank_7\n\tTank_7: Lol @ the system named GunRule :D I am inexperienced sorry.\n\n31) TwoShort: Sacrifice R3 Twoshort\nAttack G2 Tank_7\nPass\nPass\n\n\tTank_7: gg\n\tTwoShort: Thanks for the game :)\n\nHomeworlds Online (SDG# 17432)\nStarted: 2010.9.19, Ended: 2010.10.12\nParticipants: dethdukk (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 17456)\nVariants: "Hard time"\nStarted: 2010.9.21, Ended: 2010.9.29\nParticipants: AdamBadura (S), mneme (N)\nWinner: AdamBadura\n\n1) mneme: Homeworld B2 R1 G3\n\n2) AdamBadura: Homeworld G3 B2 R3\n\n3) mneme: Build G1 Mneme\n\n4) AdamBadura: Build R1 Adambadura\n\n5) mneme: Build G1 Mneme\n\n6) AdamBadura: Trade R1 Y1 Adambadura\n\n7) mneme: Trade G3 Y3 Mneme\n\n8) AdamBadura: Build R1 Adambadura\n\n9) mneme: Build G1 Mneme\n\n10) AdamBadura: Build R1 Adambadura\n\n11) mneme: Discover G1 Mneme B3 Butterfly\n\n12) AdamBadura: Discover R1 Adambadura Y1 Outpost\n\n13) mneme: Build G2 Butterfly\n\n14) AdamBadura: Build R2 Adambadura\n\n15) mneme: Trade G2 R2 Butterfly\n\n16) AdamBadura: Move R2 Adambadura Outpost\n\n17) mneme: Build G2 Mneme\n\n18) AdamBadura: Trade R1 B1 Adambadura\n\n19) mneme: Trade G2 R2 Mneme\n\n20) AdamBadura: Build B1 Adambadura\n\n21) mneme: Build G2 Butterfly\n\tAdamBadura: You tricked me easy with those G ships. Nice move! I have to remember this... ;)\n\n22) AdamBadura: Move B1 Adambadura Outpost\n\n23) mneme: Discover G1 Mneme R3 Spacer\n\tAdamBadura: Good night! ;)\n\n24) AdamBadura: Move R2 Outpost Spacer\n\n25) mneme: Discover R2 Mneme B3 Friendship\n\n26) AdamBadura: Attack G1 Spacer\n\n27) mneme: Sacrifice G2 Butterfly\nBuild R1 Friendship\nBuild R3 Butterfly\n\tmneme: NP; glad to help you out that way! You play fast!\n\n28) AdamBadura: Build G2 Spacer\n\n29) mneme: Trade R2 G2 Friendship\n\n30) AdamBadura: Sacrifice G2 Spacer\nBuild R2 Outpost\nBuild G2 Spacer\n\n31) mneme: Discover G1 Mneme G3 Hunter\n\n32) AdamBadura: Build Y1 Adambadura\n\n33) mneme: Trade R2 Y2 Butterfly\n\n34) AdamBadura: Build R2 Adambadura\n\n35) mneme: Build G2 Butterfly\n\n36) AdamBadura: Discover R1 Outpost G3 Nomore\n\n37) mneme: Move G2 Butterfly Mneme\n\n38) AdamBadura: Move Y1 Adambadura Outpost\n\n39) mneme: Move G2 Mneme Nomore\n\n40) AdamBadura: Sacrifice G2 Spacer\nBuild G2 Spacer\nBuild B1 Outpost\n\n41) mneme: Sacrifice Y2 Butterfly\nMove G1 Hunter Outpost\nDiscover G1 Outpost B3 Icicle\n\n42) AdamBadura: Build G3 Spacer\n\n43) mneme: Sacrifice G2 Friendship\nBuild G2 Butterfly\nBuild Y2 Mneme\n\n44) AdamBadura: Sacrifice G3 Spacer\nBuild G3 Spacer\nBuild B2 Outpost\nBuild Y2 Outpost\n\n45) mneme: Sacrifice Y2 Mneme\nMove G1 Butterfly Outpost\nMove G1 Outpost Spacer\nCatastrophe Spacer G\n\n46) AdamBadura: Move Y2 Outpost Icicle\n\n47) mneme: Sacrifice G1 Icicle\nBuild G1 Butterfly\n\tmneme: yeah, that was a blunder. perils of playing late at night.\r\n\n\n48) AdamBadura: Trade B1 G1 Outpost\n\n49) mneme: Trade G2 Y2 Butterfly\n\n50) AdamBadura: Move Y1 Outpost Spacer\n\n51) mneme: Build G1 Butterfly\n\n52) AdamBadura: Sacrifice B2 Outpost\nTrade R3 Y3 Adambadura\nTrade R2 Y2 Spacer\n\n53) mneme: Trade Y3 G3 Mneme\n\n54) AdamBadura: Build G2 Outpost\n\n55) mneme: Build Y3 Butterfly\n\n56) AdamBadura: Sacrifice G2 Outpost\nBuild Y3 Icicle\nBuild G2 Outpost\n\n57) mneme: Sacrifice G2 Nomore\nBuild R2 Butterfly\nBuild R3 Friendship\n\n58) AdamBadura: Move G2 Outpost Spacer\n\tmneme: nice attack threat.\n\tAdamBadura: There was only a thin chance you will miss it (and actually likely I would consider insisting on undo if you did) but I hope that was a good move either way.\n\n59) mneme: Move R3 Butterfly Outpost\n\n60) AdamBadura: Sacrifice Y2 Spacer\nMove G1 Outpost Icicle\nMove R2 Outpost Icicle\n\tmneme: Hey, I'd have taken the cheap win against me, but maybe I think too much of my own skills? :) But yeah, it was a good move--almost any move that results in a more favorable large ratio (particularly given that you're ahead on raw points) is a good one.\n\n61) mneme: Sacrifice Y2 Butterfly\nMove R3 Friendship Outpost\nMove R3 Outpost Spacer\n\n62) AdamBadura: Sacrifice G2 Spacer\nBuild G2 Icicle\nBuild G2 Icicle\n\n63) mneme: Sacrifice Y3 Butterfly\nMove G1 Butterfly Outpost\nMove G1 Outpost Icicle\nMove G1 Butterfly Outpost\nCatastrophe Icicle G\n\n64) AdamBadura: Sacrifice Y1 Spacer\nMove B1 Outpost Icicle\n\n65) mneme: Build G1 Mneme\n\n66) AdamBadura: Build Y1 Adambadura\n\n67) mneme: Trade R1 B1 Friendship\n\n68) AdamBadura: Build R1 Adambadura\n\n69) mneme: Trade G3 Y3 Mneme\n\n70) AdamBadura: Trade Y3 G3 Icicle\n\tAdamBadura: Interesting game...\n\n71) mneme: Build Y2 Mneme\n\tmneme: isn't it, though?\n\n72) AdamBadura: Build Y2 Icicle\n\n73) mneme: Move Y2 Mneme Butterfly\n\n74) AdamBadura: Build Y3 Icicle\n\n75) mneme: Discover Y2 Butterfly G1 Seaweed\n\n76) AdamBadura: Sacrifice Y1 Adambadura\nMove Y3 Icicle Mneme\n\n77) mneme: Attack Y3 Mneme\n\n78) AdamBadura: Sacrifice Y3 Adambadura\nMove Y2 Icicle Mneme\nMove Y2 Icicle Mneme\nMove G3 Icicle Mneme\nCatastrophe Mneme Y\n\n\tmneme: Ah -- missed a Y somewhere. Well done.\n\tAdamBadura: Thanks. Good game!\n\nHomeworlds Online (SDG# 17249)\nStarted: 2010.9.22, Ended: 2010.10.7\nParticipants: mathochist (S), pancerola (N)\nWinner: pancerola\n\n1) pancerola: Homeworld G2 Y1 B3\n\n\tpancerola: Hello?\n\nHomeworlds Online (SDG# 17480)\nVariants: "Unrated"\nStarted: 2010.9.25, Ended: 2010.9.29\nParticipants: dlwillson (S), Keith (N)\nWinner: dlwillson\n\n1) Keith: Homeworld B1 Y2 G3\n\n2) dlwillson: H B3 R1 G3\n\tKeith: You have a good track record in Homeworlds.\n\tdlwillson: I love Icehouse games. Homeworlds and Zendo are my favorites.\n\n3) Keith: Build G1 Keith\n\tKeith: There has been some very clever use of the Icehouse pieces. Homeworlds being a great example. I never had any desire to play Zendo though I appreciate it from a design point of view.\n\n4) dlwillson: B G1 Dlwillson\n\n5) Keith: Trade G1 Y1 Keith\n\n6) dlwillson: T G1 Y1 Dlwillson\n\tdlwillson: Good move. Trade to red might have been better for diversity and lockout potential.\n\n7) Keith: Build G1 Keith\n\tKeith: Thought about both red and blue.\n\n8) dlwillson: Build G1 Dlwillson\n\tKeith: I was pretty sure another green would have been a bad idea.\n\tdlwillson: Actually, either of those are good race colors for you, but red is better for three reasons:\r\n- I ~have~ to get in, or find a way to catch up later.\r\n- You have more room for red, and you don't have red.\r\n- I have less room for red, and I don't have yellow. Or, didn't have, so I'd certainly lose the red race, no matter what.\n\n9) Keith: Build Y1 Keith\n\tdlwillson: A second little green is a fine idea, unless it pushes the other guy into mediums, by the way.\r\nWe're both looking fine on yellow. You might want to consider a second yellow ship. I can't currently reach you, and you could split them up and burst-build with your G3.\n\tKeith: A burst build building all yellow to regain a 3- pointer?\r\n\r\nI wasn't that worried about having a red. Yours is a planet so while it is good for defense I don't feel like I have a gun pointed at me. Though that is focus on what is in play rather than stack management.\n\n10) dlwillson: B Y2 Dlwillson\n\n11) Keith: Discover Y1 Keith B3 Miranda\n\n12) dlwillson: D Y2 Dlwillson B2 Nuts\n\n13) Keith: Sacrifice G3 Keith\nBuild Y2 Miranda\nBuild Y3 Miranda\nBuild Y3 Keith\n\tdlwillson: Ok, the yellow rush is not currently an option...\n\tKeith: Well let me see if I understand what would happen. If I sacrificed the G3 I would need to build Y2 and Y3 in Miranda and Y3 in Keith. If you could then move nuts to Miranda and cause a catastrophe. But if you do that I will have swapped my G3 for a Y3 and you will lose your Y2. If you instead build a Y3, I disperse and keep my gain. We both will have gained a Y3 and Y2. Won't you then be capped at two yellow?\r\n\r\nThis may blow up in my face. The advantage of an unrated game is that I am free to try.\n\n14) dlwillson: B Y3 Dlwillson\n\tKeith: Make that three yellow.\n\n15) Keith: Sacrifice Y1 Miranda\nDiscover Y1 Keith G3 Midworld\n\tdlwillson: You're absolutely right on all counts. I pushed up the wrong yellow! I don't usually make mistakes like that... In this case, I'm glad I did. Onward!\n\tKeith: So now you can sacrifice the Y3 and get a yellow to Keith causing a catastrophe. I need to do something about that and Miranda is subject to loss. \n\tKeith: ... though if I lose Miranda you will have two 3-pointers to my one. Need to save Miranda too.\n\tKeith: Most of the game is coming back to me, though I am not seeing but two moves ahead.\n\n16) dlwillson: D Y1 Dlwillson G2 Berries\n\n17) Keith: Build Y1 Midworld\n\tdlwillson: I don’t think I've ever seen more than two ahead... but I definitely play with 1 eye on the bank.\n\n18) dlwillson: M G1 Dlwillson Nuts\n\n19) Keith: Discover Y1 Midworld B2 Lv-426\n\tKeith: One of the reasons I like Cannon is because I can see far ahead.\r\n\r\nNo clear idea what to do here. \n\n20) dlwillson: Build G1 Dlwillson\n\n21) Keith: Trade Y3 R3 Miranda\n\tdlwillson: So, my way of getting around that is to decide how I'm going to take the other guy out at the very beginning of the game, then, anytime there's no immediate pressure, I move something toward that goal. It seems to work OK so far. In friendly games, I mostly just play the game and see what happens.\n\tKeith: Interesting bind you have me in. If I build a green you can sacrifice your G3 and build to you get it back. If I trade a yellow you can grab it.\n\n22) dlwillson: Build Y3 Berries\n\tdlwillson: So, you offered the Y3 anyway... Interesting. Let's see if you have a plan.\n\n23) Keith: Move R3 Miranda Berries\n\tKeith: Because I am brain dead. Was going to offer the Y2, decided I might have some problems down the line, switched to the Y3 forgetting the you get it issue.\n\n24) dlwillson: M Y3 Berries Miranda\n\tdlwillson: I've done that! Solution: read the board before and after the move. :-)\n\n25) Keith: Attack Y1 Berries\n\n26) dlwillson: T G1 R1 Dlwillson\n\n27) Keith: Build R1 Berries\n\n28) dlwillson: M R1 Dlwillson Nuts\n\tdlwillson: I won my ladder match!\n\n29) Keith: Trade Y3 R3 Keith\n\tKeith: Congratulations. I see you are now starting to tackle the big league group. Wyons is a strong player.\n\n30) dlwillson: B Y3 Nuts\n\n\tdlwillson: I've played the top 3 guys in regular games. Didn't win a single one... I better get better,eh?\n\tKeith: Yep. There used to be two groups. The 4 or 5 heavies at the top of the ladder and a second group of 4 or 5 about 80 to 120 rating points back. While I got Zoltar once, I never broke out of the seconddary group and then just about stopped playing when my focus shifted to Grim Reaper.\n\tKeith: Gah! I was thinking you could not build the Y3 in dlwilson so I was safe.\n\tdlwillson: Want to call this one and start another?\n\tKeith: Maybe, I will let you know. Board game night. I will be out all evening. I will take a look when I get back in.\n\tKeith: I am going to call it.\n\nHomeworlds Online (SDG# 17429)\nStarted: 2010.9.26, Ended: 2010.10.21\nParticipants: TwoShort (S), bhorner (N)\nWinner: TwoShort\n\n1) bhorner: Homeworld B2 Y1 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tbhorner: Teach me something. :)\n\n3) bhorner: Build G1 Bhorner\n\n4) TwoShort: Build G1 Twoshort\n\n5) bhorner: Trade G1 Y1 Bhorner\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) bhorner: Discover Y1 Bhorner G3 Stab\n\n8) TwoShort: Build Y2 Twoshort\n\n9) bhorner: Build Y2 Stab\n\n10) TwoShort: Build Y2 Twoshort\n\n11) bhorner: Discover Y2 Stab G2 Rush\n\n12) TwoShort: Trade Y2 G2 Twoshort\n\n13) bhorner: Build Y2 Rush\n\tbhorner: Your last move scares me!\n\tTwoShort: I was wondering if you would sac your 2 to move your 1 in and blow up my yellows; that would put us back to the beginning, but me with as first-player, so slightly negative for you. But I think (hope) this will be worse for you :)\r\n Anyway, since you asked, I've been looking for something to teach you, but so far you're not doing anything obviously wrong, just a few not-quite-what-I'd-do things: I don't use a yellow (or green) homeworld star, so I have the option of growing more of them relative to the catastrophe threat; and I grow twice before moving out to have a second ship left at my homeworld so I can grow more ways there. \n\n14) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n15) bhorner: Build G1 Bhorner\n\n16) TwoShort: Sacrifice G2 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Bluestar\n\tbhorner: Yeah, I saw that too, I can't remember the exact details, but one option left you with an extra small and your turn, and one left us even with your turn... So I kept searching for something else.\r\n\r\nI'm used to playing with 4 or 5, I know the 2 player version will be different, but at the very beginning I didn't know how to play. I think blue yellow is the strongest homeworld with more than 2 players... I don't know if it will translate to 2 though...\n\n17) bhorner: Build Y3 Stab\n\n18) TwoShort: Trade Y2 R2 Twoshort\n\n19) bhorner: Move Y3 Stab Bhorner\n\n20) TwoShort: Build Y2 Twoshort\n\n21) bhorner: Trade Y3 R3 Bhorner\n\n22) TwoShort: Move Y3 Bluestar Stab\n\tbhorner: Wow, is it over that quick?\n\tbhorner: er... half over?\n\tbhorner: nm, I always see the worst first, I think I can hold on for a while longer.\n\tTwoShort: At first I thought it was over, then I decided it was good for me, but not over, then I decided it was over, then I decided it was not over, and even good for you, now I'm wondering if it's over...\r\nWhen I stick to a conclusion for a whole minute, I'll let you know :)\n\n23) bhorner: Discover G1 Bhorner Y3 Patience\n\n24) TwoShort: Build G1 Twoshort\n\n25) bhorner: Discover Y2 Rush B1 Crazy\n\n26) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Twoshort Bluestar\nMove G3 Bluestar Patience\n\n27) bhorner: Build R1 Bhorner\n\n28) TwoShort: Build R1 Twoshort\n\n29) bhorner: Build Y2 Stab\n\n30) TwoShort: Sacrifice R1 Twoshort\nAttack G1 Patience\n\n31) bhorner: Move Y2 Crazy Bluestar\n\tbhorner: I really wish you'd be a little more impulsive and impatient... I'll have to look this over again later.\n\n32) TwoShort: Discover Y3 Stab G2 Grogar\n\n33) bhorner: Move R1 Bhorner Stab\n\n34) TwoShort: Sacrifice G3 Patience\nBuild G1 Twoshort\nBuild G2 Twoshort\nBuild G3 Patience\n\n35) bhorner: Sacrifice Y2 Stab\nMove Y2 Bluestar Twoshort\nMove Y2 Rush Twoshort\n\n36) TwoShort: Sacrifice R2 Twoshort\nAttack Y2 Twoshort\nAttack Y2 Twoshort\n\n37) bhorner: Build Y2 Stab\n\n38) TwoShort: Trade Y2 R2 Twoshort\n\tbhorner: Ah, a miscalculation, thought I would still have a y2 left. I think it's pretty far gone at this point though, so I'll leave it.\n\n39) bhorner: Move Y1 Stab Bluestar\n\n40) TwoShort: Sacrifice G3 Patience\nBuild G2 Patience\nBuild G3 Patience\nBuild Y2 Bluestar\n\n41) bhorner: Build R1 Stab\n\n42) TwoShort: Sacrifice Y2 Twoshort\nMove G2 Patience Bhorner\nMove G1 Patience Bhorner\n\n43) bhorner: Sacrifice R1 Stab\nAttack Y1 Bluestar\n\n44) TwoShort: Sacrifice G3 Patience\nBuild G3 Bhorner\nBuild Y2 Twoshort\nBuild Y3 Grogar\n\n45) bhorner: Attack G3 Bhorner\n\n46) TwoShort: Discover Y3 Grogar B3 Bonzai\nCatastrophe Bhorner Green\n\n47) bhorner: Build R1 Stab\n\tbhorner: Ah, you taught me something after all. :)\n\n48) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Grogar Bonzai\nMove Y3 Bonzai Bhorner\nMove Y3 Bonzai Bhorner\n\tbhorner: I thought I could cat first, then do other stuff... that's how we've always played. I looked up the rules! Whoops... you had (have) me in a real pickle there!\n\n49) bhorner: Move Y2 Stab Bhorner\nCatastrophe Bhorner Yellow\n\n50) TwoShort: Sacrifice R2 Twoshort\nAttack Y1 Bluestar\nAttack Y1 Bluestar\n\n51) bhorner: Trade R3 G3 Bhorner\n\tTwoShort: Thanks for the game; I hope it was fun and/or educational :)\n\tbhorner: Certainly it's foregone, but it's not over yet! And it _has_ been fun and educational... At one point I just kind of gave up for a couple turns because there was too much going on to take in!\n\n52) TwoShort: Trade G1 B1 Twoshort\n\tTwoShort: Well that's embarrassing, I totally missed that... \n\n53) bhorner: Build G1 Bhorner\n\n54) TwoShort: Sacrifice Y2 Bluestar\nMove G1 Twoshort Bhorner\nMove G2 Twoshort Bhorner\nCatastrophe Bhorner Green\n\n\nHomeworlds Online (SDG# 17417)\nStarted: 2010.9.26, Ended: 2010.9.29\nParticipants: bhorner (S), rootbier (N)\nWinner: bhorner\n\n\tbhorner: Here's the rematch. :)\n\nHomeworlds Online (SDG# 17496)\nVariants: "Unrated"\nStarted: 2010.9.29, Ended: 2010.10.3\nParticipants: dlwillson (S), Keith (N)\nWinner: dlwillson\n\n1) Keith: Homeworld B1 Y2 G3\n\tKeith: Lets see if I can hold off a little longer this time.\n\n2) dlwillson: H B3 Y1 G3\n\n3) Keith: Build G1 Keith\n\tdlwillson: This is my favorite starting position\r\n\n\tKeith: Not with the red planet. That seems to be the preference of the top tier. Why is this your favorite starting position.\n\n4) dlwillson: B G1 Dlwillson\n\tdlwillson: I like the early mobility and red always being a ship. They like the early trade to yellow and room for more yellow and planetary defense system.\n\n5) Keith: Trade G1 Y1 Keith\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Keith: Build Y2 Keith\n\n8) dlwillson: B Y2 Dlwillson\n\tdlwillson: Whew. Good thing I can count... :-)\n\n9) Keith: Discover Y1 Keith G3 Forrest\n\n10) dlwillson: D Y1 Dlwillson G2 Spubit\n\n11) Keith: Build Y3 Forrest\n\n12) dlwillson: B Y3 Spubit\n\n13) Keith: Discover Y3 Forrest G2 Ariel\n\n14) dlwillson: T Y2 R2 Dlwillson\n\n15) Keith: Build Y2 Forrest\n\tdlwillson: Too much green, I think. Sticking with it?\n\tdlwillson: To be clearer: Splitting your yellows is a no-brainer, but I don't think moving to another green is a good idea. I think you want to move to a blue, so you can start to trade off some of your yellow to other things. The advantage to going green is that if I trade out one of my yellows to keep you from building another battleship, you can just build the yellow I trade, and you still have a nice place to build the battleship on a subsequent turn. I guess green's not so bad...\n\tKeith: Since last game trading yellow meant you got it I was aiming clearing them out. Unless of course a yellow catastrophe were to happen at your home world. Maybe too much green. Once the greens thin down enough you have that sacrifice a G3 and get it back cycle. Though at this point I still have a G3 so maybe it is an opportunity.\r\n\r\nI am sticking with my move.\n\n16) dlwillson: D Y3 Spubit B3 Thingum\n\n17) Keith: Build Y3 Ariel\n\n18) dlwillson: M Y3 Thingum Keith\n\n19) Keith: Move Y1 Forrest Keith\nCatastrophe Keith Yellow\n\n20) dlwillson: B G1 Dlwillson\n\tdlwillson: Have you heard of the gun rule? When the other guy goes for his gun...\n\tKeith: I have heard of the gun rule. But all I could see was that Y3.\n\n21) Keith: Move Y3 Ariel Keith\n\tKeith: When the other guy goes for his gun... blow him up?\n\n22) dlwillson: B Y1 Spubit\n\tdlwillson: Yes. If the other guy is in the house with a gun, blow him up, taking out half the house if necessary... :-)\n\n23) Keith: Trade Y3 R3 Keith\n\n24) dlwillson: T G1 B1 Dlwillson\n\n25) Keith: Build Y2 Ariel\n\n26) dlwillson: M B1 Dlwillson Spubit\n\n27) Keith: Move Y2 Forrest Spubit\n\n28) dlwillson: Trade Y1 B1 Spubit\n\tKeith: That was fast. Probably not a good sign.\n\n29) Keith: Sacrifice R3 Keith\nAttack B1 Spubit\nAttack B1 Spubit\nAttack Y1 Spubit\n\n30) dlwillson: B G1 Dlwillson\n\tdlwillson: What's my objective now? A moment ago, it was to be the only guy in your house with a gun. What is it now?\n\tdlwillson: You still have the advantage of multiple valuable targets. I have only one viable target right now.\n\tKeith: I am not sure what your objective is now. Overload me on blue?\n\n31) Keith: Build G1 Keith\n\n32) dlwillson: D G1 Dlwillson Y2 Dingo\n\n33) Keith: Build B2 Spubit\n\n34) dlwillson: Move G1 Dingo Keith\n\tdlwillson: Yes, and that was a decent remedy for the threat. It would have been better to build another red first.\n\tdlwillson: You lost a turn doing it that turn, because now you have go trade back into red. You should be fine, though.\n\n35) Keith: Trade G3 R3 Keith\n\tKeith: I did not feel like I had time to build a red first.\n\n36) dlwillson: Build G1 Dlwillson\n\tdlwillson: Let's play another game of Cannon. I'll challenge you.\n\n37) Keith: Sacrifice Y3 Ariel\nMove B1 Spubit Dlwillson\nMove B1 Spubit Dlwillson\nMove B2 Spubit Dlwillson\nCatastrophe Dlwillson Blue\n\tKeith: Cannon sounds good. You have me on the fence with Homeworlds. I can't think it like I used to, however, my interest is rekindled and I am debating whether to put that much effort into it.\n\n38) dlwillson: Build G2 Keith\n\tdlwillson: Actually, I've got a standing challenge for Cannon. Just join the game. But it's rated, so you better play to win. :-)\n\tdlwillson: Or, if you feel like walking me through a lot of strategy, just challenge me with an unrated game.\n\n39) Keith: Build Y1 Ariel\n\tKeith: I will set up an unrated game with you going first.\n\n40) dlwillson: Trade G1 B1 Keith\n\tdlwillson: I've lost this one, but I'll see how long I can hold on. Maybe a few more turns. We'll see.\n\tKeith: grrr too much focus on trying to finish you off. \n\n41) Keith: Attack B1 Keith\n\tKeith: Wait a minute. The next green is a g3.\n\tdlwillson: I ~really~ wish SDG had more strict time limits on players. Like, if you haven't signed in in a year, your account drops off.\r\nAnd, if you haven't taken a turn in 90 days, you auto-resign.\r\nAnd, if you don't act on a challenge in 7 days, and you're not "away", you lose the match.\r\nOK, I'm not sure that last one actually works, but you know what I mean. Some sanity limits would be nice and would make for more interesting reports.\n\tKeith: I guess it is not an issue but continuing to ignore my home system is.\n\tKeith: In theory there is removal after a year. Aaron does not keep up with those things like he used to. The auto resign would be good. There are a lot of dead Homeworlds games.\n\tKeith: I am going to redo the same move. I may be losing a game I had tied up but I need to learn how if that is the case.\n\n42) dlwillson: Sacrifice R2 Dlwillson\nAttack B1 Keith\nAttack G1 Keith\n\n43) Keith: Attack B1 Keith\n\tdlwillson: <insert randomly selected evil snicker>\n\tKeith: Now I get it.\n\n44) dlwillson: Trade G1 B1 Keith\n\n45) Keith: Sacrifice Y2 Ariel\nMove Y1 Spubit Dlwillson\nMove Y2 Spubit Dlwillson\n\n46) dlwillson: Trade G2 B2 Keith\nCatastrophe Keith B\n\tdlwillson: This is the tightest end I've ever seen, I think.\n\n\tKeith: Thank you for the lesson. I could not see that end game extending from not attacking the g1 when it showed up at my homeworld.\n\tdlwillson: Really, you played very well. The critical moments were the times you didn't go for your gun in time.\n\tdlwillson: I think you're as good or better than me, if you want to start playing rated games.\n\tKeith: I think I have two bad tendencies: 1) start a defensive move one turn late, 2) start an offensive series one turn early. I am more inclined to sacrifice. \r\n\r\nHaving to blow up half my house was interesting. \n\tKeith: I am not sure yet if I want to get back into serious play\\rated games. If I do I will be taking turns a lot slower. I had sped things up since I saw that it was your preference in the comments of one of your games.\n\nHomeworlds Online (SDG# 17483)\nStarted: 2010.10.1, Ended: 2010.10.6\nParticipants: bhorner (S), TomClem (N)\nWinner: TomClem\n\n1) TomClem: Homeworld Y1 B2 G3\n\n2) bhorner: Homeworld Y1 G3 Y3 *\n\n3) TomClem: Build G1 Tomclem\n\n4) bhorner: Build Y1 Bhorner\n\tbhorner: I thought I would try something crazy. :)\n\n5) TomClem: Trade G3 Y3 Tomclem\n\n6) bhorner: Discover Y1 Bhorner G2 Stab\n\n7) TomClem: Build Y2 Tomclem\n\tTomClem: nice job shutting me out of y1's...\n\tbhorner: Yeah, I'm sure it will hurt me badly later. :)\n\n8) bhorner: Build Y2 Stab\n\n9) TomClem: Trade Y2 R2 Tomclem\n\n10) bhorner: Discover Y1 Stab B3 Rush\n\n11) TomClem: Build G1 Tomclem\n\n12) bhorner: Build Y2 Stab\n\tTomClem: I think I just let you back into this game!\n\n13) TomClem: Move G1 Tomclem Rush\n\tbhorner: We'll see, things don't seem good yet...\n\n14) bhorner: Discover Y2 Stab G3 Hope\n\n15) TomClem: Sacrifice R2 Tomclem\nAttack Y1 Rush\nPass\n\n16) bhorner: Discover Y2 Stab B3 Damn\n\n17) TomClem: Trade Y3 R3 Tomclem\n\n18) bhorner: Trade Y2 B2 Damn\n\n19) TomClem: Build Y2 Rush\n\n20) bhorner: Build Y2 Hope\n\n21) TomClem: Discover Y1 Rush G2 Land\n\tTomClem: that would have all been a lot easier if i had traded y3 to r3 instead of y2 to r2 a few moves back! Grrrrrrr!\n\n22) bhorner: Sacrifice B2 Damn\nTrade Y2 G2 Hope\nTrade Y3 R3 Bhorner\n\tbhorner: this is terrible. :)\n\n23) TomClem: Build G1 Tomclem\n\n24) bhorner: Build R1 Bhorner\n\n25) TomClem: Discover G1 Tomclem Y3 Fear\n\tTomClem: post here when you are done for the night.\n\n26) bhorner: Move Y2 Hope Land\n\tbhorner: done for the night. :)\n\n27) TomClem: Build G2 Tomclem\n\n28) bhorner: Sacrifice R1 Bhorner\nAttack Y1 Land\n\n29) TomClem: Build G3 Rush\n\tbhorner: For real this time. :)\n\n30) bhorner: Build R1 Bhorner\n\n31) TomClem: Build R1 Tomclem\n\n32) bhorner: Move Y2 Land Hope\n\n33) TomClem: Trade G3 Y3 Rush\n\n34) bhorner: Sacrifice G2 Hope\nBuild Y2 Hope\nBuild Y3 Land\n\tbhorner: nice big.\n\n35) TomClem: Discover Y2 Rush G2 Gold\n\n36) bhorner: Discover Y1 Land G3 Layaway\n\tTomClem: Thanks. I thought it was a worthy sacrifice. we will see if there is something I haven't accounted for. Definitely need to keep you from locking up yellow!\n\n37) TomClem: Move G2 Tomclem Layaway\n\n38) bhorner: Sacrifice Y3 Land\nMove Y2 Hope Tomclem\nMove Y2 Hope Tomclem\nMove Y1 Layaway Tomclem\nCatastrophe Tomclem Y\n\n39) TomClem: Build G2 Rush\n\n40) bhorner: Move R1 Bhorner Tomclem\n\n41) TomClem: Sacrifice R1 Tomclem\nAttack R1S Tomclem\n\n42) bhorner: Build R1 Bhorner\n\n43) TomClem: Sacrifice Y2 Gold\nMove R1 Tomclem Bhorner\nMove R3 Tomclem Bhorner\nCatastrophe Bhorner Red\n\n\nHomeworlds Online (SDG# 17606)\nVariants: "Hard time"\nStarted: 2010.10.2, Ended: 2010.10.23\nParticipants: Uglyfoot (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) Uglyfoot: Homeworld B3 Y1 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) goulo: Trade Y1 R1 Goulo\n\tUglyfoot: have a good game.\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\tgoulo: BTW there is now a Subdivision ladder, in case you are interested in joining!\n\n7) goulo: Build R1 Goulo\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) goulo: Discover R1 Goulo Y1 Citroneto\n\n10) Uglyfoot: Discover Y1 Uglyfoot R2 Out\n\n11) goulo: Build Y2 Goulo\n\n12) Uglyfoot: Move G1 Uglyfoot Out\n\n13) goulo: Build Y2 Goulo\n\n14) Uglyfoot: Build Y2 Out\n\n15) goulo: Move Y2 Goulo Citroneto\n\n16) Uglyfoot: Discover Y2 Out G1 Walky\n\n17) goulo: Move Y2 Goulo Walky\n\n18) Uglyfoot: Build Y3 Out\n\n19) goulo: Build Y3 Goulo\n\n20) Uglyfoot: Build G1 Uglyfoot\n\n21) goulo: Trade Y3 G3 Goulo\n\n22) Uglyfoot: Build G2 Out\n\n23) goulo: Build Y3 Goulo\n\n24) Uglyfoot: Trade G1 B1 Uglyfoot\n\n25) goulo: Sacrifice R1 Citroneto\nAttack Y2 Walky\n\n26) Uglyfoot: Move B1 Uglyfoot Out\n\n27) goulo: Sacrifice Y3 Goulo\nMove G3 Goulo Citroneto\nMove G3 Citroneto Out\nMove G3 Out Uglyfoot\n\n28) Uglyfoot: Move Y3 Out Uglyfoot\n\n29) goulo: Trade Y3 R3 Goulo\n\n30) Uglyfoot: Sacrifice G2 Out\nBuild G1 Uglyfoot\nBuild G2 Uglyfoot\nCatastrophe Uglyfoot G\n\n31) goulo: Move Y2 Citroneto Out\n\n32) Uglyfoot: Trade Y3 G3 Uglyfoot\n\n33) goulo: Build R1 Goulo\n\n34) Uglyfoot: Discover B1 Out Y1 Nexus\n\n35) goulo: Attack Y1 Out\n\n36) Uglyfoot: Attack Y1 Out\n\n37) goulo: Trade R3 Y3 Goulo\n\n38) Uglyfoot: Trade B1 R1 Nexus\n\n39) goulo: Build Y3 Goulo\n\tgoulo: I guess Homeworlds doesn't have a ko rule... :)\n\n40) Uglyfoot: Build Y3 Out\n\n41) goulo: Move Y2 Walky Out\nCatastrophe Out Y\n\n42) Uglyfoot: Build G1 Uglyfoot\n\n43) goulo: Move Y2 Walky Out\n\n44) Uglyfoot: Sacrifice G1 Out\nBuild R2 Nexus\n\n45) goulo: Move Y3 Goulo Nexus\n\n46) Uglyfoot: Discover R2 Nexus B2 Port\n\n47) goulo: Sacrifice R1 Goulo\nAttack R1 Nexus\n\n48) Uglyfoot: Build G1 Uglyfoot\n\n49) goulo: Move Y3 Nexus Port\n\n50) Uglyfoot: Trade G1 R1 Uglyfoot\n\n51) goulo: Sacrifice R1 Nexus\nAttack R2 Port\n\n52) Uglyfoot: Build G1 Uglyfoot\n\n53) goulo: Build Y1 Goulo\n\n54) Uglyfoot: Discover G1 Uglyfoot Y2 Movit\n\n55) goulo: Trade Y3 G3 Port\n\n56) Uglyfoot: Build G1 Movit\n\n57) goulo: Build G2 Port\n\n58) Uglyfoot: Trade G1 B1 Uglyfoot\n\n59) goulo: Build G1 Port\n\n60) Uglyfoot: Build G2 Movit\n\n61) goulo: Sacrifice Y2 Out\nMove G1 Port Uglyfoot\nMove G1 Uglyfoot Movit\nCatastrophe Movit G\n\n62) Uglyfoot: Discover B1 Uglyfoot Y2 Movit2\n\n63) goulo: Build G1 Port\n\n\tgoulo: Thanks for the game!\n\nHomeworlds Online (SDG# 17508)\nVariants: "Hard time"\nStarted: 2010.10.2, Ended: 2010.10.5\nParticipants: TwoShort (S), AdamBadura (N)\nWinner: TwoShort\n\n1) AdamBadura: Homeworld G3 B2 R3\n\n2) TwoShort: Homeworld B1 R3 G3\n\tTwoShort: Howdy.\n\n3) AdamBadura: Build R1 Adambadura\n\n4) TwoShort: Build G1 Twoshort\n\n5) AdamBadura: Build R1 Adambadura\n\n6) TwoShort: Trade G1 R1 Twoshort\n\n7) AdamBadura: Trade R1 Y1 Adambadura\n\n8) TwoShort: Build G1 Twoshort\n\n9) AdamBadura: Trade R1 B1 Adambadura\n\n10) TwoShort: Trade G1 Y1 Twoshort\n\n11) AdamBadura: Build R1 Adambadura\n\n12) TwoShort: Build Y1 Twoshort\n\n13) AdamBadura: Build Y2 Adambadura\n\n14) TwoShort: Build Y2 Twoshort\n\n15) AdamBadura: Discover Y2 Adambadura G1 Shipyard\n\n16) TwoShort: Trade Y2 G2 Twoshort\n\n17) AdamBadura: Build Y2 Adambadura\n\n18) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n19) AdamBadura: Trade Y1 G1 Adambadura\n\n20) TwoShort: Discover G2 Twoshort B2 Bluestar\n\n21) AdamBadura: Build G1 Adambadura\n\n22) TwoShort: Build G2 Twoshort\n\n23) AdamBadura: Trade G1 B1 Adambadura\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Twoshort\nBuild G3 Twoshort\nBuild G3 Bluestar\n\n25) AdamBadura: Move B1 Adambadura Shipyard\n\n26) TwoShort: Trade G2 Y2 Bluestar\n\n27) AdamBadura: Trade Y2 G2 Shipyard\n\n28) TwoShort: Discover G2 Twoshort Y2 Yolonda\n\n29) AdamBadura: Sacrifice G1 Adambadura\nBuild B2 Adambadura\n\n30) TwoShort: Discover G3 Bluestar Y3 Yellonia\n\tAdamBadura: Now its clear why your rank is so high... ;)\n\tAdamBadura: There is no light at the end of my time-and-space-travel tunnel. ;D\n\n31) AdamBadura: Sacrifice G2 Shipyard\nBuild B3 Shipyard\nBuild B3 Shipyard\n\tTwoShort: You've been playing an excellent game. Only in the last turn or two have I started to be less worried... which sometimes leads me to do something stupid, so I'd better be careful :)\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluestar\nBuild Y3 Twoshort\nBuild Y3 Bluestar\n\n33) AdamBadura: Trade B3 R3 Shipyard\n\n34) TwoShort: Sacrifice G3 Yellonia\nBuild Y3 Grogar\nBuild G1 Yolonda\nBuild G2 Yolonda\n\n35) AdamBadura: Trade R3 G3 Adambadura\n\tAdamBadura: As much as I like to deny my opponent some thecnology I hate when this happens to me. :)\n\n36) TwoShort: Move G1 Yolonda Shipyard\n\n37) AdamBadura: Sacrifice Y2 Adambadura\nMove B3 Shipyard Yolonda\nMove R3 Shipyard Yolonda\n\n38) TwoShort: Sacrifice Y3 Grogar\nMove G2 Yolonda Shipyard\nMove G2 Shipyard Adambadura\nMove G1 Shipyard Adambadura\nCatastrophe Adambadura Green\n\n39) AdamBadura: Attack G2 Yolonda\n\n40) TwoShort: Sacrifice Y2 Bluestar\nMove Y3 Bluestar Shipyard\nMove Y3 Shipyard Adambadura\n\n\tAdamBadura: No point in continuing this. Congratulations although it was way too easy for you :)...\n\tTwoShort: Thanks for the game!\n\nHomeworlds Online (SDG# 17612)\nVariants: "No undo, Sinister"\nStarted: 2010.10.3, Ended: 2010.11.11\nParticipants: AdamBadura (S), zara2stra (N), goulo (E)\nWinner: zara2stra\n\n1) zara2stra: Homeworld G3 Y1 B3\n\n2) goulo: Homeworld G3 B2 Y3\n\n3) AdamBadura: Homeworld G3 B1 R3\n\tgoulo: Ah, just like the good old days!\n\n4) zara2stra: Build B1 Zara2stra\n\n5) goulo: Build Y1 Goulo\n\n6) AdamBadura: Build R1 Adambadura\n\n7) zara2stra: Trade B1 Y1 Zara2stra\n\tAdamBadura: Was this kill all or kill on the left?\n\n8) goulo: Trade Y1 G1 Goulo\n\tgoulo: "Sinister" = kill on the left\n\tgoulo: (listed at the top under "Variant" info)\n\n9) AdamBadura: Build R1 Adambadura\n\n10) zara2stra: Build B1 Zara2stra\n\n11) goulo: Build G1 Goulo\n\n12) AdamBadura: Trade R1 Y1 Adambadura\n\n13) zara2stra: Trade B1 R1 Zara2stra\n\n14) goulo: Trade G1 R1 Goulo\n\n15) AdamBadura: Trade R1 G1 Adambadura\n\tgoulo: BTW I recommend the 2-player game Ordo. I've played it 3 times now and it's an interesting subtle abstract.\n\n16) zara2stra: Build B1 Zara2stra\n\n17) goulo: Build G1 Goulo\n\n18) AdamBadura: Build R1 Adambadura\n\n19) zara2stra: Trade B1 G1 Zara2stra\n\n20) goulo: Discover G1 Goulo Y1 Citroneto\n\n21) AdamBadura: Build Y2 Adambadura\n\n22) zara2stra: Build B1 Zara2stra\n\n23) goulo: Build Y2 Goulo\n\n24) AdamBadura: Discover Y2 Adambadura G2 Drydocks\n\n25) zara2stra: Discover Y1 Zara2stra R2 Mostlyharmless\n\n26) goulo: Build G2 Citroneto\n\n27) AdamBadura: Build Y2 Drydocks\n\n28) zara2stra: Move G1 Zara2stra Mostlyharmless\n\tAdamBadura: Look into game 17692 and learn from my mistakes.\n\n29) goulo: Discover Y2 Goulo R1 Rubeneto\n\n30) AdamBadura: Move R1 Adambadura Drydocks\n\tgoulo: http://superdupergames.org/?page=archive_play&gid=17692&idx=8\r\nHa, that is pretty cool and interesting! You should post it to the Homeworlds Sessions forum at bgg.\n\n31) zara2stra: Build G2 Mostlyharmless\n\n32) goulo: Build Y2 Goulo\n\n33) AdamBadura: Build Y3 Adambadura\n\n34) zara2stra: Build Y3 Mostlyharmless\n\n35) goulo: Sacrifice G2 Citroneto\nBuild Y3 Rubeneto\nBuild G2 Citroneto\n\n36) AdamBadura: Build R2 Drydocks\n\n37) zara2stra: Sacrifice Y3 Mostlyharmless\nMove G1 Mostlyharmless Citroneto\nMove G1 Citroneto Goulo\nMove Y1 Mostlyharmless Rubeneto\n\n38) goulo: Attack G1N Goulo\n\n39) AdamBadura: Move Y2 Drydocks Rubeneto\nCatastrophe Rubeneto Y\n\n40) zara2stra: Sacrifice B1 Zara2stra\nTrade G2 Y2 Mostlyharmless\n\n41) goulo: Trade G1 B1 Goulo\n\n42) AdamBadura: Trade Y1 B1 Adambadura\n\n43) zara2stra: Build B1 Zara2stra\n\n44) goulo: Discover G2 Citroneto Y2 Citrono\n\n45) AdamBadura: Build B2 Adambadura\n\n46) zara2stra: Trade B1 G1 Zara2stra\n\n47) goulo: Discover B1 Goulo Y1 Pisero\n\n48) AdamBadura: Move B2 Adambadura Drydocks\n\n49) zara2stra: Move G1 Zara2stra Mostlyharmless\n\n50) goulo: Build G2 Citrono\n\n51) AdamBadura: Discover G1 Adambadura R2 Outpost\n\tgoulo: I have been watching some of the BGG Essen game demo videos, reading reports, etc and wish I had gone to Essen this year. :)\n\tAdamBadura: Yes. Me too... However having a child (and another one on the way) makes travaling to Essen a bit hard in next few years... :(\n\n52) zara2stra: Build G2 Mostlyharmless\n\n53) goulo: Build G3 Citroneto\n\n54) AdamBadura: Build R1 Adambadura\n\n55) zara2stra: Sacrifice G2 Mostlyharmless\nBuild Y1 Mostlyharmless\nBuild Y3 Mostlyharmless\n\n56) goulo: Move B1 Pisero Citrono\n\n57) AdamBadura: Build G2 Outpost\n\n58) zara2stra: Sacrifice Y2 Mostlyharmless\nMove Y3 Mostlyharmless Citroneto\nMove Y3 Citroneto Outpost\n\n59) goulo: Discover G1 Citroneto R2 Rubeno\n\n60) AdamBadura: Sacrifice G2 Outpost\nBuild Y1 Adambadura\nBuild Y2 Drydocks\n\n61) zara2stra: Build Y3 Mostlyharmless\n\n62) goulo: Build R3 Goulo\n\n63) AdamBadura: Discover Y1 Adambadura G2 Shipyard\n\n64) zara2stra: Attack G1S Outpost\n\n65) goulo: Sacrifice Y2 Goulo\nMove G1 Rubeno Adambadura\nMove G2 Citrono Adambadura\n\n66) AdamBadura: Move R3 Adambadura Shipyard\n\n67) zara2stra: Sacrifice Y3 Mostlyharmless\nMove G1 Mostlyharmless Citroneto\nMove G1 Citroneto Goulo\nDiscover G1 Outpost B1 Aeon\n\n68) goulo: Move G1 Goulo Citroneto\n\n69) AdamBadura: Build R2 Adambadura\n\n70) zara2stra: Build B2 Zara2stra\n\n71) goulo: Attack G1N Goulo\n\n72) AdamBadura: Build R3 Shipyard\n\tgoulo: One of you should challenge me to Alien City. :)\n\n73) zara2stra: Move B2 Zara2stra Outpost\n\n74) goulo: Move G2 Citrono Adambadura\nCatastrophe Adambadura G\n\n75) AdamBadura: Discover R1 Adambadura G2 Runaways\n\n76) zara2stra: Build G1 Aeon\n\tAdamBadura: As to Alien City I still don't know the rules. Something is wrong either with me or with them as I tried at least 3 times and failed every time... ;)\n\tgoulo: They are strange rules when you read them, I agree! All the information is there, and I think they're even clear and complete rules, and not very complicated, yet I still sometimes have to check things to be sure I'm not confused. :) If I ever make a physical set (I just need to make 20 tiles...), we can try playing in person...\n\n77) goulo: Sacrifice G1 Goulo\nBuild B2 Citrono\n\n78) AdamBadura: Move B1 Adambadura Runaways\n\tgoulo: BTW Lines of Action is quite nice, I'm enjoying it lately. A modern classic abstract game (from 1969)\n\n79) zara2stra: Move B2 Outpost Aeon\n\n80) goulo: Discover B2 Citrono R3 Rubenego\n\n81) AdamBadura: Sacrifice Y2 Drydocks\nMove R3 Shipyard Zara2stra\nMove R3 Shipyard Zara2stra\n\n82) zara2stra: Attack R3S Zara2stra\n\n83) goulo: Sacrifice G1 Citroneto\nBuild B3 Citrono\n\n84) goulo: Build Y2 Goulo\n\tAdamBadura: An interesting situation. I hoped I will be quick enough. As it seems I wasn't and now goulo will win.\n\tAdamBadura: zara2stra, unless we prevent goulo from killing me in his next move we will lose. I have only one B ship (in Runaways) which I could move (by sacrificing some Y ship) to Citrono.\r\n\r\nBut this is not enough obviously. You would have to move your B ship (from Aeon) too. Also by sacrificing your Y ship.\r\n\r\nThis would prevent goulo from winning in next move. Are you willing to do it?\n\tgoulo: haha! I wondered if you would propose that. :)\r\n\r\nBTW I am exploring costs of acrylic laser cutting, as a possible way to make Alien City tiles. :)\n\tAdamBadura: That is one of the things that puts me away from Alien City. It is not "pure Icehouse"... ;)\r\n\r\nI considered costs of laser cutting/drawing after I saw some 18xx track tiles made in wood with laser (on BGG).\n\tgoulo: BTW I thought of building a b3 at Rubenego, then decided against it exactly because you alone could move 2 blues to it, whereas at Citrono you'd have to convince zara2stra to sacrifice as well. :)\n\tgoulo: My Alien City will almost pure icehouse. I don't want to use "domes", but simply small pyramids, for example. So only the board will be non-pyramids - and that's true for many of the icehouse games that use a board. :)\n\tAdamBadura: Can you somehow notify zara2stra that I am awaiting his decisions here? As he likely wont come here until I make a move.\n\tgoulo: You can geekmail him at BGG; he is zara2stra there.\n\tzara2stra: Sorry guys, I just read the message on BGG - if there's a situation like this in the future, just mail me: zara2stra@gmail.com. As for your question, I'll help you catastrophe citrono, if you'll also withdraw the r3 from my home system at the same turn. \n\tAdamBadura: Its a high price considering you already gained R3 and if we don't prevent goulo we both lose, not just me... Let me consider this...\n\tgoulo: Ha, surely no price is too high to avoid losing immediately! :)\n\tgoulo: You should be required to move your r3 back to drydocks so there can then be a red catastrophe there more easily. :)\n\tAdamBadura: Also moving both B and R requires me to sacrifice an Y3 rather then Y2...\n\tAdamBadura: Which leaves me defencless in my homeworld. It seems the only way to avoid loosing is to convince zara2stra to make a move which will make him lose earlier... ;)\n\n85) zara2stra: Move R3 Zara2stra Drydocks\n\tzara2stra: That wasn't nice.\n\tAdamBadura: Yes. But it seems that goulo's victory was unavoidable anyway...\n\tgoulo: wow, that's a complex situation now!\n\n86) goulo: Sacrifice Y2 Goulo\nMove R1 Goulo Adambadura\nMove R1 Adambadura Drydocks\nCatastrophe Drydocks R\n\tAdamBadura: Yes. That is why I love this game so much.\r\n\r\nBy the way. Will any of you be on Gratislavia? On the first day (Saturday) I will be among the staff, but likely on Sunday I will come as a gamer.\n\tgoulo: A2na and I are going out of town for the long weekend, so unfortunately we will miss Gratislavia. Bad timing. :/\n\tgoulo: Your resignation is an interesting example of "what do you do when you can't win?" I.e. you could have kept playing and lost, with me winning. Or you could resign, leaving a complex situation where you lost, and it's unclear whether I or zara2stra will win. So either way you lose. If zara2stra wins now, then you did kingmaking. Or did you? Or was it kingmaking regardless of who wins now, since your resigning prevented my imminent victory and made the situation complex and unclear? Some say you should never resign from a multi-player game. Etc.\r\n\r\nI suspect a BGG thread about this game would get many diverse comments. :)\n\tAdamBadura: You are free to post it on BGG. ;)\r\n\r\nI resigned as I knew that me staying in the game has two possibilities: 1) either I will convince zara2stra to make a move bad for him which would prevent you from winning and allow me to win before you rebuild an threat or 2) I will soon lose to you.\r\n\r\nFirst one would be a great achievement. More diplomatic/negotiation than strategic. But still a good one (or at least for me: I like this aspect of gaming). But clearly zara2stra foreseen my evil plans and this will not happen.\r\n\r\nSecond does not change my situation to the current one (me resigning). Although it may change yours, so lets think about it.\r\n\r\nMy resignation makes the game unclear to you. So it could possibly take your victory. (Or maybe it didn't: if I kept playing we would go into destroying your B threat and then it would be a race for you and zara2stra who first destroys me. Keep in mind I already had to do it once in a previous game, I had to destroy you to prevent zara2stra from doing it as I could have won but required more moves than zara2stra...)\r\n\r\nAlso I like to see it as it is often interpreted in Through the Ages where player leaving the game is formalized and allowed explicitly by the rules. Playing against someone in TtA requires some sacrifices (of actions) and if the attacked player resigned from the game in response you do not gain anything while you already payed the costs. So hitting the weakest player or doing a fatal blow is risky. This does not translate directly to this game where destruction of your enemy is the only way of winning. However I do like to think that a good threat must take into account resignation of defender. So you cannot rush to much and sacrifice to much as you might end up exposed.\r\n\r\nAll in all now you have some more gaming... ;)\n\n87) zara2stra: Attack R3S Zara2stra\n\tzara2stra: I will be on Gratislavia on sunday - I'll borrow an IceHouse set from Ryslaw.\n\n88) goulo: Build Y2 Goulo\n\n89) zara2stra: Sacrifice Y3 Outpost\nMove R3 Zara2stra Drydocks\nMove G1 Aeon Goulo\nMove G1 Aeon Goulo\n\n90) goulo: Sacrifice R3 Goulo\nAttack G1N Goulo\nAttack G1N Goulo\nPass\n\n91) zara2stra: Sacrifice Y1 Mostlyharmless\nMove B2 Aeon Goulo\n\n92) goulo: Sacrifice Y2 Goulo\nDiscover G1 Goulo Y1 Pisereto\nMove G1 Goulo Pisereto\n\n93) zara2stra: Build B1 Goulo\n\n94) goulo: Sacrifice G3 Citroneto\nBuild Y1 Goulo\nBuild B3 Citrono\nBuild B3 Rubenego\n\n95) zara2stra: Sacrifice R3 Drydocks\nAttack Y1E Goulo\nPass\nPass\n\n96) goulo: Trade Y3 R3 Goulo\n\n97) zara2stra: Sacrifice B3 Zara2stra\nTrade B2 R2 Goulo\nTrade B1 R1 Goulo\nTrade Y1 R1 Goulo\nCatastrophe Goulo R\n\n\tzara2stra: Thanks for the game, but goulo should be the winner. In my opinion, when Adam resigned, he shifted the balance to my advantage: My homeworld was safe for a time, because Goulo's ships where earlier targeting an entirely different system, and I was free to carry out the plan I already had. All in all, I feel that Adam resigning was unfair. \n\tAdamBadura: Maybe indeed it was.\r\n\r\nBut maybe as I already suggested my resignation was a punishment of a weak victory plan goulo had... ;)\n\tzara2stra: Anyway, I'm eager to exact my revenge live on sunday :D\n\tgoulo: Hope you got to play today! We were out of town at a different event where I got to play 4 games of RAMbots, woot. :)\n\tAdamBadura: No. Somehwo we didn't meet today although I was there from 12 to 16.\n\nHomeworlds Online (SDG# 17331)\nVariants: "Hard time"\nStarted: 2010.10.5, Ended: 2010.10.17\nParticipants: daselva (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\n2) daselva: Homeworld B1 R2 G3\n\n3) Jesse: Build G1 Jesse\n\tdaselva: hello...greetings\n\tJesse: Hello. Have a good game.\n\n4) daselva: Build G1 Daselva\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) Jesse: Build G1 Jesse\n\n8) daselva: Build G1 Daselva\n\n9) Jesse: Trade G1 B1 Jesse\n\n10) daselva: Build G1 Daselva\n\n11) Jesse: Build G1 Jesse\n\n12) daselva: Trade G1 R1 Daselva\n\n13) Jesse: Trade G1 R1 Jesse\n\n14) daselva: Discover R1 Daselva G3 S1\n\n15) Jesse: Discover R1 Jesse G2 Goober\n\n16) daselva: Trade G1 B1 Daselva\n\n17) Jesse: Move B1 Jesse Goober\n\n18) daselva: Sacrifice B1 Daselva\nTrade R1 Y1 S1\n\n19) Jesse: Build Y2 Jesse\n\n20) daselva: Build Y2 S1\n\n21) Jesse: Move Y1 Jesse Goober\n\n22) daselva: Move Y1 S1 Daselva\n\n23) Jesse: Build R1 Goober\n\n24) daselva: Build G1 Daselva\n\n25) Jesse: Build R2 Goober\n\n26) daselva:\nDiscover Y1 Daselva B3 S2\n\n27) Jesse: Move R2 Goober S1\n\n28) daselva: Move Y2 S1 Goober\n\n29) Jesse: Build R2 Goober\n\n30) daselva: Sacrifice G3 Daselva\nBuild Y2 S2\nBuild Y3 Goober\nBuild Y3 Daselva\n\n31) Jesse: Build Y3 Goober\nCatastrophe Goober Y\n\n32) daselva: Trade Y2 G2 S2\n\n33) Jesse: Trade R2 Y2 Goober\n\n34) daselva: Build G1 S2\n\n35) Jesse: Build R2 S1\n\n36) daselva: Trade G1 B1 S2\n\n37) Jesse: Build R3 Goober\n\n38) daselva: Discover B1 S2 G2 S3\n\n39) Jesse: Move R3 Goober S2\n\n40) daselva: Sacrifice G2 S2\nBuild B2 S3\nBuild B2 S3\n\n41) Jesse: Build R3 S1\n\n42) daselva: Move Y1 S2 S3\n\n43) Jesse: Sacrifice Y2 Goober\nMove R3 S1 Daselva\nMove R3 S2 Daselva\n\n44) daselva: Attack R3 Daselva\n\n45) Jesse: Sacrifice R2 S1\nAttack R3 Daselva\nAttack Y3 Daselva\n\n46) daselva: Move B2 S3 Jesse\n\n47) Jesse: Sacrifice R3 Daselva\nAttack B2 Jesse\nAttack Y1 Daselva\nAttack G1 Daselva\n\n\tJesse: Thank you for playing, too.\n\nHomeworlds Online (SDG# 15942)\nStarted: 2010.10.5, Ended: 2010.11.1\nParticipants: Uglyfoot (S), lorgar (N)\nWinner: Uglyfoot\n\n1) lorgar: Homeworld G3 B1 Y3\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\n3) lorgar: Build Y1 Lorgar\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) lorgar: Trade Y1 G1 Lorgar\n\n6) Uglyfoot: Discover G1 Uglyfoot R1 Colony\n\n7) lorgar: Build Y1 Lorgar\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) lorgar: Discover G1 Lorgar B2 Concretejungle\n\n10) Uglyfoot: Build G2 Colony\n\n11) lorgar: Build G2 Concretejungle\n\n12) Uglyfoot: Trade G1 R1 Uglyfoot\n\n13) lorgar: Trade G1 R1 Concretejungle\n\n14) Uglyfoot: Build R2 Uglyfoot\n\n15) lorgar: Build R2 Concretejungle\n\n16) Uglyfoot: Trade R1 Y1 Uglyfoot\n\n17) lorgar: Trade R1 Y1 Concretejungle\n\n18) Uglyfoot: Build Y2 Uglyfoot\n\n19) lorgar: Move G2 Concretejungle Lorgar\n\n20) Uglyfoot: Move Y2 Uglyfoot Colony\n\n21) lorgar: Trade Y1 G1 Concretejungle\n\n22) Uglyfoot: Discover G2 Colony Y2 Far\n\n23) lorgar: Trade G2 R2 Lorgar\n\n24) Uglyfoot: Build G1 Uglyfoot\n\n25) lorgar: Move R2 Lorgar Far\n\n26) Uglyfoot: Sacrifice R2 Uglyfoot\nAttack R2 Far\nPass\n\n27) lorgar: Move Y1 Lorgar Concretejungle\n\n28) Uglyfoot: Build G2 Colony\n\n29) lorgar: Build G2 Concretejungle\n\n30) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Far\nBuild R1 Far\n\n31) lorgar: Move R2 Concretejungle Lorgar\n\n32) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild Y1 Uglyfoot\nBuild Y3 Colony\n\n33) lorgar: Build Y3 Lorgar\n\n34) Uglyfoot: Move Y3 Colony Concretejungle\n\n35) lorgar: Move R2 Lorgar Far\n\n36) Uglyfoot: Sacrifice R2 Far\nAttack R2 Far\nAttack Y1 Concretejungle\n\n37) lorgar: Trade Y3 R3 Lorgar\n\n38) Uglyfoot: Build Y3 Colony\n\n39) lorgar: Move R3 Lorgar Concretejungle\n\n40) Uglyfoot: Sacrifice R1 Far\nAttack R3 Concretejungle\n\n\tlorgar: let's call it a day, shall we?\n\tUglyfoot: I think that is a good idea. Thanks for the game!\n\nHomeworlds Online (SDG# 17406)\nVariants: "Hard time"\nStarted: 2010.10.5, Ended: 2010.10.21\nParticipants: Lurch (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld G2 B1 Y3\n\n2) Lurch: Homeworld Y1 B3 G3\n\n3) lorgar: Build Y1 Lorgar\n\n4) Lurch: Build G1 Lurch\n\n5) lorgar: Trade Y1 G1 Lorgar\n\n6) Lurch: Trade G1 Y1 Lurch\n\n7) lorgar: Build G1 Lorgar\n\n8) Lurch: Discover Y1 Lurch G2 Alpha\n\n9) lorgar: Discover G1 Lorgar B3 Metatron\n\n\nHomeworlds Online (SDG# 17622)\nVariants: "Hard time"\nStarted: 2010.10.6, Ended: 2010.10.18\nParticipants: medcatt (S), Lurch (N)\nWinner: Lurch\n\n1) Lurch: Homeworld B1 Y2 G3\n\n2) medcatt: Homeworld B2 G1 Y3\n\n3) Lurch: Build G1 Lurch\n\n4) medcatt: Build Y1 Medcatt\n\n5) Lurch: Build G1 Lurch\n\n\nHomeworlds Online (SDG# 17485)\nStarted: 2010.10.6, Ended: 2012.2.27\nParticipants: medcatt (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 17630)\nVariants: "Hard time"\nStarted: 2010.10.6, Ended: 2010.10.11\nParticipants: dlwillson (S), AdamBadura (N)\nWinner: dlwillson\n\n1) AdamBadura: Homeworld B1 G3 R3\n\n2) dlwillson: H B2 Y1 G3\n\n3) AdamBadura: Build R1 Adambadura\n\tdlwillson: Have a good game!\n\n4) dlwillson: B G1 Dlwillson\n\n5) AdamBadura: Trade R1 G1 Adambadura\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) AdamBadura: Build G1 Adambadura\n\n8) dlwillson: B G1 Dlwillson\n\n9) AdamBadura: Trade G1 Y1 Adambadura\n\n10) dlwillson: T G1 Y1 Dlwillson\n\n11) AdamBadura: Build Y2 Adambadura\n\n12) dlwillson: B Y2 Dlwillson\n\n13) AdamBadura: Discover Y1 Adambadura G2 Shipyard\n\n14) dlwillson: D Y1 Dlwillson G3 Awk\n\n15) AdamBadura: Build G1 Adambadura\n\n16) dlwillson: D Y2 Dlwillson B3 Sed\n\n17) AdamBadura: Discover G1 Adambadura R2 Outpost\n\n18) dlwillson: B R1 Dlwillson\n\n19) AdamBadura: Build Y2 Adambadura\n\n20) dlwillson: B Y3 Awk\n\n21) AdamBadura: Build Y3 Shipyard\n\n22) dlwillson: M Y3 Awk Outpost\n\n23) AdamBadura: Sacrifice Y1 Shipyard\nDiscover G1 Outpost B3 Changer\n\n24) dlwillson: M R1 Dlwillson Changer\n\n25) AdamBadura: Sacrifice G1 Changer\nBuild G1 Adambadura\n\n26) dlwillson: B R1 Dlwillson\n\tdlwillson: Ha! Nice teleport. :-)\n\n27) AdamBadura: Build R2 Adambadura\n\n28) dlwillson: M R1 Dlwillson Awk\n\n29) AdamBadura: Move R2 Adambadura Shipyard\n\n30) dlwillson: B G1 Dlwillson\n\n31) AdamBadura: Sacrifice G1 Adambadura\nBuild R2 Adambadura\n\n32) dlwillson: S G3 Dlwillson\nB Y1 Outpost\nB Y3 Awk\nB R3 Dlwillson\n\n33) AdamBadura: Build R3 Shipyard\n\n34) dlwillson: T R3 G3 Dlwillson\n\n35) AdamBadura: Discover Y3 Shipyard R3 Watchtower\n\tdlwillson: \n\n36) dlwillson: M G1 Dlwillson Sed\n\n37) AdamBadura: Move Y2 Adambadura Shipyard\n\n38) dlwillson: S Y2 Sed\nM R1 Changer Shipyard\nM R1 Awk Shipyard\nC Shipyard R\n\n39) AdamBadura: Build Y2 Adambadura\n\n40) dlwillson: B G1 Dlwillson\n\n41) AdamBadura: Build G2 Adambadura\n\n42) dlwillson: S Y3 Outpost\nD G1 Dlwillson Y3 Grep\nM G1 Sed Outpost\nM G1 Outpost Adambadura\nC Adambadura G\n\n43) AdamBadura: Move R3 Adambadura Watchtower\n\n44) dlwillson: S G1 Grep\nB Y3 Outpost\n\n45) AdamBadura: Sacrifice Y2 Adambadura\nMove Y3 Watchtower Dlwillson\nMove R3 Watchtower Dlwillson\n\tAdamBadura: Its getting very exciting... ;)\n\n46) dlwillson: A R3 Dlwillson\n\n\tdlwillson: Typo... :-}\n\tAdamBadura: Hmmm... I expected that move and yet I must have make a mistake as now obviously it is worse than I hoped for... ;)\n\tdlwillson: With important games, when I'm not sure how the board will REALLY look, I get out the real pyramids and set it up. I wanted to do that this time, before I stepped into your trap, but I couldn't find an appropriate time without holding up the game. Any way... let's see what happens next.\n\tAdamBadura: Now I know why I have made the bad move. Somehow I got fixed on thining that to attack me in your system you will have to sacrifice that R1 ship. If you would than the game would have been mine I guess. But you didn't have to and my move was bad. On the other hand I think I would have lost anyway. Thanks for the game.\r\n\r\nWith the real pyramids you have to own them... ;) (But I hope I will finally buy them; what slows me down is that most of their games I play here...)\n\tdlwillson: Thanks for the game, Adam. You played well, even if I won.\n\nHomeworlds Online (SDG# 17628)\nVariants: "Hard time"\nStarted: 2010.10.7, Ended: 2010.10.21\nParticipants: Lurch (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) Lurch: Homeworld B1 Y3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Lurch: Build G1 Lurch\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Lurch: Trade G1 Y1 Lurch\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) Lurch: Build G1 Lurch\n\n9) agentofchaos: Trade Y1 R1 Agentofchaos\n\n\nHomeworlds Online (SDG# 17629)\nStarted: 2010.10.7, Ended: 2010.10.19\nParticipants: agentofchaos (S), rootbier (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 17337)\nVariants: "Hard time"\nStarted: 2010.10.10, Ended: 2010.11.9\nParticipants: random56 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) random56: Homeworld G2 B3 Y3\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: Have fun, Random!\n\n4) random56: Build Y1 Random56\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) random56: Discover Y1 Random56 G1 Bob\n\n7) dlwillson: B Y2 Dlwillson\n\n8) random56: Build Y2 Bob\n\n9) dlwillson: T Y1 R1 Dlwillson\n\n10) random56: Build Y1 Random56\n\n11) dlwillson: B G1 Dlwillson\n\n12) random56: Trade Y1 B1 Random56\n\n13) dlwillson: D Y2 Dlwillson G2 Gecko\n\n14) random56: Move B1 Random56 Bob\n\n15) dlwillson: M G1 Dlwillson Gecko\n\n16) random56: Trade Y2 R2 Bob\n\n17) dlwillson: D G1 Gecko B1 Bluebird\n\n18) random56: Build Y1 Random56\n\n19) dlwillson: B Y2 Gecko\n\n20) random56: Build Y2 Bob\n\n21) dlwillson: B G1 Dlwillson\n\tdlwillson: I can capture that r2 for free, with my g3. You probably want to do something else. Build a y2 maybe or trade into green.\n\tdlwillson: Or, build another red. But rushing me with an R2 when I have a large and red in the system, does seem to make sense at this point.\n\tdlwillson: It would make sense if you had a bunch more red, maybe. No... not even then, because if you did, I'd sac my R1 to attack your R2, even though I don't need to, in order to keep my red count low and avoid a potential catastrophe. You can't get anything good from this move right now. And maybe not ever.\n\n22) random56: Trade Y3 R3 Random56\n\n23) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB G3 Dlwillson\nB G3 Bluebird\n\n24) random56: Build R1 Random56\n\trandom56: thank you for the tip, I dont get to play in real life, and so it can be hard to stratigise some times\n\n25) dlwillson: T G3 Y3 Bluebird\n\tdlwillson: No problem. It's a serious game. Takes time to learn it.\n\n26) random56: Move R2 Bob Gecko\n\trandom56: bluebird........really, it is hard to play on line, i like to see everything at once and it is hard to scroll up and down to look at what i need to do, but bluebird thats like a slap in the face, but all in good fun. I am laughing\n\n27) dlwillson: S Y2 Gecko\nD G2 Dlwillson B2 Chameleon\nD Y2 Gecko B1 Mudskipper\n\tdlwillson: Try control mouse wheel down to zoom your browser out. That should let you see the whole board at 1 time. No insult meant by naming my system bluebird just funning. \n\n28) random56: Build B2 Bob\n\n29) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB G3 Chameleon\nBuild G3 Bluebird\n\n30) random56: Move B2 Bob Gecko\n\n31) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB Y2 Mudskipper\nB Y3 Bluebird\n\n32) random56: Build Y3 Bob\n\n33) dlwillson: S Y3 Bluebird\nM G3 Bluebird Random56\nM G3 Chameleon Bluebird\nM G3 Bluebird Random56\n\n\nHomeworlds Online (SDG# 17458)\nStarted: 2010.10.11, Ended: 2010.10.12\nParticipants: mathochist (S), goblin981 (N)\nWinner: mathochist\n\n1) goblin981: Homeworld B2 G3 Y3\n\n\nHomeworlds Online (SDG# 17084)\nVariants: "Hard time"\nStarted: 2010.10.11, Ended: 2010.10.15\nParticipants: SilentTitan (S), goblin981 (N)\nWinner: SilentTitan\n\n1) goblin981: Homeworld Y1 G2 B3\n\n2) SilentTitan: Homeworld G2 B3 Y3\n\n3) goblin981: Build B1 Goblin981\n\n4) SilentTitan: Build Y1 Silenttitan\n\n5) goblin981: Discover B1 Goblin981 R3 Hoth\n\n6) SilentTitan: Discover Y1 Silenttitan Y1 Garnv\n\n7) goblin981: Trade B1 R1 Hoth\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) goblin981: Build B1 Goblin981\n\n10) SilentTitan: Trade Y2 R2 Silenttitan\n\n11) goblin981: Build B1 Goblin981\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) goblin981: Discover B1 Goblin981 G3 Al'thor\n\n14) SilentTitan: Build Y2 Silenttitan\n\tSilentTitan: ok. so you are learning the game? yes? so I'd like to help you out and get you going here. at this point you need to take back the last move you made and pick a different move say discover a new system with your b1, because all I have to do on my turn would be to call for a catasrophe and all your blue is removed from your homeworld which is a wiin for me. You see anytime you have four of the same color in a system, either player can call for a catastrophe and all that color is put back into the bank. \n\n15) goblin981: Build B1 Al'thor\n\tgoblin981: thanks for the advice. Yes I am learning. Forgot about catastrophes.\n\n16) SilentTitan: Trade Y2 G2 Silenttitan\n\n17) goblin981: Build B2 Al'thor\n\n18) SilentTitan: Discover Y2 Silenttitan G1 Sigmacray\n\n19) goblin981: Trade B2 Y2 Al'thor\n\n20) SilentTitan: Build G1 Silenttitan\n\n21) goblin981: Trade Y2 R2 Al'thor\n\n22) SilentTitan: Build Y2 Silenttitan\n\n23) goblin981: Build B2 Al'thor\n\n24) SilentTitan: Build Y2 Sigmacray\n\n25) goblin981: Trade B3 Y3 Goblin981\n\n26) SilentTitan: Move Y2 Sigmacray Hoth\n\n27) goblin981: Build Y3 Goblin981\n\n28) SilentTitan: Move Y2 Hoth Goblin981\nCatastrophe Goblin981 Yellow\n\n29) goblin981: Trade B2 Y2 Al'thor\n\n30) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Sigmacray Hoth\nMove Y2 Hoth Goblin981\n\n31) goblin981: Build B2 Goblin981\n\n32) SilentTitan: Sacrifice R2 Silenttitan\nAttack B1 Goblin981 N\nAttack B2 Goblin981 N\n\n\nHomeworlds Online (SDG# 17484)\nStarted: 2010.10.11, Ended: 2010.10.24\nParticipants: Tank_7 (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) Tank_7: Homeworld B2 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Tank_7: Build G1 Tank_7\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Tank_7: Discover G1 Tank_7 B3 Meklon\n\n7) TwoShort: Build Y1 Twoshort\n\n8) Tank_7: Build G1 Meklon\n\n9) TwoShort: Build Y2 Twoshort\n\n10) Tank_7: Build G1 Tank_7\n\n11) TwoShort: Build G2 Twoshort\n\n12) Tank_7: Trade G3 Y3 Tank_7\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) Tank_7: Move Y3 Tank_7 Meklon\n\n15) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n16) Tank_7: Build G2 Tank_7\n\n17) TwoShort: Sacrifice Y2 Twoshort\nDiscover G2 Twoshort Y2 Yolonda\nDiscover Y2 Grogar G3 Greenland\n\n18) Tank_7: Trade G2 R2 Tank_7\n\n19) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Greenland\nBuild Y3 Greenland\n\n20) Tank_7: Build G2 Tank_7\n\n21) TwoShort: Trade Y3 R3 Twoshort\n\n22) Tank_7: Trade G2 R2 Tank_7\n\n23) TwoShort: Move Y3 Greenland Tank_7\n\n24) Tank_7: Move Y3 Meklon Tank_7\n\n25) TwoShort: Sacrifice R3 Twoshort\nAttack Y3 Tank_7\nAttack R2 Tank_7\nAttack R2 Tank_7\n\tTank_7: gg :)\n\n26) Tank_7: Build G2 Tank_7\n\tTwoShort: thanks for the game\n\n27) TwoShort: Sacrifice R2 Tank_7\nAttack G1 Tank_7\nAttack G2 Tank_7\n\n\nHomeworlds Online (SDG# 17673)\nVariants: "Hard time"\nStarted: 2010.10.12, Ended: 2010.10.12\nParticipants: goblin981 (S), SilentTitan (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 17670)\nVariants: "Hard time"\nStarted: 2010.10.12, Ended: 2010.10.17\nParticipants: dlwillson (S), goblin981 (N)\nWinner: dlwillson\n\n1) goblin981: Homeworld R1 B2 G3\n\n2) dlwillson: H R3 B1 G3\n\n3) goblin981: Build G1 Goblin981\n\n4) dlwillson: B G1 Dlwillson\n\n5) goblin981: Trade G1 Y1 Goblin981\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) goblin981: Discover Y1 Goblin981 Y3 Rygal-v\n\n8) dlwillson: B G1 Dlwillson\n\n9) goblin981: Build G1 Goblin981\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) goblin981: Trade G1 R1 Goblin981\n\n12) dlwillson: B B1 Dlwillson\n\n13) goblin981: Discover Y1 Rygal-v Y1 Barkor\n\n14) dlwillson: D B1 Dlwillson R2 Armor\n\tdlwillson: How many games have you played?\n\n15) goblin981: Build R1 Goblin981\n\n16) dlwillson: B B2 Dlwillson\n\n17) goblin981: Discover Y1 Barkor G3 Lyon\n\n18) dlwillson: D B1 Dlwillson R2 Shield\n\n19) goblin981: Trade R1 Y1 Goblin981\n\tdlwillson: You probably don't want to do that.\n\tgoblin981: you're right, thanks. \n\n20) dlwillson: B G1 Dlwillson\n\n21) goblin981: Move R1 Goblin981 Lyon\n\n22) dlwillson: B B2 Dlwillson\n\n23) goblin981: Build Y2 Lyon\n\n24) dlwillson: S G3 Dlwillson\nBuild B3 Armor\nB B3 Shield\nB B3 Shield\n\n25) goblin981: Build Y2 Goblin981\n\n26) dlwillson: S B2 Dlwillson\nT B3 G3 Shield\nT B3 Y3 Shield\n\n27) goblin981: Trade Y2 B2 Goblin981\n\n28) dlwillson: S G3 Shield\nB B3 Dlwillson\nB Y2 Dlwillson\nB B3 Shield\n\n29) goblin981: Move B2 Goblin981 Lyon\n\n30) dlwillson: S B2 Dlwillson\nT B3 G3 Dlwillson\nT B3 R3 Armor\n\n31) goblin981: Discover B2 Lyon B2 Kilzar\n\n32) dlwillson: M Y1 Dlwillson Armor\n\n33) goblin981: Trade B2 G2 Kilzar\n\n34) dlwillson: S G3 Dlwillson\nB Y2 Shield\nB Y3 Armor\nB Y3 Dlwillson\n\n35) goblin981: Move Y2 Lyon Kilzar\n\n36) dlwillson: S Y2 Shield\nD Y3 Shield R3 Sword\nM B3 Shield Sword\n\n37) goblin981: Sacrifice G2 Kilzar\nBuild Y2 Goblin981\nBuild G1 Goblin981\n\tgoblin981: how do you sacrifice? I can't get it to work.\n\tdlwillson: S ship system\r\nExample: s g3 dlwillson\r\nYou have to have the ship to sac, of course...\n\tgoblin981: hmm still can't get it. here's what i'm typing:\r\n\r\ns y2 lyon\r\nbuild r1 lyon\r\nbuild r2 lyon\n\tdlwillson: To get two builds, you have to sac a g2. If you sac a y2, you get two moves.\n\tgoblin981: oh ok, didn't realise it was that specific. Thanks. \n\n38) dlwillson: S Y2 Dlwillson\nM Y3 Sword Goblin981\nM B3 Sword Goblin981\n\n39) goblin981: Attack B3S Goblin981\n\tdlwillson: One way to win the game is to move in with 2 big ships when the other guy can only capture 1 at a time.\n\tgoblin981: which it looks like you're about to do.\n\n40) dlwillson: S R3 Armor\nA G3 Goblin981\nA B3 Goblin981\nA Y2 Goblin981\n\n41) goblin981: Build G1 Goblin981\n\n42) dlwillson: T Y3 R3 Goblin981\n\n43) goblin981: Build Y2 Goblin981\n\n44) dlwillson: B Y3 Goblin981\nC Goblin981 Y\n\n45) goblin981: Trade G1 Y1 Goblin981\n\n46) dlwillson: S R3 Goblin981\nA Y1 Goblin981\nA G1 Goblin981\nPass\n\n\tdlwillson: Good game. Challenge me to an unrated game and I'll teach you what I know.\n\nHomeworlds Online (SDG# 17675)\nStarted: 2010.10.12, Ended: 2010.11.4\nParticipants: TwoShort (S), shmil1 (N)\nWinner: TwoShort\n\n1) shmil1: Homeworld B3 G2 Y3\n\n2) TwoShort: Homeworld R1 B2 G3\n\tTwoShort: Howdy\n\n3) shmil1: Build Y1 Shmil1\n\n4) TwoShort: Build G1 Twoshort\n\n5) shmil1: Build Y1 Shmil1\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) shmil1: Trade Y1 G1 Shmil1\n\n8) TwoShort: Build G1 Twoshort\n\n9) shmil1: Trade Y1 B1 Shmil1\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n11) shmil1: Build B1 Shmil1\n\n12) TwoShort: Build G1 Twoshort\n\n13) shmil1: Trade B1 R1 Shmil1\n\n14) TwoShort: Build G2 Yolonda\n\n15) shmil1: Build G2 Shmil1\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\n\n17) shmil1: Discover G1 Shmil1 Y1 Slunce\n\n18) TwoShort: Discover G2 Yolonda B2 Borbor\n\n19) shmil1: Move G1 Slunce Yolonda\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Borbor\nBuild Y1 Twoshort\nPass\n\n21) shmil1: Discover B1 Shmil1 Y1 Slunce2\n\n22) TwoShort: Discover Y1 Twoshort B3 Bozon\n\n23) shmil1: Move B1 Slunce2 Yolonda\n\n24) TwoShort: Trade G2 R2 Borbor\n\n25) shmil1: Build G2 Yolonda\nCatastrophe Yolonda Green\n\n26) TwoShort: Build G1 Borbor\n\n\nHomeworlds Online (SDG# 17687)\nStarted: 2010.10.12, Ended: 2010.10.15\nParticipants: TwoShort (S), goblin981 (N)\nWinner: TwoShort\n\n1) goblin981: Homeworld G1 B2 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) goblin981: Build Y1 Goblin981\n\n4) TwoShort: Build G1 Twoshort\n\n5) goblin981: Trade Y1 G1 Goblin981\n\n6) TwoShort: Build G2 Twoshort\n\n7) goblin981: Build G2 Goblin981\n\n8) TwoShort: Trade G2 Y2 Twoshort\n\n9) goblin981: Trade G2 R2 Goblin981\n\n10) TwoShort: Build G2 Twoshort\n\n11) goblin981: Build R1 Goblin981\n\n12) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n13) goblin981: Discover R2 Goblin981 Y3 Pxiii\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G2 Bluestar\nBuild G3 Twoshort\n\n15) goblin981: Move G1 Goblin981 Pxiii\n\n16) TwoShort: Trade G2 R2 Bluestar\n\n17) goblin981: Build Y1 Goblin981\n\n18) TwoShort: Trade G2 Y2 Bluestar\n\n19) goblin981: Discover G1 Pxiii R1 Reddy\n\n20) TwoShort: Build G2 Bluestar\n\tTwoShort: I can just capture that; if you want to take an undo... In any case, I've been enjoying the quick game, but now I'm headed to lunch...\n\tgoblin981: you're right, that was a bad move.\r\nI'm headed out for food too. Back in an hour or so.\r\n\r\n\n\n21) goblin981: Move R2 Pxiii Reddy\n\n22) TwoShort: Discover G2 Bluestar G3 Greedy\n\n23) goblin981: Build R2 Reddy\n\n24) TwoShort: Move R2 Bluestar Reddy\nCatastrophe Reddy Red\n\n25) goblin981: Build R1 Goblin981\n\n26) TwoShort: Build G1 Bluestar\n\n27) goblin981: Build R2 Goblin981\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Greedy\nBuild G3 Twoshort\n\n29) goblin981: Move R2 Goblin981 Greedy\n\n30) TwoShort: Trade G2 R2 Bluestar\n\n31) goblin981: Attack G2S Greedy\n\n32) TwoShort: Sacrifice R2 Bluestar\nAttack R2 Greedy\nAttack G2 Greedy\n\n33) goblin981: Build R2 Goblin981\n\n34) TwoShort: Sacrifice Y2 Bluestar\nMove R2 Greedy Goblin981\nMove G2 Greedy Goblin981\nCatastrophe Goblin981 Red\n\n35) goblin981: Move Y3 Goblin981 Greedy\n\n36) TwoShort: Trade G2 R2 Twoshort\n\n37) goblin981: Move Y3 Greedy Bluestar\n\n38) TwoShort: Sacrifice R2 Twoshort\nAttack Y1 Goblin981\nPass\n\n\nHomeworlds Online (SDG# 17688)\nStarted: 2010.10.12, Ended: 2010.10.16\nParticipants: dethdukk (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld B2 R1 G3\n\n\nHomeworlds Online (SDG# 17641)\nVariants: "Hard time"\nStarted: 2010.10.12, Ended: 2010.10.15\nParticipants: daselva (S), Lurch (N)\nWinner: daselva\n\n\nHomeworlds Online (SDG# 17692)\nVariants: "Hard time"\nStarted: 2010.10.13, Ended: 2010.10.13\nParticipants: AdamBadura (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 G2 B3\n\n2) AdamBadura: Homeworld B2 G3 R3\n\n3) mneme: Build B1 Mneme\n\n4) AdamBadura: Build R1 Adambadura\n\n5) mneme: Build B1 Mneme\n\n6) AdamBadura: Trade R1 B1 Adambadura\n\n7) mneme: Trade B3 Y3 Mneme\n\n8) AdamBadura: Build B2 Adambadura\n\n9) mneme: Sacrifice Y3 Mneme\nDiscover B1 Mneme G3 Its\nDiscover B1 Its Y1 Atrap\nMove B1 Atrap Adambadura\nCatastrophe Adambadura B\n\n\tmneme: Good game.\r\n\n\tAdamBadura: That was something I didn't expect. Sure I knew you could do that but I though that sacrificing 3-ship in early game is to much to make it worth. Somehow I skipped asking myself how would the board look like after that move.\r\n\r\nYou humiliated me. But I deserved that. Thanks for the lesson!\n\tmneme: You're welcome! I think, in a sense, everyone needs to get hit with this sort of "fool's mate" at some point in order to remember to make sure you never leave yourself in a position where you can be denied both yellow and blue. I think I've been hit with it once and executed it twice. Hopefully, the next game we play will be more interesting; I think you had a good position before you made the mistake of swapping to blue!\n\nHomeworlds Online (SDG# 17697)\nVariants: "Hard time"\nStarted: 2010.10.14, Ended: 2010.10.20\nParticipants: TwoShort (S), AdamBadura (N)\nWinner: TwoShort\n\n1) AdamBadura: Homeworld G3 B1 R3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\n3) AdamBadura: Build R1 Adambadura\n\n4) TwoShort: Build B1 Twoshort\n\n5) AdamBadura: Trade R3 B3 Adambadura\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) AdamBadura: Build B2 Adambadura\n\n8) TwoShort: Build B2 Twoshort\n\n9) AdamBadura: Trade B3 Y3 Adambadura\n\n10) TwoShort: Trade B2 G2 Twoshort\n\n11) AdamBadura: Discover B2 Adambadura G2 Drydocks\n\n12) TwoShort: Build B2 Twoshort\n\n13) AdamBadura: Build B2 Drydocks\n\n14) TwoShort: Discover B1 Twoshort Y3 Yolonda\n\n15) AdamBadura: Trade B2 Y2 Drydocks\n\n16) TwoShort: Move G2 Twoshort Yolonda\n\n17) AdamBadura: Build R1 Adambadura\n\n18) TwoShort: Trade B2 R2 Twoshort\n\n19) AdamBadura: Move R1 Adambadura Drydocks\n\n20) TwoShort: Build B2 Yolonda\n\n21) AdamBadura: Build B2 Drydocks\n\n22) TwoShort: Discover B2 Yolonda Y2 Yelly\n\n23) AdamBadura: Trade B2 Y2 Drydocks\n\n24) TwoShort: Build G1 Yolonda\n\n25) AdamBadura: Build R1 Adambadura\n\n26) TwoShort: Move G1 Yolonda Yelly\n\n27) AdamBadura: Build R2 Adambadura\n\n28) TwoShort: Build G1 Yelly\n\n29) AdamBadura: Move R2 Adambadura Yelly\n\n30) TwoShort: Sacrifice R2 Twoshort\nAttack R2 Yelly\nPass\n\n31) AdamBadura: Discover Y2 Drydocks G3 Shipyard\n\n32) TwoShort: Build G1 Yolonda\n\n33) AdamBadura: Discover Y2 Drydocks G3 Watchtower\n\n34) TwoShort: Sacrifice G2 Yolonda\nBuild B2 Yelly\nBuild B3 Yolonda\n\n35) AdamBadura: Build B3 Drydocks\n\n36) TwoShort: Move B3 Yolonda Twoshort\n\n37) AdamBadura: Trade B2 G2 Drydocks\n\n38) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yelly Yolonda\nMove G1 Yolonda Drydocks\nMove G1 Yolonda Drydocks\nCatastrophe Drydocks Green\n\n39) AdamBadura: Discover R1 Adambadura G2 Betterplace\n\n40) TwoShort: Build B2 Twoshort\n\n41) AdamBadura: Build R1 Adambadura\n\n42) TwoShort: Build B3 Yelly\n\n43) AdamBadura: Build R2 Betterplace\n\n44) TwoShort: Sacrifice G1 Yelly\nBuild B3 Yolonda\n\n45) AdamBadura: Build Y1 Adambadura\n\n46) TwoShort: Sacrifice B2 Yelly\nTrade B2 G2 Yelly\nTrade B3 Y3 Twoshort\n\n47) AdamBadura: Move Y1 Adambadura Betterplace\n\n48) TwoShort: Build G1 Yelly\n\n49) AdamBadura: Trade R1 G1 Adambadura\n\n50) TwoShort: Move G1 Yelly Adambadura\n\n51) AdamBadura: Move G1 Adambadura Betterplace\n\n52) TwoShort: Sacrifice G2 Yelly\nBuild G1 Adambadura\nBuild G2 Adambadura\nCatastrophe Adambadura Green\n\n\tAdamBadura: You are beyond my reach... ;)\n\nHomeworlds Online (SDG# 17685)\nVariants: "Hard time"\nStarted: 2010.10.15, Ended: 2010.10.18\nParticipants: goblin981 (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld G1 B2 R3\n\n2) goblin981: Homeworld B2 G3 R3\n\n3) shmil1: Build R1 Shmil1\n\n4) goblin981: Build R1 Goblin981\n\n5) shmil1: Trade R1 Y1 Shmil1\n\n6) goblin981: Trade R1 Y1 Goblin981\n\n7) shmil1: Build R1 Shmil1\n\n8) goblin981: Build Y1 Goblin981\n\n9) shmil1: Build Y2 Shmil1\n\n10) goblin981: Discover Y1 Goblin981 B1 Protar-vi\n\n11) shmil1: Build Y2 Shmil1\n\n12) goblin981: Build Y2 Goblin981\n\n13) shmil1: Discover Y2 Shmil1 G3 Zelena\n\n14) goblin981: Build Y3 Goblin981\n\n15) shmil1: Sacrifice Y2 Shmil1\nMove Y2 Zelena Protar-vi\nMove Y2 Protar-vi Goblin981\nCatastrophe Goblin981 Yellow\n\n16) goblin981: Build R1 Goblin981\n\n17) shmil1: Discover R1 Shmil1 Y3 Zluta\n\n18) goblin981: Trade R3 G3 Goblin981\n\n19) shmil1: Move R1 Zluta Protar-vi\n\n20) goblin981: Trade R1 Y1 Goblin981\n\tshmil1: ovladnout protar vi\n\n21) shmil1: Attack Y1 Protar-vi\n\n22) goblin981: Move G3 Goblin981 Protar-vi\n\n23) shmil1: Move R1 Protar-vi Goblin981\n\n24) goblin981: Build Y2 Goblin981\n\n25) shmil1: Attack Y1 Goblin981\n\n26) goblin981: Trade Y2 R2 Goblin981\n\n27) shmil1: Build R1 Goblin981\n\n28) goblin981: Attack R1N Goblin981\n\n29) shmil1: Build R1 Goblin981\nCatastrophe Goblin981 Red\n\tshmil1: nice game :)\n\n\nHomeworlds Online (SDG# 17714)\nVariants: "Hard time"\nStarted: 2010.10.15, Ended: 2010.11.22\nParticipants: fnord (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) fnord: Homeworld Y2 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tfnord: *waves to the assembled audience*\n\n4) fnord: Build G1 Fnord\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) fnord: Discover G1 Fnord G3 Eris\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) fnord: Build G1 Fnord\n\n9) SilentTitan: Trade G3 Y3 Silenttitan\n\n10) fnord: Trade G1 B1 Fnord\n\n11) SilentTitan: Discover Y1 Silenttitan Y1 Onestar\n\n12) fnord: Build B1 Fnord\n\n13) SilentTitan: Build Y1 Silenttitan\n\n14) fnord: Move B1 Fnord Eris\n\n15) SilentTitan: Build Y2 Silenttitan\n\n16) fnord: Build B2 Eris\n\n17) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Onestar\n\n18) fnord: Trade B2 R2 Eris\n\n19) SilentTitan: Discover Y2 Onestar G2 Twostar\n\n20) fnord: Build B2 Fnord\n\n21) SilentTitan: Trade Y3 G3 Silenttitan\n\n22) fnord: Trade B2 G2 Fnord\n\n23) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Twostar\nBuild Y3 Onestar\nBuild Y3 Silenttitan\n\n24) fnord: Build G1 Eris\n\n25) SilentTitan: Discover Y2 Twostar R3 Tristar\n\n26) fnord: Move G3 Fnord Tristar\n\n27) SilentTitan: Discover Y2 Tristar R2 Ragestar\n\n28) fnord: Build G1 Tristar\n\n29) SilentTitan: Trade Y3 R3 Silenttitan\n\n30) fnord: Sacrifice G3 Tristar\nBuild G2 Tristar\nBuild G3 Tristar\nBuild G3 Fnord\n\n31) SilentTitan: Build Y3 Twostar\n\n32) fnord: Build B2 Fnord\n\n33) SilentTitan: Move Y3 Twostar Eris\n\n34) fnord: Build B2 Eris\n\n35) SilentTitan: Discover Y3 Onestar R3 Volcanoshore\n\n36) fnord: Discover B1 Fnord B3 Discordia\n\n37) SilentTitan: Move Y3 Eris Fnord\n\n38) fnord: Build B2 Fnord\n\n39) SilentTitan: Trade Y3 B3 Fnord\nCatastrophe Fnord Blue\n\n40) fnord: Discover G2 Fnord Y3 Sink\n\n41) SilentTitan: Sacrifice Y3 Twostar\nMove Y3 Volcanoshore Fnord\nMove Y1 Onestar Eris\nMove Y1 Eris Fnord\n\n42) fnord: Trade B1 Y1 Eris\n\n43) SilentTitan: Sacrifice R3 Silenttitan\nAttack G3 Fnord South\nPass\nPass\n\n\tfnord: Thought you might do that, but was wondering why you didn't do it in the previous turn.\r\n\r\nWell done, I certainly must learn to watch out for being monopolized out of any technology, especially travel. That was quite brutal.\n\tSilentTitan: I don't believe I could get three yellow in there last turn.... I learned that trick from TooShort. he beat me the exact same way\n\nHomeworlds Online (SDG# 17719)\nVariants: "Unrated"\nStarted: 2010.10.16, Ended: 2010.10.20\nParticipants: sompm (S), Gidaio (N)\nWinner: Gidaio\n\n1) Gidaio: Homeworld Y3 G1 B3\n\n2) sompm: Homeworld G3 Y2 B3\n\n3) Gidaio: Build B1 Gidaio (n)\n\n4) sompm: Build B1 Sompm\n\n5) Gidaio: Build B1 Gidaio (n)\n\n6) sompm: Build B2 Sompm\n\n7) Gidaio: Discover B1 Gidaio G2 Pachinko\n\n8) sompm: Discover B2 Sompm Y1 Fakaar\n\n9) Gidaio: Build B2 Pachinko\n\n10) sompm: Trade B2 G2 Fakaar\n\n11) Gidaio: Trade B1 Y1 Pachinko\n\n12) sompm: Build B1 Sompm\n\n13) Gidaio: Trade B2 R2 Pachinko\n\n14) sompm: Trade B1 R1 Sompm\n\n15) Gidaio: Move R2 Pachinko Fakaar\n\n16) sompm: Discover G2 Fakaar Y2 Runningrunning\n\n17) Gidaio: Build Y1 Pachinko\n\n18) sompm: Build B1 Sompm\n\n19) Gidaio: Build Y2 Pachinko\n\n20) sompm: Build R1 Sompm\n\n21) Gidaio: Move Y2 Pachinko Fakaar\n\n22) sompm: Trade B3 Y3 Sompm\n\n23) Gidaio: Build Y3 Pachinko\n\n24) sompm: Build B2 Sompm\n\n25) Gidaio: Sacrifice Y3 Pachinko\nMove B1 Gidaio Pachinko\nMove B1 Pachinko Fakaar\nMove B1 Fakaar Sompm\nCatastrophe Sompm Blue\n\n26) sompm: Build Y3 Sompm\n\n27) Gidaio: Move Y2 Fakaar Sompm\nCatastrophe Sompm Yellow\n\n28) sompm: Discover G2 Runningrunning B1 Youjerk\n\tGidaio: Ha! Take THAT!\n\n29) Gidaio: Move R2 Fakaar Sompm\n\n30) sompm: Build G1 Youjerk\n\tGidaio: In other words, lol.\n\tsompm: except now it won't happen again. dork.\n\tsompm: Woah. Hi. There you are.\n\n31) Gidaio: Attack R1 Sompm\n\n32) sompm: Build R1 Sompm\nCatastrophe Sompm R\n\tGidaio: Haha!\n\tsompm: good game. Seriously, how the frick did that happen?\n\n\tsompm: I can't beat me, I QUIT.\n\tGidaio: ...Nice?\n\nHomeworlds Online (SDG# 17709)\nStarted: 2010.10.17, Ended: 2010.10.21\nParticipants: TwoShort (S), goblin981 (N)\nWinner: TwoShort\n\n1) goblin981: Homeworld R1 G2 B3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) goblin981: Build B1 Goblin981\n\n4) TwoShort: Build G1 Twoshort\n\n5) goblin981: Build B1 Goblin981\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) goblin981: Trade B1 Y1 Goblin981\n\n8) TwoShort: Build G1 Twoshort\n\n9) goblin981: Discover B1 Goblin981 G3 Egg\n\n10) TwoShort: Build G1 Twoshort\n\n11) goblin981: Trade B1 G1 Egg\n\n12) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n13) goblin981: Build Y1 Goblin981\n\n14) TwoShort: Build G2 Bluestar\n\n15) goblin981: Discover Y1 Goblin981 B3 Blutak\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Twoshort\nBuild G3 Twoshort\n\n17) goblin981: Discover Y1 Blutak Y2 Dark\n\n18) TwoShort: Trade G2 Y2 Bluestar\n\n19) goblin981: Build Y2 Goblin981\n\n20) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Bluestar\nBuild Y3 Bluestar\n\n21) goblin981: Sacrifice Y2 Goblin981\nMove Y1 Goblin981 Egg\nM Y1 Egg Bluestar\nC Bluestar Y\n\n22) TwoShort: Move Y3 Twoshort Bluestar\n\n23) goblin981: Build G2 Egg\n\n24) TwoShort: Discover G2 Bluestar B3 Bonanza\n\n25) goblin981: Move Y1 Dark Egg\n\n26) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Bonanza\nBuild Y1 Bluestar\n\n27) goblin981: Build Y2 Egg\n\n28) TwoShort: Trade G2 R2 Bonanza\n\n29) goblin981: Discover G2 Egg Y2 Sheep\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild G2 Bluestar\nBuild G3 Bonanza\n\n31) goblin981: Sacrifice G2 Sheep\nBuild B1 Goblin981\nBuild B1 Goblin981\n\n32) TwoShort: Trade G3 B3 Bonanza\n\n33) goblin981: Trade B3 Y3 Goblin981\n\n34) TwoShort: Sacrifice Y2 Twoshort\nMove G3 Bonanza Goblin981\nMove B3 Bonanza Goblin981\n\n35) goblin981: Attack G3 Goblin981\n\n36) TwoShort: Sacrifice R2 Bonanza\nAttack G3 Goblin981\nAttack Y3 Goblin981\n\n37) goblin981: Build Y2 Egg\n\n38) TwoShort: Build B2 Goblin981\nCatastrophe Goblin981 Blue\n\n\nHomeworlds Online (SDG# 17722)\nVariants: "Unrated"\nStarted: 2010.10.17, Ended: 2010.10.20\nParticipants: goblin981 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) goblin981: Homeworld G3 B2 Y3\n\tdlwillson: I have first turn. This is my favorite starting position. Now, you choose from banker, fortress, or goldilocks for a tiny universe.\n\tgoblin981: what does each involve?\r\nbtw thanks for teaching me.\n\tdlwillson: The g3 is a staple. Blue is pretty desirable in nearly every strategy, leaving you to choose between red and yellow. Each has advantages and disadvantages. \n\n3) dlwillson: Build G1 Dlwillson\n\tdlwillson: Banker connects to 3's. Fortress to1's. Goldie to 2's. Try to find the Homeworlds strategy page. If you can't find it, let me know and I'll send you a link.\n\tdlwillson: That works, though usually, the g3 is taken as a ship. Want to take it back or forge ahead? You have a decent shot at a TwoShort, a yellow lockout, which is a flat game-winner, played right.\n\tdlwillson: It goes like this. G1 for me. Y1 for you. If I don't trade to y1, you build it, and I'm locked out of yellow ships. If I do trade, you get to build a y2.\n\tgoblin981: I'll stick with this, (and possibly find out by it's not the best start)\r\nI found the strategy page and am reading.\r\nWhat's TwoShort and yellow lockout?\n\tdlwillson: Taking a Y3 is a fine choice. The thing you don't get, is the potential to do 3 builds in one turn by sacrificing the G3. It's not a big deal in every game, and not in most games against vets, because they watch for it.\n\tdlwillson: TwoShort is the top guy on the ladder right now.\r\nI am taking some liberty by calling a yellow lockout a TwoShort, but not much. In many, many games, TwoShort goes straight for yellow denial. And if he gets it, he'll then tell you how many moves until he wins. That's how good he's gotten at playing that strategy.\n\tdlwillson: It's a pretty simple strategy, really. If you don't have enough yellow to reach me, it really doesn't matter what you do have. All I have to do is force-feed you the colors of your planets until they pop, and keep you from getting any yellow. It can be a long process.\n\tdlwillson: OK, the non-thinking round. We each build a small of our chosen ship type. I've never seen a time when turn 2 is anything else.\n\n4) goblin981: Build Y1 Goblin981\n\n5) dlwillson: Build G1 Dlwillson\n\tgoblin981: I understand banker but why are fortress and goldilocks called that?\n\tdlwillson: And lots of thinking this round. You have a Y3, which makes me cautious. You can cross the universe in one turn. I can't. I can build three in one turn. You can't. What I'm planning right now, is how to beat you to larges, lock you out of a color, not get locked out of any colors, and advance on you, all at the same time.\n\tdlwillson: So, I'll build another green, because you don't have green, and I have enough yellow to spread my green out and setup for the triple build that will carry me to a second battleship before you get one.\n\tdlwillson: Also, it'd be nice to have red, but I'll let you lead on that. I'll have lots of spare ships after this. I just hope you don't go red when I DON'T have spares.\n\n6) goblin981: Build Y1 Goblin981\n\tdlwillson: If you had a green, that would've been suicide, but your two away from a toss-able green. One move to trade to green. One move to make a third ship. By then, this opportunity to RPG (rocket-propelled green) will be over.\n\tgoblin981: hmm, as I see it, I can lock you out of yellow or prevent you from locking me out of green.\r\nWhat do you suggest?\r\n\r\n\n\tdlwillson: Oh, sorry, I meant to coach you on your turn, but I got busy...\r\n\r\nYou should absolutely go for yellow denial this turn. If we both get our locks, you win the game in the long term.\n\tgoblin981: great, thanks. \n\n7) dlwillson: Discover G1 Dlwillson Y2 Slick\n\tdlwillson: So, now I'm spreading out my greens. Remember, my goal is to triple build. I'll go to a Y2, not intending to stay long.\n\n8) goblin981: Discover Y1 Goblin981 G1 Green\n\tdlwillson: Fine for you, I stood up a Y2. If I keep it, your that much closer to your second battleship. If I don't, you look at your yellow denial strategy again.\n\tdlwillson: You must trade or split up your yellows. Trade Y3 to G3? Maybe. Send out a Y1, and keep building slow... Maybe. The G3 forces the split next turn. The split now, allows the trade next turn, or continued slow building. So, exploring seems better. But, what to discover?\n\tdlwillson: If you discover a G1, you can build more Y at it right away. OOPS! Part of my strategy is cramping your style there. Trading into sac'able G sometime in the future looks that much better.\n\tdlwillson: Discovering an R1 lets you capture an inbound small, but that's all, and the inbound ships won't always be small, and then the red planet becomes a liability.\n\tdlwillson: Discovering a Y1 would clear some stuph out of your way for your second battleship, but there are no Y1's left... And, you should be starting to see why it's called "Fortress". The satellite system options get limited fast.\n\tdlwillson: Discovering a Blue gives you the ability to trade later. Your intent is to build lots of yellow ships, so there's a good chance you'll have two yellows at this first planet sometime soon, and having the option to trade one to another color (maybe green, maybe red) would be nice then. Since you're yellow, you'll also have the option to split when you get to two. Your next planet should probably be blue.\n\tdlwillson: After all that analysis, you need to make sure you're not giving me something by standing up a blue. Are you? No. I don't have any blue, and there're plenty of small blues in the bank, anyway. I don't have a gun, and if I move in on you, you can go for yours before I go for mine.\n\tdlwillson: Holy carp. We should print this, it's turning into a strategy guide...\n\n9) dlwillson: Build G2 Slick\n\tdlwillson: Oops. Looks like I missed a G1 in my analysis. However, standing up the green, rather than a blue, definitely gives me something. I can build a g2 now, and it's a no-brainer to do so at the forward system.\n\n10) goblin981: Build Y2 Green\n\tdlwillson: Lots to think about. I'll be back in a couple hours. Y2 looks good to you, no matter what, but what then, and keep watching for the guns to come out. (red ships)\n\n11) dlwillson: D G2 Slick B1 Sticky\n\n12) goblin981: Trade Y3 G3 Goblin981\n\n13) dlwillson: S G3 Dlwillson\nB G2 Sticky\nB G2 Slick\nB G3 Dlwillson\n\tdlwillson: I'm back on my phone. It's harder to type here. On my next turn I'll be making 3 greens. Your goal is to keep me from trading any of them for yellow.\n\tdlwillson: What if you trade Y3 for G3 this turn?\n\n14) goblin981: Sacrifice G3 Goblin981\nBuild Y2 Goblin981\nBuild Y3 Goblin981\nBuild Y3 Green\n\n15) dlwillson: Build G3 Sticky\n\tdlwillson: That was as planned. Now, you can free build a Y2, or sac the G3 to build a Y2 and two of the Y3's.\n\tdlwillson: Either one is safe from catastrophe for now. Both keep me out of Y, unless I trade my large. \n\tdlwillson: Hmmm.... sac'ing the g gets you the first second large, but I'll build the g3 and have two, too.\n\tdlwillson: I think sac the g3 is the better plan. You should be able to keep yellow control, if I free-build it.\n\tdlwillson: When distributing your builds, if all other things are equal setup three different sizes in a system where you can trade, to maximize your options.\n\tdlwillson: Similarly, when you are trying to control access to a color, but you need to trade, look at what your opponent has available to trade, and offer him a size that he doesn't have, or won't want to give up.\n\n16) goblin981: Trade Y1 R1 Goblin981\n\n17) dlwillson: T G1 R1 Dlwillson\n\tdlwillson: I want to swap into that last Y3, but not in my homeworld, because I have a yellow star, and adding yellow to my homeworld would make it easier for you to cause a catastrophe there.\n\tdlwillson: You probably want to consider the fact that neither of us has red right now, so for Y2, Y1, G2, you could kill off one of my stars.\n\tdlwillson: Or, you can try to preserve your yellow near-monopoly.\r\nOr, you can get a gun (red ship) and start pushing me around, if I don't get one, too.\n\tdlwillson: I have to think about your move. You don't have a monopoly on yellow, but you can beat me to the Y3, by discovering a Y3 star. But the Y3 star wouldn't do you any immediate good.\n\tdlwillson: You can kill my slick system the same way, too.\r\nYou have lots of possibilities, but nothing stands out as the best one. I'll think a bit and come back, unless you have a great idea.\n\n18) goblin981: Move Y3 Green Slick\n\tdlwillson: I really want a yellow ship, but I can't ignore the gun rule.\n\n19) dlwillson: T G3 Y3 Sticky\n\tgoblin981: gun rule?\n\n20) goblin981: Sacrifice R1 Goblin981\nAttack G1 Slick\n\tgoblin981: if I move a red ship into your system, such as sticky, can you attack me? or is the tech only mine?\n\tdlwillson: When the other guy goes for his gun (first red ship), go for yours, or get ready to get shot down.\n\tdlwillson: If you move your r1 to sticky, I can capture it, but only by sacrificing my r1 to get an attack anywhere.\n\tdlwillson: Your Y3 at slick is relatively safe, because even if I shoot my gun, it's too big for any of my slick ships to attack.\n\n21) dlwillson: T G2 B2 Sticky\n\tdlwillson: I'm betting it was a bluff, and you're not really willing to give up your last red for my G2.\n\tdlwillson: Now that I've got big yellow, you have a threat to consider. If I sac the y3, I can put both greens in your home system at once.\n\tdlwillson: You can answer the threat by getting an r2 that you could sacrifice to capture both greens. Or, you can bet I'm not willing to give all that ship up to destroy one star.\n\tdlwillson: But wait! Even if you trade the y2 for an r2, I can still cat the star. Can you see how?\n\tdlwillson: So, after lots of thinking, I don't think you can save the green star. I think we'll look at making it expensive and creating a game-winning counter-attack.\n\n22) goblin981: Trade Y2 R2 Goblin981\n\n23) dlwillson: D G2 Slick Y1 Slippery\n\tgoblin981: damn, should've taken the g2, I thought it was mine.\n\tdlwillson: Yes, and spending your last red to do it shows a surprising lack of foresight. Oh well. \n\n24) goblin981: Move R2 Goblin981 Slippery\n\n25) dlwillson: M G2 Slippery Goblin981\n\n26) goblin981: Build Y2 Goblin981\n\n27) dlwillson: B G1 Goblin981\n\n28) goblin981: Trade Y2 R2 Goblin981\n\n29) dlwillson: B B1 Sticky\n\n30) goblin981: Attack G2N Goblin981\n\n31) dlwillson: M B1 Sticky Goblin981\n\n32) goblin981: Move R2 Slippery Slick\n\n33) dlwillson: S G3 Dlwillson\nB G2 Goblin981\nB B1 Goblin981\nB B2 Goblin981\nC Goblin981 G\nC Goblin981 B\n\n\tdlwillson: That was definitely the fieriest ending I've ever seen! Wow!\n\tgoblin981: lol damn, blew em both up.\r\ngood game, and thanks for the tips.\n\nHomeworlds Online (SDG# 17642)\nStarted: 2010.10.17, Ended: 2010.10.23\nParticipants: rootbier (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld Y3 B2 G3\n\n\nHomeworlds Online (SDG# 17702)\nStarted: 2010.10.17, Ended: 2010.10.23\nParticipants: mathochist (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y1 G3\n\n\nHomeworlds Online (SDG# 17683)\nVariants: "Hard time"\nStarted: 2010.10.18, Ended: 2010.11.14\nParticipants: daselva (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\tdlwillson: Hi Daselva! Is this a teaching game or do you know the ropes already?\n\n2) daselva: Homeworld R1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) daselva: Build G1 Daselva\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\tdlwillson: Is this a teaching game or do you know the ropes already?\n\tdaselva: hello dlwilson I know how to play homeworlds but I'm still a new beginner\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) dlwillson: B R1 Dlwillson\n\n8) daselva: Build Y1 Daselva\n\n9) dlwillson: B R2 Dlwillson\n\n10) daselva: Build Y2 Daselva\n\n11) dlwillson: T R2 Y2 Dlwillson\n\n12) daselva: Discover Y1 Daselva G3 S1\n\n13) dlwillson: B R2 Dlwillson\n\n14) daselva: Sacrifice G3 Daselva\nBuild Y2 S1\nBuild Y3 S1\nBuild Y3 Daselva\n\tdlwillson: You're beating me out of the gate. Good job!\n\n15) dlwillson: D Y2 Dlwillson G2 Frog\n\n16) daselva: Discover Y2 S1 R2 S2\n\n17) dlwillson: B Y3 Frog\n\n18) daselva: Trade Y3 G3 Daselva\n\n19) dlwillson: D Y3 Frog R3 Salamander\n\n20) daselva: Trade Y2 R2 Daselva\n\n21) dlwillson: M R1 Dlwillson Frog\n\n22) daselva: Move R2 Daselva S1\n\n23) dlwillson: B R3 Frog\n\n24) daselva: Build R3 S1\n\n25) dlwillson: T R2 G2 Dlwillson\n\n26) daselva: Discover Y3 S1 R2 S3\n\n27) dlwillson: S G2 Dlwillson\nB Y2 Salamander\nB Y3 Frog\n\n28) daselva: Build G1 Daselva\n\n29) dlwillson: B G1 Dlwillson\n\n30) daselva: Trade G1 B1 Daselva\n\n31) dlwillson: D R1 Frog B3 Purple\n\n32) daselva: Build B1 Daselva\n\n33) dlwillson: M R3 Frog Purple\n\n34) daselva: Move B1 Daselva S1\n\n35) dlwillson: Trade R1 G1 Purple\n\n36) daselva: Move R3 S1 Frog\n\n37) dlwillson: S R1 Dlwillson\nA R3 Frog\n\n38) daselva: Move R2 S1 S3\n\n39) dlwillson: M Y2 Frog Purple\n\n40) daselva: Move Y3 S3 Dlwillson\n\n41) dlwillson: S R3 Frog\nA Y3 Dlwillson\nPass\nPass\n\n42) daselva: Build B1 S1\n\n43) dlwillson: B R1 Purple\n\n44) daselva: Build B2 Daselva\n\n45) dlwillson: M R3 Purple S3\n\n46) daselva: Sacrifice Y1 Daselva\nMove R2 S3 S1\n\n47) dlwillson: Move Y3 Frog S1\n\n48) daselva: Sacrifice Y1 S1\nMove R2 S1 Daselva\n\n49) dlwillson: S Y3 Dlwillson\nM R1 Purple Daselva\nM R3 S3 Purple\nM R3 Purple Daselva\nC Daselva R\n\n50) daselva: Trade B2 R2 Daselva\n\n51) dlwillson: T Y2 R2 Purple\n\n52) daselva: Trade B1 Y1 S1\n\n53) dlwillson: S R2 Purple\nA B1 S1\nA Y1 S1\n\n54) daselva: Trade B1 Y1 Daselva\n\n55) dlwillson: B B1 S1\n\n56) daselva: Trade G3 R3 Daselva\n\n57) dlwillson: Build B1 S1\n\n58) daselva: Move R3 Daselva Dlwillson\n\n59) dlwillson: Sacrifice Y3 Salamander\nMove B1 S1 Daselva\nMove B1 S1 Daselva\nMove B1 S1 Daselva\nCatastrophe Daselva B\n\n\tdaselva: thank you for playing \n\tdaselva: I've learned with those mistakes I've done\n\tdlwillson: Very good game. I actually didn't see the big red coming, so it's a good thing I had the gun loaded in time.\n\nHomeworlds Online (SDG# 17729)\nStarted: 2010.10.18, Ended: 2010.10.26\nParticipants: mathochist (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld G2 Y1 B3\n\tsompm: cool name, by the way.\n\n\nHomeworlds Online (SDG# 17681)\nVariants: "Hard time"\nStarted: 2010.10.20, Ended: 2010.11.7\nParticipants: SilentTitan (S), Black_Rabbit (N)\nWinner: SilentTitan\n\n1) Black_Rabbit: Homeworld G1 B2 R3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\tBlack_Rabbit: First game here, and I'm a Homeworlds novice.\n\tSilentTitan: ok... If you have any questions ask... I've been playing for a couple of years. \n\n3) Black_Rabbit: Build R1 Black_rabbit\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Black_Rabbit: Trade R1 Y1 Black_rabbit\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Black_Rabbit: Build R1 Black_rabbit\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Black_Rabbit: Discover R1 Black_rabbit Y3 Arakis\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) Black_Rabbit: Build Y1 Black_rabbit\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) Black_Rabbit: Build Y2 Black_rabbit\n\n14) SilentTitan: Discover Y2 Silenttitan R1 Charm\n\tBlack_Rabbit: UGH... I see a problem developing. :)\n\n15) Black_Rabbit: Trade Y2 G2 Black_rabbit\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Charm\nBuild Y2 Charm\nBuild Y3 Silenttitan\n\n17) Black_Rabbit: Move G2 Black_rabbit Arakis\n\n18) SilentTitan: Build Y3 Silenttitan\n\n19) Black_Rabbit: Move Y1 Black_rabbit Arakis\n\n20) SilentTitan: Sacrifice Y2 Charm\nMove Y2 Charm Arakis\nMove Y2 Charm Arakis\nCatastrophe Arakis Yellow\n\n21) Black_Rabbit: Build Y1 Black_rabbit\n\n22) SilentTitan: Discover Y1 Silenttitan B1 Ball\n\n23) Black_Rabbit: Trade Y1 R1 Black_rabbit\n\n24) SilentTitan: Move G1 Silenttitan Ball\n\n25) Black_Rabbit: Discover R1 Black_rabbit G3 Prime\n\n26) SilentTitan: Build G2 Ball\n\n27) Black_Rabbit: Build Y1 Black_rabbit\n\n28) SilentTitan: Sacrifice G2 Ball\nBuild Y2 Silenttitan\nBuild Y2 Ball\n\n29) Black_Rabbit: Move Y1 Black_rabbit Prime\n\n30) SilentTitan: Trade Y2 R2 Ball\n\n31) Black_Rabbit: Build Y2 Black_rabbit\n\n32) SilentTitan: Discover Y3 Silenttitan B1 Cube\n\n33) Black_Rabbit: Build Y2 Black_rabbit\n\n34) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Ball Prime\nMove Y1 Prime Black_rabbit\nCatastrophe Black_rabbit Yellow\n\n35) Black_Rabbit: Build R1 Black_rabbit\n\tBlack_Rabbit: Yeah, saw that coming. :)\n\n36) SilentTitan: Build G2 Ball\n\n\nHomeworlds Online (SDG# 17728)\nStarted: 2010.10.20, Ended: 2010.10.26\nParticipants: sompm (S), rootbier (N)\nWinner: sompm\n\n\nHomeworlds Online (SDG# 17768)\nVariants: "Hard time"\nStarted: 2010.10.20, Ended: 2010.11.7\nParticipants: TwoShort (S), dlwillson (N)\nWinner: TwoShort\n\n1) dlwillson: H B2 R1 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) TwoShort: Build G1 Twoshort\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) dlwillson: B G1 Dlwillson\n\n8) TwoShort: Build G1 Twoshort\n\n9) dlwillson: T G1 B1 Dlwillson\n\n10) TwoShort: Build Y1 Twoshort\n\n11) dlwillson: B Y2 Dlwillson\n\n12) TwoShort: Build Y2 Twoshort\n\n13) dlwillson: B Y2 Dlwillson\n\n14) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n15) dlwillson: D Y1 Dlwillson G3 G802\n\n16) TwoShort: Build Y3 Grogar\n\n17) dlwillson: B Y3 G802\n\n18) TwoShort: Discover Y1 Twoshort G2 Greenonia\n\n19) dlwillson: D Y2 Dlwillson Y3 Y9t\n\n20) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Grogar G802\nMove Y1 Greenonia G802\nCatastrophe G802 Yellow\n\n21) dlwillson: B Y1 Dlwillson\n\n22) TwoShort: Build G1 Twoshort\n\n23) dlwillson: Build B1 Dlwillson\n\n24) TwoShort: Trade G1 Y1 Twoshort\n\n25) dlwillson: D Y1 Dlwillson G3 G901\n\n26) TwoShort: Build G1 Twoshort\n\n27) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Y9t\nBuild Y2 G901\nBuild Y3 Dlwillson\n\n28) TwoShort: Discover G1 Twoshort G2 Greenonia\n\n29) dlwillson: D B1 Dlwillson G3 G9l\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Greenonia\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n31) dlwillson: B B2 G9l\n\n32) TwoShort: Trade G2 R2 Twoshort\n\n\tdlwillson: Sorry for the delay of game, but this is kind of a sticky situation. Wish I had my plastic, so I could set it up.\n\tTwoShort: No problem. I'm just glad it looks sticky to you too :)\n\tdlwillson: Finally got time to set up the plastic, but it's not helping... :-( :-) :-/ ...\n\tdlwillson: Rats! I thought I still had a couple hours. I'm so sorry for the pointless delay.\n\tdlwillson: We don't live that far apart. We can play it out in plastic, if you like, or do it again here, rated, unrated, or ladder, or we can leave it alone, according to your preference. Again, I'm really sorry for timing out on you.\n\tTwoShort: Don't worry about it; I've accidentally hit hard time a few times myself. I'd just as soon play a whole new game whenever you're up for it...\n\nHomeworlds Online (SDG# 17772)\nVariants: "No undo, Unrated"\nStarted: 2010.10.21, Ended: 2010.10.31\nParticipants: Gidaio (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld B1 Y2 G3\n\n2) Gidaio: Homeworld Y2 B3 G3\n\n3) sompm: Build G1 Sompm\n\tGidaio: Alright, let's do this!\n\n4) Gidaio: Build G1 Gidaio\n\n5) sompm: Trade G1 B1 Sompm\n\n6) Gidaio: Build G1 Gidaio\n\n7) sompm: Build G1 Sompm\n\n8) Gidaio: Discover G1 Gidaio Y1 China\n\n9) sompm: Build G2 Sompm\n\n10) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Gidaio\nBuild G2 Gidaio\nBuild G3 China\n\n11) sompm: Discover G1 Sompm Y3 Ishouldgetaow\n\n12) Gidaio: Trade G2 B2 Gidaio\n\n13) sompm: Build G2 Ishouldgetaow\n\n14) Gidaio: Move B2 Gidaio China\n\n15) sompm: Build G3 Sompm\n\n16) Gidaio: Trade G3 R3 China\n\n17) sompm: Discover G2 Ishouldgetaow B1 Swappyworld\n\tGidaio: China is rebelling!\n\n18) Gidaio: Move R3 China Ishouldgetaow\n\n19) sompm: Trade G3 R3 Sompm\n\n20) Gidaio: Attack G1 Ishouldgetaow\n\n21) sompm: Build G3 Sompm\n\n22) Gidaio: Build G3 Gidaio\n\n23) sompm: Discover G3 Sompm B3 Youcheekybugger\n\n24) Gidaio: Move R3 Ishouldgetaow Swappyworld\n\n25) sompm: Sacrifice G2 Swappyworld\nBuild R1 Sompm\nBuild R1 Sompm\n\n26) Gidaio: Trade B2 Y2 China\n\n27) sompm: Move R1 Sompm Youcheekybugger\n\tsompm: nocanhaz\n\n28) Gidaio: Move Y2 China Ishouldgetaow\n\n29) sompm: Move R3 Sompm Ishouldgetaow\n\n30) Gidaio: Move Y2 Ishouldgetaow Swappyworld\n\n31) sompm: Attack G1S Ishouldgetaow\n\n32) Gidaio: Trade G2 B2 Gidaio\n\tsompm: hay! when did we turn on no undo? did I miss this?\n\tsompm: er, hey.\r\n\n\n33) sompm: Move R3 Ishouldgetaow China\n\n34) Gidaio: Move G1 China Ishouldgetaow\n\n35) sompm: Move R3 China Gidaio\n\tsompm: no offense, but that may have been a bad idea.\n\n36) Gidaio: Move R3 Swappyworld Ishouldgetaow\n\tGidaio: Yeah, you won. There's no way I can combat that unless you do something stupid.\n\n37) sompm: Attack G3 Gidaio\n\n38) Gidaio: Attack G1 Ishouldgetaow\n\n39) sompm: Attack B2S Gidaio\n\tsompm: go ahead; I'll win in a turn anyways. MUHAHAHAHA.\n\n40) Gidaio: Sacrifice Y2 Swappyworld\nMove G1 Ishouldgetaow Sompm\nMove G1 Ishouldgetaow Sompm\nCatastrophe Sompm Green\n\n41) sompm: Attack G1 Gidaio\n\tGidaio: No, but I can at least go out with a bang!\n\n\nHomeworlds Online (SDG# 17780)\nStarted: 2010.10.21, Ended: 2010.10.24\nParticipants: AlphaBravo (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n\nHomeworlds Online (SDG# 17781)\nVariants: "Hard time"\nStarted: 2010.10.22, Ended: 2010.10.25\nParticipants: goblin981 (S), AlphaBravo (N)\nWinner: goblin981\n\n\tgoblin981: good luck dude :)\n\nHomeworlds Online (SDG# 17716)\nStarted: 2010.10.23, Ended: 2010.10.27\nParticipants: agentofchaos (S), dethdukk (N)\nWinner: agentofchaos\n\n\nHomeworlds Online (SDG# 17783)\nStarted: 2010.10.24, Ended: 2010.10.26\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n1) lorgar: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tTwoShort: Howdy\n\n3) lorgar: Build G1 Lorgar\n\n4) TwoShort: Build G1 Twoshort\n\n5) lorgar: Trade G1 Y1 Lorgar\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) lorgar: Build Y2 Lorgar\n\n8) TwoShort: Build Y2 Twoshort\n\n9) lorgar: Trade Y2 R2 Lorgar\n\n10) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n11) lorgar: Build Y2 Lorgar\n\n12) TwoShort: Build Y2 Grogar\n\n13) lorgar: Discover Y2 Lorgar B3 Leodagan\n\n14) TwoShort: Build Y3 Twoshort\n\n15) lorgar: Build Y3 Lorgar\n\n16) TwoShort: Sacrifice Y2 Grogar\nDiscover Y1 Grogar R3 Stopover\nMove Y1 Stopover Lorgar\nCatastrophe Lorgar Yellow\n\n\tlorgar: bluebird... clusterfuck, i'm done!\r\n\r\nGG\n\tTwoShort: Bluebird typically involves having all your homeworld ships one color so you actually lose in an (avoidable) catastrophe. Losing half your homeworld is often bad, but isn't necessarily the end - In this case, I'm pretty sure I had you, but it would have taken me 6 or 7 moves at least...\r\n In any case, thanks for the game! \n\nHomeworlds Online (SDG# 17795)\nStarted: 2010.10.24, Ended: 2010.10.28\nParticipants: rootbier (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 G1 Y3\n\n\nHomeworlds Online (SDG# 17803)\nStarted: 2010.10.24, Ended: 2010.10.27\nParticipants: goblin981 (S), rootbier (N)\nWinner: goblin981\n\n\nHomeworlds Online (SDG# 17809)\nVariants: "Unrated"\nStarted: 2010.10.24, Ended: 2010.12.14\nParticipants: sompm (S), RabidZombieNinjaSquirrel (N), Gidaio (E)\nWinner: sompm\n\n1) RabidZombieNinjaSquirrel: Homeworld B2 Y1 G3\n\n2) Gidaio: Homeworld B3 Y1 G3\n\n3) sompm: Homeworld B3 G2 Y3\n\tGidaio: Hang on, trying something out.\n\tRabidZombieNinjaSquirrel: vote yes\r\n\n\tRabidZombieNinjaSquirrel: did that work?\n\n4) RabidZombieNinjaSquirrel: Build G1 Rabidzombieninjasquirrel\n\tsompm: vote accept 91\n\tGidaio: No. Type in ~vote accept 91\n\n5) Gidaio: Build G1 Gidaio\n\n6) sompm: Build Y1 Sompm\n\n7) RabidZombieNinjaSquirrel: Trade G1 R1 Rabidzombieninjasquirrel\n\tGidaio: Interesting that you started with yellow.\n\n8) Gidaio: Build G1 Gidaio\n\n9) sompm: Discover Y1 Sompm Y1 F1rst\n\n10) RabidZombieNinjaSquirrel: Build G1 Rabidzombieninjasquirrel\n\n11) Gidaio: Discover G1 Gidaio Y2 P0st\n\n12) sompm: Build Y2 Sompm\n\n13) RabidZombieNinjaSquirrel: Build G1 Rabidzombieninjasquirrel\n\n14) Gidaio: Build G2 Gidaio\n\n15) sompm: Build Y2 Sompm\n\n16) RabidZombieNinjaSquirrel: Trade G1 B1 Rabidzombieninjasquirrel\n\n17) Gidaio: Trade G1 R1 Gidaio\n\n18) sompm: Discover Y2 Sompm G1 L0lz\n\n19) RabidZombieNinjaSquirrel: Discover R1 Rabidzombieninjasquirrel Y3 Yellow 3 System A\n\n20) Gidaio: Build G1 Gidaio\n\n21) sompm: Build Y2 L0lz\n\n22) RabidZombieNinjaSquirrel: Build G2 Rabidzombieninjasquirrel\n\n23) Gidaio: Move G1 Gidaio P0st\n\n24) sompm: Build Y3 Sompm\n\n25) RabidZombieNinjaSquirrel: Move R1 Yellow P0st\n\n26) Gidaio: Move G1 P0st Gidaio\n\n27) sompm: Build Y3 L0lz\n\tsompm: guess who's gunna haz three threes, dorkfishes?\n\n28) RabidZombieNinjaSquirrel: Trade G3 Y3 Rabidzombieninjasquirrel\n\n29) Gidaio: Move G1 P0st F1rst\n\n30) sompm: Trade Y3 B3 Sompm\n\n31) RabidZombieNinjaSquirrel: Sacrifice G2 Rabidzombieninjasquirrel\n\nBuild G2 Rabidzombieninjasquirrel\n\nBuild Y3 Rabidzombieninjasquirrel\n\n32) Gidaio: Sacrifice G3 Gidaio\nBuild G2 F1rst\nBuild G3 F1rst\nBuild G3 Gidaio\n\n33) sompm: Trade Y3 R3 Sompm\n\n34) RabidZombieNinjaSquirrel: Build G3 Rabidzombieninjasquirrel\n\tRabidZombieNinjaSquirrel: I know I could have just built a y3, but that doesn't matter. that was epic.\n\n35) Gidaio: Discover G2 Gidaio B2 Pwn\n\n36) sompm: Build Y3 Sompm\n\tGidaio: I'm voting we kick Alex from the game. He's not all that interested.\n\tsompm: If he's really not interested.\r\n\n\n37) RabidZombieNinjaSquirrel: Move R1 P0st F1rst\n\tRabidZombieNinjaSquirrel: I'm interested! I just need to remember...\n\n38) Gidaio: Trade G2 Y2 Pwn\n\n39) sompm: Move R3 Sompm F1rst\n\n40) RabidZombieNinjaSquirrel: Discover G1 Rabidzombieninjasquirrel B3 Roflstomp\n\n41) Gidaio: Move Y2 Pwn Roflstomp\n\n42) sompm: Attack G3E F1rst\n\n43) RabidZombieNinjaSquirrel: Sacrifice G3 Rabidzombieninjasquirrel\n\nBuild G2 Roflstomp\nBuild G3 Roflstomp\n\nBuild G3 Rabidzombieninjasquirrel\n\tsompm: to give alex some time if he's REALLY (indent that) interested.\n\tRabidZombieNinjaSquirrel: well, I dunno... I'm not amazingly interested, what should I do?\r\nwant me to just quit? \n\n44) Gidaio: Move Y2 Roflstomp Rabidzombieninjasquirrel\nCatastrophe Rabidzombieninjasquirrel Yellow\n\n45) sompm: Discover G3 F1rst R2 Hyperbarry\n\tGidaio: Roflstomp?!\n\n46) RabidZombieNinjaSquirrel: Trade B1 R1 Rabidzombieninjasquirrel\n\n47) Gidaio: Move G2 F1rst Roflstomp\nCatastrophe Roflstomp Green\n\tRabidZombieNinjaSquirrel: take that!!! Mwahahahahahahaha!\n\n48) sompm: Sacrifice Y3 L0lz\nDiscover Y1 F1rst B2 Disposable1\nDiscover Y2 L0lz B2 Disposable2\nDiscover Y2 L0lz B2 Disposable3\n\tGidaio: Take that-er! MwahahahahahahahaHA!\n\n49) Gidaio: Move G1 F1rst Disposable1\n\n50) sompm: Sacrifice Y3 Sompm\nMove Y1 Disposable1 Gidaio\nMove Y2 Disposable2 Gidaio\nMove Y2 Disposable3 Gidaio\nCatastrophe Gidaio Y\n\tGidaio: Sorry, Alex. You're just more vulnerable.\n\n51) Gidaio: Build G1 Disposable1\n\n52) sompm: Build B1 Sompm\n\tsompm: yay crazy planet explosions!\r\n\r\nevery non-homeworld planet on the map was created by me! YAIEZ.\n\tRabidZombieNinjaSquirrel: you suck Tanis.\r\n\r\nWheres your heart? \n\n53) Gidaio: Build R1 Gidaio\n\n54) sompm: Build G1 Hyperbarry\n\n55) Gidaio: Trade R1 Y1 Gidaio\n\n56) sompm: Build Y1 Sompm\n\n\tGidaio: I may just give you this game.\n\tGidaio: Yeah, I'm tired of it. You win.\n\nHomeworlds Online (SDG# 17712)\nVariants: "Hard time"\nStarted: 2010.10.25, Ended: 2010.10.26\nParticipants: goblin981 (S), Lurch (N)\nWinner: goblin981\n\n\nHomeworlds Online (SDG# 17736)\nStarted: 2010.10.26, Ended: 2010.10.29\nParticipants: mathochist (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld Y2 B3 G3\n\n\nHomeworlds Online (SDG# 17811)\nStarted: 2010.10.26, Ended: 2010.10.26\nParticipants: lorgar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) lorgar: Homeworld B1 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) lorgar: Build G1 Lorgar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) lorgar: Trade G1 Y1 Lorgar\n\n7) TwoShort: Build G1 Twoshort\n\n8) lorgar: Build G1 Lorgar\n\n9) TwoShort: Build G1 Twoshort\n\n10) lorgar: Discover Y1 Lorgar R3 Leodagan\n\n11) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n12) lorgar: Move G1 Lorgar Leodagan\n\n13) TwoShort: Build G2 Twoshort\n\n14) lorgar: Build G2 Leodagan\n\n15) TwoShort: Discover G1 Twoshort B2 Borbor\n\n16) lorgar: Build G2 Lorgar\n\n17) TwoShort: Build G3 Borbor\n\n18) lorgar: Move G1 Leodagan Borbor\n\n19) TwoShort: Trade G3 Y3 Borbor\n\n20) lorgar: Move G3 Lorgar Leodagan\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\nBuild Y1 Borbor\n\n22) lorgar: Move Y1 Leodagan Borbor\n\n23) TwoShort: Sacrifice Y3 Borbor\nMove G1 Borbor Leodagan\nMove G1 Yolonda Leodagan\nDiscover G3 Yolonda B3 Bluestar\nCatastrophe Leodagan Green\n\n24) lorgar: Build G1 Lorgar\n\tlorgar: I see I still have some problem guessing what one can do with a sacrifice ^^\n\n25) TwoShort: Trade G3 R3 Twoshort\n\n26) lorgar: Build G1 Borbor\n\n27) TwoShort: Sacrifice Y1 Twoshort\nMove G3 Bluestar Lorgar\n\n28) lorgar: Discover G2 Lorgar R3 Charliefoxtrot\n\n29) TwoShort: Sacrifice R3 Twoshort\nAttack G1 Lorgar\nPass\nPass\n\tlorgar: gg\n\n\nHomeworlds Online (SDG# 17821)\nStarted: 2010.10.26, Ended: 2010.10.29\nParticipants: lorgar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B1 G3 *\n\n2) lorgar: Homeworld B3 Y1 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) lorgar: Build G1 Lorgar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) lorgar: Discover G1 Lorgar Y2 Monty\n\n7) TwoShort: Build Y1 Twoshort\n\n8) lorgar: Build G1 Lorgar\n\n9) TwoShort: Build Y2 Twoshort\n\n10) lorgar: Trade G3 Y3 Lorgar\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) lorgar: Sacrifice G1 Monty\nBuild Y2 Lorgar\n\n13) TwoShort: Move Y1 Grogar Lorgar\nCatastrophe Lorgar Yellow\n\n14) lorgar: Build G1 Lorgar\n\tlorgar: schpoup, nice shot\n\n15) TwoShort: Move G3 Twoshort Lorgar\n\n16) lorgar: Trade G1 Y1 Lorgar\n\n17) TwoShort: Trade G3 R3 Lorgar\n\n18) lorgar: Discover Y1 Lorgar G1 Eroute\n\n19) TwoShort: Attack G1 Lorgar\n\tlorgar: gg\n\n\nHomeworlds Online (SDG# 17820)\nStarted: 2010.10.27, Ended: 2010.10.30\nParticipants: goblin981 (S), mathochist (N)\nWinner: goblin981\n\n\nHomeworlds Online (SDG# 17830)\nVariants: "Hard time"\nStarted: 2010.10.27, Ended: 2010.12.3\nParticipants: Uglyfoot (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) Uglyfoot: Build Y2 Uglyfoot\n\n11) agentofchaos: Trade Y1 R1 Agentofchaos\n\n12) Uglyfoot: Discover Y2 Uglyfoot R1 Out\n\n13) agentofchaos: Discover Y2 Agentofchaos B3 Zither\n\n14) Uglyfoot: Move G1 Uglyfoot Out\n\n15) agentofchaos: Build R2 Agentofchaos\n\n16) Uglyfoot: Build Y1 Out\n\n17) agentofchaos: Build Y3 Agentofchaos\n\n18) Uglyfoot: Discover Y1 Uglyfoot B1 Ward\n\n19) agentofchaos: Discover Y3 Agentofchaos G3 Leanda\n\n20) Uglyfoot: Sacrifice G1 Out\nBuild Y3 Ward\n\n21) agentofchaos: Build Y3 Agentofchaos\n\n22) Uglyfoot: Build G1 Uglyfoot\n\n23) agentofchaos: Build G1 Agentofchaos\n\n24) Uglyfoot: Move G1 Uglyfoot Out\n\n25) agentofchaos: Move Y3 Leanda Ward\n\n26) Uglyfoot: Discover Y3 Ward R3 Bound\n\n27) agentofchaos: Sacrifice R1 Agentofchaos\nAttack Y1 Ward\n\n28) Uglyfoot: Build G1 Uglyfoot\n\n29) agentofchaos: Move G1 Agentofchaos Zither\n\n30) Uglyfoot: Move G1 Uglyfoot Out\n\n31) agentofchaos: Build G2 Agentofchaos\n\n32) Uglyfoot: Build G2 Uglyfoot\n\n33) agentofchaos: Build G2 Zither\n\n34) Uglyfoot: Trade G2 R2 Uglyfoot\n\n35) agentofchaos: Discover G3 Agentofchaos R3 Zurvan\n\n36) Uglyfoot: Move G1 Out Bound\n\n37) agentofchaos: Move Y1 Agentofchaos Zurvan\n\n38) Uglyfoot: Build R1 Uglyfoot\n\n39) agentofchaos: Move G1 Zither Ward\n\n40) Uglyfoot: Sacrifice Y2 Out\nMove Y3 Bound Agentofchaos\nMove Y3 Agentofchaos Zither\n\n41) agentofchaos: Sacrifice Y2 Zither\nMove G3 Zurvan Out\nMove G2 Zither Ward\n\n42) Uglyfoot: Build G2 Bound\n\n43) agentofchaos: Build G3 Agentofchaos\n\n44) Uglyfoot: Build Y2 Out\n\n45) agentofchaos: Sacrifice G2 Ward\nBuild Y2 Zurvan\nBuild G2 Ward\n\n46) Uglyfoot: Sacrifice Y2 Out\nMove G1 Bound Agentofchaos\nMove G2 Bound Agentofchaos\nCatastrophe Agentofchaos G\n\n47) agentofchaos: Attack Y1 Out\n\n48) Uglyfoot: Build G1 Uglyfoot\n\n49) agentofchaos: Sacrifice Y2 Zurvan\nMove G1 Ward Uglyfoot\nMove G2 Ward Uglyfoot\nCatastrophe Uglyfoot G\n\n50) Uglyfoot: Trade Y3 G3 Zither\n\n51) agentofchaos: Move Y3 Ward Uglyfoot\n\n\tUglyfoot: Thanks for the game.\n\tagentofchaos: Thanks for playing \n\nHomeworlds Online (SDG# 17750)\nVariants: "Hard time"\nStarted: 2010.10.29, Ended: 2010.11.5\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld Y3 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Discover G1 Lorgar R3 Thorp\n\n6) SilentTitan: Discover G1 Silenttitan B1 Shaka\n\n7) lorgar: Build G1 Lorgar\n\n8) SilentTitan: Build G2 Silenttitan\n\n9) lorgar: Trade G1 Y1 Lorgar\n\n10) SilentTitan: Trade G2 Y2 Silenttitan\n\n11) lorgar: Move Y1 Lorgar Thorp\n\n12) SilentTitan: Move Y2 Silenttitan Shaka\n\n13) lorgar: Move G1 Thorp Shaka\n\n14) SilentTitan: Trade G1 R1 Shaka\n\n15) lorgar: Build G1 Lorgar\n\n16) SilentTitan: Attack G1 Shaka North\n\n17) lorgar: Trade G1 R1 Lorgar\n\n18) SilentTitan: Build G1 Silenttitan\n\n19) lorgar: Move G3 Lorgar Thorp\n\n20) SilentTitan: Build G1 Shaka\n\n21) lorgar: Build Y1 Thorp\n\n22) SilentTitan: Build Y2 Shaka\n\n23) lorgar: Discover Y1 Thorp B1 Clusterf\n\n24) SilentTitan: Sacrifice Y2 Shaka\nMove Y2 Shaka Thorp\nMove Y2 Thorp Lorgar\n\n25) lorgar: Move G3 Thorp Lorgar\n\n26) SilentTitan: Sacrifice R1 Shaka\nAttack R1 Lorgar North\n\n27) lorgar: Trade G3 R3 Lorgar\n\tSilentTitan: LOL... I always wanted to name a system that.\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild R1 Lorgar\nBuild R1 Lorgar\nPass\nCatastrophe Lorgar Red\n\n\tlorgar: gg\n\nHomeworlds Online (SDG# 17831)\nStarted: 2010.10.29, Ended: 2010.11.1\nParticipants: dethdukk (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 17850)\nVariants: "Hard time"\nStarted: 2010.10.30, Ended: 2010.12.3\nParticipants: goulo (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\n2) goulo: Homeworld G3 B2 Y3\n\tDanner: Hi! Good luck!\n\n3) Danner: Homeworld R1 B2 G3\n\tgoulo: thanks, you too. have fun!\n\n4) goulo: Build Y1 Goulo\n\n5) Danner: Build G1 Danner\n\n6) goulo: Build Y1 Goulo\n\n7) Danner: Trade G1 Y1 Danner\n\n8) goulo: Trade Y1 R1 Goulo\n\n9) Danner: Build Y1 Danner\n\n10) goulo: Trade Y1 G1 Goulo\n\n11) Danner: Trade Y1 R1 Danner\n\n12) goulo: Build R2 Goulo\n\n13) Danner: Build R2 Danner\n\n14) goulo: Discover R2 Goulo G1 Smeraldeto\n\n15) Danner: Discover R2 Danner Y3 Orland\n\n16) goulo: Build Y1 Goulo\n\n17) Danner: Build G1 Danner\n\n18) goulo: Build G2 Goulo\n\n19) Danner: Build Y1 Danner\n\n20) goulo: Sacrifice G2 Goulo\nBuild Y2 Goulo\nBuild G2 Goulo\n\n21) Danner: Build Y2 Danner\n\tDanner: Sorry for my inactivity :S\n\n22) goulo: Move Y1 Goulo Smeraldeto\n\tgoulo: no problem. i have been busy lately in any case as well (gone away from internet this past thursday-sunday at a gaming con)...\n\n23) Danner: Discover Y1 Danner G3 Artemus\n\n24) goulo: Move R2 Smeraldeto Artemus\n\n25) Danner: Move R2 Orland Smeraldeto\n\n26) goulo: Move Y1 Smeraldeto Artemus\n\n27) Danner: Move Y1 Artemus Smeraldeto\n\n28) goulo: Build R2 Artemus\n\n29) Danner: Build Y2 Smeraldeto\n\n30) goulo: Move R2 Artemus Danner\n\n31) Danner: Sacrifice R1 Danner\nAttack R2S Danner\n\n32) goulo: Build R1 Artemus\n\n33) Danner: Build R3 Smeraldeto\n\n34) goulo: Sacrifice Y2 Goulo\nMove R1 Artemus Danner\nMove R2 Artemus Danner\nCatastrophe Danner R\n\tgoulo: Ha, yeah, after I did that move, I realized you could sacrifice the R1, sigh. :)\n\tDanner: :)\n\n35) Danner: Sacrifice Y2 Danner\nMove G1 Danner Smeraldeto\nMove G1 Smeraldeto Goulo\nCatastrophe Goulo G\n\n36) goulo: Trade Y3 G3 Goulo\n\n37) Danner: Build Y2 Danner\n\n38) goulo: Build G1 Goulo\n\tgoulo: Hmm. That didn't work out quite as well as I thought it would...\n\n39) Danner: Trade Y2 B2 Danner\n\n40) goulo: Trade G3 Y3 Goulo\n\n41) Danner: Sacrifice B2 Danner\nTrade Y1 B1 Smeraldeto\nTrade R2 B2 Smeraldeto\n\n42) goulo: Build G1 Goulo\n\n43) Danner: Sacrifice Y2 Smeraldeto\nMove B1 Smeraldeto Goulo\nMove B2 Smeraldeto Goulo\n\n\tgoulo: Thanks for the game!\n\tDanner: Thank you too!\n\nHomeworlds Online (SDG# 17859)\nVariants: "Hard time"\nStarted: 2010.11.1, Ended: 2010.11.6\nParticipants: zoltar (S), goblin981 (N)\nWinner: zoltar\n\n1) goblin981: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld R3 B1 G3\n\n3) goblin981: Build G1 Goblin981\n\n4) zoltar: Build G1 Zoltar\n\n5) goblin981: Discover G1 Goblin981 G3 Star\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) goblin981: Build G1 Goblin981\n\n8) zoltar: B Y1 Zoltar\n\n9) goblin981: Discover G1 Goblin981 Y3 Sickly\n\n10) zoltar: Build Y2 Zoltar\n\n11) goblin981: Build G1 Goblin981\n\n12) zoltar: Build G2 Zoltar\n\n13) goblin981: Build G2 Goblin981\n\n14) zoltar: Discover Y1 Zoltar B2 Bluemoon\n\n15) goblin981: Trade G2 Y2 Goblin981\n\n16) zoltar: Sacrifice G2 Zoltar\nBuild G2 Zoltar\nBuild Y2 Bluemoon\n\n17) goblin981: Build Y3 Goblin981\n\n18) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Bluemoon Star\nMove Y1 Star Goblin981\nCatastrophe Goblin981 Y\n\n19) goblin981: Trade G1 Y1 Goblin981\n\n20) zoltar: Trade G2 R2 Zoltar\n\n21) goblin981: Build G1 Goblin981\n\tgoblin981: Damn, nice move.\n\tzoltar: Thanks!\n\n22) zoltar: Move G3 Zoltar Goblin981\n\n23) goblin981: Trade G1 R1 Goblin981\n\n24) zoltar: Sacrifice R2 Zoltar\nAttack G3 Goblin981\nAttack R1 Goblin981\n\n25) goblin981: Sacrifice G1 Star\nBuild Y1 Goblin981\n\tzoltar: And now for my next trick...\n\n26) zoltar: Trade G3 R3 Goblin981\n\n27) goblin981: Move G1 Sickly Goblin981\n\n28) zoltar: Sacrifice R3 Goblin981\nAttack G1 Goblin981\nAttack Y1 Goblin981\nAttack Y1 Goblin981\n\n\tzoltar: Good game. You let me swindle you in the opening there, so it was over fast. Play again?\n\tgoblin981: yeah that was my fault. Lets go again.\n\nHomeworlds Online (SDG# 17853)\nVariants: "Hard time"\nStarted: 2010.11.1, Ended: 2010.11.27\nParticipants: lorgar (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R1 G3\n\n2) lorgar: Homeworld B1 Y2 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) lorgar: Build G1 Lorgar\n\n5) zoltar: Trade G1 B1 Zoltar\n\n6) lorgar: Trade G1 Y1 Lorgar\n\n7) zoltar: Build B1 Zoltar\n\n8) lorgar: Build G1 Lorgar\n\n9) zoltar: Trade B1 Y1 Zoltar\n\n10) lorgar: Build G1 Lorgar\n\n11) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n12) lorgar: Discover G1 Lorgar Y3 Angelis\n\n13) zoltar: Build B1 Greenbelt\n\n14) lorgar: Trade G1 R1 Lorgar\n\n15) zoltar: Build B2 Greenbelt\n\n16) lorgar: Build R1 Lorgar\n\n17) zoltar: Trade B2 R2 Greenbelt\n\n18) lorgar: Move R1 Lorgar Angelis\n\n19) zoltar: Build B2 Greenbelt\n\n20) lorgar: Move G3 Lorgar Angelis\n\n21) zoltar: Trade B2 Y2 Greenbelt\n\n22) lorgar: Build R2 Angelis\n\n23) zoltar: Build Y1 Greenbelt\n\n24) lorgar: Discover G1 Angelis Y2 Mektown\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\nBuild B2 Greenbelt\n\n26) lorgar: Move R1 Angelis Greenbelt\n\n27) zoltar: Sacrifice Y3 Zoltar\nMove Y3 Greenbelt Angelis\nMove Y2 Greenbelt Angelis\nMove Y1 Greenbelt Angelis\nCatastrophe Angelis Y\n\n28) lorgar: Trade Y1 G1 Lorgar\n\n29) zoltar: Trade B2 G2 Greenbelt\n\n30) lorgar: Build G1 Mektown\n\n31) zoltar: Trade B1 Y1 Greenbelt\n\n32) lorgar: Build G2 Lorgar\n\n33) zoltar: Build G3 Greenbelt\n\n34) lorgar: Build G3 Lorgar\n\n35) zoltar: Sacrifice G3 Greenbelt\nBuild Y1 Greenbelt\nBuild Y2 Greenbelt\nBuild Y3 Zoltar\n\n36) lorgar: Build G3 Mektown\n\n37) zoltar: Sacrifice Y2 Greenbelt\nDiscover G2 Greenbelt Y3 Wormhole\nMove G2 Wormhole Lorgar\nCatastrophe Lorgar G\n\n38) lorgar: Discover G1 Mektown Y3 Charliefox\n\n39) zoltar: Attack R1 Greenbelt\n\n40) lorgar: Move G1 Charliefox Lorgar\n\n41) zoltar: Trade Y3 G3 Zoltar\n\n42) lorgar: Build R2 Lorgar\n\n43) zoltar: Build Y2 Greenbelt\n\n44) lorgar: Discover R2 Lorgar Y3 Stop\n\n45) zoltar: Build Y3 Zoltar\n\n46) lorgar: Pass\n\n47) zoltar: Build Y3 Zoltar\n\n48) lorgar: Build G1 Lorgar\n\n49) zoltar: Sacrifice Y3 Zoltar\nMove Y3 Zoltar Mektown\nMove Y3 Mektown Stop\nMove Y3 Stop Lorgar\n\n\tlorgar: that's it.\n\tzoltar: Yeah, you can't let your homeworld be without a large ship. You had to earlier either get the G3 back to your homeworld, or sac it for three reds so that an R3 is in your homeworld, but you passed a turn, which was crazy and let me get another Y3 that let me come into your homeworld and win.\n\tlorgar: I passed because I did not see anything else to do XD\r\nperhaps you Could explain me some tips about the stash managing strategy... \n\tzoltar: Well, your first priority was getting a 3-pip ship in your homeworld. Anytime you don't have a large ship in your homeworld, you're in extreme danger. So moving your G3 to a large yellow star was just about the only way to avoid imminent disaster. Don't worry about the stash when your homeworld is left defenseless.\n\nHomeworlds Online (SDG# 17828)\nVariants: "Hard time"\nStarted: 2010.11.1, Ended: 2010.11.4\nParticipants: zoltar (S), Lurch (N)\nWinner: zoltar\n\n\nHomeworlds Online (SDG# 17901)\nVariants: "Hard time"\nStarted: 2010.11.1, Ended: 2010.11.1\nParticipants: zoltar (S), Lurch (N)\nWinner: Lurch\n\n\nHomeworlds Online (SDG# 17909)\nStarted: 2010.11.1, Ended: 2010.11.4\nParticipants: Remneb (S), dethdukk (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 17911)\nVariants: "Unrated"\nStarted: 2010.11.1, Ended: 2010.11.6\nParticipants: Remneb (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B3 Y2 G3\n\tts52: Is this your first game of homeworlds? The first move is to create your homewold. When you're the second player, make sure you don't pick the same size pieces as your opponent.\n\n2) Remneb: Homeworld B2 Y3 G3\n\tts52: Also, your first ship should always be a large. Although you can choose something smaller, there's no point to picking anything else.\n\tRemneb: It's my first game.\n\n3) ts52: Build G1 Ts52\n\tts52: Ok. You've picked the exact same homeworld as me, which isn't usually a good idea. In Homeworlds, systems are connected by not having a piece in common, so while our two homeworlds aren't directly connected (impossible in the beginning of the game) they're only separated by one jump. Notice, that from our homeworlds, the only systems we can discover are small ones (using the small pieces). Which means once I build a new ship, and move it out of my homeworld to discover a new system, it will be able to move directly from their into your homeworld. This is what we call a small universe.\r\n\r\nNow, consider if your homeworld was made up of a small and medium pyramid instead. Then you would be first discovering systems using the large pieces, and there would be two hops between our homeworlds.\r\n\r\nThere are probably some strategies that try to use the small universe, but it's not generally recommended.\r\n\r\nIf you want to undo and create a new homeworld, that's fine, if you want to play this one out and see what happens, that's fine too. Just let me know.\n\tRemneb: Well i choose the same size of star because 2 stars of different sizes are connected...and so bothy systems can be attacked...in my viewing the game of course.\n\n4) Remneb: Build G1 Remneb\n\tRemneb: Now...if i want to created a new system,i need an extra ship...because in my homeworld,i mujst always have at least one ship ok ?\n\tts52: True, you must always have at least one ship that you control in your homeworld. Not quite on the connection part though. Two systems are connected if they don't have any stars of the same size piece. So a 'small star' system is connected to 'large star' and 'medium star' systems, and to 'large medium binary' systems. But not to other small stars, or to any binary system that has a small star in it. So No to binary systems (and only homeworlds are binary systems) can ever be directly connected.\n\n5) ts52: Discover G1 Ts52 B1 Gonzo\n\tts52: So after creating your homeworld, the first thing you need to do is create a second ship. (Which is why it's crucial that you always start out with green in your homeworld, either as a star or a ship.)\n\tts52: We wont worry about the small universe this game, let's just play it out and then we can play another.\n\tRemneb: If i understood the rules clearly,a star of a given color-say green-permit to any ship of other colors then green to use the techno of the green star exactly if the ship was a green ship?\n\n6) Remneb: Discover G1 Remneb Y1 Draconis\n\tts52: Yes, that's correct. Any ship you own in a system can use the power of the star(s) in that system, or the powers of any ship you control in that system.\n\n7) ts52: T G1 Y1 Gonzo\n\n8) Remneb: Build G1 Remneb\n\n9) ts52: D Y1 Gonzo G3 Kermit\n\n10) Remneb: Move G1 Draconis Kermit\n\n11) ts52: B Y1 Kermit\n\n12) Remneb: Discover G1 Remneb Y1 Khufu Primus\n\n13) ts52: Build Y2 Kermit\n\n14) Remneb: Build G1 Remneb\n\n15) ts52: B G2 Ts52\n\n16) Remneb: Move G1 Remneb Khufu\n\n\n\n\n\n\n\n17) ts52: Trade G2 R2 Ts52\n\n18) Remneb: Sacrifice G1 Kermit\nBuild G1 Khufu\n\n19) ts52: M R2 Ts52 Khufu\n\tRemneb: I tried to sacrifice my G3 ship and make 3 moves:g1 Kermit ts52 and g1 Khufu ts52 and so trigering a catastrophe...but the game did not let me do so.What is wrong in my orders?\n\tRemneb: I've just checked the andrew looney video called "Blue Bird mistake".The sacrifice ship was a yellow one.So if i sacrifice a green ship i cannot have movement in exchange.What do i have instead?\n\tRemneb: Something else...your Kermit system is not connected to my Remneb system...so i am concluding that you build 3 yellow ship to attack my Khufu system?\n\tts52: Aha, in order to move multiple pieces, you need to sacrifice a large yellow. When you sacrifice, you can only use the power of the sacrificed piece, but on any ships you want.\r\nAnd I'm building up yellow ships to try in Kermit to try and avoid catastrophe. I discovered kermit to take the large green piece out of the pool, hoping to be able to convert it to one of my ships later.\n\n20) Remneb: Move G1 Khufu Ts52\n\n21) ts52: Trade G3 R3 Ts52\n\tRemneb: So because green ship cannot move from system kermit to Khufu,i sacrified one and build the same in Khufu...doing in fact the same thing.\n\tRemneb: Do all my ships in Khufu have the power of moving(the yellow star)?\n\n22) Remneb: Move G1 Khufu Kermit\n\tRemneb: How can you have a red ship when everytime i ask a ship of other color then green,the game told me that i need to control at least one ship of the color i ask.\n\tts52: Because you have a yellow star in your homeworld you could've just moved the green ship, but it amounts to the same. All ships in a system can use the power of any star in that system. \n\tts52: I didn't build the red ship using green, I traded it with blue. \n\n23) ts52: Attack G1 Ts52\n\n24) Remneb: Move G1 Khufu Kermit\n\tRemneb: Understand thanks.\n\n25) ts52: Sacrifice R2 Khufu\nAttack G1 Kermit\nAttack G1 Kermit\n\n26) Remneb: Build G2 Remneb\n\n27) ts52: Build G2 Ts52\n\n28) Remneb: Discover G2 Remneb Y1 Phoenix\n\tRemneb: Here i misunderstood the rule about attacking units(red).I was sure that you have to sacrifice the red ship to turn my green one against me !\n\n29) ts52: Discover G1 Kermit B1 Gonzo\n\tRemneb: So a yellow ship in a green system can move because he is yellow...and also can be sacrifice to be replaced by an other color?And because there is green and yellow in the same system,we can at the same time sacrifice to replace and move the new ship ?\n\tts52: Aha, nope. In fact, as you see, I can sacrifice the red ship to attack ships outside of that system\n\n30) Remneb: Build G2 Remneb\n\tRemneb: You don't have to sacrifice a red ship in your homeworld?\n\tRemneb: So a red ship of 2 points can be sacrifice to attack 2 ships of 1 point each?\n\tts52: A red ship of two points can be sacrificed to make two attacks. You can attack any ship that is the same size or smaller than your biggest ship in the same system. So if those green ships had been medium (2 point), I could still have attacked because of my medium yellow. But if they'd been large, I couldn't.\n\tts52: If I'd sacrificed my red ship in my homeworld, I could have made 3 attacks, but it's never a good idea to leave your homeworld without a large ship in it.\n\n31) ts52: Build G3 Gonzo\n\tRemneb: I want to understand why you turn my g1 in your homeworld with no sacrifice at all...\n\n32) Remneb: Discover G2 Remneb B1 Menkaura\n\n33) ts52: Build R1 Ts52\n\n34) Remneb: Trade G2 Y2 Menkaura\n\n35) ts52: Move Y1 Kermit Gonzo\n\tts52: you don't need to sacrifice to attack. if you have access to red in a system, either because the star is red, or you have a red ship there, then you can attack other ships in that system. you only need to sacrifice if you want to make more than one attack (by sacrificing a med or large) or if you want to make an attack in a system where you don't have red, you can sacrifice a red ship elsewhere to do it.\n\tRemneb: Understand.Thanks.\n\tRemneb: We apparently have 20 spectators for our game...\n\n36) Remneb: Build G2 Remneb\n\n37) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y3 Gonzo\nBuild Y3 Gonzo\n\tts52: Interesting, I wonder how many of them are actively watching? The last time I tried, it didn't work so well.\n\n38) Remneb: Trade G2 B2 Remneb\n\n39) ts52: Trade Y1 B1 Gonzo\n\n40) Remneb: Build B2 Remneb\n\n41) ts52: Move Y3 Gonzo Remneb\n\n42) Remneb: Move B2 Remneb Phoenix\n\n43) ts52: Trade Y3 R3 Remneb\n\tRemneb: 12 ships against 4...\n\n44) Remneb: Discover Y2 Menkaura R2 Arcturus\n\tts52: yeah, being able to sacrifice a large green, build it back (because there are no more greens in the global stash, and you have another green ship) and then build two more ships it a pretty big deal.\n\n45) ts52: Attack G3 Remneb\n\n46) Remneb: Trade B2 R2 Phoenix\n\tts52: you need to be wary about ever having 3 pieces (ships and stars) of the same color in one system. That's asking for your opponent to move in a piece of that color and triggering a catastrophe.\n\tRemneb: Thanks...i'm trying to do that against you since the beginning of the game lol.\n\n47) ts52: A B2 Remneb\n\n\tRemneb: I need an explanation about your last attack in my Homeworld.Few moves sooner,you turn 2 of my ships with a single red 3.Now you turn my g3 bot not my b2? Is it because you don't another ship in my homeworld? \n\tRemneb: ...read "is it because you don't have another ship in my homeworld?\n\tts52: I could only turn one ship because I didn't sacrifice a ship like I did before. \n\tRemneb: Ok.Thanks.If you snap my b2 in Remneb,the game is over.\n\tts52: Thanks for the game. I'd be happy to play another. \n\nHomeworlds Online (SDG# 17858)\nStarted: 2010.11.2, Ended: 2010.11.16\nParticipants: daselva (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) daselva: Homeworld R1 B2 G3\n\tts52: Have a good game!\n\n3) ts52: B G1 Ts52\n\n4) daselva: Build G1 Daselva\n\n5) ts52: T G1 R1 Ts52\n\n6) daselva: Trade G1 R1 Daselva\n\n7) ts52: Build R2 Ts52\n\n8) daselva: Build R2 Daselva\n\n9) ts52: Discover R1 Ts52 Y1 Dogstar\n\n10) daselva: Trade R1 Y1 Daselva\n\n11) ts52: Build G1 Ts52\n\n12) daselva: Build Y1 Daselva\n\n13) ts52: Move G1 Ts52 Dogstar\n\n14) daselva: Build Y2 Daselva\n\n15) ts52: Build G1 Ts52\n\n16) daselva: Trade Y2 G2 Daselva\n\n17) ts52: Trade G1 B1 Ts52\n\n18) daselva: Build Y2 Daselva\n\n19) ts52: Trade R2 Y2 Ts52\n\n20) daselva: Discover Y2 Daselva G3 S1\n\n21) ts52: Discover Y2 Ts52 G1 Robin\n\n22) daselva: Trade Y1 B1 Daselva\n\n23) ts52: Move B1 Ts52 Dogstar\n\n24) daselva: Build Y1 S1\n\n25) ts52: Build G1 Ts52\n\n26) daselva: Sacrifice B1 Daselva\nTrade Y1 R1 S1\n\n27) ts52: Build R2 Dogstar\n\n28) daselva: Build R2 S1\n\n29) ts52: Move R1 Dogstar Ts52\n\n30) daselva: Discover R2 S1 G2 S2\n\n31) ts52: B R3 Ts52\n\n32) daselva: Sacrifice G2 Daselva\nBuild R3 S1\nBuild R3 S2\n\n33) ts52: M R3 Ts52 Robin\n\n34) daselva: Move R3 S1 Dogstar\n\n35) ts52: D R2 Dogstar Y3 Bigstar\n\n36) daselva: Attack B1 Dogstar\n\n37) ts52: Move G1 Dogstar Bigstar\n\n38) daselva: Build G2 Daselva\n\n39) ts52: Move R3 Robin S1\n\n40) daselva: Move Y2 S1 Dogstar\n\n41) ts52: Move Y2 Robin S1\n\n42) daselva: Trade B1 G1 Dogstar\n\n43) ts52: Attack R1 S1\n\n44) daselva: Build G2 Dogstar\n\n45) ts52: Discover G1 Ts52 Y1 Chickadee\n\n46) daselva: Sacrifice Y1 Daselva\nMove R2 S2 Chickadee\n\n47) ts52: Move G1 Chickadee Bigstar\n\n48) daselva: Trade G2 Y2 Daselva\n\n49) ts52: Move R3 S1 Chickadee\n\n50) daselva: Discover R2 Chickadee Y3 S3\n\n51) ts52: B Y1 S1\n\n52) daselva: Move R3 Dogstar Bigstar\n\n53) ts52: S Y2 S1\nM R1 S1 Daselva\nMove R2 Bigstar Daselva\nCatastrophe Daselva Red\n\n\n\n54) daselva: Move R2 S3 Daselva\n\n55) ts52: Move G1 Bigstar Chickadee\n\n56) daselva: Attack G1 Bigstar\n\n57) ts52: Build R1 Ts52\n\n58) daselva: Sacrifice G2 Dogstar\nBuild Y2 Dogstar\nBuild Y3 Daselva\n\n59) ts52: Move Y1 S1 Dogstar\nCatastrophe Dogstar Yellow\n\n60) daselva: Move Y2 Daselva Bigstar\n\n61) ts52: Trade R1 Y1 Ts52\n\n62) daselva: Sacrifice G3 Daselva\nBuild Y1 Bigstar\nBuild Y2 Daselva\nBuild Y2 Daselva\n\n63) ts52: Discover Y1 Ts52 B1 Gonzo\n\n64) daselva: Discover Y2 Daselva G1 S1\n\n65) ts52: Move Y1 Gonzo Bigstar\nCatastrophe Bigstar Yellow\n\n66) daselva: Sacrifice Y2 Daselva\nMove R3 S2 S1\nPass\n\n67) ts52: B R1 Ts52\n\n68) daselva: Build Y1 S1\n\n69) ts52: Trade R1 B1 Ts52\n\n70) daselva: Build Y1 S1\n\n71) ts52: Move B1 Ts52 Chickadee\n\n72) daselva: Move Y1 S1 Ts52\n\n73) ts52: A Y1 Ts52\n\n74) daselva: Move Y2 S1 Daselva\n\n75) ts52: Discover Y1 Ts52 G1 Robin\n\n76) daselva: Build Y2 S1\n\n77) ts52: B G2 Ts52\n\n78) daselva: Build Y2 S1\n\n79) ts52: B Y3 Robin\n\n80) daselva: Sacrifice Y2 Daselva\nMove Y1 S1 Ts52\nMove Y2 S1 Ts52\n\n81) ts52: B B1 Chickadee\n\n82) daselva: Sacrifice Y2 S1\nMove Y1 Ts52 Robin\nMove Y2 Ts52 Robin\nCatastrophe Robin Y\n\n83) ts52: Build B1 Chickadee\n\n84) daselva: Build R1 S1\n\n85) ts52: T R3 Y3 Chickadee\n\n86) daselva: Build R1 S1\n\n87) ts52: Sacrifice Y3 Chickadee\nMove B1 Chickadee Daselva\nMove B1 Chickadee Daselva\nMove B1 Chickadee Daselva\nCatastrophe Daselva Blue\n\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 17929)\nVariants: "Hard time"\nStarted: 2010.11.3, Ended: 2010.11.24\nParticipants: shmil1 (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld Y3 G1 B3\n\n2) shmil1: Homeworld G1 B2 Y3\n\n3) sompm: Build B1 Sompm\n\n4) shmil1: Build Y1 Shmil1\n\tsompm: Good luck.\n\n5) sompm: Build B1 Sompm\n\n6) shmil1: Trade Y1 B1 Shmil1\n\n7) sompm: Trade B1 G1 Sompm\n\n8) shmil1: Build Y1 Shmil1\n\n9) sompm: Build G2 Sompm\n\n10) shmil1: Build Y1 Shmil1\n\n11) sompm: Discover G1 Sompm B2 Tetrachord\n\n12) shmil1: Trade Y1 R1 Shmil1\n\n13) sompm: Build G2 Tetrachord\n\n14) shmil1: Discover Y1 Shmil1 G3 Zelena\n\n15) sompm: Build G2 Tetrachord\n\n16) shmil1: Move Y1 Zelena Tetrachord\n\n17) sompm: Trade G2 R2 Tetrachord\n\n18) shmil1: Move Y1 Tetrachord Sompm\n\n19) sompm: Build G2 Tetrachord\n\n20) shmil1: Trade Y3 G3 Shmil1\n\n21) sompm: Build G3 Sompm\n\n22) shmil1: Build G3 Shmil1\n\n23) sompm: Trade G2 R2 Sompm\n\n24) shmil1: Sacrifice G3 Shmil1\nBuild Y1 Sompm\nBuild Y1 Sompm\nBuild G2 Shmil1\nCatastrophe Sompm Yellow\n\n25) sompm: Trade G2 Y2 Tetrachord\n\n26) shmil1: Trade G3 Y3 Shmil1\n\n27) sompm: Discover G1 Tetrachord G3 Anotherplanet\n\n28) shmil1: Discover G2 Shmil1 Y3 Zluta\n\n29) sompm: Build G2 Anotherplanet\n\n30) shmil1: Build G3 Zluta\n\n31) sompm: Trade G3 Y3 Sompm\n\n32) shmil1: Move G3 Zluta Tetrachord\n\n33) sompm: Build G3 Tetrachord\n\n34) shmil1: Sacrifice R1 Shmil1\nAttack R2 Tetrachord\n\n35) sompm: Sacrifice R2 Sompm\nAttack G3S Tetrachord\nAttack R2S Tetrachord\n\n36) shmil1: Move G2 Zluta Tetrachord\nCatastrophe Tetrachord Green\n\n37) sompm: Sacrifice Y2 Tetrachord\nMove G1 Anotherplanet Shmil1\nMove G2 Anotherplanet Shmil1\n\n38) shmil1: Discover B1 Shmil1 Y3 Slunce\n\n39) sompm: Build G2 Shmil1\nCatastrophe Shmil1 G\n\n40) shmil1: Trade Y3 R3 Shmil1\n\n41) sompm: Build B1 Sompm\n\n42) shmil1: Move B1 Slunce Sompm\nCatastrophe Sompm Blue\n\n43) sompm: Build Y1 Sompm\n\n44) shmil1: Trade R3 G3 Shmil1\n\n45) sompm: Trade R2 B2 Tetrachord\n\n46) shmil1: Build G1 Shmil1\n\n47) sompm: Sacrifice Y1 Sompm\nMove B2 Tetrachord Sompm\n\n48) shmil1: Trade G1 R1 Shmil1\n\n49) sompm: Build B1 Sompm\n\n50) shmil1: Build R1 Shmil1\n\n51) sompm: Build Y1 Sompm\n\n52) shmil1: Trade R1 Y1 Shmil1\n\n53) sompm: Build B1 Sompm\n\n54) shmil1: Move Y1 Shmil1 Sompm\n\n55) sompm: Sacrifice Y3 Sompm\nMove B1 Sompm Shmil1\nMove B1 Sompm Shmil1\nMove B2 Sompm Shmil1\nCatastrophe Shmil1 Blue\n\n\nHomeworlds Online (SDG# 17960)\nStarted: 2010.11.5, Ended: 2010.12.16\nParticipants: zoltar (S), dethdukk (N)\nWinner: zoltar\n\n1) dethdukk: Homeworld B3 Y1 G3\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) dethdukk: Build G1 Dethdukk\n\n4) zoltar: Build G1 Zoltar\n\n5) dethdukk: Trade G1 Y1 Dethdukk\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) dethdukk: Discover Y1 Dethdukk G2 Planet\n\n8) zoltar: Build Y2 Zoltar\n\n9) dethdukk: Build G1 Dethdukk\n\n10) zoltar: Trade Y1 B1 Zoltar\n\n11) dethdukk: Trade G1 Y1 Dethdukk\n\n12) zoltar: Build Y2 Zoltar\n\n13) dethdukk: Build Y2 Planet\n\n14) zoltar: Discover Y2 Zoltar G1 Greenpea\n\n15) dethdukk: Trade Y1 R1 Dethdukk\n\n16) zoltar: Build Y1 Zoltar\n\n17) dethdukk: Move Y2 Planet Greenpea\n\n18) zoltar: Move Y1 Zoltar Greenpea\n\n19) dethdukk: Build Y3 Planet\n\n20) zoltar: Build Y3 Zoltar\n\n\nHomeworlds Online (SDG# 17731)\nVariants: "Hard time"\nStarted: 2010.11.6, Ended: 2010.11.20\nParticipants: dlwillson (S), lorgar (N)\nWinner: dlwillson\n\n1) lorgar: Homeworld R1 B3 G3\n\n2) dlwillson: H G3 B2 Y3\n\n3) lorgar: Build G1 Lorgar\n\n4) dlwillson: B Y1 Dlwillson\n\n5) lorgar: Trade G1 Y1 Lorgar\n\n6) dlwillson: B Y1 Dlwillson\n\n7) lorgar: Build G1 Lorgar\n\n8) dlwillson: D Y1 Dlwillson B1 Dust\n\n9) lorgar: Build Y2 Lorgar\n\n10) dlwillson: B Y2 Dlwillson\n\n11) lorgar: Discover Y1 Lorgar R2 Knuckleduster\n\n12) dlwillson: D Y1 Dlwillson B1 Ashes\n\n13) lorgar: Discover Y2 Lorgar R2 Sunisburning\n\n14) dlwillson: T Y3 R3 Dlwillson\n\n15) lorgar: Discover Y1 Knuckleduster R1 Borabora\n\n16) dlwillson: B R1 Dlwillson\n\n17) lorgar: Sacrifice Y2 Sunisburning\nDiscover G3 Lorgar B2 Amadeo\nMove G3 Amadeo Borabora\n\n18) dlwillson: B Y2 Dlwillson\n\n19) lorgar: Build Y2 Borabora\n\n20) dlwillson: D Y2 Dlwillson B1 Smoke\n\n21) lorgar: Discover Y1 Borabora B2 Mnemosine\n\n22) dlwillson: Trade R3 G3 Dlwillson\n\n23) lorgar: Build Y3 Borabora\n\n24) dlwillson: S G3 Dlwillson\nB Y3 Dust\nB Y3 Ashes\nB R2 Dlwillson\n\n25) lorgar: Move Y2 Borabora Mnemosine\n\n26) dlwillson: Sacrifice Y2 Dlwillson\nMove Y3 Dust Mnemosine\nMove Y3 Mnemosine Lorgar\n\n\tdlwillson: Good game. Venturing out with your battleship is much more dangerous with a red star. Stars are notoriously neutral, and willing to lend their tech to anyone, even your opponent.\n\tlorgar: thx, I still need to learn about the depths of this game.\n\nHomeworlds Online (SDG# 17724)\nVariants: "Hard time"\nStarted: 2010.11.6, Ended: 2010.11.30\nParticipants: Jesse (S), lorgar (N)\nWinner: Jesse\n\n1) lorgar: Homeworld Y1 G2 B3\n\n2) Jesse: Homeworld R1 B3 G3\n\n3) lorgar: Build B1 Lorgar\n\n4) Jesse: Build G1 Jesse\n\n5) lorgar: Build B1 Lorgar\n\n6) Jesse: Trade G1 B1 Jesse\n\n7) lorgar: Discover B3 Lorgar R3 Waaaghdakka\n\n8) Jesse: Build B2 Jesse\n\n9) lorgar: Trade B1 G1 Lorgar\n\n10) Jesse: Trade B1 Y1 Jesse\n\n11) lorgar: Build G1 Lorgar\n\n12) Jesse: Build Y1 Jesse\n\n13) lorgar: Build B1 Lorgar\n\n14) Jesse: Build Y2 Jesse\n\n15) lorgar: Trade B3 G3 Waaaghdakka\n\n16) Jesse: Trade Y2 R2 Jesse\n\n17) lorgar: Trade G1 B1 Lorgar\n\n18) Jesse: Build Y2 Jesse\n\n19) lorgar: Move B1 Lorgar Waaaghdakka\n\n20) Jesse: Discover Y2 Jesse G2 Pond\n\n21) lorgar: Trade B1 R1 Lorgar\n\n22) Jesse: Build Y2 Pond\n\n23) lorgar: Build R1 Lorgar\n\n24) Jesse: Sacrifice Y2 Pond\nDiscover Y2 Pond G3 Lilypad\nMove Y2 Lilypad Lorgar\n\n25) lorgar: Build R2 Lorgar\n\n26) Jesse: Sacrifice R2 Jesse\nAttack R2 Lorgar\nAttack G1 Lorgar\n\n27) lorgar: Pass\n\n28) Jesse: Build Y2 Lorgar\n\n\tlorgar: gg\n\tJesse: Thanks for the game. I think the main lessons for you here are: Don't leave your homeworld without the defense of a large ship; and don't get locked out of yellow ships, since it leaves you unable to move your ships where they're needed in case of an emergency.\n\nHomeworlds Online (SDG# 17999)\nStarted: 2010.11.6, Ended: 2010.11.10\nParticipants: goblin981 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B3 R2 G3\n\n2) goblin981: Homeworld Y1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) goblin981: Build G1 Goblin981\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) goblin981: Trade G1 Y1 Goblin981\n\n7) zoltar: Build Y2 Zoltar\n\n8) goblin981: Build G1 Goblin981\n\n9) zoltar: Discover Y1 Zoltar G1 Greenpea\n\n10) goblin981: Discover G1 Goblin981 Y2 Chicken\n\n11) zoltar: Build Y2 Greenpea\n\n12) goblin981: Build G1 Goblin981\n\n13) zoltar: Build Y3 Zoltar\n\n14) goblin981: Build G2 Chicken\n\n15) zoltar: Build Y3 Zoltar\n\n16) goblin981: Trade G1 B1 Goblin981\n\n17) zoltar: Build Y3 Greenpea\n\n18) goblin981: Move Y1 Goblin981 Chicken\n\n19) zoltar: Move Y3 Greenpea Chicken\n\n20) goblin981: Move Y1 Chicken Greenpea\n\n21) zoltar: Trade Y3 R3 Zoltar\n\n22) goblin981: Build G1 Goblin981\n\n23) zoltar: Move Y3 Chicken Goblin981\n\n24) goblin981: Trade G1 R1 Goblin981\n\n25) zoltar: Sacrifice R3 Zoltar\nAttack R1 Goblin981\nAttack B1 Goblin981\nAttack G3 Goblin981\n\n\tzoltar: Because you will die much faster if you don't have a red star. Note that I don't have to bring anything with me: when I made a 'gun' in my own homeworld last turn, the only way to avoid checkmate was to turn one of your two homeworld ships to red immediately. Since you didn't, it's checkmate now. Play again?\n\nHomeworlds Online (SDG# 17910)\nVariants: "Hard time"\nStarted: 2010.11.6, Ended: 2010.11.14\nParticipants: Remneb (S), Lurch (N)\nWinner: Remneb\n\n1) Lurch: Homeworld Y1 B2 G3\n\n2) Remneb: Homeworld Y2 B3 G3\n\n3) Lurch: Build G1 Lurch\n\n4) Remneb: Build G1 Remneb\n\n\nHomeworlds Online (SDG# 17808)\nStarted: 2010.11.6, Ended: 2010.11.9\nParticipants: rootbier (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 18002)\nVariants: "Unrated"\nStarted: 2010.11.7, Ended: 2010.11.9\nParticipants: Remneb (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B3 Y1 G3\n\n2) Remneb: Homeworld Y2 B1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) Remneb: Build G1 Remneb\n\tRemneb: Thanks.Same.\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) ts52: Build Y2 Ts52\n\n8) Remneb: Build G1 Remneb\n\n9) ts52: Discover Y1 Ts52 G2 Oscar\n\n10) Remneb: Discover Y1 Remneb G3 Emmy\n\n11) ts52: Build G1 Ts52\n\n12) Remneb: Build Y2 Emmy\n\n13) ts52: Build Y3 Oscar\n\n14) Remneb: Move Y2 Emmy Oscar\n\n15) ts52: Discover Y1 Oscar B3 Grover\n\n16) Remneb: Build Y3 Emmy\n\n17) ts52: Sacrifice G1 Ts52\nBuild Y3 Grover\n\n18) Remneb: Discover Y3 Emmy B2 Bunkerhill\n\n19) ts52: Trade Y1 R1 Grover\n\n20) Remneb: Sacrifice Y3 Bunkerhill\nMove Y1 Emmy Oscar\nMove Y2 Oscar Ts52\nMove Y1 Oscar Ts52\nCatastrophe Ts52 Y\n\n21) ts52: Move Y3 Grover Remneb\n\n22) Remneb: Trade G1 R1 Remneb\n\n23) ts52: Sacrifice R1 Grover\nAttack R1 Remneb\n\tRemneb: Well something else...a catastrophe in your homeworld and the game still running.Only yellow have take the cup !\n\tRemneb: Now if for example i have only a g3 in my homeworld and i sacrifie it to stunt your homeworld,is it a draw or do i win the game?\n\tts52: Wow, I really should have seen that coming. Well done.\n\n24) Remneb: Build G1 Remneb\n\n25) ts52: Attack G3 Remneb\n\n\tRemneb: I was aware before i made the move...but i was sure that the game will have ended right there !\n\tts52: Thanks for the game. Feel fee to challenge me any time.\n\tRemneb: Ok...i know that i'm not ready to challenge two short or Jesse lol.For now i'm playing 4 homeworlds games.I will challenge you for a rated game next time.Thanks for the training.\n\nHomeworlds Online (SDG# 18003)\nVariants: "Hard time"\nStarted: 2010.11.8, Ended: 2010.11.15\nParticipants: Lurch (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld Y1 B2 G3\n\n2) Lurch: Homeworld Y1 B3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) Lurch: Build G1 Lurch\n\n5) Remneb: Trade G1 Y1 Remneb\n\n\nHomeworlds Online (SDG# 18004)\nStarted: 2010.11.8, Ended: 2010.11.11\nParticipants: Remneb (S), rootbier (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 18054)\nVariants: "Hard time"\nStarted: 2010.11.10, Ended: 2010.11.25\nParticipants: dlwillson (S), goblin981 (N)\nWinner: dlwillson\n\n1) goblin981: Homeworld G3 B2 R3\n\n2) dlwillson: H B3 Y1 G3\n\n3) goblin981: Build R1 Goblin981\n\n4) dlwillson: B G1 Dlwillson\n\n5) goblin981: Build R1 Goblin981\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) goblin981: Trade R1 G1 Goblin981\n\n8) dlwillson: B G1 Dlwillson\n\n9) goblin981: Build R1 Goblin981\n\tdlwillson: Why didn't you trade r1 for y1, or is it a surprise?\n\tgoblin981: wanted to get a green out there first.\n\n10) dlwillson: B R2 Dlwillson\n\n11) goblin981: Trade R1 Y1 Goblin981\n\n12) dlwillson: T G1 B1 Dlwillson\n\n13) goblin981: Discover G1 Goblin981 Y1 Yellow\n\n14) dlwillson: B B1 Dlwillson\n\n15) goblin981: Discover G1 Yellow R3 Kry\n\n16) dlwillson: D B1 Dlwillson G2 Turkey\n\n17) goblin981: Build Y1 Goblin981\n\n18) dlwillson: D B1 Dlwillson Y2 Chicken\n\n19) goblin981: Build Y2 Goblin981\n\n20) dlwillson: Build G1 Dlwillson\n\n21) goblin981: Discover Y1 Goblin981 G1 Sick\n\n22) dlwillson: D B1 Chicken R1 Partridge\n\n23) goblin981: Build R2 Goblin981\n\n24) dlwillson: T G3 Y3 Dlwillson\n\n25) goblin981: Trade R2 B2 Goblin981\n\n26) dlwillson: B G2 Dlwillson\n\n27) goblin981: Move B2 Goblin981 Sick\n\n28) dlwillson: Move Y3 Dlwillson Turkey\n\n29) goblin981: Build Y2 Sick\n\n30) dlwillson: Build Y2 Turkey\n\n31) goblin981: Build G2 Kry\n\n32) dlwillson: Move Y2 Turkey Partridge\n\n33) goblin981: Trade Y2 R2 Sick\n\n34) dlwillson: M R2 Dlwillson Turkey\n\n35) goblin981: Discover R2 Sick Y2 Yell\n\n36) dlwillson: Sacrifice G2 Dlwillson\nBuild Y3 Partridge\nBuild Y3 Turkey\n\n37) goblin981: Move B2 Sick Yell\n\n38) dlwillson: B G2 Dlwillson\n\n39) goblin981: Move Y1 Sick Yell\n\n40) dlwillson: S G2 Dlwillson\nB R2 Turkey\nB R3 Dlwillson\n\n41) goblin981: Discover R1 Goblin981 B1 Blu\n\n42) dlwillson: T Y3 G3 Partridge\n\n43) goblin981: Sacrifice G1 Kry\nB B2 Yell\n\n\n44) dlwillson: S G3 Partridge\nB B3 Partridge\nB Y3 Partridge\nB B3 Turkey\n\n45) goblin981: Sacrifice G2 Kry\nB R3 Goblin981\nPass\n\n46) dlwillson: S Y3 Turkey\nM Y2 Partridge Goblin981\nM B1 Partridge Goblin981\nM R2 Turkey Partridge\n\n47) goblin981: Attack Y2S Goblin981\n\tgoblin981: this ones been going a while. You've managed to grab most of the pieces though.\n\tdlwillson: I think we're done in two, though.\n\n48) dlwillson: S Y3 Turkey\nM R2 Turkey Partridge\nM R2 Partridge Goblin981\nM R2 Partridge Goblin981\nC Goblin981 R\n\n49) goblin981: S Y1 Goblin981\nMove R1 Blu Yell\n\n50) dlwillson: Build B1 Goblin981\n\n51) goblin981: Trade Y2 R2 Goblin981\n\n52) dlwillson: M Y3 Partridge Goblin981\n\n53) goblin981: Sacrifice R2 Yell\nA B1S Goblin981\nA B1S Goblin981\n\n54) dlwillson: Sacrifice R3 Dlwillson\nAttack B1 Goblin981\nAttack Y2 Goblin981\nAttack R2 Goblin981\n\n55) goblin981: Pass\n\tdlwillson: I way miscounted the remaining moves!\n\n56) dlwillson: S Y3 Goblin981\nM B3 Turkey Partridge\nM B3 Partridge Goblin981\nM B3 Partridge Goblin981\nC Goblin981 B\n\tdlwillson: Have you seen Goblins Comic?\n\tgoblin981: no. \n\n\tdlwillson: If you're a fan of goblins, you might like it. Www.goblinscomic.com.\n\tdlwillson: Thanks for the game.\n\nHomeworlds Online (SDG# 17917)\nStarted: 2010.11.10, Ended: 2010.11.14\nParticipants: ts52 (S), OnePageWars (N)\nWinner: ts52\n\n1) OnePageWars: Homeworld G3 Y2 B3\n\tOnePageWars: How do I use the Interface?\n\tts52: The commands and syntax are listed at the top. The first thing you have to do is build a Homeworld with the Homeworlds command. \n\n2) ts52: H Y2 B1 G3\n\tOnePageWars: Thanks. I think I have it partly figured out. I know how to play, but I couldn't figure out how to use their interface.\n\n3) OnePageWars: Build B1 Onepagewars\n\n4) ts52: B G1 Ts52\n\tOnePageWars: I'll get this figured out eventually. :)\n\n5) OnePageWars: Discover B3 Onepagewars Y1 Yellowstar\n\tts52: You can abbreviate any command to just the first letter too. \n\n6) ts52: Trade G1 B1 Ts52\n\n7) OnePageWars: Trade B1 G1 Onepagewars\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) OnePageWars: Build G1 Onepagewars\n\n10) ts52: Build B1 Kermit\n\n11) OnePageWars: Move G1 Onepagewars Yellowstar\n\n12) ts52: Trade B1 Y1 Kermit\n\n13) OnePageWars: Trade G1 R1 Yellowstar\n\n14) ts52: Trade Y1 R1 Kermit\n\n15) OnePageWars: Build G1 Onepagewars\n\n16) ts52: B G1 Ts52\n\n17) OnePageWars: Build G2 Onepagewars\n\n18) ts52: Build G2 Ts52\nCatastrophe Onepagewars Green\n\tts52: Thanks for the game. I'd be happy to play again, anytime. Feel free to challenge me to an unrated game if you just to play with the interface more.\n\tOnePageWars: Thanks!\n\n\nHomeworlds Online (SDG# 17707)\nVariants: "Hard time"\nStarted: 2010.11.11, Ended: 2010.11.15\nParticipants: shmil1 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n2) shmil1: Homeworld G1 B2 Y3\n\n3) zoltar: Build G1 Zoltar\n\n4) shmil1: Build Y1 Shmil1\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) shmil1: Trade Y1 B1 Shmil1\n\n7) zoltar: Build Y1 Zoltar\n\n8) shmil1: Build B1 Shmil1\n\n9) zoltar: Trade Y1 B1 Zoltar\n\n10) shmil1: Discover B1 Shmil1 Y3 Zluty\n\n11) zoltar: Discover B1 Zoltar G1 Greenpea\n\n12) shmil1: Move B1 Zluty Greenpea\n\n13) zoltar: Trade B1 R1 Greenpea\n\n14) shmil1: Build Y1 Shmil1\n\n15) zoltar: Attack B1 Greenpea\n\n16) shmil1: Trade Y1 R1 Shmil1\n\n17) zoltar: Build Y1 Zoltar\n\n18) shmil1: Build B1 Shmil1\n\n19) zoltar: Build B2 Greenpea\n\n20) shmil1: Discover B1 Shmil1 G3 Zelenysvet\n\n21) zoltar: Trade B2 Y2 Greenpea\n\n22) shmil1: Build B2 Zelenysvet\n\n23) zoltar: Build B3 Greenpea\n\n24) shmil1: Trade B1 Y1 Zelenysvet\n\n25) zoltar: Discover Y1 Zoltar G1 Greenbean\n\n26) shmil1: Build Y2 Zelenysvet\n\n27) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenpea\nBuild Y3 Greenbean\nBuild Y3 Zoltar\n\n28) shmil1: Move Y1 Zelenysvet Greenbean\n\n29) zoltar: Sacrifice B3 Greenpea\nTrade Y2 G2 Greenpea\nTrade Y3 G3 Greenbean\nTrade Y3 G3 Zoltar\n\n30) shmil1: Build Y2 Zelenysvet\n\n31) zoltar: Sacrifice G2 Greenpea\nBuild Y3 Greenpea\nBuild Y3 Zoltar\n\tzoltar: Yikes: too many threats. I'd better sacrifice and get some stability. \n\n32) shmil1: Trade Y2 R2 Zelenysvet\n\n33) zoltar: Trade Y2 R2 Greenpea\n\n34) shmil1: Build Y2 Greenbean\n\n35) zoltar: Move Y3 Greenpea Zelenysvet\n\n36) shmil1: Discover B2 Zelenysvet R1 Rudy\n\n37) zoltar: Sacrifice R2 Greenpea\nAttack R2 Zelenysvet\nAttack Y2 Zelenysvet\n\n38) shmil1: Sacrifice R1 Shmil1\nAttack Y1 Greenbean\n\n39) zoltar: Sacrifice Y2 Zelenysvet\nMove Y1 Zoltar Greenbean\nMove Y3 Zelenysvet Shmil1\nCatastrophe Greenbean Y\n\n40) shmil1: Trade Y3 R3 Shmil1\n\n41) zoltar: Sacrifice R2 Zelenysvet\nAttack B1 Shmil1\nAttack R3 Shmil1\n\n\tzoltar: good game! It got exciting there for a while.\n\nHomeworlds Online (SDG# 18072)\nVariants: "Hard time"\nStarted: 2010.11.11, Ended: 2010.11.17\nParticipants: rodrigotjader (S), OnePageWars (N)\nWinner: OnePageWars\n\n1) OnePageWars: Homeworld G3 B2 Y3\n\n2) rodrigotjader: Homeworld G1 B3 R3\n\n3) OnePageWars: Build Y1 Onepagewars\n\n\nHomeworlds Online (SDG# 18039)\nStarted: 2010.11.11, Ended: 2010.11.14\nParticipants: Remneb (S), rootbier (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 18097)\nVariants: "Unrated"\nStarted: 2010.11.14, Ended: 2010.11.16\nParticipants: OnePageWars (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B3 Y2 G3\n\n2) OnePageWars: Homeworld G3 B2 R3\n\tts52: have a good game, ask any questions you like, and feel free to get my attention by making a move, then undoing it. \n\n3) ts52: Build G1 Ts52\n\tts52: Just so you realize, you've set up another 'small universe' game by picking the same size pieces that I have.\n\n4) OnePageWars: Build R1 Onepagewars\n\tOnePageWars: ???\r\n\n\n5) ts52: T G1 R1 Ts52\n\n6) OnePageWars: Trade R1 Y1 Onepagewars\n\tts52: Sorry, I was teaching someone else Homeworlds, and explaining the issues with creating a homeworld with matching sizes as your opponent. Now our Homeworlds are only one system apart. \n\tOnePageWars: Oh! I didn't notice that. :)\n\n7) ts52: B G1 Ts52\n\tOnePageWars: I appreciate your patience with helping me get used to this game. This is only my second game.\n\tts52: No problem, I'm always happy to help new players. \n\n8) OnePageWars: Discover R3 Onepagewars G1 Cyteen\n\n9) ts52: Build G1 Ts52\n\n10) OnePageWars: Build Y1 Onepagewars\n\n11) ts52: Discover G1 Ts52 B1 Grover\n\n12) OnePageWars: Move Y1 Onepagewars Cyteen\n\n13) ts52: Build G2 Grover\n\n14) OnePageWars: Move R3 Cyteen Ts52\n\n15) ts52: Attack R3 Ts52\n\n\nHomeworlds Online (SDG# 18014)\nStarted: 2010.11.14, Ended: 2010.11.18\nParticipants: daselva (S), dethdukk (N)\nWinner: daselva\n\n\nHomeworlds Online (SDG# 18078)\nStarted: 2010.11.14, Ended: 2010.11.22\nParticipants: rootbier (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n\nHomeworlds Online (SDG# 17829)\nStarted: 2010.11.14, Ended: 2010.11.22\nParticipants: mathochist (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R3 B2 G3\n\n\nHomeworlds Online (SDG# 18134)\nStarted: 2010.11.15, Ended: 2010.11.24\nParticipants: zoltar (S), daselva (N)\nWinner: zoltar\n\n1) daselva: Homeworld B1 R2 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\tzoltar: An excellent choice of stars this time. When I get to a difficult endgame, I'm usually glad I had a red star in my homeworld for defense!\n\n3) daselva: Build G1 Daselva\n\n4) zoltar: Build G1 Zoltar\n\n5) daselva: Trade G1 Y1 Daselva\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) daselva: Build G1 Daselva\n\n8) zoltar: Build G1 Zoltar\n\n9) daselva: Trade G1 R1 Daselva\n\n10) zoltar: Trade G1 B1 Zoltar\n\n11) daselva: Build R1 Daselva\n\n12) zoltar: Build B1 Zoltar\n\n13) daselva: Discover R1 Daselva G3 S1\n\n14) zoltar: Discover B1 Zoltar G2 Greenbelt\n\n15) daselva: Sacrifice Y1 Daselva\nMove R1 S1 Greenbelt\n\n16) zoltar: Sacrifice Y1 Zoltar\nDiscover B1 Greenbelt G3 Greengiant\n\n17) daselva: Build R2 Greenbelt\n\n18) zoltar: Build B2 Greengiant\n\n19) daselva: Build G1 Daselva\n\n20) zoltar: Trade B2 R2 Greengiant\n\n21) daselva: Trade R1 Y1 Daselva\n\n22) zoltar: Build B2 Greengiant\n\n23) daselva: Trade G1 R1 Daselva\n\n24) zoltar: Build R3 Greengiant\n\n25) daselva: Build R3 Greenbelt\n\n26) zoltar: Trade R3 Y3 Greengiant\n\n27) daselva: Discover R1 Daselva B3 S1\n\n28) zoltar: Move R2 Greengiant Greenbelt\nCatastrophe Greenbelt R\n\n29) daselva: Sacrifice Y1 Daselva\nDiscover R1 S1 Y2 S2\n\n30) zoltar: Trade B2 G2 Greengiant\n\n31) daselva: Build G1 Daselva\n\n32) zoltar: Move G2 Greengiant Daselva\n\n33) daselva: Trade G3 Y3 Daselva\n\n34) zoltar: Sacrifice G2 Daselva\nBuild B2 Greengiant\nBuild B2 Zoltar\n\n35) daselva: Build G1 Daselva\n\n36) zoltar: Trade B2 R2 Greengiant\n\n37) daselva: Discover R1 S2 G3 S1\n\n38) zoltar: Trade B2 Y2 Zoltar\n\n39) daselva: Discover G1 Daselva Y3 S2\n\n40) zoltar: Build B2 Greengiant\n\n41) daselva: Build G1 S2\n\n42) zoltar: Build G2 Zoltar\n\n43) daselva: Build G2 Daselva\n\n44) zoltar: Sacrifice G3 Zoltar\nBuild G2 Zoltar\nBuild G3 Zoltar\nBuild B2 Greengiant\n\n45) daselva: Build Y1 Daselva\n\n46) zoltar: Discover B2 Greengiant B2 Bluemoon\n\n47) daselva: Discover G1 S2 R2 S3\n\n48) zoltar: Sacrifice G2 Zoltar\nBuild B3 Bluemoon\nBuild B3 Zoltar\n\n49) daselva: Build G2 S3\n\n50) zoltar: Trade B3 R3 Bluemoon\n\n51) daselva: Sacrifice Y1 Daselva\nDiscover R1 S1 Y2 S4\n\n52) zoltar: Sacrifice G3 Zoltar\nBuild B3 Bluemoon\nBuild G3 Zoltar\nBuild G3 Zoltar\n\n53) daselva: Build Y1 Daselva\n\n54) zoltar: Move G3 Zoltar S4\n\n55) daselva: Sacrifice G2 S3\nBuild R1 S4\nBuild R3 S4\n\n56) zoltar: Sacrifice R3 Bluemoon\nAttack R1 S4\nAttack R1 S4\nAttack R3 S4\n\n57) daselva: Build G2 S2\n\n58) zoltar: Sacrifice G3 Zoltar\nBuild R3 Greengiant\nBuild R3 Greengiant\nBuild G3 Zoltar\n\n59) daselva: Move Y1 Daselva S2\n\n60) zoltar: Sacrifice Y2 Zoltar\nMove R3 Greengiant Daselva\nMove R3 Greengiant Daselva\n\n61) daselva: Attack R3 Daselva\n\n62) zoltar: Sacrifice R3 S4\nAttack R3 Daselva\nAttack Y3 Daselva\nAttack G2 Daselva\n\n63) daselva: Move G2 S2 Daselva\n\n64) zoltar: Sacrifice G3 Zoltar\nBuild G3 Daselva\nBuild R3 Daselva\nBuild Y1 Greengiant\n\n\nHomeworlds Online (SDG# 18146)\nVariants: "Hard time"\nStarted: 2010.11.16, Ended: 2010.11.26\nParticipants: nycavri (S), Gidaio (N)\nWinner: nycavri\n\n1) Gidaio: Homeworld Y1 B2 G3\n\n2) nycavri: Homeworld G3 B2 Y3\n\tGidaio: Good luck!\n\tnycavri: TaGG!\n\n3) Gidaio: Build G1 Gidaio\n\n4) nycavri: Build Y1 Nycavri\n\n5) Gidaio: Build G1 Gidaio\n\n6) nycavri: Build Y1 Nycavri\n\n7) Gidaio: Discover G1 Gidaio B3 Llanowar\n\n8) nycavri: Trade Y3 G3 Nycavri\n\n9) Gidaio: Build G1 Gidaio\n\n10) nycavri: Build G2 Nycavri\n\n11) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Llanowar\nBuild G2 Llanowar\nBuild G3 Gidaio\n\n12) nycavri: Discover Y1 Nycavri R1 Deacon\n\n13) Gidaio: Trade G2 Y2 Llanowar\n\tnycavri: M:tG player, I see!\n\tGidaio: Yeah!\n\n14) nycavri: Trade G2 R2 Nycavri\n\n15) Gidaio: Discover G1 Llanowar R1 Serra\n\n16) nycavri: Discover Y1 Deacon B3 May\n\n17) Gidaio: Move G2 Llanowar Serra\n\n18) nycavri: Move Y1 May Gidaio\n\n19) Gidaio: Sacrifice Y2 Llanowar\nMove G1 Serra Nycavri\nMove G2 Serra Nycavri\nCatastrophe Nycavri Green\n\n20) nycavri: Trade Y1 G1 Gidaio\nCatastrophe Gidaio G\n\n\tnycavri: Thanks for the game.\n\tGidaio: Holy dang! Nice ending. Didn't see that at all. I'll have to keep that strategy in mind for future games!\r\n\r\nAll in all, good game!\n\tnycavri: Yeah, it only works if you trigger the catastrophe in my homeworld to provide me with the G1 I needed . . .\r\n\r\nI'm sure we'll meet again on the Ladder!\n\nHomeworlds Online (SDG# 17856)\nVariants: "Hard time"\nStarted: 2010.11.17, Ended: 2010.11.24\nParticipants: SilentTitan (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld B1 R2 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Remneb: Build G1 Remneb\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Remneb: Discover Y1 Remneb G3 Draconis\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) Remneb: Build Y1 Draconis\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) Remneb: Discover Y1 Draconis Y2 Klon\n\n14) SilentTitan: Discover Y1 Silenttitan B1 Bluestar\n\n15) Remneb: Discover Y1 Klon B3 Ragnarok\n\n16) SilentTitan: Build B2 Silenttitan\n\n17) Remneb: Build Y2 Draconis\n\n18) SilentTitan: Discover B1 Silenttitan G1 Greenstar\n\n19) Remneb: Move Y2 Draconis Remneb\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Greenstar\nBuild B3 Greenstar\nBuild B3 Silenttitan\n\n21) Remneb: Trade G3 R3 Remneb\n\n22) SilentTitan: Sacrifice B2 Greenstar\nTrade B3 R3 Greenstar\nTrade B3 G3 Silenttitan\n\n23) Remneb: Move Y1 Ragnarok Remneb\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Greenstar\nBuild B3 Greenstar\nBuild B3 Silenttitan\n\n25) Remneb:\nBuild Y2 Remneb\n\n26) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Bluestar Draconis\nMove Y1 Draconis Remneb\nCatastrophe Remneb Yellow\n\n27) Remneb: Move Y1 Draconis Remneb\n\n28) SilentTitan: Sacrifice B2 Greenstar\nTrade B3 Y3 Greenstar\nTrade B3 G3 Silenttitan\n\n29) Remneb: Build Y1 Remneb\n\n30) SilentTitan: Build B1 Greenstar\n\n31) Remneb: Build G1 Remneb\n\n32) SilentTitan: Discover B1 Greenstar R2 Redstar\n\n33) Remneb: Build G2 Remneb\n\n34) SilentTitan: Build B2 Greenstar\n\n35) Remneb: Trade G1 R1 Remneb\n\n36) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Greenstar\nBuild B3 Redstar\nBuild B3 Silenttitan\n\n37) Remneb: Discover Y1 Remneb G3 Rooky\n\n38) SilentTitan: Sacrifice B2 Greenstar\nTrade B3 G3 Silenttitan\nTrade B3 G3 Redstar\n\n39) Remneb: Discover R1 Remneb Y3 Alderan\n\tSilentTitan: ok... I thought you might be a beginner. we should start again or at the very least you should take back your last turn, because if there is ever four of the same color in a system either player can call for a catasrophe and that will destroy all the items of that color in that system. In this case you just created the forth red item in your home system. \r\n\r\n\n\tRemneb: Well i did not include the star...yes i'm a beginner...the only games that i played to the finish was the two that i lost against Ts52.\n\n40) SilentTitan: Sacrifice G3 Redstar\nBuild B2 Redstar\nBuild B3 Redstar\nBuild B3 Silenttitan\n\tSilentTitan: If you'd like. After this game, if you challenge me again. I can give you ideas of things you may want to consider when deciding your moves. \r\n\n\n41) Remneb: Build Y1 Remneb\n\tRemneb: Ok for a re-match...thanks for the offer.\n\n42) SilentTitan: Trade B3 Y3 Silenttitan\n\n43) Remneb: Discover Y1 Remneb B3 Remagen\n\n\n44) SilentTitan: Sacrifice Y3 Silenttitan\nMove B3 Redstar Alderan\nMove B2 Redstar Remagen\nMove B3 Greenstar Rooky\n\n45) Remneb: Discover G1 Remneb Y3 Omaha\n\n46) SilentTitan: Sacrifice R3 Greenstar\nAttack R1 Alderan North\nAttack Y1 Remagen North\nAttack Y1 Rooky North\n\n47) Remneb: Build Y2 Remneb\n\tRemneb: I think you have a lot of fun :)\n\tRemneb: In a system with a red star,do every ships in that system are capable of attacking because they are in a red system?\n\n48) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Rooky\nBuild Y2 Remagen\nBuild R1 Alderan\n\tSilentTitan: Yes. think of the color of the pieces as technology red=attack tech; blue=trade tech; yellow=move tech and green=build tech. In the case of ships only your pieces can use the tech, but in the case of planets the whole system gets to use the tech, no matter who is in the system.\n\n49) Remneb: Sacrifice Y2 Remneb\nMove R3 Remneb Omaha\nMove R3 Omaha Greenstar\n\tSilentTitan: also as you can see here I can sacrifice a piece to have that tech where ever I need it to be. In this case I sacrificed a 3-pip red so I got to execute three attack actions. and I took three of your ships because in each system I had a ship that was as big or bigger. \n\tRemneb: Understand.Also,i saw along the game that you sacrifice a g3 to create 3 other ships.If you sacrifice a b3,you also can build 3 other ships?\n\n50) SilentTitan: Sacrifice Y3 Greenstar\nMove B3 Alderan Remneb\nMove B3 Rooky Remneb\nMove B2 Remagen Remneb\nCatastrophe Remneb Blue\n\tRemneb: I never been able by the game system to build a blew ship.I have a blew star in my Homeworld.I know that i need to have a ship of the same color already in position in the system where i want a blew ship.The blew star is apparently not enough to build a blew ship.\n\tSilentTitan: correct including you can rebuild the g3 you just sacrificed as long as it's avaliable in the bank. Say there is a g2 and a g3 in the bank and on your turn you sacrifice a g3 you can then build a g2 then build a g3 then build another g3 which is the g3 that was returned to the bank when you sacrificed it at the beginning of your turn. the only requirement is that you have to have a green ship in the system your going to build green ships. Same with the blue ships. A star give you that tech (ie a blue star gives trade tech) but in order to build blue ships you have to already have a blue ship.\n\tSilentTitan: at this point you would have to trade one of your existing ships for a blue ship, which you are unable to do because either I have them all, or they are planets. Having a monopoly on one of the colors is a one of the easiest ways to win the game. If you can deny the other player on of the techs then that gives you a very distinct advantage.\r\n\n\n51) Remneb: Sacrifice Y1 Remneb\nMove R3 Greenstar Silenttitan\n\tRemneb: That's the orders i gave:sacrifice y2 Remneb \r\nmove r3 Remneb Rooky\r\nattack b3 Rooky...but the system told me that i have no more actions.What is wrong in my orders ?\n\n52) SilentTitan: Sacrifice Y2 Remagen\nMove Y2 Rooky Remneb\nMove B1 Greenstar Silenttitan\n\n53) Remneb: Attack Y2 Remneb\n\tSilentTitan: you can only do one type of action a turn .. so you cannot move and attack or trade and move or build and attack etc.... since you sacked a y2 you had to either do two moves or one move and a pass\n\tSilentTitan: The problem you have with the move you've made here is that I can sacrifice either of the r1's in Alderan which gives me 1 attack action I can take anywhere on the board. I can use that attack action combined with my Y3 in greenstar to take your R3 that you just moved in. Like so\n\n54) SilentTitan: Trade B1 R1 Silenttitan\n\n55) Remneb: Attack B2 Silenttitan\n\tSilentTitan: but instead... I will move three of my blue ships into your homeworld and catastrophe the blue\n\tSilentTitan: I want to keep mentioning to you... that you can only use the stars or your own ships in a system for the technology. In the case of system GreenStar now... you can only attack or build in that system you cannot trade or move (unless you sacrifice a blue or yellow somewhere else on the board) because you only have a red (attack) ship and the star is green (build). you cannont trade in Greenstar because the blue ship is nime and therefore the technology is not yours. Is this making sense? If you do an attack option and capture my blue ship then you would be able to trade the turn after that. the command to attack my blue ship is "attack b1 greenstar south" you have to add the south part to this command so it knows who you are attacking ... while this doesn't make sense in the two player game ... it does in the four player game. \n\n56) SilentTitan: Move R1 Alderan Remneb\n\tRemneb: My target was your b2 in your Homeworld.\n\tRemneb: There's a lot of things to keep in mind when playing that game.I'm going-with your permission-copy all your comments for further studying.I found nothing on the net about the tactical aspect of Homeworlds.\n\n57) Remneb: Trade B2 R2 Silenttitan\nCatastrophe Silenttitan R\n\tSilentTitan: Whoops... you're right. Nice Job! I got so caught up in teaching that I wasn't watching out. Did you want to play again?\n\tRemneb: Yes of course.I surely need more training.\n\n\tSilentTitan: Good Game!! Nice Job at the end ... there were some puzzles there you had to figure out. \n\tSilentTitan: Yeah.... I'll tell my brother-in-law... that kind of thing is right up his alley\n\tSilentTitan: oops I probably should have this practice game be rated... heh\n\tRemneb: I think that you can be a good teacher also...since i don't know who is your brother-in-law.\n\tRemneb: Gosh! I tough it was not a rated game.\n\tRemneb: Let's play again.I will challenge you for a rated game.No help this time.I should be stunt in a few moves :)\n\tSilentTitan: ah... yes of course .. my bro-in-law is in position 2 on the ladder dlwillson.\n\tRemneb: He's playing a game against TwoShort for the 2000 rating :)\n\nHomeworlds Online (SDG# 18167)\nVariants: "Hard time"\nStarted: 2010.11.18, Ended: 2010.12.2\nParticipants: dlwillson (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) dlwillson: Homeworld B2 Y3 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) dlwillson: Build G1 Dlwillson\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) TwoShort: Build G1 Twoshort\n\n8) dlwillson: B G1 Dlwillson\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) TwoShort: Build Y1 Twoshort\n\n12) dlwillson: B Y2 Dlwillson\n\n13) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n14) dlwillson: D Y1 Dlwillson G1 Rivendell\n\n15) TwoShort: Build G1 Twoshort\n\n16) dlwillson: Discover Y2 Dlwillson R1 Mordor\n\n17) TwoShort: Build G2 Yolonda\n\n18) dlwillson: Build G2 Dlwillson\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\n\n20) dlwillson: Move G2 Dlwillson Mordor\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Twoshort\nBuild Y3 Twoshort\n\n22) dlwillson: S Y2 Mordor\nM Y1 Rivendell Grogar\nM Y1 Grogar Twoshort\nC Twoshort Y\n\n23) TwoShort: Trade G3 Y3 Twoshort\n\n24) dlwillson: S G2 Mordor\nB G1 Dlwillson\nB R1 Dlwillson\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\n\n26) dlwillson: T R1 Y1 Dlwillson\n\n27) TwoShort: Trade G2 R2 Twoshort\n\n28) dlwillson: D Y1 Dlwillson B1 Delay\n\n29) TwoShort: Move G2 Yolonda Delay\n\n30) dlwillson: Move Y1 Delay Grogar\n\n31) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Yolonda Delay\nMove G1 Delay Dlwillson\nMove G2 Delay Dlwillson\nCatastrophe Dlwillson Green\n\tdlwillson: There's not much point in playing since a few turns ago, but I think I remember that you prefer to play it out, so that's what I'm doing.\n\tTwoShort: Because sometimes surprises happen (by definition) when you're pretty sure they won't, I do like to play a few moves past where it seems clear who will win. (e.g. a few moves ago) \r\n I don't really mind if you call it or not once it's completely positive who will win. (e.g. now :) )\n\n\tdlwillson: Very good. I'll leave the ladder alone for a week or two. Let some other folks have a chance to play you (or me, whomever).\n\nHomeworlds Online (SDG# 18095)\nStarted: 2010.11.18, Ended: 2010.12.22\nParticipants: ts52 (S), shelbytwest (N)\nWinner: ts52\n\n1) shelbytwest: Homeworld B2 R1 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) shelbytwest: Build G1 Shelbytwest\n\tts52: have a good game!\n\n4) ts52: Build G1 Ts52\n\tshelbytwest: Thanks! You too.\n\n5) shelbytwest: Trade G3 Y3 Shelbytwest\n\n6) ts52: Trade G1 Y1 Ts52\n\n\nHomeworlds Online (SDG# 18098)\nVariants: "Unrated"\nStarted: 2010.11.20, Ended: 2011.2.23\nParticipants: headphoned (S), Uglyfoot (W), Mandrel (N), OnePageWars (E)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) OnePageWars: Homeworld G3 Y2 B3\n\tMandrel: Have a good game all.\n\n3) headphoned: Homeworld R1 B3 G3\n\tOnePageWars: Thanks.\n\n4) Uglyfoot: Homeworld B3 Y2 G3\n\n5) Mandrel: B G1 Mandrel\n\n6) OnePageWars: Build B1 Onepagewars\n\n7) headphoned: B G1 Headphoned\n\tOnePageWars: TaGG!!\n\tUglyfoot: have a good game!\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) Mandrel: T G1 Y1 Mandrel\n\n10) OnePageWars: Trade B1 Y1 Onepagewars\n\n11) headphoned: Trade G1 Y1 Headphoned\n\n12) Uglyfoot: Trade G1 R1 Uglyfoot\n\n13) Mandrel: Build G1 Mandrel\n\n14) OnePageWars: Build B1 Onepagewars\n\n15) headphoned: B G1 Headphoned\n\n16) Uglyfoot: Build G1 Uglyfoot\n\n17) Mandrel: Trade G1 R1 Mandrel\n\n18) OnePageWars: Build Y1 Onepagewars\n\n19) headphoned: B G1 Headphoned\n\n20) Uglyfoot: Build G1 Uglyfoot\n\n21) Mandrel: Build Y1 Mandrel\n\n22) OnePageWars: Build Y2 Onepagewars\n\n23) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n24) Mandrel: Build Y2 Mandrel\nCatastrophe Onepagewars Yellow\n\n25) Uglyfoot: Discover G1 Uglyfoot Y1 Port\n\n26) Mandrel: Move Y1 Mandrel Onepagewars\n\n27) Uglyfoot: Build G1 Port\n\n28) Mandrel: Build G2 Mandrel\n\n29) Uglyfoot: Move G1 Port Onepagewars\n\n30) Mandrel: Build Y1 Onepagewars\n\n31) Uglyfoot: Build G2 Onepagewars\n\n32) Mandrel: Move G2 Mandrel Onepagewars\nCatastrophe Onepagewars Green\n\n33) Uglyfoot: Build Y1 Uglyfoot\n\n34) Mandrel: Trade Y1 B1 Mandrel\n\n35) Uglyfoot: Trade Y3 G3 Uglyfoot\n\n36) Mandrel: Discover B1 Mandrel G3 Tat\n\n37) Uglyfoot: Build G1 Port\n\n38) Mandrel: Build G2 Mandrel\n\n39) Uglyfoot: Discover G1 Port Y3 Shiny\n\n40) Mandrel: Move G2 Mandrel Tat\n\n41) Uglyfoot: Build G2 Port\n\n42) Mandrel: Build G2 Mandrel\n\n43) Uglyfoot: Build G2 Shiny\n\n44) Mandrel: Trade G2 Y2 Tat\n\n45) Uglyfoot: Trade G1 B1 Uglyfoot\n\n46) Mandrel: Build Y1 Tat\n\n47) Uglyfoot: Move B1 Uglyfoot Port\n\n48) Mandrel: Build B1 Tat\n\n49) Uglyfoot: Trade G2 Y2 Port\n\n50) Mandrel: Trade G3 R3 Mandrel\n\n51) Uglyfoot: Sacrifice B1 Port\nTrade G2 R2 Shiny\n\n52) Mandrel: Move R1 Mandrel Tat\n\n53) Uglyfoot: Build R1 Shiny\n\n54) Mandrel: Trade R3 B3 Mandrel\n\n55) Uglyfoot: Build R2 Uglyfoot\n\n56) Mandrel: Build R2 Tat\n\n57) Uglyfoot: Trade R2 B2 Uglyfoot\n\n58) Mandrel: Discover R2 Tat G1 Cold\n\n59) Uglyfoot: Build G2 Shiny\n\n60) Mandrel: Build G2 Mandrel\n\n61) Uglyfoot: Sacrifice B2 Uglyfoot\nTrade R1 B1 Shiny\nTrade G1 Y1 Shiny\n\n62) Mandrel: Move Y1 Tat Cold\n\n63) Uglyfoot: Build G1 Shiny\n\n64) Mandrel: Build Y2 Cold\n\n65) Uglyfoot: Build B1 Shiny\n\n66) Mandrel: Build Y3 Mandrel\n\n67) Uglyfoot: Sacrifice Y2 Port\nMove B1 Shiny Mandrel\nMove B1 Shiny Mandrel\nCatastrophe Mandrel B\n\n68) Mandrel: Sacrifice Y2 Mandrel\nMove Y2 Cold Uglyfoot\nMove Y1 Cold Uglyfoot\nCatastrophe Uglyfoot Yellow\n\n69) Uglyfoot: Build G2 Port\n\n70) Mandrel: Move B1 Tat Mandrel\n\n71) Uglyfoot: Trade R1 B1 Uglyfoot\n\n72) Mandrel: Sacrifice Y3 Mandrel\nMove B1 Mandrel Uglyfoot\nMove B1 Tat Mandrel\nMove B1 Mandrel Uglyfoot\nCatastrophe Uglyfoot Blue\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 18170)\nVariants: "Hard time"\nStarted: 2010.11.23, Ended: 2010.12.15\nParticipants: sompm (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) sompm: Homeworld G2 B1 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) sompm: Build Y1 Sompm\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) sompm: Build Y1 Sompm\n\n7) SilentTitan: Build Y2 Silenttitan\n\n8) sompm: Discover Y1 Sompm G3 Caboose\n\n9) SilentTitan: Discover Y1 Silenttitan B1 D_rgw\n\n10) sompm: Build Y2 Caboose\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) sompm: Build Y2 Sompm\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 D_rgw\nBuild Y3 Silenttitan\nBuild G1 Silenttitan\n\n14) sompm: Trade Y2 B2 Sompm\n\n15) SilentTitan: Trade Y3 R3 D_rgw\n\n16) sompm: Trade Y1 R1 Sompm\n\n17) SilentTitan: Move R3 D_rgw Caboose\n\tSilentTitan: ok... are you a beginner? Can I give advice?\n\tsompm: I'm not really a beginner, but you can give all the advice you want. Is that in reaction to that last move?\n\tSilentTitan: yes. I could sacrifice the Y2 in silenttitan and move the R3 in D_RGW into your homeworld and I was wondering if you had missed that?\n\tsompm: apparently so. Thank you. That might not have been in your best interest, but the game may be slightly more interesting now. I'll try to be more aware.\n\n18) sompm: Sacrifice Y2 Caboose\nMove Y1 Caboose D_rgw\nDiscover B2 Sompm Y3 Progress\n\n19) SilentTitan: Trade Y1 R1 D_rgw\n\n20) sompm: Sacrifice Y1 D_rgw\nDiscover B2 Progress G1 Congress\n\n21) SilentTitan: Move Y2 Silenttitan Congress\n\n22) sompm: Build R1 Sompm\n\n23) SilentTitan: Sacrifice R1 D_rgw\nAttack B2 Congress South\n\n24) sompm: Build R1 Sompm\n\n25) SilentTitan: Build B1 Congress\n\n\nHomeworlds Online (SDG# 18136)\nVariants: "Unrated"\nStarted: 2010.11.24, Ended: 2011.1.10\nParticipants: sompm (S), daselva (W), zoltar (N), OnePageWars (E)\nWinner: zoltar\n\n1) zoltar: Homeworld R2 B1 G3\n\n2) OnePageWars: Homeworld R3 G2 B3\n\n3) sompm: Homeworld B3 G2 Y3\n\n4) daselva: Homeworld B1 R3 G3\n\n5) zoltar: Build G1 Zoltar\n\n6) OnePageWars: Build B1 Onepagewars\n\n7) sompm: Build Y1 Sompm\n\n8) daselva: Build G1 Daselva\n\n9) zoltar: Trade G1 Y1 Zoltar\n\n10) OnePageWars: Trade B1 Y1 Onepagewars\n\n11) sompm: Build Y1 Sompm\n\n12) daselva: Build G1 Daselva\n\n13) zoltar: Build G1 Zoltar\n\n14) OnePageWars: Build Y1 Onepagewars\n\n15) sompm: Discover Y1 Sompm G1 Technochocolate\n\n16) daselva: Trade G3 Y3 Daselva\n\n17) zoltar: Build Y2 Zoltar\n\n18) OnePageWars: Move Y1 Onepagewars Technochocolate\n\n19) sompm: Build Y2 Sompm\n\n20) daselva: Build Y2 Daselva\n\n21) zoltar: Trade Y1 B1 Zoltar\n\n22) OnePageWars: Move Y1 Technochocolate Sompm\nCatastrophe Sompm Y\n\n23) daselva: Trade Y2 R2 Daselva\n\tOnePageWars: Sorry Sompm!\n\n24) zoltar: Discover B1 Zoltar G3 Greengiant\n\n25) OnePageWars: Build B1 Onepagewars\n\n26) daselva: Discover R2 Daselva Y2 S1\n\n27) zoltar: Build Y1 Zoltar\n\n28) OnePageWars: Build Y1 Onepagewars\n\n29) daselva: Move G1 Daselva S1\n\n30) zoltar: Trade G1 R1 Zoltar\n\n31) OnePageWars: Trade Y1 R1 Onepagewars\n\n32) daselva: Build R1 S1\n\n33) zoltar: Move Y2 Zoltar Greengiant\n\n34) OnePageWars: Build Y1 Onepagewars\n\n35) daselva: Move R2 S1 Greengiant\n\n36) zoltar: Sacrifice R1 Zoltar\nAttack R2W Greengiant\n\n37) OnePageWars: Move Y1 Onepagewars Technochocolate\n\n38) daselva: Discover R1 S1 Y3 S2\n\n39) zoltar: Build R1 Greengiant\n\n40) OnePageWars: Trade B1 G1 Onepagewars\n\n41) daselva: Move G1 S1 S2\n\n42) zoltar: Move R2 Greengiant Technochocolate\n\n43) OnePageWars: Move Y1 Technochocolate Onepagewars\n\n44) daselva: Build R1 S2\n\n45) zoltar: Attack Y1S Technochocolate\n\n46) OnePageWars: Build B1 Onepagewars\n\n47) daselva: Discover R1 S2 Y2 S3\n\n48) zoltar: Build B1 Greengiant\n\n49) OnePageWars: Build B2 Onepagewars\n\n50) daselva: Discover R1 S2 Y2 S4\n\n51) zoltar: Sacrifice Y2 Greengiant\nMove B1 Greengiant Technochocolate\nMove B1 Technochocolate Onepagewars\nCatastrophe Onepagewars B\n\tOnePageWars: I know what I'll start calling my planets that I discover: Peter, Susan, Edmund, Lucy, Tumnus, Reepicheep, Aslan, White Witch, Caspian, DawnTreader, Narnia, Calormen, Archenland, etc. :)\r\nDoes anyone notice a pattern?\n\tOnePageWars: No, Reepicheep comes first. I like him.\n\n52) OnePageWars: Discover Y1 Onepagewars Y1 Reepicheep\n\n53) daselva: Build Y2 Daselva\n\n54) zoltar: Build Y2 Zoltar\n\n55) OnePageWars: Build Y2 Onepagewars\n\n56) daselva: Trade Y2 R2 Daselva\n\tzoltar: Nah: that would be a powerful move, but too aggressive, I think.\n\n57) zoltar: Move Y2 Zoltar Greengiant\n\n58) OnePageWars: Build Y2 Onepagewars\n\n59) daselva: Build Y3 Daselva\n\n60) zoltar: Build Y3 Greengiant\n\n61) OnePageWars: Build Y3 Onepagewars\n\n62) daselva: Trade Y3 G3 Daselva\nCatastrophe Onepagewars Y\n\n63) zoltar: Discover Y2 Greengiant B2 Bluebell\n\n64) daselva: Move R1 S4 S2\n\n65) zoltar: Move R2 Technochocolate S2\n\n66) daselva: Move R2 Daselva Bluebell\n\n67) zoltar: Sacrifice R1 Greengiant\nAttack R2W Bluebell\n\n68) daselva: Move G3 Daselva S3\n\n69) zoltar: Attack G1W S2\n\n70) daselva: Move R1 S2 S3\n\n71) zoltar: Discover Y1 Technochocolate G2 Greenbean\n\n72) daselva: Build G1 Daselva\n\n73) zoltar: Build Y1 Greenbean\n\n74) daselva: Trade G1 B1 Daselva\n\n75) zoltar: Build Y2 Greenbean\n\n76) daselva: Move B1 Daselva S3\n\n77) zoltar: Build Y2 Greengiant\n\n78) daselva: Move G3 S3 S2\n\n79) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Bluebell\nBuild Y3 Bluebell\nBuild Y3 Zoltar\n\n80) daselva: Sacrifice R1 S3\nAttack R2N S2\n\n81) zoltar: Sacrifice Y3 Greengiant\nMove Y1 Greenbean Daselva\nMove Y1 Greenbean Daselva\nMove Y2 Bluebell Daselva\nCatastrophe Daselva Y\n\n82) daselva: Move G3 S2 S3\n\n83) zoltar: Move Y3 Bluebell Daselva\n\n84) zoltar: Attack G1W Daselva\n\n\nHomeworlds Online (SDG# 18256)\nVariants: "Hard time"\nStarted: 2010.11.24, Ended: 2010.12.14\nParticipants: dethdukk (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld G3 B2 Y3\n\n2) dethdukk: Homeworld B1 R2 G3\n\n3) sompm: Build Y1 Sompm\n\n4) dethdukk: Build G1 Dethdukk\n\n5) sompm: Build Y1 Sompm\n\n6) dethdukk: Build G1 Dethdukk\n\n7) sompm: Discover Y1 Sompm G1 Bandicoot\n\n8) dethdukk: Trade G1 Y1 Dethdukk\n\n9) sompm: Build Y2 Bandicoot\n\n10) dethdukk: Build Y2 Dethdukk\n\n11) sompm: Build Y2 Bandicoot\n\n\nHomeworlds Online (SDG# 18234)\nVariants: "Hard time"\nStarted: 2010.11.24, Ended: 2010.12.10\nParticipants: SilentTitan (S), Remneb (N)\nWinner: SilentTitan\n\n1) Remneb: Homeworld B1 R2 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Remneb: Trade G1 B1 Remneb\n\n6) SilentTitan: Trade G3 B3 Silenttitan\n\tRemneb: I've just started a new topic in the forum:Homeworld Tactical.It is in the General area of the Forum.It could become the basic for a book about the game.All players are welcome to correct my mistakes.\n\n7) Remneb: Build G1 Remneb\n\n8) SilentTitan: Trade B3 Y3 Silenttitan\n\n9) Remneb: Trade G1 Y1 Remneb\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) Remneb: Build G1 Remneb\n\n12) SilentTitan: Discover Y1 Silenttitan R1 Killers\n\n13) Remneb: Discover G1 Remneb Y3 Edinga\n\n14) SilentTitan: Discover Y1 Killers G3 Areosmith\n\n15) Remneb: Build B1 Remneb\n\n16) SilentTitan: Build Y1 Silenttitan\n\tSilentTitan: doing much better in this game\n\tSilentTitan: lol... of course you actually won the last game ... let's not forget that\r\n\n\n17) Remneb: Build Y2 Remneb\n\tRemneb: :)\n\n18) SilentTitan: Build Y2 Areosmith\n\n19) Remneb: Trade B1 R1 Remneb\n\tRemneb: How can your Areosmith system (g3)be connected to your Homeworld (r3,b2)? Same stars of 3 pips?You should have a one pip star to be connected yes or no?\n\n20) SilentTitan: Trade Y1 B1 Silenttitan\n\tSilentTitan: connected isn't really the issue... it's not like a supply line. I used a 1-pip to get to the three pip ... but once I left the 1-pip system I went back to the bank. See down at 18:22:02 where it says the killers system has been abandoned to the hyperspatial flux? if I wanted to move back to my homeworld with something in areosmith (which would take two moves) I would have to discover another 1-pip world and from there I could move to my homeworld\n\tSilentTitan: I = it went back to the bank (meaning the 1-pip world named killers\n\n21) Remneb: Build B2 Remneb\n\tRemneb: So a new system discovered by a ship coming from another system then the Homeworld do not have to be connected to the Homeworld ?\n\n22) SilentTitan: Discover B1 Silenttitan Y1 Checkcheck\n\tSilentTitan: correct it only has to be connected to the previous system. The one it came from. If you came from a 1p you can only go to a 2p or 3p in one move. if you came from a homeworld then you can only go the size missing in the homeworld. In this game I can only go out to 1p and you can only go out to 3p stars from our homeworlds. From each of those system you can go to any legit system. Note however I can only gain access to your homeworld from a 3p star and you can only get to mine from a 1p star. Keep in mind if I were to burn the 2p star in my own homeworld our homeworlds would be connected directly together. \n\n23) Remneb: Trade B2 R2 Remneb\n\tRemneb: That is clear now.Thanks.dlwillson lost his game against TwoShort.TwoShort have now a rating of 2001 !\n\n24) SilentTitan: Build Y2 Silenttitan\n\n25) Remneb: Discover R1 Remneb Y3 Lexington\n\n26) SilentTitan: Sacrifice B1 Checkcheck\nTrade Y2 R2 Areosmith\n\n27) Remneb: Discover R1 Lexington Y2 Trenton\n\n28) SilentTitan: Trade Y3 G3 Silenttitan\n\n29) Remneb: Move R1 Trenton Edinga\n\n30) SilentTitan: Discover G1 Silenttitan Y1 Okgo\n\n31) Remneb: Move Y1 Remneb Edinga\n\n32) SilentTitan: Build Y2 Areosmith\n\n33) Remneb: Build Y3 Remneb\n\n34) SilentTitan: Build Y3 Silenttitan\n\tSilentTitan: ok... you've done great up till this last move. I beleive that you'd be better off discovering a new system with that y1 rather than pilling up two yellows in Edinga.\n\tRemneb: I'm doing that cause i have an eye on the 3 yellow in the reserve ( 2 of 3 pips and 1 of 2 pips).In think sacrifying my g3 to have these 3 yellow can give me more power...well maybe it's not a so good idea.\n\tRemneb: I need a yellow ship in each system if i don't want too many of that color in the same system.\n\n35) Remneb: Move Y1 Edinga Okgo\n\n36) SilentTitan: Build R1 Areosmith\n\n37) Remneb: Move Y2 Remneb Edinga\n\n38) SilentTitan: Sacrifice Y2 Silenttitan\nMove R2 Areosmith Remneb\nMove R1 Areosmith Remneb\nCatastrophe Remneb Red\n\n39) Remneb: Move R1 Edinga Okgo\n\n40) SilentTitan: Build Y2 Silenttitan\n\n41) Remneb: Attack G1 Okgo\n\n42) SilentTitan: Trade Y2 B2 Silenttitan\n\n43) Remneb: Discover R1 Okgo R3 Sangrilla\n\n44) SilentTitan: Discover Y2 Areosmith B1 Tmbg\n\n45) Remneb: Build Y2 Remneb\n\n46) SilentTitan: Trade Y2 B2 Tmbg\n\n47) Remneb: Move B1 Remneb Sangrilla\n\n48) SilentTitan: Build Y2 Areosmith\n\n49) Remneb: Discover Y2 Remneb G2 Malvern\n\n50) SilentTitan: Sacrifice B2 Tmbg\nTrade Y2 B2 Areosmith\nTrade Y1 B1 Areosmith\n\n51) Remneb: Sacrifice G3 Remneb\nBuild G1 Edinga\nBuild B3 Sangrilla\nBuild Y1 Malvern\n\n52) SilentTitan: Sacrifice Y3 Silenttitan\nMove B2 Silenttitan Remneb\nMove B2 Areosmith Remneb\nMove B1 Areosmith Remneb\nCatastrophe Remneb Blue\n\n\tSilentTitan: good game. \n\tRemneb: Well well...i't never cross my mind that a player can sacrifice 3 of his own ship to destroy a system!\n\tSilentTitan: you had me far out numbered. good thing I had a plan\n\nHomeworlds Online (SDG# 18189)\nStarted: 2010.11.27, Ended: 2010.12.10\nParticipants: dethdukk (S), goblin981 (N)\nWinner: goblin981\n\n1) goblin981: Homeworld G1 Y2 B3\n\n2) dethdukk: Homeworld G1 B3 G3 *\n\n3) goblin981: Build B1 Goblin981\n\n4) dethdukk: Build G1 Dethdukk\n\n5) goblin981: Build B1 Goblin981\n\n6) dethdukk: Trade G3 Y3 Dethdukk\n\n7) goblin981: Trade B1 Y1 Goblin981\n\n\nHomeworlds Online (SDG# 18311)\nVariants: "Hard time"\nStarted: 2010.11.27, Ended: 2010.12.21\nParticipants: goblin981 (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld B1 G2 Y3\n\n2) goblin981: Homeworld G3 Y1 B3\n\n3) shmil1: Build Y1 Shmil1\n\n4) goblin981: Build B1 Goblin981\n\n5) shmil1: Build Y1 Shmil1\n\n6) goblin981: Build B1 Goblin981\n\n7) shmil1: Trade Y1 R1 Shmil1\n\n8) goblin981: Trade B3 R3 Goblin981\n\n9) shmil1: Build Y1 Shmil1\n\n10) goblin981: Build R1 Goblin981\n\n11) shmil1: Trade Y1 G1 Shmil1\n\n12) goblin981: Trade B1 Y1 Goblin981\n\n13) shmil1: Build G1 Shmil1\n\n14) goblin981: Build Y2 Goblin981\n\n15) shmil1: Build Y2 Shmil1\n\n16) goblin981: Discover Y2 Goblin981 G2 Green\n\n17) shmil1: Trade Y2 R2 Shmil1\n\n18) goblin981: Build Y2 Green\n\n19) shmil1: Discover R2 Shmil1 Y3 Slunce\n\n20) goblin981: Build Y2 Green\n\n21) shmil1: Move R2 Slunce Green\n\n22) goblin981: Discover Y2 Green G3 Bobo\n\n23) shmil1: Attack Y2 Green\n\n24) goblin981: Build B1 Goblin981\n\n25) shmil1: Build R1 Green\n\n26) goblin981: Move Y2 Green Bobo\n\n27) shmil1: Sacrifice Y2 Green\nMove R1 Green Goblin981\nMove R2 Green Goblin981\nCatastrophe Goblin981 Red\n\n28) goblin981: Sacrifice B1 Goblin981\nTrade Y2 G2 Bobo\n\n29) shmil1: Discover G1 Shmil1 Y3 Solnecnyjkrug\n\n30) goblin981: Build G1 Bobo\n\n31) shmil1: Move G1 Shmil1 Bobo\nCatastrophe Bobo Green\n\n32) goblin981: Build Y2 Goblin981\n\n33) shmil1: Discover G1 Solnecnyjkrug Y2 Zluty\n\n34) goblin981: Build B1 Goblin981\n\n35) shmil1: Move G1 Zluty Goblin981\n\n36) goblin981: Trade B1 R1 Goblin981\n\n37) shmil1: Sacrifice R1 Shmil1\nAttack R1 Goblin981\n\n38) goblin981: Discover B1 Goblin981 G2 Gogo\n\n39) shmil1: Attack Y1 Goblin981\n\tgoblin981: Damn it. Nicely done.\n\n40) goblin981: Build B1 Gogo\n\n41) shmil1: Build Y2 Goblin981\nCatastrophe Goblin981 Yellow\n\n\nHomeworlds Online (SDG# 18249)\nVariants: "Unrated"\nStarted: 2010.11.28, Ended: 2010.12.13\nParticipants: daselva (S), lorgar (N)\nWinner: daselva\n\n1) lorgar: Homeworld G3 Y2 B3\n\n2) daselva: Homeworld R2 B1 G3\n\n3) lorgar: Build B1 Lorgar\n\n4) daselva: Build G1 Daselva\n\n5) lorgar: Build B1 Lorgar\n\n6) daselva: Build G1 Daselva\n\n7) lorgar: Discover B1 Lorgar G1 Tc2\n\n8) daselva: Trade G1 Y1 Daselva\n\n9) lorgar: Build B2 Tc2\n\n10) daselva: Trade G3 R3 Daselva\n\n11) lorgar: Trade B2 R2 Tc2\n\n12) daselva: Build G1 Daselva\n\n13) lorgar: Build B2 Tc2\n\n14) daselva: Build G2 Daselva\n\n15) lorgar: Trade B2 G2 Tc2\n\n16) daselva: Discover G1 Daselva Y3 S1\n\n17) lorgar: Build B2 Tc2\n\n18) daselva: Build G2 S1\n\n\n19) lorgar: Trade B2 Y2 Tc2\n\n20) daselva: Move R3 Daselva S1\n\n21) lorgar: Move B3 Lorgar Tc2\n\n22) daselva: Discover R3 S1 Y1 S2\n\n23) lorgar: Sacrifice Y2 Tc2\nMove B3 Tc2 S1\nMove B3 S1 Daselva\n\n24) daselva: Move R3 S2 Lorgar\n\n25) lorgar: Sacrifice R2 Tc2\nAttack G2 Daselva\nAttack G1 Daselva\n\n26) daselva: Attack B1 Lorgar\n\n\nHomeworlds Online (SDG# 18268)\nVariants: "Hard time"\nStarted: 2010.11.30, Ended: 2011.1.9\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Build G1 Lorgar\n\n6) SilentTitan: Build G2 Silenttitan\n\n7) lorgar: Trade G1 B1 Lorgar\n\n8) SilentTitan: Trade G1 Y1 Silenttitan\n\n9) lorgar: Trade G1 Y1 Lorgar\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) lorgar: Build Y2 Lorgar\n\n12) SilentTitan: Discover Y1 Silenttitan R1 Xi\n\n13) lorgar: Discover Y2 Lorgar G3 Mu\n\n14) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Xi\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n15) lorgar: Build Y3 Mu\n\n16) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Xi Mu\nMove Y2 Xi Mu\nCatastrophe Mu Yellow\n\n17) lorgar: Build G1 Lorgar\n\tlorgar: nice shot\n\n18) SilentTitan: Discover Y3 Silenttitan B1 Alpha\n\n19) lorgar: Build B1 Lorgar\n\n20) SilentTitan: Build Y1 Silenttitan\n\n21) lorgar: Discover B1 Lorgar G3 Armadillo\n\n22) SilentTitan: Discover Y3 Alpha B3 Beta\n\n23) lorgar: Build B1 Lorgar\n\n24) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Beta\nBuild Y2 Silenttitan\n\n25) lorgar: Trade B1 R1 Lorgar\n\n26) SilentTitan: Trade Y2 R2 Beta\n\n27) lorgar: Build B1 Armadillo\n\n28) SilentTitan: Trade Y2 G2 Silenttitan\n\n29) lorgar: Build B2 Lorgar\n\n30) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Beta\nBuild Y2 Silenttitan\n\n31) lorgar: Trade B2 R2 Lorgar\n\n32) SilentTitan: Trade Y2 B2 Beta\n\n33) lorgar: Move Y1 Lorgar Armadillo\n\n34) SilentTitan: Discover B2 Beta G2 Omega\n\n35) lorgar: Trade B1 R1 Armadillo\n\n36) SilentTitan: Trade Y1 B1 Silenttitan\n\n37) lorgar: Build B3 Armadillo\n\n38) SilentTitan: Build B3 Omega\n\n39) lorgar: Discover B1 Armadillo G1 Proko\n\n40) SilentTitan: Trade B2 R2 Omega\n\n41) lorgar: Build B2 Proko\n\n42) SilentTitan: Move Y3 Beta Proko\n\n43) lorgar: Sacrifice B2 Proko\nTrade R1 Y1 Lorgar\nPass\n\n44) SilentTitan: Trade Y3 G3 Silenttitan\n\n45) lorgar: Build Y2 Armadillo\n\n46) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Proko\nBuild Y3 Silenttitan\nBuild B2 Omega\n\n47) lorgar: Sacrifice Y2 Armadillo\nMove B3 Armadillo Omega\nMove B1 Proko Omega\nCatastrophe Omega Blue\n\n48) SilentTitan: Move Y3 Proko Armadillo\n\n49) lorgar: Build R1 Lorgar\n\n50) SilentTitan: Sacrifice R2 Beta\nAttack Y1 Armadillo North\nAttack R1 Armadillo North\n\n\nHomeworlds Online (SDG# 18125)\nStarted: 2010.11.30, Ended: 2010.12.3\nParticipants: lorgar (S), mathochist (N)\nWinner: lorgar\n\n\nHomeworlds Online (SDG# 18119)\nVariants: "Hard time"\nStarted: 2010.11.30, Ended: 2010.12.5\nParticipants: Aristos (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) Aristos: Homeworld Y1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Aristos: Build G1 Aristos\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) Aristos: Discover G1 Aristos G3 Babylon1\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) Aristos: Build G1 Aristos\n\n9) dlwillson: Discover Y1 Dlwillson B2 Goldie\n\n10) Aristos: Trade G3 Y3 Aristos\n\n11) dlwillson: Build Y2 Dlwillson\n\n12) Aristos: Discover Y3 Aristos G3 Ixion\n\n13) dlwillson: M Y1 Goldie Babylon1\n\n14) Aristos: Build Y2 Ixion\n\n15) dlwillson: Build Y3 Babylon1\n\n16) Aristos: Move Y3 Ixion Aristos\n\n17) dlwillson: T Y2 R2 Dlwillson\n\n18) Aristos: Trade Y3 R3 Aristos\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dlwillson\nBuild Y3 Babylon1\nBuild R1 Dlwillson\n\n20) Aristos: Build Y3 Ixion\n\n21) dlwillson: S Y2 Dlwillson\nM Y3 Babylon1 Aristos\nM Y3 Babylon1 Aristos\n\n22) Aristos: Move Y2 Ixion Aristos\nCatastrophe Aristos Y\n\n23) dlwillson: T R2 G2 Dlwillson\n\n24) Aristos: Discover Y3 Ixion G2 Flank\n\n25) dlwillson: B Y1 Dlwillson\n\tdlwillson: You're doing very well for several moves now.\n\n26) Aristos: Build R1 Aristos\n\tAristos: Thanks.\n\n27) dlwillson: T Y1 B1 Dlwillson\n\n28) Aristos: Sacrifice R1 Aristos\nAttack Y1 Babylon1\n\n29) dlwillson: B B1 Dlwillson\n\n30) Aristos: Move Y3 Flank Dlwillson\n\tAristos: Dangit... I had it right and accidentally clicked the undo button. \n\n31) dlwillson: B Y1 Dlwillson\nC Dlwillson Y\n\n32) Aristos: Trade G1 B1 Aristos\n\n33) dlwillson: T B1 Y1 Dlwillson\n\n34) Aristos: Build Y1 Babylon1\n\tAristos: I'm not sure I can stop you.\n\n35) dlwillson: B Y2 Dlwillson\n\tAristos: Ah. Got it!\n\n36) Aristos: Move Y1 Babylon1 Aristos\n\n37) dlwillson: S Y2 Dlwillson\nM R1 Dlwillson Aristos\nM B1 Dlwillson Aristos\n\n38) Aristos: Sacrifice R3 Aristos\nAttack B1 Aristos\nAttack R1 Aristos\nPass\n\n39) dlwillson: B G1 Dlwillson\n\n40) Aristos: Build Y2 Babylon1\n\tdlwillson: Huh. I still don't know how this is going to end!\n\n41) dlwillson: Trade G2 R2 Dlwillson\n\n42) Aristos: Build Y2 Babylon1\n\tdlwillson: So, how many times have you played Homeworlds in real life?\n\n43) dlwillson: Move R2 Dlwillson Aristos\n\n44) Aristos: Sacrifice Y2 Babylon1\nMove B1 Aristos Dlwillson\nMove B1 Aristos Dlwillson\n\n45) dlwillson: Sacrifice R2 Aristos\nAttack B1 Dlwillson\nAttack B1 Dlwillson\n\tAristos: About 5 or 6. I can't get most people to play it, even among the friends that like most board games. "Too abstract." *sigh*\n\n46) Aristos: Build Y2 Babylon1\n\n47) dlwillson: Build Y2 Dlwillson\n\n48) Aristos: Sacrifice Y2 Babylon1\nMove R1 Aristos Dlwillson\nMove Y2 Babylon1 Aristos\n\n49) dlwillson: S B1 Dlwillson\nT Y2 R2 Dlwillson\n\n50) Aristos: Sacrifice Y1 Babylon1\nMove R1 Dlwillson Aristos\n\n51) dlwillson: B B1 Dlwillson\n\n52) Aristos: Trade Y1 B1 Aristos\n\tdlwillson: that's it for me for tonight. see you tomorrow. join the ladder, you'll do great.\n\n53) dlwillson: D B1 Dlwillson Y1 Dingo\n\n54) Aristos: Sacrifice G1 Babylon1\nBuild R1 Aristos\n\tAristos: Ladder?\n\n55) dlwillson: M B1 Dlwillson Aristos\n\n56) Aristos: Discover B1 Aristos Y1 Wrongway\n\n57) dlwillson: M B1 Dingo Aristos\n\n58) Aristos: Move B1 Wrongway Dlwillson\n\n59) dlwillson: Sacrifice G1 Dlwillson\nBuild B2 Aristos\nCatastrophe Aristos B\n\n\tdlwillson: Great game, Aristos. You should go tear up the ladder!\n\nHomeworlds Online (SDG# 18124)\nStarted: 2010.11.30, Ended: 2010.12.4\nParticipants: rootbier (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 18186)\nStarted: 2010.12.3, Ended: 2010.12.30\nParticipants: lorgar (S), ts52 (N)\nWinner: lorgar\n\n1) ts52: Homeworld Y1 B3 G3\n\n2) lorgar: Homeworld B2 G1 Y3\n\tts52: have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build Y1 Lorgar\n\n5) ts52: Build G1 Ts52\n\n6) lorgar: Discover Y1 Lorgar G3 Hitherto\n\n7) ts52: Discover G1 Ts52 B2 Gonzo\n\n8) lorgar: Build Y1 Lorgar\n\n9) ts52: Build G2 Gonzo\n\n10) lorgar: Build Y2 Hitherto\n\n11) ts52: Trade G2 Y2 Gonzo\n\n12) lorgar: Trade Y1 R1 Lorgar\n\n13) ts52: Trade G1 R1 Ts52\n\n14) lorgar: Trade Y3 G3 Lorgar\n\n15) ts52: Build G1 Gonzo\n\n16) lorgar: Build G2 Lorgar\n\n17) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Hitherto\nMove G1 Hitherto Lorgar\nCatastrophe Lorgar Green\n\n18) lorgar: Trade R1 G1 Lorgar\n\n19) ts52: Build R1 Ts52\n\n20) lorgar: Move Y2 Hitherto Lorgar\n\n21) ts52: Move R1 Ts52 Gonzo\n\n22) lorgar: Build G1 Lorgar\n\n23) ts52: Build G2 Gonzo\n\n24) lorgar: Trade G1 R1 Lorgar\n\n25) ts52: Build R2 Ts52\n\n26) lorgar: Build R2 Lorgar\n\n27) ts52: Trade G2 Y2 Gonzo\n\n28) lorgar: Move R1 Lorgar Hitherto\n\n29) ts52: Discover R2 Ts52 Y2 Zoe\n\n30) lorgar: Build R2 Hitherto\n\n31) ts52: Sacrifice G3 Ts52\nBuild R3 Ts52\nBuild R3 Gonzo\nBuild R3 Zoe\n\n32) lorgar: Build Y1 Hitherto\n\n33) ts52: Move R3 Zoe Hitherto\n\n34) lorgar: Build Y3 Lorgar\n\n35) ts52: Attack Y1 Hitherto\n\n36) lorgar: Move R2 Hitherto Lorgar\n\n37) ts52: A R1 Hitherto\n\n38) lorgar: Discover Y1 Hitherto G2 Thylacine\n\n39) ts52: Move R3 Hitherto Thylacine\n\n40) lorgar: Discover Y1 Thylacine G1 Bucephale\n\n41) ts52: Build Y3 Gonzo\n\n42) lorgar: Build Y3 Bucephale\n\n43) ts52: Move R1 Gonzo Hitherto\n\n44) lorgar: Move R2 Lorgar Bucephale\n\n45) ts52: Discover G1 Gonzo B3 Grover\n\n46) lorgar: Build G2 Lorgar\n\n47) ts52: M Y3 Gonzo Grover\n\n48) lorgar: Sacrifice Y3 Bucephale\nMove R2 Lorgar Ts52\nDiscover R2 Bucephale B2 Atlas\nMove R2 Atlas Ts52\nCatastrophe Ts52 Red\n\n\tlorgar: gg, thanks for the game\n\tts52: Well played sir. I should've seen that coming.\n\tlorgar: It is always a pleasure to play with such a subtle schemer. I learn from each game and hope that you will keep teaching me.\n\tts52: I'd be happy to play again any time. \n\nHomeworlds Online (SDG# 18413)\nVariants: "Hard time"\nStarted: 2010.12.3, Ended: 2011.1.9\nParticipants: mneme (S), dlwillson (N)\nWinner: mneme\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) mneme: Homeworld B1 R2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) mneme: Build G1 Mneme\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) dlwillson: B Y2 Dlwillson\n\n8) mneme: Build Y2 Mneme\n\n9) dlwillson: T Y1 B1 Dlwillson\n\n10) mneme: Trade Y2 B2 Mneme\n\n11) dlwillson: B G1 Dlwillson\n\n12) mneme: Build Y1 Mneme\n\n13) dlwillson: Build Y2 Dlwillson\n\n14) mneme: Discover Y1 Mneme B3 Hunter\n\n15) dlwillson: D Y2 Dlwillson G2 Bears\n\n16) mneme: Discover B2 Mneme Y3 Waystation\n\n17) dlwillson: Discover Y2 Dlwillson B2 Tigers\n\n18) mneme: Build G1 Mneme\n\n19) dlwillson: M G1 Dlwillson Tigers\n\n20) mneme: Trade G1 B1 Mneme\n\n21) dlwillson: B G1 Dlwillson\n\n22) mneme: Build G1 Mneme\n\n23) dlwillson: T B1 R1 Dlwillson\n\n24) mneme: Trade G1 R1 Mneme\n\n25) dlwillson: M G1 Tigers Hunter\n\n26) mneme: Sacrifice G3 Mneme\nBuild B1 Waystation\nBuild B2 Waystation\nBuild B3 Mneme\n\n27) dlwillson: S R1 Dlwillson\nAttack Y1 Hunter\n\n28) mneme: Trade B3 G3 Mneme\n\n29) dlwillson: S G3 Dlwillson\nB Y2 Hunter\nB Y3 Bears\nB Y3 Tigers\n\n30) mneme: Build B3 Mneme\n\n31) dlwillson: T Y1 R1 Hunter\n\n32) mneme: Move G3 Mneme Hunter\n\n33) dlwillson: M R1 Hunter Bears\n\n34) mneme: Sacrifice R1 Mneme\nAttack Y2 Hunter\n\n35) dlwillson: M Y3 Tigers Hunter\n\n36) mneme: Move G3 Hunter Tigers\n\n37) dlwillson: M Y3 Hunter Tigers\n\n38) mneme: Sacrifice Y2 Hunter\nMove G3 Tigers Hunter\nDiscover G3 Hunter R2 Refuge\n\n39) dlwillson: Move Y2 Bears Waystation\n\n40) mneme: Sacrifice B2 Waystation\nTrade B1 R1 Waystation\nTrade B3 R3 Mneme\n\n41) dlwillson: S R1 Bears\nA R1 Waystation\n\n42) mneme: Sacrifice Y1 Mneme\nMove G3 Refuge Dlwillson\n\n\tmneme: Good game!\n\tdlwillson: One of the classic blunders! Oh well. Good game anyway. :-)\n\tmneme: Not noticing the mate threat? Pretty much, yeah.\n\nHomeworlds Online (SDG# 18419)\nVariants: "Hard time"\nStarted: 2010.12.4, Ended: 2011.1.27\nParticipants: agentofchaos (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld R3 B1 G3\n\n3) zoltar: Build G1 Zoltar\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) zoltar: Build G1 Zoltar\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) zoltar: Trade G1 B1 Zoltar\n\n10) agentofchaos: Trade G1 B1 Agentofchaos\n\n11) zoltar: Build B2 Zoltar\n\n12) agentofchaos: Build B2 Agentofchaos\n\n13) zoltar: Discover B1 Zoltar G3 Greengiant\n\n14) agentofchaos: Trade B2 R2 Agentofchaos\n\n15) zoltar: Trade B2 R2 Zoltar\n\n16) agentofchaos: Discover R2 Agentofchaos Y2 Ajeroth\n\n17) zoltar: Build B2 Greengiant\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) zoltar: Trade B2 Y2 Greengiant\n\n20) agentofchaos: Build B2 Agentofchaos\n\n21) zoltar: Sacrifice Y2 Greengiant\nMove B1 Greengiant Ajeroth\nMove B1 Ajeroth Agentofchaos\nCatastrophe Agentofchaos B\n\n22) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R1 Ajeroth\n\n23) zoltar: Discover R2 Zoltar G3 Greengiant\n\n24) agentofchaos: Build G1 Agentofchaos\n\n25) zoltar: Build G1 Zoltar\n\n26) agentofchaos: Move G1 Agentofchaos Ajeroth\n\n27) zoltar: Trade G1 B1 Zoltar\n\n28) agentofchaos: Discover G1 Ajeroth Y3 Diassomer\n\n29) zoltar: Build G1 Zoltar\n\n30) agentofchaos: Build G1 Diassomer\n\n31) zoltar: Discover G1 Zoltar Y3 Mellowyellow\n\n32) agentofchaos: Build G2 Diassomer\n\n33) zoltar: Build G2 Zoltar\n\n34) agentofchaos: Move G1 Diassomer Zoltar\n\n35) zoltar: Sacrifice B1 Zoltar\nTrade G3 B3 Zoltar\n\n36) agentofchaos: Sacrifice G2 Diassomer\nBuild G2 Zoltar\nBuild G2 Diassomer\n\n37) zoltar: Build G3 Mellowyellow\n\n38) agentofchaos: Trade G1 B1 Zoltar\n\n39) zoltar: Sacrifice R2 Greengiant\nAttack B1 Zoltar\nAttack G2 Zoltar\n\tzoltar: I think I'm toast.\n\n40) agentofchaos: Build Y1 Agentofchaos\n\n41) zoltar: Discover G2 Zoltar Y3 Oldyeller\n\n42) agentofchaos: Discover G1 Diassomer B2 Glumph\n\n43) zoltar: Sacrifice G3 Mellowyellow\nBuild G1 Zoltar\nBuild G3 Mellowyellow\nBuild G3 Oldyeller\n\n44) agentofchaos: Build Y2 Agentofchaos\n\n45) zoltar: Move Y1 Zoltar Agentofchaos\nCatastrophe Agentofchaos Y\n\n\nHomeworlds Online (SDG# 31968)\nStarted: 2017.4.14, Ended: 2017.8.9\nParticipants: fogus (S), panglott (N)\nWinner: fogus\n\n1) panglott: Homeworld R3 B2 G3\n\n2) fogus: Homeworld Y1 B2 G3\n\n3) panglott: Build G1 Panglott\n\n4) fogus: Build G1 Fogus\n\n5) panglott: Build G1 Panglott\n\n6) fogus: Build G2 Fogus\n\n7) panglott: Trade G1 Y1 Panglott\n\n8) fogus: Trade G2 Y2 Fogus\n\n9) panglott: Build G1 Panglott\n\n10) fogus: Build G2 Fogus\n\n11) panglott: Discover G1 Panglott B1 Acamar\n\n12) fogus: Trade G1 R1 Fogus\n\n13) panglott: Build Y1 Panglott\n\n14) fogus: Build Y2 Fogus\n\n15) panglott: Trade G1 R1 Acamar\n\n16) fogus: Discover Y2 Fogus G3 Eklund\n\n17) panglott: Build Y2 Panglott\n\n18) fogus: Build Y3 Eklund\n\n19) panglott: Move Y2 Panglott Acamar\n\n20) fogus: Trade Y2 R2 Fogus\n\n21) panglott: Move Y1 Panglott Acamar\n\n22) fogus: Move R1 Fogus Eklund\n\n23) panglott: Move G1 Panglott Acamar\n\n24) fogus: Discover Y2 Eklund G1 Kansil\n\n25) panglott: Build Y2 Acamar\n\n26) fogus: Sacrifice G2 Fogus\nBuild Y3 Eklund\nBuild Y3 Kansil\n\n27) panglott: Build G1 Acamar\n\n28) fogus: Build G2 Fogus\n\n29) panglott: Discover Y1 Acamar R3 Telluride\n\n30) fogus: Move G2 Fogus Telluride\n\n31) panglott: Build G2 Panglott\n\n32) fogus: Build G2 Telluride\n\n33) panglott: Discover Y1 Telluride B1 Banff\n\n34) fogus: Move Y3 Eklund Banff\n\n35) panglott: Trade G1 B1 Acamar\n\n36) fogus: Move R1 Eklund Banff\n\n37) panglott: Sacrifice Y2 Acamar\nMove Y1 Banff Eklund\nMove B1 Acamar Eklund\n\n38) fogus: Move R2 Fogus Eklund\n\n39) panglott: Discover Y1 Eklund B2 Biloxi\n\n40) fogus: Attack B1 Eklund\n\n41) panglott: Move G1 Acamar Biloxi\n\n42) fogus: Move R2 Eklund Biloxi\n\n43) panglott: Discover G1 Biloxi R3 Paducah\n\n44) fogus: Attack Y1 Biloxi\n\n45) panglott: Sacrifice G3 Panglott\nBuild G1 Paducah\nBuild G3 Panglott\nBuild Y2 Panglott\n\n46) fogus: Build B3 Eklund\n\n47) panglott: Sacrifice Y2 Acamar\nMove G2 Panglott Acamar\nMove G2 Acamar Paducah\n\n48) fogus: Sacrifice Y2 Kansil\nMove G2 Telluride Kansil\nMove G2 Kansil Paducah\nCatastrophe Paducah G\n\n49) panglott: Build G1 Panglott\n\n50) fogus: Trade Y3 B3 Banff\n\n51) panglott: Move Y1 Panglott Acamar\n\n52) fogus: Move R2 Biloxi Acamar\n\n53) panglott: Move R1 Acamar Panglott\n\n54) fogus: Sacrifice Y3 Eklund\nMove R2 Acamar Panglott\nMove R1 Banff Panglott\nMove B3 Eklund Fogus\nCatastrophe Panglott R\n\n55) panglott: Trade Y1 G1 Acamar\n\n56) fogus: Build B3 Eklund\n\n57) panglott: Sacrifice G3 Panglott\nBuild G2 Acamar\nBuild G2 Acamar\nBuild G3 Panglott\n\n58) fogus: Sacrifice Y3 Kansil\nMove B1 Eklund Panglott\nMove B3 Eklund Panglott\nMove B3 Banff Panglott\nCatastrophe Panglott B\n\n\tfogus: Thank you for the game!\n\tpanglott: Thanks ;)\n\nHomeworlds Online (SDG# 18368)\nVariants: "Hard time"\nStarted: 2010.12.9, Ended: 2011.1.4\nParticipants: dlwillson (S), Aristos (N)\nWinner: dlwillson\n\n1) Aristos: Homeworld G1 B2 Y3\n\n2) dlwillson: Homeworld B3 Y1 G3\n\tdlwillson: Another round, eh? Excellent! Good luck!\n\n3) Aristos: Build Y1 Aristos\n\n4) dlwillson: B G1 Dlwillson\n\n5) Aristos: Build Y1 Aristos\n\n6) dlwillson: B G1 Dlwillson\n\n7) Aristos: Discover Y1 Aristos B3 Ice\n\n8) dlwillson: D G1 Dlwillson G2 Green\n\n9) Aristos: Build Y2 Aristos\n\n10) dlwillson: S G3 Dlwillson\nB G2 Green\nB G2 Dlwillson\nB G3 Dlwillson\n\n11) Aristos: Trade Y3 G3 Aristos\n\n12) dlwillson: T G2 Y2 Dlwillson\n\n13) Aristos: Discover Y1 Ice G2 Moss\n\n14) dlwillson: B G3 Dlwillson\n\n15) Aristos: Build Y2 Moss\n\n16) dlwillson: T G3 R3 Dlwillson\n\n17) Aristos: Build Y3 Aristos\n\n18) dlwillson: M Y2 Dlwillson Green\n\n19) Aristos: Sacrifice Y2 Aristos\nDiscover G3 Aristos Y3 Uranium\nMove G3 Uranium Green\nCatastrophe Green G\n\n20) dlwillson: M R3 Dlwillson Moss\n\n21) Aristos: Sacrifice Y1 Moss\nDiscover Y2 Moss G3 Verdant\n\n22) dlwillson: B G1 Dlwillson\n\n23) Aristos: Build Y1 Verdant\n\n24) dlwillson: T G3 Y3 Dlwillson\n\n25) Aristos: Trade Y3 R3 Aristos\n\n26) dlwillson: B G2 Dlwillson\n\n27) Aristos: Build Y2 Aristos\n\n28) dlwillson: D G1 Dlwillson G2 Greeen\n\n29) Aristos: Build Y2 Verdant\n\n30) dlwillson: S G2 Dlwillson\nB G2 Greeen\nB G3 Dlwillson\n\n31) Aristos: Build Y3 Aristos\n\n32) dlwillson: M Y3 Dlwillson Greeen\n\n33) Aristos: Move Y2 Verdant Greeen\n\n34) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB G3 Dlwillson\nB Y3 Greeen\n\n35) Aristos: Move Y1 Verdant Greeen\nCatastrophe Greeen Y\n\n36) dlwillson: T G3 Y3 Dlwillson\n\n37) Aristos: Trade Y3 G3 Aristos\n\n38) dlwillson: M Y3 Dlwillson Moss\n\tAristos: I have to say... the one rule of this game that I don't particularly like is the ability to pass when you sacrifice a ship. It makes sense from a "reflection of war" standpoint, but it really makes certain types of tactics a pain to set up.\n\n39) Aristos: Build Y1 Verdant\n\n40) dlwillson: B Y2 Moss\n\n41) Aristos: Sacrifice Y2 Aristos\nMove Y1 Verdant Moss\nMove Y2 Verdant Moss\nCatastrophe Moss Yellow\n\n42) dlwillson: B G3 Dlwillson\n\n43) Aristos: Build R1 Aristos\n\n44) dlwillson: T G3 Y3 Dlwillson\n\n45) Aristos: Discover G3 Aristos Y3 Coward\n\n46) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nBuild G3 Dlwillson\nBuild R1 Moss\n\n47) Aristos: Move G3 Coward Greeen\nCatastrophe Greeen G\n\n48) dlwillson: Move Y3 Dlwillson Moss\n\n\tAristos: That's what I thought. Well, congrats. :-)\n\tdlwillson: Good game. \n\nHomeworlds Online (SDG# 31958)\nStarted: 2017.4.14, Ended: 2017.5.16\nParticipants: Felix (S), panglott (N)\nWinner: Felix\n\n1) panglott: Homeworld B3 G2 Y3\n\n2) Felix: Homeworld B1 R3 G3\n\tFelix: HI there. Hope you have fun!\n\n3) panglott: Build Y1 Panglott\n\n4) Felix: Build G1 Felix\n\n5) panglott: Build Y1 Panglott\n\n6) Felix: Trade G1 Y1 Felix\n\n7) panglott: Discover Y1 Panglott R1 Polaris\n\n8) Felix: Build Y2 Felix\n\n9) panglott: Discover Y1 Panglott R1 Meridion\n\n10) Felix: Discover Y2 Felix Y2 Rim\n\n11) panglott: Build Y2 Panglott\n\n12) Felix: Build Y3 Felix\n\n13) panglott: Trade Y2 G2 Panglott\n\n14) Felix: Discover Y1 Felix B2 Out\n\n15) panglott: Build Y2 Panglott\n\n16) Felix: Build Y3 Felix\n\n17) panglott: Trade Y2 R2 Panglott\n\n18) Felix: Move Y2 Rim Polaris\n\n19) panglott: Move Y1 Polaris Panglott\n\n20) Felix: Move Y1 Out Polaris\n\n21) panglott: Discover Y1 Meridion G2 Alcazar\n\n22) Felix: Move Y1 Polaris Panglott\n\n23) panglott: Discover Y1 Panglott G1 Tenet\n\n24) Felix: Build Y2 Panglott\n\n25) panglott: Trade Y3 G3 Panglott\n\n26) Felix: Trade Y1 G1 Panglott\nCatastrophe Panglott Green\n\n27) panglott: Attack Y2 Panglott\n\n28) Felix: Trade Y3 R3 Felix\n\n29) panglott: Build Y1 Alcazar\n\n30) Felix: Sacrifice Y2 Polaris\nMove R3 Felix Alcazar\nMove R3 Alcazar Panglott\n\n31) panglott: Trade Y2 G2 Panglott\n\n32) Felix: Attack R2 Panglott\n\n33) panglott: Build Y2 Alcazar\n\n34) Felix: Attack G2 Panglott\n\n\nHomeworlds Online (SDG# 18467)\nVariants: "Hard time"\nStarted: 2010.12.9, Ended: 2011.1.12\nParticipants: Aristos (S), Gidaio (N)\nWinner: Aristos\n\n1) Gidaio: Homeworld G3 B1 Y3\n\n2) Aristos: Homeworld G1 B2 Y3\n\n3) Gidaio: Build Y1 Gidaio\n\n4) Aristos: Build Y1 Aristos\n\n5) Gidaio: Trade Y1 R1 Gidaio\n\n6) Aristos: Build Y1 Aristos\n\n7) Gidaio: Build Y1 Gidaio\n\n8) Aristos: Trade Y1 R1 Aristos\n\n9) Gidaio: Discover Y1 Gidaio B2 Solaris\n\n10) Aristos: Discover Y1 Aristos G3 Burningcopper\n\n11) Gidaio: Trade Y1 G1 Solaris\n\n12) Aristos: Build Y1 Aristos\n\tAristos: Sorry -- mistyped the y as a g. \n\n13) Gidaio: Build G1 Solaris\n\n14) Aristos: Build Y1 Burningcopper\n\n15) Gidaio: Build G2 Solaris\n\n16) Aristos: Build Y2 Burningcopper\n\n17) Gidaio: Trade G2 Y2 Solaris\n\n18) Aristos: Discover Y2 Burningcopper B2 Gasgiant\n\n19) Gidaio: Discover G1 Solaris R3 Gassygiant\n\n20) Aristos: Move Y2 Gasgiant Gassygiant\n\n21) Gidaio: Build G2 Solaris\n\n22) Aristos: Attack G1 Gassygiant\n\n23) Gidaio: Build G2 Solaris\n\n24) Aristos: Build G2 Gassygiant\n\n25) Gidaio: Sacrifice Y2 Solaris\nDiscover G2 Solaris B3 Yeahno\nMove G2 Solaris Yeahno\n\n26) Aristos: Discover G2 Gassygiant Y2 Whytwo\n\n27) Gidaio: Build G3 Solaris\n\n28) Aristos: Build Y2 Gassygiant\n\n29) Gidaio: Sacrifice G3 Solaris\nBuild G3 Solaris\nBuild Y3 Gidaio\nBuild R1 Gidaio\n\n30) Aristos: Build R2 Aristos\n\n31) Gidaio: Trade G2 R2 Yeahno\n\n32) Aristos: Build G2 Whytwo\n\n33) Gidaio: Move Y3 Gidaio Solaris\n\n34) Aristos: Move R2 Aristos Burningcopper\n\n35) Gidaio: Move G3 Solaris Yeahno\n\n36) Aristos: Build R2 Burningcopper\n\n37) Gidaio: Move G1 Solaris Yeahno\n\n38) Aristos: Move G2 Whytwo Yeahno\nCatastrophe Yeahno G\n\n39) Gidaio: Trade Y3 G3 Solaris\n\n40) Aristos: Build Y3 Burningcopper\n\tGidaio: Nice. Didn't see that coming.\n\n41) Gidaio: Build G1 Solaris\n\n42) Aristos: Build G2 Gassygiant\n\n43) Gidaio: Trade R2 G2 Yeahno\n\n44) Aristos: Move R2 Burningcopper Whytwo\n\n45) Gidaio: Move R1 Gidaio Solaris\n\n46) Aristos: Sacrifice G2 Gassygiant\nBuild R2 Whytwo\nBuild R3 Burningcopper\n\n47) Gidaio: Build R3 Solaris\n\n48) Aristos: Sacrifice Y2 Gassygiant\nMove R2 Burningcopper Solaris\nMove R3 Burningcopper Solaris\nCatastrophe Solaris R\n\tGidaio: This is getting long!\n\n49) Gidaio: Build G2 Solaris\n\n50) Aristos: Move G1 Gassygiant Solaris\nCatastrophe Solaris G\n\tGidaio: Those are getting annoying. :P\n\n51) Gidaio: Build Y2 Gidaio\n\n52) Aristos: Sacrifice Y3 Burningcopper\nMove G2 Whytwo Gidaio\nMove R2 Whytwo Gidaio\nMove R2 Whytwo Gidaio\n\tGidaio: Curse you and your dominance over yellow!\n\n53) Gidaio: Build G1 Yeahno\n\n54) Aristos: Sacrifice R2 Gidaio\nAttack R1 Gidaio\nAttack Y2 Gidaio\n\n55) Gidaio: Trade G2 Y2 Yeahno\n\n56) Aristos: Build Y3 Gidaio\n\tAristos: The Yellow Empire sees value in your species. We would not like to see your flame extinguished with continued catastrophes... \n\tGidaio: No! I shall fight to my last breath!\r\n...\r\nThat's gonna be pretty soon, isn't it?\n\n57) Gidaio: Discover Y2 Yeahno G2 Solaris A.e.\n\n58) Aristos: Sacrifice Y2 Gassygiant\nMove Y1 Burningcopper Solaris\nMove Y1 Solaris Gidaio\nCatastrophe Gidaio Yellow\n\tAristos: The Yellow Empire claims legal rights to all yellow ships. We notice you have two of our ships. We are sure this acquisition is merely an accident on your part. Please return them immediately. We would hate to resort to less... diplomatic methods.\n\tGidaio: We apologize for holding your ships, and they will be returned to you at the soonest convenient moment. Please wait as we send them to you.\n\n\tAristos: The Yellow Empire tried to save you a trip. It was with the best intentions, we assure you, that we triggered this catastrophe. Please accept membership in our empire as a token of our apology.\r\n\r\n... and thanks for the game. :-)\n\tGidaio: Good game. I'm obviously not very good at this yet, but whatever. :)\n\nHomeworlds Online (SDG# 18497)\nVariants: "Hard time"\nStarted: 2010.12.11, Ended: 2010.12.15\nParticipants: Danner (S), goulo (N)\nWinner: Danner\n\n1) goulo: Homeworld G3 B1 Y3\n\tDanner: Hello again! :) Good luck, have fun!\n\n2) Danner: Homeworld G2 B1 B3 *\n\tgoulo: thanks, you too!\n\n3) goulo: Build Y1 Goulo\n\n4) Danner: Build B1 Danner\n\tgoulo: I've been playing so many different games lately that I have an amusing surreal sense that it has been a very long time since I played Homeworlds. :)\n\tDanner: :D\n\n5) goulo: Build Y1 Goulo\n\n6) Danner: Trade B3 Y3 Danner\n\n7) goulo: Trade Y1 R1 Goulo\n\n8) Danner: Build B2 Danner\n\n9) goulo: Trade Y3 B3 Goulo\n\n10) Danner: Trade B2 R2 Danner\n\n11) goulo: Build R1 Goulo\n\n12) Danner: Build B2 Danner\n\n13) goulo: Discover R1 Goulo G2 Smeraldo\n\n14) Danner: Discover B2 Danner G3 Sajt\n\n15) goulo: Build Y1 Goulo\n\n16) Danner: Build B2 Sajt\n\n17) goulo: Build R1 Smeraldo\n\n18) Danner: Build B2 Danner\n\n19) goulo: Build R2 Goulo\n\n20) Danner: Build B3 Sajt\n\n21) goulo: Move B3 Goulo Smeraldo\n\n22) Danner: Sacrifice Y3 Danner\nMove B3 Sajt Smeraldo\nMove B3 Smeraldo Goulo\nDiscover B2 Danner Y3 Macska\n\n23) goulo: Sacrifice Y1 Goulo\nMove B3 Smeraldo Macska\n\n\tgoulo: My early misread of the blue ship economy was disastrous!\n\tgoulo: Thanks for the game!\n\tDanner: Thank you too!\n\nHomeworlds Online (SDG# 18540)\nVariants: "Hard time"\nStarted: 2010.12.14, Ended: 2010.12.27\nParticipants: Uglyfoot (S), Kermit (N)\nWinner: Uglyfoot\n\n1) Kermit: Homeworld Y1 G2 B3\n\n2) Uglyfoot: Homeworld B3 Y2 G3\n\n3) Kermit: Build B1 Kermit\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) Kermit: Discover B1 Kermit G3 Leary\n\n6) Uglyfoot: Build G1 Uglyfoot\n\n7) Kermit: Build B1 Leary\n\n8) Uglyfoot: Trade G1 R1 Uglyfoot\n\n9) Kermit: Trade B1 Y1 Leary\n\n10) Uglyfoot: Discover G1 Uglyfoot B1 Leap\n\n\nHomeworlds Online (SDG# 18369)\nStarted: 2010.12.14, Ended: 2010.12.24\nParticipants: rootbier (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y3 G3\n\n\nHomeworlds Online (SDG# 18565)\nVariants: "Hard time"\nStarted: 2010.12.15, Ended: 2011.2.2\nParticipants: SilentTitan (S), sompm (N)\nWinner: SilentTitan\n\n1) sompm: Homeworld G3 Y1 B3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) sompm: Build B1 Sompm\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) sompm: Build B1 Sompm\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) sompm: Discover B1 Sompm Y2 Phantomy\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) sompm: Discover B1 Phantomy G1 Nerdfighteria\n\n10) SilentTitan: Trade B1 Y1 Silenttitan\n\n11) sompm: Build B1 Nerdfighteria\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) sompm: Build B2 Sompm\n\n14) SilentTitan: Trade B2 R2 Silenttitan\n\n15) sompm: Trade B2 Y2 Sompm\n\n16) SilentTitan: Move R2 Silenttitan Nerdfighteria\n\n17) sompm: Build B2 Nerdfighteria\n\n18) SilentTitan: Attack B2 Nerdfighteria North\n\n19) sompm: Build B2 Nerdfighteria\nCatastrophe Nerdfighteria B\n\n20) SilentTitan: Build Y2 Silenttitan\n\n21) sompm: Build Y2 Sompm\n\n22) SilentTitan: Move Y1 Silenttitan Nerdfighteria\n\n23) sompm: Trade Y2 R2 Sompm\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Nerdfighteria\nBuild Y3 Nerdfighteria\nBuild Y3 Silenttitan\n\n25) sompm: Discover Y2 Sompm G2 Muckel\n\n26) SilentTitan: Sacrifice Y1 Nerdfighteria\nDiscover Y1 Silenttitan G1 Silver\n\n27) sompm: Trade B1 G1 Sompm\n\n28) SilentTitan: Trade Y3 G3 Silenttitan\n\n29) sompm: Build G2 Sompm\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Silver\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n\nHomeworlds Online (SDG# 18548)\nVariants: "Unrated"\nStarted: 2010.12.17, Ended: 2011.1.7\nParticipants: daselva (S), Wofie (N)\nWinner: daselva\n\n1) Wofie: Homeworld G2 B3 G3 *\n\n2) daselva: Homeworld B2 R1 G3\n\n\nHomeworlds Online (SDG# 18357)\nVariants: "Hard time"\nStarted: 2010.12.19, Ended: 2011.1.16\nParticipants: epicfailguy (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\tJesse: Hello, and have a good game.\n\n2) epicfailguy: Homeworld B1 G2 R3\n\n3) Jesse: Build G1 Jesse\n\n4) epicfailguy: Build R1 Epicfailguy\n\n5) Jesse: Trade G1 R1 Jesse\n\n6) epicfailguy: Trade R1 Y1 Epicfailguy\n\n7) Jesse: Build G1 Jesse\n\n8) epicfailguy: Build Y1 Epicfailguy\n\n9) Jesse: Trade G1 Y1 Jesse\n\n10) epicfailguy: Build Y2 Epicfailguy\n\n11) Jesse: Build Y2 Jesse\n\n12) epicfailguy: Trade Y1 G1 Epicfailguy\n\n13) Jesse: Build G1 Jesse\n\n14) epicfailguy: Discover G1 Epicfailguy B3 Newfoundsystem\n\n15) Jesse: Discover G1 Jesse B2 Grover\n\n16) epicfailguy: Move Y2 Epicfailguy Newfoundsystem\n\n17) Jesse: Move Y2 Jesse Grover\n\n18) epicfailguy: Build Y1 Newfoundsystem\n\n19) Jesse: Move R1 Jesse Grover\n\n20) epicfailguy: Trade Y2 R2 Newfoundsystem\n\n21) Jesse: Build Y2 Grover\n\n22) epicfailguy: Trade Y1 B1 Epicfailguy\n\n23) Jesse: Trade Y2 B2 Grover\n\n24) epicfailguy: Build R1 Epicfailguy\n\n25) Jesse: Build R2 Grover\n\n26) epicfailguy: Trade R3 Y3 Epicfailguy\n\n27) Jesse: Discover R1 Grover G1 Oscar\n\n28) epicfailguy: Build G2 Newfoundsystem\n\n29) Jesse: Build G2 Jesse\n\n30) epicfailguy: Discover G2 Newfoundsystem Y2 Starbright\n\n31) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild G3 Grover\nBuild G3 Grover\n\n32) epicfailguy: Move G1 Newfoundsystem Grover\nCatastrophe Grover Green\n\n33) Jesse: Move G2 Jesse Grover\n\n34) epicfailguy: Build R2 Epicfailguy\n\n35) Jesse: Build R3 Grover\n\n36) epicfailguy: Discover R1 Epicfailguy Y3 Sol\n\n37) Jesse: Build R3 Oscar\n\n38) epicfailguy: Build R3 Epicfailguy\n\n39) Jesse: Build G1 Jesse\n\n40) epicfailguy: Move R1 Sol Starbright\n\n41) Jesse: Move R3 Grover Newfoundsystem\n\n42) epicfailguy: Move R2 Newfoundsystem Starbright\n\n43) Jesse: Attack Y1 Newfoundsystem\n\n44) epicfailguy: Trade R2 Y2 Epicfailguy\n\n45) Jesse: Sacrifice G3 Jesse\nBuild G1 Grover\nBuild G3 Jesse\nBuild Y1 Newfoundsystem\n\n46) epicfailguy: Build G3 Starbright\n\n47) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y3 Jesse\nBuild Y3 Grover\n\n48) epicfailguy: Discover Y3 Epicfailguy G3 Theisland\n\n49) Jesse: Move G1 Grover Newfoundsystem\n\n50) epicfailguy: Build R2 Epicfailguy\n\n51) Jesse: Move Y1 Newfoundsystem Oscar\n\n52) epicfailguy: Move G2 Starbright Theisland\n\n53) Jesse: Move B2 Grover Oscar\n\n54) epicfailguy: Move B1 Epicfailguy Theisland\n\n55) Jesse: Trade R3 B3 Oscar\n\n56) epicfailguy: Move R1 Starbright Theisland\n\n57) Jesse: Sacrifice G3 Jesse\nBuild G3 Newfoundsystem\nBuild R3 Newfoundsystem\nPass\n\n58) epicfailguy: Build B1 Theisland\n\n59) Jesse: Sacrifice Y3 Grover\nMove G3 Newfoundsystem Epicfailguy\nMove R3 Newfoundsystem Epicfailguy\nMove R3 Newfoundsystem Epicfailguy\nCatastrophe Epicfailguy R\n\n60) epicfailguy: Sacrifice Y3 Theisland\nMove G2 Theisland Epicfailguy\nMove R1 Theisland Epicfailguy\nMove B1 Theisland Epicfailguy\n\n61) Jesse: Sacrifice G3 Epicfailguy\nBuild G3 Newfoundsystem\nBuild Y3 Newfoundsystem\nBuild Y3 Grover\n\n62) epicfailguy: Build R2 Starbright\n\n63) Jesse: Sacrifice G3 Newfoundsystem\nBuild G3 Newfoundsystem\nBuild R3 Grover\nBuild R3 Oscar\n\n64) epicfailguy: Build R3 Epicfailguy\n\n65) Jesse: Move R1 Oscar Newfoundsystem\n\n66) epicfailguy: Build B2 Theisland\n\n67) Jesse: Move R3 Oscar Theisland\n\n68) epicfailguy: Pass\n\n69) Jesse: Sacrifice Y3 Grover\nMove R3 Theisland Epicfailguy\nMove R1 Newfoundsystem Epicfailguy\nMove G3 Newfoundsystem Epicfailguy\nCatastrophe Epicfailguy R\n\n70) epicfailguy: Build Y3 Epicfailguy\n\n71) Jesse: Sacrifice R3 Grover\nAttack Y3 Epicfailguy\nAttack Y2 Epicfailguy\nAttack G2 Epicfailguy\n\n\nHomeworlds Online (SDG# 18359)\nStarted: 2010.12.20, Ended: 2010.12.24\nParticipants: mathochist (S), epicfailguy (N)\nWinner: epicfailguy\n\n1) epicfailguy: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 18618)\nVariants: "Hard time"\nStarted: 2010.12.22, Ended: 2011.2.17\nParticipants: ts52 (S), nycavri (N)\nWinner: ts52\n\n1) nycavri: Homeworld Y2 B3 G3\n\tnycavri: TaGG!\n\n2) ts52: Homeworld Y1 B2 G3\n\tts52: TaGG? I'm guessing the sentiment is sth like 'have a good game', so, you too!\n\n3) nycavri: Build G1 Nycavri\n\tnycavri: Yup - it's a toast "To a Good Game" . . .\n\n4) ts52: Build G1 Ts52\n\n5) nycavri: Trade G1 Y1 Nycavri\n\tts52: Nice. I like it. Prost!\n\n6) ts52: T G1 Y1 Ts52\n\n7) nycavri: Discover Y1 Nycavri G1 Deacon\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) nycavri: Build G1 Nycavri\n\n10) ts52: Build Y2 Kermit\n\n11) nycavri: Build Y2 Deacon\n\n12) ts52: Discover Y1 Kermit G2 Robin\n\n13) nycavri: Move Y2 Deacon Kermit\n\n14) ts52: Build Y3 Kermit\n\n15) nycavri: Move Y2 Kermit Ts52\n\n16) ts52: Build Y3 Robin\n\n17) nycavri: Trade G1 R1 Nycavri\n\n18) ts52: Trade G3 R3 Ts52\n\n19) nycavri: Build Y3 Deacon\n\n20) ts52: Attack Y2 Ts52\n\n21) nycavri: Build G1 Nycavri\n\n22) ts52: Trade Y2 R2 Ts52\n\n23) nycavri: Build R1 Nycavri\n\n24) ts52: Trade R3 G3 Ts52\n\n25) nycavri: Discover R1 Nycavri B1 May\n\n26) ts52: Build G1 Ts52\n\n27) nycavri: Move G1 Nycavri Deacon\n\n28) ts52: Discover G1 Ts52 B3 Grover\n\n29) nycavri: Build G2 Nycavri\n\n30) ts52: Build G2 Ts52\n\n31) nycavri: Discover G1 Deacon Y2 Mercury\n\n32) ts52: Move Y3 Robin Grover\n\n33) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild R1 May\nBuild R2 Nycavri\n\n34) ts52: T Y3 R3 Grover\n\n35) nycavri: Discover Y1 Deacon Y3 Taylor\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Grover\nBuild R3 Ts52\n\n37) nycavri: Sacrifice Y3 Deacon\nMove R1 May Taylor\nMove R1 May Taylor\nMove R1 Taylor Ts52\n\n38) ts52: Move R3 Ts52 Taylor\n\n39) nycavri: Sacrifice Y1 Taylor\nMove R1 Taylor Ts52\n\n40) ts52: Sacrifice G3 Ts52\nBuild G1 Grover\nBuild G3 Ts52\nBuild R3 Taylor\n\n41) nycavri: Trade R1 B1 Ts52\n\n42) ts52: Attack B1N Ts52\n\n43) nycavri: Sacrifice G2 Nycavri\nBuild G2 Nycavri\nBuild R1 Ts52\n\n44) ts52: Attack R1N Ts52\n\n45) nycavri: Sacrifice R1 Nycavri\nAttack B1 Ts52\n\n46) ts52: Attack B1N Ts52\n\n47) nycavri: Sacrifice G2 Nycavri\nBuild G2 Nycavri\nBuild R1 Ts52\nCatastrophe Ts52 R\n\n48) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild Y3 Robin\n\n49) nycavri: Build R1 Nycavri\n\n50) ts52: Move B1 Ts52 Taylor\n\n51) nycavri: Trade R1 B1 Nycavri\n\n52) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Taylor\nBuild B2 Taylor\n\n53) nycavri: Discover B1 Nycavri R1 Edney\n\n54) ts52: M Y2 Kermit Edney\n\n55) nycavri: Sacrifice G3 Nycavri\nBuild G3 Nycavri\nBuild B2 Edney\nBuild B3 Edney\n\n56) ts52: Move B1 Taylor Edney\nCatastrophe Edney Blue\n\tts52: M y2 Kermit edney \n\n57) nycavri: Build R1 Nycavri\n\tts52: Oops, wrong box \n\n58) ts52: Move Y1 Robin Grover\n\n59) nycavri: Trade R1 B1 Nycavri\n\n60) ts52: Move B1 Taylor Edney\n\n61) nycavri: Move B1 Nycavri Edney\n\n62) ts52: Attack B1N Edney\n\n63) nycavri: Build R1 Nycavri\n\n64) ts52: Move B2 Taylor Edney\n\n65) nycavri: Trade R1 B1 Nycavri\n\n66) ts52: Sacrifice Y2 Edney\nMove B1 Edney Nycavri\nMove B1 Edney Nycavri\nCatastrophe Nycavri Blue\n\n67) nycavri: Discover G1 Mercury B3 Rodgers\n\n68) ts52: Sacrifice Y3 Robin\nMove Y3 Kermit Nycavri\nMove Y1 Kermit Nycavri\nMove Y1 Grover Nycavri\nCatastrophe Nycavri Yellow\n\n\tts52: Thanks for the game.\n\tnycavri: You too - man that got ugly for me halfway through. You took your sweet time squeezing me! *grin*\n\nHomeworlds Online (SDG# 18630)\nVariants: "Hard time"\nStarted: 2010.12.24, Ended: 2011.1.5\nParticipants: AdamBadura (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld B3 G2 Y3\n\n2) AdamBadura: Homeworld G1 B3 Y3\n\tgoulo: I finally got within range to challenge you by challenging some inactive player over and over until he finally automatically declined enough to fall. :)\n\n3) goulo: Build Y1 Goulo\n\tAdamBadura: Hi! I did the same while climbing up. Those inactive people are really enoying!\r\n\r\nCurrently (until evening on Monday 27th) I'm at my wife parents which limits severly possibility to make moves. Sorry for that!\n\tgoulo: No problem. I've noticed all my SDG games have slowed down recently. :) Also I'll be in Germany from Monday till Sunday (Esperanto event), probably checking email less often.\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) goulo: Trade Y1 R1 Goulo\n\n6) AdamBadura: Build Y1 Adambadura\n\n7) goulo: Build R1 Goulo\n\n8) AdamBadura: Trade Y3 R3 Adambadura\n\n9) goulo: Trade R1 G1 Goulo\n\n10) AdamBadura: Discover Y1 Adambadura G2 Shipyard\n\n11) goulo: Build R1 Goulo\n\n12) AdamBadura: Build R1 Adambadura\n\n13) goulo: Build R2 Goulo\n\n14) AdamBadura: Build R2 Adambadura\n\n15) goulo: Sacrifice Y3 Goulo\nDiscover R1 Goulo B1 Mirteleto\nMove R1 Mirteleto Shipyard\nMove R1 Shipyard Adambadura\nCatastrophe Adambadura R\n\n16) AdamBadura: Build Y1 Adambadura\n\tAdamBadura: How did I not see this coming??? !!!\n\n17) goulo: Trade R2 Y2 Goulo\n\n18) AdamBadura: Build Y2 Shipyard\n\tgoulo: Too much alcohol? :)\n\n19) goulo: Build R1 Goulo\n\tAdamBadura: I'm not drinking now. But after what you did I'm starting to think of it... ;) Good night!\n\n20) AdamBadura: Trade Y1 R1 Adambadura\n\n21) goulo: Build R2 Goulo\n\n22) AdamBadura: Build R2 Adambadura\n\n23) goulo: Discover R2 Goulo G1 Smeraldeto\n\n24) AdamBadura: Move R1 Adambadura Shipyard\n\n25) goulo: Build G2 Goulo\n\n26) AdamBadura: Build R2 Shipyard\n\n27) goulo: Build R3 Smeraldeto\n\n28) AdamBadura: Build R3 Adambadura\n\tgoulo: happy new year from germany!\n\n29) goulo: Build Y1 Goulo\n\n30) AdamBadura: Trade R3 G3 Adambadura\n\tAdamBadura: Happy new year to you too!\n\n31) goulo: Move G1 Goulo Smeraldeto\n\n32) AdamBadura: Build R3 Adambadura\n\n33) goulo: Build R3 Goulo\n\n34) AdamBadura: Sacrifice Y2 Shipyard\nMove R1 Shipyard Smeraldeto\nMove R1 Smeraldeto Goulo\nCatastrophe Goulo R\n\tAdamBadura: Interesting move. My move will take some time as situation is becoming complex and I cannot afford another mistake.\n\n35) goulo: Build G3 Goulo\n\tgoulo: I wondered if you would do that. I figured it was OK for me as the result of the last 2 turns is that I lost 2 1-ships while you lost a 1-ship and a 2-ship. But of course the specific situation makes it hard to know if that simple analysis is valid. :)\n\n36) AdamBadura: Discover G3 Adambadura Y2 Highway\n\tAdamBadura: I considered also catastrophing R in Smeraldeto however this would require me to use R2 too. Another way was to invade Smeraldeto with R and see what will you do (this could allow me to save Y2). But all this seemed bi to tricky and error-prone.\r\n\r\nBy the way did Artur contact you regarding Fridrich at UP next Saturday? He asked on forum whether there are any people willing to play and I suggested him to PM you as I suspect you do not read forum any more. (I wont play it and most likely I wont be there at all - those open hours are conflicting with Karol's needs... ;))\n\n37) goulo: Discover G2 Goulo R1 Rubeneto\n\tgoulo: Yes, I got email from Artur. I need to re-orient to "normal life" after the vacation and figure out what plans I have for Saturday. :)\n\n38) AdamBadura: Move G3 Highway Rubeneto\n\n39) goulo: Build G3 Rubeneto\n\n40) AdamBadura: Attack G3 Rubeneto\n\n41) goulo: Sacrifice G1 Smeraldeto\nBuild G1 Rubeneto\nCatastrophe Rubeneto G\n\tAdamBadura: It seems you deepend much on ships value calculations.\n\n42) AdamBadura: Trade Y1 G1 Adambadura\n\tgoulo: or maybe I just like explosions. :)\n\tAdamBadura: Hmmmm... That trick with sacrifice/rebuild is a nice one... I expected you to sacrifice also Y1. Now I'm not sure whather I should have palyed so...\n\n43) goulo: Move Y1 Goulo Smeraldeto\n\n44) AdamBadura: Build G2 Adambadura\n\tgoulo: By the way, I actually got to teach and play Homeworlds at the new year's Esperanto event! And some other pyramid games.\n\n45) goulo: Build G3 Goulo\n\n46) AdamBadura: Trade G2 Y2 Adambadura\n\n47) goulo: Trade G3 Y3 Goulo\n\n48) AdamBadura: Build R1 Shipyard\n\n49) goulo: Discover R3 Smeraldeto Y2 Citrono\n\tAdamBadura: My position becomes bad. At some point I thought I managed to get away after previous mistake but either I didn't or I did some new mistakes...\n\n50) AdamBadura: Discover G1 Adambadura B2 Mutators\n\n51) goulo: Move R3 Citrono Adambadura\n\n52) AdamBadura: Sacrifice R2 Adambadura\nAttack R3 Adambadura\nPass\n\n53) goulo: Build R1 Smeraldeto\n\tAdamBadura: Thanks! ;)\n\tgoulo: Doh! I hate it when I do that!\n\tgoulo: That was a terrible mistake!\n\n54) AdamBadura: Move R3 Adambadura Mutators\n\tgoulo: Jeez, that sure turned the situation around for you. Homeworlds can be very unforgiving!\n\tAdamBadura: Yes. And I already did that "trick" to you some time ago.\r\n\r\nBut Homeworlds keeps surprising with such actions. Like that your sacrifical of G1 to recreate it somewhere else. Simple and briliant! Yet I missed that. ;)\r\n\r\nBut just keep on playing wating on my next mistake... ;)\n\n55) goulo: Move G3 Goulo Smeraldeto\n\n56) AdamBadura: Build G2 Mutators\n\n57) goulo: Discover G3 Smeraldeto Y2 Citrono\n\n58) AdamBadura: Build G3 Mutators\n\n59) goulo: Build G3 Citrono\n\n60) AdamBadura: Trade G3 Y3 Mutators\n\n61) goulo: Move R1 Smeraldeto Goulo\n\n62) AdamBadura: Trade G1 B1 Mutators\n\n63) goulo: Build R1 Smeraldeto\n\n64) AdamBadura: Discover B1 Mutators G1 Lastbase\n\n65) goulo: Move Y2 Goulo Lastbase\n\n66) AdamBadura: Move R3 Mutators Lastbase\n\n67) goulo: Move Y2 Lastbase Citrono\n\n68) AdamBadura: Build G3 Mutators\n\n69) goulo: Sacrifice G3 Citrono\nBuild G3 Citrono\nBuild Y1 Goulo\nBuild Y3 Smeraldeto\n\n70) AdamBadura: Discover R1 Shipyard B1 Tiny\n\n71) goulo: Move R1 Smeraldeto Citrono\n\n72) AdamBadura: Sacrifice G3 Mutators\nBuild G3 Mutators\nBuild R2 Lastbase\nBuild R3 Tiny\n\n73) goulo: Discover Y1 Smeraldeto B2 Mirtelo\n\n74) AdamBadura: Sacrifice G3 Mutators\nBuild G3 Mutators\nBuild B1 Lastbase\nBuild B2 Lastbase\n\n75) goulo: Move Y3 Smeraldeto Shipyard\n\tAdamBadura: I haven't seen anything like that ever... ;)\n\n76) AdamBadura: Move Y1 Shipyard Lastbase\n\tgoulo: the sad thing is, i had a great position until that stupid mistake that gave you my r3!\n\n77) goulo: Sacrifice R2 Smeraldeto\nAttack R2 Shipyard\nPass\n\n78) AdamBadura: Sacrifice Y3 Mutators\nMove R2 Lastbase Mirtelo\nMove R1 Tiny Mutators\nMove B1 Lastbase Goulo\n\n79) goulo: Discover Y1 Mirtelo G1 Smeraldeto\n\n80) AdamBadura: Sacrifice G3 Mutators\nBuild G3 Mutators\nBuild R2 Mirtelo\nBuild Y3 Adambadura\n\n81) goulo: Move Y3 Shipyard Adambadura\n\n82) AdamBadura: Attack Y3 Adambadura\n\n83) goulo: Move Y2 Citrono Adambadura\nCatastrophe Adambadura Y\n\n84) AdamBadura: Sacrifice G3 Mutators\nBuild G3 Mutators\nBuild B3 Lastbase\nBuild Y2 Lastbase\n\n85) goulo: Attack B1 Goulo\n\n86) AdamBadura: Sacrifice Y2 Lastbase\nMove B1 Lastbase Goulo\nMove B2 Lastbase Goulo\nCatastrophe Goulo B\n\n87) goulo: Sacrifice Y3 Goulo\nMove R1 Citrono Adambadura\nMove R2 Shipyard Adambadura\nMove R1 Goulo Adambadura\nCatastrophe Adambadura R\n\n\tgoulo: awesome. :)\n\tAdamBadura: How????????????!!!!!!!!!!\n\tAdamBadura: Oh...\n\tAdamBadura: And I had a second thought of that: will this not allow you to invade me. I somehow missed that opportunity. The most obvious one. To bad as I think I would have won it... :(\r\n\r\nBut the game was interesting!\n\tgoulo: As you wrote a couple of days ago: "But just keep on playing wating on my next mistake... ;) "\r\nSo you were right! I waited for your mistake. :)\n\tgoulo: That was quite a funny game with both of us making mistakes.\n\tAdamBadura: Yes. You made a stupid mistake with R which took away your victory. But The Universe made us even by giving it back to you on almost last possible moment. ;)\n\tgoulo: It was funny after you did the blue catastrophe on me, I was looking thinking, is there any way I can get all 3 red ships to your homeworld soon? Wow, is it really that easy, just like that? I checked and rechecked to make sure I was not imagining it from wishful thinking. :)\n\nHomeworlds Online (SDG# 18468)\nVariants: "Hard time"\nStarted: 2010.12.26, Ended: 2011.1.25\nParticipants: lorgar (S), dlwillson (N)\nWinner: lorgar\n\n1) dlwillson: H B3 Y1 G3\n\n2) lorgar: Homeworld G1 Y2 B3\n\n3) dlwillson: B G1 Dlwillson\n\n4) lorgar: Build B1 Lorgar\n\n5) dlwillson: B G1 Dlwillson\n\n6) lorgar: Build B1 Lorgar\n\n7) dlwillson: T G1 B1 Dlwillson\n\n8) lorgar: Trade B1 G1 Lorgar\n\n9) dlwillson: B G2 Dlwillson\n\n10) lorgar: Build G2 Lorgar\n\n11) dlwillson: T G2 Y2 Dlwillson\n\n12) lorgar: Trade G2 Y2 Lorgar\n\n13) dlwillson: Build Y1 Dlwillson\n\n14) lorgar: Build G2 Lorgar\n\n15) dlwillson: D Y1 Dlwillson G2 Knuckles\n\n16) lorgar: Discover G2 Lorgar B3 Rome\n\n17) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Knuckles\nBuild Y3 Knuckles\nBuild Y3 Dlwillson\n\n18) lorgar: Move Y2 Lorgar Rome\n\n19) dlwillson: D Y1 Knuckles Y3 Knees\n\n20) lorgar: Trade B1 R1 Lorgar\n\n21) dlwillson: Sacrifice B1 Dlwillson\nTrade Y1 R1 Knuckles\n\n22) lorgar: Build Y1 Rome\n\n23) dlwillson: T Y3 G3 Dlwillson\n\n24) lorgar: Trade Y1 R1 Rome\n\n25) dlwillson: Move Y3 Knuckles Rome\n\n26) lorgar: Trade G2 R2 Rome\n\n27) dlwillson: B G2 Dlwillson\n\n28) lorgar: Trade R1 Y1 Rome\n\n29) dlwillson: S G2 Dlwillson\nB Y3 Knees\nB G2 Dlwillson\n\n30) lorgar: Sacrifice Y2 Rome\nMove Y1 Rome Knuckles\nMove Y1 Knuckles Knees\nCatastrophe Knees Yellow\n\n\nHomeworlds Online (SDG# 18358)\nVariants: "Hard time"\nStarted: 2010.12.28, Ended: 2011.1.16\nParticipants: baxy (S), SilentTitan (N)\nWinner: baxy\n\n1) SilentTitan: Homeworld B2 R3 G3\n\n2) baxy: Homeworld G3 B1 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) baxy: Build Y1 Baxy\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) baxy: Trade Y1 B1 Baxy\n\n7) SilentTitan: Trade Y1 B1 Silenttitan\n\n8) baxy: Build B2 Baxy\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) baxy: Discover B2 Baxy Y2 Gwar\n\n11) SilentTitan: Trade G1 Y1 Silenttitan\n\n12) baxy: Trade Y3 G3 Baxy\n\n13) SilentTitan: Discover B1 Silenttitan Y1 Sic\n\n14) baxy: Trade B1 Y1 Baxy\n\n15) SilentTitan: Build Y2 Silenttitan\n\n16) baxy: Build G1 Baxy\n\n17) SilentTitan: Build G1 Silenttitan\n\n18) baxy: Trade G1 R1 Baxy\n\n19) SilentTitan: Discover Y2 Silenttitan R1 Redplanet\n\n20) baxy: Build R1 Baxy\n\n21) SilentTitan: Discover Y2 Redplanet R2 Planredet\n\n22) baxy: Move R1 Baxy Gwar\n\n23) SilentTitan: Discover B1 Sic Y3 Ssl\n\n24) baxy: Move R1 Gwar Ssl\n\n25) SilentTitan: Move B1 Ssl Planredet\n\n26) baxy: Build R1 Baxy\n\n27) SilentTitan: Build Y1 Silenttitan\n\n28) baxy: Sacrifice G3 Baxy\nBuild R2 Ssl\nBuild R2 Ssl\nBuild R3 Baxy\n\n29) SilentTitan: Discover Y1 Silenttitan G1 Peaceful\n\n30) baxy: Trade R3 Y3 Baxy\n\n31) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Planredet\nBuild B1 Planredet\nBuild Y3 Silenttitan\n\n32) baxy: Build R3 Baxy\n\n33) SilentTitan: Trade Y3 G3 Silenttitan\n\n34) baxy: Sacrifice Y1 Baxy\nMove R2 Ssl Peaceful\n\n35) SilentTitan: Sacrifice Y2 Planredet\nMove B1 Planredet Baxy\nMove B1 Planredet Baxy\n\n36) baxy: Build R3 Peaceful\n\n37) SilentTitan: Move Y1 Peaceful Planredet\n\n38) baxy: Discover R3 Baxy G2 Megadeth\n\n39) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Planredet\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n40) baxy: Sacrifice Y3 Baxy\nMove R3 Peaceful Silenttitan\nMove R3 Megadeth Peaceful\nMove R3 Peaceful Silenttitan\n\n\tSilentTitan: good game\n\tbaxy: good game\n\nHomeworlds Online (SDG# 18677)\nVariants: "Hard time"\nStarted: 2010.12.29, Ended: 2011.1.10\nParticipants: Danner (S), Uglyfoot (N)\nWinner: Danner\n\n1) Uglyfoot: Homeworld G3 B1 Y3\n\tDanner: Howdy! It has been a long time since our last game.\n\n2) Danner: Homeworld G2 B1 B3 *\n\n3) Uglyfoot: Build Y1 Uglyfoot\n\tDanner: Good luck, have fun!\n\n4) Danner: Build B1 Danner\n\n5) Uglyfoot: Discover Y1 Uglyfoot G2 Forth\n\n6) Danner: Trade B3 Y3 Danner\n\n7) Uglyfoot: Build Y1 Uglyfoot\n\tDanner: Happy New Year!\n\n8) Danner: Build B2 Danner\n\n9) Uglyfoot: Build Y1 Forth\n\n10) Danner: Discover B2 Danner G3 Orland\n\n11) Uglyfoot: Build Y2 Forth\n\n12) Danner: Build B2 Orland\n\n13) Uglyfoot: Trade Y3 B3 Uglyfoot\n\n14) Danner: Build B2 Danner\n\n15) Uglyfoot: Trade Y1 R1 Uglyfoot\n\n16) Danner: Build B3 Orland\n\n17) Uglyfoot: Move Y2 Forth Orland\n\n18) Danner: Trade B3 R3 Orland\n\n19) Uglyfoot: Move Y2 Orland Danner\n\n20) Danner: Sacrifice R3 Orland\nPass\nPass\nAttack Y2N Danner\n\n21) Uglyfoot: Build B3 Uglyfoot\n\n22) Danner: Sacrifice Y2 Danner\nMove B2 Orland Forth\nMove B2 Forth Uglyfoot\nCatastrophe Uglyfoot B\n\n23) Uglyfoot: Build Y1 Forth\n\n24) Danner: Trade B2 G2 Danner\n\n25) Uglyfoot: Move Y1 Forth Uglyfoot\n\n26) Danner: Move G2 Danner Uglyfoot\n\n27) Uglyfoot: Build Y2 Uglyfoot\n\n28) Danner: Build G1 Uglyfoot\n\n29) Uglyfoot: Attack G2 Uglyfoot\n\n30) Danner: Build G1 Uglyfoot\nCatastrophe Uglyfoot G\n\tDanner: Thanks for the game!\n\n\nHomeworlds Online (SDG# 18554)\nStarted: 2010.12.29, Ended: 2011.1.1\nParticipants: Remneb (S), rootbier (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 18694)\nStarted: 2010.12.29, Ended: 2011.2.16\nParticipants: Remneb (S), Laurie_Menke (N)\nWinner: Remneb\n\n1) Laurie_Menke: Homeworld Y3 B2 G3\n\tLaurie_Menke: And another! You are on a roll! Thanks! :o)\n\n2) Remneb: Homeworld R1 B2 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) Remneb: Build G1 Remneb\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) Remneb: Build G1 Remneb\n\n9) Laurie_Menke: Discover G1 Laurie_menke G1 Sweetpea\n\n10) Remneb: Trade G1 B1 Remneb\n\n11) Laurie_Menke: Discover Y1 Laurie_menke B1 Little Boy Blue\n\n12) Remneb: Discover B1 Remneb Y3 Ram\n\tLaurie_Menke: LOL... I meant to name that Little Boy Blue but I forgot you can't use spaces. Oh, well...\n\tRemneb: Well i'm too dum to make a sentence with "little sweetpea"...\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\tRemneb: You just have to play a game to win one point or do you need to win ?\r\n\n\tLaurie_Menke: LOL... I just named it Sweetpea because it's green. I never know what to name these things. ;o)\r\n\r\nI only have to complete the game for the point... not win. ;o)\n\n14) Remneb: Build G2 Remneb\n\tRemneb: There is a lot of stars in the sky:Vega,Antares,Cassiopea,Betelgeuse,Kenme Raulie...\n\n15) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Sweetpea\nBuild G3 Laurie_menke\n\tLaurie_Menke: Good point. :o)\n\tRemneb: Kenme Raulie = Laurie Menke\n\n16) Remneb: Move G2 Remneb Ram\n\n17) Laurie_Menke: Sacrifice G1 Sweetpea\nPass\n\n18) Remneb: Build G1 Ram\n\n19) Laurie_Menke: Discover Y1 Little G3 Bigdipper\n\n20) Remneb: Discover G1 Ram Y1 Gumrak\n\n21) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild Y2 Bigdipper\n\n22) Remneb: Build Y2 Remneb\n\n23) Laurie_Menke: Move Y2 Bigdipper Sweetpea\n\n24) Remneb: Move Y2 Remneb Ram\n\n25) Laurie_Menke: Discover G2 Laurie_menke G1 Littledipper\n\n26) Remneb: Trade Y2 R2 Ram\n\n27) Laurie_Menke: Move Y1 Bigdipper Remneb\n\n28) Remneb: Attack Y1 Remneb\n\n29) Laurie_Menke: Build G3 Laurie_menke\n\n30) Remneb: Move R2 Ram Sweetpea\n\tLaurie_Menke: Aw, shoot! I forgot you could use the power of the stars, too. That was stupid of me. :o(\n\n31) Laurie_Menke: Discover G2 Sweetpea Y3 Sun\n\tRemneb: well i'm new in that game...so i was not sure if it was a secret plan of your's to destroy my Homeworld !\n\n32) Remneb: Attack Y2 Sweetpea\n\tLaurie_Menke: I had intended to convert my yellow to a red and take one of your ships. Oh, well...\n\n33) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n34) Remneb: Build G3 Remneb\n\n35) Laurie_Menke: Build R1 Laurie_menke\n\n36) Remneb: Trade G3 R3 Remneb\n\n37) Laurie_Menke: Build G3 Laurie_menke\n\n38) Remneb: Move R3 Remneb Ram\n\n39) Laurie_Menke: Move R1 Laurie_menke Littledipper\n\n40) Remneb: Move G2 Ram Gumrak\n\n41) Laurie_Menke: Build R1 Laurie_menke\n\n42) Remneb: Move R3 Ram Gumrak\n\n43) Laurie_Menke: Build R2 Littledipper\n\n44) Remneb: Sacrifice G2 Gumrak\nBuild R2 Gumrak\nBuild R3 Sweetpea\n\n45) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n46) Remneb: Build Y2 Sweetpea\n\n47) Laurie_Menke: Sacrifice B1 Laurie_menke\nTrade G2 Y2 Sun\n\n48) Remneb: Build G2 Gumrak\n\n49) Laurie_Menke: Discover G3 Laurie_menke B1 Northstar\n\n50) Remneb: Move R3 Sweetpea Ram\n\tRemneb: I don't know if there ever been so many stars and ships in a game(19 ships and 9 stars) !\n\tLaurie_Menke: :o)\n\n51) Laurie_Menke: Build G2 Northstar\n\n52) Remneb: Move R3 Ram Northstar\n\n53) Laurie_Menke: Sacrifice Y2 Sun\nMove G3 Northstar Ram\nMove G2 Northstar Ram\n\tRemneb: Gosh!Something new for me here.You sacrifice a b1(instead of trading)then trade g2y2!Just a second before that gimmick of yours,i was sure that blue can only be trade for another of the same pip level !\n\tRemneb: Thanks for the lesson mistress.\n\tLaurie_Menke: You're right that trading has to be the same pip level, which it was--a 2 for a 2. But since there was no blue in Sun, I had to sacrifice a blue elsewhere to make it happen. :o)\n\n54) Remneb: Move R3 Gumrak Ram\n\n55) Laurie_Menke: Sacrifice R2 Littledipper\nAttack R3 Ram\nAttack B1 Ram\n\n56) Remneb: Sacrifice Y2 Sweetpea\nMove G1 Gumrak Ram\nMove G2 Gumrak Ram\nCatastrophe Ram G\n\n57) Laurie_Menke: Build G1 Laurie_menke\n\n58) Remneb: Discover Y1 Remneb G3 Frisco\n\tRemneb: move r3 Gumrak Ram\n\n59) Laurie_Menke: Build G2 Laurie_menke\n\tRemneb: You task me and i'll have you.I'll chase you round the moons of Nibia and round the Antares maelstrom and round perdition's flames before i give you up ! (Star Trek II:The Wrath of Kan)\r\n\r\n\n\tLaurie_Menke: :o) You can't catch me! (The Gingerbread Man) ;o)\n\n60) Remneb: Build G2 Remneb\n\tRemneb: Damn!Something new again.You had no red ships and there is no red star in Ram system.How can you take my r3 and my b1?\n\n61) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\tLaurie_Menke: I sacrificed a red ship in another system. ;o) But you definitely got me back. :o(\n\n62) Remneb: Sacrifice G2 Remneb\nBuild Y2 Sweetpea\nBuild Y3 Frisco\n\tRemneb: Who are not with me are doomed !(Remneb)\n\tRemneb: So we can sacrifice a red ship anywhere and hit anywhere without a red star or a red ship in the combat zone...\n\tRemneb: Is that mean that you used my own red ship to attack me?\n\n63) Laurie_Menke: Move Y2 Laurie_menke Littledipper\n\tLaurie_Menke: No. You can only sacrifice your own red ships. I sacrificed my r2 in the LittleDipper system. That meant that I could attack two ships in any system, so long as I had a ship in that system that was as big or bigger than the one I was attacking. Since I had a g3 in Ram, I could attack both your r3 and your b1.\n\n64) Remneb: Build G2 Remneb\n\tRemneb: Ok.I'm putting all info on homeworlds in a word file.That's why i'm asking when i don't understand.\n\n65) Laurie_Menke: Build G2 Littledipper\n\tLaurie_Menke: Sounds good! :o)\n\n66) Remneb: Sacrifice G2 Remneb\nBuild R1 Northstar\nBuild R2 Gumrak\n\n67) Laurie_Menke: Move R3 Laurie_menke Gumrak\n\n68) Remneb: Build G2 Remneb\n\n69) Laurie_Menke: Attack R2 Gumrak\n\tRemneb: Bg2HS =South created a G2 ship in the Remneb system.The left part is how i write down the move in my word file for Homeworlds.(Build green 2 Homeworld South).Yes...i'm using our game to make a sample. \n\tLaurie_Menke: LOL... I don't know that any game with me should be studied. I'm not very good at Homeworlds. But feel free if you'd like. :o)\n\n70) Remneb: Sacrifice Y2 Sweetpea\nMove R1 Northstar Frisco\nMove R1 Frisco Gumrak\nCatastrophe Gumrak R\n\n71) Laurie_Menke: Move G2 Littledipper Ram\n\n72) Remneb: Move R2 Sweetpea Frisco\n\n73) Laurie_Menke: Move G2 Littledipper Ram\n\n74) Remneb: Move G2 Remneb Frisco\n\n75) Laurie_Menke: Sacrifice Y2 Littledipper\nMove G2 Ram Remneb\nMove G2 Ram Remneb\n\tLaurie_Menke: Ouch! Didn't see that coming!\n\n76) Remneb: Attack G2 Remneb\n\tRemneb: Many years ago i red a book called "The war of eternity"...until now,i tough it was science-fiction!\n\n77) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild G1 Remneb\nCatastrophe Remneb Green\n\tLaurie_Menke: LOL! :o)\n\n78) Remneb: Move Y3 Frisco Remneb\n\n79) Laurie_Menke: Build G1 Laurie_menke\n\n80) Remneb: Move G2 Frisco Remneb\n\n81) Laurie_Menke: Discover G1 Laurie_menke Y1 Orion\n\n82) Remneb: Build Y2 Frisco\n\n83) Laurie_Menke: Build G2 Laurie_menke\n\tRemneb: Clever your last green wipeout.\n\n84) Remneb: Build Y2 Sweetpea\n\n85) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Orion\nBuild G3 Laurie_menke\nBuild G3 Orion\n\tLaurie_Menke: Thanks. I'm not sure if it got me any closer to winning, but it was fun. ;o)\n\n86) Remneb: Sacrifice Y2 Sweetpea\nMove G2 Remneb Ram\nMove G2 Ram Orion\nCatastrophe Orion G\n\n87) Laurie_Menke: Discover B1 Ram G2 Bigdipper\n\n88) Remneb: Build Y1 Sweetpea\n\n89) Laurie_Menke: Move G2 Laurie_menke Littledipper\n\n90) Remneb: Sacrifice Y1 Frisco\nMove R3 Northstar Bigdipper\n\n91) Laurie_Menke: Sacrifice B1 Bigdipper\nTrade G2 Y2 Littledipper\n\n92) Remneb: Sacrifice Y1 Sweetpea\nMove R3 Bigdipper Littledipper\n\n93) Laurie_Menke: Move Y2 Littledipper Laurie_menke\n\n94) Remneb: Attack R1 Littledipper\n\n95) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove R3 Ram Sweetpea\nMove R3 Sweetpea Frisco\n\tLaurie_Menke: Almost made a big mistake there...\n\n96) Remneb: Sacrifice Y2 Sweetpea\nMove R2 Frisco Remneb\nMove Y2 Frisco Littledipper\n\n97) Laurie_Menke: Build G1 Laurie_menke\n\n98) Remneb: Discover R2 Remneb Y3 Narva\n\n99) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n100) Remneb: Build Y1 Littledipper\n\n101) Laurie_Menke: Discover Y1 Laurie_menke G1 Green\n\n102) Remneb: Sacrifice Y1 Littledipper\nMove R3 Littledipper Narva\n\n103) Laurie_Menke: Move Y1 Green Frisco\n\n104) Remneb: Move R3 Narva Littledipper\n\n105) Laurie_Menke: Build Y1 Frisco\n\n106) Remneb: Build Y2 Littledipper\n\n107) Laurie_Menke: Build G1 Laurie_menke\n\tRemneb: The Avg. Length of a game is 15 turns and we have reach turn # 50 ! Do that mean we are very good or very slow ?\n\tLaurie_Menke: LOL... I think it means we are both beginners. :o)\n\n108) Remneb: Trade Y1 G1 Remneb\n\tRemneb: That was my secret idea (beginners) lol.\n\n109) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n110) Remneb: Build Y2 Remneb\n\tLaurie_Menke: :o)\n\n111) Laurie_Menke: Build G1 Laurie_menke\n\n112) Remneb: Sacrifice Y2 Remneb\nMove Y2 Littledipper Laurie_menke\nMove Y2 Littledipper Laurie_menke\nCatastrophe Laurie_menke Y\n\tRemneb: I've put our first 20 turns(using my notation system)on the Looney labs fan club and here on SDG(Forum-general-Homeworlds Tactical).We are making History !\n\tLaurie_Menke: LOL... I'm not sure that this is the kind of history I wanted to be making. ;o)\n\n113) Laurie_Menke: Move R3 Frisco Laurie_menke\n\n114) Remneb: Build G2 Remneb\n\n115) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n116) Remneb: Build Y2 Remneb\n\n117) Laurie_Menke: Build Y2 Laurie_menke\n\n118) Remneb: Move Y2 Remneb Narva\n\n119) Laurie_Menke: Build Y2 Frisco\n\n120) Remneb: Sacrifice Y2 Narva\nMove R2 Narva Littledipper\nMove R2 Littledipper Frisco\n\tLaurie_Menke: ::sigh::\n\n121) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y2 Frisco\nBuild Y3 Laurie_menke\nBuild R1 Laurie_menke\n\tRemneb: build g2 Remneb\n\tRemneb: Wrong window...feel sorry for your yellow submarine...star.\n\n122) Remneb: Build Y3 Remneb\nCatastrophe Frisco Y\n\tLaurie_Menke: LOL... don't you feel sorry for me. I can live with just one star. ;o)\n\n123) Laurie_Menke: Move R3 Laurie_menke Frisco\n\n124) Remneb: Sacrifice G2 Remneb\nBuild R2 Frisco\nBuild R2 Frisco\nCatastrophe Frisco R\n\n125) Laurie_Menke: Trade Y2 G2 Laurie_menke\n\n126) Remneb: Trade Y3 B3 Remneb\n\n127) Laurie_Menke: Discover Y1 Laurie_menke G3 Big\n\n128) Remneb: Build Y1 Remneb\n\n129) Laurie_Menke: Build Y1 Big\n\n130) Remneb: Discover Y1 Remneb Y3 Nadir\n\n131) Laurie_Menke: Build Y2 Big\n\n132) Remneb: Move Y1 Nadir Littledipper\n\n133) Laurie_Menke: Move Y1 Big Remneb\n\tRemneb: Buid-catastrophe-build-catastrophe-in that game i'm like an elephant in a porcelain shop !\n\tLaurie_Menke: Yeah... stop breaking my merchandise, will you? ;o) ;o) ;o)\n\n134) Remneb: Attack Y1 Remneb\n\n135) Laurie_Menke: Move Y1 Big Remneb\n\n136) Remneb: Move Y3 Remneb Big\n\n137) Laurie_Menke: Trade Y1 B1 Remneb\n\n138) Remneb: Attack B1 Remneb\n\n139) Laurie_Menke: Build Y1 Laurie_menke\n\n140) Remneb: Sacrifice B3 Remneb\nTrade Y1 B1 Littledipper\nTrade R1 B1 Littledipper\nTrade R3 B3 Littledipper\n\n141) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y1 Big\nBuild Y2 Big\nCatastrophe Big Yellow\n\n142) Remneb: Trade B3 Y3 Littledipper\n\n143) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\n144) Remneb: Discover B1 Remneb Y3 Bugs\n\n145) Laurie_Menke: Move Y3 Laurie_menke Littledipper\n\n146) Remneb: Sacrifice Y3 Littledipper\nMove B1 Bugs Laurie_menke\nMove B1 Littledipper Laurie_menke\nMove B1 Littledipper Laurie_menke\nCatastrophe Laurie_menke B\n\n\tRemneb: Ouf! That was i'm sure the longuest Homeworlds game ever ! I'm not so happy to win after all.It was a better pleasure just to play with you.I learn a lot from you (with some bad surprise in the course of the game). I must tell you that it was quite difficult for me just to learn the basic of the rules ! I think i have a brain for games with rounded units (like cannon,go,chekkers,chess).I have the same difficulties to be good at pikemen cause the units are triangles or squares.I don't understand why ?Thanks for the game and have a good day.\n\tRemneb: I'm going to put the entire game on SDG forum (General-Homeworlds tactical) in 2 world files,one with my special notation and the other one with both SDG notation and mine.\n\tRemneb: world files = word files\n\tLaurie_Menke: It was a pleasure playing with you, too, Remneb! And I think we learned a lot from each other. :o) That's funny about the games with rounded units. I, too, seem to be better at some games than others and don't know why. :o) Feel free to post this game if you'd like, but I don't think it will be educational to anyone but us. ;o)\n\nHomeworlds Online (SDG# 18608)\nStarted: 2010.12.30, Ended: 2011.1.26\nParticipants: lorgar (S), mathochist (N)\nWinner: lorgar\n\n\nHomeworlds Online (SDG# 18622)\nStarted: 2010.12.30, Ended: 2011.1.3\nParticipants: ajo (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\tajo: homeworld r3 b2 g3\n\tajo: build g1 ajo\n\n2) ajo: Homeworld B2 R1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tajo: Ah, now I see which box to type in. :) This'll be my first game on SDG, although not my first of Homeworlds. Good luck to you too!\n\n4) ajo: Build G1 Ajo\n\tts52: Welcome to SDG. It's a great interface for playing homeworlds.\n\n5) ts52: T G1 R1 Ts52\n\n6) ajo: Build G1 Ajo\n\n7) ts52: Build R1 Ts52\n\n8) ajo: Trade G1 Y1 Ajo\n\n9) ts52: Build R2 Ts52\n\n10) ajo: Build Y1 Ajo\n\n11) ts52: Discover R2 Ts52 G1 Robin\n\n12) ajo: Discover Y1 Ajo B3 Alpha\n\n13) ts52: B R2 Ts52\n\n14) ajo: Move G1 Ajo Alpha\n\n15) ts52: T R2 Y2 Ts52\n\n16) ajo: Build G1 Ajo\n\n17) ts52: Move Y2 Ts52 Robin\n\n18) ajo: Build G2 Ajo\n\n19) ts52: B R2 Robin\n\n20) ajo: Build G2 Alpha\n\n21) ts52: M R2 Robin Alpha\n\n22) ajo: Sacrifice Y1 Alpha\nDiscover G2 Alpha B1 Beta\n\n23) ts52: Attack G1 Alpha\n\tajo: FYI, I'll keep moving until about 8:45pm (it being 8:15pm now). After that, happy New Year, see you on Sunday. :)\n\n24) ajo: Sacrifice G2 Ajo\nBuild G2 Beta\nBuild Y1 Ajo\n\tts52: Happy New Year!\n\n25) ts52: Build R2 Alpha\n\n26) ajo: Discover Y1 Ajo R3 Gamma\n\n27) ts52: Build R3 Robin\n\tajo: Happy New Year!\n\n28) ajo: Trade G2 Y2 Beta\n\n29) ts52: Build R3 Alpha\n\n30) ajo: Build G2 Beta\n\n31) ts52: T R2 Y2 Alpha\n\n32) ajo: Trade G2 R2 Beta\n\n33) ts52: M R3 Alpha Beta\n\n34) ajo: Sacrifice G3 Ajo\nBuild Y1 Beta\nBuild Y3 Gamma\nBuild Y3 Ajo\n\n35) ts52: A R2 Beta\n\tajo: This doesn't seem to be going so well for me so far...\n\n36) ajo: Sacrifice Y3 Gamma\nDiscover Y1 Gamma B1 Delta\nMove Y1 Beta Ts52\nMove Y2 Beta Ts52\n\n37) ts52: Build Y3 Alpha\n\n38) ajo: Sacrifice G2 Beta\nBuild G2 Ajo\nPass\n\tts52: It's not over yet.\n\n39) ts52: Build R3 Ts52\n\n40) ajo: Trade G1 B1 Ajo\n\n41) ts52: Move R1 Ts52 Delta\n\n42) ajo: Move Y1 Delta Ts52\nCatastrophe Ts52 Yellow\n\tajo: You made me do it...\n\n43) ts52: Trade R3 Y3 Ts52\n\tts52: I did. I couldn't live with it hanging over my head any more.\n\n44) ajo: Trade Y3 R3 Ajo\n\n45) ts52: Sacrifice Y3 Alpha\nMove R2 Alpha Ajo\nMove R1 Delta Alpha\nMove R1 Alpha Ajo\nCatastrophe Ajo Red\n\n46) ajo: Trade B1 R1 Ajo\n\tajo: I think that's pretty close to game...\n\n47) ts52: Move R3 Robin Ajo\n\n48) ajo: Sacrifice G2 Ajo\nBuild R1 Ajo\nBuild R2 Ajo\nCatastrophe Ajo Red\n\tts52: yeah, I think that's about it\n\n49) ts52: Move R2 Robin Ajo\n\n50) ajo: Pass\n\tajo: Good game!\n\n51) ts52: Attack Y1 Ajo\n\tts52: Thanks for the game.\n\n\nHomeworlds Online (SDG# 18745)\nVariants: "Hard time"\nStarted: 2011.1.1, Ended: 2011.1.3\nParticipants: baxy (S), ajo (N)\nWinner: baxy\n\n1) ajo: Homeworld Y3 B2 G3\n\n2) baxy: Homeworld G3 Y1 B3\n\n3) ajo: Build G1 Ajo\n\n4) baxy: Build B1 Baxy\n\n5) ajo: Discover G1 Ajo B1 Alpha\n\n6) baxy: Discover B1 Baxy Y2 Gwar\n\n7) ajo: Build G1 Ajo\n\n8) baxy: Build B1 Baxy\n\n9) ajo: Build G1 Alpha\n\n10) baxy: Trade B3 G3 Baxy\n\n11) ajo: Trade G1 Y1 Alpha\n\n12) baxy: Sacrifice G3 Baxy\nBuild B2 Gwar\nBuild B2 Gwar\nBuild B3 Baxy\n\n13) ajo: Sacrifice G3 Ajo\nBuild G1 Alpha\nBuild G2 Alpha\nBuild G2 Ajo\n\n14) baxy: Trade B3 G3 Baxy\n\n15) ajo: Trade G1 R1 Alpha\n\n16) baxy: Discover B1 Gwar Y1 Tool\n\n17) ajo: Move G2 Alpha Gwar\n\n18) baxy: Sacrifice G3 Baxy\nBuild B3 Baxy\nBuild B3 Tool\nBuild B3 Gwar\n\n19) ajo: Build Y2 Alpha\n\n20) baxy: Sacrifice B2 Gwar\nTrade B1 R1 Tool\nTrade B3 G3 Baxy\n\n21) ajo: Sacrifice Y2 Alpha\nMove G2 Gwar Baxy\nDiscover G1 Alpha Y2 Gamma\n\n22) baxy: Sacrifice G3 Baxy\nBuild B1 Gwar\nBuild B2 Tool\nBuild B3 Baxy\n\n23) ajo: Sacrifice R1 Alpha\nAttack B1S Baxy\n\n24) baxy: Move B3 Tool Ajo\n\tajo: That last move of mine may have been a mistake... oh well, let's see.\n\n25) ajo: Trade Y1 R1 Alpha\n\n26) baxy: Sacrifice R1 Tool\nAttack G2N Ajo\n\n27) ajo: Move B1 Baxy Gwar\nCatastrophe Gwar Blue\n\n28) baxy: Trade B3 R3 Ajo\n\n29) ajo: Pass\n\tajo: Good game!\n\n30) baxy: Attack G1N Ajo\n\tbaxy: good game mon :)\n\n\nHomeworlds Online (SDG# 18728)\nStarted: 2011.1.3, Ended: 2011.1.13\nParticipants: ajo (S), Laurie_Menke (N)\nWinner: ajo\n\n1) Laurie_Menke: Homeworld B2 Y1 G3\n\tLaurie_Menke: Welcome to SDG, Ajo! Have fun, and feel free to ask if you have questions! :o)\n\n2) ajo: Homeworld B1 Y3 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) ajo: Build G1 Ajo\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) ajo: Build G1 Ajo\n\n7) Laurie_Menke: Discover Y1 Laurie_menke G3 Green\n\n8) ajo: Discover G1 Ajo B2 Alpha\n\n9) Laurie_Menke: Build Y1 Green\n\n10) ajo: Build G1 Ajo\n\n11) Laurie_Menke: Build Y2 Green\n\n12) ajo: Build G2 Alpha\n\n13) Laurie_Menke: Move Y2 Green Alpha\n\n14) ajo: Trade G2 R2 Alpha\n\n15) Laurie_Menke: Move Y2 Alpha Ajo\n\n16) ajo: Trade G1 R1 Ajo\n\n17) Laurie_Menke: Move Y1 Green Laurie_menke\n\n18) ajo: Attack Y2N Ajo\n\n19) Laurie_Menke: Build Y2 Laurie_menke\n\tLaurie_Menke: Oops! I misremembered the rules. I was thinking your red ship had to be as big as mine, but it's ANY ship in the system. ::sigh::\n\n20) ajo: Move Y2 Ajo Alpha\n\tajo: I was wondering about those past few moves!\n\n21) Laurie_Menke: Discover Y2 Laurie_menke R3 Red\n\tLaurie_Menke: ::sigh::\n\n22) ajo: Move Y2 Alpha Green\n\n23) Laurie_Menke: Discover Y1 Green R2 Pink\n\n24) ajo: Build Y2 Green\n\tajo: I'm wondering about the "move yellow ships to red stars" strategy, too... Guess I'll find out how it works in a moment.\n\n25) Laurie_Menke: Build Y3 Laurie_menke\n\tLaurie_Menke: LOL... Probably just the stupidity of a not-so-great Homeworlds player. I'm just trying to monopolize reds so you can't use them against me. ;o)\n\n26) ajo: Move Y2 Green Laurie_menke\nCatastrophe Laurie_menke Yellow\n\n27) Laurie_Menke: Trade G3 R3 Laurie_menke\n\tajo: I think you've got about two turns left at this point. Getting a monopoly on red would only really have worked if I didn't already have some. ;)\n\tLaurie_Menke: Ouch! I'm playing this game even more poorly than usual. :o( Sorry to be so little challenge to you. But let's see what kind of mischief I can get into while I can. ;o)\n\n28) ajo: Build G1 Alpha\n\n29) Laurie_Menke: Discover Y1 Pink G3 Forest\n\n30) ajo: Trade G1 B1 Ajo\n\n31) Laurie_Menke: Build Y1 Forest\n\n32) ajo: Build B1 Ajo\n\n33) Laurie_Menke: Discover Y1 Forest B2 Blue\n\n34) ajo: Sacrifice Y2 Green\nMove B1 Ajo Laurie_menke\nMove B1 Ajo Laurie_menke\n\tajo: Trying to belatedly monopolize blue now? :)\n\n35) Laurie_Menke: Attack B1 Laurie_menke\n\tajo: Checkmate. Good game. :)\n\tLaurie_Menke: Naw, just trying to build up a fleet again without risking catastrophe. And I am absolutely sure that you've won, but I don't see it quite yet. I figure you're trying to cause a catastrophe in blue, but you're not quite there yet. So I will congratulate you on the inevitable win, but could we play it out so I can see what your plan is?\n\tLaurie_Menke: Oh... wait... just saw it. You'll sacrifice your g3 and build more blue. Got it. Well, thanks for a great game! Congratulations! :o)\n\n36) ajo: Sacrifice G1 Alpha\nBuild B3 Laurie_menke\nCatastrophe Laurie_menke Blue\n\n\nHomeworlds Online (SDG# 31741)\nVariants: "Unrated"\nStarted: 2017.4.13, Ended: 2017.4.22\nParticipants: wil (S), panglott (N)\nWinner: wil\n\n1) panglott: Homeworld G3 B2 R3\n\n2) wil: Homeworld Y3 B1 G3\n\twil: I like the wild openings\n\n3) panglott: Build R1 Panglott\n\n4) wil: B G1 Wil\n\n5) panglott: Trade R1 Y1 Panglott\n\n6) wil: T G1 B1 Wil\n\n7) panglott: Build R1 Panglott\n\n8) wil: B B1 Wil\n\n9) panglott: Build Y1 Panglott\n\n10) wil: D B1 Wil G2 G2\n\n11) panglott: Build Y1 Panglott\n\n12) wil: S G3 Wil\nB B2 G2\nB B2 G2\nB B3 Wil\n\n13) panglott: Discover Y1 Panglott R1 Pleidy\n\n14) wil: T B2 R2 G2\n\n15) panglott: Build Y2 Panglott\n\n16) wil: T B2 Y2 G2\n\n17) panglott: Move Y2 Panglott Pleidy\n\n18) wil: B B2 G2\n\n19) panglott: Build Y2 Panglott\n\n20) wil: B Y3 G2\n\n21) panglott: Discover Y1 Pleidy R2 Plaits\n\n22) wil: D Y2 G2 G1 G1\n\n23) panglott: Move Y1 Panglott Pleidy\n\n24) wil: B Y3 G1\n\n25) panglott: Sacrifice Y2 Pleidy\nMove Y1 Panglott Pleidy\nDiscover Y1 Pleidy R2 Whisker\n\n26) wil: B Y2 G2\n\n27) panglott: Move Y1 Pleidy Plaits\n\n28) wil: Trade B3 R3 Wil\n\n29) panglott: Sacrifice Y2 Panglott\nMove Y1 Plaits Wil\nMove Y1 Plaits Wil\n\n30) wil: Attack Y1 Wil\n\n31) panglott: Move Y1 Whisker Wil\nCatastrophe Wil Yellow\n\n32) wil: S Y3 G2\nM R2 G2 Wil\nM R2 Wil Panglott\nM R3 Wil Panglott\nC Panglott R\n\n\nHomeworlds Online (SDG# 31883)\nVariants: "Hard time"\nStarted: 2017.4.13, Ended: 2017.4.28\nParticipants: panglott (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R3 Y1 G3 *\n\n\twil: two, two, two games at once!\r\n\n\n2) panglott: Homeworld G3 R1 B3\n\n3) wil: B G1 Wil\n\n4) panglott: Build B1 Panglott\n\n5) wil: D G1 Wil B2 B2\n\n6) panglott: Trade B1 Y1 Panglott\n\n7) wil: T G1 Y1 B2\n\n8) panglott: Build Y2 Panglott\n\n9) wil: B G1 Wil\n\n10) panglott: Move Y1 Panglott B2\n\n11) wil: T Y1 R1 B2\n\twil: Omg!! We have a short universe!!!\n\n12) panglott: Discover Y1 B2 G1 Centaury\n\n13) wil: M G1 Wil B2\n\n14) panglott: Build Y1 Panglott\n\n15) wil: B R1 B2\n\n16) panglott: Trade Y2 R2 Panglott\n\n17) wil: B G1 Wil\n\n18) panglott: Move R2 Panglott B2\n\n19) wil: B R2 B2\nC B2 R\n\n20) panglott: Build B1 Panglott\n\n21) wil: B G2 B2\n\n22) panglott: Build Y2 Panglott\n\n23) wil: T G2 Y2 B2\n\n24) panglott: Trade Y2 R2 Panglott\n\n25) wil: Trade G1 R1 B2\n\n26) panglott: Build Y2 Panglott\n\n27) wil: Build G1 Wil\n\n28) panglott: Build Y2 Centaury\n\n29) wil: S G1 Wil\nB Y3 B2\n\n30) panglott: Build B1 Panglott\n\n31) wil: D Y2 B2 G1 G1\n\n32) panglott: Discover B3 Panglott R2 Deneb\n\n33) wil: B Y3 G1\n\n34) panglott: Build Y3 Panglott\n\n35) wil: S Y2 G1\nM Y3 G1 B2\nM Y3 B2 Panglott\nC Panglott Y\n\n36) panglott: Build B1 Panglott\n\n37) wil: M Y3 B2 Panglott\n\n38) panglott: Trade B1 Y1 Panglott\n\n39) wil: Attack R2 Panglott\n\n40) panglott: Move Y1 Panglott Deneb\n\n41) wil: S R2 Panglott\nA B1 Panglott\nA B1 Panglott\n\twil: 1 cardinal rule is keeping a big gun at home...I'll admit I have broken it before...sometimes successful, sometimes to my detriment.\n\tpanglott: Right, because you can use my own red planet against me. Good grief ;)\n\n\nHomeworlds Online (SDG# 18811)\nVariants: "Hard time"\nStarted: 2011.1.5, Ended: 2011.1.7\nParticipants: TwoShort (S), goulo (N)\nWinner: TwoShort\n\n1) goulo: Homeworld G3 B2 Y3\n\tTwoShort: Howdy\n\n2) TwoShort: Homeworld R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\n4) TwoShort: Build G1 Twoshort\n\n5) goulo: Build Y1 Goulo\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) goulo: Trade Y1 G1 Goulo\n\n8) TwoShort: Build G1 Twoshort\n\n9) goulo: Trade Y1 R1 Goulo\n\n10) TwoShort: Build G1 Twoshort\n\n11) goulo: Sacrifice Y3 Goulo\nDiscover G1 Goulo Y1 Citroneto\nDiscover G1 Citroneto R3 Rubenego\nMove G1 Rubenego Twoshort\nCatastrophe Twoshort G\n\n12) TwoShort: Trade Y1 G1 Twoshort\n\n13) goulo: Build R1 Goulo\n\n14) TwoShort: Build G1 Twoshort\n\n15) goulo: Build R2 Goulo\n\n16) TwoShort: Build G1 Twoshort\n\n17) goulo: Trade R2 G2 Goulo\n\n18) TwoShort: Trade G1 Y1 Twoshort\n\n19) goulo: Build R2 Goulo\n\n20) TwoShort: Build G1 Twoshort\n\n21) goulo: Trade R2 Y2 Goulo\n\n22) TwoShort: Discover G1 Twoshort B3 Bluestar\n\n23) goulo: Discover G2 Goulo Y1 Citroneto\n\n24) TwoShort: Build G2 Bluestar\n\n25) goulo: Build R2 Goulo\n\n26) TwoShort: Trade G2 R2 Bluestar\n\n27) goulo: Move R1 Goulo Citroneto\n\n28) TwoShort: Build G2 Bluestar\n\n29) goulo: Trade R1 B1 Goulo\n\n30) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n31) goulo: Move B1 Goulo Citroneto\n\n32) TwoShort: Build Y1 Twoshort\n\n33) goulo: Move G2 Citroneto Yolonda\n\n34) TwoShort: Sacrifice G2 Bluestar\nBuild G2 Twoshort\nBuild G2 Yolonda\n\n35) goulo: Move G2 Yolonda Citroneto\n\n36) TwoShort: Move G2 Yolonda Citroneto\n\n37) goulo: Attack G2 Citroneto\n\n38) TwoShort: Sacrifice G2 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\n\n39) goulo: Discover G2 Citroneto G3 Smeraldego\n\n40) TwoShort: Move Y1 Twoshort Bluestar\n\n41) goulo: Build Y2 Goulo\n\n42) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Twoshort\nBuild G3 Bluestar\n\n43) goulo: Discover G2 Citroneto Y3 Citronego\n\n44) TwoShort: Sacrifice Y2 Bluestar\nMove G3 Bluestar Citroneto\nMove G3 Citroneto Goulo\n\n45) goulo: Move G2 Citronego Citroneto\n\n46) TwoShort: Trade Y3 R3 Twoshort\n\n47) goulo: Build Y2 Goulo\n\n48) TwoShort: Sacrifice R2 Bluestar\nAttack R2 Goulo\nAttack Y2 Goulo\n\n\tgoulo: Thanks for the game. Man, I see why your rating is so high and you're at the top of the ladder! :)\n\tgoulo: I noticed you do some tactics that I'd never thought of before. Hopefully my brain will absorb the lessons... :)\n\tTwoShort: Thanks for an interesting game! I was pretty worried after that early catastrophe when things looked a lot worse than I had thought they would :) \n\tgoulo: Yes, I audaciously thought I had a good chance then, since I could start producing again before you, but then step by step you whittled away my advantage, and did the clever tricks that let you build 3-ships while I couldn't. It was like watching a magician at work. :)\n\nHomeworlds Online (SDG# 18674)\nVariants: "Hard time"\nStarted: 2011.1.6, Ended: 2011.1.24\nParticipants: Aristos (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 Y2 G3 *\n\n2) Aristos: Homeworld Y3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Aristos: Build G1 Aristos\n\n5) SilentTitan: Discover G1 Silenttitan B1 Samsung\n\n6) Aristos: Discover G1 Aristos Y2 Doorstep\n\n7) SilentTitan: Trade G1 B1 Samsung\n\n8) Aristos: Build G1 Aristos\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) Aristos: Discover G1 Doorstep Y1 Windingroad\n\n11) SilentTitan: Move G1 Silenttitan Samsung\n\n12) Aristos: Build G2 Windingroad\n\n13) SilentTitan: Build B2 Samsung\n\n14) Aristos: Trade G3 Y3 Aristos\n\n15) SilentTitan: Trade B2 Y2 Samsung\n\n16) Aristos: Build G2 Aristos\n\n17) SilentTitan: Build B2 Samsung\n\n18) Aristos: Trade G2 B2 Aristos\n\tAristos: Almost made a really dumb mistake. \n\tAristos: Or, rather, technically, I did make a really dumb mistake, but I saw it fast enough to undo. :-)\n\n19) SilentTitan: Discover B2 Samsung B2 Acer\n\n20) Aristos: Build G2 Aristos\n\n21) SilentTitan: Build B3 Samsung\n\n22) Aristos: Sacrifice Y3 Aristos\nMove B2 Aristos Acer\nMove B2 Acer Samsung\nDiscover G1 Aristos Y2 Waystation\nCatastrophe Samsung Blue\n\n23) SilentTitan: Build G1 Silenttitan\n\n24) Aristos: Build G2 Aristos\n\n25) SilentTitan: Move G1 Silenttitan Windingroad\n\n26) Aristos: Build G3 Aristos\n\n27) SilentTitan: Build G3 Windingroad\nCatastrophe Windingroad Green\n\tAristos: This time I just clicked on Undo by mistake. \n\n28) Aristos: Discover G1 Waystation Y1 Vantagepoint\n\n29) SilentTitan: Build G1 Silenttitan\n\n30) Aristos: Trade G3 Y3 Aristos\n\n31) SilentTitan: Discover G1 Silenttitan B1 Temp\n\n32) Aristos: Sacrifice G2 Aristos\nBuild G1 Vantagepoint\nBuild G2 Vantagepoint\n\tSilentTitan: Wow. I cannot believe how hard it is to play from red/yellow homeworld. no blue is tough.\n\n33) SilentTitan: Sacrifice B2 Acer\nTrade G3 B3 Silenttitan\nPass\n\n34) Aristos: Build G2 Aristos\n\n35) SilentTitan: Build G3 Temp\n\tAristos: Many players consider the game unwinnable (assuming the opponent has even moderate skill) unless both blue and green are included in your starting position (either in the ship or in the stars).\n\n36) Aristos: Build G3 Aristos\n\tSilentTitan: well yeah... I sorta knew that ... but let's say I've really come to have a better understanding now that I've tried it.\r\n\n\n37) SilentTitan: Trade G3 Y3 Temp\n\tAristos: Darn. You changed colors. Now I have to figure out how to attack you. I could see it was a good move to force you to sacrifice, but I'm hard pressed to figure out what to do next. \n\n38) Aristos: Trade G3 R3 Aristos\n\n39) SilentTitan: Build G3 Temp\n\n40) Aristos: Discover Y3 Aristos B2 Thirdattempt\n\n41) SilentTitan: Trade G3 R3 Temp\n\n42) Aristos: Build R1 Aristos\n\n43) SilentTitan: Build G3 Temp\n\tSilentTitan: I had wondered when you were going to get to Red\n\n44) Aristos: Trade R3 B3 Aristos\n\tAristos: I actually wanted blue, but you created this nasty threat by going yellow. Have to have a defense there. *sigh*\n\n45) SilentTitan: Sacrifice G3 Temp\nBuild B1 Silenttitan\nBuild Y1 Temp\nBuild G3 Temp\n\n46) Aristos: Sacrifice G2 Aristos\nBuild G2 Aristos\nBuild Y1 Thirdattempt\n\n47) SilentTitan: Move Y3 Temp Thirdattempt\n\n48) Aristos: Discover Y1 Thirdattempt R1 Runningscared\n\n49) SilentTitan: Sacrifice G3 Temp\nBuild Y2 Temp\nBuild Y2 Thirdattempt\nBuild G3 Temp\n\n50) Aristos: Sacrifice Y3 Thirdattempt\nMove G1 Vantagepoint Thirdattempt\nMove G1 Thirdattempt Temp\nMove G1 Vantagepoint Thirdattempt\n\n51) SilentTitan: Sacrifice G1 Temp\nBuild Y3 Temp\n\n52) Aristos: Build G1 Temp\n\n53) SilentTitan: Sacrifice Y3 Temp\nMove Y3 Thirdattempt Aristos\nMove G3 Temp Thirdattempt\nMove G3 Thirdattempt Aristos\n\n\tAristos: Well played.\r\n\n\tSilentTitan: Thank you... It was a tough game\n\nHomeworlds Online (SDG# 18825)\nVariants: "Hard time"\nStarted: 2011.1.8, Ended: 2011.1.19\nParticipants: TwoShort (S), AdamBadura (N)\nWinner: TwoShort\n\n1) AdamBadura: Homeworld B3 G1 Y3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) TwoShort: Build G1 Twoshort\n\n5) AdamBadura: Trade Y1 G1 Adambadura\n\n6) TwoShort: Build G2 Twoshort\n\n7) AdamBadura: Build G2 Adambadura\n\n8) TwoShort: Trade G2 Y2 Twoshort\n\n9) AdamBadura: Trade G1 R1 Adambadura\n\n10) TwoShort: Discover G1 Twoshort B3 Bluonia\n\n11) AdamBadura: Discover G2 Adambadura Y2 Alphacentauri\n\n12) TwoShort: Build G1 Twoshort\n\n13) AdamBadura: Build R1 Adambadura\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n15) AdamBadura: Build G3 Alphacentauri\n\tAdamBadura: You are way beyond my level... But lets see how you will destroy me... ;)\n\n16) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Bluonia Alphacentauri\nMove G2 Bluonia Alphacentauri\nCatastrophe Alphacentauri Green\n\tTwoShort: I think I am only slightly beyond your level.. so I'll show you how I'll achieve a very minor, and possibly debatable, advantage relative to last turn. Which, if I can do similar things a few more times, and nothing more dramatic happens, is how I'll destroy you :)\n\n17) AdamBadura: Trade R1 G1 Adambadura\n\tAdamBadura: I expected you will do this. However I couldn't think of any other way of preventing you from having more G3 ships and I also wanted to see how it will turn out.\n\n18) TwoShort: Trade G2 Y2 Twoshort\n\n19) AdamBadura: Build G2 Adambadura\n\n20) TwoShort: Build G2 Twoshort\n\n21) AdamBadura: Sacrifice Y3 Adambadura\nDiscover G1 Adambadura Y2 Ontheway\nDiscover G1 Ontheway Y3 Stillontheway\nMove G1 Stillontheway Twoshort\nCatastrophe Twoshort G\n\n22) TwoShort: Trade Y2 G2 Twoshort\n\tTwoShort: Ack!\n\n23) AdamBadura: Build R1 Adambadura\n\n24) TwoShort: Build G1 Twoshort\n\n25) AdamBadura: Build R2 Adambadura\n\n26) TwoShort: Trade G2 R2 Twoshort\n\n27) AdamBadura: Trade R1 Y1 Adambadura\n\n28) TwoShort: Build G1 Twoshort\n\n29) AdamBadura: Build G2 Adambadura\n\n30) TwoShort: Build G2 Twoshort\n\n31) AdamBadura: Discover G2 Adambadura Y2 Newworld\n\n32) TwoShort: Trade G1 Y1 Twoshort\n\n33) AdamBadura: Move R1 Adambadura Newworld\n\n34) TwoShort: Discover R2 Twoshort G3 Grogar\n\n35) AdamBadura: Build G1 Newworld\n\n36) TwoShort: Build G3 Twoshort\n\n37) AdamBadura: Build G3 Adambadura\n\n38) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n39) AdamBadura: Discover G2 Adambadura B2 Mutators\n\n40) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y2 Twoshort\nBuild G3 Twoshort\n\n41) AdamBadura: Sacrifice G3 Adambadura\nBuild G3 Mutators\nBuild Y2 Adambadura\nBuild Y3 Adambadura\n\n42) TwoShort: Discover Y1 Twoshort B3 Bluonia\n\n43) AdamBadura: Sacrifice Y1 Adambadura\nMove G2 Mutators Bluonia\n\n44) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y3 Bluonia\nBuild G3 Twoshort\n\n45) AdamBadura: Move R1 Newworld Bluonia\n\tAdamBadura: Wired... I don't know what I should do now. No plan. No nothing...\n\tTwoShort: It's definitely a complicated position. I'm trying to avoid deciding if I can see a good move for you, since I wouldn't want to tell you if I did :)\n\n46) TwoShort: Sacrifice R2 Grogar\nAttack G2 Bluonia\nAttack R1 Bluonia\n\n47) AdamBadura: Sacrifice G2 Newworld\nBuild G2 Mutators\nBuild G3 Newworld\n\tAdamBadura: I wondered if you will do it and give my G3 ship. Well... Now I know... ;)\n\tAdamBadura: On the other hand it is not that much giving... :)\r\n\r\nSorry for long moves recently but I try to play it well and since you are on the 1 place in the Ladder I'm not blocking you from climbing up anyway...\n\tTwoShort: Don't worry about taking your time, it's no problem.\r\n\r\nAnd, yeah, I'm happy to give you the G3 I just didn't plan to let you keep it :)\r\n\n\n48) TwoShort: Sacrifice G2 Yolonda\nBuild G2 Bluonia\nBuild Y3 Bluonia\n\n49) AdamBadura: Move Y2 Adambadura Mutators\n\n50) TwoShort: Move Y3 Bluonia Mutators\n\n51) AdamBadura: Sacrifice R2 Adambadura\nAttack Y3 Mutators\nPass\n\n52) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Bluonia Mutators\nMove Y3 Mutators Adambadura\n\n\tAdamBadura: Nice one. You are too strong (or maybe two strong... ;))\n\nHomeworlds Online (SDG# 18837)\nVariants: "Hard time"\nStarted: 2011.1.9, Ended: 2011.2.11\nParticipants: goulo (S), dlwillson (N)\nWinner: goulo\n\n1) dlwillson: H B3 Y1 G3\n\n2) goulo: Homeworld B1 G2 Y3\n\tgoulo: hi, have fun!\n\n3) dlwillson: B G1 Dlwillson\n\n4) goulo: Build Y1 Goulo\n\tdlwillson: You too!\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) goulo: Discover Y1 Goulo G3 Smeraldego\n\n7) dlwillson: B Y2 Dlwillson\n\n8) goulo: Build Y2 Goulo\n\n9) dlwillson: D Y1 Dlwillson G2 Leaf\n\n10) goulo: Trade Y3 G3 Goulo\n\n11) dlwillson: B G1 Dlwillson\n\n12) goulo: Build G1 Goulo\n\n13) dlwillson: T G3 R3 Dlwillson\n\n14) goulo: Trade G1 R1 Goulo\n\n15) dlwillson: B G1 Dlwillson\n\n16) goulo: Build R1 Goulo\n\n17) dlwillson: D G1 Dlwillson B2 Cat\n\n18) goulo: Move R1 Goulo Smeraldego\n\n19) dlwillson: B G1 Cat\n\n20) goulo: Build Y2 Goulo\n\n21) dlwillson: Build Y3 Leaf\n\n22) goulo: Build Y3 Smeraldego\n\n23) dlwillson: D Y2 Dlwillson G2 Snake\n\n24) goulo: Move Y3 Smeraldego Cat\n\n25) dlwillson: B Y3 Snake\n\n26) goulo: Build R1 Smeraldego\n\n27) dlwillson: Build G3 Dlwillson\n\n28) goulo: Move R1 Smeraldego Cat\n\n29) dlwillson: Sacrifice Y2 Snake\nMove R3 Dlwillson Snake\nMove R3 Snake Smeraldego\n\n30) goulo: Sacrifice Y1 Smeraldego\nMove R1 Smeraldego Cat\n\n31) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild R2 Smeraldego\nBuild Y1 Snake\n\n32) goulo: Attack G1 Cat\n\n33) dlwillson: Sacrifice Y3 Snake\nMove Y1 Snake Smeraldego\nDiscover Y1 Leaf B3 Juniper\nMove R2 Smeraldego Leaf\n\n34) goulo: Attack G1 Cat\n\n35) dlwillson: Discover G1 Dlwillson B2 Grape\n\n36) goulo: Build G2 Cat\n\n37) dlwillson: M R2 Leaf Dlwillson\n\n38) goulo: Move G2 Cat Dlwillson\n\n39) dlwillson: Attack G2 Dlwillson\n\n40) goulo: Sacrifice Y2 Goulo\nMove G1 Cat Dlwillson\nMove G1 Cat Dlwillson\nCatastrophe Dlwillson G\n\n41) dlwillson: Move Y3 Leaf Dlwillson\n\n42) goulo: Trade R1 G1 Cat\n\n43) dlwillson: Trade Y3 G3 Dlwillson\n\n44) goulo: Build Y2 Cat\n\n45) dlwillson: Build G1 Dlwillson\n\n46) goulo: Build G2 Cat\n\n47) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Grape\nBuild Y2 Juniper\nBuild G3 Dlwillson\n\n48) goulo: Sacrifice Y2 Cat\nMove G1 Cat Dlwillson\nMove G2 Cat Dlwillson\nCatastrophe Dlwillson G\n\n49) dlwillson: Sacrifice Y2 Juniper\nMove R3 Smeraldego Cat\nMove R3 Cat Dlwillson\n\n50) goulo: Build G1 Goulo\n\n51) dlwillson: Trade R3 G3 Dlwillson\n\n52) goulo: Move G1 Goulo Juniper\n\n\tgoulo: !\r\nThanks for the game.\n\nHomeworlds Online (SDG# 18727)\nStarted: 2011.1.10, Ended: 2011.1.24\nParticipants: ts52 (S), lorgar (N)\nWinner: ts52\n\n1) lorgar: Homeworld Y1 G2 B3\n\tlorgar: My dreaded foe, we meet again ;)\n\n2) ts52: H B1 Y3 G3\n\tts52: Well met and have a good game.\n\n3) lorgar: Build B1 Lorgar\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade B1 G1 Lorgar\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) lorgar: Build B1 Lorgar\n\n8) ts52: Build Y1 Ts52\n\n9) lorgar: Trade B1 G1 Lorgar\n\n10) ts52: Discover Y1 Ts52 G2 Robin\n\n11) lorgar: Discover G1 Lorgar B3 Blacklagoon\n\n12) ts52: Discover Y1 Ts52 G2 Kermit\n\n13) lorgar: Build B1 Lorgar\n\n14) ts52: B Y2 Robin\n\n15) lorgar: Build B1 Lorgar\n\n16) ts52: Build Y2 Kermit\n\n17) lorgar: Trade B1 R1 Lorgar\n\n18) ts52: M Y2 Robin Blacklagoon\n\n19) lorgar: Build B1 Lorgar\n\n20) ts52: Trade Y2 R2 Blacklagoon\n\n21) lorgar: Trade B1 R1 Lorgar\n\n22) ts52: Attack G1 Blacklagoon\n\n23) lorgar: Trade B3 Y3 Lorgar\n\n24) ts52: Build G1 Ts52\n\n25) lorgar: Build Y2 Lorgar\n\n26) ts52: Sacrifice Y2 Kermit\nMove Y1 Robin Blacklagoon\nMove Y1 Blacklagoon Lorgar\nCatastrophe Lorgar Yellow\n\n27) lorgar: Build R1 Lorgar\n\n28) ts52: Build G2 Blacklagoon\n\n29) lorgar: Trade G1 B1 Lorgar\n\tlorgar: sod it, you got me ^^\n\n30) ts52: Sacrifice G3 Ts52\nBuild G1 Blacklagoon\nBuild G3 Ts52\nBuild G3 Ts52\n\n31) lorgar: Build B2 Lorgar\n\n32) ts52: Trade G3 Y3 Ts52\n\n33) lorgar: Trade B1 Y1 Lorgar\n\n34) ts52: Sacrifice Y3 Ts52\nMove G2 Blacklagoon Lorgar\nMove G1 Blacklagoon Lorgar\nMove G1 Blacklagoon Lorgar\nCatastrophe Lorgar Green\n\n\tts52: Thanks for the game\n\tlorgar: you are welcome. see you next time\n\nHomeworlds Online (SDG# 18824)\nStarted: 2011.1.11, Ended: 2011.1.11\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n\nHomeworlds Online (SDG# 18848)\nStarted: 2011.1.11, Ended: 2011.1.28\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n1) lorgar: Homeworld G1 Y2 B3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) lorgar: Build B1 Lorgar\n\n4) TwoShort: Build G1 Twoshort\n\n5) lorgar: Trade B1 G1 Lorgar\n\n6) TwoShort: Build G2 Twoshort\n\n7) lorgar: Build G2 Lorgar\n\n8) TwoShort: Trade G2 Y2 Twoshort\n\n9) lorgar: Discover G2 Lorgar G3 Catch22\n\n10) TwoShort: Build G2 Twoshort\n\n11) lorgar: Build G2 Lorgar\n\n12) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n13) lorgar: Trade G2 R2 Lorgar\n\n14) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n15) lorgar: Build R1 Lorgar\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y1 Twoshort\nBuild G3 Twoshort\n\n17) lorgar: Discover G1 Lorgar Y3 Bluedanube\n\n18) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort B2 Bluonia\nMove G2 Twoshort Bluonia\n\n19) lorgar: Move G1 Bluedanube Yolonda\n\n20) TwoShort: Discover G1 Yolonda Y3 Yellonia\n\n21) lorgar: Move R2 Lorgar Yellonia\n\n22) TwoShort: Sacrifice G3 Yolonda\nBuild Y1 Bluonia\nBuild Y2 Twoshort\nBuild G3 Bluonia\n\n23) lorgar: Attack G1S Yellonia\n\n24) TwoShort: Sacrifice G3 Bluonia\nBuild Y3 Bluonia\nBuild Y3 Twoshort\nBuild G3 Bluonia\n\n25) lorgar: Sacrifice G2 Catch22\nBuild G2 Yellonia\nBuild G3 Yolonda\n\n26) TwoShort: Sacrifice Y2 Twoshort\nDiscover G3 Bluonia R3 Rover\nMove Y1 Bluonia Rover\n\n27) lorgar: Build B1 Lorgar\n\n28) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Rover\nBuild G2 Rover\n\n29) lorgar: Sacrifice B1 Lorgar\nTrade G1 R1 Yolonda\n\n30) TwoShort: Sacrifice Y3 Bluonia\nMove G3 Rover Lorgar\nMove G2 Rover Lorgar\nDiscover G2 Bluonia Y3 Yackityyack\n\n31) lorgar: Move G3 Yolonda Rover\n\n32) TwoShort: Sacrifice Y3 Twoshort\nMove Y1 Rover Lorgar\nMove Y2 Rover Lorgar\nMove G2 Yackityyack Lorgar\nCatastrophe Lorgar Green\n\n33) lorgar: Move B3 Lorgar Twoshort\n\tlorgar: nice. rh\n\tlorgar: nice. rh\n\n34) TwoShort: Move Y1 Twoshort Lorgar\nCatastrophe Lorgar Yellow\n\n\nHomeworlds Online (SDG# 18850)\nVariants: "Hard time"\nStarted: 2011.1.11, Ended: 2011.2.23\nParticipants: mneme (S), Danner (N)\nWinner: mneme\n\n1) Danner: Pass\n\tDanner: Howdy! Good luck, have fun!\n\n2) mneme: Homeworld R1 B2 G3\n\n3) Danner: Homeworld Y3 B2 G3\n\n4) mneme: Build G1 Mneme\n\n5) Danner: Build G1 Danner\n\n6) mneme: Trade G1 R1 Mneme\n\n7) Danner: Trade G1 R1 Danner\n\n8) mneme: Build R2 Mneme\n\n9) Danner: Build R2 Danner\n\n10) mneme: Trade R2 Y2 Mneme\n\n11) Danner: Discover R1 Danner Y1 P4c-970\n\n12) mneme: Build R2 Mneme\n\n13) Danner: Sacrifice G3 Danner\nBuild R2 Danner\nBuild R3 P4c-970\nBuild R3 Danner\n\n14) mneme: Discover R2 Mneme G3 Expansion\n\n15) Danner: Trade R2 Y2 Danner\n\n16) mneme: Discover R1 Mneme G3 Pressure\n\n17) Danner: Discover R1 P4c-970 G2 P3x-234\n\n18) mneme: Build Y1 Mneme\n\n19) Danner: Move R3 P4c-970 Expansion\n\n20) mneme: Sacrifice Y1 Mneme\nMove R2 Expansion P3x-234\n\n\tDanner: Uh, sorry, slipped my mind.\n\tmneme: happens. A shame, it was an interesting game (and you were winning)\n\nHomeworlds Online (SDG# 18853)\nVariants: "Hard time"\nStarted: 2011.1.12, Ended: 2011.1.28\nParticipants: baxy (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B1 G3\n\n2) baxy: Homeworld G3 B2 Y3\n\n3) ajo: Build G1 Ajo\n\n4) baxy: Build Y1 Baxy\n\n5) ajo: Trade G1 R1 Ajo\n\n6) baxy: Trade Y1 R1 Baxy\n\n7) ajo: Build G1 Ajo\n\n8) baxy: Build Y1 Baxy\n\n9) ajo: Build G1 Ajo\n\n10) baxy: Build Y1 Baxy\n\n11) ajo: Discover G1 Ajo B2 Alpha\n\n12) baxy: Trade Y1 B1 Baxy\n\n13) ajo: Build G1 Alpha\n\n14) baxy: Build B1 Baxy\n\tajo: Wow, nice timing; I got back to the computer from watching TCM and there was your move! :)\n\tbaxy: love it when that happens :) i usually have pretty bad timing. If you want I will start posting when im by my computer and can exchange a few moves quickly.\n\n15) ajo: Build G2 Alpha\n\n16) baxy: Trade Y3 G3 Baxy\n\n17) ajo: Trade G2 Y2 Alpha\n\n18) baxy: Discover B1 Baxy Y1 Weezer\n\n19) ajo: Build G2 Alpha\n\n20) baxy: Sacrifice G3 Baxy\nBuild B2 Weezer\nBuild B3 Weezer\nBuild B3 Baxy\n\n21) ajo: Build G2 Ajo\n\n\nHomeworlds Online (SDG# 18862)\nStarted: 2011.1.14, Ended: 2011.1.16\nParticipants: ajo (S), Remneb (N)\nWinner: ajo\n\n1) Remneb: Homeworld B1 R2 G3\n\n2) ajo: Homeworld B3 Y1 G3\n\n3) Remneb: Build G1 Remneb\n\n4) ajo: Build G1 Ajo\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) ajo: Discover G1 Ajo B2 Alpha\n\n7) Remneb: Build G1 Remneb\n\n8) ajo: Build G1 Ajo\n\n9) Remneb: Discover G1 Remneb Y3 Shiloh\n\n10) ajo: Build G2 Alpha\n\n11) Remneb: Build G2 Shiloh\n\n12) ajo: Trade G1 R1 Alpha\n\n13) Remneb: Discover G2 Shiloh Y2 Malvern\n\n14) ajo: Build R1 Alpha\n\n15) Remneb: Trade G3 Y3 Remneb\n\n16) ajo: Trade G3 R3 Ajo\n\n17) Remneb: Build G1 Malvern\n\n18) ajo: Build G2 Alpha\n\n19) Remneb: Build G3 Shiloh\n\n20) ajo: Build G3 Ajo\n\n21) Remneb: Discover G1 Malvern G3 Sirius\n\n22) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild R1 Ajo\nBuild R2 Alpha\n\n23) Remneb: Move G3 Shiloh Remneb\n\n24) ajo: Discover G1 Ajo B2 Beta\n\n25) Remneb: Move Y1 Remneb Sirius\n\n26) ajo: Trade R2 Y2 Alpha\n\n27) Remneb: Sacrifice Y3 Remneb\nMove G1 Shiloh Alpha\nMove G1 Sirius Alpha\nMove G2 Malvern Sirius\nCatastrophe Alpha G\n\n28) ajo: Build G1 Beta\n\n29) Remneb: Discover G2 Sirius Y2 Nebo\n\n30) ajo: Sacrifice G1 Beta\nBuild R2 Alpha\n\n31) Remneb: Build G1 Remneb\n\n32) ajo: Trade R2 G2 Alpha\n\n33) Remneb: Trade G3 R3 Remneb\n\n34) ajo: Build G1 Ajo\n\n35) Remneb: Build G2 Remneb\n\n36) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Beta\nBuild R2 Alpha\n\n37) Remneb: Build Y1 Sirius\n\n38) ajo: Discover R1 Alpha B3 Gamma\n\n39) Remneb: Move Y1 Sirius Remneb\n\n40) ajo: Move R1 Alpha Sirius\n\n41) Remneb: Move Y1 Sirius Nebo\n\n42) ajo: Sacrifice Y2 Alpha\nMove R1 Gamma Remneb\nMove R1 Sirius Remneb\nCatastrophe Remneb Red\n\n43) Remneb: Trade G2 R2 Remneb\n\n44) ajo: Trade G3 Y3 Beta\n\n45) Remneb: Build G2 Nebo\n\n46) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild G3 Beta\n\n47) Remneb: Build Y2 Remneb\n\n48) ajo: Sacrifice Y3 Beta\nMove G3 Alpha Remneb\nMove R2 Alpha Remneb\nDiscover G1 Ajo B2 Safehouse\n\n49) Remneb: Attack R2 Remneb\n\n50) ajo: Sacrifice R3 Ajo\nAttack R2N Remneb\nAttack R2N Remneb\nAttack Y2N Remneb\n\n\tajo: Check.\n\tRemneb: Incredible ! It's a huge invasion.\n\tRemneb: Thanks for the game.\n\nHomeworlds Online (SDG# 18713)\nStarted: 2011.1.14, Ended: 2011.1.29\nParticipants: Aristos (S), mathochist (N)\nWinner: Aristos\n\n\nHomeworlds Online (SDG# 18870)\nVariants: "Hard time"\nStarted: 2011.1.16, Ended: 2011.1.29\nParticipants: Aristos (S), shmil1 (N)\nWinner: Aristos\n\n1) shmil1: Homeworld R1 G1 B3 *\n\n2) Aristos: Homeworld Y1 B2 G3\n\n3) shmil1: Build B1 Shmil1\n\n4) Aristos: Build G1 Aristos\n\n5) shmil1: Build B1 Shmil1\n\n6) Aristos: Discover G1 Aristos Y3 Casualdisregard\n\n7) shmil1: Trade B1 Y1 Shmil1\n\n8) Aristos: Build G1 Casualdisregard\n\n9) shmil1: Move B1 Shmil1 Casualdisregard\n\n10) Aristos: Discover G1 Casualdisregard B2 Socialunrest\n\n11) shmil1: Build Y1 Shmil1\n\n12) Aristos: Build G2 Casualdisregard\n\n13) shmil1: Trade B1 R1 Casualdisregard\n\n14) Aristos: Trade G1 R1 Socialunrest\n\n15) shmil1: Attack G1 Casualdisregard\n\n16) Aristos: Sacrifice R1 Socialunrest\nAttack R1 Casualdisregard\n\n17) shmil1: Move G1 Casualdisregard Aristos\n\n18) Aristos: Build R1 Casualdisregard\n\n19) shmil1: Build G1 Aristos\n\n20) Aristos: Trade G3 R3 Aristos\n\n21) shmil1: Build G2 Aristos\n\n22) Aristos: Attack G2 Aristos\n\n23) shmil1: Build G2 Aristos\n\tAristos: The Aristos Empire sends greetings to the Shmil1 ambassador. We appreciate the visitations of our neighbors from the north, but it is now time to withdraw your green ships from our homeworld. Failure to do so will be more calamitous for you than for us. We will allow both of your ships to withdraw, if you wish to do so. Failure to withdraw at least one ship in the next standard move will constitute rejection of our generous offer.\n\n24) Aristos: Attack G2 Aristos\n\n25) shmil1: Build G3 Aristos\n\tAristos: We appreciate your gift of green ships to our fleet, but we are curious where this process is headed. \n\n26) Aristos: Sacrifice G2 Aristos\nBuild G2 Casualdisregard\nBuild G3 Casualdisregard\nCatastrophe Aristos Green\n\tshmil1: I hope you will see it :)\n\n27) shmil1: Build Y2 Shmil1\n\tAristos: We regret to inform you that an accident occurred in our home system. Citizens from both of our empires died in the conflagration. Rest assured we are studying the records to find the cause. Until then, we recommend all ships from other empires stay out of our home system. It is apparently unstable. We may be sending refugees from our world to our neighbors. Please treat them kindly and welcome them into you systems.\n\n28) Aristos: Discover G2 Casualdisregard B2 Vileslander\n\n29) shmil1: Trade Y2 R2 Shmil1\n\n30) Aristos: Trade G2 Y2 Vileslander\n\n31) shmil1: Move R2 Shmil1 Vileslander\n\n32) Aristos: Sacrifice R1 Casualdisregard\nAttack R2 Vileslander\n\n33) shmil1: Discover Y1 Shmil1 G3 Joooj\n\n34) Aristos: Build G1 Casualdisregard\n\n35) shmil1: Build Y2 Joooj\n\n36) Aristos: Sacrifice Y2 Vileslander\nMove R2 Vileslander Shmil1\nMove R1 Casualdisregard Shmil1\n\n37) shmil1: Attack R2 Shmil1\n\n38) Aristos: Build R1 Shmil1\nCatastrophe Shmil1 Red\n\tAristos: Greetings! We mentioned that refugees from our world might come your way. They have arrived. Please make them welcome! You may notice they are heavily armed. Be assured that is merely because our military transports were the only ones available. We come in peace. We have no intention of attacking any of your ships!\n\n39) shmil1: Trade Y1 R1 Shmil1\n\tshmil1: welcome :)\n\n40) Aristos: Move G1 Casualdisregard Shmil1\n\tAristos: Word has reached us that our refugees, whom we thought safe in your system, have vanished! We are most distraught by this. We are beginning an active search for our missing ships. Curiously, one of your stars appears to have vanished as well. Perhaps the two events are connected? We will let you know if our investigation reveals anything.\n\n41) shmil1: Attack G1 Shmil1\n\n42) Aristos: Move G2 Casualdisregard Shmil1\n\n43) shmil1: Trade G1 Y1 Shmil1\n\n44) Aristos: Sacrifice G3 Casualdisregard\nBuild G1 Shmil1\nBuild G1 Shmil1\nBuild R1 Aristos\nCatastrophe Shmil1 Green\n\n\tAristos: Thank you for the game.\n\nHomeworlds Online (SDG# 18842)\nStarted: 2011.1.16, Ended: 2011.1.29\nParticipants: shmil1 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) shmil1: Homeworld B2 G1 R3\n\tts52: Have a good game!\r\n\n\n3) ts52: Build G1 Ts52\n\n4) shmil1: Build R1 Shmil1\n\n5) ts52: Build G1 Ts52\n\n6) shmil1: Build R1 Shmil1\n\n7) ts52: D G1 Ts52 Y3 Bigbird\n\n8) shmil1: Trade R1 Y1 Shmil1\n\n9) ts52: Trade G1 R1 Ts52\n\n10) shmil1: Build Y1 Shmil1\n\n11) ts52: B G1 Ts52\n\n12) shmil1: Move R1 Shmil1 Bigbird\n\n13) ts52: Sacrifice R1 Ts52\nAttack R1 Bigbird\n\n14) shmil1: Build Y2 Shmil1\n\n15) ts52: Build G2 Bigbird\n\n16) shmil1: Trade Y2 R2 Shmil1\n\n17) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Ts52\nBuild G3 Ts52\n\n18) shmil1: Discover Y1 Shmil1 G3 Zelena\n\n19) ts52: Discover G2 Ts52 Y3 Zoe\n\n20) shmil1: Build Y2 Zelena\n\n21) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild R1 Bigbird\n\n22) shmil1: Trade R2 B2 Shmil1\n\n23) ts52: Trade G3 Y3 Ts52\n\n24) shmil1: Move Y1 Zelena Ts52\n\n25) ts52: Discover Y3 Ts52 B3 Grover\n\n26) shmil1: Move Y2 Zelena Ts52\n\n27) ts52: Sacrifice R1 Bigbird\nAttack Y2S Ts52\n\n28) shmil1: Build R1 Shmil1\n\n29) ts52: Trade Y2 R2 Ts52\n\n30) shmil1: Sacrifice R1 Shmil1\nAttack G1 Ts52\n\n31) ts52: Attack G1S Ts52\n\n32) shmil1: Discover Y1 Ts52 G3 Nono\n\n33) ts52: Build G3 Ts52\n\n34) shmil1: Build Y2 Nono\n\n35) ts52: Trade G3 R3 Ts52\n\n36) shmil1: Trade R3 G3 Shmil1\n\n37) ts52: Move R3 Ts52 Nono\n\n38) shmil1: Build Y2 Nono\n\n39) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Grover\nBuild R1 Ts52\n\n40) shmil1: Sacrifice B2 Shmil1\nTrade Y2 R2 Nono\nTrade Y2 R2 Nono\n\n41) ts52: Sacrifice Y3 Grover\nMove G1 Bigbird Shmil1\nMove G2 Bigbird Shmil1\nMove R3 Nono Shmil1\nCatastrophe Shmil1 Green\n\n\tts52: Thanks for the game. \n\nHomeworlds Online (SDG# 18865)\nStarted: 2011.1.16, Ended: 2011.1.22\nParticipants: mathochist (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 18869)\nVariants: "Hard time"\nStarted: 2011.1.17, Ended: 2011.1.28\nParticipants: Jesse (S), baxy (N)\nWinner: Jesse\n\n1) baxy: Homeworld G3 B1 Y3\n\n2) Jesse: Homeworld B1 G2 B3 *\n\n3) baxy: Build Y1 Baxy\n\n4) Jesse: Build B1 Jesse\n\n5) baxy: Build Y1 Baxy\n\n6) Jesse: Trade B3 Y3 Jesse\n\n7) baxy: Trade Y3 B3 Baxy\n\n8) Jesse: Build B2 Jesse\n\n\nHomeworlds Online (SDG# 18709)\nVariants: "Hard time"\nStarted: 2011.1.23, Ended: 2011.2.7\nParticipants: sompm (S), Aristos (W), lorgar (N), Buttons (E)\nWinner: lorgar\n\n1) lorgar: Homeworld B3 Y2 G3\n\n2) Buttons: Homeworld R1 B2 G3\n\n3) sompm: Homeworld G3 B1 Y3\n\n4) Aristos: Homeworld B1 Y3 G3\n\n5) lorgar: Build G1 Lorgar\n\n6) Buttons: Build G1 Buttons\n\tlorgar: gl, hf\n\n7) sompm: Build Y1 Sompm\n\n8) Aristos: Build G1 Aristos\n\n9) lorgar: Build G1 Lorgar\n\n10) Buttons: Trade G1 Y1 Buttons\n\tAristos: The ambassador of the Aristos Empire sends greetings to our neighbors in this galaxy. We look forward to many turns of peaceful co-exploration of this space with you.\n\tButtons: Uryyb! V ercerfrag gur Terng Crbcyr'f Erchoyvp bs Ohggbaf, naq V rpub gur fragvzragf bs bhe arvtuobe gb gur Jrfg. Znl bhe sbhe tnynpgvp cbjref rawbl znal lrnef bs crnpr naq cebfcrevgl! Va gur hayvxryl rirag gung nal ubfgvyvgvrf nevfr orgjrra hf, V ubcr lbhe fhssrevat funyy or oevrs. Jr ner nyfb jbexvat ba bhe EBG-13 genafyngvba grpuabybtl; vs bhe Svir Ghea Cyna vf fhpprffshy, jr fubhyq or noyr gb pbzzhavpngr va lbhe ynathntr va qhr gvzr. Sbe abj, V ubcr bhe zvffvirf pna or pbzceruraqrq.\n\n11) sompm: Build Y1 Sompm\n\n12) Aristos: Build G1 Aristos\n\tsompm: Qu'est-ce que vous avez du? Je ne comprends pas.\r\n\r\nGreetings, fellow explorer, I also would pursue peaceful coexistence with any willing to cooperate.\r\n\r\nThat is, until relations go sour and I notice you're stockpiling large ships of specific colors.\r\n\r\nAnd... probably vice-versa.\n\n13) lorgar: Trade G1 Y1 Lorgar\n\n14) Buttons: Build G1 Buttons\n\n\tAristos: I never saw a notification that it was my turn. I am sorry for not moving. \n\tsompm: Woah, what? Sorry. Dang.\n\tButtons: Hey, at least we never fought or anything.\n\nHomeworlds Online (SDG# 18816)\nVariants: "Hard time"\nStarted: 2011.1.23, Ended: 2011.2.3\nParticipants: SilentTitan (S), Buttons (N)\nWinner: SilentTitan\n\n1) Buttons: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) Buttons: Build G1 Buttons\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Buttons: Trade G1 Y1 Buttons\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Buttons: Build Y2 Buttons\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) Buttons: Trade Y1 R1 Buttons\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) Buttons: Build G1 Buttons\n\n12) SilentTitan: Discover Y1 Silenttitan B1 Pak\n\n13) Buttons: Discover G1 Buttons Y3 Senseofconquest\n\n14) SilentTitan: Build Y1 Silenttitan\n\n15) Buttons: Discover Y2 Buttons G3 Bloomandgrow\n\n16) SilentTitan: Discover Y1 Silenttitan B1 Sic\n\n17) Buttons: Build R1 Buttons\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Pak\nBuild Y3 Sic\nBuild Y3 Silenttitan\n\n19) Buttons: Trade R1 B1 Buttons\n\n20) SilentTitan: Trade Y3 B3 Sic\n\n21) Buttons: Build Y3 Bloomandgrow\n\n22) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Pak Bloomandgrow\nMove Y1 Pak Bloomandgrow\nCatastrophe Bloomandgrow Yellow\n\n23) Buttons: Build R1 Buttons\n\n24) SilentTitan: Build Y1 Silenttitan\n\n25) Buttons: Discover R1 Buttons B3 Dtmgffbank\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) Buttons: Build R1 Buttons\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sic\nBuild Y2 Sic\nBuild Y2 Silenttitan\n\n29) Buttons: Build R2 Buttons\n\n30) SilentTitan: Build Y3 Silenttitan\n\n31) Buttons: Move R2 Buttons Senseofconquest\n\n32) SilentTitan: Trade B3 R3 Sic\n\n33) Buttons: Build G1 Buttons\n\n34) SilentTitan: Discover Y2 Sic R3 Rosy\n\n35) Buttons: Discover R2 Senseofconquest B2 Lacuna\n\n36) SilentTitan: Trade Y3 G3 Silenttitan\n\n37) Buttons: Discover G1 Buttons Y3 Seventeenpigs\n\tButtons: Ugh. Okay, 19 moves into my first game and I understand why some people don't like yellow stars.\n\n38) SilentTitan: Build Y3 Silenttitan\n\tSilentTitan: They have their uses, but they're not the best for getting around fast.\n\tButtons: Aside from the fact that you're dominating yellow right now, even if I could get one on my homeworld (say by trading G3 for Y3), you could immediately induce a catastrophe by sacrificing your Y3.\n\tButtons: So yeah, think I'll try red for my second game.\n\n39) Buttons: Build B1 Buttons\n\n40) SilentTitan: Discover Y2 Sic B3 Sox\n\n41) Buttons: Move B1 Buttons Seventeenpigs\n\n42) SilentTitan: Trade Y3 B3 Silenttitan\n\n43) Buttons: Build G2 Buttons\n\n44) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y3 Sox\n\n45) Buttons: Move G1 Seventeenpigs Lacuna\n\n46) SilentTitan: Trade Y3 G3 Sox\n\n47) Buttons: Sacrifice R1 Dtmgffbank\nPass\n\n48) SilentTitan: Sacrifice G3 Sox\nBuild Y3 Sox\nBuild B3 Silenttitan\nBuild G1 Silenttitan\n\n49) Buttons: Build G2 Senseofconquest\n\n50) SilentTitan: Sacrifice Y3 Sox\nMove B3 Silenttitan Sic\nMove B3 Sic Rosy\nMove B3 Silenttitan Sic\n\n51) Buttons: Move B1 Buttons Senseofconquest\n\n52) SilentTitan: Move R3 Sic Lacuna\n\n53) Buttons: Discover R1 Buttons G3 Impendingdoom\n\n54) SilentTitan: Attack R2 Lacuna North\n\n55) Buttons: Sacrifice G2 Senseofconquest\nBuild R1 Buttons\nBuild R2 Impendingdoom\n\n56) SilentTitan: Move B3 Sic Impendingdoom\n\n57) Buttons: Move B1 Senseofconquest Sic\n\n58) SilentTitan: Sacrifice R3 Lacuna\nAttack R2 Impendingdoom North\nAttack R1 Impendingdoom North\nAttack B1 Sic North\n\n59) Buttons: Build G2 Senseofconquest\n\n60) SilentTitan: Sacrifice Y2 Sox\nMove B3 Impendingdoom Buttons\nMove B3 Rosy Buttons\n\n61) Buttons: Attack B3S Buttons\n\n62) SilentTitan: Sacrifice R2 Impendingdoom\nAttack B3 Buttons North\nAttack G3 Buttons North\n\n63) Buttons: Move B1 Seventeenpigs Buttons\nCatastrophe Buttons Blue\n\n64) SilentTitan: Sacrifice B1 Sic\nTrade G3 Y3 Buttons\n\n65) Buttons: Discover G1 Senseofconquest B1 Buttonsn\n\n66) SilentTitan: Sacrifice Y2 Rosy\nMove Y2 Silenttitan Buttons\nMove Y1 Silenttitan Buttons\nCatastrophe Buttons Yellow\n\n\tSilentTitan: good game\n\tButtons: FYI that's my homeworld in the top left over there. Not the one on the very top.\n\tSilentTitan: LOL..... I just saw that post ... \n\nHomeworlds Online (SDG# 18931)\nVariants: "Hard time"\nStarted: 2011.1.25, Ended: 2011.2.18\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) lorgar: Homeworld B1 G2 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build Y1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Trade Y1 B1 Lorgar\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Build B1 Lorgar\n\n9) SilentTitan: Discover Y1 Silenttitan Y1 Sox\n\n10) lorgar: Build Y2 Lorgar\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) lorgar: Discover Y2 Lorgar G3 Madyamika\n\n13) SilentTitan: Discover Y2 Silenttitan G1 Sax\n\n14) lorgar: Move Y2 Madyamika Sax\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sax\nBuild Y3 Sox\nBuild Y3 Silenttitan\n\n16) lorgar: Trade B1 R1 Lorgar\n\n17) SilentTitan: Sacrifice Y3 Sox\nDiscover Y2 Sax G3 Tic\nDiscover Y2 Sax G3 Tac\nDiscover Y1 Sox B3 Toe\n\n18) lorgar: Trade Y3 G3 Lorgar\n\n19) SilentTitan: Discover Y2 Tac B2 Fee\n\n20) lorgar: Move Y2 Sax Tic\n\n21) SilentTitan: Trade Y3 G3 Silenttitan\n\n22) lorgar: Sacrifice R1 Lorgar\nAttack Y2N Tic\n\n23) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Toe\nBuild Y3 Fee\nBuild Y3 Silenttitan\n\n24) lorgar: Build B1 Lorgar\n\n25) SilentTitan: Trade Y1 R1 Toe\n\n26) lorgar: Sacrifice B1 Lorgar\nTrade Y2 R2 Tic\n\n27) SilentTitan: Trade Y3 G3 Silenttitan\n\n28) lorgar: Trade B1 R1 Lorgar\n\n29) SilentTitan: Move Y3 Fee Tic\n\n30) lorgar: Build Y1 Tic\n\n31) SilentTitan: Sacrifice R1 Toe\nAttack R2 Tic South\n\n32) lorgar: Build Y2 Tic\nCatastrophe Tic Yellow\n\n33) SilentTitan: Build Y1 Silenttitan\n\n34) lorgar: Build G1 Lorgar\n\n35) SilentTitan: Trade Y2 G2 Fee\n\n36) lorgar: Build R1 Lorgar\n\n37) SilentTitan: Sacrifice G2 Fee\nBuild Y2 Toe\nBuild Y2 Toe\n\n38) lorgar: Trade G3 Y3 Lorgar\n\n39) SilentTitan: Sacrifice Y2 Toe\nMove Y2 Toe Lorgar\nMove Y1 Toe Lorgar\n\n40) lorgar: Trade Y3 B3 Lorgar\n\n41) SilentTitan: Sacrifice R2 Tic\nAttack R1 Lorgar South\nAttack R1 Lorgar South\n\n42) lorgar: Build G1 Lorgar\n\n43) SilentTitan: Trade Y1 G1 Lorgar\nCatastrophe Lorgar Green\n\n44) lorgar: Trade B3 G3 Lorgar\n\n45) SilentTitan: Trade R1 G1 Lorgar\n\n46) lorgar: Trade G3 R3 Lorgar\n\n47) SilentTitan: Sacrifice G3 Silenttitan\nBuild R1 Lorgar\nBuild R1 Lorgar\nBuild Y1 Silenttitan\nCatastrophe Lorgar Red\n\n\nHomeworlds Online (SDG# 18935)\nStarted: 2011.1.28, Ended: 2011.2.16\nParticipants: ts52 (S), lorgar (N)\nWinner: ts52\n\n1) lorgar: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\tts52: have a good game!\n\n4) ts52: B G1 Ts52\n\n5) lorgar: Trade G1 Y1 Lorgar\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) lorgar: Build Y2 Lorgar\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) lorgar: Trade Y1 R1 Lorgar\n\n10) ts52: Build G1 Ts52\n\n11) lorgar: Discover Y2 Lorgar G1 Sotrantika\n\n12) ts52: Trade G1 R1 Ts52\n\n13) lorgar: Build G1 Lorgar\n\n14) ts52: Build R1 Ts52\n\n15) lorgar: Build R2 Lorgar\n\n16) ts52: Build R2 Ts52\n\n17) lorgar: Discover R2 Lorgar G1 Madyamika\n\n18) ts52: Move R2 Ts52 Kermit\n\n19) lorgar: Move R1 Lorgar Sotrantika\n\n20) ts52: B G2 Ts52\n\n21) lorgar: Build G2 Lorgar\n\n22) ts52: Trade G2 B2 Ts52\n\n23) lorgar: Trade G2 R2 Lorgar\n\n24) ts52: Build R3 Kermit\n\n25) lorgar: Build R3 Sotrantika\n\n26) ts52: Discover R1 Ts52 Y3 Bigbird\n\n27) lorgar: Build R3 Madyamika\n\n28) ts52: Build G2 Ts52\n\n29) lorgar: Sacrifice Y2 Sotrantika\nMove R2 Madyamika Kermit\nMove R1 Sotrantika Kermit\nCatastrophe Kermit Red\n\n30) ts52: Build G2 Ts52\n\n31) lorgar: Build G2 Lorgar\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild Y2 Kermit\n\n33) lorgar: Trade G2 Y2 Lorgar\n\n34) ts52: Discover Y2 Kermit B1 Gonzo\n\n35) lorgar: Sacrifice Y2 Lorgar\nMove R3 Madyamika Bigbird\nMove R3 Sotrantika Kermit\n\n36) ts52: Sacrifice G2 Ts52\nBuild Y2 Gonzo\nBuild Y3 Gonzo\n\n37) lorgar: Attack Y1S Kermit\n\n38) ts52: Trade Y3 R3 Gonzo\n\n39) lorgar: Attack Y1S Kermit\n\n40) ts52: Discover Y2 Gonzo G2 Robin\n\n41) lorgar: Move R3 Bigbird Robin\n\n42) ts52: Discover Y2 Robin G1 Oscar\n\n43) lorgar: Move Y1 Kermit Oscar\n\n44) ts52: Sacrifice G2 Ts52\nBuild Y3 Gonzo\nBuild Y3 Oscar\n\n45) lorgar: Move Y1 Kermit Oscar\nCatastrophe Oscar Yellow\n\n46) ts52: Build G1 Ts52\n\n47) lorgar: Trade G1 B1 Lorgar\n\n48) ts52: Move G1 Ts52 Bigbird\n\n49) lorgar: Build B1 Lorgar\n\n50) ts52: Sacrifice Y3 Gonzo\nMove B2 Ts52 Bigbird\nMove B2 Bigbird Gonzo\nMove B2 Gonzo Lorgar\nCatastrophe Lorgar Blue\n\n51) lorgar: Build G1 Lorgar\n\n52) ts52: Move G1 Bigbird Gonzo\n\n53) lorgar: Discover G1 Lorgar B1 Newgate\n\n54) ts52: Build Y1 Gonzo\n\n55) lorgar: Trade G1 Y1 Newgate\n\n56) ts52: Discover Y2 Gonzo G2 Oscar\n\n57) lorgar: Move Y1 Newgate Kermit\n\n58) ts52: Build G1 Ts52\n\n59) lorgar: Move R3 Kermit Oscar\n\n60) ts52: Move Y2 Oscar Kermit\n\n61) lorgar: Sacrifice Y1 Kermit\nDiscover R3 Oscar B3 Magnamund\n\n62) ts52: Build Y1 Kermit\n\n63) lorgar: Trade R3 Y3 Magnamund\n\n64) ts52: Trade R3 Y3 Gonzo\n\n65) lorgar: Build G1 Lorgar\n\n66) ts52: Sacrifice Y3 Gonzo\nMove Y1 Gonzo Lorgar\nMove Y2 Kermit Lorgar\nMove Y1 Kermit Lorgar\nCatastrophe Lorgar Yellow\n\n\tts52: Thanks for the game.\r\n\n\tlorgar: was interesting. Next time I wont fall for the same trick. I hope.\n\nHomeworlds Online (SDG# 18985)\nVariants: "Hard time"\nStarted: 2011.1.28, Ended: 2011.2.13\nParticipants: Gidaio (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B1 G3\n\n2) Gidaio: Homeworld G2 B3 Y3\n\n3) ajo: Build G1 Ajo\n\n4) Gidaio: Build Y1 Gidaio\n\n5) ajo: Build G1 Ajo\n\n6) Gidaio: Build Y1 Gidaio\n\n7) ajo: Discover G1 Ajo B2 Alpha\n\n8) Gidaio: Discover Y1 Gidaio G1 Beta\n\n9) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Ajo\nBuild G3 Ajo\n\tajo: Interesting. Well, I'll take it.\n\n10) Gidaio: Build Y1 Beta\n\n11) ajo: Trade G2 Y2 Alpha\n\n12) Gidaio: Trade Y1 R1 Gidaio\n\n13) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Alpha\nBuild G3 Ajo\n\n14) Gidaio: Build Y1 Gidaio\n\n15) ajo: Trade G3 R3 Alpha\n\n16) Gidaio: Build Y2 Gidaio\n\n17) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Alpha\nBuild G3 Alpha\n\n18) Gidaio: Sacrifice Y2 Gidaio\nMove Y1 Beta Alpha\nMove Y1 Beta Alpha\nCatastrophe Alpha Yellow\n\n19) ajo: Trade G3 Y3 Alpha\n\n20) Gidaio: Discover Y1 Gidaio B1 Delta\n\n21) ajo: Move G2 Alpha Delta\n\n22) Gidaio: Build Y1 Gidaio\n\tajo: I'd be fine if you want to resign at this point. It doesn't seem worth dragging out the game several more days.\n\tGidaio: Enh. You're probably right. But I've seen situations where someone is in a losing place, something happens, and they win. I'll continue, unless it becomes utterly hopeless. You're definitely in a better position, though.\n\n23) ajo: Sacrifice G3 Ajo\nBuild G1 Alpha\nBuild G3 Delta\nBuild G3 Delta\n\tajo: Well, you'd be counting on me to make some really terrible blunder... I think I've been in the "better position" ever since you gave me the green monopoly on turn 6, and by this point it *is* utterly hopeless. But we can play it out a little further.\n\n\tGidaio: Yeah... I had a horrible game where this guy got a yellow monopoly, and I couldn't move. I tried that this time, but... gg\n\nHomeworlds Online (SDG# 18984)\nVariants: "Hard time"\nStarted: 2011.1.29, Ended: 2011.2.16\nParticipants: Aristos (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld B3 R1 G3\n\n2) Aristos: Homeworld B1 G2 Y3\n\n3) Jesse: Build G1 Jesse\n\n4) Aristos: Build Y1 Aristos\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) Aristos: Discover Y1 Aristos B3 Ipsofacto\n\n7) Jesse: Build G1 Jesse\n\n8) Aristos: Trade Y1 G1 Ipsofacto\n\n9) Jesse: Discover G1 Jesse B2 Grover\n\n10) Aristos: Build Y1 Aristos\n\n11) Jesse: Build G1 Jesse\n\n12) Aristos: Build G2 Ipsofacto\n\n13) Jesse: Sacrifice G3 Jesse\nBuild G2 Grover\nBuild G3 Jesse\nBuild Y1 Jesse\n\n14) Aristos: Build Y2 Aristos\n\n15) Jesse: Trade G2 R2 Grover\n\n16) Aristos: Move Y1 Aristos Ipsofacto\n\n17) Jesse: Move Y1 Jesse Grover\n\n18) Aristos: Trade G1 R1 Ipsofacto\n\n19) Jesse: Build Y2 Grover\n\n20) Aristos: Trade Y2 G2 Aristos\n\n21) Jesse: Discover Y2 Grover G3 Oscar\n\n22) Aristos: Build Y2 Ipsofacto\n\n23) Jesse: Build Y2 Oscar\n\n24) Aristos: Build Y3 Aristos\n\n25) Jesse: Build Y3 Grover\n\n26) Aristos: Discover Y3 Aristos G3 Quidproquo\n\n27) Jesse: Sacrifice G3 Jesse\nBuild G1 Grover\nBuild G3 Jesse\nBuild R1 Grover\n\n28) Aristos: Build R2 Ipsofacto\n\n29) Jesse: Move Y3 Grover Ipsofacto\n\n30) Aristos: Sacrifice Y2 Ipsofacto\nMove R1 Ipsofacto Grover\nMove R2 Ipsofacto Grover\nCatastrophe Grover Red\n\n31) Jesse: Build Y2 Grover\n\n32) Aristos: Trade Y1 R1 Ipsofacto\n\n33) Jesse: Trade Y2 R2 Grover\n\n34) Aristos: Build R1 Ipsofacto\n\n35) Jesse: Sacrifice R2 Grover\nAttack R1 Ipsofacto\nAttack R1 Ipsofacto\n\n\tAristos: Good game.\n\nHomeworlds Online (SDG# 18993)\nVariants: "Hard time"\nStarted: 2011.1.30, Ended: 2011.3.8\nParticipants: Aristos (S), fnord (N)\nWinner: Aristos\n\n1) fnord: Homeworld B3 G2 Y3\n\n2) Aristos: Homeworld G2 B1 Y3\n\n3) fnord: Build Y1 Fnord\n\n4) Aristos: Build Y1 Aristos\n\n5) fnord: Discover Y1 Fnord B1 Eris\n\n6) Aristos: Trade Y1 R1 Aristos\n\n7) fnord: Build Y1 Fnord\n\n8) Aristos: Build R1 Aristos\n\n9) fnord: Trade Y1 R1 Eris\n\n10) Aristos: Build Y1 Aristos\n\n11) fnord: Move Y1 Fnord Eris\n\n12) Aristos: Build R2 Aristos\n\n13) fnord: Trade Y1 G1 Eris\n\n14) Aristos: Trade R1 G1 Aristos\n\n15) fnord: Build Y1 Fnord\n\n16) Aristos: Build Y1 Aristos\n\n17) fnord: Move Y1 Fnord Eris\n\n18) Aristos: Sacrifice Y3 Aristos\nDiscover R2 Aristos G3 Garage\nMove Y1 Aristos Garage\nMove R2 Garage Eris\n\n19) fnord: Sacrifice Y1 Eris\nMove R1 Eris Garage\n\n20) Aristos: Sacrifice R1 Aristos\nAttack R1 Garage\n\n21) fnord: Trade G1 Y1 Eris\n\n22) Aristos: Attack Y1 Eris\n\n23) fnord: Build Y2 Fnord\n\n24) Aristos: Build Y2 Garage\n\n25) fnord: Trade Y2 G2 Fnord\n\n26) Aristos: Build Y2 Aristos\n\n27) fnord: Build Y2 Fnord\n\n28) Aristos: Sacrifice G1 Aristos\nBuild Y3 Eris\n\n29) fnord: Trade Y3 R3 Fnord\n\n30) Aristos: Build Y3 Garage\n\n31) fnord: Build G1 Fnord\n\n32) Aristos: Build Y3 Aristos\n\n33) fnord: Trade G1 B1 Fnord\n\n34) Aristos: Trade Y3 G3 Eris\n\n35) fnord: Discover Y2 Fnord G1 Discordia\n\n36) Aristos: Sacrifice Y3 Aristos\nMove G3 Eris Fnord\nDiscover Y3 Garage G1 Temporary\nMove Y3 Temporary Fnord\n\tAristos: You know, I thought I was getting close to pinning you, but it is surprisingly hard to get to the endgame on this.\n\tfnord: Oh, don't worry, you've got me well and truly pinned down. It's just a matter of how much squirming I can do to delay the inevitable. *grin*\n\n37) fnord: Attack G3 Fnord\n\n38) Aristos: Sacrifice R2 Eris\nAttack R3 Fnord\nAttack G3 Fnord\n\n39) fnord: Build Y3 Discordia\n\n40) Aristos: Sacrifice R3 Fnord\nAttack B1 Fnord\nAttack G2 Fnord\nPass\n\n\tAristos: Good game. Thanks.\n\tfnord: Thanks for the game!\n\nHomeworlds Online (SDG# 19002)\nStarted: 2011.1.30, Ended: 2011.2.27\nParticipants: daselva (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld B3 Y2 G3\n\n2) daselva: Homeworld R1 B2 G3\n\tMandrel: Have a good game.\n\n3) Mandrel: B G1 Mandrel\n\n4) daselva: Build G1 Daselva\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) daselva: Trade G1 R1 Daselva\n\n7) Mandrel: Build R2 Mandrel\n\n8) daselva: Build R2 Daselva\n\n9) Mandrel: Build R2 Mandrel\n\n10) daselva: Trade R2 Y2 Daselva\n\n11) Mandrel: Trade R1 Y1 Mandrel\n\n12) daselva: Build Y1 Daselva\n\n13) Mandrel: D R2 Mandrel B1 Relief\n\n14) daselva: Build G1 Daselva\n\n15) Mandrel: B G1 Mandrel\n\n16) daselva: Discover Y2 Daselva R3 S1\n\n17) Mandrel: Move G1 Mandrel Relief\n\n18) daselva: Move G1 Daselva S1\n\n19) Mandrel: Build R1 Mandrel\n\n20) daselva: Sacrifice G3 Daselva\nBuild Y1 S1\nBuild Y2 Daselva\nBuild Y3 Daselva\n\n21) Mandrel: M Y1 Mandrel Relief\n\n22) daselva: Trade Y3 G3 Daselva\n\n23) Mandrel: Build Y3 Relief\n\n24) daselva: Move Y1 S1 Relief\n\n25) Mandrel: Move Y3 Relief S1\n\n26) daselva: Discover Y2 S1 G1 S2\n\n27) Mandrel: Attack G1S S1\n\n28) daselva: Move Y1 Relief Mandrel\n\n29) Mandrel: Attack Y1S Mandrel\n\n30) daselva: Move Y2 S2 Mandrel\n\n31) Mandrel: A Y2S Mandrel\n\n32) daselva: Discover Y1 Daselva G3 S2\n\n33) Mandrel: D Y1 Mandrel G1 Moment\n\n34) daselva: Build Y3 S2\n\n35) Mandrel: B Y3 S1\n\n36) daselva: Move Y3 S2 Moment\n\n37) Mandrel: T R1 B1 Mandrel\n\n38) daselva: Sacrifice R1 Daselva\nAttack Y1 Moment\n\n39) Mandrel: M Y2 Mandrel Relief\n\n40) daselva: Sacrifice Y3 Moment\nMove Y1 Moment S1\nDiscover Y1 S2 B2 S3\nMove Y1 S3 S1\nCatastrophe S1 Y\n\n\n41) Mandrel: D Y2 Relief G3 Calypso\n\n42) daselva: Build Y1 Daselva\n\n43) Mandrel: B Y1 Calypso\n\n44) daselva: Discover Y2 Daselva R3 S2\n\n45) Mandrel: B Y3 Relief\n\n46) daselva: Build Y3 Daselva\n\n47) Mandrel: M Y3 Relief S2\n\n48) daselva: Discover Y2 S2 R1 S3\n\n49) Mandrel: Build Y3 Relief\n\n50) daselva: Discover Y3 Daselva R3 S4\n\n51) Mandrel: Trade Y3 B3 Relief\n\n52) daselva: Build Y3 Daselva\n\n53) Mandrel: M B3 Relief Calypso\n\n54) daselva: Trade Y1 B1 Daselva\n\n55) Mandrel: S Y2 Calypso\nMove B3 Calypso Daselva\nMove Y3 S2 Daselva\n\n56) daselva: Attack B3 Daselva\n\n57) Mandrel: Sacrifice R2 Relief\nAttack G3S Daselva\nAttack Y3S Daselva\n\n58) daselva: Attack G3 Daselva\n\n59) Mandrel: S R2 Mandrel\nAttack B3S Daselva\nAttack G3S Daselva\n\n60) daselva: Move Y3 S4 Daselva\n\n61) Mandrel: Attack Y3S Daselva\n\n\tMandrel: Thanks for the game.\n\nHomeworlds Online (SDG# 18872)\nStarted: 2011.2.1, Ended: 2011.2.1\nParticipants: mathochist (S), du_mm_yy (N)\nWinner: mathochist\n\n\nHomeworlds Online (SDG# 19021)\nStarted: 2011.2.7, Ended: 2011.3.20\nParticipants: lorgar (S), du_mm_yy (W), scratchisthebest (N), Aristos (E)\nWinner: lorgar\n\n1) scratchisthebest: Homeworld B3 Y1 G3\n\n2) Aristos: Homeworld B1 Y2 G3\n\n3) lorgar: Homeworld Y3 B2 G3\n\n4) du_mm_yy: Homeworld B3 Y2 G3\n\n5) scratchisthebest: Build G1 Scratchisthebest\n\n6) Aristos: Build G1 Aristos\n\n7) lorgar: Build G1 Lorgar\n\n8) du_mm_yy: Build G1 Du_mm_yy\n\n9) scratchisthebest: Discover G3 Scratchisthebest B2 Traderjoes\n\n10) Aristos: Trade G1 R1 Aristos\n\n11) lorgar: Trade G1 R1 Lorgar\n\n12) du_mm_yy: Trade G1 R1 Du_mm_yy\n\n13) scratchisthebest: Trade G3 Y3 Traderjoes\n\n14) Aristos: Build R1 Aristos\n\n15) lorgar: Build G1 Lorgar\n\n16) du_mm_yy: Build R1 Du_mm_yy\n\n17) scratchisthebest: Build G1 Scratchisthebest\n\n18) Aristos: Build G1 Aristos\n\n19) lorgar: Build R2 Lorgar\n\n20) du_mm_yy: Build G1 Du_mm_yy\n\n21) scratchisthebest: Trade G1 B1 Scratchisthebest\n\n22) Aristos: Build R2 Aristos\n\n23) lorgar: Build R2 Lorgar\n\n24) lorgar: Discover G1 Lorgar B1 Dummygrave\n\n25) scratchisthebest: Build B1 Scratchisthebest\n\n26) Aristos: Discover R2 Aristos G3 Weaponsdealer\n\n27) lorgar: Trade R2 B2 Lorgar\n\n28) Aristos: Build R2 Weaponsdealer\n\n29) lorgar: Build G1 Dummygrave\n\tAristos: Going to move?\n\n30) Aristos: Trade R1 Y1 Aristos\n\n31) lorgar: Trade G1 Y1 Dummygrave\n\n32) Aristos: Build Y1 Aristos\n\n33) lorgar: Discover Y1 Dummygrave G3 Marina\n\tscratchisthebest: oops... I forgot about this game, and then panicked remembering it. Lol\n\n34) Aristos: Move Y1 Aristos Weaponsdealer\n\n35) lorgar: Discover B2 Lorgar G1 Darkistari\n\n36) Aristos: Move R2 Weaponsdealer Dummygrave\n\n37) lorgar: Sacrifice G1 Dummygrave\nBuild B1 Darkistari\n\n38) Aristos: Discover G3 Aristos Y3 Novanova\n\tAristos: This is really hard to analyze with so many pieces for only two players!\n\n39) lorgar: Build Y1 Marina\n\n40) Aristos: Move G3 Novanova Traderjoes\n\n41) lorgar: Move Y1 Marina Aristos\n\n42) Aristos: Discover Y1 Aristos B3 Escapehatch\n\n43) lorgar: Sacrifice R1 Lorgar\nAttack R1E Aristos\n\n44) Aristos: Sacrifice R2 Dummygrave\nAttack Y1S Aristos\nAttack R1S Aristos\n\n45) lorgar: Trade B2 Y2 Darkistari\n\n46) Aristos: Sacrifice R1 Aristos\nAttack Y3N Traderjoes\n\n47) lorgar: Build Y2 Marina\n\tAristos: Ok, what's wrong with this move? Every time I type it, I get a message that there is no Y1 ship in the Aristos system.\r\n\r\nsacrifice r2 dummygrave\r\nattack y1 Aristos\r\nattack r1 Aristos\n\tAristos: The exact error message I get is, "The ship Y1 could not be found in the Aristos system."\n\tAristos: I thought maybe canceling the call and redoing it might get an admin's attention.\n\n48) Aristos: Trade Y1 R1 Aristos\n\tAristos: Finally got someone to help explain the problem. I needed to use this command:\r\n\r\nsacrifice r2 dummygrave\r\nattack y1s Aristos\r\nattack r1s Aristos \r\n\r\nApparently that only applies in multiplayer games.\n\n49) lorgar: Move Y2 Marina Aristos\n\n50) Aristos: Sacrifice Y3 Traderjoes\nMove G3 Traderjoes Escapehatch\nMove G3 Escapehatch Aristos\nDiscover R2 Weaponsdealer G2 Smugglerscave\n\n51) lorgar: Build Y1 Marina\n\n52) Aristos: Build Y2 Weaponsdealer\n\n53) lorgar: Build Y3 Darkistari\n\n\tAristos: The arc of this game is inevitable. :-) Well played.\n\tlorgar: Thx\n\nHomeworlds Online (SDG# 19106)\nStarted: 2011.2.11, Ended: 2011.3.27\nParticipants: sompm (S), ABabyEater (N)\nWinner: sompm\n\n\tABabyEater: homeworld star1\r\n\n\nHomeworlds Online (SDG# 19020)\nStarted: 2011.2.12, Ended: 2011.3.3\nParticipants: mathochist (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 Y3\n\talexcobo: Hello. Have a good game!\n\n\nHomeworlds Online (SDG# 19119)\nVariants: "Hard time"\nStarted: 2011.2.13, Ended: 2011.2.28\nParticipants: TwoShort (S), goulo (N)\nWinner: TwoShort\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\tTwoShort: Howdy\n\n4) TwoShort: Build G1 Twoshort\n\n5) goulo: Trade Y1 G1 Goulo\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) goulo: Build Y1 Goulo\n\n8) TwoShort: Build G1 Twoshort\n\n9) goulo: Trade Y1 R1 Goulo\n\n10) TwoShort: Build G1 Twoshort\n\n11) goulo: Build G2 Goulo\n\n12) TwoShort: Discover G1 Twoshort B2 Bluestar\n\n13) goulo: Discover G2 Goulo R1 Rubeneto\n\n14) TwoShort: Build G2 Bluestar\n\n15) goulo: Sacrifice G1 Goulo\nBuild Y1 Goulo\n\n16) TwoShort: Trade G2 R2 Bluestar\n\n17) goulo: Build R2 Goulo\n\n18) TwoShort: Build Y1 Twoshort\n\n19) goulo: Build Y2 Goulo\n\n20) TwoShort: Move Y1 Twoshort Bluestar\n\n21) goulo: Move Y2 Goulo Rubeneto\n\n22) TwoShort: Build Y2 Twoshort\n\n23) goulo: Discover R2 Goulo B1 Safireto\n\n24) TwoShort: Build G1 Bluestar\n\n25) goulo: Build G2 Rubeneto\n\n26) TwoShort: Discover G1 Bluestar Y3 Yolonda\n\n27) goulo: Move Y1 Goulo Safireto\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluestar\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n29) goulo: Sacrifice G2 Rubeneto\nBuild Y2 Goulo\nBuild Y3 Safireto\n\n30) TwoShort: Discover G2 Bluestar B1 Bluonia\n\n31) goulo: Build G2 Rubeneto\n\n32) TwoShort: Move G1 Yolonda Bluestar\n\n33) goulo: Move Y3 Safireto Bluestar\n\n34) TwoShort: Sacrifice Y2 Twoshort\nDiscover R2 Bluestar B3 Bluto\nDiscover Y1 Bluestar B1 Blutacular\n\n35) goulo: Sacrifice R2 Safireto\nAttack G1 Bluestar\nAttack G1 Bluestar\n\n36) TwoShort: Trade G3 R3 Twoshort\n\n37) goulo: Build Y2 Bluestar\n\n38) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Bluonia\nBuild G3 Twoshort\nBuild Y3 Blutacular\n\n39) goulo: Sacrifice Y2 Bluestar\nMove G1 Bluestar Bluonia\nMove G1 Bluestar Bluonia\nCatastrophe Bluonia G\n\n40) TwoShort: Move Y3 Blutacular Goulo\n\n41) goulo: Attack Y3 Goulo\n\n42) TwoShort: Move Y1 Blutacular Goulo\nCatastrophe Goulo Yellow\n\n43) goulo: Build R2 Goulo\n\n44) TwoShort: Trade R3 Y3 Twoshort\n\n45) goulo: Build G1 Rubeneto\n\n46) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n47) goulo: Move G2 Rubeneto Yolonda\n\n48) TwoShort: Discover G1 Yolonda Y3 Yoyo\n\tTwoShort: Sorry to be slow; life has been busy and this game has been hard :)\n\tgoulo: No problem about slow turns, that's the advantage of email/web instead of real time.\r\nAlthough I'm not sure how hard it's really being for you - at least I feel like you're kicking my ass. :)\n\tTwoShort: I always regret it if I comment on a game in progress, because the game or my opinion changes immediately. But I'd say this game is about even on material now; it's a hard game because the position is tricky, and I feel like I should have a move that pushes it over the edge to where I'm kicking your ass :) But I can't come up with it, so either you'll manage to get out of the present tactical difficulty, or one of us will screw up.\n\n49) goulo: Trade R2 Y2 Goulo\n\n50) TwoShort: Build G1 Twoshort\n\tgoulo: OK, I'm happy that at least I am not a complete pushover in any case. :)\n\n51) goulo: Build Y1 Goulo\n\n52) TwoShort: Discover Y1 Twoshort R2 D2\n\n53) goulo: Move G2 Rubeneto D2\n\n54) TwoShort: Sacrifice G1 Yoyo\nBuild Y3 Twoshort\n\n55) goulo: Attack Y1 D2\n\tgoulo: ah, yes - good one.\n\n56) TwoShort: Trade G3 B3 Twoshort\n\n57) goulo: Move Y3 Bluestar Bluto\n\n58) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Twoshort D2\nMove B3 D2 Rubeneto\nMove B3 Rubeneto Goulo\n\n59) goulo: Sacrifice R1 Goulo\nAttack R2 Bluto\n\n60) TwoShort: Trade Y3 R3 Twoshort\n\n\tgoulo: Wow, tough one. Thanks very much for the game!\n\tTwoShort: Thanks for a great game!\n\nHomeworlds Online (SDG# 19125)\nVariants: "Hard time"\nStarted: 2011.2.14, Ended: 2011.3.2\nParticipants: shmil1 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B1 G3\n\n2) shmil1: Homeworld G1 B2 Y3\n\n3) ajo: Build G1 Ajo\n\n4) shmil1: Build Y1 Shmil1\n\n5) ajo: Build G1 Ajo\n\n6) shmil1: Build Y1 Shmil1\n\n7) ajo: Discover G1 Ajo B2 Alpha\n\n8) shmil1: Discover Y1 Shmil1 G3 Zel\n\n9) ajo: Build G2 Alpha\n\n10) shmil1: Build Y1 Zel\n\n11) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\n\n12) shmil1: Trade Y3 G3 Shmil1\n\n13) ajo: Trade G2 Y2 Alpha\n\n14) shmil1: Trade Y1 B1 Shmil1\n\tajo: Sorry, shmil, but I may have to resign this game for real-world reasons. And it was going so well for me... :P\n\n15) ajo: Trade G1 B1 Alpha\n\n16) shmil1: Build B2 Shmil1\n\n17) ajo: Sacrifice Y2 Alpha\nMove B1 Alpha Zel\nMove B1 Zel Shmil1\nCatastrophe Shmil1 Blue\n\n18) shmil1: Move Y1 Zel Alpha\n\tajo: Okay, at this rate the game may be over before I need to resign anyway. ;)\n\n19) ajo: Trade G3 Y3 Ajo\n\n\tajo: Check.\n\nHomeworlds Online (SDG# 19126)\nVariants: "Hard time"\nStarted: 2011.2.14, Ended: 2011.3.18\nParticipants: SilentTitan (S), sompm (N)\nWinner: SilentTitan\n\n1) sompm: Homeworld B1 G3 Y3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) sompm: Build Y1 Sompm\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) sompm: Build Y1 Sompm\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) sompm: Discover Y1 Sompm G2 Specifically\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) sompm: Build Y2 Specifically\n\n10) SilentTitan: Discover Y1 Silenttitan G3 Discover\n\n11) sompm: Discover Y2 Specifically B3 Potatoes\n\n12) SilentTitan: Build G1 Silenttitan\n\n13) sompm: Build Y2 Specifically\n\n14) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Discover\nBuild Y3 Silenttitan\nBuild G1 Silenttitan\n\n\tSilentTitan: hey I have an Idea..... let's use up all the yellow in the first 8 turns.\r\n\n\tsompm: I like it.\n\nHomeworlds Online (SDG# 19073)\nVariants: "Sinister"\nStarted: 2011.2.14, Ended: 2011.3.18\nParticipants: lorgar (S), alexcobo (N), BlueIstari (E)\nWinner: lorgar\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) BlueIstari: Homeworld G2 B1 Y3\n\talexcobo: Hello! Good gaming...\n\n3) lorgar: Homeworld B3 Y1 G3\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) BlueIstari: Build Y1 Blueistari\n\n6) lorgar: Build G1 Lorgar\n\tBlueIstari: Good gaming to all\n\n7) alexcobo: Trade Y1 R1 Alexcobo\n\n8) BlueIstari: Trade Y3 R3 Blueistari\n\n9) lorgar: Trade G1 R1 Lorgar\n\n10) alexcobo: Discover R1 Alexcobo G1 Alba\n\n11) BlueIstari: Build R1 Blueistari\n\n12) lorgar: Build G1 Lorgar\n\n13) alexcobo: Build Y1 Alexcobo\n\n14) BlueIstari: Discover R1 Blueistari G3 Bilbo\n\n15) lorgar: Discover R1 Lorgar G2 Amadis\n\n16) alexcobo: Trade Y1 G1 Alexcobo\n\n17) BlueIstari: Build Y1 Blueistari\n\n18) lorgar: Trade G1 B1 Lorgar\n\n19) alexcobo: Build G1 Alexcobo\n\n20) BlueIstari: Move Y1 Blueistari Bilbo\n\n21) lorgar: Move B1 Lorgar Amadis\n\n22) alexcobo: Discover G1 Alexcobo B1 Ordo\n\n23) BlueIstari: Build Y1 Blueistari\n\n24) lorgar: Build B1 Amadis\n\n25) alexcobo: Build Y2 Alexcobo\n\n26) BlueIstari: Build Y2 Bilbo\n\n27) lorgar: Build B2 Amadis\n\n28) alexcobo: Build G1 Ordo\n\n29) BlueIstari: Build Y2 Blueistari\n\n30) lorgar: Trade B2 Y2 Amadis\n\n31) alexcobo: Build G2 Alexcobo\n\n32) BlueIstari: Trade Y2 B2 Blueistari\n\n33) lorgar: Build Y2 Amadis\n\n34) alexcobo: Trade G2 R2 Alexcobo\n\n35) BlueIstari: Trade Y1 R1 Blueistari\n\n36) lorgar: Build R2 Amadis\n\n37) alexcobo: Build R2 Alba\n\n38) BlueIstari: Build B2 Blueistari\n\n39) lorgar: Discover Y2 Amadis G3 Mordekaiser\n\n40) alexcobo: Build R2 Alexcobo\n\n41) BlueIstari: Discover Y1 Bilbo G2 Oblib\n\n42) lorgar: Move R1 Amadis Mordekaiser\n\n43) alexcobo: Build G2 Ordo\n\n44) BlueIstari: Build R3 Bilbo\n\n45) lorgar: Build R3 Mordekaiser\n\n46) alexcobo: Build R3 Alba\n\n47) BlueIstari: Sacrifice Y2 Bilbo\nMove R3 Bilbo Oblib\nMove R3 Oblib Lorgar\n\n48) lorgar: Sacrifice R1 Mordekaiser\nAttack R3E Lorgar\n\n49) alexcobo: Move Y2 Alexcobo Alba\n\n50) BlueIstari: Build R1 Bilbo\n\n51) lorgar: Sacrifice Y2 Amadis\nMove B1 Amadis Mordekaiser\nMove B1 Mordekaiser Blueistari\nCatastrophe Blueistari Blue\n\n52) alexcobo: Sacrifice Y2 Alba\nMove R1 Alba Blueistari\nMove R2 Alba Blueistari\nCatastrophe Blueistari R\n\n53) BlueIstari: Move Y1 Blueistari Bilbo\n\n54) alexcobo: Sacrifice G2 Ordo\nBuild Y1 Alexcobo\nBuild Y2 Alexcobo\n\n55) lorgar: Build Y2 Mordekaiser\n\n56) alexcobo: Sacrifice Y2 Alexcobo\nMove R2 Alexcobo Ordo\nMove R2 Ordo Bilbo\n\n57) lorgar: Sacrifice Y2 Mordekaiser\nMove R3 Mordekaiser Ordo\nMove R2 Amadis Bilbo\nCatastrophe Bilbo Red\n\n58) alexcobo: Sacrifice G1 Ordo\nBuild Y2 Alexcobo\n\n59) lorgar: Build Y2 Mordekaiser\n\n60) alexcobo: Sacrifice Y1 Alexcobo\nMove R3 Alba Mordekaiser\n\n61) lorgar: Sacrifice Y2 Mordekaiser\nMove Y2 Mordekaiser Ordo\nPass\n\n62) alexcobo: Sacrifice G1 Ordo\nBuild G1 Alexcobo\n\n63) lorgar: Trade Y2 G2 Ordo\n\n64) alexcobo: Discover Y2 Alexcobo R1 Hot\n\n65) lorgar: Build G1 Ordo\n\n66) alexcobo: Move Y2 Hot Mordekaiser\n\n67) lorgar: Build R1 Ordo\n\n68) alexcobo: Move R3 Mordekaiser Oblib\n\n69) lorgar: Trade G2 Y2 Ordo\n\n70) alexcobo: Attack Y1E Oblib\n\n71) lorgar: Move G1 Ordo Alexcobo\nCatastrophe Alexcobo Green\n\n72) alexcobo: Build Y1 Oblib\n\n73) lorgar: Trade R1 B1 Ordo\n\talexcobo: I completly missed that!\n\n74) alexcobo: Build Y2 Mordekaiser\n\n75) lorgar: Trade B1 G1 Ordo\n\n76) alexcobo: Build R1 Oblib\n\n77) lorgar: Build Y2 Ordo\n\n78) alexcobo: Sacrifice Y2 Mordekaiser\nMove Y1 Oblib Ordo\nMove Y1 Oblib Ordo\nCatastrophe Ordo Y\n\n79) lorgar: Build G1 Ordo\n\n80) alexcobo: Build R1 Oblib\n\tlorgar: and me this one. Guess we're even now =)\n\n81) lorgar: Trade G1 Y1 Ordo\n\n82) alexcobo: Build Y1 Mordekaiser\n\n83) lorgar: Build Y2 Ordo\n\n84) alexcobo: Sacrifice Y1 Mordekaiser\nMove R1 Oblib Bilbo\n\n85) lorgar: Build B1 Amadis\n\n86) alexcobo: Attack Y1E Bilbo\n\n87) lorgar: Sacrifice Y1 Ordo\nDiscover B1 Amadis G3 Marchesnoires\n\n88) alexcobo: Build R1 Bilbo\n\n89) lorgar: Build B1 Marchesnoires\n\n90) alexcobo: Trade R2 G2 Alexcobo\n\n91) lorgar: Build B2 Marchesnoires\n\n92) alexcobo: Build G1 Alexcobo\n\n93) lorgar: Trade R3 Y3 Lorgar\n\n94) alexcobo: Build Y1 Mordekaiser\n\n95) lorgar: Sacrifice Y3 Lorgar\nMove B1 Marchesnoires Alexcobo\nMove B1 Marchesnoires Alexcobo\nMove B2 Marchesnoires Alexcobo\nCatastrophe Alexcobo Blue\n\n\nHomeworlds Online (SDG# 18980)\nStarted: 2011.2.14, Ended: 2011.2.16\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n1) lorgar: Homeworld Y1 B2 G3\n\n2) TwoShort: Homeworld R1 B3 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) TwoShort: Build G1 Twoshort\n\n5) lorgar: Discover G1 Lorgar B3 Camille\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) lorgar: Build G1 Lorgar\n\n8) TwoShort: Build Y1 Twoshort\n\n9) lorgar: Build G1 Lorgar\n\n10) TwoShort: Build G2 Twoshort\n\n11) lorgar: Build G2 Camille\n\n12) TwoShort: Discover G2 Twoshort Y2 Yolonda\n\n13) lorgar: Trade G2 Y2 Camille\n\n14) TwoShort: Build Y2 Twoshort\n\n15) lorgar: Build Y3 Camille\n\n16) TwoShort: Sacrifice Y2 Twoshort\nDiscover G2 Yolonda B3 Bluebird\nMove G2 Bluebird Lorgar\nCatastrophe Lorgar Green\n\tlorgar: thanks.\n\n\nHomeworlds Online (SDG# 19144)\nVariants: "Hard time"\nStarted: 2011.2.16, Ended: 2011.3.20\nParticipants: lorgar (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld G3 B1 Y3\n\n2) lorgar: Homeworld G1 Y2 B3\n\n3) Jesse: Build Y1 Jesse\n\n4) lorgar: Build B1 Lorgar\n\n5) Jesse: Discover Y1 Jesse G2 Grass\n\n6) lorgar: Discover B1 Lorgar G3 Amarante\n\n7) Jesse: Build Y1 Jesse\n\n8) lorgar: Build B1 Lorgar\n\n9) Jesse: Build Y1 Grass\n\n10) lorgar: Build B2 Amarante\n\n11) Jesse: Build Y2 Jesse\n\n12) lorgar: Trade B2 Y2 Amarante\n\n13) Jesse: Move Y1 Grass Amarante\n\n14) lorgar: Sacrifice Y2 Amarante\nMove B1 Amarante Grass\nMove B1 Grass Jesse\n\n15) Jesse: Trade Y2 R2 Jesse\n\n16) lorgar: Build B2 Lorgar\n\n17) Jesse: Build Y2 Amarante\n\n18) lorgar: Trade B2 R2 Lorgar\n\n19) Jesse: Attack B1 Jesse\n\n20) lorgar: Move B3 Lorgar Amarante\n\n21) Jesse: Build Y2 Amarante\n\n22) lorgar: Sacrifice R2 Lorgar\nAttack Y2N Amarante\nAttack Y2N Amarante\n\n23) Jesse: Build Y3 Amarante\nCatastrophe Amarante Y\n\n24) lorgar: Build B2 Amarante\n\n25) Jesse: Move B1 Jesse Grass\n\n26) lorgar: Trade B2 Y2 Amarante\n\n27) Jesse: Build B2 Grass\n\n28) lorgar: Build B2 Lorgar\n\n29) Jesse: Discover B2 Grass G3 Bud\n\n30) lorgar: Trade B1 R1 Lorgar\n\n31) Jesse: Discover Y1 Jesse G2 Leaf\n\n32) lorgar: Build Y1 Amarante\n\n33) Jesse: Build Y2 Jesse\n\n34) lorgar: Trade Y1 R1 Amarante\n\n35) Jesse: Build Y1 Leaf\n\n36) lorgar: Build Y3 Amarante\n\n37) Jesse: Build Y3 Grass\n\n38) lorgar: Move Y2 Amarante Leaf\n\n39) Jesse: Sacrifice Y2 Jesse\nMove Y3 Grass Bud\nMove Y3 Bud Lorgar\n\n40) lorgar: Sacrifice Y2 Leaf\nMove Y3 Amarante Lorgar\nMove B3 Amarante Lorgar\n\n41) Jesse: Sacrifice R2 Jesse\nAttack Y3 Lorgar\nAttack B3 Lorgar\n\n42) lorgar: Trade B2 Y2 Lorgar\nCatastrophe Lorgar Yellow\n\n43) Jesse: Trade B2 R2 Bud\n\n44) lorgar: Build R1 Lorgar\n\n45) Jesse: Sacrifice R2 Bud\nAttack R1 Lorgar\nAttack R1 Lorgar\n\n\tJesse: Thanks for the game. I think the main lesson here is not to leave your homeworld undefended.\n\tlorgar: it is. I tried this against twoshort, got caulked pretty fast ^^\n\nHomeworlds Online (SDG# 19159)\nStarted: 2011.2.17, Ended: 2011.2.21\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\n3) lorgar: Build G1 Lorgar\n\n4) TwoShort: Build B1 Twoshort\n\n5) lorgar: Discover G1 Lorgar B2 Amarante\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) lorgar: Build G1 Amarante\n\n8) TwoShort: Build B2 Twoshort\n\n9) lorgar: Trade G1 Y1 Amarante\n\n10) TwoShort: Discover B2 Twoshort G3 Grogar\n\n11) lorgar: Build G1 Lorgar\n\n12) TwoShort: Build B2 Twoshort\n\n13) lorgar: Build G1 Amarante\n\n14) TwoShort: Build B3 Grogar\n\n15) lorgar: Discover G1 Amarante B3 Onregardelefilm\n\n16) TwoShort: Build B3 Grogar\n\n17) lorgar: Build G2 Onregardelefilm\n\n18) TwoShort: Trade B3 R3 Grogar\n\n19) lorgar: Trade G2 Y2 Onregardelefilm\n\n20) TwoShort: Sacrifice Y3 Twoshort\nDiscover B3 Grogar G2 Gameover\nMove B3 Gameover Lorgar\nMove R3 Grogar Twoshort\n\n21) lorgar: Pass\n\n22) TwoShort: Sacrifice R3 Twoshort\nAttack G3 Lorgar\nAttack G1 Lorgar\nPass\n\n\nHomeworlds Online (SDG# 18990)\nStarted: 2011.2.17, Ended: 2011.3.1\nParticipants: ts52 (S), lorgar (N)\nWinner: ts52\n\n1) lorgar: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) lorgar: Build G1 Lorgar\n\tts52: have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade G1 Y1 Lorgar\n\tlorgar: wish you the same.\n\n6) ts52: Trade G1 B1 Ts52\n\n7) lorgar: Build G1 Lorgar\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) lorgar: Discover Y1 Lorgar G2 Captainharlock\n\n10) ts52: Build B1 Kermit\n\n11) lorgar: Trade G1 Y1 Lorgar\n\n12) ts52: Build B2 Kermit\n\n13) lorgar: Build Y2 Captainharlock\n\n14) ts52: Trade B2 Y2 Kermit\n\n15) lorgar: Move Y1 Captainharlock Kermit\n\n16) ts52: Trade B1 R1 Kermit\n\n17) lorgar: Build Y3 Captainharlock\n\n18) ts52: Attack Y1 Kermit\n\n19) lorgar: Discover Y3 Captainharlock R3 Ultramar\n\n20) ts52: Move Y1 Kermit Captainharlock\n\n21) lorgar: Trade Y1 R1 Lorgar\n\n22) ts52: Build B1 Kermit\n\n23) lorgar: Move R1 Lorgar Captainharlock\n\n24) ts52: Discover Y1 Captainharlock G1 Robin\n\n25) lorgar: Build G1 Lorgar\n\n26) ts52: Build B2 Kermit\n\n27) lorgar: Trade G1 Y1 Lorgar\n\n28) ts52: Build Y3 Kermit\n\n29) lorgar: Build Y3 Captainharlock\n\n30) ts52: Trade Y3 R3 Kermit\n\n31) lorgar: Trade Y1 R1 Lorgar\n\n32) ts52: Move B2 Kermit Robin\n\n33) lorgar: Move Y3 Captainharlock Robin\n\n34) ts52: Move R3 Kermit Captainharlock\n\n35) lorgar: Discover Y2 Captainharlock R3 Snoop\n\n36) ts52: Build B2 Robin\n\n37) lorgar: Sacrifice R1 Captainharlock\nAttack B2S Robin\n\n38) ts52: Move Y1 Robin Captainharlock\n\n39) lorgar: Build R1 Lorgar\n\n40) ts52: Build R2 Kermit\n\n41) lorgar: Move Y3 Robin Kermit\n\n42) ts52: Trade B1 Y1 Kermit\n\n43) lorgar: Move Y3 Kermit Robin\n\n44) ts52: Build Y3 Captainharlock\n\n45) lorgar: Sacrifice R1 Lorgar\nAttack B2S Robin\n\n46) ts52: Build G1 Ts52\n\n47) lorgar: Trade B2 R2 Robin\n\n48) ts52: Move R1 Kermit Captainharlock\n\n49) lorgar: Build R1 Robin\n\n50) ts52: Move R3 Captainharlock Kermit\n\n51) lorgar: Sacrifice Y2 Snoop\nMove R1 Robin Kermit\nMove R2 Robin Kermit\nCatastrophe Kermit Red\n\n52) ts52: Build Y2 Kermit\n\n53) lorgar: Move Y3 Robin Kermit\nCatastrophe Kermit Yellow\n\n54) ts52: Move Y1 Captainharlock Kermit\n\n55) lorgar: Build B1 Robin\n\n56) ts52: Build B2 Kermit\n\n57) lorgar: Trade B1 Y1 Robin\n\n58) ts52: Build Y2 Captainharlock\n\n59) lorgar: Build B1 Robin\n\n60) ts52: Discover B2 Kermit G2 Oscar\n\n61) lorgar: Discover B1 Robin Y3 Mnemosine\n\tlorgar: wow 31move! I got better thanks to your teachings^^\n\n62) ts52: Build Y2 Kermit\n\n63) lorgar: Build G1 Lorgar\n\n64) ts52: Trade Y2 R2 Kermit\n\n65) lorgar: Move Y3 Ultramar Oscar\n\n66) ts52: Build Y2 Kermit\n\n67) lorgar: Sacrifice B1 Mnemosine\nPass\n\n68) ts52: Discover G1 Ts52 Y3 Bigbird\n\n69) lorgar: Build R1 Lorgar\n\n70) ts52: Discover Y1 Kermit B2 Gonzo\n\n71) lorgar: Move Y3 Oscar Kermit\n\n72) ts52: Sacrifice G1 Bigbird\nBuild Y3 Gonzo\n\n73) lorgar: Sacrifice R1 Lorgar\nAttack R2S Kermit\n\n74) ts52: Build G1 Ts52\n\n75) lorgar: Trade B2 G2 Robin\n\n76) ts52: Move B1 Kermit Captainharlock\n\n77) lorgar: Attack Y2S Kermit\n\n78) ts52: Build B1 Captainharlock\n\n79) lorgar: Move Y2 Kermit Captainharlock\n\n80) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Oscar\nBuild B3 Captainharlock\n\n81) lorgar: Move Y1 Robin Captainharlock\nCatastrophe Captainharlock Yellow\n\n82) ts52: Trade B3 Y3 Captainharlock\n\n83) lorgar: Move Y3 Kermit Oscar\n\n84) ts52: Sacrifice Y3 Gonzo\nMove B2 Oscar Lorgar\nMove B2 Oscar Lorgar\nMove B1 Captainharlock Lorgar\nCatastrophe Lorgar Blue\n\n85) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild R1 Kermit\nBuild R2 Lorgar\n\n86) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Gonzo\nBuild Y2 Captainharlock\n\n87) lorgar: Move G3 Lorgar Kermit\n\n88) ts52: Sacrifice Y3 Captainharlock\nMove Y2 Captainharlock Lorgar\nMove Y1 Gonzo Lorgar\nMove Y1 Gonzo Lorgar\nCatastrophe Lorgar Yellow\n\n\tlorgar: nice. I saw it but could not do a thing.\n\tts52: Thanks for the game!\n\tts52: yeah, once the doomsday machine starts rolling, it can be tough to stop.\n\nHomeworlds Online (SDG# 19167)\nVariants: "Hard time"\nStarted: 2011.2.17, Ended: 2011.2.20\nParticipants: Subhan64 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n\tts52: Have a good game!\n\nHomeworlds Online (SDG# 19166)\nVariants: "Unrated"\nStarted: 2011.2.18, Ended: 2011.2.23\nParticipants: b5mith (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) b5mith: Homeworld R1 B3 G3\n\n3) Remneb: Build G1 Remneb\n\n\nHomeworlds Online (SDG# 19179)\nStarted: 2011.2.18, Ended: 2011.3.5\nParticipants: jsydik (S), Knightsabre (N)\nWinner: jsydik\n\n1) Knightsabre: Homeworld B3 G1 Y3\n\n2) jsydik: Homeworld R3 B2 G3\n\n3) Knightsabre: Build Y1 Knightsabre\n\n4) jsydik: Build G1 Jsydik\n\n5) Knightsabre: Trade Y1 B1 Knightsabre\n\n6) jsydik: Trade G1 Y1 Jsydik\n\n7) Knightsabre: Build B1 Knightsabre\n\n8) jsydik: Build Y1 Jsydik\n\n9) Knightsabre: Trade B1 G1 Knightsabre\n\n10) jsydik: Discover Y1 Jsydik Y1 J2\n\n11) Knightsabre: Discover G1 Knightsabre R2 Moria\n\n12) jsydik: Discover Y1 J2 G2 J3\n\n13) Knightsabre: Build G1 Moria\n\n14) jsydik: Build G2 Jsydik\n\n15) Knightsabre: Build G2 Moria\n\n16) jsydik: Move Y1 J3 Knightsabre\n\n17) Knightsabre: Build B1 Knightsabre\n\n18) jsydik: Sacrifice G2 Jsydik\nBuild Y1 Knightsabre\nBuild Y2 Knightsabre\nCatastrophe Knightsabre Y\n\n19) Knightsabre: Trade B1 Y1 Knightsabre\n\n20) jsydik: Build G2 Jsydik\n\n21) Knightsabre: Build B1 Knightsabre\n\n22) jsydik: Discover G2 Jsydik Y1 J1\n\n23) Knightsabre: Move B1 Knightsabre Moria\n\n24) jsydik: Move G2 J1 Moria\nCatastrophe Moria G\n\n25) Knightsabre: Build B1 Knightsabre\n\n26) jsydik: Build G1 Jsydik\n\n27) Knightsabre: Move B1 Knightsabre Moria\n\n28) jsydik: Discover Y1 Jsydik Y1 J2\n\n29) Knightsabre: Trade B1 G1 Moria\n\n30) jsydik: Move Y1 J2 Jsydik\n\n31) Knightsabre: Trade B1 Y1 Moria\n\n32) jsydik: Discover G1 Jsydik R1 J2\n\n33) Knightsabre: Move G1 Moria J2\n\n34) jsydik: Attack G1N J2\n\n35) Knightsabre: Move Y1 Moria Knightsabre\n\n36) jsydik: Build Y2 Jsydik\n\n37) Knightsabre: Build Y2 Knightsabre\n\n38) jsydik: Sacrifice Y2 Jsydik\nDiscover G1 J2 Y2 J3\nMove G1 J3 Knightsabre\n\n39) Knightsabre: Trade Y1 R1 Knightsabre\n\n40) jsydik: Sacrifice G3 Jsydik\nBuild G2 Knightsabre\nBuild G2 Knightsabre\nBuild G2 J2\nCatastrophe Knightsabre G\n\n41) Knightsabre: Trade Y2 G2 Knightsabre\n\n42) jsydik: Sacrifice Y1 Jsydik\nMove G2 J2 Jsydik\n\n43) Knightsabre: Build R1 Knightsabre\n\n44) jsydik: Build G1 Jsydik\n\n45) Knightsabre: Move G2 Knightsabre J2\n\n46) jsydik: Trade G1 Y1 Jsydik\n\n47) Knightsabre: Trade R1 G1 Knightsabre\n\n48) jsydik: Build G1 J2\n\n49) Knightsabre: Build G2 Knightsabre\n\n50) jsydik: Build G3 Jsydik\n\n51) Knightsabre: Build G3 Knightsabre\n\n52) jsydik: Build G3 J2\nCatastrophe J2 G\n\n53) Knightsabre: Build Y1 Knightsabre\n\n54) jsydik: Trade G2 B2 Jsydik\n\n55) Knightsabre: Discover G1 Knightsabre G2 Lorien\n\n56) jsydik: Build Y2 Jsydik\n\n57) Knightsabre: Move Y1 Knightsabre Lorien\n\n58) jsydik: Sacrifice Y2 Jsydik\nDiscover B2 Jsydik B1 J1\nMove B2 J1 Knightsabre\n\n59) Knightsabre: Attack B2 Knightsabre\n\n60) jsydik: Build Y2 Jsydik\n\n61) Knightsabre: Move B2 Knightsabre Lorien\n\n62) jsydik: Trade Y2 B2 Jsydik\n\n63) Knightsabre: Discover G1 Lorien B3 Fangorn\n\n64) jsydik: Discover B2 Jsydik G1 J2\n\n65) Knightsabre: Build Y2 Lorien\n\n66) jsydik: Build B1 J2\n\n67) Knightsabre: Sacrifice Y2 Lorien\nMove B1 Knightsabre J2\nMove B2 Lorien J2\nCatastrophe J2 Blue\n\n68) jsydik: Build Y2 Jsydik\n\n69) Knightsabre: Build Y2 Lorien\n\n70) jsydik: Trade Y2 B2 Jsydik\n\n71) Knightsabre: Move Y2 Lorien Fangorn\n\n72) jsydik: Discover B2 Jsydik G1 Dale\n\n73) Knightsabre: Build Y2 Fangorn\n\n74) jsydik: Build B1 Dale\n\n75) Knightsabre: Trade G3 Y3 Knightsabre\n\n76) jsydik: Build Y2 Jsydik\n\n77) Knightsabre: Trade Y1 B1 Knightsabre\n\n78) jsydik: Sacrifice Y2 Jsydik\nMove B2 Dale Knightsabre\nMove B1 Dale Knightsabre\nCatastrophe Knightsabre Blue\n\n\nHomeworlds Online (SDG# 18951)\nVariants: "Hard time"\nStarted: 2011.2.19, Ended: 2011.3.13\nParticipants: SilentTitan (S), daselva (N)\nWinner: SilentTitan\n\n1) daselva: Homeworld B1 R2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) daselva: Build G1 Daselva\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) daselva: Trade G1 Y1 Daselva\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) daselva: Build G1 Daselva\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) daselva: Trade G1 R1 Daselva\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) daselva: Build R1 Daselva\n\n12) SilentTitan: Trade G1 B1 Silenttitan\n\n13) daselva: Discover R1 Daselva G3 S1\n\n14) SilentTitan: Discover B1 Silenttitan Y1 Decoy\n\n15) daselva: Build R1 S1\n\n16) SilentTitan: Build Y2 Silenttitan\n\n17) daselva: Build Y2 Daselva\n\n18) SilentTitan: Discover Y2 Silenttitan B1 Trade\n\n19) daselva: Build R2 S1\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Silenttitan\nBuild Y3 Trade\nBuild Y3 Silenttitan\n\n21) daselva: Build Y3 Daselva\n\n22) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Trade S1\nMove Y2 S1 Daselva\nCatastrophe Daselva Yellow\n\n23) daselva: Build R2 Daselva\n\n24) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y1 Trade\n\n25) daselva: Trade R2 Y2 Daselva\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) daselva: Sacrifice Y2 Daselva\nDiscover R2 S1 G2 S2\nMove R2 S2 Decoy\n\n28) SilentTitan: Sacrifice B1 Decoy\nTrade Y3 R3 Trade\n\n29) daselva: Build G1 Daselva\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Trade\nBuild R3 Trade\nBuild Y2 Silenttitan\n\n\nHomeworlds Online (SDG# 19181)\nVariants: "Hard time"\nStarted: 2011.2.19, Ended: 2011.3.8\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 B2 G3\n\n2) lorgar: Homeworld G2 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build B1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Trade B1 G1 Lorgar\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Discover G1 Lorgar Y3 Adamante\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) lorgar: Build G1 Adamante\n\n11) SilentTitan: Discover Y1 Silenttitan G1 Discover\n\n12) lorgar: Discover G1 Adamante B1 Amarante\n\n13) SilentTitan: Trade Y2 R2 Silenttitan\n\n14) lorgar: Build G2 Amarante\n\n15) SilentTitan: Move R2 Silenttitan Amarante\n\n16) lorgar: Trade B3 G3 Lorgar\n\n17) SilentTitan: Attack G2 Amarante South\n\n18) lorgar: Build G2 Adamante\n\n19) SilentTitan: Sacrifice Y1 Discover\nDiscover G2 Amarante Y3 Dos\n\n20) lorgar: Discover G1 Adamante B1 Mored\n\n21) SilentTitan: Attack G1 Amarante South\n\n22) lorgar: Discover G2 Adamante B1 Theodred\n\n23) SilentTitan: Build R1 Amarante\n\n24) lorgar: Build G1 Theodred\n\n25) SilentTitan: Build G3 Dos\n\n26) lorgar: Trade G2 Y2 Theodred\n\n27) SilentTitan: Move G3 Dos Lorgar\n\n28) lorgar: Build G2 Lorgar\nCatastrophe Lorgar Green\n\n\tlorgar: thx for the game\n\tSilentTitan: thank you\n\nHomeworlds Online (SDG# 19191)\nVariants: "Hard time"\nStarted: 2011.2.20, Ended: 2011.2.22\nParticipants: alexcobo (S), Gidaio (N)\nWinner: alexcobo\n\n1) Gidaio: Homeworld Y3 B1 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) Gidaio: Build G1 Gidaio\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) Gidaio: Build G1 Gidaio\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) Gidaio: Discover G1 Gidaio Y2 Gamma\n\n8) alexcobo: Trade Y1 G1 Alexcobo\n\n9) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Gidaio\nBuild G2 Gidaio\nBuild G2 Gamma\n\n10) alexcobo: Sacrifice Y3 Alexcobo\nDiscover G1 Alexcobo R1 Doom\nMove G1 Doom Gamma\nMove G1 Gamma Gidaio\nCatastrophe Gidaio G\n\n\talexcobo: Thanks for the game!\n\tGidaio: ...ouch.\r\nGood game. Should have seen that coming... *smacks himself in face*\n\nHomeworlds Online (SDG# 19212)\nStarted: 2011.2.21, Ended: 2011.3.1\nParticipants: TwoShort (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 18983)\nVariants: "Sinister, Hard time"\nStarted: 2011.2.23, Ended: 2011.6.7\nParticipants: lorgar (S), Mandrel (W), goulo (N), alexcobo (E)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\tgoulo: hi all!\n\n3) lorgar: Homeworld Y1 G2 B3\n\n4) Mandrel: Homeworld B3 R2 G3\n\n5) goulo: Build G1 Goulo\n\tMandrel: Hey! Enjoy the game!\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) lorgar: Build B1 Lorgar\n\talexcobo: Good gaming!\n\tlorgar: gl hf!\n\n8) Mandrel: Build G1 Mandrel\n\n9) goulo: Trade G1 Y1 Goulo\n\n10) alexcobo: Build Y1 Alexcobo\n\n11) lorgar: Trade B1 Y1 Lorgar\n\n12) Mandrel: Trade G3 Y3 Mandrel\n\n13) goulo: Build Y2 Goulo\n\n14) alexcobo: Trade Y1 R1 Alexcobo\n\n15) lorgar: Build B1 Lorgar\n\n16) Mandrel: Build G1 Mandrel\n\n17) goulo: Trade Y1 G1 Goulo\n\n18) alexcobo: Build R1 Alexcobo\n\n19) lorgar: Trade B1 R1 Lorgar\n\n20) Mandrel: T G1 R1 Mandrel\n\n21) goulo: Build Y1 Goulo\n\n22) alexcobo: Discover R1 Alexcobo G1 One\n\n23) lorgar: Build B1 Lorgar\n\n24) Mandrel: Build G1 Mandrel\n\n25) goulo: Trade Y2 R2 Goulo\n\n26) alexcobo: Build R1 Alexcobo\n\n27) lorgar: Build R2 Lorgar\n\n28) Mandrel: Trade G1 B1 Mandrel\n\n29) goulo: Move R2 Goulo One\n\n30) alexcobo: Sacrifice Y1 Alexcobo\nDiscover R1 One G3 Three\n\n31) lorgar: Move R2 Lorgar Three\n\n32) Mandrel: Discover R1 Mandrel G1 Hall\n\n33) goulo: Build Y1 Goulo\n\n34) alexcobo: Build Y1 Alexcobo\n\n35) lorgar: Discover Y1 Lorgar G3 Four\n\n36) Mandrel: Build R2 Hall\n\n37) goulo: Move Y1 Goulo One\n\n38) alexcobo: Trade R1 G1 Alexcobo\n\n39) lorgar: Attack R1E Three\n\n40) Mandrel: Build Y2 Mandrel\n\n41) goulo: Discover G1 Goulo B1 Safireto\n\n42) alexcobo: Build G2 Alexcobo\n\n43) lorgar: Sacrifice B1 Lorgar\nTrade R1 B1 Three\n\n44) Mandrel: Move Y2 Mandrel Hall\n\n45) goulo: Build Y2 One\n\n46) alexcobo: Build Y2 Alexcobo\n\n47) lorgar: Trade R2 Y2 Three\n\n48) Mandrel: Build G2 Mandrel\n\n49) goulo: Move Y1 One Alexcobo\nCatastrophe Alexcobo Y\n\n50) alexcobo: Build R1 Alexcobo\n\n51) lorgar: Build B1 Three\n\n52) Mandrel: Move B1 Mandrel Hall\n\n53) goulo: Build G2 Goulo\n\n54) alexcobo: Trade G1 Y1 Alexcobo\n\n55) lorgar: Trade B1 R1 Three\n\n56) Mandrel: Build B1 Hall\n\n57) goulo: Build R2 One\n\n58) alexcobo: Build R2 Alexcobo\n\n59) lorgar: Build R3 Three\n\n60) Mandrel: Trade R1 G1 Hall\n\n61) goulo: Build G2 Safireto\n\n62) alexcobo: Build G3 Alexcobo\n\n63) lorgar: Move R3 Three Safireto\n\n64) Mandrel: Discover G1 Mandrel B1 Sixth\n\n65) goulo: Sacrifice Y2 One\nMove G1 Safireto Alexcobo\nDiscover G2 Safireto Y3 Citronego\nCatastrophe Alexcobo G\n\n66) alexcobo: Trade R1 G1 Alexcobo\n\n67) lorgar: Build B2 Three\n\n68) Mandrel: Build G2 Sixth\n\n69) goulo: Build G3 Citronego\n\n70) alexcobo: Build G3 Alexcobo\n\n71) lorgar: Build R1 Three\n\n72) Mandrel: Build Y1 Hall\n\n73) goulo: Build Y2 Goulo\n\n74) alexcobo: Build Y2 Alexcobo\n\n75) lorgar: Sacrifice Y2 Three\nMove R3 Safireto Four\nMove R3 Four Sixth\n\n76) Mandrel: Sacrifice G2 Sixth\nBuild G2 Mandrel\nBuild Y2 Mandrel\n\n77) goulo: Move Y1 Goulo One\n\n78) alexcobo: Move R2 Alexcobo Four\n\n79) lorgar: Attack G1W Sixth\n\n80) Mandrel: Trade G2 B2 Mandrel\n\n81) goulo: Sacrifice G2 Citronego\nBuild Y2 Goulo\nBuild Y3 One\n\n82) alexcobo: Attack Y1S Four\n\n83) lorgar: Trade R3 Y3 Sixth\n\n84) Mandrel: Build G2 Mandrel\n\n85) goulo: Discover R2 One Y3 Sunego\n\n86) alexcobo: Build G2 Alexcobo\n\n87) lorgar: Move G1 Sixth Alexcobo\nCatastrophe Alexcobo Green\n\n88) Mandrel: Discover B2 Mandrel G1 Good\n\n89) goulo: Build G1 Citronego\n\n90) alexcobo: Trade Y2 G2 Alexcobo\n\n91) lorgar: Trade Y3 G3 Sixth\n\n92) Mandrel: Build B1 Good\n\n93) goulo: Sacrifice Y2 Goulo\nMove G1 Citronego Hall\nMove G2 Goulo Hall\nCatastrophe Hall G\n\n94) alexcobo: Build G1 Alexcobo\n\n95) lorgar: Trade B1 Y1 Three\n\n96) Mandrel: Move Y2 Mandrel Good\n\n97) goulo: Build Y2 Goulo\n\n98) alexcobo: Build Y2 Four\n\n99) lorgar: Build G1 Sixth\n\n100) Mandrel: Build Y2 Good\n\n101) goulo: Discover Y1 One Y3 Polenego\n\n102) alexcobo: Trade Y1 B1 Alexcobo\n\n103) lorgar: Sacrifice Y1 Three\nMove G3 Sixth Sunego\n\n104) Mandrel: Trade B2 R2 Good\n\n105) goulo: Discover R2 Sunego Y1 Citroneto\n\n106) alexcobo: Move Y1 Four Alexcobo\n\n107) lorgar: Build G1 Sunego\n\n108) Mandrel: Build B1 Good\n\n109) goulo: Build G2 Citronego\n\n110) alexcobo: Build Y1 Four\n\n111) lorgar: Sacrifice G3 Sunego\nBuild G3 Sunego\nBuild R1 Three\nBuild R3 Lorgar\n\n112) Mandrel: Build R3 Good\n\n113) goulo: Sacrifice G3 Citronego\nBuild G3 Citronego\nBuild R3 Citroneto\nBuild R3 One\n\n114) alexcobo: Move R1 Alexcobo Three\nCatastrophe Three R\n\n115) lorgar: Move R1 Lorgar Sunego\n\n116) Mandrel: Move R3 Good Four\n\n117) goulo: Discover G3 Citronego B1 Safireto\n\n118) alexcobo: Sacrifice G2 Alexcobo\nBuild R1 Four\nBuild R1 Four\nCatastrophe Four R\n\n119) lorgar: Build B2 Lorgar\n\n120) Mandrel: Trade G2 B2 Mandrel\n\n121) goulo: Move R2 One Alexcobo\n\n122) alexcobo: Build G2 Alexcobo\n\n123) lorgar: Trade B2 G2 Lorgar\n\n124) Mandrel: Sacrifice Y2 Good\nMove B1 Good Alexcobo\nMove B1 Good Alexcobo\nCatastrophe Alexcobo Blue\n\n125) goulo: Build G1 Citronego\n\tgoulo: and then there were three...\n\n126) lorgar: Trade G2 Y2 Lorgar\n\n127) Mandrel: Build R1 Good\n\n128) goulo: Move R3 Citroneto Four\n\n129) lorgar: Build B1 Three\n\n130) Mandrel: Build G2 Mandrel\n\n131) goulo: Attack Y2E Four\n\n132) lorgar: Move Y2 Lorgar Three\n\n133) Mandrel: Trade G2 R2 Mandrel\n\n134) goulo: Build G2 Safireto\n\n135) lorgar: Trade B1 R1 Three\n\n136) Mandrel: Build G2 Mandrel\n\n137) goulo: Attack Y1E Four\n\n138) lorgar: Discover B2 Three Y1 Thirteenth\n\n139) Mandrel: Discover R2 Mandrel B1 Quick\n\n140) goulo: Move Y1 Four Lorgar\n\n141) lorgar: Attack Y1N Lorgar\n\n142) Mandrel: Move G2 Mandrel Quick\n\n143) goulo: Sacrifice Y3 One\nMove Y1 Polenego Lorgar\nMove Y2 Four Lorgar\nMove G1 Citronego Lorgar\nCatastrophe Lorgar Y\n\n144) lorgar: Sacrifice Y2 Three\nMove G3 Sunego Safireto\nMove G1 Sunego Safireto\nCatastrophe Safireto Green\n\n145) Mandrel: Build Y1 Mandrel\n\n146) goulo: Sacrifice G2 Citronego\nBuild G1 Lorgar\nBuild G2 Lorgar\nCatastrophe Lorgar G\n\tgoulo: good epic game, thanks all! \n\n\nHomeworlds Online (SDG# 19227)\nVariants: "Hard time"\nStarted: 2011.2.24, Ended: 2011.3.13\nParticipants: Subhan64 (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) Subhan64: Homeworld B1 Y2 G3\n\n3) alexcobo: Build Y1 Alexcobo\n\n4) Subhan64: Build G1 Subhan64\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) Subhan64: Build G1 Subhan64\n\n7) alexcobo: Discover Y1 Alexcobo G1 Alba\n\n8) Subhan64: Discover G3 Subhan64 G3 Ceti_alpha\n\n9) alexcobo: Build Y1 Alexcobo\n\n10) Subhan64: Build G2 Subhan64\n\n11) alexcobo: Build Y2 Alba\n\n12) Subhan64: Discover G1 Subhan64 Y3 Sirius\n\n13) alexcobo: Trade Y1 B1 Alexcobo\n\n14) Subhan64: Trade G2 Y2 Subhan64\n\n15) alexcobo: Sacrifice B1 Alexcobo\nTrade Y2 G2 Alba\n\n16) Subhan64: Build G2 Subhan64\n\n17) alexcobo: Build G2 Alba\n\n18) Subhan64: Build Y1 Subhan64\n\n19) alexcobo: Build Y2 Alba\n\n20) Subhan64: Trade Y1 B1 Subhan64\n\n21) alexcobo: Sacrifice G2 Alba\nBuild Y1 Alexcobo\nBuild Y3 Alba\n\n22) Subhan64: Sacrifice B1 Subhan64\nTrade G3 R3 Ceti_alpha\n\n23) alexcobo: Trade Y3 R3 Alexcobo\n\n24) Subhan64: Build Y3 Subhan64\n\n25) alexcobo: Sacrifice Y2 Alba\nMove Y1 Alba Sirius\nMove Y1 Sirius Subhan64\nCatastrophe Subhan64 Y\n\n26) Subhan64: Trade G1 Y1 Subhan64\n\n\n27) alexcobo: Move Y3 Alba Sirius\n\n28) Subhan64: Sacrifice Y1 Subhan64\nMove R3 Ceti_alpha Subhan64\n\n29) alexcobo: Build R1 Alexcobo\n\n30) Subhan64: Build R1 Subhan64\n\n31) alexcobo: Build R1 Alexcobo\n\n\tSubhan64: thanks, good game!\n\nHomeworlds Online (SDG# 19115)\nStarted: 2011.2.27, Ended: 2011.3.2\nParticipants: daselva (S), mathochist (N)\nWinner: daselva\n\n\nHomeworlds Online (SDG# 19213)\nStarted: 2011.3.1, Ended: 2011.3.5\nParticipants: TwoShort (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Pass\n\n\nHomeworlds Online (SDG# 19169)\nStarted: 2011.3.1, Ended: 2011.4.1\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) lorgar: Homeworld G3 Y2 B3\n\tts52: Time for a rematch, eh? Have a good game!\n\tlorgar: thanks. lets fight again!\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build B1 Lorgar\n\n5) ts52: Trade G1 B1 Ts52\n\n6) lorgar: Discover B1 Lorgar G1 Meuh\n\n7) ts52: Discover B1 Ts52 G2 Kermit\n\n8) lorgar: Build B2 Meuh\n\n9) ts52: Build B2 Kermit\n\n10) lorgar: Trade B2 Y2 Meuh\n\n11) ts52: Trade B1 Y1 Kermit\n\n12) lorgar: Build Y1 Meuh\n\n13) ts52: Build G1 Ts52\n\n14) lorgar: Trade Y1 R1 Meuh\n\n15) ts52: Trade G1 R1 Ts52\n\n16) lorgar: Build Y1 Meuh\n\n17) ts52: Build G1 Ts52\n\n18) lorgar: Trade Y2 G2 Meuh\n\n19) ts52: Discover G1 Ts52 Y2 Bigbird\n\n20) lorgar: Discover G2 Meuh G3 Amanite\n\n21) ts52: Build G1 Bigbird\n\n22) lorgar: Build B1 Lorgar\n\n23) ts52: Build G2 Ts52\n\n24) lorgar: Build B2 Meuh\n\n25) ts52: Trade G2 Y2 Ts52\n\n26) lorgar: Discover B2 Meuh G2 Lynx\n\n27) ts52: Move G1 Bigbird Ts52\n\n28) lorgar: Build R1 Meuh\n\n29) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild Y3 Ts52\n\n30) lorgar: Build Y3 Meuh\n\n31) ts52: Sacrifice Y2 Ts52\nMove Y1 Kermit Meuh\nMove Y1 Kermit Meuh\nCatastrophe Meuh Yellow\n\n32) lorgar: Trade R1 Y1 Meuh\n\n33) ts52: Move Y3 Ts52 Kermit\n\n34) lorgar: Build Y1 Meuh\n\tlorgar: I deserved it\n\n35) ts52: Build Y1 Kermit\n\n36) lorgar: Trade B2 Y2 Lynx\n\n37) ts52: Build B2 Kermit\n\n38) lorgar: Sacrifice Y2 Lynx\nMove Y1 Meuh Kermit\nMove Y1 Meuh Kermit\nCatastrophe Kermit Yellow\n\n39) ts52: Trade B2 Y2 Kermit\n\n40) lorgar: Trade B1 R1 Lorgar\n\n41) ts52: B Y1 Kermit\n\n42) lorgar: Build R2 Meuh\n\n43) ts52: Build R2 Ts52\n\n44) lorgar: Trade R1 Y1 Meuh\n\n45) ts52: Build G2 Bigbird\n\n46) lorgar: Build B1 Lorgar\n\n47) ts52: Move R1 Ts52 Bigbird\n\n48) lorgar: Trade B1 Y1 Lorgar\n\n49) ts52: Discover Y2 Kermit R3 Elmo\n\n50) lorgar: Build Y3 Meuh\n\n51) ts52: Build Y3 Kermit\n\n52) lorgar: Move Y3 Meuh Bigbird\n\n53) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Bigbird\nBuild R2 Ts52\n\n54) lorgar: Move Y1 Meuh Kermit\n\n55) ts52: Move R2 Ts52 Kermit\n\n56) lorgar: Sacrifice R2 Meuh\nAttack G2N Bigbird\nAttack R1N Bigbird\n\n57) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R3 Kermit\n\n58) lorgar: Sacrifice Y1 Lorgar Move Y3 Bigbird Elmo\nPass\n\n59) ts52: M Y3 Kermit Amanite\n\n60) lorgar: Sacrifice R1 Bigbird\nAttack R1N Bigbird\nPass\n\n61) ts52: Sacrifice R2 Ts52\nAttack G2 Amanite\nAttack R1 Bigbird\n\n62) lorgar: Build B1 Meuh\n\n63) ts52: Attack Y1 Kermit\n\n64) lorgar: Trade B1 R1 Meuh\n\n65) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R3 Bigbird\n\n66) lorgar: Sacrifice R1 Meuh\nAttack R3N Bigbird\n\n67) ts52: Move R2 Kermit Meuh\n\n68) lorgar: Attack G1 Bigbird\n\n69) ts52: Move R1 Bigbird Amanite\n\n70) lorgar: Sacrifice Y3 Bigbird\nMove G1 Bigbird Ts52\nMove G2 Bigbird Ts52\nMove R3 Bigbird Ts52\nCatastrophe Ts52 Green\n\n71) ts52: Sacrifice Y2 Elmo\nMove B2 Kermit Ts52\nMove R3 Kermit Ts52\nCatastrophe Ts52 Red\n\n72) lorgar: Build B1 Meuh\n\n73) ts52: Attack B1 Meuh\n\n74) lorgar: Build B2 Lorgar\n\n75) ts52: Attack B1 Meuh\n\n76) lorgar: Discover B2 Lorgar G1 Hutchins\n\n77) ts52: Trade B2 G2 Ts52\n\n78) lorgar: Build B2 Hutchins\n\n79) ts52: Build G1 Amanite\n\n80) lorgar: Trade B2 Y2 Hutchins\n\n81) ts52: Build G3 Ts52\n\n82) lorgar: Build B2 Hutchins\n\n83) ts52: Move Y1 Kermit Meuh\n\n84) lorgar: Trade B2 R2 Hutchins\n\n85) ts52: Move Y3 Amanite Hutchins\n\n86) lorgar: Sacrifice Y2 Hutchins\nMove R2 Hutchins Kermit\nMove B2 Hutchins Kermit\n\n87) ts52: Move Y1 Kermit Amanite\n\n88) lorgar: Build B2 Kermit\n\n89) ts52: Move B1 Meuh Amanite\n\n90) lorgar: Trade B2 R2 Kermit\n\n91) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Amanite\nBuild R3 Meuh\n\n92) lorgar: Trade B2 Y2 Kermit\n\n93) ts52: Discover R2 Meuh Y2 Bigbird\n\n94) lorgar: Build R3 Lorgar\n\n95) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Hutchins\nBuild Y3 Meuh\n\n96) lorgar: Sacrifice R1 Lorgar\nPass\n\n97) ts52: Discover Y1 Amanite R1 Elmo\n\n98) lorgar: Move R2 Kermit Amanite\n\n99) ts52: Attack R2 Amanite\n\n100) lorgar: Build R3 Kermit\n\n101) ts52: S Y3 Meuh\nM Y1 Meuh Lorgar\nMove Y1 Elmo Lorgar\nM Y1 Hutchins Lorgar\nC Lorgar Yellow\n\n\n\n102) lorgar: Build B2 Lorgar\n\n103) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Bigbird\nBuild B2 Meuh\n\n104) lorgar: Sacrifice Y2 Kermit\nMove R2 Kermit Amanite\nMove B2 Lorgar Kermit\nCatastrophe Amanite Red\n\n105) ts52: Trade B2 Y2 Meuh\n\tlorgar: You're driving, may I ask if we're getting anywhere?\r\nI would ask you this too, do you think this game is truly a space strategy game? I am keen to think about it as a sociologic thing.\n\tts52: I'm often slow to attack in this game. I've been burned before, so I'm extra cautious. As for the theme, it's not strictly necessary, but I like it.\n\n106) lorgar: Build R1 Kermit\n\n107) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Hutchins\nBuild R1 Meuh\n\n108) lorgar: Trade R3 Y3 Kermit\n\n109) ts52: Move Y1 Hutchins Amanite\n\n110) lorgar: Build R2 Kermit\n\n111) ts52: Move G1 Amanite Bigbird\n\n112) lorgar: Sacrifice Y3 Kermit\nMove R1 Kermit Meuh\nMove R2 Kermit Meuh\nPass\nCatastrophe Meuh Red\n\n113) ts52: Sacrifice Y2 Meuh\nMove G2 Ts52 Bigbird\nMove G2 Amanite Bigbird\n\n114) lorgar: Build B2 Kermit\n\n115) ts52: Sacrifice Y3 Hutchins\nMove G2 Bigbird Lorgar\nMove G2 Bigbird Lorgar\nMove G1 Bigbird Lorgar\nCatastrophe Lorgar Green\n\n\tts52: Thanks for the game!\n\tlorgar: AAAAAAAAH I GOT BLASTED! again ^^\n\nHomeworlds Online (SDG# 19225)\nStarted: 2011.3.1, Ended: 2011.4.25\nParticipants: Mandrel (S), Daarck (N)\nWinner: Mandrel\n\n1) Daarck: Homeworld G1 Y2 B3\n\n2) Mandrel: Homeworld R1 B3 G3\n\tMandrel: Have a good game!\n\n3) Daarck: Build B1 Daarck\n\tDaarck: You too.\n\n4) Mandrel: Build G1 Mandrel\n\n5) Daarck: Trade B1 Y1 Daarck\n\n6) Mandrel: T G1 Y1 Mandrel\n\n7) Daarck: Build B1 Daarck\n\n8) Mandrel: B G1 Mandrel\n\n9) Daarck: Build B1 Daarck\n\n10) Mandrel: Trade G1 B1 Mandrel\n\n11) Daarck: Discover B1 Daarck G3 Marco\n\tDaarck: NICE!\n\n12) Mandrel: Build B2 Mandrel\n\n13) Daarck: Trade B3 G3 Daarck\n\n14) Mandrel: T B1 R1 Mandrel\n\n15) Daarck: Build G1 Daarck\n\n16) Mandrel: Build G1 Mandrel\n\n17) Daarck: Move G1 Daarck Marco\n\n18) Mandrel: B G2 Mandrel\n\n19) Daarck: Build G2 Marco\n\n20) Mandrel: Discover G2 Mandrel Y2 Loom\n\n21) Daarck: Trade G2 R2 Marco\n\n22) Mandrel: Build G2 Loom\n\n23) Daarck: Build G2 Daarck\n\n24) Mandrel: Move B2 Mandrel Loom\n\n25) Daarck: Move Y1 Daarck Marco\n\n26) Mandrel: Trade G2 Y2 Loom\n\n27) Daarck: Move R2 Marco Loom\n\n28) Mandrel: S Y2 Loom\nMove G2 Loom Marco\nMove G2 Marco Daarck\nCatastrophe Daarck Green\n\n29) Daarck: Attack B2 Loom\n\tDaarck: Oh crap.\n\n30) Mandrel: M Y1 Mandrel Daarck\n\tMandrel: Not sure if i've left myself too exposed now\n\n31) Daarck: Move G1 Marco Loom\n\tDaarck: Not quite sure what to do next actually...\n\n32) Mandrel: S G3 Mandrel\nBuild Y1 Daarck\nBuild Y2 Daarck\nBuild Y3 Daarck\nCatastrophe Daarck Yellow\n\tMandrel: Good game,\n\n\nHomeworlds Online (SDG# 19281)\nVariants: "Hard time"\nStarted: 2011.3.1, Ended: 2011.3.15\nParticipants: mneme (S), goulo (N)\nWinner: mneme\n\n1) goulo: Homeworld B2 R3 G3\n\n2) mneme: Homeworld R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) mneme: Build G1 Mneme\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) goulo: Build G1 Goulo\n\n8) mneme: Build G1 Mneme\n\n9) goulo: Trade G1 R1 Goulo\n\n10) mneme: Trade G1 B1 Mneme\n\n11) goulo: Build G1 Goulo\n\n12) mneme: Build B1 Mneme\n\n13) goulo: Trade G1 B1 Goulo\n\n14) mneme: Discover B1 Mneme G3 Gunther\n\n15) goulo: Discover B1 Goulo G1 Smeraldeto\n\n16) mneme: Trade B1 R1 Gunther\n\n17) goulo: Build R2 Goulo\n\n18) mneme: Build R2 Gunther\n\n19) goulo: Move R2 Goulo Smeraldeto\n\n20) mneme: Sacrifice B1 Mneme\nTrade R2 Y2 Gunther\n\n21) goulo: Build Y1 Goulo\n\n22) mneme: Build Y2 Mneme\n\n23) goulo: Move Y1 Goulo Smeraldeto\n\n24) mneme: Trade Y2 R2 Mneme\n\n25) goulo: Build Y2 Smeraldeto\n\n26) mneme: Build G1 Mneme\n\n27) goulo: Trade Y1 G1 Smeraldeto\n\n28) mneme: Discover G1 Mneme Y3 Launcher\n\n29) goulo: Discover G1 Smeraldeto R3 Rubenego\n\n30) mneme: Build G2 Mneme\n\n31) goulo: Build G2 Rubenego\n\n32) mneme: Move R2 Mneme Launcher\n\n33) goulo: Sacrifice Y2 Smeraldeto\nMove G1 Rubenego Mneme\nMove G2 Rubenego Mneme\nCatastrophe Mneme G\n\n34) mneme: Build R2 Gunther\n\n35) goulo: Build R3 Smeraldeto\n\tmneme: oops. Can't believe I missed that your 2 gs were one away from my home system.\r\n\n\n36) mneme: Build R3 Launcher\n\tgoulo: it was a lucky break for me!\n\n37) goulo: Trade R2 Y2 Smeraldeto\n\n38) mneme: Move R3 Launcher Mneme\n\n39) goulo: Build R2 Smeraldeto\n\n40) mneme: Trade R3 G3 Mneme\n\n41) goulo: Discover R1 Goulo Y1 Citroneto\n\n42) mneme: Sacrifice G3 Mneme\nBuild Y2 Mneme\nBuild Y3 Mneme\nBuild Y3 Gunther\n\n43) goulo: Discover Y2 Smeraldeto R3 Rubenego\n\n44) mneme: Sacrifice Y2 Mneme\nMove R2 Gunther Smeraldeto\nMove R1 Gunther Smeraldeto\nCatastrophe Smeraldeto R\n\n45) goulo: Build Y2 Goulo\n\tmneme: um. I think I may have gotten my own back for the blunder on move 16. And then some.\n\tgoulo: Yeah...\n\n46) mneme: Trade Y3 G3 Mneme\n\n47) goulo: Build B1 Smeraldeto\n\tgoulo: My problem in Homeworlds is I can see and take opportunities like move 16, but I still don't have a good sense of long-term strategy and don't create such opportunities reliably enough, and fall into them on the wrong side of the opportunity like just now. :)\n\n48) mneme: Build Y3 Mneme\n\n49) goulo: Move Y1 Goulo Smeraldeto\n\n50) mneme: Move Y3 Gunther Citroneto\n\tgoulo: Hm, OK, now I'm just playing like an idiot. Time for a break. :/\n\tmneme: Yeah, I was wondering about that one; it was pretty easy to deny it.\n\tgoulo: It was pure brainfart at my end - no idea how I didn't notice "Oh, gee, he'll just build the last Y3."\n\tgoulo: one mistake compounding another\n\n51) goulo: Move R1 Citroneto Rubenego\n\tgoulo: looking at the situation now - your 3 big ships vs my 1 big ship - it is hard to imagine that a few turns ago, i was ahead. talk about snatching defeat from the jaws of victory. :P\r\nwell, i'll press on for a bit. :)\n\n52) mneme: Move Y3 Mneme Rubenego\n\n53) goulo: Discover Y2 Rubenego R2 Rubeno\n\n54) mneme: Attack R1 Rubenego\n\n55) goulo: Discover B1 Smeraldeto R3 Fragego\n\n56) mneme: Move R2 Launcher Smeraldeto\n\n57) goulo: Move Y1 Smeraldeto Fragego\n\n58) mneme: Sacrifice G1 Launcher\nBuild Y3 Rubenego\n\n59) goulo: Build G1 Goulo\n\n60) mneme: Attack B1 Smeraldeto\n\n61) goulo: Move G1 Goulo Citroneto\n\n62) mneme: Sacrifice R1 Rubenego\nAttack G1 Citroneto\n\n\tgoulo: Thanks for the game - no point in my further floundering...\n\tmneme: *nod* Sorry I didn't bring it to a conclusion faster; I kept having great opportunities for further locking you down that I took instead of, say, s y1 mneme, m Y3 Rubenego Smeraldeto, followed by t Y3 B3 Smeraldeto and a Y sac to put both ships in your homeworld.\n\tgoulo: No need for you to apologize for being careful when you're ahead. :)\r\nThat was an interesting tough game for me. Well, there's a reason your rating is higher than mine. :)\n\tmneme: Fair enough. Twoshort can reliably beat me; I can't think of anyone else who can. It was interesting for me too, as I was on the verge of surrendering when you knocked out my only large--but I figured you didn't have a knockout blow, so it was worth continuing to play and hope you'd let me get a large back in exchange for your getting a large (as you did).\n\nHomeworlds Online (SDG# 19291)\nStarted: 2011.3.7, Ended: 2011.3.9\nParticipants: javico (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) javico: Homeworld B2 G1 Y3\n\tjavico: it's my first game, only want to learn\n\n3) ts52: Build G1 Ts52\n\tts52: Ok, feel free to ask any questions. The best way to ask is to post your question, then make a move and undo it. That way I get email from SDG.\n\n4) javico: Build Y1 Javico\n\n5) ts52: Build G1 Ts52\n\tjavico: the only way to destroy a system is by catastrophe?\n\tts52: catastrophe or abandonment. if all the ships in a system leave or are destroyed, the system goes too\n\n6) javico: Discover Y3 Javico R3 Nova\n\n7) ts52: Discover G1 Ts52 B3 Grover\n\n8) javico: Trade Y1 R1 Javico\n\tjavico: can i make one action for each system or only an action for turn?\n\tts52: only one action per turn. also, it's generally advisable to keep a large ship in your home system\n\n9) ts52: Trade G3 R3 Ts52\n\tjavico: can't i build a green ship in my homeworld?\n\n10) javico: Move Y3 Nova Javico\n\n11) ts52: Build R1 Ts52\n\tts52: you can only build a ship that's the same color of a ship of yours in that system\n\n12) javico: Build Y1 Javico\n\n13) ts52: Build G2 Grover\n\tjavico: i am an absolutely noob, haha i would like to play another game after this finishes\n\tts52: no problem, I'd be happy to play several games\n\n14) javico: Build Y1 Javico\n\n15) ts52: Trade G2 Y2 Grover\n\n16) javico: Discover Y1 Javico B3 Nova\n\n17) ts52: Build G2 Grover\n\n18) javico: Trade Y3 G3 Javico\n\n19) ts52: Build G2 Ts52\n\n20) javico: Move R1 Javico Grover\n\n21) ts52: Sacrifice R1 Ts52\nAttack R1 Grover\n\n22) javico: Build Y2 Javico\n\n23) ts52: Build R1 Ts52\n\n24) javico: Trade Y1 R1 Javico\n\n25) ts52: Build R2 Grover\n\tjavico: i dont know what to do :)\n\n26) javico: Trade Y2 G2 Javico\n\n27) ts52: Build G3 Ts52\n\tts52: That's tough to say. Generally, if your enemy has a gun (red) you should have a gun. That's one good adage. Also, building up a doomsday machine (3 pieces of a color and large yellow) to use to destroy part of your opponents homeworld is another common strategy.\n\n28) javico: Trade G2 Y2 Javico\n\n29) ts52: Move R3 Ts52 Nova\n\n30) javico: Build G2 Javico\n\n31) ts52: Move G1 Grover Javico\nCatastrophe Javico Green\n\n32) javico: Trade Y1 G1 Nova\n\tts52: You need to be very careful about having three pieces of the same color in the same system. Always check to make sure I don't have a piece of the same color that I could move in to that system and cause a catastrophe.\n\n33) ts52: Attack G1S Nova\n\n34) javico: Trade Y2 G2 Javico\n\n35) ts52: Trade G1 Y1 Nova\n\tjavico: i don't know why you didnt finish yet. You can sacrifice your Y2 to move your two G ships into my homeworld and do a catastrophe\n\n36) javico: Build G1 Javico\n\n37) ts52: Move R3 Nova Javico\n\tts52: yeah, that just about does it. though technically you aren't dead yet.\n\n38) javico: Trade G1 Y1 Javico\n\n39) ts52: Attack R1 Javico\n\n\tts52: Thanks for the game. I'd be happy to play again, any time.\n\tjavico: thanks for teach me in this game, but i'm afraid that i didnt like it too much. In my opinion, it has too many restrictions and there is a moment in the game that you can make only a few movements.\n\tts52: Fair enough. The simplicity of it is something I enjoy, but it's not for everyone.\n\nHomeworlds Online (SDG# 19182)\nVariants: "Hard time"\nStarted: 2011.3.8, Ended: 2011.3.24\nParticipants: alexcobo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) alexcobo: Homeworld G3 B1 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) alexcobo: Trade Y1 R1 Alexcobo\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) alexcobo: Build R1 Alexcobo\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) alexcobo: Build R1 Alexcobo\n\n11) SilentTitan: Discover Y1 Silenttitan G1 Ox\n\n12) alexcobo: Discover R1 Alexcobo G2 One\n\n13) SilentTitan: Discover Y1 Silenttitan G1 Ax\n\n14) alexcobo: Build R2 One\n\n15) SilentTitan: Discover Y1 Ox R3 Bigred\n\n16) alexcobo: Trade R1 G1 Alexcobo\n\n17) SilentTitan: Trade G1 R1 Silenttitan\n\n18) alexcobo: Build Y1 Alexcobo\n\n19) SilentTitan: Build Y2 Ax\n\n20) alexcobo: Build R2 Alexcobo\n\n21) SilentTitan: Sacrifice Y1 Ax\nDiscover R1 Silenttitan G1 Spore\n\n22) alexcobo: Build R3 Alexcobo\n\n23) SilentTitan: Build R3 Spore\n\n24) alexcobo: Discover R3 Alexcobo Y2 Ambar\n\n25) SilentTitan: Build G2 Silenttitan\n\n26) alexcobo: Build G2 Alexcobo\n\n27) SilentTitan: Trade G2 Y2 Silenttitan\n\n28) alexcobo: Move Y1 Alexcobo One\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Bigred\nBuild Y3 Ax\nBuild Y3 Silenttitan\n\n30) alexcobo: Sacrifice Y3 Alexcobo\nMove R1 One Spore\nMove R2 One Spore\nMove R3 Ambar Ax\nCatastrophe Spore R\n\n31) SilentTitan: Sacrifice Y2 Ax\nMove Y3 Ax One\nMove Y3 One Alexcobo\n\n32) alexcobo: Trade R2 Y2 Alexcobo\n\n33) SilentTitan: Trade Y3 G3 Alexcobo\nCatastrophe Alexcobo Green\n\n\talexcobo: Well done!\r\nyou win.\n\nHomeworlds Online (SDG# 19292)\nStarted: 2011.3.8, Ended: 2011.7.10\nParticipants: alexcobo (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: H R1 B2 G3\n\tMandrel: Have a good game.\n\n2) alexcobo: Homeworld G3 B2 Y3\n\talexcobo: Thanks! You too.\n\n3) Mandrel: Build G1 Mandrel\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) alexcobo: Trade Y1 R1 Alexcobo\n\n7) Mandrel: Build R2 Mandrel\n\n8) alexcobo: Build R2 Alexcobo\n\n9) Mandrel: Trade R2 Y2 Mandrel\n\n10) alexcobo: Build Y1 Alexcobo\n\n11) Mandrel: Build R2 Mandrel\n\n12) alexcobo: Build R2 Alexcobo\n\n13) Mandrel: Trade R2 Y2 Mandrel\n\n14) alexcobo: Discover R2 Alexcobo G1 One\n\n15) Mandrel: D R1 Mandrel G3 Campus\n\n16) alexcobo: Trade R1 G1 Alexcobo\n\n17) Mandrel: Move Y2 Mandrel Campus\n\n18) alexcobo: Build R1 One\n\n19) Mandrel: Build Y1 Mandrel\n\n20) alexcobo: Build R2 Alexcobo\n\n21) Mandrel: B R3 Campus\n\n22) alexcobo: Trade R2 B2 Alexcobo\n\n23) Mandrel: Build G1 Mandrel\n\n24) alexcobo: Move Y1 Alexcobo One\n\n25) Mandrel: Trade G1 B1 Mandrel\n\n26) alexcobo: Build R2 Alexcobo\n\n27) Mandrel: Discover R3 Campus G1 Late\n\n28) alexcobo: Move B2 Alexcobo One\n\n29) Mandrel: Build R3 Campus\n\n30) alexcobo: Trade R2 G2 One\n\n31) Mandrel: M B1 Mandrel Campus\n\n32) alexcobo: Build G2 Alexcobo\n\n33) Mandrel: Build G2 Mandrel\n\n34) alexcobo: Build Y1 Alexcobo\n\n35) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild Y2 Mandrel\nBuild Y3 Campus\n\n36) alexcobo: Build Y3 One\n\n37) Mandrel: Sacrifice Y3 Campus\nMove G2 Mandrel Campus\nMove G2 Campus Late\nMove G2 Late Alexcobo\nCatastrophe Alexcobo Green\n\n38) alexcobo: Sacrifice Y3 One\nMove G2 One Alexcobo\nMove Y1 One Campus\nMove Y1 Campus Mandrel\nCatastrophe Mandrel Y\n\talexcobo: My order is "sacrifice y3 one" the system says "You do not own a ship Y2 in the One system."\n\n39) Mandrel: B G1 Mandrel\n\n40) alexcobo: Build G2 Alexcobo\n\n41) Mandrel: T G1 Y1 Mandrel\n\n42) alexcobo: Discover R2 Alexcobo G3 R2\n\n43) Mandrel: B Y1 Mandrel\n\n44) alexcobo: Sacrifice G2 Alexcobo\nBuild R2 One\nBuild R3 Alexcobo\n\n45) Mandrel: Build B1 Campus\n\n46) alexcobo: Build G1 Alexcobo\n\n47) Mandrel: M B1 Campus Late\n\n48) alexcobo: Move Y1 Alexcobo R2\n\n49) Mandrel: B B1 Late\n\n50) alexcobo: Build B3 One\n\n51) Mandrel: Sacrifice Y2 Campus\nMove B1 Late Alexcobo\nMove B1 Late Alexcobo\n\n52) alexcobo: Sacrifice R2 One\nAttack B1N Alexcobo\nAttack B1N Alexcobo\n\n53) Mandrel: S Y1 Mandrel\nMove B1 Campus Alexcobo\nCatastrophe Alexcobo Blue\n\tMandrel: Good game.\n\talexcobo: Good game!\n\n\nHomeworlds Online (SDG# 19274)\nStarted: 2011.3.8, Ended: 2011.4.16\nParticipants: mathochist (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G3 B1 Y3\n\n\nHomeworlds Online (SDG# 19326)\nStarted: 2011.3.10, Ended: 2011.3.14\nParticipants: dreskyn (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\tdreskyn: homeworld r3 b2 g3\n\n2) dreskyn: Homeworld R3 B2 G3\n\n3) TwoShort: Build G1 Twoshort\n\tdreskyn: I am completely new to this system. I guess i sent you what i wanted to start with ... oh well.\r\n\n\tTwoShort: No problem; I still do the same thing occasionally. Have you played Homeworlds much before?\n\n4) dreskyn: Build G1 Dreskyn\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) dreskyn: Build G1 Dreskyn\n\tdreskyn: I have played a few TT games reciently, but I'm really rusty. \n\n7) TwoShort: Build Y1 Twoshort\n\n8) dreskyn: Trade G1 Y1 Dreskyn\n\n9) TwoShort: Build Y2 Twoshort\n\tdreskyn: Yep! I see I already made a mistake in my thinking! :)\n\n10) dreskyn: Build Y2 Dreskyn\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) dreskyn: Discover G1 Dreskyn B1 Alpha\n\n13) TwoShort: Build G1 Twoshort\n\n14) dreskyn: Sacrifice Y2 Dreskyn\nMove Y1 Dreskyn Alpha\nDiscover Y1 Alpha Y3 Gamma\n\n15) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n16) dreskyn: Build G1 Alpha\n\n17) TwoShort: Build Y2 Grogar\n\n18) dreskyn: Build G2 Dreskyn\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Bluestar\n\n20) dreskyn: Build G2 Dreskyn\n\n21) TwoShort: Sacrifice Y3 Twoshort\nMove G1 Twoshort Bluestar\nMove G1 Bluestar Alpha\nMove G1 Alpha Dreskyn\nCatastrophe Dreskyn Green\n\n\tdreskyn: Well played! I missed that. :)\n\nHomeworlds Online (SDG# 19367)\nVariants: "Hard time"\nStarted: 2011.3.10, Ended: 2011.5.2\nParticipants: Remneb (S), Gidaio (N)\nWinner: Remneb\n\n1) Gidaio: Homeworld B3 Y2 G3\n\n2) Remneb: Homeworld R1 B2 G3\n\tGidaio: I do believe we've met. Either way, good luck!\n\n3) Gidaio: Build G1 Gidaio\n\tRemneb: Thanks.Have a good game .\n\n4) Remneb: Build G1 Remneb\n\tGidaio: Will do. It's hard to have a bad game of Homeworlds.\n\n5) Gidaio: Discover G1 Gidaio B1 Pluto\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) Gidaio: Build G1 Gidaio\n\n8) Remneb: Build Y1 Remneb\n\n9) Gidaio: Build G1 Pluto\n\n10) Remneb: Build G2 Remneb\n\n11) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Pluto\nBuild G2 Gidaio\nBuild G3 Gidaio\n\n12) Remneb: Build G3 Remneb\n\tGidaio: Factory FTW.\n\n13) Gidaio: Trade G2 Y2 Pluto\n\n14) Remneb: Discover G3 Remneb Y3 Pulsar\n\n15) Gidaio: Trade G1 R1 Gidaio\n\n16) Remneb: Trade G2 R2 Remneb\n\n17) Gidaio: Discover G1 Pluto B2 That1planet\n\n18) Remneb: Move R2 Remneb Pulsar\n\n19) Gidaio: Build Y1 Pluto\n\n20) Remneb: Discover Y1 Remneb Y3 Turbo\n\n21) Gidaio: Build G1 That1planet\n\n22) Remneb: Build Y2 Remneb\n\n23) Gidaio: Discover G1 Pluto Y3 Nocanhas\n\n24) Remneb: Move R2 Pulsar That1planet\n\n25) Gidaio: Sacrifice G1 That1planet\nBuild G1 Nocanhas\n\n26) Remneb: Attack G1 That1planet\n\n27) Gidaio: Discover Y1 Pluto B3 Neptune\n\tGidaio: Moving without yellow FTW.\n\tRemneb: That is something i never try...good move.\n\n28) Remneb: Build G2 Pulsar\n\n29) Gidaio: Sacrifice Y2 Pluto\nMove G1 Nocanhas That1planet\nMove G1 That1planet Neptune\n\tGidaio: Thanks. That's the first time I've done that.\n\n30) Remneb: Build G2 That1planet\n\n31) Gidaio: Trade Y1 B1 Neptune\n\n32) Remneb: Trade G2 Y2 That1planet\n\n33) Gidaio: Build G2 Neptune\n\n34) Remneb: Discover R2 That1planet Y1 Bunker\n\n35) Gidaio: Sacrifice G3 Gidaio\nBuild G3 Gidaio\nBuild B1 Neptune\nBuild R1 Gidaio\n\n36) Remneb: Sacrifice G2 Pulsar\nBuild R2 Bunker\nBuild G2 That1planet\n\n37) Gidaio: Trade G2 R2 Neptune\n\n38) Remneb: Move G3 Remneb Neptune\n\n39) Gidaio: Build G2 Nocanhas\n\n40) Remneb: Sacrifice R2 Bunker\nAttack R2 Neptune\nAttack G1 Neptune\n\n41) Gidaio: Sacrifice G1 Nocanhas\nBuild B1 Neptune\nCatastrophe Neptune Blue\n\n42) Remneb: Trade Y1 G1 Remneb\n\n43) Gidaio: Discover G2 Nocanhas B1 Charron\n\tRemneb: Well i would have never think about such move.It is in fact a suicide move to destroy the ennemy.\n\n44) Remneb: Build G1 Pulsar\n\n45) Gidaio: Build G3 Charron\n\n46) Remneb: Sacrifice G3 Pulsar\nBuild G3 Remneb\nBuild Y1 That1planet\nBuild Y3 That1planet\n\n47) Gidaio: Trade G2 R2 Charron\n\n48) Remneb: Build G2 Pulsar\n\n49) Gidaio: Discover R1 Gidaio B1 Glaxoniv\n\tGidaio: Gah! Now I can't move!\n\n50) Remneb: Move Y3 That1planet Bunker\n\n51) Gidaio: Sacrifice G3 Gidaio\nBuild G3 Gidaio\nBuild R2 Glaxoniv\nBuild R3 Charron\n\tRemneb: :)...just wait for me.\n\n52) Remneb: Sacrifice G1 Remneb\nBuild R3 Bunker\n\n53) Gidaio: Build R3 Charron\n\n54) Remneb: Sacrifice Y2 That1planet\nMove R2 Bunker Pulsar\nMove R2 Pulsar Charron\nCatastrophe Charron R\n\n55) Gidaio: Trade G2 Y2 Gidaio\n\n56) Remneb: Trade G2 R2 That1planet\n\n57) Gidaio: Build G1 Gidaio\n\tRemneb: Now you have a yellow :)\n\n58) Remneb: Build G2 Remneb\n\tGidaio: Yay!\n\n59) Gidaio: Trade G3 R3 Charron\n\n60) Remneb: Sacrifice G2 Remneb\nBuild R2 That1planet\nBuild R3 Bunker\n\n61) Gidaio: Trade R2 G2 Glaxoniv\n\n62) Remneb: Move R3 Bunker Turbo\n\n63) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Glaxoniv\nBuild G3 Gidaio\nBuild R2 Charron\n\n64) Remneb: Move Y1 Turbo That1planet\n\n65) Gidaio: Build G3 Glaxoniv\n\n66) Remneb: Move G1 Pulsar Glaxoniv\nCatastrophe Glaxoniv G\n\n67) Gidaio: Trade R1 G1 Glaxoniv\n\n68) Remneb: Move R2 That1planet Pulsar\n\n69) Gidaio: Sacrifice G3 Gidaio\nBuild G2 Glaxoniv\nBuild G2 Glaxoniv\nBuild G3 Gidaio\n\n70) Remneb: Move G1 That1planet Glaxoniv\nCatastrophe Glaxoniv G\n\n71) Gidaio: Discover G1 Gidaio R1 Rageandanger\n\n72) Remneb: Sacrifice Y2 Remneb\nMove R2 Pulsar Charron\nMove R2 That1planet Charron\nCatastrophe Charron R\n\n73) Gidaio: Build R2 Gidaio\n\n74) Remneb: Discover Y1 That1planet G1 Aliens\n\n75) Gidaio: Move R2 Gidaio Aliens\n\n76) Remneb: Sacrifice Y3 Bunker\nMove Y1 Aliens Gidaio\nMove Y1 That1planet Bunker\nMove Y1 Bunker Gidaio\nCatastrophe Gidaio Y\n\n77) Gidaio: Build R2 Gidaio\n\n78) Remneb: Move G2 Pulsar Bunker\n\n79) Gidaio: Trade R1 Y1 Gidaio\n\n80) Remneb: Move R3 Turbo Remneb\n\tGidaio: ...ouch.\n\n81) Gidaio: Build Y1 Gidaio\n\n82) Remneb: Trade R3 Y3 Remneb\n\tRemneb: Since the beginning, yellow was the name of the game.Now we have plenty of that color !\n\n83) Gidaio: Move Y1 Gidaio Rageandanger\n\n84) Remneb: Build Y2 Remneb\n\n85) Gidaio: Build Y2 Rageandanger\n\n86) Remneb: Discover R3 Bunker Y2 Roma\n\n87) Gidaio: Discover Y1 Rageandanger B2 Green\n\n88) Remneb: Trade Y2 B2 Remneb\n\n89) Gidaio: Build G1 Rageandanger\n\n90) Remneb: Build B1 Remneb\n\n91) Gidaio: Sacrifice G1 Rageandanger\nBuild Y2 Green\n\n92) Remneb: Build Y3 Remneb\n\n93) Gidaio: Discover Y1 Green B3 Blue\n\n94) Remneb: Move R3 Roma Blue\n\n95) Gidaio: Sacrifice Y2 Green\nMove R2 Aliens Blue\nMove R2 Blue Bunker\n\n96) Remneb: Move Y3 Remneb Blue\n\n97) Gidaio: Attack G2 Bunker\n\n98) Remneb: Attack Y1 Blue\n\n\tGidaio: This has gone on for a very long time and frankly, I'm in a very bad position. You can have it.\n\tRemneb: Thanks for the game.\n\nHomeworlds Online (SDG# 19343)\nVariants: "Hard time"\nStarted: 2011.3.11, Ended: 2011.3.25\nParticipants: SilentTitan (S), dreskyn (N)\nWinner: SilentTitan\n\n1) dreskyn: Homeworld R2 B1 G3\n\tdreskyn: I'm new to this game. thanks for playing.\n\n2) SilentTitan: Homeworld B2 R3 G3\n\tSilentTitan: sure if you'd like to ask any questions or receive any advice just let me know. \n\n3) dreskyn: Build G1 Dreskyn\n\tdreskyn: thanks :)\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dreskyn: Trade G1 Y1 Dreskyn\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) dreskyn: Build G1 Dreskyn\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) dreskyn: Discover Y1 Dreskyn G3 Alpha\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) dreskyn: Build Y1 Alpha\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) dreskyn: Build Y2 Alpha\n\n14) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover Y1 Silenttitan G1 Poof\nMove Y1 Poof Alpha\nCatastrophe Alpha Yellow\n\n15) dreskyn: Build G1 Dreskyn\n\tdreskyn: LOL! nice move. I'm new to the game. any tips are welcome.\n\n16) SilentTitan: Build B1 Silenttitan\n\n\nHomeworlds Online (SDG# 19325)\nStarted: 2011.3.11, Ended: 2011.4.18\nParticipants: lorgar (S), dreskyn (W), javico (N), alexcobo (E)\nWinner: lorgar\n\n1) javico: Homeworld Y2 B1 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) lorgar: Homeworld B1 Y3 G3\n\n4) dreskyn: Homeworld R1 B2 G3\n\n5) javico: Build G1 Javico\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) lorgar: Build G1 Lorgar\n\n8) dreskyn: Build G1 Dreskyn\n\n9) javico: Trade G1 Y1 Javico\n\n10) alexcobo: Build Y1 Alexcobo\n\n11) lorgar: Discover G1 Lorgar B2 Yoyop\n\n12) dreskyn: Build G1 Dreskyn\n\n13) javico: Build G1 Javico\n\n14) alexcobo: Trade Y1 R1 Alexcobo\n\n15) lorgar: Build G1 Lorgar\n\n16) dreskyn: Trade G1 Y1 Dreskyn\n\n17) javico: Discover Y1 Javico G3 Nova\n\n18) alexcobo: Trade Y1 G1 Alexcobo\n\n19) lorgar: Build G2 Yoyop\n\n20) dreskyn: Build Y1 Dreskyn\n\n21) javico: Trade G1 B1 Javico\n\n22) alexcobo: Build Y1 Alexcobo\n\n23) lorgar: Trade G1 Y1 Yoyop\n\n24) dreskyn: Move Y1 Dreskyn Nova\n\n25) javico: Move B1 Javico Nova\n\n26) alexcobo: Build Y2 Alexcobo\n\n27) lorgar: Build Y2 Yoyop\n\n28) dreskyn: Build Y2 Dreskyn\n\n29) javico: Discover Y1 Nova B1 Mortis\n\n30) alexcobo: Trade Y2 R2 Alexcobo\n\n31) lorgar: Trade Y2 B2 Yoyop\n\n32) lorgar: Build Y2 Yoyop\n\n33) javico: Build G1 Javico\n\n34) alexcobo: Build R1 Alexcobo\n\n35) lorgar: Trade Y1 R1 Yoyop\n\n36) javico: Build B1 Nova\n\n37) alexcobo: Move R2 Alexcobo Mortis\n\n38) lorgar: Discover B2 Yoyop G1 Bebop\n\n39) javico: Trade B1 Y1 Nova\n\n40) alexcobo: Attack Y1N Mortis\n\n41) lorgar: Build G2 Yoyop\n\n42) javico: Build Y2 Nova\n\n43) alexcobo: Move R2 Mortis Nova\n\n44) lorgar: Move Y2 Yoyop Nova\nCatastrophe Nova Yellow\n\n45) alexcobo: Attack B1N Nova\n\n46) lorgar: Trade G1 R1 Lorgar\n\n47) alexcobo: Sacrifice Y1 Alexcobo\nMove R2 Nova Dreskyn\n\n48) lorgar: Sacrifice G2 Yoyop\nBuild R2 Yoyop\nBuild B1 Bebop\n\n49) alexcobo: Attack Y2W Dreskyn\n\n50) lorgar: Trade R1 Y1 Yoyop\n\n51) alexcobo: Attack G1W Dreskyn\n\n52) lorgar: Trade B1 Y1 Bebop\n\n53) alexcobo: Attack Y1W Dreskyn\n\n54) lorgar: Build R1 Yoyop\n\n55) alexcobo: Build B1 Nova\n\n56) lorgar: Move R2 Yoyop Nova\n\n57) alexcobo: Sacrifice Y2 Dreskyn\nMove B1 Nova Javico\nMove B1 Nova Javico\n\n58) lorgar: Move G2 Yoyop Mortis\n\n59) alexcobo: Discover Y1 Mortis Y3 Caronte\n\n60) lorgar: Build G1 Mortis\n\n61) alexcobo: Trade B1 Y1 Javico\n\n62) lorgar: Build Y2 Bebop\n\n63) alexcobo: Build Y2 Alexcobo\n\n64) lorgar: Sacrifice Y2 Bebop\nMove G2 Mortis Alexcobo\nMove G1 Mortis Alexcobo\nCatastrophe Alexcobo Green\n\n65) alexcobo: Build Y2 Dreskyn\n\n66) lorgar: Build Y2 Bebop\n\n67) alexcobo: Sacrifice Y2 Dreskyn\nMove Y2 Alexcobo Bebop\nMove Y1 Caronte Bebop\nCatastrophe Bebop Y\n\n68) lorgar: Trade R1 G1 Yoyop\n\n69) alexcobo: Trade B1 G1 Javico\n\n70) lorgar: Build B1 Bebop\n\n71) alexcobo: Discover G1 Javico Y3 Waypoint\n\n72) lorgar: Build B1 Bebop\n\n73) alexcobo: Build G2 Waypoint\n\n74) lorgar: Trade G3 Y3 Lorgar\n\n75) alexcobo: Move G2 Waypoint Alexcobo\n\n76) lorgar: Sacrifice Y3 Lorgar\nMove B2 Bebop Alexcobo\nMove B1 Bebop Alexcobo\nMove B1 Bebop Alexcobo\nCatastrophe Alexcobo Blue\n\n\tlorgar: thanks for the game\n\nHomeworlds Online (SDG# 19344)\nStarted: 2011.3.11, Ended: 2011.3.14\nParticipants: mathochist (S), dreskyn (N)\nWinner: dreskyn\n\n1) dreskyn: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 19352)\nStarted: 2011.3.11, Ended: 2011.3.17\nParticipants: ts52 (S), dreskyn (N)\nWinner: ts52\n\n1) dreskyn: Homeworld B2 R1 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) dreskyn: Build G1 Dreskyn\n\n4) ts52: B G1 Ts52\n\tts52: Have a good game!\n\n5) dreskyn: Trade G1 Y1 Dreskyn\n\tdreskyn: thanks. you too. \n\n6) ts52: T G1 R1 Ts52\n\n7) dreskyn: Build Y1 Dreskyn\n\n8) ts52: Build R1 Ts52\n\n9) dreskyn: Build Y2 Dreskyn\n\n10) ts52: Build R2 Ts52\n\n11) dreskyn: Trade Y2 R2 Dreskyn\n\n12) ts52: Discover R1 Ts52 G2 Oscar\n\n13) dreskyn: Build Y2 Dreskyn\n\n14) ts52: Trade R2 Y2 Ts52\n\n15) dreskyn: Discover Y1 Dreskyn G3 Alpha\n\n16) ts52: Build R2 Ts52\n\n17) dreskyn: Move R2 Dreskyn Alpha\n\n18) ts52: Move Y2 Ts52 Oscar\n\n19) dreskyn: Move R2 Alpha Oscar\n\n20) ts52: Attack R2N Oscar\n\n21) dreskyn: Build Y2 Dreskyn\n\n22) ts52: Build Y3 Oscar\n\n23) dreskyn: Build Y3 Alpha\n\n24) ts52: Build R2 Ts52\n\n25) dreskyn: Sacrifice Y3 Alpha\nMove Y1 Dreskyn Alpha\nMove Y1 Alpha Oscar\nMove Y1 Alpha Oscar\nCatastrophe Oscar Y\n\n26) ts52: Build R3 Oscar\n\n27) dreskyn: Build G1 Dreskyn\n\n28) ts52: Trade R2 Y2 Ts52\n\n29) dreskyn: Build G1 Dreskyn\n\n30) ts52: Move Y2 Ts52 Oscar\n\n31) dreskyn: Discover G1 Dreskyn B3 Bob\n\n32) ts52: Build R2 Ts52\n\n33) dreskyn: Build G1 Bob\n\n34) ts52: Move R2 Oscar Bob\n\n35) dreskyn: Trade Y2 G2 Dreskyn\n\n36) ts52: Attack G1N Bob\n\n37) dreskyn: Sacrifice G2 Dreskyn\nBuild G2 Bob\nBuild G2 Bob\nCatastrophe Bob G\n\n38) ts52: Build R3 Oscar\n\n39) dreskyn: Trade G3 R3 Dreskyn\n\n40) ts52: Move R3 Oscar Bob\n\n41) dreskyn: Trade R3 G3 Dreskyn\n\n42) ts52: Trade R3 G3 Bob\n\n43) dreskyn: Build Y1 Dreskyn\n\n44) ts52: Build R3 Bob\n\n45) dreskyn: Discover G1 Dreskyn Y3 Hope\n\n46) ts52: Move R3 Oscar Hope\n\n47) dreskyn: Build G1 Dreskyn\n\n48) ts52: Attack G1 Hope\n\n49) dreskyn: Build Y1 Dreskyn\n\n50) ts52: Build R3 Hope\n\n51) dreskyn: Discover G1 Dreskyn Y3 Ouch\n\n52) ts52: Sacrifice Y2 Oscar\nMove R3 Bob Dreskyn\nMove R3 Hope Dreskyn\n\n53) dreskyn: Attack R3 Dreskyn\n\n54) ts52: Sacrifice R2 Ts52\nAttack R3N Dreskyn\nAttack G3N Dreskyn\n\n55) dreskyn: Trade Y2 R2 Dreskyn\nCatastrophe Dreskyn R\n\n56) ts52: Sacrifice R2 Ts52\nAttack Y1 Dreskyn\nAttack Y1 Dreskyn\n\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 19419)\nVariants: "Hard time"\nStarted: 2011.3.16, Ended: 2011.4.5\nParticipants: TwoShort (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) mneme: Build G1 Mneme\n\tTwoShort: Howdy\n\n4) TwoShort: Build G1 Twoshort\n\n5) mneme: Trade G1 B1 Mneme\n\n6) TwoShort: Trade G1 B1 Twoshort\n\tmneme: Greetings. I've still never beaten you, but hey, another try won't hurt. Much.\n\n7) mneme: Build B2 Mneme\n\n8) TwoShort: Build B2 Twoshort\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) TwoShort: Trade B2 Y2 Twoshort\n\n11) mneme: Build B2 Mneme\n\n12) TwoShort: Build B2 Twoshort\n\n13) mneme: Discover B1 Mneme G3 Hunter\n\n14) TwoShort: Discover B2 Twoshort G2 Grogar\n\n15) mneme: Build B3 Hunter\n\n16) TwoShort: Build B3 Grogar\n\n17) mneme: Trade B3 R3 Hunter\n\n18) TwoShort: Trade B2 R2 Grogar\n\n19) mneme: Build B2 Hunter\n\n20) TwoShort: Build B3 Grogar\n\n21) mneme: Sacrifice Y2 Mneme\nMove B1 Hunter Grogar\nMove B2 Hunter Grogar\nCatastrophe Grogar B\n\n22) TwoShort: Build Y1 Twoshort\n\n23) mneme: Build G1 Mneme\n\n24) TwoShort: Move Y1 Twoshort Grogar\n\n25) mneme: Trade G1 Y1 Mneme\n\n26) TwoShort: Build B1 Twoshort\n\n27) mneme: Build B2 Mneme\n\n28) TwoShort: Discover B1 Twoshort Y2 Yolonda\n\n29) mneme: Move B2 Mneme Hunter\n\n30) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Twoshort\nBuild B3 Yolonda\nBuild Y1 Grogar\n\n31) mneme: Build B3 Hunter\n\n32) TwoShort: Trade B3 G3 Twoshort\n\n33) mneme: Trade B3 Y3 Hunter\n\n34) TwoShort: Trade B1 R1 Yolonda\n\n35) mneme: Move R3 Hunter Grogar\n\n36) TwoShort: Build R1 Grogar\n\n37) mneme: Sacrifice B2 Mneme\nTrade R3 B3 Grogar\nTrade B2 R2 Hunter\n\n38) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n39) mneme: Sacrifice R2 Hunter\nAttack Y3 Grogar\nAttack R2 Grogar\n\n40) TwoShort: Move Y2 Twoshort Grogar\nCatastrophe Grogar Yellow\n\n41) mneme: Attack R1 Grogar\n\n42) TwoShort: Trade Y2 G2 Twoshort\n\n43) mneme: Build Y1 Hunter\n\n44) TwoShort: Move G2 Twoshort Yolonda\n\n45) mneme: Move Y1 Hunter Grogar\n\n46) TwoShort: Build R2 Yolonda\n\n47) mneme: Build B1 Grogar\n\n48) TwoShort: Discover R1 Yolonda Y3 Yoyodyne\n\n49) mneme: Move B3 Grogar Twoshort\n\n50) TwoShort: Attack B3 Twoshort\n\n51) mneme: Move B1 Grogar Twoshort\nCatastrophe Twoshort B\n\n52) TwoShort: Sacrifice G2 Yolonda\nBuild R2 Yolonda\nBuild R3 Yoyodyne\n\n53) mneme: Trade G3 R3 Mneme\n\n54) TwoShort: Sacrifice Y3 Twoshort\nMove R3 Yoyodyne Mneme\nMove R1 Yoyodyne Mneme\nMove B3 Yolonda Twoshort\nCatastrophe Mneme Red\n\n55) mneme: Build R1 Grogar\n\n56) TwoShort: Move R2 Yolonda Twoshort\n\n57) mneme: Sacrifice Y3 Hunter\nMove R1 Grogar Twoshort\nMove R1 Grogar Twoshort\nDiscover R2 Grogar Y1 Victorydance\nCatastrophe Twoshort R\n\n\tTwoShort: Excellent game, thank you!\n\tmneme: Hey, that's the first time I've beaten you in -how- many games? Still, it's good trivia to keep in mind (and check with AndyLooney on whether it's intentional), as I've certainly been in positions where it would be useful in the past.\n\nHomeworlds Online (SDG# 19416)\nVariants: "Hard time"\nStarted: 2011.3.16, Ended: 2011.7.25\nParticipants: fnord (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) fnord: Homeworld B3 Y2 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) fnord: Build G1 Fnord\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) fnord: Discover G1 Fnord B1 Eris\n\n7) ts52: Build G1 Ts52\n\n8) fnord: Build G1 Eris\n\n9) ts52: Build G2 Ts52\n\n10) fnord: Build G2 Eris\n\n11) ts52: D G2 Ts52 B3 Grover\n\n12) fnord: Trade G2 R2 Eris\n\n13) ts52: Trade G1 R1 Ts52\n\n14) fnord: Build G1 Fnord\n\n15) ts52: Build G2 Grover\n\n16) fnord: Trade G1 Y1 Eris\n\n17) ts52: Trade G2 Y2 Grover\n\n18) fnord: Build R1 Eris\n\n19) ts52: Build R1 Ts52\n\n20) fnord: Build Y2 Eris\n\n21) ts52: Build Y3 Grover\n\n22) fnord: Trade Y2 G2 Eris\n\n23) ts52: Discover Y2 Grover G1 Robin\n\n24) fnord: Sacrifice Y1 Eris\nMove R2 Eris Fnord\n\n25) ts52: Build G2 Grover\n\n26) fnord: Trade G1 Y1 Fnord\n\n27) ts52: Build Y2 Robin\n\n28) fnord: Build R2 Fnord\n\n29) ts52: M Y3 Grover Eris\n\n30) fnord: Sacrifice G2 Eris\nBuild R2 Eris\nBuild R3 Eris\n\n31) ts52: Sacrifice R1 Ts52\nAttack R3 Eris\n\n32) fnord: Build R1 Eris\nCatastrophe Eris Red\n\n33) ts52: Trade Y3 R3 Eris\n\n34) fnord: Sacrifice Y1 Fnord\nDiscover G1 Eris B3 Discordia\n\n35) ts52: Move Y1 Ts52 Grover\n\n36) fnord: Build G1 Discordia\n\n37) ts52: Trade G2 R2 Grover\n\n38) fnord: Trade G1 Y1 Discordia\n\n39) ts52: Build Y3 Grover\n\n40) fnord: Build Y3 Discordia\n\n41) ts52: Trade Y3 G3 Grover\n\n42) fnord: Build G1 Discordia\n\n43) ts52: Build Y3 Grover\n\n44) fnord: Trade Y3 R3 Discordia\n\n45) ts52: Build Y3 Grover\n\n46) fnord: Build Y3 Discordia\n\n47) ts52: Move Y3 Grover Eris\n\n48) fnord: Build R1 Discordia\n\n49) ts52: Sacrifice G2 Grover\nBuild R1 Eris\nBuild R3 Grover\n\n50) fnord: Sacrifice Y1 Discordia\nMove R3 Discordia Robin\n\n51) ts52: Sacrifice Y2 Robin\nMove Y2 Robin Grover\nDiscover R3 Grover B1 Gonzo\n\n52) fnord: Trade G1 B1 Discordia\n\n53) ts52: Move Y2 Grover Gonzo\n\n54) fnord: Build B2 Discordia\n\n55) ts52: Sacrifice G3 Grover\nBuild Y1 Gonzo\nBuild Y2 Eris\nBuild G1 Ts52\n\n56) fnord: Build G2 Discordia\n\n57) ts52: Sacrifice Y3 Grover\nMove Y2 Eris Discordia\nMove Y1 Gonzo Discordia\nMove Y2 Gonzo Discordia\nCatastrophe Discordia Yellow\n\n58) fnord: Trade G1 Y1 Discordia\n\n59) ts52: Move G1 Ts52 Grover\n\n60) fnord: Build Y2 Discordia\n\n61) ts52: M R3 Eris Discordia\n\n62) fnord: Build B2 Discordia\nCatastrophe Discordia B\n\tfnord: Wait, what? The system message says you moved an R3 from eris to discordia. How did you do that?\n\tts52: I have yellow in discordia, and discordia is small and eris is large, so they're connected\n\tfnord: I know they're connected. I thought that either the ship had to be Yellow or the origin system had to be Yellow in order to move. I didn't know it worked if you just had a Yellow ship in your destination system.\n\tfnord: Oh, good grief, have I been playing that wrong all this time? I just re-read the rules, and you can use the power of any color you have in the system. So, as long as you have a Yellow ship in a system, *any* piece can move from that system to another one. Not that it will help me now, but it's good to know.\n\tts52: That's correct. Any of your ships in a system can use any of your ships colors (in that system) or the system color(s)\n\n63) ts52: Move G1 Grover Eris\n\n64) fnord: Build G1 Fnord\n\n65) ts52: Build G2 Ts52\n\n66) fnord: Move G1 Fnord Robin\n\n67) ts52: B G2 Eris\n\n68) fnord: Build R1 Robin\n\n69) ts52: Build R3 Eris\n\n70) fnord: Trade R2 Y2 Fnord\n\n71) ts52: Move G2 Eris Grover\n\n72) fnord: Build R2 Fnord\n\n73) ts52: Sacrifice G3 Ts52\nBuild G2 Eris\nBuild G3 Grover\nBuild G3 Ts52\n\n74) fnord: Trade R2 B2 Fnord\n\n75) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild R2 Gonzo\nBuild Y1 Eris\n\n76) fnord: Move B2 Fnord Robin\n\n77) ts52: Build Y2 Grover\n\n78) fnord: Trade R3 Y3 Robin\n\n79) ts52: Move Y1 Grover Gonzo\n\n80) fnord: Build B1 Robin\n\n81) ts52: Sacrifice Y2 Grover\nMove Y1 Gonzo Fnord\nMove Y1 Eris Fnord\nCatastrophe Fnord Yellow\n\n82) fnord: Build Y1 Robin\n\n83) ts52: Sacrifice Y3 Eris\nMove G2 Grover Robin\nMove G1 Eris Grover\nMove G1 Grover Robin\nCatastrophe Robin Green\n\n84) fnord: Build R1 Fnord\n\n85) ts52: Trade R2 Y2 Grover\n\n86) fnord: Trade R2 Y2 Fnord\n\n87) ts52: Build Y1 Grover\n\n88) fnord: Build R2 Fnord\n\n89) ts52: Sacrifice Y2 Grover\nMove R1 Eris Fnord\nMove R2 Gonzo Fnord\nCatastrophe Fnord Red\n\n90) fnord: Build G1 Fnord\n\n91) ts52: Sacrifice Y1 Grover\nMove R3 Eris Fnord\n\n92) fnord: Discover G3 Fnord B2 Sink\n\n93) ts52: Sacrifice R3 Gonzo\nAttack G1 Fnord\nAttack Y2 Fnord\nPass\n\tts52: Thanks for the game.\n\tfnord: Thank you, as well.\n\n\nHomeworlds Online (SDG# 19425)\nVariants: "Hard time"\nStarted: 2011.3.17, Ended: 2011.3.30\nParticipants: ajo (S), Aristos (N)\nWinner: ajo\n\n1) Aristos: Homeworld B1 Y2 G3\n\n2) ajo: Homeworld B3 R2 G3\n\n3) Aristos: Build G1 Aristos\n\n4) ajo: Build G1 Ajo\n\n5) Aristos: Trade G3 R3 Aristos\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) Aristos: Build R1 Aristos\n\n8) ajo: Build Y1 Ajo\n\n9) Aristos: Build R1 Aristos\n\n10) ajo: Trade Y1 R1 Ajo\n\n11) Aristos: Discover R1 Aristos Y3 Banana\n\n12) ajo: Build R2 Ajo\n\n13) Aristos: Discover R1 Banana Y1 Lemon\n\n14) ajo: Trade R1 G1 Ajo\n\n15) Aristos: Build G2 Aristos\n\n16) ajo: Build G2 Ajo\n\n17) Aristos: Sacrifice G2 Aristos\nBuild G2 Aristos\nBuild R1 Lemon\n\n18) ajo: Move G2 Ajo Lemon\n\n19) Aristos: Move R1 Lemon Ajo\n\n20) ajo: Sacrifice R2 Ajo\nAttack R1N Ajo\nAttack R1N Lemon\n\tajo: Ooh, I think that was a mistake...\n\n21) Aristos: Discover R1 Aristos G3 Lime\n\n22) ajo: Build R2 Lemon\n\n23) Aristos: Build R2 Lime\n\n24) ajo: Build R3 Ajo\n\n25) Aristos: Build R3 Aristos\n\n26) ajo: Discover R3 Ajo B1 Alpha\n\n27) Aristos: Trade G1 Y1 Aristos\n\n28) ajo: Trade R3 Y3 Alpha\n\n29) Aristos: Move Y1 Aristos Lime\n\n30) ajo: Build R3 Ajo\n\n31) Aristos: Build Y1 Lime\n\n32) ajo: Trade R3 B3 Ajo\n\n33) Aristos: Build Y2 Lime\n\n34) ajo: Discover R1 Lemon Y3 Schoolbus\n\n35) Aristos: Move R3 Aristos Schoolbus\n\n36) ajo: Sacrifice G2 Lemon\nBuild R3 Lemon\nBuild Y2 Alpha\n\n37) Aristos: Sacrifice Y2 Lime\nMove Y1 Lime Alpha\nMove Y1 Lime Alpha\nCatastrophe Alpha Yellow\n\n38) ajo: Move R3 Lemon Lime\n\n39) Aristos: Sacrifice R2 Lime\nAttack R1 Schoolbus\nPass\n\n40) ajo: Attack R1N Lime\n\n41) Aristos: Build R2 Aristos\n\n42) ajo: Sacrifice Y3 Ajo\nMove R2 Lemon Lime\nMove R2 Lime Aristos\nMove R1 Lime Aristos\nCatastrophe Aristos Red\n\n43) Aristos: Build G1 Aristos\n\n44) ajo: Trade G1 Y1 Ajo\n\n45) Aristos: Move R3 Schoolbus Aristos\n\n46) ajo: Build Y1 Ajo\n\n47) Aristos: Trade G2 Y2 Aristos\n\n48) ajo: Build B1 Ajo\n\n49) Aristos: Build R1 Aristos\n\n50) ajo: Build R2 Lime\n\n51) Aristos: Build G1 Aristos\n\n52) ajo: Build G2 Ajo\n\n53) Aristos: Build G2 Aristos\n\n54) ajo: Sacrifice B1 Ajo\nTrade R3 B3 Lime\n\n55) Aristos: Build Y1 Aristos\n\n56) ajo: Sacrifice G2 Ajo\nBuild Y2 Ajo\nBuild R2 Lime\n\n57) Aristos: Discover R1 Aristos G3 Kiwi\n\n58) ajo: Discover Y1 Ajo B1 Alpha\n\n59) Aristos: Move Y1 Aristos Kiwi\n\n60) ajo: Sacrifice Y1 Ajo\nMove Y1 Alpha Lime\n\n61) Aristos: Sacrifice G2 Aristos\nBuild R3 Kiwi\nBuild R3 Schoolbus\n\n62) ajo: Build G2 Ajo\n\n63) Aristos: Build G2 Aristos\n\n64) ajo: Sacrifice G2 Ajo\nBuild Y1 Lime\nBuild Y3 Ajo\n\n65) Aristos: Sacrifice Y2 Aristos\nMove G1 Aristos Lime\nMove G1 Aristos Lime\n\n66) ajo: Sacrifice Y3 Ajo\nMove Y1 Lime Aristos\nMove Y1 Lime Aristos\nDiscover B3 Lime B1 Alpha\n\tajo: Hmm, clever.\n\n67) Aristos: Sacrifice R3 Kiwi\nAttack Y1 Aristos\nAttack Y1 Aristos\nPass\n\n68) ajo: Build R3 Ajo\n\n69) Aristos: Build G2 Lime\nCatastrophe Lime Green\n\n70) ajo: Trade B3 G3 Alpha\n\n71) Aristos: Build Y2 Kiwi\n\n72) ajo: Move R1 Ajo Alpha\n\n73) Aristos: Build Y3 Kiwi\n\n74) ajo: Build Y3 Ajo\n\n75) Aristos: Sacrifice Y2 Kiwi\nDiscover R1 Kiwi G1 Pear\nDiscover Y1 Aristos G3 Watermelon\n\n76) ajo: Move R3 Ajo Pear\n\n77) Aristos: Build R2 Pear\n\n78) ajo: Build R2 Alpha\n\n79) Aristos: Build Y2 Watermelon\n\n80) ajo: Sacrifice Y2 Ajo\nMove R3 Pear Watermelon\nDiscover R1 Alpha B3 Beta\n\n81) Aristos: Sacrifice Y1 Watermelon\nDiscover Y2 Watermelon G2 Lime\n\n82) ajo: Build G1 Alpha\n\n83) Aristos: Build G2 Aristos\n\n84) ajo: Trade R1 Y1 Beta\n\n85) Aristos: Discover R1 Schoolbus B1 Plum\n\n86) ajo: Sacrifice G3 Alpha\nBuild G3 Alpha\nBuild Y2 Beta\nBuild B2 Ajo\n\n87) Aristos: Trade G2 B2 Aristos\n\n88) ajo: Sacrifice Y3 Ajo\nMove B2 Ajo Alpha\nMove Y1 Beta Aristos\nMove Y2 Beta Aristos\nCatastrophe Aristos Yellow\n\tajo: Bring it on!\n\n89) Aristos: Build B2 Aristos\n\tAristos: You first...\n\tajo: Okay.\n\n90) ajo: Trade B3 Y3 Ajo\n\n91) Aristos: Sacrifice Y1 Kiwi\nMove B2 Aristos Lime\n\n92) ajo: Sacrifice G3 Alpha\nBuild G2 Ajo\nBuild G3 Alpha\nBuild Y1 Ajo\n\n93) Aristos: Sacrifice Y3 Kiwi\nMove R1 Plum Ajo\nMove R1 Pear Ajo\nMove R2 Pear Ajo\nCatastrophe Ajo Red\n\n94) ajo: Sacrifice B2 Alpha\nTrade G1 B1 Alpha\nTrade R3 B3 Watermelon\n\n95) Aristos: Trade B2 Y2 Aristos\n\n96) ajo: Trade G2 B2 Ajo\n\n97) Aristos: Move B2 Lime Ajo\n\tajo: Check.\n\n98) ajo: Sacrifice R2 Alpha\nAttack B2N Ajo\nPass\n\n99) Aristos: Move Y2 Lime Ajo\n\tAristos: That's mate. Well done. \r\n\n\n100) ajo: Sacrifice Y3 Ajo\nMove B2 Ajo Aristos\nMove B2 Ajo Aristos\nMove B3 Watermelon Aristos\nCatastrophe Aristos Blue\n\tajo: Well, you didn't have to let me do that, you know. I imagine you missed that Alpha isn't adjacent to your homeworld. But still, I was feeling good about the game at this point. Well played.\n\n\tajo: What I said last time: Alpha wasn't adjacent to your homeworld. But since you gave me your blue ship last turn, I can end it now.\n\tAristos: DOH! Yep, I misread that.\n\nHomeworlds Online (SDG# 19426)\nStarted: 2011.3.18, Ended: 2011.3.24\nParticipants: ts52 (S), Daarck (N)\nWinner: ts52\n\n1) Daarck: Homeworld G1 Y2 B3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) Daarck: Build B1 Daarck\n\tts52: Have a good game!\n\tDaarck: Thank you! Hope you have one too.\n\n4) ts52: Build G1 Ts52\n\n5) Daarck: Build B1 Daarck\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Daarck: Trade B1 Y1 Daarck\n\n8) ts52: B G1 Ts52\n\n9) Daarck: Discover Y1 Daarck G3 Marco\n\n10) ts52: Discover B1 Ts52 G2 Kermit\n\n11) Daarck: Move B1 Daarck Marco\n\n12) ts52: Build G1 Ts52\n\n13) Daarck: Build Y1 Marco\n\n14) ts52: Discover G1 Ts52 B2 Grover\n\n15) Daarck: Build Y2 Marco\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n17) Daarck: Trade Y1 R1 Marco\n\tDaarck: Wow!\n\n18) ts52: Trade G2 R2 Grover\n\n19) Daarck: Build R1 Marco\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n21) Daarck: Move R1 Marco Daarck\n\n22) ts52: Trade G3 Y3 Grover\n\n23) Daarck: Move B1 Marco Daarck\n\n24) ts52: S G3 Ts52\nB G3 Ts52\nB G3 Grover\nB Y1 Grover\n\tDaarck: Hmmm...this sure doesn't seem to be looking good for me, does it?\n\n25) Daarck: Discover Y2 Marco Y2 Polo\n\n26) ts52: Move Y3 Grover Marco\n\tDaarck: Yup, not looking good at all.\n\n27) Daarck: Build Y3 Marco\n\n28) ts52: Sacrifice R2 Grover\nAttack Y3 Marco\nAttack R1 Marco\n\n29) Daarck: Sacrifice R1 Daarck\nAttack R1 Marco\n\n30) ts52: Trade G3 R3 Grover\n\n31) Daarck: Move R1 Marco Daarck\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild Y3 Grover\n\n33) Daarck: Move Y2 Polo Marco\nCatastrophe Marco Y\n\n34) ts52: Discover G3 Grover Y3 Bigbird\n\n35) Daarck: Trade B1 Y1 Daarck\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild R1 Grover\n\n37) Daarck: Build R1 Daarck\n\n38) ts52: Move R1 Grover Bigbird\n\n\tDaarck: At this point, with the monopoly you have on the green and my inability to move or create more yellows without you blowing me up, I think I need to concede.\r\n\r\nThank you so much. It was a great game. I learned a lot.\n\tts52: No problem. Happy to play. Thanks for the game!\n\nHomeworlds Online (SDG# 19460)\nVariants: "Hard time"\nStarted: 2011.3.21, Ended: 2011.3.24\nParticipants: alexcobo (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 19379)\nStarted: 2011.3.21, Ended: 2011.3.24\nParticipants: Remneb (S), dreskyn (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 19378)\nVariants: "Hard time"\nStarted: 2011.3.23, Ended: 2011.4.4\nParticipants: SilentTitan (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R2 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) ajo: Build G1 Ajo\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) ajo: Trade G3 Y3 Ajo\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) ajo: Build Y1 Ajo\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) ajo: Discover Y1 Ajo B1 Alpha\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) ajo: Build G1 Ajo\n\n12) SilentTitan: Build B2 Silenttitan\n\n13) ajo: Move G1 Ajo Alpha\n\n14) SilentTitan: Discover B2 Silenttitan G3 Glomar\n\n15) ajo: Build Y1 Ajo\n\n16) SilentTitan: Build B2 Glomar\n\n17) ajo: Build Y2 Alpha\n\n18) SilentTitan: Build B2 Glomar\n\n19) ajo: Trade Y2 R2 Alpha\n\n20) SilentTitan: Trade Y1 R1 Silenttitan\n\n21) ajo: Build Y1 Alpha\n\n22) SilentTitan: Build B3 Silenttitan\n\n23) ajo: Build Y2 Ajo\n\n24) SilentTitan: Trade B2 Y2 Glomar\n\n25) ajo: Trade Y2 B2 Ajo\n\n26) SilentTitan: Trade B3 Y3 Silenttitan\n\n27) ajo: Discover B2 Ajo G1 Beta\n\n28) SilentTitan: Discover B1 Silenttitan G3 Glory\n\n29) ajo: Build B3 Beta\n\n30) SilentTitan: Sacrifice Y2 Glomar\nMove B2 Glomar Beta\nMove B1 Glory Beta\nCatastrophe Beta Blue\n\n31) ajo: Build Y2 Alpha\n\n32) SilentTitan: Trade B2 Y2 Glomar\n\n33) ajo: Discover Y1 Alpha G3 Beta\n\n34) SilentTitan: Discover G3 Silenttitan Y3 Sol\n\n35) ajo: Build Y2 Beta\n\tajo: Voiding your homeworld of green? Hmm.\n\n36) SilentTitan: Build G1 Sol\n\n37) ajo: Build G2 Alpha\n\n38) SilentTitan: Move G1 Sol Silenttitan\n\n39) ajo: Build G2 Ajo\n\n40) SilentTitan: Build R1 Silenttitan\n\n41) ajo: Sacrifice Y2 Alpha\nMove R2 Alpha Beta\nMove R2 Beta Silenttitan\nCatastrophe Silenttitan Red\n\n42) SilentTitan: Sacrifice G3 Sol\nBuild Y2 Silenttitan\nBuild Y3 Glomar\nBuild G2 Silenttitan\n\n43) ajo: Trade Y3 R3 Ajo\n\n44) SilentTitan: Trade Y2 R2 Silenttitan\n\tajo: Hmm. That wouldn't have lost me the game immediately, but I guess I do have to think about it a bit more.\n\tSilentTitan: dang ... I did my turn as fast as possible \n\n45) ajo: Sacrifice G2 Alpha\nBuild Y2 Alpha\nBuild Y3 Ajo\n\tajo: There, that feels safer.\n\tajo: With my previous move, I assume you'd have catastrophed yellow, and then raced to move your y3 in before I could get a big ship back. I'd have countered by moving my g1 into your homeworld (threatening a green catastrophe if your y3 moved out), but I'd still probably have lost after a few more moves.\n\n46) SilentTitan: Build R1 Silenttitan\n\tSilentTitan: I agree with you. That was what I was aiming for. \n\n47) ajo: Trade Y1 B1 Alpha\n\n48) SilentTitan: Move Y3 Glomar Alpha\n\n49) ajo: Sacrifice Y2 Alpha\nDiscover B1 Alpha Y2 Gamma\nMove G1 Alpha Gamma\n\n50) SilentTitan: Move G1 Silenttitan Ajo\n\n51) ajo: Sacrifice G2 Ajo\nBuild B2 Gamma\nBuild B2 Gamma\n\n52) SilentTitan: Sacrifice Y3 Alpha\nMove Y2 Glomar Silenttitan\nMove Y2 Silenttitan Ajo\nMove Y3 Silenttitan Ajo\nCatastrophe Ajo Yellow\n\n53) ajo: Sacrifice Y2 Beta\nMove B1 Gamma Silenttitan\nMove B2 Gamma Silenttitan\n\tajo: Check.\n\n\tajo: Checkmate. Good game. :)\n\nHomeworlds Online (SDG# 19369)\nStarted: 2011.3.25, Ended: 2011.3.28\nParticipants: lorgar (S), TwoShort (N)\nWinner: lorgar\n\n\nHomeworlds Online (SDG# 19493)\nVariants: "Hard time"\nStarted: 2011.3.25, Ended: 2011.4.6\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) lorgar: Homeworld Y1 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Discover G1 Lorgar B3 Ana\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Build G1 Ana\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) lorgar: Build G1 Lorgar\n\n11) SilentTitan: Discover Y2 Silenttitan B1 Provo\n\n12) lorgar: Build G2 Ana\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Provo\nBuild Y2 Provo\nBuild Y3 Silenttitan\n\n14) lorgar: Discover G1 Lorgar Y3 Mordecaizone\n\n15) SilentTitan: Trade Y3 G3 Silenttitan\n\n16) lorgar: Trade G1 R1 Ana\n\n17) SilentTitan: Build Y3 Silenttitan\n\n18) lorgar: Build G1 Lorgar\n\n19) SilentTitan: Discover Y2 Provo G3 Zion\n\n20) lorgar: Trade G3 Y3 Lorgar\n\n21) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y2 Zion Lorgar\nMove Y2 Provo Ana\nMove Y2 Ana Lorgar\nCatastrophe Lorgar Yellow\n\n22) lorgar: Build G2 Lorgar\n\n23) SilentTitan: Trade Y2 G2 Provo\n\n24) lorgar: Trade G1 Y1 Lorgar\n\n25) SilentTitan: Build Y2 Silenttitan\n\n26) lorgar: Trade G2 Y2 Ana\n\n27) SilentTitan: Trade Y1 B1 Silenttitan\n\n28) lorgar: Build G1 Mordecaizone\n\n29) SilentTitan: Discover B1 Silenttitan Y1 Sol\n\n30) lorgar: Build Y2 Ana\n\n31) SilentTitan: Sacrifice G2 Provo\nBuild B1 Sol\nBuild B1 Sol\n\n32) lorgar: Move R1 Ana Sol\n\n33) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Sol Lorgar\nMove B1 Sol Lorgar\n\n34) lorgar: Sacrifice Y2 Ana\nDiscover G1 Mordecaizone R1 Lama\nDiscover G1 Mordecaizone R1 Lami\n\n35) SilentTitan: Move B1 Sol Lorgar\nCatastrophe Lorgar Blue\n\n\nHomeworlds Online (SDG# 19457)\nVariants: "Hard time"\nStarted: 2011.3.25, Ended: 2011.5.8\nParticipants: Jesse (S), lorgar (N)\nWinner: Jesse\n\n1) lorgar: Homeworld B2 Y3 G3\n\n2) Jesse: Homeworld B3 R1 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) Jesse: Build G1 Jesse\n\n5) lorgar: Discover G1 Lorgar B1 Mordenkey\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) lorgar: Build G1 Mordenkey\n\n8) Jesse: Build Y1 Jesse\n\n9) lorgar: Trade G1 Y1 Mordenkey\n\n10) Jesse: Trade Y1 R1 Jesse\n\n11) lorgar: Build G1 Lorgar\n\n12) Jesse: Build R1 Jesse\n\n13) lorgar: Build G1 Mordenkey\n\n14) Jesse: Build G2 Jesse\n\n15) lorgar: Build G2 Lorgar\n\n16) Jesse: Discover R1 Jesse B2 Grover\n\n17) lorgar: Trade G2 R2 Lorgar\n\n18) Jesse: Move G2 Jesse Grover\n\n19) lorgar: Discover G1 Mordenkey B2 Amandos\n\n20) Jesse: Build R2 Grover\n\n21) lorgar: Build G2 Amandos\n\n22) Jesse: Trade R2 Y2 Grover\n\n23) lorgar: Trade G2 R2 Amandos\n\n24) Jesse: Discover R1 Jesse Y2 Bert\n\n25) lorgar: Build Y1 Mordenkey\n\n26) Jesse: Build Y2 Grover\n\n27) lorgar: Sacrifice Y1 Mordenkey\nMove Y1 Mordenkey Amandos\nPass\n\n28) Jesse: Move Y2 Grover Mordenkey\n\n29) lorgar: Build G2 Amandos\n\n30) Jesse: Sacrifice R1 Grover\nAttack G1 Mordenkey\n\n31) lorgar: Discover G2 Amandos G3 Lannaman\n\n32) Jesse: Build G2 Jesse\n\n33) lorgar: Trade G1 R1 Lorgar\n\n34) Jesse: Sacrifice G3 Jesse\nBuild G1 Mordenkey\nBuild Y1 Mordenkey\nBuild G3 Jesse\n\n35) lorgar: Sacrifice G2 Lannaman\nBuild G2 Lorgar\nBuild G3 Amandos\n\n36) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y3 Jesse\nBuild Y3 Grover\n\n37) lorgar: Trade G3 B3 Lorgar\n\n38) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild G3 Grover\nBuild R2 Bert\n\n39) lorgar: Sacrifice G3 Amandos\nBuild G3 Amandos\nBuild R3 Amandos\nPass\n\n40) Jesse: Move R1 Bert Mordenkey\n\n41) lorgar: Move R3 Amandos Mordenkey\n\n42) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R3 Mordenkey\nBuild R3 Bert\n\n43) lorgar: Move R1 Lorgar Mordenkey\nCatastrophe Mordenkey Red\n\n44) Jesse: Sacrifice Y3 Grover\nMove G1 Mordenkey Amandos\nMove G1 Mordenkey Amandos\nMove Y3 Jesse Amandos\nCatastrophe Amandos G\n\n45) lorgar: Sacrifice Y1 Amandos\nDiscover R2 Amandos G1 Istari\n\n46) Jesse: Sacrifice G2 Grover\nBuild Y1 Grover\nBuild Y3 Mordenkey\n\n47) lorgar: Trade B3 G3 Lorgar\n\n48) Jesse: Move Y3 Amandos Istari\n\n49) lorgar: Build R1 Lorgar\n\n50) Jesse: Build G1 Grover\n\n51) lorgar: Trade R1 B1 Lorgar\n\n52) Jesse: Trade G1 B1 Grover\n\n53) lorgar: Discover B1 Lorgar G1 Croft\n\n54) Jesse: Sacrifice G3 Jesse\nBuild G1 Grover\nBuild G2 Jesse\nBuild G3 Grover\n\n55) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B2 Croft\nBuild B3 Croft\n\n56) Jesse: Sacrifice Y3 Mordenkey\nMove G1 Grover Mordenkey\nDiscover G3 Grover Y3 Bigbird\nMove B1 Grover Croft\nCatastrophe Croft B\n\n57) lorgar: Build R1 Istari\n\tlorgar: no, definitely I've lost initiative a loooong time ago...\n\n58) Jesse: Sacrifice R2 Bert\nAttack R1 Istari\nAttack R2 Istari\n\tJesse: When you pushed your R3 to Mordenkey, that was a god move that threatened to put me on the defensive. Instead of pushing another red into the system and causing a catastrophe, a better move would have been to sacrifice an R2 to capture my R3 and Y2, leaving me with only smalls in that system and forcing me to use *my* turn to blow the reds. As it was, using your turn to blow the reds gave me the opportunity to attack and squeeze out your only remaining yellow ship, leaving you crippled.\n\n59) lorgar: Discover G2 Lorgar B1 Tor\n\n60) Jesse: Sacrifice G3 Bigbird\nBuild G1 Mordenkey\nBuild G3 Mordenkey\nBuild Y3 Mordenkey\n\n61) lorgar: Move G3 Lorgar Mordenkey\nCatastrophe Mordenkey Green\n\n62) Jesse: Move Y3 Mordenkey Lorgar\n\n63) lorgar: Build G1 Tor\n\n64) Jesse: Sacrifice R1 Istari\nAttack R2 Lorgar\n\n\tlorgar: thanks for the game\n\tJesse: Likewise.\n\nHomeworlds Online (SDG# 19380)\nStarted: 2011.3.26, Ended: 2011.5.2\nParticipants: ducttapeDj (S), mathochist (N)\nWinner: ducttapeDj\n\n\nHomeworlds Online (SDG# 19509)\nVariants: "Hard time"\nStarted: 2011.3.27, Ended: 2011.4.19\nParticipants: SilentTitan (S), Uglyfoot (N)\nWinner: SilentTitan\n\n1) Uglyfoot: Homeworld B3 Y1 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\tUglyfoot: have a good game.\n\n3) Uglyfoot: Build G1 Uglyfoot\n\tSilentTitan: you too\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Uglyfoot: Trade G1 R1 Uglyfoot\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) Uglyfoot: Discover G1 Uglyfoot Y2 Colony\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) Uglyfoot: Build G1 Uglyfoot\n\n12) SilentTitan: Discover Y2 Silenttitan G1 Valley\n\n13) Uglyfoot: Build G2 Colony\n\n14) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Valley\nBuild Y3 Valley\nBuild Y3 Silenttitan\n\n15) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Colony\nBuild G2 Uglyfoot\nBuild G3 Uglyfoot\n\n16) SilentTitan: Trade Y3 G3 Silenttitan\n\n17) Uglyfoot: Discover G2 Colony B1 Outpost\n\n18) SilentTitan: Build G3 Silenttitan\n\n19) Uglyfoot: Trade G2 R2 Outpost\n\n20) SilentTitan: Build Y3 Silenttitan\n\n21) Uglyfoot: Trade G3 Y3 Uglyfoot\n\n22) SilentTitan: Sacrifice Y3 Silenttitan\nDiscover Y2 Valley B2 Rare\nDiscover Y3 Valley R2 Burst\nDiscover G3 Silenttitan B1 Sync\n\n23) Uglyfoot: Build G2 Colony\n\n24) SilentTitan: Sacrifice Y1 Silenttitan\nMove G3 Sync Colony\nCatastrophe Colony Green\n\n25) Uglyfoot: Discover G2 Uglyfoot Y2 Nexus\n\n26) SilentTitan: Trade Y2 R2 Rare\n\n27) Uglyfoot: Build G1 Nexus\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Burst\nBuild Y2 Burst\nBuild Y3 Silenttitan\n\n29) Uglyfoot: Trade Y3 G3 Uglyfoot\n\n30) SilentTitan: Build Y3 Valley\n\n31) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G2 Uglyfoot\nBuild G2 Nexus\nBuild G3 Uglyfoot\n\n32) SilentTitan: Trade Y3 G3 Silenttitan\n\n33) Uglyfoot: Discover G2 Uglyfoot B2 Themall\n\n34) SilentTitan: Build Y3 Silenttitan\n\n35) Uglyfoot: Sacrifice G3 Uglyfoot\nBuild G3 Uglyfoot\nBuild G3 Themall\nBuild R1 Outpost\n\n36) SilentTitan: Move Y3 Valley Nexus\n\n\nHomeworlds Online (SDG# 19527)\nVariants: "Hard time"\nStarted: 2011.3.28, Ended: 2011.4.13\nParticipants: sompm (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld B3 Y1 G3\n\n2) sompm: Homeworld G3 B2 Y3\n\n3) Subhan64: Build G1 Subhan64\n\n4) sompm: Build Y1 Sompm\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) sompm: Build Y2 Sompm\n\n7) Subhan64: Build Y2 Subhan64\n\n\nHomeworlds Online (SDG# 19534)\nVariants: "Hard time"\nStarted: 2011.3.29, Ended: 2011.5.6\nParticipants: Uglyfoot (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) Uglyfoot: Homeworld B3 R1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\n10) Uglyfoot: Build Y2 Uglyfoot\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) Uglyfoot: Discover Y2 Uglyfoot G2 Second\n\n13) SilentTitan: Discover G1 Sol Y3 Sunstrike\n\n14) Uglyfoot: Build Y1 Second\n\n15) SilentTitan: Discover Y1 Silenttitan G1 Moonflow\n\n16) Uglyfoot: Discover Y2 Second B1 Third\n\n17) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Moonflow\nBuild Y3 Moonflow\nBuild Y3 Silenttitan\n\n18) Uglyfoot: Move Y1 Second Moonflow\nCatastrophe Moonflow Y\n\n19) SilentTitan: Trade Y3 G3 Silenttitan\n\n20) Uglyfoot: Discover G1 Uglyfoot Y2 Nexus\n\n21) SilentTitan: Build G1 Sunstrike\n\n22) Uglyfoot: Build G2 Uglyfoot\n\n23) SilentTitan: Discover G1 Sunstrike B2 West\n\n24) Uglyfoot: Build G2 Nexus\n\n25) SilentTitan: Build G2 West\n\n26) Uglyfoot: Trade G2 R2 Uglyfoot\n\n27) SilentTitan: Trade G2 R2 West\n\n28) Uglyfoot: Build G2 Uglyfoot\n\n29) SilentTitan: Build G2 Silenttitan\n\n30) Uglyfoot: Move G3 Uglyfoot West\n\n31) SilentTitan: Sacrifice G2 Silenttitan\nBuild G2 West\nBuild G3 West\nCatastrophe West Green\n\n32) Uglyfoot: Build G1 Uglyfoot\n\n33) SilentTitan: Build G2 Silenttitan\n\n34) Uglyfoot: Build G3 Uglyfoot\n\n35) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Sunstrike Nexus\nMove G1 Nexus Uglyfoot\nCatastrophe Uglyfoot Green\n\n36) Uglyfoot: Move G1 Nexus Third\n\n37) SilentTitan: Trade G2 Y2 Silenttitan\n\n38) Uglyfoot: Trade R2 G2 Uglyfoot\n\n39) SilentTitan: Sacrifice Y2 Silenttitan\nMove R2 West Third\nPass\n\n40) Uglyfoot: Move G1 Third Silenttitan\n\n41) SilentTitan: Attack G1 Silenttitan South\n\n42) Uglyfoot: Move Y2 Third Nexus\n\n43) SilentTitan: Trade G1 Y1 Silenttitan\n\n44) Uglyfoot: Discover G2 Nexus B1 Fourth\n\n45) SilentTitan: Trade R2 Y2 Third\n\n46) Uglyfoot: Build Y1 Uglyfoot\n\n47) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Third\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n48) Uglyfoot: Move Y2 Nexus Fourth\n\n49) SilentTitan: Trade Y3 R3 Silenttitan\n\n50) Uglyfoot: Build Y2 Fourth\n\n51) SilentTitan: Trade Y3 G3 Silenttitan\n\n52) Uglyfoot: Discover Y2 Fourth B2 Fifth\n\n53) SilentTitan: Move R3 Silenttitan Fourth\n\n54) Uglyfoot: Sacrifice G2 Fourth\nBuild Y3 Fifth\nBuild Y3 Fifth\n\n55) SilentTitan: Sacrifice Y3 Third\nMove Y2 Third Fifth\nMove R3 Fourth Fifth\nMove R3 Fifth Uglyfoot\nCatastrophe Fifth Yellow\n\n\nHomeworlds Online (SDG# 19508)\nStarted: 2011.3.29, Ended: 2011.4.15\nParticipants: lorgar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) lorgar: Homeworld B3 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\tlorgar: thanks for the game, it is always a pleasure to learn from you.\n\n4) lorgar: Build G1 Lorgar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) lorgar: Discover G1 Lorgar B1 Bridge\n\n7) TwoShort: Build G1 Twoshort\n\n8) lorgar: Build G1 Lorgar\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) lorgar: Trade G1 R1 Lorgar\n\n11) TwoShort: Build Y1 Twoshort\n\n12) lorgar: Build G1 Bridge\n\n13) TwoShort: Build G2 Twoshort\n\n14) lorgar: Trade G1 Y1 Bridge\n\n15) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n16) lorgar: Build G1 Bridge\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\n\n18) lorgar: Trade G1 R1 Bridge\n\n19) TwoShort: Discover G1 Yolonda Y3 Yellonia\n\n20) lorgar: Move R1 Bridge Grogar\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Twoshort\nBuild Y3 Grogar\nBuild Y3 Twoshort\n\n22) lorgar: Move G1 Bridge Grogar\n\n23) TwoShort: Trade Y2 R2 Twoshort\n\n24) lorgar: Trade Y1 G1 Bridge\n\n25) TwoShort: Sacrifice G3 Yolonda\nBuild G3 Yellonia\nBuild G3 Twoshort\nBuild Y1 Twoshort\n\n26) lorgar: Build R2 Lorgar\n\n27) TwoShort: Sacrifice R2 Twoshort\nAttack R1 Grogar\nAttack G1 Grogar\n\n28) lorgar: Trade R2 Y2 Lorgar\n\n29) TwoShort: Sacrifice G2 Twoshort\nBuild R2 Grogar\nBuild Y2 Grogar\n\n30) lorgar: Move Y2 Lorgar Bridge\n\n31) TwoShort: Move Y3 Grogar Bridge\n\n32) lorgar: Build G2 Lorgar\n\n33) TwoShort: Sacrifice R2 Grogar\nAttack Y2 Bridge\nAttack G1 Bridge\n\n34) lorgar: Build R2 Lorgar\n\n35) TwoShort: Trade Y3 R3 Twoshort\n\n36) lorgar: Discover R1 Lorgar B1 Mo\n\n37) TwoShort: Sacrifice G3 Yellonia\nBuild G3 Bridge\nBuild Y3 Bridge\nBuild R2 Grogar\n\n38) lorgar: Sacrifice G3 Lorgar\nBuild R2 Mo\nBuild R3 Lorgar\nBuild G3 Lorgar\n\n39) TwoShort: Sacrifice G1 Yellonia\nBuild Y3 Twoshort\n\n40) lorgar: Trade R2 B2 Lorgar\n\n41) TwoShort: Sacrifice Y3 Twoshort\nMove R2 Grogar Mo\nMove R1 Grogar Mo\nMove G3 Bridge Lorgar\nCatastrophe Mo Red\n\tlorgar: What is the lesson?\n\n42) lorgar: Build G1 Lorgar\nCatastrophe Lorgar Green\n\tTwoShort: Concentrate on growing in the early game. Always be in position to grow, particularly green and yellow. It's a big advantage to have the only usable green factory ; It's also a big advantage to have most of the big yellow.\n\n43) TwoShort: Trade Y3 B3 Bridge\n\n44) lorgar: Trade R3 G3 Lorgar\n\n45) TwoShort: Sacrifice Y3 Bridge\nMove G1 Bridge Lorgar\nMove Y2 Bridge Lorgar\nMove B3 Bridge Lorgar\n\n46) lorgar: Build B1 Lorgar\nCatastrophe Lorgar Blue\n\n47) TwoShort: Sacrifice Y2 Lorgar\nMove G3 Twoshort Lorgar\nMove G2 Twoshort Lorgar\nCatastrophe Lorgar Green\n\n\tlorgar: thanks for the game\n\nHomeworlds Online (SDG# 19498)\nStarted: 2011.3.31, Ended: 2011.4.6\nParticipants: apollodude217 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\tapollodude217: homeworld y1 b2 g3\n\tapollodude217: sry I'm new; do I type in commands here???\n\tts52: nope, commands go up top. but the box isn't there yet, because it's my turn. :)\n\n\nHomeworlds Online (SDG# 19567)\nStarted: 2011.4.1, Ended: 2011.4.6\nParticipants: ts52 (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y3 G3\n\tlorgar: No one expects the spanish Inquisition!\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) lorgar: Build G1 Lorgar\n\tts52: Hehe. Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Discover G1 Lorgar B1 Atmazone\n\n6) ts52: Trade G1 B1 Ts52\n\n7) lorgar: Build G1 Lorgar\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) lorgar: Build G1 Atmazone\n\n10) ts52: Build G2 Ts52\n\n11) lorgar: Trade G1 Y1 Atmazone\n\n12) ts52: Build B2 Kermit\n\n13) lorgar: Trade G1 R1 Lorgar\n\n14) ts52: Trade B2 R2 Kermit\n\n15) lorgar: Build Y1 Atmazone\n\n16) ts52: Build B2 Kermit\n\n17) lorgar: Discover G1 Atmazone B3 Amarante\n\n18) ts52: Trade B2 Y2 Kermit\n\n19) lorgar: Trade Y1 G1 Atmazone\n\n20) ts52: Build B2 Kermit\n\n21) lorgar: Discover G1 Atmazone B3 Adamante\n\n22) ts52: Discover B2 Kermit G2 Oscar\n\n23) lorgar: Discover Y1 Atmazone B3 Mermoz\n\n24) ts52: Build Y1 Kermit\n\n25) lorgar: Build G1 Amarante\n\n26) ts52: Discover G2 Ts52 Y3 Bigbirg\n\n27) lorgar: Trade G3 Y3 Lorgar\n\n28) ts52: Move Y1 Kermit Oscar\n\n29) lorgar: Sacrifice Y3 Lorgar\nMove G1 Adamante Ts52\nMove G1 Amarante Ts52\nMove G1 Amarante Ts52\nCatastrophe Ts52 Green\n\tts52: Wow. Well done sir. Not sure how I missed that.\n\tlorgar: I could not tink of it before it was almost done. Just wanted to annoy you with these three pips stars^^\n\tts52: And annoy me you did. :)\n\n\nHomeworlds Online (SDG# 19578)\nStarted: 2011.4.5, Ended: 2011.4.8\nParticipants: mathochist (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B1 G3\n\n\nHomeworlds Online (SDG# 19605)\nStarted: 2011.4.8, Ended: 2011.4.15\nParticipants: ts52 (S), lorgar (N)\nWinner: ts52\n\n1) lorgar: Homeworld B1 Y2 G3\n\tlorgar: Are you Mary, queen of scots?\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: No, but there's a penguin on my television.\n\n3) lorgar: Build G1 Lorgar\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) ts52: Trade G1 B1 Ts52\n\n7) lorgar: Discover B1 Lorgar G3 Omegacloud\n\n8) ts52: Discover B1 Ts52 G1 Robin\n\n9) lorgar: Build G1 Lorgar\n\n10) ts52: Build B2 Robin\n\n11) lorgar: Trade G1 Y1 Lorgar\n\n12) ts52: Build G1 Ts52\n\n13) lorgar: Build G1 Lorgar\n\n14) ts52: Build G2 Ts52\n\n15) lorgar: Trade G3 Y3 Lorgar\n\n16) ts52: Trade G2 R2 Ts52\n\n17) lorgar: Trade Y3 R3 Lorgar\n\n18) ts52: Build G2 Ts52\n\n19) lorgar: Trade R3 G3 Lorgar\n\n20) ts52: T G2 Y2 Ts52\n\n21) lorgar: Build G2 Lorgar\n\n22) ts52: Move Y2 Ts52 Robin\n\n23) lorgar: Build B2 Omegacloud\n\n24) ts52: Move G1 Ts52 Robin\n\n25) lorgar: Trade B1 Y1 Omegacloud\n\n26) ts52: Sacrifice Y2 Robin\nMove G1 Robin Omegacloud\nMove G1 Omegacloud Lorgar\nCatastrophe Lorgar Green\n\n27) lorgar: Trade Y1 G1 Lorgar\n\n28) ts52: Trade B1 Y1 Robin\n\tlorgar: XD\r\ntouché!\n\n29) lorgar: Build B1 Omegacloud\n\n30) ts52: Move R2 Ts52 Robin\n\n31) lorgar: Trade B2 R2 Omegacloud\n\n32) ts52: Discover R2 Robin Y3 Bigbird\n\n33) lorgar: Build B1 Omegacloud\n\n34) ts52: Move R2 Bigbird Lorgar\n\n\tlorgar: ok, I surrender.\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 19520)\nVariants: "Hard time"\nStarted: 2011.4.10, Ended: 2011.5.21\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Discover G1 Lorgar B2 Titania\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) lorgar: Build G1 Titania\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) lorgar: Trade G1 Y1 Titania\n\n11) SilentTitan: Discover Y1 Silenttitan G1 Icebergia\n\n12) lorgar: Build Y2 Titania\n\n13) SilentTitan: Build Y2 Icebergia\n\n14) lorgar: Trade Y1 R1 Titania\n\n15) SilentTitan: Trade G1 R1 Silenttitan\n\n16) lorgar: Build G1 Lorgar\n\n17) SilentTitan: Build Y1 Silenttitan\n\n18) lorgar: Build G2 Titania\n\n19) SilentTitan: Discover Y2 Icebergia R2 Rain\n\n20) lorgar: Discover G1 Titania Y3 Amandos\n\n21) SilentTitan: Discover Y1 Icebergia G2 Paper\n\n22) lorgar: Discover Y2 Titania B1 Stone\n\n23) SilentTitan: Trade Y1 B1 Silenttitan\n\n24) lorgar: Build R1 Titania\n\n25) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Paper\nBuild Y2 Rain\nBuild Y3 Silenttitan\n\n26) lorgar: Sacrifice G1 Amandos\nBuild Y3 Stone\n\n27) SilentTitan: Trade Y3 G3 Silenttitan\n\n28) lorgar: Build G1 Titania\n\n29) SilentTitan: Sacrifice Y2 Rain\nMove Y1 Paper Stone\nMove Y1 Silenttitan Stone\nCatastrophe Stone Yellow\n\n30) lorgar: Trade G2 Y2 Titania\n\n31) SilentTitan: Trade B1 Y1 Silenttitan\n\n32) lorgar: Move R1 Titania Lorgar\n\n33) SilentTitan: Discover R1 Silenttitan G1 Glow\n\n34) lorgar: Build G2 Titania\n\n35) SilentTitan: Build Y1 Paper\n\n36) lorgar: Sacrifice G3 Lorgar\nBuild G2 Lorgar\nBuild G3 Titania\nBuild G3 Lorgar\n\n37) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Rain\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n38) lorgar: Discover G2 Titania G3 Triforce\n\n39) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Paper Lorgar\nMove Y1 Paper Lorgar\nMove R1 Glow Silenttitan\n\n40) lorgar: Build R2 Lorgar\n\n41) SilentTitan: Trade Y1 G1 Lorgar\nCatastrophe Lorgar Green\n\n42) lorgar: Attack Y1N Lorgar\n\n43) SilentTitan: Trade Y3 G3 Silenttitan\n\n44) lorgar: Sacrifice Y1 Lorgar\nMove G3 Titania Lorgar\n\n45) SilentTitan: Discover R1 Silenttitan G1 Hail\n\n46) lorgar: Trade R1 G1 Lorgar\n\n47) SilentTitan: Move Y2 Rain Hail\n\n48) lorgar: Sacrifice G3 Lorgar\nBuild G2 Titania\nBuild G2 Titania\nBuild G3 Lorgar\n\n49) SilentTitan: Build Y1 Hail\n\n50) lorgar: Sacrifice Y2 Titania\nMove G2 Titania Hail\nMove G2 Titania Hail\n\n51) SilentTitan: Sacrifice Y2 Hail\nDiscover R1 Hail Y2 Funtime\nDiscover Y1 Hail Y2 Snow\n\n52) lorgar: Sacrifice G2 Triforce\nBuild G2 Titania\nBuild G3 Titania\n\n53) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Rain\nBuild Y3 Rain\nBuild Y3 Silenttitan\n\n54) lorgar: Sacrifice G2 Titania\nBuild G2 Lorgar\nBuild G3 Titania\n\n55) SilentTitan: Trade Y1 B1 Silenttitan\n\n\nHomeworlds Online (SDG# 19628)\nVariants: "Hard time"\nStarted: 2011.4.13, Ended: 2011.4.19\nParticipants: ajo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) ajo: Homeworld Y2 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) ajo: Build G1 Ajo\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) ajo: Trade G1 B1 Ajo\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) ajo: Build B1 Ajo\n\n9) SilentTitan: Discover Y1 Silenttitan Y1 Sol\n\n10) ajo: Discover B1 Ajo G3 Alpha\n\n11) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n12) ajo: Build B2 Alpha\n\tajo: Ouch. I gotta remember to watch out for that one.\n\n13) SilentTitan: Discover Y1 Sol G3 Mer\n\n14) ajo: Discover B1 Ajo Y3 Hah\n\n15) SilentTitan: Build Y3 Mer\n\n16) ajo: Build B2 Alpha\n\n17) SilentTitan: Trade Y3 B3 Silenttitan\n\n18) ajo: Trade B2 R2 Alpha\n\n19) SilentTitan: Discover Y3 Mer B2 Ven\n\n20) ajo: Build G1 Ajo\n\n21) SilentTitan: Build Y3 Mer\n\n22) ajo: Move G1 Ajo Hah\n\n23) SilentTitan: Trade Y3 R3 Ven\n\n24) ajo: Build G1 Ajo\n\tajo: Oh. I should have kept something I could move to a big yellow star, huh?\n\n25) SilentTitan: Build Y3 Mer\n\tSilentTitan: well.... you didn't have much option\n\n26) ajo: Trade G1 R1 Ajo\n\n27) SilentTitan: Move Y3 Mer Ven\n\n28) ajo: Build R1 Ajo\n\n29) SilentTitan: Move R3 Ven Alpha\n\n30) ajo: Build R1 Alpha\n\n31) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Alpha Ven\nMove Y3 Ven Alpha\n\n32) ajo: Build B2 Hah\n\n33) SilentTitan: Sacrifice R3 Ven\nAttack R2 Alpha South\nAttack B2 Alpha South\nAttack R1 Alpha South\n\n34) ajo: Trade B2 Y2 Hah\n\n35) SilentTitan: Attack B1 Alpha South\n\n36) ajo: Build B2 Hah\n\n37) SilentTitan: Sacrifice Y3 Mer\nMove R2 Alpha Ajo\nMove R1 Alpha Ajo\nMove B1 Alpha Ajo\nCatastrophe Ajo Red\n\n38) ajo: Move B2 Hah Sol\n\n39) SilentTitan: Sacrifice Y2 Sol\nMove B2 Alpha Ajo\nMove Y1 Mer Ajo\n\n40) ajo: Sacrifice B2 Sol\nTrade Y2 R2 Hah\nTrade B1 G1 Hah\n\tajo: Interesting choice of catastrophes. In retrospect, I would have expected you to catastrophe yellow at Hah, rather than giving up all your red.\n\n41) SilentTitan: Trade Y1 B1 Ajo\nCatastrophe Ajo Blue\n\n42) ajo: Discover G1 Hah B1 Beta\n\tajo: Okay, I'm in trouble anyway. I wish SDG had an option to prevent moving into check! :P\n\n43) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\tSilentTitan: yeah.... I know what you mean.\n\n44) ajo: Build G2 Beta\n\n45) SilentTitan: Build Y1 Alpha\n\n46) ajo: Move R2 Hah Sol\n\n47) SilentTitan: Discover Y1 Sol G3 Sole\n\n\tajo: Yep, that'll be checkmate in two. Good game.\n\nHomeworlds Online (SDG# 19644)\nVariants: "Hard time"\nStarted: 2011.4.14, Ended: 2011.4.17\nParticipants: agentofchaos (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y2 B1 G3\n\tagentofchaos: Hi there, thanks for the challenge, good luck\n\n\nHomeworlds Online (SDG# 19660)\nVariants: "Hard time"\nStarted: 2011.4.15, Ended: 2011.5.3\nParticipants: Aristos (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld Y3 B1 G3\n\n2) Aristos: Homeworld B3 G2 Y3\n\n3) Subhan64: Build G1 Subhan64\n\n4) Aristos: Build Y1 Aristos\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) Aristos: Trade Y1 G1 Aristos\n\n7) Subhan64: Build G1 Subhan64\n\n8) Aristos: Build Y1 Aristos\n\n9) Subhan64: Discover Y1 Subhan64 Y2 Ix\n\n10) Aristos: Build Y1 Aristos\n\n11) Subhan64: Sacrifice G1 Subhan64\nBuild Y2 Ix\n\n12) Aristos: Discover Y1 Aristos G1 Ohmigosh\n\n13) Subhan64: Move Y1 Ix Ohmigosh\n\n14) Aristos: Trade Y1 R1 Aristos\n\n15) Subhan64: Build G1 Subhan64\n\n16) Aristos: Build G2 Aristos\n\n17) Subhan64: Move G1 Subhan64 Ix\n\n18) Aristos: Trade G1 R1 Aristos\n\n19) Subhan64: Build G1 Subhan64\n\n20) Aristos: Sacrifice R1 Aristos\nAttack Y1 Ohmigosh\n\n21) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Subhan64\nBuild G3 Subhan64\nBuild G3 Ix\n\n22) Aristos: Move Y1 Ohmigosh Ix\n\n23) Subhan64: Trade G3 Y3 Subhan64\n\n24) Aristos: Sacrifice G2 Aristos\nBuild Y1 Ix\nBuild Y2 Ohmigosh\nCatastrophe Ix Yellow\n\n25) Subhan64: Discover G1 Subhan64 G2 Xi\n\n26) Aristos: Build Y1 Ohmigosh\n\n27) Subhan64: Build G1 Subhan64\n\n28) Aristos: Move Y2 Ohmigosh Xi\n\n29) Subhan64: Build G3 Xi\n\n30) Aristos: Build Y1 Xi\n\n31) Subhan64: Discover Y3 Subhan64 Y2 Oooo\n\n32) Aristos: Build Y2 Xi\n\n33) Subhan64: Sacrifice G3 Xi\nBuild G3 Xi\nBuild G3 Xi\nBuild G3 Subhan64\nCatastrophe Xi Green\n\n34) Aristos: Trade Y3 G3 Aristos\n\n35) Subhan64: Trade G1 B1 Subhan64\n\n36) Aristos: Build R1 Aristos\n\n37) Subhan64: Sacrifice B1 Subhan64\nTrade Y3 R3 Oooo\n\n38) Aristos: Trade R1 Y1 Aristos\n\n39) Subhan64: Move R3 Oooo Ohmigosh\n\n40) Aristos: Sacrifice Y1 Ohmigosh\nDiscover Y1 Ohmigosh G2 Holysmokes\n\n41) Subhan64: Trade G2 Y2 Subhan64\n\n42) Aristos: Build G1 Aristos\n\n43) Subhan64: Build G1 Subhan64\n\n44) Aristos: Build Y1 Holysmokes\n\n45) Subhan64: Move G1 Subhan64 Holysmokes\n\n46) Aristos: Build Y2 Holysmokes\n\n47) Subhan64: Sacrifice Y2 Subhan64\nMove G1 Holysmokes Ohmigosh\nMove G1 Ohmigosh Aristos\nCatastrophe Aristos Green\n\n\nHomeworlds Online (SDG# 19616)\nStarted: 2011.4.15, Ended: 2011.4.18\nParticipants: ts52 (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y3 G3\n\n2) ts52: Homeworld Y1 B2 G3 Ts52\n\n3) lorgar: Build G1 Lorgar\n\tts52: Back for more? :) Have a good game!\n\tlorgar: thanks, let's fight again!\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Discover G1 Lorgar B1 Lost\n\n6) ts52: Trade G1 B1 Ts52\n\n7) lorgar: Build G1 Lorgar\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) lorgar: Build G1 Lost\n\n10) ts52: Build G2 Ts52\n\n11) lorgar: Trade G1 Y1 Lost\n\n12) ts52: Build B1 Kermit\n\n13) lorgar: Build G1 Lost\n\n14) ts52: Build G2 Ts52\n\n15) lorgar: Sacrifice G3 Lorgar\nBuild G2 Lost\nBuild Y1 Lost\nBuild G3 Lorgar\n\n16) ts52: Build B2 Kermit\n\n17) lorgar: Build Y2 Lost\n\n18) ts52: Trade G2 Y2 Ts52\n\n19) lorgar: Sacrifice Y2 Lost\nMove G1 Lost Kermit\nMove G1 Lost Kermit\n\n20) ts52: Sacrifice Y2 Ts52\nDiscover B2 Kermit G2 Oscar\nMove B1 Kermit Lost\n\n21) lorgar: Build Y2 Lost\n\n22) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Oscar\nBuild B3 Lost\n\n23) lorgar: Sacrifice Y2 Lost\nMove G1 Kermit Ts52\nMove G1 Kermit Ts52\nCatastrophe Ts52 Green\n\n\tlorgar: thanks for the game, greed killed you this time!\n\tts52: Crap! I missed that again! Well played sir.\n\tts52: Yeah, greed made be sloppy, for sure\n\nHomeworlds Online (SDG# 19663)\nStarted: 2011.4.18, Ended: 2011.5.6\nParticipants: mathochist (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y3 G3\n\n\nHomeworlds Online (SDG# 19668)\nStarted: 2011.4.18, Ended: 2011.5.10\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B3 G3\n\tts52: Excellent, I was about to demand a rematch.\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build G1 Lorgar\n\n5) ts52: Discover G1 Ts52 B1 Grover\n\n6) lorgar: Trade G1 R1 Lorgar\n\n7) ts52: Build G1 Ts52\n\n8) lorgar: Build G1 Lorgar\n\n9) ts52: Build G2 Grover\n\n10) lorgar: Build G2 Lorgar\n\n11) ts52: Trade G2 Y2 Grover\n\n12) lorgar: Discover G2 Lorgar B2 Maloha\n\n13) ts52: Build G2 Grover\n\n14) lorgar: Trade G3 Y3 Lorgar\n\n15) ts52: T G2 R2 Grover\n\n16) lorgar: Trade Y3 G3 Lorgar\n\n17) ts52: Build G2 Grover\n\n18) lorgar: Move R1 Lorgar Maloha\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n20) lorgar: Trade G3 Y3 Lorgar\n\n21) ts52: Trade G3 R3 Ts52\n\n22) lorgar: Build G3 Maloha\n\n23) ts52: Sacrifice Y2 Grover\nMove G1 Grover Maloha\nMove G2 Grover Maloha\nCatastrophe Maloha Green\n\n24) lorgar: Trade Y3 G3 Lorgar\n\n25) ts52: Build R1 Grover\n\n26) lorgar: Move G1 Lorgar Maloha\n\n27) ts52: Trade R1 Y1 Grover\n\n28) lorgar: Build G1 Lorgar\n\n29) ts52: Move R2 Grover Maloha\n\n30) lorgar: Sacrifice G3 Lorgar\nBuild G2 Maloha\nBuild G2 Maloha\nBuild G3 Lorgar\n\n31) ts52: Attack R1 Maloha\n\n32) lorgar: Build G3 Lorgar\n\n33) ts52: Attack G2 Maloha\n\n34) lorgar: Move G1 Lorgar Maloha\nCatastrophe Maloha Green\n\n35) ts52: Trade R2 Y2 Maloha\n\n36) lorgar: Trade G3 R3 Lorgar\n\n37) ts52: Build G1 Grover\n\n38) lorgar: Move R3 Lorgar Maloha\n\n39) ts52: Sacrifice G2 Ts52\nBuild R1 Maloha\nBuild R1 Maloha\nCatastrophe Maloha Red\n\n40) lorgar: Build G1 Lorgar\n\n41) ts52: Sacrifice Y2 Maloha\nDiscover G3 Grover Y2 Bird\nMove G3 Bird Lorgar\n\tlorgar: ooooooooo :'(\r\nnot cool!\n\n42) lorgar: Build G2 Lorgar\nCatastrophe Lorgar Green\n\n\tlorgar: sod it XD \r\nI WANT A REMATCH!*_*\n\tts52: I welcome another opportunity to battle you...\n\nHomeworlds Online (SDG# 19688)\nVariants: "Hard time"\nStarted: 2011.4.18, Ended: 2011.5.25\nParticipants: sompm (S), alexcobo (N)\nWinner: alexcobo\n\n1) alexcobo: Homeworld G1 B2 Y3\n\n2) sompm: Homeworld B1 Y3 G3\n\n3) alexcobo: Build Y1 Alexcobo\n\n4) sompm: Build G1 Sompm\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) sompm: Build G1 Sompm\n\n7) alexcobo: Trade Y1 R1 Alexcobo\n\n8) sompm: Discover G1 Sompm Y2 Costarica\n\n9) alexcobo: Discover Y1 Alexcobo G3 Nicaragua\n\n10) sompm: Build G2 Costarica\n\n11) alexcobo: Build Y1 Alexcobo\n\n12) sompm: Sacrifice G3 Sompm\nBuild G2 Costarica\nBuild G2 Sompm\nBuild G3 Sompm\n\n13) alexcobo: Build Y1 Nicaragua\n\n14) sompm: Discover G2 Sompm Y2 Uzbekistan\n\n15) alexcobo: Build Y2 Nicaragua\n\n16) sompm: Build G3 Uzbekistan\n\n17) alexcobo: Build Y3 Alexcobo\n\n18) sompm: Discover G1 Costarica B3 Nameofacountry\n\n19) alexcobo: Build R1 Alexcobo\n\n\nHomeworlds Online (SDG# 19695)\nVariants: "Unrated"\nStarted: 2011.4.19, Ended: 2011.4.19\nParticipants: Blizzy (S), DrSquidopolis (N)\nWinner: DrSquidopolis\n\n1) DrSquidopolis: Homeworld G3 B2 R3\n\n2) Blizzy: Homeworld B3 G2 G2 *\n\n3) DrSquidopolis: Build R1 Drsquidopolis\n\n4) Blizzy: Build G1 Blizzy\n\n5) DrSquidopolis: Trade R1 Y1 Drsquidopolis\n\n6) Blizzy: Trade G2 Y2 Blizzy\n\n7) DrSquidopolis: Discover Y1 Drsquidopolis R1 Demon\n\n8) Blizzy: Move Y2 Blizzy Demon\n\n9) DrSquidopolis: Build R1 Drsquidopolis\n\n10) Blizzy: Build G1 Blizzy\n\n11) DrSquidopolis: Build R1 Drsquidopolis\n\n12) Blizzy: Build G1 Blizzy\n\n13) DrSquidopolis: Move Y1 Demon Blizzy\n\n14) Blizzy: Trade G1 B1 Blizzy\n\n15) DrSquidopolis: Build R2 Drsquidopolis\n\n16) Blizzy: Pass\n\n17) DrSquidopolis: Trade R2 Y2 Drsquidopolis\n\n18) Blizzy: Pass\n\n19) DrSquidopolis: Move Y2 Drsquidopolis Demon\n\n20) Blizzy: Move Y2 Demon Blizzy\n\n21) DrSquidopolis: Move Y2 Demon Blizzy\n\n22) Blizzy: Trade G1 R1 Blizzy\n\n23) DrSquidopolis: Discover Y1 Blizzy G1 Grass\n\n24) Blizzy: Discover Y2 Blizzy Y1 Wezen\n\n25) DrSquidopolis: Trade Y2 R2 Blizzy\n\n26) Blizzy: Discover Y2 Wezen R3 Betelgeuse\n\n27) DrSquidopolis: Sacrifice R3 Drsquidopolis\nAttack R1 Blizzy\nAttack G1 Blizzy\nAttack B1 Blizzy\n\n\nHomeworlds Online (SDG# 19601)\nVariants: "No undo"\nStarted: 2011.4.22, Ended: 2011.4.27\nParticipants: ronan (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y1 B3 G3\n\n\nHomeworlds Online (SDG# 19648)\nVariants: "Hard time"\nStarted: 2011.4.22, Ended: 2011.5.10\nParticipants: SilentTitan (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R2 B3 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) mneme: Build G1 Mneme\n\n4) SilentTitan: Build G1 Silenttitan\n\tmneme: hmm. small u? I've not played that before. Should prove interesting.\n\n5) mneme: Trade G1 Y1 Mneme\n\tSilentTitan: well I figured... you're not new to this ... so time to experiment... right?\r\n\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) mneme: Build G1 Mneme\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) mneme: Discover G1 Mneme Y1 Echothis\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) mneme: Build Y2 Mneme\n\tmneme: Sure, why not? At least it's not microverse! \n\n12) SilentTitan: Discover Y2 Silenttitan R1 Ant\n\n13) mneme: Build G1 Mneme\n\n14) SilentTitan: Build Y2 Silenttitan\n\n15) mneme: Build G2 Echothis\n\n16) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y3 Ant\n\n17) mneme: Discover Y1 Mneme B1 Tryouts\n\n18) SilentTitan: Trade Y2 R2 Silenttitan\n\n19) mneme: Sacrifice G2 Echothis\nBuild Y2 Tryouts\nBuild Y3 Mneme\n\n20) SilentTitan: Build Y3 Silenttitan\n\n21) mneme: Sacrifice Y2 Mneme\nMove Y2 Tryouts Silenttitan\nMove Y1 Tryouts Silenttitan\nCatastrophe Silenttitan Y\n\n22) SilentTitan: Move Y3 Ant Silenttitan\n\n23) mneme: Trade G1 B1 Mneme\n\n24) SilentTitan: Move R2 Silenttitan Echothis\n\n25) mneme: Discover G1 Echothis R3 Ruby\n\n26) SilentTitan: Build G1 Silenttitan\n\n27) mneme: Build B1 Mneme\n\n28) SilentTitan: Build Y1 Silenttitan\n\n29) mneme: Discover B1 Mneme G1 Ghost\n\n30) SilentTitan: Trade Y1 B1 Silenttitan\n\n31) mneme: Build Y1 Mneme\n\n32) SilentTitan: Move B1 Silenttitan Echothis\n\n33) mneme: Build B2 Ghost\n\n34) SilentTitan: Sacrifice G3 Silenttitan\nBuild R1 Echothis\nBuild R1 Echothis\nBuild B2 Echothis\n\n35) mneme: Discover B1 Mneme Y1 Hunter\n\n36) SilentTitan: Build G2 Silenttitan\n\n37) mneme: Sacrifice G3 Mneme\nBuild B3 Ghost\nBuild B3 Hunter\nBuild G2 Ruby\n\n38) SilentTitan: Sacrifice Y2 Ant\nMove B1 Echothis Mneme\nMove B2 Echothis Mneme\n\n39) mneme: Attack B2 Mneme\n\n40) SilentTitan: Move G2 Silenttitan Ghost\n\n41) mneme: Attack B1 Mneme\n\n42) SilentTitan: Build G2 Ghost\n\n43) mneme: Sacrifice Y1 Mneme\nMove B3 Ghost Ruby\n\n44) SilentTitan: Sacrifice R1 Echothis\nAttack B2 Ghost North\n\n45) mneme: Sacrifice B1 Mneme\nTrade B3 R3 Hunter\n\n46) SilentTitan: Build G3 Silenttitan\n\n47) mneme: Sacrifice G2 Ruby\nBuild B1 Ruby\nBuild B3 Hunter\n\n48) SilentTitan: Sacrifice B2 Ghost\nTrade G2 Y2 Ghost\nTrade G2 Y2 Ghost\n\n49) mneme: Trade B3 G3 Ruby\n\n50) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Ghost\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n51) mneme: Sacrifice G3 Ruby\nBuild B2 Ruby\nBuild B3 Ghost\nBuild G2 Ruby\n\n52) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y2 Ghost Mneme\nMove Y2 Ghost Mneme\nMove Y1 Ghost Mneme\nCatastrophe Mneme Yellow\n\n53) mneme: Sacrifice B2 Ruby\nTrade B3 Y3 Ghost\nTrade B3 G3 Hunter\n\n54) SilentTitan: Sacrifice G1 Silenttitan\nBuild R1 Echothis\n\n55) mneme: Sacrifice G3 Hunter\nBuild B2 Ruby\nBuild B3 Hunter\nBuild B3 Ghost\n\n56) SilentTitan: Discover R1 Echothis G2 Fin\n\tSilentTitan: Great Game, I knew several turns ago I was going to come up short. My big mistake was the turn I came into your system at 2011-05-03 00:49:13. I misread where I was and thought I had a follow up blue ship to cause the cat next turn.\n\n57) mneme: Sacrifice B2 Ruby\nTrade B3 G3 Hunter\nTrade B3 Y3 Ghost\n\tmneme: Yeah, that was certainly the big turning point. I'd actually missed that I could deny you the blue for the kill until after I did it, then it was obvious.\n\tmneme: Mind, we're not over yet, no? Although without G and against a blue engine, you're in big, big trouble.\n\n58) SilentTitan: Build R1 Fin\n\n59) mneme: Move Y3 Ghost Silenttitan\n\n\tSilentTitan: Thanks\n\nHomeworlds Online (SDG# 19684)\nStarted: 2011.4.22, Ended: 2011.5.2\nParticipants: mathochist (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R2 B3 G3\n\n\nHomeworlds Online (SDG# 19685)\nStarted: 2011.4.22, Ended: 2011.4.28\nParticipants: ts52 (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R2 B3 G3\n\n2) ts52: H Y1 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) ts52: Build G1 Ts52\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) ts52: Trade G1 R1 Ts52\n\n7) mneme: Build Y1 Mneme\n\n8) ts52: Build G1 Ts52\n\n9) mneme: Build Y2 Mneme\n\n10) ts52: Build R1 Ts52\n\n11) mneme: Trade Y2 R2 Mneme\n\n12) ts52: Discover R1 Ts52 G3 Kermit\n\n13) mneme: Build Y2 Mneme\n\n14) ts52: Build G1 Ts52\n\n15) mneme: Discover Y2 Mneme G1 Growth\n\n16) ts52: Trade G1 B1 Ts52\n\n17) mneme: Discover Y1 Mneme G1 Prosperity\n\n18) ts52: Build G2 Ts52\n\n19) mneme: Build G2 Mneme\n\n20) ts52: Trade G2 Y2 Ts52\n\n21) mneme: Sacrifice G3 Mneme\nBuild Y2 Prosperity\nBuild Y3 Growth\nBuild Y3 Mneme\n\n22) ts52: Move Y2 Ts52 Kermit\n\n23) mneme: Build Y3 Mneme\n\n24) ts52: Discover G1 Ts52 B3 Grover\n\n25) mneme: Trade Y1 B1 Mneme\n\n26) ts52: Build G2 Ts52\n\n27) mneme: Move Y3 Growth Grover\n\n28) ts52: Build R1 Kermit\n\n29) mneme: Trade Y3 G3 Mneme\n\n30) ts52: Build G2 Grover\n\n31) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild Y1 Growth\nBuild Y3 Grover\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\n\n33) mneme: Trade Y3 R3 Grover\n\n34) ts52: Discover R3 Ts52 Y3 Bigbird\n\n35) mneme: Sacrifice Y2 Growth\nMove R2 Mneme Growth\nMove R2 Growth Kermit\nCatastrophe Kermit R\n\n36) ts52: Move R3 Bigbird Prosperity\n\n37) mneme: Attack G2 Grover\n\n38) ts52: Attack Y2 Prosperity\n\n39) mneme: Attack G1 Grover\n\n40) ts52: Discover G2 Ts52 Y3 Bigbird\n\n41) mneme: Sacrifice Y3 Mneme\nMove G2 Grover Prosperity\nMove G1 Grover Prosperity\nMove G2 Mneme Prosperity\nCatastrophe Prosperity G\n\n42) ts52: Build G1 Ts52\n\n43) mneme: Build G1 Mneme\n\tmneme: thanks for not falling into my trap, btw. That would have been disappointing.\r\n\n\n44) ts52: Move B1 Ts52 Bigbird\n\n45) mneme: Sacrifice G1 Mneme\nBuild R1 Grover\n\n46) ts52: Build B1 Bigbird\n\tts52: no problem. I'll put up as much of a fight as I can\n\n47) mneme: Build Y1 Growth\n\n48) ts52: Build Y2 Kermit\n\n49) mneme: Move Y1 Growth Mneme\n\n50) ts52: Build B2 Bigbird\n\n51) mneme: Trade R1 G1 Grover\n\n52) ts52: Trade B2 R2 Bigbird\n\n53) mneme: Sacrifice G3 Mneme\nBuild Y2 Grover\nBuild Y3 Mneme\nBuild G2 Grover\n\n54) ts52: Move R2 Bigbird Growth\n\n55) mneme: Sacrifice Y3 Grover\nMove G2 Grover Ts52\nMove G1 Grover Ts52\nMove R3 Grover Ts52\nCatastrophe Ts52 G\n\n56) ts52: Sacrifice Y2 Kermit\nMove G2 Bigbird Ts52\nMove B1 Bigbird Ts52\n\n57) mneme: Attack G2 Ts52\n\tmneme: Ah, well. This time, you did fall into it.\r\nThere's something to be said for using a "check" convention in this game (when not playing with experts past a certain level, anyways).\n\tts52: Yeah. I was too busy trying to figure some hope of turning this one around, missed you setting up the kill. Well done.\n\n58) ts52: Trade B1 R1 Ts52\n\n59) mneme: Build R1 Ts52\nCatastrophe Ts52 R\n\n\tts52: Well played. Thanks for the game.\n\tmneme: Likewise; it was a fun one.\n\nHomeworlds Online (SDG# 19768)\nVariants: "Unrated"\nStarted: 2011.4.27, Ended: 2011.6.4\nParticipants: OnePageWars (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y1 G3\n\n2) OnePageWars: Homeworld Y3 G2 B3\n\n3) lorgar: Build G1 Lorgar\n\tOnePageWars: thanks for playing.\n\n4) OnePageWars: Build B1 Onepagewars\n\tlorgar: pleasure's mine :D\n\n5) lorgar: Build G1 Lorgar\n\n6) OnePageWars: Trade B3 Y3 Onepagewars\n\n7) lorgar: Trade G1 B1 Lorgar\n\n8) OnePageWars: Build B1 Onepagewars\n\n9) lorgar: Discover B1 Lorgar G3 Gate\n\n10) OnePageWars: Discover B1 Onepagewars G1 Garden\n\n11) lorgar: Build G1 Lorgar\n\n12) OnePageWars: Build Y1 Onepagewars\n\n13) lorgar: Discover G1 Lorgar B3 Safe\n\n14) OnePageWars: Move Y1 Onepagewars Garden\n\n15) lorgar: Sacrifice G3 Lorgar\nBuild G2 Lorgar\nBuild G2 Lorgar\nBuild G3 Safe\n\n16) OnePageWars: Build B2 Garden\n\n17) lorgar: Sacrifice G2 Lorgar\nBuild G2 Safe\nBuild G3 Lorgar\n\n18) OnePageWars: Trade B1 R1 Garden\n\tOnePageWars: oh, i get it. Now you're the only one with G tech.\n\n19) lorgar: Trade G3 R3 Safe\n\n20) OnePageWars: Build B1 Garden\n\tlorgar: when did you start playing homeworld?\n\tOnePageWars: When I joined SDG. I don't know exactly.\n\n21) lorgar: Trade G1 Y1 Safe\n\n22) OnePageWars: Build Y2 Garden\n\n23) lorgar: Move R3 Safe Garden\n\n\nHomeworlds Online (SDG# 19812)\nVariants: "Hard time"\nStarted: 2011.4.28, Ended: 2011.5.1\nParticipants: AdamBadura (S), ajo (N)\nWinner: AdamBadura\n\n1) ajo: Homeworld B3 G2 Y3\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) ajo: Build Y1 Ajo\n\tajo: Ooh. Tricky.\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) ajo: Build Y1 Ajo\n\n6) AdamBadura: Trade Y1 G1 Adambadura\n\n7) ajo: Discover Y1 Ajo G1 Alpha\n\n8) AdamBadura: Build G1 Adambadura\n\n9) ajo: Trade Y1 R1 Ajo\n\n10) AdamBadura: Discover G1 Adambadura R1 Outpost\n\n11) ajo: Build Y1 Ajo\n\n12) AdamBadura: Build G2 Outpost\n\n13) ajo: Build Y1 Alpha\n\n14) AdamBadura: Build Y2 Adambadura\n\n15) ajo: Move Y1 Alpha Adambadura\n\n16) AdamBadura: Trade Y2 R2 Adambadura\n\n17) ajo: Build Y2 Adambadura\n\n18) AdamBadura: Trade Y3 R3 Adambadura\n\n19) ajo: Sacrifice Y1 Adambadura\nDiscover Y2 Adambadura B1 Beta\n\tajo: Okay, that didn't work. :P\n\n20) AdamBadura: Trade R3 Y3 Adambadura\n\n21) ajo: Trade Y2 G2 Beta\n\n22) AdamBadura: Build G3 Outpost\n\n23) ajo: Build G3 Beta\n\n24) AdamBadura: Build Y1 Adambadura\n\n25) ajo: Build Y2 Alpha\n\n26) AdamBadura: Sacrifice Y1 Adambadura\nDiscover G2 Outpost Y2 Highway\n\n27) ajo: Sacrifice Y2 Alpha\nMove G2 Beta Adambadura\nMove G3 Beta Adambadura\nCatastrophe Adambadura Green\n\n28) AdamBadura: Sacrifice G3 Outpost\nBuild G1 Highway\nBuild G2 Highway\nBuild G3 Outpost\n\n29) ajo: Trade Y1 B1 Ajo\n\n30) AdamBadura: Discover G2 Highway Y1 Nearby\n\n31) ajo: Move B1 Ajo Alpha\n\n32) AdamBadura: Sacrifice G3 Outpost\nBuild G3 Outpost\nBuild G3 Nearby\nBuild G3 Nearby\n\n33) ajo: Build B1 Alpha\n\n34) AdamBadura: Move R2 Adambadura Alpha\n\n35) ajo: Sacrifice Y3 Ajo\nMove Y1 Alpha Adambadura\nMove B1 Alpha Adambadura\nMove B1 Alpha Adambadura\n\n36) AdamBadura: Sacrifice R2 Alpha\nAttack Y1 Adambadura\nAttack B1 Adambadura\n\tajo: I'm definitely in trouble, but I can still put you in check. :)\n\n37) ajo: Trade B1 R1 Adambadura\n\n38) AdamBadura: Trade Y3 R3 Adambadura\n\n39) ajo: Attack B1S Adambadura\n\n40) AdamBadura: Attack R1 Adambadura\n\n41) ajo: Build R2 Ajo\n\n42) AdamBadura: Move G3 Nearby Ajo\n\n43) ajo: Sacrifice R2 Ajo\nAttack R1S Adambadura\nAttack Y1S Adambadura\n\tajo: Somehow you still haven't killed me yet. I know it's coming eventually, though. :)\n\n44) AdamBadura: Attack R1 Adambadura\n\tajo: One more move, then I'll call it quits.\n\n\tajo: There's the checkmate. Good game. :)\n\nHomeworlds Online (SDG# 19801)\nVariants: "Unrated"\nStarted: 2011.4.28, Ended: 2011.6.1\nParticipants: radio414 (S), OnePageWars (N)\nWinner: radio414\n\n1) OnePageWars: Homeworld B3 G2 Y3\n\n2) radio414: Homeworld B2 R1 G3\n\n3) OnePageWars: Build Y1 Onepagewars\n\n4) radio414: Build G1 Radio414\n\n5) OnePageWars: Trade Y1 G1 Onepagewars\n\n6) radio414: Trade G1 Y1 Radio414\n\n7) OnePageWars: Build Y1 Onepagewars\n\n8) radio414: Build G1 Radio414\n\n9) OnePageWars: Discover Y3 Onepagewars R1 Thedeathstar\n\n10) radio414: Trade G1 B1 Radio414\n\n11) OnePageWars: Move G1 Onepagewars Thedeathstar\n\n12) radio414: Discover B1 Radio414 G3 Alderaan\n\n13) OnePageWars: Build Y1 Onepagewars\n\n14) radio414: Build B1 Alderaan\n\n15) OnePageWars: Build Y2 Onepagewars\n\n16) radio414: Trade B1 R1 Alderaan\n\n17) OnePageWars: Trade Y1 B1 Onepagewars\n\n18) radio414: Build R2 Alderaan\n\n19) OnePageWars: Move B1 Onepagewars Thedeathstar\n\n20) radio414: Build R2 Alderaan\n\n21) OnePageWars: Build G1 Thedeathstar\n\n22) radio414: Trade R2 Y2 Alderaan\n\n23) OnePageWars: Trade Y2 R2 Onepagewars\n\n24) radio414: Build G1 Radio414\n\n25) OnePageWars: Build G2 Thedeathstar\n\n26) radio414: Sacrifice Y2 Alderaan\nMove G1 Radio414 Alderaan\nMove G1 Alderaan Thedeathstar\nCatastrophe Thedeathstar G\n\n27) OnePageWars: Build Y1 Onepagewars\n\n28) radio414: Build Y2 Radio414\n\n29) OnePageWars: Trade Y1 G1 Onepagewars\n\tOnePageWars: forgot about catastrophes. :(\n\n30) radio414: Build G1 Radio414\n\n31) OnePageWars: Build G1 Onepagewars\n\n32) radio414: Move Y2 Radio414 Alderaan\n\n33) OnePageWars: Move G1 Onepagewars Thedeathstar\n\n34) radio414: Build B1 Alderaan\n\n35) OnePageWars: Build B2 Thedeathstar\n\n36) radio414: Trade G1 Y1 Radio414\n\n37) OnePageWars: Build Y2 Onepagewars\n\n38) radio414: Move Y1 Radio414 Alderaan\n\n39) OnePageWars: Build G1 Thedeathstar\n\n40) radio414: Build G2 Radio414\n\n41) OnePageWars: Move G1 Onepagewars Thedeathstar\n\n42) radio414: Sacrifice Y2 Alderaan\nDiscover R2 Alderaan Y2 Hoth\nMove B1 Alderaan Hoth\n\n43) OnePageWars: Move G1 Thedeathstar Onepagewars\n\n44) radio414: Build B2 Alderaan\n\n45) OnePageWars: Build Y2 Thedeathstar\n\n46) radio414: Build Y3 Alderaan\n\n47) OnePageWars: Trade Y3 R3 Thedeathstar\n\n48) radio414: Sacrifice Y3 Alderaan\nMove R1 Alderaan Thedeathstar\nMove R2 Hoth Thedeathstar\nMove B1 Hoth Alderaan\nCatastrophe Thedeathstar R\n\n\tOnePageWars: Hans Solo blew up the death star!\n\tOnePageWars: No, wait. This is the first Death star. So it was blown up by luke along with other fighters from Hoth.\n\tOnePageWars: It's funny that you launched part of your attack from Hoth, too!\n\nHomeworlds Online (SDG# 19839)\nStarted: 2011.4.29, Ended: 2011.5.17\nParticipants: OnePageWars (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 G2 Y3\n\n2) OnePageWars: Homeworld B2 G1 Y3\n\tOnePageWars: Welcome! Thanks for accepting my standing challenge!\n\n3) ajo: Build Y1 Ajo\n\n4) OnePageWars: Build Y1 Onepagewars\n\n5) ajo: Trade Y1 G1 Ajo\n\n6) OnePageWars: Trade Y1 G1 Onepagewars\n\n7) ajo: Build G2 Ajo\n\n8) OnePageWars: Build Y1 Onepagewars\n\n9) ajo: Discover G1 Ajo B1 Alpha\n\n10) OnePageWars: Build Y1 Onepagewars\n\n11) ajo: Build G2 Alpha\n\n12) OnePageWars: Build G3 Onepagewars\n\n13) ajo: Build G3 Alpha\n\n14) OnePageWars: Trade Y1 R1 Onepagewars\n\n15) ajo: Trade G2 R2 Alpha\n\n16) OnePageWars: Discover Y3 Onepagewars R3 Narnia\n\n17) ajo: Trade G3 Y3 Alpha\n\n18) OnePageWars: Trade G1 B1 Onepagewars\n\n19) ajo: Build Y1 Alpha\n\n20) OnePageWars: Build R1 Onepagewars\n\n21) ajo: Build G1 Ajo\n\n22) OnePageWars: Build B1 Onepagewars\n\n23) ajo: Build G2 Alpha\n\n24) OnePageWars: Build G3 Onepagewars\n\n25) ajo: Sacrifice Y3 Alpha\nDiscover G1 Alpha Y3 Waypoint\nMove G2 Alpha Waypoint\nMove G1 Waypoint Onepagewars\nCatastrophe Onepagewars Green\n\tajo: Huh. Okay then, I can do that.\n\n26) OnePageWars: Move Y3 Narnia Onepagewars\n\tOnePageWars: This is the second time in my few weeks of playing homeworlds that a catastrophe has occured. :(\n\n27) ajo: Move G1 Ajo Alpha\n\tajo: Aha. Well, in case you didn't know, a catastrophe occurs whenever four or more pieces of the same color are in the same system.\n\tajo: It's usually a bad idea to keep three pieces of the same color in the same system, because that lets your opponent do what I just did. Keep your colors split up.\n\n28) OnePageWars: Trade B1 G1 Onepagewars\n\tOnePageWars: yeah, i knew that, just underestimated the disaster of a catastrophe, i guess. :/\n\n29) ajo: Trade Y1 B1 Alpha\n\n30) OnePageWars: Build Y1 Onepagewars\n\n31) ajo: Build Y1 Ajo\n\n32) OnePageWars: Build B2 Onepagewars\n\n33) ajo: Sacrifice Y1 Ajo\nMove B1 Alpha Onepagewars\nCatastrophe Onepagewars Blue\n\n\nHomeworlds Online (SDG# 19843)\nStarted: 2011.4.30, Ended: 2011.5.30\nParticipants: alexcobo (S), OnePageWars (N)\nWinner: alexcobo\n\n1) OnePageWars: Homeworld G3 Y2 B3\n\n2) alexcobo: Homeworld B1 G3 Y3\n\n3) OnePageWars: Build B1 Onepagewars\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) OnePageWars: Trade B1 G1 Onepagewars\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) alexcobo: Trade Y1 G1 Alexcobo\n\n9) OnePageWars: Trade G1 Y1 Onepagewars\n\n10) alexcobo: Discover G1 Alexcobo B2 Change\n\n11) OnePageWars: Build B1 Onepagewars\n\n12) alexcobo: Build G1 Change\n\n13) OnePageWars: Trade B3 Y3 Onepagewars\n\n14) alexcobo: Build G2 Change\n\n15) OnePageWars: Discover Y1 Onepagewars R1 Icehousepiece\n\n16) alexcobo: Trade G1 R1 Change\n\n17) OnePageWars: Move Y3 Onepagewars Icehousepiece\n\n18) alexcobo: Build R1 Change\n\n19) OnePageWars: Build G1 Onepagewars\n\n20) alexcobo: Trade G2 Y2 Change\n\n21) OnePageWars: Trade G1 B1 Onepagewars\n\n22) alexcobo: Build R2 Change\n\n23) OnePageWars: Move B1 Onepagewars Icehousepiece\n\n24) alexcobo: Sacrifice Y3 Alexcobo\nMove R1 Change Icehousepiece\nMove R1 Change Icehousepiece\nMove R2 Change Icehousepiece\nCatastrophe Icehousepiece R\n\n25) OnePageWars: Build B1 Onepagewars\n\n26) alexcobo: Build Y1 Alexcobo\n\n\tOnePageWars: tx for the game!\n\nHomeworlds Online (SDG# 19838)\nVariants: "Unrated"\nStarted: 2011.4.30, Ended: 2011.5.25\nParticipants: roboxx (S), OnePageWars (N)\nWinner: OnePageWars\n\n1) OnePageWars: Homeworld Y3 B2 G3\n\n2) roboxx: Homeworld Y1 B3 G3\n\n3) OnePageWars: Build G1 Onepagewars\n\n4) roboxx: Build G1 Roboxx\n\n5) OnePageWars: Build G1 Onepagewars\n\n6) roboxx: Discover G1 Roboxx R2 Cybertron\n\n7) OnePageWars: Discover G3 Onepagewars R1 Vulcan\n\n8) roboxx: Build G2 Cybertron\n\n9) OnePageWars: Build G2 Vulcan\n\n10) roboxx: Build G2 Roboxx\n\n11) OnePageWars: Build G3 Onepagewars\n\n12) roboxx: Trade G2 Y2 Roboxx\n\n13) OnePageWars: Trade G1 Y1 Onepagewars\n\n14) roboxx: Sacrifice Y2 Roboxx\nDiscover G2 Cybertron B3 Grey\nDiscover G1 Cybertron B3 Reptilian\n\n15) OnePageWars: Trade G1 B1 Onepagewars\n\n16) roboxx: Build G1 Roboxx\n\n17) OnePageWars: Build B1 Onepagewars\n\tOnePageWars: that system isn't grey, it's blue!\n\n\nHomeworlds Online (SDG# 19867)\nVariants: "Hard time"\nStarted: 2011.5.2, Ended: 2011.5.3\nParticipants: AdamBadura (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) AdamBadura: Homeworld B3 G2 Y3\n\tgoulo: finally we play again! :)\n\n3) goulo: Build G1 Goulo\n\tAdamBadura: For some time I was inactive at SDG. But few days ago someone challenged me on Homeworlds Ladder. I gave him a lesson (by defending easly) and decided to issue some challanges myself. ;)\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) AdamBadura: Discover Y1 Adambadura G1 Drydocks\n\tgoulo: i wish someone would create online rambots and gnostica...\n\n7) goulo: Build G1 Goulo\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) goulo: Discover G1 Goulo R1 Rubeneto\n\n10) AdamBadura: Build Y2 Adambadura\n\n11) goulo: Build Y2 Goulo\n\n12) AdamBadura: Move Y2 Adambadura Rubeneto\n\n13) goulo: Sacrifice G1 Rubeneto\nBuild G1 Goulo\n\tAdamBadura: Hmm... I just realized that I made our systems connect by one intermediate system. I didn't want that. Lets see what will happen... :)\n\n14) AdamBadura: Trade Y3 R3 Adambadura\n\tgoulo: it doesn't seem to be working out bad for you...\n\tgoulo: after playing a few games with the strongest players, i realize how weak and unfocused my opening is.\n\n15) goulo: Move Y2 Goulo Drydocks\n\tAdamBadura: Maybe you just don't respect me enough to care... ;)\n\n16) AdamBadura: Build Y2 Drydocks\n\n17) goulo: Build Y3 Goulo\n\n18) AdamBadura: Build Y3 Adambadura\n\n19) goulo: Move Y3 Goulo Rubeneto\n\n20) AdamBadura: Discover Y2 Rubeneto Y3 Redundancy\n\n21) goulo: Trade G1 R1 Goulo\n\n22) AdamBadura: Build R1 Adambadura\n\n23) goulo: Build G1 Goulo\n\n24) AdamBadura: Move R1 Adambadura Drydocks\n\n25) goulo: Sacrifice R1 Goulo\nAttack R1 Drydocks\n\n26) AdamBadura: Build R1 Adambadura\n\tAdamBadura: Stupid me... ;)\n\n27) goulo: Attack Y2 Drydocks\n\n28) AdamBadura: Move Y1 Adambadura Drydocks\nCatastrophe Drydocks Y\n\n29) goulo: Build Y1 Goulo\n\n30) AdamBadura: Build Y1 Adambadura\n\n31) goulo: Move Y1 Goulo Drydocks\n\n32) AdamBadura: Move R3 Adambadura Drydocks\n\n33) goulo: Build R2 Drydocks\n\n34) AdamBadura: Sacrifice Y1 Adambadura\nMove R3 Drydocks Redundancy\n\tAdamBadura: Oh... How haven't I forseen this... I'm a bad player. :(\n\n35) goulo: Build Y1 Drydocks\n\n36) AdamBadura: Build Y2 Adambadura\n\n37) goulo: Sacrifice Y3 Rubeneto\nMove Y1 Drydocks Adambadura\nMove Y1 Drydocks Adambadura\nMove R2 Drydocks Adambadura\nCatastrophe Adambadura Y\n\n\tgoulo: that was an unexpected nice opportunity for me! :) i was rather expecting to maybe get to a catastrophe at Redundancy...\n\tAdamBadura: I screwed up that game so badly that I am ashame of my self. This makes me wonder whether I'm worthy buying Pyramids. ;)\n\tgoulo: Only by owning the sacred pyramids and worshipping them every day will your spirit be able to grow, and thus you will grow stronger at Homeworlds. :)\n\tgoulo: But seriously, I think we both made various silly errors. I am continually impressed by how subtle and deep and non-obvious this game is. Since it has a space empire theme, I sometimes find myself playing it with a "wargame" mentality instead of an "abstract strategy game" mentality, and that doesn't work well in Homeworlds. :)\n\nHomeworlds Online (SDG# 19873)\nVariants: "Hard time"\nStarted: 2011.5.2, Ended: 2011.5.28\nParticipants: Remneb (S), nycavri (N)\nWinner: Remneb\n\n1) nycavri: Homeworld B1 Y2 G3\n\tnycavri: TaGG!\n\n2) Remneb: Homeworld R2 B3 G3\n\tRemneb: Have a good game.\n\n3) nycavri: B G1 Nycavri\n\n4) Remneb: Build G1 Remneb\n\n5) nycavri: Trade G1 Y1 Nycavri\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) nycavri: Build G1 Nycavri\n\n8) Remneb: Build G1 Remneb\n\n9) nycavri: Discover G1 Nycavri Y3 Deacon\n\n10) Remneb: Discover G1 Remneb Y1 Sirius\n\n11) nycavri: Build Y2 Nycavri\n\n12) Remneb: Build Y2 Remneb\n\n13) nycavri: Discover Y2 Nycavri G3 May\n\n14) Remneb: Move Y2 Remneb Sirius\n\n15) nycavri: Build Y3 May\n\n16) Remneb: Build Y3 Remneb\n\n17) nycavri: Discover Y2 May B1 Mercury\n\n18) Remneb: Move Y3 Remneb Mercury\n\n19) nycavri: Build G1 Deacon\n\n20) Remneb: Build G2 Remneb\n\n21) nycavri: Move G1 Deacon Sirius\n\n22) Remneb: Move G2 Remneb Mercury\n\n23) nycavri: Move G1 Deacon Mercury\n\n24) Remneb: Build Y3 Remneb\n\n25) nycavri: Sacrifice Y2 Mercury\nMove G1 Mercury Remneb\nMove G1 Sirius Remneb\n\n26) Remneb: Move G3 Remneb Mercury\n\n27) nycavri: Build Y2 May\n\n28) Remneb: Attack G1 Remneb\n\n29) nycavri: Build G2 Nycavri\n\n30) Remneb: Attack G1 Remneb\n\n31) nycavri: Move Y2 May Mercury\n\n32) Remneb: Trade Y1 R1 Remneb\n\n33) nycavri: Trade Y2 R2 Mercury\n\n34) Remneb: Sacrifice R1 Remneb\nAttack R2 Mercury\n\n35) nycavri: Discover G2 Nycavri B3 Taylor\n\n36) Remneb: Sacrifice Y2 Sirius\nMove G3 Mercury May\nMove G3 May Nycavri\n\n37) nycavri: Trade G3 R3 Nycavri\n\n38) Remneb: Sacrifice R2 Mercury\nAttack R3 Nycavri\nAttack Y1 Nycavri\n\n\tRemneb: Thanks for the game\n\nHomeworlds Online (SDG# 19880)\nVariants: "Hard time"\nStarted: 2011.5.3, Ended: 2011.5.13\nParticipants: OnePageWars (S), Kermit (N)\nWinner: OnePageWars\n\n1) Kermit: Homeworld Y3 B1 G3\n\n2) OnePageWars: Homeworld B3 G2 Y3\n\n3) Kermit: Build G1 Kermit\n\n4) OnePageWars: Build Y1 Onepagewars\n\n\tOnePageWars: sorry.\n\nHomeworlds Online (SDG# 19906)\nVariants: "Hard time"\nStarted: 2011.5.6, Ended: 2011.5.18\nParticipants: goulo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) goulo: Homeworld R1 B2 G3\n\tgoulo: hi, thanks for the challenge, have fun!\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: you too. I hope it actually is a challenge.\n\n4) goulo: Build G1 Goulo\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) goulo: Build G1 Goulo\n\n9) SilentTitan: Discover G1 Silenttitan B1 Sol\n\n10) goulo: Discover G1 Goulo Y3 Citroneto\n\n11) SilentTitan: Move Y1 Silenttitan Sol\n\n12) goulo: Discover G1 Citroneto Y1 Topazeto\n\n13) SilentTitan: Discover G1 Sol Y3 Sole\n\n14) goulo: Build Y2 Goulo\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) goulo: Build G2 Topazeto\n\n17) SilentTitan: Trade G3 R3 Silenttitan\n\n18) goulo: Build Y2 Goulo\n\n19) SilentTitan: Build G2 Sole\n\n20) goulo: Trade Y1 R1 Goulo\n\n21) SilentTitan: Discover G2 Sole B1 Cook\n\n22) goulo: Trade Y2 B2 Goulo\n\n23) SilentTitan: Build G2 Sole\n\n24) goulo: Sacrifice G1 Topazeto\nBuild B1 Goulo\n\n25) SilentTitan: Trade G2 Y2 Cook\n\n26) goulo: Move B2 Goulo Sole\n\n27) SilentTitan: Sacrifice Y2 Cook\nMove G2 Sole Goulo\nMove G1 Sole Goulo\n\n28) goulo: Trade G3 Y3 Goulo\n\n29) SilentTitan: Sacrifice R3 Silenttitan\nAttack B1 Goulo South\nAttack R1 Goulo South\nAttack Y2 Goulo South\n\n30) goulo: Move G2 Topazeto Silenttitan\n\tgoulo: Good one; I didn't expect sacrifice R3...\n\n31) SilentTitan: Sacrifice G2 Goulo\nBuild Y1 Goulo\nBuild Y1 Goulo\nCatastrophe Goulo Yellow\n\tSilentTitan: I saw it at the last second\n\tgoulo: Thanks for the game!\n\n\nHomeworlds Online (SDG# 19836)\nVariants: "Unrated"\nStarted: 2011.5.6, Ended: 2011.10.19\nParticipants: AnalogKid (S), alexcobo (W), lorgar (N), OnePageWars (E)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) OnePageWars: Homeworld G3 B2 Y3\n\n3) AnalogKid: Homeworld B2 Y1 G3\n\n4) alexcobo: Homeworld G3 B2 Y3\n\tAnalogKid: Hello everyone! 4-player Homeworlds will be a new experience for me. I hope that you all have a good game :)\n\tOnePageWars: ditto.\n\talexcobo: Have fun, everyone.\n\n5) lorgar: Build G1 Lorgar\n\n6) OnePageWars: Build Y1 Onepagewars\n\n7) AnalogKid: Build G1 Analogkid\n\tOnePageWars: i always like the first move after my homeworld is created. It's so easy to decide what to do. :)\n\n8) alexcobo: Build Y1 Alexcobo\n\n9) lorgar: Build G1 Lorgar\n\n10) OnePageWars: Trade Y1 G1 Onepagewars\n\n11) AnalogKid: Discover G1 Analogkid G3 Endor\n\tOnePageWars: I've noticed that many homeworlds games end up having themed planet names. I was wondering if anyone wanted to agree on a theme or if it was going to be free-for-all in name choosing. If noone likes the idea, thats fine.\n\tOnePageWars: my vote personally would either be for a star wars theme, a phantome of the opera theme, or a Game theme. (chess world, checkers world, fortac world, etc.)\n\n12) alexcobo: Trade Y1 G1 Alexcobo\n\n13) lorgar: Trade G1 B1 Lorgar\n\n14) OnePageWars: Build Y1 Onepagewars\n\n15) AnalogKid: Build G1 Analogkid\n\n16) alexcobo: Build Y1 Alexcobo\n\talexcobo: "A small Rebel ship passed through the energy shield and landed on Endor"\r\n"Yes, I know"\n\n17) lorgar: Discover B1 Lorgar G2 Chasmcity\n\n18) OnePageWars: Trade Y1 R1 Onepagewars\n\tlorgar: meanwhile, elsewhere, some infamous Ultras discovered the strange features of a new acid world and founded chasm city.\n\n19) AnalogKid: Build G2 Analogkid\n\tOnePageWars: Then The world from the east overturned their massive powerdecks on a Y1 and installed huge blasters.\n\n20) alexcobo: Sacrifice Y3 Alexcobo\nDiscover G1 Alexcobo R1 Impendingdoom\nMove G1 Impendingdoom Endor\nMove G1 Endor Analogkid\nCatastrophe Analogkid G\n\n21) lorgar: Build B1 Chasmcity\n\talexcobo: I know I am next... but I could not help myself... :-)\n\tAnalogKid: Huh ... I really thought no one would do that since it would put one too far behind. *shrug* oh well :)\n\n22) OnePageWars: Build Y1 Onepagewars\n\n23) alexcobo: Build Y1 Alexcobo\n\tOnePageWars: The factories of OnePageWars were busy churning out a new fleet of ships. A small fleet with huge powerdecks.\n\n24) lorgar: Trade B1 R1 Chasmcity\n\n25) OnePageWars: Trade Y1 B1 Onepagewars\n\tlorgar: as soon as the news of the OnePageWars plans of fleet domination reached the newly founded system, the local government ordered the law enforcers to create and train militias.\n\n26) alexcobo: Build Y1 Alexcobo\n\tOnePageWars: Soon thereafter, onepagewars again traded, this time having a shiny new ship with many diplomats to show for it.\n\n27) lorgar: Build B1 Chasmcity\n\n28) OnePageWars: Build R1 Onepagewars\n\tlorgar: as the militarist faction grew more powerful, the endor trading association (ETA) decided to build a new ship\n\n29) alexcobo: Trade Y1 R1 Alexcobo\n\tOnePageWars: As OPW's neighbors grew more powerful, the government was forced to build another red ship in order to keep the peace on their own planets.\n\n30) lorgar: Trade B1 Y1 Chasmcity\n\n31) OnePageWars: Build Y1 Onepagewars\n\tlorgar: in this age of interstellar totalitarism, the endor trading merchant opened their first trading route to chasm city, buying there ships and facilities.\n\n32) alexcobo: Trade Y1 G1 Alexcobo\n\tOnePageWars: And for the umpteenth time, another small ship with huge powerdecks was created from the secret onepagewars factories.\n\n33) lorgar: Trade G1 R1 Lorgar\n\n34) OnePageWars: Discover Y1 Onepagewars B1 Pointy\n\n35) alexcobo: Build G1 Alexcobo\n\tOnePageWars: When the onepagewars diplomats saw that their narration had become excessibely repetitive, they were forced to do something new. So they discovered a plantet. So exciting.\n\n36) lorgar: Build R2 Chasmcity\n\tlorgar: after a loooong political battle, the militarists drew there gun and shot the chasm city democratic council, therefore becoming the new government. as what they are they bought a biiig battleship and threw a party on the spitshining new deck\n\n37) OnePageWars: Build R2 Onepagewars\n\n38) alexcobo: Build R2 Alexcobo\n\tOnePageWars: Scared silly by the huge r2, onepagewars is forced by their own citizens to match the fleet. But The system may not be able to support that many red ships. If an enemy came in, the red ships could become junk!\n\tlorgar: in front of all that silly display of guns, chasmcity woman liberation front threw a huge hippie party in front of the army facilities, the army slogan FTA (turned round and round until becoming something utterly different)\n\tOnePageWars: The onepagewars diplomats went and got some cups of coffee.\n\n39) lorgar: Trade R2 Y2 Chasmcity\n\n40) OnePageWars: Move R2 Onepagewars Pointy\n\n41) alexcobo: Build Y1 Alexcobo\n\tOnePageWars: The Captain of a r2 ship, impatient with the lack of action, disobeyed orders and piloted his ship to pointy.\n\n42) lorgar: Trade Y1 G1 Chasmcity\n\n43) OnePageWars: Build G2 Onepagewars\n\n44) alexcobo: Discover G1 Alexcobo B1 Caprica\n\tOnePageWars: Silence from the enemy could mean nothing good. Onepagewars diplomats decided to play it safe and build a fairly large shopping mall to float around in space. Then they could build whatever ships they needed.\n\n45) lorgar: Sacrifice Y2 Chasmcity\nMove G1 Chasmcity Pointy\nMove G1 Pointy Onepagewars\nCatastrophe Onepagewars Green\n\n46) OnePageWars: Trade B1 G1 Onepagewars\n\tlorgar: OH MY GOD!\r\nsaid the poor pilot, as his malfunctionning engine brought him straight in the shiny wall of the onepagewalls shopping mall,\r\n\r\nthrough a communiqué, the authorities of chasm city stated that they would help their friend and ally onepagewars and that such attack was from secret agents of the alexcobo faction, they extend a hand, saying that this costed them a medium commercial/line ship sabotaged by the agents, allowing them to escape from chasmcity and attacking opw homesystem.\n\tOnePageWars: great storyline. Not so great that you catastrophically caused a catostropic catastrophe that was written about with catostropic spelling. :)\n\n47) alexcobo: Build Y1 Alexcobo\n\tOnePageWars: Recovering from the devestating ruins, onepagewars was forced to trade their b1 ship for a g1 in order to rebalance the economy and allow future building of ships.\n\n48) lorgar: Build R2 Chasmcity\n\n49) OnePageWars: Build Y1 Onepagewars\n\n50) alexcobo: Discover Y1 Alexcobo G1 Scorpia\n\tOnePageWars: Overcome by poverty, the onepage wars economy did not allow for the usual transmission of data.\n\n51) lorgar: Trade R2 Y2 Chasmcity\n\n52) OnePageWars: Build G2 Onepagewars\n\n53) alexcobo: Build G2 Caprica\n\n54) lorgar: Build G2 Lorgar\n\n55) OnePageWars: Move G2 Onepagewars Pointy\n\n56) alexcobo: Build Y2 Scorpia\n\n57) lorgar: Build R2 Chasmcity\n\n58) OnePageWars: Build Y2 Pointy\n\n59) alexcobo: Build Y2 Alexcobo\n\n60) lorgar: Move R2 Chasmcity Endor\n\n61) OnePageWars: Trade R1 B1 Onepagewars\n\n62) alexcobo: Trade Y2 B2 Alexcobo\n\n63) lorgar: Build B2 Chasmcity\n\n64) OnePageWars: Build R1 Pointy\n\n65) alexcobo: Build Y2 Alexcobo\n\n66) lorgar: Build R2 Chasmcity\n\n67) alexcobo: Move B2 Alexcobo Pointy\n\n68) lorgar: Discover B1 Chasmcity G3 Ialk\n\n69) alexcobo: Sacrifice R1 Alexcobo\nAttack R2E Pointy\n\n70) lorgar: Move R1 Chasmcity Ialk\n\n71) alexcobo: Sacrifice Y1 Alexcobo\nMove G2 Caprica Onepagewars\n\n72) lorgar: Build R1 Ialk\n\n73) alexcobo: Sacrifice R2 Pointy\nAttack R1E Pointy\nAttack R1E Onepagewars\n\n74) lorgar: Attack G1S Endor\n\n75) alexcobo: Attack G2E Pointy\n\n76) lorgar: Move R2 Chasmcity Caprica\n\n77) alexcobo: Sacrifice G1 Caprica\nBuild G1 Pointy\n\tAnalogKid: What's going on in this game? It's weird, but when I look at this page there is no list of players and it doesn't indicate who's turn it is. I tried to resign, but the game still shows up in my list of active games (well not so active now) ... *sigh*\n\tAnalogKid: Btw, my game list says "Opponent's time is up, -51d:21h" for this game but now I see that there has been a bunch of new activity in the last 10 days ... once again, weird.\n\n78) lorgar: Build B2 Ialk\n\n79) alexcobo: Attack G1E Onepagewars\n\n80) lorgar: Build B3 Chasmcity\n\talexcobo: The Capricans discover new techlology: Teleporting!\n\n81) alexcobo: Sacrifice Y2 Scorpia\nMove G1 Onepagewars Lorgar\nMove G2 Onepagewars Lorgar\nCatastrophe Lorgar G\n\n82) lorgar: Move B3 Chasmcity Lorgar\n\n83) alexcobo: Attack Y2E Pointy\n\n84) lorgar: Sacrifice Y2 Chasmcity\nMove B2 Ialk Pointy\nMove B1 Ialk Pointy\nCatastrophe Pointy Blue\n\n85) alexcobo: Attack B1E Onepagewars\n\n86) lorgar: Sacrifice B2 Chasmcity\nTrade G1 B1 Endor\nTrade R1 B1 Ialk\n\n\n87) alexcobo: Attack Y1E Onepagewars\n\n88) lorgar: Trade R2 Y2 Caprica\n\n89) alexcobo: Discover B1 Onepagewars G3 Foolmetwice\n\n90) lorgar: Move B3 Lorgar Onepagewars\n\n91) alexcobo: Move R1 Onepagewars Scorpia\n\n92) lorgar: Sacrifice R1 Ialk\nAttack Y3E Onepagewars\n\n93) alexcobo: Build B2 Foolmetwice\n\n94) lorgar: Sacrifice Y2 Caprica\nMove B3 Onepagewars Scorpia\nMove B3 Scorpia Alexcobo\n\n95) alexcobo: Sacrifice Y2 Alexcobo\nDiscover R2 Alexcobo Y1 Salto\nDiscover R2 Salto Y2 Otrosalto\n\n96) lorgar: Sacrifice R2 Endor\nAttack Y1W Alexcobo\nAttack G1W Alexcobo\n\n\nHomeworlds Online (SDG# 19846)\nStarted: 2011.5.7, Ended: 2011.6.27\nParticipants: Mandrel (S), OnePageWars (N)\nWinner: Mandrel\n\n1) OnePageWars: Homeworld B3 G2 Y3\n\n2) Mandrel: Homeworld B1 R2 G3\n\n3) OnePageWars: Build Y1 Onepagewars\n\tMandrel: Have a good game.\n\tOnePageWars: thanks, you too!\n\n4) Mandrel: B G1 Mandrel\n\n5) OnePageWars: Trade Y1 G1 Onepagewars\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) OnePageWars: Build Y1 Onepagewars\n\n8) Mandrel: Build G1 Mandrel\n\n9) OnePageWars: Trade Y1 B1 Onepagewars\n\n10) Mandrel: Trade G1 B1 Mandrel\n\n11) OnePageWars: Build G1 Onepagewars\n\n12) Mandrel: B B2 Mandrel\n\n13) OnePageWars: Build Y1 Onepagewars\n\n14) Mandrel: Trade B1 R1 Mandrel\n\n15) OnePageWars: Trade G1 R1 Onepagewars\n\n16) Mandrel: Discover B2 Mandrel G3 Anticipation\n\n17) OnePageWars: Build R1 Onepagewars\n\n18) Mandrel: Move R1 Mandrel Anticipation\n\n19) OnePageWars: Discover R1 Onepagewars G1 Overextended\n\n20) Mandrel: Build R2 Anticipation\n\n21) OnePageWars: Build R2 Overextended\n\n22) Mandrel: Trade R1 Y1 Anticipation\n\n23) OnePageWars: Build B1 Onepagewars\n\n24) Mandrel: Build Y2 Mandrel\n\n25) OnePageWars: Build G1 Onepagewars\n\n26) Mandrel: Sacrifice Y2 Mandrel\nMove B2 Anticipation Overextended\nMove B2 Overextended Onepagewars\nCatastrophe Onepagewars Blue\n\n\nHomeworlds Online (SDG# 19900)\nVariants: "Hard time"\nStarted: 2011.5.7, Ended: 2011.5.21\nParticipants: ajo (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\n2) ajo: Homeworld R1 B3 G3\n\tDanner: Hi! Have a nice game!\n\tDanner: I usually let my opponent make the starting move, but if you prefer not to do, just pass.\n\n3) Danner: Homeworld G2 B1 R3\n\n4) ajo: Build G1 Ajo\n\n5) Danner: Build R1 Danner\n\tajo: Oh, I didn't even notice your comment. That's okay, I don't mind going first. :)\n\tDanner: :)\n\n6) ajo: Build G1 Ajo\n\n7) Danner: Build R1 Danner\n\n8) ajo: Trade G3 Y3 Ajo\n\n9) Danner: Trade R3 G3 Danner\n\n10) ajo: Build G1 Ajo\n\n11) Danner: Build R2 Danner\n\n12) ajo: Discover G1 Ajo B2 Alpha\n\n13) Danner: Trade R2 Y2 Danner\n\n14) ajo: Build G2 Alpha\n\n15) Danner: Discover R1 Danner Y3 Artemus\n\n16) ajo: Trade G2 R2 Alpha\n\n17) Danner: Build R2 Danner\n\n18) ajo: Build G2 Alpha\n\n19) Danner: Discover R2 Danner G3 Trickster\n\n20) ajo: Trade G2 Y2 Alpha\n\n21) Danner: Sacrifice G3 Danner\nBuild R2 Trickster\nBuild R3 Artemus\nBuild R3 Danner\n\n22) ajo: Build R3 Alpha\n\n23) Danner: Sacrifice Y2 Danner\nMove R1 Artemus Alpha\nMove R2 Trickster Alpha\nCatastrophe Alpha R\n\n24) ajo: Build G2 Alpha\n\n25) Danner: Move R3 Artemus Alpha\n\n26) ajo: Sacrifice Y2 Alpha\nDiscover G1 Alpha B3 Beta\nMove G2 Alpha Beta\n\tajo: Yeah, I was worried about that...\n\n27) Danner: Trade R3 Y3 Alpha\n\n28) ajo: Trade G1 B1 Beta\n\n29) Danner: Build R1 Trickster\n\n30) ajo: Build G1 Ajo\n\n31) Danner: Build R2 Danner\n\n32) ajo: Discover G1 Ajo B2 Gamma\n\n33) Danner: Sacrifice Y3 Alpha\nMove R2 Trickster Gamma\nMove R2 Danner Beta\nDiscover R1 Danner G3 Garrett\n\n34) ajo: Sacrifice G1 Gamma\nBuild B1 Beta\n\n35) Danner: Attack G2S Beta\n\n36) ajo: Build Y1 Ajo\n\n37) Danner: Sacrifice R2 Gamma\nAttack B1S Beta\nAttack B1S Beta\n\tajo: I'm definitely losing at this point.\n\tDanner: I think you are right. But there is still a chance that I will make some terrible mistake.\n\n38) ajo: Build Y1 Ajo\n\n39) Danner: Build R2 Beta\n\n40) ajo: Discover Y1 Ajo B2 Yech\n\n41) Danner: Build R2 Garrett\n\n42) ajo: Sacrifice G1 Ajo\nBuild Y1 Yech\n\n43) Danner: Build R3 Beta\n\n44) ajo: Build Y2 Ajo\n\n45) Danner: Trade R3 Y3 Beta\n\n46) ajo: Trade Y3 G3 Ajo\n\n47) Danner: Build R3 Danner\n\n48) ajo: Build Y2 Ajo\n\n49) Danner: Trade R3 Y3 Danner\n\n50) ajo: Trade Y2 B2 Ajo\n\n51) Danner: Move B1 Beta Yech\n\n52) ajo: Build Y2 Ajo\n\n53) Danner: Sacrifice Y3 Beta\nMove B1 Beta Yech\nMove B1 Yech Ajo\nMove B1 Yech Ajo\nCatastrophe Ajo B\n\n\tDanner: Thanks for the game!\n\nHomeworlds Online (SDG# 19750)\nStarted: 2011.5.8, Ended: 2011.5.11\nParticipants: dragmio (S), mathochist (N)\nWinner: dragmio\n\n\nHomeworlds Online (SDG# 19916)\nVariants: "Hard time"\nStarted: 2011.5.9, Ended: 2011.5.24\nParticipants: TwoShort (S), AdamBadura (N)\nWinner: TwoShort\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\tTwoShort: Howdy\n\n4) TwoShort: Build G1 Twoshort\n\n5) AdamBadura: Trade Y1 G1 Adambadura\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) AdamBadura: Build Y1 Adambadura\n\n8) TwoShort: Build G1 Twoshort\n\n9) AdamBadura: Trade Y1 R1 Adambadura\n\n10) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\n11) AdamBadura: Build R1 Adambadura\n\n12) TwoShort: Build G1 Yolonda\n\n13) AdamBadura: Build G2 Adambadura\n\n14) TwoShort: Build G2 Twoshort\n\n15) AdamBadura: Discover G1 Adambadura Y1 Ontheway\n\n16) TwoShort: Discover G1 Yolonda Y1 Yoyodyne\n\n17) AdamBadura: Build G2 Ontheway\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Yolonda\nBuild G3 Twoshort\nBuild Y2 Twoshort\n\n19) AdamBadura: Move R1 Adambadura Ontheway\n\n20) TwoShort: Trade G2 R2 Twoshort\n\n21) AdamBadura: Build R2 Adambadura\n\n22) TwoShort: Sacrifice G3 Yolonda\nBuild G2 Yoyodyne\nBuild G3 Yolonda\nBuild Y2 Twoshort\n\n23) AdamBadura: Sacrifice G2 Adambadura\nBuild Y2 Adambadura\nBuild Y3 Adambadura\n\n24) TwoShort: Sacrifice Y2 Twoshort\nDiscover Y1 Twoshort B3 Bluonia\nDiscover G1 Yolonda B1 Bluestar\n\n25) AdamBadura: Move Y3 Adambadura Ontheway\n\n26) TwoShort: Sacrifice G3 Yolonda\nBuild Y2 Twoshort\nBuild Y3 Bluonia\nBuild G2 Bluestar\n\n27) AdamBadura: Discover Y3 Ontheway G3 Siege\n\n28) TwoShort: Trade G2 B2 Bluestar\n\n29) AdamBadura: Build R2 Ontheway\n\n30) TwoShort: Build B1 Bluestar\n\n31) AdamBadura: Move R1 Ontheway Siege\n\n32) TwoShort: Trade Y1 B1 Bluonia\n\n33) AdamBadura: Build R3 Siege\n\n34) TwoShort: Sacrifice Y3 Bluonia\nMove G1 Bluestar Adambadura\nMove G1 Yoyodyne Adambadura\nMove G2 Yoyodyne Adambadura\n\n35) AdamBadura: Sacrifice Y3 Adambadura\nMove R1 Siege Twoshort\nMove R3 Siege Twoshort\nMove Y3 Siege Twoshort\nCatastrophe Twoshort R\nCatastrophe Adambadura G\n\n36) TwoShort: Build Y1 Twoshort\nCatastrophe Twoshort Yellow\n\tAdamBadura: Did you or didn't you want to catastrophe my system? If yes then undo and catastrophe. If not then confirm here please.\n\tTwoShort: I intentionally skipped the catastrophe. \n\n37) AdamBadura: Sacrifice Y2 Adambadura\nMove R2 Ontheway Twoshort\nMove G2 Ontheway Twoshort\n\tAdamBadura: Is it that I can make only one catastrophe per turn? Also sorry for the very long delays. My wife is in here final days of pregnecy and I have to help here more.\n\tTwoShort: You should be able to catastrophe both my world and yours; and yeah, I didn't see you could wipe out my red and move in the 3; and good luck with the baby!\n\n38) TwoShort: Trade B2 R2 Bluestar\n\tAdamBadura: The first time I must have not put command for the second catastrophe as this time it did work.\n\n39) AdamBadura: Trade R2 G2 Twoshort\n\tAdamBadura: Great. But what now? ;)\n\n40) TwoShort: Trade G3 Y3 Twoshort\n\tAdamBadura: Lots of sacrifices recently... ;)\n\n41) AdamBadura: Build G1 Twoshort\n\n42) TwoShort: Sacrifice R2 Bluestar\nAttack G2 Twoshort\nAttack G2 Twoshort\n\n43) AdamBadura: Build G1 Twoshort\nCatastrophe Twoshort G\n\n44) TwoShort: Trade Y3 G3 Twoshort\n\tAdamBadura: Its a girl!\n\n45) AdamBadura: Move G1 Ontheway Twoshort\n\tTwoShort: Congratulations!\n\n46) TwoShort: Trade G3 R3 Twoshort\n\n47) AdamBadura: Build G1 Twoshort\n\n48) TwoShort: Attack G1 Twoshort\n\n49) AdamBadura: Build G1 Twoshort\n\tAdamBadura: Somehow I haven't considered changing into R... I think I lost the game...\n\n50) TwoShort: Sacrifice G1 Twoshort\nBuild B2 Bluestar\n\tTwoShort: Yeah... I haven't seen any better options for you since the homeworld catastrophes. But then again I didn't see how those were going to work out at all, so I've been nervous. I still think I have you now, but it's more turns away then I'd like. :)\n\n51) AdamBadura: Build G1 Twoshort\n\n52) TwoShort: Attack G1 Twoshort\n\n53) AdamBadura: Build G2 Twoshort\nCatastrophe Twoshort G\n\n54) TwoShort: Trade B2 G2 Bluestar\n\n\tAdamBadura: No point in continueing. I don't want you to stop from other games (or others from challenging you!).\n\nHomeworlds Online (SDG# 19823)\nStarted: 2011.5.10, Ended: 2011.5.12\nParticipants: dragmio (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B3 G3\n\n2) dragmio: Homeworld G3 B2 Y3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tdragmio: ty\r\nyou too\n\n4) dragmio: Build Y1 Dragmio\n\n5) ts52: Trade G1 R1 Ts52\n\n6) dragmio: Trade Y3 R3 Dragmio\n\n7) ts52: Build R1 Ts52\n\n8) dragmio: Build Y1 Dragmio\n\n9) ts52: Build G1 Ts52\n\n10) dragmio: Discover Y1 Dragmio G1 Dragmio2\n\n11) ts52: Discover R1 Ts52 G1 Robin\n\n12) dragmio: Build R1 Dragmio\n\n13) ts52: Build R2 Ts52\n\n14) dragmio: Move R3 Dragmio Robin\n\n15) ts52: Move R2 Ts52 Dragmio2\n\n16) dragmio: Attack R1N Robin\n\n17) ts52: Attack Y1 Dragmio2\n\n18) dragmio: Build R2 Dragmio\n\n19) ts52: Build R2 Ts52\n\n20) dragmio: Build R3 Dragmio\n\n21) ts52: Move R2 Dragmio2 Dragmio\nCatastrophe Dragmio Red\n\n22) dragmio: Build Y1 Dragmio\n\n23) ts52: Build Y2 Dragmio2\n\n24) dragmio: Sacrifice Y1 Dragmio\nMove R3 Robin Dragmio\n\n25) ts52: Build G2 Ts52\n\n26) dragmio: Move R3 Dragmio Dragmio2\n\n27) ts52: Move Y2 Dragmio2 Dragmio\n\n28) dragmio: Attack Y1 Dragmio2\n\n29) ts52: Sacrifice R1 Ts52\nAttack Y1 Dragmio\n\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 19946)\nStarted: 2011.5.10, Ended: 2011.6.7\nParticipants: ts52 (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Build G1 Lorgar\n\n6) ts52: Build G2 Ts52\n\n7) lorgar: Trade G1 B1 Lorgar\n\n8) ts52: Trade G2 B2 Ts52\n\n9) lorgar: Discover B1 Lorgar G2 Amarante\n\n10) ts52: Discover B2 Ts52 G3 Kermit\n\n11) lorgar: Build B1 Amarante\n\n12) ts52: Trade G1 Y1 Ts52\n\n13) lorgar: Trade B1 Y1 Amarante\n\n14) ts52: Build G1 Ts52\n\n15) lorgar: Build Y2 Amarante\n\n16) ts52: Move Y1 Ts52 Kermit\n\n17) lorgar: Trade Y2 R2 Amarante\n\tlorgar: How old are you?\n\n18) ts52: Trade G1 R1 Ts52\n\n19) lorgar: Build G1 Lorgar\n\n20) ts52: Build Y2 Kermit\n\n21) lorgar: Discover G1 Lorgar B2 Marigot\n\tts52: 35 last week. You?\n\n22) ts52: Trade Y2 R2 Kermit\n\tlorgar: happy birthday :)\r\nI'm 20.\r\nWhat kind of game you like to play? I'd bet my money on chess. maybe a little bit of poker or mahjong (the four player kind, not the solitaire, computer based heretic ersatz)\n\n23) lorgar: Build G1 Lorgar\n\tts52: Thanks. I haven't played chess in a long time. I do like Go, but don't play very often. We've been playing a lot of Zark City at work over lunch, and Ascension. Really a lot of card games. I really like Volcano too, but I mainly play that here, not so much in persion. Except when I make it to Origins...\n\tlorgar: what kind of work you do?\n\n24) ts52: Build G2 Ts52\n\n25) lorgar: Build G2 Marigot\n\tts52: I'm a computer engineer. I work on computer design verification. Trying to help make sure the design will work before they spend millions to fabricate it. What do you do?\n\n26) ts52: Move G2 Ts52 Kermit\n\tlorgar: cool... I am a musician. student that is XD\r\nI still go to school (http://www.ecolenormalecortot.com/) and have a lot of exams and competitions. that sucks -_-\r\nI dont like cities, too many people... And I have to stay in paris three days a week. or a whole week when I have exams.\n\n27) lorgar: Build Y2 Amarante\n\tts52: Sorry, I can't have too much sympathy for you having to stay in Paris... Sometimes I wish I'd studied music more. I played saxaphone all through college at least some, but have barely touched it since. What's you favorite instrument?\n\tlorgar: I'd say cello, thats what I do. I love piano too.It is just a bit less fun when you cant play what you would like. and all the suckers trying to evict you.\r\nwhere are you? america? GB?\n\n28) ts52: Discover G2 Kermit Y2 Birbird\n\n29) lorgar: Trade G1 R1 Lorgar\n\tts52: That stinks. I'm in America, Massachusetts \n\n30) ts52: Build G1 Ts52\n\n31) lorgar: Sacrifice Y2 Amarante\nDiscover G2 Marigot Y3 Ark\nDiscover G1 Marigot Y3 Stark\n\tlorgar: near the MIT?\n\n32) ts52: Move G2 Birbird Stark\n\n33) lorgar: Discover G1 Stark B2 Meth\n\tts52: About 30 minutes drive away from MIT.\n\n34) ts52: Move R2 Kermit Meth\n\tlorgar: wow *_*\r\nbtw : I GOT MY EXAM, I'm NOW OFFICIALY A FLIPPIN' MUSICIAN STUDENT WHITH THE CARD AND EVERYTHING!\n\n35) lorgar: Sacrifice G3 Lorgar\nBuild R1 Amarante\nBuild Y2 Amarante\nBuild G3 Lorgar\n\tts52: congrats!\n\n36) ts52: Attack G1 Meth\n\n37) lorgar: Move R2 Amarante Ark\n\n38) ts52: Build Y2 Kermit\n\n39) lorgar: Move Y2 Amarante Kermit\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Meth\nBuild R3 Ts52\n\n41) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild Y2 Kermit\nBuild R3 Ark\nCatastrophe Kermit Yellow\n\n42) ts52: Trade R2 Y2 Meth\n\n43) lorgar: Sacrifice G3 Lorgar\nBuild R2 Lorgar\nBuild R3 Amarante\nBuild G3 Lorgar\n\n44) ts52: Move R3 Ts52 Kermit\n\n45) lorgar: Trade R2 Y2 Lorgar\n\n46) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Meth\nBuild R2 Ts52\n\n47) lorgar: Sacrifice Y2 Lorgar\nMove R3 Ark Meth\nMove R3 Amarante Ark\n\n48) ts52: S Y2 Meth\nM R1 Ts52 Ark\nM R2 Meth Ark\nC Ark Red\n\n49) lorgar: Attack Y1S Meth\n\n50) ts52: T B2 Y2 Kermit\n\n51) lorgar: Sacrifice G3 Lorgar\nBuild Y2 Amarante\nBuild Y2 Meth\nBuild G3 Lorgar\n\n52) ts52: B R1 Ts52\n\n53) lorgar: Sacrifice Y2 Amarante\nMove R3 Meth Stark\nMove R1 Amarante Ark\n\n54) ts52: M G2 Stark Amarante\n\n55) lorgar: Sacrifice Y1 Amarante\nMove B1 Amarante Stark\n\n56) ts52: Trade R2 B2 Ts52\n\n57) lorgar: Sacrifice G3 Lorgar\nBuild B1 Stark\nBuild R2 Lorgar\nBuild G3 Lorgar\n\n58) ts52: M B2 Ts52 Kermit\n\n59) lorgar: Sacrifice Y2 Meth\nMove B1 Stark Ts52\nMove G2 Ark Ts52\n\n60) ts52: A G2 Ts52\n\n61) lorgar: Sacrifice G3 Lorgar\nBuild B3 Ts52\nBuild B3 Ts52\nBuild G3 Lorgar\nCatastrophe Ts52 Blue\n\n62) ts52: Sacrifice B2 Kermit\nTrade G1 B1 Ts52\nTrade G2 B2 Amarante\n\n63) lorgar: Move R3 Stark Amarante\n\n64) ts52: Build R2 Kermit\n\n65) lorgar: Sacrifice R2 Lorgar\nAttack B2S Amarante\nAttack G1S Meth\n\n66) ts52: Move R2 Kermit Meth\n\n67) lorgar: Sacrifice Y1 Meth\nMove G1 Meth Stark\n\n68) ts52: Build R2 Ts52\n\n69) lorgar: Trade B2 Y2 Amarante\n\n70) ts52: Move R2 Ts52 Stark\n\n71) lorgar: Move R3 Amarante Stark\n\n72) ts52: Sacrifice G2 Ts52\nBuild R2 Stark\nBuild R3 Stark\nCatastrophe Stark Red\n\n73) lorgar: Build Y1 Amarante\n\tlorgar: I looked but I do not think anybody wrote a videogame version of homeworld. this display is cool (it should be kept), but what about training offline against an AI? that would be even cooler!\n\n74) ts52: Move R3 Kermit Amarante\n\tts52: that would be pretty cool. though I think writing an good AI would be a challenge\n\n75) lorgar: Sacrifice Y2 Amarante\nDiscover Y1 Amarante B3 Flight\nDiscover Y1 Flight G2 Flees\n\n76) ts52: T R2 G2 Meth\n\n77) lorgar: Sacrifice G3 Lorgar\nBuild G1 Stark\nBuild R2 Ark\nBuild G3 Lorgar\n\n78) ts52: Move Y2 Kermit Meth\n\n79) lorgar: Move R2 Ark Meth\n\n80) ts52: Sacrifice R1 Ts52\nAttack R2 Meth\n\n81) lorgar: Sacrifice G3 Lorgar\nBuild Y1 Flees\nBuild Y2 Flees\nBuild G3 Lorgar\n\n82) ts52: Move R2 Meth Stark\n\n83) lorgar: Sacrifice Y2 Flees\nMove R1 Ark Amarante\nMove B1 Stark Meth\n\n84) ts52: Build G3 Ts52\n\n85) lorgar: Sacrifice G3 Lorgar\nBuild R1 Amarante\nBuild R2 Amarante\nBuild G3 Lorgar\nCatastrophe Amarante Red\n\n86) ts52: Attack G1 Stark\n\tlorgar: playing against you is getting more and more interesting. you do have quite an edge... how many months, years, centuries of practice do you have?\n\tts52: I've been playing homeworlds since maybe 2005? Last year I managed (through luck and my opponents hubris) to win the Homeworlds tournament at Origins.\n\n87) lorgar: Move G1 Stark Ts52\n\n88) ts52: Move G3 Ts52 Stark\n\tlorgar: you think I'm getting better at this? what are my flaws?\n\tts52: I think you\n\tts52: I think you're doing pretty well. You've killed half my homeworld, and that double threat there is a good one. Now I really have to think.\n\n89) lorgar: Sacrifice G3 Lorgar\nBuild B2 Meth\nBuild G2 Ts52\nBuild G3 Lorgar\n\n90) ts52: S R2 Stark\nAttack G2 Ts52\nAttack B2 Meth\n\n\n91) lorgar: Move Y1 Flees Ts52\n\n92) ts52: Sacrifice G3 Stark\nBuild Y2 Meth\nBuild Y2 Meth\nBuild Y3 Meth\n\n93) lorgar: Sacrifice G3 Lorgar\nBuild G3 Ts52\nBuild B2 Meth\nBuild G3 Lorgar\nCatastrophe Meth Blue\nCatastrophe Ts52 Green\n\n94) ts52: Sacrifice G1 Stark\nBuild B1 Ts52\n\n95) lorgar: Sacrifice G3 Lorgar\nBuild Y2 Ts52\nBuild Y2 Ts52\nBuild G1 Lorgar\nCatastrophe Ts52 Yellow\n\n\tlorgar: :D~~~~\r\nrematch?\n\tts52: Of course!\n\nHomeworlds Online (SDG# 19950)\nVariants: "Hard time"\nStarted: 2011.5.12, Ended: 2011.6.22\nParticipants: Subhan64 (S), agentofchaos (N)\nWinner: Subhan64\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld Y3 B1 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\tagentofchaos: b g1 Agentofchaos\n\n4) Subhan64: Build G1 Subhan64\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Subhan64: Build G1 Subhan64\n\n7) agentofchaos: Discover Y1 Agentofchaos G3 Klingsor\n\n8) Subhan64: Discover G1 Subhan64 G2 Ohohoh\n\n9) agentofchaos: Build Y1 Klingsor\n\n10) Subhan64: Build G1 Subhan64\n\n11) agentofchaos: Build G2 Agentofchaos\n\n12) Subhan64: Trade G1 Y1 Subhan64\n\n13) agentofchaos: Build Y2 Klingsor\n\n14) Subhan64: Discover Y1 Subhan64 G2 Hohoho\n\n15) agentofchaos: M Y2 Klingsor Agentofchaos\n\n16) Subhan64: Sacrifice G3 Subhan64\nBuild G1 Subhan64\nBuild G3 Subhan64\nBuild Y2 Hohoho\n\n17) agentofchaos: Build Y2 Agentofchaos\n\n18) Subhan64: Move Y1 Hohoho Klingsor\n\n19) agentofchaos: Move Y1 Klingsor Ohohoh\n\n20) Subhan64: Sacrifice G3 Subhan64\nBuild G3 Subhan64\nBuild Y3 Hohoho\nBuild Y3 Klingsor\n\n21) agentofchaos: Move Y1 Ohohoh Klingsor\nCatastrophe Klingsor Y\n\n22) Subhan64: Sacrifice G3 Subhan64\nBuild G3 Subhan64\nBuild G3 Ohohoh\nBuild Y1 Hohoho\n\n23) agentofchaos: Trade Y2 R2 Agentofchaos\n\n24) Subhan64: Trade G1 B1 Subhan64\n\n25) agentofchaos: Build R1 Agentofchaos\n\n26) Subhan64: Sacrifice B1 Subhan64\nTrade Y2 R2 Hohoho\n\n27) agentofchaos: T R1 B1 Agentofchaos\n\n28) Subhan64: Build R1 Hohoho\n\n29) agentofchaos: B Y1 Agentofchaos\n\n30) Subhan64: Discover R2 Hohoho Y3 Hehehe\n\n31) agentofchaos: Discover Y2 Agentofchaos B3 Deathstar\n\n32) Subhan64: Sacrifice Y3 Hohoho\nMove R1 Hohoho Hehehe\nMove R1 Hehehe Agentofchaos\nMove R2 Hehehe Agentofchaos\nCatastrophe Agentofchaos Red\n\n\tSubhan64: GG, thanks!\n\nHomeworlds Online (SDG# 19813)\nVariants: "No undo"\nStarted: 2011.5.12, Ended: 2011.5.19\nParticipants: ajo (S), dragmio (N)\nWinner: ajo\n\n1) dragmio: Homeworld G3 Y2 B3\n\n2) ajo: Homeworld B1 R2 G3\n\n3) dragmio: Build B1 Dragmio\n\n4) ajo: Build G1 Ajo\n\n5) dragmio: Trade B1 R1 Dragmio\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) dragmio: Discover R1 Dragmio Y1 Dragmio2\n\n8) ajo: Build G1 Ajo\n\n9) dragmio: Build B1 Dragmio\n\n10) ajo: Build Y1 Ajo\n\n11) dragmio: Build B1 Dragmio\n\n12) ajo: Build Y2 Ajo\n\n13) dragmio: Trade B1 G1 Dragmio\n\n14) ajo: Trade Y2 R2 Ajo\n\n15) dragmio: Move G1 Dragmio Dragmio2\n\n16) ajo: Build Y2 Ajo\n\n17) dragmio: Build R1 Dragmio2\n\n18) ajo: Sacrifice Y2 Ajo\nDiscover R2 Ajo B3 Alpha\nMove G1 Ajo Alpha\n\n19) dragmio: Move B3 Dragmio Dragmio2\n\n20) ajo: Build Y2 Ajo\n\tajo: Ooh, dangerous idea, moving your large ship away from your homeworld. Let's see if you can keep it from backfiring on you.\n\n21) dragmio: Move B3 Dragmio2 Alpha\n\tdragmio: Well, if I'm moving it, I might as well go all the way! :)\n\n22) ajo: Sacrifice Y2 Ajo\nMove R2 Alpha Dragmio2\nMove R2 Dragmio2 Dragmio\n\n23) dragmio: Build B1 Dragmio\n\tajo: Check. :)\n\tdragmio: Damn! I didn't know you could do that! Oh well...\n\n24) ajo: Attack B1N Dragmio\n\n25) dragmio: Build B2 Dragmio\n\tajo: Yep, you can sacrifice a y[1,2,3] ship to get [1,2,3] yellow actions anywhere in the galaxy. Check.\n\tdragmio: I believe you, don't worry. It's my second game ever. That's why I'm a bit lost. :)\n\n26) ajo: Trade R2 B2 Dragmio\nCatastrophe Dragmio Blue\n\tajo: Ah, I see. Good game, then. For your next game, remember that it's hard to defend your homeworld without that big ship.\n\tdragmio: Ok. Thanks for the tip. And for the game! :)\n\n\nHomeworlds Online (SDG# 19965)\nStarted: 2011.5.15, Ended: 2011.9.11\nParticipants: Mandrel (S), lorgar (N)\nWinner: Mandrel\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) Mandrel: Homeworld R1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\tMandrel: Have a good game.\n\tlorgar: thx\n\n4) Mandrel: Build G1 Mandrel\n\n5) lorgar: Build G1 Lorgar\n\n6) Mandrel: Build G2 Mandrel\n\n7) lorgar: Trade G3 Y3 Lorgar\n\n8) Mandrel: T G1 Y1 Mandrel\n\n9) lorgar: Discover G1 Lorgar B2 Catonemoidia\n\n10) Mandrel: Discover G2 Mandrel B3 Hunger\n\n11) lorgar: Trade Y3 G3 Lorgar\n\n12) Mandrel: Build Y1 Mandrel\n\tlorgar: I hoped you would fall for the y3 trick... ts52 did. once.\n\n13) lorgar: Build G1 Lorgar\n\n14) Mandrel: Build G2 Mandrel\n\n15) lorgar: Trade G1 R1 Lorgar\n\n16) Mandrel: M Y1 Mandrel Hunger\n\n17) lorgar: Build G1 Catonemoidia\n\n18) Mandrel: S G3 Mandrel\nBuild G2 Mandrel\nBuild G3 Mandrel\nBuild G3 Hunger\n\n19) lorgar: Trade G1 R1 Catonemoidia\n\n20) Mandrel: T G2 R2 Hunger\n\n21) lorgar: Sacrifice G3 Lorgar\nBuild G1 Catonemoidia\nBuild G2 Catonemoidia\nBuild G3 Lorgar\n\n22) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild R2 Hunger\nBuild Y1 Hunger\n\n23) lorgar: Trade G2 Y2 Catonemoidia\n\n24) Mandrel: T G2 B2 Mandrel\n\n25) lorgar: Discover G1 Catonemoidia B3 Lys\n\n26) Mandrel: D Y1 Hunger G2 Full\n\n27) lorgar: Sacrifice G3 Lorgar\nBuild G2 Lys\nBuild Y2 Catonemoidia\nBuild G3 Lorgar\n\n28) Mandrel: S G2 Mandrel\nBuild G2 Hunger\nBuild Y2 Full\n\n29) lorgar: Move Y2 Catonemoidia Lys\n\n30) Mandrel: Sacrifice G3 Hunger\nBuild G3 Hunger\nBuild Y3 Hunger\nBuild Y3 Mandrel\n\n31) lorgar: Sacrifice G3 Lorgar\nBuild R2 Lorgar\nBuild R3 Catonemoidia\nBuild G3 Lorgar\n\n32) Mandrel: B B1 Mandrel\n\n33) lorgar: Trade G1 B1 Lys\n\n34) Mandrel: M B2 Mandrel Hunger\n\n35) lorgar: Sacrifice G3 Lorgar\nBuild G1 Catonemoidia\nBuild G3 Lorgar\nPass\n\n36) Mandrel: M B2 Hunger Full\n\n37) lorgar: Sacrifice Y2 Catonemoidia\nMove G1 Catonemoidia Hunger\nMove G1 Catonemoidia Hunger\nCatastrophe Hunger Green\n\n38) Mandrel: B B3 Full\n\n39) lorgar: Build Y2 Lys\n\n40) Mandrel: Build G1 Mandrel\n\n41) lorgar: Build G1 Lys\n\n42) Mandrel: Sacrifice Y3 Hunger\nMove Y1 Hunger Full\nMove Y1 Full Lorgar\nMove Y2 Full Lorgar\n\n43) lorgar: Sacrifice R2 Lorgar\nAttack Y2S Lorgar\nAttack Y1S Lorgar\n\n44) Mandrel: Move Y1 Full Lorgar\nCatastrophe Lorgar Y\n\n45) lorgar: Sacrifice Y2 Lys\nMove G2 Lys Mandrel\nMove G1 Lys Mandrel\nCatastrophe Mandrel Green\n\n46) Mandrel: Discover B1 Mandrel G3 Dam\n\n47) lorgar: Trade R1 G1 Catonemoidia\n\tlorgar: crappit :<\n\n48) Mandrel: Sacrifice Y3 Mandrel\nMove B1 Dam Lorgar\nMove B3 Full Lorgar\nMove B2 Full Lorgar\nCatastrophe Lorgar Blue\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 19837)\nStarted: 2011.5.17, Ended: 2012.3.25\nParticipants: lorgar (S), OnePageWars (W), dragmio (N), MagicJohn (E)\nWinner: dragmio\n\n1) dragmio: Homeworld G2 Y1 B3\n\n2) MagicJohn: Homeworld G1 Y2 B3\n\n3) lorgar: Homeworld B1 Y2 G3\n\tdragmio: What now? Will we wait for him?\n\tMagicJohn: His history says he was active 5 days ago..... He must still be somewhere in the universe.... Whatchathink?\n\tdragmio: I sent him a PM to make a move but he didn't respond. I dunno...\n\n4) OnePageWars: Homeworld B3 G2 Y3\n\tlorgar: I was in paris, for a week of exams. Playin music is not half as cool as it look like when you gotta do it in a big city -_-\n\n5) dragmio: Build B1 Dragmio\n\tdragmio: Paris? Great! Glad you're back, though. :)\n\n6) MagicJohn: Build B1 Magicjohn\n\n7) lorgar: Build G1 Lorgar\n\n8) OnePageWars: Build Y1 Onepagewars\n\n9) dragmio: Trade B1 Y1 Dragmio\n\n10) MagicJohn: Trade B1 G1 Magicjohn\n\n11) lorgar: Build G1 Lorgar\n\n12) OnePageWars: Trade Y1 B1 Onepagewars\n\n13) dragmio: Build Y1 Dragmio\n\n14) MagicJohn: Build B1 Magicjohn\n\n15) lorgar: Discover G1 Lorgar B3 Roussel\n\n16) OnePageWars: Build Y1 Onepagewars\n\n17) dragmio: Trade Y1 R1 Dragmio\n\n18) MagicJohn: Trade B1 R1 Magicjohn\n\n19) lorgar: Build G1 Lorgar\n\n20) OnePageWars: Build B1 Onepagewars\n\n21) dragmio: Build B1 Dragmio\n\n22) MagicJohn: Build R1 Magicjohn\n\n23) lorgar: Trade G1 R1 Lorgar\n\n24) OnePageWars: Trade B1 G1 Onepagewars\n\n25) dragmio: Build R1 Dragmio\n\n26) MagicJohn: Build R2 Magicjohn\n\n27) lorgar: Build G2 Roussel\n\n28) OnePageWars: Trade Y3 R3 Onepagewars\n\n29) dragmio: Build R2 Dragmio\n\n30) MagicJohn: Trade R2 Y2 Magicjohn\n\n31) lorgar: Trade G2 R2 Roussel\n\n32) OnePageWars: Build R2 Onepagewars\n\n33) dragmio: Trade R2 G2 Dragmio\n\n34) MagicJohn: Build B1 Magicjohn\n\n35) lorgar: Build R2 Roussel\n\n36) OnePageWars: Build Y1 Onepagewars\n\n37) dragmio: Move R1 Dragmio Roussel\n\n38) MagicJohn: Move R1 Magicjohn Roussel\nCatastrophe Roussel Red\n\n39) lorgar: Build G2 Roussel\n\n40) OnePageWars: Discover G1 Onepagewars Y1 Greenishyellow\n\n41) dragmio: Build Y2 Dragmio\n\n42) MagicJohn:\nBuild R1 Magicjohn\n\tOnePageWars: I obviously wasn't coming up with any creative names today. :/\n\n43) lorgar: Trade G1 R1 Roussel\n\n44) OnePageWars: Build B1 Onepagewars\n\n45) dragmio: Discover Y2 Dragmio G3 Srima\n\n46) MagicJohn: Discover B1 Magicjohn G3 Kali\n\n47) lorgar: Build G1 Roussel\n\n48) OnePageWars: Move B1 Onepagewars Greenishyellow\n\n49) dragmio: Sacrifice G2 Dragmio\nBuild Y2 Srima\nBuild Y3 Dragmio\n\n50) MagicJohn: Move Y2 Magicjohn Kali\n\n51) lorgar: Discover G1 Lorgar Y3 Safe\n\n52) OnePageWars: Build B2 Onepagewars\n\n53) dragmio: Sacrifice Y2 Srima\nMove Y3 Dragmio Srima\nMove B1 Dragmio Srima\n\n54) MagicJohn: Sacrifice Y2 Kali\nMove B1 Kali Greenishyellow\nMove B1 Greenishyellow Onepagewars\nCatastrophe Onepagewars Blue\n\n55) lorgar: Build G2 Lorgar\n\n56) OnePageWars: Build G2 Greenishyellow\n\n57) dragmio: Move Y3 Srima Onepagewars\n\n58) MagicJohn: Build B1 Magicjohn\n\n59) lorgar: Discover G2 Lorgar G3 M0\n\n60) lorgar: Sacrifice G2 M0\nBuild G2 Lorgar\nBuild G3 Safe\n\n61) dragmio: Sacrifice R1 Dragmio\nAttack R3W Onepagewars\n\n62) MagicJohn: Discover G1 Magicjohn Y3 Elisian\n\tdragmio: Is this how it supposed to be? R3 appeared after the resignation in OnePageWars system and the oredr of play is reversed.\n\tOnePageWars: I resigned because my homeworld was being invaded.\n\n63) lorgar: Discover G2 Lorgar G3 Plump\n\n64) dragmio: Attack R2W Onepagewars\n\n65) MagicJohn: Build G3 Elisian\n\n66) lorgar: Move G1 Safe Lorgar\n\n67) dragmio: Trade Y1 R1 Dragmio\n\n68) MagicJohn: Move R1 Magicjohn Elisian\n\n69) lorgar: Trade G1 Y1 Roussel\n\n70) dragmio: Move R3 Onepagewars Greenishyellow\n\n71) MagicJohn: Build R2 Magicjohn\n\n72) lorgar: Sacrifice G3 Lorgar\nBuild G1 Safe\nBuild G3 Lorgar\nBuild R2 Roussel\n\n73) dragmio: Attack G2W Greenishyellow\n\n74) MagicJohn: Build R2 Elisian\n\n75) lorgar: Sacrifice G2 Plump\nBuild G2 Safe\nBuild G3 Roussel\n\n76) dragmio: Move Y3 Onepagewars Srima\n\n77) MagicJohn: Discover G1 Elisian Y2 Kali\n\n78) lorgar: Discover G1 Lorgar Y3 Barrabas\n\n79) dragmio: Move G2 Greenishyellow Safe\nCatastrophe Safe G\n\n80) MagicJohn: Move B1 Magicjohn Elisian\n\n81) lorgar: Trade G2 Y2 Roussel\n\n82) dragmio: Attack Y1W Onepagewars\n\tMagicJohn: Sorry 'bout the re-do, but my planetary citizens objected to my butchering the name of their home world.. \n\n83) MagicJohn: Move R1 Elisian Kali\n\n84) lorgar: Trade R1 B1 Roussel\n\n85) dragmio: Move Y2 Srima Dragmio\n\n86) MagicJohn: Build B2 Elisian\n\n87) lorgar: Move Y1 Roussel Dragmio\n\n88) dragmio: Build Y3 Srima\n\n89) MagicJohn: Build B2 Magicjohn\n\n90) lorgar: Discover B1 Roussel G2 Ilak\n\n91) dragmio: Trade Y2 R2 Dragmio\n\n92) MagicJohn: Trade B2 Y2 Elisian\n\n93) lorgar: Build Y3 Roussel\n\n94) dragmio: Attack Y1S Dragmio\n\n95) MagicJohn: Move Y2 Elisian Dragmio\n\n96) lorgar: Move Y2 Roussel Ilak\n\n97) dragmio: Discover Y1 Dragmio B3 Amris\n\n98) MagicJohn: Move Y2 Dragmio Srima\n\n99) lorgar: Sacrifice G1 Barrabas\nBuild Y3 Ilak\n\tdragmio: attack Y1S dragmio\n\n100) dragmio: Trade Y3 R3 Srima\n\n101) MagicJohn: Move Y2 Srima Kali\n\n102) lorgar: Build Y3 Roussel\n\n103) dragmio: Move Y1 Onepagewars Roussel\n\tMagicJohn: I'm relatively new to the game. Maybe at some later time one of you could explain to me why South did not move a yellow ship into dragmio from roussel and create a catastrophe? \n\n104) MagicJohn: Move Y2 Kali Roussel\nCatastrophe Roussel Yellow\n\tdragmio: I suppose he didn't want to loose a 3 point ship.\n\tMagicJohn: Another newbie question..... How much intergalactic chatter and plotting usually goes in the comment boxes during a multi-player game? Negotiations might be interesting... (He could have used a Y2 ship....)\n\n105) lorgar: Trade Y3 R3 Ilak\n\tdragmio: No, he couldn't because the system with his Y2 ship isn't connected with mine home system. And this turn he obviously wanted another Y3 more than to see my two Y3's destroyed. You gotta have priorities. :)\n\n106) dragmio: Attack G1W Greenishyellow\n\n107) MagicJohn: Build B2 Elisian\n\tMagicJohn: Following my Y2 move to Dragmio, South moved a Y2 ship from roussel (connected to your system) to ilak (not connected). Guess I'll have to live with my share of newbie cognitive-dissonance. I do, however, understand your message. Thanks for taking the time to respond to my questions. : ) \n\n108) lorgar: Build G1 Roussel\n\tdragmio: Let's see you now. :)\n\n109) dragmio: Move G1 Greenishyellow Roussel\n\tMagicJohn: To my helpful neighbor to the North,\r\nAccording to some wise advise I once received, I gotta consider priorities... I'm running a poor third. Ideally, I should try to assume a non-threatening posture (with my fleet that shouldn't be difficult) and hope you two annihilate each other. On the other hand, if I get too far behind, I'm roadkill anyway. Additionally, sacrificing my only yellow ship will cost me a trade and a build turn to recoup...... Plus, you are ahead of me already and are only risking a Y1 ship. Sounds like you might owe me a non-aggression treaty for a few turns... \n\tdragmio: No problem. I'll be a Russian to your German. :)\n\n110) MagicJohn: Move G1 Kali Roussel\nCatastrophe Roussel G\n\tMagicJohn: Now, about that analogy...... Seems like in the long run, it didn't turn out well for Hitler..... : ( \n\n111) lorgar: Build B2 Ilak\n\n112) dragmio: Attack Y1W Onepagewars\n\n113) MagicJohn: Trade B2 G2 Elisian\n\n114) lorgar: Trade R2 G2 Roussel\n\n115) dragmio: Attack B1W Greenishyellow\n\tdragmio: Once more unto the breach, dear friend! :)\n\n116) MagicJohn: Build B2 Elisian\n\n117) lorgar: Build G1 Roussel\n\n118) dragmio: Move B1 Greenishyellow Ilak\n\n119) MagicJohn: Trade B2 Y2 Elisian\n\n120) lorgar: Discover B2 Ilak G3 Mareinfinitus\n\n121) dragmio: Sacrifice Y3 Srima\nMove Y1 Amris Greenishyellow\nMove Y1 Greenishyellow Elisian\nMove Y1 Onepagewars Elisian\nCatastrophe Elisian Y\n\n122) MagicJohn: Discover B2 Magicjohn Y3 Gray Havens\n\n123) lorgar: Trade G1 R1 Roussel\n\n124) dragmio: Move R3 Greenishyellow Mareinfinitus\n\n125) MagicJohn: Trade B2 Y2 Gray\n\n126) lorgar: Sacrifice Y2 Ilak\nMove R3 Ilak Roussel\nDiscover B2 Mareinfinitus G2 Maru\n\n127) dragmio: Trade B1 Y1 Srima\n\n128) MagicJohn: Move R1 Kali Gray\n\tdragmio: Sorry, couldn't help it.i love a big bang. Just look at the size of that report. :)\n\tMagicJohn: All part of my plan to become a non-threat... Some of my civilizations have, however sent me a vote of "no confidence".....\n\n129) lorgar: Build G1 Lorgar\n\n130) dragmio: Move R3 Srima Maru\n\n131) MagicJohn: Trade R1 G1 Magicjohn\n\n132) lorgar: Trade R1 Y1 Roussel\n\n133) dragmio: Attack B2S Maru\n\n134) MagicJohn: Build B1 Magicjohn\n\n135) lorgar: Build G1 Roussel\n\n136) dragmio: Trade B1 R1 Ilak\n\n137) MagicJohn: Move G1 Magicjohn Gray\n\n138) lorgar: Build R1 Lorgar\n\n139) dragmio: Attack B1S Ilak\n\n140) MagicJohn: Trade B3 G3 Magicjohn\n\n141) lorgar: Discover G1 Lorgar B3 Megido\n\n142) dragmio: Move R2 Dragmio Megido\n\n143) MagicJohn: Build B1 Magicjohn\n\n144) lorgar: Sacrifice G1 Megido\nBuild G1 Lorgar\n\n145) dragmio: Build R2 Onepagewars\n\n146) MagicJohn: Build R2 Gray\n\n147) lorgar: Trade R1 B1 Lorgar\n\n148) dragmio: Trade R2 Y2 Megido\n\n149) MagicJohn: Move B1 Magicjohn Gray\n\n150) lorgar: Discover B1 Lorgar G3 Boron\n\n151) dragmio: Move Y2 Megido Onepagewars\n\n152) MagicJohn: Build G1 Gray\n\n153) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B2 Boron\nBuild Y1 Roussel\n\n154) dragmio: Move R2 Onepagewars Srima\n\n155) MagicJohn: Discover G1 Gray B2 Grayhavens\n\n156) lorgar: Trade B2 Y2 Boron\n\n157) dragmio: Sacrifice Y1 Srima\nMove R3 Maru Boron\n\n158) MagicJohn: Build B2 Magicjohn\n\n159) lorgar: Sacrifice Y2 Boron\nMove G1 Roussel Magicjohn\nMove G2 Roussel Magicjohn\nCatastrophe Magicjohn Green\n\n160) dragmio: Attack B1S Boron\n\n161) MagicJohn: Build G1 Gray\n\n162) lorgar: Trade Y1 G1 Roussel\n\n163) dragmio: Move Y2 Onepagewars Mareinfinitus\n\n164) MagicJohn: Sacrifice Y2 Gray\nMove G1 Gray Lorgar\nMove G1 Gray Lorgar\nCatastrophe Lorgar Green\n\n165) lorgar: Move R3 Roussel Lorgar\n\n166) dragmio: Sacrifice Y2 Mareinfinitus\nMove R2 Srima Lorgar\nMove R3 Mareinfinitus Lorgar\nCatastrophe Lorgar R\n\n167) MagicJohn: Trade B2 G2 Magicjohn\n\n168) dragmio: Trade B1 Y1 Boron\n\n169) MagicJohn: Move R2 Gray Maru\n\n170) dragmio: Move R3 Boron Magicjohn\n\n171) MagicJohn: Build R1 Magicjohn\n\n172) dragmio: Sacrifice B1 Ilak\nTrade R3 Y3 Magicjohn\n\n173) MagicJohn: Attack B2N Maru\n\tdragmio: Nice move MagicJohn. Thanks for the game lorgar.\n\tMagicJohn: Now, Why can't we all just get along? : )\r\n Obviously I made rash moves early that blew One Page Wars out of the game. My continued aggressive moves doomed both Lorgor and me to eventual defeat. Apologies to both non-me parties. I had never played a multi-player "Homeworlds" before. I really had no clue that I was screwing up other folks probably-well-thought-out strategies. Anyway, I guess that's what you get when playing with a newbie....... Dragmio - Thanks for the lesson. I learned a lot and fed into your plans for universal domination well. It's been fun. MagicJohn \n\n174) dragmio: Sacrifice R2 Onepagewars\nAttack R2E Magicjohn\nAttack R1E Magicjohn\n\n175) MagicJohn: Sacrifice R2 Maru\nAttack R2N Magicjohn\nAttack R1N Magicjohn\n\n176) dragmio: Build Y1 Boron\n\tMagicJohn: Sorry, my humble star system lacks adequate docking facilities and supplies for large ships. The only piece of our economy still working is the industrial/military complex, and even that has taken a significant hit. Perhaps, next millennium, when our economy recovers from the war effort, we could be more accommodating.... \n\tMagicJohn: No, although tempted after you blew up my star system, I am not going to force a resignation. I will try to keep my yorkie off of the computer, but she, unlike 'ol MJ, can be a little vindictive.......\n\n177) MagicJohn: Move R2 Magicjohn Boron\n\tdragmio: Thanks for waiting!\n\tMagicJohn: \n\n178) dragmio: Move Y1 Boron Magicjohn\n\n179) MagicJohn: Attack Y1N Boron\n\tMagicJohn: I sent the order "attack b2 maru" and keep getting the message "The ship B2 cannot be found in the maru system. Did you specify the owner of the ship?" I have tried typing in various codes , but keep getting the same response. Any suggestions or does the game just like you better?\n\n180) dragmio: Move R1 Dragmio Roussel\n\n181) MagicJohn: Attack Y1N Magicjohn\n\n182) dragmio: Attack Y1S Roussel\n\n183) MagicJohn: Move Y1 Magicjohn Boron\n\n184) dragmio: Build B1 Dragmio\n\n185) MagicJohn: Trade B2 R2 Maru\n\n186) dragmio: Sacrifice B1 Dragmio\nTrade Y3 R3 Magicjohn\n\n187) MagicJohn: Sacrifice G2 Magicjohn\nBuild R1 Magicjohn\nBuild R2 Magicjohn\nCatastrophe Magicjohn Red\n\n188) dragmio: Attack G1S Roussel\n\n189) MagicJohn: Move R2 Boron Magicjohn\n\n190) dragmio: Move R1 Roussel Grayhavens\n\n191) MagicJohn: Sacrifice Y1 Boron\nMove R2 Maru Roussel\n\n192) dragmio: Sacrifice Y1 Roussel\nMove R1 Ilak Boron\n\n193) MagicJohn: Sacrifice R1 Gray\nAttack R1N Grayhavens\n\n194) dragmio: Sacrifice G1 Roussel\nBuild R1 Boron\n\tMagicJohn: Ka-Boom!\n\tMagicJohn: One person's terrorist is another person's freedom fighter.....\n\n195) MagicJohn: Move Y1 Boron Grayhavens\n\n196) dragmio: Build B1 Dragmio\n\n197) MagicJohn: Move G1 Grayhavens Roussel\n\n198) dragmio: Trade B1 Y1 Dragmio\n\n199) MagicJohn: Move Y1 Grayhavens Roussel\n\n200) dragmio: Move Y1 Dragmio Boron\n\n201) MagicJohn: Move R2 Roussel Magicjohn\n\n202) dragmio: Build B1 Dragmio\n\tMagicJohn: I'm in another "Homeworlds" game that has devolved into a stalemate. Is there any way of opting for a draw if both parties agree??\n\tlorgar: find each other irl and wrestle for it :D\n\n203) MagicJohn: Move R2 Magicjohn Boron\n\tdragmio: It seems there is no way to agree on a draw.\n\tlorgar: keep fighting!\n\tdragmio: we will! ;)\n\tMagicJohn: Me thinks Lorgar is enjoying this waaaay too much............\n\n204) dragmio: Build R1 Boron\nCatastrophe Boron R\n\n205) MagicJohn: Move G1 Roussel Dragmio\n\n206) dragmio: Trade B1 R1 Dragmio\n\n207) MagicJohn: Build G1 Dragmio\n\n208) dragmio: Build Y1 Boron\n\n209) MagicJohn: Move Y1 Roussel Grayhavens\n\n210) dragmio: Build R1 Dragmio\n\n211) MagicJohn: Build G1 Dragmio\nCatastrophe Dragmio Green\n\n212) dragmio: Move Y1 Boron Dragmio\n\n213) MagicJohn: Trade B1 G1 Gray\n\n214) dragmio: Build Y1 Boron\n\n215) MagicJohn: Build G1 Gray\n\n216) dragmio: Move Y1 Boron Magicjohn\n\n217) MagicJohn: Attack Y1N Magicjohn\n\n218) dragmio: Build Y2 Boron\n\n219) MagicJohn: Move Y1 Magicjohn Gray\n\n220) dragmio: Trade Y1 B1 Dragmio\n\n221) MagicJohn: Move G1 Gray Grayhavens\n\n222) dragmio: Sacrifice B1 Dragmio\nTrade Y2 R2 Boron\n\n223) MagicJohn: Build R1 Grayhavens\n\n224) dragmio: Trade R1 G1 Dragmio\n\n225) MagicJohn: Build Y1 Grayhavens\n\n226) dragmio: Sacrifice Y1 Boron\nMove R2 Boron Dragmio\n\n227) MagicJohn: Build G1 Gray\n\n228) dragmio: Move B3 Dragmio Magicjohn\n\n229) MagicJohn: Move G1 Gray Magicjohn\n\n230) dragmio: Sacrifice R1 Dragmio\nAttack R2E Magicjohn\n\n231) MagicJohn: Build B1 Magicjohn\n\n232) dragmio: Trade B3 R3 Magicjohn\n\n233) MagicJohn: Trade B1 R1 Magicjohn\n\n234) dragmio: Sacrifice R3 Magicjohn\nAttack R1E Magicjohn\nAttack B1E Magicjohn\nAttack G1E Magicjohn\n\n\tdragmio: Thank you guys for an epic game! It lasted 9 months if I'm not mistaken. I'd start another one right away. :)\n\nHomeworlds Online (SDG# 20001)\nVariants: "Hard time"\nStarted: 2011.5.18, Ended: 2011.6.8\nParticipants: SilentTitan (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B1 R2 G3\n\n2) SilentTitan: Homeworld B3 R2 G3\n\n3) mneme: Build G1 Mneme\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) mneme: Trade G1 B1 Mneme\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) mneme: Build B1 Mneme\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) mneme: Trade B1 Y1 Mneme\n\n10) SilentTitan: Discover Y1 Silenttitan G1 Cdx\n\n11) mneme: Build Y2 Mneme\n\n12) SilentTitan: Build Y2 Cdx\n\n13) mneme: Discover Y1 Mneme G3 Stage\n\n14) SilentTitan: Discover Y1 Cdx B3 Cdw\n\n15) mneme: Build B1 Mneme\n\n16) SilentTitan: Build G1 Silenttitan\n\n17) mneme: Move B1 Mneme Stage\n\n18) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Cdw\n\n19) mneme: Build Y3 Stage\n\n20) SilentTitan: Trade Y2 G2 Cdw\n\n21) mneme: Trade Y1 R1 Stage\n\n22) SilentTitan: Discover G2 Cdw Y1 Zzd\n\n23) mneme: Build B2 Stage\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Cdx\nBuild Y3 Cdw\nBuild Y3 Silenttitan\n\n25) mneme: Move B2 Stage Zzd\n\n26) SilentTitan: Trade Y3 R3 Cdw\n\n27) mneme: Build Y3 Mneme\n\n28) SilentTitan: Trade Y3 G3 Silenttitan\n\n29) mneme: Build Y3 Stage\n\n30) SilentTitan: Sacrifice Y2 Cdx\nMove Y1 Cdw Mneme\nMove Y2 Cdx Stage\n\n31) mneme: Sacrifice B2 Zzd\nTrade Y3 R3 Stage\nTrade Y2 R2 Mneme\n\n32) SilentTitan: Sacrifice G2 Zzd\nBuild Y1 Mneme\nBuild Y2 Stage\n\n33) mneme: Sacrifice R2 Mneme\nAttack Y2 Stage\nAttack Y2 Stage\n\n34) SilentTitan: Move Y1 Mneme Stage\nCatastrophe Stage Yellow\n\n35) mneme: Attack Y1 Mneme\n\n36) SilentTitan: Build G1 Silenttitan\n\n37) mneme: Build B2 Stage\n\n38) SilentTitan: Sacrifice G1 Silenttitan\nBuild R1 Cdw\n\n39) mneme: Move Y1 Mneme Stage\n\n40) SilentTitan: Trade R1 Y1 Cdw\n\n41) mneme: Discover R1 Stage G1 Stage2\n\n42) SilentTitan: Build G1 Silenttitan\n\n43) mneme: Move B2 Stage Stage2\n\n44) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Cdw\n\n45) mneme: Sacrifice G3 Mneme\nBuild B2 Stage\nBuild B2 Stage2\nBuild B3 Stage2\n\n46) SilentTitan: Trade Y2 G2 Cdw\n\n47) mneme: Trade B3 G3 Stage2\n\n48) SilentTitan: Build Y2 Cdw\n\n49) mneme: Sacrifice G3 Stage2\nBuild B3 Stage2\nBuild Y2 Stage\nBuild R1 Stage\n\n50) SilentTitan: Build Y2 Silenttitan\n\n51) mneme: Sacrifice Y1 Stage\nMove B3 Stage2 Silenttitan\n\n52) SilentTitan: Attack B3 Silenttitan North\n\n53) mneme: Sacrifice Y2 Stage\nMove B2 Stage2 Silenttitan\nMove B2 Stage2 Silenttitan\nCatastrophe Silenttitan B\n\n\tSilentTitan: good game ... thanks\n\tmneme: Good game!\n\nHomeworlds Online (SDG# 19749)\nVariants: "Hard time"\nStarted: 2011.5.19, Ended: 2011.5.29\nParticipants: SilentTitan (S), dragmio (N)\nWinner: SilentTitan\n\n1) dragmio: Homeworld G2 B1 Y3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) dragmio: Build Y1 Dragmio\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dragmio: Build Y1 Dragmio\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) dragmio: Trade Y1 R1 Dragmio\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) dragmio: Build R1 Dragmio\n\n10) SilentTitan: Discover G1 Silenttitan B1 Book\n\tdragmio: Sorry, I probabbly won't be able to play in the next 24 hours. After that I'll again be online normally.\n\tSilentTitan: not a problem\n\n11) dragmio: Discover Y1 Dragmio R3 Mark\n\n12) SilentTitan: Build G1 Book\n\n13) dragmio: Move R1 Dragmio Mark\n\n14) SilentTitan: Trade G1 R1 Book\n\n15) dragmio: Build R2 Dragmio\n\n16) SilentTitan: Build R2 Book\n\n17) dragmio: Trade R1 G1 Dragmio\n\n18) SilentTitan: Trade R2 Y2 Book\n\n19) dragmio: Move Y3 Dragmio Mark\n\n20) SilentTitan: Build Y1 Book\n\n21) dragmio: Move Y3 Mark Book\n\n22) SilentTitan: Build Y2 Book\nCatastrophe Book Yellow\n\n23) dragmio: Move Y1 Mark Dragmio\n\tdragmio: nice! :)\n\n24) SilentTitan: Build G1 Silenttitan\n\n25) dragmio: Build G2 Dragmio\n\n26) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Book\n\n27) dragmio: Move G1 Dragmio Mark\n\n28) SilentTitan: Trade G1 Y1 Book\n\n29) dragmio: Trade G2 Y2 Dragmio\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Silenttitan\nBuild Y2 Book\nBuild Y3 Silenttitan\n\n31) dragmio: Move Y1 Dragmio Mark\n\tdragmio: Wow!I'll learn a lot in this game. :)\n\n32) SilentTitan: Trade Y2 B2 Silenttitan\n\n33) dragmio: Build Y2 Dragmio\n\n34) SilentTitan: Sacrifice Y2 Book\nDiscover G3 Book Y3 Thing1\nDiscover R1 Book Y3 Thing2\n\n35) dragmio: Move R2 Dragmio Thing2\n\n36) SilentTitan: Move G3 Thing1 Dragmio\n\n37) dragmio: Attack R1 Thing2\n\n38) SilentTitan: Trade Y3 R3 Silenttitan\n\n39) dragmio: Move R2 Thing2 Book\n\n40) SilentTitan: Sacrifice R3 Silenttitan\nAttack Y2 Dragmio North\nAttack Y2 Dragmio North\nPass\n\n\tdragmio: Thank you for the game. It was educational! :)\n\nHomeworlds Online (SDG# 20009)\nVariants: "No undo"\nStarted: 2011.5.23, Ended: 2011.6.10\nParticipants: ajo (S), radio414 (N)\nWinner: ajo\n\n1) radio414: Homeworld B2 R1 G3\n\n2) ajo: Homeworld B3 G2 R3\n\n3) radio414: Build G1 Radio414\n\n4) ajo: Build R1 Ajo\n\n5) radio414: Trade G1 Y1 Radio414\n\n6) ajo: Trade R3 Y3 Ajo\n\n7) radio414: Build G1 Radio414\n\n8) ajo: Build R1 Ajo\n\n9) radio414: Build Y1 Radio414\n\n10) ajo: Build R2 Ajo\n\n11) radio414: Build G1 Radio414\n\n12) ajo: Trade R2 G2 Ajo\n\n13) radio414: Trade G3 R3 Radio414\n\n14) ajo: Build R2 Ajo\n\tajo: That doesn't help you, though...\n\n15) radio414: Discover R3 Radio414 Y3 Sol\n\n16) ajo: Trade R1 B1 Ajo\n\n17) radio414: Move G1 Radio414 Sol\n\n18) ajo: Build B1 Ajo\n\n19) radio414: Trade Y1 B1 Radio414\n\n20) ajo: Discover B1 Ajo G1 Alpha\n\n21) radio414: Build Y1 Radio414\n\n22) ajo: Build B2 Alpha\n\n23) radio414: Build G2 Sol\n\n24) ajo: Build G3 Ajo\n\n25) radio414: Build G3 Radio414\n\n26) ajo: Trade G3 Y3 Ajo\n\tajo: Oh, phooey. I didn't notice that I was letting you do that.\n\n27) radio414: Sacrifice B1 Radio414\nTrade G2 Y2 Sol\n\n28) ajo: Move Y3 Ajo Alpha\n\n29) radio414: Trade Y1 B1 Radio414\n\n30) ajo: Discover B1 Alpha R3 Redulous\n\n31) radio414: Move B1 Radio414 Sol\n\n32) ajo: Build Y1 Alpha\n\n33) radio414: Discover R3 Sol Y1 Beta\n\n34) ajo: Sacrifice G2 Ajo\nBuild B2 Redulous\nBuild B3 Alpha\n\n35) radio414: Move Y2 Sol Beta\n\n36) ajo: Sacrifice Y3 Alpha\nMove B1 Redulous Radio414\nMove B2 Redulous Radio414\nMove B2 Alpha Sol\n\n37) radio414: Move G1 Radio414 Sol\n\n38) ajo: Sacrifice R2 Ajo\nAttack G1 Sol\nAttack B1 Sol\n\n39) radio414: Move G1 Sol Beta\n\n40) ajo: Attack Y1 Radio414\n\n41) radio414: Attack Y1 Radio414\n\tajo: Whoops, I guess I just broke my general rule of "don't make a move that's reversible by your opponent unless you're intending to offer a draw".\n\tradio414: I assume you're not, then?\n\tajo: I'm not offering a draw, no. :) If your next move is "attack y1 radio414", then I'll make a different move on my next turn.\n\n42) ajo: Build B3 Ajo\n\n43) radio414: Attack B2 Radio414\n\n44) ajo: Move B1 Sol Radio414\nCatastrophe Radio414 Blue\n\n45) radio414: Build G2 Radio414\n\n46) ajo: Sacrifice B2 Sol\nTrade B3 R3 Ajo\nTrade G1 R1 Sol\n\n\tajo: I think that's checkmate. :) Good game!\n\tradio414: Oh, I saw checkmate as soon as I saw you could pull that catastrophe. :) Good Game.\n\nHomeworlds Online (SDG# 20049)\nVariants: "Hard time"\nStarted: 2011.5.25, Ended: 2011.5.30\nParticipants: goulo (S), AdamBadura (N)\nWinner: goulo\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) goulo: Homeworld R1 B2 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) goulo: Build G1 Goulo\n\n5) AdamBadura: Build Y1 Adambadura\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) AdamBadura: Trade Y1 R1 Adambadura\n\n8) goulo: Build G1 Goulo\n\n9) AdamBadura: Trade Y1 G1 Adambadura\n\n10) goulo: Trade G1 R1 Goulo\n\n11) AdamBadura: Build Y1 Adambadura\n\n12) goulo: Build R2 Goulo\n\n13) AdamBadura: Build R2 Adambadura\n\n14) goulo: Trade R1 G1 Goulo\n\n15) AdamBadura: Discover Y1 Adambadura G1 Drydocks\n\n16) goulo: Discover G1 Goulo Y3 Citronego\n\n17) AdamBadura: Move R2 Adambadura Drydocks\n\n18) goulo: Move R2 Goulo Citronego\n\n19) AdamBadura: Build G2 Adambadura\n\tgoulo: somehow i ended up a ship behind. :/\n\tAdamBadura: Its when you traded R1->Y1 in your homeworld.\n\n20) goulo: Build G2 Goulo\n\n21) AdamBadura: Discover G2 Adambadura Y1 Outpost\n\n22) goulo: Sacrifice G3 Goulo\nBuild G2 Goulo\nBuild G3 Goulo\nBuild G3 Citronego\n\n23) AdamBadura: Build Y2 Adambadura\n\tgoulo: time for bed, dobranoc!\n\tAdamBadura: And there was the advantage...\n\n24) goulo: Discover G2 Goulo Y3 Bananego\n\n25) AdamBadura: Build Y2 Drydocks\n\n26) goulo: Build Y2 Goulo\n\n27) AdamBadura: Build R1 Adambadura\n\n28) goulo: Move G3 Citronego Drydocks\n\n29) AdamBadura: Sacrifice Y2 Drydocks\nDiscover Y1 Drydocks B3 Transformers\nMove R2 Drydocks Transformers\n\n30) goulo: Sacrifice Y1 Goulo\nDiscover G1 Citronego B1 Safireto\n\n31) AdamBadura: Move G2 Outpost Transformers\n\n32) goulo: Sacrifice G2 Bananego\nBuild G2 Safireto\nBuild Y1 Goulo\n\n33) AdamBadura: Build Y1 Transformers\n\n34) goulo: Discover Y2 Goulo R3 Rubenego\n\tAdamBadura: I think the game is lost now (for me). I suspect mostly due to your advantage in G.\n\n35) AdamBadura: Discover G1 Adambadura B1 Changers\n\tgoulo: But I never underestimate my ability to ruin my good position... :)\n\n36) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y2 Goulo\nBuild Y3 Rubenego\n\n37) AdamBadura: Move Y1 Transformers Changers\n\n38) goulo: Move Y2 Rubenego Drydocks\n\n39) AdamBadura: Discover G1 Changers R3 Bunker\n\n40) goulo: Move G2 Goulo Bunker\n\n41) AdamBadura: Sacrifice G1 Bunker\nBuild G1 Transformers\n\n42) goulo: Move G3 Drydocks Adambadura\n\tAdamBadura: It just hit me that G sacrifice-rebuild is a way of moving...\n\tgoulo: The many wonders of Homeworlds!\n\n43) AdamBadura: Attack G3 Adambadura\n\n44) goulo: Sacrifice Y2 Goulo\nMove G1 Safireto Adambadura\nMove G2 Safireto Adambadura\nCatastrophe Adambadura G\n\n45) AdamBadura: Discover R1 Adambadura G3 Shipyard\n\n46) goulo: Build Y2 Goulo\n\n47) AdamBadura: Sacrifice G2 Transformers\nBuild R2 Transformers\nBuild R3 Shipyard\n\n48) goulo: Move Y3 Rubenego Adambadura\n\n\tAdamBadura: Sadly here I wasn't doing so well... :(\n\tgoulo: interesting game! thanks.\n\nHomeworlds Online (SDG# 20062)\nStarted: 2011.5.27, Ended: 2011.5.27\nParticipants: GodofPie (S), radio414 (N)\nWinner: radio414\n\n1) radio414: Homeworld B2 R1 G3\n\n2) GodofPie: Homeworld G2 Y1 R3 *\n\tGodofPie: pop\r\n\n\n3) radio414: Build G1 Radio414\n\n4) GodofPie: Build R1 Godofpie\n\n5) radio414: Trade G1 Y1 Radio414\n\tGodofPie: pop a top\n\n6) GodofPie: Discover R3 Godofpie B3 Pastaperimero\n\tGodofPie: sih...\n\n7) radio414: Build Y1 Radio414\n\n8) GodofPie: Build R1 Godofpie\n\n9) radio414: Build Y2 Radio414\n\tGodofPie: tony hawk\n\n10) GodofPie: Move R1 Godofpie Pastaperimero\n\n11) radio414: Trade Y2 R2 Radio414\n\tGodofPie: tortillas\r\n\n\tGodofPie: Mexican Ice cream\n\n12) GodofPie: Build R2 Godofpie\n\n13) radio414: Discover G3 Radio414 Y3 Alfredo\n\n14) GodofPie: Move R2 Godofpie Alfredo\n\n15) radio414: Move G3 Alfredo Godofpie\n\n\nHomeworlds Online (SDG# 20043)\nStarted: 2011.5.27, Ended: 2011.5.29\nParticipants: aqurk (S), dragmio (N)\nWinner: dragmio\n\n1) dragmio: Homeworld B2 Y1 G3\n\n2) aqurk: Homeworld G1 Y2 B3\n\n3) dragmio: Build G1 Dragmio\n\taqurk: This is my 1st game. The game is giving me hints about "it's very important that...." - and I have no idea why it is important. I guess I will be wiser after this game :)\n\tdragmio: Well,I don't thin kyou'll learn a lot from me. It's my third game ever. :) Anyway, good luck.\n\n4) aqurk: Build B1 Aqurk\n\n5) dragmio: Trade G1 Y1 Dragmio\n\n6) aqurk: Discover B3 Aqurk Y3 Caprica\n\n7) dragmio: Discover Y1 Dragmio R3 Kobol\n\n8) aqurk: Trade B3 R3 Caprica\n\n9) dragmio: Trade G3 R3 Dragmio\n\n10) aqurk: Build B1 Aqurk\n\n11) dragmio: Move Y1 Kobol Dragmio\n\n12) aqurk: Trade B1 Y1 Aqurk\n\n13) dragmio: Trade Y1 G1 Dragmio\n\n14) aqurk: Build B1 Aqurk\n\n15) dragmio: Build G1 Dragmio\n\n16) aqurk: Build B1 Aqurk\n\n17) dragmio: Build G2 Dragmio\n\n18) aqurk: Move B1 Aqurk Caprica\n\n19) dragmio: Discover G1 Dragmio B3 Kobol2\n\n20) aqurk: Build Y1 Aqurk\n\n21) dragmio: Build G2 Kobol2\n\n22) aqurk: Build B2 Aqurk\n\n23) dragmio: Build G2 Dragmio\n\n24) aqurk: Trade B2 R2 Aqurk\n\n25) dragmio: Build G3 Kobol2\n\n26) aqurk: Move R2 Aqurk Kobol2\n\n27) dragmio: Trade G3 R3 Kobol2\n\n28) aqurk: Attack G2 Kobol2\n\n29) dragmio: Attack R2 Kobol2\n\n30) aqurk: Sacrifice G2 Kobol2\nBuild B2 Caprica\nBuild B2 Caprica\n\n31) dragmio: Move G2 Dragmio Kobol2\n\n32) aqurk: Move B2 Caprica Aqurk\n\n33) dragmio: Trade G2 Y2 Kobol2\n\n34) aqurk: Move Y1 Aqurk Caprica\n\n35) dragmio: Move R3 Kobol2 Aqurk\n\n36) aqurk: Sacrifice B2 Caprica\nTrade B2 R2 Aqurk\nTrade B1 R1 Aqurk\n\n37) dragmio: Attack B1S Aqurk\n\n\taqurk: cant see that I can recover from that. thanks for the game\n\tdragmio: Maybe you shouldn't have resigned. You could have built a red ship, overpopulate system and cause a disaster. All red ships would have been destroyed. Anyway, gg.\n\nHomeworlds Online (SDG# 20063)\nStarted: 2011.5.27, Ended: 2011.6.14\nParticipants: radio414 (S), GodofPie (N)\nWinner: radio414\n\n1) GodofPie: Homeworld Y3 B1 G3\n\n2) radio414: Homeworld B2 R1 G3\n\n3) GodofPie: Build G1 Godofpie\n\n4) radio414: Build G1 Radio414\n\n5) GodofPie: Discover G1 Godofpie Y2 Toe\n\n6) radio414: Trade G1 Y1 Radio414\n\n7) GodofPie: Build G1 Toe\n\n8) radio414: Build Y1 Radio414\n\n9) GodofPie: Build G1 Godofpie\n\n10) radio414: Build G2 Radio414\n\n11) GodofPie: Build G2 Godofpie\n\n12) radio414: Trade Y1 R1 Radio414\n\n13) GodofPie: Trade G1 B1 Godofpie\n\n14) radio414: Build Y1 Radio414\n\n15) GodofPie: Move B1 Godofpie Toe\n\n16) radio414: Trade Y1 B1 Radio414\n\n17) GodofPie: Build B2 Toe\n\n18) radio414: Build B2 Radio414\n\n19) GodofPie: Build B3 Toe\n\n20) radio414: Discover B2 Radio414 G3 Nail\n\n21) GodofPie: Trade B3 R3 Toe\n\n22) radio414: Build B3 Nail\n\tGodofPie: took u long enough\n\tGodofPie: nail rockssssss!\n\n23) GodofPie: Build B3 Toe\n\n24) radio414: Sacrifice Y1 Radio414\nMove B2 Nail Toe\nCatastrophe Toe B\n\n25) GodofPie: Trade G2 B2 Godofpie\n\tradio414: Wrong system... Oops\n\n26) radio414: Trade G2 Y2 Radio414\n\tGodofPie: ???\r\n\n\tGodofPie: wha up brada (ghettofied version of me)\n\n27) GodofPie: Build R1 Toe\n\tradio414: ...\n\tradio414: Did I tell you about catastrophes?\n\tGodofPie: no what the hell just happened!!!!!!!!!!huhhhhhhhhhhhhh Feeeeeeeeeeeeeeeeelllllllllllliiiiiiiiiiixxxxxxxxxx!!!!!!!!!!!!!!!!!!\n\n28) radio414: Build Y1 Radio414\n\n29) GodofPie: Move B2 Godofpie Toe\n\n30) radio414: Build R2 Radio414\n\n31) GodofPie: Trade G1 Y1 Toe\n\n32) radio414: Trade R1 G1 Radio414\n\n33) GodofPie: Discover R3 Toe B3 Pi\n\n34) radio414: Move R2 Radio414 Nail\n\tGodofPie: potbelly\n\n35) GodofPie: Build G1 Godofpie\n\n36) radio414: Build G2 Radio414\n\n37) GodofPie: Move B2 Toe Pi\n\n38) radio414: Move G2 Radio414 Nail\n\n39) GodofPie: Move G1 Godofpie Toe\n\n40) radio414: Move Y2 Radio414 Nail\n\n41) GodofPie: Trade B2 Y2 Pi\n\n42) radio414: Trade G1 Y1 Radio414\n\n\tradio414: OI\n\nHomeworlds Online (SDG# 20060)\nVariants: "Unrated, Hard time"\nStarted: 2011.5.27, Ended: 2011.5.30\nParticipants: aqurk (S), GodofPie (N)\nWinner: aqurk\n\n1) GodofPie: Homeworld Y3 B1 G3\n\n2) aqurk: Homeworld G1 Y3 B3\n\tGodofPie: yo whats up dude\n\n3) GodofPie: Build G1 Godofpie\n\taqurk: Hi there. 1st game (well, running another game simultaneous). I have no idea what will be smart moves and such, but I guess I will be wiser after this game :)\n\tGodofPie: dido\n\n4) aqurk: Build B1 Aqurk\n\n5) GodofPie: Trade G1 R1 Godofpie\n\n6) aqurk: Trade B1 G1 Aqurk\n\n7) GodofPie: Discover G3 Godofpie R2 Nap\n\n8) aqurk: Build B1 Aqurk\n\n9) GodofPie: Trade R1 G1 Godofpie\n\n10) aqurk: Trade B3 R3 Aqurk\n\n11) GodofPie: Build G2 Godofpie\n\n12) aqurk: Discover R3 Aqurk Y2 Caprica\n\n\nHomeworlds Online (SDG# 20008)\nVariants: "Hard time"\nStarted: 2011.5.28, Ended: 2011.6.8\nParticipants: GodofPie (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) GodofPie: Homeworld Y2 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) GodofPie: Build G1 Godofpie\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) GodofPie: Discover G1 Godofpie B3 Peanut\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) GodofPie: Build G1 Peanut\n\n9) SilentTitan: Build G2 Silenttitan\n\n10) GodofPie: Trade G1 Y1 Peanut\n\n11) SilentTitan: Discover G2 Silenttitan B1 Butter\n\n12) GodofPie: Build G1 Peanut\n\n13) SilentTitan: Build G2 Butter\n\n14) GodofPie: Build G2 Godofpie\n\n15) SilentTitan: Trade G2 Y2 Butter\n\n16) GodofPie: Build Y1 Peanut\n\n17) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Butter\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n\nHomeworlds Online (SDG# 19927)\nVariants: "Hard time"\nStarted: 2011.5.28, Ended: 2011.6.15\nParticipants: Jesse (S), GodofPie (N)\nWinner: Jesse\n\n1) GodofPie: Homeworld B3 Y2 G3\n\n2) Jesse: Homeworld Y1 B2 G3\n\n3) GodofPie: Build G1 Godofpie\n\n4) Jesse: Build G1 Jesse\n\n5) GodofPie: Discover G1 Godofpie Y1 God\n\n6) Jesse: Discover G1 Jesse B3 Zathras\n\n7) GodofPie: Build G1 Godofpie\n\n8) Jesse: Build G2 Zathras\n\n9) GodofPie: Build G2 God\n\n10) Jesse: Trade G2 Y2 Zathras\n\n11) GodofPie: Trade G1 R1 Godofpie\n\n12) Jesse: Trade G1 R1 Zathras\n\n\nHomeworlds Online (SDG# 20076)\nVariants: "Hard time"\nStarted: 2011.5.28, Ended: 2011.6.7\nParticipants: GodofPie (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) GodofPie: Homeworld B1 Y2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) GodofPie: Build G1 Godofpie\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) GodofPie: Discover G1 Godofpie B3 Pop\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) GodofPie: Build G1 Pop\n\n9) SilentTitan: Build G2 Silenttitan\n\n10) GodofPie: Trade G1 Y1 Pop\n\n11) SilentTitan: Trade G2 R2 Silenttitan\n\n12) GodofPie: Build G1 Pop\n\n13) SilentTitan: Discover R2 Silenttitan Y1 Tart\n\n14) GodofPie: Trade G3 R3 Godofpie\n\n15) SilentTitan: Move R2 Tart Pop\n\n\nHomeworlds Online (SDG# 20077)\nVariants: "Hard time"\nStarted: 2011.5.28, Ended: 2011.6.7\nParticipants: GodofPie (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld Y2 B1 G3\n\n2) GodofPie: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) GodofPie: Build G1 Godofpie\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) GodofPie: Trade G3 R3 Godofpie\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) GodofPie: Discover R3 Godofpie Y2 Tot\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) GodofPie: Discover R3 Tot Y3 Pop\n\n11) SilentTitan: Trade G1 R1 Silenttitan\n\n12) GodofPie: Build G1 Godofpie\n\n13) SilentTitan: Trade B2 Y2 Silenttitan\n\n14) GodofPie: Trade G1 R1 Godofpie\n\n15) SilentTitan: Build B2 Silenttitan\n\n\nHomeworlds Online (SDG# 19973)\nStarted: 2011.5.28, Ended: 2011.7.25\nParticipants: ts52 (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld B1 R2 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) daselva: Build G1 Daselva\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) daselva: Trade G3 Y3 Daselva\n\n6) ts52: Trade G1 R1 Ts52\n\n7) daselva: Build Y1 Daselva\n\n8) ts52: B R1 Ts52\n\n9) daselva: Trade Y3 G3 Daselva\n\n10) ts52: T R1 Y1 Ts52\n\n11) daselva: Discover G1 Daselva R3 S1\n\n12) ts52: Discover Y1 Ts52 G1 Robin\n\n13) daselva: Build Y1 Daselva\n\n14) ts52: Build Y2 Robin\n\n15) daselva: Move Y1 Daselva S1\n\n16) ts52: Build R1 Ts52\n\n17) daselva: Build Y2 S1\n\n18) ts52: Move R1 Ts52 Robin\n\n19) daselva: Discover Y2 S1 G1 S2\n\n20) ts52: Build G2 Ts52\n\n21) daselva: Build Y2 S2\n\n22) ts52: Discover Y2 Robin G3 Kermit\n\n23) daselva: Build Y3 S1\n\n24) ts52: Move Y2 Kermit S2\n\n25) daselva: Build Y3 Daselva\n\n26) ts52: Discover G2 Ts52 B1 Grover\n\n27) daselva: Trade Y3 R3 Daselva\n\n28) ts52: Build Y3 Robin\n\n29) daselva: Move R3 Daselva S1\n\n30) ts52: Build R1 Robin\n\n31) daselva: Move R3 S1 S2\n\n32) ts52: Discover Y2 S2 R2 Elmo\n\n33) daselva: Discover Y2 S2 R3 S3\n\n34) ts52: Build R2 Ts52\n\n35) daselva: Build G2 S1\n\n36) ts52: Discover Y1 Robin G3 Kermit\n\n37) daselva: Build G2 Daselva\n\n38) ts52: Trade R1 B1 Ts52\n\n39) daselva: Build R1 S2\n\n40) ts52: Move B1 Ts52 Robin\n\n41) daselva: Move R3 S2 Kermit\n\n42) ts52: Move Y1 Kermit Grover\n\n43) daselva: Sacrifice Y1 S1\nMove R3 Kermit Grover\n\n44) ts52: Build G3 Ts52\n\n45) daselva: Attack G2 Grover\n\n46) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Elmo\nBuild B2 Robin\n\n47) daselva: Sacrifice Y3 S1\nMove G2 Grover Ts52\nMove G1 S1 S2\nMove G1 S2 Ts52\nCatastrophe Ts52 G\n\n48) ts52: Move Y3 Robin Ts52\n\tts52: Well shoot. How did I not see that coming... well played.\n\n49) daselva: Attack Y1 Grover\n\n50) ts52: Trade Y3 G3 Ts52\n\n51) daselva: Sacrifice G2 Daselva\nBuild Y3 Grover\nBuild Y3 S2\n\n52) ts52: Move Y1 Elmo Robin\n\n53) daselva: Sacrifice Y3 Grover\nMove Y1 Grover Ts52\nMove Y3 S2 Ts52\nMove Y2 S2 Ts52\nCatastrophe Ts52 Y\n\n54) ts52: Trade B2 Y2 Robin\n\n55) daselva: Build G1 Daselva\n\n56) ts52: Build G2 Ts52\n\n57) daselva: Build G2 S1\n\n58) ts52: Trade G3 Y3 Ts52\n\n59) daselva: Sacrifice Y2 S3\nMove R3 Grover Elmo\nMove R3 Elmo Robin\n\n60) ts52: Build R3 Robin\nCatastrophe Robin Red\n\n61) daselva: Build Y1 Daselva\n\n62) ts52: Build G3 Ts52\n\n63) daselva: Move Y1 Daselva S1\n\n64) ts52: Move Y3 Ts52 S1\n\n65) daselva: Sacrifice G2 S1\nBuild Y2 S1\nBuild Y3 S1\nCatastrophe S1 Y\n\n66) ts52: Move Y1 Robin Ts52\n\n67) daselva: Trade G1 B1 Daselva\n\n68) ts52: Build B2 Robin\n\n69) daselva: Move B1 Daselva S1\n\n70) ts52: Discover G2 Ts52 Y3 Bigbird\n\n71) daselva: Build B2 S1\n\n72) ts52: Move B2 Robin Bigbird\n\n73) daselva: Trade B2 Y2 S1\n\n74) ts52: Build R1 Ts52\n\n75) daselva: Build B2 S1\n\n76) ts52: Build B3 Bigbird\n\n77) daselva: Move B2 S1 S2\n\n78) ts52: Build B3 Robin\n\n79) daselva: Build B3 S2\n\n80) ts52: Trade B3 G3 Bigbird\n\n81) daselva: Trade G3 Y3 Daselva\n\n82) ts52: Build B3 Bigbird\n\tts52: well shoot...\n\n83) daselva: Sacrifice Y3 Daselva\nMove B1 S1 Ts52\nMove B2 S2 Ts52\nMove B3 S2 Ts52\nCatastrophe Ts52 B\n\tdaselva: thank you for playing\n\tts52: Thanks for the game. Well played.\n\n\nHomeworlds Online (SDG# 20061)\nVariants: "Unrated, Sinister"\nStarted: 2011.5.29, Ended: 2011.6.18\nParticipants: GodofPie (S), radio414 (N), dragmio (E)\nWinner: radio414\n\n1) radio414: Homeworld B2 R1 G3\n\n2) dragmio: Homeworld G3 Y2 B3\n\n3) GodofPie: Homeworld B3 G2 R3\n\n4) radio414: Build G1 Radio414\n\n5) dragmio: Build B1 Dragmio\n\n6) GodofPie: Build R1 Godofpie\n\n7) radio414: Trade G1 Y1 Radio414\n\n8) dragmio: Build B1 Dragmio\n\n9) GodofPie: Trade R1 G1 Godofpie\n\n10) radio414: Build Y1 Radio414\n\n11) dragmio: Trade B1 Y1 Dragmio\n\n12) GodofPie: Trade G1 B1 Godofpie\n\n13) radio414: Build G1 Radio414\n\n14) dragmio: Build Y1 Dragmio\n\n15) GodofPie: Build B1 Godofpie\n\n16) radio414: Build Y2 Radio414\n\n17) dragmio: Discover Y1 Dragmio G1 Ennis\n\n18) GodofPie: Trade B1 R1 Godofpie\n\n19) radio414: Trade Y1 B1 Radio414\n\n20) dragmio: Move B1 Dragmio Ennis\n\n21) GodofPie: Trade R1 Y1 Godofpie\n\n22) radio414: Build Y2 Radio414\n\n23) dragmio: Build B1 Ennis\n\n24) GodofPie: Move R3 Godofpie Ennis\n\n25) radio414: Trade Y2 R2 Radio414\n\n26) dragmio: Build Y2 Dragmio\n\n27) dragmio: Build Y2 Ennis\n\n28) radio414: Build Y3 Radio414\n\n29) dragmio: Build Y3 Ennis\n\tdragmio: Why did he resign?\n\tradio414: I have no idea.\n\n30) radio414: Sacrifice Y2 Radio414\nDiscover Y1 Radio414 Y3 Overdose\nMove Y1 Overdose Ennis\nCatastrophe Ennis Y\n\n31) dragmio: Trade B1 R1 Ennis\n\n32) radio414: Build Y1 Radio414\n\n33) dragmio: Move B3 Dragmio Ennis\n\n34) radio414: Sacrifice Y3 Radio414\nDiscover Y1 Radio414 Y3 Overdose\nMove Y1 Overdose Ennis\nMove Y1 Ennis Dragmio\nCatastrophe Dragmio Y\n\n\tdragmio: Wow, nice! GG!\n\nHomeworlds Online (SDG# 20083)\nStarted: 2011.5.29, Ended: 2011.6.4\nParticipants: dragmio (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y2 G3\n\n2) dragmio: Homeworld B3 G1 Y3\n\n3) lorgar: Build G1 Lorgar\n\n4) dragmio: Build Y1 Dragmio\n\n5) lorgar: Build G1 Lorgar\n\n6) dragmio: Trade Y1 B1 Dragmio\n\n7) lorgar: Discover G1 Lorgar B3 Tadakatsu\n\n8) dragmio: Build B1 Dragmio\n\n9) lorgar: Build G2 Tadakatsu\n\n10) dragmio: Discover B1 Dragmio Y2 Karlovac\n\n11) lorgar: Trade G1 Y1 Tadakatsu\n\n12) dragmio: Build B2 Dragmio\n\n13) lorgar: Build G1 Tadakatsu\n\n14) dragmio: Trade B2 G2 Dragmio\n\n15) lorgar: Trade G1 R1 Tadakatsu\n\n16) dragmio: Build B2 Dragmio\n\n17) lorgar: Move R1 Tadakatsu Karlovac\n\n18) dragmio: Move B2 Dragmio Karlovac\n\n19) lorgar: Build G1 Tadakatsu\n\n20) dragmio: Trade B2 G2 Karlovac\n\n21) lorgar: Move G2 Tadakatsu Karlovac\n\n22) dragmio: Trade G2 R2 Karlovac\n\n23) lorgar: Attack R2S Karlovac\n\n24) dragmio: Move B1 Karlovac Dragmio\n\n25) lorgar: Move R2 Karlovac Dragmio\n\n26) dragmio: Trade Y3 R3 Dragmio\n\n27) lorgar: Sacrifice G2 Karlovac\nBuild R1 Dragmio\nBuild R1 Dragmio\nCatastrophe Dragmio Red\n\n28) dragmio: Trade B1 R1 Dragmio\n\n29) lorgar: Build G2 Tadakatsu\n\n30) dragmio: Trade B1 Y1 Dragmio\n\n31) lorgar: Move G2 Tadakatsu Karlovac\n\n32) dragmio: Build Y1 Dragmio\n\n33) lorgar: Sacrifice G3 Lorgar\nBuild G2 Tadakatsu\nBuild G3 Karlovac\nBuild G3 Lorgar\n\n34) dragmio: Build Y2 Dragmio\n\n35) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild G3 Lorgar\nBuild Y3 Tadakatsu\n\n36) dragmio: Move Y1 Dragmio Karlovac\n\n37) lorgar: Sacrifice Y3 Tadakatsu\nMove G2 Karlovac Dragmio\nMove G2 Tadakatsu Karlovac\nMove G2 Karlovac Dragmio\nCatastrophe Dragmio Green\n\n38) dragmio: Trade Y2 G2 Dragmio\n\n39) lorgar: Move G3 Karlovac Dragmio\n\n40) dragmio: Sacrifice G2 Dragmio\nBuild Y2 Dragmio\nBuild Y3 Dragmio\n\n41) lorgar: Sacrifice R1 Karlovac\nAttack Y3S Dragmio\n\n42) dragmio: Move Y1 Karlovac Dragmio\nCatastrophe Dragmio Y\n\n43) lorgar: Trade G3 R3 Dragmio\n\n\tdragmio: GG!\n\tlorgar: thx, rematch?\n\nHomeworlds Online (SDG# 20078)\nVariants: "Hard time"\nStarted: 2011.5.29, Ended: 2011.6.9\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Discover G1 Lorgar B2 Mirumoto\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) lorgar: Build G1 Mirumoto\n\n8) SilentTitan: Build B1 Silenttitan\n\n9) lorgar: Trade G1 R1 Mirumoto\n\n10) SilentTitan: Trade B1 Y1 Silenttitan\n\n11) lorgar: Build G1 Lorgar\n\n12) SilentTitan: Discover B1 Silenttitan Y1 Scorch\n\n13) lorgar: Build G1 Mirumoto\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) lorgar: Trade G1 Y1 Mirumoto\n\n16) SilentTitan: Discover B1 Scorch Y2 Wide\n\n17) lorgar: Trade G1 R1 Lorgar\n\n18) SilentTitan: Sacrifice G2 Silenttitan\nBuild B1 Wide\nBuild B2 Wide\n\n19) lorgar: Build R1 Lorgar\n\n20) SilentTitan: Trade B2 R2 Wide\n\n21) lorgar: Build R2 Mirumoto\n\n22) SilentTitan: Trade B1 G1 Wide\n\n23) lorgar: Trade R1 G1 Lorgar\n\n24) SilentTitan: Build G2 Silenttitan\n\n25) lorgar: Discover G1 Mirumoto B1 Katsumoto\n\n26) SilentTitan: Trade G2 Y2 Silenttitan\n\n27) lorgar: Trade R2 G2 Mirumoto\n\n28) SilentTitan: Build G2 Wide\n\n29) lorgar: Sacrifice G3 Lorgar\nBuild G2 Mirumoto\nBuild G3 Katsumoto\nBuild G3 Lorgar\n\n30) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Wide Lorgar\nMove G1 Wide Lorgar\n\n31) lorgar: Trade G1 R1 Lorgar\n\n32) SilentTitan: Sacrifice R2 Wide\nAttack R1 Lorgar North\nAttack R1 Lorgar North\n\n33) lorgar: Build G1 Mirumoto\n\n34) SilentTitan: Sacrifice G2 Wide\nBuild G2 Lorgar\nBuild B2 Lorgar\n\n35) lorgar: Pass\n\n36) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Lorgar\nBuild B3 Lorgar\nBuild G3 Lorgar\nCatastrophe Lorgar Blue\nCatastrophe Lorgar Green\n\n\tlorgar: gg\n\tSilentTitan: good game.\n\nHomeworlds Online (SDG# 20085)\nVariants: "Hard time"\nStarted: 2011.5.29, Ended: 2011.6.6\nParticipants: Remneb (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld G1 B3 Y3\n\n2) Remneb: Homeworld R1 B2 G3\n\n3) Aristos: Build Y1 Aristos\n\n4) Remneb: Build G1 Remneb\n\n5) Aristos: Trade Y1 G1 Aristos\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) Aristos: Build Y1 Aristos\n\n8) Remneb: Build G1 Remneb\n\n9) Aristos: Build G2 Aristos\n\n10) Remneb: Discover G1 Remneb Y3 Sirius\n\n11) Aristos: Trade G1 R1 Aristos\n\n12) Remneb: Build G1 Remneb\n\n13) Aristos: Build G2 Aristos\n\n14) Remneb: Sacrifice G3 Remneb\nBuild G2 Sirius\nBuild G3 Remneb\nBuild G3 Remneb\n\n15) Aristos: Sacrifice Y3 Aristos\nDiscover G2 Aristos B2 Temp1\nDiscover G2 Temp1 B3 Temp2\nMove G2 Temp2 Remneb\nCatastrophe Remneb Green\n\n16) Remneb: Move G2 Sirius Remneb\n\n17) Aristos: Build R1 Aristos\n\n18) Remneb: Build Y1 Remneb\n\n19) Aristos: Build Y2 Aristos\n\n20) Remneb: Move Y1 Remneb Sirius\n\n21) Aristos: Discover G2 Aristos B2 Deneb\n\n22) Remneb: Build Y2 Remneb\n\n23) Aristos: Move Y1 Aristos Deneb\n\n24) Remneb: Trade Y2 R2 Remneb\n\n25) Aristos: Build Y2 Deneb\n\n26) Remneb: Move R2 Remneb Sirius\n\n27) Aristos: Build R2 Aristos\n\n28) Remneb: Build Y2 Remneb\n\n29) Aristos: Build Y3 Aristos\n\n30) Remneb: Sacrifice Y2 Remneb\nMove R2 Sirius Deneb\nMove R2 Deneb Aristos\nCatastrophe Aristos R\n\n31) Aristos: Trade Y1 R1 Deneb\n\n32) Remneb: Trade G2 R2 Remneb\n\n33) Aristos: Build R1 Deneb\n\n34) Remneb: Discover Y1 Sirius B2 Antares\n\n35) Aristos: Build R2 Deneb\n\n36) Remneb: Move G1 Sirius Remneb\n\n37) Aristos: Discover R2 Deneb Y3 Cygnus\n\n38) Remneb: Build Y1 Remneb\n\n\n39) Aristos: Build R2 Deneb\n\n40) Remneb: Sacrifice G1 Remneb\nBuild Y2 Antares\n\n41) Aristos: Build Y3 Deneb\n\n42) Remneb: Move Y1 Antares Aristos\n\tAristos: Environmentalists warn of climate disaster unless the wanton use of Yellow technology is not curtailed. "We're looking at a catastrophe here of galactic proportions. Yellow is not a renewable resource. It is a finite quantity, and when it's gone, it's gone." Sources inside various galactic governments scoffed at the notion of "no more Yellow." Said one anonymous source: "There's always more Yellow; we just might have to fight a war to get it." \n\n43) Aristos: Trade Y2 G2 Aristos\n\tRemneb: When there is no possible retreat then we attack.\n\n44) Remneb: Trade Y1 G1 Aristos\n\tAristos: News flash: Green government bails out failing Yellow industry!\n\n45) Aristos: Sacrifice G2 Aristos\nBuild R3 Cygnus\nBuild Y1 Aristos\n\tRemneb: Special delivery info from our secret agent: any 3 engins ennemy ship who enter Remneb system will mastering the opponent fleet.\r\n\n\n46) Remneb: Move Y2 Antares Aristos\n\n47) Aristos: Sacrifice R2 Deneb\nAttack Y2 Aristos\nAttack G1 Aristos\n\n48) Remneb: Trade Y1 G1 Remneb\n\n49) Aristos: Sacrifice Y2 Aristos\nMove Y3 Deneb Cygnus\nMove Y3 Cygnus Remneb\n\n\tRemneb: "We are the Borg. Resistance is futile. You will be assimilated..."well i surrender then. Good game.Thanks\n\tAristos: Good game. Thanks.\n\nHomeworlds Online (SDG# 20090)\nVariants: "Hard time"\nStarted: 2011.5.30, Ended: 2011.6.27\nParticipants: aqurk (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) aqurk: Homeworld Y3 G2 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) aqurk: Build B1 Aqurk\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) aqurk: Trade B1 G1 Aqurk\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) aqurk: Build B1 Aqurk\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) aqurk: Trade B1 Y1 Aqurk\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) aqurk: Build B1 Aqurk\n\n13) SilentTitan: Discover Y1 Silenttitan G1 Scoop\n\n14) aqurk: Trade B3 R3 Aqurk\n\n15) SilentTitan: Build Y2 Scoop\n\n16) aqurk: Move Y1 Aqurk Scoop\n\n17) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Scoop Aqurk\nMove Y1 Scoop Aqurk\n\n18) aqurk: Attack Y2 Aqurk\n\n19) SilentTitan: Build Y2 Aqurk\nCatastrophe Aqurk Yellow\n\n20) aqurk: Move Y1 Scoop Aqurk\n\n21) SilentTitan: Discover G1 Silenttitan Y1 Scraps\n\n22) aqurk: Build R1 Aqurk\n\taqurk: woa.. I didn't think of that move. I've only played this game a few times :)\n\n23) SilentTitan: Build Y2 Silenttitan\n\tSilentTitan: yeah... I almost missed it myself... I didn't realize we were in a small system at first.\r\n\n\n24) aqurk: Build Y2 Aqurk\n\n25) SilentTitan: Build G1 Scraps\n\n26) aqurk: Move G1 Aqurk Scraps\n\n27) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Scraps Aqurk\nMove G1 Scraps Aqurk\n\n28) aqurk: Sacrifice R3 Aqurk\nAttack G1 Aqurk\nAttack G1 Aqurk\nPass\n\n29) SilentTitan: Build Y2 Silenttitan\n\n30) aqurk: Move G1 Aqurk Scraps\n\n31) SilentTitan: Trade Y2 R2 Silenttitan\n\n32) aqurk: Sacrifice G1 Scraps\nBuild Y2 Aqurk\n\n33) SilentTitan: Move R2 Silenttitan Scraps\n\n34) aqurk: Trade Y2 R2 Aqurk\n\n35) SilentTitan: Attack G1 Scraps South\n\n36) aqurk: Build Y2 Aqurk\n\n37) SilentTitan: Build Y2 Silenttitan\n\n38) aqurk: Trade Y1 B1 Aqurk\n\n39) SilentTitan: Build G1 Scraps\n\n40) aqurk: Discover G1 Aqurk Y3 Kobold\n\n41) SilentTitan: Discover G1 Scraps Y3 Junk\n\n42) aqurk: Move R2 Aqurk Junk\n\n43) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Junk\nBuild G2 Scraps\nBuild R1 Scraps\n\n44) aqurk: Attack G2 Junk\n\n45) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Junk Aqurk\nMove G2 Scraps Aqurk\n\n\taqurk: thanks for the game\n\tSilentTitan: Thanks ... It was a very interesting game\n\nHomeworlds Online (SDG# 20093)\nVariants: "Hard time"\nStarted: 2011.5.30, Ended: 2011.6.9\nParticipants: nycavri (S), sompm (N)\nWinner: nycavri\n\n1) sompm: Homeworld G3 B2 Y3\n\n2) nycavri: Homeworld Y1 B2 G3\n\n3) sompm: Build Y1 Sompm\n\n4) nycavri: Build G1 Nycavri\n\n\nHomeworlds Online (SDG# 20106)\nVariants: "Hard time"\nStarted: 2011.5.31, Ended: 2011.6.24\nParticipants: goulo (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 B2 Y3\n\n2) goulo: Homeworld R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) ajo: Build Y1 Ajo\n\n4) goulo: Build G1 Goulo\n\n5) ajo: Trade Y1 R1 Ajo\n\tajo: Good luck!\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) ajo: Build R1 Ajo\n\n8) goulo: Build Y1 Goulo\n\n9) ajo: Build R2 Ajo\n\n10) goulo: Discover Y1 Goulo G3 Smeraldego\n\n11) ajo: Discover R2 Ajo B1 Alpha\n\n12) goulo: Build Y1 Smeraldego\n\n13) ajo: Build Y2 Ajo\n\n14) goulo: Build Y2 Goulo\n\n15) ajo: Move Y2 Ajo Alpha\n\n16) goulo: Trade Y2 R2 Goulo\n\n17) ajo: Build Y2 Ajo\n\n18) goulo: Discover Y1 Smeraldego G1 Smeraldeto\n\n19) ajo: Trade Y2 G2 Ajo\n\n20) goulo: Build Y2 Goulo\n\n21) ajo: Move G2 Ajo Alpha\n\n22) goulo: Move R2 Goulo Smeraldego\n\n23) ajo: Build G1 Alpha\n\n24) goulo: Trade Y2 G2 Goulo\n\n25) ajo: Move R1 Ajo Smeraldeto\n\n26) goulo: Discover Y1 Smeraldeto Y2 Citrono\n\n27) ajo: Discover G1 Alpha Y3 Beta\n\n28) goulo: Sacrifice G2 Goulo\nBuild Y2 Smeraldego\nBuild Y3 Goulo\n\n29) ajo: Sacrifice G1 Beta\nBuild Y3 Ajo\n\n30) goulo: Build G1 Goulo\n\n31) ajo: Move Y3 Ajo Smeraldeto\n\n32) goulo: Sacrifice Y2 Smeraldego\nMove G3 Goulo Smeraldego\nMove G3 Smeraldego Alpha\n\n33) ajo: Sacrifice Y2 Alpha\nDiscover G2 Alpha B3 Gamma\nMove R2 Alpha Citrono\n\n34) goulo: Move Y1 Citrono Alpha\n\tajo: Good move. I'm having trouble seeing the right response to that.\n\n35) ajo: Build Y2 Smeraldeto\n\n36) goulo: Build Y2 Alpha\n\tgoulo: Thanks! (Though I often feel that way, about not being sure what the right move is... :)\n\n37) ajo: Move Y3 Smeraldeto Gamma\n\n38) goulo: Build G1 Alpha\n\n39) ajo: Build G2 Gamma\n\n40) goulo: Trade G3 R3 Alpha\n\n41) ajo: Sacrifice G2 Gamma\nBuild R2 Smeraldeto\nBuild R3 Ajo\n\n42) goulo: Build R3 Alpha\n\n43) ajo: Build G2 Gamma\n\n44) goulo: Build G2 Goulo\n\n45) ajo: Move R1 Smeraldeto Gamma\n\n46) goulo: Build G3 Alpha\n\n47) ajo: Sacrifice Y2 Smeraldeto\nMove R1 Gamma Alpha\nMove R1 Ajo Alpha\nCatastrophe Alpha Red\n\n48) goulo: Build Y2 Smeraldego\n\tgoulo: my turns are slower due to travel, sorry.\n\tajo: No worries. I generally play two games at once, and I admit that when *I* take a long break between two moves in this game, it's usually just because I don't want to switch gears in the middle of a series of moves in the other game. So you've got a better excuse than me anyway. ;)\n\n49) ajo: Sacrifice G2 Gamma\nBuild G2 Gamma\nBuild R1 Citrono\n\n50) goulo: Discover G1 Goulo R3 Rubenego\n\n51) ajo: Move R2 Citrono Rubenego\n\n52) goulo: Sacrifice G1 Rubenego\nBuild G1 Goulo\n\n53) ajo: Sacrifice G2 Gamma\nBuild R1 Rubenego\nBuild R3 Citrono\n\n54) goulo: Move G1 Goulo Smeraldego\n\n55) ajo: Sacrifice Y3 Gamma\nMove R1 Rubenego Goulo\nMove R2 Rubenego Goulo\nDiscover R1 Citrono Y3 Citronella\n\n56) goulo: Attack R2 Goulo\n\n57) ajo: Move R1 Citronella Goulo\nCatastrophe Goulo Red\n\n58) goulo: Sacrifice G3 Alpha\nBuild G2 Goulo\nBuild G3 Alpha\nBuild Y3 Smeraldego\n\n59) ajo: Move R3 Citrono Gamma\n\n60) goulo: Build Y2 Alpha\n\n61) ajo: Build R1 Ajo\n\n62) goulo: Discover G1 Smeraldego R1 Rubeneto\n\n63) ajo: Trade R1 B1 Ajo\n\n64) goulo: Sacrifice G2 Goulo\nBuild R1 Smeraldego\nBuild G2 Rubeneto\n\n65) ajo: Move B1 Ajo Smeraldeto\n\n66) goulo: Move G1 Alpha Ajo\n\n67) ajo: Attack G1 Ajo\n\n68) goulo: Sacrifice Y2 Smeraldego\nMove G1 Rubeneto Ajo\nMove G2 Rubeneto Ajo\nCatastrophe Ajo G\n\n69) ajo: Sacrifice G2 Gamma\nBuild B1 Smeraldeto\nBuild B2 Smeraldeto\n\n70) goulo: Sacrifice Y3 Smeraldego\nMove Y1 Smeraldego Ajo\nMove Y1 Alpha Ajo\nMove Y2 Alpha Ajo\nCatastrophe Ajo Y\n\n71) ajo: Trade R3 Y3 Gamma\n\tajo: Check.\n\n\tajo: Yes, but it's over now. :) That's checkmate. Good game!\n\tgoulo: yep, thanks! it was an interesting one.\n\nHomeworlds Online (SDG# 20123)\nStarted: 2011.6.4, Ended: 2011.6.6\nParticipants: Aristos (S), dragmio (N)\nWinner: dragmio\n\n1) dragmio: Homeworld B2 Y1 G3\n\tdragmio: Hello! Have a nice game.\n\n\tAristos: I never got a message that this game had even started. \n\tdragmio: OK. Shall we try again?\n\nHomeworlds Online (SDG# 20134)\nStarted: 2011.6.5, Ended: 2011.7.6\nParticipants: dragmio (S), lorgar (N)\nWinner: dragmio\n\n1) lorgar: Homeworld B3 Y1 G3\n\tlorgar: lets fight again!\n\n2) dragmio: Homeworld B2 G1 R3\n\tdragmio: Yes! This time I'll stop your green invasion! :)\n\n3) lorgar: Build G1 Lorgar\n\n4) dragmio: Build R1 Dragmio\n\tlorgar: do not overestimate the powers of the red side, padawan!\n\tdragmio: Well, I don't have much of a choice now. At least in this move. :)\n\n5) lorgar: Build G1 Lorgar\n\n6) dragmio: Build R1 Dragmio\n\n7) lorgar: Trade G1 R1 Lorgar\n\n8) dragmio: Trade R1 Y1 Dragmio\n\n9) lorgar: Discover G1 Lorgar B2 Pot\n\n10) dragmio: Build Y1 Dragmio\n\n11) lorgar: Build G1 Lorgar\n\n12) dragmio: Build Y2 Dragmio\n\n13) lorgar: Build G2 Pot\n\n14) dragmio: Trade Y2 G2 Dragmio\n\n15) lorgar: Trade G2 Y2 Pot\n\n16) dragmio: Build Y2 Dragmio\n\n17) lorgar: Build G2 Pot\n\n18) dragmio: Discover Y2 Dragmio B3 Able\n\n19) lorgar: Discover G2 Pot B3 Weed\n\n20) dragmio: Move G2 Dragmio Able\n\tdragmio: Sorry, I've put in G3 instead of B3.\n\n21) lorgar: Build R1 Lorgar\n\n22) dragmio: Build Y2 Dragmio\n\n23) lorgar: Sacrifice G3 Lorgar\nBuild G2 Pot\nBuild G3 Weed\nBuild G3 Lorgar\n\n24) dragmio: Build Y3 Able\n\n25) lorgar: Discover G2 Pot G3 Marmec\n\n26) dragmio: Move Y3 Able Pot\n\n27) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild Y3 Pot\nBuild Y3 Pot\nCatastrophe Pot Yellow\n\n28) dragmio: Move Y2 Able Pot\n\n29) lorgar: Sacrifice G3 Weed\nBuild G3 Pot\nPass\nPass\n\n30) dragmio: Move Y2 Pot Able\n\n31) lorgar: Move R1 Lorgar Pot\n\n32) dragmio: Build Y2 Able\n\n33) lorgar: Sacrifice G2 Marmec\nBuild G2 Weed\nBuild G3 Weed\n\n34) dragmio: Sacrifice Y2 Dragmio\nMove G2 Able Dragmio\nMove G2 Dragmio Weed\nCatastrophe Weed G\n\n35) lorgar: Build R2 Pot\n\n36) dragmio: Trade Y2 G2 Able\n\n37) lorgar: Trade R2 Y2 Pot\n\n38) dragmio: Sacrifice G2 Able\nBuild Y2 Dragmio\nBuild Y3 Able\n\n39) lorgar: Discover G1 Pot Y3 Kaya\n\n40) dragmio: Trade Y3 G3 Able\n\n41) lorgar: Build Y3 Pot\n\n42) dragmio: Build Y3 Able\n\n43) lorgar: Discover Y2 Pot B3 Soulcaptives\n\n44) dragmio: Sacrifice Y2 Dragmio\nMove Y3 Able Pot\nMove G3 Able Pot\n\n45) lorgar: Attack G3S Pot\n\n46) dragmio: Sacrifice R3 Dragmio\nAttack G3N Pot\nAttack Y3N Pot\nAttack G3N Pot\n\n47) lorgar: Move Y2 Soulcaptives Dragmio\n\n48) dragmio: Sacrifice Y2 Able\nMove G3 Pot Kaya\nMove G3 Kaya Dragmio\n\n49) lorgar: Trade Y2 G2 Dragmio\n\n50) dragmio: Trade G3 R3 Dragmio\n\n51) lorgar: Trade R1 B1 Pot\n\tdragmio: Behold the power of the Red side! ;)\n\n52) dragmio: Attack G2N Dragmio\n\tlorgar: thanks for opening your homeworld's door ^^\n\n53) lorgar: Sacrifice G3 Lorgar\nBuild B1 Pot\nBuild B1 Pot\nBuild G2 Kaya\nCatastrophe Pot Blue\n\tdragmio: Intruder alert!\n\n54) dragmio: Move R3 Dragmio Kaya\n\n55) lorgar: Build G2 Kaya\n\n56) dragmio: Move G2 Dragmio Kaya\nCatastrophe Kaya G\n\n57) lorgar: Build R1 Lorgar\n\n58) dragmio: Discover R3 Kaya B2 Plavi\n\n59) lorgar: Build G1 Lorgar\n\tdragmio: Nice! That was some creative destruction. :)\n\n60) dragmio: Build R2 Dragmio\n\n61) lorgar: Discover G1 Lorgar B2 Catonemoidia\n\n62) dragmio: Trade R3 Y3 Plavi\n\n63) lorgar: Build G2 Lorgar\n\n64) dragmio: Move Y3 Plavi Lorgar\n\n65) lorgar: Trade G2 Y2 Lorgar\n\n66) dragmio: Sacrifice R2 Dragmio\nAttack R1N Lorgar\nAttack R1N Lorgar\n\n67) lorgar: Build Y2 Lorgar\nCatastrophe Lorgar Yellow\n\n68) dragmio: Attack G1N Lorgar\n\n\tlorgar: well played\n\tdragmio: ty\n\nHomeworlds Online (SDG# 20147)\nStarted: 2011.6.6, Ended: 2011.6.12\nParticipants: TwoShort (S), lorgar (N)\nWinner: TwoShort\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) TwoShort: Build G1 Twoshort\n\n5) lorgar: Discover G1 Lorgar B2 Maru\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) lorgar: Build G1 Lorgar\n\n8) TwoShort: Build Y1 Twoshort\n\n9) lorgar: Build G1 Maru\n\n10) TwoShort: Build G2 Twoshort\n\n11) lorgar: Trade G1 R1 Maru\n\n12) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n13) lorgar: Build R1 Maru\n\n14) TwoShort: Build G1 Twoshort\n\n15) lorgar: Build G2 Lorgar\n\n16) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\n\n17) lorgar: Trade G2 Y2 Lorgar\n\n18) TwoShort: Trade G2 R2 Twoshort\n\n19) lorgar: Build G2 Maru\n\n20) TwoShort: Discover G2 Yolonda B2 Bluestar\n\n21) lorgar: Move Y2 Lorgar Maru\n\n22) TwoShort: Trade G3 Y3 Twoshort\n\n23) lorgar: Build Y1 Maru\n\n24) TwoShort: Sacrifice Y3 Twoshort\nMove G3 Yolonda Bluestar\nMove G3 Bluestar Lorgar\nMove G2 Bluestar Lorgar\nCatastrophe Lorgar Green\n\tlorgar: got a good beating ^^\n\n\nHomeworlds Online (SDG# 20148)\nStarted: 2011.6.6, Ended: 2011.6.12\nParticipants: Aristos (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) Aristos: Homeworld G3 Y2 B3\n\n3) lorgar: Build G1 Lorgar\n\n4) Aristos: Build B1 Aristos\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) Aristos: Build B2 Aristos\n\n7) lorgar: Build G1 Lorgar\n\n8) Aristos: Discover B1 Aristos G1 Pico\n\n9) lorgar: Discover B1 Lorgar G2 Ocip\n\n10) Aristos: Build B2 Pico\n\n11) lorgar: Build G1 Lorgar\n\n12) Aristos: Trade B1 Y1 Pico\n\n13) lorgar: Discover G1 Lorgar B2 Ocid\n\n14) Aristos: Trade B3 G3 Aristos\n\n15) lorgar: Sacrifice G3 Lorgar\nBuild G2 Ocid\nBuild G2 Ocid\nBuild G3 Lorgar\n\n16) Aristos: Build B1 Pico\n\n17) lorgar: Trade G2 R2 Ocid\n\n18) Aristos: Build G2 Aristos\n\n19) lorgar: Trade G2 Y2 Ocid\n\n20) Aristos: Trade B1 R1 Pico\n\n21) lorgar: Sacrifice Y2 Ocid\nMove G1 Ocid Pico\nMove G1 Pico Aristos\nCatastrophe Aristos Green\n\n\tAristos: Dumb mistake on my part. Good game.\n\tlorgar: thx gg\r\nbut we could have played more.\n\nHomeworlds Online (SDG# 20154)\nStarted: 2011.6.7, Ended: 2011.8.28\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: H Y1 B2 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build G1 Lorgar\n\n5) ts52: Trade G1 B1 Ts52\n\tlorgar: thx\n\n6) lorgar: Trade G1 Y1 Lorgar\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) lorgar: Discover Y1 Lorgar G2 Frog\n\n9) ts52: Build B1 Kermit\n\n10) lorgar: Build G1 Lorgar\n\n11) ts52: Build B2 Kermit\n\n12) lorgar: Build Y1 Frog\n\n13) ts52: Trade B2 Y2 Kermit\n\tlorgar: sod it, I'm being screwed!\n\n14) lorgar: Discover Y1 Frog B3 The\n\n15) ts52: Build B2 Kermit\n\tts52: I wouldn\n\tts52: I wouldn't say that. This game is just getting started.\n\n16) lorgar: Build Y2 Frog\n\n17) ts52: Discover B2 Kermit G2 Robin\n\n18) lorgar: Trade Y1 G1 The\n\n19) ts52: Build B2 Kermit\n\n20) lorgar: Build G1 The\n\n21) ts52: B B3 Robin\n\n22) lorgar: Sacrifice Y2 Frog\nMove G1 The Ts52\nMove G1 The Ts52\n\n23) ts52: Trade G3 R3 Ts52\n\n24) lorgar: Sacrifice G3 Lorgar\nBuild G2 Ts52\nBuild G3 Lorgar\nBuild G3 Lorgar\n\n25) ts52: Attack G2 Ts52\n\n26) lorgar: Trade G1 Y1 Ts52\n\n27) ts52: Attack Y1 Ts52\n\n28) lorgar: Discover G1 Ts52 B3 Eht\n\n29) ts52: Build B3 Robin\n\n30) lorgar: Trade G3 R3 Lorgar\n\n31) ts52: Trade B2 R2 Kermit\n\n32) lorgar: Sacrifice Y1 Frog\nMove G1 Eht Robin\n\n33) ts52: Sacrifice R2 Kermit\nAttack G1 Robin\nPass\n\n34) lorgar: Move G1 Lorgar Robin\n\n35) ts52: Sacrifice Y2 Kermit\nDiscover B3 Robin G3 Oscar\nMove B3 Robin Kermit\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n36) lorgar: Build G1 Lorgar\n\n37) ts52: Trade G1 R1 Robin\n\n38) lorgar: Sacrifice G3 Lorgar\nBuild G1 Robin\nBuild G2 Robin\nBuild G3 Lorgar\nCatastrophe Robin Green\n\n39) ts52: Build B2 Oscar\n\n40) lorgar: Discover G1 Lorgar B2 Alawit\n\n41) ts52: Build B3 Oscar\n\n42) lorgar: Build G1 Alawit\n\n43) ts52: Trade B3 Y3 Oscar\n\n44) lorgar: Trade G1 Y1 Alawit\n\n45) ts52: Trade B3 Y3 Kermit\n\n46) lorgar: Build G1 Lorgar\n\n47) ts52: Trade B3 R3 Oscar\n\n48) lorgar: Discover G1 Alawit B3 Star\n\tlorgar: what went wrong??? :'-(\n\n49) ts52: Build B3 Kermit\n\tts52: I think you just let me get too far with blue... not really sure though.\n\n50) lorgar: Discover Y1 Alawit B3 Shine\n\n51) ts52: Discover R3 Oscar Y2 Bigbird\n\n52) lorgar: Build G1 Star\n\n53) ts52: Move R3 Bigbird Star\n\n54) lorgar: Build G2 Star\n\n55) ts52: Attack G2 Star\n\n56) lorgar: Sacrifice G3 Lorgar\nBuild G2 Star\nBuild G3 Lorgar\nBuild Y2 Shine\n\n57) ts52: Sacrifice Y1 Ts52\nDiscover G2 Star B2 Grover\n\n58) lorgar: Trade Y1 R1 Shine\n\n59) ts52: Attack G2 Star\n\tlorgar: HA YOU LUCKER. forgot to say "catastrophe star green"\n\n60) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild R1 Shine\nBuild R1 Shine\n\tts52: I had been expecting that anyway... though you know you can undo a move, right?\n\tlorgar: I already used undo before on the same turn\n\n61) ts52: Build R2 Star\n\tts52: you can only use it once per turn?\n\n62) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild Y1 Shine\nBuild R2 Lorgar\n\tlorgar: yes\n\n63) ts52: Trade G2 Y2 Star\n\n64) lorgar: Move R3 Lorgar Grover\n\n65) ts52: Attack G1 Star\n\n66) lorgar: Attack G2N Grover\n\n67) ts52: Build G2 Ts52\n\n68) lorgar: Sacrifice G1 Star\nBuild G1 Grover\n\n69) ts52: Discover R2 Star Y2 Bigbird\n\n70) lorgar: Discover R1 Shine Y1 Rar\n\n71) ts52: Move B3 Kermit Bigbird\n\n72) lorgar: Move R1 Shine Rar\n\n73) ts52: Move B3 Bigbird Shine\n\n74) lorgar: Sacrifice Y2 Shine\nDiscover R1 Rar Y2 Lore\nMove Y1 Shine Grover\n\n75) ts52: Move B1 Kermit Bigbird\n\n76) lorgar: Build R2 Grover\n\n77) ts52: Move B2 Oscar Lore\n\n78) lorgar: Move R1 Lore Oscar\n\tlorgar: my hands are tied...\n\n79) ts52: Sacrifice R2 Bigbird\nAttack R1 Oscar\nAttack R1 Shine\n\n80) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild R2 Rar\nPass\n\n81) ts52: Sacrifice Y2 Star\nMove R1 Shine Grover\nMove R1 Oscar Grover\nCatastrophe Grover Red\n\n82) lorgar: Sacrifice G3 Lorgar\nBuild Y2 Grover\nBuild G3 Lorgar\nBuild R1 Rar\n\n83) ts52: Move Y3 Kermit Grover\n\n84) lorgar: Sacrifice Y2 Grover\nMove R1 Rar Star\nMove R1 Rar Star\n\n85) ts52: Sacrifice R3 Star\nAttack R1 Star\nAttack R1 Star\nAttack G2 Grover\n\n86) lorgar: Move G1 Grover Kermit\n\n87) ts52: Sacrifice R1 Star\nAttack Y1 Grover\n\n88) lorgar: Move R2 Rar Bigbird\n\n89) ts52: Move Y3 Grover Star\n\n90) lorgar: Attack B1N Bigbird\n\n91) ts52: Build Y1 Grover\n\n92) lorgar: Trade R2 Y2 Bigbird\n\n93) ts52: Trade G2 R2 Grover\n\n94) lorgar: Build G2 Kermit\n\n95) ts52: Move Y1 Grover Shine\n\n96) lorgar: Sacrifice Y2 Bigbird\nMove G2 Kermit Ts52\nMove G1 Kermit Ts52\nCatastrophe Ts52 Green\n\n97) ts52: Build Y2 Star\n\n98) lorgar: Move G1 Lorgar Bigbird\n\n99) ts52: Move Y2 Star Bigbird\n\n100) lorgar: Build G1 Lorgar\n\n101) ts52: Move Y1 Shine Grover\n\n102) lorgar: Build R1 Lorgar\n\n103) ts52: Sacrifice Y3 Oscar\nMove Y1 Grover Lorgar\nMove Y1 Grover Lorgar\nMove Y2 Bigbird Lorgar\nCatastrophe Lorgar Yellow\n\n104) lorgar: Trade R1 Y1 Lorgar\n\n105) ts52: Sacrifice Y3 Star\nMove B1 Kermit Lorgar\nMove B2 Lore Lorgar\nMove B3 Shine Lorgar\nCatastrophe Lorgar Blue\n\n\tts52: Thanks for the game.\n\tlorgar: no surprise, I got beaten up fair and square... and I want a rematch, dreaded nemesis!\n\nHomeworlds Online (SDG# 20158)\nVariants: "Hard time"\nStarted: 2011.6.8, Ended: 2011.6.22\nParticipants: Aristos (S), MadWuher (N)\nWinner: Aristos\n\n1) MadWuher: Homeworld R2 B1 G3\n\tMadWuher: Haven't played in a while, may be a bit rusty. Hope you have a good game.\n\n2) Aristos: Homeworld Y3 B1 G3\n\n3) MadWuher: Build G1 Madwuher\n\n4) Aristos: Build G1 Aristos\n\n5) MadWuher: T G1 B1 Madwuher\n\n6) Aristos: Trade G3 B3 Aristos\n\n7) MadWuher: B B2 Madwuher\n\n8) Aristos: Build G1 Aristos\n\n9) MadWuher: T B1 Y1 Madwuher\n\n10) Aristos: Discover G1 Aristos Y2 Canary\n\n11) MadWuher: Build Y1 Madwuher\n\n12) Aristos: Build G1 Aristos\n\n13) MadWuher: B G2 Madwuher\n\n14) Aristos: Build G2 Canary\n\n15) MadWuher: Discover G2 Madwuher G3 Goliath\n\n16) Aristos: Move G1 Canary Goliath\n\n17) MadWuher: B G2 Madwuher\n\n18) Aristos: Build G3 Canary\n\n19) MadWuher: Move Y1 Madwuher Goliath\n\n20) Aristos: Sacrifice G2 Canary\nBuild G2 Goliath\nBuild B1 Aristos\nCatastrophe Goliath Green\n\n21) MadWuher: Build B2 Madwuher\n\n22) Aristos: Move B1 Aristos Canary\n\n23) MadWuher: Discover G2 Madwuher B3 Bologna\n\n24) Aristos: Build B2 Canary\n\n25) MadWuher: Build G1 Madwuher\n\n26) Aristos: Build B3 Canary\n\tMadWuher: Wow. My rust is showing......\n\n27) MadWuher: Discover B2 Madwuher Y3 Elonia\n\tAristos: It's ok... I needed to do well after my last game when I accidentally built 4 of the same color in my home system and my opponent noticed and catastrophed for me. *sigh* I felt dumb.\n\n28) Aristos: Build G2 Canary\n\n29) MadWuher: Sacrifice G2 Bologna\nBuild G2 Madwuher\nBuild B3 Elonia\n\n30) Aristos: Trade B3 Y3 Canary\n\n31) MadWuher: Move G2 Madwuher Elonia\n\n32) Aristos: Discover B1 Canary B3 Plum\n\n33) MadWuher: Move B2 Madwuher Plum\n\n34) Aristos: Sacrifice Y3 Canary\nDiscover B2 Canary R3 Fire\nMove B2 Fire Madwuher\nMove B1 Plum Madwuher\n\n35) MadWuher: Attack B2 Madwuher\n\n36) Aristos: Attack Y1 Madwuher\n\tAristos: ACK! I botched that... forgot about the lack of blue. Good defense on your part.\n\n37) MadWuher: Attack Y1 Madwuher\n\tAristos: What's the rule on retaking a ship that was just attacked? If you attack y1 again, do we sit in an infinite loop? \n\n38) Aristos: Attack Y1 Madwuher\n\n\tAristos: Hm... so there's apparently no "don't repeat board position" rule. So we need some sort of gentlemen's agreement to resolve this or else stalemate.\n\tAristos: Your move.\n\tMadWuher: Sorry Aristos, my time is filling up and I won't have access to this site for the next few months so I'm afraid I'm going to have to resign from our game. I notice that you had me locked down in my homeworld one way or another. If I switch a Blue to Red then you can wipe out my blue. If you took over my green then you could have build green up to a catastrophe. The only thing I can see is if I change my G3 to R3 and do a triple attack in my homeworld. \n\tAristos: Thanks for playing.\n\nHomeworlds Online (SDG# 20159)\nVariants: "Hard time"\nStarted: 2011.6.8, Ended: 2011.6.17\nParticipants: TwoShort (S), mneme (N)\nWinner: TwoShort\n\n1) mneme: Homeworld R1 B2 G3\n\tmneme: Alas, I couldn't expect to hold the #1 spot forever. Good luck!\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) mneme: Build G1 Mneme\n\n4) TwoShort: Build G1 Twoshort\n\n5) mneme: Trade G1 B1 Mneme\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) mneme: Build B2 Mneme\n\n8) TwoShort: Build B2 Twoshort\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) TwoShort: Trade B2 Y2 Twoshort\n\n11) mneme: Build B2 Mneme\n\n12) TwoShort: Build B2 Twoshort\n\n13) mneme: Discover B2 Mneme G3 Station\n\n14) TwoShort: Discover B2 Twoshort G2 Grogar\n\n15) mneme: Build B3 Station\n\n16) TwoShort: Build B3 Grogar\n\n17) mneme: Trade B3 R3 Station\n\n18) TwoShort: Trade B2 R2 Grogar\n\tTwoShort: I almost don't want to break the symmetry...\n\n19) mneme: Build B2 Station\n\n20) TwoShort: Discover B1 Twoshort G2 Greenland\n\tmneme: and yet? :) \n\n21) mneme: Trade B2 Y2 Station\n\n22) TwoShort: Build G1 Twoshort\n\n23) mneme: Move R3 Station Greenland\n\n24) TwoShort: Sacrifice Y2 Twoshort\nDiscover B1 Greenland Y3 Yolonda\nMove B3 Grogar Station\n\n25) mneme: Sacrifice G3 Mneme\nBuild B2 Station\nBuild B3 Station\nBuild Y1 Mneme\nCatastrophe Station B\n\n26) TwoShort: Sacrifice G1 Twoshort\nBuild B2 Yolonda\n\n27) mneme: Move B1 Mneme Station\n\n28) TwoShort: Trade B2 G2 Yolonda\n\n29) mneme: Build B2 Station\n\n30) TwoShort: Build G1 Twoshort\n\n31) mneme: Sacrifice Y1 Mneme\nMove R3 Greenland Yolonda\n\n32) TwoShort: Discover G2 Yolonda G1 Greenotron\n\n33) mneme: Attack B1 Yolonda\n\n34) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Greenotron\nBuild G2 Twoshort\nBuild G3 Twoshort\n\n35) mneme: Trade R3 G3 Yolonda\n\n36) TwoShort: Trade G2 Y2 Twoshort\n\n37) mneme: Build B2 Yolonda\n\n38) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Greenotron Station\nDiscover G2 Greenotron B3 Bluonia\n\n39) mneme: Build B3 Yolonda\n\n40) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Bluonia\nBuild G2 Station\nBuild G3 Twoshort\n\n41) mneme: Trade B3 R3 Yolonda\n\n42) TwoShort: Sacrifice R2 Grogar\nAttack B2 Station\nAttack Y2 Station\n\n43) mneme: Build B3 Station\n\n44) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild B3 Station\nCatastrophe Station Blue\n\n45) mneme: Build B1 Yolonda\n\n46) TwoShort: Trade G2 B2 Twoshort\n\n47) mneme: Discover B2 Yolonda Y2 Stage\n\n48) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Bluonia\nBuild G3 Twoshort\nBuild B3 Twoshort\n\n49) mneme: Sacrifice Y2 Mneme\n\nMove R3 Yolonda Mneme\nMove B2 Stage Twoshort\nCatastrophe Twoshort B\n\n50) TwoShort: Trade G2 R2 Bluonia\n\n51) mneme: Build G2 Yolonda\n\n52) TwoShort: Sacrifice G3 Twoshort\nBuild R1 Bluonia\nBuild Y1 Station\nBuild G3 Twoshort\n\tmneme: Huh. Cool gambit; trying to coax me into bluebird?\n\tTwoShort: It never hurts to give the other guy a chance to screw up. :) But the moves I thought were likely were this or moving in without the sacrifice. I think the latter led to a draw. Either way looked better than where I was.\n\n53) mneme: Trade R3 Y3 Mneme\n\n54) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y1 Station\nBuild R1 Bluonia\n\n55) mneme: Sacrifice Y3 Mneme\nMove G2 Yolonda Mneme\nMove G2 Mneme Station\nMove B1 Yolonda Mneme\nCatastrophe Station G\n\n56) TwoShort: Trade R2 Y2 Bluonia\n\n57) mneme: Sacrifice G3 Yolonda\nBuild B1 Yolonda\nBuild B2 Yolonda\nBuild B2 Mneme\n\tmneme: damn. messed up the topography of the world! \r\nStupid mistake.\r\n\n\n58) TwoShort: Sacrifice Y2 Bluonia\nMove G3 Twoshort Mneme\nPass\n\n\tmneme: And again, I fail because I cannot remember the topology of the game and think I have los to your homeworld. *sigh* (though I think I'd already lost). GG\n\nHomeworlds Online (SDG# 20157)\nVariants: "Hard time"\nStarted: 2011.6.8, Ended: 2011.6.17\nParticipants: SilentTitan (S), SirRuthvenMurgatroyd (N)\nWinner: SilentTitan\n\n1) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Calufrax\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) SirRuthvenMurgatroyd: Build G1 Calufrax\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n10) SilentTitan: Trade Y1 B1 Silenttitan\n\n11) SirRuthvenMurgatroyd: Move G1 Calufrax Sirruthvenmurgatroyd\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) SirRuthvenMurgatroyd: Build G1 Calufrax\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n16) SilentTitan: Discover G2 Silenttitan B1 Po\n\n17) SirRuthvenMurgatroyd: Trade G2 B2 Sirruthvenmurgatroyd\n\n18) SilentTitan: Discover B1 Silenttitan Y1 Go\n\n19) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n20) SilentTitan: Build Y2 Silenttitan\n\n21) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n22) SilentTitan: Move Y1 Silenttitan Po\n\n23) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd\n\n24) SilentTitan: Sacrifice G2 Po\nBuild B3 Go\nBuild B3 Go\n\n25) SirRuthvenMurgatroyd: Build B3 Sirruthvenmurgatroyd\n\n26) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover B1 Go Y3 Do\nMove B1 Do Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Blue\n\n27) SirRuthvenMurgatroyd: Sacrifice Y3 Sirruthvenmurgatroyd\nMove G1 Calufrax Sirruthvenmurgatroyd\nMove G1 Sirruthvenmurgatroyd Silenttitan\nMove G1 Sirruthvenmurgatroyd Silenttitan\n\n28) SilentTitan: Sacrifice B3 Go\nTrade G3 Y3 Silenttitan\nTrade B3 R3 Go\nPass\n\n29) SirRuthvenMurgatroyd: Attack B1S Silenttitan\n\n30) SilentTitan: Sacrifice R3 Go\nAttack G1 Silenttitan North\nAttack G1 Silenttitan North\nAttack B1 Silenttitan North\n\n31) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n32) SilentTitan: Discover Y1 Po G3 Yo\n\n33) SirRuthvenMurgatroyd: Discover G1 Calufrax B2 Sol\n\n34) SilentTitan: Build Y1 Yo\n\n35) SirRuthvenMurgatroyd: Move R2 Sirruthvenmurgatroyd Yo\n\n36) SilentTitan: Move Y1 Yo Sirruthvenmurgatroyd\n\n37) SirRuthvenMurgatroyd: Attack Y1S Yo\n\n38) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Sirruthvenmurgatroyd\n\n39) SirRuthvenMurgatroyd: Sacrifice R2 Yo\nAttack Y1S Sirruthvenmurgatroyd\nAttack Y2S Sirruthvenmurgatroyd\n\n40) SilentTitan: Move Y3 Silenttitan Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Yellow\n\tSirRuthvenMurgatroyd: Good game. I had seen a couple moves ago that you could have sacrificed your yellow three to move in your two green and wipe out all my ships right after I gave you the opportunity, but fortunately you didn't see that. I think I was pretty much doomed for a while at the end anyway.\n\tSilentTitan: Good game to you as well.... I was probably focused on taking out your homeworld... so I got caught up in the yellows rather than looking at all the colors and anyway to win. \n\n\nHomeworlds Online (SDG# 20163)\nStarted: 2011.6.12, Ended: 2011.8.5\nParticipants: SirRuthvenMurgatroyd (S), Aristos (N)\nWinner: SirRuthvenMurgatroyd\n\n1) Aristos: Homeworld Y1 B2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y2 B3 G3\n\n3) Aristos: Build G1 Aristos\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) Aristos: Discover G1 Aristos Y3 Ash\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n7) Aristos: Discover G1 Ash Y1 Elm\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) Aristos: Build G2 Elm\n\n10) SirRuthvenMurgatroyd: Build G2 Sol\n\n11) Aristos: Build G2 Aristos\n\n12) SirRuthvenMurgatroyd: Build G3 Sol\n\n13) Aristos: Trade G2 Y2 Aristos\n\n14) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n15) Aristos: Sacrifice Y2 Aristos\nDiscover G1 Elm Y2 Ash\nMove G1 Ash Sol\nCatastrophe Sol Green\n\tAristos: Accidentally clicked the Undo button. :-)\n\n16) SirRuthvenMurgatroyd: Move R3 Sirruthvenmurgatroyd Elm\n\n17) Aristos: Sacrifice G2 Elm\nBuild G1 Aristos\nPass\n\n18) SirRuthvenMurgatroyd: Move R3 Elm Sirruthvenmurgatroyd\n\n19) Aristos: Trade G1 Y1 Aristos\n\n20) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n21) Aristos: Build Y1 Aristos\n\n22) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd G1 Terra\n\n23) Aristos: Build G2 Aristos\n\n24) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n25) Aristos: Discover G2 Aristos B3 Oak\n\n26) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd\n\n27) Aristos: Build G1 Aristos\n\n28) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n29) Aristos: Trade Y1 R1 Aristos\n\n30) SirRuthvenMurgatroyd: Build G2 Terra\n\n31) Aristos: Build G2 Oak\n\n32) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nMove G2 Terra Sirruthvenmurgatroyd\nMove G1 Terra Sirruthvenmurgatroyd\n\n33) Aristos: Sacrifice G3 Aristos\nBuild G1 Aristos\nBuild G3 Aristos\nBuild G3 Oak\n\n34) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd\n\tAristos: Must be lunch break for you too. :-)\n\n35) Aristos: Sacrifice G3 Oak\nBuild G3 Oak\nBuild Y1 Aristos\nBuild R1 Aristos\n\n36) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G3 Sirruthvenmurgatroyd\nBuild R1 Sirruthvenmurgatroyd\nBuild R2 Sirruthvenmurgatroyd\n\n37) Aristos: Trade G3 Y3 Oak\n\n38) SirRuthvenMurgatroyd: Sacrifice G1 Sirruthvenmurgatroyd\nBuild B1 Sirruthvenmurgatroyd\n\n39) Aristos: Build Y2 Oak\n\n40) SirRuthvenMurgatroyd: Trade R3 Y3 Sirruthvenmurgatroyd\n\n41) Aristos: Discover G1 Aristos Y3 Cedar\n\n42) SirRuthvenMurgatroyd: Discover Y3 Sirruthvenmurgatroyd B1 Calufrax\n\n43) Aristos: Sacrifice Y3 Oak\nMove Y1 Aristos Oak\nDiscover Y1 Oak G1 Elm\nMove Y2 Oak Elm\n\tAristos: Your move...\n\n44) SirRuthvenMurgatroyd: Discover Y3 Calufrax G3 Betelgeuse\n\tSirRuthvenMurgatroyd: Yeah, I know; I'm really sorry, but I've been incredibly busy this week. I'll be moving more timely after Sunday.\n\n45) Aristos: Trade G2 B2 Oak\n\tAristos: No problem... I just didn't want you to miss because of time. :-)\n\n46) SirRuthvenMurgatroyd: Sacrifice B1 Sirruthvenmurgatroyd\nTrade G2 Y2 Sirruthvenmurgatroyd\n\n47) Aristos: Discover Y1 Aristos R3 Maple\n\n48) SirRuthvenMurgatroyd: Build Y3 Betelgeuse\n\n49) Aristos: Discover Y1 Maple B1 Pine\n\n50) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nMove Y3 Betelgeuse Aristos\nMove Y3 Betelgeuse Aristos\n\n51) Aristos: Sacrifice Y2 Elm\nDiscover Y1 Pine B3 Willow\nMove Y1 Willow Aristos\nCatastrophe Aristos Yellow\n\n52) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n53) Aristos: Sacrifice G3 Aristos\nBuild G2 Cedar\nBuild G3 Oak\nBuild G3 Aristos\n\n54) SirRuthvenMurgatroyd: Discover B1 Sirruthvenmurgatroyd Y1 Dogwood\n\tAristos: Well played.\n\n55) Aristos: Trade G2 Y2 Oak\n\n56) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n57) Aristos: Move Y2 Oak Dogwood\n\n58) SirRuthvenMurgatroyd: Discover B1 Dogwood Y3 Acacia\n\n59) Aristos: Trade B2 Y2 Oak\n\n60) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd\nBuild B1 Acacia\nBuild B1 Acacia\n\n61) Aristos: Sacrifice Y2 Oak\nMove Y2 Dogwood Sirruthvenmurgatroyd\nMove Y1 Elm Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Yellow\n\n62) SirRuthvenMurgatroyd: Move B1 Acacia Aristos\n\n63) Aristos: Attack B1 Aristos\n\n64) SirRuthvenMurgatroyd: Move B1 Acacia Aristos\n\n\tSirRuthvenMurgatroyd: Err.... hadn't seen your undo before my move, but I'd have done the same thing. so no worry.\n\nHomeworlds Online (SDG# 20194)\nStarted: 2011.6.13, Ended: 2011.7.4\nParticipants: dlwillson (S), Salmonax (N)\nWinner: dlwillson\n\n1) Salmonax: Homeworld G3 B1 Y3\n\tdlwillson: Yay, Salmonax! I haven't played on SDG in a lifetime!\n\n2) dlwillson: Homeworld B3 R2 G3\n\n3) Salmonax: Build Y1 Salmonax\n\tSalmonax: \r\nNeither have I!\n\n4) dlwillson: B G1 Dlwillson\n\n5) Salmonax: Trade Y1 G1 Salmonax\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Salmonax: Discover G1 Salmonax B2 S1\n\n8) dlwillson: B G1 Dlwillson\n\n9) Salmonax: Build Y1 Salmonax\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) Salmonax: Build G1 S1\n\n12) dlwillson: B B1 Dlwillson\n\n13) Salmonax: Build G1 S1\n\tdlwillson: HaHA! Hoo! Ha!\n\tSalmonax: Oh noes!\n\n14) dlwillson: B G2 Dlwillson\n\n15) Salmonax: Trade G1 Y1 S1\n\tSalmonax: Don't know bow to read the board on a screen yet. =P\n\n16) dlwillson: B Y2 Dlwillson\n\n17) Salmonax: Build Y2 S1\n\n18) dlwillson: D Y1 Dlwillson G1 Lpgd\n\n19) Salmonax: Move Y1 S1 Lpgd\n\tdlwillson: You're going to have some trouble with me, then. I've played more Homeworlds here than anywhere! :-)\n\tSalmonax: Lpgd?\n\n20) dlwillson: Sacrifice G2 Dlwillson\nBuild Y2 Lpgd\nBuild Y3 Dlwillson\n\tdlwillson: Looney Pyramid Gamers of Denver, of course...\n\n21) Salmonax: Build Y3 Lpgd\n\tSalmonax: Oh yeah, I figured that out once before.\n\n22) dlwillson: B G2 Dlwillson\nCatastrophe Lpgd Y\n\tSalmonax: I forgot to catastrophe, but lets see what happens.\n\n23) Salmonax: Discover G1 S1 Y1 S2\n\n24) dlwillson: T B1 R1 Dlwillson\n\n25) Salmonax: Trade Y1 R1 Salmonax\n\n26) dlwillson: M B1 Dlwillson S2\n\n27) Salmonax: Build G1 S2\n\tSalmonax: Sorry for the undo... fatal mistake. =)\n\n28) dlwillson: S G2 Dlwillson\nB B1 S2\nB B2 S2\n\tdlwillson: No problem. That's what it's for. And yes, that would've been fatal. :-)\n\n29) Salmonax: Build G2 S1\n\n30) dlwillson: T B2 R2 S2\n\n31) Salmonax: Sacrifice G2 S1\nBuild G2 S1\nBuild G2 S2\n\n32) dlwillson: A G2 S2\n\n33) Salmonax: Build G2 S2\nCatastrophe S2 G\n\tdlwillson: Interesting move... Hm...\n\n34) dlwillson: M Y3 Dlwillson S2\n\n35) Salmonax: Sacrifice Y2 S1\nDiscover G1 S1 Y1 S0\nMove G2 S1 S0\n\n36) dlwillson: D B1 S2 G2 Ipgd2\n\n37) Salmonax: Build Y1 Salmonax\n\n38) dlwillson: Move Y3 S2 Ipgd2\n\n39) Salmonax: Discover Y1 Salmonax B2 S1\n\n40) dlwillson: B Y2 Dlwillson\n\n41) Salmonax: Sacrifice G2 S0\nBuild Y2 Salmonax\nBuild Y3 S1\n\n42) dlwillson: B G1 Dlwillson\n\n43) Salmonax: Build G1 S0\n\tdlwillson: Argh! Excellent move!\n\n44) dlwillson: M G1 Dlwillson S0\n\tSalmonax: Thanks!\n\n45) Salmonax: Trade Y2 R2 Salmonax\n\n46) dlwillson: B Y2 Ipgd2\n\n47) Salmonax: Trade Y1 R1 S1\n\tSalmonax: Couldn't keep you out of yellow for long!\n\tdlwillson: Dang! Forgot it was my turn!\r\n\n\n48) dlwillson: S R2 S2\nA G1 S0\nA G1 S0\n\n49) Salmonax: Move R2 Salmonax S1\n\n50) dlwillson: B G2 Dlwillson\n\n51) Salmonax: Build R2 Salmonax\n\n52) dlwillson: T Y3 R3 Ipgd2\n\n53) Salmonax: Move R2 S1 S0\n\n54) dlwillson: S G3 Dlwillson\nB G2 S0\nB G3 Dlwillson\nB R3 Ipgd2\n\n55) Salmonax: Move R1 S1 S2\nCatastrophe S0 G\n\n56) dlwillson: S R1 Dlwillson\nA R1 S2\n\n57) Salmonax: Trade Y3 G3 S1\n\tSalmonax: If that's a trap, I don't get how it works.\n\tSalmonax: Well, I guess it was so you could build elsewhere.\r\n\n\n58) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Ipgd2\nBuild Y3 Dlwillson\nBuild Y3 Ipgd2\n\n59) Salmonax: Trade Y3 B3 Salmonax\n\tSalmonax: It's not looking good for me.\n\tdlwillson: The Trap: (I forgot to explain)\r\nYou might have wasted some effort trying to capture my little greens, or just forgotten to cat them. Either one would have allowed me to build the G3 at home.\r\n\r\nAlas, you didn't fall for it.\r\n\r\nHowever, you have given me an interesting opportunity to give you an interesting opportunity. Let's see if you step into this trap... :-)\n\n60) dlwillson: Sacrifice Y2 Dlwillson\nMove B1 Ipgd2 Salmonax\nMove R3 Ipgd2 Salmonax\n\tSalmonax: Well, I see that you can cat my red at homeworld if I do do something about them. And you can cat my yellow if I don't do something about _them_\r\n\r\n\n\tSalmonax: I'll protect my big ship.\n\n61) Salmonax: Sacrifice R2 Salmonax\nAttack R3 Salmonax\nAttack B1 Salmonax\n\n62) dlwillson: S Y2 Dlwillson\nMove B1 S2 Ipgd2\nM B1 Ipgd2 Salmonax\nC Salmonax B\n\tdlwillson: Not sure death is inevitable at this point, but it looks pretty bad... Have you found the Cannon rules?\n\tSalmonax: Yep, there's a link to them from the pdf that one would expect holds the rules.\r\n\n\n63) Salmonax: Trade G3 B3 S1\n\n64) dlwillson: Sacrifice Y3 Ipgd2\nMove R3 Ipgd2 Salmonax\nMove R1 S2 Ipgd2\nMove R1 Ipgd2 Salmonax\nCatastrophe Salmonax R\n\n\tdlwillson: One or two more moves, depending.\n\tdlwillson: No, wait. Never mind.\n\tdlwillson: Good game, Salmonax. Want to go again, now that you've got the hang of the board? Also, there are other players here, like Tripp/SilentTitan and Davey/DethDukk.\n\nHomeworlds Online (SDG# 20235)\nVariants: "Hard time"\nStarted: 2011.6.20, Ended: 2011.6.27\nParticipants: TwoShort (S), SilentTitan (N)\nWinner: TwoShort\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) TwoShort: Homeworld R1 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tTwoShort: Howdy.\n\tSilentTitan: hello again\r\n\n\n4) TwoShort: Build G1 Twoshort\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) TwoShort: Build G1 Twoshort\n\n9) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\tSilentTitan: \n\tSilentTitan: wow...are you sitting on the button or what?\n\n10) TwoShort: Build Y2 Twoshort\n\n11) SilentTitan: Build Y2 Silenttitan\n\tTwoShort: At work, so I see email pretty much instantly. In another few moves we'll get to the point where I'll have to wait until I have time to think about my move.\n\n12) TwoShort: Discover G1 Twoshort Y3 Yolonda\n\tSilentTitan: ah..... so that would seem to indicate that I'm in trouble since I'm having to think about the moves now.\r\n\n\n13) SilentTitan: Discover Y1 Silenttitan B1 Tear\n\n14) TwoShort: Discover Y1 Twoshort B3 Bluonia\n\n15) SilentTitan: Sacrifice G1 Sol\nBuild Y1 Tear\n\n16) TwoShort: Build G1 Twoshort\n\n17) SilentTitan: Discover Y1 Tear B3 Zone\n\n18) TwoShort: Discover G1 Twoshort Y3 Yoyodyne\n\n19) SilentTitan: Trade Y1 G1 Zone\n\n20) TwoShort: Build G2 Twoshort\n\n21) SilentTitan: Build G2 Zone\n\n22) TwoShort: Discover G2 Twoshort Y3 Yellonia\n\n23) SilentTitan: Trade G2 Y2 Zone\n\n24) TwoShort: Sacrifice G2 Yellonia\nBuild Y1 Bluonia\nBuild Y3 Twoshort\n\tSilentTitan: Yellonia..... lol\n\n25) SilentTitan: Build G2 Zone\n\n26) TwoShort: Discover Y1 Bluonia B1 Bonanza\n\n27) SilentTitan: Trade G2 R2 Zone\n\n28) TwoShort: Sacrifice G1 Yolonda\nBuild Y3 Bonanza\n\n29) SilentTitan: Build R1 Zone\n\n30) TwoShort: Sacrifice G1 Yoyodyne\nBuild Y3 Bluonia\n\n31) SilentTitan: Build G1 Silenttitan\n\n32) TwoShort: Trade Y1 G1 Bonanza\n\n33) SilentTitan: Build Y1 Zone\n\n34) TwoShort: Build G2 Bonanza\n\n35) SilentTitan: Move G1 Silenttitan Bonanza\n\n36) TwoShort: Trade G2 R2 Bonanza\n\n37) SilentTitan: Sacrifice G1 Bonanza\nBuild G1 Zone\n\n38) TwoShort: Build G2 Bonanza\n\n39) SilentTitan: Build R1 Zone\n\n40) TwoShort: Move R2 Bonanza Zone\nCatastrophe Zone Red\n\n41) SilentTitan: Sacrifice Y2 Zone\nMove G1 Zone Twoshort\nMove G1 Zone Twoshort\n\n42) TwoShort: Trade G3 R3 Twoshort\n\n43) SilentTitan: Trade Y2 R2 Silenttitan\n\n44) TwoShort: Build G2 Bonanza\n\n45) SilentTitan: Trade G1 R1 Twoshort\n\n46) TwoShort: Sacrifice Y3 Bluonia\nMove G1 Bonanza Silenttitan\nMove G2 Bonanza Silenttitan\nMove G2 Bonanza Silenttitan\nCatastrophe Silenttitan Green\n\n47) SilentTitan: Build R1 Twoshort\nCatastrophe Twoshort Red\n\n48) TwoShort: Move Y3 Bonanza Silenttitan\n\n49) SilentTitan: Move Y1 Zone Twoshort\n\tSilentTitan: so close........ yet.........\n\n50) TwoShort: Attack R2 Silenttitan\n\tTwoShort: Thanks for the game!\n\n\tSilentTitan: Tip. Thank you\n\tSilentTitan: Yup. Not tip .. autocorrect on phone. Fun.\n\nHomeworlds Online (SDG# 20243)\nVariants: "Hard time"\nStarted: 2011.6.22, Ended: 2011.6.25\nParticipants: AdamBadura (S), Subhan64 (N)\nWinner: AdamBadura\n\n1) Subhan64: Homeworld B2 Y1 G3\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) Subhan64: Build G1 Subhan64\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) Subhan64: Build G1 Subhan64\n\n6) AdamBadura: Trade Y1 G1 Adambadura\n\n7) Subhan64: Discover G3 Subhan64 G3 Aha\n\n8) AdamBadura: Build G2 Adambadura\n\n9) Subhan64: Build G2 Subhan64\n\n10) AdamBadura: Sacrifice Y3 Adambadura\nDiscover G1 Adambadura Y1 Ontheway\nMove G1 Ontheway Aha\nMove G1 Aha Subhan64\nCatastrophe Subhan64 G\n\n\tAdamBadura: Don't blame your self. I fell to this trap more than once...\n\tSubhan64: I don't think I actually knew you could use a sacrifice move action to do a discover action. \n\nHomeworlds Online (SDG# 20178)\nVariants: "No undo"\nStarted: 2011.6.23, Ended: 2011.7.13\nParticipants: ajo (S), goblin981 (N)\nWinner: ajo\n\n1) goblin981: Homeworld G3 B2 R3\n\n2) ajo: Homeworld B1 Y2 G3\n\n3) goblin981: Build R1 Goblin981\n\tajo: Good luck!\n\tgoblin981: you too :)\n\n4) ajo: Build G1 Ajo\n\n5) goblin981: Trade R1 Y1 Goblin981\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) goblin981: Build R1 Goblin981\n\n8) ajo: Build G1 Ajo\n\n9) goblin981: Discover R1 Goblin981 Y1 Yellow\n\n10) ajo: Build Y2 Ajo\n\n11) goblin981: Build Y2 Goblin981\n\n12) ajo: Discover Y1 Ajo G3 Alpha\n\n13) goblin981: Build Y3 Goblin981\n\n14) ajo: Sacrifice Y2 Ajo\nMove Y1 Alpha Yellow\nMove Y1 Yellow Goblin981\nCatastrophe Goblin981 Yellow\n\n15) goblin981: Build R1 Goblin981\n\n16) ajo: Build G1 Ajo\n\n17) goblin981: Trade R1 Y1 Goblin981\n\n18) ajo: Discover G1 Ajo B3 Alpha\n\n19) goblin981: Build R1 Goblin981\n\n20) ajo: Discover G1 Ajo B3 Beta\n\n21) goblin981: Discover R1 Goblin981 Y1 Y2\n\n22) ajo: Build G1 Ajo\n\tajo: I hope you know what you're doing. ;)\n\n23) goblin981: Build Y2 Goblin981\n\tgoblin981: so do I lol. I do have a plan, but usually my plans don't work. So we'll see.\n\n24) ajo: Build G2 Alpha\n\n25) goblin981: Discover R1 Yellow G3 Green\n\n26) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Beta\nBuild G3 Ajo\n\n27) goblin981: Move R1 Y2 Green\n\n28) ajo: Trade G2 R2 Alpha\n\n29) goblin981: Build R1 Goblin981\n\n30) ajo: Sacrifice G3 Ajo\nBuild R2 Alpha\nBuild G2 Beta\nBuild G3 Ajo\n\tajo: Ooh. I'm pretty sure your plan has fallen apart by this point.\n\n31) goblin981: Sacrifice Y2 Goblin981\nMove R1 Green Ajo\nMove R1 Green Ajo\n\tgoblin981: yep, pretty much\n\n32) ajo: Sacrifice R2 Alpha\nAttack R1 Ajo\nAttack R1 Ajo\n\tajo: Okay well now you're just being silly. ;)\n\n33) goblin981: Build Y1 Goblin981\n\n34) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild R2 Alpha\n\n35) goblin981: Discover R1 Goblin981 Y1 Yellow\n\n36) ajo: Trade G3 Y3 Alpha\n\n37) goblin981: Build R2 Goblin981\n\n38) ajo: Move R2 Alpha Yellow\n\n39) goblin981: Trade R2 Y2 Goblin981\n\tgoblin981: I'm so screwed.\r\n\n\tgoblin981: I'm so screwed.\r\n\n\n40) ajo: Attack R1 Yellow\n\tajo: And you're not helping by trading for colors you've already *got*. :P But yeah, you're screwed either way, I think.\n\n41) goblin981: Sacrifice Y2 Goblin981\nDiscover Y1 Goblin981 B1 Blue\nMove Y1 Goblin981 Blue\n\n42) ajo: Move G2 Alpha Blue\n\n43) goblin981: Discover Y1 Blue G3 Green\n\n44) ajo: Move R2 Alpha Blue\n\tajo: It might have been better to do "sacrifice y1 blue; discover y1 blue g3 green", so that I didn't still have the threat of capturing your remaining y1.\n\n45) goblin981: Build Y2 Green\n\tajo: Check.\n\n46) ajo: Sacrifice Y3 Alpha\nMove R2 Blue Goblin981\nMove R2 Yellow Goblin981\nMove R1 Yellow Goblin981\nCatastrophe Goblin981 Red\n\tgoblin981: damn, should've changed the r3 for something else. oh well, you win.\n\n\nHomeworlds Online (SDG# 20195)\nStarted: 2011.6.23, Ended: 2011.8.9\nParticipants: lorgar (S), SirRuthvenMurgatroyd (N)\nWinner: SirRuthvenMurgatroyd\n\n1) SirRuthvenMurgatroyd: Homeworld B1 Y2 G3\n\n2) lorgar: Homeworld B2 Y3 G3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) lorgar: Build G1 Lorgar\n\tSirRuthvenMurgatroyd: Sorry about taking so long; I'm pretty busy this week, but after Sunday I'll be moving much more quickly.\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n6) lorgar: Trade G1 R1 Lorgar\n\n7) SirRuthvenMurgatroyd: Build G1 Sol\n\n8) lorgar: Build G1 Lorgar\n\n9) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n10) lorgar: Discover G1 Lorgar B1 M0\n\n11) SirRuthvenMurgatroyd: Discover G1 Sol Y1 Betelgeuse\n\n12) lorgar: Build R1 Lorgar\n\n13) SirRuthvenMurgatroyd: Trade G2 R2 Sirruthvenmurgatroyd\n\n14) lorgar: Build G2 Lorgar\n\n15) SirRuthvenMurgatroyd: Build G2 Betelgeuse\n\n16) lorgar: Sacrifice G3 Lorgar\nBuild G2 M0\nBuild G3 Lorgar\nBuild G3 M0\n\n17) SirRuthvenMurgatroyd: Move G1 Sol M0\nCatastrophe M0 G\n\n18) lorgar: Trade R1 B1 Lorgar\n\n19) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n20) lorgar: Discover B1 Lorgar G1 Marmol\n\n21) SirRuthvenMurgatroyd: Discover G1 Betelgeuse B2 Calufrax\n\n22) lorgar: Build B1 Marmol\n\n23) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sirruthvenmurgatroyd\nBuild G3 Betelgeuse\nBuild G3 Sirruthvenmurgatroyd\n\n24) lorgar: Trade B1 Y1 Marmol\n\n25) SirRuthvenMurgatroyd: Move G3 Betelgeuse Lorgar\n\n26) lorgar: Attack G3N Lorgar\n\n27) SirRuthvenMurgatroyd: Move G2 Betelgeuse Lorgar\nCatastrophe Lorgar G\n\n\nHomeworlds Online (SDG# 20207)\nVariants: "Hard time"\nStarted: 2011.6.23, Ended: 2011.6.26\nParticipants: Jesse (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B3 Y1 G3\n\n\tJesse: Whoops. Sorry about that. I've been rather busy lately.\n\tlorgar: no problem\n\nHomeworlds Online (SDG# 20161)\nVariants: "Hard time"\nStarted: 2011.6.23, Ended: 2011.7.14\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld B3 Y1 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Discover G1 Lorgar B2 Cydonia\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) lorgar: Build G1 Lorgar\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) lorgar: Build G1 Cydonia\n\n10) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n11) lorgar: Trade G1 R1 Lorgar\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) lorgar: Build G1 Lorgar\n\n14) SilentTitan: Discover Y2 Silenttitan B3 Poison\n\n15) lorgar: Build G2 Cydonia\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Poison\nBuild Y3 Silenttitan\n\n17) lorgar: Trade G2 R2 Cydonia\n\n18) SilentTitan: Build Y3 Sol\n\n19) lorgar: Build R1 Cydonia\n\n20) SilentTitan: Discover Y3 Sol B2 Stun\n\n21) lorgar: Build G2 Lorgar\n\n22) SilentTitan: Build Y3 Sol\n\n23) lorgar: Trade G2 B2 Lorgar\n\n24) SilentTitan: Trade Y3 G3 Silenttitan\n\n25) lorgar: Discover B2 Lorgar G2 Mint\n\n26) SilentTitan: Build Y3 Silenttitan\n\n\tlorgar: sod it... srry\n\nHomeworlds Online (SDG# 20270)\nVariants: "Hard time"\nStarted: 2011.6.26, Ended: 2011.7.13\nParticipants: goulo (S), Subhan64 (N)\nWinner: goulo\n\n1) Subhan64: Homeworld B1 G2 Y3\n\n2) goulo: Homeworld R2 B3 G3\n\n3) Subhan64: Build Y1 Subhan64\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) Subhan64: Build G1 Subhan64\n\n8) goulo: Build Y1 Goulo\n\n9) Subhan64: Discover G1 Subhan64 G3 Aha\n\n10) goulo: Trade Y1 R1 Goulo\n\n11) Subhan64: Build G1 Subhan64\n\n12) goulo: Build G2 Goulo\n\n13) Subhan64: Discover G1 Subhan64 G3 Hehe\n\n14) goulo: Build G2 Goulo\n\n15) Subhan64: Sacrifice Y3 Subhan64\nDiscover G1 Aha R1 Touche\nMove G1 Hehe Touche\nMove G1 Touche Goulo\nCatastrophe Goulo Green\n\n16) goulo: Trade R1 G1 Goulo\n\n17) Subhan64: Build G2 Touche\n\n18) goulo: Build G2 Goulo\n\tgoulo: I saw that possible catastrophe reducing us both to 2 1-ships, but erroneously thought that would be good for me as I'd have the next move - but I failed to see that I would have to spend a move getting green build ability... :)\n\n19) Subhan64: Build G3 Subhan64\n\n20) goulo: Build G3 Goulo\n\n21) Subhan64: Trade G1 Y1 Subhan64\n\n22) goulo: Trade G1 R1 Goulo\n\n23) Subhan64: Build G1 Subhan64\n\n24) goulo: Discover G2 Goulo R1 Rubeneto\n\n25) Subhan64: Trade G1 B1 Subhan64\n\n26) goulo: Build R2 Goulo\n\n27) Subhan64: Sacrifice B1 Subhan64\nTrade G2 R2 Touche\n\n28) goulo: Move R2 Goulo Touche\n\n29) Subhan64: Attack R2 Touche\n\n30) goulo: Move R1 Goulo Touche\nCatastrophe Touche R\n\n31) Subhan64: Build G1 Subhan64\n\n32) goulo: Build G1 Rubeneto\n\n33) Subhan64: Discover G3 Subhan64 G3 Gisforgreen\n\n34) goulo: Sacrifice G2 Rubeneto\nBuild Y1 Goulo\nBuild Y2 Goulo\n\n35) Subhan64: Build Y2 Subhan64\n\n36) goulo: Move Y1 Goulo Rubeneto\n\n37) Subhan64: Sacrifice Y1 Subhan64\nMove G3 Gisforgreen Rubeneto\n\n38) goulo: Sacrifice Y1 Rubeneto\nDiscover G1 Rubeneto Y3 Citronego\n\n39) Subhan64: Trade G1 Y1 Subhan64\n\n40) goulo: Build G1 Goulo\n\n41) Subhan64: Move Y1 Subhan64 Citronego\n\n42) goulo: Move G1 Citronego Subhan64\n\n43) Subhan64: Trade Y2 R2 Subhan64\n\n44) goulo: Build G1 Subhan64\n\n\tSubhan64: Good game!\n\tgoulo: thanks!\n\nHomeworlds Online (SDG# 20264)\nVariants: "Hard time"\nStarted: 2011.6.27, Ended: 2011.6.29\nParticipants: mneme (S), ajo (N)\nWinner: mneme\n\n1) ajo: Homeworld Y1 B3 G3\n\n2) mneme: Homeworld R1 B2 G3\n\n3) ajo: Build G1 Ajo\n\n4) mneme: Build G1 Mneme\n\n5) ajo: Trade G1 R1 Ajo\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) ajo: Build G1 Ajo\n\n8) mneme: Build Y1 Mneme\n\n9) ajo: Trade G3 Y3 Ajo\n\n10) mneme: Build Y2 Mneme\n\n11) ajo: Build Y2 Ajo\n\n12) mneme: Discover Y1 Mneme B3 Staging\n\n13) ajo: Discover Y2 Ajo B2 Alpha\n\n14) mneme: Discover Y1 Mneme B3 Violet\n\n15) ajo: Trade Y3 G3 Ajo\n\n16) mneme: Build G1 Mneme\n\n17) ajo: Move G1 Ajo Alpha\n\n18) mneme: Discover G1 Mneme Y3 Host\n\n19) ajo: Build Y2 Alpha\n\n20) mneme: B Y3 Mneme\n\tajo: I think I know what you're planning. Very nice. I'm rarely able to plan far enough ahead in the early game to pull that off.\n\n21) ajo: Move Y2 Alpha Violet\n\n22) mneme: Trade Y2 R2 Mneme\n\n23) ajo: Sacrifice R1 Ajo\nAttack Y1 Violet\n\n24) mneme: Move G3 Mneme Violet\n\tmneme: I'm curious what you're thinking. I tend to be moving towards several things at once if I can manage it, though -- threatening catastrophes, green expansions that grab larges, freezes on whatever color my opponent is ignoring, etc. \n\tajo: Well, for a couple moves there you were threatening "sac g3; build y2y3y3". (I assume that's what you meant by "green expansions"?) I'm less worried about that possibility now, though.\n\n25) ajo: Sacrifice Y1 Violet\nDiscover Y2 Violet B2 Beta\n\tmneme: That was certainly one of my plans. I got the extra large without that, though, so it all works out. \n\n26) mneme: Sacrifice Y3 Mneme\nMove G3 Violet Alpha\nMove G3 Alpha Ajo\nMove G1 Host Mneme\n\n27) ajo: Sacrifice Y2 Beta\nMove Y2 Alpha Ajo\nMove G1 Alpha Ajo\n\tmneme: Of course, one of my plans was to let you get rid of all your red while I had a path to your home system...\n\n28) mneme: Sacrifice R2 Mneme\nAttack G3 Ajo\nAttack G1 Ajo\n\tajo: Oh dear. I didn't even notice that. This is going to be a short game!\n\n\tmneme: Yeah -- it's all over.\n\tajo: Good game.\n\tmneme: Good game! \n\nHomeworlds Online (SDG# 20272)\nVariants: "Hard time"\nStarted: 2011.6.28, Ended: 2011.8.12\nParticipants: lorgar (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B3 G3\n\n2) lorgar: Homeworld B3 Y2 G3\n\n3) Jesse: Build G1 Jesse\n\n4) lorgar: Build G1 Lorgar\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) lorgar: Trade G1 R1 Lorgar\n\n7) Jesse: Build Y1 Jesse\n\n8) lorgar: Build G1 Lorgar\n\n9) Jesse: Build Y1 Jesse\n\n10) lorgar: Discover G1 Lorgar B1 M0\n\n11) Jesse: Build G1 Jesse\n\n12) lorgar: Build G1 Lorgar\n\n13) Jesse: Discover G1 Jesse B2 Grover\n\n14) lorgar: Build G2 M0\n\n15) Jesse: Build G2 Grover\n\n16) lorgar: Sacrifice G3 Lorgar\nBuild G2 M0\nBuild G3 Lorgar\nBuild G3 Lorgar\n\n17) Jesse: Trade G2 R2 Grover\n\n18) lorgar: Trade G2 Y2 M0\n\n19) Jesse: Move Y1 Jesse Grover\n\n20) lorgar: Trade G2 R2 M0\n\n21) Jesse: Discover Y1 Jesse B2 Cookie\n\n22) lorgar: Move G3 Lorgar M0\n\n23) Jesse: Sacrifice G3 Jesse\nBuild Y2 Cookie\nBuild Y3 Grover\nBuild Y3 Jesse\n\n\nHomeworlds Online (SDG# 20257)\nStarted: 2011.6.29, Ended: 2011.9.13\nParticipants: thejackdiaz (S), SirRuthvenMurgatroyd (N)\nWinner: thejackdiaz\n\n1) SirRuthvenMurgatroyd: Homeworld B3 Y2 G3\n\n2) thejackdiaz: Homeworld R1 B2 G3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) thejackdiaz: Build G1 Thejackdiaz\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n6) thejackdiaz: Trade G1 Y1 Thejackdiaz\n\n7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n8) thejackdiaz: Build Y1 Thejackdiaz\n\n9) SirRuthvenMurgatroyd: Build G1 Sol\n\n10) thejackdiaz: Build G2 Thejackdiaz\n\n11) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Calufrax\n\n12) thejackdiaz: Discover G2 Thejackdiaz G3 Epicurus\n\n13) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G2 Calufrax\nBuild G3 Sirruthvenmurgatroyd\n\n14) thejackdiaz: Discover Y1 Thejackdiaz B3 Clarence\n\n15) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd\n\n16) thejackdiaz: Sacrifice G2 Epicurus\nBuild Y2 Clarence\nBuild Y2 Thejackdiaz\n\n17) SirRuthvenMurgatroyd: Move G2 Sol Clarence\n\n18) thejackdiaz: Build Y3 Thejackdiaz\n\n19) SirRuthvenMurgatroyd: Sacrifice R1 Sirruthvenmurgatroyd\nAttack Y2 Clarence\n\n20) thejackdiaz: Trade Y3 R3 Thejackdiaz\n\n21) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n22) thejackdiaz: Trade Y2 R2 Thejackdiaz\n\n23) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G3 Sirruthvenmurgatroyd\nBuild G3 Clarence\n\n24) thejackdiaz: Move R2 Thejackdiaz Clarence\n\n25) SirRuthvenMurgatroyd: Sacrifice Y2 Clarence\nMove G2 Clarence Thejackdiaz\nMove G3 Clarence Thejackdiaz\n\n26) thejackdiaz: Attack G3N Thejackdiaz\n\n27) SirRuthvenMurgatroyd: Attack Y1S Thejackdiaz\n\n28) thejackdiaz: Trade G3 Y3 Thejackdiaz\n\n29) SirRuthvenMurgatroyd: Move G1 Calufrax Thejackdiaz\n\n30) thejackdiaz: Move G3 Thejackdiaz Clarence\n\n31) SirRuthvenMurgatroyd: Sacrifice G2 Sol\nBuild Y2 Thejackdiaz\nBuild Y2 Thejackdiaz\nCatastrophe Thejackdiaz Y\n\n32) thejackdiaz: Attack G2 Thejackdiaz\n\n33) SirRuthvenMurgatroyd: Build G2 Thejackdiaz\n\n34) thejackdiaz: Trade R3 Y3 Thejackdiaz\n\n35) SirRuthvenMurgatroyd: Trade G2 Y2 Thejackdiaz\n\n36) thejackdiaz: Attack Y2N Thejackdiaz\n\n37) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G3 Calufrax\nBuild G3 Sirruthvenmurgatroyd\n\n38) thejackdiaz: Build Y1 Clarence\n\n39) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n40) thejackdiaz: Build G3 Clarence\n\n41) SirRuthvenMurgatroyd: Trade G1 R1 Thejackdiaz\n\n42) thejackdiaz: Attack R1N Thejackdiaz\n\n43) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n44) thejackdiaz: Discover G3 Clarence B1 Molly\n\n45) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd\n\n46) thejackdiaz: Sacrifice G2 Thejackdiaz\nBuild Y2 Thejackdiaz\nBuild Y3 Clarence\n\n47) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd\n\n48) thejackdiaz: Trade G3 R3 Molly\n\n49) SirRuthvenMurgatroyd: Sacrifice B1 Sirruthvenmurgatroyd\nTrade G3 R3 Calufrax\n\n50) thejackdiaz: Sacrifice Y3 Clarence\nMove R2 Clarence Molly\nMove R2 Molly Sirruthvenmurgatroyd\nMove R3 Molly Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Red\n\n51) SirRuthvenMurgatroyd: Build R1 Calufrax\n\n52) thejackdiaz: Sacrifice Y2 Thejackdiaz\nMove G3 Clarence Sol\nMove G3 Sol Sirruthvenmurgatroyd\n\n53) SirRuthvenMurgatroyd: Move R3 Calufrax Thejackdiaz\n\n54) thejackdiaz: Sacrifice R1 Thejackdiaz\nAttack G1N Sirruthvenmurgatroyd\n\n\nHomeworlds Online (SDG# 20285)\nVariants: "No undo"\nStarted: 2011.6.29, Ended: 2011.7.9\nParticipants: sageinquisitor (S), thejackdiaz (N)\nWinner: thejackdiaz\n\n1) thejackdiaz: Homeworld G1 B2 R3\n\n\nHomeworlds Online (SDG# 20290)\nVariants: "Hard time"\nStarted: 2011.6.30, Ended: 2011.8.1\nParticipants: TwoShort (S), mneme (N)\nWinner: TwoShort\n\n1) mneme: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\tmneme: Greetings! BTW, I -finally- managed to score a Homeworld medallion at Origins this year (mostly, I was stopped in previous years by missing the con or by Homeworlds being a "floating" tournament in which I didn't play enough games).\n\n3) mneme: Build G1 Mneme\n\n4) TwoShort: Build G1 Twoshort\n\n5) mneme: Trade G1 B1 Mneme\n\tTwoShort: Congratulations on the medallion! Maybe someday I'll manage to make it to Origins so everyone can see how much worse I am playing in person :)\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) mneme: Build B2 Mneme\n\n8) TwoShort: Build B2 Twoshort\n\n9) mneme: T B2 Y2 Mneme\n\tmneme: *Laugh* You should! Not next year, though, as they're suspending the lab next year due to Origins's scheduling.\n\n10) TwoShort: Trade B1 Y1 Twoshort\n\n11) mneme: Build B1 Mneme\n\n12) TwoShort: Build B2 Twoshort\n\n13) mneme: Discover B1 Mneme G3 Happiness\n\n14) TwoShort: Trade B2 R2 Twoshort\n\n15) mneme: Sacrifice G3 Mneme\nBuild B2 Happiness\nBuild B3 Happiness\nBuild B3 Mneme\n\n16) TwoShort: Discover B2 Twoshort Y2 Yolonda\n\n17) mneme: Trade B3 R3 Happiness\n\n18) TwoShort: Build Y1 Twoshort\n\n19) mneme: Trade B3 G3 Mneme\n\n20) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n21) mneme: T B2 Y2 Happiness\n\n22) TwoShort: Build G1 Twoshort\n\n23) mneme: Discover B1 Mneme Y3 Sunbright\n\n24) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n25) mneme: Sacrifice Y2 Mneme\nMove Y2 Happiness Grogar\nMove Y2 Grogar Twoshort\nCatastrophe Twoshort Y\n\tTwoShort: Sorry for the slowness, I'm on vacation in the land of little internet. It's not that I'm stalling because I'm doing so badly. Well, not just that anyway... :)\n\n26) TwoShort: Move Y3 Grogar Twoshort\n\tmneme: It's cool. I'm a little out of it too, but at least -that- move I had a planned answer two once I recalled it.\n\n27) mneme: Build G1 Mneme\n\n28) TwoShort: Build Y1 Twoshort\n\n29) mneme: Trade G3 Y3 Mneme\n\n30) TwoShort: Build Y1 Grogar\n\n31) mneme: Build Y2 Mneme\n\n32) TwoShort: Trade Y3 G3 Twoshort\n\n33) mneme: Move Y2 Mneme Happiness\n\n34) TwoShort: Discover Y1 Grogar G3 Greenland\n\n35) mneme: Build R1 Happiness\n\n36) TwoShort: Discover G1 Twoshort G2 Greenonia\n\n37) mneme: Move R3 Happiness Yolonda\n\n38) TwoShort: Move B2 Yolonda Sunbright\n\n39) mneme: Move R3 Yolonda Twoshort\n\n40) TwoShort: Sacrifice R2 Twoshort\nAttack R3 Twoshort\nAttack B1 Sunbright\n\n\tmneme: oh, ouch. Missed that one. Shouldn't have.\n\tmneme: You know, normally, I'd play it out, but I'm just not in the mood right now, and that was just such a -colossal- blunder. Note to self: don't try a double-threat with red!\r\n\n\nHomeworlds Online (SDG# 20292)\nVariants: "Hard time"\nStarted: 2011.7.1, Ended: 2011.7.7\nParticipants: Danner (S), Aristos (N)\nWinner: Danner\n\n1) Aristos: Homeworld G1 B2 Y3\n\tDanner: Hi! Have a nice game!\n\n2) Danner: Homeworld G1 B2 G3 *\n\n3) Aristos: Build Y1 Aristos\n\n4) Danner: Build G1 Danner\n\tAristos: Interesting starting choice.\n\tDanner: :)\n\n5) Aristos: Discover Y1 Aristos G3 Isis\n\n6) Danner: Trade G3 Y3 Danner\n\n7) Aristos: Build Y1 Aristos\n\n8) Danner: Build G2 Danner\n\n9) Aristos: Trade Y3 G3 Aristos\n\n10) Danner: Discover G2 Danner Y3 Re\n\n11) Aristos: Build Y1 Aristos\n\n12) Danner: Build G2 Danner\n\n\tAristos: I botched badly and there's little chance of recovery. Good game.\r\n\n\tDanner: Thanks for the game!\n\nHomeworlds Online (SDG# 20258)\nVariants: "Hard time"\nStarted: 2011.7.3, Ended: 2011.7.7\nParticipants: SilentTitan (S), BloodRumpus (N)\nWinner: SilentTitan\n\n1) BloodRumpus: Homeworld G1 B3 Y3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) BloodRumpus: Build Y1 Bloodrumpus\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) BloodRumpus: Discover Y1 Bloodrumpus B2 Alpha-draconis\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) BloodRumpus: Trade Y1 G1 Alpha-draconis\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) BloodRumpus: Build G1 Alpha-draconis\n\n10) SilentTitan: Build G2 Silenttitan\n\n11) BloodRumpus: Build G2 Alpha-draconis\n\n12) SilentTitan: Discover G2 Silenttitan B1 Sol\n\n13) BloodRumpus: Trade G2 Y2 Alpha-draconis\n\n14) SilentTitan: Build G2 Sol\n\n15) BloodRumpus: Discover G1 Alpha-draconis R1 Vega\n\n16) SilentTitan: Trade G2 Y2 Sol\n\n17) BloodRumpus: Build G2 Alpha-draconis\n\n18) SilentTitan: Discover Y1 Silenttitan B1 Sole\n\n19) BloodRumpus: Trade G1 B1 Alpha-draconis\n\n20) SilentTitan: Build G1 Silenttitan\n\n21) BloodRumpus: Build B2 Alpha-draconis\n\n22) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Sole\nBuild Y3 Silenttitan\n\n23) BloodRumpus: Build Y3 Bloodrumpus\n\n24) SilentTitan: Trade Y2 B2 Sole\n\n25) BloodRumpus: Move B2 Alpha-draconis Vega\n\n26) SilentTitan: Sacrifice Y2 Sol\nDiscover B2 Sole G2 Soul\nMove Y1 Sole Soul\n\n27) BloodRumpus: Build G3 Vega\n\n28) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Sol Soul\nMove Y1 Soul Bloodrumpus\nMove Y1 Soul Bloodrumpus\nCatastrophe Bloodrumpus Yellow\n\n\nHomeworlds Online (SDG# 20323)\nStarted: 2011.7.6, Ended: 2011.9.25\nParticipants: lorgar (S), dragmio (N)\nWinner: dragmio\n\n1) dragmio: Homeworld G3 B1 R3\n\n2) lorgar: Homeworld G2 Y1 B3\n\n3) dragmio: Build R1 Dragmio\n\n4) lorgar: Build B1 Lorgar\n\n5) dragmio: Trade R1 Y1 Dragmio\n\n6) lorgar: Discover B1 Lorgar G3 Lormec\n\n7) dragmio: Build Y1 Dragmio\n\n8) lorgar: Build B1 Lorgar\n\n9) dragmio: Build Y2 Dragmio\n\n10) lorgar: Build B2 Lormec\n\n11) dragmio: Discover Y1 Dragmio B2 Aspect\n\n12) lorgar: Trade B2 Y2 Lormec\n\n13) dragmio: Move Y2 Dragmio Aspect\n\n14) lorgar: Build B2 Lormec\n\n15) dragmio: Trade Y2 G2 Aspect\n\n16) lorgar: Trade B1 G1 Lorgar\n\n17) dragmio: Build Y2 Aspect\n\n18) lorgar: Discover G1 Lorgar Y3 M0\n\n19) dragmio: Sacrifice G2 Aspect\nBuild Y2 Dragmio\nBuild Y3 Dragmio\n\n20) lorgar: Build Y3 Lormec\n\n21) dragmio: Sacrifice Y2 Dragmio\nMove Y1 Aspect Lormec\nMove Y2 Aspect Lormec\nCatastrophe Lormec Y\n\n22) lorgar: Trade B1 R1 Lormec\n\n23) dragmio: Trade Y1 R1 Dragmio\n\n24) lorgar: Build B1 Lormec\n\n25) dragmio: Discover R3 Dragmio Y2 Emperor\n\n26) lorgar: Build B1 Lormec\n\n27) dragmio: Move R3 Emperor M0\n\n28) lorgar: Discover G1 M0 B2 Mar\n\n29) dragmio: Move R3 M0 Mar\n\n30) lorgar: Trade B1 Y1 Lormec\n\n31) dragmio: Attack G1 Mar\n\n32) lorgar: Build R1 Lormec\n\n33) dragmio: Build Y1 Dragmio\n\n34) lorgar: Trade B2 Y2 Lormec\n\n35) dragmio: Move Y1 Dragmio Mar\n\tdragmio: \n\n36) lorgar: Build B1 Lormec\n\n37) dragmio: Build R2 Dragmio\n\n38) lorgar: Discover B1 Lormec G2 Mordekaizone\n\n39) dragmio: Build Y2 Dragmio\n\n40) lorgar: Build B2 Lormec\n\n41) dragmio: Move R2 Dragmio Mordekaizone\n\n42) lorgar: Sacrifice B1 Mordekaizone\nTrade Y1 B1 Lormec\n\n43) dragmio: Move R1 Dragmio Mordekaizone\n\n44) lorgar: Discover B2 Lormec G2 Mhoried\n\n45) dragmio: Discover R3 Mar Y3 Yolta\n\n46) lorgar: Build B2 Mhoried\n\n47) dragmio: Sacrifice Y3 Dragmio\nMove R2 Mordekaizone Lormec\nMove R1 Mordekaizone Lormec\nMove R3 Yolta Lorgar\nCatastrophe Lormec R\n\n\nHomeworlds Online (SDG# 20284)\nStarted: 2011.7.8, Ended: 2011.8.1\nParticipants: SirRuthvenMurgatroyd (S), BloodRumpus (N)\nWinner: SirRuthvenMurgatroyd\n\n1) BloodRumpus: Homeworld B3 R1 G3\n\n2) SirRuthvenMurgatroyd: Homeworld G1 B2 Y3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\n4) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n5) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n6) SirRuthvenMurgatroyd: Trade Y1 R1 Sirruthvenmurgatroyd\n\n7) BloodRumpus: Build G1 Bloodrumpus\n\n8) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n9) BloodRumpus: Discover G1 Bloodrumpus B2 Vega\n\n10) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd\n\n11) BloodRumpus: Build G1 Vega\n\n12) SirRuthvenMurgatroyd: Trade Y3 G3 Sirruthvenmurgatroyd\n\n13) BloodRumpus: Build G2 Vega\n\n14) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n15) BloodRumpus: Trade G1 Y1 Vega\n\n16) SirRuthvenMurgatroyd: Build R2 Sirruthvenmurgatroyd\n\n17) BloodRumpus: Build Y2 Vega\n\n18) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n19) BloodRumpus: Trade Y2 R2 Vega\n\n20) SirRuthvenMurgatroyd: Discover R1 Sirruthvenmurgatroyd Y3 Sol\n\n21) BloodRumpus: Build Y2 Vega\n\n22) SirRuthvenMurgatroyd: Discover R1 Sol Y2 Yellow\n\n23) BloodRumpus: Sacrifice G3 Bloodrumpus\nBuild Y3 Bloodrumpus\nBuild Y3 Bloodrumpus\nBuild Y3 Vega\n\n24) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd G3 Green\n\n25) BloodRumpus: Trade Y1 G1 Vega\n\n26) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nMove Y1 Green Yellow\nMove Y1 Yellow Bloodrumpus\nCatastrophe Bloodrumpus Y\n\n\nHomeworlds Online (SDG# 20304)\nVariants: "Hard time"\nStarted: 2011.7.8, Ended: 2011.7.13\nParticipants: SilentTitan (S), BloodRumpus (N)\nWinner: SilentTitan\n\n1) BloodRumpus: Homeworld B2 R3 G3\n\n2) SilentTitan: Homeworld R2 B1 G3\n\tSilentTitan: ah... good you're back. I was hoping to play you again... you're good... you just mis-stepped in that last game. I figure I won't be able to lure you in the same way .... this time\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\tBloodRumpus: Thanks! I'm pretty new to this game, but I find it absolutely fascinating! I'm glad we can play online. I'm new to Icehouse games in general, and was really disappointed that I won't be able to buy any pyramids until late Sept.\n\n4) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: hum... I hadn't heard anything about that. My bro-in-law runs Icehouse games at the cons we have in Denver and he typiclly gives pyramid packs out to the winners. I'll ask maybe he'll sell you some. dunno for sure.\n\n5) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n6) SilentTitan: Build G1 Silenttitan\n\tBloodRumpus: yeah something about Looney Labs switching to Chinese manufacturing and having some kind of problem thats delaying the release of new pyramids... and all the gaming shops are sold out. I guess there haven't been any pyramids in circulation since June (at least thats what I gather from the website). Seems like I picked the perfectly wrong time to get into Icehouse games. \n\n7) BloodRumpus: Build Y1 Bloodrumpus\n\tSilentTitan: yah... I went out and read the whole saga.... crazy. \n\n8) SilentTitan: Trade G1 Y1 Silenttitan\n\n9) BloodRumpus: Build Y2 Bloodrumpus\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) BloodRumpus: Trade Y2 G2 Bloodrumpus\n\n12) SilentTitan: Build G1 Silenttitan\n\n13) BloodRumpus: Discover G2 Bloodrumpus B1 Sirius\n\n14) SilentTitan: Build Y2 Silenttitan\n\n15) BloodRumpus: Move Y1 Bloodrumpus Sirius\n\n16) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover G1 Silenttitan Y3 Ying\nDiscover G1 Silenttitan Y3 Yang\n\n17) BloodRumpus: Sacrifice G3 Bloodrumpus\nBuild Y2 Sirius\nBuild Y2 Bloodrumpus\nBuild Y3 Bloodrumpus\n\n18) SilentTitan: Discover Y1 Silenttitan G3 Zong\n\n19) BloodRumpus: Sacrifice Y2 Bloodrumpus\nMove Y1 Bloodrumpus Sirius\nMove Y1 Sirius Zong\n\n20) SilentTitan: Discover Y1 Zong B1 Song\n\n21) BloodRumpus: Trade Y2 B2 Sirius\n\n22) SilentTitan: Discover Y1 Song B3 Jazz\n\n23) BloodRumpus: Build Y2 Zong\n\n24) SilentTitan: Build Y2 Silenttitan\n\n25) BloodRumpus: Move G2 Sirius Bloodrumpus\n\n26) SilentTitan: Sacrifice G1 Yang\nBuild Y3 Jazz\n\n27) BloodRumpus: Move B2 Sirius Zong\n\n28) SilentTitan: Trade Y2 R2 Silenttitan\n\n29) BloodRumpus: Trade Y1 R1 Zong\n\n30) SilentTitan: Build G1 Silenttitan\n\n31) BloodRumpus: Build B1 Zong\n\n32) SilentTitan: Build G1 Silenttitan\n\n33) BloodRumpus: Build B2 Zong\n\n34) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Silenttitan Zong\nMove G1 Silenttitan Zong\n\n35) BloodRumpus: Sacrifice Y3 Bloodrumpus\nMove B2 Zong Silenttitan\nMove B2 Zong Silenttitan\nMove B1 Zong Silenttitan\nCatastrophe Silenttitan B\n\n36) SilentTitan: Build G2 Zong\nCatastrophe Zong Green\n\n37) BloodRumpus: Move Y1 Sirius Bloodrumpus\n\n38) SilentTitan: Discover Y3 Jazz G1 Somo\n\n39) BloodRumpus: Trade Y1 R1 Bloodrumpus\n\n40) SilentTitan: Move Y3 Somo Bloodrumpus\n\n41) BloodRumpus: Trade R1 Y1 Bloodrumpus\n\n42) SilentTitan: Sacrifice R2 Silenttitan\nAttack G2 Bloodrumpus North\nAttack Y1 Bloodrumpus North\n\n\nHomeworlds Online (SDG# 20336)\nStarted: 2011.7.8, Ended: 2011.8.16\nParticipants: SirRuthvenMurgatroyd (S), Mandrel (N)\nWinner: SirRuthvenMurgatroyd\n\n1) Mandrel: Homeworld B3 R2 G3\n\tMandrel: Have a good game.\n\n2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n3) Mandrel: Build G1 Mandrel\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n7) Mandrel: D Y1 Mandrel G1 Down\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) Mandrel: Build G2 Mandrel\n\n10) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n11) Mandrel: Trade G2 Y2 Mandrel\n\n12) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd\n\n13) Mandrel: B Y1 Down\n\n14) SirRuthvenMurgatroyd: Build G1 Sol\n\n15) Mandrel: B Y2 Mandrel\n\n16) SirRuthvenMurgatroyd: Discover G1 Sol B1 Calufrax\n\n17) Mandrel: B Y2 Down\n\n18) SirRuthvenMurgatroyd: Build G2 Calufrax\n\n19) Mandrel: Build Y3 Mandrel\n\n20) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n21) Mandrel: Discover Y1 Down G3 Confusion\n\n22) SirRuthvenMurgatroyd: Move Y3 Sirruthvenmurgatroyd Confusion\n\n23) Mandrel: S Y3 Mandrel\nMove Y1 Down Confusion\nMove Y1 Confusion Sirruthvenmurgatroyd\nMove Y1 Confusion Sirruthvenmurgatroyd\n\n24) SirRuthvenMurgatroyd: Build Y3 Confusion\n\n25) Mandrel: Sacrifice Y2 Mandrel\nMove Y2 Down Confusion\nMove Y2 Confusion Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Y\n\n26) SirRuthvenMurgatroyd: Trade G2 R2 Calufrax\n\n27) Mandrel: Build Y1 Mandrel\n\n28) SirRuthvenMurgatroyd: Build R1 Calufrax\n\n29) Mandrel: Trade Y1 B1 Mandrel\n\n30) SirRuthvenMurgatroyd: Trade G1 B1 Calufrax\n\n31) Mandrel: Build Y1 Mandrel\n\n32) SirRuthvenMurgatroyd: Sacrifice Y3 Confusion\nMove B1 Calufrax Mandrel\nMove R1 Calufrax Mandrel\nMove R2 Calufrax Mandrel\n\n33) Mandrel: Attack R2S Mandrel\n\n34) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd\nBuild R1 Mandrel\nBuild B1 Mandrel\nCatastrophe Mandrel R\nCatastrophe Mandrel B\n\tMandrel: Good game, well played.\n\n\nHomeworlds Online (SDG# 20342)\nVariants: "Hard time"\nStarted: 2011.7.8, Ended: 2011.7.11\nParticipants: ajo (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\tDanner: Hello again.\n\n2) ajo: Homeworld Y2 B1 G3\n\tajo: Ah yes, you like to give the opponent the first move. Incidentally, how does SDG decide? Does the challenger always get the first opportunity to move?\n\n3) Danner: Homeworld B1 G2 B3 *\n\tDanner: I think it's random, but I'm not sure.\n\n4) ajo: Build G1 Ajo\n\n5) Danner: Build B1 Danner\n\n6) ajo: Trade G3 B3 Ajo\n\n7) Danner: Trade B1 Y1 Danner\n\n8) ajo: Build G1 Ajo\n\n9) Danner: Build Y1 Danner\n\n10) ajo: Discover G1 Ajo B3 Alpha\n\tajo: Oh shoot! I just realized that we're only two hops apart. That changes things somewhat. :)\n\n11) Danner: Discover Y1 Danner G3 Beta\n\tDanner: :)\n\n12) ajo: Build G1 Ajo\n\n13) Danner: Build B1 Danner\n\n14) ajo: Build B2 Ajo\n\n15) Danner: Move B1 Danner Beta\n\n16) ajo: Move B2 Ajo Alpha\n\n17) Danner: Build B2 Danner\n\n18) ajo: Trade B2 Y2 Alpha\n\n19) Danner: Build B2 Beta\n\n20) ajo: Build G2 Alpha\n\n21) Danner: Build B2 Beta\n\tDanner: It's getting exciting. :)\n\n22) ajo: Move G1 Alpha Danner\n\tajo: Isn't it?\n\n23) Danner: Trade B2 R2 Danner\n\n24) ajo: Sacrifice G2 Alpha\nBuild G2 Danner\nBuild G2 Danner\nCatastrophe Danner Green\n\n25) Danner: Discover B2 Beta G2 Gamma\n\n26) ajo: Trade B3 R3 Ajo\n\n27) Danner: Build B2 Gamma\n\n28) ajo: Move G1 Ajo Alpha\n\n29) Danner: Build B3 Beta\n\n30) ajo: Build G1 Alpha\n\tajo: Whoops. I should have been watching the stash. (I'm playing this game -- uncharacteristically -- without having it set up next to me.)\n\n31) Danner: Trade B3 Y3 Beta\n\n32) ajo: Build G2 Ajo\n\tDanner: That's strange. :)\n\n33) Danner: Build B3 Gamma\n\n34) ajo: Discover G1 Alpha G2 Delta\n\tDanner: Oops, I read it wrong.\r\n(Well, I never set it up phisically, but sometimes I use MS Paint :D)\n\n35) Danner: Sacrifice Y3 Beta\nDiscover B3 Gamma G3 Epsilon\nDiscover B2 Gamma G3 Zeta\nDiscover B2 Gamma Y3 Eta\n\tajo: I strongly recommend getting a physical set of Icehouse pieces and setting it up for real. Especially since SDG's visualization always sorts the star systems in precisely the wrong order top-to-bottom, have you noticed? ;) Makes it really easy to miss something.\n\n36) ajo: Build G2 Alpha\n\n37) Danner: Trade B3 Y3 Epsilon\n\tDanner: I made a set out of paper a few years ago! :)\n\n38) ajo: Move G2 Ajo Epsilon\n\n39) Danner: Build B3 Zeta\n\n40) ajo: Build Y1 Alpha\n\n41) Danner: Build Y2 Epsilon\n\n42) ajo: Sacrifice Y2 Alpha\nMove G1 Delta Epsilon\nMove G1 Ajo Epsilon\nCatastrophe Epsilon Green\n\n43) Danner: Trade B3 Y3 Zeta\n\n44) ajo: Move G2 Alpha Ajo\n\n45) Danner: Build B3 Zeta\n\n46) ajo: Build G1 Ajo\n\n47) Danner: Trade B3 R3 Zeta\n\n48) ajo: Build Y2 Alpha\n\n49) Danner: Build Y2 Zeta\n\n50) ajo: Discover G1 Ajo Y3 Theta\n\n51) Danner: Move R2 Danner Theta\n\n52) ajo: Build G1 Ajo\n\n53) Danner: Attack G1S Theta\n\n54) ajo: Build G2 Alpha\n\n55) Danner: Move R3 Zeta Danner\n\n56) ajo: Discover G1 Ajo B3 Gamma\n\n57) Danner: Move Y1 Danner Gamma\n\n58) ajo: Trade G2 R2 Alpha\n\n59) Danner: Sacrifice R2 Theta\nAttack G1S Gamma\nPass\n\n60) ajo: Build G2 Alpha\n\n61) Danner: Sacrifice G1 Theta\nBuild Y3 Beta\n\n62) ajo: Sacrifice Y2 Alpha\nMove G1 Alpha Danner\nMove G1 Danner Beta\n\n63) Danner: Sacrifice Y3 Beta\nMove Y1 Beta Ajo\nMove B1 Beta Ajo\nMove B2 Beta Ajo\n\n64) ajo: Sacrifice R2 Alpha\nAttack B2 Ajo\nAttack B1 Ajo\n\n65) Danner: Sacrifice Y3 Zeta\nMove B2 Zeta Ajo\nMove Y2 Zeta Ajo\nMove Y1 Gamma Ajo\nCatastrophe Ajo Y\nCatastrophe Ajo B\n\tajo: Therrrrre you go. Finally. :P Good game!\n\n\tDanner: Thanks for the game! :)\n\nHomeworlds Online (SDG# 20337)\nVariants: "Hard time"\nStarted: 2011.7.9, Ended: 2011.7.24\nParticipants: SilentTitan (S), thejackdiaz (N)\nWinner: SilentTitan\n\n1) thejackdiaz: Homeworld Y2 B3 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) thejackdiaz: Build G1 Thejackdiaz\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) thejackdiaz: Discover G1 Thejackdiaz Y1 Trini\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) thejackdiaz: Build G1 Thejackdiaz\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) thejackdiaz: Build G1 Trini\n\n10) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n11) thejackdiaz: Discover G1 Trini Y3 Eva\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) thejackdiaz: Build G2 Eva\n\n14) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Sol\nBuild Y3 Silenttitan\n\n15) thejackdiaz: Sacrifice G3 Thejackdiaz\nBuild G2 Eva\nBuild G2 Trini\nBuild G3 Thejackdiaz\n\n16) SilentTitan: Trade Y3 R3 Sol\n\n17) thejackdiaz: Trade G1 R1 Thejackdiaz\n\n18) SilentTitan: Trade Y1 G1 Sol\n\n19) thejackdiaz: Build G3 Thejackdiaz\n\n20) SilentTitan: Trade Y3 G3 Silenttitan\n\n21) thejackdiaz: Trade G3 R3 Thejackdiaz\n\n22) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Sol\nBuild Y3 Silenttitan\n\n23) thejackdiaz: Move R3 Thejackdiaz Trini\n\n24) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Sol Trini\nMove G1 Trini Eva\nCatastrophe Eva Green\n\n25) thejackdiaz: Discover G2 Trini B3 Billy\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) thejackdiaz: Trade G2 Y2 Billy\n\n28) SilentTitan: Trade Y2 G2 Sol\n\n29) thejackdiaz: Build R1 Trini\n\n30) SilentTitan: Discover Y1 Sol B1 Pluto\n\n31) thejackdiaz: Discover G1 Trini Y3 Kimberly\n\n32) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Pluto\nBuild Y3 Silenttitan\nBuild R2 Sol\n\n33) thejackdiaz: Sacrifice G1 Kimberly\nBuild Y3 Billy\n\n34) SilentTitan: Sacrifice Y2 Pluto\nMove Y1 Pluto Billy\nMove Y1 Silenttitan Billy\nCatastrophe Billy Yellow\n\n35) thejackdiaz: Build R2 Thejackdiaz\n\n36) SilentTitan: Discover R2 Sol Y1 Tic\n\n37) thejackdiaz: Trade R1 Y1 Thejackdiaz\n\n38) SilentTitan: Sacrifice G2 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n39) thejackdiaz: Build G1 Thejackdiaz\n\n40) SilentTitan: Trade Y3 G3 Silenttitan\n\n41) thejackdiaz: Move G1 Thejackdiaz Trini\n\n42) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\nBuild R1 Sol\n\n43) thejackdiaz: Build G1 Thejackdiaz\n\n44) SilentTitan: Trade Y2 B2 Silenttitan\n\n45) thejackdiaz: Trade G1 B1 Thejackdiaz\n\n46) SilentTitan: Discover Y2 Sol G1 Mars\n\n47) thejackdiaz: Build G1 Thejackdiaz\n\n48) SilentTitan: Trade Y3 G3 Silenttitan\n\n49) thejackdiaz: Build G2 Trini\n\n50) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Mars\nBuild Y3 Sol\nBuild B1 Silenttitan\n\n51) thejackdiaz: Discover R1 Trini B3 Ozone\n\n52) SilentTitan: Sacrifice Y3 Sol\nMove Y2 Mars Thejackdiaz\nMove Y2 Mars Thejackdiaz\nDiscover B1 Silenttitan G3 Mer\nCatastrophe Thejackdiaz Yellow\n\n53) thejackdiaz: Trade B1 Y1 Thejackdiaz\n\n54) SilentTitan: Trade R1 G1 Sol\n\n55) thejackdiaz: Build Y2 Thejackdiaz\n\n56) SilentTitan: Sacrifice G1 Sol\nBuild B1 Silenttitan\n\n57) thejackdiaz: Trade R1 B1 Ozone\n\n58) SilentTitan: Sacrifice Y3 Sol\nMove B1 Silenttitan Thejackdiaz\nMove B2 Silenttitan Thejackdiaz\nMove B1 Mer Tic\n\n59) thejackdiaz: Attack B2S Thejackdiaz\n\n60) SilentTitan: Move B1 Tic Thejackdiaz\nCatastrophe Thejackdiaz Blue\n\tthejackdiaz: GG\n\tSilentTitan: Thanks\n\n\nHomeworlds Online (SDG# 20345)\nVariants: "Hard time"\nStarted: 2011.7.11, Ended: 2011.7.19\nParticipants: kingsamj (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 B2 G3\n\n2) kingsamj: Homeworld R3 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: Small universe..... nice. Good luck.\n\n4) kingsamj: Build G1 Kingsamj\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) kingsamj: Trade G1 R1 Kingsamj\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) kingsamj: Build G1 Kingsamj\n\n9) SilentTitan: Build Y1 Silenttitan\n\n\nHomeworlds Online (SDG# 20365)\nVariants: "Hard time"\nStarted: 2011.7.12, Ended: 2011.8.14\nParticipants: BloodRumpus (S), kingsamj (N)\nWinner: kingsamj\n\n1) kingsamj: Homeworld R3 B2 G3\n\n2) BloodRumpus: Homeworld G1 B2 Y3\n\n3) kingsamj: Build G1 Kingsamj\n\n4) BloodRumpus: Build Y1 Bloodrumpus\n\n5) kingsamj: Trade G1 Y1 Kingsamj\n\n6) BloodRumpus: Discover Y1 Bloodrumpus G3 Rigel\n\n7) kingsamj: Discover Y1 Kingsamj G1 Firescorn\n\n8) BloodRumpus: Build Y1 Bloodrumpus\n\n9) kingsamj: Build Y2 Firescorn\n\n10) BloodRumpus: Build Y2 Rigel\n\n11) kingsamj: Move Y1 Firescorn Kingsamj\n\tBloodRumpus: Thats a lot of yellow ships! I sleep now...\n\n12) BloodRumpus: Trade Y1 B1 Bloodrumpus\n\n13) kingsamj: Build Y1 Kingsamj\n\tBloodRumpus: oh i see you are playing against SilentTitan. I've played 2 games with him, he beat me both times.\n\n14) BloodRumpus: Build Y2 Bloodrumpus\n\n15) kingsamj: Trade Y1 R1 Kingsamj\n\n16) BloodRumpus: Trade Y3 G3 Bloodrumpus\n\n17) kingsamj: Move R1 Kingsamj Firescorn\n\n18) BloodRumpus: Sacrifice G3 Bloodrumpus\nBuild Y1 Rigel\nBuild Y3 Bloodrumpus\nBuild Y3 Bloodrumpus\n\n19) kingsamj: Move Y2 Firescorn Rigel\nCatastrophe Rigel Y\n\n20) BloodRumpus: Trade Y3 G3 Bloodrumpus\n\n21) kingsamj: Build Y1 Kingsamj\n\tBloodRumpus: Nice catastrophe! Off to bed...\n\n22) BloodRumpus: Discover Y2 Bloodrumpus G3 Vega\n\n23) kingsamj: Build R1 Firescorn\n\n24) BloodRumpus: Move B1 Bloodrumpus Vega\n\n25) kingsamj: Move Y1 Kingsamj Firescorn\n\n26) BloodRumpus: Trade Y2 R2 Vega\n\n27) kingsamj: Trade Y1 B1 Kingsamj\n\n28) BloodRumpus: Build Y1 Bloodrumpus\n\n29) kingsamj: Build Y1 Firescorn\n\n30) BloodRumpus: Move Y1 Bloodrumpus Vega\n\n31) kingsamj: Move Y1 Firescorn Kingsamj\n\n32) BloodRumpus: Discover G3 Bloodrumpus Y3 Sirius\n\n33) kingsamj: Build Y2 Firescorn\n\n34) BloodRumpus: Move G3 Sirius Firescorn\n\n35) kingsamj: Build Y2 Kingsamj\n\n36) BloodRumpus: Sacrifice R2 Vega\nAttack Y2 Firescorn\nAttack R1 Firescorn\n\n37) kingsamj: Pass\n\tkingsamj: i think this game has some bugs!\n\n38) BloodRumpus: Pass\n\tBloodRumpus: Is it misbehaving?\n\n39) kingsamj: Build G1 Kingsamj\n\n40) BloodRumpus: Sacrifice G3 Firescorn\nBuild Y2 Vega\nBuild Y3 Bloodrumpus\nBuild Y3 Bloodrumpus\n\n41) kingsamj: Build G2 Kingsamj\n\n42) BloodRumpus: Trade Y3 G3 Bloodrumpus\n\n43) kingsamj: Move Y1 Firescorn Vega\n\tBloodRumpus: This game has been pretty epic. Thats a fuck-ton of ships at your homeworld!\n\n44) BloodRumpus: Build Y3 Firescorn\n\n45) kingsamj: Move G2 Kingsamj Firescorn\n\n46) BloodRumpus: Sacrifice Y2 Firescorn\nDiscover Y3 Firescorn B3 Draconis\nMove R1 Firescorn Vega\n\n47) kingsamj: Move Y2 Kingsamj Firescorn\n\n48) BloodRumpus: Sacrifice Y2 Vega\nMove Y3 Bloodrumpus Vega\nDiscover Y3 Vega R1 Cygnus\n\n49) kingsamj: Build R2 Firescorn\n\n50) BloodRumpus: Move Y3 Draconis Cygnus\n\n\n51) kingsamj: Build Y2 Firescorn\n\n52) BloodRumpus: Trade G3 R3 Bloodrumpus\n\n53) kingsamj: Trade G3 R3 Kingsamj\n\n54) BloodRumpus: Build Y2 Bloodrumpus\n\n55) kingsamj: Sacrifice Y2 Firescorn\nMove Y1 Vega Cygnus\nMove Y1 Kingsamj Cygnus\nCatastrophe Cygnus Y\n\n56) BloodRumpus: Trade Y2 G2 Bloodrumpus\n\n57) kingsamj: Build G2 Kingsamj\n\n58) BloodRumpus: Discover G2 Bloodrumpus B3 Crux\n\n59) kingsamj: Move R2 Firescorn Crux\n\n60) BloodRumpus: Build G3 Crux\n\n61) kingsamj: Build G3 Kingsamj\n\n62) BloodRumpus: Sacrifice R1 Vega\nAttack R2 Crux\n\n63) kingsamj: Trade G3 Y3 Kingsamj\n\n64) BloodRumpus: Trade G2 Y2 Crux\n\n65) kingsamj: Move R3 Kingsamj Firescorn\n\n66) BloodRumpus: Build R1 Bloodrumpus\n\n67) kingsamj: Move R1 Firescorn Vega\n\n68) BloodRumpus: Move R3 Bloodrumpus Crux\n\n69) kingsamj: Attack Y1 Vega\n\n70) BloodRumpus: Sacrifice Y2 Crux\nMove R3 Crux Firescorn\nMove G3 Crux Firescorn\n\n71) kingsamj: Move R3 Firescorn Crux\n\n72) BloodRumpus: Sacrifice B1 Vega\nTrade G3 B3 Firescorn\n\n73) kingsamj: Move Y2 Firescorn Crux\n\n74) BloodRumpus: Sacrifice R2 Crux\nAttack G2N Firescorn\nPass\n\n75) kingsamj: Sacrifice Y2 Crux\nMove G2 Kingsamj Firescorn\nMove G1 Kingsamj Firescorn\nCatastrophe Firescorn G\n\n76) BloodRumpus: Build Y1 Bloodrumpus\n\n77) kingsamj: Trade Y3 G3 Kingsamj\n\n78) BloodRumpus: Trade Y1 B1 Bloodrumpus\n\n79) kingsamj: Trade B1 Y1 Kingsamj\n\n80) BloodRumpus: Build Y1 Bloodrumpus\n\n81) kingsamj: Build Y2 Vega\n\n82) BloodRumpus: Discover Y1 Bloodrumpus G3 Algol\n\n83) kingsamj: Build Y2 Kingsamj\n\n84) BloodRumpus: Build Y2 Bloodrumpus\n\n85) kingsamj: Sacrifice Y2 Kingsamj\nMove Y1 Vega Bloodrumpus\nMove Y2 Vega Bloodrumpus\nCatastrophe Bloodrumpus Y\n\n86) BloodRumpus: Build R1 Bloodrumpus\n\n87) kingsamj: Build R2 Vega\n\n88) BloodRumpus: Build B1 Bloodrumpus\n\n89) kingsamj: Sacrifice Y1 Kingsamj\nMove R2 Vega Bloodrumpus\n\n90) BloodRumpus: D Y1 Algol G2 Bootes\n\n91) kingsamj: Sacrifice R3 Crux\nAttack R1 Bloodrumpus\nAttack R1 Bloodrumpus\nAttack B1 Bloodrumpus\n\n92) BloodRumpus: Build B1 Bloodrumpus\n\n93) kingsamj: Build G1 Kingsamj\nCatastrophe Bloodrumpus B\n\n\tkingsamj: woo! cylons win!\n\tBloodRumpus: I was fully bonerized :(\n\nHomeworlds Online (SDG# 20373)\nVariants: "Hard time"\nStarted: 2011.7.13, Ended: 2011.7.16\nParticipants: ajo (S), Subhan64 (N)\nWinner: ajo\n\n\nHomeworlds Online (SDG# 20349)\nStarted: 2011.7.14, Ended: 2011.11.3\nParticipants: thejackdiaz (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R2 B1 G3\n\tMandrel: Have a good game.\n\n2) thejackdiaz: Homeworld B1 G3 R3\n\n3) Mandrel: Build G1 Mandrel\n\n4) thejackdiaz: Build R1 Thejackdiaz\n\n5) Mandrel: Trade G1 B1 Mandrel\n\n6) thejackdiaz: Trade R3 Y3 Thejackdiaz\n\n7) Mandrel: Build B2 Mandrel\n\n8) thejackdiaz: Build R1 Thejackdiaz\n\n9) Mandrel: Trade B1 Y1 Mandrel\n\n10) thejackdiaz: Build Y1 Thejackdiaz\n\n11) Mandrel: D B2 Mandrel G3 Berry\n\n12) thejackdiaz: Discover R1 Thejackdiaz G2 Kix\n\n13) Mandrel: Build B1 Berry\n\n14) thejackdiaz: Build R1 Kix\n\n15) Mandrel: B B2 Berry\n\n16) thejackdiaz: Move Y1 Thejackdiaz Kix\n\n17) Mandrel: T B2 R2 Berry\n\n18) thejackdiaz: Build R2 Kix\n\n19) Mandrel: T B2 Y2 Berry\n\n20) thejackdiaz: Move R1 Kix Thejackdiaz\n\n21) Mandrel: Build R3 Berry\n\n22) thejackdiaz: Discover R1 Kix B3 Cubone\n\n23) Mandrel: T R2 G2 Berry\n\n24) thejackdiaz: Build R2 Kix\n\n25) Mandrel: Build R3 Berry\n\n26) thejackdiaz: Build R3 Thejackdiaz\n\n27) Mandrel: Discover G2 Berry B2 Ground\n\n28) thejackdiaz: Trade R1 Y1 Thejackdiaz\n\n29) Mandrel: Build Y2 Mandrel\n\n30) thejackdiaz: Build Y2 Kix\n\n31) Mandrel: B Y3 Berry\n\n32) thejackdiaz: Move Y2 Kix Cubone\n\n33) Mandrel: Build B2 Berry\n\n34) thejackdiaz: Build Y3 Kix\n\n35) Mandrel: Build G1 Ground\n\n36) thejackdiaz: Move R2 Kix Cubone\n\n37) Mandrel: Build G1 Ground\n\n38) thejackdiaz: Discover R2 Kix B3 Omega\n\n39) Mandrel: Trade R3 B3 Berry\n\n40) thejackdiaz: Sacrifice Y3 Kix\nMove R2 Cubone Mandrel\nMove R1 Cubone Mandrel\nMove R2 Omega Mandrel\nCatastrophe Mandrel Red\n\n41) Mandrel: S Y3 Berry\nMove G1 Ground Thejackdiaz\nMove G1 Ground Thejackdiaz\nMove G2 Ground Thejackdiaz\nCatastrophe Thejackdiaz G\n\n42) thejackdiaz: Build Y3 Kix\n\n43) Mandrel: M B1 Berry Thejackdiaz\n\n44) thejackdiaz: Sacrifice Y3 Kix\nMove R3 Thejackdiaz Berry\nMove Y1 Kix Mandrel\nMove Y2 Cubone Mandrel\nCatastrophe Mandrel Y\n\n45) Mandrel: Sacrifice Y2 Berry\nMove B2 Berry Thejackdiaz\nMove B3 Berry Thejackdiaz\nCatastrophe Thejackdiaz B\n\tMandrel: Good game.\n\tthejackdiaz: Good game\n\n\nHomeworlds Online (SDG# 20369)\nVariants: "No undo"\nStarted: 2011.7.14, Ended: 2011.8.3\nParticipants: ajo (S), thejackdiaz (N)\nWinner: ajo\n\n1) thejackdiaz: Homeworld R1 B2 G3\n\n2) ajo: Homeworld G3 B1 R3\n\n3) thejackdiaz: Build G1 Thejackdiaz\n\n4) ajo: Build R1 Ajo\n\n5) thejackdiaz: Trade G1 Y1 Thejackdiaz\n\n6) ajo: Trade R3 Y3 Ajo\n\n7) thejackdiaz: Build G1 Thejackdiaz\n\n8) ajo: Build R1 Ajo\n\n9) thejackdiaz: Discover G1 Thejackdiaz Y3 Spike\n\n10) ajo: Build R2 Ajo\n\tajo: Moving out to a b3 star would probably have been better. From that y3, all you can do is move out again to a b2 star... which would normally be a decent aggressive strategy, but in this case I've got tons of red and you've got none, so watch out!\n\n11) thejackdiaz: Build Y1 Thejackdiaz\n\tthejackdiaz: Thanks! I'm still learning\n\n12) ajo: Discover R2 Ajo Y2 Waypoint\n\n13) thejackdiaz: Discover G1 Spike B2 Jet\n\n14) ajo: Move R1 Ajo Jet\n\n15) thejackdiaz: Trade G1 Y1 Jet\n\n16) ajo: Attack Y1 Jet\n\n17) thejackdiaz: Build Y2 Thejackdiaz\n\n18) ajo: Build R2 Ajo\n\n19) thejackdiaz: Trade Y2 R2 Thejackdiaz\n\n20) ajo: Trade R1 G1 Jet\n\n21) thejackdiaz: Build Y2 Thejackdiaz\n\n22) ajo: Build Y2 Jet\n\n23) thejackdiaz: Discover Y2 Thejackdiaz B3 Ed\n\n24) ajo: Build Y3 Ajo\n\n25) thejackdiaz: Discover Y2 Ed G2 Valentine\n\n26) ajo: Move Y3 Ajo Valentine\n\n27) thejackdiaz: Build Y3 Valentine\n\n28) ajo: Sacrifice R2 Ajo\nAttack Y2 Valentine\nAttack Y3 Valentine\n\tajo: Ooookay then... I'll take it!\n\n29) thejackdiaz: Discover R2 Thejackdiaz G3 Silas\n\tthejackdiaz: Crap\n\n30) ajo: Move Y3 Valentine Silas\n\tajo: Another tip: Watch out for systems containing only red and green. In this case it's no big deal, because it's right next to a system containing more colors; but if a system way out in the middle of nowhere has only red and green, then it's essentially useless.\n\n31) thejackdiaz: Sacrifice Y1 Thejackdiaz\nMove R2 Silas Thejackdiaz\n\n32) ajo: Build Y1 Silas\n\n33) thejackdiaz: Build G1 Thejackdiaz\n\n34) ajo: Move R2 Waypoint Silas\n\n35) thejackdiaz: Trade G1 B1 Thejackdiaz\n\n36) ajo: Build Y2 Jet\n\n37) thejackdiaz: Build G1 Thejackdiaz\n\n38) ajo: Trade Y1 R1 Jet\n\n39) thejackdiaz: Build Y1 Thejackdiaz\n\n40) ajo: Sacrifice Y3 Valentine\nMove R1 Jet Silas\nMove R1 Silas Thejackdiaz\nMove R2 Silas Thejackdiaz\nCatastrophe Thejackdiaz Red\n\n41) thejackdiaz: Trade Y1 R1 Thejackdiaz\n\tajo: It was probably too early for me to do that, really; but long inexorable buildups aren't as much fun as blowing things up. :)\n\n42) ajo: Trade Y2 B2 Jet\n\tthejackdiaz: We're nearing the end\n\n43) thejackdiaz: Discover G1 Thejackdiaz B3 Iv\n\n44) ajo: Build B1 Jet\n\n45) thejackdiaz: Move B1 Thejackdiaz Iv\n\n46) ajo: Trade B2 R2 Jet\n\n47) thejackdiaz: Build G1 Iv\n\n48) ajo: Move B1 Jet Iv\n\n49) thejackdiaz: Trade B1 R1 Iv\n\n50) ajo: Sacrifice R2 Jet\nAttack R1 Iv\nAttack G1 Iv\n\n51) thejackdiaz: Build R2 Thejackdiaz\n\tajo: I'm definitely letting myself get sidetracked off of my main goal here, which ought to be to get three more blues into your homeworld.\n\n52) ajo: Build R2 Iv\n\n53) thejackdiaz: Sacrifice R1 Thejackdiaz\nAttack G1S Iv\n\n54) ajo: Attack G1 Iv\n\tajo: Well that was just a waste. You sacrificed your r1 to do something that I can undo for free.\n\n55) thejackdiaz: Build G2 Thejackdiaz\n\tajo: ...And now we're back where we were at the start of your last turn, except that you've lost that r1 ship.\n\n56) ajo: Attack G1 Iv\n\n57) thejackdiaz: Trade G2 Y2 Thejackdiaz\n\n58) ajo: Sacrifice Y2 Valentine\nMove G1 Iv Thejackdiaz\nMove G1 Iv Thejackdiaz\n\n59) thejackdiaz: Attack G1 Thejackdiaz\n\n60) ajo: Build G2 Thejackdiaz\nCatastrophe Thejackdiaz Green\n\n61) thejackdiaz: Trade Y2 G2 Thejackdiaz\n\n62) ajo: Move Y3 Silas Thejackdiaz\n\n63) thejackdiaz: Build R1 Thejackdiaz\n\n64) ajo: Sacrifice R2 Iv\nAttack R2 Thejackdiaz\nAttack G2 Thejackdiaz\n\n65) thejackdiaz: Trade Y1 G1 Thejackdiaz\n\tajo: Checkmate. :) Good game!\n\tthejackdiaz: Good Game!\n\n66) ajo: Sacrifice R2 Thejackdiaz\nAttack G1 Thejackdiaz\nAttack R1 Thejackdiaz\n\n\nHomeworlds Online (SDG# 20358)\nVariants: "Hard time"\nStarted: 2011.7.15, Ended: 2011.7.23\nParticipants: SilentTitan (S), BloodRumpus (N)\nWinner: SilentTitan\n\n1) BloodRumpus: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\tSilentTitan: Welcome back\n\tBloodRumpus: Thanks!\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) BloodRumpus: Trade G1 B1 Bloodrumpus\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) BloodRumpus: Build G1 Bloodrumpus\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) BloodRumpus: Trade G3 Y3 Bloodrumpus\n\n10) SilentTitan: Trade Y1 B1 Silenttitan\n\n11) BloodRumpus: Build G1 Bloodrumpus\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) BloodRumpus: Discover G1 Bloodrumpus Y3 Regula\n\n14) SilentTitan: Discover B1 Silenttitan Y1 Sol\n\n15) BloodRumpus: Build Y2 Bloodrumpus\n\n16) SilentTitan: Discover B1 Silenttitan G1 Earth\n\n17) BloodRumpus: Build G2 Regula\n\n18) SilentTitan: Build Y2 Silenttitan\n\n19) BloodRumpus: Move Y2 Bloodrumpus Regula\n\n20) SilentTitan: Move Y1 Silenttitan Earth\n\n21) BloodRumpus: Move G1 Regula Sol\n\n22) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Earth\nBuild Y3 Silenttitan\nBuild B2 Sol\n\n23) BloodRumpus: Move Y2 Regula Sol\n\n24) SilentTitan: Trade B2 R2 Sol\n\n25) BloodRumpus: Sacrifice Y2 Sol\nMove G1 Sol Regula\nDiscover G1 Regula R1 Vulcan\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) BloodRumpus: Build Y2 Bloodrumpus\n\n28) SilentTitan: Sacrifice Y2 Earth\nMove Y1 Earth Regula\nMove Y1 Regula Bloodrumpus\nCatastrophe Bloodrumpus Yellow\n\n\nHomeworlds Online (SDG# 20381)\nVariants: "Hard time"\nStarted: 2011.7.15, Ended: 2011.7.18\nParticipants: alexcobo (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 20383)\nVariants: "Hard time"\nStarted: 2011.7.17, Ended: 2011.8.10\nParticipants: Subhan64 (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld Y2 B3 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) Subhan64: Build G1 Subhan64\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Subhan64: Build G1 Subhan64\n\n7) goulo: Build G1 Goulo\n\n8) Subhan64: Trade G1 Y1 Subhan64\n\n9) goulo: Trade G1 R1 Goulo\n\n10) Subhan64: Build G1 Subhan64\n\n11) goulo: Discover R1 Goulo G3 Smeraldego\n\n12) Subhan64: Discover G1 Subhan64 B1 Bluebell\n\n13) goulo: Build R1 Smeraldego\n\n14) Subhan64: Discover G1 Subhan64 G1 Greengrass\n\n15) goulo: Build G2 Goulo\n\n16) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Bluebell\nBuild G2 Greengrass\nBuild G3 Bluebell\n\n17) goulo: Discover G2 Goulo Y3 Citronego\n\n18) Subhan64: Trade G2 R2 Bluebell\n\n19) goulo: Build G2 Goulo\n\n20) Subhan64: Sacrifice G2 Greengrass\nBuild G2 Greengrass\nBuild R2 Bluebell\n\n21) goulo: Move G2 Citronego Greengrass\nCatastrophe Greengrass G\n\n22) Subhan64: Sacrifice G1 Bluebell\nBuild Y1 Subhan64\n\n23) goulo: Build Y2 Goulo\n\n24) Subhan64: Sacrifice Y1 Subhan64\nMove R2 Bluebell Smeraldego\n\n25) goulo: Build R2 Smeraldego\nCatastrophe Smeraldego R\n\n26) Subhan64: Build G1 Bluebell\n\n27) goulo: Trade Y1 R1 Goulo\n\n28) Subhan64: Trade G1 Y1 Bluebell\n\n29) goulo: Discover G2 Goulo Y3 Citronego\n\n30) Subhan64: Move R2 Bluebell Citronego\n\n31) goulo: Sacrifice R1 Goulo\nAttack R2 Citronego\n\n32) Subhan64: Move G3 Bluebell Subhan64\n\n33) goulo: Build G1 Citronego\n\n34) Subhan64: Build G1 Subhan64\n\n35) goulo: Move G2 Citronego Bluebell\n\n36) Subhan64: Trade Y1 R1 Subhan64\n\n37) goulo: Build Y1 Goulo\n\n38) Subhan64: Trade G1 Y1 Subhan64\n\n39) goulo: Build G1 Bluebell\n\n40) Subhan64: Sacrifice G3 Subhan64\nBuild Y2 Subhan64\nBuild Y3 Bluebell\nBuild R1 Subhan64\n\n41) goulo: Sacrifice G2 Bluebell\nBuild Y3 Goulo\nBuild G1 Goulo\n\n42) Subhan64: Sacrifice Y2 Subhan64\nMove Y1 Bluebell Citronego\nMove Y1 Citronego Goulo\nCatastrophe Goulo Yellow\n\n43) goulo: Build G2 Goulo\n\n44) Subhan64: Sacrifice R1 Subhan64\nAttack G1 Bluebell\n\n45) goulo: Trade G2 Y2 Goulo\n\n46) Subhan64: Build G2 Bluebell\n\n47) goulo: Move G3 Goulo Citronego\n\n48) Subhan64: Trade G2 Y2 Bluebell\n\n49) goulo: Build G2 Goulo\n\n50) Subhan64: Move G1 Bluebell Subhan64\n\n51) goulo: Sacrifice Y2 Goulo\nMove G3 Citronego Bluebell\nMove G3 Bluebell Subhan64\n\n52) Subhan64: Build G2 Subhan64\n\n53) goulo: Sacrifice R2 Citronego\nAttack Y1 Subhan64\nAttack R1 Subhan64\n\n54) Subhan64: Trade G1 R1 Subhan64\n\n55) goulo: Attack R1 Subhan64\n\n56) Subhan64: Sacrifice Y2 Bluebell\nMove Y3 Bluebell Citronego\nMove Y3 Citronego Goulo\n\n57) goulo: Attack G2 Subhan64\n\tgoulo: I didn't anticipate that you might build g2 at your homeworld, so I'm improvising. :)\n\tSubhan64: not a bad improvisation, I had slightly miscalculated on my plans as well!\r\n\n\n\tSubhan64: good game, thanks!\n\tgoulo: thanks, that was a good game indeed! Very tense race at the finish. I had a strong adrenalin sense of "is now the time to pull the trigger and make the final homeworld attack? or am I overlooking something?" Good interesting tension!\r\n\r\nA turn earlier I was tempted to send my G3 to your homeworld, then realized you had one response that would let you win first. So I built another ship, then sent it the turn later, and was promptly surprised by your building a green at your homeworld, which I'd not considered. But it turned out lucky for me that that didn't work for you. :)\n\tSubhan64: yeah, I think if I had moved the Y2 home before making the trade for R1 I could have pulled it out, at least for a while, as I could then either have constructed another g ship or traded for 1, & catastrophed all the green out of the sytem. Would have left me pretty week\r\n\n\tSubhan64: & if you'd delayed a turn on moving into my home system I'd have been in yours, & the race would have been on!\r\n\n\tgoulo: yep, it was a question of delicate timing! it felt oddly like an endgame in Cannon when one decides it's time to ignore the threat against one's own town and race for the enemy town instead because one will win the race by a move.\n\nHomeworlds Online (SDG# 20338)\nStarted: 2011.7.19, Ended: 2011.8.14\nParticipants: SirRuthvenMurgatroyd (S), goblin981 (N)\nWinner: SirRuthvenMurgatroyd\n\n1) goblin981: Homeworld G3 B1 Y3\n\n2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n3) goblin981: Build Y1 Goblin981\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) goblin981: Build Y1 Goblin981\n\n6) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n7) goblin981: Discover Y1 Goblin981 G2 Green\n\n8) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Yellow\n\n9) goblin981: Discover Y1 Goblin981 G2 Green2\n\n10) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G1 Yellow\nBuild G2 Yellow\nBuild G3 Sirruthvenmurgatroyd\n\n11) goblin981: Discover Y1 Green2 G3 Green3\n\n12) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd\n\n13) goblin981: Build Y2 Goblin981\n\n14) SirRuthvenMurgatroyd: Discover G2 Yellow Y2 Yellow2\n\n15) goblin981: Trade Y2 G2 Goblin981\n\n16) SirRuthvenMurgatroyd: Move G2 Yellow2 Green3\n\n17) goblin981: Build Y2 Green3\n\n18) SirRuthvenMurgatroyd: Sacrifice R1 Sirruthvenmurgatroyd\nAttack Y2N Green3\n\n19) goblin981: Build G1 Goblin981\n\n20) SirRuthvenMurgatroyd: Sacrifice Y2 Green3\nMove G1 Yellow Green\nMove G1 Green Goblin981\nCatastrophe Goblin981 G\n\n21) goblin981: Build Y2 Green3\n\n22) SirRuthvenMurgatroyd: Move G1 Yellow Goblin981\n\n23) goblin981: Move Y2 Green3 Goblin981\n\n24) SirRuthvenMurgatroyd: Trade G1 B1 Goblin981\n\n25) goblin981: Trade Y2 G2 Goblin981\n\n26) SirRuthvenMurgatroyd: Sacrifice G2 Green3\nBuild B1 Goblin981\nBuild B2 Goblin981\nCatastrophe Goblin981 B\n\n\nHomeworlds Online (SDG# 20402)\nVariants: "Hard time"\nStarted: 2011.7.20, Ended: 2011.7.27\nParticipants: ajo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) ajo: Homeworld G3 Y2 R3 *\n\tajo: Let's see if this opening works...\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: Looks good\n\n4) ajo: Build R1 Ajo\n\n5) SilentTitan: Trade G3 R3 Silenttitan\n\n6) ajo: Discover R1 Ajo B1 Alpha\n\n7) SilentTitan: Build G1 Silenttitan\n\tajo: Well, we've diverged from my predicted main variation already. So it's not working as well as I planned...\n\n8) ajo: Trade R1 G1 Alpha\n\tSilentTitan: lol.... battle plan never survives meeting the enemy.\n\n9) SilentTitan: Trade G1 Y1 Silenttitan\n\n10) ajo: Build R1 Ajo\n\n11) SilentTitan: Build Y1 Silenttitan\n\n12) ajo: Move R1 Ajo Alpha\n\n13) SilentTitan: Build Y1 Silenttitan\n\n14) ajo: Build G1 Alpha\n\tajo: BTW, here's how I *expected* the opening to go:\r\n(ST) build g1\r\n(AJO) build r1\r\n(ST) trade g3 y3\r\n(AJO) discover r1 ajo r1 Junk\r\n(ST) build g1\r\n(AJO) build r2 ajo\n\n15) SilentTitan: Discover Y1 Silenttitan G3 Sky\n\n16) ajo: Build G2 Alpha\n\n17) SilentTitan: Build Y2 Sky\n\tSilentTitan: that would have never happened my standard is to build g1 then trade g1 y1 then try to dominate the yellows from there. I'm not going to try to let you have a free level 2 build unless I think I can do you out of something for it. \n\n18) ajo: Trade G2 Y2 Alpha\n\n19) SilentTitan: Sacrifice Y2 Sky\nMove R3 Silenttitan Sky\nMove R3 Sky Alpha\n\tajo: Ah, I'll keep that in mind for our next game. ;) I usually expect people to immediately go for the color they don't have yet, particularly if it's not red. And an early y3 can really cut down your opponent's options. Anyway, I'm not sure you're going to be able to dominate the yellows anymore...\n\n20) ajo: Trade Y2 R2 Alpha\n\n21) SilentTitan: Build Y2 Sky\n\tajo: Blecch. Well played... but possibly overextended. We're both horribly vulnerable right now, by my heuristics.\n\n22) ajo: Build R1 Alpha\nCatastrophe Alpha Red\n\tSilentTitan: hey... this is a clean game you keep your heuristics out of it.\r\n\n\tajo: Heh. Well, I guess I have to do this now...\n\n23) SilentTitan: Build G2 Silenttitan\n\n24) ajo: Build G2 Alpha\n\n25) SilentTitan: Sacrifice Y2 Sky\nDiscover G1 Silenttitan B3 Tempworld\nMove G1 Tempworld Alpha\nCatastrophe Alpha Green\n\n26) ajo: Build R1 Ajo\n\n27) SilentTitan: Build Y2 Sky\n\tSilentTitan: This is the most unusual game I've played of this yet.\n\n28) ajo: Build R1 Ajo\n\n29) SilentTitan: Build Y2 Sky\n\n30) ajo: Discover R1 Ajo G1 Alpha\n\n31) SilentTitan: Discover Y2 Sky B1 Ground\n\n32) ajo: Build R2 Ajo\n\n33) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Ground\n\n34) ajo: Discover R2 Ajo B1 Beta\n\n35) SilentTitan: Trade Y3 G3 Ground\n\n36) ajo: Trade R2 G2 Beta\n\tajo: I think you're about to win. Starting without blue is definitely a hard way to start. :P\n\n37) SilentTitan: Build Y3 Ground\n\n38) ajo: Move R1 Ajo Beta\n\tSilentTitan: I have never won starting without blue. It is a real challenge.\n\n39) SilentTitan: Trade Y3 R3 Ground\n\n40) ajo: Build R2 Beta\n\n41) SilentTitan: Sacrifice G3 Ground\nBuild R2 Ground\nBuild R2 Ground\nBuild Y3 Ground\n\n\tajo: That's checkmate, I believe. Well played. I won't try that again. ;)\n\tSilentTitan: The weird part of this is... when we started I looked at your starting position and was shocked at what a poor position I was in, because you were going to have a 2nd level piece in a couple of moves. I thought to myself ... I don't have a standard start against this setup, why haven't I seen this before. now we know.\n\tajo: Those were my original thoughts, too. ;) I think your "trade g3 r3" on move 2 was the killer; if you hadn't done that, it might have worked a lot better for me.\n\tajo: One thing I have noticed in real-world games with the no-blue setup is: If you start without blue, your plan for the first few moves must *NOT* be "build, build, move to a blue star, trade for blue, sacrifice to get blue at home". Getting blue is hard, and wastes too much time (at least 5 moves), compared to your opponent who's working on building up his fleet. I think if you start without blue, you need to have a plan for the first few moves like my "get an r2 really early, then build a bunch of 2s" and even then, it clearly backfires quite a lot. :)\n\nHomeworlds Online (SDG# 20401)\nStarted: 2011.7.20, Ended: 2011.8.12\nParticipants: sageinquisitor (S), SirRuthvenMurgatroyd (N)\nWinner: SirRuthvenMurgatroyd\n\n1) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n2) sageinquisitor: Homeworld G3 B2 Y3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) sageinquisitor: Build Y1 Sageinquisitor\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n6) sageinquisitor: Trade Y1 R1 Sageinquisitor\n\n7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n8) sageinquisitor: Build R1 Sageinquisitor\n\n9) SirRuthvenMurgatroyd: Build G1 Sol\n\tsageinquisitor: I'm heading over to someone's house, I will be back in about 10 minutes if you want to keep playing at this pace.\n\n10) sageinquisitor: Discover R1 Sageinquisitor Y1 Darthto\n\n11) SirRuthvenMurgatroyd: Discover G1 Sol Y1 Yellow\n\n12) sageinquisitor: Move R1 Sageinquisitor Yellow\n\n13) SirRuthvenMurgatroyd: Move G1 Yellow Sageinquisitor\n\n\nHomeworlds Online (SDG# 20378)\nVariants: "Hard time"\nStarted: 2011.7.20, Ended: 2011.8.1\nParticipants: SilentTitan (S), sageinquisitor (N)\nWinner: SilentTitan\n\n1) sageinquisitor: Homeworld G3 B2 Y3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) sageinquisitor: Build Y1 Sageinquisitor\n\tSilentTitan: Howdy.....\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) sageinquisitor: Trade Y1 R1 Sageinquisitor\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) sageinquisitor: Build R1 Sageinquisitor\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) sageinquisitor: Build R2 Sageinquisitor\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) sageinquisitor: Discover R2 Sageinquisitor Y1 Grendel\n\n12) SilentTitan: Build Y2 Silenttitan\n\tsageinquisitor: howdy to u too\n\tsageinquisitor: howdy to u too\n\tsageinquisitor: I'm heading over to someone's house, I will be back in about 10 minutes if you want to keep playing at this pace.\n\n13) sageinquisitor: Build R2 Sageinquisitor\n\tSilentTitan: sure... although it will be off and on because I'm setting up to export a bunch of virtual servers. \n\tsageinquisitor: sounds good\n\n14) SilentTitan: Discover Y2 Silenttitan R3 Gol\n\n15) sageinquisitor: Build Y2 Sageinquisitor\n\n16) SilentTitan: Discover Y1 Silenttitan R3 Ley\n\n17) sageinquisitor: Discover R2 Sageinquisitor G1 Helloworldlol\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Gol\nBuild Y3 Ley\nBuild Y3 Silenttitan\n\n19) sageinquisitor: Move Y2 Sageinquisitor Helloworldlol\n\n20) SilentTitan: Build G1 Silenttitan\n\n21) sageinquisitor: Build R2 Helloworldlol\n\n22) SilentTitan: Discover Y2 Gol B1 Sand\n\n\nHomeworlds Online (SDG# 20411)\nStarted: 2011.7.22, Ended: 2011.9.19\nParticipants: daselva (S), SirRuthvenMurgatroyd (N)\nWinner: daselva\n\n1) SirRuthvenMurgatroyd: Homeworld B2 Y3 G3\n\n2) daselva: Homeworld B1 R2 G3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) daselva: Build G1 Daselva\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n8) daselva: Build Y1 Daselva\n\n9) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Betelgeuse\n\n10) daselva: Trade Y1 R1 Daselva\n\n11) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n12) daselva: Build Y1 Daselva\n\n13) SirRuthvenMurgatroyd: Build G1 Betelgeuse\n\n14) daselva: Build G2 Daselva\n\n15) SirRuthvenMurgatroyd: Move G1 Betelgeuse Daselva\n\n16) daselva: Discover G2 Daselva R3 S2\n\n17) SirRuthvenMurgatroyd: Sacrifice R3 Sirruthvenmurgatroyd\nAttack Y1S Daselva\nAttack Y1S Daselva\nAttack R1S Daselva\n\n18) daselva: Attack Y1 Daselva\n\n19) SirRuthvenMurgatroyd: Attack Y1S Daselva\n\n20) daselva: Attack R1 Daselva\n\n21) SirRuthvenMurgatroyd: Attack R1S Daselva\n\n22) daselva: Attack G1 Daselva\n\n23) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n24) daselva: Trade G1 Y1 Daselva\n\n25) SirRuthvenMurgatroyd: Attack Y1S Daselva\n\n26) daselva: Attack Y1 Daselva\n\n27) SirRuthvenMurgatroyd: Trade Y1 B1 Daselva\n\n28) daselva: Attack Y1 Daselva\n\n29) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd\nBuild B1 Daselva\nBuild B2 Daselva\nCatastrophe Daselva B\n\n30) daselva: Attack R1 Daselva\n\n31) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n32) daselva: Sacrifice Y1 Daselva\nDiscover G2 S2 Y1 S3\n\n33) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd\n\n34) daselva: Move G2 S3 Sirruthvenmurgatroyd\n\n35) SirRuthvenMurgatroyd: Build B1 Sirruthvenmurgatroyd\n\n36) daselva: Trade G2 R2 Sirruthvenmurgatroyd\n\n37) SirRuthvenMurgatroyd: Trade B1 R1 Sirruthvenmurgatroyd\n\n38) daselva: Attack R1 Sirruthvenmurgatroyd\n\n39) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n40) daselva: Attack G1 Sirruthvenmurgatroyd\n\n41) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n42) daselva: Build G2 Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd G\n\n43) SirRuthvenMurgatroyd: Sacrifice G1 Betelgeuse\nBuild B1 Sirruthvenmurgatroyd\n\n44) daselva: Sacrifice R2 Sirruthvenmurgatroyd\nAttack B1 Sirruthvenmurgatroyd\nAttack B1 Sirruthvenmurgatroyd\n\n\tdaselva: thank you for playing\n\nHomeworlds Online (SDG# 20444)\nVariants: "Hard time"\nStarted: 2011.7.25, Ended: 2011.7.27\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\tzoltar: Hi!\n\tts52: Hi! Have a good game.\n\n3) zoltar: Build G1 Zoltar\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ts52: Trade G1 R1 Ts52\n\n7) zoltar: Build Y1 Zoltar\n\n8) ts52: Build R1 Ts52\n\n9) zoltar: Discover Y1 Zoltar G3 Greenbelt\n\n10) ts52: Build R2 Ts52\n\n11) zoltar: Build Y1 Greenbelt\n\n12) ts52: Discover R2 Ts52 B1 Gonzo\n\n13) zoltar: Build Y2 Greenbelt\n\n14) ts52: Build G1 Ts52\n\n15) zoltar: Build Y2 Zoltar\n\n16) ts52: Move G1 Ts52 Gonzo\n\n17) zoltar: Discover Y2 Greenbelt B1 Blueberry\n\n18) ts52: Build R2 Ts52\n\n19) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenbelt\nBuild Y3 Blueberry\n\n20) ts52: Discover R2 Ts52 G1 Robin\n\n21) zoltar: Trade Y3 G3 Zoltar\n\n22) ts52: Sacrifice G3 Ts52\nBuild R2 Robin\nBuild R3 Ts52\nBuild R3 Gonzo\n\tzoltar: Yellow Alert!\n\tts52: Wow, nice move\n\n23) zoltar: Trade Y3 R3 Blueberry\n\n24) ts52: Trade R3 Y3 Gonzo\n\tzoltar: Thanks!\n\n25) zoltar: Move R3 Blueberry Ts52\nCatastrophe Ts52 R\n\n\tzoltar: Good game! You left yourself vulnerable to the 'bluebird' checkmate.\n\tts52: Whoops. Should've seen that coming....\r\nThanks for the game.\n\nHomeworlds Online (SDG# 20441)\nStarted: 2011.7.26, Ended: 2011.8.4\nParticipants: wmreed (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wmreed: Homeworld B3 G1 Y3\n\tts52: Have a good game.\n\n3) ts52: Build G1 Ts52\n\twmreed: Thank you. You too!\n\n4) wmreed: B Y1 Wmreed\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) wmreed: T Y1 R1 Wmreed\n\n7) ts52: Build G1 Ts52\n\n8) wmreed: B Y1 Wmreed\n\n9) ts52: Build G2 Grover\n\n10) wmreed: T Y1 B1 Wmreed\n\n11) ts52: Build G2 Grover\n\n12) wmreed: B Y1 Wmreed\n\n13) ts52: Trade G2 R2 Grover\n\n14) wmreed: T Y3 G3 Wmreed\n\n15) ts52: Build G2 Grover\n\n16) wmreed: B R1 Wmreed\n\n17) ts52: Trade G2 Y2 Grover\n\n18) wmreed: D R1 Wmreed G2 Xander\n\n19) ts52: Move R2 Grover Xander\n\n20) wmreed: B Y1 Wmreed\n\n21) ts52: Attack R1 Xander\n\n22) wmreed: D Y1 Wmreed B2 Willow\n\n23) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n24) wmreed: B Y2 Wmreed\n\n25) ts52: Move G2 Grover Willow\n\n26) wmreed: D Y1 Willow B1 Cordelia\n\n27) ts52: Trade G3 Y3 Grover\n\n28) wmreed: M G3 Wmreed Willow\n\n29) ts52: Trade G3 R3 Ts52\n\n30) wmreed: S Y1 Wmreed\nM G3 Willow Wmreed\n\n31) ts52: Sacrifice G2 Ts52\nBuild G2 Willow\nBuild G3 Ts52\n\n32) wmreed: T G3 B3 Wmreed\n\n33) ts52: Sacrifice Y2 Grover\nMove G2 Willow Wmreed\nMove G2 Willow Wmreed\n\n\twmreed: Why waste time. I won't come back from the catastrophe. Well played!\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 20455)\nVariants: "Hard time"\nStarted: 2011.7.27, Ended: 2011.8.7\nParticipants: AdamBadura (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) AdamBadura: Homeworld G1 B2 Y3\n\tzoltar: Hi, gl, & hf!\n\n3) zoltar: Build G1 Zoltar\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) zoltar: Build G1 Zoltar\n\n6) AdamBadura: Build Y1 Adambadura\n\n7) zoltar: Trade G3 Y3 Zoltar\n\n8) AdamBadura: Discover Y1 Adambadura G3 Shipyard\n\n9) zoltar: Build G2 Zoltar\n\n10) AdamBadura: Build Y1 Adambadura\n\n11) zoltar: Trade G2 R2 Zoltar\n\n12) AdamBadura: Build Y2 Shipyard\n\n13) zoltar: Move R2 Zoltar Shipyard\n\n14) AdamBadura: Sacrifice Y1 Shipyard\nDiscover Y2 Shipyard G2 Runaways\n\n15) zoltar: Build G2 Zoltar\n\n16) AdamBadura: Trade Y1 R1 Adambadura\n\n17) zoltar: Trade G2 Y2 Zoltar\n\n18) AdamBadura: Build R1 Adambadura\n\n19) zoltar: Move Y2 Zoltar Shipyard\n\n20) AdamBadura: Discover R1 Adambadura Y3 Highway\n\n21) zoltar: Build R2 Shipyard\n\n22) AdamBadura: Build R2 Adambadura\n\n23) zoltar: Discover R2 Shipyard G2 Greenland\n\n24) AdamBadura: Trade R1 B1 Adambadura\n\n25) zoltar: Build G2 Zoltar\n\n26) AdamBadura: Trade Y3 G3 Adambadura\n\n27) zoltar: Discover G2 Zoltar R3 Redgiant\n\n28) AdamBadura: Discover B1 Adambadura G3 Drydocks\n\n29) zoltar: Discover G1 Zoltar Y3 Mellowyellow\n\n30) AdamBadura: Sacrifice G3 Adambadura\nBuild R1 Highway\nBuild R3 Highway\nBuild R3 Adambadura\n\n31) zoltar: Sacrifice G2 Redgiant\nBuild G2 Mellowyellow\nBuild G3 Zoltar\n\tAdamBadura: Sorry for the delay. The situation got complicated so I needed more time to think yet I was also more distracted by other things. It is still looking bad for me... :(\n\n32) AdamBadura: Sacrifice Y2 Runaways\nMove R1 Highway Zoltar\nMove R1 Highway Zoltar\n\n33) zoltar: Sacrifice G3 Zoltar\nBuild G2 Mellowyellow\nBuild R3 Shipyard\nBuild G3 Zoltar\n\n34) AdamBadura: Move R3 Highway Zoltar\n\tzoltar: Very strange game: I've never played with a 'short' symmetrical system before, at least not since I was first learning the game.\n\n35) zoltar: Sacrifice Y3 Zoltar\nMove R2 Shipyard Adambadura\nMove R3 Shipyard Adambadura\nMove G2 Mellowyellow Adambadura\nCatastrophe Zoltar R\nCatastrophe Adambadura R\n\tAdamBadura: I didn't intent to play that way. It is usially worse for the second player. It was my mistake.\n\n\tzoltar: Ah, ok. I thought you had some clever opening trap ready to spring. I'm terrible at openings, but am at my best with endgame tactics, if I survive that far into the game!\n\nHomeworlds Online (SDG# 20491)\nVariants: "Hard time"\nStarted: 2011.8.2, Ended: 2011.8.26\nParticipants: mneme (S), SilentTitan (N)\nWinner: mneme\n\n1) SilentTitan: Homeworld R2 B1 G3\n\tSilentTitan: congrats on your medallion.\n\n2) mneme: Homeworld G3 R1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) mneme: Build B1 Mneme\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) mneme: Build B1 Mneme\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) mneme: Trade B3 Y3 Mneme\n\tmneme: Thanks!\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) mneme: Build B2 Mneme\n\n11) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n12) mneme: Discover B2 Mneme G2 Pattern\n\n13) SilentTitan: Build Y1 Silenttitan\n\n14) mneme: Build B2 Pattern\n\n15) SilentTitan: Discover Y1 Silenttitan B3 Pluto\n\n16) mneme: Build B2 Mneme\n\n17) SilentTitan: Discover G1 Silenttitan B3 Sink\n\n18) mneme: Trade B2 Y2 Pattern\n\n19) SilentTitan: Build Y2 Silenttitan\n\n20) mneme: Discover B2 Pattern Y3 Jacinth\n\n21) SilentTitan: Trade Y2 B2 Silenttitan\n\n22) mneme: Trade B2 G2 Jacinth\n\n23) SilentTitan: Discover B2 Silenttitan G3 Egg\n\n24) mneme: Trade B2 R2 Mneme\n\n25) SilentTitan: Build Y2 Silenttitan\n\n26) mneme: Move Y2 Pattern Sink\n\n27) SilentTitan: Trade Y2 R2 Silenttitan\n\n28) mneme: Build R1 Mneme\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Pluto\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n30) mneme: Sacrifice R1 Mneme\nAttack G1 Sink\n\n31) SilentTitan: Sacrifice B2 Egg\nTrade Y1 R1 Sol\nTrade Y2 G2 Sol\n\n32) mneme: Discover R2 Mneme G2 Tracer\n\n33) SilentTitan: Trade Y1 R1 Pluto\n\n34) mneme: Build R3 Tracer\n\n35) SilentTitan: Sacrifice G2 Sol\nBuild R3 Pluto\nBuild R3 Sol\n\n36) mneme: Sacrifice B1 Mneme\nTrade R3 G3 Tracer\n\n37) SilentTitan: Trade R3 G3 Pluto\n\n38) mneme: Build R3 Tracer\n\n39) SilentTitan: Sacrifice Y2 Pluto\nMove R1 Pluto Tracer\nMove R1 Sol Tracer\nCatastrophe Tracer Red\n\n40) mneme: Build G1 Sink\n\n41) SilentTitan: Trade Y1 G1 Silenttitan\n\n42) mneme: Trade G1 R1 Sink\n\n43) SilentTitan: Build G1 Pluto\n\n44) mneme: Build R1 Sink\n\n45) SilentTitan: Trade R2 Y2 Silenttitan\n\n46) mneme: Build Y1 Sink\n\n47) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Sol Tracer\nMove R3 Tracer Sink\n\n48) mneme: Build R2 Sink\nCatastrophe Sink R\n\n49) SilentTitan: Trade G1 Y1 Pluto\n\n50) mneme: Trade Y2 R2 Sink\n\n51) SilentTitan: Sacrifice G3 Pluto\nBuild Y1 Pluto\nBuild Y2 Pluto\nBuild Y2 Silenttitan\n\n52) mneme: Build Y2 Sink\n\tmneme: I think that's your first (only) blunder this game.\n\tSilentTitan: yup... comes from trying to rush the turn... I had company coming in from South Carolina for a week. That's what the delay was all about. Sorry about that\r\n\n\tSilentTitan: yup... comes from trying to rush the turn... I had company coming in from South Carolina for a week. That's what the delay was all about. Sorry about that\r\n\n\tSilentTitan: lol... obviously I had already hit submit.\n\n53) SilentTitan: Trade Y2 R2 Pluto\n\n54) mneme: Sacrifice Y3 Mneme\nMove Y2 Sink Silenttitan\nMove Y1 Sink Silenttitan\nMove G2 Jacinth Silenttitan\nCatastrophe Silenttitan Y\n\n\tmneme: gg\n\tSilentTitan: oh.. yup... thanks for the challenge.\n\tmneme: Thanks! except for the (few) blunders, you played a solid game!\n\nHomeworlds Online (SDG# 20414)\nVariants: "No undo, Hard time"\nStarted: 2011.8.3, Ended: 2011.8.7\nParticipants: thejackdiaz (S), sageinquisitor (N)\nWinner: thejackdiaz\n\n\nHomeworlds Online (SDG# 20547)\nVariants: "Hard time"\nStarted: 2011.8.8, Ended: 2011.8.11\nParticipants: ajo (S), zoltar (N)\nWinner: ajo\n\n\tzoltar: I didn't know I was in a game, but I was just informed that I resigned!\n\nHomeworlds Online (SDG# 20572)\nVariants: "Hard time"\nStarted: 2011.8.10, Ended: 2011.8.17\nParticipants: Danner (S), Subhan64 (N)\nWinner: Danner\n\n1) Subhan64: Homeworld Y1 B2 G3\n\tDanner: Hi! Have a nice game!\n\n2) Danner: Homeworld B1 R2 G3\n\n3) Subhan64: Build G1 Subhan64\n\n4) Danner: Build G1 Danner\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) Danner: Trade G1 Y1 Danner\n\n7) Subhan64: Build Y2 Subhan64\n\n8) Danner: Build Y2 Danner\n\n9) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n10) Danner: Discover Y1 Danner B3 Gamall\n\n11) Subhan64: Build G1 Subhan64\n\tSubhan64: This was very nearly a very short game!\n\tDanner: :)\n\n12) Danner: Build G1 Danner\n\n13) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n14) Danner: Discover G1 Danner Y3 Garrett\n\n15) Subhan64: Discover G3 Subhan64 Y3 Tweety\n\n16) Danner: Build G1 Danner\n\n17) Subhan64: Build Y2 Kermit\n\n18) Danner: Sacrifice G1 Garrett\nBuild Y3 Gamall\n\n19) Subhan64: Build G1 Bigbird\n\n20) Danner: Sacrifice Y2 Danner\nMove Y1 Gamall Subhan64\nMove Y3 Gamall Subhan64\nCatastrophe Subhan64 Y\n\n\tSubhan64: good game, thanks!\r\n\n\tDanner: thank you, too :)\n\nHomeworlds Online (SDG# 20577)\nVariants: "Hard time"\nStarted: 2011.8.11, Ended: 2011.8.31\nParticipants: zoltar (S), goulo (N)\nWinner: zoltar\n\n1) goulo: Homeworld B1 R2 G3\n\n2) zoltar: Homeworld R1 B3 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) zoltar: Build G1 Zoltar\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) goulo: Build G1 Goulo\n\n8) zoltar: Build G1 Zoltar\n\n9) goulo: Trade G1 R1 Goulo\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) goulo: Build R2 Goulo\n\n12) zoltar: Build R2 Zoltar\n\n13) goulo: Discover R1 Goulo Y3 Citronego\n\n14) zoltar: Trade R2 Y2 Zoltar\n\n15) goulo: Build G1 Goulo\n\n16) zoltar: Discover R1 Zoltar G2 Greenarrow\n\n17) goulo: Move G1 Goulo Citronego\n\n18) zoltar: Move Y1 Zoltar Greenarrow\n\n19) goulo: Build G1 Goulo\n\n20) zoltar: Build Y1 Zoltar\n\n21) goulo: Build Y2 Goulo\n\n22) zoltar: Discover Y2 Zoltar B2 Bluebeetle\n\n23) goulo: Discover Y1 Goulo G3 Smeraldego\n\n24) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Greenarrow\nBuild Y3 Bluebeetle\nBuild Y3 Zoltar\n\n25) goulo: Discover R1 Citronego G2 Smeraldo\n\tgoulo: Ouch!\n\n26) zoltar: Trade Y2 G2 Bluebeetle\n\n27) goulo: Build Y2 Smeraldego\n\n28) zoltar: Move Y3 Bluebeetle Citronego\n\n29) goulo: Move Y1 Smeraldego Bluebeetle\n\n30) zoltar: Trade Y1 G1 Zoltar\n\n31) goulo: Sacrifice Y2 Goulo\nMove Y1 Bluebeetle Citronego\nMove G1 Citronego Greenarrow\n\n32) zoltar: Build G3 Bluebeetle\n\n33) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y1 Citronego\nBuild Y2 Smeraldego\nCatastrophe Citronego Y\n\n34) zoltar: Attack G1 Greenarrow\n\n35) goulo: Discover Y2 Smeraldego R2 Rubeno\n\n36) zoltar: Build R3 Greenarrow\n\n37) goulo: Build R3 Smeraldo\n\n38) zoltar: Move R3 Greenarrow Smeraldego\n\n39) goulo: Sacrifice Y2 Smeraldego\nMove R2 Goulo Smeraldego\nDiscover R2 Smeraldego Y2 Citrono\n\n40) zoltar: Sacrifice G3 Bluebeetle\nBuild R3 Greenarrow\nBuild G3 Bluebeetle\nBuild Y1 Zoltar\n\n41) goulo: Sacrifice Y2 Rubeno\nMove R3 Smeraldo Zoltar\nMove R1 Smeraldo Zoltar\n\n42) zoltar: Attack R3 Zoltar\n\n43) goulo: Sacrifice G1 Goulo\nBuild R2 Zoltar\nCatastrophe Zoltar R\n\n44) zoltar: Sacrifice G3 Bluebeetle\nBuild G1 Zoltar\nBuild G2 Zoltar\nBuild G3 Bluebeetle\n\n45) goulo: Discover R2 Citrono Y3 Citronego\n\n46) zoltar: Sacrifice Y3 Zoltar\nMove G1 Zoltar Goulo\nMove G2 Zoltar Goulo\nMove G1 Zoltar Goulo\nCatastrophe Goulo G\n\tzoltar: good game.\n\tgoulo: congrats - thanks for the game!\n\n\nHomeworlds Online (SDG# 20586)\nVariants: "Hard time"\nStarted: 2011.8.12, Ended: 2011.9.7\nParticipants: ajo (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) ajo: Homeworld Y3 B2 G3\n\tTwoShort: Howdy\n\n3) TwoShort: Build G1 Twoshort\n\tajo: Howdy.\n\n4) ajo: Build G1 Ajo\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) ajo: Trade G1 R1 Ajo\n\n7) TwoShort: Build Y1 Twoshort\n\n8) ajo: Build R1 Ajo\n\n9) TwoShort: Build Y1 Twoshort\n\n10) ajo: Build R2 Ajo\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) ajo: Discover R2 Ajo B1 Alpha\n\n13) TwoShort: Build Y2 Twoshort\n\n14) ajo: Sacrifice G3 Ajo\nBuild R2 Alpha\nBuild R2 Alpha\nBuild R3 Ajo\n\n15) TwoShort: Discover Y1 Twoshort Y2 Yellonia\n\n16) ajo: Trade R3 G3 Ajo\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Yellonia\nBuild Y3 Twoshort\nBuild Y3 Grogar\n\n18) ajo: Build R3 Ajo\n\n19) TwoShort: Discover Y2 Yellonia G1 Greenland\n\n20) ajo: Move R3 Ajo Greenland\n\n21) TwoShort: Discover Y2 Greenland B3 Bluestar\n\n22) ajo: Build R3 Ajo\n\n23) TwoShort: Trade Y1 G1 Twoshort\n\n24) ajo: Trade R1 Y1 Ajo\n\n25) TwoShort: Trade Y3 R3 Twoshort\n\n26) ajo: Sacrifice Y1 Ajo\nMove R2 Alpha Bluestar\n\n27) TwoShort: Sacrifice Y2 Bluestar\nMove Y3 Grogar Alpha\nDiscover Y1 Grogar Y3 Yolonda\n\n28) ajo: Trade R2 Y2 Bluestar\n\n29) TwoShort: Discover Y1 Yolonda Y1 Yoyodyne\n\n30) ajo: Move Y2 Bluestar Greenland\n\n31) TwoShort: Build Y3 Twoshort\n\n32) ajo: Build R1 Greenland\n\n33) TwoShort: Sacrifice R3 Twoshort\nAttack R2 Alpha\nAttack R2 Alpha\nPass\n\n34) ajo: Trade R3 B3 Ajo\n\n35) TwoShort: Build G1 Twoshort\n\n36) ajo: Build G2 Ajo\n\tajo: For some reason, "trade r3 b3" felt like a really weird move. Like, "waaait, that can't be right, can it?" :) But I think it's what I want to do.\n\n37) TwoShort: Trade G1 B1 Twoshort\n\n38) ajo: Move B3 Ajo Yoyodyne\n\n39) TwoShort: Discover Y1 Yoyodyne B2 Bluonia\n\n40) ajo: Move B3 Yoyodyne Yellonia\n\n41) TwoShort: Discover Y1 Yellonia G1 Grogar\n\n42) ajo: Sacrifice G2 Ajo\nBuild B1 Yellonia\nBuild G2 Ajo\n\n43) TwoShort: Build G2 Twoshort\n\n44) ajo: Move B3 Yellonia Grogar\n\n45) TwoShort: Discover Y1 Grogar R2 Rover\n\n46) ajo: Build R3 Ajo\n\n47) TwoShort: Move R2 Alpha Yellonia\n\n48) ajo: Sacrifice Y2 Greenland\nMove R3 Greenland Bluonia\nMove B3 Grogar Yellonia\n\tajo: Well, thanks. :)\n\n49) TwoShort: Sacrifice Y3 Alpha\nDiscover G2 Twoshort Y2 Yolonda\nDiscover R2 Yellonia Y3 Yonderboy\nDiscover Y1 Bluonia Y1 Yoyodyne\n\n50) ajo: Move B3 Yellonia Twoshort\n\n51) TwoShort: Attack B3 Twoshort\n\tajo: Ah, I see. You're trying to overwhelm my circuits with complexity. ;)\n\n52) ajo: Move B1 Yellonia Twoshort\nCatastrophe Twoshort Blue\n\n53) TwoShort: Sacrifice G2 Yolonda\nBuild Y2 Rover\nBuild Y2 Twoshort\n\tajo: And it's working. ;p\n\n54) ajo: Move G2 Ajo Yoyodyne\n\n55) TwoShort: Move Y1 Yoyodyne Yonderboy\n\n56) ajo: Build R3 Greenland\n\n57) TwoShort: Trade R2 B2 Alpha\n\n58) ajo: Trade R3 G3 Bluonia\n\n59) TwoShort: Sacrifice B2 Alpha\nTrade Y2 G2 Rover\nTrade G1 B1 Twoshort\n\n60) ajo: Build G1 Bluonia\n\n61) TwoShort: Build Y2 Rover\n\n62) ajo: Trade G1 B1 Bluonia\n\n63) TwoShort: Sacrifice G2 Rover\nBuild B1 Twoshort\nBuild B2 Twoshort\n\n64) ajo: Sacrifice B1 Bluonia\nTrade R3 B3 Greenland\n\n65) TwoShort: Move B1 Twoshort Ajo\n\n66) ajo: Move R1 Ajo Twoshort\n\tajo: You're making this very difficult... ;)\n\n67) TwoShort: Attack R1 Twoshort\n\tTwoShort: And here I've been thinking that you were making this very difficult for the last 8 turns or so :) (Before that I just thought I was losing) A yellow monopoly ought to be a walk in the park, and only now am I confident enough to comment on it without fear of jinxing myself :) I'm still worried I'm missing some way you can stop me, but I don't see it, so...\n\n68) ajo: Move G2 Yoyodyne Rover\n\tajo: Ah, yes, it does kind of look like I just lost, doesn't it? Phooey. :p I saw the yellow monopoly, but I thought I still had a few turns' breathing room. Besides, I was irrationally stuck on the idea that you'd do yellow first and break your yellow monopoly.\n\n69) TwoShort: Attack G2 Rover\n\n70) ajo: Move R3 Ajo Twoshort\n\n71) TwoShort: Sacrifice R1 Twoshort\nAttack R3 Twoshort\n\n\tajo: I had an escape if you made the wrong move there, but you didn't make the wrong move. Good game. :)\n\nHomeworlds Online (SDG# 20599)\nVariants: "Hard time"\nStarted: 2011.8.14, Ended: 2011.8.25\nParticipants: BloodRumpus (S), kingsamj (N)\nWinner: BloodRumpus\n\n1) kingsamj: Homeworld G3 B2 Y3\n\n2) BloodRumpus: Homeworld Y1 B2 G3\n\n3) kingsamj: Build Y1 Kingsamj\n\n4) BloodRumpus: Build G1 Bloodrumpus\n\n5) kingsamj: Trade Y1 G1 Kingsamj\n\n6) BloodRumpus: Trade G3 Y3 Bloodrumpus\n\n7) kingsamj: Discover G1 Kingsamj B1 Avalon\n\n8) BloodRumpus: Build Y1 Bloodrumpus\n\n9) kingsamj: Build Y1 Kingsamj\n\n10) BloodRumpus: Trade Y1 R1 Bloodrumpus\n\n11) kingsamj: Build Y1 Kingsamj\n\n12) BloodRumpus: Build G1 Bloodrumpus\n\n13) kingsamj: Trade Y1 R1 Kingsamj\n\n14) BloodRumpus: Discover G1 Bloodrumpus G3 Sarkovy\n\n15) kingsamj: Build G2 Avalon\n\n16) BloodRumpus: Build G2 Bloodrumpus\n\n17) kingsamj: Trade G2 R2 Avalon\n\n18) BloodRumpus: Build G2 Bloodrumpus\n\n19) kingsamj: Build G2 Avalon\n\n20) BloodRumpus: Sacrifice G2 Bloodrumpus\nBuild G2 Sarkovy\nBuild G3 Bloodrumpus\n\n21) kingsamj: Build Y1 Kingsamj\n\n22) BloodRumpus: Trade G1 B1 Bloodrumpus\n\n23) kingsamj: Build G1 Avalon\n\n24) BloodRumpus: Sacrifice B1 Bloodrumpus\nTrade G2 Y2 Sarkovy\n\n25) kingsamj: Trade G2 Y2 Avalon\n\n26) BloodRumpus: Sacrifice Y3 Bloodrumpus\nMove Y2 Sarkovy Avalon\nMove Y2 Avalon Kingsamj\nDiscover G1 Sarkovy B1 Rigel\nCatastrophe Kingsamj Y\n\n27) kingsamj: Move Y2 Avalon Kingsamj\n\n28) BloodRumpus: Build G2 Rigel\n\n29) kingsamj: Trade G1 Y1 Avalon\n\n30) BloodRumpus: Trade G1 Y1 Rigel\n\n31) kingsamj: Build Y2 Kingsamj\n\n32) BloodRumpus: Discover G2 Bloodrumpus Y3 Sirius\n\n33) kingsamj: Move R2 Avalon Sirius\n\n34) BloodRumpus: Sacrifice R1 Bloodrumpus\nAttack R2 Sirius\n\n35) kingsamj: Move Y2 Kingsamj Avalon\n\n36) BloodRumpus: Move G2 Sirius Avalon\n\n37) kingsamj: Sacrifice R1 Kingsamj\nAttack G2 Avalon\n\n38) BloodRumpus: M G2 Rigel Kingsamj\n\n39) kingsamj: Trade Y2 R2 Kingsamj\n\n40) BloodRumpus: Sacrifice R2 Sirius\nAttack R2 Kingsamj\nPass\n\n\nHomeworlds Online (SDG# 20608)\nVariants: "Hard time"\nStarted: 2011.8.17, Ended: 2011.10.23\nParticipants: fnord (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) fnord: Homeworld Y1 B3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) fnord: Build G1 Fnord\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) fnord: Discover G1 Fnord B2 Eris\n\n7) Remneb: Build G1 Remneb\n\n8) fnord: Build G1 Eris\n\n9) Remneb: Trade G1 R1 Remneb\n\n10) fnord: Trade G1 R1 Eris\n\n11) Remneb: Discover R1 Remneb Y3 Sirius\n\n12) fnord: Build G1 Fnord\n\n13) Remneb: Build Y1 Remneb\n\n14) fnord: Build R2 Eris\n\n15) Remneb: Build Y2 Remneb\n\n16) fnord: Trade R2 Y2 Eris\n\n17) Remneb: Move Y2 Remneb Sirius\n\n18) fnord: Build R2 Eris\n\n19) Remneb: Build G1 Remneb\n\n20) fnord: Build G2 Fnord\n\n21) Remneb: Move G1 Remneb Sirius\n\n22) fnord: Trade G2 R2 Fnord\n\n23) Remneb: Build G2 Remneb\n\n24) fnord: Discover G1 Fnord Y2 Discord\n\n25) Remneb: Build Y3 Remneb\n\n26) fnord: Build Y3 Eris\n\n27) Remneb: Sacrifice Y3 Remneb\nMove Y2 Sirius Discord\nMove G1 Sirius Discord\nMove R1 Sirius Discord\n\n28) fnord: Discover G1 Discord B3 Chao\n\n29) Remneb: Build G2 Discord\n\n30) fnord: Build G2 Chao\n\n31) Remneb: Sacrifice Y2 Discord\nMove G1 Discord Chao\nMove G2 Discord Chao\nCatastrophe Chao G\n\n32) fnord: Sacrifice Y2 Eris\nMove R2 Eris Fnord\nMove R2 Fnord Discord\n\n33) Remneb: Discover R1 Discord Y3 Zarkon\n\n34) fnord: Build Y2 Eris\n\n35) Remneb: Discover Y1 Remneb G3 Altar\n\n\tfnord: My apologies for abandoning this game. I was about to be laid off, and focussed on work and finding a new job, and forgot about the site until recently.\n\tRemneb: No problem.\n\nHomeworlds Online (SDG# 20429)\nStarted: 2011.8.18, Ended: 2011.9.10\nParticipants: SirRuthvenMurgatroyd (S), lorgar (N)\nWinner: SirRuthvenMurgatroyd\n\n1) lorgar: Homeworld B2 Y3 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) lorgar: Discover G1 Lorgar B1 Celeron\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n7) lorgar: Build G1 Celeron\n\n8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n9) lorgar: Trade G1 R1 Celeron\n\n10) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n\nHomeworlds Online (SDG# 20507)\nVariants: "No undo"\nStarted: 2011.8.18, Ended: 2011.10.14\nParticipants: ajo (S), lorgar (N)\nWinner: ajo\n\n1) lorgar: Homeworld B3 G1 R3\n\n2) ajo: Homeworld Y2 B3 G3\n\n3) lorgar: Build R1 Lorgar\n\n4) ajo: Build G1 Ajo\n\n5) lorgar: Trade R1 G1 Lorgar\n\n6) ajo: Build G2 Ajo\n\n7) lorgar: Build R1 Lorgar\n\n8) ajo: Trade G2 R2 Ajo\n\n9) lorgar: Trade R1 Y1 Lorgar\n\n10) ajo: Discover G1 Ajo B1 Alpha\n\n11) lorgar: Discover G1 Lorgar B2 Barrabas\n\n12) ajo: Build G2 Ajo\n\n13) lorgar: Build G2 Barrabas\n\n14) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\n\n15) lorgar: Build G3 Barrabas\n\n16) ajo: Discover G2 Ajo B1 Beta\n\n17) lorgar: Trade G2 R2 Barrabas\n\n18) ajo: Sacrifice G3 Alpha\nBuild G2 Alpha\nBuild G3 Beta\nBuild R1 Ajo\n\n19) lorgar: Build R1 Barrabas\n\n20) ajo: Trade G3 Y3 Beta\n\n21) lorgar: Sacrifice Y1 Lorgar\nDiscover G1 Barrabas G3 Safe\n\n22) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y1 Beta\nBuild Y1 Beta\n\n23) lorgar: Trade R1 Y1 Barrabas\n\n24) ajo: Sacrifice Y1 Beta\nDiscover G1 Alpha B2 Gamma\n\n25) lorgar: Build Y1 Barrabas\n\n26) ajo: Move Y3 Beta Safe\n\n27) lorgar: Build R1 Barrabas\n\tajo: I just noticed your time has been up for 3 days. I'll give you another 3 days from this message, and then if you're still MIA, I'll "Force Surrender".\n\tajo: I don't think either of us is clearly in a winning or losing position yet, btw.\n\n28) ajo: Sacrifice G2 Alpha\nBuild G2 Gamma\nBuild Y2 Beta\n\n29) lorgar: Move Y1 Barrabas Safe\n\n30) ajo: Sacrifice R2 Ajo\nAttack Y1 Safe\nAttack G1 Safe\n\n31) lorgar: Move G3 Barrabas Beta\n\n32) ajo: Sacrifice Y2 Beta\nMove G2 Beta Gamma\nMove G1 Gamma Lorgar\n\n33) lorgar: Sacrifice R1 Barrabas\nAttack Y1S Beta\n\n34) ajo: Sacrifice Y1 Safe\nMove G2 Gamma Lorgar\n\n35) lorgar: Build Y1 Beta\n\n36) ajo: Sacrifice G2 Gamma\nBuild G2 Lorgar\nBuild Y2 Safe\nCatastrophe Lorgar Green\n\n37) lorgar: Trade Y1 G1 Beta\n\n38) ajo: Discover Y2 Safe B1 Midway\n\n39) lorgar: Discover R2 Barrabas B1 Macteanimo\n\n40) ajo: Trade G2 B2 Ajo\n\n41) lorgar: Trade R2 B2 Macteanimo\n\n42) ajo: Discover B2 Ajo G1 Factor\n\n43) lorgar: Move Y1 Barrabas Beta\n\n44) ajo: Build G2 Ajo\n\n45) lorgar: Trade B2 G2 Macteanimo\n\n46) ajo: Sacrifice G2 Ajo\nBuild B2 Factor\nBuild B2 Factor\n\n47) lorgar: Move G1 Beta Safe\n\tajo: I believe that's checkmate. Good game!\n\n48) ajo: Sacrifice Y3 Safe\nMove B2 Factor Lorgar\nMove B2 Factor Lorgar\nMove B2 Factor Lorgar\nCatastrophe Lorgar Blue\n\tlorgar: nice game, thanks. rematch?\n\n\nHomeworlds Online (SDG# 20412)\nVariants: "Hard time"\nStarted: 2011.8.18, Ended: 2011.9.5\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 B2 G3\n\n2) lorgar: Homeworld G3 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build B1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Trade B1 G1 Lorgar\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Discover G1 Lorgar B2 Barrabas\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) lorgar: Build B1 Lorgar\n\n11) SilentTitan: Discover Y1 Silenttitan G1 Ville\n\n12) lorgar: Build G1 Barrabas\n\n13) SilentTitan: Discover Y1 Silenttitan B1 Sky\n\n14) lorgar: Discover B1 Lorgar G2 Safe\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sky\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n\nHomeworlds Online (SDG# 20624)\nVariants: "Hard time"\nStarted: 2011.8.18, Ended: 2011.9.15\nParticipants: AdamBadura (S), Subhan64 (N)\nWinner: AdamBadura\n\n1) Subhan64: Homeworld B1 R2 G3\n\n2) AdamBadura: Homeworld G3 B1 Y3\n\n3) Subhan64: Build G1 Subhan64\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) AdamBadura: Trade Y1 R1 Adambadura\n\n7) Subhan64: Build Y1 Subhan64\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) Subhan64: Build Y2 Subhan64\n\n10) AdamBadura: Build Y2 Adambadura\n\n11) Subhan64: Discover Y1 Subhan64 Y3 Bigbird\n\n12) AdamBadura: Discover Y2 Adambadura G2 Shipyard\n\n13) Subhan64: Build G1 Subhan64\n\n14) AdamBadura: Build Y2 Shipyard\n\n15) Subhan64: Discover Y1 Subhan64 Y3 Tweety\n\n16) AdamBadura: Build R1 Adambadura\n\n17) Subhan64: Discover Y1 Bigbird G2 Kermit\n\n18) AdamBadura: Discover Y2 Shipyard Y3 Highway\n\n19) Subhan64: Build G1 Subhan64\n\n20) AdamBadura: Trade R1 G1 Adambadura\n\n21) Subhan64: Move G1 Subhan64 Tweety\n\n22) AdamBadura: Build R1 Adambadura\n\n23) Subhan64: Move Y1 Tweety Kermit\n\n24) AdamBadura: Move R1 Adambadura Kermit\n\n25) Subhan64: Sacrifice G1 Tweety\nBuild Y3 Subhan64\n\n26) AdamBadura: Attack Y1 Kermit\n\n27) Subhan64: Move Y1 Kermit Highway\n\n28) AdamBadura: Build R1 Kermit\n\n29) Subhan64: Trade Y2 R2 Subhan64\n\n30) AdamBadura: Build Y2 Kermit\n\n31) Subhan64: Discover Y1 Highway G2 Moss\n\n32) AdamBadura: Move R1 Kermit Highway\n\n33) Subhan64: Discover G1 Subhan64 B3 Blueberry\n\n34) AdamBadura: Build R2 Kermit\n\n35) Subhan64: Move Y3 Subhan64 Highway\n\n36) AdamBadura: Sacrifice Y3 Adambadura\nMove R1 Highway Subhan64\nMove R1 Kermit Highway\nMove R1 Highway Subhan64\nCatastrophe Subhan64 R\n\n37) Subhan64: Move Y3 Highway Moss\n\n38) AdamBadura: Build Y3 Adambadura\n\n\tSubhan64: gg, thanks!\r\n\n\nHomeworlds Online (SDG# 20510)\nStarted: 2011.8.19, Ended: 2011.8.24\nParticipants: inundator (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) inundator: Homeworld B3 Y1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tinundator: You too! Let the carnage begin!\n\n4) inundator: Build G1 Inundator\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) inundator: Build G1 Inundator\n\n7) ts52: Discover Y1 Ts52 G1 Kermit\n\n8) inundator: Discover G1 Inundator B2 Misspiggy\n\n9) ts52: Build G2 Ts52\n\n10) inundator: Build G2 Misspiggy\n\n11) ts52: Build Y1 Kermit\n\n12) inundator: Sacrifice G3 Inundator\nBuild G2 Misspiggy\nBuild G3 Inundator\nBuild G3 Inundator\n\n13) ts52: Build Y2 Kermit\n\n14) inundator: Trade G2 R2 Misspiggy\n\n15) ts52: Build G2 Ts52\n\n16) inundator: Trade G2 Y2 Misspiggy\n\n17) ts52: Trade G2 R2 Ts52\n\n18) inundator: Move Y2 Misspiggy Kermit\nCatastrophe Kermit Yellow\n\n19) ts52: Build R1 Ts52\n\n20) inundator: Move G3 Inundator Misspiggy\n\n21) ts52: Discover G2 Ts52 B1 Gonzo\n\n22) inundator: Trade G1 Y1 Misspiggy\n\n23) ts52: Build G1 Gonzo\n\n24) inundator: Build Y1 Misspiggy\n\n25) ts52: Trade G2 Y2 Gonzo\n\n26) inundator: Discover Y1 Misspiggy G1 Beaker\n\n27) ts52: Build G2 Ts52\n\n28) inundator: Build Y2 Beaker\n\n29) ts52: Build G2 Gonzo\n\n30) inundator: Trade G3 Y3 Misspiggy\n\n31) ts52: Build Y2 Gonzo\n\n32) inundator: Discover Y1 Misspiggy R1 Animal\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y3 Gonzo\n\n34) inundator: Sacrifice Y3 Misspiggy\nMove Y1 Animal Ts52\nMove Y2 Beaker Ts52\nMove Y1 Beaker Ts52\nCatastrophe Ts52 Yellow\n\n35) ts52: Sacrifice Y2 Gonzo\nMove G2 Ts52 Inundator\nMove G3 Ts52 Inundator\nCatastrophe Inundator Green\n\tts52: Thanks for the game.\n\n\nHomeworlds Online (SDG# 20623)\nVariants: "Hard time"\nStarted: 2011.8.19, Ended: 2011.9.1\nParticipants: SilentTitan (S), guntz1092 (N)\nWinner: SilentTitan\n\n1) guntz1092: Homeworld Y3 G2 R3 *\n\tSilentTitan: You have to set up your Homeworld first.\r\n\n\tguntz1092: idk how T_T first time.......\n\tguntz1092: idk how to submit orders*\n\n2) SilentTitan: Homeworld R2 B1 G3\n\tSilentTitan: ok... really hard to start without blue and green in your homeworld.... do you want to take back the move and start again?\n\n3) guntz1092: Build R1 Guntz1092\n\tguntz1092: nah im fine. im trying different strategies\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) guntz1092: Build R1 Guntz1092\n\n6) SilentTitan: Trade G1 R1 Silenttitan\n\n7) guntz1092: Discover R1 Guntz1092 B1 Barta1\n\n8) SilentTitan: Build R2 Silenttitan\n\n9) guntz1092: Move R1 Guntz1092 Barta1\n\n10) SilentTitan: Trade R1 Y1 Silenttitan\n\n11) guntz1092: Trade R1 Y1 Barta1\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) guntz1092: Trade R1 G1 Barta1\n\n14) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n15) guntz1092: Build Y2 Barta1\n\n16) SilentTitan: Build Y2 Sol\n\n17) guntz1092: Build R1 Guntz1092\n\tguntz1092: how do i sacrifice right?\n\tSilentTitan: Ok. so what ever piece you are sacrificing. think of that color as a technology you can give to any system and the pip count and the number of usage you have avaliable. so a G3 would give you the ability to build anywhere 3 times. however you would still have the constraint of only being able to build ships of the color that already exist in the system. \n\tSilentTitan: ..... and the pip count as the number of usage.....\n\tguntz1092: this is my move;\r\nsacrifice Y2 barta1 move Y1 barta1 sol move G1 barta1 sol\r\nbut it says im typing it wrong...\n\n18) SilentTitan: Discover Y1 Sol B1 Sameasy\n\n19) guntz1092: Discover Y2 Barta1 R3 Foie\n\tSilentTitan: .... seems like you figured the command out.... then decided it was not the best move\r\n\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Sameasy\nBuild Y3 Silenttitan\n\tguntz1092: haha yeah lol\n\n21) guntz1092: Build G1 Barta1\n\n22) SilentTitan: Sacrifice Y2 Sol\nMove Y3 Sameasy Guntz1092\nMove Y1 Sameasy Guntz1092\n\n23) guntz1092: Attack Y3 Guntz1092\n\n24) SilentTitan: Build Y2 Guntz1092\nCatastrophe Guntz1092 Yellow\n\n25) guntz1092: Trade G1 R1 Barta1\n\n26) SilentTitan: Trade Y1 G1 Silenttitan\n\n27) guntz1092: Move R1 Barta1 Foie\n\n28) SilentTitan: Build Y1 Silenttitan\n\n29) guntz1092: Sacrifice Y1 Barta1\nDiscover R1 Guntz1092 B3 Rabarta\n\n30) SilentTitan: Discover R2 Silenttitan G3 Grass\n\tguntz1092: if i have a size 2 on one star and u have 2 size 1s on the same star, would I be able to capture the two size 1s?\n\tguntz1092: if i sac an r2*\n\tSilentTitan: yes...exactly\n\tSilentTitan: even if you only had a 1-pip and I had (2) 1-pips you would be able to sack the R2 and do an attack against each one of my ships. \n\n31) guntz1092: Sacrifice Y2 Foie\nMove R1 Foie Silenttitan\nMove R1 Rabarta Silenttitan\n\n32) SilentTitan: Sacrifice R2 Grass\nAttack R1 Silenttitan North\nAttack R1 Silenttitan North\n\n33) guntz1092: Trade G1 Y1 Barta1\n\n34) SilentTitan: Sacrifice Y2 Sol\nDiscover R1 Silenttitan Y3 Sole\nDiscover R1 Silenttitan G3 Soul\n\n35) guntz1092: Move Y1 Barta1 Guntz1092\n\n36) SilentTitan: Move G1 Silenttitan Sole\n\n37) guntz1092: Build Y1 Guntz1092\n\n38) SilentTitan: Build G1 Sole\n\n39) guntz1092: Build R1 Guntz1092\n\n40) SilentTitan: Build G1 Sole\n\n41) guntz1092: Move R3 Guntz1092 Sole\n\n42) SilentTitan: Sacrifice Y3 Silenttitan\nMove G1 Sole Guntz1092\nMove G1 Sole Guntz1092\nMove G1 Sole Guntz1092\nCatastrophe Guntz1092 Green\n\n\nHomeworlds Online (SDG# 20636)\nVariants: "Hard time"\nStarted: 2011.8.19, Ended: 2011.9.6\nParticipants: SilentTitan (S), guntz1092 (N)\nWinner: SilentTitan\n\n1) guntz1092: Homeworld Y3 B2 G3\n\n2) SilentTitan: Homeworld R2 B1 G3\n\n3) guntz1092: Build G1 Guntz1092\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) guntz1092: Discover G1 Guntz1092 Y1 Zonde1\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) guntz1092: Build G1 Zonde1\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) guntz1092: Build G1 Guntz1092\n\n10) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n11) guntz1092: Trade G1 B1 Guntz1092\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) guntz1092: Move B1 Guntz1092 Zonde1\n\n14) SilentTitan: Discover Y2 Silenttitan B3 Circle\n\n15) guntz1092: Move G1 Zonde1 Circle\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Circle\nBuild Y3 Silenttitan\n\n17) guntz1092: Build G1 Guntz1092\n\n18) SilentTitan: Build Y3 Sol\n\n19) guntz1092: Build G2 Guntz1092\n\n20) SilentTitan: Trade Y2 G2 Circle\n\n21) guntz1092: Trade G2 Y2 Guntz1092\n\n22) SilentTitan: Sacrifice Y2 Sol\nMove Y1 Sol Zonde1\nMove Y1 Zonde1 Guntz1092\n\n23) guntz1092: Trade Y2 R2 Guntz1092\n\n24) SilentTitan: Trade G2 R2 Circle\n\n25) guntz1092: Attack Y1 Guntz1092\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) guntz1092: Build G2 Zonde1\n\tSilentTitan: wow... I must have been tired last night.... i missed completely that I was going to sack that g2 and cat your home yellow\r\n\n\n28) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Circle\nBuild Y3 Silenttitan\n\tguntz1092: lol i noticed that xD\n\n29) guntz1092: Sacrifice G3 Guntz1092\nBuild G2 Guntz1092\nBuild G2 Zonde1\nBuild G3 Circle\n\n30) SilentTitan: Sacrifice Y3 Sol\nDiscover Y2 Circle R1 Mars\nMove R2 Circle Mars\nMove Y2 Circle Zonde1\n\n31) guntz1092: Sacrifice Y1 Guntz1092\nMove G2 Zonde1 Circle\n\n32) SilentTitan: Sacrifice R2 Mars\nAttack G2 Zonde1 North\nAttack G1 Zonde1 North\n\n33) guntz1092: Trade G3 Y3 Circle\n\n34) SilentTitan: Trade Y3 G3 Silenttitan\n\n35) guntz1092: Move G1 Guntz1092 Zonde1\n\n36) SilentTitan: Sacrifice G2 Zonde1\nBuild Y1 Sol\nBuild Y3 Silenttitan\n\n37) guntz1092: Build G2 Guntz1092\n\n38) SilentTitan: Trade G3 R3 Silenttitan\n\n39) guntz1092: Build G3 Zonde1\n\n40) SilentTitan: Build G3 Zonde1\nCatastrophe Zonde1 Green\n\n41) guntz1092: Discover G2 Circle R2 Gifoie\n\n42) SilentTitan: Sacrifice Y2 Sol\nMove R3 Silenttitan Sol\nMove R3 Sol Zonde1\n\n43) guntz1092: Build Y2 Circle\n\n44) SilentTitan: Trade Y3 G3 Silenttitan\n\n45) guntz1092: Move Y2 Circle Silenttitan\n\n46) SilentTitan: Build Y3 Silenttitan\n\n47) guntz1092: Move Y3 Circle Silenttitan\n\n48) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y2 Mars Guntz1092\nMove Y2 Zonde1 Guntz1092\nMove Y1 Sol Silenttitan\nCatastrophe Silenttitan Yellow\n\n49) guntz1092: Attack Y2 Guntz1092\n\n50) SilentTitan: Sacrifice R3 Zonde1\nAttack R2 Guntz1092 North\nAttack G2 Guntz1092 North\nAttack G2 Guntz1092 Notrh\n\n51) guntz1092: Move B1 Zonde1 Guntz1092\n\n52) SilentTitan: Sacrifice R2 Guntz1092\nAttack Y2 Guntz1092 North\nAttack B1 Guntz1092 North\n\n\tSilentTitan: Thank you\n\nHomeworlds Online (SDG# 20637)\nVariants: "Hard time"\nStarted: 2011.8.19, Ended: 2011.8.24\nParticipants: SilentTitan (S), caru (N)\nWinner: SilentTitan\n\n1) caru: Homeworld Y2 B1 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) caru: Build G1 Caru\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) caru: Discover G1 Caru R3 Alpha\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) caru: Build G1 Caru\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) caru: Build G1 Caru\n\n10) SilentTitan: Build G2 Silenttitan\n\n11) caru: Trade G3 R3 Caru\n\n12) SilentTitan: Discover G2 Silenttitan Y1 Sol\n\n13) caru: Build G2 Alpha\n\n14) SilentTitan: Discover Y1 Silenttitan B1 Dogstar\n\n15) caru: Build G2 Caru\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild G3 Sol\nBuild G3 Sol\nBuild Y2 Dogstar\n\tcaru: HEY SilentTitan, are you interested in playing a live session of Homeworlds on VASSAL?\n\tSilentTitan: could be ... what's VASSAL?\n\n17) caru: Trade G2 Y2 Caru\n\tcaru: VASSALengine is a java program which allows you to play online (real-time or email) all sort of board/dice/card games for which a module has been written (there are hundreds). It happens that a guy wrote a PiecePack module which includes IceHouse pyramids, so you can place pyramids on a virtual board (empty, chess or whatever) and rotate/move/stack/nest them as you like. Of course this board is shared with the other players.\r\nI tested it alone and find it not complicated at all, should be fun, and you can virtually play all icehouse/piecepack games. Please let me know if you are interested. And if you need more info to get started quickly, just let me know that too ;)\r\n1) download vassal for your platform\r\n2) download piecepack module latest version\r\n3) open it from file menu (select "show all files" to see it)\r\n4) select "new offline game" from the wizard and start test moving pyramids around\r\n\r\nhttp://www.vassalengine.org\r\nhttp://www.vassalengine.org/wiki/Module:Piecepack\n\n18) SilentTitan: Sacrifice G3 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Dogstar\n\n19) caru: Discover G1 Caru G3 Beta\n\tSilentTitan: Ok.. thanks .... I will check that out and let you know\r\n\n\tcaru: cool :)\r\n\r\ni made some confusion though... let me fix it\r\n1) download vassal for your platform\r\n2) download piecepack module latest version\r\n2a) open vassal\r\n3) open the module from file menu (select "show all files" to see it)\r\n4) select "new offline game" from the wizard and start test moving pyramids around (you have to select "icehouse" in the toolbar to see pyramids and available colors)\r\n\r\nhope it's clearer now\n\n20) SilentTitan: Trade Y3 B3 Silenttitan\n\n21) caru: Discover G1 Caru Y3 Gamma\n\n22) SilentTitan: Sacrifice Y3 Dogstar\nDiscover Y1 Dogstar B3 Bark\nMove Y2 Dogstar Gamma\nMove G2 Sol Silenttitan\n\n23) caru: Discover Y2 Caru Y3 Theta\n\n24) SilentTitan: Trade Y1 R1 Silenttitan\n\n25) caru: Sacrifice G1 Alpha\nBuild R1 Caru\n\n26) SilentTitan: Sacrifice G3 Sol\nBuild Y1 Bark\nBuild Y1 Bark\nBuild B1 Silenttitan\n\n27) caru: Sacrifice G2 Alpha\nBuild R1 Caru\nBuild R2 Caru\n\n28) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Bark Caru\nMove Y1 Bark Caru\nMove Y1 Bark Caru\nCatastrophe Caru Yellow\n\n29) caru: Sacrifice Y2 Theta\nMove R1 Caru Silenttitan\nMove R1 Caru Silenttitan\nCatastrophe Silenttitan R\n\tSilentTitan: ok.. so that's an error you can't recover from ... because you already undid your move. However you should know that any one can call Catastrophe once there is four of any one color in a system. \n\tSilentTitan: I'm going to go ahead and do the move like I had planned ... so you can see some stuph you wouldn't normally see in one of your early games\r\n\n\n30) SilentTitan: Trade B3 R3 Silenttitan\n\tcaru: Thanks, yep, I saw it too late... that's why I undid and get some friends home. Was there anything better I could have done?\n\tcaru: Ah wait, now I remember why I thought that move in the first place... :)\n\n31) caru: Trade R2 G2 Caru\n\tcaru: And yes, this is my first game, so I only managed to plan the trap after you sacrificed your big green ship to get the two yellow ones. That's probably why I then immediately managed to forgot how the trap was supposed to work... :)\n\n32) SilentTitan: Build B1 Silenttitan\n\n\tcaru: gg SilentTitan!\n\nHomeworlds Online (SDG# 20638)\nVariants: "No undo, Hard time"\nStarted: 2011.8.19, Ended: 2011.8.21\nParticipants: guntz1092 (S), thejackdiaz (N)\nWinner: thejackdiaz\n\n1) thejackdiaz: Homeworld G3 B1 Y3\n\n2) guntz1092: Homeworld Y3 G2 R3 *\n\n3) thejackdiaz: Build Y1 Thejackdiaz\n\n4) guntz1092: Build R1 Guntz1092\n\n5) thejackdiaz: Trade Y1 R1 Thejackdiaz\n\n6) guntz1092: Build R1 Guntz1092\n\n7) thejackdiaz: Build R2 Thejackdiaz\n\n8) guntz1092: Discover R1 Guntz1092 B1 Domingo7\n\n9) thejackdiaz: Trade R1 B1 Thejackdiaz\n\n10) guntz1092: Trade R1 G1 Domingo7\n\n11) thejackdiaz: Build B2 Thejackdiaz\n\n12) guntz1092: Build G1 Domingo7\n\n13) thejackdiaz: Trade B2 Y2 Thejackdiaz\n\n14) guntz1092: Build G1 Domingo7\n\n15) thejackdiaz: Discover Y2 Thejackdiaz G2 Alpha\n\n16) guntz1092: Build G2 Domingo7\n\n17) thejackdiaz: Move B1 Thejackdiaz Alpha\nCatastrophe Domingo7 Green\n\n18) guntz1092: Discover R1 Guntz1092 B1 Barta1\n\n19) thejackdiaz: Build B2 Alpha\n\n20) guntz1092: Trade R1 G1 Barta1\n\n21) thejackdiaz: Trade B2 G2 Alpha\n\n22) guntz1092: Build G1 Barta1\n\n23) thejackdiaz: Discover G2 Alpha Y1 Beta\n\n24) guntz1092: Trade G1 Y1 Barta1\n\n25) thejackdiaz: Build B2 Alpha\n\n26) guntz1092: Build Y1 Barta1\n\n27) thejackdiaz: Build G1 Beta\n\n28) guntz1092: Move Y1 Barta1 Guntz1092\n\n29) thejackdiaz: Trade B2 Y2 Alpha\n\n30) guntz1092: Build R1 Guntz1092\n\n31) thejackdiaz: Build G1 Beta\n\n32) guntz1092: Discover Y1 Barta1 R2 Gifoie\n\n33) thejackdiaz: Sacrifice G2 Beta\nBuild Y2 Alpha\nBuild Y3 Thejackdiaz\n\n34) guntz1092: Build G2 Barta1\n\n35) thejackdiaz: Build G3 Beta\n\n36) guntz1092: Move R3 Guntz1092 Beta\n\n37) thejackdiaz: Sacrifice R2 Thejackdiaz\nAttack R3 Beta\nPass\n\n38) guntz1092: Trade G1 R1 Barta1\n\n39) thejackdiaz: Move R3 Beta Guntz1092\n\n40) guntz1092: Build R1 Guntz1092\n\n41) thejackdiaz: Attack Y1 Guntz1092\n\n42) guntz1092: Build R2 Guntz1092 Catastrophe Guntz1092 R\n\n43) thejackdiaz: Pass\nCatastrophe Guntz1092 Red\n\n\nHomeworlds Online (SDG# 20584)\nVariants: "Hard time"\nStarted: 2011.8.21, Ended: 2011.9.21\nParticipants: caru (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld R1 B2 G3\n\tcaru: HEY Jesse, maybe are you also interested in playing a live session of Homeworlds on VASSAL? \n\tJesse: Perhaps. I'm not familiar with it.\n\n2) caru: Homeworld Y3 B2 G3\n\tcaru: Great... I've posted some info about it to another player here http://superdupergames.org/main.html?page=play_homeworlds&num=20637\n\n3) Jesse: Build G1 Jesse\n\n4) caru: Build G1 Caru\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) caru: Build G1 Caru\n\n7) Jesse: Build G1 Jesse\n\n8) caru: Trade G1 Y1 Caru\n\n9) Jesse: Build Y1 Jesse\n\n10) caru: Build Y2 Caru\n\n11) Jesse: Build Y2 Jesse\n\n12) caru: Discover Y1 Caru G1 Freedom\n\n13) Jesse: Trade Y1 R1 Jesse\n\n14) caru: Build G2 Caru\n\n15) Jesse: Discover R1 Jesse G3 Goober\n\n16) caru: Discover G1 Caru Y1 Mizar\n\n17) Jesse: Move Y1 Jesse Goober\n\n18) caru: Sacrifice G3 Caru\nBuild G2 Caru\nBuild G2 Mizar\nBuild G3 Caru\n\n19) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y2 Jesse\nBuild Y3 Goober\n\n20) caru: Trade G2 R2 Caru\n\n21) Jesse: Build Y3 Jesse\n\n\nHomeworlds Online (SDG# 20622)\nStarted: 2011.8.21, Ended: 2011.10.4\nParticipants: SirRuthvenMurgatroyd (S), caru (N)\nWinner: SirRuthvenMurgatroyd\n\n1) caru: Homeworld Y1 B2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y3 B2 G3\n\n3) caru: Build G1 Caru\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) caru: Discover G1 Caru R3 Alpha\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\tcaru: HEY SirRuthvenMurgatroyd, maybe are you also interested in playing a live session of Homeworlds on VASSAL? \n\n7) caru: Build G1 Caru\n\n8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n9) caru: Sacrifice G3 Caru\nBuild G2 Alpha\nBuild G2 Caru\nBuild G3 Caru\n\n10) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd\n\n11) caru: Trade G2 Y2 Caru\n\n12) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n13) caru: Discover G1 Caru Y3 Beta\n\n14) SirRuthvenMurgatroyd: Build G2 Sol\n\n15) caru: Build G3 Caru\n\n16) SirRuthvenMurgatroyd: Trade G2 R2 Sirruthvenmurgatroyd\n\n17) caru: Build G2 Beta\n\n18) SirRuthvenMurgatroyd: Discover G3 Sirruthvenmurgatroyd Y1 Gamma\n\n19) caru: Build Y2 Caru\n\n20) SirRuthvenMurgatroyd: Sacrifice G2 Sol\nBuild Y2 Sirruthvenmurgatroyd\nBuild G2 Sol\n\n21) caru: Trade Y2 B2 Caru\n\n22) SirRuthvenMurgatroyd: Discover G3 Gamma B3 Delta\n\n23) caru: Move Y2 Caru Alpha\n\n24) SirRuthvenMurgatroyd: Sacrifice G2 Sol\nBuild G2 Sol\nBuild R1 Sirruthvenmurgatroyd\n\n\nHomeworlds Online (SDG# 20645)\nVariants: "No undo, Hard time"\nStarted: 2011.8.22, Ended: 2011.8.30\nParticipants: guntz1092 (S), thejackdiaz (N)\nWinner: thejackdiaz\n\n1) thejackdiaz: Homeworld B2 Y1 G3\n\n2) guntz1092: Homeworld R3 B2 G3\n\tguntz1092: it wont let me make a home star\n\tguntz1092: it says "There are no 3B pieces left in the stash to take."\n\n3) thejackdiaz: Build G1 Thejackdiaz\n\n4) guntz1092: Build G1 Guntz1092\n\n5) thejackdiaz: Trade G1 R1 Thejackdiaz\n\n6) guntz1092: Build G1 Guntz1092\n\tguntz1092: idk how to sacrifice right...this is from another game:\r\nsacrifice Y2 barta1 move Y1 barta1 sol move G1 barta1 sol \r\nbarta1 and sol being stars\n\n7) thejackdiaz: Build G1 Thejackdiaz\n\n8) guntz1092: Trade G1 Y1 Guntz1092\n\n9) thejackdiaz: Discover G1 Thejackdiaz Y3 Alpha\n\n10) guntz1092: Discover G1 Guntz1092 Y1 Zonde\n\n11) thejackdiaz: Build G1 Alpha\n\n12) guntz1092: Build G2 Zonde\n\n13) thejackdiaz: Move G1 Alpha Thejackdiaz\n\n14) guntz1092: Build Y2 Guntz1092\n\n15) thejackdiaz: Trade G1 B1 Thejackdiaz\n\n16) guntz1092: Build Y2 Guntz1092\n\n17) thejackdiaz: Build B1 Thejackdiaz\n\n18) guntz1092: Discover Y2 Guntz1092 R1 Foie\n\n19) thejackdiaz: Move B1 Thejackdiaz Alpha\n\n20) guntz1092: Trade Y2 R2 Guntz1092\n\n21) thejackdiaz: Build B1 Alpha\n\n22) guntz1092: Build Y2 Guntz1092\n\n23) thejackdiaz: Discover B1 Alpha G1 Beta\n\n24) guntz1092: Move G2 Zonde Alpha\n\n25) thejackdiaz: Sacrifice G3 Thejackdiaz\nBuild B2 Beta\nBuild B3 Alpha\nBuild B3 Thejackdiaz\n\n26) guntz1092: Sacrifice R2 Guntz1092\nAttack G1 Alpha\nAttack B1 Alpha\n\n27) thejackdiaz: Trade B3 G3 Thejackdiaz\n\n28) guntz1092: Move B1 Alpha Beta\n\n29) thejackdiaz: Trade B2 R2 Beta\n\n30) guntz1092: Trade B1 R1 Beta\n\n31) thejackdiaz: Attack R1S Beta\n\n32) guntz1092: Trade Y2 R2 Guntz1092\n\n33) thejackdiaz: Sacrifice R1 Beta\nAttack G2 Alpha\n\n34) guntz1092: Sacrifice G3 Guntz1092\nBuild G2 Alpha\nBuild G2 Zonde\nBuild Y2 Foie\n\n35) thejackdiaz: Build G3 Thejackdiaz\n\n36) guntz1092: Sacrifice Y2 Foie\nMove G1 Alpha Thejackdiaz\nMove G2 Alpha Thejackdiaz\nCatastrophe Thejackdiaz Green\n\n37) thejackdiaz: Move B3 Alpha Thejackdiaz\n\n38) guntz1092: Move G2 Zonde Guntz1092\n\n39) thejackdiaz: Trade B3 G3 Thejackdiaz\n\n40) guntz1092: Build G1 Zonde\n\n41) thejackdiaz: Build B1 Thejackdiaz\n\n42) guntz1092: Build G2 Guntz1092\n\n43) thejackdiaz: Build G3 Thejackdiaz\n\n44) guntz1092: Build G3 Guntz1092\n\n45) thejackdiaz: Move B1 Thejackdiaz Alpha\n\n46) guntz1092: Trade G2 B2 Guntz1092\n\n47) thejackdiaz: Sacrifice G3 Thejackdiaz\nBuild B3 Thejackdiaz\nBuild B3 Alpha\nBuild B3 Beta\n\n48) guntz1092: Move B2 Guntz1092 Zonde\n\n49) thejackdiaz: Trade B1 R1 Thejackdiaz\n\n50) guntz1092: Build B1 Zonde\n\n51) thejackdiaz: Move R1 Thejackdiaz Alpha\n\n52) guntz1092: Sacrifice G2 Guntz1092\nBuild Y2 Foie\nBuild G2 Guntz1092\n\n53) thejackdiaz: Sacrifice G3 Thejackdiaz\nBuild R2 Thejackdiaz\nBuild R3 Alpha\nBuild R3 Beta\n\n54) guntz1092: Sacrifice Y2 Foie\nMove B1 Zonde Alpha\nMove B1 Alpha Thejackdiaz\n\n55) thejackdiaz: Trade B3 Y3 Thejackdiaz\n\n56) guntz1092: Move R2 Guntz1092 Zonde\n\n57) thejackdiaz: Move R3 Alpha Zonde\n\n58) guntz1092: Move Y2 Foie Alpha\n\n59) thejackdiaz: Sacrifice R2 Beta\nAttack R2S Zonde\nAttack Y2S Alpha\n\n60) guntz1092: Move Y1 Guntz1092 Zonde\n\n61) thejackdiaz: Sacrifice Y2 Alpha\nMove R3 Beta Guntz1092\nMove B3 Beta Guntz1092\n\n62) guntz1092: Sacrifice G3 Guntz1092\nBuild Y2 Zonde\nBuild Y2 Zonde\nBuild B3 Thejackdiaz\nCatastrophe Zonde Yellow\n\n63) thejackdiaz: Attack G2S Guntz1092\n\n\nHomeworlds Online (SDG# 20649)\nStarted: 2011.8.24, Ended: 2011.11.1\nParticipants: SirRuthvenMurgatroyd (S), inundator (N)\nWinner: SirRuthvenMurgatroyd\n\n1) inundator: Homeworld Y1 B2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld B2 Y3 G3\n\tinundator: Hello and have fun.\n\tSirRuthvenMurgatroyd: Hello. You too!\n\n3) inundator: Build G1 Inundator\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) inundator: Discover G1 Inundator B3 Cthulu\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n7) inundator: Build G1 Inundator\n\n8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n9) inundator: Trade G1 Y1 Inundator\n\n10) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n11) inundator: Build Y2 Inundator\n\n12) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n13) inundator: Discover Y1 Inundator Y3 Yog-sothoth\n\n14) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd\n\n15) inundator: Build Y2 Inundator\n\n16) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Big Yellow\n\n17) inundator: Trade Y2 R2 Inundator\n\n18) SirRuthvenMurgatroyd: Build G1 Big\n\n19) inundator: Move R2 Inundator Big\n\n20) SirRuthvenMurgatroyd: Move G1 Big Inundator\n\n21) inundator: Attack G1 Big\n\n22) SirRuthvenMurgatroyd: Build G2 Inundator\n\n23) inundator: Sacrifice R2 Big\nAttack G2 Inundator\nAttack G1 Inundator\n\n24) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n25) inundator: Sacrifice G3 Inundator\nBuild G2 Big\nBuild G3 Cthulu\nBuild G3 Inundator\n\n26) SirRuthvenMurgatroyd: Discover G3 Sirruthvenmurgatroyd Y1 Yellow\n\n27) inundator: Trade G1 R1 Inundator\n\n28) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd\n\n29) inundator: Sacrifice G3 Inundator\nBuild G1 Big\nBuild G3 Inundator\nBuild R1 Inundator\n\n30) SirRuthvenMurgatroyd: Move R1 Sirruthvenmurgatroyd Yellow\n\n31) inundator: Sacrifice Y2 Inundator\nMove G3 Cthulu Yellow\nMove G3 Yellow Sirruthvenmurgatroyd\n\n32) SirRuthvenMurgatroyd: Build R2 Sirruthvenmurgatroyd\n\n33) inundator: Sacrifice R1 Inundator\nAttack R2 Sirruthvenmurgatroyd\n\n34) SirRuthvenMurgatroyd: Attack R2N Sirruthvenmurgatroyd\n\n35) inundator: Sacrifice G3 Inundator\nBuild G3 Inundator\nBuild R1 Inundator\nBuild Y2 Yog-sothoth\n\n36) SirRuthvenMurgatroyd: Build R2 Yellow\n\n37) inundator: Move R1 Inundator Yog-sothoth\n\n38) SirRuthvenMurgatroyd: Move G3 Yellow Yog-sothoth\n\n39) inundator: Discover R1 Yog-sothoth B1 Yellowking\n\n40) SirRuthvenMurgatroyd: Sacrifice R2 Sirruthvenmurgatroyd\nAttack Y2N Yog-sothoth\nAttack Y1N Yog-sothoth\n\n41) inundator: Sacrifice R1 Yellowking\nAttack R2 Sirruthvenmurgatroyd\n\n42) SirRuthvenMurgatroyd: Sacrifice R1 Yellow\nAttack R2N Sirruthvenmurgatroyd\n\n43) inundator: Discover G2 Big B1 Hastur\n\n44) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n45) inundator: Trade G2 R2 Hastur\n\n46) SirRuthvenMurgatroyd: Build R1 Sirruthvenmurgatroyd\n\n47) inundator: Sacrifice R2 Hastur\nAttack R2 Sirruthvenmurgatroyd\nAttack R1 Sirruthvenmurgatroyd\n\n48) SirRuthvenMurgatroyd: Sacrifice R2 Yellow\nAttack R2N Sirruthvenmurgatroyd\nAttack R1N Sirruthvenmurgatroyd\n\n49) inundator: Trade G1 Y1 Cthulu\n\n50) SirRuthvenMurgatroyd: Build G1 Yog-sothoth\n\n51) inundator: Discover Y1 Cthulu B1 Rats\n\n52) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nMove G3 Yog-sothoth Inundator\nMove G1 Yog-sothoth Inundator\nCatastrophe Inundator G\n\n53) inundator: Move Y1 Rats Yog-sothoth\nCatastrophe Yog-sothoth Yellow\n\n54) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n55) inundator: T G3 B3 Sirruthvenmurgatroyd\n\n56) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n57) inundator: Move G1 Big Inundator\n\n58) SirRuthvenMurgatroyd: Trade G1 B1 Sirruthvenmurgatroyd\n\n59) inundator: Discover B3 Sirruthvenmurgatroyd Y1 Whisperer\n\n60) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd\nBuild B1 Sirruthvenmurgatroyd\nBuild B1 Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd B\n\n61) inundator: Move B3 Whisperer Big\n\n62) SirRuthvenMurgatroyd: Move G2 Sirruthvenmurgatroyd Inundator\n\n63) inundator: Move B3 Big Inundator\n\n64) SirRuthvenMurgatroyd: Sacrifice R2 Sirruthvenmurgatroyd\nAttack R1N Inundator\nAttack G1N Inundator\n\n65) inundator: Build G1 Big\n\n66) SirRuthvenMurgatroyd: Trade G1 B1 Inundator\n\n67) inundator: Trade B3 R3 Inundator\n\n68) SirRuthvenMurgatroyd: Sacrifice G2 Inundator\nBuild R1 Inundator\nBuild R2 Inundator\nCatastrophe Inundator R\n\tinundator: Good game. Thanks.\n\n\nHomeworlds Online (SDG# 20639)\nVariants: "Hard time"\nStarted: 2011.8.24, Ended: 2011.9.13\nParticipants: SilentTitan (S), caru (N)\nWinner: SilentTitan\n\n1) caru: Homeworld Y1 B2 G3\n\tcaru: gg\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) caru: Build G1 Caru\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) caru: Trade G1 Y1 Caru\n\n6) SilentTitan: Trade G3 Y3 Silenttitan\n\n7) caru: Build G1 Caru\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) caru: Discover Y1 Caru G3 Alpha\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) caru: Build Y2 Alpha\n\n12) SilentTitan: Discover Y1 Silenttitan G1 Sun\n\n13) caru: Discover Y1 Alpha G2 Mizar\n\n14) SilentTitan: Discover Y2 Silenttitan B1 Sink\n\n15) caru: Discover G1 Caru Y3 Betelgeuse\n\n16) SilentTitan: Build G2 Silenttitan\n\n17) caru: Build G2 Caru\n\n18) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Silenttitan\nBuild Y3 Sink\n\n19) caru: Sacrifice G3 Caru\nBuild G2 Betelgeuse\nBuild G3 Caru\nBuild G3 Caru\n\n20) SilentTitan: Sacrifice Y3 Silenttitan\nMove G1 Silenttitan Sun\nMove G1 Sun Alpha\nMove G1 Alpha Caru\nCatastrophe Caru Green\n\tcaru: gg!\n\n\nHomeworlds Online (SDG# 20675)\nStarted: 2011.8.24, Ended: 2011.11.22\nParticipants: caru (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\tts52: Have a good game.\n\n2) caru: Homeworld B1 Y2 G3\n\n3) ts52: Build G1 Ts52\n\n4) caru: Build G1 Caru\n\n5) ts52: Trade G1 B1 Ts52\n\n6) caru: Trade G3 B3 Caru\n\n7) ts52: Build B2 Ts52\n\n8) caru: Build B2 Caru\n\n9) ts52: Discover B2 Ts52 G2 Kermit\n\n10) caru: Trade B3 Y3 Caru\n\n11) ts52: Trade B2 Y2 Kermit\n\n12) caru: Build B2 Caru\n\n13) ts52: Move B1 Ts52 Kermit\n\n14) caru: Discover B2 Caru G3 Alpha\n\n15) ts52: Build G1 Ts52\n\n16) caru: Build Y1 Caru\n\n17) ts52: Build Y1 Kermit\n\n18) caru: Trade Y3 G3 Caru\n\n19) ts52: Build Y1 Kermit\n\n20) caru: Build Y2 Caru\n\n21) ts52: Discover Y2 Kermit B3 Gonzo\n\n22) caru: Discover Y1 Caru B3 Pamali\n\n23) ts52: Move Y1 Kermit Gonzo\n\n24) caru: Discover B2 Caru R3 Nali\n\n25) ts52: Build Y3 Kermit\n\n26) caru: Discover Y2 Caru R3 Zazaza\n\n27) ts52: Trade Y3 R3 Kermit\n\n28) caru: Sacrifice G3 Caru\nBuild Y3 Pamali\nBuild Y3 Zazaza\nBuild B2 Alpha\n\n29) ts52: Move R3 Kermit Alpha\n\n30) caru: Sacrifice B2 Nali\nTrade Y3 G3 Zazaza\nTrade Y3 R3 Pamali\n\n31) ts52: Attack B2 Alpha\n\n32) caru: Build Y3 Zazaza\n\n33) ts52: Build Y3 Kermit\n\n34) caru: Sacrifice B2 Alpha\nTrade Y3 B3 Zazaza\nTrade Y2 G2 Zazaza\n\n35) ts52: Move Y1 Kermit Alpha\n\n\nHomeworlds Online (SDG# 20676)\nVariants: "Hard time"\nStarted: 2011.8.24, Ended: 2011.9.6\nParticipants: Aristos (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B1 G3\n\tts52: Have a good game!\n\n2) Aristos: Homeworld G3 B2 Y3\n\n3) ts52: Build G1 Ts52\n\n4) Aristos: Build Y1 Aristos\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\tAristos: You as well.\n\n6) Aristos: Trade Y1 R1 Aristos\n\n7) ts52: Build G1 Ts52\n\n8) Aristos: Build Y1 Aristos\n\n9) ts52: Build G1 Grover\n\n10) Aristos: Trade Y3 G3 Aristos\n\n11) ts52: Build G2 Grover\n\n\nHomeworlds Online (SDG# 20686)\nStarted: 2011.8.25, Ended: 2011.9.13\nParticipants: kingsamj (S), BloodRumpus (N)\nWinner: BloodRumpus\n\n1) BloodRumpus: Homeworld B2 R3 G3\n\n2) kingsamj: Homeworld R3 B2 G3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\n4) kingsamj: Build G1 Kingsamj\n\n5) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n6) kingsamj: Build G1 Kingsamj\n\n7) BloodRumpus: Build Y1 Bloodrumpus\n\n8) kingsamj: Trade G3 Y3 Kingsamj\n\n9) BloodRumpus: Trade Y1 B1 Bloodrumpus\n\n10) kingsamj: Build Y1 Kingsamj\n\n11) BloodRumpus: Build B1 Bloodrumpus\n\n12) kingsamj: Trade G1 B1 Kingsamj\n\n13) BloodRumpus: Discover B1 Bloodrumpus G1 Vulcan\n\n14) kingsamj: Move B1 Kingsamj Vulcan\n\n15) BloodRumpus: Build B2 Vulcan\n\n16) kingsamj: Trade B1 R1 Vulcan\n\n17) BloodRumpus: Trade B2 R2 Vulcan\n\n18) kingsamj: Sacrifice Y1 Kingsamj\nDiscover R1 Vulcan G3 Solara\n\n19) BloodRumpus: Discover B1 Bloodrumpus G1 Praxis\n\n20) kingsamj: Build G2 Kingsamj\n\n21) BloodRumpus: Build G2 Bloodrumpus\n\n22) kingsamj: Build Y1 Kingsamj\n\n23) BloodRumpus: Discover G2 Bloodrumpus Y1 Zanzibar\n\n24) kingsamj: Discover G2 Kingsamj R1 Sienna\n\n25) BloodRumpus: Trade Y1 B1 Bloodrumpus\n\n26) kingsamj: Sacrifice G2 Sienna\nBuild G2 Kingsamj\nBuild R1 Solara\n\n27) BloodRumpus: Sacrifice G3 Bloodrumpus\nBuild B2 Bloodrumpus\nBuild B3 Vulcan\nBuild B3 Praxis\n\n28) kingsamj: Discover G1 Kingsamj Y1 Tundra\n\n29) BloodRumpus: Trade B3 G3 Vulcan\n\n30) kingsamj: Move Y1 Kingsamj Tundra\n\n31) BloodRumpus: Trade B2 Y2 Bloodrumpus\n\n32) kingsamj: Build Y2 Kingsamj\n\n33) BloodRumpus: Sacrifice Y2 Bloodrumpus\nMove B3 Praxis Kingsamj\nMove G3 Vulcan Kingsamj\n\n34) kingsamj: Attack G3 Kingsamj\n\n35) BloodRumpus: Sacrifice R2 Vulcan\nAttack Y3 Kingsamj\nAttack G3 Kingsamj\n\n36) kingsamj: Build G2 Tundra\n\n37) BloodRumpus: Attack G2 Kingsamj\n\n38) kingsamj: Move G2 Tundra Bloodrumpus\n\n39) BloodRumpus: Attack Y2 Kingsamj\n\n\tkingsamj: the way you won this game was totally awesome\n\nHomeworlds Online (SDG# 20667)\nVariants: "Hard time"\nStarted: 2011.8.26, Ended: 2011.10.27\nParticipants: agentofchaos (S), alexcobo (N)\nWinner: agentofchaos\n\n1) alexcobo: Homeworld G3 B2 Y3\n\n2) agentofchaos: H R3 B1 G3\n\talexcobo: Have a good game!\n\n3) alexcobo: Build Y1 Alexcobo\n\tagentofchaos: You too!\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) alexcobo: Build Y1 Alexcobo\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) alexcobo: Discover Y1 Alexcobo G1 Uno\n\n8) agentofchaos: Build Y2 Agentofchaos\n\n9) alexcobo: Build Y2 Uno\n\n10) agentofchaos: Trade Y2 G2 Agentofchaos\n\n11) alexcobo: Build Y2 Uno\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) alexcobo: Trade Y1 B1 Alexcobo\n\n14) agentofchaos: Discover G2 Agentofchaos Y2 Grrindah\n\n15) alexcobo: Sacrifice B1 Alexcobo\nTrade Y2 G2 Uno\n\n16) agentofchaos: Trade G1 R1 Agentofchaos\n\n17) alexcobo: Build G1 Uno\n\n18) agentofchaos: Move G2 Grrindah Uno\nCatastrophe Uno G\n\n19) alexcobo: Build Y1 Alexcobo\n\n20) agentofchaos: B R1 Agentofchaos\n\n21) alexcobo: Build Y1 Alexcobo\n\n22) agentofchaos: Build Y2 Agentofchaos\n\n23) alexcobo: Discover Y1 Alexcobo G1 Uno\n\n24) agentofchaos: Discover Y2 Agentofchaos G2 Wopolsa\n\n25) alexcobo: Build Y2 Uno\n\n26) agentofchaos: Build Y2 Wopolsa\n\n27) alexcobo: Trade Y1 G1 Alexcobo\n\n28) agentofchaos: Move Y2 Wopolsa Uno\n\n29) alexcobo: Discover Y2 Uno R3 Dos\n\n30) agentofchaos: Sacrifice R1 Agentofchaos\nAttack Y1 Uno\n\n31) alexcobo: Build G1 Alexcobo\n\n32) agentofchaos: Build G2 Agentofchaos\n\n33) alexcobo: Trade G1 R1 Alexcobo\n\n34) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y3 Wopolsa\n\n35) alexcobo: Sacrifice G1 Alexcobo\nBuild Y3 Dos\n\n36) agentofchaos: Sacrifice Y2 Uno\nMove Y2 Wopolsa Dos\nMove Y1 Uno Dos\nCatastrophe Dos Y\n\n37) alexcobo: Build R1 Alexcobo\n\n38) agentofchaos: Build R2 Agentofchaos\n\n39) alexcobo: Discover R1 Alexcobo B1 Uno\n\n40) agentofchaos: Discover R2 Agentofchaos Y2 Grrindah\n\n41) alexcobo: Build R2 Alexcobo\n\n42) agentofchaos: Trade R1 B1 Agentofchaos\n\n43) alexcobo: Trade R1 G1 Uno\n\n44) agentofchaos: Move R2 Grrindah Uno\n\n45) alexcobo: Build Y1 Alexcobo\n\n46) agentofchaos: Build Y2 Wopolsa\n\n\nHomeworlds Online (SDG# 20707)\nStarted: 2011.8.29, Ended: 2011.10.6\nParticipants: ts52 (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade G1 B1 Lorgar\n\tts52: Have a good game!\n\tlorgar: thx, sorry for the lag, I was out of the loop for a week (lack of internet access)\n\n6) ts52: Discover G1 Ts52 B2 Grover\n\n7) lorgar: Discover B1 Lorgar G3 Lormec\n\n8) ts52: Build G1 Grover\n\n9) lorgar: Build B2 Lormec\n\n10) ts52: Trade G1 Y1 Grover\n\n11) lorgar: Trade B1 Y1 Lormec\n\n12) ts52: Build G1 Ts52\n\n13) lorgar: Build B1 Lormec\n\n14) ts52: Trade G1 R1 Ts52\n\n15) lorgar: Trade B2 R2 Lormec\n\n16) ts52: Build G1 Ts52\n\n17) lorgar: Build R1 Lormec\n\n18) ts52: Build R1 Ts52\n\n19) lorgar: Move R2 Lormec Grover\n\n20) ts52: Sacrifice Y1 Grover\nDiscover G1 Grover B3 Gonzo\n\n21) lorgar: Build R2 Lormec\n\n22) ts52: Build G1 Gonzo\n\n23) lorgar: Build B2 Lormec\n\n24) ts52: Build G2 Gonzo\n\n25) lorgar: Build G2 Lorgar\n\n26) ts52: Trade G2 Y2 Gonzo\n\n27) lorgar: Discover B2 Lormec R2 Cemrol\n\n28) ts52: Discover R1 Ts52 Y2 Zoe\n\n29) lorgar: Trade R2 G2 Grover\n\n30) ts52: Move G1 Gonzo Zoe\n\n31) lorgar: Move R2 Lormec Zoe\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y1 Gonzo\n\n33) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B2 Cemrol\nBuild B3 Lormec\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Zoe\nBuild R3 Ts52\n\n35) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B3 Cemrol\nBuild R3 Lormec\n\n36) ts52: Sacrifice Y2 Gonzo\nMove R1 Zoe Lormec\nMove R2 Zoe Lormec\nCatastrophe Lormec Red\n\n37) lorgar: Attack G1S Zoe\n\n38) ts52: Move R3 Ts52 Grover\n\n39) lorgar: Sacrifice Y1 Lormec\nMove G2 Grover Ts52\n\n40) ts52: Trade G1 R1 Ts52\n\n41) lorgar: Sacrifice G2 Lorgar\nBuild G1 Ts52\nBuild G2 Ts52\nCatastrophe Ts52 Green\n\n42) ts52: Trade R1 G1 Ts52\n\n43) lorgar: Move R2 Zoe Ts52\n\n44) ts52: Sacrifice Y1 Gonzo\nMove R3 Grover Ts52\n\tts52: Well crap! Well played.\n\n45) lorgar: Sacrifice G1 Zoe\nBuild R1 Ts52\nCatastrophe Ts52 Red\n\n46) ts52: Build G1 Ts52\n\n47) lorgar: Sacrifice B2 Cemrol\nTrade B2 R2 Cemrol\nTrade B1 Y1 Lormec\n\n48) ts52: Build G2 Ts52\n\n49) lorgar: Sacrifice Y1 Lormec\nMove B3 Cemrol Ts52\n\n50) ts52: Trade G2 B2 Ts52\n\n51) lorgar: Trade B3 R3 Ts52\n\n52) ts52: Build G2 Ts52\n\n53) lorgar: Sacrifice R2 Cemrol\nAttack B2S Ts52\nAttack G2S Ts52\n\n54) ts52: Trade G1 R1 Ts52\n\n55) lorgar: Sacrifice R3 Ts52\nAttack R1S Ts52\nAttack G1S Ts52\nPass\n\n\tts52: Well played. Thanks for the game!\n\nHomeworlds Online (SDG# 20681)\nVariants: "Hard time"\nStarted: 2011.9.1, Ended: 2011.9.5\nParticipants: caru (S), daselva (N)\nWinner: daselva\n\n1) daselva: Homeworld B1 R2 G3\n\n2) caru: Homeworld B1 Y3 G3\n\n3) daselva: Build G1 Daselva\n\n\tcaru: strange, i think to remember that all my games were reported to have at least 5 days of time for my turn to end...\n\nHomeworlds Online (SDG# 20777)\nStarted: 2011.9.6, Ended: 2011.11.22\nParticipants: guntz1092 (S), thejackdiaz (N)\nWinner: thejackdiaz\n\n1) thejackdiaz: Homeworld G3 B1 R3\n\n2) guntz1092: Homeworld B3 G2 Y3\n\n3) thejackdiaz: Build R1 Thejackdiaz\n\n4) guntz1092: Build Y1 Guntz1092\n\n5) thejackdiaz: Trade R3 Y3 Thejackdiaz\n\n6) guntz1092: Build Y1 Guntz1092\n\n7) thejackdiaz: Build R1 Thejackdiaz\n\n8) guntz1092: Trade Y1 G1 Guntz1092\n\n9) thejackdiaz: Discover R1 Thejackdiaz B2 Cyril\n\n10) guntz1092: Discover G1 Guntz1092 Y1 Justin\n\n11) thejackdiaz: Build R1 Thejackdiaz\n\n12) guntz1092: Build G1 Justin\n\n13) thejackdiaz: Trade R1 G1 Thejackdiaz\n\n14) guntz1092: Move Y1 Guntz1092 Justin\n\n15) thejackdiaz: Build G2 Thejackdiaz\n\n16) guntz1092: Build G2 Justin\n\n17) thejackdiaz: Move G2 Thejackdiaz Cyril\n\n18) guntz1092: Discover G1 Justin B2 Jack\n\n19) thejackdiaz: Build G3 Cyril\n\n20) guntz1092: Build G3 Jack\n\n21) thejackdiaz: Sacrifice Y3 Thejackdiaz\nDiscover R1 Cyril Y1 Buffalo\nMove G3 Cyril Buffalo\nMove G3 Buffalo Guntz1092\n\n22) guntz1092: Build Y2 Guntz1092\n\n23) thejackdiaz: Sacrifice R1 Buffalo\nAttack Y3S Guntz1092\n\n24) guntz1092: Move G1 Justin Guntz1092\n\n25) thejackdiaz: Trade G3 R3 Guntz1092\n\n26) guntz1092: Sacrifice G2 Justin\nBuild G2 Guntz1092\nBuild Y1 Guntz1092\n\n27) thejackdiaz: Attack Y2 Guntz1092\n\n28) guntz1092: Sacrifice G3 Jack\nBuild G3 Jack\nBuild Y2 Guntz1092\nBuild Y2 Justin\nCatastrophe Guntz1092 Yellow\n\n29) thejackdiaz: Trade R3 G3 Guntz1092\nCatastrophe Guntz1092 Green\n\tthejackdiaz: gg\n\n\nHomeworlds Online (SDG# 20783)\nStarted: 2011.9.11, Ended: 2012.1.11\nParticipants: daselva (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld B3 R1 G3\n\tMandrel: Have a good game.\n\n2) daselva: Homeworld B1 R2 G3\n\n3) Mandrel: Build G1 Mandrel\n\n4) daselva: Build G1 Daselva\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) Mandrel: Build G1 Mandrel\n\n8) daselva: Build G1 Daselva\n\n9) Mandrel: Trade G1 Y1 Mandrel\n\n10) daselva: Trade G3 R3 Daselva\n\n11) Mandrel: B G1 Mandrel\n\n12) daselva: Build Y1 Daselva\n\n13) Mandrel: Build Y2 Mandrel\n\n14) daselva: Build Y2 Daselva\n\n15) Mandrel: Build Y2 Mandrel\n\n16) daselva: Discover Y2 Daselva G3 S1\n\n17) Mandrel: Trade Y1 B1 Mandrel\n\n18) daselva: Trade R3 G3 Daselva\n\n19) Mandrel: D B1 Mandrel G2 Drape\n\n20) daselva: Trade Y1 B1 Daselva\n\n21) Mandrel: B B2 Drape\n\n22) daselva: Move B1 Daselva S1\n\n23) Mandrel: Trade B1 R1 Drape\n\n24) daselva: Build Y1 S1\n\n25) Mandrel: Move Y2 Mandrel Drape\n\n26) daselva: Trade Y2 R2 S1\n\n27) Mandrel: Build Y1 Mandrel\n\n28) daselva: Build Y2 S1\n\n29) Mandrel: Build Y3 Drape\n\n30) daselva: Build Y3 Daselva\n\n31) Mandrel: D Y2 Drape B3 Bunk\n\n32) daselva: Build Y3 S1\n\n33) Mandrel: Sacrifice Y2 Bunk\nMove Y1 Mandrel Drape\nMove Y1 Drape S1\nCatastrophe S1 Y\n\n34) daselva: Move Y3 Daselva S1\n\n35) Mandrel: Build Y1 Drape\n\n36) daselva: Discover R2 S1 G2 S2\n\n37) Mandrel: Discover Y1 Drape B3 Cone\n\n38) daselva: Sacrifice Y1 Daselva\nMove R2 S2 Cone\n\n39) Mandrel: Trade Y3 R3 Drape\n\n40) daselva: Attack Y1 Cone\n\n41) Mandrel: S Y2 Mandrel\nMove B2 Drape Cone\nMove R3 Drape Cone\n\n42) daselva: Move R2 Cone Drape\n\n43) Mandrel: Trade B2 Y2 Cone\n\n44) daselva: Attack R1 Drape\n\n45) Mandrel: Attack Y1S Cone\n\n46) daselva: Trade G3 Y3 Daselva\n\n47) Mandrel: Trade R1 Y1 Mandrel\n\n48) daselva: Build Y1 S1\n\n49) Mandrel: Build Y2 Mandrel\n\n50) daselva: Trade Y1 R1 S1\n\n51) Mandrel: Trade Y1 G1 Cone\n\n52) daselva: Move Y3 S1 Drape\n\n53) Mandrel: Build G2 Cone\n\n54) daselva: Build Y1 Drape\n\n55) Mandrel: Discover Y2 Mandrel B2 Neglect\n\n56) daselva: Sacrifice Y1 Drape\nDiscover R1 S1 Y2 S2\n\n57) Mandrel: Trade G2 B2 Cone\n\n58) daselva: Sacrifice Y3 Drape\nMove R1 S2 Mandrel\nMove R1 Drape Mandrel\nMove R2 Drape Mandrel\nCatastrophe Mandrel R\n\n59) Mandrel: T Y2 R2 Neglect\n\n60) daselva: Build G2 Daselva\n\n61) Mandrel: D G1 Mandrel B2 Third\n\n62) daselva: Sacrifice G2 Daselva\nBuild B1 S1\nBuild G2 Daselva\n\n63) Mandrel: Sacrifice Y2 Cone\nMove R3 Cone Daselva\nMove G3 Mandrel Daselva\n\n64) daselva: Attack R3 Daselva\n\n65) Mandrel: S R2 Neglect\nAttack R3S Daselva\nA Y3S Daselva\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 20839)\nVariants: "Hard time"\nStarted: 2011.9.14, Ended: 2011.11.1\nParticipants: SilentTitan (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) TwoShort: Build G1 Twoshort\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) TwoShort: Discover G1 Twoshort B2 Bluonia\n\n10) SilentTitan: Discover G1 Silenttitan B3 Sol\n\n11) TwoShort: Build Y1 Twoshort\n\n12) SilentTitan: Build Y2 Silenttitan\n\n13) TwoShort: Build Y2 Twoshort\n\n14) SilentTitan: Discover G3 Silenttitan Y3 Soul\n\n15) TwoShort: Discover Y1 Twoshort G2 Grogar\n\tTwoShort: Well that was unexpected.\n\n16) SilentTitan: Trade Y1 G1 Silenttitan\n\n17) TwoShort: Build Y1 Grogar\n\n18) SilentTitan: Build G2 Soul\n\n19) TwoShort: Discover Y1 Grogar G3 Greenland\n\n20) SilentTitan: Discover G1 Silenttitan Y3 Sole\n\n21) TwoShort: Build G2 Twoshort\n\n22) SilentTitan: Move G3 Soul Silenttitan\n\n23) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild Y2 Greenland\nBuild Y3 Grogar\n\n24) SilentTitan: Sacrifice G2 Soul\nBuild Y3 Silenttitan\nBuild G2 Sol\n\n25) TwoShort: Sacrifice Y2 Twoshort\nMove Y1 Greenland Silenttitan\nMove Y2 Greenland Silenttitan\nCatastrophe Silenttitan Yellow\n\n26) SilentTitan: Build G3 Silenttitan\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Twoshort\nBuild Y2 Twoshort\nBuild G3 Twoshort\n\n28) SilentTitan: Trade G2 Y2 Sol\n\n29) TwoShort: Sacrifice Y2 Twoshort\nMove G1 Bluonia Sole\nMove G1 Sole Silenttitan\n\n30) SilentTitan: Trade G3 Y3 Silenttitan\n\n31) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Twoshort\nCatastrophe Silenttitan Green\n\n32) SilentTitan: Build G1 Sol\n\tSilentTitan: you know... I've thought about this a lot. I don't believe I could handle the once or twice per six months that I play against you and nenme.... If I wasn't winning virtually every other game I play. \n\tTwoShort: If it helps any, you're definitely on the short list of players who put up enough fight to make it satisfying when I win. :)\n\n33) TwoShort: Discover G2 Twoshort B2 Bluonia\n\n34) SilentTitan: Sacrifice G1 Sol\nBuild Y2 Silenttitan\n\n35) TwoShort: Build G1 Twoshort\n\n36) SilentTitan: Trade Y3 G3 Silenttitan\n\n37) TwoShort: Discover Y1 Grogar G3 Greenland\n\n38) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\nBuild G2 Sol\n\n39) TwoShort: Build G3 Bluonia\n\n40) SilentTitan: Sacrifice Y2 Sol\nMove G1 Sol Bluonia\nMove G2 Sol Bluonia\nCatastrophe Bluonia Green\n\n41) TwoShort: Discover Y1 Twoshort B2 Blu2eb\n\n42) SilentTitan: Trade Y3 G3 Silenttitan\n\n43) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Blu2eb\nBuild Y3 Twoshort\nBuild G1 Twoshort\n\n44) SilentTitan: Build G2 Silenttitan\n\n45) TwoShort: Trade Y2 R2 Blu2eb\n\n46) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild G2 Sole\nBuild G3 Silenttitan\n\n47) TwoShort: Discover G1 Twoshort R2 Rover\n\n48) SilentTitan: Discover G2 Silenttitan G3 Yaz\n\n49) TwoShort: Move R2 Blu2eb Yaz\n\n50) SilentTitan: Sacrifice G2 Yaz\nBuild G2 Silenttitan\nPass\n\n51) TwoShort: Build R1 Yaz\n\tSilentTitan: do you have any idea why the time isn't moving?\n\n52) SilentTitan: Discover Y2 Sol B2 Yell\n\n53) TwoShort: Move Y1 Greenland Rover\n\n54) SilentTitan: Discover G2 Silenttitan G3 Yikes\n\n55) TwoShort: Build R1 Yaz\n\n56) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Sol Yell\nMove Y2 Yell Twoshort\n\n57) TwoShort: Trade Y3 R3 Twoshort\n\n58) SilentTitan: Sacrifice G2 Sole\nBuild Y2 Twoshort\nBuild Y3 Yell\n\n59) TwoShort: Sacrifice Y3 Grogar\nMove Y1 Blu2eb Twoshort\nMove Y1 Twoshort Yell\nMove Y1 Twoshort Yell\nCatastrophe Yell Yellow\n\n60) SilentTitan: Attack G1 Twoshort North\n\tTwoShort: Ack! \n\n61) TwoShort: Sacrifice R2 Yaz\nAttack Y2 Twoshort\nAttack Y2 Twoshort\n\n62) SilentTitan: Sacrifice G2 Yikes\nBuild G2 Twoshort\nBuild G2 Silenttitan\n\n63) TwoShort: Attack G2 Twoshort\n\n64) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Twoshort\nBuild G3 Sole\nBuild G3 Silenttitan\n\n65) TwoShort: Sacrifice G2 Twoshort\nBuild R2 Yaz\nBuild R3 Twoshort\n\n66) SilentTitan: Trade G3 Y3 Silenttitan\n\n67) TwoShort: Sacrifice R2 Yaz\nAttack G2 Twoshort\nAttack G1 Twoshort\n\n68) SilentTitan: Discover G3 Sole Y2 New\n\n69) TwoShort: Move R3 Twoshort New\n\n70) SilentTitan: Discover G3 New B1 Old\n\n71) TwoShort: Sacrifice G2 Twoshort\nBuild R2 Yaz\nBuild R3 New\n\n72) SilentTitan: Trade G3 Y3 Old\n\n73) TwoShort: Sacrifice Y2 Twoshort\nDiscover R3 New B3 Base\nMove R3 New Base\n\n74) SilentTitan: Move Y3 Old Yaz\n\n75) TwoShort: Sacrifice Y2 Twoshort\nMove R3 Base Silenttitan\nMove R3 Base Silenttitan\n\tTwoShort: Great game, by the way. I've thought I saw how to finish you off 5 or 6 times and you keep holding me off and threatening to make a comeback. This time I'm pretty sure I've got you though :)\n\n76) SilentTitan: Trade Y3 G3 Silenttitan\n\tSilentTitan: yes you do. Thanks for the game\n\n77) TwoShort: Sacrifice R2 Yaz\nAttack G3 Silenttitan\nAttack G2 Silenttitan\n\n\nHomeworlds Online (SDG# 20680)\nVariants: "Hard time"\nStarted: 2011.9.14, Ended: 2011.9.24\nParticipants: SilentTitan (S), BloodRumpus (N)\nWinner: SilentTitan\n\n1) BloodRumpus: Homeworld B2 R1 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) BloodRumpus: Build G1 Bloodrumpus\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) BloodRumpus: Trade Y1 B1 Bloodrumpus\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) BloodRumpus: Build B1 Bloodrumpus\n\n12) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\n13) BloodRumpus: Trade G3 Y3 Bloodrumpus\n\n14) SilentTitan: Build G1 Sol\n\n15) BloodRumpus: Build G2 Bloodrumpus\n\n16) SilentTitan: Discover G1 Sol Y3 Sole\n\n17) BloodRumpus: Discover B1 Bloodrumpus G3 Regulus\n\n18) SilentTitan: Build G2 Silenttitan\n\n19) BloodRumpus: Build B1 Regulus\n\n20) SilentTitan: Build G2 Sole\n\n21) BloodRumpus: Build B2 Regulus\n\n22) SilentTitan: Trade G3 B3 Silenttitan\n\n23) BloodRumpus: Trade G1 R1 Bloodrumpus\n\n24) SilentTitan: Discover B3 Silenttitan G1 Slick\n\n25) BloodRumpus: Sacrifice Y3 Bloodrumpus\nMove B1 Regulus Slick\nM B1 Regulus Slick\nM B2 Regulus Slick\nC Slick B\n\n26) SilentTitan: Discover Y1 Silenttitan B1 Sloop\n\n27) BloodRumpus: Trade G2 Y2 Bloodrumpus\n\n28) SilentTitan: Sacrifice G2 Sole\nBuild Y2 Silenttitan\nBuild Y2 Sloop\n\n\tBloodRumpus: woof... I really blew it.\n\nHomeworlds Online (SDG# 20847)\nVariants: "Hard time"\nStarted: 2011.9.15, Ended: 2011.11.6\nParticipants: kingsamj (S), BloodRumpus (N)\nWinner: kingsamj\n\n1) BloodRumpus: Homeworld B2 R3 G3\n\n2) kingsamj: Homeworld B3 G1 Y3\n\n3) BloodRumpus: B G1 Bloodrumpus\n\n4) kingsamj: Build Y1 Kingsamj\n\n5) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n6) kingsamj: Trade Y1 R1 Kingsamj\n\n7) BloodRumpus: Build G1 Bloodrumpus\n\n8) kingsamj: Build Y1 Kingsamj\n\n9) BloodRumpus: Build G1 Bloodrumpus\n\n10) kingsamj: Discover Y1 Kingsamj G2 Caprica\n\n11) BloodRumpus: D G1 Bloodrumpus B1 Tauron\n\n12) kingsamj: Build Y1 Caprica\n\n13) BloodRumpus: Trade G1 R1 Bloodrumpus\n\n14) kingsamj: Build Y2 Kingsamj\n\n15) BloodRumpus: Build Y2 Bloodrumpus\n\n16) kingsamj: Trade Y2 G2 Kingsamj\n\n17) BloodRumpus: Discover Y1 Bloodrumpus G1 Sagitaron\n\n18) kingsamj: Build Y2 Kingsamj\n\n19) BloodRumpus: Build Y2 Sagitaron\n\n20) kingsamj: Discover G2 Kingsamj B2 Kobol\n\n21) BloodRumpus: Build Y3 Bloodrumpus\n\n22) kingsamj: Move Y2 Kingsamj Kobol\n\n23) BloodRumpus: Sacrifice Y1 Sagitaron\nDiscover G1 Tauron Y3 Earth\n\n24) kingsamj: Build Y1 Kingsamj\n\n25) BloodRumpus: Build G2 Earth\n\n26) kingsamj: Build G3 Kobol\n\n27) BloodRumpus: Build G3 Bloodrumpus\n\n28) kingsamj: Trade G2 R2 Kobol\n\n29) BloodRumpus: Discover G2 Earth B2 Ragnar\n\n30) kingsamj: Build G2 Kobol\n\n31) BloodRumpus: Sacrifice G1 Earth\nB G1 Ragnar\n\n32) kingsamj: Move G3 Kobol Sagitaron\n\n33) BloodRumpus: Sacrifice Y2 Sagitaron\nMove G1 Ragnar Sagitaron\nMove G2 Ragnar Sagitaron\nCatastrophe Sagitaron G\n\n34) kingsamj: Build G1 Kobol\n\n35) BloodRumpus: Discover G3 Bloodrumpus R1 Tauron\n\n36) kingsamj: Discover Y1 Caprica G1 Earth\n\n37) BloodRumpus: Move Y2 Bloodrumpus Tauron\n\n38) kingsamj: Move G2 Kobol Earth\n\n39) BloodRumpus: T R1 B1 Bloodrumpus\n\n40) kingsamj: Build Y2 Earth\n\n\nHomeworlds Online (SDG# 20851)\nVariants: "Hard time"\nStarted: 2011.9.15, Ended: 2011.9.21\nParticipants: Subhan64 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld Y3 B2 G3\n\n2) Subhan64: Homeworld Y1 B3 G3\n\n3) ajo: Build G1 Ajo\n\n4) Subhan64: Build G1 Subhan64\n\n5) ajo: Discover G1 Ajo B1 Alpha\n\n6) Subhan64: Discover G1 Subhan64 B2 Blueberry\n\n7) ajo: Build G1 Ajo\n\tajo: Whoops. I ought to remember how not to screw that up every single time.\n\n8) Subhan64: Build G2 Subhan64\n\n9) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\n\n10) Subhan64: Build G3 Subhan64\n\n11) ajo: Trade G2 Y2 Alpha\n\n12) Subhan64: Trade G3 Y3 Subhan64\n\tajo: Looks like it worked out anyway. :)\n\n13) ajo: Trade G1 R1 Ajo\n\n14) Subhan64: Move G3 Subhan64 Blueberry\n\n15) ajo: Build Y1 Alpha\n\n16) Subhan64: Trade G1 Y1 Blueberry\n\n17) ajo: Sacrifice Y2 Alpha\nMove Y1 Alpha Blueberry\nMove Y1 Blueberry Subhan64\n\n18) Subhan64: Move Y3 Subhan64 Blueberry\n\n19) ajo: Sacrifice G2 Ajo\nBuild G1 Ajo\nBuild Y2 Subhan64\n\n20) Subhan64: Trade G2 R2 Subhan64\n\tajo: Check.\n\n21) ajo: Sacrifice R1 Ajo\nAttack R2 Subhan64\n\tajo: That doesn't get you out of check! :P It's a rated game, so I'll take the win. Better luck next time. :)\n\tSubhan64: nothing would have got me out of check\n\tajo: My analyzer says 304 distinct possible moves would have gotten you out of check. For example, "move g3 Blueberry Subhan64" would have done the trick, and left you in a decent position after I catastrophed yellow.\n\tSubhan64: Oh, so you are not playing your own games?\n\tSubhan64: Wouldn't have saved me anyway. If I moved g3 back home, I still would have lost one of my homeworld stars. This is a position that is so incredibly week that people will nearly always resign at that point rather than drag out the game.\n\tajo: I do play my own games. I use my analyzer primarily to verify before announcing "Checkmate", just to avoid looking stupid by being wrong. ;)\n\tajo: "[Losing half a homeworld] is so incredibly weak that people will nearly always resign at that point..." Nope, definitely not true. Especially in this case; you would have had quite the material advantage. After the catastrophe, I'd be left with r1g1g3 to your y1g2g3y3.\n\tSubhan64: There's a lot more to the advantage then mere piececount. The location of the pieces is also very important, and I think it's really easy to underestimate the effect of the asymmetrical distance relationship between the two homeworlds - there are now 2 sizes of stars which are 1 step away from the dimminished homeworld, whereas only 1 size can directly reach the opponenets.\r\n\n\tajo: Sure, you were worse off after I blew up your homeworld than before; otherwise I wouldn't have done it! But the material advantage makes up quite a bit of the difference. If I were you, I wouldn't have resigned when you did.\n\tajo: But then again, it does save time. ;) Resigning immediately when you make a mistake might lead to more rapid improvement in your early game, even if it does decrease your win percentage in the short run.\n\n\nHomeworlds Online (SDG# 20854)\nVariants: "Hard time"\nStarted: 2011.9.15, Ended: 2011.9.19\nParticipants: meckanical (S), BloodRumpus (N)\nWinner: BloodRumpus\n\n1) BloodRumpus: H B1 R3 G3\n\n2) meckanical: Homeworld G2 Y1 B3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\n4) meckanical: Build B1 Meckanical\n\n5) BloodRumpus: T G1 Y1 Bloodrumpus\n\n6) meckanical: Trade B1 G1 Meckanical\n\n7) BloodRumpus: B Y1 Bloodrumpus\n\n8) meckanical: Build B1 Meckanical\n\n9) BloodRumpus: Discover Y1 Bloodrumpus G2 Rigel\n\n10) meckanical: Discover G1 Meckanical Y3 Solar\n\n11) BloodRumpus: Build Y2 Rigel\n\n12) meckanical: Build G1 Solar\n\n13) BloodRumpus: Build Y2 Bloodrumpus\n\n14) meckanical: Move B1 Meckanical Solar\n\n15) BloodRumpus: Discover Y2 Bloodrumpus G2 Sirius\n\n16) meckanical: Build B1 Solar\n\n17) BloodRumpus: Sacrifice G3 Bloodrumpus\nBuild Y2 Sirius\nB Y3 Sirius\nBuild Y3 Bloodrumpus\n\n18) meckanical: Build B2 Solar\n\tmeckanical: Why do I get the feeling that this is about to suck?\n\n19) BloodRumpus: Trade Y1 R1 Bloodrumpus\n\tBloodRumpus: haha, well i have some consolidation to do before it starts to suck... give it a couple moves :P\n\n20) meckanical: Build B2 Meckanical\n\n21) BloodRumpus: Sacrifice Y2 Sirius\nMove Y3 Sirius Solar\nMove Y3 Solar Meckanical\n\n22) meckanical: Trade B3 R3 Meckanical\n\n23) BloodRumpus: Sacrifice R1 Bloodrumpus\nAttack R3 Meckanical\n\n24) meckanical: Sacrifice G1 Solar\nBuild B2 Meckanical\n\tBloodRumpus: its those sacrifices you gotta watch out for!\n\tmeckanical: BALLZ! I totally forgot that was a possibility haha... Makes my trade for a Red #3 seem pretty silly :P GG! Rematch once you're done with me!\n\n25) BloodRumpus: Sacrifice R3 Meckanical\nAttack B2 Meckanical\nAttack B2 Meckanical\nPass\n\tBloodRumpus: yep!\n\tBloodRumpus: btw you don't have to sac a green at Solar to build ships, just the fact that its in the system is sufficient.\n\tmeckanical: oooh good point. \n\tBloodRumpus: oh wait i missread what actually happened... I think your move was totally correct (the sac move)\n\n\nHomeworlds Online (SDG# 20821)\nStarted: 2011.9.18, Ended: 2011.10.8\nParticipants: SirRuthvenMurgatroyd (S), jimpurbrick (N)\nWinner: SirRuthvenMurgatroyd\n\n1) jimpurbrick: Homeworld R1 B2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y2 B3 G3\n\n3) jimpurbrick: Build G1 Jimpurbrick\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) jimpurbrick: Trade G1 Y1 Jimpurbrick\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n7) jimpurbrick: Discover Y1 Jimpurbrick G3 Gallifrey\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) jimpurbrick: Build Y1 Gallifrey\n\n10) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n\nHomeworlds Online (SDG# 20884)\nVariants: "Hard time"\nStarted: 2011.9.19, Ended: 2011.10.7\nParticipants: meckanical (S), BloodRumpus (N)\nWinner: BloodRumpus\n\n1) BloodRumpus: Homeworld B1 R2 G3\n\n2) meckanical: Homeworld B1 G3 Y3\n\n3) BloodRumpus: Build G1 Bloodrumpus\n\n4) meckanical: Build Y1 Meckanical\n\n5) BloodRumpus: B G1 Bloodrumpus\n\n6) meckanical: Trade Y1 G1 Meckanical\n\n7) BloodRumpus: Trade G1 Y1 Bloodrumpus\n\n8) meckanical: Build G1 Meckanical\n\n9) BloodRumpus: Discover G1 Bloodrumpus Y3 Sirius\n\n10) meckanical: Trade G1 B1 Meckanical\n\n11) BloodRumpus: Build G1 Sirius\n\n12) meckanical: Build B2 Meckanical\n\n13) BloodRumpus: Discover G1 Sirius B2 Rigel\n\n14) meckanical: Trade B2 R2 Meckanical\n\n15) BloodRumpus: Build G2 Sirius\n\n16) meckanical: Move R2 Meckanical Rigel\n\n17) BloodRumpus: Sacrifice Y1 Bloodrumpus\nMove G1 Rigel Meckanical\n\n18) meckanical: Trade Y3 R3 Meckanical\n\n19) BloodRumpus: Sacrifice G2 Sirius\nBuild G2 Meckanical\nBuild G2 Meckanical\nCatastrophe Meckanical G\n\n20) meckanical: Trade R2 G2 Rigel\n\tmeckanical: oooooh shit... i just realized what you were doing :-/\n\tBloodRumpus: well its not gonna be quite as awesome since i won't be able to take out your big ship now :(\n\n21) BloodRumpus: Build G1 Bloodrumpus\n\tBloodRumpus: ...but I'm still pleased with the outcome :P\n\tmeckanical: :P at least one of us is!\n\n22) meckanical: Trade B1 G1 Meckanical\n\n23) BloodRumpus: Build G2 Sirius\n\n24) meckanical: Sacrifice G2 Rigel\nBuild G2 Meckanical\nBuild R1 Meckanical\n\n25) BloodRumpus: Trade G1 B1 Bloodrumpus\n\n26) meckanical: Build R1 Meckanical\n\n27) BloodRumpus: Build B2 Bloodrumpus\n\n28) meckanical: Trade R1 Y1 Meckanical\n\n29) BloodRumpus: Trade B1 R1 Bloodrumpus\n\n30) meckanical: Move R3 Meckanical Sirius\n\n31) BloodRumpus: Discover G2 Sirius Y2 Caprica\n\n32) meckanical: Attack G1 Sirius\n\n33) BloodRumpus: Build G1 Caprica\n\n34) meckanical: Trade G2 R2 Meckanical\n\n35) BloodRumpus: Build B1 Bloodrumpus\n\n36) meckanical: Build G2 Meckanical\n\n37) BloodRumpus: S B1 Bloodrumpus\nT G1 R1 Caprica\n\n38) meckanical: Move R3 Sirius Caprica\n\n39) BloodRumpus: Sacrifice G2 Caprica\nBuild R2 Caprica\nBuild R3 Caprica\nCatastrophe Caprica R\n\n40) meckanical: Move R2 Meckanical Sirius\n\n41) BloodRumpus: Build B1 Bloodrumpus\n\tmeckanical: oh goddamn! those damn sacrifices :)\n\n42) meckanical: Trade G2 B2 Meckanical\n\tBloodRumpus: haha yep\n\n43) BloodRumpus: Trade R1 Y1 Bloodrumpus\n\n44) meckanical: Build R1 Sirius\n\n45) BloodRumpus: Discover B1 Bloodrumpus G3 Zepher\n\n46) meckanical: Move R2 Sirius Bloodrumpus\n\n47) BloodRumpus: Attack R2 Bloodrumpus\n\n48) meckanical: Build B2 Meckanical\n\tmeckanical: hmmm\n\n49) BloodRumpus: Sacrifice Y1 Bloodrumpus\nM B1 Zepher Meckanical\nC Meckanical B\n\tmeckanical: oooooh your red star! hahaha.... well fuck.\n\n\nHomeworlds Online (SDG# 20890)\nVariants: "Hard time"\nStarted: 2011.9.20, Ended: 2011.11.19\nParticipants: MagicJohn (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld B1 R2 G3\n\n2) MagicJohn: Homeworld Y1 B3 G3\n\tMandrel: Have a good game.\n\tMagicJohn: Thanks for the game. I've been in this ladder for quite some time and NOBODY seems to pick up challenges. Standings-wise there is little advantage to playing folks on a lower rung of the ladder than yourself, but I thought the thing was designed to encourage and reward folks who would play the game. There, I'm done ranting. Have a good game! \n\n3) Mandrel: Build G1 Mandrel\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) MagicJohn: Build G1 Magicjohn\n\n7) Mandrel: Build Y1 Mandrel\n\n8) MagicJohn: Trade G1 R1 Magicjohn\n\n9) Mandrel: Build Y2 Mandrel\n\n10) MagicJohn: Build G1 Magicjohn\n\n11) Mandrel: Discover Y1 Mandrel B3 Slow\n\n12) MagicJohn: Discover G1 Magicjohn Y2 Old Yeller\n\n13) Mandrel: Build Y2 Mandrel\n\n14) MagicJohn: Build G1 Old\n\n15) Mandrel: Discover Y2 Mandrel G3 Kings\n\n16) MagicJohn: Build G2 Old\n\n17) Mandrel: B G2 Mandrel\n\n18) MagicJohn: Move G2 Old Slow\n\n19) Mandrel: Discover Y1 Slow B2 Helix\n\n20) MagicJohn: Trade G3 Y3 Magicjohn\n\n21) Mandrel: Build Y3 Kings\n\n22) MagicJohn: Trade Y3 G3 Magicjohn\n\n23) Mandrel: Sacrifice G3 Mandrel\nBuild G2 Mandrel\nBuild G3 Mandrel\nBuild Y3 Helix\n\n24) MagicJohn: Move G1 Old Kings\n\n25) Mandrel: Sacrifice Y2 Kings\nMove Y1 Helix Magicjohn\nMove Y3 Helix Magicjohn\n\n26) MagicJohn: Discover G1 Old Y3 Grayhavens\n\n27) Mandrel: Trade G2 R2 Mandrel\n\n28) MagicJohn: Attack Y3 Magicjohn\n\n29) Mandrel: Sacrifice R2 Mandrel\nAttack R1S Magicjohn\nAttack G1S Magicjohn\n\n30) MagicJohn: Trade Y3 R3 Magicjohn\n\n31) Mandrel: Sacrifice G2 Mandrel\nBuild R1 Magicjohn\nBuild R1 Magicjohn\nCatastrophe Magicjohn R\n\n32) MagicJohn: Trade G2 R2 Slow\n\n33) Mandrel: Sacrifice G3 Mandrel\nBuild G2 Magicjohn\nBuild G2 Magicjohn\nBuild Y2 Kings\nCatastrophe Magicjohn G\n\n\tMandrel: Thanks for the game.\n\tMagicJohn: Eventually I will get the hang of this game. Complex lil' devil, isn't it.....\n\nHomeworlds Online (SDG# 20650)\nVariants: "Hard time"\nStarted: 2011.9.21, Ended: 2011.10.1\nParticipants: BloodRumpus (S), caru (N), ajo (E)\nWinner: ajo\n\n1) caru: Homeworld B1 Y2 G3\n\tajo: This will be my first-ever three-player game of Homeworlds on SDG. Am I correct in assuming that since the "Variants" on this match don't include "Sinister", it's a "last man standing" sort of thing?\n\tajo: ...self-correction: it's a "first to get someone else out" sort of thing. Right?\n\n2) ajo: Homeworld R1 B2 G3\n\tDanner: "The standard end-of-game condition is Last Man Standing" :)\r\nhttp://superdupergames.org/gameinfo.html?game=homeworlds\n\n3) BloodRumpus: Homeworld R2 B3 G3\n\tajo: Thanks, Danner. I was thrown off by the fact that in the first couple of multiplayer non-Sinister archive games I looked at, the games ended with multiple homeworlds still on the map and unconquered. But on closer inspection I see that those players had already resigned. Makes sense now.\n\n4) caru: Build G1 Caru\n\n5) ajo: Build G1 Ajo\n\n6) BloodRumpus: Build G1 Bloodrumpus\n\n7) caru: Trade G1 Y1 Caru\n\n8) ajo: Trade G1 Y1 Ajo\n\n9) BloodRumpus: T G1 Y1 Bloodrumpus\n\n10) caru: Build G1 Caru\n\n11) ajo: Build G1 Ajo\n\n12) BloodRumpus: Build G1 Bloodrumpus\n\n13) caru: Trade G1 B1 Caru\n\n14) ajo: Build G1 Ajo\n\n15) BloodRumpus: T G1 B1 Bloodrumpus\n\n16) ajo: Discover G1 Ajo B3 Alpha\n\n\tBloodRumpus: Whoa that was weird... Yeah i'd rather just call it quits.\n\nHomeworlds Online (SDG# 20906)\nVariants: "Hard time"\nStarted: 2011.9.22, Ended: 2011.10.26\nParticipants: ajo (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\tDanner: Hello again. :)\n\n2) ajo: Homeworld B3 Y2 G3\n\n3) Danner: Homeworld B1 Y2 G3\n\n4) ajo: Build G1 Ajo\n\n5) Danner: Build G1 Danner\n\n6) ajo: Trade G1 R1 Ajo\n\n7) Danner: Trade G1 R1 Danner\n\n8) ajo: Build G1 Ajo\n\n9) Danner: Build G1 Danner\n\n10) ajo: Discover G1 Ajo B1 Alpha\n\tajo: Copycat. ;)\n\n11) Danner: Discover G1 Danner Y3 Beta\n\tDanner: :)\n\n12) ajo: Build G1 Ajo\n\n13) Danner: Build G2 Danner\n\n14) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Ajo\n\n15) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild G3 Beta\nBuild R1 Danner\n\n16) ajo: Trade G2 Y2 Alpha\n\n17) Danner: Discover G1 Beta Y1 Gamma\n\n18) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\nBuild R2 Ajo\n\n19) Danner: Move R1 Danner Beta\n\n20) ajo: Move R2 Ajo Gamma\n\n21) Danner: Sacrifice G3 Beta\nBuild G3 Gamma\nBuild R2 Beta\nPass\n\n22) ajo: Sacrifice G2 Alpha\nBuild R2 Ajo\nBuild R3 Ajo\n\n23) Danner: Sacrifice R1 Beta\nAttack R2S Gamma\n\n24) ajo: Move R3 Ajo Alpha\n\n25) Danner: Sacrifice G3 Danner\nBuild R1 Gamma\nBuild R3 Beta\nBuild R3 Danner\n\n26) ajo: Discover G2 Alpha B3 Delta\n\n27) Danner: Discover G3 Gamma G3 Epsilon\n\n28) ajo: Sacrifice G3 Ajo\nBuild G2 Delta\nBuild G3 Ajo\nBuild Y1 Alpha\n\n29) Danner: Sacrifice G3 Epsilon\nBuild G3 Danner\nBuild G3 Gamma\nPass\n\n\tDanner: What happened? Your clock is frozen!\n\nHomeworlds Online (SDG# 20915)\nVariants: "Hard time"\nStarted: 2011.9.23, Ended: 2011.9.26\nParticipants: goulo (S), Subhan64 (N)\nWinner: goulo\n\n\tSubhan64: damn, sorry, I spaced out on this :(\n\tgoulo: Yeah, kind of anticlimactic way to win. :)\n\nHomeworlds Online (SDG# 20902)\nVariants: "Hard time"\nStarted: 2011.9.28, Ended: 2011.11.8\nParticipants: Subhan64 (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld Y1 B2 G3\n\n2) Subhan64: Homeworld G3 B1 Y3\n\n3) Jesse: Build G1 Jesse\n\n4) Subhan64: Build Y1 Subhan64\n\n5) Jesse: Trade G1 Y1 Jesse\n\n6) Subhan64: Trade Y1 G1 Subhan64\n\n7) Jesse: Discover Y1 Jesse G3 Supermoss\n\n8) Subhan64: Discover G1 Subhan64 Y2 Bigbird\n\n9) Jesse: Build G1 Jesse\n\n10) Subhan64: Build G1 Bigbird\n\n11) Jesse: Discover G1 Jesse B3 Superlake\n\n12) Subhan64: Move G1 Bigbird Superlake\n\n13) Jesse: Trade G1 R1 Superlake\n\n14) Subhan64: Sacrifice G1 Superlake\nBuild Y1 Subhan64\n\n15) Jesse: Build Y2 Supermoss\n\n16) Subhan64: Trade Y1 R1 Subhan64\n\n17) Jesse: Build G1 Jesse\n\n18) Subhan64: Discover R1 Subhan64 G2 Kermit\n\n19) Jesse: Move Y2 Supermoss Kermit\n\n20) Subhan64: Build Y1 Subhan64\n\n21) Jesse: Sacrifice R1 Superlake\nAttack R1 Kermit\n\n22) Subhan64: Discover Y1 Subhan64 G2 Karopi\n\n23) Jesse: Discover G1 Jesse Y3 Supercanary\n\n24) Subhan64: Sacrifice G1 Bigbird\nBuild Y2 Karopi\n\n25) Jesse: Build G1 Jesse\n\n26) Subhan64: Move Y1 Karopi Subhan64\n\n27) Jesse: Sacrifice G3 Jesse\nBuild G1 Supercanary\nBuild G2 Supercanary\nBuild G3 Jesse\n\n28) Subhan64: Build Y2 Karopi\n\n29) Jesse: Build Y3 Supermoss\n\n30) Subhan64: Trade Y1 R1 Subhan64\n\n31) Jesse: Build Y1 Kermit\n\n32) Subhan64: Move Y2 Karopi Supermoss\n\n33) Jesse: Discover G1 Supercanary B2 Lake\n\n34) Subhan64: Move R1 Subhan64 Lake\n\n35) Jesse: Sacrifice R1 Kermit\nAttack R1 Lake\n\n36) Subhan64: Move Y2 Supermoss Karopi\n\n37) Jesse: Move Y1 Supermoss Lake\n\n38) Subhan64: Discover Y2 Karopi B3 Cookie_monster\n\n39) Jesse: Sacrifice Y3 Supermoss\nMove Y1 Lake Subhan64\nMove Y1 Kermit Subhan64\nMove Y2 Kermit Subhan64\nCatastrophe Subhan64 Y\n\n\tJesse: Thanks for the game.\n\tSubhan64: Thanks! I still lose most of the games I play, but I'm slowly getting better!\n\nHomeworlds Online (SDG# 20870)\nStarted: 2011.10.2, Ended: 2011.11.18\nParticipants: SirRuthvenMurgatroyd (S), lorgar (N)\nWinner: SirRuthvenMurgatroyd\n\n1) lorgar: Homeworld B3 Y2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) lorgar: Discover G1 Lorgar B1 Mellowmood\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n7) lorgar: Build G1 Mellowmood\n\n8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n9) lorgar: Trade G1 Y1 Mellowmood\n\n10) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n11) lorgar: Build G1 Lorgar\n\n12) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n13) lorgar: Build G2 Mellowmood\n\n14) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G3 Sirruthvenmurgatroyd\nBuild G3 Sirruthvenmurgatroyd\n\n15) lorgar: Sacrifice G3 Lorgar\nBuild Y1 Mellowmood\nBuild Y2 Mellowmood\nBuild G3 Lorgar\n\n16) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nMove G2 Sol Mellowmood\nMove G1 Sol Mellowmood\nCatastrophe Mellowmood G\n\n17) lorgar: Sacrifice Y2 Mellowmood\nDiscover Y1 Mellowmood Y2 Stop\nDiscover Y1 Mellowmood Y2 Post\n\n18) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n19) lorgar: Discover Y1 Post G3 Ost\n\n20) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n21) lorgar: Build Y2 Ost\n\n22) SirRuthvenMurgatroyd: Sacrifice Y3 Sirruthvenmurgatroyd\nMove R3 Sirruthvenmurgatroyd Ost\nDiscover R3 Ost R1 Red\nMove R3 Red Lorgar\n\n\nHomeworlds Online (SDG# 20773)\nStarted: 2011.10.3, Ended: 2011.12.19\nParticipants: daselva (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) daselva: Homeworld B1 R2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) daselva: Build G1 Daselva\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) daselva: Trade G3 B3 Daselva\n\n7) lorgar: Discover B1 Lorgar G2 Maz\n\n8) daselva: Build B2 Daselva\n\n9) lorgar: Build B2 Maz\n\n10) daselva: Trade B3 Y3 Daselva\n\n11) lorgar: Trade B1 R1 Maz\n\n12) daselva: Discover B2 Daselva G3 S1\n\n13) lorgar: Build R1 Maz\n\n14) daselva: Build Y1 Daselva\n\n15) lorgar: Trade R1 Y1 Maz\n\n16) daselva: Sacrifice Y1 Daselva\nDiscover B2 S1 G2 S2\n\n17) lorgar: Build G1 Lorgar\n\n18) daselva: Build Y1 Daselva\n\n19) lorgar: Trade G1 R1 Lorgar\n\n20) daselva: Discover Y1 Daselva G3 S3\n\n21) lorgar: Build B1 Maz\n\n22) daselva: Move Y1 S3 S2\n\n23) lorgar: Discover B2 Maz G3 Muse\n\n24) daselva: Build G1 Daselva\n\n25) lorgar: Build G1 Lorgar\n\n26) daselva: Trade B2 R2 S2\n\n27) lorgar: Build B2 Muse\n\n28) daselva: Move R2 S2 Muse\n\n29) lorgar: Sacrifice R1 Maz\nAttack R2S Muse\n\n30) daselva: Discover Y1 S2 G3 S3\n\n31) lorgar: Build B2 Maz\n\n32) daselva: Build G2 Daselva\n\n33) lorgar: Build B3 Maz\n\n34) daselva: Trade G2 R2 Daselva\n\n35) lorgar: Build B3 Muse\n\n36) daselva: Build G2 Daselva\n\n37) lorgar: Build R1 Muse\n\n38) daselva: Move R2 Daselva S3\n\n39) lorgar: Trade B2 G2 Muse\n\n40) daselva: Sacrifice G2 Daselva\nBuild R1 S3\nBuild R3 S3\n\n41) lorgar: Discover B1 Maz R3 Moose\n\n42) daselva: Discover R3 S3 Y2 S4\n\n43) lorgar: Build R3 Lorgar\n\n44) daselva: Discover R2 S3 Y2 S5\n\n45) lorgar: Sacrifice B2 Maz\nTrade R3 Y3 Lorgar\nTrade G2 Y2 Muse\n\n46) daselva: Build R3 S3\n\n47) lorgar: Sacrifice Y3 Lorgar\nMove B1 Moose Daselva\nMove B2 Muse Daselva\nMove B3 Muse Daselva\nCatastrophe Daselva Blue\n\n48) daselva: Move R3 S4 Muse\n\n49) lorgar: Sacrifice Y2 Muse\nMove R2 Muse Daselva\nMove R1 Muse Daselva\n\n\nHomeworlds Online (SDG# 20848)\nVariants: "Hard time"\nStarted: 2011.10.3, Ended: 2011.11.12\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B1 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) lorgar: Discover G1 Lorgar B2 Peyotl\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) lorgar: Build G1 Lorgar\n\n9) SilentTitan: Trade B2 Y2 Silenttitan\n\n10) lorgar: Build G1 Lorgar\n\n11) SilentTitan: Build G2 Silenttitan\n\n12) lorgar: Build G2 Peyotl\n\n13) SilentTitan: Build G2 Silenttitan\n\n14) lorgar: Trade G2 B2 Peyotl\n\n15) SilentTitan: Discover G2 Silenttitan B3 Sol\n\n16) lorgar: Trade G1 R1 Lorgar\n\n17) SilentTitan: Build B2 Silenttitan\n\n18) lorgar: Build G1 Peyotl\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Sol\nBuild G3 Sol\nBuild G3 Silenttitan\n\n20) lorgar: Trade G1 Y1 Peyotl\n\n21) SilentTitan: Trade G2 Y2 Sol\n\n22) lorgar: Move G1 Peyotl Sol\n\n23) SilentTitan: Trade G3 R3 Sol\n\n24) lorgar: Discover B2 Peyotl G3 Los\n\n25) SilentTitan: Discover B2 Silenttitan Y3 Soul\n\n26) lorgar: Sacrifice G1 Sol\nBuild B3 Los\n\n27) SilentTitan: Discover B1 Silenttitan Y3 Taos\n\n28) lorgar: Trade B2 R2 Los\n\n29) SilentTitan: Sacrifice G2 Sol\nBuild B2 Taos\nBuild B3 Soul\n\n30) lorgar: Build R1 Los\n\n31) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover B2 Soul Y2 Alpha\nDiscover B2 Taos Y2 Beta\n\n32) lorgar: Trade R1 Y1 Los\n\n33) SilentTitan: Sacrifice B3 Soul\nTrade R3 Y3 Sol\nTrade B2 G2 Alpha\nTrade B2 G2 Beta\n\n34) lorgar: Trade G3 R3 Lorgar\n\n35) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Alpha\nBuild G1 Beta\nBuild G3 Silenttitan\n\n36) lorgar: Move B3 Los Beta\n\n37) SilentTitan: Sacrifice G2 Beta\nBuild G2 Beta\nBuild G3 Silenttitan\n\n38) lorgar: Sacrifice R2 Los\nAttack G2N Beta\nAttack G1N Beta\n\n39) SilentTitan: Trade G3 R3 Silenttitan\n\n40) lorgar: Move G2 Beta Los\n\n41) SilentTitan: Sacrifice G2 Alpha\nBuild B2 Taos\nBuild B2 Taos\n\n42) lorgar: Discover G1 Beta B3 Son\n\n43) SilentTitan: Sacrifice B2 Taos\nTrade Y2 R2 Sol\nTrade G2 Y2 Silenttitan\n\n44) lorgar: Trade R3 G3 Lorgar\n\n45) SilentTitan: Build G2 Alpha\n\n46) lorgar: Sacrifice G1 Lorgar\nBuild G1 Son\n\n47) SilentTitan: Sacrifice Y2 Silenttitan\nMove G2 Alpha Lorgar\nMove G1 Alpha Lorgar\n\n48) lorgar: Build G2 Son\n\n49) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild R1 Silenttitan\nBuild G3 Lorgar\nCatastrophe Lorgar Green\n\n\tlorgar: damn it... I was loosing anyway but at a slower pace than the other games...\n\nHomeworlds Online (SDG# 20963)\nStarted: 2011.10.3, Ended: 2011.11.11\nParticipants: SirRuthvenMurgatroyd (S), goblin981 (N)\nWinner: SirRuthvenMurgatroyd\n\n1) goblin981: Homeworld B2 Y3 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y1 B2 G3\n\n3) goblin981: Build G1 Goblin981\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) goblin981: Discover G1 Goblin981 Y1 Yw\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\n7) goblin981: Pass\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) goblin981: Build G2 Goblin981\n\n10) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G2 Sirruthvenmurgatroyd\nBuild G3 Sirruthvenmurgatroyd\n\n11) goblin981: Build G3 Yw\n\n12) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n\nHomeworlds Online (SDG# 20895)\nVariants: "Hard time"\nStarted: 2011.10.3, Ended: 2011.12.22\nParticipants: Mandrel (S), agentofchaos (N), lorgar (E)\nWinner: Mandrel\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\tagentofchaos: have fun guys :-)\n\n3) Mandrel: Homeworld B2 R3 G3\n\n4) agentofchaos: Build G1 Agentofchaos\n\tMandrel: Have a good game.\n\n5) lorgar: Build G1 Lorgar\n\n6) Mandrel: Build G1 Mandrel\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) lorgar: Trade G1 B1 Lorgar\n\n9) Mandrel: Trade G1 B1 Mandrel\n\n10) agentofchaos: Build Y1 Agentofchaos\n\n11) lorgar: Discover B1 Lorgar G2 Xray\n\n12) Mandrel: Build B2 Mandrel\n\n13) agentofchaos: D Y1 Agentofchaos G3 Kakrafoon\n\n14) lorgar: Build G1 Lorgar\n\n15) Mandrel: Trade B2 Y2 Mandrel\n\n16) agentofchaos: Build Y1 Agentofchaos\n\n17) lorgar: Build B2 Xray\n\n18) Mandrel: Build B2 Mandrel\n\n19) agentofchaos: Build Y1 Agentofchaos\n\n20) lorgar: Trade B2 Y2 Xray\n\n21) Mandrel: Discover B2 Mandrel G1 Quiet\n\n22) agentofchaos: Build Y2 Kakrafoon\n\n23) lorgar: Build B2 Xray\n\n24) Mandrel: Build B2 Quiet\n\n25) agentofchaos: Trade Y1 R1 Agentofchaos\n\n26) lorgar: Trade B1 R1 Xray\n\n27) Mandrel: Trade B2 R2 Quiet\n\n28) agentofchaos: Trade Y1 B1 Agentofchaos\n\n29) lorgar: Trade G1 R1 Lorgar\n\n30) Mandrel: Build Y1 Mandrel\n\n31) agentofchaos: Move B1 Agentofchaos Kakrafoon\n\n32) Mandrel: Move Y1 Mandrel Quiet\n\n33) agentofchaos: Build B2 Kakrafoon\n\n34) Mandrel: Build B3 Quiet\n\n35) agentofchaos: Build G1 Agentofchaos\n\n36) Mandrel: Discover B1 Mandrel G1 Spook\n\n37) agentofchaos: Trade B2 R2 Kakrafoon\n\n38) Mandrel: Move B3 Quiet Kakrafoon\n\n\nHomeworlds Online (SDG# 20970)\nVariants: "Hard time"\nStarted: 2011.10.3, Ended: 2011.11.23\nParticipants: Subhan64 (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) Subhan64: Homeworld G1 B2 Y3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) Subhan64: Build Y1 Subhan64\n\n5) AdamBadura: Trade Y1 R1 Adambadura\n\n6) Subhan64: Trade Y1 G1 Subhan64\n\n7) AdamBadura: Build Y1 Adambadura\n\n8) Subhan64: Build Y1 Subhan64\n\n9) AdamBadura: Trade Y1 G1 Adambadura\n\n10) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n11) AdamBadura: Discover G1 Adambadura Y1 Roadahead\n\n12) Subhan64: Build G2 Bigbird\n\n13) AdamBadura: Build G2 Roadahead\n\n14) Subhan64: Trade Y1 R1 Subhan64\n\n15) AdamBadura: Build Y1 Adambadura\n\n16) Subhan64: Discover R1 Subhan64 G3 Swampthing\n\n17) AdamBadura: Move G2 Roadahead Bigbird\n\n18) Subhan64: Move G2 Bigbird Roadahead\n\n19) AdamBadura: Build G2 Roadahead\n\n20) Subhan64: Build G3 Bigbird\n\n21) AdamBadura: Sacrifice G2 Roadahead\nBuild G2 Bigbird\nBuild R1 Adambadura\nCatastrophe Bigbird G\n\n22) Subhan64: Sacrifice R1 Swampthing\nAttack G1 Roadahead\n\n23) AdamBadura: Move R1 Adambadura Roadahead\n\n24) Subhan64: Discover G1 Roadahead Y2 Roadbehind\n\n25) AdamBadura: Move R1 Roadahead Roadbehind\n\n26) Subhan64: Discover G1 Roadbehind B3 Cookiemonster\n\n27) AdamBadura: Move R1 Roadbehind Cookiemonster\n\n28) Subhan64: Sacrifice G2 Roadahead\nBuild G1 Cookiemonster\nBuild G2 Cookiemonster\n\n29) AdamBadura: Attack G1 Cookiemonster\n\n30) Subhan64: Trade G2 R2 Cookiemonster\n\n31) AdamBadura: Build R1 Cookiemonster\n\n32) Subhan64: Attack G1 Cookiemonster\n\n33) AdamBadura: Attack G1 Cookiemonster\n\n34) Subhan64: Attack G1 Cookiemonster\n\n35) AdamBadura: Build R2 Adambadura\n\tSubhan64: whee! infinite loop!\n\tAdamBadura: Well. I will have to rethink this seriously. Infinite loop is not a good idea for game. I thought this was my best move (and somehow I did not expect you to continue loop) but maybe I will find a better one.\n\n36) Subhan64: Attack R1 Cookiemonster\n\n37) AdamBadura: Build R2 Adambadura\n\n38) Subhan64: Attack R1 Cookiemonster\n\n39) AdamBadura: Discover R2 Adambadura Y1 Onmyway\n\n40) Subhan64: Trade R1 Y1 Cookiemonster\n\n41) AdamBadura: Trade R2 G2 Adambadura\n\n42) Subhan64: Build G2 Cookiemonster\n\n43) AdamBadura: Build G2 Adambadura\n\n44) Subhan64: Build Y2 Subhan64\n\n45) AdamBadura: Move G2 Adambadura Onmyway\n\n46) Subhan64:\nBuild Y2 Subhan64\n\n47) AdamBadura: Sacrifice Y3 Adambadura\nMove Y1 Adambadura Onmyway\nMove Y1 Onmyway Cookiemonster\nMove Y1 Cookiemonster Subhan64\nCatastrophe Subhan64 Y\n\n\tSubhan64: crap, totally missed that, & could have prevented it! Was setting something else up. GG, thanks!\n\tAdamBadura: Yes. I was kind of glad as I felt I'm going to lose. If not for ladder game I would ask you to undo. ;)\n\tSubhan64: Yes, I think I was about 1-2 moves from catastrophe in G in your home system\r\n\n\nHomeworlds Online (SDG# 20969)\nVariants: "Hard time"\nStarted: 2011.10.5, Ended: 2011.11.2\nParticipants: captncavern (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B1 G3\n\n2) captncavern: Homeworld Y3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) captncavern: Build G1 Captncavern\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) captncavern: Build G1 Captncavern\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) captncavern: Trade G1 R1 Captncavern\n\n9) SilentTitan: Trade B2 Y2 Silenttitan\n\n10) captncavern: Build R1 Captncavern\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) captncavern: Build R1 Captncavern\n\n13) SilentTitan: Discover B2 Silenttitan G3 Sol\n\n\n14) captncavern: Discover R1 Captncavern Y2 Ichi\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sol\nBuild B2 Sol\nBuild B3 Silenttitan\n\n16) captncavern: Build R2 Captncavern\n\n17) SilentTitan: Trade B3 G3 Silenttitan\n\n18) captncavern: Sacrifice G1 Captncavern\nBuild R2 Ichi\n\n19) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover B2 Sol Y2 Soul\nDiscover B2 Sol Y2 Sole\n\n20) captncavern: Move R2 Ichi Sol\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Sole\nBuild B3 Soul\nBuild B3 Silenttitan\n\n22) captncavern: Attack B2 Sol\n\n23) SilentTitan: Sacrifice B3 Soul\nTrade B3 R3 Sole\nTrade B3 G3 Silenttitan\nTrade B2 G2 Sole\n\n24) captncavern: Trade R1 Y1 Captncavern\n\n25) SilentTitan: Trade B1 Y1 Silenttitan\n\n26) captncavern: Move R2 Captncavern Soul\n\n27) SilentTitan: Sacrifice G2 Sole\nBuild Y1 Silenttitan\nBuild Y3 Silenttitan\n\n28) captncavern: Discover R1 Ichi B3 Ni\n\n29) SilentTitan: Move R3 Sole Sol\n\n30) captncavern: Sacrifice R2 Sol\nAttack B2 Soul\nPass\n\n31) SilentTitan: Attack B2 Sol South\n\n32) captncavern: Discover R2 Soul Y3 San\n\n33) SilentTitan: Move Y1 Silenttitan Sol\n\n34) captncavern: Move B2 Soul San\n\n35) SilentTitan: Build G1 Silenttitan\n\n36) captncavern: Discover Y1 Captncavern G2 Yon\n\n37) SilentTitan: Sacrifice Y3 Silenttitan\nMove R3 Sol Yon\nMove R3 Yon San\nMove B2 Sol Yon\n\tcaptncavern: s y1 captncavern\r\nm r1 ni san\n\n38) captncavern: Move R2 San Yon\n\tcaptncavern: Sorry... I keep typing my commands in the wrong box. And this one wasn't even valid :)\n\n39) SilentTitan: Sacrifice R3 San\nAttack Y1 Yon South\nAttack R2 Yon South\nPass\n\n40) captncavern: Build G1 Captncavern\n\n41) SilentTitan: Build Y2 Yon\n\n42) captncavern: Discover G1 Captncavern Y2 Go\n\n43) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Yon\nBuild Y3 Silenttitan\nBuild B1 Yon\n\n44) captncavern: Move G1 Go San\n\n45) SilentTitan: Sacrifice Y2 Yon\nMove B1 Yon Captncavern\nMove B2 Yon Captncavern\n\n46) captncavern: Attack B2 Captncavern\n\n47) SilentTitan: Sacrifice G1 Silenttitan\nBuild B2 Captncavern\nCatastrophe Captncavern Blue\n\n48) captncavern: Build B1 San\n\tcaptncavern: m g1 go san\n\n49) SilentTitan: Move Y1 Sol Yon\n\n50) captncavern: Move B2 San Silenttitan\n\n51) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y2 Yon Captncavern\nMove Y1 Yon Captncavern\nMove Y1 Yon Captncavern\nCatastrophe Captncavern Yellow\n\n\nHomeworlds Online (SDG# 20986)\nVariants: "Hard time"\nStarted: 2011.10.5, Ended: 2011.10.30\nParticipants: zoltar (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) zoltar: H R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\tzoltar: hello!\n\n4) zoltar: Build G1 Zoltar\n\n5) goulo: Trade G3 Y3 Goulo\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) goulo: Build G1 Goulo\n\n8) zoltar: Build Y1 Zoltar\n\n9) goulo: Trade G1 R1 Goulo\n\n10) zoltar: Trade Y1 R1 Zoltar\n\n11) goulo: Build R2 Goulo\n\n12) zoltar: Build R2 Zoltar\n\n13) goulo: Discover R1 Goulo G1 Smeraldeto\n\n14) zoltar: Discover R2 Zoltar G3 Greengiant\n\n15) goulo: Build Y1 Goulo\n\n16) zoltar: Discover R1 Zoltar B3 Bluemoon\n\n17) goulo: Trade R2 G2 Goulo\n\n18) zoltar: Trade R1 G1 Bluemoon\n\n19) goulo: Discover G2 Goulo B1 Mirteleto\n\n20) zoltar: Build G2 Zoltar\n\n21) goulo: Trade Y3 G3 Goulo\n\n22) zoltar: Build G2 Bluemoon\n\n23) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y1 Goulo\nBuild Y2 Goulo\n\n24) zoltar: Trade G2 Y2 Bluemoon\n\n25) goulo: Move Y1 Goulo Mirteleto\n\n26) zoltar: Build G2 Bluemoon\n\n27) goulo: Trade Y1 B1 Goulo\n\n28) zoltar: Trade G1 B1 Bluemoon\n\n29) goulo: Build G1 Mirteleto\n\n30) zoltar: Discover B1 Bluemoon Y1 Doomsday\n\n31) goulo: Trade G1 R1 Mirteleto\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild G1 Bluemoon\nBuild B2 Doomsday\nBuild G3 Zoltar\n\n33) goulo: Move B1 Goulo Smeraldeto\n\n34) zoltar: Discover B1 Doomsday R2 Redrover\n\n35) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild B3 Smeraldeto\nBuild B3 Smeraldeto\n\n36) zoltar: Sacrifice Y1 Zoltar\nMove B1 Redrover Smeraldeto\nCatastrophe Smeraldeto B\n\n37) goulo: Sacrifice G3 Goulo\nBuild R2 Smeraldeto\nBuild Y1 Goulo\nBuild G3 Goulo\n\n38) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B1 Doomsday\nBuild B1 Doomsday\n\n39) goulo: Sacrifice G3 Goulo\nBuild R2 Mirteleto\nBuild R3 Mirteleto\nBuild R3 Smeraldeto\n\n\tzoltar: gg\n\tgoulo: Cool, thanks. That was a tough good game indeed. I thought you were going to win during most of it. :)\n\nHomeworlds Online (SDG# 20995)\nVariants: "Hard time"\nStarted: 2011.10.6, Ended: 2011.11.4\nParticipants: ts52 (S), sompm (N)\nWinner: ts52\n\n1) sompm: Homeworld G3 B2 Y3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) sompm: Build Y1 Sompm\n\tts52: have a good game!\n\tsompm: You as well!\n\n4) ts52: Build G1 Ts52\n\n5) sompm: Discover Y1 Sompm B1 Nero\n\n6) ts52: Trade G1 B1 Ts52\n\n7) sompm: Discover Y1 Nero G3 Constantine\n\n8) ts52: Build G1 Ts52\n\n9) sompm: Build Y1 Constantine\n\n10) ts52: Discover G1 Ts52 B3 Grover\n\n11) sompm: Build Y2 Sompm\n\n12) ts52: Build G1 Ts52\n\n13) sompm: Build Y2 Constantine\n\n14) ts52: Build G1 Ts52\n\n15) sompm: Discover Y2 Constantine G2 Aristarchus\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n17) sompm: Build Y2 Constantine\n\n18) ts52: Trade G3 R3 Ts52\n\n19) sompm: Build Y3 Sompm\n\n20) ts52: Build G3 Ts52\n\n21) sompm: Sacrifice Y3 Sompm\nMove Y1 Constantine Ts52\nMove Y1 Constantine Ts52\nMove Y2 Constantine Ts52\nCatastrophe Ts52 Y\n\n22) ts52: Trade G3 Y3 Ts52\n\n23) sompm: Trade Y2 B2 Sompm\n\n24) ts52: B G3 Ts52\n\n25) sompm: Discover B2 Sompm Y1 Hamilton\n\n26) ts52: Sacrifice Y3 Ts52\nMove R3 Ts52 Hamilton\nMove R3 Hamilton Sompm\nMove G2 Grover Hamilton\n\n27) sompm: Sacrifice Y3 Sompm\nMove B2 Hamilton Sompm\nMove Y2 Aristarchus Hamilton\nMove Y2 Hamilton Sompm\n\tsompm: Oh. Right. Defending and stuff. Whoops. That would explain why you weren't going after my catastrophe buildup.\n\n28) ts52: A Y2 Sompm\n\n29) sompm: Build B1 Sompm\n\n30) ts52: Trade R3 B3 Sompm\nCatastrophe Sompm Blue\n\tts52: Thanks for the game!\n\tsompm: You as well.\n\n\nHomeworlds Online (SDG# 20993)\nVariants: "Hard time"\nStarted: 2011.10.7, Ended: 2011.11.6\nParticipants: dlwillson (S), Salmonax (N)\nWinner: dlwillson\n\n1) Salmonax: Homeworld G3 B2 Y3\n\n2) dlwillson: H B3 R1 G3\n\n3) Salmonax: Build Y1 Salmonax\n\n4) dlwillson: B G1 Dlwillson\n\n5) Salmonax: Trade Y1 B1 Salmonax\n\tSalmonax: trade y1 b1 salmonax\n\tSalmonax: Ohhh, I typed it in the wrong window. =)\r\n\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Salmonax: Build B1 Salmonax\n\tdlwillson: Hehee... \n\tdlwillson: Have you got the feel of the SDG interface yet?\n\tSalmonax: Probably not\n\n8) dlwillson: B G1 Dlwillson\n\n9) Salmonax: Trade B1 G1 Salmonax\n\n10) dlwillson: B Y1 Dlwillson\n\n11) Salmonax: Discover G1 Salmonax B1 S1\n\n12) dlwillson: T Y1 B1 Dlwillson\n\n13) Salmonax: Build B2 Salmonax\n\n14) dlwillson: D B1 Dlwillson G2 Condo\n\n15) Salmonax: Trade B2 G2 Salmonax\n\n16) dlwillson: B B2 Condo\n\n17) Salmonax: Build G1 S1\n\n18) dlwillson: T B2 Y2 Condo\n\n19) Salmonax: Trade G1 Y1 S1\n\n20) dlwillson: B Y1 Condo\n\n21) Salmonax: Build Y2 S1\n\n22) dlwillson: D Y2 Condo R1 Flat\n\n23) Salmonax: Trade G2 R2 Salmonax\n\n24) dlwillson: T G1 R1 Dlwillson\n\n25) Salmonax: Build R2 Salmonax\n\n26) dlwillson: S G3 Dlwillson\nBuild Y2 Condo\nBuild Y3 Flat\nBuild Y3 Dlwillson\n\n27) Salmonax: Move Y1 S1 Condo\n\n28) dlwillson: T Y2 R2 Condo\n\n29) Salmonax: Build Y2 Condo\n\n30) dlwillson: A Y2 Condo\n\n31) Salmonax: Build G1 S1\n\tdlwillson: Are you sure you want to build a y2 there? I'm ok with out, but want to confirm that's what you meant to do.\n\tSalmonax: Yep, that's what I wanted. And it won't let me undo now anyway. =)\r\n\n\n32) dlwillson: A Y1 Condo\n\tdlwillson: Ok, sorry...\n\tSalmonax: Ah, I counted wrong, thought there were more yellow in the bank.\n\n33) Salmonax: Move Y2 S1 Condo\nCatastrophe Condo Yellow\n\n34) dlwillson: Build R3 Condo\n\tSalmonax: Lykke Li in town on Nov 11\n\n35) Salmonax: Trade R2 G2 Salmonax\n\n36) dlwillson: T R2 Y2 Condo\n\n37) Salmonax: Trade G1 Y1 S1\n\n38) dlwillson: T R1 G1 Dlwillson\n\tdlwillson: Tix are about $40. If you're going, I'll go.\n\n39) Salmonax: Build Y1 S1\n\tSalmonax: Sounds good, should I just pick up two?\n\tdlwillson: Sure! I'll pay you back when we go. K?\n\n40) dlwillson: B Y2 Condo\n\tSalmonax: Where do I find forty dollar tickets? Only saw fifty\r\n\n\n41) Salmonax: Build R1 Salmonax\n\tdlwillson: http://m.ticketmaster.com/event/2C0046F9DFED4594\n\n42) dlwillson: B B2 Condo\n\n43) Salmonax: Move R1 Salmonax S1\n\tdlwillson: Did you get the link?\n\n44) dlwillson: M B2 Condo S1\n\tSalmonax: Got it, checking it out now.\r\n\n\tSalmonax: Oh, I have to call them. I'll do it during the day tomorrow.\n\n45) Salmonax: Build R2 S1\n\n46) dlwillson: S R3 Condo\nA R2 S1\nA R1 S1\nA G1 S1\n\n47) Salmonax: Sacrifice Y1 S1\nMove Y1 S1 Condo\n\n48) dlwillson: S Y2 Condo\nM B2 S1 Salmonax\nM G1 S1 Salmonax\n\tSalmonax: I'm pretty well outnumbered now...\n\n49) Salmonax: Sacrifice B1 Salmonax\nTrade G2 R2 Salmonax\n\n50) dlwillson: S R2 S1\nA R2 Salmonax\nA R2 Salmonax\n\tdlwillson: Not for long... :-)\n\tSalmonax: Pretty stuck, don't laugh at the next dumb moves I make. =)\r\n\n\n51) Salmonax: Build Y1 Condo\n\tdlwillson: Huh. Interesting!\n\n52) dlwillson: M Y3 Flat Salmonax\n\tSalmonax: Only saved me for one turn though.\n\tSalmonax: oops, sorry, didn't realize I hadn't made a move.\n\n53) Salmonax: Move Y1 Condo Dlwillson\n\n54) dlwillson: S R1 S1\nA Y3 Salmonax\n\tdlwillson: I think that's checkmate.\n\n\tSalmonax: Yeah, pretty sure.\n\tdlwillson: Good game. See you Friday.\n\tSalmonax: gg\n\nHomeworlds Online (SDG# 20974)\nStarted: 2011.10.8, Ended: 2011.12.29\nParticipants: SirRuthvenMurgatroyd (S), agentofchaos (N)\nWinner: SirRuthvenMurgatroyd\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y2 B3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) agentofchaos: T G1 Y1 Agentofchaos\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) SirRuthvenMurgatroyd: Build G1 Sol\n\n11) agentofchaos: Build G2 Agentofchaos\n\n12) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Betelgeuse\n\n13) agentofchaos: Trade G2 R2 Agentofchaos\n\n14) SirRuthvenMurgatroyd: Build G2 Betelgeuse\n\n15) agentofchaos: Move R2 Agentofchaos Betelgeuse\n\n16) SirRuthvenMurgatroyd: Sacrifice G3 Sirruthvenmurgatroyd\nBuild G2 Sirruthvenmurgatroyd\nBuild G2 Sol\nBuild G3 Sirruthvenmurgatroyd\n\n17) agentofchaos: Build G3 Agentofchaos\n\n18) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n19) agentofchaos: Discover G3 Agentofchaos Y3 Aeonoia\n\n20) SirRuthvenMurgatroyd: Build G3 Betelgeuse\n\n21) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G3 Aeonoia Sol\nMove G3 Sol Betelgeuse\nCatastrophe Betelgeuse G\n\n22) SirRuthvenMurgatroyd: Trade G2 R2 Sirruthvenmurgatroyd\n\n23) agentofchaos: Build Y2 Agentofchaos\n\n24) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n25) agentofchaos: Move Y1 Agentofchaos Betelgeuse\n\n26) SirRuthvenMurgatroyd: Trade Y2 B2 Sirruthvenmurgatroyd\n\n27) agentofchaos: Build Y2 Agentofchaos\n\n28) SirRuthvenMurgatroyd: Discover G2 Sol Y3 Alpha\n\n29) agentofchaos: Move Y1 Agentofchaos Betelgeuse\n\n30) SirRuthvenMurgatroyd: Discover Y3 Sirruthvenmurgatroyd B1 Beta\n\n31) agentofchaos: Move R2 Betelgeuse Sol\n\n32) SirRuthvenMurgatroyd: Move G1 Sol Betelgeuse\n\n33) agentofchaos: Move R2 Sol Betelgeuse\n\n34) SirRuthvenMurgatroyd: Sacrifice B2 Sirruthvenmurgatroyd\nTrade G1 Y1 Betelgeuse\nPass\nCatastrophe Betelgeuse Y\n\n35) agentofchaos: Trade Y2 R2 Agentofchaos\n\n36) SirRuthvenMurgatroyd: Build G1 Alpha\n\n37) agentofchaos: Build G1 Agentofchaos\n\n38) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n39) agentofchaos: Trade G1 Y1 Agentofchaos\n\n40) SirRuthvenMurgatroyd: Build G1 Alpha\n\n41) agentofchaos: Discover Y2 Agentofchaos B3 Gruvann\n\n42) SirRuthvenMurgatroyd: Move G1 Alpha Beta\n\n43) agentofchaos: Build G2 Agentofchaos\n\n44) SirRuthvenMurgatroyd: Build G3 Beta\n\n45) agentofchaos: D G2 Agentofchaos Y3 Blackguard\n\n46) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd\n\n47) agentofchaos: Build Y1 Agentofchaos\n\n48) SirRuthvenMurgatroyd: Discover G2 Sirruthvenmurgatroyd B1 Gamma\n\n49) agentofchaos: Move R2 Agentofchaos Gruvann\n\n50) SirRuthvenMurgatroyd: Trade G2 B2 Gamma\n\n51) agentofchaos: Build G2 Blackguard\n\n52) SirRuthvenMurgatroyd: Move G1 Alpha Agentofchaos\n\n53) agentofchaos: Sacrifice Y2 Gruvann\nMove G2 Blackguard Beta\nMove G2 Blackguard Beta\nCatastrophe Beta G\n\n54) SirRuthvenMurgatroyd: Sacrifice G2 Alpha\nBuild G1 Agentofchaos\nBuild G2 Agentofchaos\nCatastrophe Agentofchaos G\n\n55) agentofchaos: Trade Y1 G1 Agentofchaos\n\n56) SirRuthvenMurgatroyd: Discover Y3 Beta B3 Delta\n\n\tagentofchaos: well played\n\nHomeworlds Online (SDG# 20989)\nStarted: 2011.10.8, Ended: 2011.11.14\nParticipants: ts52 (S), agentofchaos (N)\nWinner: ts52\n\n1) agentofchaos: Homeworld B1 R3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\tts52: have a good game!\n\n4) ts52: Build G1 Ts52\n\tagentofchaos: Thanks, you too\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) agentofchaos: Build Y2 Agentofchaos\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) agentofchaos: Discover Y2 Agentofchaos G2 Shiyai\n\n10) ts52: Build Y2 Kermit\n\n11) agentofchaos: Build Y2 Shiyai\n\n12) ts52: Discover Y1 Kermit G2 Robin\n\n13) agentofchaos: Discover Y1 Agentofchaos G2 Kakrafloon\n\n14) ts52: Build Y3 Robin\n\n15) agentofchaos: Build Y3 Kakrafloon\n\n16) ts52: Build G1 Ts52\n\n17) agentofchaos: Build G1 Agentofchaos\n\n18) ts52: Trade G1 B1 Ts52\n\n19) agentofchaos: Trade G1 B1 Agentofchaos\n\n20) ts52: Move B1 Ts52 Kermit\n\n21) agentofchaos: Move Y1 Kakrafloon Agentofchaos\n\n22) ts52: Build Y3 Kermit\n\n23) agentofchaos: M B1 Agentofchaos Kakrafloon\n\n24) ts52: Build B2 Kermit\n\n25) agentofchaos: Build B2 Kakrafloon\n\n26) ts52: Move B2 Kermit Robin\n\n27) agentofchaos: Trade B1 R1 Kakrafloon\n\n28) ts52: Trade Y2 R2 Kermit\n\n29) agentofchaos: Build Y2 Kakrafloon\n\n30) ts52: Build R1 Kermit\n\n31) agentofchaos: Discover Y2 Shiyai B3 Wopolsa\n\n32) ts52: Move Y3 Robin Wopolsa\n\n33) agentofchaos: Discover Y2 Wopolsa R2 Grrindah\n\n34) ts52: Build G1 Ts52\n\n35) agentofchaos: Build G1 Agentofchaos\n\n36) ts52: Move G1 Ts52 Wopolsa\n\n37) agentofchaos: Trade G1 R1 Agentofchaos\n\n38) ts52: Build G1 Ts52\n\n39) agentofchaos: Build G1 Agentofchaos\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Kermit\nBuild B3 Robin\n\n41) agentofchaos: B B3 Kakrafloon\n\n42) ts52: Trade B3 R3 Robin\n\n43) agentofchaos: B R2 Kakrafloon\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Robin\nBuild B3 Robin\n\n\tagentofchaos: You've got me here, well played\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 20979)\nVariants: "Hard time"\nStarted: 2011.10.8, Ended: 2011.10.19\nParticipants: tcw (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) tcw: Homeworld B1 R2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) tcw: Build G1 Tcw\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) tcw: Build G1 Tcw\n\tSilentTitan: aw... did you put us in a tiny universe ... I just noticed... \n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) tcw: Trade G1 Y1 Tcw\n\n9) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n10) tcw: Build Y2 Tcw\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) tcw: Trade Y2 R2 Tcw\n\n13) SilentTitan: Build G1 Silenttitan\n\n14) tcw: Move R2 Tcw Sol\n\n15) SilentTitan: Discover Y1 Sol G2 Soul\n\n16) tcw: Build Y2 Tcw\n\n17) SilentTitan: Discover Y1 Silenttitan B3 Sole\n\n18) tcw: Trade Y2 G2 Tcw\n\n19) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Silenttitan Sol\nMove G1 Sol Tcw\nCatastrophe Tcw Green\n\n20) tcw: Trade Y1 G1 Tcw\n\n21) SilentTitan: Build Y1 Soul\n\n22) tcw: Build G1 Tcw\n\n23) SilentTitan: Build Y2 Soul\n\n\nHomeworlds Online (SDG# 20999)\nVariants: "Hard time"\nStarted: 2011.10.8, Ended: 2011.11.3\nParticipants: BloodRumpus (S), meckanical (N)\nWinner: BloodRumpus\n\n1) meckanical: Homeworld B2 R3 G3\n\n2) BloodRumpus: Homeworld G2 Y1 B3\n\n3) meckanical: Build G1 Meckanical\n\n4) BloodRumpus: Build B1 Bloodrumpus\n\n5) meckanical: Trade G1 B1 Meckanical\n\n6) BloodRumpus: Trade B1 Y1 Bloodrumpus\n\n7) meckanical: Build B1 Meckanical\n\n8) BloodRumpus: Discover Y1 Bloodrumpus G3 Hope\n\n9) meckanical: Trade B1 Y1 Meckanical\n\n10) BloodRumpus: Build Y2 Hope\n\n11) meckanical: Build Y2 Meckanical\n\n12) BloodRumpus: Build B1 Bloodrumpus\n\n13) meckanical: Trade Y2 R2 Meckanical\n\n14) BloodRumpus: Build Y2 Hope\n\n\nHomeworlds Online (SDG# 21000)\nVariants: "Hard time"\nStarted: 2011.10.15, Ended: 2011.11.12\nParticipants: agentofchaos (S), SilentTitan (N)\nWinner: agentofchaos\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld B1 R3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) agentofchaos: B Y2 Agentofchaos\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) agentofchaos: Discover Y2 Agentofchaos G2 Terraplasm\n\n13) SilentTitan: Discover G1 Silenttitan Y3 Sole\n\n14) agentofchaos: Build Y2 Agentofchaos\n\n15) SilentTitan: Build Y2 Sol\n\n16) agentofchaos: Build Y3 Terraplasm\n\n17) SilentTitan: Build Y3 Silenttitan\n\n18) agentofchaos: Trade G1 R1 Agentofchaos\n\n19) SilentTitan: Sacrifice Y2 Sol\nDiscover G1 Sole Y2 Taos\nDiscover Y1 Sol G2 Tyan\n\n20) agentofchaos: Build Y3 Terraplasm\n\n21) SilentTitan: Sacrifice Y3 Silenttitan\nDiscover Y1 Tyan B3 Moot\nMove Y1 Moot Terraplasm\nPass\nCatastrophe Terraplasm Yellow\n\n22) agentofchaos: Move Y2 Agentofchaos Taos\n\n23) SilentTitan: Discover G1 Taos Y3 Sol\n\n24) agentofchaos: Move Y2 Taos Sol\n\n25) SilentTitan: Discover G1 Sol Y2 Taos\n\n26) agentofchaos: Build R1 Agentofchaos\n\n27) SilentTitan: Discover G1 Taos Y3 Sole\n\n28) agentofchaos: Discover R1 Agentofchaos Y2 Wopolsa\n\n29) SilentTitan: Build G1 Silenttitan\n\n30) agentofchaos: Build R2 Agentofchaos\n\n31) SilentTitan: Discover G1 Silenttitan Y3 Soul\n\n32) agentofchaos: Trade R2 Y2 Agentofchaos\n\n33) SilentTitan: Build G1 Silenttitan\n\n34) agentofchaos: Build G2 Agentofchaos\n\n35) SilentTitan: Build G2 Silenttitan\n\n36) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R2 Wopolsa\nBuild R2 Wopolsa\n\n37) SilentTitan: Trade G2 R2 Silenttitan\n\n38) agentofchaos: Build R3 Agentofchaos\n\n39) SilentTitan: Build Y1 Silenttitan\n\n40) agentofchaos: M R2 Wopolsa Soul\n\n41) SilentTitan: Move G3 Silenttitan Soul\n\n42) agentofchaos: Sacrifice Y2 Sol\nMove R2 Soul Silenttitan\nMove R2 Wopolsa Sole\n\n43) SilentTitan: Attack R2 Silenttitan South\n\n44) agentofchaos: M R2 Sole Silenttitan\nCatastrophe Silenttitan R\n\n45) SilentTitan: Trade Y1 R1 Silenttitan\n\n46) agentofchaos: M R3 Agentofchaos Silenttitan\n\n47) SilentTitan: Sacrifice G3 Soul\nBuild R2 Silenttitan\nBuild R2 Silenttitan\nBuild G2 Silenttitan\nCatastrophe Silenttitan Red\n\tSilentTitan: good game\n\n48) agentofchaos: Move G3 Agentofchaos Silenttitan\n\n49) SilentTitan: Build G2 Silenttitan\nCatastrophe Silenttitan Green\n\n50) agentofchaos: Move Y2 Agentofchaos Silenttitan\n\tagentofchaos: Thanks, good game\n\n51) SilentTitan: Move G1 Soul Silenttitan\n\n52) agentofchaos: T Y2 R2 Silenttitan\n\n53) SilentTitan: Build G1 Silenttitan\n\n54) agentofchaos: Attack Y1 Silenttitan\n\n55) SilentTitan: Build G2 Sole\n\n56) agentofchaos: Attack G1 Silenttitan\n\n57) SilentTitan: Sacrifice G2 Sole\nBuild G2 Silenttitan\nBuild G2 Sole\n\n58) agentofchaos: Build G2 Silenttitan\nCatastrophe Silenttitan G\n\n\tagentofchaos: Thanks, great game :-)\n\tSilentTitan: Thank you ... you too.\n\nHomeworlds Online (SDG# 21023)\nVariants: "No undo"\nStarted: 2011.10.15, Ended: 2012.1.23\nParticipants: ajo (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 21002)\nStarted: 2011.10.16, Ended: 2012.1.18\nParticipants: SirRuthvenMurgatroyd (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) SirRuthvenMurgatroyd: Homeworld Y3 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Sol\n\n7) agentofchaos: Build Y1 Agentofchaos\n\n8) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n9) agentofchaos: Build Y2 Agentofchaos\n\n10) SirRuthvenMurgatroyd: Build G1 Sol\n\n11) agentofchaos: Build G2 Agentofchaos\n\n12) SirRuthvenMurgatroyd: Discover G1 Sol Y3 Betelgeuse\n\n13) agentofchaos: Trade G2 R2 Agentofchaos\n\n14) SirRuthvenMurgatroyd: Build G2 Betelgeuse\n\n15) agentofchaos: M R2 Agentofchaos Betelgeuse\n\n16) SirRuthvenMurgatroyd: Build G2 Sol\n\n17) agentofchaos: Attack G2 Betelgeuse\n\n18) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n19) agentofchaos: Attack G1 Betelgeuse\n\n20) SirRuthvenMurgatroyd: Move G2 Sol Sirruthvenmurgatroyd\n\n21) agentofchaos: S G2 Betelgeuse\nBuild R1 Betelgeuse\nBuild G2 Agentofchaos\n\n22) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n23) agentofchaos: Trade Y1 R1 Agentofchaos\n\n24) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n25) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Betelgeuse\nBuild G3 Agentofchaos\nBuild R2 Betelgeuse\n\n26) SirRuthvenMurgatroyd: Build R2 Sirruthvenmurgatroyd\n\n27) agentofchaos: Discover R2 Betelgeuse Y1 Huvaloo\n\n28) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n29) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Agentofchaos\nBuild R3 Agentofchaos\nBuild G3 Agentofchaos\n\n30) SirRuthvenMurgatroyd: Build G3 Sol\n\n31) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R3 Huvaloo\nBuild G2 Agentofchaos\n\n32) SirRuthvenMurgatroyd: Sacrifice Y2 Sirruthvenmurgatroyd\nDiscover Y2 Sirruthvenmurgatroyd B1 Alpha\nMove R2 Sirruthvenmurgatroyd Alpha\n\n33) agentofchaos: Discover R3 Agentofchaos B3 Barrowdrob\n\n34) SirRuthvenMurgatroyd: Discover G3 Sol B3 Beta\n\n35) agentofchaos: Move Y3 Agentofchaos Barrowdrob\n\n36) SirRuthvenMurgatroyd: Build G3 Beta\n\n37) agentofchaos: Move G2 Agentofchaos Barrowdrob\n\n38) SirRuthvenMurgatroyd: Sacrifice G2 Sirruthvenmurgatroyd\nBuild G2 Sirruthvenmurgatroyd\nBuild Y2 Alpha\n\n39) agentofchaos: Move R3 Barrowdrob Alpha\n\n40) SirRuthvenMurgatroyd: Sacrifice Y2 Alpha\nMove Y2 Alpha Beta\nMove R2 Alpha Beta\n\n41) agentofchaos: Build Y2 Barrowdrob\n\n42) SirRuthvenMurgatroyd: Discover G1 Sol B3 Gamma\n\n43) agentofchaos: Discover R1 Betelgeuse Y1 Rhomgroon\n\n44) SirRuthvenMurgatroyd: Trade G1 B1 Gamma\n\n45) agentofchaos: Sacrifice Y3 Barrowdrob\nMove R1 Rhomgroon Sirruthvenmurgatroyd\nMove R2 Huvaloo Sirruthvenmurgatroyd\nMove R3 Alpha Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd R\n\n46) SirRuthvenMurgatroyd: Trade G1 R1 Sirruthvenmurgatroyd\n\n47) agentofchaos: Move R3 Huvaloo Sirruthvenmurgatroyd\n\n48) SirRuthvenMurgatroyd: Sacrifice G3 Beta\nBuild R2 Sirruthvenmurgatroyd\nBuild R3 Sirruthvenmurgatroyd\nBuild R3 Beta\nCatastrophe Sirruthvenmurgatroyd R\n\n49) agentofchaos: Move R1 Agentofchaos Betelgeuse\n\n50) SirRuthvenMurgatroyd: Build G1 Beta\n\n51) agentofchaos: Trade Y1 B1 Agentofchaos\n\n52) SirRuthvenMurgatroyd: Build Y1 Beta\n\n53) agentofchaos: Build Y1 Barrowdrob\n\n54) SirRuthvenMurgatroyd: Sacrifice Y2 Beta\nDiscover R3 Beta R1 Blah\nMove R3 Blah Barrowdrob\n\n55) agentofchaos: Sacrifice Y2 Barrowdrob\nDiscover G2 Barrowdrob Y1 Kirril\nDiscover Y1 Barrowdrob B1 Threndor\n\n56) SirRuthvenMurgatroyd: Move G1 Beta Agentofchaos\n\n57) agentofchaos: Attack G1 Agentofchaos\n\n58) SirRuthvenMurgatroyd: Build Y2 Beta\n\n59) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G1 Betelgeuse\nBuild G3 Kirril\nBuild G3 Agentofchaos\n\n60) SirRuthvenMurgatroyd: Sacrifice Y2 Beta\nMove Y1 Beta Kirril\nMove Y1 Kirril Sirruthvenmurgatroyd\n\n61) agentofchaos: Move G3 Kirril Sirruthvenmurgatroyd\n\n62) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n63) agentofchaos: Move Y1 Threndor Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Y\n\n\nHomeworlds Online (SDG# 21016)\nVariants: "Sinister"\nStarted: 2011.10.23, Ended: 2012.1.12\nParticipants: lorgar (S), daselva (N), raster51 (E)\nWinner: daselva\n\n1) daselva: Homeworld B1 R2 G3\n\n2) raster51: Homeworld G1 B2 R3\n\n3) lorgar: Homeworld Y3 G2 B3\n\n4) daselva: Build G1 Daselva\n\n5) raster51: Build R1 Raster51\n\n6) lorgar: Build B1 Lorgar\n\n7) daselva: Build G1 Daselva\n\n8) raster51: Build R1 Raster51\n\n9) lorgar: Trade B1 R1 Lorgar\n\n10) daselva: Trade G1 Y1 Daselva\n\n11) raster51: Trade R1 Y1 Raster51\n\n12) lorgar: Build B1 Lorgar\n\n13) daselva: Build G1 Daselva\n\n14) raster51: Build R1 Raster51\n\n15) lorgar: Trade B1 G1 Lorgar\n\n16) daselva: Discover G1 Daselva R3 S1\n\n17) raster51: Discover R1 Raster51 G3 S2\n\n18) lorgar: Discover G1 Lorgar B1 Khayam\n\n19) daselva: Build G2 S1\n\n20) raster51: Build R1 S2\n\n21) lorgar: Build G2 Khayam\n\n22) daselva: Trade G1 B1 Daselva\n\n23) raster51: Build R2 S2\n\n24) lorgar: Trade G2 R2 Khayam\n\n25) daselva: Sacrifice B1 Daselva\nTrade G2 Y2 S1\n\n26) raster51: Build R2 Raster51\n\n27) lorgar: Build G1 Khayam\n\n28) daselva: Build G2 S1\n\n29) raster51: Discover R2 Raster51 R3 Mars\n\n30) lorgar: Trade G1 Y1 Khayam\n\n31) daselva: Trade G3 B3 Daselva\n\n32) raster51: Build R3 Raster51\n\n33) lorgar: Build G1 Khayam\n\n34) daselva: Sacrifice G1 S1\nBuild B1 Daselva\n\n35) raster51: Move R3 Raster51 Mars\n\n36) lorgar: Discover G1 Khayam B3 Ramo\n\n37) daselva: Move B1 Daselva S1\n\n38) raster51: Move Y1 Raster51 Mars\n\n39) lorgar: Move R2 Khayam Mars\nCatastrophe Mars Red\n\n40) daselva: Build B1 S1\n\n41) raster51: Trade R1 Y1 Raster51\n\n42) lorgar: Build B2 Lorgar\n\n43) daselva: Build B2 S1\n\n44) raster51: Pass\n\n45) lorgar: Build G1 Khayam\n\n46) daselva: Sacrifice Y2 S1\nMove B1 S1 Raster51\nMove B1 S1 Raster51\n\n47) raster51: Attack B1N Raster51\n\n48) lorgar: Discover G1 Khayam B3 Tarama\n\n49) daselva: Sacrifice Y1 Daselva\nMove B2 S1 Raster51\nCatastrophe Raster51 B\n\n50) raster51: Build Y1 Raster51\n\n51) lorgar: Build G2 Ramo\n\n52) daselva: Trade B3 G3 Daselva\n\n53) raster51: Move Y1 Raster51 S2\n\n54) lorgar: Trade G1 Y1 Ramo\n\n55) daselva: Build G1 Daselva\n\n56) raster51: Move R1 S2 Raster51\n\n57) lorgar: Build Y2 Ramo\n\n58) daselva: Trade G3 Y3 Daselva\n\n59) raster51: Build Y2 Raster51\n\n60) lorgar: Build G2 Ramo\n\n61) daselva: Build G3 S1\n\n62) raster51: Discover Y1 Raster51 B3 Vi1\n\n63) lorgar: Sacrifice G2 Ramo\nBuild G2 Khayam\nBuild G3 Ramo\n\n64) daselva: Build Y2 Daselva\n\n\n65) raster51: Trade Y1 B1 Vi1\n\n66) lorgar: Build G3 Tarama\n\n67) daselva: Move G1 Daselva Vi1\n\n68) raster51: Move Y2 Raster51 Vi1\n\n69) lorgar: Move Y1 Ramo Daselva\n\n70) daselva: Sacrifice Y3 Daselva\nMove G3 S1 Raster51\nMove G2 S1 Raster51\nMove G1 Vi1 Raster51\nCatastrophe Raster51 G\n\n\tdaselva: thanks for playing\n\nHomeworlds Online (SDG# 21028)\nVariants: "Hard time"\nStarted: 2011.10.27, Ended: 2011.11.17\nParticipants: jsb (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) jsb: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) jsb: Build G1 Jsb\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) jsb: Discover G1 Jsb Y2 Larch\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) jsb: Build G1 Larch\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) jsb: Discover G1 Larch B3 Pine\n\n11) SilentTitan: Trade Y2 R2 Silenttitan\n\n12) jsb: Build G1 Jsb\n\n13) SilentTitan: Move Y1 Silenttitan Pine\n\tSilentTitan: so adam tells me this is like your second game of this... any questions I can answer?\n\n14) jsb: Trade G1 R1 Pine\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Pine\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\tjsb: Hey, Silent - no big ?'s right now. I'm just feeling my way through the game a bit, and am hoping to lose enough games that I eventually figure out what works and what doesn't. \r\n\n\n16) jsb: Attack Y1N Pine\n\tjsb: attack y1n pine\r\n\n\n17) SilentTitan: Sacrifice R2 Silenttitan\nAttack Y1 Pine South\nAttack R1 Pine South\n\tjsb: My mistake - typed into the wrong textarea. \n\tSilentTitan: no problem ....we've all done it\n\n18) jsb: Trade G1 R1 Jsb\n\n19) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n20) jsb: Build G1 Larch\n\n21) SilentTitan: Build Y3 Sol\n\n22) jsb: Discover G1 Larch B3 Oak\n\n23) SilentTitan: Build Y3 Sol\n\n24) jsb: Move G1 Larch Oak\n\n25) SilentTitan: Trade Y2 G2 Silenttitan\n\n26) jsb: Trade G1 R1 Oak\n\n27) SilentTitan: Discover Y3 Sol Y2 Alpha\n\n28) jsb: Build R2 Jsb\n\n29) SilentTitan: Discover Y3 Sol Y2 Beta\n\n30) jsb: Move R2 Jsb Beta\n\n31) SilentTitan: Sacrifice R1 Pine\nAttack R2 Beta South\n\n32) jsb: Build G1 Jsb\n\n33) SilentTitan: Sacrifice Y2 Pine\nMove Y3 Alpha Jsb\nMove Y3 Beta Jsb\n\n\nHomeworlds Online (SDG# 21074)\nVariants: "Hard time"\nStarted: 2011.10.29, Ended: 2011.10.29\nParticipants: SilentTitan (S), Harvey (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 21087)\nVariants: "Hard time"\nStarted: 2011.10.30, Ended: 2011.11.19\nParticipants: agentofchaos (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld B1 R3 G3\n\tSilentTitan: What? you have me on the ropes in one game ... so you start another .... oh... will the punishment never end. \n\n3) SilentTitan: Build G1 Silenttitan\n\tagentofchaos: On the other hand this could be your opportunity for payback! \n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) agentofchaos: B R2 Agentofchaos\n\n13) SilentTitan: Trade R2 Y2 Silenttitan\n\n14) agentofchaos: Trade R2 Y2 Agentofchaos\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) agentofchaos: B R2 Agentofchaos\n\n17) SilentTitan: Discover Y2 Silenttitan G3 Sol\n\n18) agentofchaos: Discover R2 Agentofchaos Y2 Glaxo\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n20) agentofchaos: B G1 Agentofchaos\n\n21) SilentTitan: Trade Y3 B3 Silenttitan\n\n22) agentofchaos: Move G1 Agentofchaos Glaxo\n\n23) SilentTitan: Build Y3 Silenttitan\n\n24) agentofchaos: Discover Y1 Agentofchaos G2 Gelfhome\n\n25) SilentTitan: Sacrifice Y2 Sol\nMove B3 Silenttitan Sol\nDiscover Y3 Silenttitan R3 Sole\n\n26) agentofchaos: Build R2 Glaxo\n\n27) SilentTitan: Move B3 Sol Glaxo\n\n\nHomeworlds Online (SDG# 21112)\nVariants: "Unrated, Sinister"\nStarted: 2011.11.4, Ended: 2011.11.28\nParticipants: johannz (S), jh3 (N), jsb (E)\nWinner: jsb\n\n1) jh3: Homeworld G3 B1 R3\n\n2) jsb: Homeworld B1 G2 Y3\n\n3) johannz: Homeworld B3 G2 Y3\n\tjsb: Which way is "left" in this?\n\n4) jh3: Build R1 Jh3\n\n5) jsb: Build Y1 Jsb\n\n6) johannz: Build Y1 Johannz\n\n7) jh3: Trade R1 Y1 Jh3\n\n8) jsb: Trade Y1 B1 Jsb\n\n9) johannz: Discover Y1 Johannz G1 Sparkles\n\n10) jh3: Build Y1 Jh3\n\n11) jsb: Discover B1 Jsb G3 Tomato\n\n12) johannz: Build Y1 Sparkles\n\n13) jh3: Trade Y1 B1 Jh3\n\n14) jsb: Build B2 Tomato\n\tjh3: Which way is left?\r\n\n\n15) johannz: Build Y1 Johannz\n\tjohannz: I think that johannz is attacking jh3, jh3 is attacking jsb, and jsb is attacking johannz\n\n16) jh3: Discover B1 Jh3 G2 Sparkly_tomato\n\tjsb: Does the game end when one person defeats the person to their left, or is it last-man-standing?\r\n\n\n17) jsb: Build Y2 Jsb\n\n18) johannz: Build Y2 Sparkles\n\tjohannz: As soon as someone kills the player to their left, the game ends in their victory. If you eliminate the player to your right, the game continues.\n\n19) jh3: Build B2 Sparkly_tomato\n\n20) jsb: Discover Y2 Jsb G3 Riker\n\n21) johannz: Trade Y3 B3 Johannz\n\n22) jh3: Trade B2 Y2 Sparkly_tomato\n\n23) jsb: Move Y2 Riker Sparkles\nCatastrophe Sparkles Y\n\n24) johannz: Build B2 Johannz\n\n25) jh3: Build B2 Sparkly_tomato\n\n26) jsb: Build Y1 Jsb\n\n27) johannz: Trade B2 R2 Johannz\n\n28) jh3: Discover B1 Sparkly_tomato G1 Spark1y_tomato\n\n29) jsb: Trade B2 G2 Tomato\n\n30) johannz: Build Y1 Johannz\n\n31) jh3: Build B2 Sparkly_tomato\n\n32) jsb: Build Y2 Jsb\n\n33) johannz: Build Y2 Johannz\n\n34) jh3: Move Y2 Sparkly_tomato Spark1y_tomato\n\n35) jsb: Discover Y2 Jsb B3 Mongo\n\n36) johannz: Trade Y1 G1 Johannz\n\n37) jh3: Trade B2 Y2 Sparkly_tomato\n\n38) jsb: Move Y2 Mongo Spark1y_tomato\n\n39) johannz: Build R1 Johannz\n\n40) jh3: Move B2 Sparkly_tomato Spark1y_tomato\n\n41) jsb: Build B2 Tomato\n\n42) johannz: Sacrifice Y2 Johannz\nMove R2 Johannz Spark1y_tomato\nMove R2 Spark1y_tomato Tomato\n\n43) jh3: Discover B1 Spark1y_tomato G3 Cucumber\n\n44) jsb: Sacrifice Y2 Spark1y_tomato\nDiscover G2 Tomato Y1 Nickel\nMove B2 Tomato Nickel\n\n45) johannz: Build Y2 Johannz\n\n46) jh3: Move B2 Spark1y_tomato Cucumber\n\n47) jsb: Trade Y3 R3 Jsb\n\n48) johannz: Attack B1E Tomato\n\n49) jh3: Move Y2 Spark1y_tomato Cucumber\n\n50) jsb: Move B2 Nickel Cucumber\n\n51) johannz: Build B2 Tomato\n\n52) jh3: Build Y2 Cucumber\n\n53) jsb: Build B2 Cucumber\nCatastrophe Cucumber Blue\n\tjohannz: sorry, missed the email that it was my turn.\n\n54) johannz: Build Y3 Johannz\n\n55) jh3: Build R1 Jh3\n\n56) jsb: Build G1 Nickel\n\n57) johannz: Sacrifice Y3 Johannz\nMove G1 Johannz Nickel\nMove B1 Tomato Jsb\nMove B2 Tomato Jsb\n\n58) jh3: Move R1 Jh3 Sparkly_tomato\n\n59) jsb: Sacrifice G2 Nickel\nBuild Y3 Jsb\nBuild R1 Jsb\n\n60) johannz: Build B1 Jsb\nCatastrophe Jsb B\n\n61) jh3: Sacrifice Y2 Sparkly_tomato\nMove Y2 Cucumber Jsb\nMove Y2 Cucumber Jsb\nCatastrophe Jsb Y\n\n62) jsb: Discover G1 Nickel B2 Quarter\n\n63) johannz: Discover G1 Nickel Y2 Dime\n\n64) jh3: Build Y1 Jh3\n\n65) jsb: Build G1 Quarter\n\n66) johannz: Build G1 Dime\n\n67) jh3: Trade Y1 B1 Jh3\n\n68) jsb: Trade G1 Y1 Quarter\n\n69) johannz: Sacrifice Y2 Johannz\nMove G1 Dime Jh3\nMove G1 Dime Jh3\n\n70) jh3: Attack G1S Jh3\n\n71) jsb: Build G1 Quarter\n\n72) johannz: Build G2 Jh3\nCatastrophe Jh3 G\n\n73) jh3: Trade B1 G1 Jh3\n\n74) jsb: Trade G1 B1 Quarter\n\n75) johannz: Build B1 Johannz\n\n76) jh3: Build R1 Jh3\n\n77) jsb: Discover B1 Quarter G1 Penny\n\n78) johannz: Move R1 Johannz Jh3\n\n79) jh3: Discover R1 Jh3 G2 Farthing\n\n80) jsb: Sacrifice Y1 Quarter\nMove B1 Penny Johannz\nCatastrophe Johannz Blue\n\n81) johannz: Build Y1 Johannz\n\n82) jh3: Attack R1S Jh3\n\n83) jsb: Sacrifice R1 Jsb\nPass\n\n84) johannz: Build R1 Tomato\n\tjsb: Adam, if you wanted to, could you sacrifice y1 at home to move r2 from tomato home? You'd be shipless at home briefly but would not end your turn shipless. \r\n\n\tjsb: Adam, if you wanted to, could you sacrifice y1 at home to move r2 from tomato home? You'd be shipless at home briefly but would not end your turn shipless. \r\n\n\tjohannz: When the last ship leaves a system it instantly is lost. \n\n85) jh3: Move R1 Jh3 Farthing\n\n86) jsb: Build G1 Quarter\n\n87) johannz: Move Y1 Johannz Tomato\n\n88) jh3: Build G1 Jh3\n\n89) jsb: Trade G1 Y1 Quarter\n\n90) johannz: Discover R1 Tomato B2 Pence\n\n91) jh3: Move G1 Jh3 Farthing\n\n92) jsb: Build Y2 Quarter\n\n93) johannz: Move R2 Tomato Quarter\n\n94) jh3: Build Y2 Jh3\n\n95) jsb: Sacrifice Y2 Quarter\nDiscover Y1 Quarter B3 Euro\nMove G1 Quarter Euro\n\n96) johannz: Build Y2 Tomato\n\n97) jh3: Move Y2 Jh3 Farthing\n\n98) jsb: Build Y2 Euro\n\n99) johannz: Build Y2 Johannz\n\n100) jh3: Build G1 Jh3\n\n101) jsb: Build G3 Euro\n\n102) johannz: Discover Y1 Johannz G3 Occupyjustin\n\n103) jh3: Sacrifice Y2 Farthing\nMove G1 Jh3 Johannz\nMove G1 Jh3 Johannz\n\n104) jsb: Move G1 Euro Johannz\nCatastrophe Johannz Green\n\n\tjsb: Good game, everybody. \n\tjh3: I'm happy I kept my home world intact.\n\nHomeworlds Online (SDG# 21114)\nStarted: 2011.11.5, Ended: 2011.11.9\nParticipants: disaac (S), Onii77 (N)\nWinner: disaac\n\n1) Onii77: Homeworld G3 B2 Y3\n\n2) disaac: H G3 Y1 B3\n\tdisaac: h LG SY LB\n\tdisaac: h g3 y1 B3\n\n3) Onii77: Build Y1 Onii77\n\n4) disaac: Build B1 Disaac\n\n5) Onii77: Build Y1 Onii77\n\tdisaac: OK. I am starting to get the hang of the commands a bit now.\n\n6) disaac: B B1 Disaac\n\n7) Onii77: Trade Y1 G1 Onii77\n\n8) disaac: Discover B1 Disaac G2 Peace\n\tOnii77: Oh lol. I didn't even see the chat before..\n\n9) Onii77: Discover G1 Onii77 B1 Profit\n\n10) disaac: B B2 Peace\n\n11) Onii77: Build G1 Profit\n\n12) disaac: Trade B2 Y2 Peace\n\n13) Onii77: Trade Y1 R1 Onii77\n\tOnii77: April and Sam are home. The game is going to slow down. I have chores :)\n\tdisaac: understood. If you want to drop it that is fine.\n\tdisaac: I will leave mine up for now, and if you want to resume, you can send a text to my phone.\n\n14) disaac: Trade B3 R3 Disaac\n\n15) Onii77: Trade G1 R1 Profit\n\n16) disaac: Build B2 Peace\n\n17) Onii77: Build Y1 Onii77\n\n18) disaac: Trade B2 R2 Peace\n\n19) Onii77: Move Y1 Onii77 Profit\n\n20) disaac: Move R2 Peace Profit\n\n21) Onii77: Build R1 Profit\n\tdisaac: I have changed my sdg profile to point to my work email for now so I will get it on the phone.\n\n22) disaac: Attack G1N Profit\n\n23) Onii77: Move R1 Onii77 Profit\n\tOnii77: Wow. That's not good...\n\n24) disaac: Pass\n\tOnii77: !!! Hmmmm looks like we have been playing incorrectly. It appears that causing a catastrophe takes a turn.\n\tdisaac: It shouldn't... it is part of your turn though...\n\n25) Onii77: Pass\nCatastrophe Profit Red\n\tdisaac: I have passed back to you so you can trigger the catastrophe. There is an implementation request about this in the sdg-wiki page to not allow catastrophes to force an explicit pass from the player causing it.\n\tOnii77: Next game we'll play the right way. :)\n\tdisaac: Play \r\nOn your turn, do one of these three things: perform a single free action in a system that you occupy, sacrifice one of your ships to take a certain number of actions of that ship's color, or take no action at all. After you do one of these three things, you **may** trigger catastrophes for any overpopulations that exist.\n\tdisaac: I believe that the issue is that when you made your move, you should have included a carriage-return followed by a command to trigger the catastrophe\n\tdisaac: pass\r\ncatastrophe profit r\n\n26) disaac: Trade Y2 R2 Peace\n\tOnii77: Ahh I get it now :)\n\n27) Onii77: Move Y1 Profit Onii77\n\n28) disaac: Build G1 Profit\n\n29) Onii77: Build Y1 Onii77\n\n30) disaac: Build B2 Peace\n\n31) Onii77: Trade Y1 R1 Onii77\n\n32) disaac: Trade R2 Y2 Peace\n\n33) Onii77: Build R1 Onii77\n\n34) disaac: Sacrifice Y2 Peace\nMove G1 Profit Onii77\nMove G1 Profit Onii77\n\n35) Onii77: A G1 Onii77\n\n36) disaac: B G1 Onii77\nC Onii77 G\n\n37) Onii77: S Y3 Onii77\nMove R1 Onii77 Disaac\nMove R1 Onii77 Disaac\nPass\n\n38) disaac: Sacrifice R3 Disaac\nAttack R1 Disaac\nAttack R1 Disaac\nPass\n\n39) Onii77: Trade Y1 G1 Onii77\n\n40) disaac: M R1 Disaac Onii77\n\tOnii77: This is not going well. :)\n\n\tdisaac: I don't know... Seems to be going fine for me! :)\n\nHomeworlds Online (SDG# 21105)\nVariants: "Hard time"\nStarted: 2011.11.6, Ended: 2011.11.11\nParticipants: test1 (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) test1: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n\tSilentTitan: are you there?\n\nHomeworlds Online (SDG# 21117)\nVariants: "Hard time"\nStarted: 2011.11.6, Ended: 2011.11.28\nParticipants: agentofchaos (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld B3 R2 G3\n\n2) agentofchaos: Homeworld R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\tagentofchaos: Thanks, you too\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) goulo: Build G1 Goulo\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) goulo: Trade G1 R1 Goulo\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) goulo: Build R2 Goulo\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) goulo: Discover R2 Goulo G1 Smeraldeto\n\n14) agentofchaos: Trade R1 G1 Agentofchaos\n\n15) goulo: Trade R1 B1 Goulo\n\n16) agentofchaos: Trade G1 B1 Agentofchaos\n\n17) goulo: Build G1 Goulo\n\n18) agentofchaos: Discover R2 Agentofchaos Y3 Paralandroid\n\n19) goulo: Trade G1 R1 Goulo\n\n20) agentofchaos: Build G1 Agentofchaos\n\n21) goulo: Build G1 Goulo\n\n22) agentofchaos: Build G2 Agentofchaos\n\n23) goulo: Build G2 Goulo\n\n24) agentofchaos: M G2 Agentofchaos Paralandroid\n\n25) goulo: Discover G1 Goulo Y1 Citroneto\n\n26) agentofchaos: Build Y2 Agentofchaos\n\n27) goulo: Build Y2 Goulo\n\n28) agentofchaos: D Y2 Agentofchaos B3 Luvarola\n\n29) goulo: Sacrifice G3 Goulo\nBuild G2 Goulo\nBuild G3 Goulo\nBuild G3 Citroneto\n\n30) agentofchaos: Sacrifice Y2 Luvarola\nMove G2 Paralandroid Citroneto\nMove G2 Citroneto Goulo\nCatastrophe Goulo G\n\n31) goulo: Move Y1 Goulo Smeraldeto\n\n32) agentofchaos: Build Y2 Agentofchaos\n\n33) goulo: Sacrifice G3 Citroneto\nBuild Y2 Smeraldeto\nBuild Y3 Goulo\nBuild Y3 Goulo\n\n34) agentofchaos: D Y2 Agentofchaos R3 Dragonfeld\n\n35) goulo: Discover Y3 Goulo B1 Mirteleto\n\n36) agentofchaos: Move R2 Paralandroid Citroneto\n\n37) goulo: Discover G1 Citroneto Y3 Citronego\n\n38) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R1 Citroneto\n\n39) goulo: Trade R1 G1 Goulo\n\n40) agentofchaos: Build G2 Agentofchaos\n\n41) goulo: Sacrifice G1 Citronego\nBuild Y3 Mirteleto\n\n42) agentofchaos: Trade B1 R1 Agentofchaos\n\n43) goulo: Build R3 Smeraldeto\n\n44) agentofchaos: Move R1 Agentofchaos Dragonfeld\n\n45) goulo: Discover R3 Smeraldeto G3 Smeraldego\n\n46) agentofchaos: D R1 Dragonfeld G1 Doompulse\n\n47) goulo: Build G2 Goulo\n\n48) agentofchaos: Sacrifice Y2 Dragonfeld\nMove R1 Citroneto Goulo\nMove R2 Citroneto Goulo\n\n49) goulo: Sacrifice R2 Smeraldeto\nAttack R1 Goulo\nAttack R2 Goulo\n\n50) agentofchaos: T G2 Y2 Agentofchaos\n\n51) goulo: Sacrifice Y2 Goulo\nMove R2 Goulo Doompulse\nMove G1 Goulo Mirteleto\n\n52) agentofchaos: Build R2 Doompulse\n\n53) goulo: Sacrifice G2 Goulo\nBuild R3 Doompulse\nBuild R3 Smeraldego\nCatastrophe Doompulse R\n\n54) agentofchaos: Trade Y2 R2 Agentofchaos\n\n55) goulo: Sacrifice Y2 Smeraldeto\nMove R3 Smeraldego Agentofchaos\nMove R3 Smeraldego Agentofchaos\nCatastrophe Agentofchaos R\n\n56) agentofchaos: Build G1 Agentofchaos\n\n57) goulo: Move Y3 Mirteleto Agentofchaos\n\n\tagentofchaos: well played\n\tgoulo: thanks for the game! it was epic. :)\n\nHomeworlds Online (SDG# 21067)\nVariants: "Hard time"\nStarted: 2011.11.8, Ended: 2012.5.4\nParticipants: agentofchaos (S), Mandrel (W), jsb (N), MagicJohn (E)\nWinner: Mandrel\n\n1) jsb: Homeworld B3 G1 Y3\n\n2) MagicJohn: Homeworld Y2 B1 G3\n\n3) agentofchaos: Homeworld R2 B3 G3\n\n4) Mandrel: Homeworld R1 B3 G3\n\tagentofchaos: Have fun everyone\n\n5) jsb: Build Y1 Jsb\n\n6) MagicJohn: Build G1 Magicjohn\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) Mandrel: Build G1 Mandrel\n\n9) jsb: Discover Y1 Jsb G2 Mozart\n\n10) MagicJohn: Trade G1 Y1 Magicjohn\n\n11) agentofchaos: Trade G1 Y1 Agentofchaos\n\n12) Mandrel: Trade G1 Y1 Mandrel\n\n13) jsb: Build Y1 Mozart\n\n14) MagicJohn: Discover Y1 Magicjohn G3 Ba-hoc\n\n15) agentofchaos: Build Y2 Agentofchaos\n\n16) Mandrel: Build Y2 Mandrel\n\n17) jsb: Build Y2 Jsb\n\n18) MagicJohn: Build G1 Magicjohn\n\n19) agentofchaos: Discover Y2 Agentofchaos G1 Wopolsa\n\n20) Mandrel: Discover Y1 Mandrel G2 Skip\n\n21) jsb: Trade Y2 G2 Jsb\n\n22) MagicJohn: Trade G1 R1 Magicjohn\n\n23) agentofchaos: Build Y2 Wopolsa\n\n24) Mandrel: Build G1 Mandrel\n\n25) jsb: Trade Y3 R3 Jsb\n\n26) MagicJohn: Move Y1 Ba-hoc Wopolsa\n\n27) agentofchaos: Move Y2 Wopolsa Skip\n\n28) Mandrel: Trade G1 R1 Mandrel\n\n29) jsb: Build R1 Jsb\n\n30) MagicJohn: Build G1 Magicjohn\n\n31) agentofchaos: Trade Y1 R1 Agentofchaos\n\n32) Mandrel: Build R2 Mandrel\n\n33) jsb: Sacrifice Y1 Mozart\nMove R1 Jsb Mozart\n\n34) MagicJohn: Build R2 Magicjohn\n\n35) agentofchaos: Build R2 Agentofchaos\n\n36) Mandrel: Move R2 Mandrel Mozart\n\n37) MagicJohn: Discover R2 Magicjohn Y3 Minormystery\n\n38) agentofchaos: Sacrifice R2 Agentofchaos\nAttack Y1W Skip\nAttack Y1E Wopolsa\n\n39) Mandrel: Attack Y1N Mozart\n\n40) MagicJohn: Sacrifice G1 Magicjohn\nBuild R2 Minormystery\n\n41) agentofchaos: Build G1 Agentofchaos\n\n42) Mandrel: Attack R1N Mozart\n\n43) MagicJohn: Discover R2 Minormystery Y2 Minorsetback\n\n44) agentofchaos: Trade G1 Y1 Agentofchaos\n\n45) Mandrel: Build G1 Mandrel\n\n46) MagicJohn: Move R2 Minorsetback Jsb\n\n47) agentofchaos: Trade Y1 B1 Agentofchaos\n\n48) Mandrel: Trade G1 B1 Mandrel\n\n49) MagicJohn: Sacrifice G3 Magicjohn\nBuild R2 Jsb\nBuild R3 Magicjohn\nBuild R3 Minormystery\n\n50) agentofchaos: Trade R1 Y1 Agentofchaos\n\n51) Mandrel: Move B1 Mandrel Mozart\n\n52) MagicJohn: Trade R2 Y2 Jsb\n\n53) agentofchaos: Sacrifice B1 Agentofchaos\nTrade Y2 R2 Wopolsa\n\n54) Mandrel: Discover R1 Mozart G3 Decay\n\n55) MagicJohn: Trade R1 G1 Magicjohn\n\n56) agentofchaos: Build R1 Wopolsa\n\n57) Mandrel: Build B1 Mozart\n\n58) MagicJohn: Attack G2N Jsb\n\n59) agentofchaos: Build G1 Agentofchaos\n\n60) Mandrel: Build B1 Mozart\n\n61) MagicJohn: Discover R3 Minormystery B1 Minorproblen\n\n62) agentofchaos: Build Y1 Agentofchaos\n\n63) Mandrel: Move B1 Mozart Decay\n\n64) MagicJohn: Trade R3 G3 Minorproblen\n\n65) agentofchaos: Build Y2 Wopolsa\n\n66) Mandrel: Build Y3 Mandrel\n\n67) MagicJohn: Build Y3 Jsb\n\n68) agentofchaos: Trade Y1 R1 Agentofchaos\n\n69) Mandrel: Build R3 Decay\n\n70) MagicJohn: Attack R3N Jsb\n\n71) agentofchaos: Sacrifice Y2 Wopolsa\nMove Y1 Skip Jsb\nMove Y2 Skip Jsb\nCatastrophe Jsb Y\n\n72) Mandrel: Build R3 Mozart\n\n73) MagicJohn: Trade R2 Y2 Jsb\n\n74) agentofchaos: Build Y1 Agentofchaos\n\n75) Mandrel: Build B2 Decay\n\n76) MagicJohn: Build G1 Minorproblen\n\n77) agentofchaos: Build Y1 Wopolsa\n\n78) Mandrel: Build Y2 Mozart\n\n79) MagicJohn: Move R2 Minormystery Minorproblen\n\n80) Mandrel: Build B2 Decay\n\n81) MagicJohn: Trade R2 B2 Minorproblen\n\n82) Mandrel: Sacrifice Y3 Mandrel\nMove B1 Decay Magicjohn\nMove B2 Decay Magicjohn\nMove B2 Decay Magicjohn\nCatastrophe Magicjohn B\n\n\tMagicJohn: This game is waaaaay beyond repair.... and apparently I can't count on you to make four or five major blunders in a row. Well played.\n\tMandrel: Good game!\n\nHomeworlds Online (SDG# 21147)\nStarted: 2011.11.10, Ended: 2011.11.23\nParticipants: disaac (S), Onii77 (N)\nWinner: disaac\n\n1) Onii77: H G3 B2 R3\n\n2) disaac: H G2 Y1 B3\n\n3) Onii77: B R1 Onii77\n\n4) disaac: B B1 Disaac\n\n5) Onii77: T R1 Y1 Onii77\n\n6) disaac: D B1 Disaac G3 Verdance\n\n7) Onii77: B R1 Onii77\n\n8) disaac: Build B1 Disaac\n\n9) Onii77: D R1 Onii77 G1 Evo\n\n10) disaac: T B1 R1 Disaac\n\n11) Onii77: B Y1 Onii77\n\n12) disaac: B B1 Disaac\n\n13) Onii77: B Y2 Onii77\n\n14) disaac: B B1 Verdance\n\n15) Onii77: M Y2 Onii77 Evo\n\tOnii77: These were going to my spam folder. That's why I kept missing them. \n\n16) disaac: B B2 Verdance\n\n17) Onii77: Move Y2 Evo Verdance\n\n18) disaac: Sacrifice R1 Disaac\nAttack Y2 Verdance\n\n19) Onii77: B R1 Evo\n\n20) disaac: Trade B2 R2 Verdance\n\n21) Onii77: B Y2 Onii77\n\n22) disaac: B Y2 Verdance\n\n23) Onii77: S Y2 Onii77\nM R3 Onii77 Evo\nM R3 Evo Verdance\n\n24) disaac: S Y2 Verdance\nM R2 Verdance Evo\nM R2 Evo Onii77\n\n25) Onii77: A Y2 Verdance\n\n26) disaac: A Y1 Onii77\n\n27) Onii77: S Y2 Verdance\nM R3 Verdance Evo\nM R3 Evo Onii77\n\n28) disaac: B R1 Onii77\n\n29) Onii77: A Y1 Onii77\n\n30) disaac: B R2 Onii77\nC Onii77 R\n\n31) Onii77: B Y2 Onii77\n\n32) disaac: B B2 Verdance\n\n33) Onii77: S Y1 Onii77\nM R1 Evo Verdance\n\n34) disaac: T B2 R2 Verdance\n\n35) Onii77: S Y1 Onii77\nM R1 Verdance Disaac\n\n36) disaac: B R1 Verdance\n\n37) Onii77: A B1 Disaac\n\n38) disaac: S R2 Verdance\nAttack R1 Disaac\nA B1 Disaac\n\n39) Onii77: B R2 Evo\n\n40) disaac: B R2 Verdance\n\n41) Onii77: B Y1 Onii77\n\n42) disaac: T B1 Y1 Verdance\n\n43) Onii77: B Y2 Onii77\n\n44) disaac: D R1 Verdance G1 Toad\n\n45) Onii77: T Y1 B1 Onii77\n\n46) disaac: B R2 Disaac\n\n47) Onii77: Sacrifice B1 Onii77\nTrade R2 G2 Evo\n\n48) disaac: M R2 Verdance Evo\n\n49) Onii77: Attack R2 Evo\n\n50) disaac: Move R2 Disaac Verdance\n\n51) Onii77: M Y2 Onii77 Evo\n\tdisaac: I need to not take my turn in the middle of the night.\r\nPlus I found that you can only undo one move. :)\n\tOnii77: Uugh\n\n52) disaac: Build R2 Disaac\n\n53) Onii77: M R1 Evo Onii77\n\n54) disaac: Build R3 Toad\n\n55) Onii77: S G2 Evo\nB R3 Onii77\nB R3 Evo\n\n56) disaac: Sacrifice B1 Disaac\nTrade R3 G3 Toad\n\n57) Onii77: M R3 Evo Verdance\n\n58) disaac: Sacrifice G3 Toad\nBuild R3 Verdance\nBuild Y1 Verdance\nBuild Y2 Verdance\n\n59) Onii77: B Y3 Onii77\n\n60) disaac: Sacrifice R2 Verdance\nAttack R3 Verdance\nPass\n\n61) Onii77: M Y2 Evo Verdance\nC Verdance Y\n\n62) disaac: Trade B1 Y1 Verdance\n\n63) Onii77: M R3 Onii77 Toad\n\n64) disaac: Move R3 Verdance Evo\n\n65) Onii77: B R2 Evo\n\n66) disaac: Attack R2 Evo\n\n67) Onii77: M R1 Onii77 Evo\nC Evo R\n\n68) disaac: Trade R2 Y2 Disaac\n\n69) Onii77: A R1 Toad\n\n70) disaac: Discover Y1 Verdance G1 Evo2\n\n71) Onii77: T Y2 R2 Onii77\n\n72) disaac: Build B1 Disaac\n\n73) Onii77: B Y1 Onii77\n\n74) disaac: Build Y2 Evo2\n\n75) Onii77: M Y1 Onii77 Toad\n\n76) disaac: Move Y2 Disaac Verdance\n\n77) Onii77: T Y3 B3 Onii77\n\n78) disaac: Build Y2 Verdance\n\n79) Onii77: D R3 Toad Y3 Alac\n\n80) disaac: Move Y2 Verdance Toad\n\n81) Onii77: B B1 Onii77\n\n82) disaac: Sacrifice R1 Disaac\nAttack R1 Toad\n\n83) Onii77: B Y3 Toad\n\n84) disaac: Build Y3 Verdance\n\n85) Onii77: S B1 Onii77\nT Y3 R3 Toad\n\n86) disaac: B R1 Toad\n\n87) Onii77: A Y2 Toad\n\n88) disaac: Build R1 Verdance\n\n89) Onii77: D R3 Toad Y3 Rity\n\n90) disaac: Move R1 Verdance Evo2\n\n91) Onii77: S R2 Onii77\nA R1 Toad\nA R1 Toad\n\n92) disaac: Build R2 Evo2\n\n93) Onii77: B B1 Onii77\n\n94) disaac: S Y3 Verdance\nM B1 Disaac Verdance\nM B1 Verdance Evo2\nM B1 Evo2 Onii77\nC Onii77 B\n\n\tdisaac: Did you just throw the game. Or was that a complete oversight? You have had me evenly matched here for a awhile.\n\tOnii77: Total oversight!\n\tdisaac: I had been trying to figure out how I could get two more blues into there for a while. I figured that would be about the only way to get rid of the large there.\n\nHomeworlds Online (SDG# 21153)\nVariants: "Hard time"\nStarted: 2011.11.11, Ended: 2011.11.30\nParticipants: Salmonax (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Salmonax: Homeworld Y3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Salmonax: Build G1 Salmonax\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Salmonax: Build G1 Salmonax\n\n7) dlwillson: B G1 Dlwillson\n\n8) Salmonax: Trade G1 R1 Salmonax\n\n9) dlwillson: D G1 Dlwillson B2 Ringo\n\n10) Salmonax: Trade G1 Y1 Salmonax\n\n11) dlwillson: B G1 Dlwillson\n\n12) Salmonax: Build Y1 Salmonax\n\n13) dlwillson: B G1 Ringo\n\n14) Salmonax: Build G2 Salmonax\n\n15) dlwillson: B G2 Ringo\n\n16) Salmonax: Sacrifice Y1 Salmonax\nDiscover G2 Salmonax Y1 Lykke\n\n17) dlwillson: T G2 Y2 Ringo\n\n18) Salmonax: Build G2 Salmonax\n\n19) dlwillson: B Y2 Ringo\n\n20) Salmonax: Discover G2 Lykke B2 Burlerd\n\n21) dlwillson: D G1 Ringo B1 Paul\n\n22) Salmonax: Sacrifice G2 Salmonax\nBuild R1 Salmonax\nBuild R2 Salmonax\n\n23) dlwillson:\nB G2 Paul\n\n24) Salmonax: Build G2 Burlerd\n\n25) dlwillson: S G3 Dlwillson\nB R2 Dlwillson\nB G3 Ringo\nB G3 Dlwillson\n\n26) Salmonax: Discover Y1 Salmonax B1 Crestible\n\n27) dlwillson: M R1 Dlwillson Ringo\n\n28) Salmonax: Move R1 Salmonax Crestible\n\n29) dlwillson: T G1 B1 Ringo\n\n30) Salmonax: Move Y1 Crestible Burlerd\n\n31) dlwillson: D B1 Ringo G1 John\n\n\nHomeworlds Online (SDG# 21166)\nVariants: "Hard time"\nStarted: 2011.11.15, Ended: 2011.12.20\nParticipants: SilentTitan (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\tSilentTitan: Since no one seem inclined to challenge me .... I'll have another go at you. \n\n3) TwoShort: Build G1 Twoshort\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) TwoShort: Trade G1 R1 Twoshort\n\n6) SilentTitan: Build G1 Silenttitan\n\n7) TwoShort: Build R1 Twoshort\n\n8) SilentTitan: Trade G3 R3 Silenttitan\n\n9) TwoShort: Trade R1 Y1 Twoshort\n\n10) SilentTitan: Trade G1 Y1 Silenttitan\n\n11) TwoShort: Build G1 Twoshort\n\n12) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n13) TwoShort: Build G2 Twoshort\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) TwoShort: Discover G1 Twoshort G3 Grogar\n\n16) SilentTitan: Trade G2 Y2 Silenttitan\n\n17) TwoShort: Build G2 Twoshort\n\n18) SilentTitan: Trade R3 G3 Silenttitan\n\n19) TwoShort: Trade G2 Y2 Twoshort\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n21) TwoShort: Discover Y1 Twoshort G3 Greenland\n\n22) SilentTitan: Sacrifice Y1 Sol\nDiscover Y2 Sol R3 Alpha\n\n23) TwoShort: Discover G2 Twoshort Y3 Yolonda\n\n24) SilentTitan: Build G2 Silenttitan\n\n25) TwoShort: Build G2 Twoshort\n\n26) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y1 Alpha\nBuild Y3 Sol\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Yolonda\nBuild G3 Twoshort\nBuild R1 Twoshort\n\n28) SilentTitan: Trade Y2 B2 Silenttitan\n\n29) TwoShort: Build Y2 Greenland\n\n30) SilentTitan: Sacrifice B2 Silenttitan\nTrade Y3 R3 Sol\nTrade Y2 R2 Alpha\n\n31) TwoShort: Sacrifice Y2 Greenland\nMove R1 Twoshort Alpha\nMove R1 Twoshort Alpha\nCatastrophe Alpha Red\n\n32) SilentTitan: Move R3 Sol Yolonda\n\n33) TwoShort: Sacrifice Y2 Twoshort\nMove G2 Yolonda Sol\nDiscover G2 Yolonda Y1 Ynot\n\n\tSilentTitan: sorry man ..... my life got crazy over the last week. \n\nHomeworlds Online (SDG# 21193)\nStarted: 2011.11.20, Ended: 2011.12.4\nParticipants: ringebri (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld R1 B2 G3\n\tMagicJohn: According to the wiki, green, blue and yellow are the most important beginning colors although red home stars are gaining in popularity. Check out the rules and wiki for suggestions.\n\n2) ringebri: Homeworld G1 Y3 B3\n\tringebri: what's the syntax for my first commands. Please give examples.\n\tMagicJohn: first the command "homeworld" then whatchawanna do ei "homeworld" "g1" (small green star) "y3" (large yellow star) and "b3" (large blue ship). The first command would look like "homeworld g1 y3 b3" see the middle top of the page for commands.... \n\n3) MagicJohn: Build G1 Magicjohn\n\tringebri: ok. since I still don't know what I'm doing, I put your example into the command box.\n\tMagicJohn: Next, it seems that the objective is to build big (#3) ships. Good players can control the stash by building ships or discovering new stars, each of which depletes the stash. Abandoning a system put that star back in the stash....\n\tMagicJohn: The color green is used to build. You can only build a color of ship that you already own in that star system. I own a green ship sooo..... "build G1 magicjohn" is my next command.\n\n4) ringebri: Build B1 Ringebri\n\tMagicJohn: You own a blue ship, so "build b1 ringebri" is your next move. You could also "trade" your b3 for another large ship but that would be wasting a turn. You could "discover" but that would abandon your homeworld and you would imediately lose the game..... \n\tMagicJohn: This is like an opening in chess. You try to set yourself up in a powerful position for a mid-game attack.\n\n5) MagicJohn: Build G1 Magicjohn\n\tringebri: what if I wanted a red ship? or a blue2 ship?\n\tMagicJohn: To get a red ship you would have to trade in (blue color available so trading is OK)one of your other ships. When you build, you always get the smallest ship from the stash in the color you want. Therefore, you must wait for all of the #1 ships to be in play or trade another #2 ship for it.\n\tMagicJohn: Did that make sense or should I rephrase?\n\n6) ringebri: Build B1 Ringebri\n\tMagicJohn: By building a g1 I limited your access to green. Now the only way you can get one (stash being what it is at present) is to trade in your b3 ship. No big deal now but it could be problematic later on.\n\tMagicJohn: Also I would NEVER make that move later in the game because you could move another green ship into my system and blow up (catastrophe) all of the green ships or stars in the system.\n\tMagicJohn: Your next move could be to build another blue ship, discover a new star system, or trade for another color of ship. You can trade a #3 for a #3 of a different color or your #1 for a #1 of a different color.\n\tMagicJohn: You would have to "discover" a #2 sized star system (of whatever color) because you can only travel to stars of a different size than the one you are traveling from.\n\n7) MagicJohn: Trade G1 Y1 Magicjohn\n\n8) ringebri: Discover B1 Ringebri R2 Vorkin\n\tMagicJohn: Now I need to move some ships so I don't "catastrophe" myself. To do that, I need access to yellow. Hence the trade. You will need to "discover" or "trade" for the same reason. The color of your new star will dictate whether you can "travel/move" (yellow) or build (green).\n\tMagicJohn: You have yellow technology already (your #3 star),so you can "discover" this turn. Just don't build another blue ship in your system just now. \n\tringebri: because that would "overpopulate" my homeworld, right?\n\n9) MagicJohn: Discover G1 Magicjohn Y3 Overthemoon\n\tringebri: fire hydrant fire hydrant!\n\tMagicJohn: Cute..... Fortunately not as bad as Webster's mutt.\r\nYes. Four of one color of anything (stars and ships combined) equals a catastrophe. Moving a ship into your opponent's to create a catastrophe is a major strategy towards winning the game. \n\n10) ringebri: Trade B1 R1 Ringebri\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) ringebri: Build B1 Ringebri\n\tMagicJohn: My plan is to build a couple more greens then sacrifice my g3. That lets me build 3 new ships, so I could get two g2's and a g3, which would be a profitable building move.\n\n13) MagicJohn: Build G2 Overthemoon\n\n14) ringebri: Trade B3 Y3 Ringebri\n\tMagicJohn: You can continue to push your blue technology but eventually use it to achieve some yellow or green. Remember that #3 ships = power. \n\tMagicJohn: Right now, you would not want to discover/create a g3 star system. Then when I sacrifice I would get two g3's and a g2 instead or vise-versa.\n\tMagicJohn: If you had a b2 and travel technology in vorkin, you could have foiled my plan. Can you see how?\n\n15) MagicJohn: Sacrifice G3 Magicjohn\nBuild G2 Overthemoon\nBuild G2 Magicjohn\nBuild G3 Magicjohn\n\tMagicJohn: I'm trying to be a good teacher. So, grasshopper, do you see how my plan might have been foiled?\n\n16) ringebri: Trade Y3 G3 Ringebri\n\tMagicJohn: Now I have to disperse my green ships before you can trade for green and overload one of my star systems.\n\tMagicJohn: You now control large yellow. That could prove useful......\n\n17) MagicJohn: Trade G2 Y2 Magicjohn\n\tringebri: I'm only a lowly grasshopper. How might I have foiled thee?\n\tMagicJohn: Lotsa "ifs" but.. If vorkin had been a yellow star system you might have traded your b1 for a g1. That threat of overloading overthemoon with green technology would made me modify my immediate plans.\n\tMagicJohn: uh.... make that "would have made me"..... or "would make me".... Need a proof reader...\n\n18) ringebri: Move G3 Ringebri Vorkin\n\tMagicJohn: Now my threat is sacrificing my y2 in magicjohn and moving two g3's into vorkin. I would still need another y2 to send them into "ringer", but that would wipe out your green technology including your green home star. You can't attack #2 ships with a #1 red ship, so vorkin is a safe platform for me at the moment. \n\tMagicJohn: Oh, just realized... I don't know if the size of a red star influences what can be attacked in that star system. I don't think so, but I'm not sure. Maybe we should check out the rules on that point...\n\tMagicJohn: Nuts... still need a proof reader... Second to last comment. I only have 2 g2's (not g3's) to move into vorkin.\n\n19) MagicJohn: Discover G2 Overthemoon Y2 Overtherainbo\n\tringebri: Not sure what I'm doing. I knew I could move the g3 into Vorkin so I did but I'm not sure.... You can do multiple commands, right?\n\tMagicJohn: If you sacrifice a ship, you can make as many moves as the size of the ship you sacrificed. Catastrophes result from other moves so are technically two command moves. Otherwise you are limited to one command per turn. Your g3 and b1 are stuck in vorkin without "yellow technology". \n\tMagicJohn: Trading could get you yellow technology....\n\tMagicJohn: It's really dangerous to not have a #3 ship in your home star system. It makes you very vulnerable to infiltration.\n\n20) ringebri: Build B1 Ringebri\n\n21) MagicJohn: Sacrifice G3 Magicjohn\nBuild G2 Overthemoon\nBuild G3 Magicjohn\nBuild G3 Overtherainbo\n\n22) ringebri: Trade B1 Y1 Vorkin\n\tMagicJohn: Sacrifice is the quickest way to acquire more ships. You might think of sacrificing your g3 for two b2's and a b3. If you do, be careful and don't overload blue in your home system.\n\n23) MagicJohn: Discover G1 Overthemoon Y2 Overthetop\n\n24) ringebri: Move G3 Vorkin Overthemoon\n\tMagicJohn: By owning a bunch of green ships and creating green stars a player can control an opponent's access to a technology (green in this case). Your green home star keeps you in the game unless I can destroy it.\n\tMagicJohn: If you sacrifice your g3 it goes back in the stack and you can rebuild it as part of your 3 building moves. ie.... Sacrifice g3 vorkin (return) build y1 vorkin (return) build y3 ringebri (return) build g3 vorkin.\n\tMagicJohn: OOOPS!!!! Wrong, wrong, wrong. When you build a ship, you have to have another ship of that color in the star system. Thus, if you sacrifice your g3, you have no more green ships and could not build another. Your only access to green ships would be trading for one and I would gobble it up before you could do that. Sorry 'bout the misinfo but I'm still trying to learn the game too....\n\n25) MagicJohn: Trade G3 Y3 Magicjohn\n\n26) ringebri: Build B1 Ringebri\n\tMagicJohn: Dangerous situation...\n\n27) MagicJohn: Build G3 Magicjohn\n\n28) ringebri: Trade B1 Y1 Ringebri\n\n29) MagicJohn: Sacrifice Y3 Magicjohn\nMove G1 Overthetop Ringebri\nMove G2 Overtherainbo Ringebri\nMove G3 Overtherainbo Ringebri\nCatastrophe Ringebri Green\n\n30) ringebri: Trade B1 G1 Ringebri\n\tMagicJohn: The material cost of the sacrifice was a lot but it really cuts down your options. You have to keep working for green and maybe attacking my blue star.\n\n31) MagicJohn: Discover G2 Overthemoon Y2 Overthehill\n\n32) ringebri: Move Y1 Ringebri Magicjohn\n\tMagicJohn: Now I will try to go after yellow....\n\n33) MagicJohn: Attack Y1 Magicjohn\n\tringebri: Oh my! This system has a lot of ships.\n\n34) ringebri: Build G1 Ringebri\n\tMagicJohn: ...or yellow is coming after me...\n\tringebri: Was that the "attack" order and were you able to do that because you have a red sun?\n\tMagicJohn: Yes, that was the "attack" order. The red sun gives me access to the "attack" order. It only works if I have a ship in the star system larger than or equal to the size of the ship I'm attacking \n\n35) MagicJohn: Sacrifice Y2 Magicjohn\nMove Y1 Magicjohn Overthemoon\nMove Y1 Overthemoon Overthehill\n\n36) ringebri: Trade G1 B1 Ringebri\n\n37) MagicJohn: Sacrifice G3 Magicjohn\nBuild Y2 Overthehill\nBuild Y2 Overthehill\nBuild Y3 Magicjohn\n\tringebri: If I built the g2 ship in ringebri you would move a g2 into ringebri, cause a catastrophe, and wipe out all of the green. Right?\n\n38) ringebri: Move B1 Ringebri Vorkin\n\tMagicJohn: Yes, probably so, but my major objective is to get your yellow star. Also, I would have moved my g1 from MagicJohn instead of a g2. Less sacrifice on my part given the state of our economy....\n\n39) MagicJohn: Sacrifice Y3 Magicjohn\nMove Y1 Magicjohn Ringebri\nMove Y1 Overthehill Ringebri\nMove Y2 Overthehill Ringebri\nCatastrophe Ringebri Y\n\n\tMagicJohn: Sorry, I should have made the game "unrated". Try another one?\n\nHomeworlds Online (SDG# 21206)\nVariants: "Hard time"\nStarted: 2011.11.22, Ended: 2011.11.28\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\tzoltar: Hi!\n\tts52: Hi! Have a great game!\n\n3) zoltar: Build G1 Zoltar\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ts52: Trade G1 R1 Ts52\n\n7) zoltar: Build Y1 Zoltar\n\n8) ts52: Build R1 Ts52\n\n9) zoltar: Build Y1 Zoltar\n\n10) ts52: Build R2 Ts52\n\n11) zoltar: Discover Y1 Zoltar G3 Greengiant\n\n12) ts52: Trade R2 Y2 Ts52\n\n13) zoltar: Build Y2 Greengiant\n\n14) ts52: Discover Y2 Ts52 G1 Robin\n\n15) zoltar: Discover Y1 Zoltar B3 Bluemoon\n\n16) ts52: Build R2 Ts52\n\n17) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Bluemoon\n\n18) ts52: Move R2 Ts52 Robin\n\n19) zoltar: Trade Y3 G3 Zoltar\n\n20) ts52: Move R2 Robin Greengiant\n\n21) zoltar: Sacrifice Y2 Zoltar\nDiscover Y2 Greengiant B1 Blueberry\nDiscover Y1 Greengiant B2 Bluebell\n\n22) ts52: Build R2 Ts52\n\n23) zoltar: Trade Y3 R3 Bluemoon\n\n24) ts52: Move R2 Ts52 Robin\n\n25) zoltar: Sacrifice G3 Zoltar\nBuild Y2 Bluemoon\nBuild Y3 Blueberry\nBuild Y3 Zoltar\n\n26) ts52: Build G1 Ts52\n\n27) zoltar: Trade Y3 G3 Zoltar\n\n28) ts52: Move R2 Robin Bluebell\n\n29) zoltar: Build Y3 Zoltar\n\n30) ts52: Attack Y1 Bluebell\n\n31) zoltar: Build G1 Zoltar\n\n32) ts52: Move R1 Ts52 Robin\n\n33) zoltar: Discover G3 Zoltar R3 Redgiant\n\n34) ts52: Move G1 Ts52 Robin\n\n35) zoltar: Build G2 Zoltar\n\n36) ts52: Build G2 Ts52\n\n37) zoltar: Discover G2 Zoltar R3 Redrover\n\n38) ts52: Build R2 Ts52\n\n39) zoltar: Sacrifice G3 Redgiant\nBuild R3 Bluemoon\nBuild G2 Redrover\nBuild G3 Zoltar\n\n40) ts52: Sacrifice Y2 Robin\nMove R1 Robin Bluemoon\nMove R2 Bluebell Bluemoon\nCatastrophe Bluemoon R\n\n41) zoltar: Trade Y3 R3 Blueberry\n\n42) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Bluebell\nBuild Y3 Bluebell\n\n43) zoltar: Sacrifice Y2 Bluemoon\nMove G2 Redrover Blueberry\nMove Y1 Bluemoon Bluebell\nCatastrophe Bluebell Y\n\n44) ts52: Trade R1 Y1 Ts52\n\n45) zoltar: Sacrifice Y3 Zoltar\nMove G2 Redrover Blueberry\nMove G2 Blueberry Ts52\nMove G2 Blueberry Ts52\nCatastrophe Ts52 G\n\n46) ts52: Trade R2 G2 Ts52\n\n47) zoltar: Move R3 Blueberry Ts52\n\tzoltar: Huge explosions have been detected in the proximity of the ts52 homeworld.\n\tts52: Damn! How did I not see that one coming....\n\n48) ts52: Trade Y1 R1 Ts52\n\n49) zoltar: Attack G2 Ts52\n\tzoltar: Yeah, a Y3 is often a devastating weapon when sacrificed.\n\n\tts52: All right, I give up. Well played sir.\n\tzoltar: Thanks. gg\n\nHomeworlds Online (SDG# 21107)\nVariants: "Hard time"\nStarted: 2011.11.25, Ended: 2012.1.30\nParticipants: agentofchaos (S), Subhan64 (N)\nWinner: agentofchaos\n\n1) Subhan64: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld R1 B2 G3\n\n3) Subhan64: Build G1 Subhan64\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Subhan64: Discover G1 Subhan64 G3 Kermit\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Subhan64: Build G1 Subhan64\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n10) agentofchaos: Trade Y1 R1 Agentofchaos\n\n11) Subhan64: Build G1 Subhan64\n\n12) agentofchaos: Build G2 Agentofchaos\n\n13) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Subhan64\nBuild G2 Bigbird\nBuild G3 Subhan64\n\n14) agentofchaos: Move G2 Agentofchaos Bigbird\n\n15) Subhan64: Discover G2 Subhan64 Y3 Banana\n\n16) agentofchaos: M R1 Agentofchaos Kermit\n\n17) Subhan64: Trade G1 R1 Subhan64\n\n18) agentofchaos: Sacrifice R1 Kermit\nAttack G2 Bigbird\n\n19) Subhan64: Build G1 Bigbird\nCatastrophe Bigbird Green\n\n20) agentofchaos: Build G1 Agentofchaos\n\n21) Subhan64: Build G1 Subhan64\n\n22) agentofchaos: Trade G1 R1 Agentofchaos\n\n23) Subhan64: Sacrifice G2 Banana\nBuild R2 Subhan64\nBuild R2 Subhan64\n\n24) agentofchaos: Build R2 Agentofchaos\n\n25) Subhan64: Move R2 Subhan64 Kermit\n\n26) agentofchaos: Discover R2 Agentofchaos Y3 Dreamward\n\n27) Subhan64: Build R3 Kermit\n\n28) agentofchaos: B G1 Agentofchaos\n\n29) Subhan64: Trade G3 Y3 Subhan64\n\n30) agentofchaos: Trade R1 B1 Agentofchaos\n\n31) Subhan64: Move Y3 Subhan64 Kermit\n\n32) agentofchaos: Sacrifice G1 Agentofchaos\nBuild R1 Dreamward\n\n33) Subhan64: Move R1 Subhan64 Kermit\n\n34) agentofchaos: Build G1 Agentofchaos\n\n35) Subhan64: Sacrifice Y3 Kermit\nMove R3 Kermit Agentofchaos\nMove R2 Kermit Agentofchaos\nMove R1 Kermit Agentofchaos\nCatastrophe Agentofchaos Red\n\n36) agentofchaos: Build G2 Agentofchaos\n\n37) Subhan64: Build G2 Subhan64\n\n38) agentofchaos: Trade G3 R3 Agentofchaos\n\n\nHomeworlds Online (SDG# 21159)\nStarted: 2011.11.25, Ended: 2011.12.2\nParticipants: Subhan64 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Subhan64: Homeworld B3 Y1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) Subhan64: Build G1 Subhan64\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Subhan64: Trade G3 Y3 Subhan64\n\n7) ts52: Discover Y1 Ts52 G3 Kermit\n\n8) Subhan64: Build Y2 Subhan64\n\n9) ts52: Build Y2 Kermit\n\n10) Subhan64: Trade Y2 G2 Subhan64\n\n11) ts52: Build G1 Ts52\n\n12) Subhan64: Discover G2 Subhan64 Y2 Bigbird\n\n13) ts52: Discover Y1 Kermit G2 Walter\n\n14) Subhan64: Build G1 Bigbird\n\n15) ts52: Build Y2 Walter\n\n16) Subhan64: Trade Y3 R3 Subhan64\n\n17) ts52: Trade G1 R1 Ts52\n\n18) Subhan64: Move R3 Subhan64 Walter\n\n19) ts52: Sacrifice Y2 Kermit\nMove Y1 Walter Subhan64\nMove Y2 Walter Subhan64\n\n20) Subhan64: Sacrifice G2 Bigbird\nBuild G1 Subhan64\nBuild G2 Bigbird\n\n21) ts52: Trade Y2 R2 Subhan64\n\n\tSubhan64: Good game!\n\tts52: Thanks. Thanks for the game.\n\nHomeworlds Online (SDG# 21227)\nVariants: "Hard time"\nStarted: 2011.11.28, Ended: 2011.12.2\nParticipants: Subhan64 (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\n2) Subhan64: Homeworld B1 Y2 G3\n\tDanner: Hi! Have a nice game!\r\nI usually let my opponent make the starting move, but if you prefer not to do, just pass.\n\n3) Danner: Homeworld B1 G2 B3 *\n\tSubhan64: Good luck!\n\n4) Subhan64: Build G1 Subhan64\n\n5) Danner: Build B1 Danner\n\n6) Subhan64: Build G1 Subhan64\n\n7) Danner: Trade B3 Y3 Danner\n\n8) Subhan64: Discover G1 Subhan64 G3 Kermit\n\n9) Danner: Build B2 Danner\n\n10) Subhan64: Build G1 Kermit\n\n11) Danner: Discover B2 Danner G3 Larkspur\n\n12) Subhan64: Build G2 Subhan64\n\n13) Danner: Build B2 Larkspur\n\n14) Subhan64: Trade G2 Y2 Subhan64\n\n15) Danner: Build B2 Larkspur\n\n16) Subhan64: Sacrifice Y2 Subhan64\nMove G1 Kermit Danner\nMove G1 Kermit Danner\n\n17) Danner: Build B3 Danner\n\tDanner: Welcome to my homeworld! :)\n\n18) Subhan64: Build G2 Danner\nCatastrophe Danner Green\n\n19) Danner: Trade B3 G3 Danner\n\n20) Subhan64: Build G1 Subhan64\n\n21) Danner: Sacrifice Y3 Danner\nMove G3 Danner Larkspur\nMove G3 Larkspur Subhan64\nPass\nCatastrophe Subhan64 G\n\n\tDanner: Thanks for the game!\n\tSubhan64: You distracted me with those blue ships!\r\n\n\tDanner: Sorry :)\n\nHomeworlds Online (SDG# 21223)\nStarted: 2011.11.28, Ended: 2011.11.30\nParticipants: ts52 (S), jsb (N)\nWinner: ts52\n\n1) jsb: Homeworld Y1 G3 B3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) jsb: Build B1 Jsb\n\n4) ts52: Build G1 Ts52\n\tts52: Have a good game!\n\n5) jsb: Discover B1 Jsb Y2 Harmonica\n\n6) ts52: Trade G1 B1 Ts52\n\tjsb: Thanks, you too, ts52. \n\n7) jsb: Build B2 Jsb\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) jsb: Build B2 Jsb\n\n10) ts52: Build B2 Kermit\n\n11) jsb: Trade B2 G2 Jsb\n\n12) ts52: Trade B2 Y2 Kermit\n\n13) jsb: Discover B2 Jsb G2 Harp\n\n14) ts52: Build G1 Ts52\n\n15) jsb: Discover B1 Harmonica Y3 Flute\n\n16) ts52: Build Y1 Kermit\n\n17) jsb: Move B1 Flute Ts52\n\n18) ts52: Trade Y1 R1 Kermit\n\n19) jsb: Sacrifice G2 Jsb\nBuild B2 Ts52\nBuild B2 Ts52\nCatastrophe Ts52 B\n\n20) ts52: Move Y2 Kermit Harp\n\n21) jsb: Trade B2 Y2 Harp\n\n22) ts52: Sacrifice R1 Kermit\nAttack Y2 Harp\n\n23) jsb: Build B1 Jsb\n\n24) ts52: Move Y2 Harp Kermit\n\n25) jsb: Move B1 Jsb Ts52\n\n26) ts52: Trade Y2 R2 Kermit\n\n27) jsb: Trade B1 G1 Ts52\n\n28) ts52: Sacrifice R2 Kermit\nAttack G1 Ts52\nPass\n\n29) jsb: Build B1 Jsb\n\n30) ts52: Sacrifice B1 Kermit\nTrade G1 B1 Ts52\n\n31) jsb: Discover B1 Jsb G2 Violin\n\n32) ts52: Trade G3 R3 Ts52\n\n33) jsb: Build B1 Violin\n\n34) ts52: Move R3 Ts52 Jsb\n\n\tjsb: Good game, ts52 - I got ahead of myself. \n\tts52: Thanks for the game. \n\nHomeworlds Online (SDG# 21236)\nVariants: "Hard time"\nStarted: 2011.11.29, Ended: 2012.1.2\nParticipants: AdamBadura (S), goulo (N)\nWinner: AdamBadura\n\n1) goulo: Homeworld R3 B1 G3\n\tgoulo: Hi, I wondered if I might receive a ladder challenge from you soon. :)\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) goulo: Build G1 Goulo\n\tAdamBadura: :)\n\n4) AdamBadura: Build Y1 Adambadura\n\tgoulo: BTW I bought a Realm set from nestorgames at Essen and am currently playing a game online here at SDG as well. Strange interesting non-elegant game! :)\n\n5) goulo: Trade G1 Y1 Goulo\n\tAdamBadura: http://www.gry-planszowe.pl/forum/viewtopic.php?f=4&t=16794\r\n\r\nIt looks like I'm going to be there. Brian as well. We set up to play Ora at Labora (I'm curious about that game, lots of hype, we will see if justified...). What else I don't know yet but I'm dreaming of an 18xx.\r\n\r\nWill you be there?\n\tgoulo: Oh, interesting, I had not heard about this event. It looks like Gratislavia, but isn't Gratislavia...?\r\n\r\nIt's also just 1 week after Pionek, strange timing! But at least not the SAME weekend as Pionek. :)\r\n\r\nI think I will be free that weekend, so I hope to go to it. Thanks for the info!\n\n6) AdamBadura: Trade Y1 R1 Adambadura\n\n7) goulo: Build G1 Goulo\n\tAdamBadura: It looks like Gratislavia but it is not. It seems different people are behind this one. I don't know which people. I never heared about it.\r\n\r\nI have mixed feelings. As this might mean some break in the gaming community in Wroc³aw. But looking just at the known facts: hey! we have a second convention! lets cherish! ;)\n\tgoulo: Certainly! More gaming events = A Good Thing. :)\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) goulo: Trade G1 R1 Goulo\n\n10) AdamBadura: Discover Y1 Adambadura G1 Shipyard\n\n11) goulo: Build G1 Goulo\n\n12) AdamBadura: Build Y1 Adambadura\n\n13) goulo: Build Y2 Goulo\n\n14) AdamBadura: Build Y2 Shipyard\n\n15) goulo: Discover Y1 Goulo Y2 Citrono\n\n16) AdamBadura: Trade Y1 G1 Adambadura\n\n17) goulo: Discover G1 Goulo R2 Rubeno\n\n18) AdamBadura: Move Y2 Shipyard Rubeno\n\n19) goulo: Build G2 Goulo\n\n20) AdamBadura: Attack G1 Rubeno\n\n21) goulo: Move G2 Goulo Citrono\n\n22) AdamBadura: Build Y1 Adambadura\n\n23) goulo: Build Y3 Goulo\n\tAdamBadura: Sorry for slow gameing recently bt we are buying our own flat and there is lots to do...\n\n24) AdamBadura: Build Y3 Rubeno\n\tgoulo: No problem! And good luck with the flat buying process! I guess that means I won't see you at Pionek... :)\n\n25) goulo: Build G2 Citrono\n\tAdamBadura: You wouldn't see me there anyway... ;)\r\n\r\nWe are finalizing things now. I will live (starting March/April) near the place I live now, only on the other side of Pomorska.\n\n26) AdamBadura: Build G2 Rubeno\n\n27) goulo: Discover G2 Citrono B1 Mirteleto\n\n28) AdamBadura: Trade G1 B1 Adambadura\n\tgoulo: Pionek was good. I finished the weekend with a good epic game of Gnostica with zara2stra. :)\n\n29) goulo: Build G1 Mirteleto\n\n30) AdamBadura: Build B2 Adambadura\n\n31) goulo: Build G3 Citrono\n\n32) AdamBadura: Move B2 Adambadura Shipyard\n\n33) goulo: Sacrifice Y2 Goulo\nMove G1 Mirteleto Adambadura\nMove G2 Mirteleto Adambadura\n\n34) AdamBadura: Sacrifice Y3 Rubeno\nMove Y1 Shipyard Citrono\nMove Y1 Adambadura Shipyard\nMove Y1 Shipyard Citrono\nCatastrophe Citrono Y\n\n35) goulo: Build Y1 Goulo\n\n36) AdamBadura: Build G2 Rubeno\n\tAdamBadura: Sometimes I wish there was a "try mode" when you execute a command but only to look at the results before approving (and submiting) or canceling. It is sometimes uneasy to see how it will look like after a catastrophe.\n\tAdamBadura: Your is more "geek-y" than you claim she is... After all not only she came today for the Fest alone but also she took part in some contest and got a prize!\r\n\r\nSo now I'm starting to wonder why she never comes at my place when you do... ;)\r\n\r\n\r\nAnd to be more serious that Hex game got my interest. I intended to challange you but as it seems it is not implemented here...\n\tAdamBadura: *Your girl\n\tgoulo: Her gaming enthusiasm goes in waves. She got very excited at this past Pionek. :)\r\n\r\nAbout Hex - it is playable at some other sites, e.g. littlegolem.net (but littlegolem is having DNS problems or something, not reachable the past few days, sigh) I play Hex there.\n\n37) goulo: Build G3 Adambadura\nCatastrophe Adambadura G\n\n38) AdamBadura: Discover G2 Rubeno G3 Highway\n\tgoulo: Have you played 20th Century from Czech Games Edition? We tried it for the first time tonight and enjoyed it.\n\n39) goulo: Discover R1 Goulo B2 Mirtelo\n\n40) AdamBadura: Build Y1 Rubeno\n\tAdamBadura: I just read a review in Swiat Gier Planszowych. Seemed interesting yet it didn't interest me enough to try to find it someplace. If you have it now we can play some time. Yet I'm afraid I will have time for gaming after Christmas only.\n\tgoulo: It wasn't our set; Czarna and Repcio bought it at Essen.\n\n41) goulo: Move Y3 Goulo Rubeno\n\n42) AdamBadura: Sacrifice Y2 Rubeno\nMove G2 Rubeno Goulo\nMove G1 Rubeno Goulo\n\n43) goulo: Move Y3 Rubeno Goulo\n\n44) AdamBadura: Move Y1 Rubeno Goulo\n\n45) goulo: Attack Y1 Goulo\n\n46) AdamBadura: Trade G2 Y2 Goulo\nCatastrophe Goulo Y\n\n47) goulo: Attack G1 Goulo\n\n48) AdamBadura: Trade Y3 G3 Adambadura\n\n49) goulo: Trade G1 Y1 Goulo\n\n50) AdamBadura: Build G1 Adambadura\n\n51) goulo: Build Y1 Goulo\n\n52) AdamBadura: Trade G3 Y3 Adambadura\n\tAdamBadura: Sorry again for delays. Its not my usual type of playing. The rector of our parish died in car accident on Thusday. As I'm somewhat involved in tha parish (mostly by administrating the web site and being member of board) it consumes significant amount of time. (Especially that the rector was an important person otherwise as well being a "pra³at" and "prof. dr hab."...)\n\tgoulo: No problem, almost all the PBEM games are going much slower lately, I notice. It really slows down in December!\r\n\r\nSorry to hear about the rector's car accident. Good luck to you dealing with his death and all the other stuff.\n\n53) goulo: Move Y1 Goulo Mirtelo\n\n54) AdamBadura: Build G1 Adambadura\n\n55) goulo: Discover R1 Mirtelo B3 Mirtelego\n\n56) AdamBadura: Build G2 Highway\n\n57) goulo: Trade G3 Y3 Goulo\n\n58) AdamBadura: Build B1 Shipyard\n\n\tgoulo: I see no hope for me here!\n\tgoulo: happy new year! :)\n\tAdamBadura: Hmm... Interesting. I wasn't sure of this game. It seemed to me I had a little advantage but I think you could have outplayed me by skills.\r\n\r\nHappy new year!\n\tgoulo: I think you have too many ships, and I couldn't realistically catch up, nor could I see how to create enough blues to try rushing your homeworld.\n\nHomeworlds Online (SDG# 21133)\nVariants: "Hard time"\nStarted: 2011.12.2, Ended: 2011.12.10\nParticipants: Jesse (S), Subhan64 (N)\nWinner: Jesse\n\n1) Subhan64: Pass\n\n2) Jesse: Homeworld Y3 B2 G3\n\n3) Subhan64: Homeworld Y1 B2 G3\n\tJesse: Hello hello.\n\n4) Jesse: Build G1 Jesse\n\tSubhan64: Hello!\r\n\n\n5) Subhan64: Build G1 Subhan64\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) Subhan64: Build G1 Subhan64\n\n8) Jesse: Build G1 Jesse\n\n9) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n10) Jesse: Discover G1 Jesse Y1 Lemon\n\n11) Subhan64: Build G2 Subhan64\n\n12) Jesse: Build G2 Jesse\n\n13) Subhan64: Trade G2 Y2 Subhan64\n\n14) Jesse: Build Y2 Jesse\n\n15) Subhan64: Discover G1 Subhan64 Y3 Bananarama\n\n16) Jesse: Discover Y1 Jesse B1 Berry\n\n17) Subhan64: Build Y2 Subhan64\n\n18) Jesse: Sacrifice Y2 Jesse\nMove Y1 Berry Bananarama\nMove Y1 Bananarama Subhan64\nCatastrophe Subhan64 Y\n\n19) Subhan64: Build G2 Subhan64\n\n20) Jesse: Sacrifice G3 Jesse\nBuild G2 Lemon\nBuild G3 Jesse\nBuild G3 Jesse\n\n21) Subhan64: Trade G2 Y2 Subhan64\n\n22) Jesse: Trade G3 R3 Jesse\n\n23) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Bigbird\nBuild G3 Bananarama\nBuild G3 Bigbird\n\n24) Jesse: Move G1 Lemon Bigbird\nCatastrophe Bigbird G\n\n25) Subhan64: Sacrifice G1 Bananarama\nBuild Y1 Subhan64\n\n26) Jesse: Discover G2 Jesse B1 Berry2\n\n27) Subhan64: Build G1 Bananarama\n\n28) Jesse: Build G1 Berry2\n\n29) Subhan64: Sacrifice Y2 Subhan64\nMove G3 Bananarama Subhan64\nMove Y1 Subhan64 Bananarama\n\n30) Jesse: Trade G1 Y1 Berry2\n\n31) Subhan64: Build G1 Subhan64\n\n32) Jesse: Build Y2 Berry2\n\n33) Subhan64: Build Y2 Bananarama\n\n34) Jesse: Sacrifice Y2 Berry2\nMove G2 Berry2 Subhan64\nMove G2 Lemon Subhan64\nCatastrophe Subhan64 G\n\tJesse: Gotta watch out for those sacrifice threats.\n\tSubhan64: yeah. I knew I was toast anyway once I lost one of my homeworlds. One of these days I'll actually win a game of this!\n\n\nHomeworlds Online (SDG# 21280)\nStarted: 2011.12.4, Ended: 2011.12.21\nParticipants: Onii77 (S), disaac (N)\nWinner: disaac\n\n1) disaac: H Y3 B2 G3\n\n2) Onii77: H B3 R1 G3\n\n3) disaac: Build G1 Disaac\n\n4) Onii77: B G1 Onii77\n\n5) disaac: Discover G1 Disaac B1 Ba\n\n6) Onii77: T G1 Y1 Onii77\n\n7) disaac: Build G1 Disaac\n\n8) Onii77: B G1 Onii77\n\n9) disaac: Trade G1 Y1 Disaac\n\n10) Onii77: D G1 Onii77 B2 Wall\n\n11) disaac: Build G1 Disaac\n\n12) Onii77: T G1 R1 Wall\n\n13) disaac: Trade G1 R1 Disaac\n\n14) Onii77: B G1 Onii77\n\n15) disaac: Build R2 Disaac\n\n16) Onii77: M G1 Onii77 Wall\n\n17) disaac: M R2 Disaac Ba\n\n18) Onii77: B R2 Wall\n\n19) disaac: Sacrifice G3 Disaac\nBuild R2 Disaac\nBuild R3 Disaac\nBuild R3 Ba\n\n20) Onii77: T R2 Y2 Wall\n\n21) disaac: D R2 Disaac G1 Ga\n\n22) Onii77: B G2 Wall\n\n23) disaac: Trade R3 G3 Disaac\n\n24) Onii77: B R2 Wall\n\n25) disaac: Sacrifice G3 Disaac\nBuild R3 Ga\nBuild R3 Disaac\nBuild G2 Ba\n\n26) Onii77: S Y2 Wall\nM R1 Wall Ba\nM R2 Wall Ba\nC Ba Red\n\n27) disaac: Sacrifice G2 Ba\nBuild Y1 Disaac\nBuild G2 Ba\n\n28) Onii77: T G2 B2 Wall\n\n29) disaac: Move Y1 Disaac Ga\n\n30) Onii77: B G2 Wall\n\n31) disaac: Move R2 Ga Wall\n\n32) Onii77: S G2 Wall\nB Y2 Onii77\nB Y2 Onii77\n\n33) disaac: Sacrifice G2 Ba\nBuild Y2 Ga\nBuild Y3 Disaac\n\n34) Onii77: S Y2 Onii77\nM G1 Wall Ba\nM B2 Wall Ba\n\n35) disaac: Sacrifice Y3 Disaac\nMove R3 Ga Wall\nMove R2 Wall Onii77\nMove R3 Wall Onii77\n\n36) Onii77: A R3 Onii77\n\n37) disaac: Sacrifice G1 Ba\nBuild R1 Onii77\nCatastrophe Onii77 R\n\n38) Onii77: T Y2 R2 Onii77\n\n39) disaac: Trade Y1 B1 Disaac\n\n40) Onii77: M R2 Onii77 Ga\n\n41) disaac: Sacrifice R1 Disaac\nAttack R2 Ga\n\n42) Onii77: T G1 R1 Ba\n\n43) disaac: Move B1 Disaac Ga\n\n44) Onii77: T B2 R2 Ba\n\n45) disaac: Move Y1 Ga Disaac\n\n46) Onii77: B G1 Onii77\n\n47) disaac: Trade Y1 G1 Disaac\n\n48) Onii77: M G1 Onii77 Ba\n\n49) disaac: Build G2 Disaac\n\n50) Onii77: T G3 Y3 Onii77\n\n51) disaac: Sacrifice G2 Disaac\nBuild B1 Ga\nBuild B2 Ga\n\n52) Onii77: B G2 Ba\n\n53) disaac: Move B1 Ga Onii77\n\n54) Onii77: S Y3 Onii77\nM R2 Ba Disaac\nM R1 Ba Disaac\nM G2 Ba Disaac\n\tdisaac: Checkmate I believe. :)\n\n\tOnii77: ;)\n\tOnii77: Yep. Good game. \n\tdisaac: Yes it was. I felt stuck there for quite a while with no green in my homeworld. \n\tdisaac: Then I had a bit of a race with you at the end to make sure I got my ships built and ready to move before you had a chance to start wiping out my homeworld fleet.\n\nHomeworlds Online (SDG# 21285)\nVariants: "Unrated"\nStarted: 2011.12.5, Ended: 2011.12.25\nParticipants: ringebri (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld B2 R1 G3\n\n2) ringebri: Homeworld G3 B1 Y3\n\tringebri: I tried this command: homeworld g2,b1,y3. Why doesn't it work.\n\tringebri: homeworld g3,b1,y3\n\tringebri: homeworld g3, b1, y3 doesn't work either.\n\n3) MagicJohn: Build G1 Magicjohn\n\tringebri: ok. the command line can't have commas in it.\n\n4) ringebri: Build Y1 Ringebri\n\tringebri: Just re-read the wiki. Not good to have the same size systems as your opponent.\n\n5) MagicJohn: Build G1 Magicjohn\n\tMagicJohn: Now the point is to build as quickly as possible. Maybe try to monopolize a color. I might have an advantage because I will try to build green and that is the color of one of your home stars.\n\n6) ringebri: Trade Y1 R1 Ringebri\n\n7) MagicJohn: Trade G1 Y1 Magicjohn\n\n8) ringebri: Build Y1 Ringebri\n\n9) MagicJohn: Discover G1 Magicjohn Y3 Overachiever\n\tMagicJohn: Had to trade for a yellow so I can expand and keep building..\n\tMagicJohn: My building will probably be in green or blue so I can directly attack one of your stars...\n\tMagicJohn: I can build in green without duplicating the color of one of my own stars.\n\n10) ringebri: Discover Y1 Ringebri B2 Underdog\n\n11) MagicJohn: Build G1 Overachiever\n\n12) ringebri: Build Y1 Ringebri\n\n13) MagicJohn: Discover G1 Overachiever Y2 Overandout\n\tMagicJohn: Trying to stay undertheradar?\n\tMagicJohn: I'm dealing with a monster hedcode. Hope my thinking is clearer than my sinuses, throat, and chest......\n\tringebri: Oh good! Here's my chance..... Oh! Sorry. I hope you feel better soon!\n\n14) ringebri: Build Y2 Ringebri\n\n15) MagicJohn: Build Y2 Magicjohn\n\n16) ringebri: Discover Y2 Ringebri G2 Undercat\n\tringebri: Now I've got three yellow in my homeworld, which I guess is risky. But I don't think your y1 in your homeworld can reach my homeworld at this time. Right?\n\tMagicJohn: Not really risky yet. To get to your home world from mine, I would have to sacrifice a Y3, move to a #3 star, then to a #2 star, and finally to your homeworld. Since I don't have a Y3, I can't send my Y1 directly to your homeworld. \n\tMagicJohn: I would first have to trade my g3 for a y3 and you would see that coming and move a ship or take another defensive action.\n\tMagicJohn: Or I could do the following play, gain some ship-power, and force your hand.\n\n17) MagicJohn: Discover G1 Overandout Y3 Overandover\n\tMagicJohn: Scratch that. I was going to sac my g3 for a g1,y2 and y3. It would have given me 3 yellows in Magicjohn homeworld and you could have blown them up.\n\n18) ringebri: Build Y2 Undercat\n\n19) MagicJohn: Build G1 Overandover\n\tMagicJohn: keeping you from building another y3....\n\n20) ringebri: Trade Y1 B1 Ringebri\n\tMagicJohn: Bear in mind that discovered star systems can be destroyed by over population. If the star goes boom, ALL of the ships surrounding it go boom too.\n\n21) MagicJohn: Sacrifice G3 Magicjohn\nBuild G2 Overachiever\nBuild G2 Overachiever\nBuild G3 Overandover\n\tMagicJohn: So, lets say I put together a large fleet of ships on overandover and included in that fleet was a pair of yellow ships. If you moved one yellow ship in, the whole thing would go kablooie...\n\n22) ringebri: Discover Y2 Undercat G3 Undercover\n\n23) MagicJohn: Move G3 Overandover Magicjohn\n\n24) ringebri: Build R1 Ringebri\n\n25) MagicJohn: Discover G2 Overachiever R2 Overthelimit\n\tMagicJohn: You could blow up yellow tech at my homestar. (Sac y3 and move undercover y2 and underdog y1) On the down side, you would lose more than I would..... \n\tMagicJohn: By having a corner on green technology, I control your chances of blowing me up.....\n\n26) ringebri: Build Y1 Undercat\n\tringebri: underdog and undercat do not have a connection to MagicJohn so I can't move yellow ships to MagicJohn from them. Right?\n\tMagicJohn: They can move there, but it's a two step process. If you sac. a 2y one ship could move two steps, from u-cat to u-cover(1) to MagicJohn(2).\n\n27) MagicJohn: Trade Y1 B1 Magicjohn\n\n28) ringebri: Move B1 Ringebri Underdog\n\n29) MagicJohn: Move B1 Magicjohn Overachiever\n\n30) ringebri: Build Y1 Ringebri\n\n31) MagicJohn: Move G1 Overandover Overthelimit\n\n32) ringebri: Move R1 Ringebri Underdog\n\n33) MagicJohn: Build B2 Overachiever\n\n34) ringebri: Build R2 Ringebri\n\n35) MagicJohn: Move B1 Overachiever Overthelimit\n\n36) ringebri: Move B1 Underdog Undercover\n\n37) MagicJohn: Build B3 Overachiever\n\n38) ringebri: Build B3 Undercover\n\n39) MagicJohn: Build B3 Overthelimit\n\n40) ringebri: Sacrifice Y2 Undercat\nMove B1 Undercover Overthelimit\nMove B3 Undercover Overthelimit\nCatastrophe Overthelimit Blue\n\n41) MagicJohn: Build Y2 Magicjohn\n\n42) ringebri: Trade R1 B1 Ringebri\n\tringebri: I don't know if strategically that was a good move or not but it was fun.\n\tMagicJohn: build y2 magicjohn\n\n43) MagicJohn: Sacrifice Y2 Magicjohn\nMove G1 Overthelimit Ringebri\nMove G2 Overthelimit Ringebri\n\tMagicJohn: Oppsie - Put my command in the messages box... Your move did give me access to more yellow technology. It remains to be seen if I can take advantage of it.\n\tMagicJohn: Besides, experimenting with the moves is fun and the best way to learn :)\n\n44) ringebri: Attack G2 Ringebri\n\n45) MagicJohn: Sacrifice G1 Overandover\nBuild G1 Ringebri\nCatastrophe Ringebri Green\n\n46) ringebri: Move B1 Ringebri Undercover\n\n\tMagicJohn: Hello neighbor!\n\n47) MagicJohn: Discover B2 Overachiever Y2 Overandout\n\tringebri: bug off, invader!\n\tringebri: even though I successfully converted one of your ships, I'm still in danger of losing the green system, right?\n\tMagicJohn: uhhhh..., yes..\n\n48) ringebri: Trade Y1 G1 Ringebri\n\tMagicJohn: By sacrificing the g1 I could build a ship/color in any star system I wanted as long as I had a ship of that color in the star system. By sacrificing, I returned one green to the stash which I could bring back in play by way of building. My other option was to sacrifice my y2 in Magicjohn and move the g1 from overandover to undercat to ringebri. I didn't do that because I didn't want to loose a #2 ship or my only yellow. \n\tMagicJohn: As an aside...\r\nIdeally, it's best to maintain ships in your home star system that don't match the color of your home stars. Unfortunately, it isn't always possible to maintain that arrangement.\n\tMagicJohn: Now, if you loose or abandon your green star, you can't build at all. You might consider trading for a green ship pretty soon. I'll probably be going after blue but I could choose to try and suck up all of the green technology again..\n\n49) MagicJohn: Build B1 Overachiever\n\n50) ringebri: Move R2 Ringebri Overandout\n\n51) MagicJohn: Trade B3 R3 Overachiever\n\n52) ringebri: Attack B2 Overandout\n\n53) MagicJohn: Build B3 Overachiever\n\n54) ringebri: Build B3 Undercover\n\n55) MagicJohn: Build R1 Overachiever\n\tMagicJohn: spoil sport...\n\n56) ringebri: Move B1 Undercover Undercat\n\n57) MagicJohn: Move R1 Overachiever Undercat\n\n58) ringebri: Sacrifice Y2 Undercover\nMove B2 Overandout Overachiever\nMove B1 Undercat Overachiever\nCatastrophe Overachiever Blue\n\n59) MagicJohn: Build R2 Undercat\n\n60) ringebri: Build Y1 Ringebri\n\n61) MagicJohn: Attack Y1 Undercat\n\n62) ringebri: Build B1 Undercover\n\n63) MagicJohn: Discover R1 Undercat Y3 Overabundant\n\n64) ringebri: Discover Y1 Ringebri G3 Underway\n\n65) MagicJohn: Sacrifice G2 Overachiever\nBuild R2 Overabundant\nBuild R3 Undercat\n\n66) ringebri: Build B1 Undercover\n\n67) MagicJohn: Build Y2 Undercat\n\n68) ringebri: Sacrifice Y3 Ringebri\nMove B1 Undercover Magicjohn\nMove B1 Undercover Magicjohn\nMove B3 Undercover Magicjohn\nCatastrophe Magicjohn Blue\n\n69) MagicJohn: Sacrifice Y2 Magicjohn\nMove R3 Overachiever Ringebri\nMove R2 Overabundant Ringebri\n\n70) ringebri: Move Y1 Underdog Ringebri\n\n71) MagicJohn: Sacrifice R2 Undercat\nAttack Y1 Ringebri\nAttack G1 Ringebri\n\n\tringebri: out of recources. can't protect my homeworld. conquered! I think I'm beginning to understand this game.\n\tMagicJohn: Your play in the last half of the game showed a lot of improvement. Remember to leave a #3 ship and something red in your home system for defense. Good game... (More than I can say for my last effort in chase.....)\n\nHomeworlds Online (SDG# 21295)\nVariants: "Hard time"\nStarted: 2011.12.6, Ended: 2011.12.9\nParticipants: zoltar (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Pass\n\n\tzoltar: Hi. Why did you pass your turn?\n\tSubhan64: because I wish to cede first play to you\n\tzoltar: Not sure what's going on. The game ended before I could move, but it says it can't be rated.\n\tSubhan64: Yes. There is a hard time limit on the ladder games. You failed to move within the time limit, which triggered the end of the game (you lost). However, games that move on the first or second move are not used to adjust ratings. Things worked exactly as they are supposed to\n\nHomeworlds Online (SDG# 21108)\nVariants: "Hard time"\nStarted: 2011.12.6, Ended: 2012.2.2\nParticipants: raster51 (S), agentofchaos (W), zoltar (N), Subhan64 (E)\nWinner: zoltar\n\n1) zoltar: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld B1 Y2 G3\n\tzoltar: Greetingz, intergalactic entities.\r\n\n\n3) agentofchaos: Homeworld R1 B3 G3\n\n4) zoltar: Build G1 Zoltar\n\n5) Subhan64: Build G1 Subhan64\n\tagentofchaos: Greetings!\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) zoltar: Build G1 Zoltar\n\n8) Subhan64: Trade G1 R1 Subhan64\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) zoltar: Trade G1 R1 Zoltar\n\n11) Subhan64: Build R2 Subhan64\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) zoltar: Build R2 Zoltar\n\n14) Subhan64: Build G1 Subhan64\n\n15) agentofchaos: Trade R1 Y1 Agentofchaos\n\n16) zoltar: Trade R1 Y1 Zoltar\n\n17) Subhan64: Build R1 Subhan64\n\n18) agentofchaos: Discover R2 Agentofchaos Y2 Kanzia\n\n19) zoltar: Discover R2 Zoltar B3 Bluemoon\n\n20) Subhan64: Trade R1 Y1 Subhan64\n\n21) agentofchaos: Build G1 Agentofchaos\n\n22) zoltar: Move G1 Zoltar Bluemoon\n\n23) Subhan64: Build Y1 Subhan64\n\n24) agentofchaos: Move G1 Agentofchaos Kanzia\n\n25) zoltar: Build R1 Bluemoon\n\n26) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n27) agentofchaos: Build Y1 Agentofchaos\n\n28) zoltar: Trade R2 Y2 Bluemoon\n\n29) Subhan64: Build Y2 Kermit\n\n30) agentofchaos: Trade Y1 B1 Agentofchaos\n\n31) zoltar: Build Y1 Bluemoon\n\n32) Subhan64: Trade G1 B1 Subhan64\n\n33) agentofchaos: Build G1 Agentofchaos\n\n34) zoltar: Discover Y1 Bluemoon B2 Bluebell\n\n35) Subhan64: Build G1 Subhan64\n\n36) agentofchaos: Trade G1 R1 Agentofchaos\n\n37) zoltar: Build R2 Bluemoon\n\n38) Subhan64: Move R1 Subhan64 Kermit\n\n39) agentofchaos: B R2 Kanzia\n\n40) zoltar: Move R2 Bluemoon Bluebell\n\n41) Subhan64: Sacrifice G3 Subhan64\nBuild R2 Subhan64\nBuild R3 Kermit\nBuild G1 Subhan64\n\n42) agentofchaos: Build Y2 Agentofchaos\n\n43) zoltar: Sacrifice G3 Zoltar\nBuild Y3 Bluebell\nBuild Y3 Bluemoon\nBuild Y3 Zoltar\n\n44) Subhan64: Move Y1 Kermit Zoltar\n\n45) agentofchaos: T Y1 G1 Agentofchaos\n\n46) zoltar: Trade Y3 G3 Zoltar\n\n47) Subhan64: Move Y2 Kermit Zoltar\n\n48) agentofchaos: Move B1 Agentofchaos Kanzia\n\n49) zoltar: Build R3 Bluemoon\n\tzoltar: Yikes!!!!!\r\n\n\n50) Subhan64: Trade R2 B2 Subhan64\n\n51) agentofchaos: Sacrifice Y2 Agentofchaos\nMove B1 Kanzia Kermit\nMove B1 Kermit Subhan64\nCatastrophe Subhan64 B\n\n52) zoltar: Sacrifice R2 Bluebell\nAttack Y2E Zoltar\nAttack Y1E Zoltar\n\n53) Subhan64: Move Y1 Subhan64 Kermit\n\n54) agentofchaos: Trade G1 Y1 Agentofchaos\n\n55) zoltar: Sacrifice Y1 Zoltar\nMove Y3 Bluemoon Subhan64\n\n56) Subhan64: Build R2 Subhan64\n\n57) agentofchaos: Build G1 Agentofchaos\n\n58) zoltar: Sacrifice R3 Bluemoon\nAttack R2E Subhan64\nAttack R2E Subhan64\nAttack G1E Subhan64\n\n59) Subhan64: Move R3 Kermit Subhan64\n\n60) agentofchaos: Move R2 Kanzia Kermit\n\n61) zoltar: Sacrifice R2 Subhan64\nAttack G1E Subhan64\nAttack R3E Subhan64\n\n62) agentofchaos: Attack Y1E Kermit\n\n63) zoltar: Sacrifice Y3 Bluebell\nMove Y3 Subhan64 Agentofchaos\nMove G1 Subhan64 Agentofchaos\nMove G1 Subhan64 Agentofchaos\nCatastrophe Agentofchaos G\n\n\tagentofchaos: Well played\n\nHomeworlds Online (SDG# 21324)\nVariants: "Hard time"\nStarted: 2011.12.11, Ended: 2011.12.27\nParticipants: MagicJohn (S), jonaskoelker (N)\nWinner: MagicJohn\n\n1) jonaskoelker: Homeworld B2 R1 G3\n\n2) MagicJohn: Homeworld B1 Y3 G3\n\n3) jonaskoelker: Build G1 Jonaskoelker\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) jonaskoelker: Trade G1 Y1 Jonaskoelker\n\n6) MagicJohn: Discover G1 Magicjohn Y2 Tarvalon\n\n7) jonaskoelker: Build Y1 Jonaskoelker\n\n8) MagicJohn: Build G1 Tarvalon\n\n\nHomeworlds Online (SDG# 21346)\nVariants: "Hard time"\nStarted: 2011.12.14, Ended: 2011.12.23\nParticipants: mneme (S), Subhan64 (N)\nWinner: mneme\n\n1) Subhan64: Homeworld Y1 B2 G3\n\n2) mneme: Homeworld B2 G3 Y3\n\n3) Subhan64: Build G1 Subhan64\n\n4) mneme: Build Y1 Mneme\n\n5) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n6) mneme: Build Y1 Mneme\n\n7) Subhan64: Build G1 Subhan64\n\n8) mneme: Discover Y1 Mneme B1 Azure\n\n9) Subhan64: Build G1 Subhan64\n\n10) mneme: Build Y2 Mneme\n\n11) Subhan64: Discover G1 Subhan64 Y3 Yellowjacket\n\n12) mneme: D Y1 Azure G3 Whisper\n\n13) Subhan64: Build G2 Bigbird\n\n14) mneme: Trade Y2 G2 Mneme\n\n15) Subhan64: Trade G1 B1 Subhan64\n\n16) mneme: Trade Y1 B1 Mneme\n\n17) Subhan64: Discover G2 Bigbird R1 Elmo\n\n18) mneme: Build B1 Mneme\n\n19) Subhan64: Sacrifice G3 Subhan64\nBuild G1 Elmo\nBuild G2 Bigbird\nBuild G3 Yellowjacket\n\n20) mneme: Discover B1 Mneme Y1 Sign\n\n21) Subhan64: Sacrifice G2 Bigbird\nBuild G2 Bigbird\nBuild B2 Subhan64\n\n22) mneme: Sacrifice Y3 Mneme\nMove B1 Sign Bigbird\nMove B1 Bigbird Subhan64\nMove Y1 Whisper Subhan64\nCatastrophe Subhan64 B\n\n\tmneme: Dissapointing end; I'd hoped you'd seen that issue. Thanks for the game!\n\tmneme: FWIW, I'd actually had a mate threat even if your system had non-blue ships in it. If you ever got to 3 blue in your home (without red in your universe), my plan was to sac my y3 to blow up blue in your home system, then stick my small yellow ship in your home and pop my g2 to finish the job.\n\nHomeworlds Online (SDG# 21350)\nStarted: 2011.12.14, Ended: 2012.1.18\nParticipants: quozl (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld G1 B2 Y3\n\n2) quozl: Homeworld G2 B3 Y3\n\tSubhan64: first thing is to establish your homeworld. You want to include g & b, and either y or r. without blue, you can't construct ships, and without b you can't trade them. You probably want to pick either a 1/3 or a 2/3 star so you are 2 steps away from me, and definitely a size 3 ship\n\n3) Subhan64: Build Y1 Subhan64\n\tquozl: Oh wait, I just finally figured out what you meant by 1/3 or 2/3. Since I made a 1/2, that means our stars are just 1 step from each other, right?\n\n4) quozl: Build Y1 Quozl\n\tquozl: But I can undo my move and change it to a 2/3!\n\tSubhan64: yes that is right. Now, your next move will be to construct a y1 ship in your homeworld.\r\n\n\n5) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n6) quozl: Discover Y1 Quozl R1 Fozzie\n\tquozl: ok\n\tSubhan64: so now you have choices about what you can do - if you build a y1, I'll get to build a y2. You can trade your y1 or y3 for an equal-sized ship of a different color, or you can discover a new world\r\n\n\n7) Subhan64: Trade Y3 G3 Subhan64\n\n8) quozl: Move Y1 Fozzie Kermit\n\n9) Subhan64: Build G1 Subhan64\n\tquozl: Why a construct ship?\n\n10) quozl: Trade Y3 G3 Quozl\n\n11) Subhan64: Trade G1 R1 Subhan64\n\n12) quozl: Build G1 Quozl\n\n13) Subhan64: Sacrifice R1 Subhan64\nAttack Y1 Kermit\n\n14) quozl: Trade G3 R3 Quozl\n\n15) Subhan64: Build G1 Subhan64\n\n16) quozl: Trade R3 Y3 Quozl\n\n17) Subhan64: Move Y1 Kermit Subhan64\n\n18) quozl: Build G2 Quozl\n\n19) Subhan64: Move G1 Subhan64 Kermit\n\n20) quozl: Trade G2 R2 Quozl\n\n21) Subhan64: Build G2 Kermit\n\n22) quozl: Build R1 Quozl\n\n23) Subhan64: Trade G3 Y3 Subhan64\n\n24) quozl: Trade G1 R1 Quozl\n\n25) Subhan64: Discover G1 Kermit Y1 Bigbird\n\n26) quozl: Move R2 Quozl Bigbird\n\tquozl: Attack fleet ready!\n\n27) Subhan64: Move G1 Bigbird Kermit\n\n28) quozl: Build Y2 Quozl\n\n29) Subhan64: Build Y2 Kermit\n\n30) quozl: Trade Y2 R2 Quozl\n\n31) Subhan64: Move G2 Kermit Subhan64\n\n32) quozl: Move R2 Quozl Bigbird\n\n33) Subhan64: Trade Y1 R1 Subhan64\n\n34) quozl: Move R2 Bigbird Kermit\n\n35) Subhan64: Sacrifice R1 Subhan64\nAttack R2 Kermit\n\n36) quozl: Build Y1 Quozl\n\n37) Subhan64: Discover G1 Kermit R1 Elmo\n\tSubhan64: gotta watch out for those sacrifice moves!\n\tquozl: Tricky!\n\n38) quozl: Trade Y3 R3 Quozl\n\tSubhan64: they really are integral to the strategy of the game\r\n\n\n39) Subhan64: Sacrifice Y2 Kermit\nMove R2 Kermit Bigbird\nMove R2 Bigbird Quozl\nCatastrophe Quozl Red\n\n40) quozl: Move R2 Bigbird Kermit\n\n41) Subhan64: Sacrifice Y1 Kermit\nMove G1 Elmo Quozl\n\n42) quozl: Trade Y1 R1 Quozl\n\n43) Subhan64: Sacrifice G2 Subhan64\nBuild G1 Quozl\nBuild G2 Quozl\nCatastrophe Quozl Green\n\n44) quozl: Build R1 Kermit\n\n45) Subhan64: Trade Y3 R3 Subhan64\n\n46) quozl: Trade R1 Y1 Quozl\n\n47) Subhan64: Build R1 Subhan64\n\n\tquozl: OK, thanks for teaching me the game. It is very different than what I am used to.\n\tSubhan64: Yes, it is a very unusual game. It takes a while to get a handle on how to judiciously manage your pieces to avoid catastrophe & sacrifice well\r\n\n\nHomeworlds Online (SDG# 21372)\nVariants: "Hard time"\nStarted: 2011.12.19, Ended: 2012.2.5\nParticipants: dlwillson (S), Mandrel (N)\nWinner: dlwillson\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld B3 Y1 G3\n\tMandrel: Sorry for taking so long to accept the challenge,been pretty busy and not sure I could fit in another game, but cleared up a bit now. Anyway, have a good game!\n\n3) Mandrel: Build G1 Mandrel\n\tdlwillson: No problem. I'm sorry for being insistent, but it seems nobody at the South end of the ladder is playing... Have fun!\n\n4) dlwillson: B G1 Dlwillson\n\tMandrel: Not at all, it's a real ghost town down there\r\n\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) Mandrel: Build Y1 Mandrel\n\n8) dlwillson: Build R1 Dlwillson\n\n9) Mandrel: Build Y2 Mandrel\n\n10) dlwillson: B R2 Dlwillson\n\n11) Mandrel: Trade Y1 B1 Mandrel\n\n12) dlwillson: D R1 Dlwillson G2 Grungy\n\n13) Mandrel: D B1 Mandrel G3 Oscillator\n\n14) dlwillson: T R2 Y2 Dlwillson\n\n15) Mandrel: Build B1 Oscillator\n\n16) dlwillson: Move Y2 Dlwillson Grungy\n\n17) Mandrel: Trade B1 Y1 Oscillator\n\n18) dlwillson: B R2 Grungy\n\n19) Mandrel: Trade Y2 R2 Mandrel\n\n20) dlwillson: M R2 Grungy Oscillator\n\n21) Mandrel: Discover B1 Oscillator G2 Nap\n\n22) dlwillson: A Y1 Oscillator\n\n23) Mandrel: Build Y2 Mandrel\n\tdlwillson: Can we go a little faster?\n\n24) dlwillson: B R2 Oscillator\n\tMandrel: Ok sure, I'll try to speed up a bit.\n\n25) Mandrel: Discover R2 Mandrel B3 Broken\n\tdlwillson: Thanks Mandrel\n\n26) dlwillson: M R2 Oscillator Nap\n\n27) Mandrel: Build G1 Mandrel\n\n28) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Dlwillson\nBuild R3 Grungy\nBuild R3 Oscillator\n\n29) Mandrel: Trade Y1 B1 Mandrel\n\n30) dlwillson: Move R3 Grungy Broken\n\n31) Mandrel: Build B1 Nap\n\n32) dlwillson: A R2 Broken\n\n33) Mandrel: Build B2 Mandrel\n\n34) dlwillson: Sacrifice Y2 Grungy\nMove R3 Broken Mandrel\nMove R3 Oscillator Mandrel\n\n35) Mandrel: Build B2 Nap\n\tdlwillson: Pretty sure it's over in 3. Maybe 5.\n\n36) dlwillson: Sacrifice R3 Mandrel\nAttack G3 Mandrel\nAttack Y2 Mandrel\nAttack B2 Mandrel\n\tMandrel: It's been inevitable for quite a while now.\n\n37) Mandrel: Build G1 Mandrel\n\n38) dlwillson: Sacrifice R3 Mandrel\nAttack G1 Mandrel\nAttack G1 Mandrel\nAttack B1 Mandrel\n\tdlwillson: Thanks for the game, Mandrel!\n\tMandrel: Good game, well played.\n\n\nHomeworlds Online (SDG# 21150)\nVariants: "Hard time"\nStarted: 2011.12.21, Ended: 2011.12.28\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: /give silenttitan R3\n\n2) dlwillson: H B1 Y3 G3\n\tdlwillson: LOL!\n\tdlwillson: /give SilentTitan 2 R3\r\nCat silenttitan red\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dlwillson: B G1 Dlwillson\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) dlwillson: B G2 Dlwillson\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) dlwillson: Discover G2 Dlwillson G2 Frogne\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) dlwillson: Trade G1 B1 Dlwillson\n\n11) SilentTitan: Build Y1 Silenttitan\n\n12) dlwillson: B G1 Dlwillson\n\n13) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n14) dlwillson: Discover B1 Dlwillson G2 Fondue\n\n15) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\n16) dlwillson: T G3 Y3 Dlwillson\n\n17) SilentTitan: Build Y2 Silenttitan\n\n18) dlwillson: B G1 Frogne\n\n19) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Soul Frogne\nMove Y1 Frogne Dlwillson\n\n20) dlwillson: M Y3 Dlwillson Frogne\n\n21) SilentTitan: Sacrifice G1 Silenttitan\nBuild Y2 Dlwillson\n\n22) dlwillson: B Y2 Frogne\n\n23) SilentTitan: Sacrifice Y2 Dlwillson\nMove G3 Silenttitan Sol\nMove G3 Sol Frogne\nCatastrophe Frogne Green\n\n24) dlwillson: B G1 Dlwillson\n\tSilentTitan: BONSAI!!\n\n25) SilentTitan: Trade Y1 R1 Dlwillson\n\n26) dlwillson: T B1 G1 Fondue\n\n27) SilentTitan: Attack G1 Dlwillson North\n\n28) dlwillson: B G2 Dlwillson\n\n29) SilentTitan: Build G2 Dlwillson\nCatastrophe Dlwillson Green\n\n\tdlwillson: Good game.\n\nHomeworlds Online (SDG# 21389)\nVariants: "Hard time"\nStarted: 2011.12.24, Ended: 2012.1.5\nParticipants: Subhan64 (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld R1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Subhan64: Build G1 Subhan64\n\n5) SilentTitan: Trade G1 R1 Silenttitan\n\n6) Subhan64: Trade G3 R3 Subhan64\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) Subhan64: Build R2 Subhan64\n\n9) SilentTitan: Build R2 Silenttitan\n\n10) Subhan64: Trade R3 Y3 Subhan64\n\n11) SilentTitan: Trade G1 Y1 Silenttitan\n\n12) Subhan64: Sacrifice Y3 Subhan64\nDiscover R2 Subhan64 B2 Bb\nDiscover R2 Bb B3 Cc\nMove R2 Cc Silenttitan\nCatastrophe Silenttitan Red\n\n13) SilentTitan: Move G3 Silenttitan Subhan64\n\n14) Subhan64: Build G1 Subhan64\n\n15) SilentTitan: Build G1 Subhan64\nCatastrophe Subhan64 Green\n\n\nHomeworlds Online (SDG# 21395)\nVariants: "Hard time"\nStarted: 2011.12.27, Ended: 2012.3.27\nParticipants: shmil1 (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld B2 R1 G3\n\n2) shmil1: Homeworld G3 B1 R3\n\n3) MagicJohn: Build G1 Magicjohn\n\tMagicJohn: Have a good game!\n\n4) shmil1: Build R1 Shmil1\n\n5) MagicJohn: Build G1 Magicjohn\n\n6) shmil1: Build R1 Shmil1\n\n7) MagicJohn: Trade G1 Y1 Magicjohn\n\n8) shmil1: Trade R1 Y1 Shmil1\n\n9) MagicJohn: Build G1 Magicjohn\n\n10) shmil1: Build R1 Shmil1\n\n11) MagicJohn: Build Y1 Magicjohn\n\n12) shmil1: Build Y2 Shmil1\n\n13) MagicJohn: Build Y2 Magicjohn\n\n14) shmil1: Discover Y1 Shmil1 G2 Greeny\n\n15) MagicJohn: Trade Y2 R2 Magicjohn\n\n16) shmil1: Build Y2 Greeny\n\n17) MagicJohn: Discover G1 Magicjohn Y3 Outlander\n\n18) shmil1: Trade Y2 G2 Shmil1\n\n19) MagicJohn: Move Y1 Magicjohn Outlander\n\n20) shmil1: Move Y2 Greeny Outlander\n\n21) MagicJohn: Build R2 Magicjohn\n\n22) shmil1: Sacrifice R1 Shmil1\nAttack G1 Outlander\n\n23) MagicJohn: Move G3 Magicjohn Outlander\n\n24) shmil1: Build Y2 Outlander\nCatastrophe Outlander Yellow\n\n25) MagicJohn: Discover R2 Magicjohn Y3 Majordisaster\n\n26) shmil1: Build G1 Shmil1\n\n27) MagicJohn: Build G1 Magicjohn\n\n28) shmil1: Trade G2 Y2 Shmil1\n\n29) MagicJohn: Build G2 Magicjohn\n\n30) shmil1: Trade R1 B1 Shmil1\n\n31) MagicJohn: Move G1 Magicjohn Majordisaster\n\n32) shmil1: Build B1 Shmil1\n\n33) MagicJohn: Build G2 Majordisaster\n\n34) shmil1: Build G3 Shmil1\n\n35) MagicJohn: Build G3 Magicjohn\n\n36) shmil1: Sacrifice G3 Shmil1\nBuild G3 Shmil1\nBuild R1 Shmil1\nBuild Y1 Shmil1\n\n37) MagicJohn: Build Y2 Magicjohn\n\n38) shmil1: Move G1 Shmil1 Greeny\n\n39) MagicJohn: Discover G2 Magicjohn Y3 Majorproblem\n\n40) shmil1: Sacrifice G3 Shmil1\nBuild G3 Greeny\nBuild Y2 Greeny\nBuild Y3 Shmil1\n\n41) MagicJohn: Move G2 Majorproblem Greeny\nCatastrophe Greeny Green\n\n42) shmil1: Sacrifice Y2 Shmil1\nDiscover Y3 Shmil1 R2 Neco\nMove Y3 Neco Majordisaster\n\n43) MagicJohn: Discover G2 Majordisaster B2 Majorproblem\n\tMagicJohn: Sorry.... I assumed the disaster without ordering it. Had to re-do. My bad.. \n\n44) shmil1: Sacrifice R1 Shmil1\nAttack R2 Majordisaster\n\n45) MagicJohn: Trade G2 R2 Majorproblem\n\n46) shmil1: Attack G1 Majordisaster\n\n47) MagicJohn: Discover G1 Magicjohn Y3 Majorminor\n\n48) shmil1: Build R1 Majordisaster\n\n49) MagicJohn: Move R2 Magicjohn Majorminor\n\n50) shmil1: Discover B1 Shmil1 Y2 Modry\n\n51) MagicJohn: Sacrifice G1 Majorminor\nBuild R1 Majorproblem\n\n52) shmil1: Build G1 Majordisaster\n\n53) MagicJohn: Trade R2 Y2 Majorproblem\n\n54) shmil1: Build G1 Majordisaster\n\n55) MagicJohn: Sacrifice Y2 Magicjohn\nMove Y1 Magicjohn Majordisaster\nMove Y2 Majorproblem Majordisaster\nCatastrophe Majordisaster Y\n\n56) shmil1: Trade B1 G1 Modry\n\n57) MagicJohn: Move R2 Majorminor Modry\n\n58) shmil1: Discover G1 Modry Y3 Zluta\n\n59) MagicJohn: Move R2 Modry Zluta\n\n60) shmil1: Discover G1 Zluta R1 Ruda\n\n61) MagicJohn: Move R2 Zluta Ruda\n\n62) shmil1: Sacrifice Y1 Shmil1\nDiscover G1 Ruda Y3 Zluta\n\n63) MagicJohn: Build G1 Magicjohn\n\n64) shmil1: Build G1 Zluta\n\tshmil1: i like this skip-move :)\n\tMagicJohn: Seems like I didn't leave myself many options for this move.......\n\n65) MagicJohn: Trade G1 Y1 Magicjohn\n\n66) shmil1: Build G1 Zluta\n\n67) MagicJohn: Build Y1 Magicjohn\n\n68) shmil1: Move G1 Zluta Magicjohn\n\n69) MagicJohn: Attack G1 Magicjohn\n\n70) shmil1: Move G1 Zluta Magicjohn\n\n71) MagicJohn: Trade G3 B3 Magicjohn\n\n72) shmil1: Build G2 Magicjohn\n\n73) MagicJohn: Sacrifice R1 Majorproblem\nAttack G2 Magicjohn\n\n74) shmil1: Build G2 Magicjohn\nCatastrophe Magicjohn Green\n\n75) MagicJohn: Trade Y1 G1 Magicjohn\n\n76) shmil1: Build G1 Zluta\n\n77) MagicJohn: Move G1 Magicjohn Zluta\n\n78) shmil1: Move G1 Zluta Magicjohn\n\n79) MagicJohn: Attack G1 Magicjohn\n\n80) shmil1: Build R1 Shmil1\n\n81) MagicJohn: Discover G1 Zluta Y2 Majorkey\n\n82) shmil1: Move G1 Zluta Majorkey\n\n83) MagicJohn: Build G2 Majorkey\n\n84) shmil1: Build G2 Majorkey\n\n85) MagicJohn: Sacrifice R2 Ruda\nAttack G1 Majorkey\nAttack G2 Majorkey\n\n86) shmil1: Trade R1 Y1 Shmil1\nCatastrophe Majorkey Green\n\n87) MagicJohn: Build G1 Magicjohn\n\n88) shmil1: Build R1 Shmil1\n\n89) MagicJohn: Discover G1 Magicjohn Y3 Secondchance\n\n90) shmil1: Discover B1 Shmil1 G2 Zelena\n\n91) MagicJohn: Build G1 Magicjohn\n\n92) shmil1: Sacrifice Y1 Shmil1\nMove B1 Zelena Secondchance\n\n93) MagicJohn: Build G2 Secondchance\n\tshmil1: welcome at re-start :)\n\n94) shmil1: Sacrifice R1 Shmil1\nAttack G1 Secondchance\n\tMagicJohn: Planets of the apes?\n\n95) MagicJohn: Trade G1 R1 Magicjohn\n\n96) shmil1: Build B1 Secondchance\n\n97) MagicJohn: Sacrifice R1 Magicjohn\nAttack G1 Secondchance\n\n98) shmil1: Move B1 Secondchance Magicjohn\n\n99) MagicJohn: Trade B3 Y3 Magicjohn\n\n100) shmil1: Attack G1 Magicjohn\n\n101) MagicJohn: Attack G1 Magicjohn\n\n102) shmil1: Move B1 Secondchance Magicjohn\n\n103) MagicJohn: Attack B1 Magicjohn\n\n104) shmil1: Attack G1 Magicjohn\n\n105) MagicJohn: Attack G1 Magicjohn\n\n106) shmil1: Attack G1 Magicjohn\n\n107) MagicJohn: Attack G1 Magicjohn\n\n108) shmil1: Attack G1 Magicjohn\n\n109) MagicJohn: Attack G1 Magicjohn\n\n110) shmil1: Attack G1 Magicjohn\n\n111) MagicJohn: Move B1 Magicjohn Secondchance\n\n\tMagicJohn: Yo, shmil........ If you want to avoid "hard time" kicking in, you might consider making a move.......\n\nHomeworlds Online (SDG# 21397)\nVariants: "Unrated"\nStarted: 2011.12.27, Ended: 2012.1.30\nParticipants: MagicJohn (S), ringebri (N)\nWinner: MagicJohn\n\n1) ringebri: Homeworld B1 G3 Y3\n\n2) MagicJohn: Homeworld B1 R2 G3\n\tringebri: dah...... dah..... dah...................... dut dah...... (boom boom boom boom boom boom boom boom)\n\tMagicJohn: I hear the Blue Danube Waltz coming on...\n\tMagicJohn: Said Zarthustra...(SP?)\n\tMagicJohn: Ringer, could you please suggest to a family member that a game of irate pigs needs attention?\n\n3) ringebri: Build Y1 Ringebri\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) ringebri: Trade Y1 G1 Ringebri\n\n6) MagicJohn: Trade G1 Y1 Magicjohn\n\n7) ringebri: Discover G1 Ringebri B2 Newhope\n\n8) MagicJohn: Build G1 Magicjohn\n\n9) ringebri: Build G1 Newhope\n\n10) MagicJohn: Build G2 Magicjohn\n\n11) ringebri: Trade G1 Y1 Newhope\n\n12) MagicJohn: Discover G2 Magicjohn B3 Majormistake\n\n13) ringebri: Build Y1 Newhope\n\n14) MagicJohn: Build Y2 Magicjohn\n\n15) ringebri: Discover G1 Newhope R3 Skywalker\n\n16) MagicJohn: Move Y1 Magicjohn Majormistake\n\n17) ringebri: Build Y2 Ringebri\n\n18) MagicJohn: Build Y2 Majormistake\n\n19) ringebri: Trade Y1 B1 Newhope\n\n20) MagicJohn: Move Y2 Majormistake Newhope\n\n21) ringebri: Build G1 Skywalker\n\n22) MagicJohn: Trade G1 R1 Magicjohn\n\n23) ringebri: Move B1 Newhope Skywalker\n\n24) MagicJohn: Move Y2 Magicjohn Skywalker\n\n25) ringebri: Trade G1 R1 Skywalker\n\n26) MagicJohn: Sacrifice R1 Magicjohn\nAttack R1 Skywalker\n\n27) ringebri: Build B2 Skywalker\n\n28) MagicJohn: Attack B2 Skywalker\n\n29) ringebri: Trade Y2 R2 Ringebri\n\n30) MagicJohn: Attack G1 Skywalker\n\n31) ringebri: Attack R1 Skywalker\n\n32) MagicJohn: Trade Y2 R2 Newhope\n\n33) ringebri: Attack G1 Skywalker\n\tringebri: THERE! What a pain that guy was!\n\n34) MagicJohn: Attack Y1 Newhope\n\n35) ringebri: Build R1 Ringebri\n\n36) MagicJohn: Move G2 Majormistake Newhope\n\n37) ringebri: Discover R2 Ringebri B2 Darth\n\n38) MagicJohn: Discover B2 Skywalker Y2 Majormystery\n\n39) ringebri: Build B3 Skywalker\n\n40) MagicJohn: Move Y2 Skywalker Magicjohn\n\n41) ringebri: Build Y1 Ringebri\n\n42) MagicJohn: Build R1 Newhope\n\n43) ringebri: Build B3 Skywalker\n\n44) MagicJohn: Sacrifice Y2 Magicjohn\nMove R1 Newhope Skywalker\nMove R2 Newhope Skywalker\nCatastrophe Skywalker Red\n\n45) ringebri: Trade Y1 G1 Ringebri\n\tringebri: I now have a buzz cut! When the photo appears on facebook, I'll forward it to you. Matthew's was shaved.\n\n46) MagicJohn: Sacrifice G2 Newhope\nBuild B1 Majormystery\nBuild B3 Majormystery\n\n47) ringebri: Move G1 Ringebri Darth\n\tMagicJohn: Kaboom...\n\tringebri: Ouch!\n\n48) MagicJohn: Trade B3 R3 Majormystery\n\n49) ringebri: Build R1 Darth\n\n50) MagicJohn: Move R3 Majormystery Majormistake\n\n51) ringebri: Build Y1 Ringebri\n\tringebri: Check out facebook for a picture of me bald.\n\n52) MagicJohn: Move R3 Majormistake Darth\n\n53) ringebri: Build R1 Darth\nCatastrophe Darth Red\n\n54) MagicJohn: Trade B2 R2 Majormystery\n\n55) ringebri: Move Y1 Ringebri Darth\n\tringebri: in that "forms" game, for replays, just click on each move in the list. You'll see the game as it looked at that move.\n\n56) MagicJohn: Move R2 Majormystery Majormistake\n\n57) ringebri: Move R1 Ringebri Newhope\n\n58) MagicJohn: Move R2 Majormistake Darth\n\tMagicJohn: Stupid game...\n\n59) ringebri: Attack Y1 Newhope\n\tringebri: those reds are nasty little buggers\n\n60) MagicJohn: Attack G1 Darth\n\n61) ringebri: Build Y2 Ringebri\n\n62) MagicJohn: Attack Y1 Darth\n\n63) ringebri: Trade Y2 B2 Ringebri\n\n64) MagicJohn: Build Y2 Darth\n\n65) ringebri: Move R1 Newhope Majormistake\n\n66) MagicJohn: Sacrifice G1 Darth\nBuild B3 Majormystery\n\tMagicJohn: Sara and I saw your picture posting. You really accomplished a couple of things. #1 backing Matthew was a really cool thing to do. #2, I've wondered for years why I looked so much smarter than you. I am amazed! I think you gained 20 IQ points by getting buzzed!!\n\tMagicJohn: : D :D : ) : O : } : ] (the crowd roars its approval.......) \n\n67) ringebri: Move B2 Ringebri Newhope\n\n68) MagicJohn: Trade B3 G3 Majormystery\n\n69) ringebri: Attack Y1 Majormistake\n\n70) MagicJohn: Build B3 Majormystery\n\n71) ringebri: Build Y2 Ringebri\n\n72) MagicJohn: Trade B3 Y3 Majormystery\n\n73) ringebri: Move Y2 Ringebri Newhope\n\n74) MagicJohn: Move R2 Darth Majormistake\n\n75) ringebri: Move R1 Majormistake Darth\n\n76) MagicJohn: Build B3 Majormystery\n\n77) ringebri: Move Y1 Newhope Majormistake\n\n78) MagicJohn: Attack Y1 Majormistake\n\n79) ringebri: Build Y3 Ringebri\n\n80) MagicJohn: Sacrifice Y3 Majormystery\nMove Y1 Darth Ringebri\nMove Y2 Darth Ringebri\nMove Y1 Majormistake Darth\nCatastrophe Ringebri Y\n\n\tMagicJohn: OOpsie........ Otherwise the game was fairly even for the most part.\n\nHomeworlds Online (SDG# 21378)\nVariants: "Hard time"\nStarted: 2011.12.28, Ended: 2012.1.21\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld B1 Y2 G3 Dlwillson\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: <singing> It's a small world after all......\n\n4) dlwillson: B G1 Dlwillson\n\n5) SilentTitan: Trade G3 Y3 Silenttitan\n\n6) dlwillson: T G1 R1 Dlwillson\n\tdlwillson: Oh, fooey. I didn't realize I made it small.\n\n7) SilentTitan: Trade G1 R1 Silenttitan\n\n8) dlwillson: B R2 Dlwillson\n\n9) SilentTitan: Trade Y3 G3 Silenttitan\n\n10) dlwillson: T R2 Y2 Dlwillson\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) dlwillson: B R2 Dlwillson\n\n13) SilentTitan: Trade G1 Y1 Silenttitan\n\n14) dlwillson: T R1 B1 Dlwillson\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) dlwillson: Build B1 Dlwillson\n\n17) SilentTitan: Build Y1 Silenttitan\n\n18) dlwillson: D B1 Dlwillson G3 Gecko\n\n19) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n20) dlwillson: B B2 Gecko\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n22) dlwillson: M Y2 Dlwillson Gecko\n\n23) SilentTitan: Move Y1 Silenttitan Gecko\n\n24) dlwillson: B B2 Gecko\n\n25) SilentTitan: Build Y3 Gecko\n\n26) dlwillson: B Y3 Gecko\nC Gecko Y\n\n27) SilentTitan: Trade Y3 G3 Silenttitan\n\n28) dlwillson: Trade B2 Y2 Gecko\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Silenttitan\nBuild G1 Silenttitan\n\n30) dlwillson: M B2 Gecko Silenttitan\n\n31) SilentTitan: Attack B2 Silenttitan South\n\n32) dlwillson: M B1 Gecko Silenttitan\n\n33) SilentTitan: Discover B2 Silenttitan Y3 Soul\n\n34) dlwillson: B Y3 Gecko\n\n35) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Sol Dlwillson\nMove Y1 Sol Dlwillson\n\n36) dlwillson: M G3 Dlwillson Soul\n\n37) SilentTitan: Move Y1 Sol Dlwillson\nCatastrophe Dlwillson Yellow\n\n38) dlwillson: S Y2 Gecko\nM Y3 Gecko Silenttitan\nM G3 Soul Silenttitan\n\n39) SilentTitan: Move B2 Soul Dlwillson\n\tdlwillson: Small universes are weird.\n\n40) dlwillson: A B2 Dlwillson\n\tSilentTitan: yes they are....\n\n41) SilentTitan: Discover Y3 Silenttitan R3 Fiber\n\n42) dlwillson: S R2 Dlwillson\nA G1 Silenttitan\nA G1 Silenttitan\n\n43) SilentTitan: Attack G1 Silenttitan North\n\n44) dlwillson: T G3 R3 Silenttitan\n\n45) SilentTitan: Build R1 Silenttitan\nCatastrophe Silenttitan Red\n\n46) dlwillson: S B2 Dlwillson\nT Y3 G3 Silenttitan\nT B1 G1 Silenttitan\nC Silenttitan G\n\tSilentTitan: You had me several turns ago ... I'm just trying to make it as painful as possible ... you do know that ... right?\r\n\n\tSilentTitan: heck of a win. \n\tdlwillson: I do. So, we're one and one. Rubber match?\n\tdlwillson: Thank you. Fun game!\n\n\nHomeworlds Online (SDG# 21402)\nVariants: "Hard time"\nStarted: 2011.12.28, Ended: 2011.12.28\nParticipants: dethdukk (S), SilentTitan (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 21408)\nVariants: "Hard time"\nStarted: 2011.12.28, Ended: 2012.1.6\nParticipants: dethdukk (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: LOL.... A number one.... Dukk of Deth. \n\n2) dethdukk: Homeworld B1 R3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dethdukk: Build G1 Dethdukk\n\n5) SilentTitan: Trade G1 R1 Silenttitan\n\n\nHomeworlds Online (SDG# 21425)\nVariants: "Hard time"\nStarted: 2011.12.31, Ended: 2012.1.4\nParticipants: dethdukk (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) dethdukk: Homeworld R1 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n\nHomeworlds Online (SDG# 21433)\nVariants: "Hard time"\nStarted: 2012.1.2, Ended: 2012.2.23\nParticipants: Remneb (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: H R1 B2 G3\n\n2) Remneb: Homeworld R2 B3 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Remneb: Build G1 Remneb\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) agentofchaos: Discover Y1 Agentofchaos G3 Frenfur\n\n8) Remneb: Build G1 Remneb\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) Remneb: Discover G1 Remneb Y1 Thor\n\n11) agentofchaos: Build Y2 Frenfur\n\n12) Remneb: Build Y2 Remneb\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) Remneb: Move Y1 Remneb Thor\n\n15) agentofchaos: B G1 Agentofchaos\n\n16) Remneb: Build G1 Remneb\n\n17) agentofchaos: Trade G1 B1 Agentofchaos\n\n18) Remneb: Move Y1 Thor Frenfur\n\n19) agentofchaos: Sacrifice R1 Agentofchaos\nAttack Y1 Frenfur\n\n20) Remneb: Build Y2 Remneb\n\n21) agentofchaos: Discover Y1 Frenfur G1 Swyvern\n\n22) Remneb: Move Y2 Remneb Thor\n\n23) agentofchaos: Build Y3 Swyvern\n\n24) Remneb: Build Y3 Remneb\n\n25) agentofchaos: Sacrifice B1 Agentofchaos\nTrade Y3 R3 Swyvern\n\n26) Remneb: Trade Y3 R3 Remneb\n\n27) agentofchaos: Build Y3 Swyvern\n\n28) Remneb: Build Y3 Remneb\n\n29) agentofchaos: Build R1 Swyvern\n\n30) Remneb: Sacrifice Y2 Remneb\nMove R3 Remneb Thor\nMove R3 Thor Frenfur\n\n31) agentofchaos: Move Y2 Frenfur Agentofchaos\n\n32) Remneb: Attack Y1 Frenfur\n\n33) agentofchaos: Build G2 Agentofchaos\n\n34) Remneb: Build G2 Thor\n\n35) agentofchaos: Trade G2 R2 Agentofchaos\n\n36) Remneb: Move G2 Thor Frenfur\n\n37) agentofchaos: Discover R2 Agentofchaos Y3 Artek\n\n38) Remneb: Sacrifice G2 Frenfur\nBuild R1 Frenfur\nBuild Y2 Frenfur\n\n39) agentofchaos: Sacrifice Y3 Swyvern\nMove R1 Swyvern Remneb\nMove R2 Artek Swyvern\nMove R2 Swyvern Remneb\n\n40) Remneb: Attack R2 Remneb\n\n41) agentofchaos: Move R3 Swyvern Remneb\nCatastrophe Remneb R\n\n42) Remneb: Move R3 Frenfur Swyvern\n\n43) agentofchaos: Discover Y1 Swyvern B3 Farrago\n\n44) Remneb: Trade G1 R1 Remneb\n\n45) agentofchaos: Build Y3 Agentofchaos\n\n46) Remneb: Build Y3 Remneb\n\n47) agentofchaos: Trade Y2 R2 Agentofchaos\n\n48) Remneb: Move Y2 Frenfur Swyvern\n\n49) agentofchaos: Build G1 Agentofchaos\n\n50) Remneb: Build Y2 Swyvern\n\n51) agentofchaos: Trade G1 B1 Agentofchaos\n\n52) Remneb: Sacrifice G3 Remneb\nBuild R2 Frenfur\nBuild R2 Swyvern\nBuild G1 Thor\n\n53) agentofchaos: Move Y3 Agentofchaos Frenfur\n\n54) Remneb: Sacrifice Y2 Swyvern\nMove R1 Frenfur Agentofchaos\nMove R2 Frenfur Agentofchaos\nCatastrophe Agentofchaos R\n\n55) agentofchaos: Trade B1 R1 Agentofchaos\n\n56) Remneb: Build Y2 Swyvern\n\n57) agentofchaos: Move Y1 Farrago Agentofchaos\n\n58) Remneb: Discover Y1 Frenfur R2 Draconis\n\n59) agentofchaos: Build R1 Agentofchaos\n\n60) Remneb: Move Y3 Remneb Draconis\n\n61) agentofchaos: Trade R1 B1 Agentofchaos\n\n62) Remneb: Move Y3 Draconis Frenfur\n\n63) agentofchaos: Move Y3 Frenfur Draconis\n\n64) Remneb: Move Y1 Draconis Frenfur\n\n65) agentofchaos: Build B1 Agentofchaos\n\n66) Remneb: Discover Y2 Thor B3 Nuke\n\n67) agentofchaos: Discover B1 Agentofchaos R1 Dredworld\n\n68) Remneb: Move Y3 Frenfur Draconis\n\n69) agentofchaos: Attack Y3 Draconis\n\n70) Remneb: Sacrifice Y2 Swyvern\nMove Y1 Frenfur Draconis\nMove Y2 Nuke Draconis\nCatastrophe Draconis Y\n\n71) agentofchaos: Trade B1 Y1 Dredworld\n\n72) Remneb: Move G1 Thor Remneb\n\n73) agentofchaos: Build G2 Agentofchaos\n\n74) Remneb: Build G2 Remneb\n\n75) agentofchaos: Build Y2 Agentofchaos\n\n76) Remneb: Trade G1 B1 Remneb\n\n77) agentofchaos: Build R2 Agentofchaos\n\n78) Remneb: Discover R3 Swyvern B3 Dagan\n\n79) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Dredworld\nBuild Y3 Dredworld\n\n80) Remneb: Build Y3 Swyvern\n\n81) agentofchaos: Sacrifice B1 Agentofchaos\nTrade Y2 G2 Dredworld\n\n82) Remneb: Move G1 Thor Dagan\n\n83) agentofchaos: Trade Y2 B2 Agentofchaos\n\n84) Remneb: Trade G1 B1 Dagan\n\n85) agentofchaos: Move B2 Agentofchaos Dredworld\n\n86) Remneb: Move Y2 Swyvern Dagan\n\n87) agentofchaos: Build B1 Dredworld\n\n88) Remneb: Discover B1 Remneb Y1 Deneb\n\n89) agentofchaos: Build Y2 Agentofchaos\n\n90) Remneb: Sacrifice Y2 Dagan\nMove B1 Dagan Deneb\nMove R3 Dagan Deneb\n\n91) agentofchaos: Build B2 Dredworld\n\n92) Remneb: Sacrifice Y3 Swyvern\nMove B1 Deneb Agentofchaos\nMove B1 Agentofchaos Dredworld\nMove R2 Swyvern Remneb\nCatastrophe Dredworld B\n\n93) agentofchaos: Trade Y2 B2 Agentofchaos\n\n94) Remneb: Trade G2 B2 Remneb\n\n95) agentofchaos: Move B2 Agentofchaos Dredworld\n\n96) Remneb: Move B2 Remneb Deneb\n\n97) agentofchaos: Build B1 Dredworld\n\n98) Remneb: Discover R1 Remneb B1 Orion\n\n99) agentofchaos: Build B3 Dredworld\n\n100) Remneb: Sacrifice Y3 Remneb\nMove B1 Deneb Agentofchaos\nMove B1 Agentofchaos Dredworld\nMove R3 Deneb Remneb\nCatastrophe Dredworld B\n\n101) agentofchaos: Sacrifice Y3 Dredworld\nMove R2 Agentofchaos Remneb\nMove R1 Agentofchaos Remneb\nPass\nCatastrophe Remneb R\n\n\nHomeworlds Online (SDG# 21443)\nVariants: "Unrated"\nStarted: 2012.1.3, Ended: 2012.1.6\nParticipants: pjackson (S), salmoneus (N)\nWinner: pjackson\n\n1) salmoneus: Pass\n\n2) pjackson: Homeworld B1 Y2 G3\n\n3) salmoneus: Homeworld Y3 G2 B3\n\n4) pjackson: Build G1 Pjackson\n\n5) salmoneus: Build B1 Salmoneus\n\n6) pjackson: Build G1 Pjackson\n\n7) salmoneus: Trade B1 G1 Salmoneus\n\n8) pjackson: Discover G1 Pjackson Y3 Sagan\n\n9) salmoneus: Build B1 Salmoneus\n\n10) pjackson: Build G2 Sagan\n\n11) salmoneus: Build B1 Salmoneus Sagan\n\n12) pjackson: Trade G3 B3 Pjackson\n\tpjackson: I thought that I could build ships of a color in systems where a star of that color was present, but apparently not.\n\n13) salmoneus: Trade B3 R3 Salmoneus\n\n14) pjackson: Build B2 Pjackson\n\n15) salmoneus: Trade B1 Y1 Salmoneus\n\n16) pjackson: Trade B3 Y3 Pjackson\n\n17) salmoneus: Discover R3 Salmoneus Y1 Spacepope\n\n18) pjackson: Discover G2 Sagan Y1 Icarus\n\n19) salmoneus: Discover G1 Salmoneus B1 Planetstarbucks\n\n20) pjackson: Sacrifice G2 Icarus\nBuild G2 Pjackson\nBuild B2 Pjackson\n\tpjackson: It's the same move. I just wanted to rename the star, because this tactic may be a little overly ambitious.\n\n21) salmoneus: Move R3 Spacepope Sagan\n\n22) pjackson: Trade B2 R2 Pjackson\n\n23) salmoneus: Attack G1 Sagan\n\n24) pjackson: Discover G2 Pjackson B3 Copernicus\n\n25) salmoneus: Trade G1 Y1 Planetstarbucks\n\n26) pjackson: Sacrifice B2 Pjackson\nTrade Y3 R3 Pjackson\nTrade R2 Y2 Pjackson\n\n27) salmoneus: Discover Y1 Planetstarbucks G2 Arrakis\n\n28) pjackson: Sacrifice Y2 Pjackson\nDiscover G2 Copernicus Y1 Wormhole\nMove G2 Wormhole Salmoneus\n\n29) salmoneus: Build R1 Sagan\n\n30) pjackson: Sacrifice R3 Pjackson\nAttack Y1 Salmoneus\nAttack B1 Salmoneus\nPass\n\n\tpjackson: Good game.\n\nHomeworlds Online (SDG# 21478)\nVariants: "Hard time"\nStarted: 2012.1.6, Ended: 2012.2.15\nParticipants: Subhan64 (S), AdamBadura (N)\nWinner: AdamBadura\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) Subhan64: Homeworld Y3 B1 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) Subhan64: Build G1 Subhan64\n\n5) AdamBadura: Trade Y1 R1 Adambadura\n\n6) Subhan64: Trade G1 R1 Subhan64\n\n7) AdamBadura: Build Y1 Adambadura\n\n8) Subhan64: Build G1 Subhan64\n\n9) AdamBadura: Trade Y1 G1 Adambadura\n\n10) Subhan64: Discover G1 Subhan64 B2 Cookiemonster\n\n11) AdamBadura: Build Y1 Adambadura\n\n12) Subhan64: Trade G3 Y3 Subhan64\n\n13) AdamBadura: Trade Y1 B1 Adambadura\n\n14) Subhan64: Build G1 Cookiemonster\n\n15) AdamBadura: Build G2 Adambadura\n\n16) Subhan64: Sacrifice Y3 Subhan64\nMove G1 Cookiemonster Subhan64\nDiscover G1 Cookiemonster R1 T3\nMove G1 T3 Adambadura\nCatastrophe Adambadura Green\n\n17) AdamBadura: Move Y3 Adambadura Subhan64\n\n18) Subhan64: Build R1 Subhan64\n\tAdamBadura: I wondered whether you will make a caastrophe and decided to check (I expected you will not). Now the situation is quite complex I think. Long have I thought what to do but somehow I'm unable to see future here. Lets see where this road leads... ;)\n\n19) AdamBadura: Trade Y3 R3 Subhan64\n\n20) Subhan64: Build R2 Subhan64\nCatastrophe Subhan64 Red\n\n21) AdamBadura: Trade B1 Y1 Adambadura\n\tSubhan64: didn't have much choice there!\n\n22) Subhan64: Build G1 Subhan64\n\n23) AdamBadura: Move R1 Adambadura Subhan64\n\n\tSubhan64: Well, that's pretty much it. Good game!\n\nHomeworlds Online (SDG# 21492)\nVariants: "Unrated"\nStarted: 2012.1.6, Ended: 2012.1.10\nParticipants: pjackson (S), salmoneus (N)\nWinner: salmoneus\n\n1) salmoneus: Homeworld B3 R1 G3\n\n2) pjackson: Homeworld B2 Y3 G3\n\n3) salmoneus: Build G1 Salmoneus\n\n4) pjackson: Build G1 Pjackson\n\n5) salmoneus: Trade G1 Y1 Salmoneus\n\n6) pjackson: Build G1 Pjackson\n\n7) salmoneus: Build Y1 Salmoneus\n\n8) pjackson: Discover G1 Pjackson R1 Tebow\n\n9) salmoneus: Discover Y1 Salmoneus G2 Caladan\n\n10) pjackson: Trade G1 B1 Pjackson\n\tpjackson: I changed the star color because The Tebow system is, by definition, an offensive and defensive juggernaut. I pity the poor Steeler who attempts to invade The Tebow for five or six sacks, plus a few interceptions, in one game.\n\n11) salmoneus: Build G1 Salmoneus\n\n12) pjackson: Build B1 Pjackson\n\tsalmoneus: How did the steelers lose to those bastards?!\n\n13) salmoneus: Move G1 Salmoneus Caladan\n\n14) pjackson: Discover B1 Pjackson B1 Brees\n\n15) salmoneus: Move G1 Caladan Brees\n\n16) pjackson: Trade B1 R1 Brees\n\n17) salmoneus: Sacrifice G1 Brees\nBuild Y1 Caladan\n\n18) pjackson: Sacrifice G3 Pjackson\nBuild R2 Brees\nBuild R2 Brees\nBuild B1 Pjackson\n\n19) salmoneus: Sacrifice G3 Salmoneus\nBuild Y2 Salmoneus\nBuild Y2 Salmoneus\nBuild Y2 Caladan\n\n20) pjackson: Trade R2 G2 Brees\n\n21) salmoneus: Trade Y2 G2 Salmoneus\n\n22) pjackson: Trade G2 Y2 Brees\n\tpjackson: I might be stuck in a very bad position here.\n\n23) salmoneus: Build Y3 Salmoneus\n\n24) pjackson: Move Y2 Brees Caladan\nCatastrophe Caladan Y\n\n25) salmoneus: Trade Y2 R2 Salmoneus\n\n26) pjackson: Sacrifice G1 Tebow\nBuild B2 Pjackson\nCatastrophe Pjackson B\n\n\tpjackson: The erratic, drunken commander of the Pjackson has become so distraught that he decided to annihilate his home planet. Oh the humanity! And absurdity!\n\tpjackson: Good game, well played.\n\tsalmoneus: I don't use the word hero lightly, but you sir are the greatest hero in the history in Pjackson history.\n\nHomeworlds Online (SDG# 21106)\nVariants: "Hard time"\nStarted: 2012.1.8, Ended: 2012.2.15\nParticipants: disaac (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\tdisaac: Hello Agent, I am Dan. Up for a game?\r\nI have actually only played about 20 games of Homeworlds to this point and they have usually been against the same one or two players. I have been wanting to try against some other players.\n\n2) disaac: Homeworld Y3 G2 B3\n\tagentofchaos: Hi Dan, nice to meet you. I can't remember how many games I've played, but it's not a huge number. Enjoy the game :-)\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) disaac: B B1 Disaac\n\n5) agentofchaos: Trade G1 B1 Agentofchaos\n\n6) disaac: B B2 Disaac\n\n7) agentofchaos: B B2 Agentofchaos\n\n8) disaac: Discover B2 Disaac Y1 Sol\n\n9) agentofchaos: Trade B2 Y2 Agentofchaos\n\n10) disaac: Discover B2 Sol G3 Risa\n\n11) agentofchaos: B B2 Agentofchaos\n\n12) disaac: D B1 Disaac G1 Endor\n\n13) agentofchaos: Trade B2 R2 Agentofchaos\n\n14) disaac: Build B2 Endor\n\n15) agentofchaos: Move Y2 Agentofchaos Risa\n\n16) disaac: T B2 R2 Endor\n\n17) agentofchaos: Discover Y2 Risa G1 Zurvanoid\n\n18) disaac: Build B2 Endor\n\n19) agentofchaos: Build G1 Agentofchaos\n\tdisaac: I'm very sorry for the delay. I plan to get back to this game very soon, but have been a bit tied up lately. \n\tagentofchaos: That's fine, I don't mind if players take their time\n\n20) disaac: Trade B2 Y2 Endor\n\n21) agentofchaos: Build G2 Agentofchaos\n\n22) disaac: D B1 Endor G3 Pandora\n\n23) agentofchaos: Trade B1 Y1 Agentofchaos\n\n24) disaac: B B1 Risa\n\n25) agentofchaos: Move R2 Agentofchaos Pandora\n\n26) disaac: Sacrifice B1 Pandora\nTrade B2 G2 Risa\n\n27) agentofchaos: Move G2 Agentofchaos Risa\n\n28) disaac: Sacrifice G2 Risa\nBuild B1 Disaac\nBuild R1 Endor\n\n29) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild G3 Agentofchaos\nBuild R1 Pandora\n\n\nHomeworlds Online (SDG# 21253)\nStarted: 2012.1.8, Ended: 2012.2.18\nParticipants: virx61 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) virx61: Homeworld B3 Y2 G3\n\tts52: Have a good game.\n\n3) ts52: Build G1 Ts52\n\tvirx61: Thanks\n\n4) virx61: Build G1 Virx61\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) virx61: Discover G1 Virx61 B1 Marsara\n\n7) ts52: Build G1 Grover\n\n8) virx61: Trade G1 Y1 Marsara\n\n9) ts52: Trade G1 Y1 Grover\n\n10) virx61: Build G1 Virx61\n\n11) ts52: Build Y2 Grover\n\n12) virx61: Discover Y1 Marsara G2 Tarsonis\n\n13) ts52: Build G1 Ts52\n\n14) virx61: Discover G1 Virx61 B1 Chausara\n\n15) ts52: Build G2 Grover\n\n16) virx61: Sacrifice Y1 Tarsonis\nDiscover G1 Chausara G3 Auir\n\n17) ts52: Move G1 Ts52 Auir\n\n18) virx61: Build G2 Virx61\n\n19) ts52: Trade Y1 R1 Grover\n\n20) virx61: Discover G2 Virx61 B1 Kamino\n\n21) ts52: Build G2 Ts52\n\n22) virx61: Trade G2 R2 Kamino\n\n23) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild Y1 Grover\n\n24) virx61: Trade R2 Y2 Kamino\n\n25) ts52: Move G2 Grover Kamino\n\n26) virx61: Move Y2 Kamino Virx61\n\n27) ts52: Move Y1 Grover Kamino\n\n28) virx61: Trade Y2 R2 Virx61\n\n29) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Grover\nBuild Y2 Kamino\n\n30) virx61: Build R1 Virx61\n\n31) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Grover\nBuild Y3 Kamino\n\n32) virx61: Trade R1 B1 Virx61\n\n33) ts52: Trade Y3 R3 Kamino\n\n34) virx61: Build R1 Virx61\n\n35) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Kamino\nBuild R1 Kamino\n\n36) virx61: Discover R2 Virx61 B1 Danube\n\n37) ts52: Move R3 Kamino Auir\n\n38) virx61: Build B2 Virx61\n\n39) ts52: Move Y2 Kamino Auir\n\n40) virx61: Build R2 Virx61\n\n41) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Auir\nBuild R2 Kamino\n\n42) virx61: Sacrifice G3 Virx61\nBuild G3 Auir\nBuild R3 Virx61\nBuild R3 Danube\nCatastrophe Auir G\n\n43) ts52: Move R1 Kamino Virx61\nCatastrophe Virx61 R\n\n44) virx61: Sacrifice B2 Virx61\nTrade R2 Y2 Danube\nTrade R3 G3 Danube\n\n45) ts52: M Y3 Kamino Virx61\n\n46) virx61: Move G3 Danube Virx61\n\n47) ts52: Sacrifice R2 Kamino\nAttack G3 Virx61\nAttack B1 Virx61\n\n\tts52: Thanks for the game!\n\tvirx61: You're welcome and thank you... I'll need to get better at this!\n\nHomeworlds Online (SDG# 21497)\nVariants: "Hard time"\nStarted: 2012.1.8, Ended: 2012.1.26\nParticipants: ts52 (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B1 R2 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) zoltar: Build G1 Zoltar\n\tts52: Have a good game.\n\n4) ts52: Build G1 Ts52\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) ts52: Build G1 Ts52\n\n7) zoltar: Build G1 Zoltar\n\n8) ts52: Discover G1 Ts52 B2 Grover\n\n9) zoltar: Discover G1 Zoltar B3 Bluemoon\n\n10) ts52: Build G2 Grover\n\n11) zoltar: Build Y1 Zoltar\n\n12) ts52: Trade G2 Y2 Grover\n\n13) zoltar: Build G2 Zoltar\n\n14) ts52: Build Y2 Grover\n\n15) zoltar: Move Y1 Zoltar Bluemoon\n\n16) ts52: Trade Y2 R2 Grover\n\n17) zoltar: Trade G2 R2 Zoltar\n\n18) ts52: Move R2 Grover Bluemoon\n\n19) zoltar: Sacrifice Y1 Bluemoon\nDiscover G1 Bluemoon B2 Bluemonday\n\n20) ts52: Build G2 Grover\n\n21) zoltar: Build G2 Bluemonday\n\n22) ts52: Move G2 Grover Bluemoon\n\n23) zoltar: Trade R2 Y2 Zoltar\n\n24) ts52: Build G2 Bluemoon\n\n25) zoltar: Sacrifice Y2 Zoltar\nMove G2 Bluemonday Ts52\nMove G1 Bluemonday Ts52\nCatastrophe Ts52 G\n\tzoltar: gg\n\tts52: Wow. I don't know how I missed that... Thanks for the game!\n\n\nHomeworlds Online (SDG# 21333)\nVariants: "Hard time"\nStarted: 2012.1.8, Ended: 2012.1.13\nParticipants: Jesse (S), Tank_7 (N)\nWinner: Jesse\n\n1) Tank_7: Homeworld Y3 B1 G3\n\n2) Jesse: Homeworld B1 Y2 G3\n\tJesse: Hello, and have a good game.\n\n\tTank_7: Crap sorry I forgot all about this didnt log in for several days :(\n\nHomeworlds Online (SDG# 21496)\nStarted: 2012.1.11, Ended: 2013.1.16\nParticipants: logikal (S), GrantHenninger (N)\nWinner: GrantHenninger\n\n1) GrantHenninger: Homeworld B3 Y2 G3\n\n2) logikal: Homeworld Y1 B2 G3\n\n3) GrantHenninger: Build G1 Granthenninger\n\tGrantHenninger: build g1 in GrantHenninger\n\tGrantHenninger: build g1 GrantHenninger\n\n4) logikal: Build G1 Logikal\n\tGrantHenninger: Alright, figured out what I'm doing, I think.\n\n5) GrantHenninger: Trade G1 R1 Granthenninger\n\tGrantHenninger: build r1 GrantHenninger\n\n6) logikal: Discover G1 Logikal B3 L1\n\n7) GrantHenninger: Build G1 Granthenninger\n\n8) logikal: Build G1 Logikal\n\n9) GrantHenninger: Discover G1 Granthenninger B1 Gmh1\n\n10) logikal: Build G2 L1\n\n11) GrantHenninger:\nBuild G2 Granthenninger\n\n12) logikal: Sacrifice G3 Logikal\nBuild G2 Logikal\nBuild G3 Logikal\nBuild G3 L1\n\n13) GrantHenninger: S G3 Granthenninger\nB G3 Granthenninger\nB R1 Granthenninger\nB R1 Granthenninger\n\n14) logikal: Trade G1 Y1 L1\n\n15) GrantHenninger: Trade G1 Y1 Gmh1\n\n16) logikal: Build Y2 L1\n\n17) GrantHenninger: Move G2 Granthenninger Gmh1\n\n18) logikal: Discover Y1 L1 G1 L2\n\n19) GrantHenninger: Build Y2 Gmh1\n\n20) logikal: Sacrifice G2 Logikal\nBuild Y3 L2\nBuild Y3 L1\n\n21) GrantHenninger: Trade R1 B1 Granthenninger\n\n22) logikal: Move Y2 L1 Logikal\n\n23) GrantHenninger: Move R1 Granthenninger Gmh1\n\n\nHomeworlds Online (SDG# 21508)\nVariants: "Unrated"\nStarted: 2012.1.11, Ended: 2012.1.22\nParticipants: salmoneus (S), pjackson (N)\nWinner: salmoneus\n\n1) pjackson: Homeworld Y1 B2 G3\n\n2) salmoneus: Homeworld B3 R2 G3\n\n3) pjackson: Build G1 Pjackson\n\n4) salmoneus: Build G1 Salmoneus\n\tpjackson: I wish you could name your homeworld.\n\n5) pjackson: Trade G1 B1 Pjackson\n\n6) salmoneus: Trade G1 Y1 Salmoneus\n\n7) pjackson: Build G1 Pjackson\n\n8) salmoneus: Build Y1 Salmoneus\n\n9) pjackson: Build G1 Pjackson\n\n10) salmoneus: Build Y2 Salmoneus\n\n11) pjackson: Discover G1 Pjackson Y3 Alekhine\n\n12) salmoneus: Discover Y1 Salmoneus G1 Kaitain\n\n13) pjackson: Build G2 Pjackson\n\n14) salmoneus: Build G2 Salmoneus\n\n15) pjackson: Trade G2 Y2 Pjackson\n\n16) salmoneus: Move G2 Salmoneus Kaitain\n\n17) pjackson: Build G2 Alekhine\n\n18) salmoneus: Build G2 Salmoneus\n\n19) pjackson: Trade G1 R1 Pjackson\n\n20) salmoneus: Discover G2 Kaitain Y3 Buzzell\n\n21) pjackson: Move Y2 Pjackson Buzzell\n\n22) salmoneus: Sacrifice G3 Salmoneus\nBuild G1 Buzzell\nBuild G3 Buzzell\nBuild G3 Salmoneus\n\n23) pjackson: Sacrifice Y2 Buzzell\nDiscover G1 Alekhine B1 Wormhole\nMove G1 Wormhole Buzzell\nCatastrophe Buzzell G\n\tpjackson: Very interesting move.\r\n\n\n24) salmoneus: Build Y2 Kaitain\n\tpjackson: BOOM!\n\n25) pjackson: Build R1 Pjackson\n\n26) salmoneus: Discover Y2 Kaitain G3 Ecaz\n\n27) pjackson: Build B1 Pjackson\n\n28) salmoneus: Sacrifice G3 Salmoneus\nBuild Y2 Ecaz\nBuild Y3 Ecaz\nBuild Y3 Salmoneus\n\n29) pjackson: Move G2 Alekhine Pjackson\n\n30) salmoneus: Build Y3 Kaitain\n\n31) pjackson: Move G3 Pjackson Ecaz\n\tpjackson: Interesting move.\r\n\n\n32) salmoneus: Discover Y3 Ecaz B2 Grumman\n\n33) pjackson: Sacrifice R1 Pjackson\nAttack Y2 Ecaz\n\n34) salmoneus: Trade Y3 R3 Salmoneus\n\n35) pjackson: Discover Y2 Ecaz G1 Capablanca\n\n36) salmoneus: Sacrifice Y2 Salmoneus\nDiscover Y3 Grumman Y3 Foldedspace\nMove Y3 Foldedspace Pjackson\n\n37) pjackson: Sacrifice G3 Ecaz\nBuild Y2 Capablanca\nBuild B1 Pjackson\nBuild R1 Pjackson\n\n\nHomeworlds Online (SDG# 21495)\nStarted: 2012.1.12, Ended: 2012.1.19\nParticipants: ts52 (S), lorgar (N)\nWinner: ts52\n\n1) lorgar: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) lorgar: Build G1 Lorgar\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) ts52: Build G1 Ts52\n\n7) lorgar: Discover B1 Lorgar G3 Metagame\n\n8) ts52: Discover G1 Ts52 B2 Gonzo\n\n9) lorgar: Build B1 Metagame\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) lorgar: Build B2 Metagame\n\n12) ts52: Build Y1 Ts52\n\n13) lorgar: Trade B2 Y2 Metagame\n\n14) ts52: Move Y1 Ts52 Gonzo\n\n15) lorgar: Trade B1 R1 Metagame\n\n16) ts52: Trade Y1 R1 Ts52\n\n17) lorgar: Build G1 Lorgar\n\n18) ts52: Move R1 Ts52 Gonzo\n\n19) lorgar: Build B1 Metagame\n\n20) ts52: Build G1 Gonzo\n\n21) lorgar: Discover B1 Metagame G2 Melmoth\n\n22) ts52: Build G2 Ts52\n\n23) lorgar: Sacrifice G3 Lorgar\nBuild G2 Lorgar\nBuild G3 Lorgar\nBuild B2 Melmoth\n\n24) ts52: Discover G1 Gonzo Y3 Bigbird\n\n25) lorgar: Sacrifice Y2 Metagame\nMove B2 Melmoth Ts52\nMove B1 Melmoth Ts52\n\n26) ts52: Move G1 Bigbird Lorgar\nCatastrophe Lorgar Green\n\tts52: Thanks for the game!\n\n\nHomeworlds Online (SDG# 21411)\nVariants: "Hard time"\nStarted: 2012.1.13, Ended: 2012.2.14\nParticipants: SilentTitan (S), raster51 (N)\nWinner: SilentTitan\n\n1) raster51: Homeworld G1 B2 Y3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) raster51: Build Y1 Raster51\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) raster51: Build Y1 Raster51\n\n6) SilentTitan: Build G1 Silenttitan\n\n7) raster51: Trade Y1 B1 Raster51\n\n8) SilentTitan: Trade G3 Y3 Silenttitan\n\n9) raster51: Trade Y1 R1 Raster51\n\n10) SilentTitan: Build G2 Silenttitan\n\n11) raster51: Build Y1 Raster51\n\n12) SilentTitan: Discover G2 Silenttitan Y1 Sol\n\n13) raster51: Construct R1 Raster51\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) raster51: Discover Y1 Raster51 G3 Moon\n\n16) SilentTitan: Build G2 Sol\n\n17) raster51: Build Y1 Moon\n\n18) SilentTitan: Build G3 Sol\n\n19) raster51: Discover R1 Raster51 G3 Chlorophyll\n\n20) SilentTitan: Trade G2 R2 Silenttitan\n\n21) raster51: Build Y2 Raster51\n\n22) SilentTitan: Trade G1 B1 Silenttitan\n\n23) raster51: Build Y2 Moon\n\n24) SilentTitan: Move B1 Silenttitan Sol\n\n25) raster51: Move B1 Raster51 Moon\n\n26) SilentTitan: Sacrifice G3 Sol\nBuild G1 Silenttitan\nBuild G2 Silenttitan\nBuild G3 Sol\n\n27) raster51: Sacrifice Y2 Moon\nMove R1 Chlorophyll Raster51\nMove B1 Moon Raster51\n\n\n\n\n28) SilentTitan: Discover G3 Sol B3 Sole\n\n29) raster51: Build Y2 Raster51\n\n30) SilentTitan: Build G3 Sole\n\n31) raster51: Build R1 Raster51\n\n32) SilentTitan: Build Y2 Silenttitan\n\n33) raster51: Build Y3 Moon\n\n34) SilentTitan: Sacrifice Y2 Silenttitan\nMove G3 Sole Raster51\nMove G3 Sole Raster51\n\n35) raster51: Sacrifice R1 Raster51\nAttack G3 Raster51\n\n36) SilentTitan: Sacrifice R2 Silenttitan\nAttack G3 Raster51 North\nAttack Y3 Raster51 North\n\n37) raster51: Move Y3 Moon Raster51\n\n38) SilentTitan: Trade G3 R3 Raster51\nCatastrophe Raster51 Yellow\n\n39) raster51: Build R1 Raster51\n\n40) SilentTitan: Attack B1 Raster51 North\nCatastrophe Raster51 Red\n\n\tSilentTitan: Thanks for the Game. \n\nHomeworlds Online (SDG# 21525)\nVariants: "Hard time"\nStarted: 2012.1.14, Ended: 2012.2.20\nParticipants: Jesse (S), daselva (N)\nWinner: Jesse\n\n1) daselva: Homeworld B1 R2 G3\n\n2) Jesse: Homeworld B3 R1 G3\n\n3) daselva: Build G1 Daselva\n\tJesse: Welcome.\n\n4) Jesse: Build G1 Jesse\n\tdaselva: hello\n\n5) daselva: Trade G1 Y1 Daselva\n\n6) Jesse: Trade G1 Y1 Jesse\n\n7) daselva: Build G1 Daselva\n\n8) Jesse: Build G1 Jesse\n\n9) daselva: Trade G1 B1 Daselva\n\n10) Jesse: Trade G1 B1 Jesse\n\n11) daselva: Build B2 Daselva\n\n12) Jesse: Build B2 Jesse\n\n13) daselva: Trade B2 R2 Daselva\n\n14) Jesse: Trade B1 R1 Jesse\n\n15) daselva: Discover R2 Daselva G3 S2\n\n16) Jesse: Discover R1 Jesse G2 Oscar\n\n17) daselva: Build G1 Daselva\n\n18) Jesse: Build G1 Jesse\n\n19) daselva: Sacrifice Y1 Daselva\nMove R2 S2 Oscar\n\n20) Jesse: Build R1 Oscar\n\n21) daselva: Attack R1 Oscar\n\n22) Jesse: Build R2 Oscar\nCatastrophe Oscar R\n\n23) daselva: Trade G1 Y1 Daselva\n\n24) Jesse: Trade G1 R1 Jesse\n\n25) daselva: Build G1 Daselva\n\n26) Jesse: Build G1 Jesse\n\n27) daselva: Build Y1 Daselva\n\n28) Jesse: Build Y2 Jesse\n\n29) daselva: Build Y2 Daselva\n\n30) Jesse: Discover Y2 Jesse G2 Kermit\n\n31) daselva: Trade Y1 R1 Daselva\n\n32) Jesse: Move B2 Jesse Kermit\n\n33) daselva: Build R2 Daselva\n\n34) Jesse: Build R2 Jesse\n\n35) daselva: Discover R2 Daselva G3 S1\n\n36) Jesse: Move R1 Jesse Kermit\n\n37) daselva: Trade R1 Y1 Daselva\n\n38) Jesse: Discover R2 Jesse G2 Lefty\n\n39) daselva: Move Y1 Daselva S1\n\n40) Jesse: Build Y2 Kermit\n\n41) daselva: Build Y3 S1\n\n42) Jesse: Build Y3 Jesse\n\n43) daselva: Sacrifice Y3 S1\nMove Y1 S1 Kermit\nMove Y1 Daselva S1\nMove Y1 S1 Kermit\nCatastrophe Kermit Y\n\n44) Jesse: Move Y1 Jesse Kermit\n\n\nHomeworlds Online (SDG# 21516)\nVariants: "Hard time"\nStarted: 2012.1.16, Ended: 2012.1.30\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Build G1 Lorgar\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Trade G1 B1 Lorgar\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) lorgar: Build B1 Lorgar\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) lorgar: Discover B1 Lorgar G2 Mister\n\n13) SilentTitan: Build Y2 Silenttitan\n\n14) lorgar: Build B2 Mister\n\n15) SilentTitan: Discover Y2 Silenttitan R3 Sole\n\n16) lorgar: Trade B2 Y2 Mister\n\n17) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Sole\nBuild Y3 Silenttitan\n\n18) lorgar: Build B2 Mister\n\n19) SilentTitan: Sacrifice Y3 Sole\nMove Y2 Sol Mister\nMove Y2 Mister Lorgar\nMove Y2 Sole Mister\n\n20) lorgar: Discover B1 Mister Y3 Missz\n\n21) SilentTitan: Trade Y3 R3 Silenttitan\n\n22) lorgar: Sacrifice G3 Lorgar\nBuild B2 Missz\nBuild B3 Mister\nBuild B3 Lorgar\n\n23) SilentTitan: Build Y3 Mister\n\n24) lorgar: Sacrifice Y2 Mister\nMove B3 Mister Missz\nMove B2 Mister Sol\n\n25) SilentTitan: Move Y3 Mister Lorgar\n\n26) lorgar: Trade B3 R3 Lorgar\n\n27) SilentTitan: Sacrifice R3 Silenttitan\nAttack R3 Lorgar South\nAttack G1 Lorgar South\nAttack B1 Lorgar South\n\n\nHomeworlds Online (SDG# 21536)\nVariants: "Hard time"\nStarted: 2012.1.18, Ended: 2012.1.24\nParticipants: Gnomekin (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Gnomekin: Homeworld Y1 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tGnomekin: I haven't played Homeworlds before and have been meaning to for years. I decided that the only way to properly learn how to play was to bite the bullet.\n\n4) Gnomekin: Build G1 Gnomekin\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Gnomekin: Discover G1 Gnomekin Y3 Halfax\n\tSilentTitan: This is very true. I can help you out along the way. If you'd like.\n\tSilentTitan: This is very true. I can help you out along the way. If you'd like.\n\n7) SilentTitan: Build Y1 Silenttitan\n\tGnomekin: I feel like I'm learning a new language to execute commands :D\n\tSilentTitan: Not sure why my last chat... repeated three times... sent it from my phone maybe I hit send more than once. \r\n\n\tSilentTitan: or even why I spelled repeted that way.... yes commands are part of the challenge it seems\r\n\n\n8) Gnomekin: Build G1 Gnomekin\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) Gnomekin: Trade G1 B1 Gnomekin\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) Gnomekin: Discover B1 Gnomekin R3 Detroit\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n14) Gnomekin: Build G1 Gnomekin\n\n15) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n16) Gnomekin: Trade G1 R1 Gnomekin\n\n17) SilentTitan: Build Y3 Soul\n\n18) Gnomekin: Move R1 Gnomekin Detroit\n\n19) SilentTitan: Trade Y3 R3 Silenttitan\n\n20) Gnomekin: Build G1 Halfax\n\n21) SilentTitan: Build Y3 Soul\n\n22) Gnomekin: Move G1 Halfax Silenttitan\n\n23) SilentTitan: Attack G1 Silenttitan South\n\n24) Gnomekin: Sacrifice G3 Gnomekin\nBuild G1 Halfax\nBuild G2 Halfax\nPass\n\tGnomekin: Oops.\r\n\r\nHmmm...\r\n\r\nI'll have to read the rules more carefully.\r\n\r\nI tried to move g2 to my homeworld but couldn't.\n\n\nHomeworlds Online (SDG# 21559)\nStarted: 2012.1.19, Ended: 2012.2.7\nParticipants: ts52 (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) ts52: Build G1 Ts52\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) ts52: Build G1 Ts52\n\n7) lorgar: Discover B1 Lorgar G3 Ragrol\n\n8) ts52: Trade G1 Y1 Ts52\n\n9) lorgar: Build G1 Lorgar\n\n10) ts52: Discover G1 Ts52 Y1 Zoe\n\n11) lorgar: Build B1 Ragrol\n\n12) ts52: Build Y1 Ts52\n\n13) lorgar: Build B2 Ragrol\n\n14) ts52: Move Y1 Ts52 Zoe\n\n15) lorgar: Trade B2 Y2 Ragrol\n\n16) ts52: Build Y3 Ts52\n\n17) lorgar: Build Y3 Ragrol\n\n18) ts52: Trade Y3 R3 Ts52\n\n19) lorgar: Sacrifice Y2 Ragrol\nDiscover B1 Ragrol G1 Oz\nDiscover G1 Lorgar Y3 Mnar\n\n20) ts52: Move R3 Ts52 Oz\n\n21) lorgar: Build G2 Lorgar\n\n22) ts52: Attack B1 Oz\n\n23) lorgar: Sacrifice G3 Lorgar\nBuild G2 Mnar\nBuild G2 Mnar\nBuild G3 Lorgar\n\n24) ts52: Move G1 Zoe Mnar\nCatastrophe Mnar Green\n\n25) lorgar: Trade G2 R2 Lorgar\n\n26) ts52: Build B2 Oz\n\n27) lorgar: Build G1 Lorgar\n\n28) ts52: Move Y1 Ts52 Oz\n\n29) lorgar: Build B2 Ragrol\n\n30) ts52: Trade B2 G2 Oz\n\n31) lorgar: Discover G1 Lorgar Y3 York\n\n32) ts52: Build B2 Oz\n\n33) lorgar: Build G1 Lorgar\n\n34) ts52: Discover G2 Oz Y3 Bigbird\n\n35) lorgar: Trade B2 G2 Ragrol\n\n36) ts52: Trade B2 R2 Oz\n\n37) lorgar: Discover G2 Ragrol R1 Moldau\n\n38) ts52: Move R2 Oz York\n\n39) lorgar: Sacrifice G1 York\nBuild G1 Moldau\n\n40) ts52: Build Y2 Oz\n\n41) lorgar: Build R1 Lorgar\n\n42) ts52: Discover Y2 Oz B3 Gonzo\n\n43) lorgar: Build B2 Ragrol\n\n44) ts52: Sacrifice G2 Bigbird\nBuild Y3 Gonzo\nBuild G2 Ts52\n\n45) lorgar: Sacrifice Y3 Ragrol\nMove G2 Moldau Ts52\nMove G1 Moldau Ts52\nMove B2 Ragrol Zoe\nCatastrophe Ts52 Green\n\tts52: Well played. Should've seen that coming.\n\n\nHomeworlds Online (SDG# 21548)\nVariants: "Hard time"\nStarted: 2012.1.20, Ended: 2012.1.20\nParticipants: SilentTitan (S), kikke2 (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 21566)\nVariants: "No undo"\nStarted: 2012.1.23, Ended: 2012.2.15\nParticipants: lorgar (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 B2 Y3\n\n2) lorgar: Homeworld B1 Y3 G3\n\tajo: Sorry, I've been away for a long time. I'm going to try to pick up with SDG again, though. Guess we'll see if I finish this game. :)\n\n3) ajo: Build Y1 Ajo\n\n4) lorgar: Build G1 Lorgar\n\n5) ajo: Trade Y1 G1 Ajo\n\n6) lorgar: Build G1 Lorgar\n\n7) ajo: Build G2 Ajo\n\n8) lorgar: Discover G1 Lorgar B2 Magnamund\n\n9) ajo: Trade G1 R1 Ajo\n\n10) lorgar: Build G1 Lorgar\n\n11) ajo: Build G2 Ajo\n\n12) lorgar: Trade G1 R1 Lorgar\n\tlorgar: oh c**p\n\tlorgar: thanks for not taking the cheap kill\n\n13) ajo: Discover G2 Ajo Y1 Khyber\n\tajo: Shoot. It wasn't intentional; I even saw the possibility a few moves ago and then forgot about it, I guess. Well, I think I still have the upper hand no matter what.\n\n14) lorgar: Build R1 Lorgar\n\n15) ajo: Build R2 Ajo\n\n16) lorgar: Trade R1 B1 Lorgar\n\n17) ajo: Move G2 Khyber Magnamund\n\n18) lorgar: Sacrifice G3 Lorgar\nBuild G1 Magnamund\nBuild G2 Magnamund\nBuild G3 Lorgar\n\n19) ajo: Discover R2 Ajo Y1 Khyber\nCatastrophe Magnamund Green\n\tlorgar: crappit I forgot the catastrophe at the end of the order.\n\tajo: I'll do it for you, then.\n\n20) lorgar: Build B1 Lorgar\n\tlorgar: thanks! that sweet :)\n\n21) ajo: Build Y1 Ajo\n\n22) lorgar: Discover B1 Lorgar B2 Mnar\n\n23) ajo: Move R2 Khyber Mnar\n\n24) lorgar: Sacrifice G3 Lorgar\nBuild B2 Lorgar\nBuild B3 Mnar\nBuild R1 Lorgar\n\n25) ajo: Attack B1 Mnar\n\tajo: Hmm, nice half-of-a-trick. But is there a second half? :)\n\n26) lorgar: Trade B1 Y1 Lorgar\n\n27) ajo: Sacrifice G2 Ajo\nBuild R2 Ajo\nBuild B1 Mnar\nCatastrophe Mnar Blue\n\n28) lorgar: Build B1 Lorgar\n\n29) ajo: Build R2 Ajo\n\n30) lorgar: Discover B2 Lorgar G2 Maru\n\n31) ajo: Discover R2 Ajo B1 Alpha\n\tajo: Whoops, I'm dumb. Ignore that "Page Admin" stuff.\n\n32) lorgar: Build B2 Maru\n\n33) ajo: Move R1 Ajo Alpha\n\n34) lorgar: Build B3 Lorgar\n\n35) ajo: Trade R2 G2 Alpha\n\n36) lorgar: Build B3 Maru\n\n37) ajo: Build R2 Ajo\n\n38) lorgar: Trade B3 Y3 Maru\n\n39) ajo: Discover R2 Ajo Y1 Khyber\n\n40) lorgar: Move Y3 Maru Alpha\n\n41) ajo: Sacrifice G2 Alpha\nBuild R2 Ajo\nBuild R3 Khyber\n\n42) lorgar: Build B3 Maru\n\n43) ajo: Discover Y1 Ajo G1 Beta\n\n44) lorgar: Sacrifice Y1 Lorgar\nMove B2 Maru Beta\n\n45) ajo: Discover Y1 Beta G2 Gamma\n\n46) lorgar: Trade B3 R3 Maru\n\n47) ajo: Trade R2 G2 Ajo\n\n48) lorgar: Build B3 Beta\n\n49) ajo: Build Y1 Gamma\n\n50) lorgar: Build B3 Beta\n\n51) ajo: Build Y2 Gamma\n\n52) lorgar: Trade B3 R3 Beta\n\n53) ajo: Build Y2 Ajo\n\n54) lorgar: Build B3 Beta\n\n55) ajo: Move Y1 Gamma Lorgar\n\n56) lorgar: Sacrifice Y3 Alpha\nMove B3 Beta Ajo\nMove B3 Beta Ajo\nMove B2 Beta Ajo\nCatastrophe Ajo Blue\n\n57) ajo: Sacrifice R3 Khyber\nAttack R1 Lorgar\nAttack R1 Lorgar\nAttack B1 Lorgar\n\n58) lorgar: Sacrifice R3 Beta\nAttack B1N Lorgar\nAttack R1N Lorgar\nAttack R1N Lorgar\n\n59) ajo: Move Y2 Gamma Lorgar\n\n60) lorgar: Trade B1 G1 Lorgar\n\n61) ajo: Sacrifice G2 Ajo\nBuild R2 Alpha\nBuild R3 Khyber\n\n62) lorgar: Build R3 Maru\n\n63) ajo: Sacrifice R3 Khyber\nAttack G1 Lorgar\nAttack G1 Lorgar\nAttack R1 Lorgar\n\n64) lorgar: Sacrifice R3 Maru\nAttack Y2N Lorgar\nAttack G1N Lorgar\nAttack G1N Lorgar\n\tajo: Well, this is certainly interesting. Wonder how long we'll keep this up... :)\n\tlorgar: ^^\n\n65) ajo: Sacrifice R2 Khyber\nAttack R1 Lorgar\nAttack G1 Lorgar\n\n66) lorgar: Build Y1 Lorgar\nCatastrophe Lorgar Yellow\n\n67) ajo: Trade R2 B2 Alpha\n\tajo: Hmm. I wasn't expecting that (at least not on YOUR turn!). This is going to be another really close game.\n\n68) lorgar: Sacrifice R3 Maru\nAttack G1 Lorgar\nAttack R1 Lorgar\nAttack R1 Lorgar\n\n69) ajo: Sacrifice B2 Alpha\nTrade Y2 B2 Ajo\nTrade Y1 B1 Gamma\n\n70) lorgar: Trade B3 G3 Lorgar\n\tajo: Check.\n\n71) ajo: Build B2 Ajo\n\n72) lorgar: Pass\n\tajo: Checkmate? :)\n\n73) ajo: Sacrifice Y3 Ajo\nMove B2 Ajo Lorgar\nMove B2 Ajo Lorgar\nMove B1 Gamma Lorgar\nCatastrophe Lorgar Blue\n\tajo: Good game. :)\n\n\nHomeworlds Online (SDG# 21563)\nVariants: "Hard time"\nStarted: 2012.1.24, Ended: 2012.1.26\nParticipants: Gnomekin (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tGnomekin: Okay. Now that I have a better idea of how things work (and that when you sacrifice you can only do that color action), I am prepared to get back up and try again.\n\n2) Gnomekin: Homeworld Y2 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Gnomekin: Build G1 Gnomekin\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Gnomekin: Trade G1 R1 Gnomekin\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) Gnomekin: Build G1 Gnomekin\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) Gnomekin: Discover G1 Gnomekin B3 Amber\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\tSilentTitan: oh... I didn't realize we were in a small universe until you made that last move there.\r\n\n\n12) Gnomekin: Sacrifice G3 Gnomekin\nBuild R1 Gnomekin\nBuild R2 Gnomekin\nBuild G1 Amber\n\n13) SilentTitan: Build Y2 Silenttitan\n\n14) Gnomekin: Trade R2 Y2 Gnomekin\n\n15) SilentTitan: Build Y3 Sol\n\n16) Gnomekin: Move Y2 Gnomekin Amber\n\n17) SilentTitan: Trade Y2 R2 Silenttitan\n\tGnomekin: Was that a Zelazney reference?\n\tSilentTitan: Could be. Who is zelazney?\n\n18) Gnomekin: Build Y2 Amber\n\n19) SilentTitan: Move Y3 Sol Gnomekin\n\n20) Gnomekin: Trade Y2 R2 Amber\n\n21) SilentTitan: Sacrifice R2 Silenttitan\nAttack R1 Gnomekin South\nAttack R1 Gnomekin South\n\tGnomekin: Good. This time, you had to kill me, which shows improvement on my part.\n\n\nHomeworlds Online (SDG# 21571)\nVariants: "Hard time"\nStarted: 2012.1.26, Ended: 2012.1.30\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) dlwillson: H R3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dlwillson: B G1 Dlwillson\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) dlwillson: Build B1 Dlwillson\n\n9) SilentTitan: Build Y1 Silenttitan\n\n\tdlwillson: Ha! I'm so used to starting with yellow... I never even ~looked~ since we started.\n\tdlwillson: Good game. Correcting would take at least three moves. Let's start over and I'll try to pay attention. Sorry...\n\nHomeworlds Online (SDG# 21588)\nVariants: "Unrated"\nStarted: 2012.1.28, Ended: 2012.2.18\nParticipants: pjackson (S), salmoneus (N)\nWinner: salmoneus\n\n1) salmoneus: Homeworld B3 R1 G3\n\n2) pjackson: Homeworld B2 G2 R3 *\n\n3) salmoneus: Build G1 Salmoneus\n\tsalmoneus: Interesting choice.\n\n4) pjackson: Build R1 Pjackson\n\n5) salmoneus: Trade G1 Y1 Salmoneus\n\n6) pjackson: Trade R1 Y1 Pjackson\n\n7) salmoneus: Build G1 Salmoneus\n\n8) pjackson: Build R1 Pjackson\n\n9) salmoneus: Discover G1 Salmoneus Y2 Rossak\n\n10) pjackson: Trade R1 G1 Pjackson\n\n11) salmoneus: Build G1 Salmoneus\n\n12) pjackson: Build R1 Pjackson\n\n13) salmoneus: Build G2 Rossak\n\n14) pjackson: Trade R1 B1 Pjackson\n\n15) salmoneus: Discover G1 Rossak Y3 Kepler\n\n16) pjackson: Discover G1 Pjackson Y1 Omicron_persei8\n\n17) salmoneus: Sacrifice G3 Salmoneus\nBuild G2 Salmoneus\nBuild G3 Salmoneus\nBuild G3 Rossak\n\n18) pjackson: Build G3 Omicron_persei8\n\n19) salmoneus: Trade G2 Y2 Salmoneus\n\n20) pjackson: Build Y2 Pjackson\n\n21) salmoneus: Sacrifice Y2 Salmoneus\nMove G1 Salmoneus Pjackson\nMove G1 Kepler Pjackson\n\n22) pjackson: Sacrifice R3 Pjackson\nAttack G1 Pjackson\nAttack G1 Pjackson\nPass\n\n23) salmoneus: Trade G3 R3 Salmoneus\n\n24) pjackson: Trade G1 R1 Pjackson\n\n25) salmoneus: Move G3 Rossak Salmoneus\n\n\tpjackson: I didn't have a move that wouldn't have made my position substantially worse.\n\nHomeworlds Online (SDG# 21596)\nVariants: "Hard time"\nStarted: 2012.1.29, Ended: 2012.2.4\nParticipants: ajo (S), Salmonax (N)\nWinner: ajo\n\n1) Salmonax: Homeworld R1 G3 B3\n\n2) ajo: Homeworld Y3 G1 B3\n\n3) Salmonax: Build B1 Salmonax\n\n4) ajo: Build B1 Ajo\n\n5) Salmonax: Trade B1 Y1 Salmonax\n\n6) ajo: Discover B1 Ajo G2 Alpha\n\n7) Salmonax: Build Y1 Salmonax\n\n8) ajo: Build B1 Ajo\n\n9) Salmonax: Trade Y1 R1 Salmonax\n\n10) ajo: Trade B1 R1 Alpha\n\n11) Salmonax: Build R2 Salmonax\n\n12) ajo: Build R2 Alpha\n\n13) Salmonax: Move R2 Salmonax Alpha\n\n14) ajo: Sacrifice R1 Alpha\nAttack R2 Alpha\n\n15) Salmonax: Build Y1 Salmonax\n\tSalmonax: Argh!\n\n16) ajo: Sacrifice B1 Ajo\nTrade R2 Y2 Alpha\n\tajo: Heh. :)\n\n17) Salmonax: Discover R1 Salmonax G2 S1\n\n18) ajo: Build Y1 Alpha\n\n19) Salmonax: Move Y1 Salmonax S1\n\n20) ajo: Build B1 Ajo\n\n21) Salmonax: Build Y2 S1\n\n22) ajo: Sacrifice B1 Ajo\nTrade Y1 B1 Alpha\n\n23) Salmonax: Move Y1 S1 Ajo\n\n24) ajo: Build B1 Alpha\n\n25) Salmonax: Build Y1 Ajo\n\n26) ajo: Build R1 Alpha\n\n27) Salmonax: Build Y2 Ajo\n\tajo: My gambit may have failed to pay off... :P\n\n28) ajo: Build Y3 Alpha\nCatastrophe Ajo Yellow\n\tajo: Eh? You forgot to "catastrophe ajo yellow"!\n\n29) Salmonax: Build R2 S1\n\tSalmonax: No, didn't forget... was going to trade all to blue if you didn't notice that I forgot. =D\n\n30) ajo: Move R2 Alpha Ajo\n\n31) Salmonax: Build Y1 Salmonax\n\n32) ajo: Move Y3 Alpha Ajo\n\n33) Salmonax: Discover Y1 Salmonax G2 S2\n\n34) ajo: Build R2 Ajo\n\n35) Salmonax: Build Y1 S2\n\n36) ajo: Discover R2 Ajo B2 Beta\n\n37) Salmonax: Build Y2 Salmonax\n\n38) ajo: Build R3 Alpha\n\n39) Salmonax: Build Y3 S1\n\n40) ajo: Trade R3 G3 Alpha\n\n41) Salmonax: Sacrifice B3 Salmonax\nTrade Y1 G1 S2\nTrade Y1 G1 Salmonax\nTrade Y3 G3 S1\n\n42) ajo: Sacrifice Y2 Alpha\nMove B3 Ajo Alpha\nMove B3 Alpha Salmonax\n\n43) Salmonax: Build Y1 Salmonax\n\n44) ajo: Sacrifice R2 Beta\nAttack Y2 Salmonax\nAttack G1 Salmonax\n\tajo: Check. But it's going to be close. :)\n\tSalmonax: Yeah it will!\n\n45) Salmonax: Sacrifice Y2 S1\nMove R2 S1 Salmonax\nMove G3 S1 Salmonax\n\n46) ajo: Sacrifice R2 Ajo\nAttack R2 Salmonax\nAttack G3 Salmonax\n\tajo: Wrong color; I think you ought to have concentrated on green. (Check.)\n\n\tajo: And there's the checkmate. Good game! :)\n\tSalmonax: Gg\n\nHomeworlds Online (SDG# 21585)\nVariants: "Hard time"\nStarted: 2012.1.30, Ended: 2012.2.28\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Trade G1 R1 Lorgar\n\n6) SilentTitan: Trade G1 R1 Silenttitan\n\n7) lorgar: Build R2 Lorgar\n\n8) SilentTitan: Build R2 Silenttitan\n\n9) lorgar: Build G1 Lorgar\n\n10) SilentTitan: Trade R2 Y2 Silenttitan\n\n11) lorgar: Build R2 Lorgar\n\n12) SilentTitan: Build R2 Silenttitan\n\n13) lorgar: Trade R2 B2 Lorgar\n\n14) SilentTitan: Discover R2 Silenttitan B3 Sol\n\n15) lorgar: Discover R2 Lorgar Y2 Mike\n\n16) SilentTitan: Trade R2 G2 Sol\n\n17) lorgar: Discover B2 Lorgar G2 Windmill\n\n18) SilentTitan: Build Y1 Silenttitan\n\n19) lorgar: Build B1 Windmill\n\n20) SilentTitan: Build G1 Sol\n\n21) lorgar: Trade B2 Y2 Windmill\n\n22) SilentTitan: Trade G1 Y1 Sol\n\n23) lorgar: Build B1 Windmill\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Sol\nBuild Y3 Silenttitan\n\n25) lorgar: Move Y2 Windmill Sol\nCatastrophe Sol Yellow\n\n26) SilentTitan: Trade Y3 G3 Silenttitan\n\n27) lorgar: Build B2 Windmill\n\n28) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\n29) lorgar: Trade B1 Y1 Windmill\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Soul\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n31) lorgar: Build Y3 Windmill\n\n32) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Soul Windmill\nMove Y1 Soul Windmill\nCatastrophe Windmill Yellow\n\n33) lorgar: Trade B2 G2 Windmill\n\n34) SilentTitan: Trade Y3 G3 Silenttitan\n\n35) lorgar: Build B1 Windmill\n\n36) SilentTitan: Build G1 Sol\n\n37) lorgar: Trade B1 Y1 Windmill\n\n38) SilentTitan: Build G1 Silenttitan\n\n39) lorgar: Discover G2 Windmill G3 Grasshoper\n\n40) SilentTitan: Trade G2 Y2 Sol\n\n41) lorgar: Move G1 Lorgar Mike\n\n42) SilentTitan: Build G2 Sol\n\n43) lorgar: Sacrifice G2 Grasshoper\nBuild G2 Lorgar\nBuild G3 Mike\n\n44) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Sol Mike\nMove G2 Sol Mike\nCatastrophe Mike Green\n\n45) lorgar: Build B1 Windmill\n\n46) SilentTitan: Trade G1 Y1 Silenttitan\n\n47) lorgar: Build B2 Windmill\n\n48) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n49) lorgar: Build Y3 Windmill\n\n50) SilentTitan: Trade Y2 G2 Silenttitan\n\n51) lorgar: Discover B2 Windmill G3 Armok\n\n52) SilentTitan: Move Y2 Sol Windmill\n\n53) lorgar: Sacrifice Y3 Windmill\nMove Y1 Windmill Armok\nMove Y1 Armok Silenttitan\nMove B2 Armok Silenttitan\n\n54) SilentTitan: Sacrifice Y2 Windmill\nDiscover Y1 Sol Y2 Soul\nDiscover Y1 Silenttitan Y3 Sole\n\n55) lorgar: Sacrifice G2 Lorgar\nBuild B2 Silenttitan\nBuild B3 Silenttitan\nCatastrophe Silenttitan Blue\n\n56) SilentTitan: Attack Y1 Silenttitan North\n\n57) lorgar: Move R2 Mike Sole\n\n58) SilentTitan: Discover Y1 Sole G2 Sol\n\n59) lorgar: Build B2 Windmill\n\n60) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Sol\nBuild Y2 Soul\n\n61) lorgar: Trade B2 R2 Windmill\n\n62) SilentTitan: Move Y2 Soul Silenttitan\n\n63) lorgar: Build R2 Windmill\n\n64) SilentTitan: Discover R1 Silenttitan G3 Tic\n\n65) lorgar: Move R2 Sole Silenttitan\n\n66) SilentTitan: Attack R2 Silenttitan North\n\n67) lorgar: Build R3 Lorgar\n\n68) SilentTitan: Move Y3 Silenttitan Windmill\n\n69) lorgar: Trade R3 B3 Lorgar\n\tlorgar: crappit that was a bad move\n\n70) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 Windmill North\nAttack R2 Windmill North\n\n71) lorgar: Sacrifice B3 Lorgar\nTrade B1 G1 Windmill\nTrade B1 G1 Windmill\nTrade R1 G1 Lorgar\n\n72) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y3 Windmill Lorgar\nMove R2 Windmill Lorgar\n\n73) lorgar: Pass\n\n74) SilentTitan: Sacrifice R2 Windmill\nAttack G3 Lorgar North\nAttack G1 Lorgar North\n\n\tSilentTitan: Thank you... and thank you for playing.\n\tlorgar: even if I get beaten every time I like to play with you. You are hardcore :)\n\tSilentTitan: yeah... I can see that .... playing against nmeme and twoshort will quickly put you on that path.\n\nHomeworlds Online (SDG# 21602)\nVariants: "Hard time"\nStarted: 2012.1.30, Ended: 2012.2.20\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B2 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) dlwillson: B B2 Dlwillson\n\tdlwillson: Holy crap. Homeworlds is HARD...\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) dlwillson: D B2 Dlwillson G1 Dingo\n\n10) SilentTitan: Trade B2 Y2 Silenttitan\n\n11) dlwillson: B G1 Dlwillson\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) dlwillson: T B1 R1 Dlwillson\n\n14) SilentTitan: Build B1 Silenttitan\n\n15) dlwillson: B B2 Dingo\n\n16) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover B1 Silenttitan Y3 Sol\nDiscover B1 Silenttitan Y3 Sole\n\n17) dlwillson: T B2 Y2 Dingo\n\n18) SilentTitan: Build G1 Silenttitan\n\n19) dlwillson: B Y1 Dingo\n\n20) SilentTitan: Build G2 Silenttitan\n\n21) dlwillson: T Y2 R2 Dingo\n\n22) SilentTitan: Trade G2 B2 Silenttitan\n\n23) dlwillson: B B3 Dingo\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Sol\nBuild B3 Silenttitan\nBuild G2 Silenttitan\n\n25) dlwillson: D B2 Dingo G3 Lab\n\n26) SilentTitan: Trade B2 Y2 Silenttitan\n\n27) dlwillson: B B2 Dingo\n\n28) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Sol Dingo\nMove B1 Sole Dingo\nCatastrophe Dingo Blue\n\n29) dlwillson: Trade B2 R2 Lab\n\n30) SilentTitan: Trade B3 R3 Sol\n\n31) dlwillson: B R1 Dingo\n\n32) SilentTitan: Discover G2 Silenttitan R3 Sole\n\n33) dlwillson: S G3 Dlwillson\nB R1 Dingo\nB R3 Dlwillson\nB G2 Dlwillson\n\n34) SilentTitan: Trade B3 Y3 Silenttitan\n\n35) dlwillson: S G2 Dlwillson\nB Y1 Dingo\nB Y2 Dingo\n\n36) SilentTitan: Build G2 Silenttitan\n\n37) dlwillson: T R3 G3 Dlwillson\n\n38) SilentTitan: Discover G2 Silenttitan R3 Soul\n\n39) dlwillson: D Y1 Dingo B3 Hound\n\n40) SilentTitan: Trade Y3 G3 Silenttitan\n\n41) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB G3 Dlwillson\nB Y2 Hound\n\n42) SilentTitan: Build Y2 Silenttitan\n\n43) dlwillson: M R1 Dingo Hound\n\n44) SilentTitan: Sacrifice Y2 Silenttitan\nMove G2 Sole Dingo\nMove G2 Dingo Dlwillson\nCatastrophe Dlwillson Green\n\n45) dlwillson: Build R3 Lab\n\n46) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover R3 Sol Y1 Race\n\n47) dlwillson: Sacrifice Y2 Dingo\nMove R3 Lab Race\nMove R3 Race Dlwillson\n\n48) SilentTitan: Move R3 Race Hound\n\tSilentTitan: That was weird.... not sure how I didn't see that the first time. Also, still not entirely convinced that was the best move.... \n\n49) dlwillson: S Y2 Hound\nM R1 Dingo Hound\nM R2 Dingo Hound\nC Hound R\n\n50) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Soul\nBuild G2 Soul\nBuild G2 Silenttitan\n\n51) dlwillson: Discover Y1 Dingo G3 Frog\n\n52) SilentTitan: Trade G2 Y2 Silenttitan\n\n53) dlwillson: T R3 G3 Dlwillson\n\n54) SilentTitan: Build Y1 Silenttitan\n\n55) dlwillson: B G1 Dlwillson\n\n56) SilentTitan: Trade Y1 B1 Silenttitan\n\n57) dlwillson: Discover G1 Dlwillson Y1 Nugget\n\n58) SilentTitan: Sacrifice B1 Silenttitan\nTrade G2 B2 Soul\n\n59) dlwillson: B G2 Dlwillson\n\n60) SilentTitan: Build Y2 Silenttitan\n\n61) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Nugget\nBuild G3 Dlwillson\nBuild Y2 Hound\n\n62) SilentTitan: Move Y2 Silenttitan Frog\n\n63) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB Y3 Frog\nB Y3 Hound\n\n\tSilentTitan: good game\n\tdlwillson: Thanks. Good game you, too!\n\tSilentTitan: We need a chess clock.\r\n\n\tdlwillson: LOL!\n\nHomeworlds Online (SDG# 21474)\nVariants: "Unrated"\nStarted: 2012.2.4, Ended: 2012.5.21\nParticipants: OnePageWars (S), lorgar (W), agentofchaos (N), dlwillson (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) dlwillson: H B2 Y1 G3\n\n3) OnePageWars: Homeworld G2 Y3 B3\n\tdlwillson: What are the win conditions?\n\n4) lorgar: Homeworld B1 Y3 G3\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) dlwillson: Build G1 Dlwillson\n\tdlwillson: Errr... How does one win in 4-way on SDG?\n\n7) OnePageWars: Build B1 Onepagewars\n\tagentofchaos: The default win condition is last man standing. There's a "sinister" variant where you win by eliminating the person to your left, but if I recall correctly this game uses the default conditions. \n\n8) lorgar: Build G1 Lorgar\n\n9) agentofchaos: Trade G1 B1 Agentofchaos\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) OnePageWars: Build B2 Onepagewars\n\n12) lorgar: Trade G3 B3 Lorgar\n\n13) agentofchaos: B B2 Agentofchaos\n\n14) dlwillson: D B1 Dlwillson G3 Jungle\n\n15) OnePageWars: Build B2 Onepagewars\n\n16) lorgar: Build B2 Lorgar\nCatastrophe Onepagewars Blue\n\n17) agentofchaos: Trade B2 Y2 Agentofchaos\n\n18) dlwillson: B G1 Dlwillson\n\tdlwillson: WTF?\n\n19) lorgar: Discover B2 Lorgar G2 Mnar\n\n20) agentofchaos: Move Y2 Agentofchaos Jungle\n\n21) dlwillson: T G1 R1 Dlwillson\n\n22) lorgar: Trade G1 R1 Lorgar\n\n23) agentofchaos: Trade B1 R1 Agentofchaos\n\n24) dlwillson: B B1 Jungle\n\n25) lorgar: Trade B3 G3 Lorgar\n\n26) agentofchaos: Build R1 Agentofchaos\n\n27) dlwillson: T B1 Y1 Jungle\n\n28) lorgar: Build B1 Mnar\n\n29) agentofchaos: Trade R1 Y1 Agentofchaos\n\n30) dlwillson: B G1 Dlwillson\n\n31) lorgar: Trade B2 R2 Mnar\n\n32) agentofchaos: Sacrifice R1 Agentofchaos\nAttack Y1E Jungle\n\n33) dlwillson: B B1 Jungle\n\n34) lorgar: Build B2 Mnar\n\n35) agentofchaos: Build Y1 Agentofchaos\n\n36) dlwillson: B B2 Jungle\n\n37) lorgar: Trade B1 Y1 Mnar\n\n38) agentofchaos: Trade Y1 B1 Agentofchaos\n\n39) dlwillson: Trade B1 R1 Jungle\n\n40) lorgar: Build B1 Mnar\n\n41) agentofchaos: Sacrifice Y1 Jungle\nDiscover Y2 Jungle R2 Kakrazoon\n\n42) dlwillson: Trade B2 Y2 Jungle\n\n43) lorgar: Discover B2 Mnar G3 Mhor\n\tdlwillson: Chicken!\n\n44) agentofchaos: Build G1 Agentofchaos\n\n45) dlwillson: B B2 Jungle\n\n46) lorgar: Build B2 Mhor\n\n47) agentofchaos: Trade G1 R1 Agentofchaos\n\n48) dlwillson: D B1 Jungle G2 Forest\n\n49) lorgar: Sacrifice Y1 Mnar\nMove B2 Mhor Forest\n\n50) agentofchaos: Build G1 Agentofchaos\n\n51) dlwillson: B B2 Forest\n\n52) lorgar: Sacrifice R2 Mnar\nAttack B2E Forest\nAttack B1E Forest\n\n53) agentofchaos: Discover B1 Agentofchaos Y3 Quasmar\n\n54) dlwillson: B B3 Jungle\n\n55) lorgar: Build B3 Mnar\n\n56) agentofchaos: Sacrifice G1 Agentofchaos\nBuild B3 Quasmar\n\n57) dlwillson: Sacrifice Y2 Jungle\nMove B2 Jungle Forest\nDiscover G1 Dlwillson B3 Sky\nCatastrophe Forest B\n\n58) lorgar: Trade B1 R1 Mnar\n\n59) agentofchaos: Build R2 Agentofchaos\n\n60) dlwillson: Build R2 Dlwillson\n\n61) lorgar: Build B1 Mhor\n\n62) agentofchaos: Move R1 Agentofchaos Quasmar\n\n63) dlwillson: M R2 Dlwillson Sky\n\n64) lorgar: Trade B2 R2 Mhor\n\n65) agentofchaos: Build R3 Agentofchaos\n\n66) dlwillson: S G3 Dlwillson\nB R3 Dlwillson\nB R3 Jungle\nB R3 Sky\n\n67) lorgar: Build R3 Mnar\n\n68) agentofchaos: Trade B3 G3 Quasmar\n\n69) dlwillson: Sacrifice B3 Jungle\nTrade R3 Y3 Jungle\nTrade R3 Y3 Sky\nTrade R3 Y3 Dlwillson\n\n70) lorgar: Trade R1 Y1 Mnar\n\n71) agentofchaos: Sacrifice Y2 Kakrazoon\nMove R3 Agentofchaos Mhor\nMove R2 Agentofchaos Quasmar\n\n72) dlwillson: B G1 Sky\n\n73) lorgar: Build R1 Mhor\n\n74) agentofchaos: Trade R1 B1 Quasmar\n\n75) dlwillson: M G1 Sky Dlwillson\n\n76) lorgar: Build R1 Mhor Catastrophe Mhor Red\n\n77) agentofchaos: Sacrifice Y1 Agentofchaos\nDiscover R3 Mhor Y2 Escapod\n\n78) dlwillson: Discover R1 Jungle G2 Field\n\n79) lorgar: Trade R2 Y2 Mhor\n\n80) agentofchaos: Build G1 Agentofchaos\n\n81) dlwillson: Move Y3 Jungle Field\n\n82) lorgar: Build R2 Mnar\n\n83) agentofchaos: Move B1 Quasmar Escapod\n\n84) dlwillson: T Y3 G3 Dlwillson\n\n85) lorgar: Build B2 Mhor\n\n86) agentofchaos: Build B2 Quasmar\n\n87) dlwillson: B Y1 Sky\n\n88) lorgar: Build B2 Mnar\n\n89) agentofchaos: Sacrifice G1 Agentofchaos\nBuild B2 Escapod\n\n90) dlwillson: Trade Y3 B3 Sky\n\n91) lorgar: Trade B2 G2 Mhor\n\n92) agentofchaos: Trade B2 Y2 Escapod\n\n93) dlwillson: D B3 Sky G2 Forest\n\n94) lorgar: Trade B2 Y2 Mnar\n\n95) agentofchaos: Move R3 Escapod Sky\n\n96) dlwillson: S G3 Dlwillson\nB R2 Sky\nB R3 Sky\nB R3 Dlwillson\nC Sky R\n\n97) lorgar: Sacrifice Y2 Mnar\nMove R1 Mhor Dlwillson\nMove R1 Mhor Dlwillson\nCatastrophe Dlwillson Red\n\n98) agentofchaos: Build G1 Agentofchaos\n\n99) dlwillson: Sacrifice Y3 Field\nMove B3 Forest Sky\nMove B3 Sky Dlwillson\nMove Y1 Sky Field\n\n\n100) lorgar: Build B2 Mhor\n\n101) agentofchaos: Trade G1 Y1 Agentofchaos\n\n102) dlwillson: T B3 R3 Dlwillson\n\n103) lorgar: Sacrifice Y2 Mhor\nMove B1 Mhor Dlwillson\nMove B2 Mhor Dlwillson\n\n104) agentofchaos: Build G1 Agentofchaos\n\n105) dlwillson: A B2W Dlwillson\n\n106) lorgar: Move R2 Mnar Sky\n\n107) agentofchaos: Move B1 Quasmar Dlwillson\nCatastrophe Dlwillson B\n\n108) dlwillson: Build G1 Sky\n\n109) lorgar: Attack G1E Sky\n\n110) agentofchaos: Move R2 Quasmar Field\n\n111) dlwillson: Build G1 Sky\n\n112) lorgar: Attack G1E Sky\n\n113) agentofchaos: Attack Y1E Field\n\n114) dlwillson: Build G2 Sky\n\n115) lorgar: Attack G2E Sky\n\n116) agentofchaos: Attack R1E Field\n\n117) dlwillson: Build R1 Dlwillson\nCatastrophe Sky G\n\n118) lorgar: Build B1 Mnar\n\n119) agentofchaos: Build Y1 Field\n\n120) dlwillson: B G1 Dlwillson\n\n121) dlwillson: M R3 Dlwillson Escapod\n\n122) agentofchaos: Sacrifice Y2 Escapod\nMove G3 Quasmar Dlwillson\nMove R2 Field Dlwillson\n\n123) dlwillson: B R1 Dlwillson\n\tdlwillson: What the Heck?\n\n124) agentofchaos: Build R1 Dlwillson\nCatastrophe Dlwillson R\n\n125) dlwillson: M R3 Escapod Dlwillson\n\tagentofchaos: Looks like I missed a turn for some reason\n\tdlwillson: Why did Lorgar resign?\n\n126) agentofchaos: Sacrifice R1 Field\nAttack R3E Dlwillson\n\tagentofchaos: He sent a message in another game that he doesn't have time to play this week due to personal commitments. \n\n127) dlwillson: Discover G1 Dlwillson B3 Frobnitz\n\n128) agentofchaos: Attack G1E Dlwillson\n\n\tagentofchaos: Thanks for the game \n\nHomeworlds Online (SDG# 21603)\nVariants: "Hard time"\nStarted: 2012.2.4, Ended: 2012.2.28\nParticipants: agentofchaos (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld R2 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) SilentTitan: Discover R2 Silenttitan B3 Sol\n\n14) agentofchaos: Discover R2 Agentofchaos Y1 Freedonia\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild R3 Silenttitan\nBuild R3 Sol\nBuild Y2 Silenttitan\n\n16) agentofchaos: Build Y2 Agentofchaos\n\n17) SilentTitan: Trade R3 G3 Silenttitan\n\n18) agentofchaos: Trade Y1 G1 Agentofchaos\n\n19) SilentTitan: Sacrifice Y1 Silenttitan\nMove R3 Sol Freedonia\n\n20) agentofchaos: Discover R2 Freedonia Y3 A-jeroth\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild R3 Sol\nBuild R3 Freedonia\nBuild Y1 Silenttitan\n\n22) agentofchaos: Move R1 Agentofchaos Freedonia\n\n23) SilentTitan: Move R3 Freedonia A-jeroth\n\n24) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R2 A-jeroth Silenttitan\nDiscover R1 Freedonia Y3 Dredloth\n\n25) SilentTitan: Attack R2 Silenttitan South\n\n26) agentofchaos: Move R1 Dredloth Silenttitan\nCatastrophe Silenttitan R\n\n27) SilentTitan: Trade R3 G3 Sol\n\n28) agentofchaos: Trade G1 Y1 Agentofchaos\n\n29) SilentTitan: Trade R2 Y2 Sol\n\n30) agentofchaos: Build Y2 Agentofchaos\n\n31) SilentTitan: Build Y3 Sol\n\n32) agentofchaos: Build G1 Agentofchaos\n\n33) SilentTitan: Sacrifice Y3 Sol\nMove G3 Sol Freedonia\nMove G3 Freedonia Agentofchaos\nMove R3 Freedonia Agentofchaos\n\n34) agentofchaos: Attack R3 Agentofchaos\n\n35) SilentTitan: Sacrifice R3 A-jeroth\nAttack G3 Agentofchaos South\nAttack R3 Agentofchaos South\nAttack G1 Agentofchaos South\n\n\tagentofchaos: Very well done\n\tSilentTitan: Thank you for the game\n\nHomeworlds Online (SDG# 21655)\nStarted: 2012.2.7, Ended: 2012.2.14\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) lorgar: Homeworld B3 Y1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build G1 Lorgar\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) lorgar: Build G1 Lorgar\n\n7) ts52: Build Y2 Ts52\n\n8) lorgar: Discover G1 Lorgar B2 Aram\n\n9) ts52: Discover Y2 Ts52 G3 Kermit\n\n10) lorgar: Build G1 Lorgar\n\n11) ts52: Build G2 Ts52\n\n12) lorgar: Build G2 Aram\n\n13) ts52: Discover G2 Ts52 Y3 Bigbird\n\n14) lorgar: Trade G2 Y2 Aram\n\n15) ts52: Sacrifice Y2 Kermit\nDiscover G2 Bigbird Y2 Doom\nMove G2 Doom Lorgar\nCatastrophe Lorgar Green\n\tts52: That was too quick. Another re-match?\n\n\nHomeworlds Online (SDG# 21669)\nVariants: "Unrated"\nStarted: 2012.2.11, Ended: 2012.2.26\nParticipants: bertilious (S), slothbear (N), emusan (E)\nWinner: emusan\n\n1) slothbear: Homeworld Y3 B1 G3\n\n2) emusan: Homeworld B1 G2 Y3\n\tslothbear: Keep track of any comments you don't want to reveal as we play. Like wtf did he build 1 green when he could have sacrificed one turquoise for 29 ships? whatever.\n\n3) bertilious: Homeworld G3 B2 Y3\n\n4) slothbear: Build G1 Slothbear\n\n5) emusan: Build Y1 Emusan\n\n6) bertilious: Build Y1 Bertilious\n\n7) slothbear: Discover G1 Slothbear B2 Alnitak\n\n8) emusan: Trade Y1 B1 Emusan\n\n9) bertilious: Trade Y1 R1 Bertilious\n\n10) slothbear: Build G1 Alnitak\n\n11) emusan: Build Y1 Emusan\n\n12) bertilious: Build Y1 Bertilious\n\n13) slothbear: Build G1 Slothbear\n\n14) emusan: B Y1 Emusan\n\n15) bertilious: Build Y1 Bertilious\n\n16) slothbear: Trade G1 R1 Slothbear\n\n17) emusan: D B1 Emusan R3 Secret\n\n18) bertilious: Discover Y1 Bertilious R1 Bertland\n\tslothbear: where did all the propulsion go?\n\temusan: propulsion?\n\n19) slothbear: Build G1 Slothbear\n\temusan: oh lol sorry, got sidetracked by physics\n\n20) emusan: M Y1 Emusan Secret\n\n21) bertilious: Trade Y1 G1 Bertilious\n\n22) slothbear: Trade G1 Y1 Alnitak\n\n23) emusan: B Y2 Emusan\n\n24) bertilious: Build Y2 Bertilious\n\n25) slothbear: Discover Y1 Alnitak G3 Verda\n\n26) emusan: M Y2 Emusan Secret\n\n27) bertilious: Discover Y1 Bertland G3 Bertlandia\n\n28) slothbear: Build Y2 Verda\n\n29) emusan: T Y1 G1 Secret\n\n30) bertilious: Build G2 Bertilious\n\n31) slothbear: Move Y2 Verda Alnitak\n\n32) emusan: B G2 Secret\n\n33) bertilious: Discover Y2 Bertilious R1 Bertland\n\n34) slothbear: Sacrifice Y2 Alnitak\nMove G1 Alnitak Bertland\nMove G1 Bertland Bertilious\nCatastrophe Bertilious Green\n\n35) emusan: D G1 Secret Y2 Lol\n\n36) bertilious: Trade R1 B1 Bertilious\n\n37) slothbear: Move R1 Slothbear Lol\n\tslothbear: sorry\n\n38) emusan: M G1 Lol Secret\n\tslothbear: Propulsion: from two Latin words: pro meaning forwards and pellere meaning to drive. You'd think they'd cover that in physics.\n\tbertilious: what happened to my g3 in bertilious?\n\n39) bertilious: Move B1 Bertilious Bertlandia\n\n40) slothbear: Move R1 Lol Bertlandia\n\tslothbear: Ghosts of your g1 and g2 ships shout: What happened to Us? Don't mind us, we're small and insignificant.\n\tslothbear: bertilious had 3 green units. I (uhm, we) conspired to add a 4th green unit to bertilious. Since there were 4 units of one color, I had the opportunity, the opportunity, the duty (some might say) to declare a catastrophe, destroying all Green in the system. I tried not to, I swear. But Andy said, "if he exposes the Queen, take her." Even if it his first game?, I asked, looking for any way to not attack you. "Yes." That was all. "Yes"\n\tslothbear: or, sorry\n\n41) emusan: B Y1 Secret\n\tslothbear: uhm. careful re: what I'm encouraging you to do. just saying.\n\tslothbear: "remember the bertilious."\n\n42) bertilious: Build B2 Bertlandia\n\n43) slothbear: Build Y2 Verda\n\n44) emusan: T Y1 R1 Emusan\n\n45) bertilious: Move B2 Bertlandia Bertilious\n\tslothbear: Good Bye lol.\n\n46) slothbear: Attack Y1S Bertlandia\n\temusan: it shall return!\n\n47) emusan: B B2 Secret\n\n48) bertilious: Trade Y3 R3 Bertilious\n\n49) slothbear: Trade G3 R3 Slothbear\n\n50) emusan: M B2 Secret Emusan\n\n51) bertilious: Build B2 Bertlandia\n\n52) slothbear: Discover Y1 Bertlandia G1 Outback\n\n53) emusan: B B3 Secret\n\n54) bertilious: Trade R3 Y3 Bertilious\n\n55) slothbear: Build Y1 Outback\n\temusan: lol I haven't used twitter in ages...\n\tslothbear: The view from my chair: http://flic.kr/p/buL82F\n\tslothbear: The important thing is that you staked out your name. Slothbear2 was mighty ticked when he found out I'd already taken the name. Five years earlier.\n\n56) emusan: Build B3 Emusan\n\temusan: ach... well I only have enough pieces for a two player game... gonna have to get more! lol\n\tslothbear: me neither... but I have some Xeno colors filling in for now.\n\n57) bertilious: Move Y3 Bertilious Bertlandia\n\n58) slothbear: Sacrifice Y1 Outback\nMove R1 Bertlandia Outback\n\n59) emusan: M B3 Emusan Secret\n\n60) bertilious: Build Y1 Bertlandia\n\n61) slothbear: Build R1 Outback\n\n62) emusan: Sacrifice B1 Secret\nTrade B3 R3 Secret\n\n63) bertilious: Discover Y1 Bertlandia B1 Berttown\n\n64) slothbear: Sacrifice Y2 Verda\nMove R1 Outback Secret\nMove R1 Outback Secret\nCatastrophe Secret Red\n\tslothbear: As long as you two pass for the next nine moves, I have something really nice planned.\n\n65) emusan: B R1 Emusan\n\tslothbear: aw. Aw. AW!\n\n66) bertilious: Trade B1 R1 Bertlandia\n\temusan: lol almost lost my homeworld\n\tslothbear: nah. we're nicer than that. \n\tslothbear: there will be more games after this one, np if your hw falls. \n\temusan: still though, I don't plan on losing this one quite yet\n\tslothbear: "good intentions"\n\n67) slothbear: Build G1 Slothbear\n\n68) emusan: T R1 Y1 Emusan\n\n69) bertilious: Move R1 Bertlandia Bertland\n\n70) slothbear: Trade G1 B1 Slothbear\n\tslothbear: sorry\n\n71) emusan: T B2 R2 Emusan\n\tslothbear: If you ever need to see previous states, there is an Archive. It's not perfect, but... http://superdupergames.org/main.html?page=archive_play&gid=21669\n\temusan: nooooooooooooooo... need to start over lol\n\tslothbear: there are so many competing pressures in this game. quite the marvel.\n\tslothbear: and the secret project was researching supernovae?\n\n72) bertilious: Build B2 Bertlandia\n\tbertilious: super sour\n\n73) slothbear: Discover B1 Slothbear Y2 Mrsstewart\n\n74) emusan: M R2 Emusan Verda\n\n75) bertilious: Move Y3 Bertlandia Bertilious\n\n76) slothbear: Sacrifice Y1 Verda\nMove B1 Mrsstewart Outback\n\n77) emusan: T Y3 B3 Emusan\n\n78) bertilious: Trade B2 R2 Bertlandia\n\n79) slothbear: Discover B1 Outback G3 Ruby\n\n80) emusan: M B3 Emusan Verda\n\n81) bertilious: Build B2 Bertlandia\n\n82) slothbear: Build B3 Ruby\n\n83) emusan: B B3 Verda\n\temusan: noooo almost got mah move in!\n\n84) bertilious: Trade B2 G2 Bertlandia\n\n85) slothbear: Trade B3 Y3 Ruby\n\tslothbear: jjjeee, you had 30 seconds. wake up.\n\n86) emusan: T B3 Y3 Verda\n\n87) bertilious: Build B2 Bertlandia\n\n88) slothbear: Build B3 Ruby\n\n89) emusan: T B3 R3 Verda\n\n90) bertilious: Trade B2 Y2 Bertlandia\n\n91) slothbear: Trade B3 R3 Ruby\n\n92) emusan: M R3 Verda Emusan\n\n93) bertilious: Build B2 Bertlandia\n\n94) slothbear: Build R1 Ruby\n\n95) emusan: B Y1 Emusan\n\n96) bertilious: Move R2 Bertlandia Bertilious\n\tslothbear: "I'm picking up a lot of blueshift, Cap'n!"\n\n97) slothbear: Discover Y1 Outback R3 Rubytues\n\n98) emusan: B R2 Verda\n\n99) bertilious: Trade B2 G2 Bertlandia\n\n100) slothbear: Build B2 Ruby\n\n101) emusan: B Y2 Verda\n\n102) bertilious: Build B3 Bertlandia\n\n103) slothbear: Discover B2 Ruby Y2 Plugh\n\n104) emusan: M R2 Verda Plugh\n\n105) bertilious: Move R2 Bertilious Slothbear\n\n106) slothbear: Attack R2S Slothbear\n\n107) emusan: A B2N Plugh\n\n108) bertilious: Move Y2 Bertlandia Bertilious\n\n109) slothbear: Build B3 Ruby\n\n110) emusan: T B2 R2 Plugh\n\n111) bertilious: Trade B2 G2 Bertilious Bertilious\n\n112) slothbear: Sacrifice B3 Ruby\nTrade Y1 G1 Rubytues\nTrade R1 G1 Ruby\nTrade R3 G3 Ruby\n\n113) emusan: S Y2 Verda\nM R2 Plugh Slothbear\nM R2 Plugh Slothbear\nC Slothbear Red\n\n114) bertilious: Trade B2 R2 Bertlandia\n\temusan: lol it's not case sensitive apparently\n\tslothbear: nah! and since all the commands are unique, you can abbreviate them. d for discover. gotta type whole system names though, so much typing.\n\n115) slothbear: Sacrifice Y3 Ruby\nMove G3 Ruby Emusan\nMove G1 Ruby Emusan\nMove G1 Rubytues Emusan\nCatastrophe Emusan Green\n\temusan: yeah, I've been using M for move, etc. for awhile now lol\n\tslothbear: yawn. time to go to dinner. see you tomorrow.\n\temusan: yawn? It's 3:17... shouldn't be sleepy by now lol...\n\tslothbear: nope. boredom re: my neighbor's aggressive moves.\n\temusan: aww... well I'm sure you'll figure something out...\n\n116) emusan: M R3 Emusan Bertilious\n\n117) bertilious: Trade Y3 R3 Bertilious\n\n118) slothbear: Build B2 Ruby\n\n119) emusan: A R3S Bertilious\n\n120) bertilious: Build R1 Bertlandia\n\n121) slothbear: Build B2 Ruby\n\tslothbear: Turn 60: http://flic.kr/p/byhohp\r\nI'm looking for ways to better visualize the game. My setup often has errors, ooops, how did that ship get *there*? For now, you should build paper pyramids, perhaps that will distract you.\n\tslothbear: TY uncle Eeyore: http://www.suberic.net/~dmm/games/oihp.html\n\tslothbear: wait. Eeyore is a hero, but he only took the pic. Ty uncle Denis \n\tslothbear: our bank is anemic. needs a transfusion. who will be first to donate?\n\n122) emusan: Sacrifice Y1 Emusan\nM R3 Bertilious Slothbear\n\n123) bertilious: Build B2 Bertlandia\n\tslothbear: do you understand the reference to PLUGH?\n\temusan: related to XYZZY I believe... not entirely sure about any more than that though...\n\tslothbear: yup\n\n124) slothbear: Build G1 Slothbear\n\n125) emusan: A G1N Slothbear\n\temusan: what goes around comes around?\n\tslothbear: I'm *so* glad I turned on the UNDO feature for this game. kinda.\n\temusan: it's helped you in the past too\n\temusan: I'm sure there will be more games too :).\n\tslothbear: helped me rename systems. or maybe a little more. a bit.\n\tslothbear: more games? goody!\n\temusan: and spring break is in two weeks for both steve and me so maybe we could do one in person lol(should have enough pieces between the two of us).\n\tslothbear: why didn't I turn on Sinister? cuz I'm soft.\n\tslothbear: I'd love to do one (or more) in person. More than a turn a day? wow.\n\n126) bertilious: Trade B2 Y2 Bertlandia\n\n127) slothbear: Build G1 Slothbear\n\n128) emusan: S Y1 Emusan\nM R3 Bertilious Slothbear\n\tslothbear: sorry\n\n129) bertilious: Move R1 Bertlandia Bertland\n\temusan: this game is going very bad very fast lol\n\tslothbear: I don't know what the average length is, but I'm pretty sure we're above it.\n\n130) slothbear: Trade G1 Y1 Slothbear\n\n131) emusan: S R3 Slothbear\nA Y1N Slothbear\nA G1N Slothbear\nPass\n\temusan: lol undo??\n\n132) emusan: S Y3 Verda\nM R3 Slothbear Bertilious\nM R2 Verda Bertilious\nM G1 Slothbear Bertilious\n\tslothbear: slight shift. no prob. nothing to see. move along.\n\n133) bertilious: Build R2 Bertlandia\n\n134) emusan: S R2 Bertilious\nA Y2S Bertilious\nA G2S Bertilious\n\n\tslothbear: ? Does elimination award an extra turn? at least on my readout, it looks like emusan got two turns in a row, sacrifice R3 in slothbear, then sacrifice Y3 in Verda.\n\tslothbear: In any case.... Well done, emusan.\n\temusan: yeah, I was kind of wondering about that, I figured it was just a rule I missed or something...\n\nHomeworlds Online (SDG# 21670)\nVariants: "Hard time"\nStarted: 2012.2.12, Ended: 2012.3.19\nParticipants: radio414 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) radio414: Homeworld B2 R1 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) radio414: Build G1 Radio414\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) radio414: Build G1 Radio414\n\n7) dlwillson: B B1 Dlwillson\n\tdlwillson: This is awesome; I love a fast game! Thank you. :-)\n\n8) radio414: Trade G3 B3 Radio414\n\tdlwillson: Have we played before?\n\tradio414: I have no Idea\n\n9) dlwillson: Build G1 Dlwillson\n\n10) radio414: Build B2 Radio414\n\n11) dlwillson: Trade G3 Y3 Dlwillson\n\n12) radio414: Trade B2 Y2 Radio414\n\n13) dlwillson: Discover B1 Dlwillson G2 Frog\n\n14) radio414: Build G2 Radio414\n\n15) dlwillson: Discover B1 Dlwillson G2 Toad\n\n16) radio414: Discover G1 Radio414 B3 Snail\n\n17) dlwillson: B G3 Dlwillson\n\n18) radio414: Build G3 Snail\n\n19) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB B2 Toad\nB B2 Frog\n\n20) radio414: Sacrifice G3 Snail\nBuild G3 Snail\nBuild G3 Snail\nBuild Y1 Radio414\n\n21) dlwillson: S Y3 Dlwillson\nM G1 Dlwillson Frog\nMove G1 Frog Snail\nDiscover B1 Frog Y3 Bee\nC Snail G\n\n22) radio414: Discover B3 Radio414 G3 Grue\n\n23) dlwillson: B B3 Frog\n\n24) radio414: Build B3 Grue\n\n25) dlwillson: T B2 Y2 Frog\n\n26) radio414: Trade B3 R3 Grue\n\n27) dlwillson: T B2 R2 Toad\n\n28) radio414: Sacrifice Y1 Radio414\nMove R3 Grue Radio414\n\n29) dlwillson: Build G1 Dlwillson\n\n30) radio414: Build B2 Grue\n\n31) dlwillson: Sacrifice G3 Dlwillson\nB G1 Dlwillson\nB G3 Dlwillson\nB B2 Bee\n\n32) radio414: Move G1 Radio414 Grue\n\n33) dlwillson: S G1 Dlwillson\nB B3 Toad\n\n34) radio414: Build G1 Radio414\n\n35) dlwillson: D G1 Dlwillson Y2 Goldilocks\n\n36) radio414: Discover Y2 Radio414 G3 Papabear\n\n37) dlwillson: Trade B3 Y3 Toad\n\tdlwillson: Nice knock-down! Why do I never see those coming? :-)\n\n38) radio414: Build Y1 Papabear\n\tdlwillson: I think it would have served you better to knock it down a g2, just in case you get a chance to cash in later. Also would have left you with yellow at home, which you'll want when I start pushing blues at you.\n\n39) dlwillson: S Y2 Frog\nM B1 Bee Radio414\nM B2 Bee Radio414\n\n40) radio414: Attack B2 Radio414\n\n41) dlwillson: Sacrifice G1 Goldilocks\nBuild B3 Radio414\nCatastrophe Radio414 B\n\n42) radio414: Discover Y1 Papabear B2 Desparado\n\n43) dlwillson: B R1 Toad\n\n\nHomeworlds Online (SDG# 21568)\nStarted: 2012.2.13, Ended: 2012.2.29\nParticipants: ludiki (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) ludiki: Homeworld G2 Y1 B3\n\n3) lorgar: Build G1 Lorgar\n\n4) ludiki: Build B1 Ludiki\n\n5) lorgar: Trade G1 Y1 Lorgar\n\tludiki: Hi Lorgar! I'm new to SDG and, though it's been months I wanted to play Homeworlds, it's my first time… I hope I won't make to many newbie mistakes.\n\n6) ludiki: Trade B1 Y1 Ludiki\n\n7) lorgar: Discover Y1 Lorgar G2 Mnar\n\n8) ludiki: Discover Y1 Ludiki B3 Tanga\n\n9) lorgar: Build G1 Lorgar\n\n10) ludiki: Build B1 Ludiki\n\n11) lorgar: Trade G1 R1 Lorgar\n\n12) ludiki: Move B1 Ludiki Tanga\n\n13) lorgar: Build G1 Lorgar\n\n14) ludiki: Trade B1 G1 Tanga\n\n15) lorgar: Build R1 Lorgar\n\n16) ludiki: Build Y2 Tanga\n\n17) lorgar: Build Y2 Mnar\n\n18) ludiki: Build B1 Ludiki\n\n19) lorgar: Move Y2 Mnar Tanga\n\n20) ludiki: Trade Y2 R2 Tanga\n\n21) lorgar: Sacrifice R1 Lorgar\nAttack R2S Tanga\n\n22) ludiki: Trade B3 R3 Ludiki\n\n23) lorgar: Attack Y1S Tanga\n\n24) ludiki: Build G1 Tanga\n\tludiki: what for a newb'mistake have i done?!\n\n25) lorgar: Attack G1S Tanga\n\tlorgar: nobody is perfect ;)\n\n26) ludiki: Trade G1 B1 Tanga\n\n27) lorgar: Attack B1S Tanga\n\n28) ludiki: Build B2 Ludiki\n\n29) lorgar: Sacrifice B1 Tanga\nTrade Y1 B1 Mnar\n\n30) ludiki: Discover B2 Ludiki G3 Simba\n\n31) lorgar: Build Y1 Tanga\n\n32) ludiki: Build B2 Simba\n\n33) lorgar: Sacrifice Y2 Tanga\nMove Y1 Tanga Ludiki\nMove Y1 Tanga Ludiki\n\n34) ludiki: Trade B2 Y2 Simba\n\n35) lorgar: Build G1 Tanga\n\n36) ludiki: Build Y2 Simba\n\n37) lorgar: Build Y2 Ludiki\nCatastrophe Ludiki Yellow\n\n38) ludiki: Trade Y2 R2 Simba\n\n39) lorgar: Trade G3 Y3 Lorgar\n\n40) ludiki: Move R2 Simba Mnar\n\n41) lorgar: Sacrifice Y3 Lorgar\nMove G1 Lorgar Ludiki\nMove G1 Tanga Ludiki\nMove G1 Tanga Ludiki\nCatastrophe Ludiki Green\n\n\tludiki: but it's too late, isn't it? well done\n\tlorgar: rematch?\n\nHomeworlds Online (SDG# 21677)\nVariants: "Hard time"\nStarted: 2012.2.14, Ended: 2012.4.23\nParticipants: TwoShort (S), SilentTitan (N)\nWinner: TwoShort\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: I am back. Hopefully I will be able to actually finish this game\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) TwoShort: Build G1 Twoshort\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) TwoShort: Build G1 Twoshort\n\n9) SilentTitan: Trade G1 B1 Silenttitan\n\n10) TwoShort: Trade G1 B1 Twoshort\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) TwoShort: Build B2 Twoshort\n\n13) SilentTitan: Discover B1 Silenttitan Y3 Sol\n\n14) TwoShort: Discover B1 Twoshort Y2 Yolonda\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) TwoShort: Build B3 Twoshort\n\n17) SilentTitan: Build B3 Silenttitan\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Yolonda\nBuild Y1 Twoshort\nBuild Y2 Twoshort\n\n19) SilentTitan: Discover B1 Sol Y2 Soul\n\n20) TwoShort: Sacrifice Y2 Twoshort\nDiscover B1 Yolonda Y3 Yoyodyne\nMove B2 Twoshort Soul\n\n21) SilentTitan: Trade B3 R3 Silenttitan\n\n22) TwoShort: Trade B2 R2 Soul\n\n23) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Soul\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n24) TwoShort: Attack B2 Soul\n\n25) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Silenttitan Yoyodyne\nMove R3 Yoyodyne Soul\n\n26) TwoShort: Sacrifice B3 Yolonda\nTrade B2 R2 Soul\nTrade B3 G3 Twoshort\nTrade Y1 G1 Twoshort\n\n27) SilentTitan: Sacrifice B2 Silenttitan\nTrade Y1 R1 Silenttitan\nTrade R3 G3 Soul\n\n28) TwoShort: Attack B1 Soul\n\n29) SilentTitan: Trade Y3 R3 Silenttitan\n\n30) TwoShort: Move R2 Soul Yoyodyne\n\tSilentTitan: oh good... learned something new. \n\n31) SilentTitan: Sacrifice R1 Silenttitan\nAttack R2 Soul South\n\n32) TwoShort: Discover B1 Soul Y3 Yonder\n\n33) SilentTitan: Move R2 Soul Yonder\n\n34) TwoShort: Discover B1 Yonder R2 Rover\n\n35) SilentTitan: Trade R3 Y3 Silenttitan\n\n36) TwoShort: Sacrifice G1 Twoshort\nBuild B2 Rover\n\n37) SilentTitan: Move G3 Soul Yoyodyne\n\n38) TwoShort: Discover R2 Yoyodyne G2 Grogar\n\n39) SilentTitan: Build G1 Silenttitan\n\n40) TwoShort: Build G1 Twoshort\n\n41) SilentTitan: Build G2 Yoyodyne\n\n42) TwoShort: Discover B1 Yoyodyne G2 Goner\n\n43) SilentTitan: Build G3 Silenttitan\n\n44) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B2 Goner\nBuild B3 Rover\n\tTwoShort: Excellent game. I figured I should say that now so I'll be free to slink away in dejection when you finish me off :)\n\tSilentTitan: well, Thank you.... I of course will believe you are dead when I pry the number one spot from your cold dead hand. \n\tTwoShort: Fair enough, since I'll certainly keep trying to weasel out until then :)\n\n45) SilentTitan: Trade G3 B3 Silenttitan\n\n46) TwoShort: Trade B2 Y2 Rover\n\n47) SilentTitan: Trade G1 Y1 Silenttitan\n\n48) TwoShort: Move B3 Rover Yonder\n\n49) SilentTitan: Sacrifice G3 Yoyodyne\nBuild G1 Yoyodyne\nBuild G3 Silenttitan\nBuild G3 Silenttitan\n\n50) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild B2 Yonder\nBuild B3 Rover\n\n51) SilentTitan: Trade G3 R3 Silenttitan\n\n52) TwoShort: Sacrifice Y2 Rover\nMove B3 Yonder Silenttitan\nMove B2 Yonder Silenttitan\nCatastrophe Silenttitan Blue\n\n53) SilentTitan: Move Y3 Silenttitan Goner\n\n54) TwoShort: Sacrifice B2 Goner\nTrade B1 Y1 Goner\nTrade B1 R1 Rover\n\n55) SilentTitan: Sacrifice Y3 Goner\nMove G1 Yoyodyne Goner\nMove G1 Goner Twoshort\nDiscover G2 Yoyodyne Y2 Sky\n\n56) TwoShort: Sacrifice B3 Rover\nTrade Y1 R1 Goner\nTrade G3 Y3 Twoshort\nPass\n\n57) SilentTitan: Sacrifice R2 Yonder\nAttack G1 Twoshort South\nAttack Y1 Twoshort South\n\tTwoShort: I kinda feel bad; I try to refrain from commenting on games in progress because I always turn out to be wrong within a few moves. But I really thought it was hopeless, and I can't even see where you did anything particularly wrong since. Sorry if I jinxed you :)\n\n58) TwoShort: Sacrifice Y3 Twoshort\nMove R1 Rover Twoshort\nMove R1 Goner Silenttitan\nMove R2 Grogar Silenttitan\nCatastrophe Silenttitan Red\n\tTwoShort: Dammit, I hate irony. Now I'm shutting up.\n\n\tTwoShort: Excellent game. Thank you.\n\tSilentTitan: thank you.\n\nHomeworlds Online (SDG# 21678)\nStarted: 2012.2.15, Ended: 2012.3.16\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) lorgar: Homeworld G3 Y2 B3\n\n3) ts52: Build G1 Ts52\n\n4) lorgar: Build B1 Lorgar\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) lorgar: Build B1 Lorgar\n\n7) ts52: Build G1 Ts52\n\n8) lorgar: Discover B1 Lorgar G1 Melmoth\n\n9) ts52: Build G2 Grover\n\n10) lorgar: Build B2 Melmoth\n\n11) ts52: Trade G2 Y2 Grover\n\n12) lorgar: Trade B2 R2 Melmoth\n\n13) ts52: B G2 Grover\n\n14) lorgar: Trade B3 G3 Lorgar\n\n15) ts52: Trade G2 R2 Grover\n\n16) lorgar: Build B2 Melmoth\n\n17) ts52: Build G2 Grover\n\n18) lorgar: Sacrifice G3 Lorgar\nBuild B2 Melmoth\nBuild B2 Lorgar\nBuild B3 Lorgar\n\n19) ts52: Build G2 Grover\n\n20) lorgar: Trade B1 Y1 Melmoth\n\n21) ts52: Discover G2 Grover R1 Elmo\n\n22) lorgar: Trade B2 R2 Lorgar\n\n23) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\nBuild G3 Grover\n\n24) lorgar: Build R1 Lorgar\n\tlorgar: crap... I deserved it\n\n25) ts52: Trade G3 Y3 Grover\n\n26) lorgar: Trade B1 Y1 Lorgar\n\n27) ts52: Sacrifice G2 Grover\nBuild G2 Elmo\nBuild G3 Grover\n\n28) lorgar: Build Y1 Melmoth\n\n29) ts52: Sacrifice Y3 Grover\nMove G2 Elmo Lorgar\nMove G2 Elmo Lorgar\nMove G2 Elmo Lorgar\nCatastrophe Lorgar Green\n\n30) lorgar: Build Y3 Melmoth\n\n31) ts52: Move Y2 Grover Melmoth\nCatastrophe Melmoth Yellow\n\n32) lorgar: Build B1 Melmoth\n\n33) ts52: Trade G1 Y1 Grover\n\n34) lorgar: Trade R2 Y2 Melmoth\n\n35) ts52: Build G1 Grover\n\n36) lorgar: Sacrifice Y2 Melmoth\nMove B2 Melmoth Grover\nMove B1 Melmoth Grover\n\n37) ts52: Discover G3 Grover B2 Gonzo\n\n38) lorgar: Sacrifice R1 Lorgar\nAttack R2N Grover\n\n39) ts52: Trade Y1 B1 Grover\nCatastrophe Grover Blue\n\n40) lorgar: Build B1 Melmoth\n\n41) ts52: Build G1 Gonzo\n\n42) lorgar: Trade B2 G2 Melmoth\n\n43) ts52: Trade G3 R3 Gonzo\n\n44) lorgar: Build B1 Melmoth\n\n45) ts52: Build G2 Gonzo\n\n46) lorgar: Build G2 Melmoth\n\n47) ts52: Trade G1 Y1 Gonzo\n\n48) lorgar: Trade G2 Y2 Melmoth\n\n49) ts52: Move R3 Gonzo Melmoth\n\n50) lorgar: Trade B1 G1 Melmoth\n\n51) ts52: Attack Y2 Melmoth\n\n52) lorgar: Build G2 Melmoth\nCatastrophe Melmoth Green\n\n53) ts52: Build G1 Gonzo\n\n54) lorgar: Discover Y1 Lorgar G3 Mhor\n\n55) ts52: Trade G2 R2 Gonzo\n\n56) lorgar: Build Y1 Mhor\n\n57) ts52: Move R2 Gonzo Mhor\n\n58) lorgar: Move Y1 Mhor Gonzo\n\n59) ts52: Attack Y1 Mhor\n\n60) lorgar: Trade B3 G3 Lorgar\n\n61) ts52: Build Y2 Gonzo\n\n62) lorgar: Build G1 Lorgar\n\n63) ts52: Trade Y2 R2 Gonzo\n\n64) lorgar: Discover Y1 Gonzo B3 Wall\n\n65) ts52: Sacrifice G3 Ts52\nBuild Y2 Mhor\nBuild Y3 Mhor\nBuild Y3 Gonzo\n\n66) lorgar: Move Y1 Wall Ts52\n\n67) ts52: Sacrifice Y3 Gonzo\nMove Y3 Mhor Lorgar\nMove Y2 Mhor Lorgar\nMove Y1 Mhor Lorgar\nCatastrophe Lorgar Yellow\n\n\tlorgar: you beat me this time...\n\tts52: Yep. Good game though. Thanks!\n\tlorgar: rematch?\n\tts52: Of course!\n\nHomeworlds Online (SDG# 21682)\nStarted: 2012.2.15, Ended: 2012.2.23\nParticipants: lorgar (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 B2 Y3\n\n2) lorgar: Homeworld G1 Y3 B3\n\n3) ajo: Build Y1 Ajo\n\n4) lorgar: Build B1 Lorgar\n\n5) ajo: Build Y1 Ajo\n\n6) lorgar: Build B1 Lorgar\n\n7) ajo: Discover Y1 Ajo B1 Alpha\n\n8) lorgar: Discover B1 Lorgar G2 Mnar\n\n9) ajo: Discover Y1 Alpha B2 Beta\n\n10) lorgar: Build B1 Mnar\n\n11) ajo: Build Y1 Ajo\n\n12) lorgar: Build B2 Mnar\n\n13) ajo: Discover Y1 Ajo G1 Alpha\n\n14) lorgar: Trade B2 Y2 Mnar\n\n15) ajo: Build Y2 Alpha\n\n16) lorgar: Trade B1 R1 Mnar\n\n17) ajo: Trade Y3 G3 Ajo\n\n18) lorgar: Move Y2 Mnar Alpha\n\n19) ajo: Sacrifice G3 Ajo\nBuild Y2 Alpha\nBuild Y3 Beta\nBuild Y3 Ajo\nCatastrophe Alpha Yellow\n\tajo: Oh -- thank you! ;)\n\n20) lorgar: Trade B1 R1 Lorgar\n\n21) ajo: Trade Y3 G3 Beta\n\n22) lorgar: Build R1 Lorgar\n\n23) ajo: Build G1 Beta\n\n24) lorgar: Build R2 Mnar\n\n25) ajo: Trade G3 R3 Beta\n\n26) lorgar: Build B1 Mnar\n\n27) ajo: Build R2 Beta\n\n28) lorgar: Trade B1 Y1 Mnar\n\n29) ajo: Trade Y3 G3 Ajo\n\n30) lorgar: Build Y2 Mnar\n\n31) ajo: Build Y2 Beta\n\n32) lorgar: Sacrifice Y2 Mnar\nMove R1 Lorgar Beta\nMove R1 Lorgar Beta\nCatastrophe Beta Red\n\n33) ajo: Move Y1 Beta Lorgar\n\tajo: Okay, it's clearly past my bedtime. Last move for tonight. :P\n\n34) lorgar: Sacrifice R1 Mnar\nAttack Y1N Lorgar\n\n35) ajo: Sacrifice G3 Ajo\nBuild Y2 Ajo\nBuild Y2 Beta\nBuild Y3 Ajo\n\n36) lorgar: Trade Y1 R1 Lorgar\n\n37) ajo: Trade Y2 R2 Ajo\n\n38) lorgar: Build R1 Mnar\n\tlorgar: It's very interesting to play with you, I learn a lot :)\n\n39) ajo: Build Y1 Beta\n\n40) lorgar: Build Y2 Mnar\n\n41) ajo: Move Y1 Beta Lorgar\n\n42) lorgar: Sacrifice Y2 Mnar\nDiscover Y1 Mnar G1 Green\nMove Y1 Green Ajo\n\n43) ajo: Attack Y1 Ajo\n\tajo: That seems like a waste...\n\n44) lorgar: Build R1 Lorgar\n\tlorgar: it was XD\r\npanic got the better of me\n\n45) ajo: Build Y2 Lorgar\n\n46) lorgar: Attack Y2N Lorgar\n\n47) ajo: Build Y3 Lorgar\nCatastrophe Lorgar Yellow\n\n48) lorgar: Build B1 Mnar\n\n49) ajo: Discover Y1 Ajo Y1 Gamma\n\n50) lorgar: Trade R2 Y2 Mnar\n\n51) ajo: Build Y3 Beta\n\n52) lorgar: Build Y3 Mnar\n\n53) ajo: Trade Y2 R2 Beta\n\n54) lorgar: Sacrifice Y3 Mnar\nDiscover R1 Lorgar G2 Mors\nDiscover B1 Mnar G3 Mars\nDiscover Y2 Mnar G3 Magratgarlic\n\n55) ajo: Build G1 Beta\n\n56) lorgar: Build B1 Mars\n\tajo: I guess that was a last-ditch effort to try and stop me from getting three green ships? ...It isn't going to work. :P You would have been better off working on a blue castastrophe at Beta, or something.\n\n57) ajo: Build G2 Beta\n\n58) lorgar: Pass\n\tajo: Checkmate. :) Good game.\n\n59) ajo: Sacrifice Y3 Beta\nMove G1 Beta Lorgar\nMove G1 Beta Lorgar\nMove G2 Beta Lorgar\nCatastrophe Lorgar Green\n\tlorgar: thanks, rematch?\n\n\nHomeworlds Online (SDG# 21680)\nVariants: "Hard time"\nStarted: 2012.2.15, Ended: 2012.3.4\nParticipants: Subhan64 (S), Danner (N)\nWinner: Danner\n\n1) Danner: Pass\n\tDanner: Hello again! :)\r\nHave a nice game!\n\n2) Subhan64: Homeworld G1 B3 Y3\n\n3) Danner: Homeworld G1 B2 G3 *\n\tSubhan64: yes, you too, thanks!\n\n4) Subhan64: Build Y1 Subhan64\n\n5) Danner: Build G1 Danner\n\n6) Subhan64: Build Y1 Subhan64\n\n7) Danner: Trade G3 Y3 Danner\n\n8) Subhan64: Discover Y1 Subhan64 G2 Kermit\n\n9) Danner: Build G2 Danner\n\n\nHomeworlds Online (SDG# 21674)\nVariants: "Unrated"\nStarted: 2012.2.20, Ended: 2012.3.17\nParticipants: ludiki (S), anonymousApple (N)\nWinner: ludiki\n\n1) anonymousApple: Homeworld G1 B2 Y3\n\n2) ludiki: Homeworld Y1 G2 B3\n\n3) anonymousApple: Build Y1 Anonymousapple\n\n4) ludiki: Build B1 Ludiki\n\n5) anonymousApple: Trade Y1 G1 Anonymousapple\n\n6) ludiki: Discover B1 Ludiki G3 Cox\n\n7) anonymousApple: Discover G1 Anonymousapple B3 Snooki\n\n8) ludiki: Build B1 Cox\n\n9) anonymousApple: Build G1 Snooki\n\n10) ludiki: Trade B1 R1 Cox\n\n11) anonymousApple: Build G2 Snooki\n\n12) ludiki: Build B1 Ludiki\n\n13) anonymousApple: Build Y1 Anonymousapple\n\n14) ludiki: Trade B3 R3 Ludiki\n\n15) anonymousApple: Sacrifice Y3 Anonymousapple\nMove G1 Snooki Ludiki\nMove G1 Snooki Ludiki\nMove G2 Snooki Ludiki\nCatastrophe Ludiki Green\n\n16) ludiki: Trade B1 Y1 Cox\n\n17) anonymousApple: Trade Y1 R1 Anonymousapple\n\n18) ludiki: Build Y1 Cox\n\n19) anonymousApple: Build R1 Anonymousapple\n\n20) ludiki: Build Y2 Cox\n\n21) anonymousApple: Trade R1 G1 Anonymousapple\n\n22) ludiki: Sacrifice Y2 Cox\nMove R3 Ludiki Cox\nMove R3 Cox Anonymousapple\n\n23) anonymousApple: Build R1 Anonymousapple\n\tanonymousApple: gg\n\n24) ludiki: Build R2 Cox\n\n25) anonymousApple: Build R2 Anonymousapple\nCatastrophe Anonymousapple Red\n\n26) ludiki: Move R2 Cox Anonymousapple\n\n27) anonymousApple: Build G1 Anonymousapple\n\n28) ludiki: Attack G1 Anonymousapple\n\n29) anonymousApple: Build G2 Anonymousapple\n\n30) ludiki: Attack G2 Anonymousapple\nCatastrophe Anonymousapple G\n\tanonymousApple: SEPPUKU!\n\tanonymousApple: aww it won't let me catastrophe myself v.v\n\n\tanonymousApple: gg :) Twas my first so thanks for the fun!\n\tludiki: you're welcome… it's quite addictive!\n\nHomeworlds Online (SDG# 21716)\nVariants: "Hard time"\nStarted: 2012.2.23, Ended: 2012.3.12\nParticipants: agentofchaos (S), AdamBadura (N)\nWinner: agentofchaos\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\tagentofchaos: Good luck\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) AdamBadura: Trade Y1 G1 Adambadura\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) AdamBadura: Build G1 Adambadura\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) AdamBadura: Trade G1 R1 Adambadura\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) AdamBadura: Build R2 Adambadura\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) AdamBadura: Build R2 Adambadura\n\n14) agentofchaos: Discover R2 Agentofchaos G2 Arcktron\n\n15) AdamBadura: Discover R1 Adambadura G1 Shipyard\n\n16) agentofchaos: Build R3 Arcktron\n\n17) AdamBadura: Build R3 Shipyard\n\n18) agentofchaos: Build R3 Agentofchaos\n\n19) AdamBadura: Sacrifice Y3 Adambadura\nMove R1 Shipyard Arcktron\nMove R1 Arcktron Agentofchaos\nDiscover G1 Adambadura Y1 Outpost\nCatastrophe Agentofchaos R\n\n20) agentofchaos: Sacrifice Y1 Agentofchaos\nMove R3 Arcktron Outpost\n\n21) AdamBadura: Discover G1 Outpost Y2 Outpost2\n\n22) agentofchaos: Move R3 Outpost Adambadura\n\n\tAdamBadura: Good one!\n\nHomeworlds Online (SDG# 21683)\nVariants: "No undo"\nStarted: 2012.2.24, Ended: 2012.3.9\nParticipants: ajo (S), lorgar (N)\nWinner: lorgar\n\n1) lorgar: Homeworld B2 Y3 G3\n\n2) ajo: Homeworld R2 B1 G3\n\n3) lorgar: Build G1 Lorgar\n\tlorgar: gl hf enjoy :D\n\n4) ajo: Build G1 Ajo\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) lorgar: Discover B1 Lorgar G1 Mnar\n\n8) ajo: Build G1 Ajo\n\n9) lorgar: Build B1 Mnar\n\n10) ajo: Discover G1 Ajo B3 Alpha\n\n11) lorgar: Build B2 Mnar\n\n12) ajo: Build G1 Ajo\n\n13) lorgar: Trade B1 Y1 Mnar\n\n14) ajo: Build G2 Ajo\n\n15) lorgar: Move B2 Mnar Alpha\n\n16) ajo: Discover G2 Ajo B3 Beta\n\n17) lorgar: Trade B2 R2 Alpha\n\n18) ajo: Sacrifice G1 Alpha\nBuild G1 Beta\n\n19) lorgar: Build B1 Mnar\n\n20) ajo: Trade G2 Y2 Beta\n\n21) lorgar: Build G2 Lorgar\n\n22) ajo: Sacrifice G3 Ajo\nBuild G2 Beta\nBuild G2 Beta\nBuild G3 Ajo\n\n23) lorgar: Discover B1 Mnar G3 Mhor\n\n24) ajo: Discover G1 Beta Y1 Gamma\n\n25) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B2 Mnar\nBuild B2 Mnar\n\n26) ajo: Sacrifice G2 Beta\nBuild G2 Gamma\nBuild Y2 Beta\n\n27) lorgar: Trade G2 R2 Lorgar\n\tajo: Check.\n\tlorgar: indeed\n\n28) ajo: Sacrifice G3 Ajo\nBuild G2 Gamma\nBuild G3 Ajo\nBuild Y2 Ajo\n\n29) lorgar: Move R2 Lorgar Gamma\n\n30) ajo: Sacrifice Y2 Ajo\nMove G2 Gamma Lorgar\nMove G2 Gamma Lorgar\n\tlorgar: crap... bad idea XD I'm done now\n\tajo: haha, yeah, you're not checkmated yet I think, but that was a BAD move. :)\n\n31) lorgar: Trade G3 R3 Lorgar\n\tajo: Check (obviously).\n\tlorgar: I'm getting smitten...\n\n32) ajo: Trade G2 Y2 Lorgar\n\n33) lorgar: Attack G2S Lorgar\n\n34) ajo: Sacrifice G2 Beta\nBuild Y3 Lorgar\nBuild Y3 Lorgar\nCatastrophe Lorgar Yellow\n\n35) lorgar: Build B3 Mhor\n\n36) ajo: Move G1 Gamma Mhor\n\n37) lorgar: Sacrifice Y1 Mnar\nMove B3 Mhor Gamma\n\n38) ajo: Build G2 Ajo\n\n39) lorgar: Move B3 Gamma Beta\n\n40) ajo: Sacrifice Y2 Beta\nDiscover Y2 Beta R1 Deathtrap\nMove G1 Mhor Deathtrap\n\tajo: Okay, I'm about to do something stupid...\n\n41) lorgar: Trade B3 G3 Beta\n\n42) ajo: Discover G2 Ajo B3 Delta\n\n43) lorgar: Move R2 Gamma Delta\n\n44) ajo: Sacrifice G2 Delta\nBuild G2 Deathtrap\nBuild Y1 Ajo\n\n45) lorgar: Trade B2 Y2 Mnar\n\n46) ajo: Discover G1 Deathtrap B2 Houdini\n\n47) lorgar: Sacrifice Y2 Mnar\nMove R2 Alpha Ajo\nMove R2 Delta Ajo\n\n48) ajo: Sacrifice G3 Ajo\nBuild G2 Houdini\nBuild G3 Ajo\nBuild Y1 Deathtrap\n\n49) lorgar: Sacrifice G2 Lorgar\nBuild R1 Ajo\nBuild R1 Lorgar\nCatastrophe Ajo Red\n\n50) ajo: Trade G2 R2 Houdini\n\n51) lorgar: Sacrifice G3 Beta\nBuild B3 Mhor\nBuild B3 Mhor\nBuild B3 Mnar\n\tajo: This game is going to come down to the last move, too... but I think you're ahead this time. All my ships are the wrong colors.\n\n52) ajo: Move G1 Ajo Mhor\n\n53) lorgar: Trade B2 Y2 Mnar\n\n54) ajo: Sacrifice G2 Deathtrap\nBuild G2 Mhor\nBuild G2 Mhor\nCatastrophe Mhor Green\n\n55) lorgar: Move B3 Mnar Houdini\n\tajo: *Now* I'm not sure who's ahead! :)\n\n56) ajo: Trade G1 B1 Houdini\n\n57) lorgar: Trade B3 R3 Houdini\n\n58) ajo: Sacrifice Y2 Deathtrap\nMove B1 Houdini Ajo\nMove R2 Houdini Ajo\n\n59) lorgar: Build Y2 Mnar\n\n60) ajo: Discover B1 Ajo G3 Alpha\n\n61) lorgar: Move Y2 Mnar Alpha\n\n62) ajo: Build Y2 Ajo\n\n63) lorgar: Sacrifice R1 Lorgar\nAttack B1S Alpha\n\n64) ajo: Move Y2 Ajo Alpha\n\n65) lorgar: Build B2 Alpha\n\n66) ajo: Sacrifice R2 Ajo\nAttack Y2 Alpha\nAttack B2 Alpha\n\n67) lorgar: Build B3 Alpha\n\n68) ajo: Sacrifice G3 Ajo\nBuild Y3 Ajo\nBuild Y3 Deathtrap\nBuild B3 Alpha\nCatastrophe Alpha Blue\n\tajo: Oops! (I think.) :)\n\n69) lorgar: Sacrifice Y2 Mnar\nMove R3 Houdini Ajo\nMove B1 Mnar Lorgar\n\tajo: Hmm, I guess you still have that big red at Houdini, huh? I suppose I'm still going to lose either way.\n\n70) ajo: Pass\n\tajo: Good game. :)\n\n71) lorgar: Sacrifice R3 Lorgar\nAttack Y3S Ajo\nAttack Y1S Ajo\nAttack Y1S Ajo\n\tlorgar: thx, rematch?\n\n\nHomeworlds Online (SDG# 21695)\nStarted: 2012.2.25, Ended: 2012.4.30\nParticipants: agentofchaos (S), ts52 (N)\nWinner: agentofchaos\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld B1 R3 G3\n\n3) ts52: Build G1 Ts52\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) ts52: Build G1 Ts52\n\n8) agentofchaos: Discover Y1 Agentofchaos G2 Shazcatraz\n\n9) ts52: Trade G1 Y1 Ts52\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) ts52: Move Y1 Ts52 Grover\n\n12) agentofchaos: Trade G1 R1 Agentofchaos\n\n13) ts52: Build G1 Grover\n\n14) agentofchaos: B G1 Agentofchaos\n\n15) ts52: Build G2 Ts52\n\n16) agentofchaos: Trade G1 Y1 Agentofchaos\n\n17) ts52: Trade G1 R1 Grover\n\n18) agentofchaos: Build Y2 Shazcatraz\n\n19) ts52: Build G1 Grover\n\n20) agentofchaos: Move Y2 Shazcatraz Grover\n\n21) ts52: Discover R1 Grover G2 Kermit\n\n22) agentofchaos: Sacrifice R1 Agentofchaos\nAttack Y1 Grover\n\n23) ts52: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n24) agentofchaos: Sacrifice Y1 Grover\nMove Y2 Grover Kermit\n\n25) ts52: Trade G1 Y1 Grover\n\n26) agentofchaos: Build G1 Agentofchaos\n\n27) ts52: Move G3 Grover Kermit\n\n28) agentofchaos: Discover Y2 Kermit R3 Holodeth\n\n29) ts52: Sacrifice G3 Kermit\nBuild G3 Grover\nBuild Y2 Grover\nBuild Y3 Grover\n\n30) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Shazcatraz\nBuild Y3 Holodeth\nBuild G3 Agentofchaos\n\n31) ts52: Trade G2 R2 Ts52\n\n32) agentofchaos: Move Y1 Shazcatraz Grover\nCatastrophe Grover Y\n\n33) ts52: Trade G3 Y3 Grover\n\n34) agentofchaos: Trade G1 R1 Agentofchaos\n\n35) ts52: Build Y1 Grover\n\n36) agentofchaos: Build G1 Agentofchaos\n\n37) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild G3 Grover\n\n38) agentofchaos: Sacrifice Y2 Holodeth\nMove G1 Agentofchaos Shazcatraz\nMove G1 Shazcatraz Grover\nCatastrophe Grover G\n\n39) ts52: Build R1 Kermit\n\n40) agentofchaos: Move R1 Agentofchaos Shazcatraz\n\n41) ts52: Build R2 Kermit\n\n42) agentofchaos: Build G1 Agentofchaos\n\n43) ts52: Sacrifice Y3 Grover\nMove R1 Kermit Agentofchaos\nMove R1 Kermit Agentofchaos\nMove R2 Kermit Agentofchaos\nCatastrophe Agentofchaos R\n\n44) agentofchaos: Trade G1 B1 Agentofchaos\n\n45) ts52: Move G1 Ts52 Grover\n\n46) agentofchaos: Build B2 Agentofchaos\n\n47) ts52: Build R1 Ts52\n\n48) agentofchaos: Trade B2 G2 Agentofchaos\n\n49) ts52: Trade R2 B2 Ts52\n\n50) agentofchaos: Build B2 Agentofchaos\n\n51) ts52: Discover B2 Ts52 G3 Kermit\n\n52) agentofchaos: Move B2 Agentofchaos Grover\n\n53) ts52: Build B2 Kermit\n\n54) agentofchaos: Sacrifice R1 Shazcatraz\nAttack Y1 Grover\n\n55) ts52: Trade B2 Y2 Kermit\n\n56) agentofchaos: Trade G2 R2 Agentofchaos\n\n57) ts52: Build B2 Kermit\n\n58) agentofchaos: Move B1 Agentofchaos Holodeth\n\n59) ts52: Build B3 Kermit\n\n60) agentofchaos: Sacrifice Y3 Holodeth\nMove B1 Holodeth Agentofchaos\nMove B1 Agentofchaos Kermit\nMove Y3 Shazcatraz Kermit\nCatastrophe Kermit B\n\n61) ts52: Build G1 Grover\n\n62) agentofchaos: Sacrifice R2 Agentofchaos\nAttack Y2 Kermit\nAttack G1 Grover\n\n63) ts52: Build R1 Ts52\n\n64) agentofchaos: Trade B2 R2 Grover\n\n65) ts52: Build G1 Ts52\n\n66) agentofchaos: Attack G1 Grover\n\n67) ts52: Discover G1 Ts52 B3 Cookiemonster\n\n68) agentofchaos: Build Y1 Grover\n\n69) ts52: Build G2 Cookiemonster\n\n70) agentofchaos: Build Y2 Grover\n\n71) ts52: Trade G2 R2 Cookiemonster\n\n72) agentofchaos: Build Y3 Agentofchaos\n\n73) ts52: Build G2 Cookiemonster\n\n74) agentofchaos: Build Y3 Agentofchaos\n\n75) ts52: Trade G1 B1 Cookiemonster\n\n76) agentofchaos: Build G1 Grover\n\n77) ts52: Trade G3 B3 Ts52\n\n78) agentofchaos: Build R1 Grover\n\n79) ts52: Build G2 Cookiemonster\n\n80) agentofchaos: Trade R2 B2 Grover\n\n81) ts52: Build R2 Cookiemonster\n\n82) agentofchaos: M B2 Grover Agentofchaos\n\n83) ts52: Discover R1 Ts52 G3 Robin\n\n84) agentofchaos: Build G2 Agentofchaos\n\n85) ts52: Sacrifice G2 Cookiemonster\nBuild R2 Robin\nBuild R3 Ts52\n\tts52: I don't know how I let you monopolize yellow, but it's really frustrating. :)\n\n86) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R3 Grover\nBuild B2 Agentofchaos\n\tagentofchaos: I can't remember how I did it either, but it sure has been helpful to me :-)\n\n87) ts52: Move R1 Ts52 Grover\n\n88) agentofchaos: Attack R1 Grover\n\n89) ts52: Move R3 Ts52 Grover\nCatastrophe Grover Red\n\n90) agentofchaos: Move B2 Agentofchaos Kermit\n\n91) ts52: Trade B3 R3 Ts52\n\n92) agentofchaos: Build B2 Kermit\n\n93) ts52: Sacrifice G2 Cookiemonster\nBuild R1 Ts52\nBuild R1 Cookiemonster\n\n94) agentofchaos: Sacrifice Y3 Agentofchaos\nMove Y1 Grover Ts52\nMove Y1 Grover Ts52\nMove Y2 Grover Ts52\nCatastrophe Ts52 Y\n\n95) ts52: Trade R1 Y1 Ts52\n\n96) agentofchaos: Sacrifice Y3 Agentofchaos\nMove B2 Kermit Ts52\nMove B2 Kermit Ts52\nMove B2 Agentofchaos Kermit\n\n97) ts52: Sacrifice R2 Cookiemonster\nAttack B2 Ts52\nAttack B2 Ts52\n\n98) agentofchaos: Move B2 Kermit Ts52\nCatastrophe Ts52 B\n\n\tagentofchaos: Thanks very much for a great game sir! :-)\n\tts52: Thank you. That was a very interesting game.\n\nHomeworlds Online (SDG# 21735)\nVariants: "Hard time"\nStarted: 2012.2.26, Ended: 2012.4.8\nParticipants: Mandrel (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R2 B3 G3\n\n2) Mandrel: Homeworld B1 R2 G3\n\n3) ajo: Build G1 Ajo\n\tMandrel: Have a good game.\n\n4) Mandrel: Build G1 Mandrel\n\tajo: Thanks, you too!\n\n5) ajo: Trade G1 B1 Ajo\n\n6) Mandrel: Trade G1 B1 Mandrel\n\n7) ajo: Build B2 Ajo\n\n8) Mandrel: Build B2 Mandrel\n\n9) ajo: Trade B2 Y2 Ajo\n\n10) Mandrel: Trade B2 Y2 Mandrel\n\n11) ajo: Build B2 Ajo\n\n12) Mandrel: Build B2 Mandrel\n\n13) ajo: Discover B2 Ajo Y1 Alpha\n\n14) Mandrel: Trade B1 R1 Mandrel\n\n15) ajo: Build G1 Ajo\n\n16) Mandrel: Build G1 Mandrel\n\n17) ajo: Build Y1 Ajo\n\n18) Mandrel: Discover B2 Mandrel G3 Endings\n\n19) ajo: Trade Y2 R2 Ajo\n\n20) Mandrel: Build R1 Mandrel\n\n21) ajo: Move R2 Ajo Alpha\n\n22) Mandrel: Move R1 Mandrel Endings\n\n23) ajo: Move G1 Ajo Alpha\n\n24) Mandrel: Build R1 Mandrel\n\n25) ajo: Build R3 Alpha\n\n\nHomeworlds Online (SDG# 21567)\nStarted: 2012.2.26, Ended: 2012.5.13\nParticipants: lorgar (S), agentofchaos (N), wmreed (E)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) wmreed: Homeworld B3 R1 G3\n\n3) lorgar: Homeworld G3 Y2 B3\n\n4) agentofchaos: Build G1 Agentofchaos\n\twmreed: Hello! Good luck!\n\n5) wmreed: B G1 Wmreed\n\n6) lorgar: Build B1 Lorgar\n\n7) agentofchaos: Trade G1 B1 Agentofchaos\n\n8) wmreed: T G1 Y1 Wmreed\n\n9) lorgar: Discover B1 Lorgar G1 Mnar\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) wmreed: B Y1 Wmreed\n\n12) lorgar: Build B1 Lorgar\n\n13) agentofchaos: Build B2 Agentofchaos\n\n14) wmreed: D Y1 Wmreed B2 Persephone\n\n15) lorgar: Build B2 Mnar\n\n16) agentofchaos: Trade B2 Y2 Agentofchaos\n\n17) wmreed: B G1 Wmreed\n\n18) lorgar: Trade B2 Y2 Mnar\n\n19) agentofchaos: Trade G1 R1 Agentofchaos\n\n20) wmreed: M G1 Wmreed Persephone\n\n21) lorgar: Build B2 Mnar\n\n22) agentofchaos: Build Y1 Agentofchaos\n\n23) wmreed: B G1 Persephone\n\n24) lorgar: Trade B2 R2 Mnar\n\n25) agentofchaos: D Y2 Agentofchaos G3 Hartshope\n\n26) wmreed: B G1 Wmreed\n\n27) lorgar: Move Y2 Mnar Persephone\n\n28) agentofchaos: Build G2 Agentofchaos\n\n29) wmreed: B G2 Persephone\n\n30) lorgar: Sacrifice R2 Mnar\nAttack G2E Persephone\nAttack Y1E Persephone\n\twmreed: If you attack at Persephone I will catastrophe. \n\n31) agentofchaos: Build B2 Agentofchaos\n\n32) wmreed: M G1 Wmreed Persephone\nCatastrophe Persephone G\n\n33) lorgar: Trade B1 R1 Lorgar\n\n34) agentofchaos: Trade B2 R2 Agentofchaos\n\n35) wmreed: B Y1 Wmreed\n\n36) lorgar: Trade Y1 R1 Persephone\n\n37) agentofchaos: Trade R1 Y1 Agentofchaos\n\n38) wmreed: T Y1 B1 Wmreed\n\n39) lorgar: Trade Y2 G2 Persephone\n\n40) agentofchaos: Build B2 Agentofchaos\n\n41) wmreed: B B2 Wmreed\n\n42) lorgar: Build G1 Persephone\n\n43) agentofchaos: Move B1 Agentofchaos Hartshope\n\n44) wmreed: Discover B2 Wmreed Y2 Ariel\n\n45) lorgar: Sacrifice G2 Persephone\nBuild B2 Lorgar\nBuild B3 Mnar\n\n46) agentofchaos: Build B3 Hartshope\n\n47) wmreed: B G1 Wmreed\n\n48) lorgar: Trade B1 Y1 Mnar\n\n49) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Agentofchaos\nBuild Y3 Hartshope\n\n50) wmreed: B Y3 Wmreed\n\n51) lorgar: Build Y3 Mnar\n\n52) agentofchaos: Trade Y1 G1 Agentofchaos\n\n53) wmreed: T B2 R2 Ariel\n\n54) lorgar: Build G2 Persephone\n\n55) agentofchaos: Move Y3 Hartshope Persephone\n\n56) wmreed: M G3 Wmreed Ariel\n\n57) lorgar: Sacrifice Y1 Mnar\nDiscover G2 Persephone Y3 Leng\n\n58) agentofchaos: Sacrifice R2 Agentofchaos\nAttack G1S Persephone\nAttack R1S Persephone\n\n59) wmreed: B G2 Ariel\n\n60) lorgar: Build B1 Mnar\n\n61) agentofchaos: Build Y1 Persephone\n\n62) wmreed: B R1 Ariel\n\n63) lorgar: Build G2 Leng\n\n64) agentofchaos: Build G2 Persephone\n\n65) wmreed: D R2 Ariel Y1 Whitehall\n\n66) lorgar: Trade B2 R2 Lorgar\n\n67) agentofchaos: Build R2 Persephone\n\n68) wmreed: S G3 Ariel\nB G3 Ariel\nB R3 Whitehall\nPass\n\n69) lorgar: Move R1 Lorgar Whitehall\n\n70) agentofchaos: Move R1 Persephone Whitehall\nCatastrophe Whitehall R\n\n71) wmreed: M B1 Wmreed Ariel\n\n72) lorgar: Move G2 Leng Agentofchaos\n\n73) agentofchaos: Trade G1 R1 Agentofchaos\n\n74) wmreed: B R1 Ariel\n\n75) lorgar: Sacrifice G2 Leng\nBuild G1 Agentofchaos\nBuild G2 Agentofchaos\nCatastrophe Agentofchaos Green\n\n76) agentofchaos: Trade B3 G3 Hartshope\n\n77) wmreed: T R1 Y1 Ariel\n\n78) wmreed: Discover Y1 Ariel Y3 Serenity\n\n79) agentofchaos: Build B2 Hartshope\n\n80) wmreed: M G3 Ariel Mnar\n\n81) agentofchaos: Sacrifice Y2 Hartshope\nMove Y1 Persephone Wmreed\nMove Y3 Persephone Wmreed\nCatastrophe Wmreed Y\n\twmreed: Sorry, i don't remember getting an email about South's move.\n\n82) wmreed: S R1 Ariel\nA B3S Mnar\n\n83) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G3 Hartshope Ariel\nMove G3 Ariel Wmreed\n\n\twmreed: Good game!\n\tlorgar: sorry guys, I wont play much these day, cello contest week -.-\n\nHomeworlds Online (SDG# 21739)\nStarted: 2012.2.26, Ended: 2012.2.26\nParticipants: slothbear (S), kensho (N)\nWinner: slothbear\n\n1) kensho: Homeworld B1 Y2 G3\n\n2) slothbear: Homeworld B1 G2 Y3\n\n3) kensho: Build G1 Kensho\n\n4) slothbear: Build Y1 Slothbear\n\n5) kensho: Discover G1 Kensho R3 Rot\n\n6) slothbear: Build Y1 Slothbear\n\n7) kensho: Build G1 Kensho\n\n8) slothbear: Trade Y1 R1 Slothbear\n\n9) kensho: Discover G1 Kensho B3 Got\n\n10) slothbear: Move Y1 Slothbear Got\n\n11) kensho: Build G1 Rot\n\n12) slothbear: Build R1 Slothbear\n\n13) kensho: Build G2 Rot\n\n14) slothbear: Sacrifice R1 Slothbear\nAttack G1 Got\n\n15) kensho: Build G2 Kensho\n\n16) slothbear: Trade Y3 R3 Slothbear\n\n17) kensho: Move G3 Kensho Got\n\n18) slothbear: Build Y1 Got\n\n19) kensho: Trade G3 Y3 Got\n\n20) slothbear: Trade R1 Y1 Slothbear\n\n21) kensho: Trade Y3 B3 Got\n\n22) slothbear: Build Y2 Slothbear\n\n23) kensho: Sacrifice B3 Got\nTrade G1 R1 Rot\nTrade G1 B1 Rot\nPass\n\n24) slothbear: Sacrifice Y2 Slothbear\nMove R3 Slothbear Got\nMove R3 Got Kensho\n\n25) kensho: Trade G2 R2 Kensho\n\n26) slothbear: Attack R2 Kensho\n\n\nHomeworlds Online (SDG# 21737)\nStarted: 2012.2.27, Ended: 2012.4.28\nParticipants: sordros (S), wmreed (N)\nWinner: wmreed\n\n1) wmreed: Homeworld B1 R2 G3\n\n2) sordros: Homeworld G2 Y3 B3\n\twmreed: Hello! Welcome! Good luck!\n\n3) wmreed: B G1 Wmreed\n\tsordros: Hello! good luck to you too!\n\n4) sordros: Build B1 Sordros\n\n5) wmreed: T G1 Y1 Wmreed\n\n6) sordros: Trade B1 Y1 Sordros\n\n7) wmreed: B G1 Wmreed\n\n8) sordros: Build B1 Sordros\n\n9) wmreed: D G1 Wmreed Y3 Kermit\n\n10) sordros: Trade B1 G1 Sordros\n\n11) wmreed: B G1 Wmreed\n\n12) sordros: Discover G1 Sordros B1 Celeste\n\n13) wmreed: T G1 R1 Wmreed\n\n14) sordros: Build B1 Sordros\n\n15) wmreed: M R1 Wmreed Kermit\n\n16) sordros: Trade B1 R1 Sordros\n\n17) wmreed: B G1 Kermit\n\n18) sordros: Build G2 Celeste\n\n19) wmreed: M G1 Kermit Wmreed\n\n20) sordros: Trade G1 B1 Celeste\n\n21) wmreed: B G1 Kermit\n\n22) sordros: Sacrifice G2 Celeste\nBuild B2 Celeste\nBuild B2 Sordros\n\n23) wmreed: B Y1 Wmreed\n\n24) sordros: Trade B3 G3 Sordros\n\n25) wmreed: D G1 Kermit R2 Gonzo\n\n26) sordros: Trade B2 Y2 Celeste\n\n27) wmreed: S G3 Wmreed\nB G2 Kermit\nB G2 Gonzo\nB G3 Wmreed\n\n28) sordros: Build G3 Sordros\n\n29) wmreed: T G3 B3 Wmreed\n\n30) sordros: Move G3 Sordros Celeste\n\n31) wmreed: B G3 Wmreed\n\n32) sordros: Build Y2 Celeste\n\n33) wmreed: M B3 Wmreed Kermit\n\n34) sordros: Sacrifice G3 Sordros\nBuild Y2 Celeste\nBuild Y3 Sordros\nBuild G3 Celeste\n\n35) wmreed: T G2 B2 Kermit\n\n36) sordros: Build B2 Sordros\n\n37) wmreed: M B2 Kermit Gonzo\n\n38) sordros: Discover G3 Celeste B3 Cielo\n\n39) wmreed: B B3 Gonzo\n\n40) sordros: Build R1 Sordros\n\n41) wmreed: B R2 Kermit\n\n42) sordros: Move R1 Sordros Celeste\n\n43) wmreed: T B3 R3 Gonzo\n\n44) sordros: Sacrifice G3 Cielo\nBuild R3 Celeste\nBuild R3 Sordros\nBuild B3 Sordros\n\n45) wmreed: S G3 Wmreed\nB G2 Kermit\nB G3 Wmreed\nB B3 Gonzo\n\n46) sordros: Sacrifice Y2 Celeste\nMove R1 Celeste Gonzo\nMove R3 Celeste Gonzo\nCatastrophe Gonzo Red\n\n47) wmreed: D Y1 Wmreed B3 Scooter\n\n48) sordros: Build Y2 Celeste\n\n49) wmreed: M Y1 Scooter Celeste\nC Celeste Y\n\n50) sordros: Discover B3 Sordros G1 Kolbi\n\n51) wmreed: D R2 Kermit Y2 Fozzi\n\n52) sordros: Move Y3 Sordros Celeste\n\n53) wmreed: M G1 Kermit Fozzi\n\n\nHomeworlds Online (SDG# 21744)\nVariants: "Hard time"\nStarted: 2012.2.27, Ended: 2012.3.17\nParticipants: sordros (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y3 G3\n\n2) sordros: Homeworld R3 B2 G3\n\n3) rootbier: Build G1 Rootbier\n\tsordros: Hi, good luck. Have fun.\n\trootbier: Hey. You too. I haven't played here in like a year and a half or more.\n\n4) sordros: Build G1 Sordros\n\tsordros: That's ok I haven't played in more than that I think. I just wanted to try it once more and have some fun. :-)\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) sordros: Trade G1 Y1 Sordros\n\trootbier: it is a nice game. can go on a bit too long, but yeah. nice.\n\n7) rootbier: Build G1 Rootbier\n\n8) sordros: Build Y1 Sordros\n\n9) rootbier: Discover G1 Rootbier B2 Oxix\n\n10) sordros: Build G1 Sordros\n\n11) rootbier: Build G1 Rootbier\n\n12) sordros: Build G2 Sordros\n\n13) rootbier: Sacrifice G3 Rootbier\nBuild G2 Oxix\nBuild G2 Oxix\nBuild G3 Rootbier\n\n14) sordros: Trade G1 B1 Sordros\n\n15) rootbier: Trade G2 Y2 Oxix\n\n16) sordros: Discover G2 Sordros B1 Celeste\n\n17) rootbier: Move G2 Oxix Celeste\n\n18) sordros: Sacrifice G2 Celeste\nBuild B2 Sordros\nBuild Y1 Sordros\n\n19) rootbier: Build G1 Celeste\n\n20) sordros: Discover B2 Sordros R1 Rosa\n\n21) rootbier: Sacrifice Y2 Oxix\nMove G1 Celeste Sordros\nMove G2 Celeste Sordros\n\n22) sordros: Trade G3 B3 Sordros\n\n23) rootbier: Trade G1 B1 Sordros\nCatastrophe Sordros B\n\n\trootbier: i know you're just getting back into it.\r\n:(\r\nshould i have played softer?\n\tsordros: never! play as hard as you can always! I loved that game! didn't see that coming :-) Great moves!\n\nHomeworlds Online (SDG# 21615)\nVariants: "Hard time"\nStarted: 2012.2.28, Ended: 2012.3.16\nParticipants: SilentTitan (S), lorgar (N)\nWinner: SilentTitan\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) lorgar: Build G1 Lorgar\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) SilentTitan: Build G1 Silenttitan\n\n7) lorgar: Discover B1 Lorgar G2 Mnar\n\n8) SilentTitan: Trade G1 Y1 Silenttitan\n\n9) lorgar: Build B1 Mnar\n\n10) SilentTitan: Discover G1 Silenttitan B3 Sol\n\n11) lorgar: Build G1 Lorgar\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) lorgar: Build B2 Mnar\n\n14) SilentTitan: Build G1 Silenttitan\n\n15) lorgar: Trade B2 Y2 Mnar\n\n16) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n17) lorgar: Move Y2 Mnar Sol\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Silenttitan\nBuild G2 Silenttitan\nBuild G3 Sol\n\n19) lorgar: Sacrifice Y2 Sol\nMove B1 Mnar Sol\nMove B1 Mnar Sol\n\n20) SilentTitan: Sacrifice G3 Sol\nBuild Y1 Soul\nBuild Y2 Soul\nBuild Y2 Silenttitan\n\n21) lorgar: Trade B1 R1 Sol\n\n22) SilentTitan: Sacrifice G2 Silenttitan\nBuild G2 Sol\nBuild G2 Sol\n\n23) lorgar: Sacrifice G3 Lorgar\nBuild G3 Lorgar\nBuild B1 Sol\nBuild B2 Sol\nCatastrophe Sol Blue\n\n24) SilentTitan: Discover Y1 Soul Y2 Sole\n\n25) lorgar: Trade G1 R1 Lorgar\n\n26) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Sole\n\n27) lorgar: Build R1 Lorgar\n\n28) SilentTitan: Trade Y3 B3 Silenttitan\n\n29) lorgar: Discover R1 Lorgar G2 Pastures\n\n30) SilentTitan: Build Y3 Silenttitan\n\tlorgar: i'm so owned...\n\n31) lorgar: Build R2 Pastures\n\n32) SilentTitan: Trade Y3 R3 Silenttitan\n\n33) lorgar: Build R2 Lorgar\n\n34) SilentTitan: Discover B3 Silenttitan Y3 Tic\n\tSilentTitan: doesn't look good for you .... but I've messed up from here before.... so\n\n35) lorgar: Trade R1 B1 Lorgar\n\tlorgar: I do not think I'm going anywhere. just got sorely beatean by twoshort btw XD\n\n36) SilentTitan: Move B3 Tic Sole\n\n37) lorgar: Sacrifice B1 Lorgar\nTrade R1 B1 Pastures\n\n38) SilentTitan: Build Y3 Silenttitan\n\n39) lorgar: Build B1 Pastures\n\n40) SilentTitan: Trade Y3 G3 Silenttitan\n\n41) lorgar: Build G1 Lorgar\n\n42) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sole\nBuild B2 Sole\nBuild Y3 Silenttitan\n\n43) lorgar: Build B3 Pastures\n\n44) SilentTitan: Sacrifice Y3 Sole\nMove B3 Sole Lorgar\nMove B2 Sole Lorgar\nMove B2 Sole Lorgar\nCatastrophe Lorgar Blue\n\n45) lorgar: Trade B3 Y3 Pastures\n\n46) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Sole Lorgar\nMove Y2 Silenttitan Lorgar\nMove Y1 Silenttitan Lorgar\nCatastrophe Lorgar Yellow\n\n\tlorgar: gg\n\tSilentTitan: Thank you for playing\n\nHomeworlds Online (SDG# 21748)\nVariants: "Hard time"\nStarted: 2012.2.28, Ended: 2012.3.8\nParticipants: goulo (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) goulo: Homeworld R3 B2 G3\n\n3) ts52: Build G1 Ts52\n\tgoulo: hi, have fun!\n\tts52: Thanks. You too!\n\n4) goulo: Build G1 Goulo\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) ts52: Build G1 Grover\n\n8) goulo: Build Y1 Goulo\n\n9) ts52: Trade G1 Y1 Grover\n\n10) goulo: Trade Y1 R1 Goulo\n\n11) ts52: Build G1 Grover\n\n12) goulo: Build R1 Goulo\n\n13) ts52: Trade G1 R1 Grover\n\n14) goulo: Trade R1 B1 Goulo\n\n15) ts52: Build G1 Ts52\n\n16) goulo: Discover Y1 Goulo G1 Smeraldeto\n\n17) ts52: Build G2 Grover\n\n18) goulo: Build G2 Goulo\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n20) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild B1 Goulo\nBuild Y1 Smeraldeto\n\n21) ts52: Trade G3 Y3 Grover\n\n22) goulo: Discover Y1 Smeraldeto G3 Smeraldego\n\n23) ts52: Discover G2 Ts52 Y3 Bigbird\n\n24) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y2 Smeraldeto\nBuild Y2 Smeraldego\n\n25) ts52: Discover Y1 Grover B2 Gonzo\n\n26) goulo: Discover Y1 Smeraldeto Y3 Citronego\n\n27) ts52: Trade G2 R2 Grover\n\n28) goulo: Move Y1 Smeraldego Ts52\n\n29) ts52: Sacrifice G2 Bigbird\nBuild G2 Grover\nBuild Y3 Gonzo\n\n30) goulo: Move Y2 Smeraldego Ts52\n\n31) ts52: Trade G2 B2 Grover\n\n32) goulo: Move Y1 Citronego Ts52\nCatastrophe Ts52 Y\n\n33) ts52: Trade G1 Y1 Ts52\n\n34) goulo: Trade B1 Y1 Goulo\n\n35) ts52: Discover Y3 Gonzo G1 Kermit\n\n36) goulo: Build Y2 Smeraldeto\n\n37) ts52: Move B2 Grover Kermit\n\n38) goulo: Move Y2 Smeraldeto Gonzo\n\n39) ts52: Build B1 Kermit\n\n40) goulo: Move B1 Goulo Smeraldeto\n\n41) ts52: Discover B2 Kermit G3 Robin\n\n42) goulo: Sacrifice G3 Goulo\nBuild B3 Smeraldeto\nBuild Y2 Smeraldeto\nBuild Y3 Goulo\n\n43) ts52: Build B3 Kermit\n\n44) goulo: Move R1 Goulo Smeraldeto\n\n45) ts52: Sacrifice Y3 Grover\nMove Y1 Gonzo Kermit\nMove Y1 Kermit Goulo\nMove Y1 Ts52 Goulo\nCatastrophe Goulo Yellow\n\n46) goulo: Move B3 Smeraldeto Goulo\n\n47) ts52: Sacrifice Y3 Kermit\nMove B1 Kermit Goulo\nMove B2 Robin Kermit\nMove B2 Kermit Goulo\nCatastrophe Goulo Blue\n\n48) goulo: Move B1 Smeraldeto Goulo\n\n49) ts52: Build B1 Kermit\n\n50) goulo: Build B2 Goulo\n\n51) ts52: Trade B1 Y1 Kermit\n\n52) goulo: Build G2 Goulo\n\n53) ts52: Trade B3 R3 Kermit\n\n54) goulo: Trade Y2 B2 Gonzo\n\n55) ts52: Move R3 Kermit Goulo\n\n56) goulo: Sacrifice Y2 Smeraldeto\nMove G2 Goulo Gonzo\nMove B2 Gonzo Ts52\n\n57) ts52: Sacrifice R2 Grover\nAttack B2 Ts52\nAttack B2 Goulo\n\n58) goulo: Attack B2 Goulo\n\n59) ts52: Sacrifice G3 Ts52\nBuild R1 Goulo\nBuild R2 Goulo\nBuild R2 Goulo\nCatastrophe Goulo Red\n\tts52: Thanks for the game!\n\tgoulo: Thanks! That was a tough interesting one!\n\n\nHomeworlds Online (SDG# 21749)\nStarted: 2012.2.28, Ended: 2016.4.18\nParticipants: bertilious (S), slothbear (N), emusan (E)\nWinner: emusan\n\n1) slothbear: Homeworld B2 G1 Y3\n\n2) emusan: H B3 R2 G3\n\temusan: you stole my opening! THIEF!!!!\n\n3) bertilious: Homeworld G3 B1 Y3\n\n4) slothbear: Build Y1 Slothbear\n\tslothbear: "sorry"\n\tslothbear: you wanted to do things differently from last game, no?\n\n5) emusan: B G1 Emusan\n\n6) bertilious: Build Y1 Bertilious\n\temusan: yea, I was thinking of doing something like this anyway...\n\n7) slothbear: Build Y1 Slothbear\n\n8) emusan: T G1 Y1 Emusan\n\tslothbear: uh huh. good.\n\n9) bertilious: Build Y2 Bertilious\n\n10) slothbear: Trade Y1 G1 Slothbear\n\n11) emusan: B G1 Emusan\n\n12) bertilious: Trade Y1 G1 Bertilious\n\n13) slothbear: Build G2 Slothbear\n\n14) emusan: B G2 Emusan\n\n15) bertilious: Build G2 Bertilious\n\n16) slothbear: Disc G2 Slothbear Y3 Carter\n\n17) emusan: D G1 Emusan B1 Meow\n\n18) bertilious: Discover Y2 Bertilious G2 Bertlandia\n\n19) slothbear: Bu G3 Slothbear\n\n20) emusan: S G3 Emusan\nB G3 Emusan\nB G3 Meow\nB Y1 Emusan\n\n21) bertilious: Trade G1 B1 Bertilious\n\temusan: that was cool...\n\tslothbear: NICE\n\n22) slothbear: Disco G1 Slothbear Y3 Crichton\n\n23) emusan: M Y1 Emusan Meow\n\n24) bertilious: Move B1 Bertilious Bertlandia\n\n25) slothbear: Build G1 Slothbear\n\n26) emusan: S G3 Meow\nB G3 Meow\nB Y1 Emusan\nB Y2 Meow\n\n27) bertilious: Build Y2 Bertilious\n\n28) slothbear: Disc G1 Slothbear R3 Sheppard\n\n29) emusan: M G3 Meow Sheppard\n\n30) bertilious: Build Y2 Bertlandia\n\n31) slothbear: Sacrifice Y1 Slothbear\nDiscover G1 Sheppard B1 Stewart\n\n32) emusan: T G2 B2 Emusan\n\tslothbear: I'm always likely to have delays on Tuesdays and Fridays.\n\temusan: that's okay\n\n33) bertilious: Build B2 Bertlandia\n\tslothbear: Move 16 in Second Life. Prettier in person, but it's a start. And 3D. http://www.flickr.com/photos/oseransky/6949790115/\n\n34) slothbear: Build G2 Stewart\n\n35) emusan: M B2 Emusan Meow\n\n36) bertilious: Trade B1 R1 Bertlandia\n\n37) slothbear: Trade G3 R3 Slothbear\n\n38) emusan: S G3 Sheppard\nB G3 Meow\nB Y1 Emusan\nB B1 Meow\n\n39) bertilious: Trade B2 R2 Bertlandia\n\tslothbear: I bet myself you couldn't resist that. You're welcome.\n\n40) slothbear: Build G3 Carter\n\temusan: couldn't resist what?\n\tslothbear: the g3 thing. \n\n41) emusan: T Y1 R1 Emusan\n\n42) bertilious: Trade Y2 R2 Bertilious\n\n43) slothbear: Sacrifice G3 Carter\nBuild G3 Crichton\nBuild R1 Slothbear\nBuild Y1 Slothbear\n\n44) emusan: T G3 R3 Meow\n\n45) bertilious: Build Y2 Bertilious\n\n46) slothbear: Build G3 Carter\n\n47) emusan: M R3 Meow Carter\n\n48) bertilious: Trade R2 B2 Bertilious\n\tslothbear: O Redeo, Redeo! Wherefore art thou Redeo?\n\n49) slothbear: Sacrifice R1 Slothbear\nAttack R3E Carter\n\n50) emusan: M R1 Emusan Meow\n\temusan: oh crap... forgot you could do that lol\n\tslothbear: someone should have sent you an email\n\n51) bertilious: Move B2 Bertilious Bertlandia\n\temusan: I wasn't sure what you meant by redeo....\n\n52) slothbear: Trade G2 B2 Stewart\n\n53) emusan: B G2 Emusan\n\n54) bertilious: Move R1 Bertlandia Bertilious\n\n55) slothbear: Sacrifice Y3 Slothbear\nMove B2 Stewart Bertlandia\nMove B2 Bertlandia Meow\nDiscover G3 Crichton R1 Osterman\nCatastrophe Meow Blue\n\n56) emusan: T G2 R2 Emusan\n\temusan: so mean! :(\n\n57) bertilious: Build R1 Bertilious\n\tslothbear: meow learns of secret too late\n\tslothbear: Even people not involved in the game can't resist 3 of the same color: http://boardgamegeek.com/image/214310/homeworlds\n\n58) slothbear: Trade G1 B1 Stewart\n\n59) emusan: M R2 Emusan Stewart\n\n60) bertilious: Build R1 Bertlandia\n\n61) slothbear: Sacrifice G2 Carter\nBuild B1 Stewart\nBuild B2 Stewart\nCatastrophe Stewart Blue\n\n62) emusan: B G1 Emusan\n\tslothbear: good grief. I didn't see *that* coming.\n\n63) bertilious: Build B1 Bertlandia\n\n64) slothbear: Move G3 Carter Bertlandia\n\n65) emusan: B Y1 Emusan\n\n66) bertilious: Discover Y2 Bertlandia G1 Bertland\n\n67) slothbear: Sacrifice R3 Carter\nAttack R2S Bertlandia\nAttack Y2S Bertlandia\nAttack B2S Bertlandia\n\n68) emusan: D Y1 Emusan B1 Shh\n\tslothbear: s r3 carter\r\na r2s bertlandia\r\na y2s bertlandia\r\na b2s bertlandia\n\tslothbear: ooops\n\n69) bertilious: Build Y2 Bertland\n\n70) slothbear: Build Y3 Slothbear\n\n71) emusan: S G1 Emusan\nB Y3 Shh\n\n72) bertilious: Move Y2 Bertland Emusan\n\n\n73) slothbear: Attack R1S Bertlandia\n\n74) emusan: S Y1 Emusan\nD Y1 Emusan B1 Ezpz\n\n75) bertilious: Discover Y2 Bertland B3 Berttown\n\n76) slothbear: Move R3 Slothbear Berttown\n\n77) emusan: A Y2S Emusan\n\n78) bertilious: Discover Y2 Bertilious R2 Das Spoot\n\temusan: no takebacks!\n\temusan: :P just kidding\n\n79) slothbear: Trade Y3 R3 Slothbear\n\tslothbear: played two games with never-played-before nephew this weekend. We split 1&1.\n\n80) emusan: B G1 Emusan\n\n\tslothbear: 3 years is as long as I'll wait.\n\nHomeworlds Online (SDG# 21746)\nVariants: "Hard time"\nStarted: 2012.2.28, Ended: 2012.3.23\nParticipants: SilentTitan (S), sordros (N)\nWinner: sordros\n\n1) sordros: Homeworld R1 B2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\tsordros: Hi! good luck and have fun!\n\n3) sordros: B G1 Sordros\n\tSilentTitan: alrighty.... you as well\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) sordros: Trade G1 Y1 Sordros\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) sordros: Build G1 Sordros\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) sordros: Trade G1 B1 Sordros\n\n10) SilentTitan: Trade G1 R1 Silenttitan\n\n11) sordros: Build B1 Sordros\n\tsordros: b b1 sordros\n\tsordros: whoops, wrong field :-)\n\n12) SilentTitan: Build R1 Silenttitan\n\n13) sordros: Discover B1 Sordros G3 Koora\n\n14) SilentTitan: Discover R1 Silenttitan Y1 Sol\n\n15) sordros: Build Y2 Sordros\n\n16) SilentTitan: Build Y2 Silenttitan\n\n17) sordros: Trade Y2 R2 Sordros\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Sol\nBuild R2 Sol\nBuild R3 Silenttitan\n\n19) sordros: Sacrifice G3 Sordros\nBuild B1 Koora\nBuild B2 Koora\nBuild B3 Sordros\n\n20) SilentTitan: Move R2 Sol Koora\n\tSilentTitan: you need to redo your turn .. unless you'd like me to call for a catastrophe on blue in your homeworld. \n\tsordros: oh wow, I didn't see that :) Thanks\r\n\n\n21) sordros: Sacrifice R2 Sordros\nAttack R2 Koora\nPass\n\n22) SilentTitan: Trade R3 B3 Silenttitan\n\n23) sordros: Trade B2 Y2 Koora\n\n24) SilentTitan: Move B3 Silenttitan Sol\n\n25) sordros: Trade B3 G3 Sordros\n\n26) SilentTitan: Trade Y1 G1 Silenttitan\n\n27) sordros: Discover B1 Koora G1 Aqua\n\n28) SilentTitan: Discover R1 Sol B3 Soul\n\n29) sordros: Move R2 Koora Aqua\n\n30) SilentTitan: Discover R1 Silenttitan G1 Sole\n\n31) sordros: Build G2 Sordros\n\n32) SilentTitan: Discover R2 Sol B3 Tic\n\n33) sordros: Build B2 Aqua\n\n34) SilentTitan: Trade B3 G3 Sol\n\n35) sordros: Build B3 Koora\n\n36) SilentTitan: Move G3 Sol Silenttitan\n\n37) sordros: Trade B3 R3 Koora\n\n38) SilentTitan: Trade R2 Y2 Tic\n\n39) sordros: Build B3 Aqua\n\n40) SilentTitan: Build G2 Silenttitan\n\n41) sordros: Trade G3 Y3 Sordros\n\n42) SilentTitan: Build R2 Sole\n\n43) sordros: Sacrifice G2 Sordros\nBuild R2 Koora\nBuild R3 Aqua\n\n44) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y1 Tic\nBuild Y1 Silenttitan\n\n45) sordros: Build Y3 Koora\n\n46) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Tic Sordros\nMove Y1 Tic Sordros\nCatastrophe Sordros Yellow\n\n47) sordros: Build B3 Koora\n\n48) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover R2 Sole Y3 Sol\n\n49) sordros: Sacrifice Y2 Koora\nMove R3 Koora Sordros\nDiscover B3 Koora Y1 Diwo\n\n50) SilentTitan: Trade G3 Y3 Silenttitan\n\n51) sordros: Sacrifice Y3 Koora\nMove B3 Aqua Silenttitan\nMove R3 Aqua Silenttitan\nMove B3 Diwo Silenttitan\n\n52) SilentTitan: Sacrifice Y3 Silenttitan\nMove R2 Sol Sordros\nMove R1 Soul Sordros\nMove R1 Sole Silenttitan\nCatastrophe Sordros Red\n\n53) sordros: Sacrifice R2 Koora\nAttack G1 Silenttitan\nAttack R1 Silenttitan\n\n\tSilentTitan: good game\n\tsordros: gg. Thanks for the game!\n\nHomeworlds Online (SDG# 21706)\nVariants: "Hard time"\nStarted: 2012.2.28, Ended: 2012.4.11\nParticipants: sordros (S), Jesse (N)\nWinner: Jesse\n\n1) Jesse: Homeworld Y1 B3 G3\n\n2) sordros: Homeworld R1 B2 G3\n\n3) Jesse: Build G1 Jesse\n\n4) sordros: Build G1 Sordros\n\n5) Jesse: Discover G1 Jesse B2 Nile\n\n6) sordros: Trade G1 Y1 Sordros\n\n7) Jesse: Build G1 Jesse\n\n8) sordros: Build Y1 Sordros\n\n9) Jesse: Build G1 Nile\n\n10) sordros: Discover Y1 Sordros G3 Koora\n\n11) Jesse: Build G2 Nile\n\n12) sordros: Build G2 Sordros\n\n13) Jesse: Trade G2 Y2 Nile\n\n14) sordros: Build Y2 Sordros\n\n15) Jesse: Build Y2 Nile\n\n16) sordros: Build Y3 Koora\n\n17) Jesse: Discover Y2 Nile B3 Moon\n\n18) sordros: Trade Y1 B1 Sordros\n\n19) Jesse: Discover G1 Nile B3 Lagoon\n\n20) sordros: Discover G2 Sordros R3 Violeta\n\n21) Jesse: Sacrifice G3 Jesse\nBuild G2 Lagoon\nBuild G2 Nile\nBuild G3 Jesse\n\n22) sordros: Discover Y3 Koora B2 Zul\n\n23) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y1 Moon\nBuild Y3 Nile\n\n24) sordros: Build Y3 Koora\n\n25) Jesse: Trade Y2 R2 Nile\n\n26) sordros: Build Y2 Sordros\n\n27) Jesse: Trade Y1 R1 Moon\n\n28) sordros: Trade Y2 R2 Sordros\n\n29) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R1 Nile\nBuild Y1 Moon\n\n30) sordros: Build Y2 Koora\n\n31) Jesse: Move R1 Nile Jesse\n\n32) sordros: Build B1 Sordros\n\n33) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild R2 Jesse\nBuild R3 Moon\n\n34) sordros: Discover B1 Sordros R3 Rubi\n\n35) Jesse: Sacrifice Y2 Moon\nMove R1 Moon Sordros\nMove R3 Moon Sordros\nCatastrophe Sordros R\n\n36) sordros: Trade B1 R1 Sordros\n\n37) Jesse: Sacrifice G3 Jesse\nBuild G3 Jesse\nBuild Y2 Moon\nBuild R1 Nile\n\n\nHomeworlds Online (SDG# 21751)\nStarted: 2012.2.29, Ended: 2012.3.10\nParticipants: lorgar (S), ludiki (N)\nWinner: lorgar\n\n1) ludiki: Homeworld G1 B2 Y3\n\tludiki: This is a great game… but I think I will need a few plays before developing a feeling of it. So … Yes, rematch! :-)\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) ludiki: Build Y1 Ludiki\n\n4) lorgar: Build G1 Lorgar\n\n5) ludiki: Trade Y1 R1 Ludiki\n\n6) lorgar: Build G1 Lorgar\n\n7) ludiki: Discover R1 Ludiki G3 Rhodio\n\n8) lorgar: Discover G1 Lorgar B2 Mnar\n\n9) ludiki: Build Y1 Ludiki\n\n10) lorgar: Build G2 Mnar\n\n11) ludiki: Move Y1 Ludiki Rhodio\n\n12) lorgar: Trade G2 R2 Mnar\n\n13) ludiki: Build Y1 Ludiki\n\n14) lorgar: Build G2 Mnar\n\n15) ludiki: Trade Y3 R3 Ludiki\n\n16) lorgar: Trade G2 Y2 Mnar\n\n17) ludiki: Move R3 Ludiki Rhodio\n\n18) lorgar: Sacrifice Y2 Mnar\nMove R2 Mnar Rhodio\nMove R2 Rhodio Ludiki\n\n19) ludiki: Move R3 Rhodio Ludiki\n\tludiki: Oh! I didn't understand the rule correctly. I thought sacrifices gave some kind of actions points. So that if you sacrificied a Y2, you can move two 1-dot ships or one 2-dot ships, or move twice one 1-dot ship. Too bad. I lost, once again.\n\tludiki: Or did I?\n\n20) lorgar: Build R1 Ludiki\n\n21) ludiki: Move R1 Rhodio Mnar\n\n22) lorgar: Attack Y1N Ludiki\n\n23) ludiki: Attack R2 Ludiki\n\n24) lorgar: Build R1 Ludiki\nCatastrophe Ludiki Red\n\tlorgar: gg, rematch? Dont worry you'll learn the dirty tricks by playing against bad people (like twoshort or silent titan :P )\n\n\nHomeworlds Online (SDG# 21764)\nStarted: 2012.3.1, Ended: 2012.3.9\nParticipants: lorgar (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) lorgar: Homeworld B1 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) lorgar: Build G1 Lorgar\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) lorgar: Build G1 Lorgar\n\n7) TwoShort: Build G1 Twoshort\n\n8) lorgar: Discover G1 Lorgar B3 Mnar\n\n9) TwoShort: Build G2 Twoshort\n\n10) lorgar: Sacrifice G3 Lorgar\nBuild G2 Mnar\nBuild G2 Lorgar\nBuild G3 Mnar\n\n11) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n12) lorgar: Trade G2 R2 Mnar\n\n13) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\n\n14) lorgar: Sacrifice G3 Mnar\nBuild G3 Lorgar\nBuild R1 Mnar\nBuild R1 Mnar\n\n15) TwoShort: Trade G2 R2 Twoshort\n\n16) lorgar: Trade R2 Y2 Mnar\n\n17) TwoShort: Trade G3 Y3 Twoshort\n\n18) lorgar: Discover G2 Lorgar G3 Mhor\n\n19) TwoShort: Sacrifice Y3 Twoshort\nDiscover G1 Yolonda Y3 Yack\nMove G3 Yolonda Yack\nMove G3 Yack Lorgar\n\n20) lorgar: Sacrifice Y2 Mnar\nMove R1 Mnar Lorgar\nMove G1 Mnar Lorgar\nCatastrophe Lorgar Green\n\n21) TwoShort: Build G1 Yack\n\n22) lorgar: Trade R1 Y1 Mnar\n\n23) TwoShort: Discover G1 Yack B2 Bluonia\n\n24) lorgar: Sacrifice Y1 Mnar\nMove G2 Mhor Lorgar\n\n25) TwoShort: Build G1 Twoshort\n\n26) lorgar: Build R1 Lorgar\n\n27) TwoShort: Build G2 Yack\n\n28) lorgar: Build G3 Lorgar\n\n29) TwoShort: Move G2 Yack Lorgar\n\n30) lorgar: Discover G2 Lorgar G3 Mo\n\n31) TwoShort: Sacrifice R2 Twoshort\nAttack R1 Lorgar\nAttack R1 Lorgar\n\n32) lorgar: Build G3 Mo\n\n33) TwoShort: Sacrifice G1 Bluonia\nBuild G1 Lorgar\n\n34) lorgar: Pass\n\n35) TwoShort: Sacrifice G1 Yack\nBuild G1 Lorgar\nCatastrophe Lorgar Green\n\n\nHomeworlds Online (SDG# 21783)\nVariants: "Hard time"\nStarted: 2012.3.4, Ended: 2012.3.7\nParticipants: Subhan64 (S), mneme (N)\nWinner: Subhan64\n\n\nHomeworlds Online (SDG# 21747)\nVariants: "Unrated"\nStarted: 2012.3.7, Ended: 2012.4.1\nParticipants: sordros (S), igneel (N)\nWinner: sordros\n\n1) igneel: Homeworld G2 B1 Y3\n\n2) sordros: Homeworld B3 R1 G3\n\n3) igneel: Build Y1 Igneel\n\tsordros: Buena suerte!\n\n4) sordros: Build G1 Sordros\n\n5) igneel: Build Y1 Igneel\n\n6) sordros: Trade G1 Y1 Sordros\n\n7) igneel: Trade Y1 R1 Igneel\n\n8) sordros: Build G1 Sordros\n\n\nHomeworlds Online (SDG# 21750)\nVariants: "Hard time"\nStarted: 2012.3.7, Ended: 2012.3.16\nParticipants: SilentTitan (S), igneel (N)\nWinner: SilentTitan\n\n1) igneel: Homeworld G2 B1 Y3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\n3) igneel: Build Y1 Igneel\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) igneel: Trade Y1 R1 Igneel\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) igneel: Build Y1 Igneel\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) igneel: Trade Y1 B1 Igneel\n\n10) SilentTitan: Build Y1 Silenttitan\n\n\nHomeworlds Online (SDG# 21816)\nVariants: "No undo"\nStarted: 2012.3.9, Ended: 2012.4.8\nParticipants: lorgar (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R1 B2 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) ajo: Build G1 Ajo\n\n4) lorgar: Build G1 Lorgar\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) lorgar: Trade G1 B1 Lorgar\n\n7) ajo: Build G1 Ajo\n\n8) lorgar: Build B1 Lorgar\n\n9) ajo: Discover G1 Ajo B3 Alpha\n\n10) lorgar: Discover B1 Lorgar G2 Mnar\n\n11) ajo: Build G1 Ajo\n\n12) lorgar: Build G1 Lorgar\n\n13) ajo: Build G2 Alpha\n\n14) lorgar: Build B2 Mnar\n\n15) ajo: Trade G2 Y2 Alpha\n\n16) lorgar: Discover G1 Lorgar B2 Mhor\n\n17) ajo: Build G2 Alpha\n\n18) lorgar: Build B3 Mnar\n\n19) ajo: Trade G2 R2 Alpha\n\n20) lorgar: Build G2 Lorgar\n\n21) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\n\n22) lorgar: Trade B2 Y2 Mnar\n\n23) ajo: Move G3 Alpha Mnar\n\n24) lorgar: Sacrifice Y2 Mnar\nDiscover G1 Mhor Y3 Bravo\nMove B3 Mnar Alpha\n\n25) ajo: Move G1 Ajo Bravo\n\tlorgar: should have bought guns...\n\n26) lorgar: Trade B1 R1 Lorgar\n\n27) ajo: Sacrifice R2 Alpha\nAttack G1 Bravo\nAttack B1 Mnar\n\n28) lorgar: Trade B3 R3 Alpha\n\n29) ajo: Sacrifice Y2 Alpha\nDiscover G1 Alpha Y2 Gamma\nMove G1 Bravo Gamma\n\n30) lorgar: Move G2 Lorgar Gamma\n\n31) ajo: Sacrifice G2 Ajo\nBuild G2 Gamma\nBuild B1 Mnar\nCatastrophe Gamma Green\n\n32) lorgar: Build G1 Lorgar\n\n33) ajo: Trade G3 R3 Mnar\n\n34) lorgar: Sacrifice G1 Lorgar\nBuild R1 Alpha\n\n35) ajo: Build R2 Mnar\n\n36) lorgar: Build G1 Lorgar\n\n37) ajo: Trade R2 Y2 Mnar\n\n38) lorgar: Trade R1 G1 Alpha\n\n39) ajo: Build B2 Mnar\n\n40) lorgar: Sacrifice G3 Lorgar\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Lorgar\n\n41) ajo: Build G3 Ajo\n\n42) lorgar: Trade G2 Y2 Alpha\n\n43) ajo: Trade G3 Y3 Ajo\n\n44) lorgar: Sacrifice Y2 Alpha\nMove G2 Alpha Mnar\nMove G1 Alpha Mnar\n\n45) ajo: Sacrifice Y3 Ajo\nMove R3 Mnar Bravo\nMove B2 Mnar Lorgar\nMove B1 Mnar Lorgar\n\n46) lorgar: Build G2 Mnar\nCatastrophe Mnar Green\n\n47) ajo: Sacrifice G1 Bravo\nBuild B1 Lorgar\nCatastrophe Lorgar Blue\n\n48) lorgar: Build G1 Lorgar\n\n49) ajo: Discover R3 Bravo B1 Charlie\n\n50) lorgar: Sacrifice G1 Lorgar\nBuild R1 Alpha\n\n51) ajo: Build G1 Ajo\n\n52) lorgar: Trade R1 G1 Alpha\n\n53) ajo: Build Y1 Ajo\n\n54) lorgar: Build G2 Alpha\n\n55) ajo: Discover G1 Ajo Y3 Beta\n\n56) lorgar: Trade G2 Y2 Alpha\n\n57) ajo: Move G1 Beta Charlie\n\n58) lorgar: Build G2 Alpha\n\n59) ajo: Trade G3 B3 Ajo\n\n60) lorgar: Build Y1 Alpha\n\n61) ajo: Build G2 Charlie\n\n62) lorgar: Sacrifice Y2 Alpha\nMove G2 Alpha Ajo\nMove G1 Alpha Ajo\n\n63) ajo: Sacrifice R3 Charlie\nAttack G1 Ajo\nAttack G2 Ajo\nPass\n\tajo: That feels like you just gave me a present. I'll take it!\n\n64) lorgar: Move G1 Lorgar Charlie\n\n65) ajo: Sacrifice Y1 Ajo\nMove G1 Charlie Lorgar\n\n66) lorgar: Move R3 Alpha Charlie\n\n67) ajo: Sacrifice G2 Charlie\nBuild G2 Lorgar\nBuild G2 Lorgar\nCatastrophe Lorgar Green\n\tajo: Oh dear. What happened? You had the upper hand for a while, but now I think you're on your last legs.\n\n68) lorgar: Build G1 Charlie\n\tlorgar: indeed.\n\tlorgar: this so desperate T_T\n\n69) ajo: Trade G2 R2 Ajo\n\n70) lorgar: Sacrifice Y1 Alpha\nMove R3 Charlie Lorgar\n\n71) ajo: Build G2 Ajo\n\n72) lorgar: Build G2 Charlie\n\n73) ajo: Trade G2 Y2 Ajo\n\n74) lorgar: Trade G2 R2 Charlie\n\n75) ajo: Build Y1 Ajo\n\tajo: I think you needed yellow or blue, more than another red. Let's see...\n\n76) lorgar: Build G2 Charlie\n\n77) ajo: Build G2 Ajo\n\n78) lorgar: Trade G2 Y2 Charlie\n\tajo: I think I see a checkmate in three. :)\n\tlorgar: I saw it coming :'(\n\n79) ajo: Move Y1 Ajo Lorgar\n\n80) lorgar: Attack Y1N Lorgar\n\tajo: Check.\n\n81) ajo: Move Y1 Ajo Lorgar\n\n82) lorgar: Pass\n\tajo: I believe that's checkmate! GG.\n\n83) ajo: Sacrifice G2 Ajo\nBuild Y1 Lorgar\nBuild Y2 Lorgar\nCatastrophe Lorgar Yellow\n\tlorgar: indeed.\n\n\nHomeworlds Online (SDG# 21811)\nVariants: "Hard time"\nStarted: 2012.3.10, Ended: 2012.3.13\nParticipants: Remneb (S), Subhan64 (N)\nWinner: Remneb\n\n\nHomeworlds Online (SDG# 21829)\nVariants: "Hard time"\nStarted: 2012.3.12, Ended: 2012.5.25\nParticipants: Danner (S), AdamBadura (N)\nWinner: Danner\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\tDanner: Hi! Have a nice game!\n\n2) Danner: Homeworld B1 R2 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) Danner: Build G1 Danner\n\n5) AdamBadura: Trade Y1 G1 Adambadura\n\n6) Danner: Trade G1 Y1 Danner\n\n7) AdamBadura: Build G1 Adambadura\n\n8) Danner: Build Y1 Danner\n\n9) AdamBadura: Trade G1 R1 Adambadura\n\n10) Danner: Trade Y1 R1 Danner\n\n11) AdamBadura: Build G1 Adambadura\n\n12) Danner: Build G1 Danner\n\n13) AdamBadura: Trade G1 B1 Adambadura\n\n14) Danner: Discover G1 Danner Y3 Alpha\n\n15) AdamBadura: Build Y1 Adambadura\n\n16) Danner: Build G1 Alpha\n\n17) AdamBadura: Build G2 Adambadura\n\n18) Danner: Build G2 Danner\n\n19) AdamBadura: Discover G2 Adambadura Y1 Ontheway\n\n20) Danner: Move G1 Alpha Ontheway\n\n21) AdamBadura: Build Y2 Adambadura\n\n22) Danner: Sacrifice G3 Danner\nBuild G2 Ontheway\nBuild G3 Alpha\nBuild G3 Danner\n\n23) AdamBadura: Build R1 Adambadura\n\n24) Danner: Move G2 Ontheway Adambadura\n\n25) AdamBadura: Sacrifice Y2 Adambadura\nMove G1 Adambadura Ontheway\nMove G1 Ontheway Alpha\n\n26) Danner: Sacrifice G1 Alpha\nBuild G1 Adambadura\n\n27) AdamBadura: Sacrifice R1 Adambadura\nAttack G1 Ontheway\n\n28) Danner: Sacrifice R1 Danner\nAttack R1N Adambadura\n\n29) AdamBadura: Sacrifice Y1 Adambadura\nMove B1 Adambadura Ontheway\n\n30) Danner: Trade G1 B1 Adambadura\n\tAdamBadura: Sorry for the extreme delays but I was moving and have lots of associated work while the games goes bad for me and I have to think lots about moves.\n\tDanner: No problem. :)\n\n31) AdamBadura: Trade G2 R2 Ontheway\n\n32) Danner: Sacrifice G3 Alpha\nBuild B2 Adambadura\nBuild B2 Adambadura\nBuild G1 Adambadura\nCatastrophe Adambadura B\n\n\nHomeworlds Online (SDG# 21820)\nStarted: 2012.3.13, Ended: 2012.4.12\nParticipants: lorgar (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) lorgar: Homeworld G3 Y1 B3\n\n3) rootbier: Build G1 Rootbier\n\n4) lorgar: Build B1 Lorgar\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) lorgar: Build B1 Lorgar\n\n7) rootbier: Build G1 Rootbier\n\n8) lorgar: Discover B1 Lorgar G2 Mnar\n\n9) rootbier: Build G1 Rootbier\n\n10) lorgar: Build B2 Mnar\n\n11) rootbier: Discover G1 Rootbier B3 Oxix\n\n12) lorgar: Trade B2 R2 Mnar\n\n13) rootbier: Build G1 Rootbier\n\n14) lorgar: Build B2 Mnar\n\n15) rootbier: Discover G1 Rootbier B3 Ixox\n\n16) lorgar: Trade B1 Y1 Mnar\n\n17) rootbier: Sacrifice G3 Rootbier\nBuild G2 Oxix\nBuild G2 Ixox\nBuild G3 Rootbier\n\n18) lorgar: Discover B2 Mnar G3 Beer\n\n19) rootbier: Trade G1 Y1 Ixox\n\n20) lorgar: Build B1 Beer\n\n21) rootbier: Sacrifice G3 Rootbier\nBuild G1 Ixox\nBuild Y2 Ixox\nBuild G3 Rootbier\n\n22) lorgar: Build Y2 Mnar\n\n23) rootbier: Move Y2 Ixox Mnar\n\n24) lorgar: Attack Y2N Mnar\n\n25) rootbier: Move Y1 Ixox Mnar\nCatastrophe Mnar Y\n\n26) lorgar: Build B2 Beer\n\n27) rootbier: Trade G1 Y1 Ixox\n\n28) lorgar: Build B2 Lorgar\n\n29) rootbier: Sacrifice G3 Rootbier\nBuild G1 Ixox\nBuild Y1 Ixox\nBuild G3 Rootbier\n\n30) lorgar: Trade B2 Y2 Lorgar\n\n31) rootbier: Discover Y1 Ixox B2 Chlor\n\n32) lorgar: Sacrifice Y2 Lorgar\nMove R2 Mnar Oxix\nMove B2 Beer Chlor\n\n33) rootbier: Sacrifice R1 Rootbier\nAttack R2 Oxix\n\n34) lorgar: Trade B2 R2 Chlor\n\n35) rootbier: Move Y1 Chlor Oxix\n\n36) lorgar: Trade B2 Y2 Beer\n\n37) rootbier: Discover G2 Oxix R2 Wihabl\n\n38) lorgar: Trade Y2 G2 Beer\n\n39) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild Y2 Oxix\nBuild Y2 Ixox\n\n40) lorgar: Build B2 Beer\n\n41) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild Y3 Ixox\nBuild Y3 Oxix\n\n42) lorgar: Trade B3 Y3 Lorgar\n\n43) rootbier: Sacrifice Y2 Ixox\nMove G1 Rootbier Beer\nMove G2 Wihabl Beer\nCatastrophe Beer G\n\n44) lorgar: Build B1 Lorgar\n\n45) rootbier: Sacrifice Y2 Oxix\nMove Y3 Ixox Chlor\nMove G1 Ixox Chlor\n\n46) lorgar: Build B2 Lorgar\n\n47) rootbier: Sacrifice G2 Ixox\nBuild G1 Rootbier\nBuild G2 Chlor\n\n48) lorgar: Move B1 Lorgar Chlor\n\n49) rootbier: Sacrifice Y3 Oxix\nMove Y3 Chlor Lorgar\nMove Y1 Ixox Chlor\nMove Y1 Chlor Lorgar\nCatastrophe Lorgar Y\n\n50) lorgar: Attack G2N Chlor\n\n51) rootbier: Sacrifice G3 Rootbier\nBuild G2 Chlor\nBuild G2 Chlor\nBuild G3 Rootbier\nCatastrophe Chlor G\n\n52) lorgar: Trade B1 Y1 Chlor\n\n53) rootbier: Move G3 Rootbier Lorgar\n\n54) lorgar: Pass\n\n55) rootbier: Sacrifice R2 Oxix\nAttack B2 Lorgar\nAttack B1 Lorgar\n\trootbier: good game, sir\n\tlorgar: sorry, I wont play much these day, cello contest week -.-\n\n\nHomeworlds Online (SDG# 21843)\nVariants: "Unrated"\nStarted: 2012.3.17, Ended: 2013.5.6\nParticipants: Websteria (S), Subhan64 (N)\nWinner: Subhan64\n\n1) Subhan64: Homeworld G2 B1 Y3\n\n2) Websteria: Homeworld G3 B2 Y3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) Websteria: Build Y1 Websteria\n\n5) Subhan64: Trade Y3 G3 Subhan64\n\n6) Websteria: Trade Y3 R3 Websteria\n\n7) Subhan64: Build G1 Subhan64\n\n8) Websteria: Build R1 Websteria\n\n9) Subhan64: Trade G1 R1 Subhan64\n\n10) Websteria: Discover Y1 Websteria Y1 Grid\n\n11) Subhan64: Build Y2 Subhan64\n\n12) Websteria: Move Y1 Grid Websteria\n\n13) Subhan64: Build G1 Subhan64\n\n14) Websteria: Trade R3 Y3 Websteria\n\n15) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n16) Websteria: Discover Y1 Websteria G1 Grid\n\n17) Subhan64: Discover G1 Subhan64 Y3 Pacman\n\n18) Websteria: Build Y1 Grid\n\n19) Subhan64: Build Y2 Kermit\n\n20) Websteria: Build Y2 Websteria\n\n21) Subhan64: Build Y3 Subhan64\n\n22) Websteria: Trade Y3 R3 Websteria\n\n23) Subhan64: Discover G3 Subhan64 Y3 Big_bird\n\n24) Websteria: Move R3 Websteria Grid\n\n25) Subhan64: Discover Y1 Kermit B1 Smurfette\n\n26) Websteria: Move R3 Grid Kermit\n\n27) Subhan64: Move Y2 Kermit Grid\n\n28) Websteria: Build R1 Kermit\n\n29) Subhan64: Build R2 Subhan64\n\n\nHomeworlds Online (SDG# 21805)\nVariants: "Hard time"\nStarted: 2012.3.17, Ended: 2012.5.8\nParticipants: agentofchaos (S), SilentTitan (N)\nWinner: agentofchaos\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) agentofchaos: B G1 Agentofchaos\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) agentofchaos: Trade G1 R1 Agentofchaos\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) SilentTitan: Discover R2 Silenttitan B3 Sol\n\n14) agentofchaos: Trade R1 B1 Agentofchaos\n\n15) SilentTitan: Trade R2 Y2 Sol\n\n16) agentofchaos: Discover R2 Agentofchaos G1 Procyon\n\n17) SilentTitan: Build R1 Silenttitan\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) SilentTitan: Move R1 Silenttitan Sol\n\n20) agentofchaos: Move Y1 Agentofchaos Procyon\n\n21) SilentTitan: Discover R1 Silenttitan B3 Sole\n\n22) agentofchaos: Trade G1 Y1 Agentofchaos\n\n23) SilentTitan: Build Y2 Silenttitan\n\n24) agentofchaos: Build Y2 Agentofchaos\n\n25) SilentTitan: Move Y1 Silenttitan Sole\n\n26) agentofchaos: Build Y3 Procyon\n\n27) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Silenttitan\nBuild R2 Sol\nBuild R3 Sole\n\n28) agentofchaos: Build R3 Procyon\n\n29) SilentTitan: Trade Y3 G3 Silenttitan\n\n30) agentofchaos: Move Y3 Procyon Sol\n\n31) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Sol\nBuild R3 Sol\n\n32) agentofchaos: Sacrifice R3 Procyon\nAttack R3 Sol\nAttack Y3 Sol\nAttack Y2 Sol\n\n33) SilentTitan: Move Y2 Silenttitan Sol\nCatastrophe Sol Yellow\n\n34) agentofchaos: Attack R2 Sol\n\n35) SilentTitan: Move R3 Sole Procyon\n\n36) agentofchaos: Move R2 Procyon Sole\n\n37) SilentTitan: Attack Y1 Procyon South\n\n38) agentofchaos: Attack Y1 Sole\n\n39) SilentTitan: Build R3 Procyon\n\n40) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R2 Sole Procyon\nMove R2 Sol Procyon\nCatastrophe Procyon R\n\n41) SilentTitan: Trade Y3 G3 Silenttitan\n\n42) agentofchaos: Discover Y1 Sole G2 Frendzia\n\n43) SilentTitan: Build G1 Silenttitan\n\n44) agentofchaos: Attack R1 Sol\n\n45) SilentTitan: Build G1 Silenttitan\n\n46) agentofchaos: Build G2 Agentofchaos\n\n47) SilentTitan: Trade G3 Y3 Silenttitan\n\n48) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Agentofchaos\nBuild Y2 Frendzia\n\n49) SilentTitan: Discover G1 Silenttitan Y3 Soul\n\n50) agentofchaos: Build G2 Agentofchaos\n\n51) SilentTitan: Build Y2 Procyon\n\n52) agentofchaos: Trade Y1 B1 Agentofchaos\n\n53) SilentTitan: Build G2 Silenttitan\n\n54) agentofchaos: Move Y2 Frendzia Sole\n\n55) SilentTitan: Sacrifice Y2 Procyon\nDiscover G1 Silenttitan Y3 Tic\nDiscover R1 Sole Y1 Tac\n\n56) agentofchaos: Build Y2 Frendzia\n\n57) SilentTitan: Build G3 Silenttitan\n\n58) agentofchaos: Trade R3 G3 Sol\n\n59) SilentTitan: Sacrifice Y3 Silenttitan\nMove G1 Soul Tac\nMove Y1 Procyon Agentofchaos\nMove R1 Tac Agentofchaos\n\n60) agentofchaos: Attack R1 Agentofchaos\n\n61) SilentTitan: Trade Y1 B1 Agentofchaos\nCatastrophe Agentofchaos Blue\n\n62) agentofchaos: Build R2 Sol\n\n63) SilentTitan: Trade G3 Y3 Silenttitan\n\n64) agentofchaos: Move G2 Agentofchaos Tac\n\n65) SilentTitan: Sacrifice G1 Tac\nBuild G1 Silenttitan\n\n66) agentofchaos: Move G2 Tac Tic\n\n67) SilentTitan: Discover G2 Silenttitan B3 Sky\n\n68) agentofchaos: Sacrifice R1 Sol\nAttack G1 Tic\n\n69) SilentTitan: Build G1 Sky\n\n70) agentofchaos: Build G3 Sol\n\n71) SilentTitan: Trade G1 R1 Sky\n\n72) agentofchaos: Sacrifice G3 Sol\nBuild G1 Agentofchaos\nBuild G3 Sol\nBuild Y1 Sole\n\n73) SilentTitan: Build R2 Sky\n\n74) agentofchaos: D R1 Agentofchaos Y1 Azafrood\n\n75) SilentTitan: Trade R1 B1 Sky\n\n76) agentofchaos: Sacrifice G3 Sol\nBuild R1 Sol\nBuild R3 Azafrood\nBuild G3 Sol\n\n77) SilentTitan: Build R3 Sky\n\n78) agentofchaos: Sacrifice Y2 Frendzia\nMove Y1 Sole Silenttitan\nMove Y2 Sole Silenttitan\n\n\tSilentTitan: Good Game\n\tSilentTitan: Good Game\n\nHomeworlds Online (SDG# 21844)\nStarted: 2012.3.17, Ended: 2012.4.12\nParticipants: ts52 (S), anonymousApple (N)\nWinner: ts52\n\n1) anonymousApple: Homeworld Y3 B2 G3\n\tanonymousApple: Hello! Good luck!\n\n2) ts52: Homeworld Y1 B2 G3\n\tts52: Thanks, you too!\n\n3) anonymousApple: Build G1 Anonymousapple\n\n4) ts52: Build G1 Ts52\n\n5) anonymousApple: Discover G1 Anonymousapple B1 Snickers\n\n6) ts52: Trade G1 R1 Ts52\n\n7) anonymousApple: Build G1 Anonymousapple\n\n8) ts52: Build R1 Ts52\n\n9) anonymousApple: Trade G1 R1 Anonymousapple\n\n10) ts52: Build R2 Ts52\n\n11) anonymousApple: Discover R1 Anonymousapple Y1 Diablo\n\n12) ts52: Discover R2 Ts52 B3 Grover\n\n13) anonymousApple: Discover R1 Diablo G3 Sulfur\n\n14) ts52: Build G1 Ts52\n\n15) anonymousApple: Build G1 Anonymousapple\n\n16) ts52: Move G1 Ts52 Grover\n\n17) anonymousApple: Build R2 Sulfur\n\n18) ts52: Build R2 Grover\n\n19) anonymousApple: Trade G1 Y1 Anonymousapple\n\n20) ts52: Trade R2 Y2 Grover\n\n21) anonymousApple: Sacrifice Y1 Anonymousapple\nMove R2 Sulfur Ts52\n\n22) ts52: Attack R2 Ts52\n\n\tanonymousApple: wow...my group has been playing that rule wrong for years...thought it was largest *red* ship in the system. gg.\n\tts52: Ouch. Yeah, that's an easy one to mistake. Thanks for the game.\n\nHomeworlds Online (SDG# 21846)\nVariants: "Hard time"\nStarted: 2012.3.17, Ended: 2012.3.29\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) lorgar: Homeworld R2 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tlorgar: I'm gonna try...\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Trade G1 Y1 Lorgar\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) lorgar: Build G1 Lorgar\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) lorgar: Build G1 Lorgar\n\n11) SilentTitan: Build R1 Silenttitan\n\n12) lorgar: Discover G1 Lorgar B1 Leng\n\n13) SilentTitan: Discover R1 Silenttitan G3 Sol\n\n14) lorgar: Build G1 Lorgar\n\n15) SilentTitan: Build R2 Silenttitan\n\n16) lorgar: Build G2 Leng\n\n17) SilentTitan: Discover R2 Silenttitan Y3 Soul\n\n18) lorgar: Sacrifice Y1 Lorgar\nDiscover G2 Leng B3 Mnar\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Sol\nBuild R3 Soul\nBuild R3 Silenttitan\n\n20) lorgar: Sacrifice G1 Lorgar\nBuild G1 Mnar\n\n21) SilentTitan: Move R3 Silenttitan Mnar\n\n22) lorgar: Build G2 Mnar\n\n23) SilentTitan: Sacrifice R3 Soul\nAttack G2 Mnar South\nAttack G2 Mnar South\nAttack G1 Mnar South\n\n24) lorgar: Trade G1 Y1 Leng\n\n25) SilentTitan: Trade G2 Y2 Mnar\n\n26) lorgar: Trade Y1 G1 Leng\n\tlorgar: I'm getting beaten even worst than usual\n\n27) SilentTitan: Trade R3 Y3 Mnar\n\n28) lorgar: Trade G1 Y1 Lorgar\n\n29) SilentTitan: Discover R2 Soul Y1 Sole\n\n30) lorgar: Build G1 Leng\n\n31) SilentTitan: Sacrifice G2 Mnar\nBuild R3 Sole\nBuild R3 Sole\n\n32) lorgar: Sacrifice Y1 Lorgar\nDiscover G1 Leng B3 Mhor\n\n33) SilentTitan: Sacrifice Y2 Mnar\nMove R3 Sole Lorgar\nMove R3 Sole Lorgar\n\n34) lorgar: Pass\n\n35) SilentTitan: Attack G3 Lorgar South\n\n\nHomeworlds Online (SDG# 21849)\nStarted: 2012.3.17, Ended: 2012.5.9\nParticipants: lorgar (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) lorgar: Homeworld Y1 B2 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tlorgar: thx, I feel like trying new things\n\n4) lorgar: Build G1 Lorgar\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) lorgar: Trade G1 B1 Lorgar\n\n7) ts52: Build G1 Ts52\n\n8) lorgar: Discover B1 Lorgar G3 Leng\n\n9) ts52: Trade G1 R1 Ts52\n\n10) lorgar: Build B1 Leng\n\n11) ts52: Move R1 Ts52 Leng\n\n12) lorgar: Build B2 Leng\n\n13) ts52: Attack B1 Leng\n\n14) lorgar: Trade B2 R2 Leng\n\n15) ts52: Build R1 Leng\n\n16) lorgar: Sacrifice R2 Leng\nAttack R1N Leng\nAttack R1N Leng\n\n17) ts52: Build B2 Leng\n\n18) lorgar: Build B2 Leng\nCatastrophe Leng Blue\n\n19) ts52: Trade Y1 R1 Ts52\n\n20) lorgar: Build G1 Lorgar\n\tlorgar: You are annoying you know that? :)\n\tts52: What? ;)\n\n21) ts52: Build R2 Ts52\n\n22) lorgar: Discover G1 Lorgar B3 Mnar\n\n23) ts52: Move R2 Ts52 Mnar\n\n24) lorgar: Build G1 Lorgar\n\n25) ts52: Attack G1 Mnar\n\tlorgar: I hate you -_-\n\n26) lorgar: Trade G1 B1 Lorgar\n\n27) ts52: Build R2 Mnar\n\tts52: You chose to make it a compact universe. \n\tlorgar: I know, thats why I hate my self twice more than you.\n\n28) lorgar: Build G1 Lorgar\n\n29) ts52: Trade R2 Y2 Mnar\n\n30) lorgar: Build R2 Leng\n\n31) ts52: Move R1 Ts52 Leng\nCatastrophe Leng Red\n\n32) lorgar: Trade B1 R1 Lorgar\n\n33) ts52: Build G1 Mnar\n\tts52: You know I'm not going to let you get away with that...\n\tlorgar: dunno what I thought -_-\n\n34) lorgar: Build R1 Lorgar\n\n35) ts52: Sacrifice Y2 Mnar\nMove G1 Mnar Lorgar\nMove G1 Mnar Lorgar\nCatastrophe Lorgar Green\n\n36) lorgar: Trade R1 G1 Lorgar\n\n37) ts52: Build G1 Ts52\n\n38) lorgar: Build R1 Lorgar\n\n39) ts52: Move G1 Ts52 Mnar\n\n40) lorgar: Build G1 Lorgar\n\n41) ts52: Trade G1 Y1 Mnar\n\n42) lorgar: Trade G1 B1 Lorgar\n\n43) ts52: Build G1 Ts52\n\n44) lorgar: Build G1 Lorgar\n\n45) ts52: Move G1 Ts52 Mnar\n\n46) lorgar: Discover B1 Lorgar G3 More\n\n47) ts52: Build G2 Mnar\n\n48) lorgar: Build B1 More\n\n49) ts52: Move G2 Mnar Lorgar\n\n50) lorgar: Trade B1 Y1 More\n\tts52: Welcome back. ;)\n\n51) ts52: Sacrifice R2 Mnar\nAttack R1 Lorgar\nAttack R1 Lorgar\n\n52) lorgar: Pass\n\n53) ts52: Build G2 Lorgar\nCatastrophe Lorgar Green\n\n\tts52: Thanks for the game! Small universe, bad.... :D\n\tlorgar: indeed...\n\nHomeworlds Online (SDG# 21857)\nVariants: "Hard time"\nStarted: 2012.3.19, Ended: 2012.3.21\nParticipants: Gidaio (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Gidaio: Homeworld B2 G1 Y3\n\n3) dlwillson: B G1 Dlwillson\n\tGidaio: Haven't we had a match before? I swear, your name seems familiar...\n\n4) Gidaio: Build Y1 Gidaio\n\tdlwillson: We played Cannon in February last year. Unfortunately, sometime around then, I got bored or depressed or something, and quit practically everything I was doing on SDG. I'm back now. :-)\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\tGidaio: Heh. That kinda happened to me, too.\n\n6) Gidaio: Discover Y1 Gidaio G3 Galifrey\n\tdlwillson: This should be interesting...\n\n7) dlwillson: Discover Y1 Dlwillson G2 Field\n\n8) Gidaio: Build Y2 Galifrey\n\n9) dlwillson: Build Y2 Field\n\n10) Gidaio: Build Y2 Gidaio\n\n11) dlwillson: D Y2 Field G3 Meadow\n\n12) Gidaio: Trade Y2 G2 Gidaio\n\n13) dlwillson: B G1 Dlwillson\n\n14) Gidaio: Discover G2 Gidaio Y3 Sr388\n\n15) dlwillson: T G1 R1 Dlwillson\n\tGidaio: Lemmie guess: your next system will be 'plain.'\n\n16) Gidaio: Build G1 Sr388\n\n17) dlwillson: B G1 Dlwillson\n\tdlwillson: Probably 'sky'. 'Plain' would be a bad name for blue. :-)\n\n18) Gidaio: Move G2 Sr388 Field\n\n19) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB Y2 Field\nB Y3 Meadow\n\n20) Gidaio: Build G3 Sr388\n\n21) dlwillson: Move Y3 Meadow Gidaio\n\n22) Gidaio: Trade Y3 R3 Gidaio\n\n23) dlwillson: Sacrifice R1 Dlwillson\nAttack R3 Gidaio\n\n\tGidaio: Oh, very nice. I didn't even notice that.\n\tdlwillson: Good game, Gidaio. Let me know if you'd like to play a friendly game.\n\nHomeworlds Online (SDG# 21858)\nStarted: 2012.3.19, Ended: 2012.4.9\nParticipants: RogueJedi234 (S), krazykyle2011 (N)\nWinner: RogueJedi234\n\n1) krazykyle2011: Pass\n\n\n2) RogueJedi234: Homeworld B3 G2 Y3\n\n3) krazykyle2011: Homeworld B3 G1 R3\n\n4) RogueJedi234: Build Y1 Roguejedi234\n\n5) krazykyle2011: Build R1 Krazykyle2011\n\n6) RogueJedi234: Build Y1 Roguejedi234\n\n7) krazykyle2011: Trade R1 Y1 Krazykyle2011\n\n8) RogueJedi234: Discover Y1 Roguejedi234 G1 Alpha1\n\n9) krazykyle2011: Build Y2 Krazykyle2011\n\n10) RogueJedi234: Build Y2 Roguejedi234\n\n11) krazykyle2011: Build Y2 Krazykyle2011\n\n12) RogueJedi234: Trade Y2 B2 Roguejedi234\n\n13) krazykyle2011: Discover Y2 Krazykyle2011 B2 Beta2\n\n14) RogueJedi234: Move B2 Roguejedi234 Alpha1\n\n15) krazykyle2011: Move Y2 Krazykyle2011 Beta2\n\n16) RogueJedi234: Build Y2 Alpha1\n\n17) krazykyle2011: Trade Y2 G2 Beta2\n\n18) RogueJedi234: Trade Y2 G2 Alpha1\n\n19) krazykyle2011: Build R1 Krazykyle2011\n\n20) RogueJedi234: Build G1 Alpha1\n\n21) krazykyle2011: Move R1 Krazykyle2011 Beta2\n\n22) RogueJedi234: Build Y2 Roguejedi234\n\n23) krazykyle2011: Move R1 Beta2 Alpha1\n\n24) RogueJedi234: Trade Y2 R2 Roguejedi234\n\n25) krazykyle2011: Move Y2 Beta2 Alpha1\n\n26) RogueJedi234: Sacrifice R2 Roguejedi234\nAttack R1 Alpha1\nAttack Y2 Alpha1\n\n27) krazykyle2011: Build Y2 Krazykyle2011\n\n28) RogueJedi234: Move G2 Alpha1 Roguejedi234\n\n29) krazykyle2011: Move Y2 Krazykyle2011 Beta2\n\n30) RogueJedi234: Trade Y1 R1 Roguejedi234\n\n31) krazykyle2011: Discover G2 Beta2 B1 Delta 3\n\n32) RogueJedi234: Sacrifice Y2 Alpha1\nMove R1 Alpha1 Beta2\nMove B2 Alpha1 Beta2\n\n33) krazykyle2011: Move Y2 Beta2 Delta\n\n34) RogueJedi234: Sacrifice G2 Roguejedi234\nBuild R1 Beta2\nBuild R2 Beta2\n\n35) krazykyle2011: Build G2 Delta\n\n36) RogueJedi234: Move G1 Alpha1 Beta2\n\n37) krazykyle2011: Trade G2 R2 Delta\n\n38) RogueJedi234: Build Y1 Alpha1\n\n39) krazykyle2011: Move R3 Krazykyle2011 Beta2\n\n40) RogueJedi234: Sacrifice Y1 Alpha1\nMove R2 Beta2 Krazykyle2011\n\n41) krazykyle2011: Build Y1 Krazykyle2011\n\n42) RogueJedi234: Trade R2 G2 Krazykyle2011\n\n43) krazykyle2011: Sacrifice Y2 Delta\nMove R3 Beta2 Krazykyle2011\nMove Y1 Krazykyle2011 Beta2\n\n44) RogueJedi234: Build G3 Krazykyle2011\n\n45) krazykyle2011: Build G3 Delta\n\n46) RogueJedi234: Build G3 Krazykyle2011\nCatastrophe Krazykyle2011 Green\n\n47) krazykyle2011: Sacrifice Y1 Beta2\nDiscover G3 Delta B3 Gamma\n\n48) RogueJedi234: Build B1 Beta2\n\n49) krazykyle2011: Build G1 Gamma\n\n50) RogueJedi234: Build B1 Beta2\n\n51) krazykyle2011: Trade R2 Y2 Delta\n\n52) RogueJedi234: Sacrifice Y3 Roguejedi234\nMove B1 Beta2 Krazykyle2011\nMove B2 Beta2 Krazykyle2011\nMove B1 Beta2 Krazykyle2011\nCatastrophe Krazykyle2011 Blue\n\n\nHomeworlds Online (SDG# 21848)\nVariants: "Hard time"\nStarted: 2012.3.20, Ended: 2012.4.2\nParticipants: SilentTitan (S), rootbier (N)\nWinner: rootbier\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) rootbier: Build G1 Rootbier\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) SilentTitan: Trade G1 R1 Silenttitan\n\n7) rootbier: Build G1 Rootbier\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) rootbier: Discover G1 Rootbier B3 Oxix\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) rootbier: Build G1 Rootbier\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) rootbier: D G1 Rootbier B3 Ixox\n\n14) SilentTitan: Trade B1 Y1 Silenttitan\n\n15) rootbier: Build G1 Rootbier\n\n16) SilentTitan: Build Y1 Silenttitan\n\n17) rootbier: Build G2 Rootbier\n\n18) SilentTitan: Discover Y1 Silenttitan R1 Sky\n\n19) rootbier: Discover G2 Rootbier Y3 Skox\n\n20) SilentTitan: Build R2 Silenttitan\n\n21) rootbier: Build G2 Ixox\n\n22) SilentTitan: Discover R2 Silenttitan Y1 Sol\n\n23) rootbier: Sacrifice G3 Rootbier\nBuild G2 Oxix\nBuild G3 Skox\nBuild G3 Rootbier\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sky\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n25) rootbier: Build G3 Rootbier\n\n26) SilentTitan: Discover R2 Sol Y3 Soul\n\n27) rootbier: Build R2 Rootbier\n\trootbier: whoops. somehow in all my manic tab flipping i bumped the undo.\n\trootbier: whoops. somehow in all my manic tab flipping i bumped the undo. and then ha hah i put the ship back in the wrong place.\n\n28) SilentTitan: Discover Y2 Silenttitan B1 Sole\n\n29) rootbier: Move R2 Rootbier Skox\n\n30) SilentTitan: Move Y1 Silenttitan Sole\n\n31) rootbier: Move G3 Skox Sole\n\n32) SilentTitan: Sacrifice Y2 Sole\nMove Y1 Sole Skox\nMove Y1 Sky Skox\n\n33) rootbier: Discover R2 Skox Y1 Prong\n\n34) SilentTitan: Move Y1 Skox Prong\n\n35) rootbier: Sacrifice G3 Rootbier\nBuild G3 Rootbier\nBuild R3 Rootbier\nBuild R3 Prong\n\n36) SilentTitan: Discover Y1 Prong Y2 Sunburst\n\n37) rootbier: Move G3 Rootbier Soul\n\n38) SilentTitan: Pass\n\n39) rootbier: Sacrifice R1 Rootbier\nAttack R2 Soul\n\n40) SilentTitan: Discover Y1 Sunburst R3 Mars\n\trootbier: ? hmm ?\n\n41) rootbier: Move G3 Rootbier Mars\n\n42) SilentTitan: Move Y1 Mars Rootbier\n\n43) rootbier: Sacrifice R2 Soul\nAttack Y1 Skox\nAttack Y1 Rootbier\n\n44) SilentTitan: Pass\n\n45) rootbier: Move Y1 Rootbier Ixox\n\n\tSilentTitan: good game\n\trootbier: thanks. rematch?\n\tSilentTitan: sure.\n\nHomeworlds Online (SDG# 21868)\nVariants: "Hard time"\nStarted: 2012.3.21, Ended: 2012.3.25\nParticipants: dragmio (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) dragmio: Homeworld G2 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\tdragmio: Hello! Have a good game!\n\tSilentTitan: Well.... thank you very much... I hope you have a good game as well.\r\n\n\n4) dragmio: Build B1 Dragmio\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dragmio: Trade B1 R1 Dragmio\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) dragmio: Build R1 Dragmio\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) dragmio: Build R2 Dragmio\n\n11) SilentTitan: Discover Y2 Silenttitan R3 Sol\n\n12) dragmio: Discover R2 Dragmio Y3 Prime\n\n13) SilentTitan: Build Y2 Silenttitan\n\n14) dragmio: Build R2 Dragmio\n\n15) SilentTitan: Trade Y2 R2 Silenttitan\n\n16) dragmio: Trade R2 Y2 Dragmio\n\n17) SilentTitan: Discover Y1 Silenttitan R3 Soul\n\n18) dragmio: Discover R1 Dragmio G3 Grassy\n\n19) SilentTitan: Move R2 Silenttitan Grassy\n\n20) dragmio: Move R1 Dragmio Grassy\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Soul\nBuild Y3 Sol\nBuild Y3 Silenttitan\n\n22) dragmio: Build B1 Dragmio\n\tdragmio: Wow, didn't see this coming at all.\n\n23) SilentTitan: Trade Y3 G3 Silenttitan\n\n24) dragmio: Sacrifice Y2 Dragmio\nMove R1 Grassy Silenttitan\nMove R1 Grassy Silenttitan\n\n25) SilentTitan: Build Y2 Silenttitan\n\n26) dragmio: Move R2 Prime Silenttitan\nCatastrophe Silenttitan R\n\n27) SilentTitan: Move Y3 Sol Dragmio\n\n28) dragmio: Trade B1 R1 Dragmio\n\n29) SilentTitan: Sacrifice R2 Grassy\nAttack B3 Dragmio South\nAttack R1 Dragmio South\n\tSilentTitan: Tiny Universe are always trouble. Good Game.\n\tdragmio: You are too nice. You kicked my ass good. :) I'll try again when I'm better.\n\n\nHomeworlds Online (SDG# 21877)\nVariants: "Hard time"\nStarted: 2012.3.21, Ended: 2012.3.24\nParticipants: dlwillson (S), mneme (N)\nWinner: dlwillson\n\n\tdlwillson: Mneme, take a turn!\n\nHomeworlds Online (SDG# 21887)\nVariants: "Hard time"\nStarted: 2012.3.25, Ended: 2012.4.9\nParticipants: ts52 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) ts52: Build G1 Ts52\n\n5) dlwillson: Discover G1 Dlwillson B2 Sky\n\tts52: Have a good game!\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\tdlwillson: You too!\n\n7) dlwillson: Build G1 Dlwillson\n\n8) ts52: Build G2 Grover\n\n9) dlwillson: B G2 Dlwillson\n\n10) ts52: Trade G2 Y2 Grover\n\n11) dlwillson: Discover G2 Dlwillson B2 Sea\n\n12) ts52: Build G2 Grover\n\n13) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sky\nBuild G3 Sea\nBuild G3 Dlwillson\n\n14) ts52: Trade G2 R2 Grover\n\n15) dlwillson: Trade G1 R1 Dlwillson\n\n16) ts52: Build Y1 Grover\n\n17) dlwillson: Trade G2 Y2 Sky\n\n18) ts52: Build G1 Grover\n\n19) dlwillson: Sacrifice G3 Sea\nBuild G2 Dlwillson\nBuild G2 Sky\nBuild G3 Sea\n\n20) ts52: Sacrifice Y2 Grover\nMove G1 Grover Sea\nMove G1 Grover Sea\nCatastrophe Sea Green\n\n21) dlwillson: Discover G2 Sky B3 Sea\n\n22) ts52: Build G1 Ts52\n\n23) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Sea\nBuild G2 Sky\nBuild G3 Dlwillson\n\n24) ts52: Trade G1 R1 Ts52\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Dlwillson\nBuild G3 Sea\nBuild G3 Dlwillson\n\n26) ts52: Build R1 Ts52\n\tts52: This doesn't seem to be going too well for me....\n\n27) dlwillson: T G3 Y3 Sea\n\n28) ts52: Trade R1 B1 Ts52\n\n29) dlwillson: B G3 Sea\n\n30) ts52: Build R1 Ts52\n\n31) dlwillson: Trade G3 R3 Sea\n\n32) ts52: Discover R1 Ts52 G3 Kermit\n\n33) dlwillson: Move G1 Sea Ts52\n\n34) ts52: Build R2 Ts52\n\n35) dlwillson: Sacrifice Y3 Sea\nMove G2 Sea Ts52\nMove G1 Sky Sea\nMove G1 Sea Ts52\nCatastrophe Ts52 G\n\n36) ts52: Trade R2 G2 Ts52\n\n37) dlwillson: Sacrifice Y2 Sky\nMove R3 Sea Ts52\nMove G2 Sky Grover\n\tdlwillson: I think it's over in a move or three, depending.\n\n38) ts52: Sacrifice G2 Ts52\nBuild R2 Ts52\nBuild R2 Ts52\nCatastrophe Ts52 Red\n\tts52: Yeah, I think you're probably right.\n\n39) dlwillson: Sacrifice R1 Dlwillson\nAttack R2 Grover\n\n40) ts52: Sacrifice Y1 Grover\nMove R1 Kermit Ts52\n\n41) dlwillson: Trade G2 Y2 Dlwillson\n\n42) ts52: Trade B1 G1 Ts52\n\n43) dlwillson: Sacrifice Y2 Dlwillson\nMove G2 Grover Ts52\nMove R2 Grover Ts52\n\n44) ts52: Build G1 Ts52\n\n45) dlwillson: Sacrifice R2 Ts52\nAttack R1 Ts52\nAttack G1 Ts52\n\n46) ts52: Pass\n\tts52: I think thats about it.\n\n47) dlwillson: A G1 Ts52\n\tdlwillson: one more move you get, and, depending on what you do, one more for me.\r\n\r\nthanks so much for the good game.\n\tts52: Thanks to you too.\n\n\tdlwillson: Good game, TS52. Thank you.\n\tts52: You too. Well played.\n\nHomeworlds Online (SDG# 21890)\nStarted: 2012.3.25, Ended: 2012.4.1\nParticipants: dragmio (S), lorgar (N), tcerier (E)\nWinner: dragmio\n\n1) lorgar: Homeworld B1 Y3 G3\n\n2) dragmio: Homeworld G3 Y1 B3\n\ttcerier: how do i enter my move?\n\tdragmio: Hm, if its your first game,you should really try a "one on one" game. I'll play you, no problem.\n\n3) lorgar: Build G1 Lorgar\n\n4) dragmio: Build B1 Dragmio\n\n5) lorgar: Trade G1 B1 Lorgar\n\n6) dragmio: Trade B1 R1 Dragmio\n\n7) lorgar: Discover B1 Lorgar G2 Mnar\n\n8) dragmio: Move R1 Dragmio Mnar\n\n\tdragmio: Hey, what happened?\n\tlorgar: Can we start again using three pieces stack please?\n\tdragmio: Of course. I just thought this would be an interesting change. Anyway, I'll challenge you.\n\nHomeworlds Online (SDG# 21880)\nVariants: "Hard time"\nStarted: 2012.3.25, Ended: 2012.3.29\nParticipants: tcerier (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 21892)\nVariants: "Hard time"\nStarted: 2012.3.31, Ended: 2012.4.9\nParticipants: lorgar (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) lorgar: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) lorgar: Build G1 Lorgar\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) lorgar: Build G1 Lorgar\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) lorgar: Trade G1 B1 Lorgar\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) lorgar: Build B1 Lorgar\n\n11) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n12) lorgar: Discover B1 Lorgar G2 Mnar\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n14) lorgar: Build B2 Mnar\n\n15) SilentTitan: Discover Y2 Sol G2 Soul\n\n16) lorgar: Move G1 Lorgar Soul\n\n17) SilentTitan: Build Y3 Soul\n\n18) lorgar: Sacrifice G3 Lorgar\nBuild G1 Soul\nBuild G1 Soul\nBuild B2 Mnar\nCatastrophe Soul Green\n\n19) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y2 Sol Mnar\nMove Y2 Mnar Lorgar\n\n20) lorgar: Trade B2 G2 Mnar\n\tSilentTitan: I was sure you wouldn't try that...\n\n21) SilentTitan: Trade Y2 B2 Lorgar\n\n22) lorgar: Sacrifice B2 Mnar\nTrade B1 R1 Lorgar\nTrade G2 Y2 Mnar\n\tlorgar: yeah, and now I'm screwed\n\n23) SilentTitan: Trade B2 R2 Lorgar\n\n24) lorgar: Pass\n\n25) SilentTitan: Attack R1 Lorgar South\n\n\nHomeworlds Online (SDG# 21929)\nVariants: "Hard time"\nStarted: 2012.3.31, Ended: 2012.4.18\nParticipants: rootbier (S), shmil1 (N)\nWinner: rootbier\n\n1) shmil1: Homeworld G1 B2 R3\n\n2) rootbier: Homeworld Y2 B3 G3\n\n3) shmil1: Build R1 Shmil1\n\n4) rootbier: Build G1 Rootbier\n\n5) shmil1: Trade R1 Y1 Shmil1\n\n6) rootbier: Discover G1 Rootbier B1 Oxix\n\n7) shmil1: Build R1 Shmil1\n\n8) rootbier: Build G1 Rootbier\n\n9) shmil1: Build Y1 Shmil1\n\n10) rootbier: Discover G1 Rootbier B1 Ixox\n\n11) shmil1: Build Y1 Shmil1\n\n12) rootbier: Build G2 Rootbier\n\n13) shmil1: Discover R1 Shmil1 Y3 Prechodnenebe\n\n14) rootbier: Sacrifice G3 Rootbier\nBuild G2 Ixox\nBuild G2 Oxix\nBuild G3 Rootbier\n\n15) shmil1: Move R1 Prechodnenebe Oxix\n\trootbier: prehuzzawhat?\n\n16) rootbier: Trade G2 R2 Oxix\n\n17) shmil1: Attack G1 Oxix\n\n18) rootbier: Attack R1 Oxix\n\n19) shmil1: Build G2 Oxix\n\n20) rootbier: Attack G2 Oxix\n\n21) shmil1: Build G3 Oxix\n\n22) rootbier: Sacrifice G1 Ixox\nBuild G1 Oxix\nCatastrophe Oxix G\n\n23) shmil1: Trade Y1 G1 Shmil1\n\n24) rootbier: Move G2 Rootbier Oxix\n\n25) shmil1: Build R1 Shmil1\n\n26) rootbier: Trade R2 Y2 Oxix\n\n27) shmil1: Discover Y1 Shmil1 G3 Zelenenebe\n\n28) rootbier: Build G1 Rootbier\n\n29) shmil1: Build Y1 Zelenenebe\n\n30) rootbier: Sacrifice G3 Rootbier\nBuild G2 Ixox\nBuild G3 Rootbier\nBuild G3 Oxix\n\n31) shmil1: Build Y2 Shmil1\n\n32) rootbier: Trade G2 R2 Ixox\n\n33) shmil1: Discover Y1 Zelenenebe B1 Modrenebe\n\n34) rootbier: Sacrifice G3 Rootbier\nBuild G2 Ixox\nBuild G3 Rootbier\nBuild Y3 Oxix\n\n35) shmil1: Move Y1 Zelenenebe Modrenebe\n\n36) rootbier: Sacrifice Y3 Oxix\nMove R2 Ixox Rootbier\nMove R2 Rootbier Modrenebe\nDiscover Y2 Oxix B3 Habl\n\n37) shmil1: Sacrifice Y2 Shmil1\nMove Y1 Modrenebe Rootbier\nMove Y1 Modrenebe Rootbier\n\n38) rootbier: Sacrifice R2 Modrenebe\nAttack Y1 Rootbier\nAttack Y1 Rootbier\n\n39) shmil1: Build G3 Shmil1\n\n40) rootbier: Sacrifice Y2 Habl\nDiscover G2 Ixox Y3 Habl\nMove G2 Habl Shmil1\nCatastrophe Shmil1 G\n\n41) shmil1: Trade R3 G3 Shmil1\n\n42) rootbier: Move Y1 Rootbier Oxix\n\n43) shmil1: Build Y2 Shmil1\n\n44) rootbier: Move Y1 Rootbier Ixox\n\n45) shmil1: Move Y2 Shmil1 Ixox\n\n46) rootbier: Sacrifice R1 Oxix\nAttack Y2 Ixox\n\n47) shmil1: Move R1 Shmil1 Oxix\n\n48) rootbier: Sacrifice Y1 Oxix\nDiscover G2 Oxix Y3 Habl\n\n49) shmil1: Sacrifice Y1 Shmil1\nMove R1 Oxix Rootbier\n\n50) rootbier: Trade Y2 R2 Ixox\n\n51) shmil1: Attack G1 Rootbier\n\n52) rootbier: Sacrifice R2 Ixox\nAttack G1 Rootbier\nAttack R1 Rootbier\n\n53) shmil1: Build G1 Shmil1\n\n54) rootbier: Move G2 Habl Shmil1\n\n55) shmil1: Trade G3 R3 Shmil1\n\trootbier: laudable commitment to a bad plan\r\nready to throw it in?\n\n56) rootbier: Sacrifice G3 Rootbier\nBuild G1 Shmil1\nBuild G2 Oxix\nBuild G3 Ixox\n\n57) shmil1: Attack G2 Shmil1\n\n58) rootbier: Build G3 Shmil1\nCatastrophe Shmil1 G\n\n59) shmil1: Trade R3 G3 Shmil1\n\n60) rootbier: Move G3 Ixox Shmil1\n\n61) shmil1: Trade G3 R3 Shmil1\n\n62) rootbier: Sacrifice R1 Rootbier\nAttack R3 Shmil1\n\n\tshmil1: interesting how long it takes to win...\n\trootbier: it does take some time yeah\n\nHomeworlds Online (SDG# 21926)\nVariants: "Hard time"\nStarted: 2012.4.2, Ended: 2012.4.3\nParticipants: alihv (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) alihv: Homeworld G3 B1 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) alihv: Build Y1 Alihv\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) alihv: Trade Y3 G3 Alihv\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) alihv: Build G1 Alihv\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) alihv: Discover G1 Alihv B2 Germany\n\n11) SilentTitan: Build R1 Silenttitan\n\n12) alihv: Build G1 Alihv\n\n13) SilentTitan: Discover R1 Silenttitan B3 Sol\n\n14) alihv: Discover G1 Alihv B2 France\n\n15) SilentTitan: Build R2 Silenttitan\n\n16) alihv: Build G1 France\n\n17) SilentTitan: Discover R2 Silenttitan Y3 Soul\n\n18) alihv: Build Y1 Alihv\n\n19) SilentTitan: Build G2 Silenttitan\n\n20) alihv: Sacrifice G3 Alihv\nBuild G2 Germany\nBuild G2 Germany\nBuild G3 France\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Sol\nBuild R2 Soul\nBuild G3 Silenttitan\n\n22) alihv: Trade G3 R3 France\n\n23) SilentTitan: Build Y2 Silenttitan\n\n24) alihv: Sacrifice G2 Germany\nBuild Y2 Alihv\nBuild G2 France\n\n25) SilentTitan: Sacrifice Y2 Silenttitan\nMove R2 Sol France\nMove R2 France Alihv\n\n26) alihv: Sacrifice Y2 Alihv\nMove R3 France Alihv\nDiscover G2 France G3 Seoul\n\n27) SilentTitan: Sacrifice G3 Silenttitan\nBuild R3 Alihv\nBuild R3 Alihv\nBuild G3 Silenttitan\nCatastrophe Alihv Red\n\n28) alihv: Trade G2 R2 Germany\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild R3 Sol\nBuild R3 Silenttitan\nBuild Y2 Silenttitan\n\n30) alihv: Build Y2 Alihv\n\tSilentTitan: LMAO..... I never even thought of that Seoul... I've always done sol soul sole.... I shall promptly add that to my repertoire. \n\n31) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Sol France\nMove R3 France Alihv\n\n32) alihv: Sacrifice Y2 Alihv\nMove G2 Seoul Silenttitan\nMove R2 Germany Sol\n\n\talihv: congrats!\n\tSilentTitan: did you want to play again? \n\nHomeworlds Online (SDG# 21944)\nVariants: "Hard time"\nStarted: 2012.4.5, Ended: 2012.5.12\nParticipants: rootbier (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) rootbier: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) rootbier: Build G1 Rootbier\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) rootbier: Discover G1 Rootbier Y2 Oxix\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) rootbier: Build G1 Rootbier\n\n9) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n10) rootbier: Build G2 Oxix\n\n11) SilentTitan: Build Y1 Silenttitan\n\n12) rootbier: Discover G2 Oxix B3 Ixox\n\n13) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n14) rootbier: Sacrifice G3 Rootbier\nBuild G2 Ixox\nBuild G2 Oxix\nBuild G3 Rootbier\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Soul\nBuild Y2 Silenttitan\nBuild G3 Sol\n\n16) rootbier: Trade G2 R2 Ixox\n\n17) SilentTitan: Discover G1 Sol Y2 Sole\n\n18) rootbier: Move G1 Oxix Sol\n\n19) SilentTitan: Build G2 Sole\n\trootbier: gah. i went too mono. :)\n\n20) rootbier: Move G1 Rootbier Sole\n\n21) SilentTitan: Move G1 Sole Rootbier\n\n22) rootbier: Trade G3 R3 Rootbier\n\n23) SilentTitan: Sacrifice G2 Sole\nBuild Y3 Silenttitan\nPass\n\n24) rootbier: Sacrifice G2 Oxix\nBuild G2 Sol\nBuild G2 Sol\nCatastrophe Sol G\n\n25) SilentTitan: Build Y2 Soul\n\n26) rootbier: Attack G1 Rootbier\n\n27) SilentTitan: Trade Y3 G3 Silenttitan\n\n28) rootbier: Move G1 Sole Soul\n\n29) SilentTitan: Sacrifice Y2 Soul\nDiscover Y1 Soul Y2 Tic\nDiscover Y1 Soul Y2 Tac\n\n30) rootbier: Build G1 Ixox\n\n31) SilentTitan: Build Y3 Silenttitan\n\n32) rootbier: Trade G2 B2 Ixox\n\n33) SilentTitan: Trade Y3 R3 Silenttitan\n\n34) rootbier: Move G1 Rootbier Tic\n\n35) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Tic\nBuild Y3 Silenttitan\nBuild R1 Silenttitan\n\n36) rootbier: Sacrifice G1 Soul\nBuild R1 Rootbier\n\n37) SilentTitan: Sacrifice R1 Silenttitan\nAttack G1 Tic South\n\n38) rootbier: Trade R3 G3 Rootbier\n\n\n39) SilentTitan: Move Y3 Tic Ixox\n\n40) rootbier: Build B1 Ixox\n\n41) SilentTitan: Trade Y3 B3 Ixox\nCatastrophe Ixox Blue\n\n42) rootbier: Build R1 Rootbier\n\n43) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Tac Rootbier\nMove Y1 Tic Rootbier\n\trootbier: i can take you with me :)\n\tSilentTitan: LOL... that had actually been my intent. \n\n44) rootbier: Build R2 Rootbier\n\trootbier: hmm... had i not pushed for catastrophe you could have had them all with an r3 sac\r\n\r\nwould have been well worth it\n\trootbier: not that you need worry about that now\n\n45) SilentTitan: Sacrifice G1 Tic\nBuild Y2 Rootbier\nCatastrophe Rootbier Yellow\n\n46) rootbier: Trade R2 Y2 Rootbier\n\n47) SilentTitan: Trade R3 G3 Silenttitan\n\n48) rootbier: Build R2 Rootbier\n\n49) SilentTitan: Build G1 Silenttitan\n\trootbier: wow. i feel like i mitigated my losses there -- this is looking much less hopeless than it was a few rounds back. :)\n\n50) rootbier: Trade R2 Y2 Rootbier\n\n51) SilentTitan: Trade Y1 B1 Silenttitan\n\n52) rootbier: Sacrifice Y2 Rootbier\nDiscover Y2 Rootbier B3 Sluph\nMove R1 Rootbier Sluph\n\n53) SilentTitan: Discover B1 Silenttitan R3 Sol\n\n54) rootbier: Build R2 Rootbier\n\n55) SilentTitan: Sacrifice G3 Silenttitan\nBuild B1 Sol\nBuild B2 Sol\nBuild Y1 Silenttitan\n\n\nHomeworlds Online (SDG# 21978)\nVariants: "Hard time"\nStarted: 2012.4.7, Ended: 2012.5.4\nParticipants: Subhan64 (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld R1 B3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) Subhan64: Build G1 Subhan64\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) Subhan64: Trade G1 Y1 Subhan64\n\n7) Remneb: Build G1 Remneb\n\n8) Subhan64: Build G1 Subhan64\n\n9) Remneb: Trade G1 R1 Remneb\n\n10) Subhan64: Build G1 Subhan64\n\n11) Remneb: Build R2 Remneb\n\n12) Subhan64: Trade G3 R3 Subhan64\n\n13) Remneb: Discover R1 Remneb Y3 Draco\n\n14) Subhan64: Discover G1 Subhan64 R2 Elmos_world\n\n15) Remneb: Discover R2 Remneb Y3 Taken\n\n16) Subhan64: Discover R3 Subhan64 B2 Smurfette\n\n17) Remneb: Discover R2 Taken Y2 Horla\n\n18) Subhan64: Sacrifice Y1 Subhan64\nMove R3 Smurfette Subhan64\n\n19) Remneb: Move R1 Draco Horla\n\n20) Subhan64: Trade G1 Y1 Subhan64\n\n21) Remneb: Move R1 Horla Subhan64\n\n\nHomeworlds Online (SDG# 21985)\nStarted: 2012.4.9, Ended: 2012.4.30\nParticipants: krazykyle2011 (S), RogueJedi234 (N)\nWinner: RogueJedi234\n\n1) RogueJedi234: Homeworld B2 G1 Y3\n\n2) krazykyle2011: Homeworld G3 Y2 B3\n\n3) RogueJedi234: Build Y1 Roguejedi234\n\n4) krazykyle2011: Build B1 Krazykyle2011\n\n5) RogueJedi234: Trade Y1 G1 Roguejedi234\n\n6) krazykyle2011: Build B1 Krazykyle2011\n\n7) RogueJedi234: Discover G1 Roguejedi234 B3 Alpha\n\n8) krazykyle2011: Trade B1 G1 Krazykyle2011\n\n9) RogueJedi234: Build G2 Alpha\n\n10) krazykyle2011: Discover G1 Krazykyle2011 B1 Beta\n\n11) RogueJedi234: Trade G2 R2 Alpha\n\n12) krazykyle2011: Build G2 Beta\n\n13) RogueJedi234: Build G2 Alpha\n\n14) krazykyle2011: Trade G2 Y2 Beta\n\n15) RogueJedi234: Build Y1 Roguejedi234\n\n16) krazykyle2011: Build G2 Beta\n\n17) RogueJedi234: Sacrifice Y1 Roguejedi234\nMove G2 Alpha Beta\n\n18) krazykyle2011: Sacrifice Y2 Beta\nDiscover G2 Beta B3 Delta\nMove G1 Beta Delta\n\n19) RogueJedi234: Build G2 Beta\n\n20) krazykyle2011: Trade G1 Y1 Delta\n\n21) RogueJedi234: Build Y1 Roguejedi234\n\n22) krazykyle2011: Build B1 Krazykyle2011\n\n23) RogueJedi234: Trade Y1 R1 Roguejedi234\n\n24) krazykyle2011: Trade B1 R1 Krazykyle2011\n\n25) RogueJedi234: Trade G2 B2 Beta\n\n26) krazykyle2011: Build Y1 Delta\n\n27) RogueJedi234: Build Y1 Roguejedi234\n\n28) krazykyle2011: Move G2 Delta Roguejedi234\n\n29) RogueJedi234: Attack G2 Roguejedi234\n\n30) krazykyle2011: Trade B3 G3 Krazykyle2011\n\n31) RogueJedi234: Sacrifice Y3 Roguejedi234\nMove G1 Alpha Beta\nMove G1 Beta Krazykyle2011\nMove G2 Beta Krazykyle2011\nCatastrophe Krazykyle2011 Green\n\n32) krazykyle2011: Trade Y1 G1 Delta\n\n33) RogueJedi234: Trade B2 R2 Beta\n\n34) krazykyle2011: Trade R1 G1 Krazykyle2011\n\n35) RogueJedi234: Sacrifice Y1 Roguejedi234\nMove R2 Beta Krazykyle2011\n\n36) krazykyle2011: Build Y1 Delta\n\n37) RogueJedi234: Sacrifice R2 Alpha\nAttack G1 Krazykyle2011\nAttack B1 Krazykyle2011\n\n\nHomeworlds Online (SDG# 21986)\nVariants: "Hard time"\nStarted: 2012.4.10, Ended: 2012.5.11\nParticipants: agentofchaos (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\tdlwillson: Have a lot of fun!\n\n2) agentofchaos: Homeworld B2 R1 G3\n\tagentofchaos: Thanks, you too!\n\n3) dlwillson: B G1 Dlwillson\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) dlwillson: B Y2 Dlwillson\n\n8) agentofchaos: Build Y2 Agentofchaos\n\n9) dlwillson: Discover Y1 Dlwillson G2 Field\n\n10) agentofchaos: Discover Y2 Agentofchaos G3 Galactiphage\n\n11) dlwillson: T Y2 R2 Dlwillson\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) dlwillson: Build R1 Dlwillson\n\n14) agentofchaos: Trade Y2 R2 Agentofchaos\n\n15) dlwillson: Build Y2 Field\n\n16) agentofchaos: Build Y21 Galactiphage\n\n17) dlwillson: D Y2 Field B3 Sky\n\n18) agentofchaos: Build Y3 Agentofchaos\n\n19) dlwillson: B Y3 Field\n\n20) agentofchaos: Trade Y1 B1 Agentofchaos\n\n21) dlwillson: D R1 Dlwillson B2 Sea\n\n22) agentofchaos: M R2 Agentofchaos Galactiphage\n\n23) dlwillson: Move Y1 Field Sky\n\n24) agentofchaos: Move G3 Agentofchaos Sky\n\n25) dlwillson: Trade Y1 G1 Sky\n\n26) agentofchaos: Build R1 Galactiphage\n\n27) dlwillson: B G1 Sky\n\n28) agentofchaos: Sacrifice R2 Galactiphage\nAttack G1 Sky\nAttack G1 Sky\n\n29) dlwillson: T Y2 G2 Sky\nC Sky G\n\n30) agentofchaos: Trade B1 G1 Agentofchaos\n\n31) dlwillson: B R2 Dlwillson\n\tdlwillson: Can we go back to the speed we had at the beginning? I'm really enjoying this game. :-)\n\n32) agentofchaos: Build R2 Galactiphage\n\tagentofchaos: I'm enjoying it too. I'll try to play faster but I do have a lot going on in my life. \n\n33) dlwillson: Move R2 Dlwillson Field\n\n34) agentofchaos: Move R2 Galactiphage Sea\n\n35) dlwillson: B R3 Dlwillson\n\n36) agentofchaos: Build R3 Galactiphage\n\n37) dlwillson: B R3 Field\n\n38) agentofchaos: Attack R1 Sea\n\n39) dlwillson: S Y3 Field\nM R2 Field Galactiphage\nM R2 Dlwillson Field\nM R2 Field Galactiphage\nC Galactiphage R\n\n40) agentofchaos: Trade R1 Y1 Sea\n\n41) dlwillson: B R1 Dlwillson\n\n42) agentofchaos: Build Y1 Agentofchaos\n\n43) dlwillson: M R3 Dlwillson Sea\n\n44) agentofchaos: Sacrifice Y1 Sea\nMove R2 Sea Galactiphage\n\n45) dlwillson: Build G1 Dlwillson\n\n46) agentofchaos: Build Y1 Galactiphage\n\n47) dlwillson: M G1 Dlwillson Sea\n\n48) agentofchaos: Trade G1 B1 Agentofchaos\n\n49) dlwillson: Build R1 Sea\n\n50) agentofchaos: Build R2 Galactiphage\n\n51) dlwillson: Trade R3 Y3 Sea\n\n52) agentofchaos: Discover Y2 Galactiphage G2 Quasarville\n\n53) dlwillson: Build G1 Dlwillson\n\n54) agentofchaos: Trade Y3 G3 Agentofchaos\n\n55) dlwillson: S G3 Dlwillson\nB G1 Sea\nB G2 Sea\nB G3 Dlwillson\n\n56) agentofchaos: Build Y2 Agentofchaos\n\n57) dlwillson: S G3 Dlwillson\nB Y3 Sea\nB R2 Sea\nB G3 Dlwillson\n\n58) agentofchaos: Build Y3 Quasarville\n\n59) dlwillson: S G3 Dlwillson\nB R3 Dlwillson\nB R3 Field\nB G3 Dlwillson\n\n60) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y1 Galactiphage Sea\nMove Y2 Galactiphage Sea\nCatastrophe Sea Y\n\n61) dlwillson: T R3 Y3 Dlwillson\n\tdlwillson: Wow! The bank is looking pretty slim.\n\tagentofchaos: You're not leaving me much!\n\n62) agentofchaos: Build R3 Galactiphage\n\n63) dlwillson: S Y3 Dlwillson\nM G2 Sea Galactiphage\nM R1 Sea Galactiphage\nD R3 Field Y3 Golden\nC Galactiphage R\n\n64) agentofchaos: Trade B1 R1 Agentofchaos\n\n65) dlwillson: S G3 Dlwillson\nB R2 Golden\nB R2 Dlwillson\nB G3 Dlwillson\n\n66) agentofchaos: Move Y3 Quasarville Galactiphage\n\n67) dlwillson: T R2 Y2 Dlwillson\n\n68) agentofchaos: M R1 Agentofchaos Galactiphage\n\n69) dlwillson: S Y2 Dlwillson\nM R2 Golden Agentofchaos\nM R3 Golden Agentofchaos\n\n70) agentofchaos: Attack R3 Agentofchaos\n\n71) dlwillson: S G2 Galactiphage\nB R2 Agentofchaos\nB R3 Sea\nC Agentofchaos R\n\n72) agentofchaos: Build G2 Agentofchaos\n\n73) dlwillson: T R3 Y3 Sea\n\n74) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild Y1 Quasarville\nBuild Y2 Quasarville\n\n75) dlwillson: S Y3 Sea\nM G3 Dlwillson Agentofchaos\nM R3 Field Dlwillson\nM R3 Dlwillson Agentofchaos\n\n76) agentofchaos: Sacrifice R1 Galactiphage\nAttack R3 Agentofchaos\n\n77) dlwillson: Sacrifice R2 Sea\nAttack R3 Agentofchaos\nAttack Y1 Agentofchaos\n\n\tagentofchaos: Good game, well played\n\nHomeworlds Online (SDG# 21982)\nVariants: "No undo"\nStarted: 2012.4.10, Ended: 2012.4.24\nParticipants: ajo (S), rootbier (N)\nWinner: ajo\n\n1) rootbier: Homeworld B1 Y2 G3\n\n2) ajo: Homeworld G3 Y1 B3\n\n3) rootbier: Build G1 Rootbier\n\n4) ajo: Build B1 Ajo\n\n5) rootbier: Trade G1 R1 Rootbier\n\n6) ajo: Discover B1 Ajo G2 Alpha\n\n7) rootbier: Build G1 Rootbier\n\n8) ajo: Build B1 Ajo\n\n9) rootbier: Build G1 Rootbier\n\n10) ajo: Build B2 Alpha\n\n11) rootbier: Discover G1 Rootbier B3 Plague\n\n12) ajo: Trade B2 R2 Alpha\n\n13) rootbier: Build G1 Plague\n\n14) ajo: Build B2 Alpha\n\n15) rootbier: Trade G1 Y1 Plague\n\n16) ajo: Trade B2 Y2 Alpha\n\n17) rootbier: Discover G1 Rootbier B3 Oxix\n\n18) ajo: Build B2 Alpha\n\n19) rootbier: Discover G1 Plague B2 Habl\n\n20) ajo: Build B2 Ajo\n\n21) rootbier: Build G1 Rootbier\n\n22) ajo: Move B2 Ajo Habl\n\n23) rootbier: Sacrifice G3 Rootbier\nBuild G2 Habl\nBuild G2 Oxix\nBuild G3 Rootbier\n\tajo: I think I just screwed up.\n\trootbier: meh. i do it all the time.\r\ndoesn't look unrecoverable.\n\n24) ajo: Sacrifice R2 Alpha\nAttack G2 Habl\nAttack G1 Habl\n\tajo: Oh, I think I'll be all right now. I was momentarily worried that you were going to build your g3 at habl, grab my blue,... I hadn't thought it all through, but I was certainly worried that my role would become totally reactive for several turns. But *now*...\n\n25) rootbier: Sacrifice G3 Rootbier\nBuild R1 Rootbier\nBuild Y1 Plague\nBuild G3 Rootbier\n\trootbier: no. i have a weakness in not ever wanting to leave my home 3-less. it def. limits my trickiness. \n\trootbier: you've def. got the upper hand here. have had.\n\n26) ajo: Trade G2 Y2 Habl\n\tajo: Nobody ever got fired for buying IBM, and nobody ever kicked themselves for keeping a big ship at home in lieu of trickiness.\n\n27) rootbier: Sacrifice Y1 Plague\nMove G2 Oxix Habl\n\trootbier: nobody ever ever? :)\n\n28) ajo: Trade B3 R3 Ajo\n\n29) rootbier: Discover R1 Rootbier B3 Occupyb3\n\n30) ajo: Build R1 Ajo\n\n31) rootbier: Sacrifice G3 Rootbier\nBuild G2 Oxix\nBuild G3 Rootbier\nBuild R2 Occupyb3\n\n32) ajo: Sacrifice R1 Ajo\nAttack G2 Habl\n\n33) rootbier: Trade R1 Y1 Occupyb3\n\n34) ajo: Sacrifice G2 Habl\nBuild Y3 Habl\nBuild Y3 Alpha\n\n35) rootbier: Sacrifice G2 Oxix\nBuild Y3 Occupyb3\nBuild G2 Oxix\n\n36) ajo: Move Y2 Habl Occupyb3\n\n37) rootbier: Sacrifice Y3 Occupyb3\nMove G1 Oxix Alpha\nMove G2 Oxix Alpha\nDiscover G1 Rootbier Y3 Commit\n\n38) ajo: Build B3 Ajo\n\n39) rootbier: Build G2 Alpha\nCatastrophe Alpha G\n\trootbier: oh decisions!\n\n40) ajo: Sacrifice R3 Ajo\nAttack R2 Occupyb3\nAttack Y1 Occupyb3\nPass\n\n41) rootbier: Build G1 Rootbier\n\tajo: I like making my opponent take a tough decision. It usually means both options were terrible for him. :)\n\tajo: Unsolicited advertisement break: Tell all your friends to check out my Kickstarter board game project, which launched this morning! http://kck.st/colossal-cave\n\trootbier: yeah. sorry, but i def. don't appreciate unsolicited advertising.\r\n\r\nprobably if you'd just talked to me. "what kind of games do you like?" "oh yeah, i'm working on a game."\r\nprobably i'd have gotten curious and asked.\n\n42) ajo: Build Y2 Habl\n\tajo: No prob. :)\n\n43) rootbier: Discover Y1 Plague G2 Runh\n\trootbier: let's fix that\r\nmy "sorry, but" was more of an "excuse me, but"\r\ni wasn't apologizing to you\r\n\r\ni'm saying please don't use games with me to advertise at me\n\n44) ajo: Build G2 Habl\n\n45) rootbier: Sacrifice G3 Rootbier\nBuild G2 Commit\nBuild G3 Rootbier\nBuild Y3 Runh\n\n46) ajo: Sacrifice Y2 Habl\nMove Y2 Occupyb3 Rootbier\nMove Y1 Occupyb3 Rootbier\n\n47) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Runh\nBuild R1 Rootbier\nBuild G3 Rootbier\n\n48) ajo: Sacrifice R2 Occupyb3\nAttack R1 Rootbier\nAttack R1 Rootbier\n\n49) rootbier: Discover G2 Commit B2 Pole\n\n50) ajo: Sacrifice B2 Habl\nTrade G1 R1 Habl\nTrade R1 G1 Rootbier\n\n\nHomeworlds Online (SDG# 21994)\nVariants: "Hard time"\nStarted: 2012.4.14, Ended: 2012.4.18\nParticipants: Jesse (S), alihv (N)\nWinner: Jesse\n\n1) alihv: Home B1 G2 Y3\n\n2) Jesse: Homeworld B1 G3 B3 *\n\talihv: Hi, have fun\n\tJesse: Hello, you too.\n\n3) alihv: Build Y1 Alihv\n\n4) Jesse: Build B1 Jesse\n\n5) alihv: Trade Y3 B3 Alihv\n\n6) Jesse: Trade B3 Y3 Jesse\n\n7) alihv: Discover Y1 Alihv G3 Aa\n\n8) Jesse: Build Y1 Jesse\n\n9) alihv: Build Y1 Aa\n\n10) Jesse: Discover Y1 Jesse G2 Slime\n\n11) alihv: Move Y1 Aa Alihv\n\n12) Jesse: Build Y2 Slime\n\n13) alihv: Build Y2 Aa\n\n14) Jesse: Move B1 Jesse Slime\n\n15) alihv: M B3 Alihv Aa\n\n16) Jesse: Build B2 Slime\n\n17) alihv: T B3 R3 Aa\n\n18) Jesse: Trade B2 R2 Slime\n\n19) alihv: Sacrifice Y2 Aa\nMove R3 Aa Slime\nMove R3 Slime Jesse\n\n20) Jesse: Sacrifice R2 Slime\nAttack R3 Jesse\nPass\n\n\talihv: I'm such a newbie... haven't thought of the red sacrifice :) \r\nnice game!\n\tJesse: It's a mistake you'll make, hopefully, just the one time. :) Aways watch out for sacrifices. Their actions can be taken anywhere.\n\nHomeworlds Online (SDG# 21967)\nVariants: "Hard time"\nStarted: 2012.4.14, Ended: 2012.4.28\nParticipants: alihv (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) alihv: Homeworld B1 G3 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\talihv: hi, good luck!\n\n4) alihv: B Y1 Alihv\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) alihv: Discover Y1 Alihv B2 Los\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) alihv: B Y1 Alihv\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) alihv: Build Y2 Alihv\n\tSilentTitan: oh... thank you ... good luck to you as well...\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) alihv: D Y2 Alihv G2 Laos\n\n13) SilentTitan: Discover G1 Silenttitan Y3 Soul\n\n14) alihv: Trade Y1 G1 Los\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) alihv: Build G2 Los\n\n17) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n18) alihv: Sacrifice Y3 Alihv\nMove Y2 Laos Sol\nMove Y2 Sol Silenttitan\nDiscover G2 Los Y3 Laws\nCatastrophe Silenttitan Y\n\n19) SilentTitan: Build G2 Silenttitan\n\n20) alihv: Build Y2 Alihv\n\n21) SilentTitan: Trade G2 Y2 Silenttitan\n\n22) alihv: Move Y1 Alihv Los\n\n23) SilentTitan: Build G2 Silenttitan\n\n24) alihv: B Y2 Los\n\n25) SilentTitan: Build Y3 Silenttitan\n\n26) alihv: S G2 Laws\nB Y3 Alihv\nB G2 Los\n\n27) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Sol Los\nMove Y1 Los Alihv\nDiscover Y1 Sol B2 Sky\n\n28) alihv: Sacrifice Y2 Alihv\nDiscover G2 Los Y3 Less\nMove Y1 Los Soul\n\n29) SilentTitan: Build Y2 Alihv\n\n30) alihv: Trade Y3 G3 Alihv\n\n31) SilentTitan: Trade Y1 B1 Alihv\n\n32) alihv: Trade G1 R1 Los\n\n33) SilentTitan: Sacrifice Y2 Alihv\nMove G1 Soul Sky\nMove G1 Sky Alihv\n\n34) alihv: T G3 R3 Alihv\n\n35) SilentTitan: Sacrifice G2 Silenttitan\nBuild G1 Alihv\nBuild B1 Alihv\n\n36) alihv: Attack G1 Alihv\n\n37) SilentTitan: Build B3 Alihv\nCatastrophe Alihv Blue\n\n38) alihv: S G1 Alihv\nB R1 Alihv\n\n39) SilentTitan: Build G1 Alihv\n\n\talihv: Good game. Thank you for playing.\n\nHomeworlds Online (SDG# 22013)\nVariants: "Hard time"\nStarted: 2012.4.15, Ended: 2012.4.23\nParticipants: sompm (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld B1 Y2 G3\n\tMagicJohn: Have a good game!\n\n2) sompm: Homeworld G3 B2 Y3\n\tsompm: You too!\n\n3) MagicJohn: Build G1 Magicjohn\n\n\nHomeworlds Online (SDG# 22064)\nVariants: "Hard time"\nStarted: 2012.4.23, Ended: 2012.5.10\nParticipants: Aristos (S), MagicJohn (N)\nWinner: Aristos\n\n1) MagicJohn: Homeworld Y2 B1 G3\n\tAristos: Well met. Good luck.\n\tMagicJohn: Live long and prosper!\n\n2) Aristos: Homeworld B3 G2 Y3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) Aristos: Build Y1 Aristos\n\n5) MagicJohn: Discover G1 Magicjohn B3 Firstbase\n\tAristos: Sorry for taking so long on the opening moves... it's been a crazy week at work, and I've been coming home late. \n\tMagicJohn: Not to worry. Life can get a tad complicated from time to time....\n\n6) Aristos: Build Y1 Aristos\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) Aristos: Discover Y1 Aristos Y1 Breakout\n\n9) MagicJohn: Build G1 Firstbase\n\n10) Aristos: Build Y2 Aristos\n\n11) MagicJohn: Trade G1 R1 Magicjohn\n\n12) Aristos: Sacrifice Y1 Aristos\nDiscover Y2 Aristos Y1 Illium\n\n13) MagicJohn: Build G1 Magicjohn\n\n14) Aristos: Build Y2 Aristos\n\n15) MagicJohn: Sacrifice G3 Magicjohn\nBuild G2 Firstbase\nBuild G2 Magicjohn\nBuild G3 Magicjohn\n\n16) Aristos: Build Y3 Aristos\n\n17) MagicJohn: Trade G3 Y3 Magicjohn\n\n18) Aristos: Trade Y2 R2 Aristos\n\n19) MagicJohn: Trade G2 Y2 Firstbase\n\n20) Aristos: Discover Y2 Illium G3 Planum\n\n21) MagicJohn: Move Y3 Magicjohn Planum\n\n22) Aristos: Build Y1 Planum\n\n23) MagicJohn: Sacrifice R1 Magicjohn\nAttack Y2 Planum\n\n24) Aristos: Move Y1 Breakout Planum\nCatastrophe Planum Yellow\n\n25) MagicJohn: Discover G1 Firstbase Y2 Secondbase\n\tAristos: So... we meet again, MagicJohn. I see your ship has thrust itself into my space. Do not think you can sneak past my defenses so easily!\n\tMagicJohn: Why can't we all just get along?????\n\n26) Aristos: Build R1 Aristos\n\tMagicJohn: And ignore minor indiscretions?? \n\n27) MagicJohn: Build G2 Secondbase\n\tAristos: I thought about your request to just get along, and decided you were right. So I flew in to sign a peace treaty, completely forgetting about the physics of catastrophes. My government expresses profound sorrow for your loss. Strangely, both of my ships were piloted by computer... the crew seems to have disembarked early for some reason.\n\n28) Aristos: Sacrifice Y3 Aristos\nDiscover Y3 Aristos R1 Warpath\nDiscover Y3 Warpath R3 Warpath2\nMove Y3 Warpath2 Magicjohn\n\n29) MagicJohn: Move Y2 Firstbase Magicjohn\n\n30) Aristos: Sacrifice R2 Aristos\nAttack G2 Magicjohn\nAttack Y2 Magicjohn\n\n31) MagicJohn: Trade G1 B1 Magicjohn\n\n32) Aristos: Trade Y2 R2 Magicjohn\n\tMagicJohn: First invitation, then visit! There are legitimate reasons for etiquette protocols to be observed. At a bare minimum, the soup will have to be watered down.... It's this kind of behavior that leads to xenophobia and general mistrust between peoples. SHAME, SHAME, SHAME! \n\n33) MagicJohn: Sacrifice G1 Secondbase\nBuild B1 Magicjohn\n\tAristos: I am ashamed. I hope you'll forgive my barbaric manners.\n\tMagicJohn: Can't see any way out of this mess. Guess it's back to primordial ooze for a rebirth in some distant part of the universe. I do, however, get a little stronger after each extinction. Better put on some soup. \r\nP.S. Good game. Thanks for the lesson. MJ\n\n34) Aristos: Sacrifice R2 Magicjohn\nAttack B1 Magicjohn\nAttack B1 Magicjohn\n\n\tAristos: Good game.\n\nHomeworlds Online (SDG# 22005)\nStarted: 2012.4.24, Ended: 2012.5.5\nParticipants: rootbier (S), ts52 (N)\nWinner: rootbier\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) rootbier: Homeworld B1 Y3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) rootbier: Build G1 Rootbier\n\n5) ts52: Trade G1 B1 Ts52\n\n6) rootbier: Discover G1 Rootbier B2 Oxies\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) rootbier: Build G1 Rootbier\n\n9) ts52: Build B1 Kermit\n\n10) rootbier: Build G1 Oxies\n\trootbier: Sorry, I missed your well-wishing below.\r\n\r\nThanks. :)\r\nHave fun!\n\n11) ts52: Build G2 Ts52\n\n12) rootbier: Sacrifice G3 Rootbier\nBuild G2 Rootbier\nBuild G2 Oxies\nBuild G3 Rootbier\n\n13) ts52: Build B2 Kermit\n\n14) rootbier: Trade G2 Y2 Oxies\n\n15) ts52: Trade G2 Y2 Ts52\n\n16) rootbier: Trade G2 R2 Rootbier\n\n17) ts52: Trade B2 R2 Kermit\n\n18) rootbier: Discover G1 Oxies Y3 Comswin\n\n19) ts52: Build G2 Ts52\n\n20) rootbier: Sacrifice G3 Rootbier\nBuild G2 Comswin\nBuild G2 Oxies\nBuild G3 Rootbier\n\n21) ts52: Discover G2 Ts52 B3 Grover\n\n22) rootbier: Sacrifice G3 Rootbier\nBuild Y1 Oxies\nBuild Y1 Oxies\nBuild G3 Rootbier\n\n23) ts52: Move Y2 Ts52 Kermit\n\n24) rootbier: Sacrifice Y2 Oxies\nDiscover Y1 Oxies B3 Plesj\nMove G1 Oxies Plesj\n\n25) ts52: Discover R2 Kermit Y2 Zoe\n\n26) rootbier: Sacrifice G3 Rootbier\nBuild Y2 Oxies\nBuild Y3 Plesj\nBuild G3 Plesj\n\n27) ts52: Build B2 Kermit\n\n28) rootbier: Sacrifice Y3 Plesj\nMove G1 Comswin Ts52\nMove G2 Comswin Ts52\nMove G1 Plesj Ts52\nCatastrophe Ts52 G\n\n\tts52: Thanks for the game. Should've seen that coming.\n\nHomeworlds Online (SDG# 22020)\nVariants: "Hard time"\nStarted: 2012.4.24, Ended: 2012.4.24\nParticipants: SilentTitan (S), rentabuddha (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 22083)\nVariants: "Hard time"\nStarted: 2012.5.1, Ended: 2012.5.6\nParticipants: Krooze (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Krooze: Homeworld G2 B3 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Krooze: Build Y1 Krooze\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Krooze: Discover Y1 Krooze G1 Corneria\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) Krooze: Build Y1 Krooze\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) Krooze: Build Y2 Krooze\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) Krooze: Trade Y1 B1 Krooze\n\n13) SilentTitan: Discover G1 Silenttitan Y3 Soul\n\n14) Krooze: Build B1 Krooze\n\n15) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Sol Corneria\nMove Y1 Corneria Krooze\n\n16) Krooze: Sacrifice B1 Krooze\nTrade Y3 R3 Krooze\n\n17) SilentTitan: Discover Y1 Krooze G1 Sole\n\n18) Krooze: Build B1 Krooze\n\n19) SilentTitan: Build G2 Silenttitan\n\n20) Krooze: Trade B1 R1 Krooze\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Soul\nBuild G3 Silenttitan\nBuild G3 Silenttitan\n\n22) Krooze: Move R1 Krooze Sole\n\n23) SilentTitan: Trade G3 Y3 Silenttitan\n\n24) Krooze: Attack Y1 Sole\n\n25) SilentTitan: Sacrifice G3 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Soul\n\n26) Krooze: Move Y1 Corneria Soul\n\n27) SilentTitan: Sacrifice Y3 Silenttitan\nDiscover G1 Soul Y1 Tic\nDiscover G2 Soul G1 Tac\nDiscover G3 Silenttitan Y3 Toe\n\n28) Krooze: Build Y2 Krooze\n\n29) SilentTitan: Trade G3 Y3 Silenttitan\n\n30) Krooze: Move R1 Sole Soul\n\n31) SilentTitan: Trade G2 R2 Silenttitan\n\n32) Krooze: Move R3 Krooze Tic\n\n33) SilentTitan: Sacrifice G3 Toe\nBuild G2 Soul\nBuild G3 Tic\nBuild G3 Tic\n\n34) Krooze: Attack G3 Tic\n\n35) SilentTitan: Sacrifice R2 Silenttitan\nAttack R3 Tic South\nAttack G3 Tic South\n\n\tKrooze: Ah, so you CAN take a larger ship with a smaller ship's sacrifice. I must have been inputting the command incorrectly when I tried. Really wish the UI was more streamlined.\n\tKrooze: I apologize, but I can't seem to figure this out. What command would I type to sacrifice my r1 to take your g3?\n\tKrooze: Aaaaaah, I think I get it now. You could only attack my r3 because of your g3. This is my first game, as you can tell.\n\tKrooze: Thanks for an educational game. I hope to play you again.\n\tSilentTitan: Actually, you played so well.. that I had no idea this was your first game. Truly that is a raity. had I known this was your first game, I would have given you the option of pulling back the R3 once you failed to do so. \r\n\r\nYou may challenge me again via my standing challenge. That is 90% of the reason it is there \n\tKrooze: Thanks for the kind words! I'll be sure to challenge you again soon. I enjoyed the game a lot.\r\n\r\nMy secret (if you can call it that) is having physical pieces set up at home, so I can rearrange the worlds in a way that makes more sense to me spatially. If I'd been relying solely on the graphic representation here, I would have been lost. Besides, having pieces set up makes a game (any game) feel more "real" to me.\r\n\r\nFor that reason, I'm limited to one game at a time, at least until I get more comfortable with the game. Currently playing against ts52, and I'll hopefully be a more worthy opponent next time we meet.\n\nHomeworlds Online (SDG# 22127)\nVariants: "Hard time"\nStarted: 2012.5.2, Ended: 2012.5.30\nParticipants: ts52 (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\tSilentTitan: thank you and to you as well.\n\n5) SilentTitan: Trade G1 R1 Silenttitan\n\n6) ts52: Trade G3 R3 Ts52\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) ts52: Build R1 Ts52\n\n9) SilentTitan: Trade G1 Y1 Silenttitan\n\n10) ts52: Build R2 Ts52\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) ts52: Discover R2 Ts52 Y2 Zoe\n\n13) SilentTitan: Discover R2 Silenttitan B3 Sol\n\n14) ts52: Trade R3 G3 Ts52\n\n15) SilentTitan: Trade R2 Y2 Sol\n\n16) ts52: Build R2 Ts52\n\n17) SilentTitan: Build G1 Silenttitan\n\n18) ts52: Trade R2 Y2 Ts52\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Sol\n\n20) ts52: Discover Y2 Ts52 G2 Kermit\n\n21) SilentTitan: Move Y3 Sol Kermit\n\n22) ts52: Discover Y2 Kermit G3 Robin\n\n23) SilentTitan: Trade Y3 G3 Silenttitan\n\n24) ts52: Build Y3 Robin\n\n25) SilentTitan: Sacrifice Y2 Sol\nMove Y1 Silenttitan Robin\nMove Y1 Silenttitan Robin\nCatastrophe Robin Yellow\n\n26) ts52: Trade G1 Y1 Ts52\n\n27) SilentTitan: Trade G1 Y1 Silenttitan\n\n28) ts52: Build G1 Ts52\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Kermit\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n30) ts52: Build R2 Ts52\n\n31) SilentTitan: Move Y3 Kermit Ts52\n\n32) ts52: Attack Y3 Ts52\n\n33) SilentTitan: Move Y2 Kermit Ts52\nCatastrophe Ts52 Yellow\n\n34) ts52: Trade R2 Y2 Ts52\n\n35) SilentTitan: Trade Y1 G1 Silenttitan\n\n36) ts52: Build R2 Ts52\n\n37) SilentTitan: Trade R1 G1 Silenttitan\n\n38) ts52: Move G1 Ts52 Zoe\n\n39) SilentTitan: Discover Y2 Silenttitan R3 Rain\n\n40) ts52: Discover R2 Zoe Y3 Bigbird\n\n41) SilentTitan: Trade G1 B1 Silenttitan\n\n42) ts52: Build Y1 Ts52\n\n43) SilentTitan: Sacrifice B1 Silenttitan\nTrade Y2 R2 Rain\n\n44) ts52: Move G1 Zoe Bigbird\n\n45) SilentTitan: Build G1 Silenttitan\n\n46) ts52: Build G2 Bigbird\n\n47) SilentTitan: Trade G1 B1 Silenttitan\n\n48) ts52: Discover R2 Ts52 B2 Gonzo\n\n49) SilentTitan: Build G1 Silenttitan\n\n50) ts52: Sacrifice G2 Bigbird\nBuild R1 Ts52\nBuild R3 Gonzo\n\n51) SilentTitan: Discover G1 Silenttitan B3 Sky\n\n52) ts52: Build R3 Bigbird\n\n53) SilentTitan: Build G2 Silenttitan\n\n54) ts52: Trade R3 G3 Gonzo\n\n55) SilentTitan: Trade G1 B1 Sky\n\n56) ts52: Build R3 Gonzo\n\n57) SilentTitan: Trade G1 B1 Silenttitan\n\n58) ts52: Sacrifice Y1 Ts52\nMove R3 Gonzo Sky\n\n59) SilentTitan: Sacrifice Y3 Silenttitan\nMove B1 Silenttitan Ts52\nMove B1 Silenttitan Ts52\nDiscover B1 Sky Y2 Sol\n\n60) ts52: Sacrifice R2 Bigbird\nAttack B1 Ts52\nAttack B1 Ts52\n\n61) SilentTitan: Move B1 Sol Ts52\nCatastrophe Ts52 Blue\n\n\tts52: Thanks for the game!\n\tSilentTitan: Thank you.\n\nHomeworlds Online (SDG# 22114)\nStarted: 2012.5.6, Ended: 2012.5.10\nParticipants: Krooze (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Krooze: Homeworld B3 Y1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tKrooze: Thanks!\n\n4) Krooze: Build G1 Krooze\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Krooze: Build G1 Krooze\n\n7) ts52: Build Y2 Ts52\n\n8) Krooze: Trade G1 R1 Krooze\n\tKrooze: *slaps forehead*\n\n9) ts52: Trade Y2 R2 Ts52\n\n10) Krooze: Trade G1 B1 Krooze\n\n11) ts52: Build Y2 Ts52\n\n12) Krooze: Build B1 Krooze\n\n13) ts52: Trade Y2 B2 Ts52\n\n14) Krooze: Discover B1 Krooze B2 Colle\n\n15) ts52: Discover B2 Ts52 G3 Kermit\n\n16) Krooze: Sacrifice G3 Krooze\nBuild B1 Colle\nBuild B3 Krooze\nBuild R1 Krooze\n\n17) ts52: Build B3 Kermit\n\n18) Krooze:\nTrade B1 R1 Colle\n\n19) ts52: Move Y1 Ts52 Kermit\n\n20) Krooze: Trade B3 G3 Krooze\n\n21) ts52: Build Y2 Kermit\n\n22) Krooze: Trade B1 G1 Colle\n\n23) ts52: Move Y2 Kermit Colle\n\n24) Krooze: Build R2 Colle\n\n25) ts52: Sacrifice R2 Ts52\nAttack R2 Colle\nAttack R1 Colle\n\n26) Krooze: Move R1 Krooze Colle\n\n27) ts52: Sacrifice R2 Colle\nAttack R1 Colle\nAttack G1 Colle\n\n28) Krooze: Build R2 Krooze\n\n29) ts52: Build Y2 Kermit\n\n30) Krooze: Trade R2 Y2 Krooze\n\n31) ts52: Build Y3 Colle\n\n32) Krooze: Sacrifice Y2 Krooze\nMove R1 Krooze Colle\nMove R1 Colle Kermit\n\n33) ts52: Sacrifice R1 Colle\nAttack R1 Kermit\n\n34) Krooze: Build G1 Krooze\n\n35) ts52: Move Y3 Colle Krooze\n\n36) Krooze: Trade G1 R1 Krooze\n\n37) ts52: Sacrifice R1 Kermit\nAttack R1 Krooze\n\n\tKrooze: Good game! Thanks for the lesson!\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 22158)\nVariants: "Hard time"\nStarted: 2012.5.10, Ended: 2012.6.12\nParticipants: Aristos (S), goulo (N)\nWinner: Aristos\n\n1) goulo: Homeworld G3 B2 Y3\n\n2) Aristos: Homeworld G1 B2 Y3\n\tgoulo: hi, have fun!\n\n3) goulo: Build Y1 Goulo\n\tAristos: Well met.\n\n4) Aristos: Build Y1 Aristos\n\n5) goulo: Trade Y1 G1 Goulo\n\n6) Aristos: Trade Y1 G1 Aristos\n\n7) goulo: Build G2 Goulo\n\n8) Aristos: Discover G1 Aristos Y3 Freedom\n\n9) goulo: Discover G2 Goulo Y1 Citroneto\n\n10) Aristos: Build Y1 Aristos\n\n11) goulo: Trade G1 R1 Goulo\n\n12) Aristos: Trade Y1 R1 Aristos\n\n13) goulo: Build Y1 Goulo\n\n14) Aristos: Build G1 Freedom\n\n15) goulo: Build G2 Citroneto\n\n16) Aristos: Discover G1 Freedom B1 Change\n\n17) goulo: Move G2 Citroneto Freedom\n\n18) Aristos: Build G2 Change\n\n19) goulo: Build G3 Citroneto\n\n20) Aristos: Build G3 Freedom\n\n21) goulo: Sacrifice G2 Citroneto\nBuild G2 Freedom\nBuild R1 Goulo\nCatastrophe Freedom G\n\n22) Aristos: Build R2 Aristos\n\n23) goulo: Move R1 Goulo Citroneto\n\n24) Aristos: Discover R2 Aristos Y3 Transport\n\n25) goulo: Build R2 Citroneto\n\n26) Aristos: Build Y1 Aristos\n\n27) goulo: Trade Y1 B1 Goulo\n\n28) Aristos: Discover Y1 Aristos G3 Multiplier\n\n29) goulo: Move R2 Citroneto Multiplier\n\n30) Aristos: Move Y1 Multiplier Change\n\n31) goulo: Sacrifice G3 Citroneto\nBuild R2 Goulo\nBuild R3 Multiplier\nBuild R3 Citroneto\n\n32) Aristos: Sacrifice G1 Change\nBuild R3 Transport\n\n33) goulo: Sacrifice Y3 Goulo\nMove R1 Goulo Citroneto\nMove R1 Citroneto Transport\nMove R1 Citroneto Transport\nCatastrophe Transport R\n\n34) Aristos: Build G1 Change\n\n35) goulo: Trade R2 Y2 Goulo\n\n36) Aristos: Trade G1 B1 Change\n\n37) goulo: Move R3 Citroneto Goulo\n\n38) Aristos: Build R1 Aristos\n\n39) goulo: Build Y1 Goulo\n\n40) Aristos: Build G1 Change\n\n41) goulo: Discover Y1 Goulo R1 Rubeneto\n\tAristos: No way out. Good game.\n\n42) Aristos: Move R1 Aristos Multiplier\n\tgoulo: Thanks, though it's being tricky to actually close the deal! :)\n\n43) goulo: Sacrifice Y1 Rubeneto\nMove R3 Multiplier Change\n\n44) Aristos: Sacrifice G2 Change\nBuild B2 Change\nBuild R1 Multiplier\n\n45) goulo: Sacrifice Y2 Goulo\nMove B1 Goulo Change\nDiscover R3 Change Y3 Citronego\nCatastrophe Change B\n\n46) Aristos: Build Y1 Aristos\n\n47) goulo: Build R2 Goulo\n\n48) Aristos: Build R2 Aristos\n\n49) goulo: Trade R2 G2 Goulo\n\n50) Aristos: Build Y1 Aristos\n\n51) goulo: Build G1 Goulo\n\n52) Aristos: Sacrifice Y1 Aristos\nDiscover R1 Multiplier Y1 Escape\n\n53) goulo: Trade G2 Y2 Goulo\n\n54) Aristos: Build R2 Multiplier\n\n55) goulo: Build R3 Goulo\n\n56) Aristos: Attack R2 Multiplier\n\n57) goulo: Sacrifice Y2 Goulo\nMove R3 Goulo Escape\nMove R3 Escape Multiplier\nCatastrophe Multiplier R\n\n58) Aristos: Build Y1 Aristos\n\n59) goulo: Trade R3 Y3 Goulo\n\n60) Aristos: Discover Y1 Aristos G3 Spawn\n\n61) goulo: Build Y2 Goulo\n\n62) Aristos: Build Y2 Spawn\n\n63) goulo: Discover Y2 Goulo G1 Smeraldeto\n\n64) Aristos: Move Y2 Spawn Smeraldeto\n\n65) goulo: Move Y2 Smeraldeto Spawn\n\n66) Aristos: Build Y2 Smeraldeto\n\n67) goulo: Build G2 Goulo\n\tAristos: I see you're trying a new security measure: I can't invade what I cannot spell!\n\n68) Aristos: Move Y2 Smeraldeto Goulo\n\tgoulo: Haha! :) I pretty much always use Esperanto star names. :)\n\n69) goulo: Sacrifice R3 Citronego\nAttack Y1 Spawn\nAttack Y2 Goulo\nPass\n\n70) Aristos: Build Y3 Smeraldeto\n\n71) goulo: Trade Y2 R2 Goulo\n\n72) Aristos: Discover Y1 Aristos B3 Morph\n\n73) goulo: Discover Y1 Spawn B1 Safireto\n\n74) Aristos: Build Y2 Aristos\n\tAristos: I do wish this had a way to "show me what the board would look like if I made move X" without actually making the move. I am too visual sometimes to judge the right move without actually seeing it. \n\n75) goulo: Move G1 Goulo Safireto\n\n76) Aristos: Sacrifice Y2 Smeraldeto\nMove Y2 Aristos Spawn\nMove Y2 Spawn Safireto\n\n77) goulo: Build Y2 Spawn\n\n78) Aristos: Sacrifice R2 Aristos\nAttack G1 Safireto\nAttack Y1 Safireto\n\n79) goulo: Move G2 Goulo Escape\n\n80) Aristos: Build G2 Safireto\n\n81) goulo: Build R1 Goulo\n\n82) Aristos: Build R2 Aristos\n\n83) goulo: Sacrifice R1 Goulo\nAttack R1 Escape\n\n84) Aristos: Discover Y1 Morph B1 Shift\n\n85) goulo: Build R1 Goulo\n\n86) Aristos: Move Y3 Smeraldeto Spawn\n\n87) goulo: Sacrifice Y2 Spawn\nDiscover Y2 Spawn R2 Rubeno\nDiscover R1 Goulo B1 Mirteleto\n\n88) Aristos: Trade Y1 G1 Shift\n\n89) goulo: Sacrifice G2 Escape\nBuild R3 Goulo\nBuild R3 Mirteleto\n\n90) Aristos: Build G2 Shift\n\n91) goulo: Move R3 Goulo Safireto\n\n92) Aristos: Sacrifice Y2 Safireto\nMove G2 Safireto Goulo\nMove G1 Safireto Goulo\n\n93) goulo: Attack G2 Goulo\n\n94) Aristos: Build G2 Goulo\nCatastrophe Goulo Green\n\n95) goulo: Attack Y1 Safireto\n\n96) Aristos: Trade G2 B2 Shift\n\n97) goulo: Trade R3 B3 Safireto\n\n98) Aristos: Build B3 Shift\n\n99) goulo: Sacrifice Y2 Rubeno\nMove B3 Safireto Goulo\nMove B3 Goulo Shift\nCatastrophe Shift B\n\n100) Aristos: Build R2 Aristos\n\n101) goulo: Discover R1 Escape G3 Smeraldego\n\n102) Aristos: Move R2 Aristos Smeraldego\n\n103) goulo: Build R3 Smeraldego\n\n104) Aristos: Build R3 Smeraldego\nCatastrophe Smeraldego Red\n\n105) goulo: Discover Y1 Safireto G3 Smeraldego\n\n106) Aristos: Move R2 Aristos Smeraldego\n\n107) goulo: Move Y1 Smeraldego Mirteleto\n\n108) Aristos: Build Y1 Spawn\n\n109) goulo: Trade R1 G1 Mirteleto\n\n110) Aristos: Discover Y1 Spawn B1 Metasticize\n\n111) goulo: Move R3 Mirteleto Smeraldego\n\n112) Aristos: Build R1 Smeraldego\n\n113) goulo: Sacrifice Y1 Mirteleto\nMove R3 Smeraldego Mirteleto\n\n114) Aristos: Trade Y1 G1 Metasticize\n\n115) goulo: Build G2 Mirteleto\n\tgoulo: blue, green... all the same thing...! :)\n\n116) Aristos: Build G2 Metasticize\n\tAristos: Really? All the same thing? Excellent... that will make causing a catastrophe in Mirteleto much easier! :-) \n\n117) goulo: Trade G1 Y1 Mirteleto\n\n118) Aristos: Trade G1 B1 Metasticize\n\n119) goulo: Build G1 Mirteleto\n\tgoulo: well that last couple of moves didn't work out the way I wanted, duh...\n\tAristos: If it's any consolation, I have no idea how to press my advantage. My ships are all the wrong colors in all the wrong places.\n\n120) Aristos: Build B2 Metasticize\n\n121) goulo: Trade G2 Y2 Mirteleto\n\tgoulo: It often feels that way in Homeworlds!\n\n122) Aristos: Build Y1 Aristos\n\n123) goulo: Discover Y1 Mirteleto G3 Jadego\n\n124) Aristos: Sacrifice Y1 Aristos\nDiscover B2 Metasticize R3 Blood\n\n125) goulo: Move R3 Mirteleto Blood\n\n126) Aristos: Sacrifice B2 Blood\nTrade R2 B2 Smeraldego\nTrade Y3 B3 Spawn\n\n127) goulo: Build Y1 Mirteleto\n\n128) Aristos: Sacrifice Y3 Aristos\nMove B1 Metasticize Goulo\nMove B2 Smeraldego Goulo\nMove B3 Spawn Goulo\nCatastrophe Goulo Blue\n\n\tgoulo: and so the end is near... well done!\n\tAristos: Thanks. An excellent game.\n\nHomeworlds Online (SDG# 22165)\nVariants: "Hard time"\nStarted: 2012.5.11, Ended: 2012.6.3\nParticipants: TwoShort (S), dlwillson (N)\nWinner: TwoShort\n\n1) dlwillson: Homeworld B3 Y1 G3 Dlwillson\n\n2) TwoShort: Homeworld R1 B2 G3\n\tdlwillson: Long time, no play. How've you been?\n\n3) dlwillson: B G1 Dlwillson\n\n4) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy. I've been well, you?\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\tdlwillson: Pretty good. Got a better job. Got married. Ran pyramids at the last 3 or 4 cons by DGA. Do you ever make it to Genghis or Tacticon?\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) TwoShort: Build Y2 Twoshort\n\tdlwillson: Let's keep playing really fast and chatting a lot. You don't need to worry about this game. I'm easy to beat. :-)\n\n9) dlwillson: D Y1 Dlwillson B2 Sky\n\tTwoShort: I basically never make it to cons. I've thought about coming down when you've mentioned it on the icehouse list, but it hasn't worked out so far. Glad to hear life is treating you well.\n\n10) TwoShort: Discover Y1 Twoshort B3 Borbor\n\n11) dlwillson: B G1 Dlwillson\n\tdlwillson: Pretty funny. I ~ just ~ said let's play fast, and then I delay the game 3 hours... :-)\n\n12) TwoShort: Build G1 Twoshort\n\n13) dlwillson: T G1 R1 Dlwillson\n\n14) TwoShort: Build Y2 Twoshort\n\n15) dlwillson: D Y2 Dlwillson G2 Field\n\n16) TwoShort: Trade Y2 R2 Twoshort\n\n17) dlwillson: B G1 Dlwillson\n\n18) TwoShort: Discover G1 Twoshort Y3 Yoyodyne\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Dlwillson\nBuild Y2 Field\nBuild Y3 Sky\n\n20) TwoShort: Build G2 Twoshort\n\tdlwillson: Sorry for the delay, Twoshort. You're a dangerous man, and this board is interesting. I'm going to set up some plastic before I take my turn. I wonder when there will be a better Homeworlds computer program...\n\tdlwillson: Well, Heck, real life is too busy for the setting up of pointy plastic pyramids. Instead, it's a all pointy priorities. Pfah...\n\tdlwillson: I have a terribly risky move that I want to do, just to see what happens. I'd rather have looked it over in 3D first, but oh well. Let's see how this pans out. Worst case, I'll get to have a game with Tripp before I play you again. Best case, I get a lead and maybe win.\n\n21) dlwillson: T Y1 R1 Sky\n\n22) TwoShort: Sacrifice G2 Twoshort\nBuild Y1 Twoshort\nBuild Y3 Borbor\n\n23) dlwillson: Build R2 Dlwillson\n\n24) TwoShort: Sacrifice Y2 Twoshort\nMove Y3 Borbor Sky\nMove Y3 Sky Dlwillson\n\n\tdlwillson: Excellent move! Give me a minute to see if I can slip out of the noose.\n\tTwoShort: I tend to be wrong when I comment on games, but: I think you can make me take 4 more moves.\n\tdlwillson: Good game. I'll give everyone else a day or three to challenge before I try again.\n\nHomeworlds Online (SDG# 22194)\nVariants: "Hard time"\nStarted: 2012.5.15, Ended: 2012.5.31\nParticipants: ajo (S), Gidaio (N)\nWinner: ajo\n\n1) Gidaio: Homeworld G1 B3 Y3\n\n2) ajo: Homeworld R3 B2 G3\n\n3) Gidaio: Build Y1 Gidaio\n\n4) ajo: Build G1 Ajo\n\n5) Gidaio: Trade Y1 B1 Gidaio\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) Gidaio: Discover B1 Gidaio G2 Pandora\n\n8) ajo: Build G1 Ajo\n\n9) Gidaio: Build B1 Pandora\n\n10) ajo: Build G1 Ajo\n\n11) Gidaio: Trade B1 R1 Pandora\n\n12) ajo: Discover G1 Ajo Y1 Alpha\n\n13) Gidaio: Build B1 Pandora\n\n14) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Ajo\n\n15) Gidaio: Trade B1 Y1 Pandora\n\n16) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Ajo\nBuild Y2 Ajo\n\n17) Gidaio: Build B1 Pandora\n\tGidaio: Is it terribly obvious that I don't really have a strategy?\n\n18) ajo: Move G2 Alpha Pandora\n\tajo: Heh. Not having a strategy is okay, but you need to recognize *my* strategy and do something to counteract it. Right now you're letting me have the run of the board, which is not going to go well for you. :)\n\tajo: Actually, even without a strategy, "build y2 Gidaio" would have been markedly better for you than "build b1 Pandora". When in doubt, go for material.\n\n19) Gidaio: Move R1 Pandora Alpha\n\tGidaio: Well, see, with "build y2 Gidaio" you could have factoried a bunch of yellows, then sacrificed them and moved a bunch of greens into my homeworld, then triggered a catastrophe. This game has been going bad for me from the start.\n\n20) ajo: Trade G3 R3 Ajo\n\n21) Gidaio: Attack G1S Alpha\n\n22) ajo: Sacrifice R3 Ajo\nAttack R1 Alpha\nAttack B1 Pandora\nAttack B1 Pandora\n\n23) Gidaio: Build Y2 Gidaio\n\tGidaio: I always forget that people can do that!\n\n24) ajo: Attack G1 Alpha\n\n25) Gidaio: Trade Y3 G3 Gidaio\n\n26) ajo: Sacrifice R1 Alpha\nAttack Y1 Pandora\n\n27) Gidaio: Trade Y2 R2 Gidaio\n\n28) ajo: Build G3 Pandora\n\n29) Gidaio: Build R1 Gidaio\n\n30) ajo: Trade G3 R3 Pandora\n\n31) Gidaio: Trade R2 Y2 Gidaio\n\n32) ajo: Sacrifice Y2 Ajo\nMove B1 Pandora Gidaio\nMove G2 Pandora Gidaio\n\n33) Gidaio: Attack G2S Gidaio\n\n34) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B1 Gidaio\nBuild B2 Gidaio\nCatastrophe Gidaio Blue\n\tGidaio: More than likely, I'm going to lose...\n\n\tGidaio: Wait, was it my turn?\n\tajo: Heh. Apparently so?\n\nHomeworlds Online (SDG# 22139)\nStarted: 2012.5.23, Ended: 2012.7.11\nParticipants: Werebear (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\tWerebear: Hullo, mind if I play?\n\n2) Werebear: Homeworld G3 B2 Y3\n\tts52: Not at all, have a good game!\n\n3) ts52: Build G1 Ts52\n\tWerebear: Thanks, you too. I'll see what I can figure out, here... how does that there widget work? Oh. Yeah.\n\tWerebear: Oh, and... We Come In Peace. (playing WCIP music to soothe the audiences)\n\n4) Werebear: Build Y1 Werebear\n\tts52: Widget, what widget?\n\n5) ts52: Trade G1 Y1 Ts52\n\tWerebear: The one over... oh... your people don't have a widget. Hmmm. Perhaps you need some?\n\n6) Werebear: Trade Y1 R1 Werebear\n\n7) ts52: Build G1 Ts52\n\tts52: What's this weapons technology you appear to be developing over there, hmmmm? What happened to WCIP?\n\n8) Werebear: Discover R1 Werebear G1 Widget\n\tWerebear: I dunno. That's what happened when I twiddled the widget. Too bad you don't have one. Oh. Wait. Why is my pretty little shipster disappearing?\n\n9) ts52: Trade G1 R1 Ts52\n\n10) Werebear: Build Y1 Werebear\n\tts52: Oooooh, you mean _that_ widget.\n\n11) ts52: Discover Y1 Ts52 B3 Grover\n\n12) Werebear: Build Y2 Werebear\n\n13) ts52: Build G1 Ts52\n\tWerebear: Welcome to the Universe! We got here first, though, so you'll have to pay us the standard fees. Just stuff some gorleks in an envelope and send it over to us. Thanks!\n\n14) Werebear: Move Y2 Werebear Widget\n\tts52: You keep to your systems and we'll keep to ours. No gorlek exchange necessary.\n\n15) ts52: Sacrifice G1 Ts52\nBuild Y2 Grover\n\tWerebear: Does that mean you don't want us to come visit you? We hear that grover is just loverly this time of year... what with the Pernicious Snids and all.\n\n16) Werebear: Trade Y1 B1 Werebear\n\n17) ts52: Trade Y1 G1 Grover\n\n18) Werebear: Build Y1 Werebear\n\n19) ts52: Build G1 Ts52\n\n20) Werebear: Move B1 Werebear Widget\n\n21) ts52: Build G2 Grover\n\n22) Werebear: Trade Y2 G2 Widget\n\n23) ts52: Trade G2 R2 Grover\n\n24) Werebear: Move Y1 Werebear Widget\n\n25) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Grover\nBuild G3 Ts52\n\tWerebear: We apologize for our delays. It is Festival time on Widget, so everybody is partying nonstop.\n\n26) Werebear: Discover G2 Widget Y3 Security\n\n27) ts52: Trade G3 R3 Ts52\n\n28) Werebear: Build G3 Security\n\n29) ts52: Sacrifice Y2 Grover\nMove G1 Ts52 Security\nMove G2 Ts52 Security\nCatastrophe Security Green\n\n30) Werebear: Build Y1 Werebear\n\tWerebear: Wow! What just happened?\n\n31) ts52: Trade G2 Y2 Grover\n\n32) Werebear: Build Y2 Widget\n\tts52: Some sort of catastrophic system failure in the security system.\n\n33) ts52: Build G1 Grover\n\n34) Werebear: Discover Y1 Widget G2 Winkle\n\n35) ts52: Build G2 Grover\n\n36) Werebear: Build B1 Widget\n\n37) ts52: Move G1 Grover Ts52\n\n38) Werebear: Move B1 Widget Winkle\n\n39) ts52: Build G2 Ts52\n\tWerebear: Sorry (again). I was traveling and meant to submit orders, but somehow never found the time. I'm back for a bit! Game on!\n\tts52: No problem.\n\n40) Werebear: Build B1 Widget\n\n41) ts52: Build G3 Ts52\n\n42) Werebear: Build B2 Winkle\n\n43) ts52: Build G3 Grover\n\n44) Werebear: Build B3 Widget\n\n45) ts52: Move G3 Grover Winkle\n\n46) Werebear: Discover B2 Winkle Y3 Wecurity\n\n47) ts52: Sacrifice R2 Grover\nAttack B1 Winkle\nAttack Y1 Winkle\n\n48) Werebear: Trade B3 R3 Widget\n\n49) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Winkle\nBuild Y3 Grover\n\n50) Werebear: Move B1 Widget Wecurity\n\n51) ts52: Move R3 Ts52 Wecurity\n\n52) Werebear: Build B3 Widget\n\n53) ts52: Attack B2 Wecurity\n\n54) Werebear: Discover B3 Widget R3 Wonder\n\n55) ts52: Build B3 Winkle\n\n56) Werebear: Sacrifice Y2 Widget\nMove B1 Wecurity Winkle\nMove B1 Widget Winkle\nCatastrophe Winkle B\n\n57) ts52: Discover Y2 Grover B1 Gonzo\n\n58) Werebear: Trade Y1 R1 Werebear\n\n59) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Gonzo\nBuild Y2 Gonzo\n\n60) Werebear: Build R2 Werebear\n\n61) ts52: Sacrifice Y3 Grover\nMove Y1 Gonzo Werebear\nMove Y2 Gonzo Werebear\nMove Y2 Gonzo Werebear\nCatastrophe Werebear Yellow\n\n62) Werebear: Trade R1 Y1 Werebear\n\n63) ts52: Sacrifice Y2 Winkle\nMove G3 Winkle Widget\nMove G3 Widget Werebear\n\n64) Werebear: Sacrifice Y1 Werebear\nMove B3 Wonder Ts52\n\tWerebear: sacrifice y1\r\nmove r3 Widget ts52\n\n65) ts52: Sacrifice R1 Ts52\nAttack R2 Werebear\n\tWerebear: At last, we meet!\r\nGood game - you locked me out of green quite nicely!\r\nIt was nice playing with you!\n\tts52: Thank you for the game good sir. It was fun playing against you again. Now that I finally remember who you are, I hope everything is going well with you, and look forward to our next match. :)\n\n\nHomeworlds Online (SDG# 22248)\nVariants: "Hard time"\nStarted: 2012.5.26, Ended: 2012.6.21\nParticipants: MagicJohn (S), Subhan64 (N)\nWinner: MagicJohn\n\n1) Subhan64: Pass\n\n2) MagicJohn: Pass\n\n3) Subhan64: Pass\n\n4) MagicJohn: Homeworld R1 B2 G3\n\n5) Subhan64: Homeworld R1 B3 G3\n\n6) MagicJohn: Build G1 Magicjohn\n\n7) Subhan64: Build G1 Subhan64\n\n8) MagicJohn: Trade G1 Y1 Magicjohn\n\n9) Subhan64: Trade G1 Y1 Subhan64\n\n10) MagicJohn: Build G1 Magicjohn\n\n11) Subhan64: Build G1 Subhan64\n\n12) MagicJohn: Trade G1 B1 Magicjohn\n\n13) Subhan64: Build G1 Subhan64\n\n14) MagicJohn: Build B1 Magicjohn\n\n15) Subhan64: Discover G1 Subhan64 B2 Kermit\n\n16) MagicJohn: Discover B1 Magicjohn G3 Never\n\n\nHomeworlds Online (SDG# 22239)\nStarted: 2012.5.31, Ended: 2012.7.3\nParticipants: agentofchaos (S), ts52 (N)\nWinner: agentofchaos\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) agentofchaos: Homeworld R3 B2 G3\n\tts52: Have a good game!\n\tagentofchaos: You too!\n\n3) ts52: Build G1 Ts52\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) ts52: Build G1 Ts52\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) ts52: Trade G1 R1 Ts52\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) ts52: Build G1 Ts52\n\n12) agentofchaos: Discover Y2 Agentofchaos B1 Woodhaven\n\n13) ts52: Build G1 Gonzo\n\n14) agentofchaos: Build G2 Agentofchaos\n\n15) ts52: Build G2 Gonzo\n\n16) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Woodhaven\nBuild Y2 Agentofchaos\n\n17) ts52: Build G2 Ts52\n\n18) agentofchaos: Build G2 Agentofchaos\n\n19) ts52: Trade G3 Y3 Ts52\n\n20) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Woodhaven\nBuild G3 Agentofchaos\nBuild G3 Agentofchaos\n\n21) ts52: Discover G2 Ts52 Y3 Bigbird\n\n22) agentofchaos: Trade G2 R2 Agentofchaos\n\n23) ts52: Build R1 Ts52\n\n24) agentofchaos: M Y3 Woodhaven Gonzo\n\n25) ts52: Trade R1 B1 Ts52\n\n26) agentofchaos: Move R2 Agentofchaos Woodhaven\n\n27) ts52: Trade Y3 G3 Ts52\n\n28) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Woodhaven\nBuild G2 Agentofchaos\nBuild G3 Agentofchaos\n\n29) ts52: Move B1 Ts52 Bigbird\n\n30) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R1 Woodhaven\nBuild R1 Woodhaven\nBuild G3 Agentofchaos\n\n31) ts52: Build R2 Ts52\n\n32) agentofchaos: Sacrifice R2 Woodhaven\nAttack G2 Gonzo\nAttack G1 Gonzo\n\n33) ts52: Move R1 Ts52 Bigbird\n\n34) agentofchaos: Sacrifice Y2 Woodhaven\nMove G2 Gonzo Ts52\nMove G1 Gonzo Ts52\nCatastrophe Ts52 G\n\n35) ts52: Sacrifice G2 Bigbird\nBuild R2 Ts52\nBuild R2 Bigbird\n\n36) agentofchaos: Sacrifice R1 Woodhaven\nAttack G1 Gonzo\n\n37) ts52: Trade R2 G2 Ts52\n\n38) agentofchaos: T G3 R3 Agentofchaos\n\n39) ts52: Discover R2 Bigbird B1 Grover\n\n40) agentofchaos: Move Y3 Gonzo Ts52\n\n41) ts52: Build G1 Ts52\n\n42) agentofchaos: Sacrifice R3 Agentofchaos\nAttack G2 Ts52\nAttack G1 Ts52\nAttack R2 Ts52\n\n\tagentofchaos: Thanks for a great game :-)\n\tts52: Thank you! Excellent game.\n\nHomeworlds Online (SDG# 22281)\nVariants: "Hard time"\nStarted: 2012.5.31, Ended: 2012.9.2\nParticipants: SilentTitan (S), agentofchaos (N)\nWinner: SilentTitan\n\n1) agentofchaos: H B1 R2 G3\n\tSilentTitan: ..... and away we go.......\n\n2) SilentTitan: Homeworld G2 Y1 B3\n\tagentofchaos: Have fun!\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) SilentTitan: Build B1 Silenttitan\n\n5) agentofchaos: B G1 Agentofchaos\n\n6) SilentTitan: Build B1 Silenttitan\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) SilentTitan: Discover B1 Silenttitan G3 Sol\n\n9) agentofchaos: Build Y1 Agentofchaos\n\n10) SilentTitan: Build B2 Sol\n\n11) agentofchaos: Build Y2 Agentofchaos\n\n12) SilentTitan: Trade B3 G3 Silenttitan\n\n13) agentofchaos: Trade Y2 R2 Agentofchaos\n\n14) SilentTitan: Trade B2 Y2 Sol\n\n15) agentofchaos: Move R2 Agentofchaos Sol\n\n16) SilentTitan: Sacrifice Y2 Sol\nMove B1 Sol Silenttitan\nDiscover B1 Silenttitan Y3 Soul\n\n17) agentofchaos: Build Y2 Agentofchaos\n\n18) SilentTitan: Trade G3 R3 Silenttitan\n\n19) agentofchaos: Build R1 Sol\n\n20) SilentTitan: Build B2 Silenttitan\n\n21) agentofchaos: Move Y2 Agentofchaos Soul\n\n22) SilentTitan: Build B2 Silenttitan\n\n23) agentofchaos: Sacrifice R1 Sol\nAttack B1 Soul\n\n24) SilentTitan: Trade B2 R2 Silenttitan\n\n25) agentofchaos: Build R1 Sol\n\n26) SilentTitan: Move R3 Silenttitan Soul\n\n27) agentofchaos: Sacrifice Y2 Soul\nMove R2 Sol Silenttitan\nMove R1 Sol Silenttitan\n\n28) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 Silenttitan North\nAttack R1 Silenttitan North\n\n29) agentofchaos: Move B1 Soul Agentofchaos\n\n30) SilentTitan: Trade B2 Y2 Silenttitan\n\tdlwillson: Agent, when this game is over, forward a copy of the game log to me at DLWillson@TheGeek.NU. I want to ask you a question.\n\n31) agentofchaos: Build Y2 Agentofchaos\n\n32) SilentTitan: Discover R2 Silenttitan Y3 Sol\n\n33) agentofchaos: Build B2 Agentofchaos\n\n34) SilentTitan: Build B2 Silenttitan\n\n35) agentofchaos: Discover Y2 Agentofchaos B3 Dreadthought\n\n36) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Silenttitan Sol\nMove B1 Sol Agentofchaos\nCatastrophe Agentofchaos Blue\n\n37) agentofchaos: Build Y2 Agentofchaos\n\n38) SilentTitan: Build B1 Silenttitan\n\n39) agentofchaos: Build G1 Agentofchaos\n\n40) SilentTitan: Trade B2 Y2 Silenttitan\n\n41) agentofchaos: Sacrifice G1 Agentofchaos\nBuild Y3 Dreadthought\n\n42) SilentTitan: Move R3 Soul Silenttitan\n\n43) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Dreadthought Silenttitan\nMove Y3 Dreadthought Silenttitan\nCatastrophe Silenttitan Y\n\n44) SilentTitan: Trade R3 Y3 Silenttitan\n\n\nHomeworlds Online (SDG# 22287)\nVariants: "Hard time"\nStarted: 2012.5.31, Ended: 2012.6.13\nParticipants: ajo (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B1 R2 G3\n\n2) ajo: Homeworld B3 R1 G3\n\n3) mneme: Build G1 Mneme\n\n4) ajo: Build G1 Ajo\n\n5) mneme: Trade G1 B1 Mneme\n\n6) ajo: Trade G1 B1 Ajo\n\n7) mneme: Build B2 Mneme\n\n8) ajo: Build B2 Ajo\n\tmneme: I have a comment to make about move 4. But I'll save it; ask me after the game if you're curious?\n\n9) mneme: Trade B2 Y2 Mneme\n\tajo: Tease. :) My reasoning is: I'll come along with you for the blue feast, and then hope to gain the edge later when we both have tons of ships.\n\n10) ajo: Trade B2 Y2 Ajo\n\tmneme: :) To be fair, I've played a lot of variations of this opening.\r\n\n\n11) mneme: Build B2 Mneme\n\n12) ajo: Build B2 Ajo\n\n13) mneme: Discover B2 Mneme G3 Emerald\n\n14) ajo: Discover B1 Ajo G2 Alpha\n\n15) mneme: Build Y1 Mneme\n\n16) ajo: Build G1 Ajo\n\n17) mneme: Build Y1 Mneme\n\n18) ajo: Build Y1 Ajo\n\n19) mneme: Move Y1 Mneme Emerald\n\n20) ajo: Move Y2 Ajo Alpha\n\tajo: Pretty soon here I'll have to pause and set up my Icehouse pieces. Normally I have them next to me when I'm playing. :)\n\n21) mneme: Trade Y1 R1 Mneme\n\tmneme: Huh. I actually find it easier to follow games on here these days; I make more dumb mistakes in person (certainly I did in Boston when I played Andy (in between other games) at Pax East.\n\n22) ajo: Trade B1 R1 Alpha\n\n23) mneme: Build B1 Mneme\n\n24) ajo: Move B2 Ajo Alpha\n\n25) mneme: Discover B1 Mneme Y3 Jacinth\n\n26) ajo: Build R2 Alpha\n\n27) mneme: Move R1 Mneme Emerald\n\n28) ajo: Move R2 Alpha Jacinth\n\n29) mneme: Sacrifice G3 Mneme\nBuild B2 Emerald\nBuild B3 Emerald\nBuild B3 Jacinth\n\n30) ajo: Attack B1 Jacinth\n\n31) mneme: Sacrifice R1 Emerald\nAttack R2 Jacinth\n\n32) ajo: Sacrifice Y2 Alpha\nMove B2 Alpha Jacinth\nMove B2 Jacinth Mneme\n\n33) mneme: Sacrifice R2 Jacinth\nAttack B1 Jacinth\nAttack B2 Mneme\n\n34) ajo: Build R1 Alpha\n\tmneme: Having worked out the response to that, I was kinda hoping you'd try it.\n\tajo: Shoot. I think I've pretty much lost at this point, but I'll keep playing.\n\n35) mneme: Sacrifice B2 Mneme\nTrade B3 G3 Jacinth\nTrade B3 R3 Emerald\n\n36) ajo: Build R2 Alpha\n\tmneme: have to agree, but as you like.\n\n37) mneme: Sacrifice G3 Jacinth\nBuild B2 Emerald\nBuild B3 Jacinth\nB B3 Mneme\n\n38) ajo: Sacrifice Y1 Ajo\nDiscover R2 Alpha Y3 Beta\n\n39) mneme: Sacrifice B2 Emerald\nTrade B3 Y3 Mneme\nTrade B3 G3 Jacinth\n\n\tajo: I don't like resigning when I still have both pieces of my star, but I don't see any way to attack you from this position. Play again?\n\tmneme: Any time.\r\n\n\nHomeworlds Online (SDG# 22073)\nVariants: "No undo"\nStarted: 2012.5.31, Ended: 2012.6.15\nParticipants: goblin981 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B1 R3 G3\n\n2) goblin981: Homeworld Y3 B2 G3\n\n3) ajo: Build G1 Ajo\n\n4) goblin981: B G1 Goblin981\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) goblin981: D G1 Goblin981 B1 Blue\n\n7) ajo: Build Y1 Ajo\n\n8) goblin981: B G1 Goblin981\n\n9) ajo: Build Y1 Ajo\n\n10) goblin981: B G1 Goblin981\n\n11) ajo: Discover Y1 Ajo B2 Alpha\n\n12) goblin981: B G2 Blue\n\n13) ajo: Build G2 Ajo\n\n14) goblin981: T G2 R2 Blue\n\n15) ajo: Sacrifice G2 Ajo\nBuild G2 Ajo\nBuild Y2 Alpha\n\n16) goblin981: T G1 R1 Goblin981\n\n17) ajo: Trade Y2 R2 Alpha\n\n18) goblin981: D G1 Goblin981 G1 Green\n\n19) ajo: Sacrifice G2 Ajo\nBuild G2 Ajo\nBuild Y2 Alpha\n\n20) goblin981: B G2 Goblin981\n\n21) ajo: Trade Y2 G2 Alpha\n\n22) goblin981: S G2 Goblin981\nBuild G2 Goblin981\nBuild G3 Blue\n\n23) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Alpha\nBuild Y2 Alpha\n\n24) goblin981: T G3 Y3 Blue\n\n25) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild R1 Alpha\n\n26) goblin981: D R2 Blue Y2 Y2\n\n27) ajo: Sacrifice Y2 Alpha\nMove Y1 Alpha Blue\nDiscover Y1 Ajo B2 Beta\n\n28) goblin981: M G1 Blue Y2\n\n29) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Blue\nBuild Y3 Blue\nCatastrophe Blue Yellow\n\n30) goblin981: S G3 Goblin981\nBuild G3 Goblin981\nBuild R1 Y2\nBuild R2 Y2\n\n31) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild R3 Alpha\nBuild Y1 Beta\n\n32) goblin981: D R2 Y2 Y3 Y3\n\n33) ajo: Move R3 Alpha Green\n\n34) goblin981: S G1 Green\nBuild R3 Y3\n\n35) ajo: Move Y1 Beta Green\n\n36) goblin981: D R3 Y3 Y2 Yell2\n\n37) ajo: Build Y3 Green\n\n38) goblin981: M R2 Y3 Beta\n\n39) ajo: Build Y3 Alpha\n\n40) goblin981: A Y1N Beta\n\n41) ajo: Move Y3 Green Beta\n\n42) goblin981: S Y1 Beta\nMove R2 Beta Ajo\n\n43) ajo: Attack R2 Ajo\n\tajo: Hey, thanks! *nom nom nom*\n\n44) goblin981: B G1 Y2\n\n45) ajo: Build Y1 Green\n\n46) goblin981: M R3 Yell2 Green\n\n47) ajo: Attack R3 Green\n\n48) goblin981: T G2 Y2 Goblin981\n\n49) ajo: Sacrifice Y2 Alpha\nMove Y1 Green Goblin981\nMove Y1 Green Goblin981\nCatastrophe Goblin981 Yellow\n\n50) goblin981: M R1 Y2 Ajo\n\tgoblin981: Damn, didn't see that.\n\n51) ajo: Sacrifice Y3 Beta\nMove G3 Alpha Green\nMove G3 Green Goblin981\nMove G2 Ajo Goblin981\n\n52) goblin981: M R2 Y2 Ajo\nCatastrophe Ajo R\n\tajo: Checkmate. :)\n\tajo: Advice for learning -- Twice in this game you tried to attack a really heavily defended star by moving a single red ship in, and I just captured it without even sacrificing anything. You've gotta learn not to do that.\n\tajo: ooooh shoot, disregard that "checkmate". I'd mistakenly thought your last move was "move r1 goblin981 ajo". So instead, you get a chance to even the score a bit. :P\n\tajo: You're still in check, though.\n\tgoblin981: Yeah, both times I gave you the red ship to free up a star.\r\nI was ready to blow your red star, but you took out my y2 ship with my star.\n\n53) ajo: Sacrifice R2 Alpha\nAttack G3 Goblin981\nAttack R1 Goblin981\n\tajo: Of course! You have to watch one turn ahead. Especially when you're in check. ;) Good game.\n\tgoblin981: Yeah, seeing all possible moves by the opponent is always my problem.\r\n\r\nThanks for the game.\n\n\nHomeworlds Online (SDG# 22293)\nVariants: "Hard time"\nStarted: 2012.6.2, Ended: 2012.6.25\nParticipants: Danner (S), ts52 (N)\nWinner: Danner\n\n1) ts52: Homeworld Y1 B2 G3\n\tDanner: Hi! Have a nice game!\n\tts52: Thanks. You too!\n\n2) Danner: Homeworld B1 R2 G3\n\tDanner: homeworld B1 R2 G3\n\n3) ts52: Build G1 Ts52\n\tDanner: sorry :D stupid mistake\n\tts52: No worries. Small universe, eh?\n\n4) Danner: Build G1 Danner\n\tDanner: Yeah. :)\n\n5) ts52: Trade G1 R1 Ts52\n\n6) Danner: Trade G1 Y1 Danner\n\n7) ts52: B G1 Ts52\n\n8) Danner: Build Y1 Danner\n\n9) ts52: D G1 Ts52 B3 Gonzo\n\n10) Danner: Build Y2 Danner\n\n11) ts52: Build G1 Ts52\n\n12) Danner: Discover Y2 Danner G3 Cactus\n\n13) ts52: Build R1 Ts52\n\n14) Danner: Discover Y1 Danner R3 Outpost\n\n15) ts52: Move R1 Ts52 Gonzo\n\n16) Danner: Sacrifice G3 Danner\nBuild Y2 Outpost\nBuild Y2 Danner\nBuild Y3 Danner\n\n17) ts52: Build R1 Gonzo\n\n18) Danner: Trade Y3 G3 Danner\n\n19) ts52: Build R2 Ts52\n\n20) Danner: Discover Y2 Danner R3 Garrett\n\n21) ts52: Move R2 Ts52 Cactus\n\n22) Danner: Move Y2 Cactus Danner\n\n23) ts52: Build R2 Ts52\n\n24) Danner: Discover Y2 Danner R3 Final\n\n25) ts52: Trade G1 B1 Ts52\n\n26) Danner: Build Y3 Danner\n\n27) ts52: Move B1 Ts52 Cactus\n\n28) Danner: Build Y3 Danner\n\n29) ts52: Build B1 Cactus\n\n30) Danner: Trade Y3 B3 Danner\n\n31) ts52: Build G1 Ts52\n\n32) Danner: Trade Y3 B3 Danner\n\n33) ts52: Trade R2 B2 Ts52\n\n34) Danner: Build Y3 Danner\n\n35) ts52: Discover B2 Ts52 Y3 Bigbird\n\n36) Danner: Move B3 Danner Garrett\n\n37) ts52: Build R2 Ts52\n\tDanner: That was close!\n\tts52: Drat. So close!\n\n38) Danner: Build Y3 Danner\n\n39) ts52: Move G1 Ts52 Bigbird\n\n40) Danner: Build G1 Danner\n\n41) ts52: Build B2 Bigbird\n\n42) Danner: Move B3 Danner Outpost\n\n43) ts52: Build G2 Bigbird\n\n44) Danner: Move G1 Danner Outpost\n\n45) ts52: Build G2 Bigbird\n\n46) Danner: Move Y1 Danner Outpost\n\n47) ts52: Build G2 Gonzo\n\n48) Danner: Move Y3 Danner Final\n\tDanner: Emergency evacuation in progress. :)\n\n49) ts52: Pass\n\n50) Danner: Move G3 Danner Final\n\tts52: I see my doom coming, but I don't think I can do anything about it.\n\tDanner: That's strange, because I still lack the necessary resources.\n\n51) ts52: Pass\n\n52) Danner: Move G1 Outpost Danner\n\tts52: really?\n\n53) ts52: Pass\n\tDanner: Yes.\n\n54) Danner: Move G1 Danner Bigbird\nCatastrophe Bigbird G\n\n55) ts52: Build G1 Ts52\n\n56) Danner: Build G1 Final\n\n57) ts52: Move G1 Ts52 Bigbird\n\n58) Danner: Move G1 Final Danner\n\n59) ts52: Build G2 Bigbird\n\n60) Danner: Build G2 Final\n\n61) ts52: Pass\n\n62) Danner: Move Y2 Garrett Danner\n\n63) ts52: Pass\n\n64) Danner: Sacrifice B3 Garrett\nTrade Y3 R3 Danner\nTrade Y3 B3 Final\nPass\n\n65) ts52: Discover R1 Ts52 Y3 Zoe\n\tDanner: I fear you don't really enjoy this game.\n\tts52: I'm just not sure why you haven't moved to take me out yet. And yes, it's a bit frustrating being locked out of yellow, but that's my own fault. I'm curious to see just how this will end though.\n\n66) Danner: Build Y3 Danner\n\tDanner: To take you out, I need either 1 red and 3 green ships or 3 blue ships.\n\n67) ts52: Pass\n\tDanner: So I didn't meet the requirements until now.\n\n68) Danner: Move G1 Danner Outpost\n\n69) ts52: Pass\n\n70) Danner: Move G1 Outpost Ts52\n\n71) ts52: Attack G1 Ts52\n\tDanner: Sorry for the delay.\n\n72) Danner: Move G3 Final Ts52\n\tts52: no worries\n\n73) ts52: Attack G3 Ts52\n\n74) Danner: Sacrifice Y2 Outpost\nMove G2 Final Ts52\nMove B3 Final Ts52\nCatastrophe Ts52 G\n\n75) ts52: Move G2 Bigbird Ts52\n\n76) Danner: Sacrifice R3 Danner\nAttack R2N Ts52\nAttack G2N Ts52\nPass\n\tts52: ah, now I see, you wanted to be able to do it w/o sacrificing the large yellow...\n\tDanner: :)\n\n\tDanner: Thank you. :)\n\nHomeworlds Online (SDG# 22120)\nVariants: "Hard time"\nStarted: 2012.6.3, Ended: 2012.6.16\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) dlwillson: H Y3 B2 G3 Dlwillson\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: LOL\n\n4) dlwillson: B G1 Dlwillson\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) dlwillson: D Y1 Dlwillson G1 Field\n\n9) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\n10) dlwillson: B Y2 Field\n\n\tSilentTitan: Sorry lost track of time ... for obvious reasons.\r\n\r\n\n\nHomeworlds Online (SDG# 22297)\nVariants: "Hard time"\nStarted: 2012.6.7, Ended: 2012.6.18\nParticipants: SilentTitan (S), goblin981 (N)\nWinner: goblin981\n\n1) goblin981: Homeworld R2 B1 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) goblin981: B G1 Goblin981\n\tSilentTitan: Good name! Goblin, Silent and One-Eye are my three favorite characters from the Black Company by Glenn Cook. \n\tgoblin981: I got it from the Green Goblin. I'm a Spider-Man fan.\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) goblin981: B G1 Goblin981\n\n6) SilentTitan: Build G2 Silenttitan\n\n7) goblin981: T G1 Y1 Goblin981\n\n8) SilentTitan: Trade G2 Y2 Silenttitan\n\n9) goblin981: D G1 Goblin981 Y3 Yella\n\n10) SilentTitan: Discover G1 Silenttitan B1 Sol\n\n11) goblin981: B Y1 Goblin981\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) goblin981: T Y1 G1 Goblin981\n\n14) SilentTitan: Build G2 Sol\n\n15) goblin981: D G1 Goblin981 Y3 Y3\n\n16) SilentTitan: Trade G2 Y2 Sol\n\n17) goblin981: B G2 Goblin981\n\n\tSilentTitan: I am sorry about that... I had a friend die this last week and I lost track of several things I was doing including this. You can challenge me again if you'd like\r\n\n\tgoblin981: No probs\n\nHomeworlds Online (SDG# 22349)\nVariants: "Hard time"\nStarted: 2012.6.8, Ended: 2012.8.7\nParticipants: alexcobo (S), goblin981 (N)\nWinner: goblin981\n\n1) goblin981: H Y1 B2 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) goblin981: B G1 Goblin981\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) goblin981: D G1 Goblin981 Y3 Alpha\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) goblin981: B G1 Goblin981\n\n8) alexcobo: Trade Y1 G1 Alexcobo\n\n9) goblin981: D G1 Goblin981 Y3 Beta\n\n10) alexcobo: Build G2 Alexcobo\n\n11) goblin981: B G2 Goblin981\n\n12) alexcobo: Trade G1 R1 Alexcobo\n\n13) goblin981: T G2 R2 Goblin981\n\n14) alexcobo: Discover G2 Alexcobo Y1 Yellowone\n\n15) goblin981: B R1 Goblin981\n\n16) alexcobo: Build Y2 Alexcobo\n\n17) goblin981: B G1 Alpha\n\n18) alexcobo: Build G2 Yellowone\n\n19) goblin981: D G1 Alpha R1 Gamma\n\n20) alexcobo: Build R2 Alexcobo\n\n21) goblin981: B G2 Gamma\n\n22) alexcobo: Trade Y3 G3 Alexcobo\n\n23) goblin981: T R1 B1 Goblin981\n\n24) alexcobo: Build Y2 Alexcobo\n\n25) goblin981: D B1 Goblin981 Y3 Delta\n\n26) alexcobo: Move G3 Alexcobo Gamma\n\n27) goblin981: M B1 Delta Gamma\n\n28) alexcobo: Sacrifice Y1 Alexcobo\nMove G3 Gamma Beta\n\n29) goblin981: D G1 Beta Y1 Delta\n\n30) alexcobo: Discover Y2 Alexcobo B1 Blueone\n\n31) goblin981: T G2 Y2 Gamma\n\n32) alexcobo: Build Y3 Alexcobo\n\n33) goblin981: B G2 Delta\n\n34) alexcobo: Move G3 Beta Gamma\n\n35) goblin981: S Y2 Gamma\nD G1 Gamma B2 Beta\nDiscover G1 Beta B1 Epsilon\n\n\talexcobo: \t\r\nI am very sorry. I have a lot going on right now and I have to cut down on my game time. :-(\r\nI will see you again soon. Good luck! \n\nHomeworlds Online (SDG# 22377)\nVariants: "Hard time"\nStarted: 2012.6.12, Ended: 2012.7.31\nParticipants: AdamBadura (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld B3 G2 Y3\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) Aristos: Build Y1 Aristos\n\tAristos: Good day and well met. \n\n4) AdamBadura: Build Y1 Adambadura\n\n5) Aristos: Discover Y1 Aristos G1 Splinter\n\n6) AdamBadura: Discover Y1 Adambadura G1 Shipyard\n\n7) Aristos: Discover Y1 Splinter B3 Morph\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) Aristos: Build Y2 Aristos\n\n10) AdamBadura: Trade Y3 G3 Adambadura\n\n11) Aristos: Trade Y1 G1 Morph\n\n12) AdamBadura: Build Y1 Adambadura\n\n13) Aristos: Build G1 Morph\n\n14) AdamBadura: Sacrifice G3 Adambadura\nBuild Y2 Shipyard\nBuild Y2 Shipyard\nBuild Y3 Adambadura\n\tAristos: Game is going to take a loooooong time with five days between every move.\n\n15) Aristos: Trade Y3 R3 Aristos\n\tAdamBadura: I'm terribly sorry. I will do my best to speed up but recently I'm very busy with the rest of my life. :(\n\tAristos: Oh, I understand. It just gets hard to remember my strategy plans under such long delays. :-)\n\n16) AdamBadura: Discover Y2 Shipyard G2 Drydocks\n\n17) Aristos: Build Y3 Aristos\n\n18) AdamBadura: Trade Y1 R1 Adambadura\n\n19) Aristos: Discover Y2 Aristos R1 Exit\n\n20) AdamBadura: Build R1 Adambadura\n\n21) Aristos: Build R2 Aristos\n\tAristos: Ping!\n\n22) AdamBadura: Move R1 Adambadura Shipyard\n\tAdamBadura: I think I'm going to lose this one. Which doesn't make my moves any faster... :(\n\n23) Aristos: Move R3 Aristos Shipyard\n\n24) AdamBadura: Build R2 Shipyard\n\n25) Aristos: Sacrifice R2 Aristos\nAttack Y2 Shipyard\nAttack Y1 Shipyard\n\n26) AdamBadura: Sacrifice Y2 Drydocks\nMove R1 Shipyard Aristos\nDiscover R2 Shipyard G3 Newdrydocks\n\n27) Aristos: Sacrifice Y2 Shipyard\nMove Y2 Exit Adambadura\nMove Y1 Shipyard Adambadura\nCatastrophe Adambadura Yellow\n\tAdamBadura: Hmm... Somehow I haven't thought of that move... :(\n\n28) AdamBadura: Build R1 Newdrydocks\n\n29) Aristos: Trade G1 Y1 Morph\n\n30) AdamBadura: Build R2 Adambadura\n\tAristos: My main thrust has been to acquire enough yellow tech to knock out your big yellow ship. I finally had enough on hand.\n\tAristos: You really threw me off at the start... I've never played a game with identically sized homeworlds before. It is a very different game when the worlds are so close.\n\tAdamBadura: I missed that move to which is kind of wired considering how much time did I take to make my move. (I had few attempts but after some thinking I wasn't sure what should I do.)\r\n\r\nIn general it is bad to have identical worlds. It is bad for the second player (me) since the first player has an advantage. I didn't want to make them so but did it by accident just reverting your sizes and forgetting that I had to actually change one of them.\n\n31) Aristos: Sacrifice Y1 Morph\nMove R3 Shipyard Adambadura\n\n\tAristos: I've got you now. If you do anything other than change color in your home system, I build red and cause catastrophe. So you must change color. Regardless of what color you pick, I attack your size 2 ship. You build a new ship the next turn or you lose. I sacrifice my size 3 and attack both ships. Game over.\n\tAdamBadura: You are right. Somehow I hoped there will be a little race with building ships. I wanted to build an R3 in your home system. But appearently that was a bad plan.\r\n\r\nYet I'm not sure if it could have ended otherwise considering my previous mistakes.\r\n\r\nThanks for the game and I'm terribly sorry for the delays. :(\n\tAristos: Thanks. No problem on the delays. Take care.\n\nHomeworlds Online (SDG# 22386)\nVariants: "Hard time"\nStarted: 2012.6.15, Ended: 2012.6.25\nParticipants: ajo (S), Remneb (N)\nWinner: ajo\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) ajo: Homeworld B1 R3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) ajo: Build G1 Ajo\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) Remneb: Build G1 Remneb\n\n8) ajo: Build G1 Ajo\n\n9) Remneb: Trade G1 R1 Remneb\n\n10) ajo: Build Y1 Ajo\n\n11) Remneb: Discover R1 Remneb Y3 Deneb\n\n12) ajo: Trade Y1 R1 Ajo\n\n13) Remneb: Build Y1 Remneb\n\n14) ajo: Build R2 Ajo\n\n15) Remneb: Build G1 Remneb\n\n16) ajo: Discover R2 Ajo B2 Alpha\n\n17) Remneb: Discover R1 Deneb Y2 Wolf\n\n18) ajo: Move G1 Ajo Alpha\n\n19) Remneb: Sacrifice G1 Remneb\nBuild R2 Wolf\n\n20) ajo: Build R2 Alpha\n\n21) Remneb: Build G1 Remneb\n\n22) ajo: Build R3 Alpha\n\n23) Remneb: Move R1 Wolf Ajo\n\n24) ajo: Sacrifice R1 Ajo\nAttack R1 Ajo\n\n25) Remneb: Discover R2 Wolf Y3 Sirius\n\tajo: *nom nom nom nom nom*\n\n26) ajo: Trade R2 Y2 Alpha\n\n27) Remneb: Discover G1 Remneb Y3 Centaurus\n\n28) ajo: Move R2 Alpha Centaurus\n\n29) Remneb: Discover G1 Centaurus Y2 Akron\n\n30) ajo: Build G2 Alpha\n\n31) Remneb: Build G2 Akron\n\n32) ajo: Trade G1 B1 Alpha\n\n33) Remneb: Discover G2 Akron B3 Helios\n\n34) ajo: Move B1 Alpha Centaurus\n\n35) Remneb: Build G1 Remneb\n\n36) ajo: Sacrifice G2 Alpha\nBuild B1 Centaurus\nBuild B2 Centaurus\n\n37) Remneb: Sacrifice G3 Remneb\nBuild G2 Akron\nBuild G2 Helios\nBuild G3 Remneb\n\n38) ajo: Build G3 Ajo\n\n39) Remneb: Trade G2 Y2 Helios\n\n40) ajo: Trade G3 B3 Ajo\n\n41) Remneb: Sacrifice G3 Remneb\nBuild G2 Helios\nBuild G3 Remneb\nBuild R1 Sirius\n\n42) ajo: Build G3 Ajo\n\n43) Remneb: Discover Y1 Remneb G3 Sigma\n\n44) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B3 Ajo\nBuild R2 Alpha\n\n45) Remneb: Move R1 Sirius Akron\n\n46) ajo: Move B1 Centaurus Remneb\n\n47) Remneb: Attack B1 Remneb\n\tajo: I think you're going to lose in about two moves. :)\n\n48) ajo: Sacrifice Y2 Alpha\nMove B1 Centaurus Remneb\nMove B2 Centaurus Remneb\nCatastrophe Remneb Blue\n\tRemneb: I'm going to lose my blue star for sure!\n\n49) Remneb: Build R3 Akron\n\tajo: Check... and I think mate.\n\tajo: When you're in that situation, you have to do something dramatic to pose a counter-threat to me. You're going to get hit no matter what; the trick is to hit me back. Attacking my b1 was pretty much a waste of a turn (although admittedly if you hadn't taken it, I was going to take your two small ships and you'd be in even *more* trouble). If you'd done "build r3 Sirius" instead, I think you'd have lasted *one* more turn, at least.\n\tRemneb: A yellow 3 ship would have save me from final destruction.The first target was of course Alpha system, attacking it with my 2 red ships in Akron and Sirius.My last mistake was to move my red 1 ship from Sirius to Akron.I should have let it in Sirius and sacrify a yellow 2 ship to stunt Alpha system.\n\n50) ajo: Sacrifice Y3 Ajo\nMove R2 Alpha Remneb\nMove R3 Alpha Remneb\nMove R2 Centaurus Remneb\nCatastrophe Remneb Red\n\n\nHomeworlds Online (SDG# 22420)\nVariants: "Hard time"\nStarted: 2012.6.22, Ended: 2012.7.19\nParticipants: goulo (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld B3 R1 G3\n\n2) goulo: Homeworld B2 R1 G3\n\tMagicJohn: Hello, Russgoulo! Have a good game. I'm trying to get a handle on the tactics and strategies but mostly folks have been declining challenges and defaulting. I'm climbing the ladder without winning games....... Air's getting thin.... can't catch my breath....gasp, gasp.... turn on life-support...\n\n3) MagicJohn: Build G1 Magicjohn\n\tgoulo: I think I'm on a losing streak, so you may not learn much from playing against me... :)\n\n4) goulo: Build G1 Goulo\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) goulo: Build G1 Goulo\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) goulo: Trade G1 Y1 Goulo\n\n9) MagicJohn: Trade G1 B1 Magicjohn\n\n10) goulo: Trade G1 R1 Goulo\n\n11) MagicJohn: Build Y1 Magicjohn\n\n12) goulo: Build R2 Goulo\n\n13) MagicJohn: Build Y2 Magicjohn\n\n14) goulo: Build Y2 Goulo\n\n15) MagicJohn: Discover Y1 Magicjohn G2 Scarboughfair\n\n16) goulo: Discover Y1 Goulo G3 Smeraldego\n\n17) MagicJohn: Trade Y2 R2 Magicjohn\n\n18) goulo: Move R2 Goulo Smeraldego\n\n19) MagicJohn: Build Y2 Scarboughfair\n\n20) goulo: Build R2 Goulo\n\n21) MagicJohn: Move R2 Magicjohn Scarboughfair\n\n22) goulo: Discover R2 Goulo Y3 Citronego\n\n23) MagicJohn: Discover Y2 Scarboughfair R3 Scairbroughfair\n\n24) goulo: Sacrifice G3 Goulo\nBuild Y2 Smeraldego\nBuild Y3 Goulo\nBuild R3 Citronego\n\n25) MagicJohn: Sacrifice G3 Magicjohn\nBuild Y3 Magicjohn\nBuild R3 Scarboughfair\nBuild B1 Magicjohn\n\n26) goulo: Trade R1 B1 Goulo\n\n27) MagicJohn: Move B1 Magicjohn Scarboughfair\n\n28) goulo: Move B1 Goulo Smeraldego\n\n29) MagicJohn: Move R3 Scarboughfair Smeraldego\n\n30) goulo: Sacrifice Y2 Smeraldego\nMove R2 Smeraldego Goulo\nMove R3 Citronego Scarboughfair\n\n31) MagicJohn: Sacrifice R2 Scarboughfair\nAttack B1 Smeraldego\nAttack Y1 Smeraldego\n\n32) goulo: Attack Y1 Scarboughfair\n\n33) MagicJohn: Build Y2 Smeraldego\n\n34) goulo: Attack B1 Scarboughfair\n\n35) MagicJohn: Sacrifice Y2 Smeraldego\nMove Y1 Smeraldego Goulo\nMove Y2 Scairbroughfair Goulo\nCatastrophe Goulo Y\n\n\tgoulo: Good game! I misread my last move; I realized that the yellow catastrophe was possible but not that it would leave you able to get a red3 to goulo while I couldn't, doh! :)\n\tMagicJohn: Thanks for the game. I'm now in even further over my head on the ladder. The ratings of the players around me are ridiculous!! My learning curve better get real steep real fast.... \n\nHomeworlds Online (SDG# 22446)\nVariants: "Hard time"\nStarted: 2012.6.27, Ended: 2012.7.19\nParticipants: ts52 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) ajo: Build G1 Ajo\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\tajo: You too. :)\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) ajo: Build G1 Ajo\n\n8) ts52: Build G1 Ts52\n\n9) ajo: Discover G1 Ajo B2 Alpha\n\n10) ts52: Discover G1 Ts52 B3 Grover\n\n11) ajo: Build G1 Ajo\n\n12) ts52: Build G2 Grover\n\n13) ajo: Build G2 Alpha\n\n14) ts52: Trade G2 Y2 Grover\n\n15) ajo: Trade G2 R2 Alpha\n\n16) ts52: Trade Y1 R1 Ts52\n\n17) ajo: Build G2 Alpha\n\n18) ts52: Build G2 Ts52\n\n19) ajo: Trade G2 Y2 Alpha\n\n20) ts52: Build G2 Grover\n\n21) ajo: Build Y1 Alpha\n\n22) ts52: Discover G2 Grover B2 Gonzo\n\n23) ajo: Discover Y1 Alpha G3 Oscar\n\n24) ts52: Build G2 Gonzo\n\n25) ajo: Discover G1 Ajo B2 Beta\n\n26) ts52: Trade G2 R2 Ts52\n\n27) ajo: Sacrifice G3 Ajo\nBuild Y1 Oscar\nBuild Y3 Ajo\nBuild Y3 Alpha\n\n28) ts52: Sacrifice G2 Gonzo\nBuild G2 Ts52\nBuild Y3 Grover\n\n29) ajo: Build G2 Beta\n\n30) ts52: Build G3 Gonzo\n\n31) ajo: Trade Y3 B3 Alpha\n\n32) ts52: Trade Y3 R3 Grover\n\n33) ajo: Sacrifice G2 Beta\nBuild Y3 Oscar\nBuild Y3 Alpha\n\n34) ts52: Build G2 Grover\n\n35) ajo: Move B3 Alpha Oscar\n\n36) ts52: Trade G1 B1 Grover\n\n37) ajo: Build B1 Oscar\n\n38) ts52: Discover B1 Grover R2 Elmo\n\n39) ajo: Move Y3 Oscar Elmo\n\n40) ts52: Move R3 Grover Beta\n\n41) ajo: Attack B1 Elmo\n\n42) ts52: Build G1 Grover\n\n43) ajo: Trade B3 R3 Oscar\n\n44) ts52: Attack G1 Beta\n\n45) ajo: Build B3 Oscar\n\n46) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Beta\nBuild R3 Beta\n\n47) ajo: Move R3 Oscar Beta\nCatastrophe Beta Red\n\n48) ts52: Move R2 Ts52 Grover\n\n49) ajo: Discover Y2 Alpha R3 Waypoint\n\n50) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Grover\nBuild R3 Grover\n\n51) ajo: Sacrifice Y3 Elmo\nMove Y2 Waypoint Ts52\nMove Y1 Oscar Ts52\nMove Y1 Oscar Ts52\nCatastrophe Ts52 Yellow\n\n52) ts52: Move R3 Grover Elmo\n\tajo: Check... and mate, I believe. :)\n\tts52: Yep, I don't believe I can stop you. Well played sir.\n\n53) ajo: Sacrifice Y3 Alpha\nMove B1 Elmo Ts52\nMove B1 Oscar Ts52\nMove B3 Oscar Ts52\nCatastrophe Ts52 Blue\n\tts52: Thanks for the game.\n\n\nHomeworlds Online (SDG# 22457)\nStarted: 2012.6.29, Ended: 2012.8.25\nParticipants: torianironfist (S), RogueJedi234 (N)\nWinner: torianironfist\n\n1) RogueJedi234: Homeworld Y3 B1 G3\n\n2) torianironfist: Homeworld B2 Y1 G3\n\ttorianironfist: Homeworld b2 g1 y3\n\ttorianironfist: homeworld b2 g1 y3\n\ttorianironfist: homeworld B2 G1 Y3\n\n3) RogueJedi234: Build G1 Roguejedi234\n\n4) torianironfist: Build G1 Torianironfist\n\n5) RogueJedi234: Discover G1 Roguejedi234 B2 Alpha\n\n6) torianironfist: Discover G1 Torianironfist B3 Beta\n\n7) RogueJedi234: Trade G1 Y1 Alpha\n\n8) torianironfist: Build G1 Beta\n\n9) RogueJedi234: Build G1 Roguejedi234\n\n10) torianironfist: Trade G1 Y1 Beta\n\n11) RogueJedi234: Sacrifice G1 Roguejedi234\nBuild Y2 Alpha\n\n12) torianironfist: Build Y2 Beta\n\n\n13) RogueJedi234: Trade Y2 G2 Alpha\n\n14) torianironfist: Build G1 Torianironfist\n\n15) RogueJedi234: Construct Y2 Alpha\n\n16) torianironfist: Trade G1 R1 Torianironfist\n\n17) RogueJedi234: Trade Y2 R2 Alpha\n\n18) torianironfist: Trade Y1 R1 Beta\n\n19) RogueJedi234: Move R2 Alpha Roguejedi234\n\n20) torianironfist: Build G1 Torianironfist\n\n21) RogueJedi234: Discover G2 Alpha B3 Gamma\n\n22) torianironfist: Discover G1 Torianironfist Y3 Delta\n\n23) RogueJedi234: Build G1 Gamma\n\n24) torianironfist: Build G2 Torianironfist\n\n25) RogueJedi234: Trade G2 Y2 Gamma\n\n26) torianironfist: Build G2 Delta\n\n27) RogueJedi234: Build G2 Gamma\n\n28) torianironfist: Build G3 Beta\n\n29) RogueJedi234: Sacrifice Y2 Gamma\nMove G2 Gamma Torianironfist\nMove G1 Gamma Torianironfist\nCatastrophe Torianironfist Green\n\n30) torianironfist: Move G3 Beta Alpha\n\n31) RogueJedi234: Discover Y1 Alpha G3 Gamma\n\n32) torianironfist: Move G2 Delta Torianironfist\n\n33) RogueJedi234: Build Y1 Gamma\n\n34) torianironfist: Build Y2 Beta\n\n35) RogueJedi234: Discover Y1 Gamma R2 Epsilon\n\n36) torianironfist: Build G1 Torianironfist\n\n37) RogueJedi234: Build Y2 Gamma\n\n38) torianironfist: Build Y3 Beta\n\n39) RogueJedi234: Move Y1 Epsilon Beta\nCatastrophe Beta Yellow\n\n40) torianironfist: Sacrifice G3 Alpha\nBuild G2 Delta\nBuild G2 Beta\nBuild G3 Torianironfist\n\n41) RogueJedi234: Discover Y2 Gamma B2 Alpha\n\n42) torianironfist: Trade G2 Y2 Beta\n\n43) RogueJedi234: Trade Y2 G2 Alpha\n\n44) torianironfist: Move G1 Delta Alpha\n\n45) RogueJedi234: Build R1 Roguejedi234\n\n46) torianironfist: Sacrifice G2 Delta\nBuild G2 Alpha\nBuild R2 Beta\n\n47) RogueJedi234: Sacrifice Y1 Gamma\nDiscover G2 Alpha Y3 Delta\n\n48) torianironfist: Sacrifice G2 Torianironfist\nBuild Y1 Beta\nBuild G2 Beta\n\n49) RogueJedi234: Build G3 Delta\n\n50) torianironfist: Sacrifice Y2 Beta\nMove G1 Torianironfist Delta\nMove G1 Alpha Delta\nCatastrophe Delta G\n\n51) RogueJedi234: Discover R1 Roguejedi234 B2 Gamma\n\n52) torianironfist: Build G1 Torianironfist\n\n53) RogueJedi234: Trade R1 G1 Gamma\n\n54) torianironfist: Sacrifice G3 Torianironfist\nBuild G2 Beta\nBuild G3 Alpha\nBuild G3 Alpha\n\n55) RogueJedi234: Build R1 Roguejedi234\n\n56) torianironfist: Sacrifice G3 Alpha\nBuild R2 Beta\nBuild R3 Torianironfist\nBuild G3 Alpha\n\n57) RogueJedi234: Trade R1 Y1 Roguejedi234\n\n58) torianironfist: Sacrifice G3 Alpha\nBuild G3 Alpha\nBuild Y2 Beta\nBuild Y2 Beta\n\n59) RogueJedi234: Sacrifice Y1 Roguejedi234\nMove G1 Gamma Beta\nCatastrophe Beta Green\n\n60) torianironfist: Sacrifice Y2 Beta\nMove G3 Alpha Roguejedi234\nMove G3 Alpha Roguejedi234\n\n61) RogueJedi234: Build G1 Roguejedi234\nCatastrophe Roguejedi234 Green\n\n62) torianironfist: Sacrifice Y2 Beta\nDiscover R3 Torianironfist Y3 Doom\nMove R3 Doom Alpha\n\n63) RogueJedi234: Trade R2 B2 Roguejedi234\n\n64) torianironfist: Sacrifice Y1 Beta\nMove R3 Alpha Roguejedi234\n\n65) RogueJedi234: Trade B2 Y2 Roguejedi234\n\n66) torianironfist: Attack Y2 Roguejedi234\n\n\nHomeworlds Online (SDG# 22442)\nVariants: "Hard time"\nStarted: 2012.6.29, Ended: 2012.7.10\nParticipants: dlwillson (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld B1 R2 G3\n\n2) dlwillson: Homeworld R3 B2 G3 Dlwillson\n\tDanner: Hi! Have a nice game!\n\tdlwillson: You too, Danner! I've been looking forward to playing you.\n\n3) Danner: Build G1 Danner\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Danner: Trade G1 Y1 Danner\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Danner: Build G1 Danner\n\n8) dlwillson: Build G1 Dlwillson\n\n9) Danner: Trade G1 B1 Danner\n\n10) dlwillson: Trade G1 B1 Dlwillson\n\n11) Danner: Build B2 Danner\n\n12) dlwillson: Build B2 Dlwillson\n\n13) Danner: Discover B1 Danner G3 Alpha\n\n14) dlwillson: D B1 Dlwillson G1 Forest\n\n15) Danner: Build B3 Danner\n\tDanner: Copycat. :)\n\n16) dlwillson: B B3 Forest\n\n17) Danner: Build B3 Alpha\n\tdlwillson: It seemed wise, until now... :-)\n\n18) dlwillson: T B3 Y3 Forest\n\n19) Danner: Discover B3 Danner B3 Beta\n\n20) dlwillson: B G1 Dlwillson\n\n21) Danner: Build G1 Danner\n\n22) dlwillson: B G2 Dlwillson\n\n23) Danner: Trade G1 R1 Danner\n\tdlwillson: Copycat... :-)\n\n24) dlwillson: T G1 R1 Dlwillson\n\tDanner: :D\n\n25) Danner: Build R1 Danner\n\n26) dlwillson: Sacrifice Y3 Forest\nMove R1 Dlwillson Forest\nMove R1 Forest Beta\nMove R1 Beta Danner\nCatastrophe Danner R\n\n27) Danner: Build G1 Danner\n\n28) dlwillson: Trade G3 Y3 Dlwillson\n\n29) Danner: Discover B2 Danner Y3 Gamma\n\n30) dlwillson: T B1 R1 Forest\n\n31) Danner: Trade G1 R1 Danner\n\n32) dlwillson: B B1 Dlwillson\n\n33) Danner: Trade B3 Y3 Alpha\n\n34) dlwillson: Sacrifice Y3 Dlwillson\nMove B2 Dlwillson Danner\nMove B1 Dlwillson Danner\nPass\n\n35) Danner: Sacrifice Y1 Danner\nDiscover R1 Danner B3 Delta\n\tdlwillson: Excellent recovery!\n\n36) dlwillson: B Y1 Dlwillson\n\tDanner: Thanks! :)\n\tDanner: Sorry for the delay. Your move makes me think a lot! :)\n\n37) Danner: Trade G3 R3 Danner\n\tdlwillson: Good! Now, I have to think a lot! Excellent match.\n\tDanner: Indeed!\n\n38) dlwillson: B Y1 Dlwillson\n\n39) Danner: Attack B2S Danner\n\n40) dlwillson: T B1 G1 Danner\n\n41) Danner: Build B1 Alpha\n\n42) dlwillson: B G1 Danner\n\n43) Danner: Attack G1S Danner\n\n44) dlwillson: M Y1 Dlwillson Forest\n\n45) Danner: Sacrifice Y3 Alpha\nMove B3 Beta Danner\nMove B3 Danner Dlwillson\nPass\n\n\tdlwillson: I meant to say, "Thanks for the great game!" but I must have clicked out. Sorry!\n\tDanner: No worries. Thank you too!\n\nHomeworlds Online (SDG# 22475)\nVariants: "Unrated"\nStarted: 2012.7.2, Ended: 2012.7.9\nParticipants: bugggg (S), tuxhedoh (N)\nWinner: bugggg\n\n1) tuxhedoh: Homeworld B2 G1 R3\n\n2) bugggg: Homeworld Y3 B2 G3\n\n3) tuxhedoh: Build R1 Tuxhedoh\n\n4) bugggg: Build G1 Bugggg\n\tbugggg: test\n\n5) tuxhedoh: Trade R1 Y1 Tuxhedoh\n\n6) bugggg: Trade G1 R1 Bugggg\n\ttuxhedoh: got'er note\n\n7) tuxhedoh: Build Y1 Tuxhedoh\n\n8) bugggg: Build R1 Bugggg\n\n9) tuxhedoh: Discover Y1 Tuxhedoh G3 Tux2\n\n10) bugggg: Discover R1 Bugggg R1 Bug2\n\n11) tuxhedoh: Build R2 Tuxhedoh\n\n12) bugggg: Build R2 Bugggg\n\n13) tuxhedoh: Trade R2 B2 Tuxhedoh\n\n14) bugggg: Trade R1 Y1 Bugggg\n\n15) tuxhedoh: Move B2 Tuxhedoh Tux2\n\n16) bugggg: Build G1 Bugggg\n\n17) tuxhedoh: Build Y2 Tux2\n\n18) bugggg: Trade G1 B1 Bugggg\n\n19) tuxhedoh: Move Y2 Tux2 Bug2\n\n20) bugggg: Build R1 Bugggg\n\n21) tuxhedoh: Attack R1 Bug2\n\n22) bugggg: Build G1 Bugggg\n\n23) tuxhedoh: Move R1 Bug2 Tux2\n\n24) bugggg: Move R2 Bugggg Bug2\n\n25) tuxhedoh: Build R2 Tux2\n\n26) bugggg: Attack Y2 Bug2\n\n27) tuxhedoh: Trade R1 G1 Tux2\n\n28) bugggg: Move G1 Bugggg Bug2\n\n29) tuxhedoh: Build Y2 Tux2\n\n30) bugggg: Move B1 Bugggg Bug2\n\n31) tuxhedoh: Build G2 Tux2\n\n32) bugggg: Move G1 Bug2 Tux2\nCatastrophe Tux2 Green\n\n33) tuxhedoh: Build R1 Tuxhedoh\n\n34) bugggg: Build R2 Bugggg\n\n35) tuxhedoh: Trade R1 B1 Tuxhedoh\n\n36) bugggg: Build G1 Bugggg\n\ttuxhedoh: :(\n\tbugggg: sorry =-(\n\n37) tuxhedoh: Build Y1 Tuxhedoh\n\n38) bugggg: Move G1 Bugggg Bug2\n\n39) tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n40) bugggg: Build B1 Bug2\n\n41) tuxhedoh: Build B2 Tuxhedoh\n\n42) bugggg: Discover B1 Bug2 Y3 Bug3\n\n43) tuxhedoh: Trade B2 G2 Tuxhedoh\n\n44) bugggg: Move R2 Bug2 Bug3\n\n45) tuxhedoh: Build G1 Tuxhedoh\n\n46) bugggg: Move G1 Bug2 Bug3\n\n47) tuxhedoh: Move G2 Tuxhedoh Bug3\n\n48) bugggg: Attack G2 Bug3\n\n49) tuxhedoh: Build G2 Tuxhedoh\n\n50) bugggg: Move G1 Bug3 Tuxhedoh\nCatastrophe Tuxhedoh Green\n\n51) tuxhedoh: Trade B1 G1 Tuxhedoh\n\n52) bugggg: Build G1 Bugggg\n\n53) tuxhedoh: Move R3 Tuxhedoh Bug3\n\n54) bugggg: Move R2 Bug3 Tuxhedoh\n\n55) tuxhedoh: Move R3 Bug3 Tuxhedoh\n\n56) bugggg: Attack G1 Tuxhedoh\n\n57) tuxhedoh: Attack R2S Tuxhedoh\n\n58) bugggg: Move R2 Bugggg Bug2\n\n59) tuxhedoh: Move R1 Tuxhedoh Bug2\n\n60) bugggg: Attack R1 Bug2\n\n61) tuxhedoh: Move R2 Tuxhedoh Bug2\nCatastrophe Bug2 Red\n\n62) bugggg: Build B1 Bug3\n\n63) tuxhedoh: Attack G1 Tuxhedoh\n\n64) bugggg: Trade B1 Y1 Bug3\n\n65) tuxhedoh: Build R1 Tuxhedoh\n\n66) bugggg: Build Y2 Bug3\n\n67) tuxhedoh: Move Y1 Tuxhedoh Bug3\nCatastrophe Bug3 Yellow\n\n68) bugggg: Build Y1 Bugggg\n\n69) tuxhedoh: Trade R1 Y1 Tuxhedoh\n\n70) bugggg: Build Y2 Bugggg\n\n71) tuxhedoh: Build Y2 Tuxhedoh\n\n72) bugggg: Trade Y2 R2 Bugggg\n\n73) tuxhedoh: Discover R3 Tuxhedoh G3 Tux2\n\n74) bugggg: Build R1 Bugggg\n\n75) tuxhedoh: Build R1 Tux2\n\n76) bugggg: Discover R2 Bugggg G1 Bug2\n\n77) tuxhedoh: Trade Y1 B1 Tuxhedoh\n\n78) bugggg: Build R2 Bug2\n\n79) tuxhedoh: Move B1 Tuxhedoh Tux2\n\n80) bugggg: Move Y1 Bugggg Bug2\n\n81) tuxhedoh: Build R2 Tux2\n\n82) bugggg: Move R2 Bug2 Tux2\nCatastrophe Tux2 Red\n\n83) tuxhedoh: Build G2 Tuxhedoh\n\n84) bugggg: Move R2 Bug2 Tuxhedoh\n\n85) tuxhedoh: Trade G2 R2 Tuxhedoh\n\n86) bugggg: Attack R2 Tuxhedoh\n\n\nHomeworlds Online (SDG# 22334)\nVariants: "Hard time"\nStarted: 2012.7.8, Ended: 2012.8.3\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld B3 R2 G3\n\n2) dlwillson: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) dlwillson: Build G1 Dlwillson\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) SilentTitan: Build Y2 Silenttitan\n\n8) dlwillson: Build Y2 Dlwillson\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) dlwillson: D Y1 Dlwillson G2 Forest\n\n11) SilentTitan: Trade Y2 R2 Silenttitan\n\n12) dlwillson: B Y2 Dlwillson\n\n13) SilentTitan: Discover Y1 Silenttitan B1 Sol\n\n14) dlwillson: Trade Y2 R2 Dlwillson\n\n15) SilentTitan: Build Y2 Silenttitan\n\n16) dlwillson: Build Y3 Forest\n\n17) SilentTitan: Discover Y2 Silenttitan G1 Soul\n\n18) dlwillson: M Y3 Forest Sol\n\tSilentTitan: Little bored at work today?\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Soul\nBuild Y3 Silenttitan\nBuild R1 Silenttitan\n\n20) dlwillson: T Y3 R3 Sol\n\n21) SilentTitan: Sacrifice Y2 Soul\nDiscover Y1 Sol Y3 Sole\nDiscover R1 Silenttitan G1 Tic\n\n22) dlwillson: D Y2 Dlwillson B2 Sky\n\n23) SilentTitan: Trade Y2 B2 Silenttitan\n\n24) dlwillson: Build G1 Dlwillson\n\n25) SilentTitan: Trade Y3 G3 Silenttitan\n\n26) dlwillson: Build Y2 Forest\n\n27) SilentTitan: Move Y3 Soul Silenttitan\n\n28) dlwillson: Move Y2 Forest Tic\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sole\nBuild Y3 Silenttitan\nBuild B1 Silenttitan\n\n30) dlwillson: M Y1 Forest Sole\nC Sole Y\n\n31) SilentTitan: Move Y3 Silenttitan Tic\n\tdlwillson: Sorry it took me so long to make that stupid-ass move. Really, I should be able to come up with something better in two days. I suck. Sorry.\n\n32) dlwillson: B Y1 Tic\n\n33) SilentTitan: Sacrifice B2 Silenttitan\nTrade Y3 G3 Tic\nTrade R1 B1 Tic\n\n34) dlwillson: Move Y2 Tic Sky\n\n35) SilentTitan: Sacrifice G3 Tic\nBuild B2 Silenttitan\nBuild B2 Tic\nBuild B3 Tic\n\n36) dlwillson: Build Y1 Tic\n\n37) SilentTitan: Trade B3 R3 Tic\n\n38) dlwillson: S Y1 Tic\nD R3 Sol G2 Field\n\n39) SilentTitan: Attack Y1 Tic South\n\n40) dlwillson: Trade G1 B1 Dlwillson\n\n41) SilentTitan: Discover B1 Tic G2 Tac\n\n42) dlwillson: D Y2 Sky B3 Sea\n\n43) SilentTitan: Discover B2 Tic Y2 Sol\n\n44) dlwillson: M B1 Dlwillson Field\n\n45) SilentTitan: Trade B1 Y1 Silenttitan\n\n46) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Dlwillson\nBuild Y3 Sky\nBuild Y3 Sea\n\n47) SilentTitan: Sacrifice Y3 Silenttitan\nMove R3 Tic Sol\nMove B2 Sol Dlwillson\nMove B1 Tac Dlwillson\n\n48) dlwillson: Sacrifice Y3 Sea\nMove B1 Field Dlwillson\nMove Y3 Sky Tic\nMove Y3 Tic Silenttitan\nCatastrophe Dlwillson B\n\n\tdlwillson: My leg looked pretty bad. I decided to amputate.\n\tSilentTitan: Took what I thought was my best shot ... turns out I missed anticipating your following move.. nicely played\n\nHomeworlds Online (SDG# 22520)\nVariants: "Unrated"\nStarted: 2012.7.9, Ended: 2012.7.11\nParticipants: bugggg (S), tuxhedoh (N)\nWinner: tuxhedoh\n\n1) tuxhedoh: Homeworld G1 B3 Y3\n\n2) bugggg: Homeworld B1 Y3 G3\n\n3) tuxhedoh: Build Y1 Tuxhedoh\n\n4) bugggg: Build G1 Bugggg\n\n5) tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n6) bugggg: Trade G3 R3 Bugggg\n\n7) tuxhedoh: Build Y1 Tuxhedoh\n\n8) bugggg: Discover R3 Bugggg G2 Bug2\n\n9) tuxhedoh: Trade Y1 B1 Tuxhedoh\n\n10) bugggg: Build G1 Bugggg\n\n11) tuxhedoh: Build Y1 Tuxhedoh\n\n12) bugggg: Trade G1 Y1 Bugggg\n\n13) tuxhedoh: Trade Y1 G1 Tuxhedoh\n\n14) bugggg: Move Y1 Bugggg Bug2\n\n15) tuxhedoh: Build G2 Tuxhedoh\n\n16) bugggg: Move R3 Bug2 Tuxhedoh\n\n17) tuxhedoh: Attack R3 Tuxhedoh\n\n18) bugggg: Build G2 Bugggg\n\n19) tuxhedoh: Move G2 Tuxhedoh Bug2\n\ttuxhedoh: yeah. I'm not convinced a head on attack like that is gonna work.\n\tbugggg: wait, how did that happen?! i must not understand the rules... i thought that the attacking ship had to be the same size or larger?\n\n20) bugggg: Build Y1 Bug2\n\n21) tuxhedoh: Build G3 Tuxhedoh\n\n22) bugggg: Move Y1 Bug2 Bugggg\n\tbugggg: nope, can only undo the current turn\n\n23) tuxhedoh: Trade G3 B3 Tuxhedoh\n\n24) bugggg: Trade G2 R2 Bugggg\n\n25) tuxhedoh: Build Y1 Tuxhedoh\n\n26) bugggg: Build R1 Bugggg\n\n27) tuxhedoh: M R3 Tuxhedoh Bug2\n\n28) bugggg: Build R1 Bugggg\n\n29) tuxhedoh: Attack Y1 Bug2\n\n30) bugggg: Build G2 Bugggg\n\n31) tuxhedoh: Build Y2 Tuxhedoh\n\n32) bugggg: Trade G1 B1 Bugggg\n\n33) tuxhedoh: Sacrifice Y2 Tuxhedoh\nMove R1 Tuxhedoh Bug2\nMove R1 Bug2 Bugggg\nCatastrophe Bugggg Red\n\n34) bugggg: Build G1 Bugggg\n\n35) tuxhedoh: Move R3 Bug2 Bugggg\n\n36) bugggg: Trade Y1 R1 Bugggg\n\n37) tuxhedoh: Attack R1 Bugggg\n\n38) bugggg: Trade B1 R1 Bugggg\n\n39) tuxhedoh: Move G2 Bug2 Bugggg\n\n40) bugggg: Trade G1 R1 Bugggg\nCatastrophe Bugggg Red\n\n41) tuxhedoh: Trade G2 R2 Bugggg\n\n\tbugggg: there's no way that i can recover in this game... i misunderstood the rules in the beginning =-( going to resign.\n\tbugggg: let's play another one.\n\nHomeworlds Online (SDG# 22483)\nStarted: 2012.7.11, Ended: 2012.7.15\nParticipants: ts52 (S), tuxhedoh (N)\nWinner: tuxhedoh\n\n1) tuxhedoh: Homeworld G1 B2 R3\n\n\ttuxhedoh: Hey!\n\tts52: Sorry, I was on vacation. Feel free to challenge me again.\n\nHomeworlds Online (SDG# 22530)\nStarted: 2012.7.11, Ended: 2012.7.17\nParticipants: bugggg (S), tuxhedoh (N)\nWinner: tuxhedoh\n\n1) tuxhedoh: Homeworld G1 B2 R3 Tux\n\n2) bugggg: Homeworld B1 R2 G3\n\n3) tuxhedoh: Build R1 Tuxhedoh\n\ttuxhedoh: do you realize that by making your homeworld the same size as mine that it only makes us 1 star apart?\n\n4) bugggg: Build G1 Bugggg\n\n5) tuxhedoh: Trade R1 Y1 Tuxhedoh\n\n6) bugggg: Build G1 Bugggg\n\tbugggg: yeah i do, but i hope to have a big enough fleet by then! heh\n\tbugggg: but i'm still learning too\n\n7) tuxhedoh: Build Y1 Tuxhedoh\n\n8) bugggg: Trade G1 Y1 Bugggg\n\n9) tuxhedoh: Build Y2 Tuxhedoh\n\n10) bugggg: Build Y2 Bugggg\n\n11) tuxhedoh: Build R1 Tuxhedoh\n\n12) bugggg: Trade Y2 R2 Bugggg\n\n13) tuxhedoh: Trade Y1 B1 Tuxhedoh\n\n14) bugggg: Build Y1 Bugggg\n\n15) tuxhedoh: Build Y2 Tuxhedoh\n\n16) bugggg: Build Y2 Bugggg\n\n17) tuxhedoh: Sacrifice Y2 Tuxhedoh\nDiscover Y1 Tuxhedoh Y3 Tux0\nMove Y1 Tux0 Bugggg\nCatastrophe Bugggg Yellow\n\n18) bugggg: Build G1 Bugggg\n\ttuxhedoh: Most complicated move I've made... sacrificed y2, got to move twice, 1st move into new system, 2nd move into your system, catastrophe\n\n19) tuxhedoh: Build Y1 Tuxhedoh\n\tbugggg: oh shoot i didn't realize that you could do it that way, i thought that discover and move somehow couldn't be done together like that i guess. i knew about the sacrifice trick though (look up "the bluebird mistake" on youtube)\n\n20) bugggg: Trade G1 B1 Bugggg\n\n21) tuxhedoh: Trade Y1 G1 Tuxhedoh\n\n22) bugggg: Build B2 Bugggg\n\n23) tuxhedoh: Build Y1 Tuxhedoh\n\n24) bugggg: Trade B2 Y2 Bugggg\n\n25) tuxhedoh: Build G2 Tuxhedoh\n\n26) bugggg: Build B2 Bugggg\n\n27) tuxhedoh: Sacrifice Y2 Tuxhedoh\nDiscover B1 Tuxhedoh Y3 Tux0\nMove B1 Tux0 Bugggg\nCatastrophe Bugggg Blue\n\n28) bugggg: Sacrifice Y2 Bugggg\nDiscover G1 Bugggg Y3 Bug2\nMove G1 Bug2 Tuxhedoh\nCatastrophe Tuxhedoh Green\n\ttuxhedoh: I know one strategy. was scared you were going to use it on me prior to my turn.\n\tbugggg: darnit! i was going to swap that guy, didn't realize that you'd be able to get me on that turn!\n\n29) tuxhedoh: Trade R1 G1 Tuxhedoh\n\tbugggg: ahhhhhhhh i seeeee how it works now\n\tbugggg: oh wow am i stuck now? i don't see how i could move or swap at this point...\n\tbugggg: unless of course i kill one of your guys\n\ttuxhedoh: yeah. that was the same move that you could've done a turn earlier\r\n\n\n30) bugggg: Build G1 Bugggg\n\n31) tuxhedoh: Build R1 Tuxhedoh\n\n32) bugggg: Pass\n\n33) tuxhedoh: Trade R3 Y3 Tuxhedoh\n\n34) bugggg: Pass\n\n35) tuxhedoh: Build R1 Tuxhedoh\n\n36) bugggg: Pass\n\n37) tuxhedoh: Discover R1 Tuxhedoh Y3 Tux1\n\ttuxhedoh: Passing to see if I can figure out the win? :D\n\n38) bugggg: Pass\n\tbugggg: WELL NOW I'M DEAD, I HOPE THAT YOU'RE SATISFIED. you'll definitely win on the next turn.\n\n39) tuxhedoh: Sacrifice Y3 Tuxhedoh\nMove R1 Tuxhedoh Tux1\nMove R1 Tux1 Bugggg\nMove R1 Tux1 Bugggg\nCatastrophe Bugggg Red\n\n\nHomeworlds Online (SDG# 22557)\nStarted: 2012.7.15, Ended: 2012.7.22\nParticipants: pgadey (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: H R2 B1 G3\n\n2) pgadey: Homeworld G3 R2 B3\n\tMandrel: Have a good game\n\n3) Mandrel: Build G1 Mandrel\n\n4) pgadey: Trade B3 G3 Pgadey\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n\nHomeworlds Online (SDG# 22574)\nStarted: 2012.7.16, Ended: 2012.7.27\nParticipants: swatter (S), bugggg (N)\nWinner: bugggg\n\n1) bugggg: Homeworld R1 B2 G3\n\n2) swatter: Homeworld R2 B3 G3\n\n3) bugggg: Build G1 Bugggg\n\n4) swatter: Build G1 Swatter\n\n5) bugggg: Build G1 Bugggg\n\n6) swatter: Build G2 Swatter\n\n7) bugggg: Trade G1 Y1 Bugggg\n\n8) swatter: Build G1 Swatter\n\n9) bugggg: Trade G3 Y3 Bugggg\n\n10) swatter: Trade G1 Y1 Swatter\n\n11) bugggg: Sacrifice Y3 Bugggg\nDiscover G1 Bugggg Y3 Genocyber\nDiscover G1 Genocyber Y1 Ranma\nMove G1 Ranma Swatter\nCatastrophe Swatter Green\n\n12) swatter: Trade Y1 G1 Swatter\n\n13) bugggg: Trade Y1 G1 Bugggg\n\n14) swatter: Build G1 Swatter\n\n15) bugggg: Build G2 Bugggg\n\n16) swatter: Trade G1 R1 Swatter\n\n17) bugggg: Trade G1 Y1 Bugggg\n\n18) swatter: Build R1 Swatter\n\n19) bugggg: Build Y1 Bugggg\n\n20) swatter: Pass\n\n21) bugggg: Discover Y1 Bugggg Y3 Moss\n\n\nHomeworlds Online (SDG# 22531)\nStarted: 2012.7.17, Ended: 2012.8.27\nParticipants: ts52 (S), tuxhedoh (N)\nWinner: ts52\n\n1) tuxhedoh: Homeworld G1 B2 Y3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) tuxhedoh: Build Y1 Tuxhedoh\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n6) ts52: Build G1 Ts52\n\n7) tuxhedoh: Build R1 Tuxhedoh\n\n8) ts52: Discover G1 Ts52 B2 Grover\n\n9) tuxhedoh: Trade R1 Y1 Tuxhedoh\n\n10) ts52: Build G2 Grover\n\n11) tuxhedoh: Trade Y3 G3 Tuxhedoh\n\ttuxhedoh: Don't remember what I was wanting to do...\n\n12) ts52: Trade G2 R2 Grover\n\ttuxhedoh: That was it, figuring out how to get a green ship of my very own.\n\n13) tuxhedoh: Build G2 Tuxhedoh\n\n14) ts52: Build G2 Grover\n\n15) tuxhedoh: Build Y1 Tuxhedoh\n\n16) ts52: T G2 Y2 Grover\n\n17) tuxhedoh: Discover G2 Tuxhedoh B3 Ralph\n\n18) ts52: Build G2 Grover\n\n19) tuxhedoh: Build R1 Tuxhedoh\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild G3 Ts52\n\n21) tuxhedoh: Move Y1 Tuxhedoh Ralph\n\n22) ts52: Discover G2 Grover Y3 Bigbird\n\n23) tuxhedoh: Build Y1 Ralph\n\n24) ts52: Move G1 Grover Bigbird\n\n25) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild R1 Tuxhedoh\nBuild Y2 Tuxhedoh\nBuild G3 Ralph\n\n26) ts52: Discover G3 Ts52 B2 Gonzo\n\n27) tuxhedoh: Move R1 Tuxhedoh Ralph\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Grover\nBuild R2 Grover\n\n29) tuxhedoh: Sacrifice G3 Ralph\nBuild R2 Ralph\nBuild Y3 Tuxhedoh\nBuild G3 Ralph\n\n30) ts52: Sacrifice Y2 Grover\nMove Y2 Grover Bigbird\nMove Y2 Bigbird Tuxhedoh\nCatastrophe Tuxhedoh Yellow\n\n31) tuxhedoh: Sacrifice G3 Ralph\nBuild G3 Ralph\nBuild R3 Tuxhedoh\nBuild Y1 Ralph\n\ttuxhedoh: Sorry, had a small crisis to deal with that had me distracted from playing. TBH, I'm not sure what I should do at this point.\n\n32) ts52: Trade R2 Y2 Grover\n\n33) tuxhedoh: Move Y1 Ralph Tuxhedoh\n\tts52: No worries. Hope it was nothing too serious.\n\n34) ts52: Sacrifice Y2 Grover\nMove R2 Grover Bigbird\nMove R2 Bigbird Tuxhedoh\nCatastrophe Tuxhedoh Red\n\ttuxhedoh: Complete power failure at work, rented a generator, whole 9 yards.\n\tts52: Ugh, that sucks.\n\n35) tuxhedoh: Pass\n\n36) ts52: Trade G2 R2 Grover\n\ttuxhedoh: I got no idea in this game...\n\n\nHomeworlds Online (SDG# 22585)\nStarted: 2012.7.18, Ended: 2012.8.3\nParticipants: bugggg (S), tuxhedoh (N)\nWinner: tuxhedoh\n\n1) tuxhedoh: Homeworld Y1 B2 G3\n\n2) bugggg: Homeworld B3 R1 G3\n\n3) tuxhedoh: Build G1 Tuxhedoh\n\n4) bugggg: Build G1 Bugggg\n\n5) tuxhedoh: Trade G1 Y1 Tuxhedoh\n\n6) bugggg: Trade G1 Y1 Bugggg\n\n7) tuxhedoh: Build Y2 Tuxhedoh\n\n8) bugggg: Build Y2 Bugggg\n\n9) tuxhedoh: Trade Y1 R1 Tuxhedoh\n\n10) bugggg: Trade Y2 R2 Bugggg\n\n11) tuxhedoh: Build G1 Tuxhedoh\n\n12) bugggg: Build G1 Bugggg\n\n13) tuxhedoh: Build G1 Tuxhedoh\n\n14) bugggg: Trade R2 Y2 Bugggg\n\n15) tuxhedoh: Discover G1 Tuxhedoh Y3 Ralph\n\n16) bugggg: Build G2 Bugggg\n\n17) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild G2 Ralph\nBuild G2 Tuxhedoh\nBuild G3 Ralph\n\n18) bugggg: Sacrifice Y2 Bugggg\nDiscover G1 Bugggg Y2 Skeeter\nMove G1 Skeeter Ralph\nCatastrophe Ralph Green\n\n19) tuxhedoh: Build Y1 Tuxhedoh\n\tbugggg: how was that one?\n\n20) bugggg: Trade G3 Y3 Bugggg\n\n21) tuxhedoh: Trade Y1 B1 Tuxhedoh\n\n22) bugggg: Build G1 Bugggg\n\n23) tuxhedoh: Discover G1 Tuxhedoh Y3 Tux2\n\n24) bugggg: Trade G1 B1 Bugggg\n\n25) tuxhedoh: Build G1 Tuxhedoh\n\n26) bugggg: Build G1 Bugggg\n\n27) tuxhedoh: Build R1 Tuxhedoh\n\n28) bugggg: Discover Y1 Bugggg Y2 Bug2\n\n29) tuxhedoh: Move R1 Tuxhedoh Tux2\n\n30) bugggg: Move B1 Bugggg Bug2\n\n31) tuxhedoh: Build R2 Tux2\n\n32) bugggg: Move G1 Bugggg Bug2\n\n33) tuxhedoh: Move R2 Tux2 Bug2\n\n34) bugggg: Build G2 Bugggg\n\n35) tuxhedoh: Attack G1 Bug2\n\n36) bugggg: Sacrifice G2 Bugggg\nBuild Y1 Bug2\nBuild Y2 Bug2\nCatastrophe Bug2 Yellow\n\n37) tuxhedoh: Discover G1 Tux2 G2 Tux3\n\n38) bugggg: Build Y1 Bugggg\n\n39) tuxhedoh: Build G1 Tux3\n\n40) bugggg: Build Y1 Bugggg\n\n41) tuxhedoh: Move G1 Tuxhedoh Tux2\n\n42) bugggg: Trade Y1 B1 Bugggg\n\n43) tuxhedoh: Build G3 Tux2\n\n44) bugggg: Move B1 Bugggg Tux3\n\n45) tuxhedoh: Move B1 Tuxhedoh Tux2\n\n46) bugggg: Move Y1 Bugggg Tux3\n\n47) tuxhedoh: Sacrifice G3 Tux2\nBuild G3 Tux2\nBuild G3 Tuxhedoh\nBuild B1 Tux2\n\n48) bugggg: Build G3 Bugggg\n\n49) tuxhedoh: Trade G3 R3 Tux2\n\n50) bugggg: Trade G2 R2 Bugggg\n\n51) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild G2 Tux2\nBuild G3 Tuxhedoh\nBuild G3 Tuxhedoh\n\n52) bugggg: Move Y1 Tux3 Bugggg\n\n53) tuxhedoh: Move B1 Tux2 Tux3\n\n54) bugggg: Sacrifice R2 Bugggg\nAttack G1 Tux3\nAttack B1 Tux3\n\n55) tuxhedoh: Move R3 Tux2 Tux3\n\n56) bugggg: Trade B1 Y1 Tux3\n\n57) tuxhedoh: Build R2 Tux2\n\n58) bugggg: Build Y2 Tux3\n\n59) tuxhedoh: Sacrifice R2 Tux2\nAttack G1 Tux3\nAttack B1 Tux3\n\n60) bugggg: Sacrifice Y2 Tux3\nMove Y3 Bugggg Tux3\nMove Y3 Tux3 Tux2\n\n61) tuxhedoh: Attack Y1 Tux3\n\n62) bugggg: Build Y2 Bugggg\n\n63) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild G3 Tuxhedoh\nBuild B1 Tux3\nBuild B2 Tux3\n\n64) bugggg: Move G3 Bugggg Tux3\nCatastrophe Tux3 Green\n\n65) tuxhedoh: Discover G2 Tux2 B2 Tux4\n\n66) bugggg: Trade Y1 G1 Bugggg\n\n67) tuxhedoh: Build R2 Tux2\n\n68) bugggg: Build Y1 Bugggg\n\n69) tuxhedoh: Build G1 Tux4\n\n70) bugggg: Trade Y2 R2 Bugggg\n\n71) tuxhedoh: Discover G2 Tuxhedoh Y3 Tux5\n\n72) bugggg: Build G2 Bugggg\n\n73) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild G3 Tux5\nBuild G3 Tuxhedoh\nBuild R2 Tux2\n\n74) bugggg: Build Y1 Bugggg\n\n75) tuxhedoh: Trade G3 B3 Tuxhedoh\n\n76) bugggg: Move Y3 Tux2 Tux4\n\n77) tuxhedoh: Move B3 Tuxhedoh Tux5\n\n78) bugggg: Move Y1 Bugggg Tux4\n\n79) tuxhedoh: Move R2 Tux2 Tux4\n\n80) bugggg: Move Y1 Tux4 Tux5\n\n81) tuxhedoh: Sacrifice G3 Tuxhedoh\nBuild G3 Tux2\nBuild R3 Tux4\nBuild R3 Tuxhedoh\n\n82) bugggg: Move Y3 Tux4 Bugggg\n\n83) tuxhedoh: Sacrifice Y2 Tuxhedoh\nMove R3 Tux4 Bugggg\nMove R2 Tux4 Bugggg\nCatastrophe Bugggg Red\n\n84) bugggg: Sacrifice G1 Bugggg\nBuild Y2 Bugggg\n\n85) tuxhedoh: Trade G2 Y2 Tux5\n\n86) bugggg: Sacrifice Y3 Bugggg\nMove Y1 Tux5 Tuxhedoh\nMove Y1 Bugggg Tuxhedoh\nMove Y2 Bugggg Tuxhedoh\nCatastrophe Tuxhedoh Yellow\n\n87) tuxhedoh: Move G1 Tux2 Tux4\n\n88) bugggg: Build G1 Bugggg\n\n89) tuxhedoh: Sacrifice Y2 Tux5\nMove G2 Tux4 Bugggg\nMove G1 Tux4 Bugggg\nCatastrophe Bugggg G\n\n\tbugggg: OOOOOOPS. oh well.\n\nHomeworlds Online (SDG# 22602)\nVariants: "Hard time"\nStarted: 2012.7.20, Ended: 2012.10.25\nParticipants: ts52 (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld R1 B2 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) MagicJohn: Build G1 Magicjohn\n\tts52: Have a good game!\n\tMagicJohn: Most of my wins have been forfeits. I'm probably out of my depth so I'm hoping for a real steep learning curve..... Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) ts52: Discover G1 Ts52 B2 Grover\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) ts52: Build G1 Ts52\n\n9) MagicJohn: Discover G1 Magicjohn Y3 Bisbee\n\n10) ts52: Build G2 Grover\n\n11) MagicJohn: Discover Y1 Magicjohn G3 Flagstaff\n\n12) ts52: Trade G2 Y2 Grover\n\n13) MagicJohn: Build G2 Magicjohn\n\n14) ts52: Build G2 Grover\n\n15) MagicJohn: Build G2 Bisbee\n\n16) ts52: Trade G2 R2 Grover\n\n17) MagicJohn: Trade G2 R2 Magicjohn\n\n18) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Grover\nBuild G3 Ts52\n\n19) MagicJohn: Discover G1 Bisbee Y2 Tombstone\n\n20) ts52: Trade G2 B2 Ts52\n\n21) MagicJohn: Build G2 Magicjohn\n\n22) ts52: Move B2 Ts52 Tombstone\n\n23) MagicJohn: Trade G2 Y2 Magicjohn\n\n24) ts52: Build R1 Grover\n\n25) MagicJohn: Build G2 Magicjohn\n\n26) ts52: Sacrifice R1 Grover\nAttack G1 Tombstone\n\n27) MagicJohn: Move R2 Magicjohn Bisbee\n\n28) ts52: Build R1 Grover\n\n29) MagicJohn: Build Y1 Magicjohn\n\n30) ts52: Move R2 Grover Flagstaff\n\n31) MagicJohn: Discover Y1 Flagstaff R2 Sunflower\n\n32) ts52: Move Y2 Grover Flagstaff\n\n33) MagicJohn: Move Y1 Magicjohn Bisbee\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Grover\nBuild R3 Flagstaff\n\n35) MagicJohn: Sacrifice G3 Magicjohn\nBuild G3 Magicjohn\nBuild Y1 Sunflower\nBuild Y3 Magicjohn\n\n36) ts52: M R2 Flagstaff Sunflower\n\n37) MagicJohn: Sacrifice Y2 Magicjohn\nMove Y1 Sunflower Ts52\nMove Y1 Sunflower Ts52\nPass\n\n38) ts52: Sacrifice R2 Sunflower\nAttack Y1 Ts52\nAttack Y1 Ts52\n\n39) MagicJohn: Sacrifice Y3 Magicjohn\nMove Y1 Bisbee Grover\nMove Y1 Grover Ts52\nPass\nCatastrophe Ts52 Yellow\n\n40) ts52: Build B1 Tombstone\n\n41) MagicJohn: Trade G3 Y3 Magicjohn\n\n42) ts52: Trade G1 Y1 Ts52\n\n43) MagicJohn: Build Y1 Magicjohn\n\n44) ts52: Trade R1 Y1 Grover\n\n45) MagicJohn: Move Y1 Magicjohn Bisbee\n\n46) ts52: Sacrifice Y2 Flagstaff\nMove Y1 Grover Bisbee\nMove Y1 Ts52 Bisbee\nCatastrophe Bisbee Yellow\n\n47) MagicJohn: Build G1 Magicjohn\n\tMagicJohn: oops\n\n48) ts52: Move B1 Tombstone Flagstaff\n\n49) MagicJohn: Discover G1 Magicjohn G3 Tempe\n\n50) ts52: Trade G1 Y1 Grover\n\n51) MagicJohn: Build Y1 Magicjohn\n\n52) ts52: Build B1 Flagstaff\n\n53) MagicJohn: Move Y1 Magicjohn Tempe\n\n54) ts52: Build B3 Flagstaff\n\n55) MagicJohn: Trade Y3 B3 Magicjohn\n\n56) ts52: Trade B3 Y3 Flagstaff\n\n57) MagicJohn: Trade B3 Y3 Magicjohn\n\n58) ts52: Build B3 Tombstone\n\n59) MagicJohn: Discover G2 Magicjohn B3 Ajo\n\n60) ts52: Trade B3 R3 Tombstone\n\n61) MagicJohn: Build Y1 Tempe\n\n62) ts52: Move R3 Tombstone Tempe\n\n63) MagicJohn: Build G1 Ajo\n\tMagicJohn: Tactics 101: Apparently one should not knock out an opponent's base star early in the game just because it is possible...... \n\n64) ts52: Attack Y1 Tempe\n\n65) MagicJohn: Move G1 Tempe Magicjohn\n\tts52: Yeah, just because you can, doesn't always mean you should.\n\n66) ts52: Attack Y1 Tempe\n\tMagicJohn: But it was kinda fun.......\n\n67) MagicJohn: Build G2 Magicjohn\n\n68) ts52: Build B3 Flagstaff\n\n69) MagicJohn: Discover G1 Magicjohn B3 Payson\n\n70) ts52: Build Y2 Grover\n\n71) MagicJohn: Sacrifice Y3 Magicjohn\nMove G1 Payson Ts52\nMove G2 Ajo Ts52\nMove G1 Ajo Ts52\nCatastrophe Ts52 Green\n\tMagicJohn: Thanks for the game. Can't believe I won that mess. Sorry about taking so long between moves. My wife's been sick and my sleep patterns have been erratic, so I have been avoiding play if I'm obviously too spacey (pun intended) to initiate reasonably good moves. I know that my slow play makes it difficult for my opponents to stay engaged in the games. Take care. \n\tts52: Wow. Well done. Way to catch me napping, and lull me into a false sense of security. Good game.\n\tts52: Don't worry about the slow play. That's the whole point of SDG, to let play continue around life. Hope your wife is feeling better.\n\n\nHomeworlds Online (SDG# 21932)\nVariants: "Sinister"\nStarted: 2012.7.20, Ended: 2012.9.6\nParticipants: Uglyfoot (S), goblin981 (W), alihv (N), Mandrel (E)\nWinner: Uglyfoot\n\n1) alihv: Homeworld R1 B2 G3\n\n2) Mandrel: Homeworld R3 B2 G3\n\talihv: hi, have fun\n\n3) Uglyfoot: Homeworld B3 Y1 G3\n\n4) goblin981: H G3 B2 Y3\n\n5) alihv: B G1 Alihv\n\n6) Mandrel: Build G1 Mandrel\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) goblin981: B Y1 Goblin981\n\n9) alihv: T G1 Y1 Alihv\n\n10) Mandrel: Trade G1 Y1 Mandrel\n\n11) Uglyfoot: Trade G1 R1 Uglyfoot\n\n12) goblin981: T Y1 R1 Goblin981\n\n13) alihv: B Y1 Alihv\n\n14) Mandrel: Build G1 Mandrel\n\n15) Uglyfoot: Build G1 Uglyfoot\n\n16) goblin981: B Y1 Goblin981\n\n17) alihv: T Y1 R1 Alihv\n\n18) Mandrel: Discover G1 Mandrel B1 Running\n\n19) Uglyfoot: Discover G1 Uglyfoot R2 Redone\n\n20) goblin981: B R1 Goblin981\n\n21) alihv: D R1 Alihv G3 Freepussyriot\n\n22) Mandrel: Build G1 Running\n\tgoblin981: Anyone watching the Olympics? Where you guys from?\n\tgoblin981: Anyone watching the Olympics? Where you guys from?\n\n23) Uglyfoot: Build G1 Uglyfoot\n\n24) goblin981: D R1 Goblin981 Y1 Alpha\n\n25) alihv: B Y2 Alihv\n\n26) Mandrel: Build Y2 Mandrel\n\n27) Uglyfoot: Build R2 Uglyfoot\n\n28) goblin981: B Y2 Goblin981\n\n29) alihv: M Y1 Alihv Freepussyriot\n\n30) Mandrel: Move Y1 Mandrel Running\n\n31) Uglyfoot: Trade R2 Y2 Uglyfoot\n\n32) goblin981: M Y2 Goblin981 Running\n\n33) alihv: Sacrifice G3 Alihv\nBuild Y2 Freepussyriot\nBuild R2 Freepussyriot\nBuild Y3 Alihv\n\n34) Mandrel: Build Y3 Mandrel\n\n35) Uglyfoot: Build R2 Uglyfoot\n\n36) goblin981: T Y2 R2 Running\n\n37) alihv: M Y2 Freepussyriot Redone\n\n38) Mandrel: S Y3 Mandrel\nM Y1 Running Goblin981\nM G1 Running Goblin981\nM G1 Running Goblin981\n\n39) Uglyfoot: Trade R1 B1 Uglyfoot\n\n40) goblin981: S R2 Running\nAttack G1E Goblin981\nAttack G1E Goblin981\n\n41) alihv: Trade Y3 G3 Alihv\n\n42) Mandrel: B Y2 Goblin981\nC Goblin981 Y\n\n43) Uglyfoot: Discover R2 Uglyfoot B2 Blueone\n\n44) goblin981: T G1 Y1 Goblin981\n\n45) alihv: A G1S Redone\n\n46) Mandrel: Build G1 Mandrel\n\n47) Uglyfoot: Move G1 Uglyfoot Blueone\n\n48) goblin981: M G1 Goblin981 Alpha\n\n49) alihv: Sacrifice Y2 Redone\nMove G1 Redone Alpha\nMove G1 Alpha Mandrel\n\n50) Mandrel: Attack G1N Mandrel\n\n51) Uglyfoot: Build R1 Blueone\n\n52) goblin981: M G1 Alpha Mandrel\nCatastrophe Mandrel G\n\n53) alihv: Build G1 Alihv\n\n54) Mandrel: Trade Y2 G2 Mandrel\n\n55) Uglyfoot: Sacrifice Y2 Uglyfoot\nMove R2 Blueone Alpha\nMove R2 Alpha Goblin981\n\n56) goblin981: B Y1 Goblin981\n\n57) alihv: Move G3 Alihv Freepussyriot\n\n58) Mandrel: Build G1 Mandrel\n\n59) Uglyfoot: Attack R1W Goblin981\n\n60) goblin981: Discover R1 Alpha Y2 Beta\n\n61) alihv: Discover G3 Freepussyriot Y1 Good_game\n\n62) Mandrel: Trade G2 Y2 Mandrel\n\n63) Uglyfoot: Sacrifice R2 Goblin981\nAttack Y1W Goblin981\nAttack Y1W Goblin981\n\n\nHomeworlds Online (SDG# 22593)\nVariants: "Hard time"\nStarted: 2012.7.20, Ended: 2012.7.26\nParticipants: ajo (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld B1 R2 G3\n\n2) ajo: Homeworld G3 Y2 B3\n\tDanner: Hi! Have a nice game!\n\n3) Danner: Build G1 Danner\n\n4) ajo: Build B1 Ajo\n\n5) Danner: Trade G3 B3 Danner\n\n6) ajo: Discover B1 Ajo B1 Alpha\n\n7) Danner: Build B2 Danner\n\n8) ajo: Build B2 Ajo\n\n9) Danner: Trade B3 Y3 Danner\n\n10) ajo: Trade B2 Y2 Ajo\n\n11) Danner: Discover B2 Danner G3 Beta\n\n12) ajo: Build B2 Ajo\n\n13) Danner: Build B2 Beta\n\n14) ajo: Build B3 Ajo\n\n15) Danner: Sacrifice Y3 Danner\nMove B2 Beta Alpha\nMove B2 Alpha Ajo\nPass\nCatastrophe Ajo B\n\n16) ajo: Trade B1 G1 Alpha\n\n17) Danner: Build B1 Beta\n\tajo: "You maniacs! You finally did it! You blew it all up!"\n\tDanner: :-D\n\n18) ajo: Build G1 Alpha\n\n19) Danner: Build G2 Danner\n\n20) ajo: Build G2 Alpha\n\n21) Danner: Build G2 Danner\n\n22) ajo: Trade G1 Y1 Alpha\n\n23) Danner: Trade G2 Y2 Danner\n\n24) ajo: Trade G2 R2 Alpha\n\n25) Danner: Trade B2 R2 Beta\n\n26) ajo: Build R1 Alpha\n\n27) Danner: Build Y1 Danner\n\n28) ajo: Trade R2 B2 Alpha\n\n29) Danner: Move Y1 Danner Beta\n\n30) ajo: Build R1 Alpha\n\n31) Danner: Sacrifice G2 Danner\nBuild Y1 Danner\nBuild Y3 Beta\n\tajo: I'm just gonna keep edging out farther and farther on this limb I'm on...\n\n32) ajo: Move B2 Alpha Ajo\n\tDanner: The building of the mothership has been completed, our civilization has been restored!\n\n33) Danner: Build Y3 Danner\n\n34) ajo: Sacrifice Y2 Ajo\nMove Y1 Alpha Beta\nMove Y1 Beta Danner\nCatastrophe Danner Yellow\n\n35) Danner: Move Y3 Beta Alpha\n\n\tajo: Put a fork in me, I'm done. :P Play again?\n\tDanner: I would prefer not to, sorry. It distracts me from my project. But I don't really have a choice if it's a ladder challenge. :) Thanks for the game!\n\nHomeworlds Online (SDG# 22296)\nVariants: "Hard time"\nStarted: 2012.7.22, Ended: 2012.7.24\nParticipants: pgadey (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n\nHomeworlds Online (SDG# 22647)\nVariants: "Hard time"\nStarted: 2012.7.28, Ended: 2012.8.5\nParticipants: dlwillson (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld B1 R2 G3\n\n2) dlwillson: H B3 Y1 G3 Dlwillson\n\tDanner: Hi!\r\nI would like to apologize in advance: this game is likely to be slow.\n\n3) Danner: Build G1 Danner\n\n4) dlwillson: B G1 Dlwillson\n\n5) Danner: Trade G1 Y1 Danner\n\tdlwillson: That wasn't slow... :-)\n\tdlwillson: That wasn't slow... :-)\n\n6) dlwillson: T G1 B1 Dlwillson\n\tDanner: I just wanted to fill my time bank. Sorry again, but I must concentrate on my project now.\n\n7) Danner: Build Y1 Danner\n\tdlwillson: NP. See you after. May I ask about your project?\n\n8) dlwillson: B B1 Dlwillson\n\tDanner: Of course. :) It's a strategy browser game, still in early development.\n\n9) Danner: Build Y2 Danner\n\n10) dlwillson: D B1 Dlwillson G2 Field\n\n11) Danner: Discover Y1 Danner B3 Ocean\n\tdlwillson: It'd be stunning if it were a strategy game we both know and love and love to play...\n\tDanner: Like Homeworlds? :D\r\nWell, this game is in Hungarian. It's unlikely that it will be worthy to be translated.\r\nBtw, it's weekend, I guess I can have some fun on SDG. :)\n\n12) dlwillson: B B2 Field\n\tdlwillson: Danner, you are one of my favorite opponents!\n\n13) Danner: Sacrifice G3 Danner\nBuild Y2 Ocean\nBuild Y2 Ocean\nBuild Y3 Danner\n\tDanner: I'm glad to hear that. :)\n\n14) dlwillson: B B2 Dlwillson\n\tdlwillson: Hm. You ~ were ~ one of my favorite opponents... :-)\n\n15) Danner: Trade Y3 G3 Danner\n\tDanner: :-D\n\n16) dlwillson: D B2 Dlwillson G2 Forest\n\n17) Danner: Build Y3 Danner\n\n18) dlwillson: B G1 Dlwillson\n\n19) Danner: Trade Y3 B3 Danner\n\tdlwillson: Sorry for the take-back...\n\n20) dlwillson: T G3 Y3 Dlwillson\n\tdlwillson: Or, um, never mind? I tried to take a move back, but it didn't work. Now I have what I have. I suppose this will all be over sooon... :-)\n\n21) Danner: Build Y3 Danner\n\tDanner: Maybe I made my move too fast?\n\n22) dlwillson: B G1 Dlwillson\n\n23) Danner: Discover Y1 Ocean G2 Hill\n\n24) dlwillson: D G1 Dlwillson B2 Sky\n\n25) Danner: Sacrifice Y3 Danner\nMove Y2 Ocean Hill\nMove Y1 Hill Dlwillson\nMove Y2 Hill Dlwillson\nCatastrophe Dlwillson Y\n\n26) dlwillson: T B1 Y1 Dlwillson\n\n27) Danner: Move B3 Danner Dlwillson\n\n28) dlwillson: B G1 Dlwillson\n\tdlwillson: Airplane taking off. I'll check back when we land.\n\tDanner: Ok.\n\tdlwillson: Oop. Never mind. Good game. See you next time.\n\tDanner: Have a nice flight!\n\n29) Danner: Trade B3 R3 Dlwillson\n\tdlwillson: I lost this one on the sixth or seventh turn, and you played perfectly. Good game.\n\n30) dlwillson: S B2 Field\nT Y1 R1 Dlwillson\nT G1 R1 Dlwillson\n\tDanner: Thanks.\n\n31) Danner: Attack G1S Dlwillson\n\n32) dlwillson: A G1 Dlwillson\n\n33) Danner: Move Y2 Danner Dlwillson\n\tdlwillson: No... :-)\n\tDanner: Infinite loop, yay! :)\n\n34) dlwillson: B R1 Dlwillson\nC Dlwillson R\n\n35) Danner: Trade Y2 R2 Dlwillson\n\n36) dlwillson: Build G1 Dlwillson\n\n37) Danner: Attack G1S Dlwillson\n\n38) dlwillson: B G2 Dlwillson\n\n39) Danner: Build G3 Dlwillson\nCatastrophe Dlwillson G\n\tDanner: Good game.\n\n\nHomeworlds Online (SDG# 22668)\nVariants: "Hard time"\nStarted: 2012.8.3, Ended: 2012.8.9\nParticipants: Aristos (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) Aristos: Homeworld G2 B1 Y3\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Howdy\n\n4) Aristos: Build Y1 Aristos\n\tAristos: Well met. I probably won't be moving further tonight, but I'll try to move again in the morning if you move soon.\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Aristos: Discover Y1 Aristos G3 Opening\n\tTwoShort: No problem. I tend to slow down a lot after the first few moves in any case.\n\n7) TwoShort: Build G1 Twoshort\n\n8) Aristos: Build Y1 Opening\n\n9) TwoShort: Build Y2 Twoshort\n\n10) Aristos: Build Y2 Aristos\n\n11) TwoShort: Discover Y1 Twoshort G2 Grogar\n\n12) Aristos: Discover Y1 Opening B2 Shifter\n\n13) TwoShort: Build G1 Twoshort\n\n14) Aristos: Trade Y1 G1 Shifter\n\n15) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n16) Aristos: Build G2 Shifter\n\n17) TwoShort: Sacrifice G3 Twoshort\nBuild G3 Twoshort\nBuild G3 Yolonda\nBuild Y1 Grogar\n\n18) Aristos: Sacrifice Y2 Aristos\nMove G1 Shifter Twoshort\nMove G2 Shifter Twoshort\nCatastrophe Twoshort Green\n\n19) TwoShort: Sacrifice G3 Yolonda\nBuild Y2 Grogar\nBuild Y3 Twoshort\nBuild Y3 Twoshort\n\n20) Aristos: Discover Y1 Opening G2 Hehehehe\n\n21) TwoShort: Move Y3 Twoshort Hehehehe\n\n\tAristos: Well played.\n\tTwoShort: Thanks for the game.\n\nHomeworlds Online (SDG# 22674)\nVariants: "Unrated"\nStarted: 2012.8.4, Ended: 2012.8.5\nParticipants: bugggg (S), Krispy101 (N)\nWinner: bugggg\n\n1) Krispy101: Homeworld G3 B2 R3\n\n2) bugggg: Homeworld B1 Y2 G3\n\n3) Krispy101: Trade R3 Y3 Krispy101\n\n4) bugggg: Build G1 Bugggg\n\n5) Krispy101: Build Y1 Krispy101\n\n6) bugggg: Build G1 Bugggg\n\n7) Krispy101: Discover Y1 Krispy101 R1 Adam\n\n8) bugggg: Trade G1 R1 Bugggg\n\n9) Krispy101: Trade Y3 R3 Krispy101\n\n10) bugggg: Build G1 Bugggg\n\n11) Krispy101: Build R1 Krispy101\n\n12) bugggg: Trade G1 Y1 Bugggg\n\n13) Krispy101: Discover Y1 Adam G2 Bertie\n\n14) bugggg: Build G1 Bugggg\n\n15) Krispy101: Build Y1 Bertie\n\n16) bugggg: Discover G1 Bugggg Y3 Eyedea\n\n17) Krispy101: Trade R1 B1 Krispy101\n\n18) bugggg: Build G1 Eyedea\n\n19) Krispy101: Discover Y1 Bertie B1 Charlie\n\n20) bugggg: Build G2 Bugggg\n\n21) Krispy101: Build Y2 Bertie\n\n22) bugggg: Build Y2 Bugggg\n\n23) Krispy101: Move Y2 Bertie Charlie\n\n24) bugggg: Move G1 Eyedea Charlie\n\n25) Krispy101: Trade Y2 R2 Charlie\n\n26) bugggg: Sacrifice G2 Bugggg\nBuild G2 Charlie\nBuild G2 Charlie\n\n27) Krispy101: Attack G2 Charlie\n\n28) bugggg: Sacrifice Y2 Bugggg\nMove G1 Charlie Krispy101\nMove G2 Charlie Krispy101\n\n29) Krispy101: Attack G2 Krispy101\n\n30) bugggg: Sacrifice G1 Bugggg\nBuild G1 Krispy101\nCatastrophe Krispy101 Green\n\n31) Krispy101: Discover Y1 Charlie G2 Darren\n\n32) bugggg: Build Y2 Bugggg\n\n33) Krispy101: Build Y2 Darren\n\n34) bugggg: Trade Y2 B2 Bugggg\n\n35) Krispy101: Move Y2 Darren Charlie\n\n36) bugggg: Move B2 Bugggg Eyedea\n\n37) Krispy101: Build Y2 Charlie\n\n38) bugggg: Build B2 Eyedea\n\n39) Krispy101: Move Y2 Charlie Krispy101\n\n40) bugggg: Build Y3 Bugggg\n\n41) Krispy101: Build Y3 Bertie\n\n42) bugggg: Sacrifice Y3 Bugggg\nMove B2 Eyedea Krispy101\nMove B2 Eyedea Krispy101\nPass\nCatastrophe Krispy101 Blue\n\n\nHomeworlds Online (SDG# 22677)\nVariants: "Unrated"\nStarted: 2012.8.5, Ended: 2012.8.6\nParticipants: Krispy101 (S), bugggg (N)\nWinner: bugggg\n\n1) bugggg: Homeworld B2 Y3 G3\n\n2) Krispy101: Homeworld Y3 B2 G3\n\n3) bugggg: Build G1 Bugggg\n\n4) Krispy101: Build G1 Krispy101\n\n5) bugggg: Trade G1 R1 Bugggg\n\n6) Krispy101: Discover G1 Krispy101 B1 Alpha\n\n7) bugggg: Build R1 Bugggg\n\n8) Krispy101: Build G1 Krispy101\n\n9) bugggg: Move R1 Bugggg Alpha\n\n10) Krispy101: Trade G1 R1 Krispy101\n\n11) bugggg: Attack G1 Alpha\n\n12) Krispy101: Build R2 Krispy101\n\n13) bugggg: Build R2 Alpha\n\n14) Krispy101: Discover R1 Krispy101 Y1 Bravo\n\n15) bugggg: Build G1 Bugggg\n\n16) Krispy101: Move G3 Krispy101 Bravo\n\n17) bugggg: Trade G3 R3 Bugggg\n\n18) Krispy101: Build G1 Bravo\n\n19) bugggg: Sacrifice R1 Alpha\nPass\n\n20) Krispy101: Move G1 Bravo Krispy101\n\n21) bugggg: Build G2 Alpha\n\n22) Krispy101: Trade G1 B1 Krispy101\n\n23) bugggg: Trade G2 Y2 Alpha\n\n24) Krispy101: Build R1 Bravo\n\n25) bugggg: Sacrifice Y2 Alpha\nMove R3 Bugggg Alpha\nMove R3 Alpha Krispy101\n\n26) Krispy101: Move G3 Bravo Krispy101\n\n27) bugggg: Sacrifice R2 Alpha\nAttack G3 Krispy101\nAttack R2 Krispy101\n\n28) Krispy101: Move R1 Bravo Bugggg\n\n29) bugggg: Attack B1 Krispy101\n\n\nHomeworlds Online (SDG# 22688)\nVariants: "Hard time"\nStarted: 2012.8.7, Ended: 2012.8.14\nParticipants: dlwillson (S), ajo (N)\nWinner: dlwillson\n\n1) ajo: Homeworld B3 Y1 G3\n\n2) dlwillson: H Y3 B2 G3\n\n3) ajo: Build G1 Ajo\n\n4) dlwillson: Build G1 Dlwillson\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) ajo: Build Y2 Ajo\n\n8) dlwillson: B Y2 Dlwillson\n\n9) ajo: Trade Y2 R2 Ajo\n\n10) dlwillson: Discover Y1 Dlwillson G1 Field\n\n11) ajo: Discover Y1 Ajo G2 Alpha\n\n12) dlwillson: B Y2 Dlwillson\n\n13) ajo: Discover Y1 Alpha G1 Beta\n\n14) dlwillson: Trade Y2 R2 Dlwillson\n\n15) ajo: Build Y2 Beta\n\n16) dlwillson: D Y2 Dlwillson B1 Sky\n\n17) ajo: Build R1 Ajo\n\n18) dlwillson: B Y2 Field\n\n19) ajo: Trade R1 B1 Ajo\n\n20) dlwillson: D Y2 Field B3 Sea\n\n21) ajo: Sacrifice B1 Ajo\nTrade Y1 B1 Beta\n\n22) dlwillson: S G3 Dlwillson\nB Y1 Sea\nB Y3 Sky\nB Y3 Sky\n\n23) ajo: Build B1 Beta\n\n24) dlwillson: M Y3 Sky Dlwillson\n\n25) ajo: Build B2 Beta\n\n26) dlwillson: T Y2 B2 Sea\n\n27) ajo: Discover B2 Beta Y2 Gamma\n\n28) dlwillson: D Y2 Sky B3 Focus\n\n29) ajo: Build G1 Ajo\n\n30) dlwillson: M B2 Sea Field\n\n31) ajo: Build G2 Ajo\n\n32) dlwillson: T Y3 G3 Dlwillson\n\n33) ajo: Build Y3 Beta\n\n34) dlwillson: T Y3 G3 Sky\n\n35) ajo: Trade G3 Y3 Ajo\n\n36) dlwillson: T Y2 G2 Focus\n\n37) ajo: Move Y3 Beta Focus\n\n38) dlwillson: S G2 Focus\nB G2 Sky\nB Y2 Field\n\n39) ajo: Move G1 Ajo Gamma\n\n40) dlwillson: Move Y2 Field Gamma\n\n41) ajo: Sacrifice Y3 Focus\nMove Y2 Beta Dlwillson\nMove B1 Beta Dlwillson\nMove B1 Beta Dlwillson\n\tajo: I didn't want to do this...\n\n42) dlwillson: A Y2 Dlwillson\n\tdlwillson: You're early, I think.\n\tdlwillson: Wow, phone... Anyway, excellent move. I can see several poor responses. A moment, please.\n\n43) ajo: Sacrifice G1 Gamma\nBuild B3 Dlwillson\nCatastrophe Dlwillson Blue\n\n44) dlwillson: Sacrifice G3 Sky\nBuild B1 Field\nBuild G1 Dlwillson\nBuild Y3 Gamma\n\tajo: You're still ahead by a lot, though. I'm down to just one star system, which has always been hard for me to get out of.\n\n45) ajo: Move B2 Gamma Sea\n\n46) dlwillson: Sacrifice Y2 Dlwillson\nMove Y3 Gamma Ajo\nMove Y2 Gamma Ajo\nCatastrophe Ajo Y\n\n47) ajo: Build R1 Ajo\n\n48) dlwillson: S G3 Dlwillson\nB Y1 Sea\nB Y2 Field\nB B1 Field\n\n49) ajo: Sacrifice R2 Ajo\nAttack Y1 Sea\nAttack Y1 Sea\n\n50) dlwillson: Move B1 Field Ajo\n\tajo: Yep, I think you win. :)\n\n51) ajo: Attack B1 Ajo\n\tdlwillson: Yes, but your attack was very strong, and if you'd had a follow-up, I'd be in trouble now.\n\tajo: Well, that's always the case, *if* one'd had a followup. :P I would say: *Your* strong attack forced me to come up with a distraction, but you dealt with my distraction without getting rattled, and then went back to your original plan, against which I still had no real defense.\n\n52) dlwillson: S Y2 Field\nM B1 Field Ajo\nM B2 Field Ajo\nC Ajo B\n\tajo: Maybe I did overreact to your attack on turn 20 (move y2 from Field to Gamma). You might *not* have sacced your only red ship in order to take my two ships, after all. But that's what I was reacting to. It was either let you take them, or distract you with an attack on your homeworld. :)\n\tdlwillson: I think I would've panicked if I hadn't had a bunch of time to consider my move.\n\tdlwillson: very good game, in any case\n\n\nHomeworlds Online (SDG# 22703)\nVariants: "Hard time"\nStarted: 2012.8.12, Ended: 2012.8.22\nParticipants: Aristos (S), Danner (N)\nWinner: Danner\n\n1) Danner: Homeworld B1 R2 G3 Danner\n\n2) Aristos: Homeworld G3 B2 Y3\n\tDanner: Hi! Have a nice game!\n\n3) Danner: Build G1 Danner\n\n4) Aristos: Build Y1 Aristos\n\n5) Danner: Build G1 Danner\n\n6) Aristos: Discover Y1 Aristos Y1 Blip\n\n7) Danner: Trade G1 Y1 Danner\n\n8) Aristos: Build Y2 Aristos\n\n9) Danner: Build Y2 Danner\n\n10) Aristos: Discover Y1 Blip G3 Behemoth\n\n11) Danner: Discover Y1 Danner B3 Ocean\n\n12) Aristos: Build Y1 Behemoth\n\n13) Danner: Sacrifice G3 Danner\nBuild Y2 Ocean\nBuild Y3 Ocean\nBuild Y3 Danner\n\n14) Aristos: Sacrifice Y2 Aristos\nDiscover Y1 Behemoth R1 Tiny\nMove Y1 Tiny Ocean\nCatastrophe Ocean Yellow\n\n15) Danner: Build G1 Danner\n\n16) Aristos: Build Y1 Behemoth\n\n17) Danner: Discover G1 Danner Y3 Sun\n\n18) Aristos: Move Y1 Behemoth Danner\n\n19) Danner: Trade Y3 G3 Danner\n\n20) Aristos: Attack G1 Danner\n\n21) Danner: Attack G1S Danner\n\n22) Aristos: Build Y1 Behemoth\n\n23) Danner: Attack Y1S Danner\n\tAristos: I thought the rule was no take backs. Otherwise all attacks would end in a circular loop. \n\tAristos: (well, any that take place in a contested system)\n\tAristos: If we just keep attacking and swapping the same ship back and forth, how does this get resolved?\n\tDanner: I don't know of any such rules. But I think it should be declared a draw if nobody wants to break the loop.\n\tAristos: There's no way to declare a draw.\n\tAristos: In a very strange twist of fate, I find myself trying to find a better move than "attack G1 Danner" in order to help you so that we can move the game along. Here's the best I've come up with:\r\nYou: trade G3 R3 Danner\r\nMe: build G1 Danner\r\nYou: Sacrifice R3, take all ships.\r\n\r\nLeaves you with 4 ships in Danner and a fifth to my 2, though I have the only capital ship on the board and it's my turn. \r\n\r\nIt isn't my optimal play... if you trade your G3 for R3, my better play is to sacrifice the G1 to build a Y1 in Behemoth so I can build bigger yellow ships, but I'm trying to come up with a pattern that leaves us both in an ok position to break the cycle.\r\n\r\nThoughts?\n\tDanner: Losing one's last big ship while the opponent still has one... is rather unfortunate.\r\nHowever, I'm very curious about the official solution for situations like this. I'm glad you paged the admin.\n\tAristos: The opinion on Boardgamegeek forums is that although take backs are legal, one player or the other is misreading their best play on the board, but I really don't see it in our case.\r\nhttp://boardgamegeek.com/article/9853513#9853513\n\n24) Aristos: Build Y2 Aristos\n\tAristos: Ok. Let me try this. I think this works. Your move...\n\tDanner: I believe a situation is possible where whoever breaks the loop will eventually lose (assuming optimal play).\n\n25) Danner: Discover Y1 Danner B3 Ocean\n\tAristos: I believe that to be the case too... it certainly may be the case in what I just tried. We shall see. I've left the "Admin Call" turned on because I really would like to hear about that scenario.\n\n26) Aristos: Trade Y2 R2 Aristos\n\n27) Danner: Build Y2 Danner\n\n28) Aristos: Build R1 Aristos\n\n29) Danner: Trade Y2 R2 Danner\n\n30) Aristos: Build Y2 Aristos\n\n31) Danner: Build Y2 Danner\n\n32) Aristos: Sacrifice Y2 Aristos\nDiscover R1 Aristos G1 Pass\nDiscover R1 Pass Y3 Sol\n\n33) Danner: Move R2 Danner Sol\n\n34) Aristos: Build Y2 Aristos\n\n35) Danner: Attack R1S Sol\n\n36) Aristos: Build R1 Aristos\n\n37) Danner: Sacrifice G1 Sun\nBuild Y3 Ocean\n\n38) Aristos: Discover R2 Aristos G1 Dim\n\n39) Danner: Move Y3 Ocean Dim\n\n40) Aristos: Build R1 Dim\n\n41) Danner: Sacrifice R2 Sol\nAttack R2S Dim\nAttack R1S Dim\n\n42) Aristos: Build R2 Aristos\n\n43) Danner: Sacrifice Y2 Danner\nMove R1 Dim Aristos\nMove R2 Dim Aristos\nCatastrophe Aristos R\n\n44) Aristos: Trade Y2 R2 Aristos\n\n45) Danner: Build Y2 Dim\n\n\tAristos: Congrats. All moves lead to a pretty quick ending for me. I still want to know about the take backs earlier. Admin isn't responsive, unfortunately.\n\tDanner: Thanks! I'm curious about it too. Fortunately, the call is still in effect.\n\nHomeworlds Online (SDG# 22721)\nVariants: "Hard time"\nStarted: 2012.8.15, Ended: 2013.1.4\nParticipants: dlwillson (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B2 G3\n\n2) dlwillson: H B2 R3 G3\n\tdlwillson: Always takes banker... Have a great game, Two Short.\n\tdlwillson: Always takes banker... Have a great game, Two Short.\n\n3) TwoShort: Build G1 Twoshort\n\tTwoShort: Now that you say that, I notice I took Banker our last game, but I generally take Goldilocks as first player. I think they're comparably strong, so I mix it up occasionally. In any case, have a great game!\n\n4) dlwillson: Build G1 Dlwillson\n\tdlwillson: I think you've taken banker in every game we've played. I almost always go goldilocks, but I've been taking fortress occasionally lately. Dethdukk mocks me for it.\n\n5) TwoShort: Trade G1 R1 Twoshort\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\tTwoShort: If I'd realized that, I'd definitely have gone Goldilocks :) Oh well. I don't like Fortress, but hence I never take it and don't really have the experience to justify my dislike. \n\n7) TwoShort: Build R2 Twoshort\n\tdlwillson: Y'know one thing I hate about Homeworlds? The first three'ish turns, where it's a lock-step dance of copying the 1st player's moves. Best game ever, but that annoys me very much.\n\n8) dlwillson: Build R2 Dlwillson\n\n9) TwoShort: Trade R2 Y2 Twoshort\n\n10) dlwillson: T R2 Y2 Dlwillson\n\n11) TwoShort: Build R2 Twoshort\n\n12) dlwillson: Build R2 Dlwillson\n\n13) TwoShort: Trade R2 G2 Twoshort\n\n14) dlwillson: T R2 G2 Dlwillson\n\n15) TwoShort: Build R2 Twoshort\n\n16) dlwillson: B R2 Dlwillson\n\n17) TwoShort: Discover R1 Twoshort Y3 Yolonda\n\n18) dlwillson: Discover R1 Dlwillson G1 Field\n\n19) TwoShort: Discover G2 Twoshort R3 Rover\n\n20) dlwillson: T R2 B2 Dlwillson\n\n21) TwoShort: Build G1 Twoshort\n\n22) dlwillson: Build B1 Dlwillson\n\tdlwillson: Well, at least we're out of lock-step, banker... :-)\n\n23) TwoShort: Move G1 Twoshort Yolonda\n\n24) dlwillson: Build R2 Field\n\n25) TwoShort: Discover R2 Twoshort B3 Bluestar\n\n26) dlwillson: M B1 Dlwillson Field\n\n27) TwoShort: Sacrifice G2 Rover\nBuild R2 Yolonda\nBuild R3 Bluestar\n\n28) dlwillson: S G2 Dlwillson\nB B1 Dlwillson\nB B1 Field\n\n29) TwoShort: Move R2 Yolonda Field\n\n30) dlwillson: Sacrifice R1 Field\nAttack R2 Field\n\n31) TwoShort: Trade R3 G3 Bluestar\n\n32) dlwillson: Trade R2 Y2 Field\n\n33) TwoShort: Sacrifice G3 Bluestar\nBuild R1 Bluestar\nBuild R2 Bluestar\nBuild R3 Yolonda\n\n34) dlwillson: Build B3 Field\n\n35) TwoShort: Trade R2 G2 Bluestar\n\n36) dlwillson: Build R2 Field\n\n37) TwoShort: Build G1 Yolonda\n\n38) dlwillson: S Y2 Field\nD B1 Field G3 Forest\nM R2 Field Forest\n\n39) TwoShort: Sacrifice G2 Bluestar\nBuild G2 Twoshort\nBuild G2 Yolonda\n\n40) dlwillson: T B3 Y3 Field\n\n41) TwoShort: Move G2 Yolonda Field\n\n42) dlwillson: Sacrifice Y3 Field\nDiscover R2 Field Y2 Nugget\nDiscover B2 Dlwillson Y1 Eagle\nDiscover B1 Field Y3 Sovereign\n\n43) TwoShort: Sacrifice Y2 Twoshort\nMove R3 Yolonda Nugget\nDiscover G2 Twoshort R3 Rover\n\n44) dlwillson: B G2 Dlwillson\n\n45) TwoShort: Trade R2 Y2 Bluestar\n\tTwoShort: I love these straightforward, uncomplicated games. :)\n\n46) dlwillson: Sacrifice G3 Dlwillson\nBuild B3 Eagle\nBuild B3 Sovereign\nBuild G3 Dlwillson\n\n47) TwoShort: Sacrifice G2 Rover\nBuild R2 Yolonda\nBuild R3 Bluestar\n\n48) dlwillson: Sacrifice B2 Eagle\nTrade G3 Y3 Dlwillson\nTrade B3 G3 Sovereign\n\tdlwillson: yes. straightforward, uncomplicated. yep.\n\tSilentTitan: oh... for the days of simple games like this one\n\tdlwillson: Hey TS, ST is bombing our game!\n\n49) TwoShort: Attack R2 Nugget\n\n50) dlwillson: S G2 Dlwillson\nBuild B2 Forest\nB B3 Forest\n\n51) TwoShort: Build G2 Twoshort\n\n52) dlwillson: M B3 Eagle Yolonda\n\n53) TwoShort: Discover R2 Yolonda Y1 Yaz\n\n54) dlwillson: Sacrifice B3 Yolonda\nTrade Y2 G2 Dlwillson\nTrade B2 Y2 Forest\nPass\n\n55) TwoShort: Move R3 Bluestar Twoshort\n\n56) dlwillson: S G3 Sovereign\nB B2 Sovereign\nB B3 Sovereign\nB G3 Dlwillson\n\n57) TwoShort: Sacrifice G3 Twoshort\nBuild Y1 Bluestar\nBuild Y1 Bluestar\nBuild G3 Twoshort\n\n58) dlwillson: S Y2 Forest\nM B1 Forest Twoshort\nM B1 Sovereign Twoshort\n\n59) TwoShort: Move Y1 Bluestar Twoshort\n\n60) dlwillson: Build Y2 Dlwillson\n\n61) TwoShort: Move G1 Yolonda Yaz\n\n62) dlwillson: M G2 Dlwillson Field\n\n63) TwoShort: Move R1 Yolonda Yaz\n\n64) dlwillson: S Y2 Dlwillson\nM B2 Sovereign Twoshort\nM G3 Dlwillson Yaz\nC Twoshort B\n\n65) TwoShort: Discover R2 Yaz Y2 Yelly\n\n66) dlwillson: Move B3 Sovereign Yelly\n\tdlwillson: Wow. I'm sorry for taking so long!\n\tdlwillson: We've been playing this game for more than 3 months!\n\tTwoShort: No problem; I haven't exactly been speedy this game.\n\n67) TwoShort: Discover R2 Yelly Y3 Yellonia\n\n68) dlwillson: Move G3 Yaz Yolonda\n\tdlwillson: It's a good game so far! I feel like I've finally turned in a decent performance against you, and that's been a long time coming.\n\n69) TwoShort: Move G1 Yaz Forest\n\n70) dlwillson: A G1 Forest\n\n71) TwoShort: Move G2 Twoshort Forest\n\n72) dlwillson: A G2 Forest\n\tTwoShort: Definitely an excellent game; I've felt like I'm on the edge of doom for most of it, looking for a way to weasel out. But you never quite give me the opening.\n\n73) TwoShort: Sacrifice Y2 Bluestar\nMove G2 Field Forest\nMove R2 Yellonia Field\nCatastrophe Forest Green\n\n\tdlwillson: Good game, Twoshort. I know you like to see how things play out, but I prefer to wrap them up when they're done, and this one's done. Well played.\n\nHomeworlds Online (SDG# 22579)\nStarted: 2012.8.23, Ended: 2012.9.3\nParticipants: ts52 (S), Aristos (N)\nWinner: ts52\n\n1) Aristos: Homeworld Y3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Aristos: Build G1 Aristos\n\tts52: Have a good game.\n\n4) ts52: B G1 Ts52\n\n5) Aristos: Discover G1 Aristos B2 Swap\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\n7) Aristos: Trade G1 Y1 Swap\n\n8) ts52: Build G1 Ts52\n\n9) Aristos: Build G1 Aristos\n\n10) ts52: Build G2 Grover\n\n11) Aristos: Build G2 Aristos\n\n12) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild G3 Ts52\n\n13) Aristos: Move G2 Aristos Swap\n\n14) ts52: Trade G2 Y2 Grover\n\n15) Aristos: Sacrifice G3 Aristos\nBuild G2 Swap\nBuild G3 Aristos\nBuild Y1 Swap\n\n16) ts52: Trade G3 R3 Ts52\n\n17) Aristos: Discover Y1 Swap G3 Instantiate\n\n18) ts52: Move R3 Ts52 Instantiate\n\n19) Aristos: Trade G1 R1 Aristos\n\n20) ts52: Attack Y1 Instantiate\n\n21) Aristos: Move G2 Swap Grover\n\n22) ts52: Build R1 Instantiate\n\n23) Aristos: Sacrifice R1 Aristos\nAttack Y2 Grover\n\n24) ts52: Move R3 Instantiate Swap\n\n25) Aristos: Trade G3 R3 Aristos\n\n26) ts52: Attack Y1 Swap\n\n27) Aristos: Sacrifice G2 Swap\nBuild Y2 Grover\nBuild G1 Grover\nCatastrophe Grover Green\n\n\tAristos: Good game.\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 22394)\nVariants: "No undo"\nStarted: 2012.8.23, Ended: 2012.9.3\nParticipants: ajo (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld Y3 B1 G3\n\n2) ajo: Homeworld R2 B3 G3\n\n3) Aristos: Build G1 Aristos\n\n4) ajo: Build G1 Ajo\n\n5) Aristos: Discover G1 Aristos B2 Bubba\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) Aristos: Build G1 Aristos\n\n8) ajo: Build Y1 Ajo\n\n9) Aristos: Build G1 Bubba\n\n10) ajo: Discover Y1 Ajo B1 Alpha\n\n11) Aristos: Trade G1 Y1 Bubba\n\n12) ajo: Build Y2 Ajo\n\n13) Aristos: Build Y2 Bubba\n\n14) ajo: Move Y2 Ajo Alpha\n\n15) Aristos: Discover Y1 Bubba G1 Yokel\n\n16) ajo: Build G2 Ajo\n\n17) Aristos: Build G2 Bubba\n\n18) ajo: Trade Y2 G2 Alpha\n\n19) Aristos: Sacrifice G3 Aristos\nBuild G3 Aristos\nBuild G3 Aristos\nBuild Y2 Yokel\n\n20) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Alpha\nBuild Y3 Ajo\n\n21) Aristos: Trade G1 R1 Aristos\n\n22) ajo: Trade Y1 R1 Alpha\n\n23) Aristos: Sacrifice Y2 Bubba\nMove Y1 Yokel Ajo\nMove Y2 Yokel Ajo\nCatastrophe Ajo Yellow\n\n24) ajo: Build G1 Alpha\n\n25) Aristos: Trade G2 Y2 Bubba\n\n26) ajo: Discover G1 Alpha B2 Beta\n\n27) Aristos: Discover G3 Aristos G2 Redneck\n\n28) ajo: Sacrifice G3 Ajo\nBuild G1 Alpha\nBuild G3 Ajo\nBuild Y1 Alpha\n\n29) Aristos: Build Y1 Bubba\n\n30) ajo: Move G2 Alpha Redneck\n\n31) Aristos: Sacrifice Y1 Bubba\nMove G3 Redneck Alpha\n\n32) ajo: Sacrifice Y2 Alpha\nMove G1 Beta Aristos\nMove G2 Redneck Aristos\n\n33) Aristos: Sacrifice Y2 Bubba\nDiscover G1 Bubba Y1 Glimmer\nMove G3 Alpha Ajo\n\tajo: That was a pretty good move. I was expecting you'd move your g3 backward to Aristos instead.\n\tAristos: Still, as good as it may have been, you counterstrike is devastating no matter how I play it. \n\tAristos: Wait... I think I found an out...\n\n34) ajo: Trade G2 Y2 Ajo\n\tajo: Hm, dramatic. I think you were pretty okay just changing your g3 at home to some other color; but this certainly raises the stakes for me.\n\tajo: And I think you win, too. :P\n\n35) Aristos: Attack G3 Ajo\n\n36) ajo: Sacrifice Y2 Ajo\nMove G1 Alpha Ajo\nMove Y1 Alpha Ajo\n\tAristos: If I just traded for another color I had a problem... if I picked red, you would just shift colors of your green ships to red. If I picked any other color, you would take my red ship and then build up to destroy at least one of my stars.\n\n37) Aristos: Trade G3 R3 Ajo\n\n38) ajo: Sacrifice G2 Aristos\nBuild G2 Ajo\nBuild Y1 Ajo\n\n39) Aristos: Sacrifice R3 Ajo\nAttack G2 Ajo\nAttack G1 Ajo\nAttack G1 Aristos\n\tajo: You'll never take me alive! :p\n\n40) ajo: Attack G1 Ajo\n\tAristos: You can run, but you can't... build.\n\n41) Aristos: Trade G3 R3 Ajo\n\n\tajo: Well, I could stretch it *one* more turn, I think... but that's enough. :) Good game.\n\tAristos: Thanks for the game.\n\nHomeworlds Online (SDG# 22626)\nStarted: 2012.8.28, Ended: 2012.9.27\nParticipants: therealmaxl (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R3 B2 G3\n\n2) therealmaxl: Homeworld Y1 B2 G3\n\n3) Mandrel: Build G1 Mandrel\n\n4) therealmaxl: Build G1 Therealmaxl\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) therealmaxl: Discover G1 Therealmaxl Y3 Yonorium\n\n7) Mandrel: Build G1 Mandrel\n\n8) therealmaxl: Build G1 Yonorium\n\n9) Mandrel: Build G2 Mandrel\n\n10) therealmaxl: Build G2 Therealmaxl\n\n11) Mandrel: Discover G2 Mandrel B1 Cluster\n\n12) therealmaxl: Discover G1 Yonorium B2 Bofo\n\n13) Mandrel: Sacrifice G3 Mandrel\nBuild G2 Mandrel\nBuild G3 Mandrel\nBuild G3 Cluster\n\n14) therealmaxl: Trade G1 B1 Bofo\n\n15) Mandrel: Trade G3 Y3 Mandrel\n\n16) therealmaxl: Sacrifice G3 Therealmaxl\nBuild B1 Bofo\nBuild G1 Yonorium\nBuild G3 Therealmaxl\n\n17) Mandrel: Build G3 Mandrel\n\n18) therealmaxl: Move G1 Yonorium Cluster\n\n19) Mandrel: Trade G3 R3 Cluster\n\n20) therealmaxl: Build G3 Yonorium\n\n21) Mandrel: Sacrifice Y3 Mandrel\nMove R3 Cluster Yonorium\nMove R3 Yonorium Therealmaxl\nMove G2 Cluster Yonorium\n\n22) therealmaxl: Move G3 Yonorium Therealmaxl\n\n23) Mandrel: Move G2 Yonorium Therealmaxl\nCatastrophe Therealmaxl G\n\ttherealmaxl: good game\n\n\tMandrel: Good game.\n\ttherealmaxl: Good game.\r\n\r\nI'm sorry I'm so terrible at homeworlds over such long periods of time\n\nHomeworlds Online (SDG# 22755)\nStarted: 2012.8.29, Ended: 2012.10.9\nParticipants: Weishaupt (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\tWeishaupt: This is my first time playing, FYI!\n\tts52: Ok, are you familiar with the rules? Feel free to ask me questions. And post a move, then undo it, so I'll get email that you moved, and see your question.\n\n2) Weishaupt: Homeworld G1 B2 Y3\n\tWeishaupt: I'm getting a handle on the rules. Thanks! Would be fine with strategy tips as well.\n\tts52: To start, it's generally considered a good idea to start with blue, yellow and green in your homeworld, and make sure your homeworld system aren't the same sizes as mine (otherwise our homeworlds end up being close, in what's called a small universe, and it's easy to quickly attack each other.)\n\tts52: Lastly, have fun! :)\n\n3) ts52: Build G1 Ts52\n\n4) Weishaupt: Build Y1 Weishaupt\n\n5) ts52: Discover G1 Ts52 B1 Gonzo\n\n6) Weishaupt: Discover Y1 Weishaupt B3 Horchata\n\n7) ts52: Build G1 Ts52\n\n8) Weishaupt: Trade Y3 G3 Weishaupt\n\n9) ts52: Build G2 Gonzo\n\n10) Weishaupt: Build G2 Weishaupt\n\n11) ts52: Trade G2 Y2 Gonzo\n\n12) Weishaupt: Build G2 Weishaupt\n\n13) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Ts52\n\tts52: Since this is your first game, I wont kill you outright. But you should _never_ build up so you have 4 pieces of the same color in the same system. I could declare a catastrophe on your homeworld now and end the game. You also shouldn't build up 3 pieces of the same color unless you are certain there's no way your opponent can move a piece of that color in to create a catastrophe.\n\n14) Weishaupt: Trade G3 Y3 Weishaupt\n\tts52: Note I just created 3 green ships in my homeworld, because I know you can't get a green ship there this turn. \n\tWeishaupt: A-hah, I see my mistake. Feel free to kill me if I deserve it though!\n\n15) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Horchata\nMove G1 Horchata Weishaupt\nCatastrophe Weishaupt Green\n\n16) Weishaupt: Trade Y1 G1 Horchata\n\tts52: Fair enough. Thet\n\tts52: Grrr, that's a big blow, but it's not over yet.\n\n17) ts52: Trade G3 R3 Ts52\n\n18) Weishaupt: Trade G1 Y1 Horchata\n\tWeishaupt: Ha, I am certainly wasting enough turns.\n\n19) ts52: Discover R3 Ts52 Y1 Zoe\n\n20) Weishaupt: Trade Y3 G3 Weishaupt\n\tts52: Yeah, indecision can be tough. \n\n21) ts52: Move R3 Zoe Weishaupt\n\n\nHomeworlds Online (SDG# 22622)\nVariants: "Hard time"\nStarted: 2012.8.29, Ended: 2012.9.16\nParticipants: dlwillson (S), Weishaupt (N)\nWinner: dlwillson\n\n1) Weishaupt: Homeworld G3 B1 R3\n\tWeishaupt: This is my first game! So apologies if I make some mistakes.\n\n2) dlwillson: H Y2 B3 G3\n\tdlwillson: NP. I'm a pretty good player. Do you want advice or feedback?\n\n3) Weishaupt: Build R1 Weishaupt\n\tWeishaupt: That would be great! \n\n4) dlwillson: Build G1 Dlwillson\n\tdlwillson: Well, you're doing fine so far. :-)\n\n5) Weishaupt: Trade R1 Y1 Weishaupt\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) Weishaupt: Build R1 Weishaupt\n\n8) dlwillson: Build R1 Dlwillson\n\n9) Weishaupt: Trade R1 G1 Weishaupt\n\n10) dlwillson: B G1 Dlwillson\n\tdlwillson: OK, time for lesson 1: Never waste a move. Always be playing to win. If the win isn't in sight, play to improve your position, or damage my position, or to stop me from doing that to you. This move should work with your next move, unless I surprise you. Try to limit my options.\n\tdlwillson: Building another yellow is probably stronger than trading to green, right now.\n\tdlwillson: Trading to blue is also stronger.\n\tdlwillson: At this point in the game, you're trying to lock me out of a color and/or get a medium ship before I do.\n\tdlwillson: I'll give you a day to take back your turn, if you want to.\n\n11) Weishaupt: Build Y1 Weishaupt\n\n12) dlwillson: T R1 B1 Dlwillson\n\tWeishaupt: Thanks! I didn't check back in time, obviously.\n\n13) Weishaupt: Build R1 Weishaupt\n\n14) dlwillson: B B1 Dlwillson\n\n15) Weishaupt: Build Y1 Weishaupt\n\n16) dlwillson: D B1 Dlwillson G1 Field\n\n17) Weishaupt: Build G2 Weishaupt\n\n18) dlwillson: Build B2 Dlwillson\n\n19) Weishaupt: Discover Y1 Weishaupt Y2 Fatso\n\n20) dlwillson: D B2 Dlwillson R1 Sunset\n\n21) Weishaupt: Build Y2 Weishaupt\n\tdlwillson: I hope you have a plan here. It's pretty unusual to move a ship to a star of the same color, unless doing so accomplishes some larger goal. For example: TwoShort ~loves~ to run his opponent out of yellow, and he'll do whatever it needs to get it done.\n\tdlwillson: I'll give it 24 hours again, in case you want to take it back.\n\n22) dlwillson: S G3 Dlwillson\nB B2 Field\nB B2 Sunset\nB B3 Sunset\n\tWeishaupt: Haha, well, again, this is my first game.\n\tWeishaupt: So I admit to not knowing what I'm doing. This game takes an odd sort of thinking.\n\n\tdlwillson: I just broke a strategic rule by leaving my home system without a large, but I checked carefully, and I think I can cover it before I regret it.\n\tdlwillson: Great job gobbling up all the yellow. Two Short would be proud.\n\tdlwillson: What happened?\n\nHomeworlds Online (SDG# 22514)\nVariants: "Hard time"\nStarted: 2012.9.3, Ended: 2012.9.7\nParticipants: juanpr2 (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 22782)\nVariants: "Hard time"\nStarted: 2012.9.3, Ended: 2012.10.8\nParticipants: agentofchaos (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld B2 Y1 G3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) Aristos: Build G1 Aristos\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Aristos: Discover G1 Aristos B3 Orb\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Aristos: Build G1 Orb\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) Aristos: Build G1 Orb\n\n10) agentofchaos: Build G2 Agentofchaos\n\n11) Aristos: Build G2 Aristos\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) Aristos: Trade G1 R1 Orb\n\n14) agentofchaos: Trade Y2 R2 Agentofchaos\n\n15) Aristos: Trade G2 Y2 Aristos\n\n16) agentofchaos: Discover R2 Agentofchaos Y2 Procyon\n\n17) Aristos: Move Y2 Aristos Orb\n\n18) agentofchaos: Move G2 Agentofchaos Procyon\n\n19) Aristos: Build G1 Aristos\n\n20) agentofchaos: Build G2 Agentofchaos\n\n21) Aristos: Sacrifice G3 Aristos\nBuild G2 Orb\nBuild G3 Aristos\nBuild G3 Aristos\n\n22) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild Y2 Agentofchaos\nBuild R1 Procyon\n\n23) Aristos: Sacrifice G1 Aristos\nBuild Y3 Orb\n\n24) agentofchaos: Move G2 Procyon Orb\nCatastrophe Orb G\n\n25) Aristos: Discover Y3 Orb G1 Tiny\n\tAristos: I think this is the highest density of ships I have ever seen in any game.\n\tAristos: Ping!\n\n26) agentofchaos: Discover Y2 Agentofchaos G2 Heartthew\n\tagentofchaos: Not quite so dense now.\n\n27) Aristos: Sacrifice G3 Aristos\nBuild R2 Orb\nBuild Y3 Orb\nBuild Y3 Tiny\n\n\tagentofchaos: Rats...\n\tAristos: Thanks for the game.\n\nHomeworlds Online (SDG# 22783)\nStarted: 2012.9.4, Ended: 2012.11.6\nParticipants: ts52 (S), therealmaxl (N)\nWinner: ts52\n\n1) therealmaxl: Homeworld R3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) therealmaxl: Build G1 Therealmaxl\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) therealmaxl: Trade G1 Y1 Therealmaxl\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\n7) therealmaxl: Build G1 Therealmaxl\n\n8) ts52: Build G1 Ts52\n\n9) therealmaxl: Discover G1 Therealmaxl Y2 Yelon\n\n10) ts52: Build G2 Grover\n\n11) therealmaxl: Build G2 Yelon\n\n12) ts52: T G2 Y2 Grover\n\n13) therealmaxl: Discover G2 Yelon Y3 Bigbird\n\n14) ts52: Build G2 Grover\n\n15) therealmaxl: Build G2 Yelon\n\n16) ts52: Sacrifice Y2 Grover\nMove G2 Grover Yelon\nDiscover G2 Yelon G3 Kermit\n\n17) therealmaxl: Move G1 Yelon Kermit\n\n18) ts52: Sacrifice G1 Ts52\nBuild G1 Grover\n\n19) therealmaxl: Sacrifice G2 Yelon\nBuild G2 Bigbird\nBuild Y1 Therealmaxl\n\n20) ts52: Trade G1 R1 Grover\n\n21) therealmaxl: Build G1 Kermit\nCatastrophe Kermit Green\n\n22) ts52: Build G1 Ts52\n\n23) therealmaxl: Discover Y1 Therealmaxl B2 Dabo\n\n24) ts52: Trade G1 R1 Ts52\n\n25) therealmaxl: Build G1 Bigbird\n\n26) ts52: Build R1 Ts52\n\n27) therealmaxl: Discover G1 Bigbird R2 Elmo\n\n28) ts52: Build R2 Grover\n\n29) therealmaxl: Move G2 Bigbird Dabo\n\n30) ts52: Trade R2 Y2 Grover\n\n31) therealmaxl: Build Y2 Dabo\n\n32) ts52: Move Y2 Grover Elmo\n\n33) therealmaxl: Trade Y2 B2 Dabo\n\n34) ts52: Attack G1 Elmo\n\n35) therealmaxl: Build Y2 Dabo\n\n36) ts52: Build R2 Grover\n\n37) therealmaxl: Build B1 Dabo\n\n38) ts52: Build R2 Ts52\n\n39) therealmaxl: Move B1 Dabo Bigbird\n\n40) ts52: Build R3 Grover\n\ttherealmaxl: goodbye 1/2 homeworld\n\ttherealmaxl: mine i meant lol\n\n41) therealmaxl: Move B2 Dabo Bigbird\n\n42) ts52: Trade R3 Y3 Grover\n\n43) therealmaxl: Build B1 Bigbird\n\n44) ts52: Move R2 Grover Dabo\n\n45) therealmaxl: Sacrifice Y2 Dabo\nMove B1 Bigbird Ts52\nMove B1 Bigbird Ts52\n\n46) ts52: Attack Y1 Dabo\n\n47) therealmaxl: Move B2 Bigbird Ts52\nCatastrophe Ts52 Blue\n\n48) ts52: Attack G2 Dabo\n\n49) therealmaxl: Build G1 Bigbird\n\n50) ts52: Build R3 Dabo\n\n\nHomeworlds Online (SDG# 22781)\nVariants: "No undo"\nStarted: 2012.9.10, Ended: 2012.9.16\nParticipants: goblin981 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R3 B1 G3\n\n2) goblin981: H R3 B2 G3\n\n3) ajo: Build G1 Ajo\n\n4) goblin981: B G1 Goblin981\n\n5) ajo: Build G1 Ajo\n\n6) goblin981: B G2 Goblin981\n\n7) ajo: Trade G1 Y1 Ajo\n\n8) goblin981: T G2 Y2 Goblin981\n\n9) ajo: Build Y1 Ajo\n\n10) goblin981: B Y1 Goblin981\n\n11) ajo: Build Y2 Ajo\n\n12) goblin981: B Y2 Goblin981\n\n13) ajo: Discover Y1 Ajo B2 Alpha\n\n14) goblin981: D Y2 Goblin981 G1 Beta\n\n15) ajo: Sacrifice G1 Ajo\nBuild Y3 Alpha\n\n16) goblin981: B Y3 Beta\n\n17) ajo: Trade Y3 G3 Alpha\n\n18) goblin981: D Y2 Beta R2 Gamma\n\n19) ajo: Build Y3 Alpha\n\n20) goblin981: D Y1 Goblin981 G1 Delta\n\n21) ajo: Trade Y1 R1 Alpha\n\n22) goblin981: S Y2 Gamma\nDiscover Y3 Beta R2 Epsilon\nDiscover Y1 Delta R2 Zeta\n\tajo: I think you've let yourself get too spread out.\n\tgoblin981: Maybe. I saw a yellow catastrophe on the way.\n\n23) ajo: Build G1 Alpha\n\tajo: Sure, you've gotta defend against catastrophes. But this past turn, I would guess that you wanted to do something more productive than burn your y2. But you couldn't build anything because all you were able to build was yellows.\n\tajo: Or maybe you have a plan and I'm gonna feel dumb later. :)\n\n24) goblin981: S Y2 Goblin981\nM Y3 Epsilon Ajo\nMove Y1 Zeta Ajo\nCatastrophe Ajo Y\n\n25) ajo: Sacrifice Y3 Alpha\nDiscover G1 Alpha Y1 Beta\nMove G3 Alpha Beta\nMove G3 Beta Goblin981\n\tgoblin981: It was the latter :)\n\tgoblin981: \n\tajo: I hope that wasn't *all* of your plan, though. I'm pretty happy to be up by r1y3g3 at this point.\n\tajo: In fact, screw it, let's see if I can end it right now!\n\n26) goblin981: T G1 B1 Goblin981\n\tajo: Check. :)\n\tajo: In fact, you won't have any access to green next turn, so that's got to be checkmate.\n\n27) ajo: Attack G3 Goblin981\n\tgoblin981: Unless I do that. Knew you needed two moves :)\n\tajo: Well yeah. Checkmate in two, I meant. Normally I don't trust myself to declare "mate in two", but this time it looked inevitable.\n\n28) goblin981: T B1 Y1 Goblin981\n\tgoblin981: Damn didn't see that. You win this round.\n\tgoblin981: Damn it. You got me.\n\n29) ajo: Attack Y1 Goblin981\n\tajo: Toldja you shouldn't have been doing that with your yellows. :) Good game.\n\tgoblin981: Thought for once I was going well. Good game.\n\n\nHomeworlds Online (SDG# 22780)\nVariants: "Hard time"\nStarted: 2012.9.15, Ended: 2012.9.27\nParticipants: SilentTitan (S), tim_p (N)\nWinner: SilentTitan\n\n1) tim_p: Homeworld Y1 G2 B3\n\n2) SilentTitan: Homeworld R1 B3 G3\n\n3) tim_p: Build B1 Tim_p\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) tim_p: Trade B1 G1 Tim_p\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) tim_p: Build G1 Tim_p\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) tim_p: Discover G1 Tim_p Y3 Gethen\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) tim_p: Build G1 Tim_p\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) tim_p: Build G2 Gethen\n\n14) SilentTitan: Build G3 Silenttitan\n\n15) tim_p: Discover G1 Tim_p G3 Sjandra Kei\n\n16) SilentTitan: Discover G2 Silenttitan Y2 Sol\n\n17) tim_p: Trade G1 R1 Tim_p\n\n18) SilentTitan: Discover Y1 Silenttitan Y2 Soul\n\n19) tim_p: Move G1 Gethen Tim_p\n\n20) SilentTitan: Build Y3 Silenttitan\n\n21) tim_p: Trade B3 Y3 Tim_p\n\n22) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Silenttitan Soul\nMove Y1 Soul Sjandra\nMove Y1 Sjandra Tim_p\n\n23) tim_p: Discover Y3 Tim_p Y3 Acheron\n\n24) SilentTitan: Move Y1 Tim_p Acheron\n\n25) tim_p: Discover Y3 Acheron R1 Virga\n\n26) SilentTitan: Trade G3 R3 Silenttitan\n\n27) tim_p: Discover G1 Tim_p R3 Coventry\n\n28) SilentTitan: Sacrifice Y2 Silenttitan\nMove G2 Sol Coventry\nMove G2 Coventry Tim_p\n\n29) tim_p: Build R2 Tim_p\n\n30) SilentTitan: Sacrifice R3 Silenttitan\nAttack R2 Tim_p North\nAttack R1 Tim_p North\nPass\n\n\nHomeworlds Online (SDG# 22838)\nVariants: "Hard time"\nStarted: 2012.9.16, Ended: 2012.9.19\nParticipants: AdamBadura (S), ajo (N)\nWinner: AdamBadura\n\n\nHomeworlds Online (SDG# 22767)\nVariants: "Hard time"\nStarted: 2012.9.18, Ended: 2012.9.30\nParticipants: daselva (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) daselva: Homeworld R1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) daselva: Build G1 Daselva\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) daselva: Build Y2 Daselva\n\n9) dlwillson: D Y1 Dlwillson B2 Sky\n\n10) daselva: Trade Y1 R1 Daselva\n\n11) dlwillson: Trade Y2 R2 Dlwillson\n\n12) daselva: Build Y1 Daselva\n\n13) dlwillson: B R1 Dlwillson\n\n14) daselva: Build Y2 Daselva\n\n15) dlwillson: B G1 Dlwillson\n\n16) daselva: Trade Y2 R2 Daselva\n\n17) dlwillson: M G1 Dlwillson Sky\n\tdlwillson: Why? You could have just built it. You didn't have to give up your y2.\n\n18) daselva: Sacrifice Y2 Daselva\nDiscover R2 Daselva Y3 Ds1\nMove R2 Ds1 Sky\n\n19) dlwillson: B Y2 Sky\n\n20) daselva: Attack Y2 Sky\n\n21) dlwillson: B Y2 Sky\n\n22) daselva: Trade Y2 G2 Sky\n\n23) dlwillson: S R2 Dlwillson\nA G2 Sky\nA R2 Sky\n\n24) daselva: Build Y2 Daselva\n\n25) dlwillson: B R2 Sky\n\n26) daselva: Build G1 Daselva\n\n27) dlwillson: Discover R2 Sky B3 Sea\n\n28) daselva: Discover Y2 Daselva R3 Ds1\n\n29) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Sea\nBuild R3 Sky\nBuild R3 Dlwillson\n\n30) daselva: Move G1 Daselva Ds1\n\n31) dlwillson: S Y2 Sky\nM R2 Sea Daselva\nM R2 Sea Daselva\nC Daselva R\n\n32) daselva: Discover Y2 Ds1 G2 Ds2\n\n33) dlwillson: M R3 Dlwillson Daselva\n\n\nHomeworlds Online (SDG# 22828)\nVariants: "Hard time"\nStarted: 2012.10.6, Ended: 2012.10.9\nParticipants: Sturmund_Drang (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B2 R1 G3\n\tSturmund_Drang: HI, I've played Homeworlds before, but I'm new to the site. Thanks for playing!\n\n\tSilentTitan: No problem thanks for accepting my standing challenge. If you have any question just ask.\n\nHomeworlds Online (SDG# 22906)\nVariants: "Hard time"\nStarted: 2012.10.8, Ended: 2012.10.21\nParticipants: Aristos (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) Aristos: Homeworld G3 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\tAristos: Well met.\n\tSilentTitan: Salutations and Defiance to you good sir.\n\n4) Aristos: Build B1 Aristos\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Aristos: Build B1 Aristos\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) Aristos: Discover B1 Aristos G2 Armstrong\n\n9) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n10) Aristos: Build B2 Armstrong\n\n11) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Silenttitan\nBuild Y2 Silenttitan\nBuild Y2 Sol\n\n12) Aristos: Trade B2 R2 Armstrong\n\n13) SilentTitan: Build Y3 Sol\n\n14) Aristos: Build B2 Armstrong\n\tAristos: Well, that was totally unexpected. I suspect that's game. \n\n15) SilentTitan: Discover Y2 Silenttitan R3 Soul\n\tSilentTitan: Usually a player has to make two fairly large errors or a series of smaller error to get beat. I'v had dlwillson in this position before and he figured out a way to beat me anyway. It was a table game running on a chess clock at a convention. so it's not a sure thing but it helps\n\tSilentTitan: lol... come to think of it ... i played a game with him at my house where he let me put up three battleships in a turn ... twice and then he still won.... someone has to stop that dirty rotten @%!^ .... GO TWOSHORT!!!!!\n\n16) Aristos: Build B2 Aristos\n\n17) SilentTitan: Move Y3 Sol Silenttitan\n\n18) Aristos: Discover B1 Aristos G2 Aldrin\n\n19) SilentTitan: Trade Y3 G3 Silenttitan\n\n\tdlwillson: Uh... Hey! I don't want to be stopped! And TwoShort has beaten me too many times, already. It's time for me to beat him a bit. :-)\n\tAristos: Aaaaaaand.... that's game. I just couldn't get to a large ship fast enough to pick up one of the yellows.\n\nHomeworlds Online (SDG# 22839)\nVariants: "No undo"\nStarted: 2012.10.13, Ended: 2012.10.13\nParticipants: cheinzmann (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 B2 Y3\n\n2) cheinzmann: Homeworld B3 G1 Y3\n\n3) ajo: Build Y1 Ajo\n\n4) cheinzmann: Build Y1 Cheinzmann\n\n5) ajo: Build Y1 Ajo\n\n6) cheinzmann: Build Y2 Cheinzmann\n\n\n7) ajo: Sacrifice Y3 Ajo\nDiscover Y1 Ajo R1 Aa\nDiscover Y1 Aa R2 Ba\nMove Y1 Ba Cheinzmann\nCatastrophe Cheinzmann Yellow\n\tajo: Oh, well, *that's* easy. Play again? :)\n\tcheinzmann: great game, beat me to the sacrifice catastrophe\n\n\nHomeworlds Online (SDG# 22909)\nStarted: 2012.10.15, Ended: 2012.11.12\nParticipants: goblin981 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) goblin981: H G3 B2 Y3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) goblin981: B Y1 Goblin981\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) goblin981: D Y1 Goblin981 G1 Alpha\n\n7) ts52: Build G1 Ts52\n\n8) goblin981: B Y1 Goblin981\n\n9) ts52: Build G2 Grover\n\n10) goblin981: B Y2 Goblin981\n\n11) ts52: Trade G2 Y2 Grover\n\n12) goblin981: D Y1 Goblin981 B1 Beta\n\n13) ts52: Build G2 Grover\n\n14) goblin981: B Y2 Alpha\n\n15) ts52: Build Y3 Grover\n\n16) goblin981: T Y2 G2 Goblin981\n\n17) ts52: Trade Y3 R3 Grover\n\n18) goblin981: T Y3 R3 Goblin981\n\n19) ts52: Move R3 Grover Alpha\n\n\tgoblin981: Sorry man, just looked like it was way in your favour.\n\tts52: No worries. Thanks for the game.\n\nHomeworlds Online (SDG# 22973)\nVariants: "Hard time"\nStarted: 2012.10.21, Ended: 2012.12.4\nParticipants: Mandrel (S), Gidaio (N)\nWinner: Mandrel\n\n1) Gidaio: Homeworld G3 R2 B3\n\n2) Mandrel: Homeworld B3 R1 G3\n\n3) Gidaio: Build B1 Gidaio\n\tMandrel: Have a good game.\n\n4) Mandrel: Build G1 Mandrel\n\tGidaio: You too! Two people with (I'm assuming) internet names that are NAMES, not hax0rpwn443.\n\n5) Gidaio: Trade B3 Y3 Gidaio\n\tMandrel: Indeed, actual pronounceable strings of letters!\n\n6) Mandrel: B G1 Mandrel\n\tGidaio: Of course, admittedly different ratios of consonant-to-vowels, though.\n\n7) Gidaio: Build Y1 Gidaio\n\tMandrel: I've always been a 5:2 man, it's how I was raised.\n\tGidaio: Indeed! I'm rather fond of vowels.\r\nAnyway, family stuff happened and I won't be able to play for the next 14 days, which, given that this is a latter game, results in your win, I believe. I would say gg, but there really wasn't a game...\n\tGidaio: *ladder\n\n8) Mandrel: Trade G1 Y1 Mandrel\n\n9) Gidaio: Discover Y1 Gidaio G1 Rizhulan\n\tMandrel: OK, sorry to hear that, if you can't make it back to finish this, feel free to challenge me to a game in the future.\n\tGidaio: Hah! Your delay saved the game! I'll be back come Monday, so you won't have to wait long.\n\n10) Mandrel: Discover G1 Mandrel B2 King\n\tGidaio: I'm back! :) Let's finish this thing.\n\n11) Gidaio: Build Y1 Rizhulan\n\n12) Mandrel: Build Y2 Mandrel\n\n13) Gidaio: Build Y2 Gidaio\n\n14) Mandrel: Move Y2 Mandrel King\n\n15) Gidaio: Discover Y2 Gidaio G1 Grasslandia\n\n16) Mandrel: Build G2 Mandrel\n\n17) Gidaio: Build Y2 Grasslandia\n\n18) Mandrel: Build Y3 King\n\n19) Gidaio: Build Y3 Gidaio\n\n20) Mandrel: Build G2 King\n\n21) Gidaio: Discover Y1 Rizhulan G3 Brinstar\n\n22) Mandrel: Build G2 King\n\n23) Gidaio: Move B1 Gidaio Rizhulan\n\n24) Mandrel: Trade G2 R2 Mandrel\n\n25) Gidaio: Trade Y1 R1 Rizhulan\n\n26) Mandrel: Move Y2 King Rizhulan\n\n27) Gidaio: Build R1 Rizhulan\n\n28) Mandrel: Sacrifice R2 Mandrel\nAttack R1N Rizhulan\nAttack R1N Rizhulan\n\n29) Gidaio: Sacrifice Y2 Grasslandia\nMove B1 Rizhulan King\nMove B1 King Grasslandia\n\tGidaio: Aaand just like every time, I'm left without any green.\n\n30) Mandrel: B Y1 Rizhulan\n\n\n31) Gidaio: Trade Y2 R2 Grasslandia\n\n32) Mandrel: Sacrifice Y3 King\nMove Y1 Rizhulan Gidaio\nMove Y2 Rizhulan Gidaio\nMove R1 Rizhulan Gidaio\nCatastrophe Gidaio Yellow\n\n\tMandrel: Good game.\n\tGidaio: Oh, dag. I didn't even see that. I'm not actually very good at this game. :/\n\nHomeworlds Online (SDG# 22991)\nVariants: "Hard time"\nStarted: 2012.10.24, Ended: 2012.12.7\nParticipants: SirRuthvenMurgatroyd (S), goblin981 (N)\nWinner: SirRuthvenMurgatroyd\n\n1) goblin981: H B1 Y2 G3\n\tgoblin981: GG\n\n2) SirRuthvenMurgatroyd: Homeworld G3 B2 Y3\n\n3) goblin981: B G1 Goblin981\n\n4) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n5) goblin981: B G1 Goblin981\n\n6) SirRuthvenMurgatroyd: Trade Y1 G1 Sirruthvenmurgatroyd\n\n7) goblin981: D G1 Goblin981 Y3 Alpha\n\n8) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n9) goblin981: D G1 Goblin981 Y3 Beta\n\n10) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y1 Gamma\n\n11) goblin981: B G2 Goblin981\n\n12) SirRuthvenMurgatroyd: Build G2 Gamma\n\n13) goblin981: T G2 R2 Goblin981\n\n14) SirRuthvenMurgatroyd: Move G2 Gamma Beta\n\n15) goblin981: B G2 Goblin981\n\n16) SirRuthvenMurgatroyd: Build G3 Gamma\n\n17) goblin981: T G2 R2 Goblin981\n\n18) SirRuthvenMurgatroyd: Discover G1 Gamma B3 Delta\n\n19) goblin981: M R2 Goblin981 Beta\n\n20) SirRuthvenMurgatroyd: Build G2 Delta\n\n21) goblin981: A G2S Beta\n\n22) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n23) goblin981: D G1 Beta Y1 Epsilon\n\n24) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n25) goblin981: B R1 Goblin981\n\tSirRuthvenMurgatroyd: My apologies for taking a long time to make my moves... I've been very busy; most of that should hopefully be finished now, though, so I'll probably be making moves in a more reasonable time...\n\tgoblin981: No worries about that. Happy to wait.\n\n26) SirRuthvenMurgatroyd: Move Y1 Sirruthvenmurgatroyd Gamma\n\n27) goblin981: T R1 B1 Goblin981\n\n28) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n29) goblin981: M R2 Beta Gamma\n\n30) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd\n\n31) goblin981: A Y1S Gamma\n\n32) SirRuthvenMurgatroyd: Sacrifice R2 Sirruthvenmurgatroyd\nAttack R2N Gamma\nAttack Y1N Gamma\n\n\nHomeworlds Online (SDG# 22993)\nVariants: "Hard time"\nStarted: 2012.10.25, Ended: 2013.1.5\nParticipants: AdamBadura (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld R1 B2 G3\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) MagicJohn: Build G1 Magicjohn\n\n6) AdamBadura: Trade Y1 G1 Adambadura\n\n7) MagicJohn: Trade G1 Y1 Magicjohn\n\n8) AdamBadura: Build Y1 Adambadura\n\n9) MagicJohn: Trade G1 B1 Magicjohn\n\n10) AdamBadura: Build G1 Adambadura\n\n11) MagicJohn: Build B1 Magicjohn\n\n12) AdamBadura: Trade G1 R1 Adambadura\n\n13) MagicJohn: Build G1 Magicjohn\n\n14) AdamBadura: Discover Y1 Adambadura G1 Shipyard\n\n15) MagicJohn: Discover G1 Magicjohn Y3 Kaline\n\n16) AdamBadura: Build G2 Adambadura\n\n17) MagicJohn: Build G2 Kaline\n\n18) AdamBadura: Discover G2 Adambadura Y1 Outpost\n\n19) MagicJohn: Build Y2 Magicjohn\n\n20) AdamBadura: Build Y2 Shipyard\n\n21) MagicJohn: Discover G2 Kaline B1 Colavito\n\n22) AdamBadura: Trade G1 R1 Adambadura\n\n23) MagicJohn: Trade G2 R2 Colavito\n\n24) AdamBadura: Build Y2 Adambadura\n\n25) MagicJohn: Move Y1 Magicjohn Kaline\n\n26) AdamBadura: Discover Y2 Shipyard Y3 Highway\n\n27) MagicJohn: Move B1 Magicjohn Kaline\n\n28) AdamBadura: Move R1 Adambadura Outpost\n\n29) MagicJohn: Sacrifice G3 Magicjohn\nBuild B2 Kaline\nBuild B3 Kaline\nBuild B3 Magicjohn\n\n30) AdamBadura: Build R2 Adambadura\n\n31) MagicJohn: Trade B3 G3 Magicjohn\n\n32) AdamBadura: Build R2 Outpost\n\n33) MagicJohn: Trade B3 R3 Kaline\n\n\tAdamBadura: Sorry for long moves and breaking the game. This was a bad time for me due to holidays and serious internet connection issues.\n\tMagicJohn: Certainly wasn't my choice to stop the game. I am still low on the learning curve and was picking up a lot from your moves. Re-challenge if you would like...... MJ \n\nHomeworlds Online (SDG# 23010)\nVariants: "Hard time"\nStarted: 2012.10.31, Ended: 2013.3.19\nParticipants: agentofchaos (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) agentofchaos: Homeworld B1 R3 G3\n\tts52: have a good game!\n\n3) ts52: Build G1 Ts52\n\tagentofchaos: Thanks, you too\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) ts52: Build G1 Ts52\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) ts52: Build G1 Grover\n\n10) agentofchaos: Build G2 Agentofchaos\n\n11) ts52: Build G2 Grover\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) ts52: Trade G2 Y2 Grover\n\n14) agentofchaos: Discover Y2 Agentofchaos B2 Hadepoch\n\n15) ts52: Build G2 Grover\n\n16) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y2 Agentofchaos\nBuild Y3 Hadepoch\n\n17) ts52: Build Y3 Grover\n\n18) agentofchaos: Trade Y2 R2 Hadepoch\n\n19) ts52: Trade G2 R2 Grover\n\n20) agentofchaos: Build G2 Agentofchaos\n\n21) ts52: Discover G1 Grover B2 Gonzo\n\n22) agentofchaos: Move G2 Agentofchaos Hadepoch\n\n23) ts52: Move Y2 Grover Gonzo\n\n24) agentofchaos: Move Y1 Agentofchaos Hadepoch\n\n25) ts52: Build G2 Gonzo\n\n26) agentofchaos: Trade Y1 B1 Hadepoch\n\n27) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Grover\n\n28) agentofchaos: Sacrifice Y2 Agentofchaos\nMove G2 Hadepoch Grover\nMove G2 Grover Gonzo\nCatastrophe Gonzo G\n\n29) ts52: Move G1 Grover Gonzo\n\n30) agentofchaos: Build G1 Agentofchaos\n\n31) ts52: Build G2 Gonzo\n\n32) agentofchaos: Move G1 Agentofchaos Hadepoch\n\n33) ts52: Trade G2 R2 Gonzo\n\n34) agentofchaos: Build G2 Agentofchaos\n\n35) ts52: Build G2 Gonzo\n\n36) agentofchaos: Discover G2 Agentofchaos Y2 Rockworm\n\n37) ts52: Build R1 Gonzo\n\n38) agentofchaos: Discover G2 Rockworm Y3 Demondim\n\n39) ts52: Trade G1 R1 Ts52\n\n40) agentofchaos: Build G1 Demondim\n\n41) ts52: Discover R2 Grover Y2 Zoe\n\n42) agentofchaos: Discover G1 Hadepoch R3 Vitriol\n\n43) ts52: Move R1 Gonzo Agentofchaos\n\n44) agentofchaos: Attack R1 Agentofchaos\n\n45) ts52: Sacrifice Y2 Gonzo\nMove R2 Gonzo Agentofchaos\nMove R2 Zoe Agentofchaos\nCatastrophe Agentofchaos Red\n\n46) agentofchaos: Build G2 Vitriol\n\n47) ts52: Build Y1 Grover\n\n48) agentofchaos: Sacrifice G2 Demondim\nBuild Y2 Hadepoch\nBuild G2 Demondim\n\n49) ts52: Sacrifice Y3 Grover\nMove G1 Gonzo Demondim\nMove G2 Gonzo Demondim\nPass\nCatastrophe Demondim Green\n\n50) agentofchaos: Build G1 Agentofchaos\n\n51) ts52: Build G1 Grover\n\n52) agentofchaos: Discover G1 Agentofchaos Y3 Camtime\n\n53) ts52: Build Y2 Grover\n\n54) agentofchaos: Build G2 Camtime\n\n55) ts52: Discover Y2 Grover G2 Kermit\n\n56) agentofchaos: Sacrifice G2 Vitriol\nBuild R1 Hadepoch\nBuild G2 Vitriol\n\tts52: Sorry, that didn't make any sense.\n\n57) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild Y2 Kermit\nBuild Y3 Grover\n\tagentofchaos: no problem\n\n58) agentofchaos: S Y3 Hadepoch\nMove G2 Vitriol Ts52\nMove G1 Vitriol Ts52\nMove G1 Camtime Ts52\nCatastrophe Ts52 G\n\n59) ts52: Move G3 Grover Ts52\n\n60) agentofchaos: Sacrifice G2 Camtime\nBuild Y3 Hadepoch\nBuild G1 Agentofchaos\n\n61) ts52: Build G1 Grover\n\n62) agentofchaos: Build Y3 Agentofchaos\n\n63) ts52: Sacrifice Y3 Grover\nMove Y2 Kermit Agentofchaos\nMove G1 Grover Agentofchaos\nMove G1 Grover Agentofchaos\nCatastrophe Agentofchaos Green\n\n64) agentofchaos: Trade Y3 R3 Agentofchaos\n\n65) ts52: Build Y3 Kermit\n\n66) agentofchaos: Attack Y2 Agentofchaos\n\n67) ts52: Discover Y3 Kermit B3 Gonzo\n\n68) agentofchaos: Trade Y2 G2 Agentofchaos\n\n69) ts52: Trade Y3 G3 Gonzo\n\n70) agentofchaos: Move Y2 Hadepoch Grover\n\n71) ts52: Build G1 Gonzo\n\n\nHomeworlds Online (SDG# 22879)\nStarted: 2012.11.1, Ended: 2013.2.26\nParticipants: Mandrel (S), lcnh (N)\nWinner: Mandrel\n\n1) lcnh: Homeworld Y3 B1 G3\n\n2) Mandrel: Homeworld R3 B2 G3\n\n3) lcnh: Build G1 Lcnh\n\tMandrel: Have a good game.\n\n4) Mandrel: Build G1 Mandrel\n\tlcnh: Have fun!\n\n5) lcnh: Discover G1 Lcnh Y2 Robo\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) lcnh: Build G1 Lcnh\n\n8) Mandrel: Build Y1 Mandrel\n\n9) lcnh: Trade G1 R1 Lcnh\n\n10) Mandrel: Build G1 Mandrel\n\n11) lcnh: Build R1 Lcnh\n\n12) Mandrel: Discover G1 Mandrel Y1 Wkb\n\n13) lcnh: Discover G1 Robo R3 Lens\n\n14) Mandrel: Build Y2 Mandrel\n\n15) lcnh: Build R1 Lcnh\n\n16) Mandrel: Discover Y2 Mandrel G1 Sir\n\n17) lcnh: Trade R1 B1 Lcnh\n\n18) Mandrel: Build Y2 Sir\n\n19) lcnh: Build G2 Lcnh\n\n20) Mandrel: Build G2 Wkb\n\n21) lcnh: Discover G2 Lcnh Y2 Klid\n\n22) Mandrel: Build Y3 Sir\n\n23) lcnh: Build G2 Klid\n\n24) Mandrel: B Y3 Mandrel\n\n25) lcnh: Build G3 Lens\n\n26) Mandrel: Trade Y1 R1 Mandrel\n\n27) lcnh: Trade R1 Y1 Lcnh\n\n28) Mandrel: Discover Y2 Sir B2 Compression\n\n29) lcnh: Move B1 Lcnh Klid\n\n30) Mandrel: Discover Y1 Mandrel B1 Conformal\n\n31) lcnh: Discover Y1 Lcnh R2 Model\n\tlcnh: I missed the last turn. Sorry.\n\n32) Mandrel: Sacrifice Y3 Sir\nMove Y2 Sir Compression\nMove Y2 Compression Lcnh\nMove Y2 Compression Lcnh\n\n33) lcnh: Sacrifice G3 Lens\nBuild Y3 Model\nBuild G1 Klid\nBuild G3 Lens\n\n34) Mandrel: Sacrifice R1 Mandrel\nAttack R1N Lcnh\n\n35) lcnh: Trade G3 R3 Lcnh\n\n36) Mandrel: Sacrifice G2 Wkb\nBuild R1 Lcnh\nBuild R1 Lcnh\nCatastrophe Lcnh Red\n\n\tMandrel: Good game.\n\nHomeworlds Online (SDG# 22848)\nVariants: "Hard time"\nStarted: 2012.11.22, Ended: 2012.11.23\nParticipants: dlwillson (S), aayore (N)\nWinner: aayore\n\n1) aayore: Homeworld B3 G1 Y3\n\n\nHomeworlds Online (SDG# 22801)\nStarted: 2012.12.3, Ended: 2013.1.3\nParticipants: daselva (S), syth (N), goblin981 (E)\nWinner: goblin981\n\n1) syth: Homeworld Y2 G1 B3\n\n2) goblin981: H R1 B2 G3\n\n3) daselva: Homeworld R1 B2 G3\n\n\n4) syth: Build B1 Syth\n\n5) goblin981: B G1 Goblin981\n\n6) daselva: Build G1 Daselva\n\n7) goblin981: T G1 Y1 Goblin981\n\n8) daselva: Trade G1 Y1 Daselva\n\n9) goblin981: B G1 Goblin981\n\n\nHomeworlds Online (SDG# 23039)\nStarted: 2012.12.23, Ended: 2012.12.23\nParticipants: paz_newman (S), ts52 (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 23177)\nVariants: "Hard time"\nStarted: 2012.12.31, Ended: 2013.1.3\nParticipants: Danner (S), Aristos (N)\nWinner: Danner\n\n1) Aristos: Homeworld G1 B2 Y3\n\tDanner: Happy New Year! Have you found anything conclusive regarding the take back problem, or shall we make a rule?\n\n2) Danner: Homeworld G1 B2 G3 *\n\n3) Aristos: Build Y1 Aristos\n\n4) Danner: Build G1 Danner\n\tAristos: I have not found anything conclusive. Admins never replied. \n\n5) Aristos: Build Y1 Aristos\n\tDanner: I vote for allowing take backs. :)\n\n6) Danner: Trade G3 Y3 Danner\n\n7) Aristos: Trade Y3 G3 Aristos\n\n8) Danner: Build G2 Danner\n\n9) Aristos: Discover G3 Aristos Y3 Outlier\n\n10) Danner: Move G1 Danner Outlier\n\tAristos: I should resign now. I totally missed that the first move needed to be a trade to green. I've not seen the double-green opening trick before, and it's pretty devastating. I'm assuming the correct response would have been "trade y3 g3 Aristos" as my first move.\n\tDanner: Yes, that response seems to be correct.\r\nHowever, you have seen this trick before. :)\r\nhttp://superdupergames.org/?page=archive_play&gid=20292&idx=1\n\n\tAristos: Don't recall seeing it. Been too long I guess. \n\nHomeworlds Online (SDG# 23196)\nVariants: "Hard time"\nStarted: 2013.1.3, Ended: 2013.3.21\nParticipants: dethdukk (S), Salmonax (N)\nWinner: dethdukk\n\n1) Salmonax: Homeworld G3 R2 B3\n\n2) dethdukk: Homeworld B1 R3 G3\n\n3) Salmonax: Build B1 Salmonax\n\tdethdukk: Hello sal. Good luck in the game.\n\tSalmonax: Hi, good luck\n\n4) dethdukk: Build G1 Dethdukk\n\n5) Salmonax: Trade B1 Y1 Salmonax\n\n6) dethdukk: Build G1 Dethdukk\n\n7) Salmonax: Build Y1 Salmonax\n\n8) dethdukk: Trade G1 Y1 Dethdukk\n\n9) Salmonax: Build Y2 Salmonax\n\n10) dethdukk: Build Y2 Dethdukk\n\n11) Salmonax: Discover Y1 Salmonax G1 Samandmax\n\n12) dethdukk: Discover Y2 Dethdukk G2 Frontier\n\n13) Salmonax: Build Y2 Samandmax\n\n14) dethdukk: Build Y3 Dethdukk\n\n15) Salmonax: Trade Y1 B1 Salmonax\n\n16) dethdukk: Discover Y1 Dethdukk B2 Beyond\n\n17) Salmonax: Trade B1 R1 Salmonax\n\n18) dethdukk: Sacrifice G3 Dethdukk\nBuild Y1 Frontier\nBuild Y3 Dethdukk\nBuild Y3 Beyond\n\n19) Salmonax: Move Y2 Samandmax Frontier\n\n20) dethdukk: Build G1 Dethdukk\n\n21) Salmonax: Sacrifice R1 Salmonax\nAttack Y2 Frontier\n\n22) dethdukk: Build G2 Dethdukk\n\n23) Salmonax: Move Y2 Frontier Dethdukk\n\n24) dethdukk: Trade Y3 R3 Dethdukk\n\n25) Salmonax: Trade Y2 G2 Dethdukk\nCatastrophe Dethdukk Green\n\n26) dethdukk: Trade Y3 G3 Beyond\n\n27) Salmonax: Build Y2 Samandmax\n\n28) dethdukk: Build Y3 Frontier\n\n29) Salmonax: Build Y3 Frontier\nCatastrophe Frontier Yellow\n\n30) dethdukk: Build Y1 Beyond\n\n31) Salmonax: Build Y2 Salmonax\n\n32) dethdukk: Move Y1 Beyond Samandmax\n\n33) Salmonax: Sacrifice Y2 Salmonax\nDiscover Y2 Samandmax G2 Scoobydoo\nMove Y1 Samandmax Scoobydoo\n\n34) dethdukk: Build Y2 Samandmax\n\n35) Salmonax: Trade Y2 R2 Salmonax\n\n36) dethdukk: Sacrifice G3 Beyond\nBuild Y2 Samandmax\nBuild Y3 Beyond\nBuild Y3 Dethdukk\n\n37) Salmonax: Move Y1 Scoobydoo Samandmax\nCatastrophe Samandmax Yellow\n\n38) dethdukk: Trade Y3 G3 Dethdukk\n\tdethdukk: SDG is no longer sending me turn notifications... making it hard to keep up lol\n\n39) Salmonax: Build Y1 Scoobydoo\n\tSalmonax: oh no!\n\n40) dethdukk: Discover Y3 Beyond G1 Stone\n\n41) Salmonax: Build B1 Salmonax\n\n42) dethdukk: Move R3 Dethdukk Scoobydoo\n\n43) Salmonax: Build Y1 Scoobydoo\n\n44) dethdukk: Build R1 Scoobydoo\n\n45) Salmonax: Move Y1 Scoobydoo Dethdukk\n\n46) dethdukk: Attack Y2 Scoobydoo\n\n\nHomeworlds Online (SDG# 23088)\nVariants: "Hard time"\nStarted: 2013.1.3, Ended: 2013.1.4\nParticipants: dlwillson (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld Y2 B3 G3\n\n\nHomeworlds Online (SDG# 23159)\nStarted: 2013.1.4, Ended: 2013.1.4\nParticipants: ts52 (S), musichascolors (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 22897)\nVariants: "Hard time"\nStarted: 2013.1.5, Ended: 2013.1.16\nParticipants: SilentTitan (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld G3 Y1 B3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) Broccoli_Commander: Build B1 Broccoli_commander\n\n4) SilentTitan: Build G1 Silenttitan\n\tBroccoli_Commander: Good evening SilentTitan, may the stars shine upon our game.\n\n5) Broccoli_Commander: Trade B1 Y1 Broccoli_commander\n\tSilentTitan: ... and the cheese sauce be ever hot and melty... Good Luck to you Sir\n\n6) SilentTitan: Trade G3 Y3 Silenttitan\n\tBroccoli_Commander: You too dear fellow. Do not leave your nachos unattended though\n\n7) Broccoli_Commander: Build B1 Broccoli_commander\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Broccoli_Commander: Discover B3 Broccoli_commander B2 Blueberry\n\n10) SilentTitan: Discover G1 Silenttitan B3 Sol\n\n11) Broccoli_Commander: Trade B3 G3 Blueberry\n\n12) SilentTitan: Trade G1 R1 Silenttitan\n\n13) Broccoli_Commander: Build G1 Blueberry\n\n14) SilentTitan: Move R1 Silenttitan Sol\n\n15) Broccoli_Commander: Build Y1 Broccoli_commander\n\n16) SilentTitan: Build R1 Sol\n\n17) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry\n\n18) SilentTitan: Build R2 Sol\n\n19) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild Y2 Blueberry\nBuild Y2 Blueberry\nBuild Y2 Broccoli_commander\n\tBroccoli_Commander: All right, I'm trying a wild thing... let's see :-D\n\n20) SilentTitan: Sacrifice G1 Sol\nBuild Y3 Silenttitan\n\tSilentTitan: That is pretty wild....\n\n21) Broccoli_Commander: Trade Y2 R2 Blueberry\n\n22) SilentTitan: Trade R2 Y2 Sol\n\n23) Broccoli_Commander: Build Y3 Blueberry\n\n24) SilentTitan: Move Y2 Sol Blueberry\nCatastrophe Blueberry Yellow\n\n25) Broccoli_Commander: Build R2 Blueberry\n\tBroccoli_Commander: Yeah I kinda overlooked the g1 sacrifice to build the y3.....\n\n26) SilentTitan: Move Y3 Silenttitan Sol\n\tSilentTitan: .... and maybe the catastophe?\n\tBroccoli_Commander: yeah no this was on purpose, but frankly I guess I'm dead.... I may resign in 2-3 turns ^^\n\tBroccoli_Commander: (and was dead before the cat)\n\n27) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\tSilentTitan: humm... well you are slightly ahead in points. and I'm limited by no green currently.. so your position isn't hopeless.\r\n\n\n28) SilentTitan: Trade R1 G1 Sol\n\n29) Broccoli_Commander: Trade R2 Y2 Blueberry\n\tBroccoli_Commander: Right, I see a tiny light at the end of a long tunnel; I was really afraid I could not get a 3 pointer before your arrival...\n\n30) SilentTitan: Build G1 Sol\n\n31) Broccoli_Commander: Build G2 Blueberry\n\n32) SilentTitan: Move G1 Sol Silenttitan\n\n33) Broccoli_Commander: Build R1 Blueberry\n\n34) SilentTitan: Build G2 Silenttitan\n\n35) Broccoli_Commander: Build R2 Broccoli_commander\n\n36) SilentTitan: Build R3 Sol\n\n37) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild R3 Blueberry\nBuild R3 Broccoli_commander\n\n38) SilentTitan: Sacrifice Y3 Silenttitan\nMove R1 Sol Blueberry\nMove R1 Blueberry Broccoli_commander\nMove R3 Sol Blueberry\nCatastrophe Blueberry Red\nCatastrophe Broccoli_commander Red\n\n39) Broccoli_Commander: D G1 Blueberry Y3 Cauliflower\n\n40) SilentTitan: Build G2 Sol\n\n41) Broccoli_Commander: B G2 Cauliflower\n\n42) SilentTitan: Trade G2 Y2 Sol\n\n43) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove G1 Cauliflower Silenttitan\nMove G2 Cauliflower Silenttitan\nCatastrophe Silenttitan G\n\n\tBroccoli_Commander: Errr...\r\nThanks for the game :-D\n\tSilentTitan: LOL.. you too... sorry about that ... I am glad you saw that and undid your move to capitalize on the mistake I made. Nice Job. Let's go again eh?\n\tSilentTitan: ah... I spoke before I looked at the last turn in detail ... you saw the win you just forgot the CAT. I had intended to change the G2 to R2 in SilentTitan then change the G2 to Y2 in Sol and got ahead of myself. Happens. Either way good job.\n\nHomeworlds Online (SDG# 23212)\nVariants: "Hard time"\nStarted: 2013.1.5, Ended: 2013.1.11\nParticipants: dlwillson (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld G1 B2 Y3\n\n2) dlwillson: Homeworld B3 G1 Y3\n\tBroccoli_Commander: Good evening dlwillson. Let the stars be our guides.\n\n3) Broccoli_Commander: Build Y1 Broccoli_commander\n\tdlwillson: Good evening to you, Broccoli. I hope you are healthy.\r\nheh... get it? healthy? broccoli? I kill myself.\n\n4) dlwillson: Build Y1 Dlwillson\n\tBroccoli_Commander: Full of good ol' green vitamins! \r\nGood luck and have fun dear Sir.\n\n5) Broccoli_Commander: Trade Y1 G1 Broccoli_commander\n\tdlwillson: I will, and you do, too! :-)\n\n6) dlwillson: Discover Y1 Dlwillson G2 Frog\n\n7) Broccoli_Commander: Build G2 Broccoli_commander\n\n8) dlwillson: Build Y1 Dlwillson\n\tBroccoli_Commander: Heh I figure you would not have fallen in the trap ;-) (cf. undo)\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower\n\tBroccoli_Commander: cu tomorrow, bedtime (living in Europe)\n\n10) dlwillson: Build Y1 Frog\n\tdlwillson: 'Night. Sleep well.\n\n11) Broccoli_Commander: Build Y2 Broccoli_commander\n\n12) dlwillson: B Y2 Frog\n\n13) Broccoli_Commander: Build G2 Cauliflower\n\n14) dlwillson: T Y1 R1 Dlwillson\n\n15) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\n16) dlwillson: Trade Y3 G3 Dlwillson\n\n17) Broccoli_Commander: Build G3 Broccoli_commander\n\n18) dlwillson: Discover Y1 Frog B3 Sky\n\tdlwillson: You're playing well so far. Good opening.\n\n19) Broccoli_Commander: Move G3 Broccoli_commander Sky\n\n20) dlwillson: Build R1 Dlwillson\n\n21) Broccoli_Commander: Build R1 Broccoli_commander\n\tBroccoli_Commander: Thanks, it's my first time playing online... had to undo a couple o times :-D I was very glad to find this website, even more now that I realize it's populated with friendly people.\n\n22) dlwillson: Move Y1 Frog Dlwillson\n\n23) Broccoli_Commander: Build G3 Sky\n\n24) dlwillson: B Y1 Frog\n\n25) Broccoli_Commander: Sacrifice G3 Sky\nBuild G3 Sky\nBuild R2 Broccoli_commander\nBuild Y2 Broccoli_commander\n\n26) dlwillson: Move R1 Dlwillson Frog\n\n27) Broccoli_Commander: Sacrifice Y2 Broccoli_commander\nMove R2 Broccoli_commander Sky\nMove G3 Sky Frog\n\n28) dlwillson: B Y2 Frog\n\n29) Broccoli_Commander: Sacrifice R2 Broccoli_commander\nAttack Y2S Frog\nAttack Y2S Frog\n\n30) dlwillson: B Y2 Frog\nC Frog Y\n\n31) Broccoli_Commander: Sacrifice R1 Broccoli_commander\nAttack R1S Frog\n\n32) dlwillson: Discover Y1 Sky B2 Sea\n\n33) Broccoli_Commander: Trade G3 Y3 Sky\n\tdlwillson: You're not a novice, are you? You're not Andy, though. Who are you?\n\n\tBroccoli_Commander: (but I don't mind finishing either)\n\nHomeworlds Online (SDG# 23206)\nStarted: 2013.1.5, Ended: 2013.1.10\nParticipants: Broccoli_Commander (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Broccoli_Commander: Homeworld B1 G3 Y3\n\n3) ts52: Build G1 Ts52\n\n4) Broccoli_Commander: Build Y1 Broccoli_commander\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) Broccoli_Commander: Trade Y1 G1 Broccoli_commander\n\tBroccoli_Commander: Good game dear Sir\n\n7) ts52: Build G1 Grover\n\n8) Broccoli_Commander: Build G2 Broccoli_commander\n\n9) ts52: Build G2 Grover\n\n10) Broccoli_Commander: Discover G2 Broccoli_commander Y2 Cauliflower\n\n11) ts52: Trade G2 Y2 Grover\n\n12) Broccoli_Commander: Build G2 Cauliflower\n\tts52: Hope you have a good game too.\n\n13) ts52: Build G2 Ts52\n\n14) Broccoli_Commander: Discover G2 Cauliflower G3 Space_lettuce\n\n15) ts52: Trade G2 R2 Ts52\n\n16) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n17) ts52: Build Y1 Grover\n\n18) Broccoli_Commander: Build Y1 Broccoli_commander\n\n19) ts52: Discover Y1 Grover G2 Kermit\n\n20) Broccoli_Commander: Build R1 Broccoli_commander\n\n21) ts52: Build Y2 Kermit\n\n22) Broccoli_Commander: Move Y1 Broccoli_commander Kermit\n\n23) ts52: Build Y3 Grover\n\n24) Broccoli_Commander: Build G1 Cauliflower\n\n25) ts52: Trade Y3 R3 Grover\n\n26) Broccoli_Commander: Discover G2 Cauliflower B3 Blueberry\n\n27) ts52: Build Y3 Grover\n\tBroccoli_Commander: nice pace :-) God you're not so bad at this game ^^'\n\tts52: :) Thanks, I think.\n\n28) Broccoli_Commander: Sacrifice G2 Space_lettuce\nBuild G2 Cauliflower\nBuild G3 Blueberry\n\tBroccoli_Commander: I'm really new to this online game system, it's some nice piece I must say\n\n29) ts52: Move R3 Grover Cauliflower\n\n30) Broccoli_Commander: Discover G2 Cauliflower Y3 Carrot\n\tts52: I've been playing here for a while, it really is a well set up system.\n\n31) ts52: Attack G1 Cauliflower\n\n32) Broccoli_Commander: Trade Y3 B3 Broccoli_commander\n\n33) ts52: Trade Y3 R3 Grover\n\n34) Broccoli_Commander: Trade G3 Y3 Blueberry\n\n35) ts52: Build G3 Cauliflower\n\n36) Broccoli_Commander: Build Y3 Kermit\nCatastrophe Kermit Y\n\tBroccoli_Commander: And I'm sorry if lost the game 10 turns ago and don't see it.......\n\n37) ts52: Build R1 Cauliflower\n\n38) Broccoli_Commander: Sacrifice G2 Carrot\nBuild G2 Blueberry\nBuild Y1 Blueberry\n\n39) ts52: Trade G1 B1 Grover\n\n40) Broccoli_Commander: Trade B3 Y3 Broccoli_commander\n\n41) ts52: Build R2 Grover\n\n42) Broccoli_Commander: Build Y1 Broccoli_commander\n\n43) ts52: Build Y2 Grover\n\n\tBroccoli_Commander: You won so long ago anyway :-P\r\nWell played and thanks for the game\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 23217)\nVariants: "Hard time"\nStarted: 2013.1.6, Ended: 2013.4.22\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) SilentTitan: Homeworld G3 B2 Y3\n\tdlwillson: Good skill, Mr. Titan!\n\tSilentTitan: Mister...Ha.... How about you just drive over here an we duke this out on the table .... with a chess clock?\n\n3) dlwillson: Build G1 Dlwillson\n\tSilentTitan: Happy gaming and much defiance to you Mr. Willson\n\n4) SilentTitan: Build Y1 Silenttitan\n\tdlwillson: Chess clocks are no fun, I just wet my pants, and lose... :-)\n\tSilentTitan: I could live with that... as long as you are not sitting in my good chair.\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) SilentTitan: Trade Y1 R1 Silenttitan\n\n7) dlwillson: B G1 Dlwillson\n\n8) SilentTitan: Build R1 Silenttitan\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) SilentTitan: Trade R1 B1 Silenttitan\n\n11) dlwillson: Build G1 Dlwillson\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) dlwillson: T G1 B1 Dlwillson\n\n14) SilentTitan: Discover B1 Silenttitan G1 Sol\n\n15) dlwillson: B B2 Dlwillson\n\n16) SilentTitan: Build B2 Sol\n\n17) dlwillson: D B2 Dlwillson G2 Field\n\n18) SilentTitan: Build B3 Silenttitan\n\n19) dlwillson: B B3 Field\n\tdlwillson: Whoa! You took a turn!\n\n20) SilentTitan: Trade B3 Y3 Silenttitan\n\tSilentTitan: wait.... I DID WHAT?\n\n21) dlwillson: Trade B3 Y3 Field\n\n22) SilentTitan: Trade B2 Y2 Sol\n\tdlwillson: You know, you don't actually HAVE to wait until the clock runs out. It just goes that high so you can go on vacations and things.\n\tSilentTitan: well... I was on vacation... went over to some sport death thing\r\n\n\n23) dlwillson: M Y3 Field Sol\n\n24) SilentTitan: Build Y1 Sol\n\n25) dlwillson: S B1 Dlwillson\nT Y3 R3 Sol\n\n26) SilentTitan: Sacrifice Y2 Sol\nDiscover Y1 Sol B2 Sole\nDiscover B1 Sol Y2 Soul\n\n27) dlwillson: M Y1 Dlwillson Field\n\n28) SilentTitan: Trade Y3 G3 Silenttitan\n\n29) dlwillson: B Y2 Field\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sole\nBuild Y3 Sole\nBuild Y3 Silenttitan\n\n31) dlwillson: S Y2 Field\nM Y1 Field Sol\nM Y1 Sol Sole\nCat Sole Y\n\n32) SilentTitan: Trade Y3 G3 Silenttitan\n\n33) dlwillson: B G1 Dlwillson\n\n34) SilentTitan: Discover R1 Silenttitan B1 Sole\n\n35) dlwillson: T G1 Y1 Dlwillson\n\n36) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Soul\nBuild B3 Soul\nBuild B3 Silenttitan\n\n37) dlwillson: M Y1 Dlwillson Field\n\n38) SilentTitan: Sacrifice B2 Soul\nTrade B3 G3 Silenttitan\nTrade B3 R3 Soul\n\n39) dlwillson: Build B2 Field\n\n40) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Silenttitan\nBuild B3 Soul\nBuild Y1 Silenttitan\n\n41) dlwillson: Move B2 Field Sol\n\n42) SilentTitan: Sacrifice B1 Silenttitan\nTrade B3 G3 Soul\n\n43) dlwillson: Build Y2 Field\n\n44) SilentTitan: Move Y1 Silenttitan Sole\n\n45) dlwillson: Move Y1 Field Sol\n\n46) SilentTitan: Sacrifice G3 Soul\nBuild Y2 Silenttitan\nBuild Y3 Sole\nBuild B1 Soul\n\n47) dlwillson: B Y3 Field\n\n48) SilentTitan: Discover Y1 Sole B3 Tic\n\n49) dlwillson: B R1 Sol\n\n50) SilentTitan: Trade B1 G1 Soul\n\n51) dlwillson: B B1 Sol\n\n52) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y1 Tic Field\nMove Y3 Sole Field\nCatastrophe Field Yellow\n\n53) dlwillson: B B3 Field\n\n54) SilentTitan: Trade B3 G3 Silenttitan\n\n55) dlwillson: T B2 Y2 Field\n\n\nHomeworlds Online (SDG# 23219)\nVariants: "Unrated"\nStarted: 2013.1.6, Ended: 2013.1.9\nParticipants: dungeon (S), disaac (N)\nWinner: disaac\n\n1) disaac: Homeworld G3 Y2 B3\n\n2) dungeon: Homeworld Y3 B2 G3\n\n3) disaac: Build B1 Disaac\n\n4) dungeon: Build G1 Dungeon\n\n5) disaac: Discover B1 Disaac G1 Gaea1\n\n6) dungeon: Discover G1 Dungeon B1 Dscwrld1\n\n7) disaac: Build B1 Disaac\n\n8) dungeon: Build G1 Dscwrld1\n\n9) disaac: Trade B3 G3 Disaac\n\n10) dungeon: Trade G1 Y1 Dscwrld1\n\n11) disaac: Sacrifice G3 Disaac\nBuild B2 Gaea1\nBuild B2 Disaac\nBuild B3 Disaac\n\n12) dungeon: Discover Y1 Dscwrld1 G3 Hamsammich\n\n13) disaac: Build B3 Gaea1\n\n14) dungeon: Build G1 Dscwrld1\n\tdisaac: ouch... not what I was expecting\r\n\n\tdungeon: You are so going to move in all of those blues in for a cat... I do not know how I missed it. At least I will be able to get some practice in from this and get bettr. ^_^ \n\n15) disaac: Sacrifice B2 Disaac\nTrade B3 Y3 Gaea1\nTrade B2 R2 Gaea1\n\n16) dungeon: Build G2 Dscwrld1\n\tdisaac: Nah... I am going to diversify.\n\n17) disaac: Move Y3 Gaea1 Dungeon\n\n18) dungeon: Trade G3 Y3 Dungeon\n\tdisaac: check (-mate perhaps?)\n\n19) disaac: Sacrifice R2 Gaea1\nAttack Y3 Dungeon\nPass\n\tdungeon: Lol. Close... but you know you and Rob always stomp me in this. ;-) \n\tdisaac: Just need to get more games under your belt.\n\tdungeon: Tha fun! :-p\n\tdisaac: I had a couple of surprises from you in this game. Didn't realize it was a small universe until you moved out to dscwrld1. And didn't expect you to soak up the last large green by discovering it as a new system. \n\tdungeon: Me either. I was on the second move before it hit me. Lol. That green was supposed to be a haymaker... but came off as a three-stooges eye poke. ;-)\n\n\nHomeworlds Online (SDG# 23231)\nVariants: "Hard time"\nStarted: 2013.1.9, Ended: 2013.1.14\nParticipants: TwoShort (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) TwoShort: Homeworld R1 B3 G3\n\tAristos: Sorry... it took me a bit to notice that you had accepted the challenge. I got hit with a barrage of 62 e-mails that gmail flagged as "Important" all in the space of an hour, each one from a completely different person. It was like everyone in my life had a sudden crisis/epiphany/question, etc. Total coincidence, but overwhelming.\n\n3) Aristos: Build Y1 Aristos\n\tTwoShort: no problem. Have a good game.\n\n4) TwoShort: Build G1 Twoshort\n\n5) Aristos: Build Y1 Aristos\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Aristos: Trade Y1 G1 Aristos\n\n8) TwoShort: Build G1 Twoshort\n\n9) Aristos: Discover G1 Aristos B1 Spark\n\n10) TwoShort: Build G1 Twoshort\n\n11) Aristos: Sacrifice Y3 Aristos\nDiscover G1 Spark B2 Waypoint\nMove G1 Waypoint Twoshort\nPass\nCatastrophe Twoshort Green\n\n12) TwoShort: Trade Y1 G1 Twoshort\n\n13) Aristos: Build Y1 Aristos\n\n14) TwoShort: Build G1 Twoshort\n\tAristos: Hey, TwoShort... have you ever seen anyone catastrophe one of the stars of their own homeworld in order to shorten the distance from one homeworld to the other? I thought about that idea the other day and was trying to figure out if it would ever be a useful strategy. Like in this game, if I blew my giant star, I would then be able to step directly to your homeworld. I'd have to have a giant fleet ready to move. Ever see anything like that?\n\n15) Aristos: Build Y1 Aristos\n\tTwoShort: I've never seen it, but I've considered the option... i.e. I've noticed that I could do it if my opponent made a move they ultimately didn't; and I've wanted to win a game that way, just for the cool points :) BTW, nice move with the catastrophe, I feel dumb I missed it.\n\tAristos: Thanks.\n\n16) TwoShort: Trade G1 R1 Twoshort\n\n17) Aristos: Discover Y1 Aristos B1 Aaa\n\n18) TwoShort: Build R1 Twoshort\n\n19) Aristos: Build Y2 Aristos\n\n20) TwoShort: Build G1 Twoshort\n\n21) Aristos: Discover Y1 Aaa G2 Bbb\n\n\tAristos: I don't see any way for you to ever get any yellow tech or any size 2 ships as long as I don't leave any size 1 yellows in the bank.\n\tTwoShort: OK, you've had me from the catastrophe and I've just been waiting to see if you'd screw it up, but you won't :( Good game.\n\tAristos: Thanks. \n\nHomeworlds Online (SDG# 23232)\nStarted: 2013.1.9, Ended: 2013.1.15\nParticipants: disaac (S), dungeon (N)\nWinner: disaac\n\n1) dungeon: Homeworld Y3 B1 G3\n\n2) disaac: H G3 Y2 B3\n\n3) dungeon: Build G1 Dungeon\n\n4) disaac: B B1 Disaac\n\n5) dungeon: Discover G1 Dungeon B2 Dalmuti\n\n6) disaac: T B3 G3 Disaac\n\n7) dungeon: Build G1 Dungeon\n\n8) disaac: B B1 Disaac\n\n9) dungeon: Trade G3 Y3 Dungeon\n\n10) disaac: Discover B1 Disaac G1 Gaea1\n\n11) dungeon: Build G2 Dungeon\n\n12) disaac: B B2 Gaea1\n\n13) dungeon: Build G2 Dalmuti\n\n14) disaac: T B2 G2 Gaea1\n\n15) dungeon: Build G3 Dungeon\n\n16) disaac: B B2 Disaac\n\n17) dungeon: Trade G3 Y3 Dungeon\n\tdungeon: Oh buddy... ... I think this is the tenth or so game I have played in the past 30 hours... ;-)\n\n18) disaac: Sacrifice G3 Disaac\nBuild B2 Gaea1\nBuild B3 Gaea1\nBuild B3 Disaac\n\tdisaac: And it is looking like you might win this one. :)\r\nThis turn may take me a bit of time. I need to see if I can think of a good way out of the mess I am getting into.\n\tdungeon: Lol. I might do some damage... but that is as far as I have ever gotten playing against you! ;-p\n\n19) dungeon: Sacrifice Y3 Dungeon\nMove G1 Dalmuti Gaea1\nMove G2 Dalmuti Gaea1\nDiscover G2 Dungeon B2 Saboteur\nCatastrophe Gaea1 Green\n\n20) disaac: Discover B2 Disaac Y1 Ds1\n\n21) dungeon: Build G1 Saboteur\n\tdungeon: Sorry, I forgot to place the catastrophe... \n\n22) disaac: Trade B3 G3 Disaac\n\n23) dungeon: Trade G2 B2 Saboteur\n\n24) disaac: D B2 Ds1 Y2 Ds2\n\n25) dungeon: Build G1 Saboteur\n\n26) disaac: S G3 Disaac\nB B1 Ds2\nB B3 Disaac\nB B3 Ds2\n\tdungeon: Death Star 2 huh... ^_^\n\n27) dungeon: Sacrifice Y3 Dungeon\nDiscover G1 Saboteur Y1 Id\nMove G1 Saboteur Id\nMove B2 Saboteur Id\n\n28) disaac: M B2 Ds2 Dungeon\n\n29) dungeon: Build G2 Dungeon\n\n30) disaac: T B3 R3 Ds2\n\n31) dungeon: Trade B2 Y2 Id\n\n32) disaac: Sacrifice R3 Ds2\nAttack G2 Dungeon\nAttack G1 Dungeon\nPass\n\tdisaac: dungeon said: [Death Star 2 huh... ^_^]\r\n\r\nDeep Space 2 (didn't make it up to 9)\n\tdungeon: Lol. Breaking out the red... ;-(\n\n\tdisaac: Just wrapping things up. :)\n\tdisaac: Nice game though. You had me worried there for a while. I was just (happily) surprised that you sacked your last large from your homeworld.\n\tdungeon: So close... at least I lasted longer this time... ^_^\n\nHomeworlds Online (SDG# 23216)\nStarted: 2013.1.10, Ended: 2013.1.15\nParticipants: Broccoli_Commander (S), ts52 (N)\nWinner: Broccoli_Commander\n\n1) ts52: Homeworld Y1 B3 G3\n\n2) Broccoli_Commander: Homeworld Y1 G2 Y3 *\n\tts52: Have a good game!\n\tBroccoli_Commander: You too! Hope I won't be crushed as easily ^^'\n\n3) ts52: Build G1 Ts52\n\tBroccoli_Commander: This is a wild try, let's see...\n\tts52: That is wild.\n\n4) Broccoli_Commander: Build Y1 Broccoli_commander\n\n5) ts52: Discover G1 Ts52 B2 Gonzo\n\n6) Broccoli_Commander: Discover Y1 Broccoli_commander G3 Lettuce\n\n7) ts52: Build G1 Ts52\n\n8) Broccoli_Commander: Build Y2 Lettuce\n\n9) ts52: Build G1 Gonzo\n\n10) Broccoli_Commander: Build Y2 Lettuce\n\n11) ts52: Build G2 Gonzo\n\n12) Broccoli_Commander: Build Y2 Broccoli_commander\n\n13) ts52: Discover G1 Ts52 B2 Grover\n\n14) Broccoli_Commander: Discover Y2 Broccoli_commander G3 Watermelon\n\n15) ts52: Build G2 Ts52\n\n16) Broccoli_Commander: Build Y3 Watermelon\n\n17) ts52: Trade G2 R2 Ts52\n\n18) Broccoli_Commander: Build Y3 Watermelon\n\n19) ts52: Build G2 Ts52\n\n20) Broccoli_Commander: Move Y3 Watermelon Gonzo\n\n21) ts52: Trade G2 R2 Gonzo\n\n22) Broccoli_Commander: Trade Y3 R3 Gonzo\n\tts52: oh nice, that's _very_ interesting\n\n23) ts52: Sacrifice G2 Ts52\nBuild R1 Gonzo\nBuild R1 Gonzo\nCatastrophe Gonzo Red\n\tBroccoli_Commander: t y3 r3 gonzo\n\n24) Broccoli_Commander: Build Y3 Watermelon\n\tBroccoli_Commander: Oops wrong text field. Yes it's interesting :-D Technically I had at least forced a tie, let's see how it pans out now..\n\n25) ts52: Build G2 Grover\n\tts52: It's not over yet, but it will be interesting.\n\n26) Broccoli_Commander: Move Y3 Watermelon Grover\n\n27) ts52: Trade G1 R1 Grover\n\n28) Broccoli_Commander: Trade Y3 R3 Grover\n\n29) ts52: Sacrifice G2 Grover\nBuild R1 Grover\nBuild R1 Grover\nCatastrophe Grover Red\n\n30) Broccoli_Commander: Build Y3 Watermelon\n\n31) ts52: Build G1 Ts52\n\tts52: Hmmm, this isn't going to last very long. :(\n\n32) Broccoli_Commander: Move Y3 Watermelon Gonzo\n\tBroccoli_Commander: Yeah like this you lose a ship each "cycle"\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\n\n34) Broccoli_Commander: Trade Y3 R3 Gonzo\n\n35) ts52: Trade G3 Y3 Ts52\n\n36) Broccoli_Commander: Attack G2 Gonzo\n\n37) ts52: Sacrifice G2 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nCatastrophe Gonzo Green\n\n38) Broccoli_Commander: Move Y2 Lettuce Gonzo\n\n39) ts52: Discover Y3 Ts52 G2 Kermit\n\n40) Broccoli_Commander: Trade Y2 G2 Gonzo\n\tBroccoli_Commander: nice move!\n\tts52: Thanks. I've still got a big uphill battle though.\n\n41) ts52: Discover G1 Ts52 Y2 Zoe\n\n42) Broccoli_Commander: Build G1 Gonzo\n\n43) ts52: Discover Y3 Kermit B3 Grover\n\n44) Broccoli_Commander: Trade G1 B1 Gonzo\n\n45) ts52: Sacrifice G1 Zoe\nBuild Y2 Grover\n\n46) Broccoli_Commander: Sacrifice B1 Gonzo\nTrade Y3 R3 Broccoli_commander\n\n47) ts52: Build G1 Ts52\n\tBroccoli_Commander: sorry for that undo\n\tts52: no problem\n\n48) Broccoli_Commander: Build Y3 Lettuce\n\n49) ts52: Trade Y2 G2 Grover\n\n50) Broccoli_Commander: B Y2 Watermelon\n\n51) ts52: Build G1 Grover\n\n52) Broccoli_Commander: Build G1 Gonzo\n\n53) ts52: Discover G1 Ts52 B2 Cookie\n\n54) Broccoli_Commander: Sacrifice Y3 Watermelon\nMove Y2 Watermelon Gonzo\nMove Y2 Watermelon Gonzo\nMove Y3 Lettuce Cookie\n\n55) ts52: Build G3 Cookie\n\n56) Broccoli_Commander: Build Y3 Lettuce\n\n57) ts52: Trade G1 R1 Cookie\n\n58) Broccoli_Commander: Sacrifice R3 Gonzo\nAttack G3 Cookie\nAttack R1 Cookie\nPass\n\tBroccoli_Commander: pfff this was not very wise but i won't undo again ^^'\n\n59) ts52: Build R1 Ts52\n\n60) Broccoli_Commander: Sacrifice Y3 Lettuce\nMove G1 Gonzo Ts52\nMove G2 Gonzo Ts52\nMove G3 Cookie Ts52\nCatastrophe Ts52 G\n\n61) ts52: Trade R2 G2 Ts52\n\n62) Broccoli_Commander: Sacrifice Y2 Gonzo\nMove Y2 Lettuce Broccoli_commander\nMove Y3 Cookie Ts52\n\n63) ts52: Sacrifice G2 Ts52\nBuild Y2 Grover\nBuild Y3 Grover\n\n64) Broccoli_Commander: Sacrifice R1 Cookie\nAttack R1 Ts52\n\n\tBroccoli_Commander: Good game!\r\nIt was hard to actually finish it ^^' You even got close of winning at some point. Did I make a big mistake after the yellow monopoly of the start?\n\tts52: Hard to say for sure. I should've given up trying to keep you from getting green earlier. Not sure if you made any big mistakes.\n\nHomeworlds Online (SDG# 23239)\nStarted: 2013.1.10, Ended: 2013.1.24\nParticipants: adwm86 (S), dungeon (N)\nWinner: adwm86\n\n1) dungeon: Homeworld G3 Y2 B3\n\n2) adwm86: Homeworld B2 Y1 G3\n\n3) dungeon: Build B1 Dungeon\n\n4) adwm86: Build G1 Adwm86\n\n5) dungeon: Discover B3 Dungeon Y1 Magewar\n\n6) adwm86: Discover G3 Adwm86 Y3 Agricola\n\tdungeon: I find playing in this format refreshing, but I still tend to make more mistakes here than I don on the table... meh... is practice anyway ;-)\n\n7) dungeon: Build B1 Dungeon\n\n8) adwm86: Build G1 Adwm86\n\n9) dungeon: Trade B1 G1 Dungeon\n\n10) adwm86: Build G2 Adwm86\n\n11) dungeon: Build G2 Dungeon\n\n12) adwm86: Move G1 Adwm86 Agricola\n\n13) dungeon: Move G2 Dungeon Magewar\n\n14) adwm86: Trade G2 R2 Adwm86\n\n15) dungeon: Build G2 Magewar\n\tadwm86: Ya just like mtg on ps3. I find I have submit what im tryin do couple times\n\tadwm86: My homeworld is adwm86 it looks like 88 on end\n\tdungeon: No probs. I just got m'taint handed to me yesterday... ugh... thought I was having a good game. You got anyone to play these up here yet?\n\n16) adwm86: Build G2 Adwm86\n\tadwm86: \n\tadwm86: \n\n17) dungeon: Build G3 Dungeon\n\n18) adwm86: Discover G3 Agricola B2 Twilight\n\n19) dungeon: Discover G2 Magewar Y3 Bang\n\n20) adwm86: Trade G2 Y2 Adwm86\n\n21) dungeon: Discover G2 Magewar Y3 Dyinglights\n\tdungeon: You playing from your phone? I cannot get it to work properly from mine ;-(...\n\n22) adwm86: Move R2 Adwm86 Dyinglights\n\n23) dungeon: Move G2 Dyinglights Adwm86\n\tdungeon: Accidentally hit the undo button when trying to scroll and refresh.. ugh... \n\n24) adwm86: Trade Y2 R2 Adwm86\n\n25) dungeon: Build G2 Bang\n\n26) adwm86: Attack G2 Adwm86\n\n27) dungeon: Move B3 Magewar Bang\n\n28) adwm86: Discover G1 Agricola Y1 Mtg\n\n29) dungeon: Trade B3 R3 Bang\n\n30) adwm86: Move G1 Mtg Dungeon\nCatastrophe Dungeon G\n\n31) dungeon: Move R3 Bang Adwm86\n\n32) adwm86: Move R2 Dyinglights Dungeon\n\tadwm86: Sorry I forget about txt block in bottom \r\nYa I play from my phone\n\tdungeon: S'all good. Lucky... I can't get it to work good on mine ;-( I try to play early in the morning at work or during lunch... I am ordering a demo kit from LL's later this month and will start to demo at the local stores soon! \n\n33) dungeon: Sacrifice G2 Bang\nBuild B1 Dungeon\nBuild B1 Dungeon\n\n34) adwm86: Attack B1 Dungeon\n\tadwm86: What is LL's\n\n35) dungeon: Attack R2 Adwm86\n\tdungeon: Looney Labs ;-)\n\n36) adwm86: Attack B1 Dungeon\n\n37) dungeon: Sacrifice G2 Bang\nBuild B2 Dungeon\nBuild B3 Dungeon\n\n38) adwm86: Discover R2 Dungeon Y3 Mtg\nCatastrophe Dungeon B\n\n\tdungeon: ;-)\n\tadwm86: Couldnt have sac R2 in my system to attack twice with R3 in mu home system to cap my two G1?\n\tdungeon: Sack of crud... I should have done that!!! Ugh... I will get you next time... ;-)\n\nHomeworlds Online (SDG# 23215)\nVariants: "Hard time"\nStarted: 2013.1.11, Ended: 2013.1.29\nParticipants: Broccoli_Commander (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y2 B3 G3\n\tBroccoli_Commander: Good game!\n\n2) Broccoli_Commander: Homeworld Y1 G2 B3\n\n3) dlwillson: Build G1 Dlwillson\n\tdlwillson: Good skill, Broccoli\n\n4) Broccoli_Commander: Build B1 Broccoli_commander\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n7) dlwillson: Build G1 Dlwillson\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) dlwillson: T G1 Y1 Dlwillson\n\n10) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n11) dlwillson: Discover B1 Dlwillson G1 Field\n\n12) Broccoli_Commander: Build G1 Broccoli_commander\n\n13) dlwillson: B Y1 Dlwillson\n\n14) Broccoli_Commander: Build G2 Blueberry\n\n15) dlwillson: M Y1 Dlwillson Field\n\n16) Broccoli_Commander: Trade G2 Y2 Blueberry\n\n17) dlwillson: B B1 Field\n\n18) Broccoli_Commander: Build B2 Broccoli_commander\n\n19) dlwillson: B B2 Field\n\n20) Broccoli_Commander: B G2 Blueberry\n\n21) dlwillson: M B1 Field Blueberry\n\tBroccoli_Commander: sorry typo..\n\n22) Broccoli_Commander: Discover G1 Blueberry R2 Tomatoe\n\n23) dlwillson: Build Y2 Dlwillson\n\n24) Broccoli_Commander: B Y3 Blueberry\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Blueberry\nBuild B3 Blueberry\nBuild Y3 Field\nCatastrophe Blueberry B\n\n26) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Tomatoe\nBuild G2 Tomatoe\nBuild G3 Broccoli_commander\n\n27) dlwillson: Trade Y3 G3 Field\n\n28) Broccoli_Commander: Sacrifice B1 Broccoli_commander\nTrade G2 Y2 Tomatoe\n\n29) dlwillson: Sacrifice Y2 Dlwillson\nMove G3 Field Dlwillson\nDiscover B2 Field G3 Forest\n\n30) Broccoli_Commander: Build B1 Broccoli_commander\n\n31) dlwillson: B G2 Dlwillson\n\n32) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n33) dlwillson: Trade G2 R2 Dlwillson\n\n34) Broccoli_Commander: Build R1 Broccoli_commander\n\n35) dlwillson: Build G1 Dlwillson\n\n36) Broccoli_Commander: Move Y2 Tomatoe Field\n\n37) dlwillson: Build Y2 Field\n\n38) Broccoli_Commander: Move Y2 Field Tomatoe\n\n39) dlwillson: T Y2 R2 Field\n\n40) Broccoli_Commander: Build G2 Tomatoe\n\n41) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dlwillson\nBuild Y3 Field\nBuild G3 Dlwillson\n\n42) Broccoli_Commander: B Y3 Tomatoe\n\n43) dlwillson: M Y1 Field Tomatoe\n\n44) Broccoli_Commander: M G2 Tomatoe Field\n\n45) dlwillson: S G3 Dlwillson\nB R1 Field\nB Y3 Tomatoe\nB G3 Dlwillson\nC Tomatoe Y\n\n46) Broccoli_Commander: T B2 Y2 Broccoli_commander\n\n47) dlwillson: S G3 Dlwillson\nB R3 Dlwillson\nB B1 Forest\nB G3 Dlwillson\n\n48) Broccoli_Commander: S Y2 Broccoli_commander\nM G2 Tomatoe Field\nM G1 Tomatoe Field\nC Field G\n\n49) dlwillson: T B1 Y1 Forest\n\n50) Broccoli_Commander: Trade G3 Y3 Broccoli_commander\n\n51) dlwillson: B Y2 Forest\n\n\tBroccoli_Commander: I don't think I stand a chance...\r\nWell played! Thanks for the game.\r\nWanna go again?\n\tdlwillson: Time for a rubber match!\n\nHomeworlds Online (SDG# 23245)\nStarted: 2013.1.14, Ended: 2013.1.16\nParticipants: dungeon (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld G1 B2 Y3\n\n2) dungeon: Homeworld B1 Y3 G3\n\tBroccoli_Commander: Hello, have a good game dear Sir.\n\tdungeon: No problem! You will pulverise me.... but it will be worth the experience. ;-)\n\n3) Broccoli_Commander: Build Y1 Broccoli_commander\n\n4) dungeon: Build G1 Dungeon\n\n5) Broccoli_Commander: T Y3 G3 Broccoli_commander\n\n6) dungeon: Discover G1 Dungeon Y2 Tux1\n\n7) Broccoli_Commander: Build Y1 Broccoli_commander\n\n8) dungeon: Build G1 Dungeon\n\n9) Broccoli_Commander: Build G2 Broccoli_commander\n\n10) dungeon: Sacrifice G3 Dungeon\nBuild G2 Tux1\nBuild G2 Tux1\nBuild G3 Dungeon\n\n11) Broccoli_Commander: Discover G2 Broccoli_commander G3 Lettuce\n\n12) dungeon: Discover G2 Tux1 Y3 Yoy\n\n13) Broccoli_Commander: Build Y1 Broccoli_commander\n\tBroccoli_Commander: Heh it's also my fourth game or so! You do have chances!\n\n14) dungeon: Trade G1 B1 Dungeon\n\n15) Broccoli_Commander: Move Y1 Broccoli_commander Lettuce\n\n16) dungeon: Build G1 Dungeon\n\n17) Broccoli_Commander: Discover G2 Lettuce Y2 Cauliflower\n\n18) dungeon: Trade G3 Y3 Dungeon\n\n19) Broccoli_Commander: T Y1 R1 Broccoli_commander\n\n20) dungeon: Move G1 Tux1 Yoy\n\n21) Broccoli_Commander: Build G3 Cauliflower\n\n22) dungeon: Sacrifice Y3 Dungeon\nMove G2 Yoy Broccoli_commander\nMove G1 Yoy Broccoli_commander\nDiscover G2 Tux1 Y3 Cli\nCatastrophe Broccoli_commander G\n\n23) Broccoli_Commander: Move G3 Cauliflower Dungeon\n\n24) dungeon: Build G1 Cli\n\n25) Broccoli_Commander: Trade G3 R3 Dungeon\n\n26) dungeon: Build G1 Dungeon\n\n27) Broccoli_Commander: Attack B1 Dungeon\n\n28) dungeon: Build G2 Cli\n\n29) Broccoli_Commander: Sacrifice R3 Dungeon\nAttack G1 Dungeon\nAttack G1 Dungeon\nPass\n\tdungeon: I am deep Bantha poodoo\n\tdungeon: ... in... ugh\n\n\tBroccoli_Commander: Yeah I actually hoped you would sacrifice your y3 to cat g in my homeworld. I think you should be more cautious about losing your big ship at home!\r\n\r\nBut anyway, thanks for the game :-)\n\tdungeon: No probs. I thought I had a good strategy... meh. So goes the saying with all things good... If you do not struggle for it, it is not worth a persons time. In this instance, I counted my eggs before they were hatched... Thanks!\n\nHomeworlds Online (SDG# 23238)\nStarted: 2013.1.16, Ended: 2013.1.31\nParticipants: Broccoli_Commander (S), ts52 (N)\nWinner: Broccoli_Commander\n\n1) ts52: Homeworld Y1 B2 G3\n\tBroccoli_Commander: Yep let's go again :-) \n\tBroccoli_Commander: Woops sorry wrong guy ^^\r\nStill, wanna play again?\n\tts52: Sure!\n\n2) Broccoli_Commander: Homeworld B1 Y3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) Broccoli_Commander: Discover G1 Broccoli_commander B2 Blueberry\n\n7) ts52: Build G1 Grover\n\n8) Broccoli_Commander: Build G2 Blueberry\n\n9) ts52: Build G2 Ts52\n\n10) Broccoli_Commander: Trade G1 Y1 Blueberry\n\n11) ts52: Trade G2 Y2 Ts52\n\n12) Broccoli_Commander: Build G1 Blueberry\n\n13) ts52: Build G2 Ts52\n\n14) Broccoli_Commander: Trade G2 R2 Blueberry\n\n15) ts52: Trade G1 R1 Grover\n\n16) Broccoli_Commander: Move R2 Blueberry Grover\n\n17) ts52: Sacrifice G2 Ts52\nBuild R1 Grover\nBuild R1 Grover\nCatastrophe Grover Red\n\n18) Broccoli_Commander: Build Y1 Blueberry\n\n19) ts52: Build Y2 Ts52\n\n20) Broccoli_Commander: Build Y2 Blueberry\n\n21) ts52: Move Y2 Ts52 Grover\n\n22) Broccoli_Commander: Trade Y1 R1 Blueberry\n\n23) ts52: Trade Y2 R2 Grover\n\n24) Broccoli_Commander: Move Y1 Blueberry Broccoli_commander\n\n25) ts52: Move Y2 Ts52 Grover\n\n26) Broccoli_Commander: B Y1 Blueberry\n\n27) ts52: Build Y2 Grover\n\n28) Broccoli_Commander: D Y2 Blueberry G3 Lettuce\n\n29) ts52: Discover Y2 Grover G2 Kermit\n\n30) Broccoli_Commander: Build Y3 Blueberry\n\n31) ts52: Build Y3 Grover\n\n32) Broccoli_Commander: Build R1 Blueberry\n\n33) ts52: Move R2 Grover Kermit\n\n34) Broccoli_Commander: Build G1 Broccoli_commander\n\n35) ts52: Build G2 Ts52\n\n36) Broccoli_Commander: Build G2 Blueberry\n\n37) ts52: Build R1 Kermit\n\n38) Broccoli_Commander: M R1 Blueberry Lettuce\n\n39) ts52: Trade G3 R3 Ts52\n\n40) Broccoli_Commander: Discover G2 Blueberry G3 Prairie\n\n41) ts52: Build R2 Ts52\n\n42) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R2 Blueberry\nBuild R3 Lettuce\n\n43) ts52: Move R2 Ts52 Grover\n\n44) Broccoli_Commander: Trade R2 B2 Blueberry\n\n45) ts52: Discover Y3 Grover R2 Elmo\n\n46) Broccoli_Commander: Build R3 Blueberry\n\n47) ts52: Move Y3 Elmo Broccoli_commander\n\n48) Broccoli_Commander: Sacrifice R1 Lettuce\nAttack Y3 Broccoli_commander\n\n49) ts52: Move Y2 Kermit Broccoli_commander\nCatastrophe Broccoli_commander Yellow\n\n50) Broccoli_Commander: Move Y3 Blueberry Grover\n\n51) ts52: Sacrifice Y2 Grover\nMove G1 Grover Broccoli_commander\nDiscover G2 Ts52 Y3 Zoe\n\n52) Broccoli_Commander: Sacrifice Y2 Lettuce\nDiscover G1 Broccoli_commander Y3 Cauliflower\nMove R1 Blueberry Broccoli_commander\n\n53) ts52: Sacrifice R1 Kermit\nAttack R1 Broccoli_commander\n\n54) Broccoli_Commander: Sacrifice R3 Blueberry\nAttack R2 Grover\nAttack G1 Broccoli_commander\nAttack R1 Broccoli_commander\n\n55) ts52: Move G2 Zoe Ts52\n\n56) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Grover\nBuild Y2 Grover\n\n57) ts52: Build R1 Ts52\n\tts52: this is not going to end well...\n\n58) Broccoli_Commander: S Y3 Grover\nM R2 Grover Ts52\nMove R1 Broccoli_commander Grover\nM R1 Grover Ts52\nCatastrophe Ts52 R\n\n\tts52: d'oh! ok, there's no way I can come back from that. Thanks for the game.\n\tBroccoli_Commander: im afraid not\n\tBroccoli_Commander: Thanks for the game\n\nHomeworlds Online (SDG# 23213)\nVariants: "Hard time"\nStarted: 2013.1.16, Ended: 2013.1.24\nParticipants: Broccoli_Commander (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tBroccoli_Commander: Yep let's go again!\n\tSilentTitan: yea!! I have been soooo bored. No one has challenged me for months. I've darn near forgotten how to play\n\tSilentTitan: homeworld r1 b2 g3\n\tSilentTitan: lol... oops ... see\r\n\n\n2) Broccoli_Commander: Homeworld B1 G3 Y3\n\tSilentTitan: Be forwarned: your opponent has choosen "Banker"\n\tBroccoli_Commander: Oh I see... twice ;-)\r\nGotta think 2min about my homeworld..\n\n3) SilentTitan: Build G1 Silenttitan\n\tBroccoli_Commander: Really nobody played you? I'm new here but it seems pretty active?!\n\n4) Broccoli_Commander: Build Y1 Broccoli_commander\n\tSilentTitan: It is ... but been slow lately. for some reason. After 6 months I finally got challenged for the top spot on the ladder. \n\tSilentTitan: I guess that's not entirely true .. I was challenged a few times before. It has been a while tho..\n\tBroccoli_Commander: Oh you have the top spot on the ladder? Congrats :-D I just subscribed to it... I hope I can climb the bottom quickly, I guess the lower players are also inactive and I will have to wait for forfeits or whatever\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\tSilentTitan: LOL... it took me three years to get here and I fell into it because my bro-in-law challenged TwoShort and he failed to respond so he dropped to 6th. Be hard to tell if I'm any good based on that last game we played.. eh?\n\tBroccoli_Commander: Oh I see. So if it takes 3y for a bad player to get there I might have to wait 2 months then :-D (jk)\r\nYeah bout the last game I merely think you fell asleep because you had won it ^^'\n\n6) Broccoli_Commander: Trade Y3 G3 Broccoli_commander\n\n7) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: maybe... still <red faced> about it. \n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) SilentTitan: Trade G1 B1 Silenttitan\n\n10) Broccoli_Commander: D G1 Broccoli_commander B2 Blueberry\n\n11) SilentTitan: Build B1 Silenttitan\n\n12) Broccoli_Commander: Build G1 Blueberry\n\n13) SilentTitan: Discover B1 Silenttitan Y3 Sol\n\n14) Broccoli_Commander: Trade G1 R1 Blueberry\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sol\nBuild B3 Sol\nBuild B3 Silenttitan\n\n16) Broccoli_Commander: Build G1 Broccoli_commander\n\n17) SilentTitan: Trade B3 G3 Silenttitan\n\tBroccoli_Commander: Yeah sth went wrong ^^' Nice play\n\n18) Broccoli_Commander: Build Y1 Broccoli_commander\n\n19) SilentTitan: Build B3 Silenttitan\n\n20) Broccoli_Commander: Build Y2 Broccoli_commander\n\n21) SilentTitan: Sacrifice B2 Sol\nTrade B3 R3 Sol\nTrade B3 Y3 Silenttitan\n\n22) Broccoli_Commander: Move Y2 Broccoli_commander Blueberry\n\n23) SilentTitan: Move R3 Sol Blueberry\n\n24) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove R1 Blueberry Broccoli_commander\nMove G1 Blueberry Sol\n\n25) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sol\nBuild B3 Sol\nBuild B3 Silenttitan\n\n26) Broccoli_Commander: Build Y2 Broccoli_commander\n\n27) SilentTitan: Sacrifice B2 Sol\nTrade B3 Y3 Silenttitan\nTrade B3 R3 Sol\n\n28) Broccoli_Commander: Sacrifice G1 Sol\nBuild R1 Broccoli_commander\n\n29) SilentTitan: Trade Y1 G1 Silenttitan\n\n30) Broccoli_Commander: D R1 Broccoli_commander G2 Lettuce\n\n31) SilentTitan: Sacrifice Y3 Silenttitan\nMove G1 Silenttitan Sol\nMove G1 Sol Blueberry\nMove G1 Blueberry Broccoli_commander\nCatastrophe Broccoli_commander Green\n\n\tBroccoli_Commander: Well played! I was really surprised by your sudden dozen of blue ships ^^\n\tSilentTitan: Thanks for the game. I'm avaliable to play more anytime you'd like. \n\nHomeworlds Online (SDG# 23260)\nVariants: "Hard time"\nStarted: 2013.1.17, Ended: 2013.2.23\nParticipants: Danner (S), Aristos (N)\nWinner: Danner\n\n1) Aristos: Homeworld G2 B3 Y3\n\n2) Danner: Homeworld B1 R2 G3\n\n3) Aristos: Build Y1 Aristos\n\n4) Danner: Build G1 Danner\n\n5) Aristos: Build Y1 Aristos\n\n6) Danner: Trade G1 Y1 Danner\n\n7) Aristos: Discover Y1 Aristos G1 Pretty\n\n8) Danner: Build Y2 Danner\n\n9) Aristos: Build Y2 Pretty\n\n10) Danner: Discover Y1 Danner G3 Sssla\n\tAristos: If you build yellow, I could sacrifice my Y2, move my Y1 into your home system and catastrophe. It would be your turn, and we would be *exactly* where we were on the second move of the game. Another player and I found a mini loop where either player breaking the loop lost the game. I wonder if, under optimal play, a larger "must maintain the loop" scenario exists...?\n\tDanner: Sorry for the delay, I'm in the middle of my exam period.\r\n"Another player and I found a mini loop where either player breaking the loop lost the game." So we were right, cool! :) But it's also a problem, since draws are not implemented here. Do you want to use some kind of anti-loop rule in our games?\n\n11) Aristos: Sacrifice Y1 Pretty\nDiscover Y1 Aristos B1 Fancy\n\tAristos: Yes, I'd like such a rule. I've given some thought to this... I think that the player who owns the biggest ship involved in the loop should be the one that gets to "win" the loop. If both players tie for that, then ban the move that would take us back to an earlier game position. \n\tAristos: "Involved in the loop" means any ship that changes position/color/existence between during the turns from the first state of the loop until back to that state again.\n\n12) Danner: Build G1 Danner\n\tDanner: I think it's a little over-complicated. :) It's easier to ban any move that would take us back to an earlier game position.\r\nI've found a scenario where your rule is ambiguous.\r\nPic: http://dan.uw.hu/temp/loops.png\r\nExplanation:\r\nFirst, the game progresses normally: A B C D E.\r\nThen Red creates a loop. Assuming that Blue wins the loop, Red has to break it somewhere. He chooses C, and moves into position F.\r\nNow Blue tries to move into position A. There are multiple loops to be considered: ABCFA and ABCDEBCFA.\r\nIt's possible that one of the loops produces a tie (the move is banned) and the other does not (the move is allowed).\n\n13) Aristos: Trade Y1 G1 Fancy\n\tAristos: Ok... I can agree to that rule... no going back to an earlier state. \n\n14) Danner: Discover G1 Danner Y3 Ursa\n\n15) Aristos: Build G2 Fancy\n\tDanner: Ok. :)\n\n16) Danner: Build G2 Danner\n\n17) Aristos: Discover Y2 Pretty G3 Whoaitgotbigger\n\n18) Danner: Sacrifice G3 Danner\nBuild Y1 Danner\nBuild G1 Ursa\nBuild G3 Danner\n\n19) Aristos: Trade G2 R2 Fancy\n\n20) Danner: Trade G2 R2 Danner\n\n21) Aristos: Build Y1 Whoaitgotbigger\n\n22) Danner: Build G2 Danner\n\n23) Aristos: Sacrifice Y2 Whoaitgotbigger\nMove R2 Fancy Sssla\nDiscover G1 Fancy B2 Yowza\n\n24) Danner: Sacrifice Y1 Sssla\nMove R2 Danner Ursa\n\n25) Aristos: Build G2 Yowza\n\n26) Danner: Move G1 Ursa Yowza\n\n27) Aristos: Build Y1 Aristos\n\n28) Danner: Trade G1 B1 Yowza\n\n29) Aristos: Sacrifice G2 Yowza\nBuild Y2 Whoaitgotbigger\nBuild Y2 Aristos\n\n30) Danner: Discover Y1 Danner B3 Meklon\n\n31) Aristos: Sacrifice Y1 Aristos\nDiscover G1 Yowza Y3 Woot\n\n32) Danner: Build R1 Ursa\n\n33) Aristos: Discover Y1 Whoaitgotbigger Y1 Ding\n\n34) Danner: Move G2 Danner Woot\n\n35) Aristos: Build R1 Sssla\n\n36) Danner: Build G1 Danner\n\n37) Aristos: Build R1 Sssla\n\n38) Danner: Sacrifice Y2 Danner\nMove R1 Ursa Yowza\nMove R1 Yowza Sssla\nCatastrophe Sssla R\n\n39) Aristos: Build Y2 Whoaitgotbigger\n\n40) Danner: Sacrifice G3 Danner\nBuild G2 Ursa\nBuild G3 Woot\nBuild G3 Danner\n\n41) Aristos: Discover Y1 Ding B2 Bzzt\n\n42) Danner: Sacrifice G3 Danner\nBuild G3 Danner\nBuild Y1 Meklon\nBuild R1 Ursa\n\n43) Aristos: Move G1 Woot Bzzt\n\n44) Danner: Move Y1 Meklon Danner\n\n45) Aristos: Trade Y1 R1 Bzzt\n\n46) Danner: Build Y1 Danner\n\n47) Aristos: Move Y2 Whoaitgotbigger Bzzt\n\n48) Danner: Move G3 Woot Bzzt\n\n\tAristos: I concede. Well played.\n\tDanner: Thanks!\n\nHomeworlds Online (SDG# 23273)\nStarted: 2013.1.17, Ended: 2013.1.24\nParticipants: dungeon (S), disaac (N)\nWinner: disaac\n\n1) disaac: H G2 Y1 B3\n\n2) dungeon: Homeworld Y3 B2 G3\n\n3) disaac: Build B1 Disaac\n\n4) dungeon: Build G1 Dungeon\n\n5) disaac: Trade B3 G3 Disaac\n\n6) dungeon: Discover G1 Dungeon B1 Icecicle\n\n7) disaac: B G1 Disaac\n\n8) dungeon: Build G1 Icecicle\n\n9) disaac: Discover G1 Disaac B3 Caravanserai\n\n10) dungeon: Trade G1 Y1 Icecicle\n\n11) disaac: Build B1 Disaac\n\n12) dungeon: Discover G1 Icecicle B3 Gemini\n\n13) disaac: D B1 Disaac Y3 Portal\n\n14) dungeon: Move Y1 Icecicle Gemini\n\n15) disaac: T B1 R1 Disaac\n\n16) dungeon: Build G1 Gemini\n\n17) disaac: D B1 Portal Y1 Portal2\n\n18) dungeon: Build Y2 Gemini\n\n19) disaac: Sacrifice B1 Portal2\nTrade G3 R3 Disaac\n\n20) dungeon: Trade Y1 R1 Gemini\n\n21) disaac: B G2 Caravanserai\n\n22) dungeon: Build G2 Dungeon\n\n23) disaac: T G2 Y2 Caravanserai\n\n24) dungeon: Sacrifice Y2 Gemini\nMove R1 Gemini Disaac\nMove G1 Gemini Disaac\n\n25) disaac: A R1 Disaac\n\n26) dungeon: Sacrifice G2 Dungeon\nBuild G2 Gemini\nBuild G2 Gemini\n\n27) disaac: Build G3 Caravanserai\n\tdungeon: I am thinking... a bad move...\n\tdisaac: Did you want to undo that move before make mine?\n\n28) dungeon: Trade G1 R1 Gemini\n\tdungeon: Nah... I should have seen that coming... ugh...\n\n29) disaac: M R3 Disaac Gemini\n\n30) dungeon: Sacrifice G2 Gemini\nBuild R2 Gemini\nBuild R2 Gemini\n\n31) disaac: S Y2 Caravanserai\nD G3 Caravanserai Y1 Portal3\nM G3 Portal3 Dungeon\nC Gemini R\n\tdisaac: did you forget to signal for a catastrophe at the end of your turn? You can probably undo the move and redo it with the catastrophe.\r\nOr else, I might be able to trigger it at the beginning of my turn if you want.\r\n\n\tdungeon: Lol. I was trying to pull a bluff... see if you would trigger it ^_^\n\n32) dungeon: Trade G3 R3 Dungeon\n\tdisaac: Sure... I have no problem triggering it. :)\n\n33) disaac: S R1 Disaac\nA R3 Dungeon\n\tdungeon: I... totally forgot about the sac for attack... ugh... I am loosing points! ^_^\n\n\nHomeworlds Online (SDG# 23243)\nVariants: "Hard time"\nStarted: 2013.1.21, Ended: 2013.2.12\nParticipants: dlwillson (S), inundator (N)\nWinner: dlwillson\n\n1) inundator: Homeworld B2 Y3 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\n3) inundator: Build G1 Inundator\n\n4) dlwillson: Build G1 Dlwillson\n\n5) inundator: Discover G1 Inundator B1 Gene\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) inundator: Build G1 Inundator\n\n8) dlwillson: B Y1 Dlwillson\n\n9) inundator: Trade G1 R1 Inundator\n\n10) dlwillson: Build Y1 Dlwillson\n\n11) inundator: Build G1 Inundator\n\n12) dlwillson: Discover Y1 Dlwillson B2 Sky\n\n13) inundator: Build R1 Inundator\n\n14) dlwillson: B Y2 Dlwillson\n\n15) inundator: Build R2 Inundator\n\n16) dlwillson: D Y2 Dlwillson B2 Sea\n\n17) inundator: Trade R2 Y2 Inundator\n\n18) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sky\nBuild Y3 Sea\nBuild Y3 Dlwillson\n\n19) inundator: Build G1 Gene\n\n20) dlwillson: Trade Y3 G3 Dlwillson\n\n21) inundator: Build G2 Gene\n\n22) dlwillson: Trade Y3 R3 Sea\n\n23) inundator: Trade G2 R2 Gene\n\n24) dlwillson: B G2 Dlwillson\n\n25) inundator: Sacrifice G3 Inundator\nBuild G2 Inundator\nBuild G2 Gene\nBuild G3 Inundator\n\n26) dlwillson: Sacrifice G3 Dlwillson\nBuild Y3 Sky\nBuild Y3 Sea\nBuild G3 Dlwillson\n\n27) inundator: Discover G2 Inundator B1 Ace\n\n28) dlwillson: M Y3 Sky Gene\n\n29) inundator: Build G3 Ace\n\n30) dlwillson: Move Y3 Gene Inundator\n\n31) inundator: Attack Y3 Inundator\n\n32) dlwillson: Sacrifice Y2 Sea\nMove Y1 Sky Gene\nMove Y1 Gene Inundator\nCatastrophe Inundator Y\n\n33) inundator: Trade G3 Y3 Ace\n\n34) dlwillson: T Y1 B1 Dlwillson\n\n35) inundator: Sacrifice G3 Inundator\nBuild G3 Inundator\nBuild G3 Ace\nBuild Y1 Ace\n\n36) dlwillson: B B3 Dlwillson\n\n37) inundator: Trade G2 Y2 Gene\n\n38) dlwillson: S Y3 Sea\nM G3 Dlwillson Inundator\nM G2 Dlwillson Inundator\nM B3 Dlwillson Inundator\nC Inundator G\n\n39) inundator: Sacrifice Y2 Gene\nMove G3 Ace Sky\nMove G3 Sky Dlwillson\n\n40) dlwillson: S R3 Sea\nA R1 Inundator\nA R1 Inundator\nPass\n\n\nHomeworlds Online (SDG# 23307)\nVariants: "Hard time"\nStarted: 2013.1.22, Ended: 2013.3.16\nParticipants: Broccoli_Commander (S), SirRuthvenMurgatroyd (N)\nWinner: Broccoli_Commander\n\n1) SirRuthvenMurgatroyd: Homeworld G1 B2 Y3\n\n2) Broccoli_Commander: Homeworld G1 Y3 G3 *\n\n3) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd G3 Alpha\n\n6) Broccoli_Commander: Discover G1 Broccoli_commander B2 Blueberry\n\n7) SirRuthvenMurgatroyd: Trade Y3 G3 Sirruthvenmurgatroyd\n\n8) Broccoli_Commander: Build G2 Blueberry\n\n9) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n10) Broccoli_Commander: Trade G2 Y2 Blueberry\n\n11) SirRuthvenMurgatroyd: Trade G2 Y2 Sirruthvenmurgatroyd\n\n12) Broccoli_Commander: Build G2 Blueberry\n\n13) SirRuthvenMurgatroyd: Trade G3 R3 Sirruthvenmurgatroyd\n\n14) Broccoli_Commander: Build G2 Broccoli_commander\n\n15) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n16) Broccoli_Commander: Move G2 Blueberry Alpha\n\n17) SirRuthvenMurgatroyd: Move R3 Sirruthvenmurgatroyd Alpha\n\n18) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Alpha\nBuild G3 Alpha\nBuild G3 Broccoli_commander\nCatastrophe Alpha G\n\n19) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd B3 Beta\n\n20) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\tSirRuthvenMurgatroyd: Boo. That wasn't very nice. :'(\n\n21) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n22) Broccoli_Commander: Move G2 Blueberry Beta\n\tBroccoli_Commander: No, that was definitely not :-D\n\n23) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n24) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Beta\nBuild G3 Blueberry\n\n25) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd B3 Gamma\n\n26) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove G3 Blueberry Beta\nMove G3 Beta Sirruthvenmurgatroyd\n\n27) SirRuthvenMurgatroyd: Move Y1 Beta Blueberry\n\n28) Broccoli_Commander: Trade G3 R3 Beta\n\n29) SirRuthvenMurgatroyd: Move Y1 Blueberry Broccoli_commander\n\n30) Broccoli_Commander: Sacrifice R3 Beta\nAttack Y1 Sirruthvenmurgatroyd\nAttack Y2 Sirruthvenmurgatroyd\nPass\n\n\nHomeworlds Online (SDG# 23269)\nVariants: "Hard time"\nStarted: 2013.1.24, Ended: 2013.2.4\nParticipants: SilentTitan (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld R3 B2 G3\n\tBroccoli_Commander: Alright, let's play again then! I hope I will provide a better challenge this time\n\tSilentTitan: ah.. the classic two out of three. \n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) SilentTitan: Build G1 Silenttitan\n\tBroccoli_Commander: depending on the outcome we might push it to a 3 out of 5 ;-)\n\n5) Broccoli_Commander: Discover G1 Broccoli_commander G3 Lettuce\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) Broccoli_Commander: D G1 Broccoli_commander B3 Blueberry\n\n10) SilentTitan: Discover Y1 Silenttitan B1 Sol\n\n11) Broccoli_Commander: B G1 Broccoli_commander\n\n12) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n13) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G2 Blueberry\nBuild G2 Lettuce\n\n14) SilentTitan: Discover Y2 Sol G3 Soul\n\n15) Broccoli_Commander: Build G3 Broccoli_commander\n\n16) SilentTitan: Build Y3 Soul\n\n17) Broccoli_Commander: Trade G3 Y3 Broccoli_commander\n\n18) SilentTitan: Discover Y1 Sol G3 Sole\n\n19) Broccoli_Commander: Trade G1 R1 Blueberry\n\n20) SilentTitan: Sacrifice Y2 Sol\nMove Y2 Soul Broccoli_commander\nMove Y1 Sole Broccoli_commander\nCatastrophe Broccoli_commander Yellow\n\n21) Broccoli_Commander: Build G1 Blueberry\n\n22) SilentTitan: Move Y3 Soul Broccoli_commander\n\n23) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\n24) SilentTitan: Move Y3 Broccoli_commander Blueberry\n\n25) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild G2 Broccoli_commander\nBuild G3 Blueberry\n\tBroccoli_Commander: Ah; clever...\n\n26) SilentTitan: Discover Y3 Blueberry B1 Sol\n\n27) Broccoli_Commander: Trade G2 Y2 Broccoli_commander\n\n28) SilentTitan: Move Y3 Sol Silenttitan\n\n29) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Broccoli_commander\n\n30) SilentTitan: Trade Y2 R2 Silenttitan\n\n31) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R1 Blueberry\nBuild R1 Blueberry\n\n32) SilentTitan: Pass\n\n\tBroccoli_Commander: Let's play another!\n\nHomeworlds Online (SDG# 23317)\nStarted: 2013.1.24, Ended: 2013.2.27\nParticipants: dungeon (S), adwm86 (N)\nWinner: adwm86\n\n1) adwm86: Homeworld B2 Y1 G3\n\n2) dungeon: Homeworld Y3 B2 G3\n\n3) adwm86: Build G1 Adwm86\n\n4) dungeon: Build G1 Dungeon\n\n5) adwm86: Discover G1 Adwm86 Y3 Dagoba\n\n6) dungeon: Discover G1 Dungeon B1 Kashyyyk\n\n7) adwm86: Build G1 Dagoba\n\tadwm86: Lol I forgot h on dagobah\n\n8) dungeon: Build G2 Kashyyyk\n\tdungeon: :-) That is okay. I totally forgot how to spell Kashyyyk and was trying to spell it with one y...\n\n9) adwm86: Build G2 Dagoba\n\n10) dungeon: Build G2 Kashyyyk\n\n11) adwm86: Build G3 Adwm86\n\n12) dungeon: Trade G2 Y2 Kashyyyk\n\n13) adwm86: Trade G3 R3 Adwm86\n\n14) dungeon: Move G1 Kashyyyk Dungeon\n\n15) adwm86: Discover G2 Dagoba Y1 Hoth\n\n16) dungeon: Sacrifice G3 Dungeon\nBuild G2 Kashyyyk\nBuild G3 Kashyyyk\nBuild G3 Dungeon\n\n17) adwm86: Move R3 Adwm86 Dagoba\n\n18) dungeon: Trade G3 Y3 Kashyyyk\n\n19) adwm86: Move R3 Dagoba Kashyyyk\n\n20) dungeon: Trade G3 R3 Dungeon\n\n21) adwm86: Attack Y3 Kashyyyk\n\n22) dungeon: Sacrifice Y2 Kashyyyk\nMove G2 Kashyyyk Dagoba\nMove G2 Dagoba Adwm86\n\n23) adwm86: Trade G3 R3 Adwm86\n\n24) dungeon: Sacrifice G2 Kashyyyk\nBuild G2 Adwm86\nBuild G3 Adwm86\n\n25) adwm86: Sacrifice R3 Kashyyyk\nAttack G2 Adwm86\nAttack G3 Adwm86\nAttack G2 Adwm86\n\n26) dungeon: Trade R3 G3 Dungeon\n\n27) adwm86: Discover G3 Adwm86 B3 Endor\n\tdungeon: You... did not take my bluff.... ;-(\n\n28) dungeon: Discover G1 Dungeon Y1 Naboo\n\tadwm86: The force is strong with this one\r\n\n\n29) adwm86: Sacrifice Y3 Kashyyyk\nMove G1 Dagoba Hoth\nMove G1 Dagoba Hoth\nMove G2 Hoth Dungeon\n\tdungeon: As I was scrolling down the screen... my heart literally sank per each section of the board down... ;-( \n\n30) dungeon: Sacrifice G1 Naboo\nBuild G1 Dungeon\n\n31) adwm86: Move G1 Hoth Dungeon\n\tadwm86: Guess ur rebel scum lol\n\tdungeon: Nah. We are totally good guys... In my version, we poured salt on JarJar and he melted away like a slug.. ;-)\n\tdungeon: Durp, I meant bad guys... ugh.. too early...\n\n32) dungeon: Trade G3 R3 Dungeon\n\n33) adwm86: Move G1 Hoth Dungeon\nCatastrophe Dungeon G\n\tadwm86: Woops forgot catastrophe part lol\n\tdungeon: Just undo your move and start the cat. I need to learn from the poor mistakes ;-) Good show BTW. I seem to be worse off at playing this online than in person... which also still leaves much to be desired ;-) I will start up another challenge\n\n34) dungeon: Trade R3 G3 Dungeon\n\tdungeon: You technically won this one....\n\n35) adwm86: Build G1 Endor\n\tadwm86: Lets keep goin\n\n36) dungeon: Build G1 Dungeon\n\n37) adwm86: Trade G3 Y3 Endor\n\n38) dungeon: Trade G3 R3 Dungeon\n\n39) adwm86: Move G2 Adwm86 Endor\n\n40) dungeon: Discover G1 Dungeon G1 Kessel\n\n41) adwm86: Trade G2 Y2 Endor\n\n42) dungeon: Build G2 Kessel\n\n43) adwm86: Discover Y3 Endor Y2 Mustafar\n\n44) dungeon: Trade R3 G3 Dungeon\n\n45) adwm86: Move Y3 Mustafar Kessel\n\n46) dungeon: Build G2 Dungeon\n\n47) adwm86: Trade G2 Y2 Adwm86\n\tadwm86: Hey I made kesel run in less than 3 parsecs\r\nHaha\n\tdungeon: I laughed when I found out the Kessel was an asteroid... I had no clue. But the whole parsec thing... meh short oversight by Lucas...\n\n48) dungeon: Trade G2 B2 Dungeon\n\n49) adwm86: Build Y1 Endor\n\n50) dungeon: Move B2 Dungeon Kessel\n\n51) adwm86: Trade R3 B3 Adwm86\n\n52) dungeon: Build B1 Kessel\n\n53) adwm86: Build G2 Endor\n\n54) dungeon: Trade G1 Y1 Kessel\n\n55) adwm86: Sacrifice Y2 Endor\nMove G1 Endor Kessel\nMove G2 Endor Kessel\n\n56) dungeon: Sacrifice G2 Kessel\nBuild Y2 Kessel\nBuild Y2 Kessel\n\n57) adwm86: Move Y1 Endor Kessel\n\n58) dungeon: Trade B1 R1 Kessel\n\n59) adwm86: Sacrifice Y3 Kessel\nMove G1 Kessel Dungeon\nMove G2 Kessel Dungeon\nMove Y1 Kessel Dungeon\n\tdungeon: we sure have a cluster at kessel\r\n\n\n60) dungeon: Sacrifice B2 Kessel\nTrade Y2 G2 Kessel\nTrade Y1 G1 Kessel\n\n61) adwm86: Build G2 Dungeon\nCatastrophe Dungeon G\n\n\tdungeon: I... I lost... again...\n\nHomeworlds Online (SDG# 23315)\nStarted: 2013.1.24, Ended: 2013.2.4\nParticipants: dungeon (S), disaac (N)\nWinner: disaac\n\n1) disaac: Homeworld G2 Y1 B3\n\n2) dungeon: Homeworld B1 Y3 G3\n\n3) disaac: Build B1 Disaac\n\n4) dungeon: Build G1 Dungeon\n\n5) disaac: Discover B1 Disaac G3 Prosperity\n\n6) dungeon: Discover G1 Dungeon B2 Radiance\n\n7) disaac: Build B1 Disaac\n\n8) dungeon: Build G1 Dungeon\n\n9) disaac: Trade B3 G3 Disaac\n\tdisaac: sorry... built in the wrong system\n\n10) dungeon: Trade G1 R1 Dungeon\n\tdungeon: No prob.\n\n11) disaac: B B2 Disaac\n\n12) dungeon: Build G1 Radiance\n\n13) disaac: S G3 Disaac\nB B2 Prosperity\nB B3 Prosperity\nB B3 Disaac\n\n14) dungeon: Trade G1 R1 Radiance\n\n15) disaac: D B2 Disaac Y3 Sol\n\n16) dungeon: Build R1 Radiance\n\n17) disaac: T B2 R2 Prosperity\n\n18) dungeon: Trade G1 Y1 Radiance\n\n19) disaac: T B3 G3 Disaac\n\n20) dungeon: Trade R1 G1 Radiance\n\n21) disaac: T B3 Y3 Prosperity\n\n22) dungeon: Discover R1 Radiance B3 Reddwarf\n\n23) disaac: S G3 Disaac\nB B2 Prosperity\nB B3 Sol\nB B3 Disaac\n\tdungeon: This is a tough game so far!\n\n24) dungeon: Discover G1 Radiance G3 Vejur\n\n25) disaac: T B3 R3 Disaac\n\n26) dungeon: Build R1 Dungeon\n\tdungeon: Talking to the shop owners now on FB to see about getting us some tables and time to run their clientèle through the Starfleet Cadet ringer. Would you be more interested in running Fluxx?\r\n \n\n27) disaac: T B2 G2 Sol\n\n28) dungeon: Build G1 Dungeon\n\n29) disaac: B B2 Sol\n\n30) dungeon: Move R1 Dungeon Radiance\n\n31) disaac: Build B3 Disaac\n\n32) dungeon: Discover G1 Dungeon R2 Corona\n\n33) disaac: T B3 R3 Sol\n\n34) dungeon: Sacrifice G3 Dungeon\nBuild R2 Reddwarf\nBuild R3 Dungeon\nBuild G1 Corona\n\n35) disaac: B B3 Sol\n\n36) dungeon: Build G2 Vejur\n\n37) disaac: B G3 Sol\n\n38) dungeon: Sacrifice G2 Vejur\nBuild Y1 Radiance\nBuild Y2 Radiance\n\n39) disaac: D G3 Sol Y2 Station\n\n40) dungeon: Build G2 Vejur\n\n41) disaac: M B3 Sol Station\n\n42) dungeon: Sacrifice Y2 Radiance\nDiscover R2 Reddwarf Y2 Derelect\nMove G2 Vejur Derelect\n\n\n43) disaac: M R3 Sol Station\n\n44) dungeon: Sacrifice G1 Corona\nBuild Y2 Radiance\n\n45) disaac: S Y3 Prosperity\nM R3 Station Dungeon\nM G3 Station Dungeon\nM B3 Station Dungeon\n\n46) dungeon: Attack R3 Dungeon\n\n47) disaac: S R3 Disaac\nA R3 Dungeon\nA R3 Dungeon\nA R1 Dungeon\n\n\nHomeworlds Online (SDG# 23237)\nStarted: 2013.1.29, Ended: 2013.2.7\nParticipants: Broccoli_Commander (S), dlwillson (N)\nWinner: Broccoli_Commander\n\n1) dlwillson: H B1 R3 G3 Dlwillson\n\n2) Broccoli_Commander: Homeworld B1 Y2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) Broccoli_Commander: Build G1 Broccoli_commander\n\n7) dlwillson: B G1 Dlwillson\n\n8) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n9) dlwillson: T G1 B1 Dlwillson\n\n10) Broccoli_Commander: Build G1 Broccoli_commander\n\tdlwillson: Have you joined the ladder yet?\n\tBroccoli_Commander: Yes I just started :-) But I first have to go through the set of nonplaying players which is a bit annoying. I just got my first accepted challenge though.\r\n\n\n11) dlwillson: Build G2 Dlwillson\n\tdlwillson: Excellent. You should do very well.\n\n12) Broccoli_Commander: Discover G1 Broccoli_commander B3 Mushroom\n\n13) dlwillson: B B2 Dlwillson\n\tBroccoli_Commander: We will see :-D \r\nOh once you thought I was already a veteran, but not Andy for some reason. Did you think of Andy Looney? Do you know him?\n\n14) Broccoli_Commander: Build G2 Blueberry\n\n15) dlwillson: T B2 R2 Dlwillson\n\n16) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\n\n17) dlwillson: Trade G3 Y3 Dlwillson\n\n18) Broccoli_Commander: Discover G2 Broccoli_commander G3 Lettuce\n\n19) dlwillson: D R2 Dlwillson Y2 Sun\n\n20) Broccoli_Commander: Trade G2 R2 Blueberry\n\n21) dlwillson: Move R2 Sun Mushroom\n\n22) Broccoli_Commander: Sacrifice G1 Mushroom\nBuild R1 Blueberry\n\tdlwillson: I don't know him. I remember thinking, "Wow, this guy's good; I'd better pay attention! Hm... Too late to pay attention to this game."\r\nI don't remember how I knew you weren't Andy.\n\n23) dlwillson: Sacrifice G2 Dlwillson\nBuild B2 Dlwillson\nBuild R1 Mushroom\n\n24) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G1 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G2 Blueberry\n\n25) dlwillson: T Y3 G3 Dlwillson\n\n26) Broccoli_Commander: Trade R1 Y1 Blueberry\n\n27) dlwillson: D B2 Dlwillson Y2 Sun\n\tdlwillson: I do know Silent Titan, though! He told me last night at my son's birthday what a strong player you are.\n\n28) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R1 Blueberry\nBuild R1 Blueberry\n\n29) dlwillson: Trade R2 Y2 Mushroom\n\n30) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y1 Blueberry\nBuild Y3 Blueberry\n\n31) dlwillson: S G3 Dlwillson\nB Y3 Dlwillson\nB B2 Sun\nB Y3 Mushroom\n\tBroccoli_Commander: Ah talking behind my back ^^ Thanks, and in any case I learned quite a bit from both of you (e.g. I think I finally get why you would get b&r stars in your homeworld). I really like this game, the strategy is kinda deep, yet it seems more understandable than chess for example\n\n32) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild G2 Lettuce\nBuild G3 Broccoli_commander\n\n33) dlwillson: Move B2 Sun Blueberry\n\n34) Broccoli_Commander: Sacrifice Y3 Blueberry\nDiscover G3 Blueberry B2 Blueberry_rip\nMove Y1 Blueberry Blueberry_rip\nMove R1 Blueberry Blueberry_rip\n\n35) dlwillson: S Y3 Mushroom\nM B2 Blueberry Broccoli_commander\nM B2 Sun Blueberry\nM B2 Blueberry Broccoli_commander\n\n36) Broccoli_Commander: Sacrifice R2 Blueberry\nAttack B2 Broccoli_commander\nAttack B2 Broccoli_commander\n\n\tdlwillson: Well played. Again?\n\tBroccoli_Commander: Sure!\n\nHomeworlds Online (SDG# 23348)\nStarted: 2013.1.31, Ended: 2013.2.26\nParticipants: adwm86 (S), dungeon (N)\nWinner: adwm86\n\n1) dungeon: Homeworld B2 Y1 G3\n\n2) adwm86: Homeworld G3 Y2 B3\n\n3) dungeon: Build G1 Dungeon\n\n4) adwm86: Build B1 Adwm86\n\n5) dungeon: Discover G1 Dungeon G3 Nar_shaddaa\n\n6) adwm86: Trade B3 R3 Adwm86\n\tadwm86: Is that twilight imperium\n\n7) dungeon: Build G1 Dungeon\n\tadwm86: I got M.F. rainbow\n\n8) adwm86: Build B1 Adwm86\n\n9) dungeon: Trade G1 B1 Dungeon\n\tdungeon: I have decided... I will have to get MageWar with the giftcard from Gayle/Todd.... I think I can get it and the first expansion with the card and hopefully they will have the other expansion there for me to pickup! Mwahahaaahahhahahha\n\tdungeon: Nah, that is a moon from Episode VI, I thinthe smugglers moon... Not sure...\n\n10) adwm86: Build B2 Adwm86\n\n11) dungeon: Discover B1 Dungeon Y3 Y-wing\n\n12) adwm86: Discover B2 Adwm86 G1 Death_star\n\n13) dungeon: Build G1 Dungeon\n\tadwm86: Is that yellow pieces Y-wings\n\tdungeon: Hahaha, yeah...\n\tdungeon: Hahaha, yeah...\n\n14) adwm86: Build B2 Death_star\n\n15) dungeon: Move G1 Dungeon Y-wing\n\tadwm86: Should build R3 on Endor haha\n\tdungeon: Lol. Oh-yeah.\n\n16) adwm86: Build B3 Adwm86\n\n17) dungeon: Build G2 Nar_shaddaa\n\n18) adwm86: Discover B3 Adwm86 Y1 Tie_fighter\n\n19) dungeon: Build B3 Y-wing\n\n20) adwm86: Trade B3 R3 Tie_fighter\n\n21) dungeon: Trade B3 Y3 Y-wing\n\n22) adwm86: Move R3 Tie_fighter Y-wing\n\n23) dungeon: Sacrifice G2 Nar_shaddaa\nBuild B3 Y-wing\nBuild G2 Nar_shaddaa\n\n24) adwm86: Attack B3 Y-wing\n\n25) dungeon: Sacrifice Y3 Y-wing\nDiscover B1 Y-wing Y1 X-wing\nMove G1 Y-wing X-wing\nMove G2 Nar_shaddaa X-wing\n\n26) adwm86: Move R3 Y-wing Dungeon\n\n27) dungeon: Trade G3 R3 Dungeon\n\n28) adwm86: Attack R3 Dungeon\n\n\nHomeworlds Online (SDG# 23364)\nStarted: 2013.2.4, Ended: 2013.3.5\nParticipants: dungeon (S), disaac (N)\nWinner: disaac\n\n1) disaac: Homeworld Y1 G2 B3\n\n2) dungeon: Homeworld B3 Y2 G3\n\n3) disaac: B B1 Disaac\n\n4) dungeon: Build G1 Dungeon\n\n5) disaac: T B3 G3 Disaac\n\n6) dungeon: Discover G1 Dungeon Y1 Snazzle\n\n7) disaac: B G1 Disaac\n\n8) dungeon: Build G1 Dungeon\n\n9) disaac: D G1 Disaac B3 Hydro\n\n10) dungeon: Sacrifice G3 Dungeon\nBuild G2 Snazzle\nBuild G2 Snazzle\nBuild G3 Dungeon\n\n11) disaac: B G3 Hydro\n\n12) dungeon: Trade G1 B1 Dungeon\n\n13) disaac: B G1 Disaac\n\n14) dungeon: Discover B1 Dungeon Y1 Xanth\n\n15) disaac: D G1 Disaac Y3 Iss\n\n16) dungeon: Discover B1 Xanth Y3 Ir\n\n17) disaac: B B1 Disaac\n\n18) dungeon: Trade B1 Y1 Ir\n\n19) disaac: M G1 Iss Snazzle\nC Snazzle G\n\n20) dungeon: Build G1 Dungeon\n\n21) disaac: D B1 Disaac Y3 Stargate\n\n22) dungeon: Discover G1 Dungeon Y1 Caldera\n\n23) disaac: B B1 Disaac\n\n24) dungeon: Build G1 Caldera\n\tdungeon: sorry Dan... been busy this week.... :-(\r\n\n\n25) disaac: B G2 Disaac\n\tdisaac: Not a problem. \n\n26) dungeon: Build G2 Caldera\n\n27) disaac: M G2 Disaac Stargate\n\n28) dungeon: Discover G2 Caldera B3 Gemini\n\n29) disaac: S G3 Hydro\nB G3 Hydro\nB B2 Stargate\nB B2 Stargate\n\n30) dungeon: Move G1 Caldera Hydro\n\n31) disaac: T G1 R1 Hydro\n\n32) dungeon: Move Y1 Ir Disaac\n\n33) disaac: S R1 Hydro\nA Y1 Disaac\n\n34) dungeon: Trade G2 Y2 Gemini\n\n35) disaac: T B1 R1 Disaac\n\n36) dungeon: Build G1 Hydro\n\n37) disaac: T B2 Y2 Stargate\n\n38) dungeon: Build G2 Caldera\n\n39) disaac: S Y2 Stargate\nM G3 Hydro Caldera\nM G3 Caldera Dungeon\n\tdisaac: Sorry... Wrong color\n\n40) dungeon: Trade G3 R3 Dungeon\n\n41) disaac: S R1 Disaac\nA R3 Dungeon\n\n\tdisaac: You should keep a bit of a diversified fleet in your home world. Not so many that catastrophes would be easy to cause though. Also consider diversifying the rest of your fleet as well. \n\tdungeon: I seem to get antsy in trying to squander early on. Thanks for the advice! It comes to me easier in the physical game than it does digitally. I might start to keep a physical copy readily available to mock up the game. That might help me out...\n\nHomeworlds Online (SDG# 23366)\nVariants: "Hard time"\nStarted: 2013.2.4, Ended: 2013.3.19\nParticipants: goulo (S), Mandrel (N)\nWinner: goulo\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) goulo: Homeworld R1 B3 G3\n\tMandrel: Have a good game.\n\n3) Mandrel: Build G1 Mandrel\n\tgoulo: thanks, you too!\n\n4) goulo: Build G1 Goulo\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) goulo: Trade G3 R3 Goulo\n\n7) Mandrel: Build R2 Mandrel\n\n8) goulo: Build R2 Goulo\n\n9) Mandrel: Trade R1 Y1 Mandrel\n\n10) goulo: Trade R3 Y3 Goulo\n\n11) Mandrel: Build Y1 Mandrel\n\n12) goulo: Build G1 Goulo\n\n13) Mandrel: Discover Y1 Mandrel G3 Proof\n\n14) goulo: Discover R2 Goulo Y2 Citrono\n\n15) Mandrel: Trade Y1 B1 Mandrel\n\n16) goulo: Move G1 Goulo Citrono\n\n17) Mandrel: Build B1 Mandrel\n\n18) goulo: Build G1 Goulo\n\n19) Mandrel: Build G2 Mandrel\n\n20) goulo: Build G2 Citrono\n\n21) Mandrel: Trade G2 Y2 Mandrel\n\n22) goulo: Trade G1 B1 Goulo\n\n23) Mandrel: Move B1 Mandrel Proof\n\n24) goulo: Move B1 Goulo Citrono\n\n25) Mandrel: Build B2 Proof\n\n26) goulo: Build B2 Citrono\n\n\tMandrel: Apologies, been poor at keeping on top of my games here, been busier than expected.\n\tgoulo: alas, better luck next time! :)\n\nHomeworlds Online (SDG# 23316)\nVariants: "Hard time"\nStarted: 2013.2.4, Ended: 2013.3.13\nParticipants: SilentTitan (S), Broccoli_Commander (N)\nWinner: SilentTitan\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) SilentTitan: Homeworld B1 R3 G3\n\tBroccoli_Commander: Finally gonna try this h r1 b2 g3... But I think I understand the point now! I bet you'll probably prove me wrong, tough. \r\nYou know dlwillson I heard! So my 2 favorite players (so far ^^) are friends :-) I love this game, but I feel like only 50 people or so in the world actually know enough to be rightfully thrilled by it. Kinda geeky, isn't it?\r\nAnyway, have a good game dear Sir!\r\nPS:where do you live?\n\tSilentTitan: David is actually my bro-in-law as I married his sister. We all live in Denver. I totaly agree with the geeky part. You have a good game as well, win or lose I know I'll have a fun time. \n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tSilentTitan: since I hardly ever play the "Goldilocks" position ... this should be interesting.\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) Broccoli_Commander: Build G1 Broccoli_commander\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) Broccoli_Commander: Trade G3 B3 Broccoli_commander\n\tSilentTitan: haha... I undid my turn because I was going to move the Y1 from Silenttitan out to a new system and use up the b1 ... forgot I'm playing goldilocks... I have to move out to a two.\r\n\n\n14) SilentTitan: Discover B1 Silenttitan B2 Sol\n\n15) Broccoli_Commander: Build G1 Broccoli_commander\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sol\nBuild Y1 Silenttitan\nBuild Y2 Silenttitan\n\n17) Broccoli_Commander: Build G2 Broccoli_commander\n\tBroccoli_Commander: Haha, too bad there is no undo the last undo button... Do you actually prefer Fortress over Goldilocks?\n\tSilentTitan: I do, however I suspect it is only due to familiarity.\n\n18) SilentTitan: Trade B2 G2 Sol\n\n19) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild G2 Blueberry\nBuild Y2 Broccoli_commander\n\n20) SilentTitan: Build G2 Sol\n\n21) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower\n\n22) SilentTitan: Sacrifice G2 Sol\nBuild B2 Sol\nBuild B3 Silenttitan\n\n23) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry\n\n24) SilentTitan: Trade B3 G3 Silenttitan\n\n25) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild Y2 Broccoli_commander\nBuild Y3 Blueberry\n\n26) SilentTitan: Discover Y1 Silenttitan G2 Soul\n\n27) Broccoli_Commander: Move Y3 Blueberry Sol\n\n28) SilentTitan: Sacrifice G2 Sol\nBuild Y3 Soul\nBuild B3 Silenttitan\n\tBroccoli_Commander: Hey sorry! I'm moving and had no internet at home.\r\nWow this was close (8h remaining ^^)\n\tSilentTitan: It's all cool.. Life comes up from time to time. David and I were at a gaming con all weekend .. so no worries\r\n\n\n29) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n30) SilentTitan: Trade B3 R3 Silenttitan\n\n31) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\n32) SilentTitan: Build B3 Silenttitan\n\n33) Broccoli_Commander: Move R2 Broccoli_commander Blueberry\n\n34) SilentTitan: Move Y3 Soul Blueberry\n\n35) Broccoli_Commander: Build Y2 Blueberry\n\n36) SilentTitan: Sacrifice R3 Silenttitan\nAttack Y2 Blueberry North\nAttack Y1 Blueberry North\nAttack R2 Blueberry North\n\n37) Broccoli_Commander: Move Y2 Broccoli_commander Blueberry\nCatastrophe Blueberry Y\n\n38) SilentTitan: Attack G1 Blueberry North\n\n39) Broccoli_Commander: Move Y3 Sol Blueberry\n\n40) SilentTitan: Build G2 Blueberry\n\n41) Broccoli_Commander: Trade G3 R3 Broccoli_commander\n\n42) SilentTitan: Sacrifice B3 Silenttitan\nTrade G2 Y2 Blueberry\nTrade G1 Y1 Blueberry\nTrade R2 Y2 Blueberry\nCatastrophe Blueberry Yellow\n\n43) Broccoli_Commander: Build R1 Broccoli_commander\n\n44) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover B1 Sol R3 Sole\n\n45) Broccoli_Commander: Trade R1 Y1 Broccoli_commander\n\n46) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Silenttitan\nBuild B3 Sol\nBuild B3 Sole\n\n\tBroccoli_Commander: I surrender, please don't attack my ships anymore! I believe we can live in peace together.\r\n\r\nWell played!\n\tSilentTitan: oh.. .alright... peace instead of pieces.\r\n\n\nHomeworlds Online (SDG# 23342)\nVariants: "Hard time"\nStarted: 2013.2.7, Ended: 2013.3.8\nParticipants: Broccoli_Commander (S), dlwillson (N)\nWinner: Broccoli_Commander\n\n1) dlwillson: Homeworld B3 Y1 G3 Dlwillson\n\n2) Broccoli_Commander: Homeworld R1 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Broccoli_Commander: Build Y2 Broccoli_commander\n\n9) dlwillson: T Y2 R2 Dlwillson\n\n10) Broccoli_Commander: Build Y2 Broccoli_commander\n\n11) dlwillson: B Y2 Dlwillson\n\n12) Broccoli_Commander: Discover Y2 Broccoli_commander G3 Lettuce\n\n13) dlwillson: D Y1 Dlwillson G2 Forest\n\n14) Broccoli_Commander: Build Y3 Lettuce\n\n15) dlwillson: B Y3 Forest\n\n16) Broccoli_Commander: Discover Y3 Lettuce G2 Romanesco\n\n17) dlwillson: T Y2 B2 Dlwillson\n\n18) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\tBroccoli_Commander: I saw your game against inundator, I was quite disappointed by the ending (not by the result itself, ofcourse :-D)\r\nAfter turn 19:\r\nhttp://superdupergames.org/?page=archive_play&gid=23243&idx=37\r\n\r\nThe situation was very interesting and I almost feel like he should have beaten you or at least have a sizeable chance of doing so(although it is counterintuitive at first sight). What would you have done if he had played\r\n\r\ns y3 ace\r\nm g2 ace inundator\r\nm y1 ace inundator\r\nm g1 gene inundator\r\n?\r\n\r\nAnd frankly tell me if you don't care :-D (after all he did _not_ play this...) I won't take any offense.\n\n19) dlwillson: D Y3 Forest B3 Sky\n\n20) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y2 Lettuce\nBuild Y2 Romanesco\nBuild Y3 Broccoli_commander\n\n21) dlwillson: B R1 Dlwillson\n\n22) Broccoli_Commander: Move R2 Broccoli_commander Lettuce\n\n23) dlwillson: M B2 Dlwillson Forest\n\n24) Broccoli_Commander: Build R1 Lettuce\n\n25) dlwillson: M R1 Dlwillson Forest\n\n26) Broccoli_Commander: Trade Y1 B1 Broccoli_commander\n\n27) dlwillson: B R2 Forest\n\n28) Broccoli_Commander: Move R1 Lettuce Romanesco\n\n29) dlwillson: Build R3 Dlwillson\n\n30) Broccoli_Commander: Build R3 Lettuce\n\n\tdlwillson: D'oh! Dammit. Timed out, plum blossom... Sorry about that, BC. I'm going to take a break from SDG. I'm obviously too busy.\n\tBroccoli_Commander: Hey no problem, I got close several times as well.... Now I get why 1/1/X is not a good idea. \r\nHave fun in whatever keeps you busy, and hope to see you soon again on SDG dear Sir!\n\nHomeworlds Online (SDG# 23408)\nVariants: "Unrated"\nStarted: 2013.2.19, Ended: 2013.2.20\nParticipants: yougurt87 (S), bugggg (N)\nWinner: bugggg\n\n1) bugggg: Homeworld Y1 B2 G3\n\n2) yougurt87: Homeworld B1 Y2 G3\n\n3) bugggg: Build G1 Bugggg\n\n4) yougurt87: Build G1 Yougurt87\n\n5) bugggg: Trade G1 R1 Bugggg\n\n6) yougurt87: Trade G1 R1 Yougurt87\n\n\n7) bugggg: Build G1 Bugggg\n\n8) yougurt87: Build G1 Yougurt87\n\n9) bugggg: Discover G1 Bugggg Y3 Spray\n\n10) yougurt87: Move R1 Yougurt87 Spray\n\n11) bugggg: Sacrifice R1 Bugggg\nAttack R1 Spray\n\n12) yougurt87: Trade G1 R1 Yougurt87\n\n13) bugggg: Build G1 Spray\n\n14) yougurt87: Build G1 Yougurt87\n\n15) bugggg: Build G2 Bugggg\n\n16) yougurt87: Build R1 Yougurt87\n\n17) bugggg: Trade G2 Y2 Bugggg\n\n18) yougurt87: Move G3 Yougurt87 Spray\n\n19) bugggg: Build G2 Bugggg\n\n20) yougurt87: Build G2 Yougurt87\n\n21) bugggg: Sacrifice Y2 Bugggg\nMove G1 Spray Yougurt87\nMove G1 Spray Yougurt87\nCatastrophe Yougurt87 Green\n\n22) yougurt87: Discover R1 Yougurt87 G3 Darlin\n\n23) bugggg: Move G2 Bugggg Darlin\n\n24) yougurt87: Build R2 Darlin\n\n25) bugggg: Sacrifice R1 Spray\nAttack R2 Darlin\n\n26) yougurt87: Build G1 Spray\n\n27) bugggg: Attack R1 Darlin\n\n28) yougurt87: Move G3 Spray Yougurt87\n\n29) bugggg: Build G1 Bugggg\n\n30) yougurt87: Build G1 Yougurt87\n\n31) bugggg: Trade G1 B1 Bugggg\n\n32) yougurt87: Move G3 Yougurt87 Darlin\n\n33) bugggg: Build G1 Darlin\nCatastrophe Darlin Green\n\n34) yougurt87: Move R1 Yougurt87 Spray\n\n35) bugggg: Build G1 Bugggg\n\n36) yougurt87: Build R1 Spray\n\n37) bugggg: Trade G1 R1 Bugggg\n\n38) yougurt87: Build G1 Yougurt87\n\n39) bugggg: Build G2 Bugggg\n\n40) yougurt87: Build G2 Yougurt87\n\n41) bugggg: Trade G2 Y2 Bugggg\n\n42) yougurt87: Build R2 Spray\n\n43) bugggg: Sacrifice Y2 Bugggg\nMove G3 Bugggg Spray\nMove G3 Spray Yougurt87\nCatastrophe Yougurt87 Green\n\n\nHomeworlds Online (SDG# 23423)\nVariants: "Hard time"\nStarted: 2013.2.25, Ended: 2013.3.14\nParticipants: MagicJohn (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld R2 B3 G3\n\n2) MagicJohn: Homeworld R1 B2 G3\n\n3) Aristos: Build G1 Aristos\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) Aristos: Trade G3 Y3 Aristos\n\tMagicJohn: Have a good game.\n\tAristos: Thanks. \n\n6) MagicJohn: Trade G1 Y1 Magicjohn\n\n7) Aristos: Build G1 Aristos\n\n8) MagicJohn: Build Y1 Magicjohn\n\n9) Aristos: Discover G1 Aristos B1 Alpha\n\n10) MagicJohn: Trade Y1 B1 Magicjohn\n\tAristos: Technological breakthrough: The Aristos empire has discovered warp technology and made its first interstellar jump. Alas, the crew is likely lost as they lack the fuel to return.\n\n11) Aristos: Build Y1 Aristos\n\tMagicJohn: Planetary system MagicJohn inhabitants plod onward, obliviously (yet happily) playing with fire and newly invented wheels. Little do they know of the impending danger visited upon them by their more technologically advanced but less civilized neighbors. \n\n12) MagicJohn: Discover Y1 Magicjohn R3 Kaline\n\n13) Aristos: Build Y1 Aristos\n\tMagicJohn: Magicjohn inhabitants quietly move to a planet inhabited largely by octogenarian Detroit Tigers while continuing their program of disinformation spread by air-dropped leaflets and door-to-door evangelicals. \n\n14) MagicJohn: Build B1 Magicjohn\n\tAristos: Hoping to stave off future debacles like the ill-fated trip to Alpha, Aristos government stockpiles fuel supplies.\n\n15) Aristos: Move Y1 Aristos Alpha\n\tMagicJohn: MagicJohn inhabitants invest more capital in blue technology based largely on color preferences expounded by Grand Poobah's wife. \n\n\tAristos: 2nd mission to Alpha discovers original crew still alive! Happy citizens of Aristos empire burn two cities to the ground in celebratory bonfire.\n\tMagicJohn: Wife's in hospital. It's going to be slow going for awhile....\n\tMagicJohn: Sorry about triggering hard time. My wife should be out of the hospital tomorrow, but it was a bit sticky for awhile. Priorities and all...... I'll challenge back in when life calms down a little.\n\tAristos: No problem... I left the country for a bit and got away from my machine. Good luck with your other priorities. \n\nHomeworlds Online (SDG# 23367)\nVariants: "Hard time"\nStarted: 2013.3.7, Ended: 2013.3.11\nParticipants: SimonDorfman (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R3 B2 G3\n\tSilentTitan: Welcome\n\n\nHomeworlds Online (SDG# 23381)\nVariants: "Hard time"\nStarted: 2013.3.10, Ended: 2013.3.18\nParticipants: aayore (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\tdlwillson: WHAT? What is this?\n\n2) aayore: Homeworld G2 Y1 B3\n\n3) dlwillson: Build G1 Dlwillson\n\taayore: I heard it was some kind of game.\n\n4) aayore: Build B1 Aayore\n\tdlwillson: :-)\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) aayore: Build B1 Aayore\n\n7) dlwillson: B Y2 Dlwillson\n\n8) aayore: Discover B1 Aayore Y3 Kinetica\n\n9) dlwillson: Discover Y1 Dlwillson B2 Sky\n\n10) aayore: Build B1 Aayore\n\taayore: I had a plan but then I took too much time off and now I don't remember it.\n\n11) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sky\nBuild Y2 Sky\nBuild Y3 Dlwillson\n\tdlwillson: Story of my life. Your screwed because I have all the yellow.\n\n12) aayore: Trade B3 Y3 Aayore\n\n13) dlwillson: Trade Y3 G3 Dlwillson\n\taayore: I have yet to fully realize the power of the sacrifice.\n\n14) aayore: Trade Y3 G3 Aayore\n\n15) dlwillson: Discover Y2 Sky G3 Forest\n\tdlwillson: Time for sleep now. Hopefully, my back is somewhat better tomorrow. :-/\n\n16) aayore: Trade B1 G1 Aayore\n\taayore: Floundering around and repeatedly doing and undoing the same moves will surely net me a win.\n\n17) dlwillson: Build Y3 Forest\n\n18) aayore: Build B1 Aayore\n\n19) dlwillson: T Y2 R2 Sky\n\taayore: I have no plan whatsoever.\n\n20) aayore: Move B1 Aayore Forest\n\n21) dlwillson: Sacrifice Y3 Forest\nMove G3 Dlwillson Sky\nMove G3 Sky Kinetica\nMove G3 Kinetica Aayore\nCatastrophe Aayore G\n\n\taayore: Do I suck so much that beating me lowered your rating?\n\tdlwillson: :-) No.\n\nHomeworlds Online (SDG# 23476)\nVariants: "Hard time"\nStarted: 2013.3.11, Ended: 2013.3.23\nParticipants: SimonDorfman (S), SilentTitan (N)\nWinner: SimonDorfman\n\n1) SilentTitan: Homeworld R2 B3 G3\n\n2) SimonDorfman: Homeworld R1 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: The Object of the game is to win. How you win is to either destroy all the planets in the opponants homeworld or all his ships. \r\n\n\tSilentTitan: \n\tSilentTitan: I should say destroy or control all the ships in the opponants homeworld\r\n\r\nThere is only one way to destroy your opponants planets and ships. (Planets are the squares, ships are the triangles) You may use the catastrophe command as the last command in your turn anytime a system has four of the same color (planets, ships or both) This will remove those pieces from the board and put them back into the bank\n\tSilentTitan: the bank is the global reserve stash at the top of the board. These are the total pieces we have to play with. It is determined by N+1 of each of the four colors where N is the number of players. \r\n\r\nThink of each color as a technology. Red=Attack, Blue=Trade, Green=Build, Yellow=Move. That means that currently in your homeworld you may attack, trade or build. If you build you may only build the color ship you already have in the system. In this case you may only build Green. (this is why trade is useful). \n\tSilentTitan: since neither of us can move the first action will be to build another green ship. When you build you have to build from smallest to largest avaliabe in the bank for the color you are building. Since there are G1's in the bank, that is what we'll have to choose. \n\n4) SimonDorfman: Build G1 Simondorfman\n\tSilentTitan: the command I used was "Build g1 silenttitan" the name of your homeworld is your superduper username. we'll be able to name the other systems as we discover them.\n\tSilentTitan: in binary homeworlds command mirroring is fairly common for the first few turns\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\tSilentTitan: Now since neither of us can move. Time to trade out the g1 for a y1\n\n6) SimonDorfman: Trade G1 Y1 Simondorfman\n\n7) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: Ok... Now you have the option of building another green or another yellow ship. However, building a yellow ship would use up the last y1 and allow the next player to build a y2. the big deal about a y2 is the idea of sacrifice. When you sacrifice you get however many actions there are pips on the piece you sacrificed. So in the case of a y2 you would get two move actions, which you can use together on the same ship or spread it out. \n\tSilentTitan: OR you can move out into the universe and discover a new world. When you discover you have to discover a world that is not the size of the world you are discovering from. so my home world has a three-pip and a two-pip that means I can only discover out to a one-pip world. However, I'll opt for the build \n\n8) SimonDorfman: Build G1 Simondorfman\n\tSilentTitan: Your Homeworld is comprised of a One-Pip and Two-Pip world so you have to discover a Three-Pip world when you do decide to move. \n\n9) SilentTitan: Discover G1 Silenttitan B1 Sol\n\n10) SimonDorfman: Discover G1 Simondorfman Y3 Willywonka\n\tSilentTitan: Green is a great color to go discovering with. because where ever you go you'll be able to build another. So discovering a yellow (move) or Blue(Trade) planet are good because you'd be able to trade or move your new piece quickly.\n\n11) SilentTitan: Build G1 Sol\n\n12) SimonDorfman: Build G2 Willywonka\n\tSimonDorfman: what causes systems to be connected? when I try "move g1 willywonka silenttitan" it says "These systems are not connected."\n\n13) SilentTitan: Build G2 Silenttitan\n\tSilentTitan: correct... you can only move to a system that does NOT share a same size star. So from a 3-Pip you can only move to a 1-pip or 2-pip. Which is why WillyWonka is connected to your homeworld. \n\n14) SimonDorfman: Discover G1 Willywonka B1 Oompaloompa\n\n\nHomeworlds Online (SDG# 23458)\nVariants: "Unrated"\nStarted: 2013.3.14, Ended: 2013.9.16\nParticipants: slothbear (S), Leonard_Daniels (N)\nWinner: Leonard_Daniels\n\n1) Leonard_Daniels: Homeworld B1 Y2 G3\n\tslothbear: I've only played a couple of times, and last time was a year ago... so I hope we're a reasonable un-challenge for each other. heh.\n\n2) slothbear: Homeworld B3 R1 G3\n\tLeonard_Daniels: Excellent. This is probably going to be a frustrating match for any spectators, as we keep missing obvious moves.\n\n3) Leonard_Daniels: Build G1 Leonard_daniels\n\tLeonard_Daniels: How do I refer to my homeworld for the purpose of building a ship? It keeps telling me "The Homeworld system does not exist."\n\n4) slothbear: Build G1 Slothbear\n\tLeonard_Daniels: Never mind, figured it out.\n\n5) Leonard_Daniels: Discover G1 Leonard_daniels Y3 Fulford\n\n6) slothbear: Trade G1 Y1 Slothbear\n\n7) Leonard_Daniels: Build G1 Leonard_daniels\n\n8) slothbear: Build Y1 Slothbear\n\n9) Leonard_Daniels: Discover G1 Leonard_daniels B3 Acomb\n\n10) slothbear: Discover Y1 Slothbear R2 Sazila\n\n11) Leonard_Daniels: Build G1 Leonard_daniels\n\n12) slothbear: Build G2 Slothbear\n\n13) Leonard_Daniels: Build G2 Fulford\n\n14) slothbear: Move G2 Slothbear Sazila\n\tslothbear: Uhm. That's pretty and green and everything. And a catastrophe. Supernova style. Want to undo?\n\tslothbear: harumph. These messages don't get emailed. Maybe we should have emails? If you agree, you can find mine on my SDG profile page.\n\tLeonard_Daniels: Oh, damn, for some reason I thought it was five pieces that made a catastrophe. Awfully sporting of you to point out my error there. Thank you.\n\n15) Leonard_Daniels: Trade G1 B1 Leonard_daniels\n\tslothbear: Sorry for delay; either I've been away or SDG has been down. I'll get back on track soon.\n\tslothbear: When is soon, you ask? It was going to be Monday, but there was a death in the family and this week was consumed. I'm aiming for next Monday now. I do enjoy this game and am committed to playing, though I realize my record is spotty at the moment.\n\tLeonard_Daniels: No worries, I'm in no particular hurry. Just come back when you can.\n\n16) slothbear: Build Y1 Slothbear\n\n17) Leonard_Daniels: Move B1 Leonard_daniels Fulford\n\n18) slothbear: Trade Y1 B1 Slothbear\n\n19) Leonard_Daniels: Build B2 Fulford\n\n20) slothbear: Move B1 Slothbear Sazila\n\n21) Leonard_Daniels: Trade B1 Y1 Fulford\n\n22) slothbear: Build Y2 Sazila\n\n23) Leonard_Daniels: Move Y1 Fulford Leonard_daniels\n\n24) slothbear: Discover Y2 Sazila G3 Norad42\n\n25) Leonard_Daniels: Trade G2 R2 Fulford\n\n\tLeonard_Daniels: I've been away from the site for quite some time, so I'm quite surprised that it's not me holding this one up. Since we both don't really seem to be here at the moment, I'm going to terminate this game unrated. Maybe we can give it another go some time when we're less busy.\n\nHomeworlds Online (SDG# 23322)\nStarted: 2013.3.15, Ended: 2013.6.24\nParticipants: Mandrel (S), MattTheSpratt (N)\nWinner: Mandrel\n\n1) MattTheSpratt: Homeworld G3 Y1 B3\n\n2) Mandrel: H Y2 B1 G3\n\tMattTheSpratt: The star system of Seth wishes you the best of luck!\n\n3) MattTheSpratt: Build B1 Mattthespratt\n\n4) Mandrel: Build G1 Mandrel\n\n5) MattTheSpratt: Discover B1 Mattthespratt Y2 Fortran\n\n6) Mandrel: T G1 B1 Mandrel\n\n7) MattTheSpratt: Build B2 Mattthespratt\n\n8) Mandrel: Build B2 Mandrel\n\n9) MattTheSpratt: Trade B2 R2 Mattthespratt\n\n10) Mandrel: Trade B1 R1 Mandrel\n\n11) MattTheSpratt: Build B1 Mattthespratt\n\n12) Mandrel: Discover B2 Mandrel G3 Master\n\n13) MattTheSpratt: Trade B1 G1 Fortran\n\n14) Mandrel: Build G1 Mandrel\n\n15) MattTheSpratt: Build G1 Fortran\n\n16) Mandrel: Build G2 Mandrel\n\n17) MattTheSpratt: Move B1 Mattthespratt Fortran\n\n18) Mandrel: Trade G2 Y2 Mandrel\n\n19) MattTheSpratt: Trade G1 R1 Fortran\n\n20) Mandrel: Move Y2 Mandrel Master\n\n21) MattTheSpratt: Build R1 Fortran\n\n22) Mandrel: Build R2 Mandrel\n\n23) MattTheSpratt: Build R2 Mattthespratt\n\n24) Mandrel: Build R3 Mandrel\n\n25) MattTheSpratt: Move G1 Fortran Master\n\n26) Mandrel: Sacrifice R1 Mandrel\nAttack G1N Master\n\n27) MattTheSpratt: Trade R1 G1 Fortran\n\n28) Mandrel: Move R2 Mandrel Master\n\n29) MattTheSpratt: Build G2 Fortran\n\tMattTheSpratt: Man I am bad at Homeworlds.\n\n30) Mandrel: Build R1 Master\n\n31) MattTheSpratt: Build R1 Fortran\n\n32) Mandrel: Build R3 Mandrel\n\n\nHomeworlds Online (SDG# 23268)\nStarted: 2013.3.17, Ended: 2013.3.17\nParticipants: ts52 (S), Elliefint (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 23545)\nStarted: 2013.3.18, Ended: 2014.4.19\nParticipants: Lurch (S), aayore (N)\nWinner: Lurch\n\n1) aayore: Homeworld G2 B1 Y3\n\n2) Lurch: Homeworld R1 B2 G3\n\n3) aayore: Build Y1 Aayore\n\n4) Lurch: Build G1 Lurch\n\n5) aayore: Discover Y1 Aayore G3 Alpha\n\n6) Lurch: Build G1 Lurch\n\n\tLurch: Have you given up?\n\nHomeworlds Online (SDG# 23537)\nStarted: 2013.3.20, Ended: 2013.4.24\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: Homeworld B2 R1 G3\n\twil: Homeworld (b2, r1, g3) what am I doing wrong, I have beentrying to start but it says no b2s\n\tts52: Ah, no (), just: h b2 r1 g3\n\n2) ts52: Homeworld R1 B3 G3\n\twil: thanx, total newbie, thanx for your patience...where do I find these instructions??\n\tts52: Instructions on SDG, or rules for Homeworld?\r\nThe different commands are listed at the top. Technically this is binary homeworlds, which is described here: http://www.wunderland.com/WTS/Andy/Games/ILoveHomeworlds.html#BinaryHomeworlds and from there you can find the link to the official rules as well.\n\n3) wil: Build G1 Wil\n\tts52: Also, I'm happy to answer any questions, but SDG doesn't email me when there's a new comment. So if you want to ask a question, and get my attention, leave a comment, then make a move and undo it. That way I get email. :)\n\n4) ts52: Build G1 Ts52\n\twil: thx...still totaly confused...that nomenclature listed doesn't work... the short hand is what was getting me... like this one...adding one small green ship... I did so many things I forgot what worked...is my star system called wil? or N? and how wil I name a new one when it is time?\r\n\n\twil: if you can cut and paste your commands into a note, I'll be able to see what you wrote and how they responded... I see now it says mine is the wil system..\r\n\n\tts52: Ok, I can do that. I See you figured out your homeworld is named after your username.\n\n5) wil: Trade G1 Y1 Wil\n\tts52: My first command was: h r1 b3 g3\r\nMy second command is: b g1 ts52\n\tts52: My next command will likely be: t g1 y1 ts52\n\tts52: But that depends on your next move. :)\r\n\n\twil: yeah, seems like that is a standard move eh? getting a yellow so you can move to a new star system in the future, and then growing another green so you can work toward a rainbow fleet of choices? Is there anywhere written 'opening gambits' middle game scenarios, end game like chess?\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build G1 Wil\n\tts52: I'm not sure how much of that is still on the web. Andy Looney wrote a lot about it, most of it is probably linked from the url I posted earlier. But you might check the SDG wiki as well.\n\n8) ts52: Build G1 Ts52\n\twil: thx, I'll check...\n\n9) wil: Trade G1 B1 Wil\n\tts52: this move: b g1 ts52\n\n10) ts52: Trade G1 B1 Ts52\n\twil: thx\n\n11) wil: Build G1 Wil\n\tts52: I think your getting the hang of it.\r\nmy move: t g1 b1 ts52\r\nSoon you're going to want to discover a new system. You do that with a command like: d b1 wil g3 big_green\n\twil: big_green is the name of the system...you just pick a name correct?\n\n12) ts52: Discover B1 Ts52 G2 Kermit\n\twil: all ok?\n\tts52: That's right, names can be anything. Sorry, lost my email reminding me it was my turn.\n\n13) wil: Build G1 Wil\n\n14) ts52: Build G1 Ts52\n\tts52: Also, be careful having 3 pieces of the same color in the same system. 4 pieces of the same color == catastrophe.\n\n15) wil: Discover G1 Wil Y3 Forttortuga\n\twil: thx, i was watchin how many moves you had to get here so I could scadaddle...\r\n\n\n16) ts52: Build G2 Ts52\n\n17) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 Forttortuga\n\n18) ts52: Trade G2 Y2 Ts52\n\tts52: Nice, well done.\n\n19) wil: Trade G2 R2 Wil\n\n20) ts52: Build B1 Kermit\n\twil: thanx it was my first factory, lucky I saw the opp\n\n21) wil: Discover G1 Forttortuga B2 Stalag17\n\tts52: I'm sorry I didn't.\n\n22) ts52: Build B2 Kermit\n\n23) wil: Sacrifice G3 Wil\nBuild G2 Forttortuga\nBuild G2 Stalag17\nBuild G3 Wil\n\n24) ts52: Trade B2 R2 Kermit\n\n25) wil: Trade G2 Y2 Stalag17\n\n26) ts52: Move Y2 Ts52 Kermit\n\n27) wil: Sacrifice G3 Wil\nBuild G2 Stalag17\nBuild G3 Wil\nBuild Y1 Wil\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Ts52\nBuild Y3 Ts52\n\n29) wil: Move Y2 Stalag17 Ts52\nCatastrophe Ts52 Y\n\n30) ts52: Move Y2 Kermit Ts52\n\tts52: oops, guess I should've seen that coming. :(\n\tts52: oh, that was just a stupid typo. I meant to build the y3 in kermit. oops...\n\n31) wil: Move B1 Wil Forttortuga\n\twil: is there any way to back it up that far?\r\n\n\twil: is there any way to back it up that far?\r\n\n\tts52: I don't think so. That's ok. We'll see if I can recover. :)\n\n32) ts52: Trade B1 Y1 Kermit\n\n33) wil: Discover G1 Wil Y3 Bedrock\n\n34) ts52: Move R2 Kermit Bedrock\n\n35) wil: Discover G1 Bedrock Y2 Dryden\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Ts52\nBuild Y3 Kermit\n\n37) wil: Move Y1 Wil Forttortuga\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Bedrock\nBuild B1 Kermit\n\n39) wil: Trade G2 R2 Forttortuga\n\n40) ts52: Move R2 Bedrock Dryden\n\n41) wil: Move G1 Dryden Forttortuga\n\n42) ts52: Move G1 Ts52 Dryden\n\n43) wil: Sacrifice G3 Forttortuga\nBuild G2 Wil\nBuild G3 Forttortuga\nBuild R3 Forttortuga\n\n44) ts52: Sacrifice Y2 Ts52\nMove Y1 Kermit Forttortuga\nMove Y3 Kermit Forttortuga\nCatastrophe Forttortuga Yellow\n\n45) wil: Move R2 Wil Bedrock\n\twil: nicely done....so wish there was a time lapse review available...\n\n46) ts52: Move Y2 Ts52 Kermit\n\n47) wil: Attack R1 Bedrock\n\n48) ts52: Build R2 Dryden\n\n49) wil: Move R1 Bedrock Stalag17\n\n50) ts52: Discover R2 Dryden G3 Oscar\n\n51) wil: Build R3 Stalag17\n\n52) ts52: Build R3 Dryden\n\n53) wil: Discover G2 Wil Y3 Fortcourage\n\n54) ts52: Build R3 Oscar\n\n55) wil: Build G1 Wil\n\n56) ts52: Build Y1 Kermit\n\n57) wil: Trade R3 Y3 Stalag17\n\n58) ts52: Move R3 Dryden Fortcourage\n\n59) wil: Move G2 Fortcourage Kermit\n\n60) ts52: Sacrifice R2 Oscar\nAttack G2 Kermit\nPass\n\n61) wil: Build Y1 Stalag17\n\n62) ts52: Move G2 Kermit Fortcourage\n\twil: newbie lesson....one can sacrifice reds for an attack someplace else...\n\twil: newbie lesson....one can sacrifice reds for an attack someplace else...\n\n63) wil: Build Y2 Wil\n\tts52: Ah yes, that's an important lesson. Sorry.\n\n64) ts52: Sacrifice G2 Fortcourage\nBuild R2 Fortcourage\nBuild R3 Dryden\n\twil: Don't be sorry, i need to be ambushed, slaughtered and abused to learn..\n\n65) wil: Build G2 Stalag17\n\n66) ts52: Move Y2 Kermit Ts52\n\n67) wil: Sacrifice Y3 Stalag17\nMove R1 Stalag17 Fortcourage\nMove R2 Bedrock Stalag17\nMove R2 Stalag17 Fortcourage\nCatastrophe Fortcourage R\n\n68) ts52: Build Y3 Kermit\n\n69) wil: Trade G2 R2 Stalag17\n\n70) ts52: Build Y3 Ts52\n\twil: forgot catastrophes weren't automatic...had to back up and rewrite...\n\tts52: no problem\n\n71) wil: Sacrifice G3 Wil\nBuild G2 Stalag17\nBuild G3 Wil\nBuild Y3 Stalag17\n\twil: just lost another game....my homeworld blown up in three moves...(no, not three moves the entire game....the last three moves....I am not that bad....I hope)\n\n72) ts52: Move Y3 Kermit Oscar\n\n73) wil: Trade G2 B2 Stalag17\n\tts52: That's frustrating. You have to keep an eye out for the safety of your homeworld.\n\n74) ts52: Build G2 Dryden\n\n75) wil: Discover B2 Stalag17 R3 Tortuga\n\twil: t g2 b2 stalag17\n\n76) ts52: Move B1 Kermit Oscar\n\twil: no woner it didn't work...not supposed to post instructions in the message box.\r\n\n\twil: * wonder\n\n77) wil: Discover Y1 Wil B3 Bedrock\n\tts52: Yeah, The way these pages jump to different text boxes is weird.\n\n78) ts52: Sacrifice G2 Dryden\nBuild B1 Oscar\nBuild B3 Kermit\n\n79) wil: Trade G2 R2 Stalag17\n\n80) ts52: Move B3 Kermit Tortuga\n\n81) wil: Sacrifice Y1 Stalag17\nMove B2 Tortuga Kermit\n\n82) ts52: Sacrifice Y3 Oscar\nMove B1 Oscar Wil\nMove B1 Oscar Wil\nMove B3 Tortuga Wil\nCatastrophe Wil Blue\n\n83) wil: Sacrifice Y3 Stalag17\nMove Y2 Wil Stalag17\nMove G3 Wil Bedrock\nMove G1 Wil Bedrock\n\n\tts52: It's ok. The best way to learn and get better is to play as much as you can. :)\n\twil: and 3 red ships ready to strike with a queen yellow ready to send them....aarrrggghhhh\n\twil: aaargggghh I can kill the reds but can't use my drone propulsion to do so becuase then I get bluebirded...\n\twil: oops...can't kill the reds....hmmm is it all over?\n\twil: I am sending all my remaining ships to new galaxies where hopefully they will be able to rebuild and play again.\n\tts52: Yeah, it was all over. Thanks for the game. I'd be happy to play another.\n\twil: I think that was my fifth completed game...I'm gonna win one with someone some day.... How did you like my exit?\n\tts52: definitely a grandiose exit. :) \n\nHomeworlds Online (SDG# 23562)\nStarted: 2013.3.20, Ended: 2013.3.20\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 23577)\nVariants: "Hard time"\nStarted: 2013.3.23, Ended: 2013.5.19\nParticipants: agentofchaos (S), MagicJohn (N)\nWinner: MagicJohn\n\n1) MagicJohn: Homeworld B1 Y2 G3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) MagicJohn: Discover G1 Magicjohn Y3 Kaline\n\n10) agentofchaos: Discover G1 Agentofchaos Y2 Kantele\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) agentofchaos: B G2 Kantele\n\n13) MagicJohn: Move G1 Kaline Kantele\n\n14) agentofchaos: Build G2 Agentofchaos\n\n15) MagicJohn: Sacrifice G3 Magicjohn\nBuild G2 Kantele\nBuild G3 Magicjohn\nBuild G3 Magicjohn\nCatastrophe Kantele G\n\n16) agentofchaos: Build G1 Agentofchaos\n\n17) MagicJohn: Discover G1 Magicjohn Y3 Colavito\n\n18) agentofchaos: Discover G2 Agentofchaos Y2 Dragha\n\n19) MagicJohn: Trade Y1 B1 Magicjohn\n\n20) agentofchaos: T G1 R1 Agentofchaos\n\n21) MagicJohn: Build B1 Magicjohn\n\n22) agentofchaos: Build R1 Agentofchaos\n\n23) MagicJohn: Trade G3 R3 Magicjohn\n\n24) agentofchaos: Build Y1 Agentofchaos\n\n25) MagicJohn: Move B1 Magicjohn Colavito\n\n26) agentofchaos: Move R1 Agentofchaos Dragha\n\n27) MagicJohn: Move R3 Magicjohn Colavito\n\n28) agentofchaos: Sacrifice G2 Dragha\nBuild R2 Dragha\nBuild G1 Agentofchaos\n\n29) MagicJohn: Build B2 Colavito\n\n30) agentofchaos: Build R2 Agentofchaos\n\n31) MagicJohn: Trade B2 Y2 Colavito\n\n32) agentofchaos: Trade R2 B2 Agentofchaos\n\n33) MagicJohn: Build B2 Colavito\n\n34) agentofchaos: Move B2 Agentofchaos Dragha\n\n35) MagicJohn: Build Y1 Colavito\n\n36) agentofchaos: Move Y1 Agentofchaos Dragha\n\n37) MagicJohn: Discover Y2 Colavito R2 Bunning\n\n38) agentofchaos: Build Y3 Agentofchaos\n\n39) MagicJohn: Sacrifice G1 Colavito\nBuild Y3 Bunning\n\n\nHomeworlds Online (SDG# 23507)\nVariants: "Hard time"\nStarted: 2013.3.24, Ended: 2013.4.12\nParticipants: SilentTitan (S), SimonDorfman (N)\nWinner: SilentTitan\n\n1) SimonDorfman: Homeworld R2 B3 G3\n\tSimonDorfman: i'm not sure why our last game ended. did you resign? or run out of time? i can't say i have a grasp of this game at all, but i'd like to continue to try it.\n\n2) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: sure... that was my fault the challenge is set to HARD TIME and I was the one that ran out of time. we will try again. \r\n\n\n3) SimonDorfman: Build G1 Simondorfman\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) SimonDorfman: Trade G3 Y3 Simondorfman\n\tSimonDorfman: I tried doing this "discover g1 simondorfman r3 willywonka" and got this message "You do not have access to propulsion technology (YELLOW) in this sector." so i tried this "build y1 simondorfman" and got this message "To build a new ship you must already control one of the same colour (Y)."\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\tSimonDorfman: okay, i'm starting to get it...\n\tSilentTitan: yep... that sounds about right\n\n7) SimonDorfman: Discover G1 Simondorfman R1 Willywonka\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) SimonDorfman: Build G1 Willywonka\n\tSimonDorfman: I feel like I need to make a spreadsheet map of how to get to your home world... Hard to do on my phone...\n\n10) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n11) SimonDorfman: Sacrifice G1 Willywonka\nBuild Y1 Simondorfman\n\tSimonDorfman: i pretty much messed this up. not sure what i should do. can't seem to think of any useful moves that i can do. any suggestions?\n\tSilentTitan: you could sacrifice a g1 in willywonka and build a y1 in simondorfman. then trade the y1 to a g1 next turn. \n\n12) SilentTitan: Build Y1 Silenttitan\n\tSimonDorfman: Thank you. I understand the sacrifice action now.\n\n13) SimonDorfman: Trade Y1 G1 Simondorfman\n\n14) SilentTitan: Build G2 Sol\n\n15) SimonDorfman: Build G2 Simondorfman\n\n16) SilentTitan: Move G1 Sol Silenttitan\n\n17) SimonDorfman: Move Y3 Simondorfman Willywonka\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Sol\n\n19) SimonDorfman: Build G3 Willywonka\n\tSimonDorfman: wow\n\n20) SilentTitan: Trade G3 Y3 Silenttitan\n\n21) SimonDorfman: Trade G1 R1 Simondorfman\n\n22) SilentTitan: Sacrifice Y3 Silenttitan\nMove G3 Sol Willywonka\nMove G3 Willywonka Simondorfman\nDiscover Y1 Silenttitan G3 Tic\n\tSilentTitan: ok.. so you are in a position that is overextended. you do not have a Battleship (3-pip) in your homeworld and I can reach it with a battle ship by sacrificing the Y3 in my homeworld. There are considering issues like. Would I be able to take all ships in your homeworld before you'd be able to remove me. Doubtful as you could just sac the G3 in willy and build two more of the ships in your homeworld build the one you just sacked back into willy and then cat green in your homeworld. Can you see what I'm talking about or should we do it as a practical exercise and start again?\n\tSimonDorfman: I'm not fully understanding so I'd like to play this to the end and then play again.\n\tSilentTitan: ok\n\n23) SimonDorfman: Build Y1 Willywonka\n\n24) SilentTitan: Attack G2 Simondorfman North\n\n\tSilentTitan: I was able to attack you because the "planets" in the system give the technology to everyone in the system. \n\tSimonDorfman: shoot, sorry i let it run out of time. thanks for your efforts to teach me this game. i haven't really gotten it yet, but i may sit down and try to play a game in person with a friend sometime.\n\nHomeworlds Online (SDG# 23591)\nVariants: "Hard time"\nStarted: 2013.3.25, Ended: 2013.4.10\nParticipants: Aristos (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) Aristos: Homeworld B3 Y2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) Aristos: Build G1 Aristos\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) Aristos: Trade G1 Y1 Aristos\n\n7) TwoShort: Build G1 Twoshort\n\n8) Aristos: Discover Y1 Aristos G1 Peek\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) Aristos: Build Y1 Peek\n\n11) TwoShort: Build Y2 Twoshort\n\n12) Aristos: Discover Y1 Peek G2 Poke\n\n13) TwoShort: Discover G1 Yolonda Y3 Yoyodyne\n\n14) Aristos: Build Y2 Peek\n\n15) TwoShort: Discover Y1 Twoshort B2 Bluestar\n\n16) Aristos: Build Y3 Poke\n\n17) TwoShort: Build Y3 Twoshort\n\n18) Aristos: Discover Y1 Peek B3 Push\n\n19) TwoShort: Sacrifice G1 Yoyodyne\nBuild Y3 Bluestar\n\n\nHomeworlds Online (SDG# 23590)\nVariants: "Hard time"\nStarted: 2013.3.28, Ended: 2013.4.16\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld R2 B1 G3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\twil: newbie....learning game....abuse at wil, I figure I'll learn by getting beat until I see the moves coming at me...\n\n3) wil: Build G1 Wil\n\tSilentTitan: good plan... Hint... think of the colors as technologies. green=build, red=attack, blue=trade, yellow=move. don't forget about sacrifice and catastrophe those are the ones that newbies get hung up on. \r\n\r\nGood Luck. \n\twil: Yeah, I think I have those 4 of one color, and sac = pips of that action, and factory... and in my mind I'm looking at the star systems as mega corporations, the green as venture captialists supporting new business and bolstering old businesses...Red is Vulture Capitalists, take over/acquisition specialists, yellow is HR, in house headhunters, Blue is stock brokers....\r\n\r\nI look forward to learning from my loss.\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 Y1 Wil\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) wil: Build G1 Wil\n\n8) SilentTitan: Build G1 Silenttitan\n\twil: Do you know of anyone who has written more on the strategy of this game? Opening gambits, mid game strategy plays (I've seen factory, bluebird, catastrohe) end game...but like when not to catastophe or how to set someone else up by enticing them to catastrophe or such?\n\n9) wil: Trade G1 B1 Wil\n\n10) SilentTitan: Trade G3 B3 Silenttitan\n\n11) wil: Build G1 Wil\n\n12) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: those are interesting questions... catastrophe are pretty much straight forward. I was able one time to build two battleships in a system and entice my opponent to take those and thereby he missed protecting against a sac of a Y3 and a cat for the win in his home world, but it was a truly desperation move and I could not believed it worked. \n\tSilentTitan: I've learned most of the stuff I do from losing to TwoShort or nmeme. \n\n13) wil: Build G2 Wil\n\twil: yes losing is the way I intend to learn...thanx!\r\n\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) wil: Trade G1 R1 Wil\n\n16) SilentTitan: Trade G2 B2 Silenttitan\n\n17) wil: Discover B1 Wil Y3 Fortcourage\n\twil: sytem down two days...me just joining..thought i broke it!\r\n\n\tSilentTitan: ah... I guess I didn't know it was down for two days\r\n\n\n18) SilentTitan: Trade B2 R2 Silenttitan\n\n19) wil: Build R1 Wil\n\n20) SilentTitan: Discover B3 Silenttitan R1 Sol\n\n21) wil: Discover G2 Wil R3 Taratupa\n\n22) SilentTitan: Build R2 Silenttitan\n\n23) wil: Trade G3 Y3 Wil\n\n24) SilentTitan: Trade R2 Y2 Silenttitan\n\n25) wil: Move R1 Wil Fortcourage\n\n26) SilentTitan: Sacrifice Y1 Silenttitan\nMove B3 Sol Fortcourage\n\twil: That was a complete bonehead move on my part....I meant to move a red ship forward....so if you took that I'd get a 3....but then I thought...I can keep him from getting the other one by using the red star....and now I get nothing but anihilated....\r\n \r\nhopefully a lesson learned...whilst you are over there chuckling at my stupidity.\r\n\n\n27) wil: Move B1 Fortcourage Wil\n\tSilentTitan: I've read your post three times and I'm still a bit confused as to exactly what you are talking about ..... I cannot build the R3 as I already have 3 reds in the only system I could build it in, and a fourth would invite a catastrophe. I have to move and that will allow you to build out to a red 3 world.\n\twil: no you can't now....and again, I am just learning the system...but it appears to me in all likelihood you will be capable of building it before I....again newbie trying to make sense of it all.\n\twil: oh and yes I see how awful my original plan was which I mistakenly thwarted...if moved up and captured my ship you'd then easily be able to catastrophe me! arrrggghh\n\tSilentTitan: Then you will be able to sac the g2 and build that R3 as a ship at your leisure. I'd like to prevent that from happening .. but I'm not sure I can .. you are playing very well so far. \n\n28) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\tSilentTitan: Ha... fun isn't it ... I love pretzel brain\n\n29) wil: Move R1 Fortcourage Sol\n\n30) SilentTitan: Move B3 Fortcourage Sol\n\n31) wil: Move R1 Sol Taratupa\n\n32) SilentTitan: Build G1 Silenttitan\n\n33) wil: Build G2 Taratupa\n\n34) SilentTitan: Discover G1 Silenttitan B1 Sole\n\n35) wil: Discover R1 Wil G3 Forttortuga\n\n36) SilentTitan: Build G2 Sole\n\n37) wil: Move Y1 Wil Taratupa\n\n38) SilentTitan: Build G3 Silenttitan\n\n39) wil: Build Y1 Taratupa\n\n40) SilentTitan: Build G3 Sol\n\n41) wil: Build Y2 Taratupa\n\n42) SilentTitan: Trade G2 Y2 Sole\n\n43) wil: Discover Y1 Taratupa R1 Stalag17\n\n44) SilentTitan: Sacrifice Y2 Sole\nMove B3 Sol Forttortuga\nMove G3 Sol Forttortuga\n\n45) wil: Sacrifice G2 Taratupa\nBuild R2 Taratupa\nBuild R3 Forttortuga\n\n46) SilentTitan: Sacrifice R2 Silenttitan\nAttack R3 Forttortuga North\nAttack R1 Forttortuga North\n\n47) wil: Build G2 Taratupa\n\n48) SilentTitan: Sacrifice Y2 Silenttitan\nMove R1 Forttortuga Sol\nMove R1 Sol Taratupa\nCatastrophe Taratupa Red\n\n\tSilentTitan: ok... now in this case what happened here is that you had three reds in taratup two ships in a red system. All I had to do was add a fourth red to the system and call for a catastrophe. This destroyed the entire system and all the ships in it. I sacrificed my y2 to give me the two moves I needed to get the r1 from forttortuga to taratupa via the sol system. Did this make sense?\n\tSilentTitan: sorry to be clearer you had two RED ships in a RED system, 1-pip red and a two-pip red \n\twil: yeah...i didn't notice this was close enough....to bad the system doesn't allow for instant replay so I can go back and watch it happen and see what i missed...thanx for the flogging!\r\n\n\twil: yeah...i didn't notice this was close enough....to bad the system doesn't allow for instant replay so I can go back and watch it happen and see what i missed...thanx for the flogging!\r\n\n\twil: As I see it, I've now got zero greens...can't trade for them....your goal will be to keep me locked out of them and I can't even prolong the end?\r\n\n\nHomeworlds Online (SDG# 23568)\nStarted: 2013.3.28, Ended: 2013.3.28\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n\twil: oops\r\n\n\nHomeworlds Online (SDG# 23499)\nVariants: "Hard time"\nStarted: 2013.3.28, Ended: 2013.3.29\nParticipants: dlwillson (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld G2 B1 R3\n\n\twil: Have just learned the game in real space... want to get beat so I can learn how to keep from getting beat. Please cut and paste the 'orders' you submit so I can learn the short cuts and compare them to what happens. If you wish whilst you anihilate me you may provide any info you would like to on why my move was so stupid and what would have been a better one.\n\tdlwillson: Wil, accept my challenge again, or set one up. Sorry for timing out on you; I was on vacation.\n\nHomeworlds Online (SDG# 23183)\nVariants: "Unrated"\nStarted: 2013.3.29, Ended: 2013.8.6\nParticipants: Leonard_Daniels (S), MattTheSpratt (W), OnePageWars (N), wil (E)\nWinner: wil\n\n1) OnePageWars: Homeworld G3 B2 Y3\n\tOnePageWars: gl hf!\n\n2) wil: Homeworld R2 B1 G3\n\n3) Leonard_Daniels: Homeworld B3 Y1 G3\n\n4) MattTheSpratt: Homeworld R3 G1 B3\n\n5) OnePageWars: Build Y1 Onepagewars\n\n6) wil: Build G1 Wil\n\n7) Leonard_Daniels: Build G1 Leonard_daniels\n\n8) MattTheSpratt: Build B1 Mattthespratt\n\n9) OnePageWars: Trade Y1 G1 Onepagewars\n\n10) wil: Trade G1 R1 Wil\n\n11) Leonard_Daniels: Trade G1 B1 Leonard_daniels\n\n12) MattTheSpratt: Trade B1 Y1 Mattthespratt\n\n13) OnePageWars: Build G1 Onepagewars\n\n14) wil: Build G1 Wil\n\n15) Leonard_Daniels: Build B1 Leonard_daniels\n\n16) MattTheSpratt: Build B1 Mattthespratt\n\n17) OnePageWars: Trade G1 R1 Onepagewars\n\n18) wil: Trade G1 B1 Wil\n\tOnePageWars: figured I didn't want to be defenseless if someone attacked me, lol.\n\tMattTheSpratt: Aye, good point.\n\tLeonard_Daniels: Something tells me that the first conflict in this war won't involve you, OnePageWars...\n\twil: You feelin it LD? \n\n19) Leonard_Daniels: Trade B1 R1 Leonard_daniels\n\n20) MattTheSpratt: Trade B1 G1 Mattthespratt\n\tOnePageWars: yeah, South and West are close to eachother.\n\tLeonard_Daniels: Come on, Matt, pull your finger out mate.\n\twil: Does anyone have 'physical' connection (vs virtual/spacial) with Matt?\n\n21) OnePageWars: Build G1 Onepagewars\n\tMattTheSpratt: Massively sorry, guys.\n\twil: No worries, tis the game and the health of the battling ships that is important! We didn't want you to lose a crew unjustly...that being said, one more infractin and and.....oh.... I'd like to discuss openings and options and play....would you be interested? If interested, would the best place to be on the forum, or maybe a google doc?\n\n22) wil: Build B1 Wil\n\n23) Leonard_Daniels: Build R1 Leonard_daniels\n\n24) MattTheSpratt: Build Y1 Mattthespratt\n\n25) OnePageWars: Trade G1 B1 Onepagewars\n\n26) wil: Trade B1 Y1 Wil\n\n27) Leonard_Daniels: Build G1 Leonard_daniels\n\n28) MattTheSpratt: Discover G1 Mattthespratt R2 Pppppppp\n\n29) wil: Build G1 Wil\n\twil: wzzup??\n\n30) Leonard_Daniels: Discover R1 Leonard_daniels Y2 Malton\n\n31) MattTheSpratt: Build G2 Pppppppp\n\n32) wil: Build G2 Wil\n\n33) Leonard_Daniels: Move G1 Leonard_daniels Malton\n\n34) Leonard_Daniels: Build G2 Malton\n\n35) wil: Discover G2 Wil Y3 Y3\n\twil: we gonna see movement?\n\n36) Leonard_Daniels: Build G2 Leonard_daniels\n\tLeonard_Daniels: Just you and me now, Wil. May the best captain win. I think there are now enough random elements in this game that I might actually win it.\n\n37) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 Y3\n\twil: You've got the command.....\n\n38) Leonard_Daniels: Move R1 Malton Mattthespratt\n\n39) wil: Move G3 Y3 Pppppppp\n\n40) Leonard_Daniels: Move G2 Leonard_daniels Pppppppp\nCatastrophe Pppppppp Green\n\n41) wil: Build G1 Y3\n\n42) Leonard_Daniels: Attack Y1W Mattthespratt\n\n43) wil: Discover G2 Y3 Y1 Y1\n\n\twil: hellllloooooooooo\n\twil: I guess we've had enough?\r\n\n\nHomeworlds Online (SDG# 23211)\nVariants: "Hard time"\nStarted: 2013.4.2, Ended: 2013.4.9\nParticipants: sou (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) sou: Homeworld R3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) sou: Build G1 Sou\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n\nHomeworlds Online (SDG# 23620)\nVariants: "Hard time"\nStarted: 2013.4.2, Ended: 2013.4.9\nParticipants: sou (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) sou: Homeworld B2 Y1 G3 *\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) sou: Build G1 Sou\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) sou: Trade G1 R1 Sou\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) sou: Build R1 Sou\n\n9) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n\nHomeworlds Online (SDG# 23689)\nVariants: "Hard time"\nStarted: 2013.4.2, Ended: 2013.5.6\nParticipants: headphoned (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) headphoned: Homeworld B1 Y3 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) headphoned: Build G1 Headphoned\n\n5) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n6) headphoned: Discover G1 Headphoned B2 Omicron\n\n7) Broccoli_Commander: Build G1 Blueberry\n\n8) headphoned: Build G2 Omicron\n\n9) Broccoli_Commander: Build G2 Blueberry\n\n10) headphoned: Trade G1 Y1 Omicron\n\n11) Broccoli_Commander: Trade G1 Y1 Blueberry\n\n12) headphoned: Build Y2 Omicron\n\n13) Broccoli_Commander: Build Y2 Blueberry\n\n14) headphoned: Build G1 Headphoned\n\n15) Broccoli_Commander: Discover Y2 Blueberry B2 Muffin\n\n16) headphoned: Sacrifice Y2 Omicron\nMove Y1 Omicron Blueberry\nMove Y1 Blueberry Broccoli_commander\n\n17) Broccoli_Commander: Build Y2 Blueberry\n\n18) headphoned: Trade Y1 B1 Broccoli_commander\n\n19) Broccoli_Commander: Trade G1 R1 Blueberry\n\n20) headphoned: Sacrifice G2 Omicron\nBuild B1 Broccoli_commander\nBuild B2 Broccoli_commander\nCatastrophe Broccoli_commander Blue\n\n21) Broccoli_Commander: Build G1 Broccoli_commander\n\n22) headphoned: Move G1 Headphoned Muffin\n\n23) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove G3 Broccoli_commander Muffin\nMove G3 Muffin Headphoned\n\n24) headphoned: Trade G3 R3 Headphoned\n\n25) Broccoli_Commander: Sacrifice R1 Blueberry\nAttack R3 Headphoned\n\n\nHomeworlds Online (SDG# 23623)\nVariants: "Hard time"\nStarted: 2013.4.2, Ended: 2013.4.3\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 23691)\nStarted: 2013.4.2, Ended: 2013.4.29\nParticipants: netskaven (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R3 B1 G3\n\n2) netskaven: Homeworld G2 B3 Y3\n\twil: I am new as well...good luck!\n\n3) wil: Build G1 Wil\n\tnetskaven: good luck!\n\n4) netskaven: Build Y1 Netskaven\n\n5) wil: Build G1 Wil\n\n6) netskaven: Trade Y1 R1 Netskaven\n\n7) wil: Trade G1 R1 Wil\n\n8) netskaven: Build Y1 Netskaven\n\n9) wil: Build G1 Wil\n\n10) netskaven: Trade Y1 B1 Netskaven\n\n11) wil: Trade G1 B1 Wil\n\n12) netskaven: Build Y1 Netskaven\n\n13) wil: Trade G1 Y1 Wil\n\n14) netskaven: Trade Y1 G1 Netskaven\n\n15) wil: Build G1 Wil\n\n16) netskaven: Discover G1 Netskaven Y1 Neworld\n\n17) wil: Build B2 Wil\n\n18) netskaven: Move R1 Netskaven Neworld\n\n19) wil: Discover G1 Wil B2 Forttortuga\n\n20) netskaven: Move R1 Neworld Forttortuga\n\n21) wil: Move B2 Wil Forttortuga\n\n22) netskaven: Attack G1 Forttortuga\n\n23) wil: Sacrifice R1 Wil\nAttack R1 Forttortuga\n\n24) netskaven: Build Y1 Netskaven\n\n25) wil: Attack G1 Forttortuga\n\n26) netskaven: Build B2 Netskaven\n\n27) wil: Build Y2 Wil\n\n28) netskaven: Trade B2 R2 Netskaven\n\n29) wil: Build R1 Forttortuga\n\n30) netskaven: Build Y2 Netskaven\n\n31) wil: Trade B2 R2 Forttortuga\n\n32) netskaven: Trade Y2 R2 Netskaven\n\n33) wil: Move Y1 Wil Forttortuga\n\n34) netskaven: Move B1 Netskaven Neworld\n\n35) wil: Move R2 Forttortuga Neworld\n\n36) netskaven: Discover G1 Neworld Y2 Otherlimit\n\n37) wil: Attack B1 Neworld\n\n38) netskaven: Trade R2 B2 Netskaven\n\n39) wil: Build Y2 Forttortuga\n\n40) netskaven: Build Y3 Netskaven\n\n41) wil: Build Y3 Wil\n\n42) netskaven: Discover R2 Netskaven G1 Spc1889\n\n43) wil: Sacrifice Y2 Wil\nMove Y1 Forttortuga Neworld\nMove Y1 Neworld Netskaven\nCatastrophe Netskaven Y\n\n44) netskaven: Build B2 Netskaven\n\n45) wil: Move B1 Neworld Netskaven\nCatastrophe Netskaven B\n\n\twil: Thank you for the game, I'm slowly learning how to see trouble brewing and to take advantage of opportunity when it strikes... \r\n\r\nI look forward to playing another game, thanx again.\n\nHomeworlds Online (SDG# 23700)\nVariants: "Hard time"\nStarted: 2013.4.3, Ended: 2013.5.1\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y2 G3 Dlwillson\n\n2) wil: Homeworld B3 R1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) wil: Build G1 Wil\n\n7) dlwillson: B R1 Dlwillson\n\n8) wil: Trade G3 R3 Wil\n\n9) dlwillson: B R2 Dlwillson\n\n10) wil: Build R2 Wil\n\n11) dlwillson: T R2 Y2 Dlwillson\n\n12) wil: Trade G1 Y1 Wil\n\n13) dlwillson: Discover R1 Dlwillson G1 Forest\n\n14) wil: Discover R2 Wil Y2 Forttortuga\n\n15) dlwillson: B R2 Dlwillson\n\n16) wil: Build G1 Wil\n\n17) dlwillson: B G2 Dlwillson\n\n18) wil: Build G2 Wil\n\n19) dlwillson: Discover G2 Dlwillson B1 Sky\n\n20) wil: Trade G1 B1 Wil\n\n21) dlwillson: B R2 Forest\n\n22) wil: Move G1 Wil Forttortuga\n\n23) dlwillson: B R3 Dlwillson\n\n24) wil: Build R3 Forttortuga\n\n25) dlwillson: S Y2 Dlwillson\nM R1 Forest Forttortuga\nM R2 Forest Forttortuga\nC Forttortuga R\n\n26) wil: Build Y1 Wil\n\n27) dlwillson: T R3 Y3 Dlwillson\n\n28) wil: Build G1 Forttortuga\n\n29) dlwillson: M Y3 Dlwillson Sky\n\n30) wil: Discover Y1 Wil G2 Dryden\n\n31) dlwillson: B G1 Dlwillson\n\n32) wil: Build G3 Wil\n\n33) dlwillson: Build G3 Sky\n\n34) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\nBuild B1 Wil\n\n35) dlwillson: Trade G2 B2 Sky\n\n36) wil: Discover B1 Wil G2 Stalag17\n\n37) dlwillson: Move B2 Sky Stalag17\n\n38) wil: Move R3 Wil Stalag17\n\n39) dlwillson: B B2 Stalag17\n\n40) wil: Attack B2 Stalag17\n\n41) dlwillson: Build B2 Stalag17\nCatastrophe Stalag17 B\n\n42) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Stalag17\nBuild R2 Stalag17\n\twil: interesting tactic....\n\n43) dlwillson: Sacrifice Y3 Sky\nMove R1 Dlwillson Sky\nMove R1 Sky Stalag17\nDiscover G3 Sky B2 Sea\nCatastrophe Stalag17 R\n\tdlwillson: meh... It goes badly for me. I'm not being nearly aggressive enough.\n\n44) wil: Sacrifice G3 Wil\nBuild G2 Forttortuga\nBuild G3 Wil\nBuild Y2 Wil\n\twil: don't go easy on me....i can't learn that way....\n\n45) dlwillson: T G3 Y3 Sea\n\tdlwillson: I'm not going easy on you, I'm having a hard time finding moves with impact. ie: You're playing very well, and not giving me easy ways to hurt you.\n\n46) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 Dryden\nBuild Y3 Dryden\n\n47) dlwillson: D R2 Dlwillson B1 Sky\n\tdlwillson: Actually, I need to consider the situation a moment.\n\tdlwillson: And since I'm at work, it will have to wait...\n\twil: no worries\n\n48) wil: Sacrifice Y3 Dryden\nDiscover G1 Forttortuga R1 Bedrock\nMove G1 Forttortuga Bedrock\nMove Y2 Wil Forttortuga\n\tdlwillson: Let's see how that works out...\n\twil: I'll give you choices!!\n\n49) dlwillson: S G1 Dlwillson\nB Y3 Sea\n\tdlwillson: Impressive!\n\n50) wil: Sacrifice Y2 Forttortuga\nMove Y1 Wil Sea\nMove Y1 Wil Sea\nCatastrophe Sea Y\n\twil: You didn't like the choices I gave you???\n\n\tdlwillson: Good game, Wil. Very well played.\n\twil: I almost went to build more greens for the attack...It is an awful interesting learning curve to this game, there are a lot of moving parts....thanks for playing....are you up for another one?\n\nHomeworlds Online (SDG# 23780)\nVariants: "Hard time"\nStarted: 2013.4.13, Ended: 2013.6.27\nParticipants: AdamBadura (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) AdamBadura: Homeworld G3 B2 Y3\n\n3) Remneb: Build G1 Remneb\n\tAdamBadura: Sorry for the delay. I forgot about the game!\n\tRemneb: It's ok. Have a good game.\n\n4) AdamBadura: Build Y1 Adambadura\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) AdamBadura: Trade Y1 R1 Adambadura\n\n7) Remneb: Build G1 Remneb\n\n8) AdamBadura: Build R1 Adambadura\n\n9) Remneb: Build Y1 Remneb\n\n10) AdamBadura: Build R2 Adambadura\n\n11) Remneb: Build G1 Remneb\n\n12) AdamBadura: Discover R1 Adambadura G1 Shipyard\n\n13) Remneb: Build G2 Remneb\n\n14) AdamBadura: Build R2 Shipyard\n\n15) Remneb: Trade G2 R2 Remneb\n\n16) AdamBadura: Build R3 Adambadura\n\n17) Remneb: Discover G1 Remneb Y3 Zeta\n\n18) AdamBadura: Discover R3 Adambadura Y1 Onmyway\n\n19) Remneb: Discover R2 Remneb B3 Jordan\n\n20) AdamBadura: Move R3 Onmyway Jordan\n\n21) Remneb: Sacrifice Y1 Remneb\nMove R2 Jordan Remneb\n\n22) AdamBadura: Build R3 Adambadura\n\n23) Remneb: Build R3 Remneb\n\n24) AdamBadura: Sacrifice Y3 Adambadura\nMove R1 Shipyard Jordan\nMove R1 Jordan Remneb\nMove R3 Jordan Shipyard\nCatastrophe Remneb R\n\n25) Remneb: Trade G1 R1 Remneb\n\n26) AdamBadura: Trade R1 Y1 Adambadura\n\n27) Remneb: Build R1 Remneb\n\n28) AdamBadura: Build Y1 Adambadura\n\n29) Remneb: Build Y2 Remneb\n\n30) AdamBadura: Move Y1 Adambadura Shipyard\n\n31) Remneb: Move R1 Remneb Shipyard\n\n32) AdamBadura: Move R3 Shipyard Zeta\n\n33) Remneb: Attack Y1 Shipyard\n\n\n34) AdamBadura: Attack R1 Shipyard\n\n35) Remneb: Sacrifice Y2 Remneb\nDiscover Y1 Shipyard Y2 Aldan\nMove G1 Zeta Aldan\n\n36) AdamBadura: Build Y2 Adambadura\n\n37) Remneb: Discover Y1 Aldan G1 Robar\n\n38) AdamBadura: Move Y1 Adambadura Shipyard\n\n39) Remneb: Sacrifice G3 Remneb\nBuild Y2 Robar\nBuild Y3 Remneb\nBuild G2 Aldan\n\n40) AdamBadura: Build Y3 Shipyard\n\n41) Remneb: Build G2 Aldan\n\n42) AdamBadura: Sacrifice Y2 Adambadura\nMove Y3 Shipyard Remneb\nMove Y1 Shipyard Remneb\nCatastrophe Remneb Y\n\n43) Remneb: Sacrifice Y2 Robar\nMove G1 Aldan Zeta\nMove G1 Zeta Remneb\n\n44) AdamBadura: Trade R2 Y2 Adambadura\n\n45) Remneb: Build G2 Remneb\n\tAdamBadura: I didn't thought about that. Shouldn't have rush so much. :(\n\tRemneb: It's my last stand anyway :)\n\n46) AdamBadura: Trade R3 G3 Adambadura\n\n47) Remneb: Sacrifice G2 Remneb\nBuild G2 Aldan\nBuild G3 Remneb\n\n48) AdamBadura: Build Y1 Adambadura\n\n49) Remneb: Move G2 Aldan Robar\n\n50) AdamBadura: Move Y1 Adambadura Shipyard\n\n51) Remneb: Trade G3 Y3 Remneb\n\n52) AdamBadura: Move R3 Zeta Aldan\n\n53) Remneb: Build G3 Remneb\n\n54) AdamBadura: Attack G2 Aldan\n\n55) Remneb: Sacrifice Y3 Remneb\nMove G2 Aldan Robar\nMove G2 Robar Adambadura\nMove G2 Robar Adambadura\nCatastrophe Adambadura G\n\n56) AdamBadura: Trade Y2 G2 Adambadura\n\n57) Remneb: Sacrifice G3 Remneb\nBuild G2 Remneb\nBuild G3 Remneb\nBuild Y1 Robar\n\n58) AdamBadura: Build G3 Aldan\n\n59) Remneb: Trade G2 Y2 Remneb\n\n60) AdamBadura: Sacrifice G3 Aldan\nBuild G2 Aldan\nBuild G3 Adambadura\nBuild Y2 Shipyard\n\n61) Remneb: Move G1 Remneb Robar\n\n62) AdamBadura: Discover Y2 Shipyard G3 Drydocks\n\n63) Remneb: Build Y3 Remneb\n\n64) AdamBadura: Build Y3 Shipyard\n\n65) Remneb: Sacrifice Y3 Remneb\nMove G1 Robar Adambadura\nMove G3 Remneb Shipyard\nMove G3 Shipyard Adambadura\nCatastrophe Adambadura G\n\n\tRemneb: Thanks for the game.\n\tAdamBadura: How?! How I didn't sow that?! Obvously way to rare moves (on my side) where bad for me... :( Congratulations!\n\nHomeworlds Online (SDG# 23755)\nStarted: 2013.4.13, Ended: 2013.4.25\nParticipants: wil (S), zoltar (N)\nWinner: zoltar\n\n1) zoltar: Homeworld B1 R3 G3\n\n2) wil: Homeworld B2 R1 G3\n\tzoltar: Greetings, Earthling.\n\n3) zoltar: Build G1 Zoltar\n\twil: newbie...learning by losing...\n\tzoltar: b g1 zoltar\n\n4) wil: Build G1 Wil\n\n5) zoltar: Trade G1 Y1 Zoltar\n\n6) wil: Trade G1 Y1 Wil\n\n7) zoltar: Build G1 Zoltar\n\n8) wil: Build G1 Wil\n\n9) zoltar: Trade G1 R1 Zoltar\n\n10) wil: Trade G1 R1 Wil\n\n11) zoltar: Build R2 Zoltar\n\n12) wil: Build R2 Wil\n\n13) zoltar: Trade R1 B1 Zoltar\n\n14) wil: Trade R2 B2 Wil\n\n15) zoltar: Discover B1 Zoltar G2 Emeraldforest\n\n16) wil: Build G1 Wil\n\n17) zoltar: Build B1 Emeraldforest\n\n18) wil: Build G1 Wil\n\n19) zoltar: Trade B1 Y1 Emeraldforest\n\n20) wil: Build Y2 Wil\n\n21) zoltar: Build Y2 Emeraldforest\n\n22) wil: Discover G1 Wil Y3 Fortcourage\n\n23) zoltar: Discover Y2 Emeraldforest B3 Blueball\n\n24) wil: Discover Y1 Wil G3 Stalag17\n\n25) zoltar: Move R2 Zoltar Emeraldforest\n\n26) wil: Build Y2 Stalag17\n\n27) zoltar: Move R2 Emeraldforest Fortcourage\n\n28) wil: Discover G1 Fortcourage B2 Dryden\n\n29) zoltar: Sacrifice G3 Zoltar\nBuild B1 Emeraldforest\nBuild Y3 Blueball\nBuild Y3 Zoltar\n\n30) wil: Discover B2 Wil G3 Taratupa\n\n31) zoltar: Move B1 Emeraldforest Taratupa\n\n32) wil: Trade B2 R2 Taratupa\n\n33) zoltar: Build B2 Taratupa\n\twil: oh excellent move...again...a learning curve of not seeing how to capitalize on something other than a factory...thank you!\r\n\n\n34) wil: Attack B2 Taratupa\n\n35) zoltar: Build B3 Emeraldforest\n\n36) wil: Build B3 Taratupa\n\n37) zoltar: Move B1 Emeraldforest Taratupa\nCatastrophe Taratupa B\n\n38) wil: Build R1 Taratupa\n\n39) zoltar: Build B1 Emeraldforest\n\n40) wil: Build R2 Taratupa\n\n41) zoltar: Trade B3 R3 Emeraldforest\n\n42) wil: Build G1 Dryden\n\twil: interesting how these play out.... like a little slate cleaning... \n\n43) zoltar: Trade Y2 G2 Blueball\n\n44) wil: Build Y2 Wil\n\n45) zoltar: Build G2 Blueball\n\n46) wil: Trade G1 B1 Dryden\n\n47) zoltar: Sacrifice G2 Blueball\nBuild G1 Blueball\nBuild R3 Fortcourage\n\n48) wil: Sacrifice Y2 Wil\nMove Y2 Stalag17 Dryden\nMove Y1 Stalag17 Dryden\n\n49) zoltar: Trade Y3 G3 Zoltar\n\n50) wil: Build G2 Dryden\n\n51) zoltar: Sacrifice G2 Blueball\nBuild Y2 Blueball\nBuild Y3 Emeraldforest\n\n52) wil: Move Y1 Dryden Taratupa\n\tzoltar: I was expecting the same Y2 sac, but for you to send one of your yellow ships not to Dryden, but right into my homeworld. This move also threatens checkmate, but moving one yellow ship twice right into my homeworld would have been much stronger than moving both ships one step away. I could not capture the ship or else you then sac your second y2 and send the other yellow ship in and win. This is still a good move, but now I have many more options to defend.\n\n53) zoltar: Build G2 Blueball\n\twil: thank you for the lesson!!!\n\n54) wil: Move R2 Taratupa Dryden\n\twil: I see what you are saying....you could have still changed yes? Or left with one ship... to ancy....still waaaaaaayyyy green....\n\n55) zoltar: Sacrifice Y3 Emeraldforest\nMove Y3 Blueball Wil\nMove G2 Blueball Wil\nMove G1 Blueball Wil\nCatastrophe Wil G\n\n56) wil: Build Y3 Taratupa\n\n57) zoltar: Sacrifice R2 Fortcourage\nAttack R1 Wil\nAttack Y2 Wil\n\n\tzoltar: The Zoltarian Empire has achieved a peaceful liberation of citizenz who were being held against their Wil. \n\twil: We tried to escape annihilation by your occupying forces but the system wouldn't let us....thank you so much for the abuse....eventualy I'll start to see how the hell this all works\n\nHomeworlds Online (SDG# 23624)\nStarted: 2013.4.13, Ended: 2013.7.24\nParticipants: Nupanick (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Nupanick: Homeworld B2 R3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Nupanick: Build G1 Nupanick\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) Nupanick: Trade G3 Y3 Nupanick\n\n7) ts52: Build G1 Ts52\n\n8) Nupanick: Build G2 Nupanick\n\tNupanick: Whoops, forgot to check my notes... thought I was playing a different table.\n\n9) ts52: Build G2 Grover\n\tts52: no worries\n\n10) Nupanick: Discover G1 Nupanick B1 Damogran\n\n11) ts52: Trade G1 Y1 Grover\n\n12) Nupanick: Build G1 Damogran\n\n13) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild G3 Grover\n\n14) Nupanick: Build G3 Nupanick\n\n15) ts52: Trade G2 R2 Grover\n\tNupanick: Ooh, so that's how Factory works. Wasn't expecting that!\n\n16) Nupanick: Trade G1 Y1 Damogran\n\n17) ts52: Move R2 Grover Damogran\n\tts52: Yeah, factory is pretty handy.\n\n18) Nupanick: Move G1 Damogran Grover\n\n19) ts52: Move G3 Grover Damogran\n\n20) Nupanick: Sacrifice Y1 Damogran\nMove G1 Grover Ts52\n\n21) ts52: Trade G3 R3 Ts52\n\n22) Nupanick: Discover G2 Nupanick B1 Cerulean\n\n23) ts52: Attack G1 Ts52\n\n24) Nupanick: Build G1 Cerulean\n\n25) ts52: Build R1 Damogran\n\n26) Nupanick: Trade G1 Y1 Cerulean\n\n27) ts52: Build Y2 Grover\n\n28) Nupanick: Build Y2 Nupanick\n\n29) ts52: Build G1 Damogran\n\n30) Nupanick: Build Y2 Cerulean\n\n31) ts52: Move Y1 Grover Damogran\n\n32) Nupanick: Move Y1 Cerulean Grover\n\n33) ts52: Sacrifice G2 Grover\nBuild Y3 Grover\nBuild Y3 Damogran\n\n34) Nupanick: Move Y2 Cerulean Grover\nCatastrophe Grover Yellow\n\n35) ts52: Build R1 Damogran\n\tNupanick: ...darn. I basically have to do this now though.\n\n36) Nupanick: Build G2 Cerulean\n\n37) ts52: Discover G1 Ts52 B3 Grover\n\tNupanick: this puts you WAY in the lead by my estimates... good luck!\n\n38) Nupanick: Trade G2 Y2 Cerulean\n\n39) ts52: Build G2 Grover\n\n40) Nupanick: Build G2 Nupanick\n\n41) ts52: Build G3 Ts52\n\n\nHomeworlds Online (SDG# 23787)\nStarted: 2013.4.13, Ended: 2013.5.20\nParticipants: Nupanick (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) Nupanick: Homeworld B2 G3 Y3\n\tNupanick: Woo, homeworlds! It's been too long~\n\n3) wil: Build G1 Wil\n\n4) Nupanick: Build Y1 Nupanick\n\twil: I'm a newbie and am looking forward to learning...\r\n\n\tNupanick: I assume you've done some research though, since you're starting out with Banker?\n\n5) wil: Trade G1 Y1 Wil\n\n6) Nupanick: Trade Y1 G1 Nupanick\n\n7) wil: Build G1 Wil\n\n8) Nupanick: Build Y1 Nupanick\n\n9) wil: Trade G1 B1 Wil\n\n10) Nupanick: Discover Y1 Nupanick G1 Pitstop\n\tNupanick: Ooh, nice. Wasn't expecting you to trade into blue so early. Hmm.\n\n11) wil: Build B1 Wil\n\tNupanick: my scout decides to avoid speculating in the blue economy and instead takes a detour to a lone maintenance station.\n\n12) Nupanick: Build Y1 Pitstop\n\twil: I see....well blue is cool...\r\n\n\tNupanick: Oh, no, I have nothing wrong with blue, in fact I would have liked to build into it, but I just realized that if I did I'd be giving you the first medium. Sorry for the confusion!\n\n13) wil: Discover B1 Wil G3 Fortcourage\n\n14) Nupanick: Build Y2 Pitstop\n\n15) wil: Build Y2 Wil\n\n16) Nupanick: Discover Y1 Pitstop B3 Coruscant\n\n17) wil: Build B2 Wil\n\n18) Nupanick: Build Y2 Nupanick\n\tNupanick: Reminder: overpopulation occurs when there are four pieces of the same color in the same place. That's "pieces," not "ships." Three blue ships and a blue star is enough to call a catastrophe.\n\n19) wil: Trade B2 R2 Wil\n\twil: yeah thanx....I'm thinking i can only catastrophe myself...and I'll be buildin stars soon...\r\n\n\n20) Nupanick: Trade Y2 G2 Nupanick\n\n21) wil: Move R2 Wil Coruscant\n\n22) Nupanick: Discover Y1 Coruscant B2 Aislefive\n\n23) wil: Build G1 Wil\n\n24) Nupanick: Move Y2 Pitstop Aislefive\n\n25) wil: Build B2 Fortcourage\n\n26) Nupanick: Build Y2 Pitstop\n\n27) wil: Build B3 Fortcourage\n\n28) Nupanick: Trade Y2 G2 Aislefive\n\n29) wil: Trade B3 Y3 Fortcourage\n\n30) Nupanick: Trade G1 R1 Nupanick\n\n31) wil: Build B3 Wil\n\n32) Nupanick: Build Y2 Pitstop\n\twil: I'm gonna get you to fire that scout!\n\n33) wil: Build Y3 Fortcourage\n\n34) Nupanick: Sacrifice Y2 Pitstop\nMove Y2 Pitstop Fortcourage\nMove Y1 Pitstop Fortcourage\nCatastrophe Fortcourage Yellow\n\twil: My bad, don't fire him....he's a triple agent...\n\n35) wil: Build B3 Fortcourage\n\tNupanick: A suicide bomber, actually >:)\n\n36) Nupanick: Build Y1 Aislefive\n\twil: nah, he came back to the fold, his mission was done, and will soon be on a new assignment.\n\tNupanick: Argh, that gives you a monopoly on Blue. Gotta break that up somehow.\n\n37) wil: Trade B3 Y3 Fortcourage\n\n38) Nupanick: Discover G2 Aislefive B3 Catplanet\n\n39) wil: Build Y2 Fortcourage\n\n40) Nupanick: Move Y1 Aislefive Catplanet\n\n41) wil: Sacrifice Y2 Wil\nDiscover Y2 Fortcourage G1 Bedrock\nMove G1 Wil Coruscant\n\n\twil: This game showed me the value of cornering blue... every game teaches me either something to never try again, watch out for, or something to try again...quite the learning curve...\n\tNupanick: Why'd you quit? You were doing really well.\n\twil: it said you resigned??\n\nHomeworlds Online (SDG# 23786)\nVariants: "Hard time"\nStarted: 2013.4.14, Ended: 2013.4.21\nParticipants: zoltar (S), goulo (N)\nWinner: zoltar\n\n1) goulo: Homeworld R3 B2 G3\n\n2) zoltar: Homeworld R1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\tzoltar: hi!\n\n4) zoltar: Build G1 Zoltar\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) goulo: Build G1 Goulo\n\n8) zoltar: Build G1 Zoltar\n\n9) goulo: Trade G1 R1 Goulo\n\tgoulo: trade g1 r1 goulo\n\n10) zoltar: Trade G1 R1 Zoltar\n\tgoulo: hmm, strangely, it works better if the order is typed above instead of in the comment section. :P\n\tzoltar: yes, I've made that mistake as well.\n\n11) goulo: Build R2 Goulo\n\n12) zoltar: Build R2 Zoltar\n\n13) goulo: Trade R1 G1 Goulo\n\n14) zoltar: Build G1 Zoltar\n\n15) goulo: Discover G1 Goulo Y1 Poleneto\n\n16) zoltar: Discover G1 Zoltar Y3 Oldyeller\n\n17) goulo: Build Y2 Goulo\n\n18) zoltar: Build Y2 Zoltar\n\n19) goulo: Move R2 Goulo Poleneto\n\n20) zoltar: Move R2 Zoltar Oldyeller\n\n21) goulo: Build G1 Goulo\n\n22) zoltar: Build G2 Zoltar\n\n23) goulo: Build G2 Goulo\n\n24) zoltar: Sacrifice Y2 Zoltar\nMove G1 Oldyeller Poleneto\nMove G1 Poleneto Goulo\nCatastrophe Goulo G\n\n25) goulo: Trade Y2 G2 Goulo\n\tgoulo: Hmm, well that was a big blunder by me...\n\n26) zoltar: Build Y2 Zoltar\n\tzoltar: Yes, putting three of one color together\n\n27) goulo: Build Y2 Goulo\n\n28) zoltar: Discover Y1 Zoltar G3 Greengiant\n\n29) goulo: Move Y1 Goulo Poleneto\n\n30) zoltar: Move R1 Zoltar Greengiant\n\n31) goulo: Discover G1 Poleneto Y3 Polenego\n\n32) zoltar: Move G2 Zoltar Polenego\n\n33) goulo: Build G1 Polenego\n\n34) zoltar: Sacrifice G2 Polenego\nBuild Y2 Zoltar\nBuild Y3 Greengiant\n\n\tgoulo: Thanks for the game. I am way too rusty and played way too carelessly... :/\n\tzoltar: gg -- yeah, I was going to sac a y2 and move the y3 into your homeworld next turn, which would be close to checkmate.\n\nHomeworlds Online (SDG# 23788)\nStarted: 2013.4.18, Ended: 2013.4.18\nParticipants: wil (S), rentabuddha (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 23688)\nVariants: "Hard time"\nStarted: 2013.4.19, Ended: 2013.4.30\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld R1 B2 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) wil: Build G1 Wil\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 R1 Wil\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) wil: Build G1 Wil\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) wil: Build G1 Wil\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) wil: Trade G3 Y3 Wil\n\n12) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n13) wil: Build Y2 Wil\n\n14) SilentTitan: Discover Y1 Silenttitan B1 Soul\n\n15) wil: Build G2 Wil\n\n16) SilentTitan: Build Y2 Sol\n\n17) wil: Discover G1 Wil Y3 Fortcourage\n\n18) SilentTitan: Build G2 Silenttitan\n\n19) wil: Build G2 Wil\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Soul\nBuild Y3 Silenttitan\nBuild G3 Silenttitan\n\n21) wil: Trade G1 B1 Wil\n\n22) SilentTitan: Trade Y2 R2 Soul\n\n23) wil: Build G1 Wil\n\n24) SilentTitan: Move G2 Silenttitan Soul\n\n25) wil: Build G3 Fortcourage\n\n26) SilentTitan: Build G3 Soul\n\n27) wil: Build B1 Wil\n\n28) SilentTitan: Trade G2 B2 Soul\n\n29) wil: Discover G2 Wil R3 Tortuga\n\n30) SilentTitan: Sacrifice Y2 Sol\nMove B2 Soul Tortuga\nMove B2 Tortuga Wil\nCatastrophe Wil Blue\n\n31) wil: Move Y2 Wil Tortuga\n\n32) SilentTitan: Build G2 Silenttitan\n\n33) wil: Sacrifice G3 Fortcourage\nBuild G3 Fortcourage\nBuild Y2 Wil\nBuild Y2 Tortuga\n\n34) SilentTitan: Trade Y1 R1 Silenttitan\n\n35) wil: Sacrifice Y2 Tortuga\nMove G1 Wil Silenttitan\nMove G2 Wil Silenttitan\nCatastrophe Silenttitan G\n\n36) SilentTitan: Move G3 Soul Silenttitan\n\n37) wil: Build G1 Tortuga\n\n38) SilentTitan: Sacrifice Y3 Silenttitan\nMove R2 Soul Silenttitan\nMove R2 Silenttitan Wil\nMove R1 Silenttitan Wil\nCatastrophe Wil Red\n\tSilentTitan: good game... Thanks\n\twil: slaughtered I was, learning I did..hopefully.\n\tSilentTitan: I don't know about slaughtered .. you got a darn good shot in on me ...taking out the greens in my homeworld. \r\n\n\twil: you up for another?\n\n\nHomeworlds Online (SDG# 23810)\nStarted: 2013.4.21, Ended: 2013.5.13\nParticipants: daselva (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) daselva: Homeworld R1 B2 G3\n\n3) wil: Build G1 Wil\n\twil: yikes this is a first for me...\n\n4) daselva: Build G1 Daselva\n\n5) wil: Trade G3 Y3 Wil\n\n6) daselva: Trade G3 R3 Daselva\n\n7) wil: Build Y1 Wil\n\n8) daselva: Build R1 Daselva\n\n9) wil: Build Y1 Wil\n\n10) daselva: Trade R3 Y3 Daselva\n\n11) wil: Build G1 Wil\n\n\nHomeworlds Online (SDG# 23823)\nVariants: "Hard time"\nStarted: 2013.4.21, Ended: 2013.4.28\nParticipants: zoltar (S), Aristos (N)\nWinner: zoltar\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) zoltar: Homeworld B1 R2 G3\n\tAristos: Aristos Empire launches first interstellar ship. Cost of building the ship so expensive, leads to riots among lower classes. Aristos Empire leaders reduce population by 1/3 to prevent revolution. New sources of serfs will have to be found. Luckily, this new "spaceship" offers a solution to the problems it has created.\n\n3) Aristos: Build Y1 Aristos\n\tzoltar: The Zoltarian Empire has established that the Aristos Empire is primitive and dangerous, and prone to self-destruction. Therefore, they will be enslaved for their own protection, or will be annihilated while being pacified for the protection of surrounding peaceful star systems. A fleet will be dispatched immediately.\n\n4) zoltar: Build G1 Zoltar\n\n5) Aristos: Discover Y1 Aristos Y1 Blossom\n\n6) zoltar: Trade G1 Y1 Zoltar\n\tAristos: First interstellar jump a success!\n\n7) Aristos: Discover Y1 Blossom G3 Spark\n\n8) zoltar: Build G1 Zoltar\n\n9) Aristos: Build Y1 Spark\n\n10) zoltar: Build Y2 Zoltar\n\n11) Aristos: Build Y2 Aristos\n\n12) zoltar: Move Y1 Zoltar Spark\n\tAristos: Interstellar fleet sending home material resources allows for construction of modestly larger models, closer to the design of the original prototype. Aristian engineers have begun calling for new ship designs they claim will have capabilities "substantially of interest to the Empire."\n\n13) Aristos: Discover Y1 Spark G2 Flash\n\n14) zoltar: Discover G1 Zoltar Y3 Mellowyellow\n\n15) Aristos: Trade Y2 G2 Aristos\n\tAristos: Fleet Captain Zandos reports sighting a Zoltarian craft. Giving it a wide berth until we can analyze its military potential. Appears to be purely civilian currently. \n\n16) zoltar: Build G1 Zoltar\n\n17) Aristos: Sacrifice G2 Aristos\nBuild Y2 Flash\nBuild Y2 Spark\n\n18) zoltar: Build Y3 Zoltar\n\n19) Aristos: Discover Y2 Flash B1 Blink\n\n20) zoltar: Discover Y3 Zoltar B3 Bluedanube\n\n21) Aristos: Discover Y1 Spark B2 Glimmer\n\n22) zoltar: Sacrifice G1 Mellowyellow\nBuild Y3 Zoltar\n\n23) Aristos: Trade Y1 R1 Glimmer\n\n24) zoltar: Trade Y3 R3 Zoltar\n\tAristos: B or G. Not much of a difference when typing. Major difference in board position. DOH.\n\tzoltar: Yep!\n\n25) Aristos: Sacrifice R1 Glimmer\nAttack Y1 Spark\n\n26) zoltar: Move R3 Zoltar Spark\n\n27) Aristos: Trade Y2 R2 Blink\n\n28) zoltar: Attack Y2 Spark\n\tAristos: First blood!\n\tzoltar: Well, that wasn't very nice!\n\n\tAristos: Yeah, I know... I'm constantly on guard against it. Just missed that one.\n\tAristos: Well played. I can't see any way out of the convergence of your large ships. \n\tzoltar: Yeah, it's a slow death from this point on. Still can't believe I missed that obvious 'checkmate' in two moves. I'm rusty and haven't really played in over a year, but at least I was able to swindle you in the opening to get the big ships. I was worried you'd get a lock on the yellow from the start so was aggressively trying to stop that. gg\n\nHomeworlds Online (SDG# 23819)\nStarted: 2013.4.22, Ended: 2013.4.23\nParticipants: wil (S), pgadey (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 23818)\nVariants: "Unrated"\nStarted: 2013.4.23, Ended: 2013.6.8\nParticipants: zoltar (S), OnePageWars (W), Leonard_Daniels (N), wil (E)\nWinner: zoltar\n\n1) Leonard_Daniels: Homeworld Y1 B2 G3\n\n2) wil: Homeworld R3 B1 G3\n\tLeonard_Daniels: Good luck everyone.\n\n3) zoltar: Homeworld B3 R2 G3\n\n4) OnePageWars: Homeworld G3 B2 Y3\n\tzoltar: Heghlu'meH QaQ jajvam!\n\tLeonard_Daniels: It doesn't bode well that I've been outgeeked this early in the game.\n\tOnePageWars: what does "Heghlu'meH QaQ jajvam!" mean?\n\tOnePageWars: zoltar, will you enter into alliance with me? I wish to avoid early confronataion.\n\n5) Leonard_Daniels: Build G1 Leonard_daniels\n\twil: An alliance??? LD...should if I sacrifice to take out OPWs drone star you'll have a direct line into his world... \r\n\r\nHas this newbie got protocol correct?\n\twil: Should only three player games be played to eliminate this issue?\n\tOnePageWars: The peaceful planet of Ailaria stands by it's offer. We await you response.\n\tOnePageWars: (OOC: I just now named my planet, if you didn't catch it)\n\tOnePageWars: (OOC: http://rinkworks.com/namegen )\n\tzoltar: Right now, so far, I consider myself to be at peace with everyone. If one player gets too strong I can help out, but for now, Zoltar plans to peacefully develop the Zoltarian Empire.\r\n\r\nAnd "Heghlu'meH QaQ jajvam!" means "Today is a good day to die" in Klingon. Has not your civilization developed 'Google', yet you have mastered interstellar flight? Intriguing.\n\tzoltar: Right now, so far, I consider myself to be at peace with everyone. If one player gets too strong I can help out, but for now, Zoltar plans to peacefully develop the Zoltarian Empire.\r\n\r\nAnd "Heghlu'meH QaQ jajvam!" means "Today is a good day to die" in Klingon. Has not your civilization developed 'Google', yet you have mastered interstellar flight? Intriguing.\n\tzoltar: Ah, now I see: OnePageWarse, you and I both have gateways to the small star systems. Yes, I don't plan on attacking my closer neighbor right away, if that's what you mean, though I don't want to gang up on anyone either. In the 4-player game (at least) 2 players must share the same size double star and so are closer to each other. It has not been a problem in previous 4-player games, because of the extra pyramids in the bank to choose from in the four-player game.\n\twil: Nice zoltar chastising our computer translation ability whilst double posting....\n\tOnePageWars: The proud Ailarians will not stoop to gleaning information from an invasive Google. We shall continue to prosper as our ancestors have before us.\n\tOnePageWars: Honorable Zoltarians.\r\nOur culture highly values such objective views of things.\r\nSincerely, The Council of Foreign Relations.\n\tzoltar: Nice Zoltar did not double post: Zoltar'z tranzmizzion was bifurcated by a wormhole and echoed twice by server.\n\tLeonard_Daniels: Like Zoltar, I intend to consider myself at peace, and not gang up on anyone. I'm new to the game, so I would probably be a liability anyway.\n\n6) wil: Build G1 Wil\n\n7) zoltar: Build G1 Zoltar\n\twil: Shouldn't the program actually start with everyone having one large ship and one small ship of the same color??? I mean what else are you gonna do? Trade your ship in for another color first turn?\r\n\n\n8) OnePageWars: Build Y1 Onepagewars\n\n9) Leonard_Daniels: Trade G1 B1 Leonard_daniels\n\n10) wil: Build G1 Wil\n\n11) zoltar: Trade G1 Y1 Zoltar\n\n12) OnePageWars: Build Y1 Onepagewars\n\n13) Leonard_Daniels: Build G1 Leonard_daniels\n\tOnePageWars: Ailaria contines it's production of mobile ships.\n\tOnePageWars: A strange transmission has been intercepted by an Ailarian: http://www.twitch.tv/riotgames\r\n\r\nAilarian intelligence is working on decoding the significance of this broadcast. In keeping with our belief in freedom of information, we will keep you updated on the decoding process.\n\n14) wil: Trade G1 Y1 Wil\n\tLeonard_Daniels: Leonardian scientists detect signals emanating from foreign systems. They prepare craft for first contact.\n\tOnePageWars: Their are two schools of thought developing within the Ailarian people. Some think that there is some code hidden withing the broadcast. Others think it is simply a sports broadcast, or something comparable. This dissent remains to be resolved.\n\n15) zoltar: Build Y2 Zoltar\n\twil: the eastern lemurians have discovered propulsion...\n\n16) OnePageWars: Trade Y1 R1 Onepagewars\n\tOnePageWars: The Ailarians, due to a strong belief in self defense have crowdfunded the overhaul of a transport ship into a gunship.\n\n17) Leonard_Daniels: Trade G1 R1 Leonard_daniels\n\tLeonard_Daniels: The Leonardian fleet suddenly looks a little defenceless.\n\n18) wil: Trade G1 R1 Wil\n\n19) zoltar: Trade Y1 R1 Zoltar\n\twil: um..er...so much for all that peaceful talk...\n\tzoltar: What a bunch of war mongers. Now you've forced me to get a gun too, when I was ready to go blue!\n\n20) OnePageWars: Trade Y1 B1 Onepagewars\n\tOnePageWars: Due to the recent articles in major news outlets written by prominent Ailarian statisticians public opinion on the strange broadcast has experienced a significant shift.\r\n\r\nPopular opinion now holds that the broadcast is in fact a sports game. The nature of said game is still under debate, but those who insist it contains a secret message are dwindling by the minute.\n\tOnePageWars: Despite the recent hype regarding the transmission, the Ailarian Council of Foreign Relations is currently focusing on a more pressing issue.\r\n\r\nRumors have been circulating of a supposed surprise attack by the Ailarian troops. The council is working on a plan to dispel such superfluous rumors.\n\n21) Leonard_Daniels: Build G1 Leonard_daniels\n\n22) wil: Build G1 Wil\n\n23) zoltar: Build G1 Zoltar\n\n24) OnePageWars: Build B1 Onepagewars\n\n25) Leonard_Daniels: Trade G1 Y1 Leonard_daniels\n\tOnePageWars: (OOC: It's awfully quiet around here. Isn't anyone else going to get into the role playing aspect of this? It's quite enjoyable.)\n\n26) wil: Trade G1 B1 Wil\n\n27) zoltar: Build Y1 Zoltar\n\twil: The east coast has now accumulated acess to resources of all varieties....as he looks furtively through space and future possibilities.\r\n\n\n28) OnePageWars: Trade B1 G1 Onepagewars\n\n29) Leonard_Daniels: Build G1 Leonard_daniels\n\n30) wil: Build G1 Wil\n\n31) zoltar: Trade G1 B1 Zoltar\n\twil: wondering how exactly this coast and that got a step behind the hordes of the poles....\n\n32) OnePageWars: Build B2 Onepagewars\n\tLeonard_Daniels: Looks about equal to me - everybody has four small ships plus their original ship, apart from West, who have a turn in hand anyway. What makes you say you're behind?\n\tzoltar: I'd say North has the lead, simply from having the factory setup. East I'd say is next. South and West share the same-sized outlet to the outside, and our both having the fortress setup with only 4 smalls in the bank makes it difficult for us to expand, giving us by far the worse positions.\n\tzoltar: I mean to say North probably has the lead from the banker setup, and with the medium pieces coming out next, soon North can sit on some large stars and then cash them in.\n\n33) Leonard_Daniels: Discover B1 Leonard_daniels G3 Heworth\n\tOnePageWars: What's around the river bend?\r\n\r\n(OOC: Quoted from Disney's Pocahontas.)\n\n34) wil: Build B2 Wil\n\n35) zoltar: Discover B1 Zoltar G1 Greenpea\n\n36) OnePageWars: Discover B1 Onepagewars G1 Kolorvar\n\tzoltar: Zoltar considered the destruction of the Y2 drone to propel the b1 scout on a suicide mission into the Ailarian Homeworld where it would supernova the blue twin star; but the Zoltarian Senate overruled the action and instead legislated that establishing a peaceful outpost on a key moon would be more in line with the goals of the Zoltarian space exploration program.\n\twil: hmmm in comparision to previous comments....my only comment can be.....er...yeah right.\n\tzoltar: The Zoltarian fllet is also now in position to destroy have of the Wil homeworld with a similar Y2 sacrifice. In a 2-Empire galaxy, that would be an obvious tactical ploy. But in a 4-Empire galaxy, and this early, the Zoltarian ruling counsel deems it unwise to weaken oneself so early in the game just to also weaken one of three other empires more. Such tactics appear to be poor long-term strategy. \n\twil: So I see....the peace loving Zoltarians as described earlier in this discussion are only peace loving until the time comes where they can clearly dominate...and then they will gladly take up the mantle of conquereror....\n\n37) Leonard_Daniels: Build B2 Heworth\n\tOnePageWars: The fertile planet of Kolorvar has been discovered by an Ailarian trade vessel. It appears to be uninhabited, but time will tell.\n\tLeonard_Daniels: [One of my messages from earlier appears to have been deleted - was it because I made reference to specific moves that a specific player could make? If so, who deleted my message?]\n\n38) wil: Discover B2 Wil G2 Fortcourage\n\tzoltar: Zoltarians love peace. Zoltarians will abide by the will of the gods, who have stated in the prophecies that the Zoltarians have been chosen by the gods to rule the universe. The Zoltarians only follow the will of the gods, nothing more, nothing less.\n\tzoltar: The Zoltarians know of no method that anyone can delete any messages, even one's own. The answer is that no mortal deleted your message, that it was what is known as a 'computer glitch' or perhaps it is the will of the gods, whose methods are beyond the understandings of all mortals.\n\n39) zoltar: Build B3 Greenpea\n\twil: F troop is establishing a trading post.\n\n40) OnePageWars: Build B3 Kolorvar\n\tOnePageWars: Upon further inspection it is discovered that there are heretofore unknown substances existing on Kolorvar which can aid in ship design. A state of the art freighter is constructed by Ailarian engineers.\n\n41) Leonard_Daniels: Trade B1 Y1 Heworth\n\n42) wil: Build Y2 Wil\n\n43) zoltar: Trade B3 Y3 Greenpea\n\tLeonard_Daniels: Leonardian settlers have installed a stargate in the Heworth system, in an attempt to attract interstellar trade.\n\n44) OnePageWars: Trade B3 Y3 Kolorvar\n\n45) Leonard_Daniels: Discover G1 Leonard_daniels Y3 Clifton\n\tOnePageWars: The freighter receives an overhaul with most of the cargo hold being occupied by thrusters.\n\n46) wil: Build G2 Wil\n\n47) zoltar: Build G2 Zoltar\n\tLeonard_Daniels: Leonardian explorers have discovered a new star system rich in fuel deposits. They get to work on finding a way to exploit it.\n\n48) zoltar: Build Y2 Greenpea\n\twil: meanwhile a civilization that has never seen so many ships and so many stars so close is absolutely clueless about what to do....so will make eggplant parmesan, spaghetti squash and some sourdough garlic bread...\n\n49) Leonard_Daniels: Build Y2 Heworth\n\n50) wil: Discover R1 Wil G2 Dryden\n\n51) zoltar: Move Y3 Greenpea Onepagewars\n\n52) Leonard_Daniels: Build G2 Leonard_daniels\n\n53) wil: Discover G2 Wil R2 Bedrock\n\twil: are these now abndonned ships and stars ready to be utilized by any occupying force walking in without resistance? I don't know what occurs here...could someone actually own two homeworlds now??\n\twil: how was it it said my time had expired? \n\n54) zoltar: Sacrifice R1 Zoltar\nAttack R1W Onepagewars\n\n55) Leonard_Daniels: Sacrifice G3 Leonard_daniels\nBuild Y2 Heworth\nBuild Y3 Leonard_daniels\nBuild G3 Leonard_daniels\n\tLeonard_Daniels: I guess so. Certainly shakes up the balance of power. In South's favour, though.\n\n56) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B1 Fortcourage\nBuild B3 Fortcourage\n\n57) zoltar: Move B1 Greenpea Fortcourage\nCatastrophe Fortcourage B\n\n58) Leonard_Daniels: Sacrifice Y2 Heworth\nMove Y3 Leonard_daniels Heworth\nMove Y3 Heworth Kolorvar\n\n59) wil: Discover B1 Wil G2 Fortcourage\n\n60) zoltar: Attack Y3W Onepagewars\n\n61) Leonard_Daniels: Build R1 Leonard_daniels\n\n62) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B1 Fortcourage\nBuild R1 Dryden\n\n63) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Greenpea\nBuild R2 Onepagewars\n\n64) Leonard_Daniels: Sacrifice Y2 Heworth\nMove R1 Leonard_daniels Heworth\nMove R1 Heworth Kolorvar\n\n65) wil: Move Y1 Wil Fortcourage\n\tzoltar: Zoltarian xenoanthropologists salvage an ancient alien vessel.\n\n66) zoltar: Sacrifice Y2 Greenpea\nMove Y1 Zoltar Kolorvar\nMove Y3 Onepagewars Kolorvar\nCatastrophe Kolorvar Y\n\twil: the wilians, wellian behindian in everythinian, creates a factory for measly little ships as the others rumage through the refuge of one page\n\tzoltar: You mean Wilful Willians build weapons of mass destruction while making insinuations about peaceful Zoltarian archeological expeditions? \n\n67) Leonard_Daniels: Sacrifice G3 Leonard_daniels\nBuild G3 Leonard_daniels\nBuild R2 Kolorvar\nBuild Y1 Heworth\n\twil: me thinks thou protesteth too much.... but alas, have I read it wrong but with my oposing hemispheres demise has that alone caused me to lose?\n\tzoltar: Lose? You may win, if the other two powers damage each other fatally while you slowly strengthen your position.\n\n68) wil: Discover B1 Fortcourage R3 Whynot\n\tLeonard_Daniels: Leonardian strategists predict a wave of Zoltarian warships sweeping across the galaxy, destroying all in their path. The Leonardian salvage missions are stepped up a notch in the meantime.\n\n69) zoltar: Move Y3 Onepagewars Kolorvar\n\twil: willians continue to flounder not being prepared to purchase the larger model ships when available finding difficulty finding resources...\n\n70) Leonard_Daniels: Attack B1W Kolorvar\n\n71) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Fortcourage\nBuild B1 Fortcourage\n\tzoltar: The Zoltarian council determined that the alien OnePageWars tech was too dangerous for anyone to use, so we have purged it from the entire galaxy.\n\tLeonard_Daniels: ...at the cost of the lives of the several hundred Leonardian citizens who made up the crew of the starship destroyed by the Zoltarian weapon of mass destruction. The Leonardian homeworld enters a period of mourning, and its leaders vow to never forget this atrocity.\n\n72) zoltar: Sacrifice R2 Onepagewars\nAttack B1N Kolorvar\nAttack R2N Kolorvar\n\n73) Leonard_Daniels: Build R2 Leonard_daniels\n\n74) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Wil\nBuild Y3 Wil\n\n75) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Greenpea\n\n76) Leonard_Daniels: Move R2 Leonard_daniels Heworth\n\n77) wil: Move Y2 Wil Dryden\n\n78) zoltar: Attack R1N Kolorvar\n\n79) Leonard_Daniels: Sacrifice G3 Leonard_daniels\nBuild G3 Leonard_daniels\nBuild R2 Leonard_daniels\nBuild R3 Heworth\n\tLeonard_Daniels: As predicted, the Zoltarian battle fleet is sweeping through the galaxy, destroying all in its path. The Leonardian government declares a state of emergency, while religious leaders claim that the apocalypse is nigh.\n\n80) wil: Sacrifice Y2 Wil\nDiscover B1 Fortcourage R3 Wtf\nDiscover R1 Dryden B3 Ohwell\n\n81) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R3 Onepagewars\nBuild Y2 Kolorvar\n\n82) Leonard_Daniels: Move Y1 Heworth Kolorvar\n\n83) wil: Sacrifice Y1 Fortcourage\nMove G2 Bedrock Wtf\n\n84) zoltar: Sacrifice Y2 Greenpea\nMove Y3 Kolorvar Wtf\nMove R1 Onepagewars Greenpea\n\n85) Leonard_Daniels: Trade R2 B2 Leonard_daniels\n\n86) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 Fortcourage\nBuild R2 Dryden\n\n87) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild B3 Kolorvar\nBuild R2 Greenpea\n\n88) Leonard_Daniels: Sacrifice G3 Leonard_daniels\nBuild G3 Leonard_daniels\nBuild Y1 Kolorvar\nBuild Y2 Heworth\n\n89) wil: Sacrifice Y2 Dryden\nMove G2 Wtf Dryden\nMove B1 Wtf Leonard_daniels\n\n\n90) zoltar: Sacrifice Y2 Zoltar\nMove B1 Kolorvar Wtf\nMove B1 Wtf Leonard_daniels\nCatastrophe Leonard_daniels B\n\n91) Leonard_Daniels: Sacrifice Y2 Heworth\nMove G3 Leonard_daniels Zoltar\nMove G2 Leonard_daniels Zoltar\nCatastrophe Zoltar G\n\n92) zoltar: Sacrifice Y2 Kolorvar\nMove B3 Kolorvar Zoltar\nMove Y3 Greenpea Heworth\n\n93) wil: Build G2 Dryden\n\n94) zoltar: Sacrifice R2 Greenpea\nAttack R3N Heworth\nAttack G1W Onepagewars\n\n95) wil: Sacrifice Y2 Fortcourage\nMove G2 Dryden Leonard_daniels\nMove R1 Dryden Greenpea\n\n96) zoltar: Move R3 Heworth Leonard_daniels\n\n97) wil: Move G2 Leonard_daniels Clifton\n\n98) zoltar: Attack B2W Onepagewars\n\n99) wil: Build R2 Dryden\n\tLeonard_Daniels: The major star of the Leonardian system, Leonard Alpha, is destroyed. Billions are dead. The few survivors board colony ships and flee the sector, abandoning their existing facilities and ships. The Leonardian military have just enough time to launch a suicide attack against the Zoltarian shipyards. Despite their bitterness against the residents of the Wil system for their betrayal, the Leonardian strategists recognise that the sector will be safer in their hands than in the hands of the bloodthirsty Zoltarian horde.\n\tLeonard_Daniels: [Is there any way to continue to watch this match after my resignation? I should probably have asked before resigning, but there you go.]\n\n100) zoltar: Sacrifice B2 Onepagewars\nTrade B3 G3 Zoltar\nTrade Y3 G3 Wtf\n\tLeonard_Daniels: [nvm, turns out this is still listed in My SDG.]\n\n101) wil: Sacrifice G3 Wil\nBuild G2 Clifton\nBuild G3 Wil\nBuild Y2 Wil\n\n102) zoltar: Sacrifice R2 Kolorvar\nAttack R2N Heworth\nAttack B2N Heworth\n\tzoltar: Having one of your binary stars destroyed isn't the end of the game. In a multi-player game especially, you always have a chance. \r\n\n\n103) wil: Move Y2 Wil Fortcourage\n\n104) zoltar: Sacrifice G3 Wtf\nBuild G3 Zoltar\nBuild R2 Kolorvar\nBuild R3 Heworth\n\n105) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Wil\nBuild Y2 Fortcourage\n\n106) zoltar: Sacrifice R2 Heworth\nAttack Y1N Heworth\nAttack Y1N Kolorvar\n\n107) wil: Sacrifice Y2 Wil\nDiscover Y2 Fortcourage B1 B1\nDiscover G2 Clifton B1 B2\n\n108) zoltar: Sacrifice Y3 Zoltar\nMove G3 Zoltar B1\nMove Y3 Heworth B2\nMove Y1 Kolorvar Zoltar\n\n109) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Fortcourage\nBuild B2 Whynot\n\n110) zoltar: Sacrifice R2 Kolorvar\nAttack Y2E B1\nAttack G2E B2\n\n111) wil: Attack R1E Greenpea\n\n112) zoltar: Sacrifice R3 Onepagewars\nAttack Y1N Kolorvar\nAttack R1E Greenpea\nAttack R1N Leonard_daniels\n\twil: love how those peaceful zoltarians speak with forked tongue, takeover and capitalize on others invesstments and star system buildig rather than build their own....nothing but vulture capitalists and parasites....\n\n\twil: how did you take green pea back, whenI had both?\r\n\n\tzoltar: Yes, that doesn't make sense. Looking back, there was some sort of glitch, I think. The game log below says:\r\n\r\nEast's R1 ship was overtaken by East. \r\n\r\nBut it should have said "South's R1 ship". I don't understand it. When I looked at the game, I still saw a R1 of mine in the system. Or maybe my R1 ship has acquired a new secret tech and not reported it. Oh well.\n\twil: Yeah,....i was just completely overpowered....aint like those two little guyss would have made much difference....just prolonged the agony\n\tzoltar: If you'd seen the glitch, I'd have passed so you could redo your move. But yeah, it was prolonging the inevitable. I would have sent a non-red 2-pip ship to that star and then taken them both by sacking an R2 or R3 somewhere else -- as long as I don't let you start building red or blue at small stars, I'm safe and have a pretty easy victory. I made some sacrifices just to make my homeworld maximally safe and minimize counterplay at that point. Leonard could have kept playing, though, and had a chance if I was weakened taking you out. The 3 and 4-p games can be interesting like that: if you're weak you can sit back and try to fortify your position and let the others fight.\n\twil: Yes I thiink i have an interest in 3 player games, not much in four...I don't like the siamese homeworld issue\n\tzoltar: Right. I haven't played a multi-player homeworlds game in years, and I'd forgotten that because there are only 3 distinct star formations, a four-player game forces a conflict between two players. 3 is better, then.\n\nHomeworlds Online (SDG# 23832)\nStarted: 2013.4.23, Ended: 2013.7.15\nParticipants: pgadey (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) pgadey: Homeworld B3 G2 Y3\n\twil: ah ya got it started cool...\n\n3) wil: Build G1 Wil\n\n4) pgadey: Build Y1 Pgadey\n\n5) wil: Build G1 Wil\n\n6) pgadey: Trade Y1 G1 Pgadey\n\n7) wil: Trade G1 Y1 Wil\n\n8) pgadey: Discover G1 Pgadey Y1 Avocado\n\n9) wil: Trade G1 B1 Wil\n\n10) pgadey: Build Y1 Pgadey\n\n11) wil: Build B1 Wil\n\n12) pgadey: Trade Y1 R1 Pgadey\n\n13) wil: Build G1 Wil\n\n14) pgadey: Build R1 Pgadey\n\n15) wil: Trade B1 R1 Wil\n\n16) pgadey: Trade R1 G1 Pgadey\n\n17) wil: Build G2 Wil\n\n18) pgadey: Discover G1 Avocado B3 Pomegranate\n\n19) wil: Discover G2 Wil Y3 Fortcourage\n\n20) pgadey: Build Y1 Pgadey\n\n21) wil: Sacrifice G3 Wil\nBuild G2 Fortcourage\nBuild G3 Fortcourage\nBuild G3 Wil\n\n22) pgadey: Discover G1 Pgadey Y1 Banana\n\n23) wil: Discover G2 Fortcourage B1 Bedrock\n\n24) pgadey: Sacrifice Y3 Pgadey\nMove G1 Banana Pomegranate\nMove G1 Pomegranate Wil\nMove G1 Pomegranate Wil\nCatastrophe Wil G\n\n25) wil: Sacrifice Y1 Wil\nMove G2 Bedrock Pgadey\n\twil: ballsy attack...now do I just counter....or amass an army?\r\n\r\nI guess counter and then amass if I fail...\n\n26) pgadey: Build Y1 Pgadey\n\n27) wil: Trade G2 R2 Pgadey\n\n28) pgadey: Trade Y1 B1 Pgadey\n\n29) wil: Attack B1 Pgadey\n\n30) pgadey: Build R1 Pgadey\n\twil: you lose the game by not having any of your own ships in your homeworld, or by losing the stars of your homeworld. I will continue taking ships in this game.... (unless you have something up your sleeve I don't see!) I would be happy to answer any questions on strategy (even though I am still learning!) My method has been to lose... I think the more you lose the more you learn what works, what doesn't, and what attacks look like as they start to come at ya!\r\n\n\n31) wil: Attack Y1 Pgadey\n\tpgadey: I think you are right, I have essentially lost. This has been an interesting game though. \r\n\r\nI think that this is the kind of game that takes a lot of losses to understand.\n\n32) pgadey: Attack B1 Pgadey\n\twil: yes between catastrophes, attacks and sacrifices a lot of things can happen...this is a great thinking game...total strategy and skill and a lot can happen....keep playing. (I look at the top player, I know he plays live games offline and has played over 200 games online and only lost 35) So plan to lose a dozen games and I guarantee you will win a few prior to making that dozen losses!\n\twil: Right now i just took over your yellow...so you can't move, now to delay you could change the color of one red to green (otherwise I just build a green and cause a catastrophe)...but the end is near .. just today I asked a guy if he was willing let me play rather than resign so I could see what he was going to do with the advantage he has over me...I know he'll beat me in less than ten moves...but I wanna see how he'll do it to learn.\n\twil: I just started playing and am now playing 8 games, monitoring the top games in the ladder challenge...to see what the good guys are doing...\n\n33) wil: Build R2 Pgadey\nCatastrophe Pgadey R\n\tpgadey: Wow! You are really into this one. I dig it! I would happily play some more rounds against you, to learn a bit more about this stuff. I have all the physical stuff to play at home, but never seem to get around to it.\r\n\r\nHow did you find out about this one?\n\twil: It is tough to find folks willing to play...anyone into Chess or Shogi is more likely.... and if you play online it is to your advantage to set up the starfield at home and you can see it better as the representation here leaves a lot to be desired.\r\n\r\nI just found it to be quite the intrigueing game, and with folks only moving every day or two, sometimes you can catch them online and get two or three moves a day....the games are spread out.... seeing all vaieties of attacks come at you though teaches you a lot (that being said, I often make the same mistakes repeatedly...thinking one day I'll see them coming)\r\n\r\nChallenge again, I'd b glad to play.\n\n34) pgadey: Build B2 Pgadey\n\twil: oops!! game is still on..i didn't notice I didn't capture your blue before I catastrophed red...you get reprieve and I have to rebuild everything to get back in again!!\n\tpgadey: Hehehe -- I see that trying to stick it out works sometimes. I was going to build a red then catastrophe to "go out with a bang" but decided to build a blue, pray you wouldn't capture it, then build a red and catastrophe. Turns out -- Everything worked out in my favour.\r\n\r\nRound two!\n\n35) wil: Build G1 Fortcourage\n\twil: this is the amazing nature of the game...one can be dominating and a stupid mistake clears the board and makes a whole new game....now to capitalize on my error whilst I attempt to keep from making another @$@%&*##\n\n36) pgadey: Trade B2 R2 Pgadey\n\n37) wil: Move G3 Fortcourage Wil\n\n38) pgadey: Attack Y1 Pgadey\n\n39) wil: Build G1 Wil\n\n40) pgadey: Build Y1 Pgadey\n\n41) wil: Build B2 Wil\n\n42) pgadey: Trade Y1 G1 Pgadey\n\n43) wil: Trade B2 Y2 Wil\n\n44) pgadey: Discover B1 Pgadey Y1 Asparagus\n\twil: where is you ain't?\n\tpgadey: I completely fell off the internet for a while. Sorry about the timing. \n\n45) wil: Discover B1 Wil G3 G3\n\twil: hope y didn't hurt yourself\n\n46) pgadey: Build G2 Pgadey\n\n47) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\n\n48) pgadey: Move G2 Pgadey Asparagus\n\n49) wil: Discover G3 Wil Y3 Y3\n\n50) pgadey: Build Y2 Pgadey\n\n51) wil: Move Y2 Wil G3\n\n52) pgadey: Sacrifice Y2 Pgadey\nMove G2 Asparagus Fortcourage\nMove B1 Asparagus Fortcourage\n\twil: You done?\n\n53) wil: Sacrifice R1 Wil\nAttack G2 Fortcourage\n\n54) pgadey: Discover G1 Pgadey Y1 Artichoke\n\n55) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 G3\nBuild B2 G3\n\n56) pgadey: Move G1 Artichoke Fortcourage\nCatastrophe Fortcourage Green\n\twil: \n\twil: celebrating still?\n\twil: helllooooooooo\n\n57) wil: Trade B2 R2 G3\n\n58) pgadey: Discover B1 Fortcourage Y1 Papaya\n\n59) wil: Sacrifice Y2 G3\nMove G3 Y3 Papaya\nMove G3 Papaya Pgadey\n\n60) pgadey: Move B1 Papaya Pgadey\n\n61) wil: Sacrifice R2 G3\nAttack R2 Pgadey\nAttack Y1 Pgadey\n\n\tpgadey: Next move you'll sacrifice your red ship and cause me to have no ships in my homeworld. That was a good long game. Thanks for playing. Wanna try again?\r\n\r\n\n\twil: I just set my record and another's for long games....it took him 55 moves to kick my butt (I kept running in circles), but yeah, when I moved in I thought I had my count right...but was afeared I was missing something. Always up for another game....trying to learn this thing! thx...\n\nHomeworlds Online (SDG# 23847)\nStarted: 2013.4.24, Ended: 2013.4.30\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: Homeworld R2 B1 G3\n\n2) ts52: Homeworld R1 B3 G3\n\n3) wil: Build G1 Wil\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build G1 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: Trade G1 R1 Wil\n\n10) ts52: Discover G1 Ts52 B2 Gonzo\n\n11) wil: Build G1 Wil\n\n12) ts52: Build Y1 Ts52\n\n13) wil: Build B1 Wil\n\n14) ts52: Build Y1 Ts52\n\n15) wil: Trade G3 Y3 Wil\n\twil: yeah, major mistake at the beginning eh?\r\n\r\n\n\twil: am I wrong or is it game over already...because I can't move or trade for fuel?\n\n16) ts52: Move Y1 Ts52 Gonzo\n\twil: oh, DOH... I was blinded.... now I can see....I lost a couple seps by trading early and letting you get ahead....behind but not out yet....\n\tts52: it can get rough if you get locked out of one color, but it's recoverable\n\n17) wil: Build Y2 Wil\n\tts52: I don't usually start with red in my homeworld. But I've been experimenting lately.\n\n18) ts52: Build Y2 Gonzo\n\n19) wil: Discover Y2 Wil G3 Fortcourage\n\n20) ts52: Trade Y2 B2 Gonzo\n\n21) wil: Move B1 Wil Fortcourage\n\n22) ts52: Discover B2 Gonzo G3 Oscar\n\n23) wil: Discover B1 Fortcourage G2 Tortuga\n\n24) ts52: Build Y2 Gonzo\n\n25) wil: Build G1 Wil\n\n26) ts52: Build G2 Ts52\n\n27) wil: Build G2 Wil\n\n28) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Oscar\nMove G1 Oscar Wil\nCatastrophe Wil Green\n\n29) wil: Build Y2 Fortcourage\n\twil: b y2 wil\n\n30) ts52: Move G2 Ts52 Gonzo\n\twil: I will eventually see these coming....I hope\n\twil: I will eventually see these coming....I hope\n\n31) wil: Build B2 Tortuga\n\tts52: Yeah, the hardest ones to see coming, I find, are when someone moves two ships to cause the catastrophe.\n\n32) ts52: Build B3 Oscar\n\n33) wil: Sacrifice Y2 Fortcourage\nMove B1 Tortuga Oscar\nMove B2 Tortuga Oscar\nCatastrophe Oscar B\n\n34) ts52: Build Y2 Gonzo\n\n35) wil: Trade R1 G1 Wil\n\n36) ts52: Trade Y2 R2 Gonzo\n\n37) wil: Build Y2 Fortcourage\n\n38) ts52: Move R2 Gonzo Fortcourage\n\n39) wil: Discover Y2 Fortcourage G2 Bedrock\n\n40) ts52: Attack Y2 Fortcourage\n\n41) wil: Build G1 Wil\n\n42) ts52: Build R1 Fortcourage\n\n43) wil: Discover G1 Wil Y3 Tortuga\n\n44) ts52: Sacrifice G2 Gonzo\nBuild Y2 Fortcourage\nBuild Y3 Gonzo\n\twil: there is that two move red catastrophe lurking...\n\n45) wil: B B1 Wil\n\n46) ts52: Build R1 Fortcourage\n\n47) wil: D B1 Wil G3 Dryden\n\n48) ts52: Move R2 Fortcourage Gonzo\n\n49) wil: B B2 Dryden\n\n\n50) ts52: Trade R2 G2 Gonzo\n\n51) wil: B B2 Dryden\n\n52) ts52: Move Y3 Gonzo Dryden\n\n53) wil: Move B1 Wil Dryden\nCatastrophe Dryden B\n\n54) ts52: Build R2 Fortcourage\n\n55) wil: Build G1 Wil\n\n56) ts52: Build G2 Ts52\n\n57) wil: Discover G1 Wil B3 Lastditch\n\twil: just a matter of time eh?\n\tts52: I think so, yeah.\n\n58) ts52: Move R2 Fortcourage Bedrock\n\twil: I was surprised those reds didn't come in a half dozen moves ago....I see them commies at the border again\n\n59) wil: Move Y2 Bedrock Lastditch\n\n60) ts52: Sacrifice G2 Ts52\nBuild R2 Fortcourage\nBuild R3 Bedrock\n\tts52: Half-destroying your homeworld isn't the end, and sometimes it can be done to early\n\twil: yeah...i understand it is best to be prepared with the second wave prior to sending in the first.\n\n61) wil: Build G2 Wil\n\twil: and I see i'll just get bullied into submission....\n\n62) ts52: Sacrifice Y3 Dryden\nMove R1 Fortcourage Wil\nMove R1 Fortcourage Wil\nMove R2 Fortcourage Wil\nCatastrophe Wil Red\n\tts52: that seems a bit harsh, but yeah, that's the general idea.\n\n63) wil: Build Y3 Lastditch\n\n64) ts52: Sacrifice Y1 Gonzo\nMove R3 Bedrock Wil\n\n65) wil: Build G3 Lastditch\n\n66) ts52: Sacrifice R2 Bedrock\nAttack Y3 Wil\nAttack G2 Wil\n\twil: hmmmm....still learning, know I am just getting trounced, but changing that ship to red would have slowed things again yeah?\n\n\tts52: Thanks for the game. I'd be happy to play more, anytime. You can make the challenge 'unrated' too, I think. If you'd like.\n\nHomeworlds Online (SDG# 23857)\nVariants: "Hard time"\nStarted: 2013.4.25, Ended: 2013.6.20\nParticipants: TwoShort (S), dlwillson (N)\nWinner: TwoShort\n\n1) dlwillson: Homeworld B3 R1 G3\n\n2) TwoShort: Homeworld B1 Y3 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) TwoShort: Build G1 Twoshort\n\tdlwillson: Small universe?\n\tTwoShort: I said I'd play Goldilocks next time we played :)\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) TwoShort: Trade G1 B1 Twoshort\n\tdlwillson: I should've remembered. :-)\n\n7) dlwillson: B B2 Dlwillson\n\n8) TwoShort: Build B2 Twoshort\n\n9) dlwillson: Trade B2 Y2 Dlwillson\n\n10) TwoShort: Discover B1 Twoshort G2 Grogar\n\n11) dlwillson: B B2 Dlwillson\n\n12) TwoShort: Build B2 Grogar\n\n13) dlwillson: Trade B2 R2 Dlwillson\n\n14) TwoShort: Trade B2 R2 Twoshort\n\n15) dlwillson: Build B2 Dlwillson\n\tTwoShort: Are you still periodically organizing Homeworlds (and/or other pyramid game) tournaments at cons in Denver? Or more relevantly, do you expect to be doing so at some point in the future?\n\tdlwillson: Depends. Why do you ask?\n\n16) TwoShort: Trade B2 Y2 Grogar\n\tTwoShort: If I could compete in a Homeworlds tournament in Denver in the space of a day and evening (like the Saturday of a con), sometime in the near (or probably far) future, I would.\n\n17) dlwillson: M B2 Dlwillson Grogar\n\n18) TwoShort: Discover Y2 Grogar B3 Bluestar\n\tdlwillson: Let me chat with Tripp and see what I can come up with.\n\n19) dlwillson: T B2 R2 Grogar\n\n20) TwoShort: Build G1 Twoshort\n\n21) dlwillson: Attack B1 Grogar\n\n22) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n23) dlwillson: B B2 Grogar\n\n24) TwoShort: Build R1 Twoshort\n\n25) dlwillson: Build B2 Dlwillson\n\tdlwillson: The next Denver Gamers convention starts August 29th. If you and Tripp will be the organizers, I'll help. Like, I can put you in touch with Jarrod Abel, who coordinates board games.\n\n26) TwoShort: Move R2 Twoshort Yolonda\n\n27) dlwillson: Discover B2 Dlwillson G2 Forest\n\n28) TwoShort: Discover R2 Yolonda B3 Bonanza\n\n29) dlwillson: B B2 Forest\n\n30) TwoShort: Build G1 Twoshort\n\n31) dlwillson: Trade B2 G2 Grogar\n\tdlwillson: My son Evan would do artwork, like signs and posters.\n\n32) TwoShort: Sacrifice G3 Twoshort\nBuild G1 Yolonda\nBuild G3 Yolonda\nBuild G3 Twoshort\n\n\nHomeworlds Online (SDG# 23887)\nStarted: 2013.5.1, Ended: 2013.5.15\nParticipants: heavytanhat (S), rdb (N)\nWinner: heavytanhat\n\n1) rdb: Homeworld R1 G3 B3\n\n2) heavytanhat: Homeworld R2 B3 G3\n\n3) rdb: Build B1 Rdb\n\n4) heavytanhat: Build G1 Heavytanhat\n\n5) rdb: Trade B1 Y1 Rdb\n\n6) heavytanhat: Trade G1 Y1 Heavytanhat\n\n7) rdb: Discover Y1 Rdb R2 Star1\n\n8) heavytanhat: Build G1 Heavytanhat\n\n9) rdb: Build B1 Rdb\n\n10) heavytanhat: Discover G1 Heavytanhat Y1 Heavystar\n\n11) rdb: Discover Y1 Star1 G1 Star2\n\n12) heavytanhat: Build Y2 Heavytanhat\n\n\nHomeworlds Online (SDG# 23701)\nVariants: "Hard time"\nStarted: 2013.5.1, Ended: 2013.5.9\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y1 G3 Dlwillson\n\n2) wil: Homeworld R2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) wil: Trade G1 B1 Wil\n\n7) dlwillson: B B2 Dlwillson\n\n8) wil: Build B2 Wil\n\n\twil: hope everything is ok..... I look forward to playing again, this is not the way for one to end...\n\tdlwillson: Oh, for... Dammit.\n\twil: absof/nlutely agree..... you just swamped and missed it? Start another one whenever you have time.\n\nHomeworlds Online (SDG# 23884)\nStarted: 2013.5.1, Ended: 2013.5.8\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) ts52: Homeworld B2 R3 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\twil: I read somewhere where someone was trying to clean up this board...so the ships and stars aligned more like we would in physical play....any idea what ever happenned to that? (I have zero code knowledge, but would dream of dragging pieces from bank to board on a tablet)\n\tts52: I hadn't heard anything about that. Yeah, being able to drag and drop playing this on a tablet would be amazing.\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build G1 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: Trade G1 Y1 Wil\n\n10) ts52: Discover G1 Ts52 R1 Elmo\n\n11) wil: Build G1 Wil\n\n12) ts52: Move Y1 Ts52 Elmo\n\n13) wil: Discover G1 Wil Y3 Fortcourage\n\n14) ts52: Build G1 Ts52\n\n15) wil: Build G2 Wil\n\n16) ts52: Build G2 Ts52\n\n17) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Fortcourage\nBuild G3 Wil\n\n18) ts52: Trade G2 Y2 Ts52\n\tts52: well played\n\n19) wil: Trade G2 R2 Wil\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\n\n21) wil: Discover G1 Fortcourage Y2 Tortuga\n\n22) ts52: Trade G2 B2 Ts52\n\n23) wil: Sacrifice G3 Wil\nBuild G2 Tortuga\nBuild G3 Wil\nBuild R1 Wil\n\n24) ts52: Move B2 Ts52 Elmo\n\n25) wil: Discover G1 Tortuga Y3 Dryden\n\n26) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Elmo\nBuild B2 Elmo\n\n27) wil: Move B1 Wil Dryden\n\n28) ts52: Trade B2 R2 Elmo\n\n29) wil: Move R2 Wil Dryden\n\n30) ts52: Discover R2 Elmo Y3 Bigbird\n\n31) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Dryden\nBuild R3 Dryden\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Bigbird\nBuild Y1 Elmo\n\n33) wil: Build Y2 Wil\n\n34) ts52: Move B2 Elmo Bigbird\n\n35) wil: Move R3 Dryden Elmo\n\twil: choices...options.....I'm still learning the fallout/reprecussions of actions.\n\n36) ts52: Move G2 Elmo Bigbird\n\n37) wil: Sacrifice R2 Dryden\nAttack Y1 Elmo\nAttack Y1 Elmo\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Elmo\nBuild B3 Bigbird\n\n39) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Dryden\nBuild B3 Dryden\n\n40) ts52: Sacrifice Y2 Ts52\nMove B2 Elmo Dryden\nMove B1 Elmo Dryden\nCatastrophe Dryden Blue\n\n41) wil: Sacrifice G3 Fortcourage\nBuild G3 Dryden\nBuild Y2 Elmo\nBuild Y3 Wil\n\n42) ts52: Move R3 Bigbird Tortuga\n\n43) wil: Sacrifice Y2 Elmo\nDiscover G2 Tortuga B1 Fortcourage\nMove G1 Dryden Fortcourage\n\n44) ts52: Move R3 Tortuga Fortcourage\n\n45) wil: Sacrifice Y2 Wil\nMove G2 Fortcourage Ts52\nMove G1 Fortcourage Ts52\nCatastrophe Ts52 G\n\n\twil: thx for the game... the learning curve on this thing is awfully interesting.... ready for another when you are.\r\n\n\tts52: D'oh. Should've seen that one coming. Well played. Always happy to play another.\n\twil: You guys have been teaching me the pitfalls of having only one, even just two colors in your homeworld....yeah, I think you were blinded by your march forward blowing up stars with that red ship...funny thing is, i had two games were I was working toward the exact same thing....the other fellow just changed his homeworld to yellow on me...\n\nHomeworlds Online (SDG# 23811)\nVariants: "Hard time"\nStarted: 2013.5.1, Ended: 2013.5.15\nParticipants: wil (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: Once more into the breach... dear friend\r\n\n\n2) wil: Homeworld R3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: Build G1 Wil\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) wil: Trade G1 Y1 Wil\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) wil: Build G1 Wil\n\n9) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n10) wil: B Y1 Wil\n\twil: When is someone going to make this drag and drop app for tablets? \n\tSilentTitan: I don't know ... maybe you should do it? good practice on writing tablet apps\n\n11) SilentTitan: Build Y2 Silenttitan\n\twil: I know absolutely no code...but you are correct...if I would like to learn that would be one helluva way to start! I could make an investment in my education just as you just did in transportation!\n\n12) wil: Build Y2 Wil\n\n13) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\tSilentTitan: Coding easy to learn. \n\n14) wil: Discover Y2 Wil G2 Fortcourage\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Soul\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n16) wil: Discover G1 Wil G2 Tortuga\n\n17) SilentTitan: Discover Y2 Silenttitan G3 Sole\n\n18) wil: Move Y1 Wil Tortuga\n\twil: helluva move cornering the rest of the fuel reserves in the universe....I sure hope I retain some of this abuse to inflict it on others someday.\n\n19) SilentTitan: Sacrifice G1 Sol\nBuild Y3 Sole\n\tSilentTitan: well.... I do unto you as TooShort and dlwillson have done unto me.\n\n20) wil: Build G1 Wil\n\twil: \n\twil: I absolutely appreciate the lessons...\n\n21) SilentTitan: Trade Y2 B2 Soul\n\twil: investment paid off.....I am in soooo much trouble\n\n22) wil: Build Y2 Wil\n\n23) SilentTitan: Sacrifice B2 Soul\nTrade Y2 B2 Sole\nTrade Y3 G3 Silenttitan\n\n24) wil: Trade Y1 B1 Wil\n\n25) SilentTitan: Build B1 Sole\n\n26) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G2 Tortuga\nBuild G3 Wil\n\n27) SilentTitan: Trade B2 R2 Sole\n\n28) wil: Move B1 Wil Fortcourage\n\n29) SilentTitan: Sacrifice Y3 Sole\nMove G3 Silenttitan Sole\nMove G3 Sole Tortuga\nMove G3 Tortuga Wil\nCatastrophe Wil Green\n\n30) wil: Build B2 Fortcourage\n\n31) SilentTitan: Trade Y3 G3 Silenttitan\n\n32) wil: Discover G1 Tortuga Y3 Dryden\n\n33) SilentTitan: Build G1 Silenttitan\n\n34) wil: Build G1 Dryden\n\n35) SilentTitan: Trade G1 Y1 Silenttitan\n\n36) wil: Build G1 Dryden\n\n37) SilentTitan: Sacrifice Y1 Soul\nMove R2 Sole Fortcourage\n\n38) wil: Sacrifice Y2 Fortcourage\nMove G1 Dryden Silenttitan\nMove G1 Dryden Silenttitan\n\n39) SilentTitan: Trade G3 Y3 Silenttitan\n\n40) wil: Sacrifice B2 Fortcourage\nTrade G1 Y1 Silenttitan\nTrade G2 Y2 Tortuga\n\n41) SilentTitan: Trade Y3 R3 Silenttitan\n\n42) wil: Build Y2 Tortuga\n\n43) SilentTitan: Sacrifice R2 Fortcourage\nAttack Y1 Silenttitan S\nAttack G1 Silenttitan S\n\twil: dang I should have grown g3s when I had the opportunity....I anticipated your switch...but not what occurred in the bank.... greed....dang overanxious greed...\n\n44) wil: Move Y2 Tortuga Sole\n\n45) SilentTitan: Move Y1 Silenttitan Sole\n\n46) wil: B Y3 Tortuga\n\n47) SilentTitan: Move Y1 Sole Tortuga\nCatastrophe Tortuga Yellow\n\n48) wil: B B2 Fortcourage\n\n49) SilentTitan: Trade B1 Y1 Sole\n\n50) wil: Trade Y2 G2 Wil\n\twil: How did i miss that where is the instant replay?\n\n51) SilentTitan: Build Y1 Silenttitan\n\n52) wil: Trade B2 Y2 Fortcourage\n\n53) SilentTitan: Discover Y1 Silenttitan Y3 Sol\n\n54) wil: Build Y2 Fortcourage\n\n55) SilentTitan: Build Y3 Silenttitan\n\n56) wil: Trade Y2 G2 Fortcourage\n\n57) SilentTitan: Move R3 Silenttitan Sole\n\twil: these reboots are interesting..... it is like a whole new game has developed as the star systems get rearranged I'd like to discuss openings and options and play....would you be interested? If interested, would the best place to be on the forum, or maybe a google doc?\n\tSilentTitan: I would be interested in discussing all that. I don't know where the best place to do that would be. I have access to several teamspeak servers and/or can give you a cell number if you'd like to call me. I don't know where your comfort zone lies in contacting someone. \n\n58) wil: Build G1 Dryden\n\n59) SilentTitan: Attack Y2 Sole South\n\twil: my cell is 410/365-6699 but I think I need to see things to figure them out....and would lose a lot in conversation...\n\n60) wil: Build G3 Wil\n\n61) SilentTitan: Move R3 Sole Fortcourage\n\twil: was there any other way out of mate in two moves?\n\tSilentTitan: take back this move and build g1 dryden\r\nnext turn build g3 wil \n\n62) wil: Sacrifice Y2 Fortcourage\nDiscover G2 Fortcourage B3 Carson\nDiscover B1 Fortcourage G3 Bedrock\n\twil: ok, but I thought you'd sac your homeworld Y3 to move r3 into mine??\n\tSilentTitan: ah... I am really glad you saw that ... however the problem with doing that was that you would be able to sac the y2 in fortcourage and send back both the g2 and b2 or better yet send the g2 to wil and the y2 in sole into silenttitan ... now it becomes a race to who can capture faster. I might have won that one... but send both g2 and b1 in fortcourage back to wil and I have a big issue trying to caputre everyone. additionally you start trading ships to red and my remaining battleship is threatened. \n\tSilentTitan: meanwhile my homeworld is left completely undefended ... which is ok... if I know I can win in a turn or two ... but three or four turns out .. that's not turned out well for me in the past\r\n\n\tSilentTitan: hummm... I'm not doing the best job of explaining this .... I sack y3 and move r3 to wil. then you sack y2 in fortcourage and send g2, b1 back to wil. Now I attack and grab one of the 2-pip. you attack and take it back. what then attack again and take it back, convention says I cannot do that. otherwise the game becomes a draw at that point. so I instead sac the g1 in silenttitan and build a r1 .. that doesn't help ..you just use the b1 to change one of the 2-pips to red and catastophe red. hurts you .. but hurts me more ... I have no 2-pip ships. \n\n63) SilentTitan: Sacrifice Y1 Sole\nMove R3 Fortcourage Carson\n\tSilentTitan: so instead I'm going to go the slow route and cost you as many ships as I can until you build the G3 and/or some red for defense. \n\n64) wil: Sacrifice G2 Carson\nBuild B1 Bedrock\nBuild B2 Bedrock\n\twil: these are the kind of alternatives that would be handy... a book would require some kind of overlay to watch it happen... quite interesting scenarios...thanx\r\n\n\n65) SilentTitan: Sacrifice Y2 Sole\nDiscover R3 Carson Y2 Temp\nMove R3 Temp Bedrock\n\n66) wil: Sacrifice B2 Bedrock\nTrade B1 Y1 Bedrock\nTrade G1 B1 Dryden\n\n67) SilentTitan: Attack Y1 Bedrock South\n\n68) wil: Trade B1 G1 Bedrock\n\n69) SilentTitan: Attack G1 Bedrock South\n\n70) wil: Build G2 Dryden\n\n71) SilentTitan: Build Y2 Silenttitan\n\twil: Sorry to drive you so crazy when I should resign, I am just seeing to what trouble one can put one through...how am I doing?\r\n\n\tSilentTitan: you are doing well.. One of the very main points of the game is... "The person who wins is the one who makes the fewest mistakes" Therefore, it is always in ones best interest to hang in as long as possible you never know when the other guy will make a mistake. I told you I won into 2 place by using a trick in the last turn of the game and the other guy fell for it. \n\n72) wil: Discover G1 Dryden Y2 Fortcourage\n\n73) SilentTitan: Discover Y1 Silenttitan G3 Tic\n\n74) wil: Trade G2 Y2 Dryden\n\n75) SilentTitan: Build G2 Silenttitan\n\n76) wil:\nBuild G2 Fortcourage\n\n77) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Bedrock Fortcourage\nMove G1 Fortcourage Wil\n\n78) wil: Trade G2 B2 Wil\n\n79) SilentTitan: Sacrifice G2 Silenttitan\nBuild G2 Wil\nBuild G2 Wil\nCatastrophe Wil Green\n\n80) wil: Move G1 Fortcourage Wil\n\n81) SilentTitan: Build Y2 Bedrock\n\n\twil: ah, I see, I somehow didn't read the second one...makes sense....I had nowhere to turn then, capturing would have allowed you to move one in, which I saw, but didn't se this. I love learning, now if I can only remember!\n\twil: ah, I see, I somehow didn't read the second one...makes sense....I had nowhere to turn then, capturing would have allowed you to move one in, which I saw, but didn't se this. I love learning, now if I can only remember!\n\twil: can't build a three, and get it home, you sac y2 and swoop in, thx forthe lesson!\n\tSilentTitan: You do better with each game we play ... so obviously you are remembering parts of it... tying it all together is something I'm still working on. This game is deceptively difficult... it seems straight forward but there are hiccups in the thinking at various points. Also notice this one went over 40 turns. very seldom does that happen except where both players are committed to running it down to the end to see what happens. Either way we were 20+ maybe even 30+ when you decided to see what would happen. Anything over 20 means you are getting better at playing ... anything over 30 means you're a danger to everyone on the ladder. \n\twil: Danger, Danger Wil Robinson.... It is quite the game and I look forward to learning more and absolutely appreciate your assistance to date.\n\nHomeworlds Online (SDG# 23888)\nVariants: "Hard time"\nStarted: 2013.5.5, Ended: 2013.5.15\nParticipants: wil (S), Argel (N)\nWinner: wil\n\n1) Argel: Homeworld Y3 G3 R3 *\n\n2) wil: Homeworld R3 B2 G3\n\n3) Argel: Build R1 Argel\n\twil: Howdy Angel, I'm fairly new to the game and trying to play a lot to learn....have you played much??\n\twil: as discussed on the other game....unless you are testing some new idears...we could start over...in general two sizes in your binary homeworld star provides better protection (two systems to get from one homeworld to the other) also in your homeworld you'd like red because you want to be able to defend, green because you need it to grow, and blue because you need it to change colors...yellow is for moving, and is important...but can be aquired through growing and changing (as can red....but blue and green are required as far as I know, not in your star, but being present) \r\n\n\n4) wil: Build G1 Wil\n\n5) Argel: Discover R1 Argel G2 Galata\n\n6) wil: Build G1 Wil\n\n\twil: Your are going to need trade capability in your homeworld...you'll need to eventually build to a blue star, get both transportation (yellow) and blue there and get it back to your homeworld....just my thoughts...\n\twil: Argel, I've been on a rapid path of learning this game in the past few months. I am open to playing more and discussing what we can learn from one another about its complexities.\n\nHomeworlds Online (SDG# 23889)\nVariants: "Unrated, Hard time"\nStarted: 2013.5.5, Ended: 2013.5.25\nParticipants: Argel (S), zoltar (N), wil (E)\nWinner: zoltar\n\n1) zoltar: Homeworld B2 R1 G3\n\n2) wil: Homeworld R3 B1 G3\n\n3) Argel: Homeworld R3 B3 R3 *\n\n4) zoltar: Build G1 Zoltar\n\tzoltar: Angel, have you played before? You really don't want to have stars the same size, as it puts your homeworld directly next to mine in distance. Also, you need to have green to grow ships. You're only first move here would be to exchange your R3 for a G3. Perhaps you want to undo your move and try "H R3 B2 G3" which would be a much better stating move. \n\tzoltar: Do you want to alter your starting position while you still can, or should I just make a move?\n\n5) wil: Build G1 Wil\n\n6) Argel: Trade R3 G3 Argel\n\n7) zoltar: Trade G1 Y1 Zoltar\n\n8) wil: Trade G1 Y1 Wil\n\n9) Argel: Build G1 Argel\n\n10) zoltar: Build Y1 Zoltar\n\n11) wil: Build G1 Wil\n\n12) Argel: Trade G1 Y1 Argel\n\twil: I just now noticed it is aRgel not Angel...my bad... I'd like to discuss openings and options and play....would you be interested? If interested, would the best place to be on the forum, or maybe a google doc?\n\n13) zoltar: Trade Y1 R1 Zoltar\n\n14) wil: Trade G1 R1 Wil\n\n15) Argel: Build G1 Argel\n\n16) zoltar: Build G1 Zoltar\n\n17) wil: Build G1 Wil\n\n18) Argel: Trade G1 R1 Argel\n\n19) zoltar: Trade G1 B1 Zoltar\n\n20) wil: Trade G1 B1 Wil\n\n21) wil: Build R2 Wil\n\twil: first time in a three way playin it safe...\n\tzoltar: Weak moves aren't necessarily saver. You could have bought an R2 then flipped it to blue next move, and that would have made your homeworld much 'safer'. \n\twil: nice tip! thx, I didn't see that. Yes growng bigger pieces when you can, gotta keep that in mind. (currently refraining from backing up so to cement the lesson)\r\n\n\twil: nice tip! thx, I didn't see that. Yes growng bigger pieces when you can, gotta keep that in mind. (currently refraining from backing up so to cement the lesson)\r\n\n\n22) zoltar: Build R2 Zoltar\n\twil: This zero/time is up feature when you've only been gone a couple of hours needs fixing....when someone is way behind and finally takes action, the next player is suddenly behind...\r\n\r\nSo what do we do now, play a two player game with lots of pieces? You've got an easy shot waltzing in and aquiring a g3 for free...\n\n23) wil: Discover R2 Wil G2 Wtf\n\tzoltar: Yeah, if it didn't have the 'hard time' option, then now we could choose to make Argel resign or terminate the game. up to you if you want to continue, but yeah, it gives me an advantage.\n\n24) zoltar: Discover R1 Zoltar G3 Greenslime\n\twil: I like losing...being new it is the best way for me to learn. If you don't mind, I'd like to play it out and see how you take advantage of the advantage and how I can counter...\n\n25) wil: Build R2 Wil\n\n26) zoltar: Build R2 Zoltar\n\n27) wil: Build R3 Wtf\n\n28) zoltar: Build R3 Greenslime\n\n29) wil: Sacrifice Y1 Wil\nMove R2 Wtf Argel\n\n30) zoltar: Trade R2 Y2 Zoltar\n\n31) wil: Trade R2 Y2 Argel\n\n32) zoltar: Sacrifice Y2 Zoltar\nMove R1 Greenslime Wtf\nMove R1 Wtf Wil\nCatastrophe Wil R\n\n33) wil: Attack R1S Argel\n\n34) zoltar: Move B1 Zoltar Greenslime\n\twil: hate that, forgot that altogther, great play! \n\n35) wil: Trade R1 G1 Argel\n\n36) zoltar: Build B1 Greenslime\n\tzoltar: Yeah, any time an opponent constructs either a Y2 or Y3, you've always got to ask yourself, "is there any weakness a double (or triple if the case) move can exploit, either by focusing on hyperloading one color in one location, or making two simultaneous threads in two different locations.\n\n37) wil: Build R1 Wtf\n\n38) zoltar: Trade R3 Y3 Greenslime\n\twil: nice hint thanx much!\r\n\n\n39) wil: Sacrifice Y2 Argel\nMove R3 Wtf Argel\nMove B1 Wil Wtf\n\n40) zoltar: Build B2 Greenslime\n\n\tzoltar: Leaving yourself completely void everywhere in the yellow market when your opponent can make serious threats is also something to avoid....\n\tzoltar: The Rebel Base is now in range of the Death Star. Prepare to fire the Doomsday Machine! Stand by....\n\twil: yes I see... I thought I had one yellow to move in when you created your third blue...one step behind....day late....dollar short...and homeworld about to be anihilated...thanx for the lessons... \n\nHomeworlds Online (SDG# 23891)\nVariants: "Hard time"\nStarted: 2013.5.6, Ended: 2013.5.17\nParticipants: dlwillson (S), goblin981 (N)\nWinner: dlwillson\n\n1) goblin981: H G3 B1 R3\n\n2) dlwillson: Homeworld B3 Y1 G3 Dlwillson\n\n3) goblin981: B R1 Goblin981\n\n4) dlwillson: B G1 Dlwillson\n\n5) goblin981: T R1 Y1 Goblin981\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) goblin981: B Y2k Goblin981\n\n8) dlwillson: T Y1 R1 Dlwillson\n\n\nHomeworlds Online (SDG# 23892)\nVariants: "Hard time"\nStarted: 2013.5.6, Ended: 2013.5.23\nParticipants: SilentTitan (S), Subhan64 (N)\nWinner: SilentTitan\n\n1) Subhan64: Homeworld Y3 B1 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) Subhan64: Build G1 Subhan64\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Subhan64: Discover G1 Subhan64 B2 Smurfcity\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Subhan64: Trade G1 Y1 Smurfcity\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Subhan64: Build G1 Subhan64\n\n10) SilentTitan: Discover G1 Silenttitan B3 Sol\n\n11) Subhan64: Trade G1 R1 Subhan64\n\n12) SilentTitan: Trade G1 Y1 Sol\n\n13) Subhan64: Move Y1 Smurfcity Sol\n\n14) SilentTitan: Build Y2 Silenttitan\n\n15) Subhan64: Trade Y1 G1 Sol\n\n16) SilentTitan: Discover Y1 Sol Y1 Sole\n\n17) Subhan64: Discover R1 Subhan64 Y2 Bigbird\n\n18) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n19) Subhan64: Build G1 Subhan64\n\n20) SilentTitan: Build Y2 Silenttitan\n\n21) Subhan64: Move R1 Bigbird Sole\n\n22) SilentTitan: Discover Y1 Sole G2 Tic\n\n23) Subhan64: Move G1 Subhan64 Tic\n\n24) SilentTitan: Discover Y1 Tic B1 Tac\n\n25) Subhan64: Move R1 Sole Soul\n\n26) SilentTitan: Discover Y1 Soul Y1 Toe\n\n27) Subhan64: Build G1 Subhan64\n\n28) SilentTitan: Build G2 Silenttitan\n\n29) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Sol\nBuild G3 Subhan64\nBuild R1 Soul\n\n30) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Toe\nBuild Y3 Tac\nBuild G3 Silenttitan\n\n31) Subhan64: Trade G3 Y3 Subhan64\n\n32) SilentTitan: Trade G2 R2 Silenttitan\n\n33) Subhan64: Sacrifice Y3 Subhan64\nMove R1 Soul Silenttitan\nMove R1 Soul Silenttitan\nMove G1 Tic Subhan64\nCatastrophe Silenttitan Red\n\n34) SilentTitan: Trade G3 R3 Silenttitan\n\n35) Subhan64: Trade G1 R1 Subhan64\n\n36) SilentTitan: Move Y2 Silenttitan Subhan64\n\n37) Subhan64: Sacrifice G2 Sol\nBuild R1 Subhan64\nBuild R1 Subhan64\n\n38) SilentTitan: Sacrifice R3 Silenttitan\nAttack R1 Subhan64 North\nAttack R1 Subhan64 North\nAttack R1 Subhan64 North\n\n\nHomeworlds Online (SDG# 23904)\nVariants: "No undo, Unrated, Hard time"\nStarted: 2013.5.6, Ended: 2013.5.9\nParticipants: Subhan64 (S), Argel (N)\nWinner: Argel\n\n1) Argel: Homeworld B1 G3 R3 *\n\n\nHomeworlds Online (SDG# 23905)\nVariants: "Hard time"\nStarted: 2013.5.6, Ended: 2013.5.13\nParticipants: wil (S), Subhan64 (N)\nWinner: wil\n\n1) Subhan64: Homeworld Y1 B2 G3\n\n2) wil: Homeworld B3 R1 G3\n\n3) Subhan64: Build G1 Subhan64\n\twil: good luck, looking forward to great game!\r\n\n\n4) wil: Build G1 Wil\n\n\tSubhan64: Hmm, I seem to not be getting my turn notifications, sorry :(\n\twil: phooey!! pheel phree to try again, I'd love a game!\n\nHomeworlds Online (SDG# 23917)\nVariants: "Hard time"\nStarted: 2013.5.6, Ended: 2013.5.18\nParticipants: ajo (S), Subhan64 (N)\nWinner: ajo\n\n1) Subhan64: Homeworld Y2 B3 G3\n\tajo: It's been a looong time since I played Homeworlds! I might be a tiny bit rusty. Let's see.\n\n2) ajo: Homeworld B3 R1 G3\n\tSubhan64: me too, but let's have at it!\r\n\n\n3) Subhan64: Build G1 Subhan64\n\n4) ajo: Build G1 Ajo\n\n5) Subhan64: Trade G3 Y3 Subhan64\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) Subhan64: Build Y1 Subhan64\n\n8) ajo: Build Y1 Ajo\n\n9) Subhan64: Discover Y1 Subhan64 B1 Smurfberry\n\n10) ajo: Discover Y1 Ajo G2 Alpha\n\n11) Subhan64: Discover Y1 Smurfberry G2 Kermit\n\n12) ajo: Build G1 Ajo\n\n13) Subhan64: Trade Y3 G3 Subhan64\n\tajo: This is where it starts getting tricky, not having the physical pieces set up in front of me...\n\n14) ajo: Trade G1 B1 Ajo\n\n15) Subhan64: Trade G1 B1 Subhan64\n\n16) ajo: Move B1 Ajo Alpha\n\n17) Subhan64: Build G1 Subhan64\n\n18) ajo: Build G1 Ajo\n\n19) Subhan64: Discover G3 Subhan64 R1 Elmos_world\n\n20) ajo: Move G1 Ajo Alpha\n\n21) Subhan64: Build G2 Elmos_world\n\n22) ajo: Build G3 Ajo\n\n23) Subhan64: Build G3 Subhan64\n\n24) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y1 Alpha\nBuild Y2 Alpha\n\n25) Subhan64: Sacrifice G3 Elmos_world\nBuild G3 Elmos_world\nBuild Y2 Kermit\nBuild B1 Subhan64\n\n26) ajo: Sacrifice Y2 Alpha\nMove B1 Alpha Elmos_world\nMove B1 Elmos_world Subhan64\nCatastrophe Subhan64 Blue\n\tajo: I think that was a mistake! :)\n\n\tSubhan64: apparently so :( Thanks for the game!\n\nHomeworlds Online (SDG# 23927)\nStarted: 2013.5.8, Ended: 2013.5.20\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 G2 R3 *\n\n3) ts52: Build G1 Ts52\n\n4) wil: Build R1 Wil\n\twil: bein stupid testing limits and did it wrong!\n\n5) ts52: Trade G1 R1 Ts52\n\tts52: no worries\n\n6) wil: Discover R1 Wil B1 Fortcourage\n\n7) ts52: Build G1 Ts52\n\n8) wil: Trade R1 G1 Fortcourage\n\n9) ts52: Discover G1 Ts52 B3 Grover\n\n10) wil: Build R1 Wil\n\n11) ts52: Build R1 Ts52\n\n12) wil: Build R2 Wil\n\n13) ts52: Build R2 Ts52\n\n14) wil: Move R2 Wil Fortcourage\n\n15) ts52: Move R2 Ts52 Grover\n\n16) wil: Build R2 Wil\n\n17) ts52: Build R3 Grover\n\n18) wil: Build R3 Fortcourage\n\twil: My faux pas opening sure makes for a wierd game....I'd like to discuss openings and options and play....would you be interested? Would the best place to be on the forum, or maybe a google doc?\n\n19) ts52: Trade R3 Y3 Grover\n\tts52: I don't frequent the forums, but I could. Whichever you prefer. I'm squatront@gmail.com if you want to use google. I know Andy's posted something about opening strategies, but I can't recall where. Might've been in a zine and not online.\n\n20) wil: Discover R2 Wil B1 Tortuga\n\tts52: Check out http://forums.superdupergames.org/viewtopic.php?t=1467\n\n21) ts52: Build R3 Grover\n\n22) wil: Trade R2 G2 Tortuga\n\n23) ts52: Move R3 Grover Tortuga\n\twil: yeah, I started there....I just added there...it seems fairly dead....\n\n24) wil: Discover R1 Wil Y1 Dryden\n\n25) ts52: Build R2 Grover\n\tts52: Ah right, now I see that you posted there.\n\twil: well that looks like game over eh? many major mistakes...can't move, you can move two guys in...\n\n26) wil: Trade R2 B2 Fortcourage\n\tts52: Yeah, it shouldn't be long now.\n\n27) ts52: Attack G2 Tortuga\n\n28) wil: Trade G1 Y1 Fortcourage\n\n29) ts52: Build R2 Tortuga\n\n30) wil: Move B2 Fortcourage Wil\n\n31) ts52: Move R2 Grover Dryden\n\n32) wil: Trade R3 Y3 Wil\n\n33) ts52: Attack R1 Dryden\n\n34) wil: Build B1 Wil\n\n35) ts52: Build Y2 Grover\n\n36) wil: Build B2 Wil\n\n37) ts52: Build R3 Grover\n\n38) wil: Discover B2 Wil G1 Bedrock\n\n39) ts52: Move Y2 Grover Tortuga\n\n40) wil: Build B3 Bedrock\n\n41) ts52: Build Y2 Tortuga\n\n42) wil: Trade B2 Y2 Bedrock\n\n43) ts52: Build G1 Ts52\n\n44) wil: Trade Y3 B3 Wil\n\n45) ts52: Sacrifice G3 Ts52\nBuild Y3 Grover\nBuild G2 Tortuga\nBuild G3 Ts52\n\twil: he's lining them up....\n\n46) wil: Build B2 Bedrock\n\n47) ts52: Move Y3 Grover Bedrock\n\tts52: I probably should've traded for that last b2, but we'll see.\n\n48) wil: Sacrifice Y2 Bedrock\nDiscover B3 Bedrock G3 Whynot\nMove B2 Bedrock Whynot\n\twil: you've got the forces to clean my clock thrice\n\n49) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Bedrock\nBuild G3 Grover\n\n50) wil: Pass\n\twil: I'm overpowered and running around like insects in a RAID commercial....\n\n51) ts52: Sacrifice Y3 Bedrock\nMove Y2 Bedrock Wil\nMove Y2 Tortuga Wil\nMove Y2 Tortuga Wil\nCatastrophe Wil Yellow\n\n52) wil: Sacrifice B2 Wil\nTrade B3 Y3 Wil\nTrade B3 Y3 Whynot\n\n53) ts52: Sacrifice Y3 Grover\nMove G1 Grover Wil\nMove G2 Tortuga Wil\nMove G2 Tortuga Wil\nCatastrophe Wil Green\n\n\twil: Yeah....I didn't see that either....I knew I was cornered...but missed how bad...while the end feels inevitable...I continue to play rope a dope (not knowing if you are old enough for the reference)\r\n\n\tts52: I think I'm old enough that I should know the reference, and I know the phrase, but I'm don't actually know off hand where exactly it's from.\r\nThanks for the game!\n\twil: Butt kicked...thanx!! More stuff to watch out for. If you are up for another give me a challenge and I'll gladly play, get whipped and learn some more. Hopefully one day i'll be able to give you a proper run for your money....\r\n\r\nRope a Dope was what Muhamed Ali did in boxing, stood on the ropes getting pummelled watching for overconfidence, tiring, a mistake, an opening to capitalize on....of course with him...he had two things I don't...skill and intent..he did it with intent...I did it because I was not skillful and boxed into a corner...\n\nHomeworlds Online (SDG# 23911)\nVariants: "Hard time"\nStarted: 2013.5.9, Ended: 2013.5.27\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3 Dlwillson\n\twil: Looking forward to playing one....all the way out...\n\n2) wil: Homeworld R2 B1 G3\n\tdlwillson: Well, we'll see if I can manage it.\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\twil: you got no clue how bad I wanted to try h B2 G2 Y3 .... \n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\twil: I still think we should autostart with a small ship of our whatever big ship since that is a given...unless I guess someone may have some need to change colors first thing...\n\tdlwillson: Wouldn't it have been g2 y2 r3?\r\nAnd yes, the first move is usually "I build a small green."\n\n6) wil: Trade G1 Y1 Wil\n\twil: no I was thinking I could out build Ys and then fly into catastrophe... I just wanna machine like War Games total nuclear distruction to run all the options and watch it go with varrioius openings..\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) wil: Build Y2 Wil\n\n9) dlwillson: Discover Y1 Dlwillson G2 Field\n\twil: you interested in taking part in creating booklet/pdf on homeworlds strategies?\n\tdlwillson: Not I. I barely have time to play! Check with Twoshort and Silenttitan, though.\n\n10) wil: Discover Y1 Wil G3 Fortcourage\n\n11) dlwillson: Trade Y2 R2 Dlwillson\n\tdlwillson: grabbed the wrong piece... :-)\n\n12) wil: Build Y2 Fortcourage\n\n13) dlwillson: B Y2 Field\n\n14) wil: Build Y3 Wil\n\n15) dlwillson: D Y1 Field Y3 Golden\n\n16) wil: Trade Y2 R2 Wil\n\n17) dlwillson: D Y1 Golden G2 Forest\n\n18) wil: Move R2 Wil Fortcourage\n\n19) dlwillson: B G1 Dlwillson\n\n20) wil: Discover Y2 Fortcourage B2 Dryden\n\n21) dlwillson: B Y2 Forest\n\n22) wil: Build Y3 Fortcourage\n\n23) dlwillson: B Y3 Field\n\n24) wil: Build G1 Wil\n\n25) dlwillson: Discover Y3 Field B3 Sky\n\n26) wil: M R2 Fortcourage Forest\n\n27) dlwillson: S R2 Dlwillson\nA R2 Forest\nPass\n\n28) wil: Trade Y2 G2 Dryden\n\n29) dlwillson: T G1 R1 Dlwillson\n\n30) wil: Sacrifice G3 Wil\nBuild G1 Dryden\nBuild G1 Dryden\nBuild G3 Wil\n\n31) dlwillson: M Y2 Forest Sky\n\n32) wil: Sacrifice Y3 Fortcourage\nMove G2 Dryden Dlwillson\nMove G1 Dryden Dlwillson\nMove G1 Dryden Dlwillson\nCatastrophe Dlwillson G\n\n33) dlwillson: T Y3 G3 Sky\n\n34) wil: Trade G3 R3 Wil\n\n35) dlwillson: S G3 Sky\nB Y2 Forest\nB Y3 Field\nB Y3 Sky\n\n36) wil: Sacrifice Y3 Wil\nMove R3 Wil Fortcourage\nMove R3 Fortcourage Field\nMove R3 Field Dlwillson\n\n37) dlwillson: Sacrifice Y2 Forest\nMove Y3 Field Dlwillson\nMove Y3 Sky Wil\n\n38) wil: Attack Y3 Dlwillson\n\n39) dlwillson: Attack G1 Wil\n\twil: I think this works...still figuring out how all thse things play out...\n\twil: If it doesn't it is game over as I am in a world of hurt...\n\twil: If it doesn't it is game over as I am in a world of hurt...\n\n\tdlwillson: Yes. Now, I'm sure you miscounted!\n\twil: yeah....I did...I was one step behind when I thought I was one step ahead... so I just made one more sucide mission as I prepared for my demise...\n\tdlwillson: I'm up for another, if you like.\n\twil: great, thanx\n\nHomeworlds Online (SDG# 23932)\nVariants: "Hard time"\nStarted: 2013.5.11, Ended: 2013.5.18\nParticipants: wil (S), goblin981 (N)\nWinner: wil\n\n1) goblin981: H G3 B2 Y3\n\n2) wil: Homeworld B2 R1 G3\n\n\twil: Just joined and am learning the game and look forward to seeing how I do here...\n\twil: resigned? What up?\n\nHomeworlds Online (SDG# 23931)\nVariants: "No undo, Unrated, Hard time"\nStarted: 2013.5.11, Ended: 2013.5.18\nParticipants: Cakemaster77 (S), Argel (N)\nWinner: Cakemaster77\n\n1) Argel: Homeworld B3 G2 R3 *\n\tCakemaster77: hi\r\n\n\n2) Cakemaster77: Homeworld B2 G1 Y3\n\tCakemaster77: B1, G2, Y3\n\tCakemaster77: homeworld B1, G2, Y3\n\n\tCakemaster77: I'm new here\n\nHomeworlds Online (SDG# 23918)\nVariants: "Hard time"\nStarted: 2013.5.11, Ended: 2013.5.14\nParticipants: SilentTitan (S), Kane (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 23933)\nVariants: "Hard time"\nStarted: 2013.5.11, Ended: 2013.5.14\nParticipants: dlwillson (S), Kane (N)\nWinner: dlwillson\n\n\nHomeworlds Online (SDG# 23986)\nVariants: "Hard time"\nStarted: 2013.5.19, Ended: 2013.6.22\nParticipants: zoltar (S), MagicJohn (N)\nWinner: zoltar\n\n1) MagicJohn: Homeworld Y1 B2 G3\n\tzoltar: gl!\n\tMagicJohn: Probably need it..... Saw your rating... Couldn't count that high until I was 28......\n\n2) zoltar: Homeworld R3 B2 G3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) zoltar: Build G1 Zoltar\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) MagicJohn: Build Y2 Magicjohn\n\n8) zoltar: Build Y2 Zoltar\n\n9) MagicJohn: Discover Y2 Magicjohn G3 Herbert\n\n10) zoltar: Discover Y1 Zoltar G1 Greenpea\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) zoltar: Build G1 Zoltar\n\n13) MagicJohn: Trade Y1 R1 Magicjohn\n\n14) zoltar: Trade G1 R1 Zoltar\n\n15) MagicJohn: Trade G1 B1 Magicjohn\n\n16) zoltar: Build Y1 Zoltar\n\n17) MagicJohn: Move Y2 Herbert Greenpea\n\n18) zoltar: Move Y1 Zoltar Greenpea\n\n19) MagicJohn: Build Y2 Greenpea\nCatastrophe Greenpea Yellow\n\n20) zoltar: Build Y1 Zoltar\n\n21) MagicJohn: Build G1 Magicjohn\n\n22) zoltar: Trade Y1 B1 Zoltar\n\n23) MagicJohn: Build G1 Magicjohn\n\n24) zoltar: Discover B1 Zoltar G1 Greenpea\n\n25) MagicJohn: Discover G1 Magicjohn Y3 Bruton\n\n26) zoltar: Build G2 Zoltar\n\n27) MagicJohn: Trade G3 Y3 Magicjohn\n\n28) zoltar: Discover G2 Zoltar B1 Blueberry\n\n\tMagicJohn: Ewww, Sorry about that. Our daughter came in from out of state and time got away from me......\n\tzoltar: No problem. We can play a game sometime without the 'hard time' restriction that ladder games impose, when you have more time.\n\nHomeworlds Online (SDG# 23980)\nVariants: "No undo, Unrated, Hard time"\nStarted: 2013.5.20, Ended: 2013.6.13\nParticipants: Argel (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Argel: Homeworld B3 G2 R3 *\n\n3) wil: Build G1 Wil\n\n4) Argel: Build R1 Argel\n\n5) wil: Discover G1 Wil Y3 C1\n\n6) Argel: Trade R1 Y1 Argel\n\n7) wil: Build G1 Wil\n\n8) Argel: Build Y1 Argel\n\n9) wil: Build G1 Wil\n\n10) Argel: Discover Y1 Argel B1 Atenas\n\n11) wil: Trade G1 Y1 Wil\n\n12) Argel: Trade Y1 G1 Atenas\n\n13) wil: Build G2 C1\n\n14) Argel: Build G2 Atenas\n\n15) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\n\n16) Argel: Trade G2 Y2 Atenas\n\n17) wil: Discover G3 Wil Y3 C2\n\n18) Argel: Discover Y2 Atenas G3 Rhodes\n\n19) wil: Move Y1 Wil C1\n\n20) Argel: Build G2 Atenas\n\n21) wil: Trade G3 B3 Wil\n\n22) Argel: Build G3 Atenas\n\n23) wil: Trade Y1 R1 Wil\n\n24) Argel: Trade G3 B3 Atenas\n\n25) wil: Build G3 Wil\n\n26) Argel: Trade G1 Y1 Atenas\n\n27) wil: Discover Y1 C1 G1 D1\n\n28) Argel: Trade B3 Y3 Atenas\n\n29) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 D1\nBuild R1 Wil\n\n\nHomeworlds Online (SDG# 23940)\nVariants: "Hard time"\nStarted: 2013.5.20, Ended: 2013.6.12\nParticipants: wil (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tSilentTitan: Welcome back\r\n\n\n2) wil: Homeworld Y3 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\twil: thx..still experimenting and learning...(as you can see with this opening)\n\n4) wil: B G1 Wil\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) wil: T G1 Y1 Wil\n\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) wil: B G1 Wil\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) wil: Build Y2 Wil\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) wil: Discover Y1 Wil G1 Fortcourage\n\n13) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n14) wil: Build G2 Wil\n\n15) SilentTitan: Discover Y1 Silenttitan B3 Sole\n\n16) wil: Trade G1 R1 Wil\n\n17) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Sole\nBuild Y3 Silenttitan\n\n18) wil: Build R1 Wil\n\twil: I like that move!\n\twil: Well not for me....but in theory...\n\n19) SilentTitan: Trade Y2 B2 Silenttitan\n\n20) wil: Build Y2 Fortcourage\n\n21) SilentTitan: Trade Y3 G3 Sole\n\n22) wil: Discover Y1 Fortcourage Y3 Dryden\n\n23) SilentTitan: Move Y1 Sol Fortcourage\n\n24) wil: Sacrifice R1 Wil\nAttack Y1 Fortcourage\n\n25) SilentTitan: Sacrifice B2 Silenttitan\nTrade G3 R3 Sole\nTrade Y3 G3 Silenttitan\n\n26) wil: Trade Y2 B2 Wil\n\n27) SilentTitan: Build Y2 Sol\n\n28) wil: Sacrifice Y2 Fortcourage\nMove G2 Wil Fortcourage\nDiscover G2 Fortcourage Y3 Ynot\n\n29) SilentTitan: Move Y2 Sol Silenttitan\n\n30) wil: Build Y2 Fortcourage\n\n31) SilentTitan: Move G1 Silenttitan Sole\n\n32) wil: Build G1 Wil\n\n33) SilentTitan: Build G2 Silenttitan\n\n34) wil: Sacrifice G3 Wil\nBuild G2 Ynot\nBuild G3 Wil\nBuild B1 Wil\n\n35) SilentTitan: Trade G2 R2 Silenttitan\n\n36) wil: Move B2 Wil Fortcourage\n\n37) SilentTitan: Move R3 Sole Fortcourage\n\n38) wil: Sacrifice B2 Fortcourage\nTrade Y1 R1 Fortcourage\nTrade Y2 R2 Fortcourage\n\n39) SilentTitan: Sacrifice Y2 Sol\nMove R3 Fortcourage Ynot\nMove R2 Silenttitan Sole\n\n40) wil: Discover G2 Ynot Y2 Bedrock\n\n41) SilentTitan: Attack G2 Ynot South\n\n42) wil: Sacrifice G3 Wil\nBuild G2 Bedrock\nBuild G3 Bedrock\nBuild G3 Wil\n\n43) SilentTitan: Move G1 Sole Bedrock\nCatastrophe Bedrock Green\n\n44) wil: Build B1 Wil\n\n45) SilentTitan: Build G1 Silenttitan\n\n46) wil: Discover G1 Wil Y1 Phooey\n\n47) SilentTitan: Build G2 Silenttitan\n\n48) wil: Move G1 Phooey Dryden\n\n49) SilentTitan: Move G2 Silenttitan Sole\n\n50) wil: Build G2 Wil\n\n51) SilentTitan: Trade G2 B2 Sole\n\n52) wil: Move B1 Wil Fortcourage\n\n53) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Ynot\nBuild G3 Ynot\nBuild G3 Silenttitan\n\n54) wil: Trade R2 Y2 Fortcourage\n\n55) SilentTitan: Discover G3 Ynot Y1 Tic\n\n56) wil: Build Y2 Fortcourage\n\n57) SilentTitan: Sacrifice Y1 Sole\nDiscover G2 Ynot Y1 Tac\n\n58) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B1 Fortcourage\nBuild R2 Fortcourage\n\n59) SilentTitan: Move R3 Ynot Tic\n\n60) wil: Move G2 Wil Fortcourage\n\n61) SilentTitan: Sacrifice Y2 Silenttitan\nMove G1 Silenttitan Ynot\nMove G2 Ynot Fortcourage\n\n62) wil: Sacrifice Y2 Fortcourage\nMove G2 Fortcourage Dryden\nMove G1 Dryden Silenttitan\n\n63) SilentTitan: Sacrifice R3 Tic\nAttack Y2 Fortcourage South\nAttack R2 Fortcourage South\nAttack R1 Fortcourage South\n\n64) wil: Build B3 Fortcourage\n\n65) SilentTitan: Sacrifice Y2 Fortcourage\nMove B2 Sole Fortcourage\nMove G3 Tic Dryden\nCatastrophe Fortcourage Blue\n\n66) wil: Move G2 Dryden Silenttitan\n\n67) SilentTitan: Sacrifice R2 Sole\nAttack G1 Silenttitan South\nAttack G2 Silenttitan South\n\twil: didn't go the way I expected....don't know why I didn't think you'd use the big gun....\n\n68) wil: Build R2 Wil\n\tSilentTitan: yeah... you pack enough ships in a system and it becomes a huge target.\n\n69) SilentTitan: Trade G2 B2 Silenttitan\n\twil: yeah....I'd like to think I 'm learning by making mistakes...but I think I'm just making mistakes...\n\n70) wil: Build G2 Wil\n\tSilentTitan: well either way you've keep me hopping again this game\n\n71) SilentTitan: Sacrifice R1 Fortcourage\nAttack Y1 Dryden South\n\twil: hopping? I am struggling to stay alive and you are gaining armament everywhere....26 to 12 by pip count....and I blew my attack all together...can't get there from here...it's been a matter of time for a while..\n\n72) wil: Discover R2 Wil B1 Phoeey\n\n73) SilentTitan: Sacrifice B2 Silenttitan\nTrade G1 Y1 Silenttitan\nTrade G2 Y2 Fortcourage\n\n74) wil: Move G2 Wil Phoeey\n\n75) SilentTitan: Build Y2 Silenttitan\n\n76) wil: Trade R2 Y2 Phoeey\n\n77) SilentTitan: Sacrifice G1 Ynot\nBuild Y3 Fortcourage\n\n78) wil: Build G1 Wil\n\n79) SilentTitan: Discover G3 Dryden B1 Toe\n\n80) wil: Trade G3 R3 Wil\n\twil: always nice to have someone else use your investments...\n\twil: always nice to have someone else use your investments...\n\n81) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y3 Fortcourage Wil\nMove G3 Toe Wil\n\n82) wil: Attack G3 Wil\n\n83) SilentTitan: Sacrifice R2 Fortcourage\nAttack R3 Wil South\nAttack G3 Wil South\n\n\tSilentTitan: Thanks for playing. made it out to 43 turns again\n\nHomeworlds Online (SDG# 23919)\nVariants: "Hard time"\nStarted: 2013.5.20, Ended: 2013.5.29\nParticipants: Subhan64 (S), wil (N)\nWinner: Subhan64\n\n1) wil: H Y2 B1 G3\n\n2) Subhan64: Homeworld Y3 B1 G3\n\twil: Thx 4 da game!\n\n3) wil: B G1 Wil\n\n4) Subhan64: Build G1 Subhan64\n\n5) wil: Discover G1 Wil Y3 D1\n\n6) Subhan64: Trade G1 Y1 Subhan64\n\n7) wil: Build G1 Wil\n\n8) Subhan64: Build Y1 Subhan64\n\n9) wil: Trade G1 Y1 Wil\n\n10) Subhan64: Trade Y1 G1 Subhan64\n\n11) wil: Build G1 Wil\n\n12) Subhan64: Trade G1 R1 Subhan64\n\n13) wil: Trade G1 R1 Wil\n\n14) Subhan64: Build G1 Subhan64\n\n15) wil: Build G1 Wil\n\n16) Subhan64: Discover G1 Subhan64 Y2 Big_bird\n\n17) wil: Discover G1 Wil Y3 Ynot\n\n18) Subhan64: Build G2 Big_bird\n\n19) wil: Build G2 Wil\n\n20) Subhan64: Discover G2 Big_bird G3 Lrrr\n\n21) wil: Sacrifice G3 Wil\nBuild G2 Ynot\nBuild G3 Wil\nBuild R1 Wil\n\n22) Subhan64: Sacrifice G2 Lrrr\nBuild G2 Big_bird\nBuild G3 Subhan64\n\n23) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Wil\nBuild Y1 Wil\n\n24) Subhan64: Sacrifice G3 Subhan64\nBuild G3 Subhan64\nBuild Y2 Subhan64\nBuild R2 Subhan64\n\n25) wil: Move R2 Wil D1\n\n26) Subhan64: Move R2 Subhan64 Big_bird\n\n27) wil: Move R1 Wil Ynot\n\n\n28) Subhan64: Trade Y1 B1 Subhan64\n\n29) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Ynot\nBuild R3 D1\n\n30) Subhan64: Sacrifice G3 Subhan64\nBuild G3 Subhan64\nBuild R3 Subhan64\nBuild R3 Big_bird\n\n31) wil: Discover R3 D1 B2 Ohwell\n\n32) Subhan64: Sacrifice B1 Subhan64\nTrade G1 Y1 Big_bird\n\n33) wil: Build G1 D1\n\n34) Subhan64: Sacrifice Y2 Subhan64\nMove Y1 Big_bird D1\nMove Y1 D1 Wil\nCatastrophe Wil Yellow\n\n35) wil: Trade R1 Y1 Wil\n\n36) Subhan64: Move R3 Big_bird D1\n\n37) wil: Move G1 D1 Ohwell\n\n\n\n38) Subhan64: Trade G3 B3 Subhan64\n\n39) wil: Build R1 D1\n\n40) Subhan64: Sacrifice B3 Subhan64\nTrade R3 B3 D1\nTrade R2 B2 Big_bird\nTrade G2 B2 Big_bird\n\n41) wil: Move R2 D1 Big_bird\n\n42) Subhan64: Sacrifice R1 Subhan64\nAttack R2 Big_bird\n\n43) wil: Sacrifice G3 Wil\nBuild G2 Ohwell\nBuild G3 Ynot\nBuild G3 Wil\n\twil: still learning how that works....'nother lesson is always good!\n\n44) Subhan64: Trade R2 Y2 Big_bird\n\n45) wil: Sacrifice Y1 Wil\nMove R3 Ohwell D1\n\n46) Subhan64: Sacrifice Y2 Big_bird\nMove B3 D1 Wil\nMove B2 Big_bird Wil\n\n47) wil: Trade G3 B3 Wil\n\n\n\n\n\n48) Subhan64: Move B2 Big_bird Wil\nCatastrophe Wil Blue\n\tSubhan64: good game, thanks!\n\n\twil: fun game to learn...thanx for the lessons\n\twil: thanx!!\n\nHomeworlds Online (SDG# 23982)\nVariants: "Hard time"\nStarted: 2013.5.21, Ended: 2013.5.25\nParticipants: Subhan64 (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld Y3 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) Subhan64: Build G1 Subhan64\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Subhan64: Build G1 Subhan64\n\n7) goulo: Build Y1 Goulo\n\n8) Subhan64: Discover G1 Subhan64 G1 Kermie\n\n9) goulo: Build G2 Goulo\n\n10) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Kermie\nBuild G2 Subhan64\nBuild G3 Subhan64\n\n11) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild G3 Goulo\nBuild Y1 Goulo\n\n12) Subhan64: Trade G2 Y2 Subhan64\n\n13) goulo: Discover G3 Goulo B3 Mirtelego\n\n14) Subhan64: Sacrifice Y2 Subhan64\nDiscover G2 Kermie G2 Scooter\nDiscover G3 Subhan64 R1 Elmo\n\n15) goulo: Move Y1 Goulo Mirtelego\n\n16) Subhan64: Sacrifice G2 Scooter\nBuild G2 Subhan64\nBuild G2 Subhan64\n\n17) goulo: Sacrifice G3 Goulo\nBuild G3 Goulo\nBuild Y2 Goulo\nBuild Y2 Mirtelego\n\n18) Subhan64: Trade G2 Y2 Subhan64\n\n19) goulo: Sacrifice G3 Goulo\nBuild G2 Mirtelego\nBuild G3 Goulo\nBuild Y3 Mirtelego\n\n20) Subhan64: Sacrifice G2 Subhan64\nBuild G2 Elmo\nBuild Y3 Subhan64\n\n21) goulo: Sacrifice Y2 Goulo\nMove Y1 Mirtelego Elmo\nMove Y1 Elmo Subhan64\nCatastrophe Subhan64 Y\n\n22) Subhan64: Sacrifice G3 Elmo\nBuild G3 Subhan64\nPass\nPass\n\n23) goulo: Sacrifice Y2 Mirtelego\nMove G2 Mirtelego Subhan64\nMove G3 Mirtelego Subhan64\nCatastrophe Subhan64 G\n\n\tgoulo: Thanks for the game!\n\nHomeworlds Online (SDG# 23985)\nVariants: "Hard time"\nStarted: 2013.5.21, Ended: 2013.7.31\nParticipants: ajo (S), agentofchaos (N)\nWinner: ajo\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) ajo: Homeworld R1 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) ajo: Build G1 Ajo\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) agentofchaos: Discover Y1 Agentofchaos G3 Ghostar\n\n8) ajo: Build G1 Ajo\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) ajo: Build G2 Ajo\n\n11) agentofchaos: Trade G1 R1 Agentofchaos\n\n12) ajo: Discover G2 Ajo B3 Central\n\n13) agentofchaos: Build R1 Agentofchaos\n\n14) ajo: Build Y1 Ajo\n\n15) agentofchaos: Trade R1 Y1 Agentofchaos\n\n16) ajo: Move Y1 Ajo Central\n\n17) agentofchaos: Build Y2 Ghostar\n\n18) ajo: Build Y2 Central\n\n19) agentofchaos: Build Y2 Agentofchaos\n\n20) ajo: Trade Y1 R1 Central\n\n21) agentofchaos: Move R1 Agentofchaos Ghostar\n\n22) ajo: Build R2 Central\n\n23) agentofchaos: Build R2 Ghostar\n\n24) ajo: Trade R1 B1 Central\n\n25) agentofchaos: Trade Y1 B1 Agentofchaos\n\n26) ajo: Build Y1 Central\n\n27) agentofchaos: Move B1 Agentofchaos Ghostar\n\n28) ajo: Discover B1 Central G2 Alpha\n\n29) agentofchaos: Build B2 Ghostar\n\n30) ajo: Build B2 Alpha\n\n31) agentofchaos: Discover B2 Ghostar G2 Firencola\n\n32) ajo: Sacrifice Y1 Central\nDiscover B1 Alpha G3 Beta\n\tajo: build b2 Alpha\n\n33) agentofchaos: Build B3 Firencola\n\tajo: Whoops, wrong box. :)\n\tagentofchaos: I've done that a few times :-)\n\n34) ajo: Build B3 Beta\n\n35) agentofchaos: Sacrifice Y2 Ghostar\nMove B3 Firencola Beta\nMove B2 Firencola Beta\nCatastrophe Beta B\n\n36) ajo: Build R1 Central\n\n37) agentofchaos: Build B1 Ghostar\n\n38) ajo: Build B2 Alpha\n\n39) agentofchaos: Build B3 Ghostar\n\n40) ajo: Sacrifice Y2 Central\nMove R1 Central Alpha\nMove B2 Alpha Ghostar\nCatastrophe Ghostar Blue\n\n41) agentofchaos: Build R3 Ghostar\n\n42) ajo: Sacrifice G2 Central\nBuild R3 Central\nBuild R3 Alpha\n\n43) agentofchaos: Build Y1 Agentofchaos\n\tajo: I feel better now. :)\n\n44) ajo: Sacrifice Y3 Ajo\nMove R1 Alpha Ghostar\nMove B2 Alpha Ghostar\nMove R3 Central Ajo\nCatastrophe Ghostar Red\n\tagentofchaos: Not sure how I feel though!\n\n45) agentofchaos: Discover Y1 Ghostar G2 Hadeon\n\n46) ajo: Build R1 Ajo\n\n47) agentofchaos: Trade Y2 R2 Agentofchaos\n\n48) ajo: Trade R3 Y3 Ajo\n\n49) agentofchaos: Discover R2 Agentofchaos Y3 Ergovore\n\n50) ajo: Move G1 Ajo Central\n\n51) agentofchaos: Build Y1 Agentofchaos\n\n52) ajo: Build Y2 Ajo\n\n53) agentofchaos: Build Y2 Hadeon\n\n54) ajo: Build B1 Ghostar\n\n55) agentofchaos: Build G1 Agentofchaos\n\n56) ajo: Build G2 Central\n\n57) agentofchaos: Move G1 Agentofchaos Ergovore\n\n58) ajo: Build G3 Ajo\n\n59) agentofchaos: Build Y2 Hadeon\n\n60) ajo: Move Y2 Ajo Central\n\n61) agentofchaos: Discover Y2 Hadeon Y3 Agrajag\n\n62) ajo: Trade G1 B1 Central\n\n63) agentofchaos: Build G1 Ergovore\n\n64) ajo: Move G3 Ajo Ergovore\n\n\tagentofchaos: well played\n\nHomeworlds Online (SDG# 23994)\nVariants: "Hard time"\nStarted: 2013.5.21, Ended: 2013.5.24\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\tts52: Let's go again. Have a good game!\n\twil: gonna try\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Discover G1 Wil Y3 C1\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: Build G1 Wil\n\twil: uh oh\n\n8) ts52: Discover B1 Ts52 G2 Kermit\n\n9) wil: Build G1 Wil\n\n10) ts52: Build B2 Kermit\n\n11) wil: Discover G1 Wil B3 Gottadoit\n\twil: ah phooey, miss moved, but I'll still get there...\n\twil: ah phooey, miss moved, but I'll still get there...\n\n12) ts52: Trade B2 Y2 Kermit\n\twil: crap that miss move may have missed me... the first grow should have been on C1 then I would have got there....dang..\n\n13) wil: Build G2 Gottadoit\n\tts52: Hmmm, this one is going to be interesting.\n\n14) ts52: Discover B1 Kermit G3 Robin\n\n15) wil: Trade G1 Y1 Gottadoit\n\n16) ts52: Build B2 Robin\n\n17) wil: Sacrifice G3 Wil\nBuild G1 Gottadoit\nBuild G2 C1\nBuild G3 Wil\n\twil: I thought we were in a blue/green race... that I was losing, but I guess winning the blues was as dangerous as losing the greens? it is interesting watching the eb and flow \n\n18) ts52: Trade B2 Y2 Robin\n\twil: now I see the blue man group preparing for attack...\n\tts52: Yeah, loosing the greens probably hurts me more. Oh well, it's fun to try different things...\n\n19) wil: Build Y1 Gottadoit\n\n20) ts52: Build B2 Robin\n\twil: i have to eventually give you a green to get into blues myself..otherwise it looks like you will simply over power me with the larger pyramid sizes..\n\n21) wil: Discover G2 Gottadoit R2 Ynot\n\tts52: Not having a factory is really going to slow me down though. Maybe I should've given you the large green in order to have my own factory....\n\n22) ts52: Build B2 Robin\n\twil: yeah...so i hold off slowly growing while you slowly grow I just don't know....i think I should allow you the factory just so I can get into blue..\n\n23) wil: Move Y1 Gottadoit Ynot\n\n24) ts52: Move B2 Robin Kermit\n\n25) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Ynot\nBuild Y3 Gottadoit\n\n26) ts52: Build B2 Kermit\n\n27) wil: Discover G1 C1 R2 Ineedblues\n\n28) ts52: Move B2 Robin Ineedblues\n\tts52: sneaky...\n\n29) wil: Move Y3 Gottadoit Ineedblues\n\n30) ts52: Build B3 Robin\n\twil: i know you like to trap...but I don't see it yet.. i say IneedBlues and then you offe one whilst calling me sneaky...i smell a rat but can't find it (but am very looking forward to learning as I get bit!!)\n\tts52: Well crap, I didn't think of you coming in with your large yellow. :(\n\n31) wil: Sacrifice G2 C1\nBuild G2 Ynot\nBuild Y3 Gottadoit\n\n32) ts52: Move B3 Robin Ynot\n\twil: I'm still concerned....these things seem to come outta the blue...\n\n33) wil: Sacrifice Y3 Gottadoit\nMove G2 Ynot Ts52\nMove G2 Ynot Ts52\nMove G1 Ineedblues Ts52\nCatastrophe Ts52 G\n\twil: I was absolutely certain you had something going that I wasn't seeing!! Thank you for the game.\n\tts52: Dammit! Well played. I was watching for that a few moves ago, and then missed it anyway. Again?\n\twil: Of course I'd like to play again... learning the nuance here is incredible...\r\n\r\n\r\nI thought you were gonna change your g3 last minute....or had something up your sleeve I couldn't see. As I see it, I capitalized on the fact that you were singular in your homeworld, used the disguise of an investment (look at this big yellow ship I just got) to cover my placement of the green (rather than obviously move one forward) and that moving of the yellow ship in... I was watching your blues but thought it was to my advantage for you to attack me as our homeworlds would be connected...I almost changed myg3 to a b3 just to entice you.... I am learning....thanx so much\n\tts52: It's funny, because the reason I moved into your red systems was to try to capture your greens to keep you from doing what you did. I just missed the fact that you'd got up to 3 greens to kill me. Oops.\n\n\nHomeworlds Online (SDG# 23989)\nStarted: 2013.5.24, Ended: 2013.5.26\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: Build B2 Wil\n\n8) ts52: Discover B1 Ts52 G1 Robin\n\n9) wil: Trade B1 Y1 Wil\n\n10) ts52: Build G1 Ts52\n\n11) wil: Discover B2 Wil G3 Foist\n\n12) ts52: Build B1 Robin\n\n13) wil: Build B2 Foist\n\n14) ts52: Trade B1 Y1 Robin\n\n15) wil: Build G1 Wil\n\n16) ts52: Build B1 Robin\n\n17) wil: Build G2 Wil\n\n18) ts52: Discover B1 Robin G2 Kermit\n\n19) wil: Discover G2 Wil Y3 Ynot\n\n20) ts52: Build B3 Robin\n\n21) wil: Trade B2 R2 Foist\n\n22) ts52: Trade B3 R3 Robin\n\n23) wil: Sacrifice G3 Wil\nBuild G2 Ynot\nBuild G3 Wil\nBuild R1 Foist\n\n24) ts52: Move R3 Robin Ynot\n\n25) wil: Discover G2 Ynot Y1 Lastditch\n\n26) ts52: Attack G2 Ynot\n\n27) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild G3 Wil\nBuild R1 Foist\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Robin\nBuild Y3 Robin\n\n29) wil: Sacrifice Y2 Wil\nMove Y1 Wil Ynot\nMove Y1 Ynot Robin\nCatastrophe Robin Y\n\n30) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B3 Robin\n\n31) wil: Trade B2 Y2 Foist\n\n32) ts52: Trade B3 Y3 Robin\n\n33) wil: Move G1 Wil Foist\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Robin\nBuild B3 Kermit\n\n35) wil: Discover G1 Foist R1 I'mintrouble\n\n36) ts52: Move B2 Robin Ynot\n\twil: I should have done my last few moves at home...I saw where I went wrong both times and you had already moved and I could not undo!! \n\n37) wil: Sacrifice Y2 Foist\nMove G1 I'mintrouble Ts52\nMove G2 Lastditch Ts52\nCatastrophe Ts52 G\n\n\tts52: Damn. I did it again... Well played sir.\n\twil: I couldn't quite track the moves....I made two mistakes that I thought would have assured something but was actually thinking you had me by a step in this race.\n\tts52: Yep, I got greedy and let my guard down. Another?\n\twil: gladly....I just miscounted exactly has you and let your brother in law clock me...\n\tts52: My brother in law?\n\twil: oh I don't recall.. I thought a bunch of you were related somehow....dl wilson cleand my clock...\n\nHomeworlds Online (SDG# 24020)\nVariants: "Hard time"\nStarted: 2013.5.26, Ended: 2013.6.9\nParticipants: goulo (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) goulo: Homeworld R1 B2 G3\n\n3) Aristos: Build Y1 Aristos\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\n5) Aristos: Discover Y1 Aristos Y1 Glimmer\n\n6) goulo: Build G1 Goulo\n\n7) Aristos: Build Y1 Aristos\n\n8) goulo: Trade G3 Y3 Goulo\n\n9) Aristos: Trade Y1 G1 Aristos\n\n10) goulo: Build G2 Goulo\n\n11) Aristos: Build G2 Aristos\n\n12) goulo: Discover G1 Goulo Y3 Citronego\n\n13) Aristos: Move G1 Aristos Glimmer\n\n14) goulo: Build G2 Goulo\n\n15) Aristos: Build G3 Glimmer\n\n16) goulo: Build G3 Citronego\n\n17) Aristos: Move G1 Glimmer Citronego\n\n18) goulo: Discover G1 Goulo B3 Mirtelego\n\n19) Aristos: Sacrifice G2 Aristos\nBuild G2 Citronego\nBuild Y1 Aristos\nCatastrophe Citronego Green\n\n20) goulo: Build Y2 Goulo\n\n21) Aristos: Build Y2 Glimmer\n\n22) goulo: Move Y2 Goulo Mirtelego\n\n23) Aristos: Sacrifice Y2 Glimmer\nDiscover G3 Glimmer Y3 Flash\nDiscover Y1 Glimmer G2 Shine\n\n24) goulo: Build G1 Mirtelego\n\n25) Aristos: Trade Y1 R1 Aristos\n\n26) goulo: Trade G1 R1 Mirtelego\n\n27) Aristos: Build R2 Aristos\n\n28) goulo: Build R2 Mirtelego\n\n29) Aristos: Discover R2 Aristos G1 Flare\n\n30) goulo: Discover R2 Mirtelego Y1 Citroneto\n\n31) Aristos: Move G3 Flash Citroneto\n\n32) goulo: Discover R2 Citroneto Y3 Citronego\n\n33) Aristos: Build Y1 Shine\n\n34) goulo: Build Y2 Mirtelego\n\n35) Aristos: Build Y2 Aristos\n\n36) goulo: Discover G2 Goulo G3 Smeraldego\n\n37) Aristos: Move Y1 Shine Mirtelego\n\n38) goulo: Attack Y1 Mirtelego\n\n39) Aristos: Sacrifice Y2 Aristos\nMove R2 Flare Mirtelego\nMove Y1 Shine Mirtelego\nCatastrophe Mirtelego Yellow\n\n40) goulo: Build R2 Mirtelego\n\n41) Aristos: Sacrifice G3 Citroneto\nBuild R3 Aristos\nBuild R3 Aristos\nBuild R3 Mirtelego\nCatastrophe Mirtelego Red\n\tAristos: There's no official rule (I know -- I've checked with the developers of the game) about take backs of a ship and infinite cycles. If I capture your g1 ship, you can just take it back. We could do that infinitely. What rule would you like to use to resolve that? No take backs? Or no capturing if the ship can just be taken back? \n\n42) goulo: Sacrifice Y3 Goulo\nDiscover G1 Mirtelego Y1 Citroneto\nMove R2 Citronego Citroneto\nMove R2 Citroneto Aristos\nCatastrophe Aristos R\n\tAristos: My earlier question turns out not to apply... I decided to go with a different strategy. \n\tgoulo: The question of loops was discussed a lot also in this thread:\r\nhttp://boardgamegeek.com/thread/578548/repeated-previous-game-state-is-there-a-ko-rule\r\n\r\nit seems there's a loose informal consensus that looping means the game ends in a tie/draw...\n\n43) Aristos: Build Y1 Aristos\n\tgoulo: desperate times call for desperate measures...\n\n44) goulo: Move G1 Citroneto Aristos\n\n45) Aristos: Trade Y3 R3 Aristos\n\n46) goulo: Build G1 Aristos\n\n47) Aristos: Attack G1 Aristos\n\n48) goulo: Sacrifice G2 Smeraldego\nBuild G1 Aristos\nBuild G2 Goulo\nCatastrophe Aristos G\n\n49) Aristos: Trade Y1 G1 Aristos\n\n50) goulo: Build G1 Goulo\n\tAristos: So, I saw this possible position when I built the two Y3 ships... but I have no ability to see beyond it... I have no idea which of us is in the better position going forward. Very unique.\n\n51) Aristos: Build R1 Aristos\n\n52) goulo: Trade G2 Y2 Goulo\n\n53) Aristos: Trade R1 Y1 Aristos\n\n54) goulo: Discover G2 Goulo Y3 Citronego\n\n55) Aristos: Move R3 Aristos Citronego\n\n56) goulo: Sacrifice G2 Citronego\nBuild G1 Goulo\nBuild G2 Goulo\n\n57) Aristos: Build G2 Aristos\n\n58) goulo: Trade G1 R1 Goulo\n\n59) Aristos: Move G1 Aristos Citronego\n\n60) goulo: Trade G1 B1 Goulo\n\tAristos: What is the significance of the names you choose for stars?\n\tgoulo: They are esperanto words (e.g. citronego = big lemon). :)\n\n61) Aristos: Build R1 Citronego\n\n62) goulo: Discover B1 Goulo Y3 Bananego\n\n63) Aristos: Discover R1 Citronego Y1 Twinkle\n\n64) goulo: Build G1 Goulo\n\n65) Aristos: Build R2 Citronego\n\n66) goulo: Sacrifice G2 Goulo\nBuild B1 Bananego\nBuild B1 Bananego\n\n67) Aristos: Move R3 Citronego Goulo\n\tAristos: Aw. Hell. Missed that.\n\n68) goulo: Build R2 Goulo\nCatastrophe Goulo R\n\tAristos: Actually, I think I've still got speed on you by one move. Close. \n\n69) Aristos: Move R2 Citronego Goulo\n\n70) goulo: Move B1 Bananego Aristos\n\n71) Aristos: Attack Y2 Goulo\n\tgoulo: yeah, i misread what would happen if you moved your r3 to goulo. alas! close one indeed! one move too slow for me...\n\n72) goulo: Move B1 Bananego Aristos\n\n73) Aristos: Attack G1 Goulo\n\tgoulo: If you'd captured my g1 instead of y2, and I sacrificed my y2 to send both b1 from bananego to aristos for a blue catastrophe, we'd both lose our homeworlds at the same time, and I'm not sure how SDG resolves that. (I think officially it would be a win for me, but I'm not 100% sure...) :)\n\tAristos: Just because there are 4 in a system does not mean you have to declare a catastrophe. You just wouldn't declare for your home world. \n\tAristos: Good game. Thanks. \n\tgoulo: Yes, but I would have been declaring a catastrophe at YOUR world, not at MY world! I would have lost MY world due to having no ships there if I could have sacrificed my Y2 to move the 2 B1s to your world.\r\n\r\nAnyway, yes, cool game, thanks! :)\n\tAristos: Ah, right. I was thinking backwards. In that case you would lose since you instantly lose if your own homeworld ever has none of your own ships, which would happen before the catastrophe at mine.\n\tgoulo: I notice the current official rules say:\r\n\r\nGame Over: It's OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over. However, you are eliminated from the game if both stars in your Homeworld are destroyed, or if none of the ships at your Homeworld are yours.\r\nhttp://www.looneylabs.com/rules/homeworlds\r\n\r\nso in fact you DON'T instantly lose if your own homeworld has none of your ships.\r\n\r\nFrom curiosity, I posted the question here:\r\nhttp://boardgamegeek.com/thread/991015/what-if-both-homeworlds-destroyed-at-the-end-of-a\n\n\nHomeworlds Online (SDG# 24026)\nVariants: "Hard time"\nStarted: 2013.5.26, Ended: 2013.6.3\nParticipants: Danner (S), ts52 (N)\nWinner: Danner\n\n1) ts52: Homeworld Y2 B1 G3\n\n2) Danner: Homeworld R1 B2 G3\n\n3) ts52: Build G1 Ts52\n\tDanner: Hi! Have a nice game!\n\n4) Danner: Build G1 Danner\n\tts52: Thanks! You too.\n\n5) ts52: Trade G1 R1 Ts52\n\n6) Danner: Trade G1 R1 Danner\n\n7) ts52: Build G1 Ts52\n\n8) Danner: Build R2 Danner\n\n9) ts52: Build R2 Ts52\n\n10) Danner: Trade R2 Y2 Danner\n\n11) ts52: Discover G1 Ts52 B3 Grover\n\n12) Danner: Build R2 Danner\n\n13) ts52: Build G1 Grover\n\n14) Danner: Move R2 Danner Grover\n\n15) ts52: Trade R2 Y2 Ts52\n\n16) Danner: Attack G1N Grover\n\n17) ts52: Build R2 Ts52\n\n18) Danner: Build R2 Grover\n\n19) ts52: Discover R2 Ts52 Y3 Bigbird\n\n20) Danner: Trade R2 B2 Grover\n\n21) ts52: Build G1 Ts52\n\n22) Danner: Attack G1N Grover\n\n23) ts52: Move G1 Ts52 Bigbird\n\n24) Danner: Trade G1 Y1 Grover\n\n25) ts52: Discover Y2 Ts52 G3 Kermit\n\n26) Danner: Build Y1 Danner\n\n27) ts52: Build G1 Bigbird\n\n28) Danner: Build G2 Grover\n\n29) ts52: Build G2 Bigbird\n\n30) Danner: Sacrifice Y2 Danner\nMove G1 Grover Ts52\nMove G1 Ts52 Bigbird\nCatastrophe Bigbird G\n\n31) ts52: Build G1 Ts52\n\n32) Danner: Build Y1 Danner\n\n33) ts52: Trade G1 B1 Ts52\n\n34) Danner: Discover Y1 Danner B3 Alpha\n\n35) ts52: Move B1 Ts52 Kermit\n\n36) Danner: Sacrifice G3 Danner\nBuild Y2 Grover\nBuild Y3 Alpha\nBuild Y3 Danner\n\n37) ts52: Build G1 Ts52\n\n38) Danner: Build G1 Grover\n\n39) ts52: Move G1 Ts52 Bigbird\n\n40) Danner: Move G2 Grover Danner\n\n41) ts52: Build B1 Kermit\n\n42) Danner: Move Y3 Danner Kermit\n\n43) ts52: Sacrifice Y2 Kermit\nDiscover B1 Kermit Y2 Zoe\nMove B1 Kermit Zoe\n\n44) Danner: Sacrifice B2 Grover\nTrade Y3 B3 Kermit\nTrade Y3 G3 Alpha\n\n45) ts52: Move B1 Zoe Bigbird\n\n46) Danner: Sacrifice G2 Danner\nBuild Y3 Danner\nBuild Y3 Alpha\n\n47) ts52: Build B2 Bigbird\n\n48) Danner: Trade Y3 R3 Alpha\n\n49) ts52: Build R2 Bigbird\n\n50) Danner: Sacrifice G3 Alpha\nBuild R3 Alpha\nBuild R3 Grover\nBuild Y3 Alpha\n\n51) ts52: Build G1 Ts52\n\n52) Danner: Sacrifice Y3 Alpha\nMove R3 Alpha Ts52\nMove R3 Alpha Ts52\nMove B3 Kermit Ts52\n\n53) ts52: Sacrifice R2 Bigbird\nAttack R3 Ts52\nAttack R3 Ts52\n\n54) Danner: Sacrifice R3 Grover\nAttack R3N Ts52\nAttack R3N Ts52\nAttack G3N Ts52\n\n55) ts52: Build R2 Ts52\nCatastrophe Ts52 Red\n\n56) Danner: Sacrifice R1 Danner\nAttack G1N Ts52\n\tDanner: Thanks for the game!\n\tts52: Thanks. You threw me with the small universe play. Good game!\n\n\nHomeworlds Online (SDG# 23957)\nVariants: "Hard time"\nStarted: 2013.5.27, Ended: 2013.6.12\nParticipants: dlwillson (S), mnkr (N)\nWinner: dlwillson\n\n1) mnkr: Homeworld G2 B1 Y3\n\n2) dlwillson: H B3 R1 G3\n\tmnkr: Good game. It's my first game at Homeworlds\n\tdlwillson: Have fun! I'm at the top of the Homeworlds ladder until Twoshort beats me again, so I've played a few times. :-)\n\n3) mnkr: Build Y1 Mnkr\n\n4) dlwillson: Build G1 Dlwillson\n\tmnkr: well, I will lose, but I hope learn something.\n\n5) mnkr: Discover Y1 Mnkr G3 Lsd\n\tdlwillson: And with any luck at all, have some fun.\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) mnkr: Build Y1 Mnkr\n\n8) dlwillson: B Y2 Dlwillson\n\n9) mnkr: Build Y2 Lsd\n\n10) dlwillson: D Y1 Dlwillson G2 Forest\n\n11) mnkr: Discover Y1 Mnkr G3 Dna\n\n12) dlwillson: B G1 Dlwillson\n\n13) mnkr: Build Y2 Mnkr\n\n14) dlwillson: S G3 Dlwillson\nB G1 Dlwillson\nB Y3 Dlwillson\nB Y3 Forest\n\n\nHomeworlds Online (SDG# 24033)\nStarted: 2013.5.27, Ended: 2013.5.28\nParticipants: Erik2point0 (S), scotward (N)\nWinner: scotward\n\n1) scotward: Homeworld R3 G1 B3\n\n2) Erik2point0: Homeworld B3 G2 Y3\n\n3) scotward: Build B1 Scotward\n\n4) Erik2point0: Build Y1 Erik2point0\n\n5) scotward: Trade B1 Y1 Scotward\n\n6) Erik2point0: Discover Y1 Erik2point0 B1 Alpha\n\n7) scotward: Build B1 Scotward\n\n8) Erik2point0: Build Y1 Erik2point0\n\n9) scotward: Build Y2 Scotward\n\n10) Erik2point0: Trade Y1 G1 Erik2point0\n\n11) scotward: Discover Y1 Scotward G2 Sirius\n\n12) Erik2point0: Move G1 Erik2point0 Alpha\n\n13) scotward: Trade B1 G1 Scotward\n\n14) Erik2point0: Discover Y1 Alpha B2 Beta\n\n15) scotward: Build B1 Scotward\n\n16) Erik2point0: Build G2 Alpha\n\n17) scotward: Build G3 Scotward\n\n18) Erik2point0: Trade G2 Y2 Alpha\n\n19) scotward: Move G3 Scotward Beta\n\n20) Erik2point0: Build Y1 Erik2point0\n\n21) scotward: Trade G3 R3 Beta\n\n22) Erik2point0: Discover Y1 Beta Y3 Gamma\n\n23) scotward: Sacrifice Y2 Scotward\nMove R3 Beta Alpha\nMove R3 Alpha Erik2point0\n\n24) Erik2point0: Trade Y1 R1 Erik2point0\n\n25) scotward: Attack Y3S Erik2point0\n\n\nHomeworlds Online (SDG# 24001)\nVariants: "Hard time"\nStarted: 2013.5.27, Ended: 2013.5.28\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3 Dlwillson\n\n2) wil: Homeworld Y2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\twil: I look forward to more education\n\n4) wil: Build G1 Wil\n\tdlwillson: From last game: The "gun" rule: When the other "goes for his gun", go for yours. When he gets a red ship, you get one, too.\n\tdlwillson: Also from last game: Each ship is worth roughly the number of it's pips, plus one for each step toward the opponent. So, a big in his orbit is worth 5, approximately.\n\tdlwillson: Also, also from last game: If the opponent will have two or more turns to recover from the kicking you're about to give him before you can give him another kicking, don't overspend on this kicking.\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\twil: oops didn't mean to hit that...\r\n\n\n8) wil: Build Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) wil: Discover Y1 Wil G3 Aaarghhh\n\n11) dlwillson: Build Y3 Field\n\n12) wil: Build Y3 Aaarghhh\n\n13) dlwillson: Discover Y3 Field B3 Sky\n\n14) wil: Discover Y2 Wil Y3 Phooey\n\n15) dlwillson: Trade Y3 R3 Sky\n\n16) wil: Trade G3 R3 Wil\n\n17) dlwillson: Build Y3 Field\n\twil: yiikes\n\n\tdlwillson: I know, right. The last few moves have been bad for you, and I don't see an easy way for you to have gotten out of it. At least now the pressure's off for one move. Maybe two...\n\twil: oh crap it is all over.... so where did it all go wrong... I almost switched out before the Y3s so to put a Y1 in the way\n\twil: embarrassing loss....wow\n\tdlwillson: That'll be another good one to replay. You let me run the bank in my favor.\r\nIncidentally, I didn't see the end coming. Did you resign over the material advantage I had?\n\twil: I had no green, could not do anything anywhere....couldn't change back, you move in with your red and it is over..\n\tdlwillson: You could've moved your Y3 from argh to wil and turned it green, I think. It would've cost you two turns, and I probably might've been able to build the y3 away from you, so it wasn't going well. Feel free to start another, if you like. If you're learning, but you don't feel like you're going to get a win, feel free to start an un-rated game.\n\twil: heck I don't care what my ratings look like...i really appreciate the game and the lessons....it looked like I was gonna be a step behind and my mistakes would be more likely than yours... I don't feel right running in circles wasting time of better players...\n\nHomeworlds Online (SDG# 24040)\nStarted: 2013.5.28, Ended: 2013.5.31\nParticipants: scotward (S), Erik2point0 (N)\nWinner: scotward\n\n1) Erik2point0: Homeworld G3 B1 R3\n\n2) scotward: Homeworld R1 B2 G3\n\n3) Erik2point0: Build R1 Erik2point0\n\n4) scotward: Build G1 Scotward\n\n5) Erik2point0: Trade R1 Y1 Erik2point0\n\n6) scotward: Build G1 Scotward\n\n7) Erik2point0: Build Y1 Erik2point0\n\n8) scotward: Trade G1 Y1 Scotward\n\n9) Erik2point0: Build Y2 Erik2point0\n\n10) scotward: Build Y2 Scotward\n\n11) Erik2point0: Trade Y1 G1 Erik2point0\n\n12) scotward: Discover Y2 Scotward B3 Spica\n\n13) Erik2point0: Discover Y2 Erik2point0 R2 Degoba\n\n14) scotward: Build Y1 Scotward\n\n15) Erik2point0: Build Y2 Erik2point0\n\n16) scotward: Discover Y1 Scotward B3 Cygnus\n\n17) Erik2point0: Trade Y2 G2 Erik2point0\n\n18) scotward: Sacrifice G3 Scotward\nBuild Y2 Cygnus\nBuild Y3 Spica\nBuild Y3 Scotward\n\n19) Erik2point0: Build Y3 Erik2point0\n\n20) scotward: Move Y3 Spica Degoba\n\n21) Erik2point0: Sacrifice Y2 Degoba\nMove G2 Erik2point0 Degoba\nMove G2 Degoba Spica\n\n22) scotward: Trade Y2 R2 Spica\n\n23) Erik2point0: Sacrifice G2 Spica\nBuild R1 Erik2point0\nPass\n\n24) scotward: Sacrifice Y1 Scotward\nMove R2 Spica Degoba\n\n25) Erik2point0: Discover Y3 Erik2point0 B2 Hoth\n\n26) scotward: Trade Y2 R2 Cygnus\n\n27) Erik2point0: Move R1 Erik2point0 Hoth\n\n28) scotward: Discover R2 Cygnus G2 Dune\n\n29) Erik2point0: Move G1 Erik2point0 Hoth\n\n30) scotward: Build R1 Dune\n\n31) Erik2point0: Build R3 Hoth\n\n32) scotward: Build R3 Dune\n\n33) Erik2point0: Move R3 Hoth Cygnus\n\n34) scotward: Sacrifice Y3 Degoba\nMove R2 Degoba Erik2point0\nMove R1 Dune Erik2point0\nMove R2 Dune Erik2point0\nCatastrophe Erik2point0 R\n\n35) Erik2point0: Sacrifice Y3 Hoth\nMove R1 Hoth Cygnus\nMove R3 Cygnus Hoth\nMove R3 Hoth Erik2point0\n\n36) scotward: Move Y1 Cygnus Dune\n\n37) Erik2point0: Trade R1 Y1 Cygnus\n\n38) scotward: Build Y2 Dune\n\n39) Erik2point0: Build Y2 Erik2point0\n\n40) scotward: Move R3 Dune Cygnus\n\n41) Erik2point0: Move Y1 Cygnus Dune\n\n42) scotward: Build Y2 Scotward\n\n43) Erik2point0: Build Y3 Dune\nCatastrophe Dune Y\n\n44) scotward: Move Y2 Scotward Cygnus\n\n45) Erik2point0: Build Y1 Erik2point0\n\n46) scotward: Move R3 Cygnus Hoth\n\n47) Erik2point0: Sacrifice Y1 Erik2point0\nDiscover G1 Hoth B1 Alderan\n\n48) scotward: Build G1 Scotward\n\n49) Erik2point0: Build G2 Alderan\n\n50) scotward: Move G1 Scotward Cygnus\n\n51) Erik2point0: Trade G1 Y1 Alderan\n\n52) scotward: Move Y2 Cygnus Hoth\n\n53) Erik2point0: Discover G2 Alderan Y2 Tatooine\n\n54) scotward: Trade R3 G3 Hoth\n\n55) Erik2point0: Move R3 Erik2point0 Hoth\n\n56) scotward: Move Y2 Hoth Erik2point0\n\n57) Erik2point0: Sacrifice Y1 Erik2point0\nMove G2 Tatooine Erik2point0\n\n58) scotward: Sacrifice Y2 Erik2point0\nMove G3 Hoth Erik2point0\nPass\n\tErik2point0: Aaaaaaaaarg\n\n59) Erik2point0: Move G2 Erik2point0 Hoth\n\n60) scotward: Trade G3 R3 Erik2point0\n\n\nHomeworlds Online (SDG# 24027)\nStarted: 2013.5.28, Ended: 2013.8.20\nParticipants: ts52 (S), mnkr (N)\nWinner: ts52\n\n1) mnkr: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\tmnkr: Good game, I'm new at this game.\n\n3) mnkr: Build G1 Mnkr\n\tts52: Thanks. You have a good game too. Feel free to ask questions.\n\n4) ts52: Build G1 Ts52\n\n5) mnkr: Discover G1 Mnkr Y3 Lsdr\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) mnkr: Build G1 Mnkr\n\n8) ts52: Build G2 Gonzo\n\n9) mnkr: Build G2 Lsdr\n\n10) ts52: Trade G2 Y2 Gonzo\n\n11) mnkr: Discover G1 Lsdr Y2 Dnar\n\n12) ts52: Build G2 Gonzo\n\n13) mnkr: Trade G1 Y1 Mnkr\n\n14) ts52: Build Y2 Gonzo\n\n15) mnkr: Discover Y1 Mnkr G3 Unr\n\n16) ts52: Discover Y2 Gonzo B3 Grover\n\n17) mnkr: Build Y3 Unr\n\n18) ts52: Build Y3 Gonzo\n\n19) mnkr: Discover Y3 Unr B2 Nator\n\n20) ts52: Trade Y3 R3 Gonzo\n\n21) mnkr: Build G1 Dnar\n\n22) ts52: Trade G3 R3 Ts52\n\n23) mnkr: Trade Y3 R3 Nator\n\n24) ts52: Move G1 Gonzo Ts52\n\n25) mnkr: Build Y3 Unr\n\n26) ts52: Build Y3 Gonzo\n\n27) mnkr: Move Y1 Unr Nator\n\n28) ts52: Build R1 Gonzo\n\n29) mnkr: Build G2 Lsdr\n\n30) ts52: Build G3 Gonzo\n\n31) mnkr: Move G2 Lsdr Nator\n\n32) ts52: Move R3 Gonzo Lsdr\n\n33) mnkr: Sacrifice G2 Lsdr\nBuild G2 Nator\nBuild R1 Nator\n\n34) ts52: Move G2 Gonzo Lsdr\n\n35) mnkr: Move R1 Nator Unr\n\tmnkr: very good! i'm almost losing my religion, hehe\n\n36) ts52: Move R3 Lsdr Dnar\n\n37) mnkr: Move R3 Nator Lsdr\n\n38) ts52: Move G2 Lsdr Gonzo\n\n39) mnkr:\nBuild R1 Unr\n\n40) ts52: Attack G1 Dnar\n\n41) mnkr: Move G1 Dnar Lsdr\n\n42) ts52: Move R3 Dnar Grover\n\n43) mnkr: Build R2 Lsdr\n\n44) ts52: Move R3 Grover Nator\n\n45) mnkr: Move R3 Lsdr Gonzo\n\n46) ts52: Attack R3 Gonzo\n\n47) mnkr: Move R2 Lsdr Dnar\n\n48) ts52: Attack G2 Nator\n\n49) mnkr: Sacrifice G1 Lsdr\nBuild Y3 Unr\n\tmnkr: wo I thought that It couldn't be done! my god, \n\n50) ts52: Attack Y1 Nator\n\tts52: Yeah, attacks are tricky to figure out. Red lets you attack any ship that is the same size or smaller than your largest ship in the same system.\n\n\tts52: there's a resignation button under the box where you enter your move\n\tmnkr: thanks\r\ngood game!\n\nHomeworlds Online (SDG# 24034)\nVariants: "Hard time"\nStarted: 2013.5.29, Ended: 2013.6.5\nParticipants: dlwillson (S), Subhan64 (N)\nWinner: dlwillson\n\n1) Subhan64: Homeworld Y1 B2 G3\n\n2) dlwillson: Homeworld B3 R1 G3 Dlwillson\n\n3) Subhan64: Build G1 Subhan64\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Subhan64: Discover G1 Subhan64 Y3 Bigbird\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Subhan64: Build G1 Subhan64\n\n8) dlwillson: Build Y1 Dlwillson\n\n9) Subhan64: Trade G3 Y3 Subhan64\n\n10) dlwillson: B Y2 Dlwillson\n\n11) Subhan64: Build Y2 Subhan64\n\n12) dlwillson: D Y1 Dlwillson B2 Sky\n\n13) Subhan64: Discover G1 Subhan64 Y3 Omicronpersei8\n\n14) dlwillson: S Y2 Dlwillson\nM Y1 Sky Bigbird\nM Y1 Bigbird Subhan64\nCatastrophe Subhan64 Y\n\tSubhan64: gg, thanks!\r\n\n\n\nHomeworlds Online (SDG# 24049)\nVariants: "Unrated, Hard time"\nStarted: 2013.5.29, Ended: 2013.6.19\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: Homeworld B3 R1 G3 Dlwillson\n\n2) wil: Homeworld R2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: Build G1 Dlwillson\n\n8) wil: Build G1 Wil\n\n9) dlwillson: T G1 B1 Dlwillson\n\n10) wil: Trade G1 B1 Wil\n\n11) dlwillson: B B2 Dlwillson\n\n12) wil: Build B2 Wil\n\n13) dlwillson: D B1 Dlwillson G2 Forest\n\n14) wil: Discover B2 Wil Y3 Camp Wilson\n\n15) dlwillson: T B2 Y2 Dlwillson\n\n16) wil: Build G1 Wil\n\n17) dlwillson: B B2 Forest\n\n18) wil: Discover B1 Wil G3 Fortcourage\n\n19) dlwillson: T B2 R2 Forest\n\n20) wil: Build B2 Fortcourage\n\n21) dlwillson: Sacrifice Y1 Dlwillson\nMove R2 Forest Fortcourage\n\n22) wil: Sacrifice Y1 Wil\nDiscover B2 Fortcourage Y2 Wakeup\n\tdlwillson: Gun rule!\n\twil: when someone gets a gun, i gotta getta gun.....crap, I will learn someday....just slow...\n\n23) dlwillson: A B1 Fortcourage\n\n24) wil: Trade B2 R2 Wakeup\n\n25) dlwillson: B B2 Forest\n\n26) wil: Build G1 Wil\n\n27) dlwillson: T B2 G2 Forest\n\n28) wil: Trade G1 Y1 Wil\n\n29) dlwillson: B B2 Forest\n\n30) wil: M G1 Wil Camp\n\n\twil: ah phooey...hope all is alright...\n\nHomeworlds Online (SDG# 24035)\nVariants: "Hard time"\nStarted: 2013.5.31, Ended: 2013.6.7\nParticipants: wil (S), ahzipeanut (N)\nWinner: wil\n\n1) ahzipeanut: Homeworld R3 B1 G3\n\n2) wil: Homeworld Y2 B1 G3\n\n3) ahzipeanut: Build G1 Ahzipeanut\n\n\n\twil: thx for the game, good luck\n\twil: Welcome to SDG...I'm a newbie to the group...and homeworlds but am playng a lot of games and trying to learn...you?\n\n4) wil: Build G1 Wil\n\n\twil: aaargghh... I tried to tell you....\n\nHomeworlds Online (SDG# 24062)\nStarted: 2013.5.31, Ended: 2013.6.6\nParticipants: scotward (S), Erik2point0 (N)\nWinner: Erik2point0\n\n1) Erik2point0: Homeworld G3 B1 R3\n\n2) scotward: Homeworld R3 B2 G3\n\n3) Erik2point0: Build R1 Erik2point0\n\tscotward: did you start with the exact same homeworld?\n\n4) scotward: Build G1 Scotward\n\n5) Erik2point0: Build R1 Erik2point0\n\n6) scotward: Trade G1 Y1 Scotward\n\n7) Erik2point0: Trade R1 Y1 Erik2point0\n\n8) scotward: Build G1 Scotward\n\n9) Erik2point0: Trade R1 G1 Erik2point0\n\n10) scotward: Build Y1 Scotward\n\n11) Erik2point0: Build Y2 Erik2point0\n\n12) scotward: Build Y2 Scotward\n\n13) Erik2point0: Trade Y1 B1 Erik2point0\n\n14) scotward: Trade Y2 B2 Scotward\n\n15) Erik2point0: Build R1 Erik2point0\n\n16) scotward: Trade G1 R1 Scotward\n\n17) Erik2point0: Build G1 Erik2point0\n\n18) scotward: Discover R1 Scotward B1 Shatner\n\n19) Erik2point0: Discover G1 Erik2point0 B2 Rivendell\n\n20) scotward: Build B3 Scotward\n\n21) Erik2point0: Build B3 Erik2point0\n\n22) scotward: Move B3 Scotward Shatner\n\n23) Erik2point0: Trade B3 G3 Erik2point0\n\n24) scotward: Build B3 Scotward\n\n25) Erik2point0: Build B3 Erik2point0\n\n26) scotward: Trade B2 G2 Scotward\n\n27) Erik2point0: Discover B1 Erik2point0 G2 Bree\n\n28) scotward: Trade B3 Y3 Scotward\n\n29) Erik2point0: Move G1 Erik2point0 Bree\n\n30) scotward: Move G2 Scotward Shatner\n\n31) Erik2point0: Build Y1 Erik2point0\n\n32) scotward: Sacrifice Y3 Scotward\nMove B3 Shatner Bree\nMove R1 Shatner Bree\nDiscover G2 Shatner Y2 Nimoy\n\n33) Erik2point0: Move R3 Erik2point0 Nimoy\n\n34) scotward: Discover G2 Nimoy Y3 Doohan\n\n35) Erik2point0: Sacrifice R1 Erik2point0\nAttack R1 Bree\n\n36) scotward: Trade B3 R3 Bree\n\n37) Erik2point0: Sacrifice G3 Erik2point0\nBuild R1 Bree\nBuild R1 Bree\nBuild G1 Bree\nCatastrophe Bree Red\n\n38) scotward: Move G2 Doohan Rivendell\n\n39) Erik2point0: Trade B3 G3 Erik2point0\n\n40) scotward: Build G2 Scotward\n\n41) Erik2point0: Move Y1 Erik2point0 Bree\n\n42) scotward: Sacrifice Y1 Scotward\nMove G2 Rivendell Erik2point0\n\n43) Erik2point0: Move G3 Erik2point0 Nimoy\n\n44) scotward: Sacrifice Y1 Scotward\nMove G2 Erik2point0 Bree\nCatastrophe Bree G\n\n45) Erik2point0: Build Y1 Erik2point0\n\n46) scotward: Trade G2 Y2 Scotward\n\n47) Erik2point0: Build R1 Nimoy\n\n48) scotward: Build Y1 Scotward\n\n49) Erik2point0: Trade Y1 R1 Erik2point0\n\n50) scotward: Discover Y2 Scotward G1 Nichols\n\n51) Erik2point0: Build G1 Rivendell\n\n52) scotward: Build Y1 Nichols\n\n53) Erik2point0: Trade G1 Y1 Rivendell\n\n54) scotward: Move Y1 Nichols Rivendell\n\n55) Erik2point0: Build Y3 Erik2point0\n\n56) scotward: Build Y3 Nichols\n\n57) Erik2point0: Discover R1 Nimoy G1 Rohan\n\n58) scotward: Build Y3 Scotward\n\n59) Erik2point0: Sacrifice G3 Nimoy\nBuild R1 Rohan\nBuild R2 Rohan\nBuild G2 Rivendell\n\n60) scotward: Sacrifice Y3 Scotward\nMove Y2 Nichols Rivendell\nMove Y2 Rivendell Erik2point0\nMove Y1 Rivendell Erik2point0\nCatastrophe Erik2point0 Y\n\n61) Erik2point0: Move R3 Nimoy Erik2point0\n\n62) scotward: Move Y3 Nichols Rivendell\n\n63) Erik2point0: Trade G2 Y2 Rivendell\n\n64) scotward: Trade Y3 R3 Rivendell\n\n65) Erik2point0: Move Y2 Rivendell Rohan\n\n66) scotward: Sacrifice Y1 Scotward\nMove R3 Rivendell Rohan\n\n67) Erik2point0: Sacrifice Y2 Rohan\nMove R1 Rohan Scotward\nMove R2 Rohan Scotward\n\n68) scotward: Attack R1N Rohan\n\n\nHomeworlds Online (SDG# 24050)\nVariants: "Unrated, Hard time"\nStarted: 2013.6.1, Ended: 2013.6.4\nParticipants: pallas (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H G2 B3 Y3\n\tpallas: h g2 b1 y3\n\n\nHomeworlds Online (SDG# 24067)\nVariants: "Unrated, Hard time"\nStarted: 2013.6.1, Ended: 2013.6.4\nParticipants: pallas (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n\nHomeworlds Online (SDG# 24059)\nVariants: "Hard time"\nStarted: 2013.6.5, Ended: 2013.6.10\nParticipants: Marmalade (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Marmalade: Homeworld Y2 B3 G3\n\tMarmalade: homeworld Y2 R3 G3\n\n3) wil: Build G1 Wil\n\n4) Marmalade: Build G1 Marmalade\n\n5) wil: Discover G1 Wil Y3 Fortcourage\n\n6) Marmalade: Discover G1 Marmalade B1 Toast\n\n7) wil: Build G1 Fortcourage\n\n8) Marmalade: Build G2 Toast\n\n9) wil: Build G2 Fortcourage\n\n10) Marmalade: Trade G1 Y1 Toast\n\n11) wil: Discover G1 Fortcourage B1 Dryden\n\n12) Marmalade: Build G1 Marmalade\n\n13) wil: Discover G1 Fortcourage Y1 Y1\n\n14) Marmalade: Discover Y1 Toast G3 Moose\n\n15) wil: Build G2 Wil\n\n16) Marmalade: Build Y1 Moose\n\n17) wil: Trade G2 Y2 Wil\n\n18) Marmalade: Trade G1 R1 Marmalade\n\n19) wil: Trade G1 R1 Dryden\n\n20) Marmalade: Move Y1 Moose Toast\n\n21) wil: Build Y3 Wil\n\n22) Marmalade: Move Y1 Moose Wil\nCatastrophe Wil Y\n\n23) wil: Build G1 Wil\n\twil: I just tried to undo this as this layout made me miss what was going on....\n\n24) Marmalade: Build G1 Toast\n\tMarmalade: Ah, sorry man. No worries, we can always rematch if you'd like.\n\n25) wil: Sacrifice G3 Wil\nBuild G2 Y1\nBuild G3 Wil\nBuild G3 Fortcourage\n\n26) Marmalade: Move Y1 Toast Marmalade\n\n27) wil:\nTrade G1 Y1 Wil\n\n28) Marmalade: Build Y2 Marmalade\n\n29) wil: Move Y1 Wil Marmalade\nCatastrophe Marmalade Y\n\n30) Marmalade: Trade G2 R2 Toast\n\n31) wil: Sacrifice G3 Fortcourage\nBuild G1 Y1\nBuild G2 Wil\nBuild G3 Wil\n\n32) Marmalade: Trade G1 Y1 Toast\n\twil: ya let me even up the game...\n\n33) wil: Trade G3 Y3 Wil\n\tMarmalade: Yep. This is my second game of Homeworlds - I've wanted to play forever, but never gotten around to it :)\n\twil: well you are doing quite well then I've been playing a couple of months..but a lot of games...it is a great game with a steep learning curve...lose a lot...learn a lot...\n\n34) Marmalade: Trade G3 R3 Marmalade\n\twil: simple hints...always get a gun when they have a gun (r) in general, make sure you get whatever they get (r, y, b) don't get skunked in any economy. and WATCHOUT whenver they trade for a Y2 or Y3...\n\n35) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G3 Wil\nBuild R1 Dryden\n\twil: do you have the piece at home? Often best to set them up, so you can follow the play and arrange the star systems in a fashion easier to see than this.\n\tMarmalade: Cheers - clearly the Y3 was to threaten catastrophe in my home system (emptying out y1, probably). so trading for the R3 was just defence.\r\n\r\nFirst game I lost because my mind blanked regarding sacrificing red ships - just didn't occur to me.\r\n\r\n\n\tMarmalade: I've ordered my pyramids - should be turning up in a couple of weeks.\n\twil: oops....tight squeeze now...you made the move to stop checkmate...but now have no power to build new ships..\n\tMarmalade: Yeah, but desperation really, I could have moved the G3 away I suppose - but this seemed more sensible.\n\n36) Marmalade: Sacrifice Y1 Toast\nMove R3 Marmalade Dryden\n\n37) wil: Sacrifice Y3 Wil\nMove R1 Dryden Marmalade\nMove R1 Dryden Marmalade\nMove G1 Y1 Marmalade\n\tMarmalade: I don't think there's much hope for me left :)\r\n\n\twil: ouch...no big gun at home? no way to move? \n\n38) Marmalade: Sacrifice R3 Dryden\nAttack R1N Marmalade\nAttack R1N Marmalade\nAttack G1N Marmalade\n\tMarmalade: Yeah, just moving in a G2 ship would have done it, or sacrificing a G1 to build another red in dryden (and a catastrophe)\n\twil: can't move or build..the only thing you can do is trade or attack....either way I grow another red ship and catastrophe red in your system.....yes your doom is inevitable....but I did make a mistake you could prolong...\n\n39) wil: Trade G2 R2 Wil\n\tMarmalade: Still going to suffer from a lack of large ships though.\n\twil: I'll be glad to play again, and discuss what I've learned...\n\twil: I'll be glad to play again, and discuss what I've learned...\n\twil: oops...nice play...that I didn't see??\n\twil: I may have just gave you the game back, maybe I can learn from you!\n\n40) Marmalade: Trade R1 Y1 Marmalade\n\n41) wil: Move G2 Y1 Marmalade\n\tMarmalade: I still don't think there's a way out, but I'll give it a go.\n\n42) Marmalade: Build G2 Marmalade\n\n43) wil: Sacrifice R2 Wil\nAttack G2 Marmalade\nAttack R1 Marmalade\n\n44) Marmalade: Attack R1N Marmalade\n\n45) wil: Build G3 Y1\n\n46) Marmalade: Build G3 Marmalade\nCatastrophe Marmalade G\n\n47) wil: Trade G3 R3 Wil\n\twil: You did it for me??\n\n48) Marmalade: Trade R2 G2 Toast\n\n49) wil: Move G3 Y1 Marmalade\n\n50) Marmalade: Sacrifice G2 Toast\nBuild Y1 Marmalade\nBuild Y2 Marmalade\n\n51) wil: Build R1 Wil\n\tMarmalade: Yep, forgot I didn't have any green ships left. Was going to build a couple of greens and force a catastrophe.\n\twil: another nice move...you really understand the powers of the pieces\n\n52) Marmalade: Sacrifice Y2 Marmalade\nMove R1 Marmalade Wil\nMove R1 Marmalade Wil\nCatastrophe Wil R\n\n53) wil: Sacrifice G3 Marmalade\nBuild G1 Fortcourage\nBuild G2 Y1\nBuild G2 Wil\n\tMarmalade: Cheers, but it's all a little futile.\n\twil: too much fun!\n\n54) Marmalade: Trade Y1 R1 Marmalade\n\twil: its like herdin cats\n\n55) wil: Trade G2 R2 Wil\n\n56) Marmalade: Discover Y1 Marmalade G2 Desperation\n\n57) wil: Trade G1 Y1 Wil\n\n58) Marmalade: Build Y2 Desperation\n\n59) wil: Move G2 Y1 Marmalade\n\n60) Marmalade: Sacrifice Y2 Desperation\nMove Y1 Desperation Marmalade\nMove R1 Marmalade Wil\n\twil: I was thinking after the our second debacle, I should just sit back and accumulate a large force of ships..with my factory abilities.....but then said...no I think I can put an end to his misery rather than drag this out....it appears i made yet another mistake in this regard....\n\tMarmalade: If there's a mistake here, I'm not seeing it.\r\n\n\n61) wil: Attack R1 Wil\n\twil: Oh I think I've finally got you tied up now....but prior I should have just been building large ships of all varieties instead of trying to end it...\n\n62) Marmalade: Trade Y1 G1 Marmalade\n\twil: no use leaving any of your crew alive to repopulate....but thanks for the ship. That is a great theory of homeworlds...ships are monsterous undertakings to build, major capital investment...why would one ever destroy a ship of anothers vs just taking it? And you only sac your own when it provides a dramatic advantage...\n\tMarmalade: To be honest, you could have ended it a while ago - any time you had moved a size 2 ship into my homeworld, you could have sacrificed your 2 red ship at home to capture mine.\n\n63) wil: Sacrifice R1 Wil\nAttack G1 Marmalade\n\twil: I only wish I had played that well my second game...\n\tMarmalade: Cheers :)\r\n\r\nGood game. I'll run over the pgn's I think, try and work out where I went badly wrong.\r\n\r\nIf you do want another game, give me a shout.\n\twil: up for a challenge any time....2nd time playing you played real well...if at my games you'll see I've played a lot and lost a lot....every time I see different things come at me I learn something....but there is a lot involved.... whenever you are ready challenge me again... you play fairly regular when youget online (this needs that feature, so you know when someone else is willing to sit for a couple hours and play) Sometimes, you can get a few moves in a day, sometimes each move takes a few days!!\n\n\nHomeworlds Online (SDG# 23988)\nVariants: "Hard time"\nStarted: 2013.6.5, Ended: 2013.6.7\nParticipants: Marmalade (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Marmalade: Homeworld G3 B2 R3\n\tSilentTitan: Welcome!\n\n3) SilentTitan: Build G1 Silenttitan\n\tMarmalade: Cheers! I've never played Homeworlds, but I've been meaning to for ages - my pyramids should turn up in a few weeks :)\n\n4) Marmalade: Build R1 Marmalade\n\tSilentTitan: Nice.... If you have any questions, I will attempt to answer them. Good Luck to you.\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) Marmalade: Build R1 Marmalade\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) Marmalade: Trade R1 Y1 Marmalade\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\n10) Marmalade: Discover R1 Marmalade B1 Hyperion\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) Marmalade: Trade R1 G1 Hyperion\n\n13) SilentTitan: Build G1 Silenttitan\n\n14) Marmalade: Build Y1 Marmalade\n\n15) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n16) Marmalade: Build Y2 Marmalade\n\n17) SilentTitan: Build G1 Silenttitan\n\n18) Marmalade: Sacrifice Y2 Marmalade\nMove R3 Marmalade Hyperion\nMove R3 Hyperion Sol\n\n19) SilentTitan: Build Y2 Silenttitan\n\n20) Marmalade: Attack G1N Sol\n\n21) SilentTitan: Sacrifice Y2 Silenttitan\nMove G3 Silenttitan Sol\nMove G3 Sol Hyperion\n\tMarmalade: This is probably stupid, but I'll do it anyway and work out where I went wrong later...\r\n\n\n22) Marmalade: Move R3 Sol Hyperion\n\tMarmalade: (Actually, changed my mind.)\n\n23) SilentTitan: Sacrifice R1 Silenttitan\nAttack R3 Hyperion South\n\n24) Marmalade: Build G2 Sol\n\n25) SilentTitan: Sacrifice Y1 Silenttitan\nMove G3 Hyperion Marmalade\n\tMarmalade: Ah yes, that :)\r\n\n\n26) Marmalade: Sacrifice G2 Sol\nBuild Y1 Marmalade\nBuild Y2 Marmalade\n\tMarmalade: I think you've got this one - I was tempted to catastrophe your homeworld earlier, but then you'd have the only 3-ship. I just didn't consider what sacrificing reds could do.\n\n27) SilentTitan: Pass\nCatastrophe Marmalade Yellow\n\tSilentTitan: I believe so.. but I've seen weirder things happen. However, lets play again if you're up for it.\n\n\tMarmalade: Yep, no problem - I'll accept your standing challenge.\r\n\n\nHomeworlds Online (SDG# 24093)\nVariants: "Unrated, Hard time"\nStarted: 2013.6.5, Ended: 2013.6.13\nParticipants: Subhan64 (S), dlwillson (N)\nWinner: Subhan64\n\n1) dlwillson: Homeworld B3 G2 Y3\n\n2) Subhan64: Homeworld G1 B2 Y3\n\n3) dlwillson: B Y1 Dlwillson\n\n4) Subhan64: Build Y1 Subhan64\n\n5) dlwillson: T Y1 R1 Dlwillson\n\n6) Subhan64: Trade Y1 G1 Subhan64\n\n7) dlwillson: B R1 Dlwillson\n\n8) Subhan64: Build Y1 Subhan64\n\n\nHomeworlds Online (SDG# 24099)\nVariants: "Hard time"\nStarted: 2013.6.7, Ended: 2013.6.12\nParticipants: Marmalade (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Marmalade: Homeworld R3 G1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Marmalade: Build B1 Marmalade\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Marmalade: Trade B1 Y1 Marmalade\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) Marmalade: Discover Y1 Marmalade G2 Quoth\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) Marmalade: Build Y2 Quoth\n\n11) SilentTitan: Build Y2 Silenttitan\n\n12) Marmalade: Move Y2 Quoth Marmalade\n\n13) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n14) Marmalade: Build Y2 Marmalade\n\n15) SilentTitan: Trade Y1 R1 Silenttitan\n\n16) Marmalade: Trade Y2 R2 Marmalade\n\n17) SilentTitan: Build G1 Silenttitan\n\n18) Marmalade: Build Y1 Marmalade\n\n19) SilentTitan: Discover G1 Silenttitan Y3 Soul\n\n20) Marmalade: Trade Y2 G2 Marmalade\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Soul\nBuild G3 Silenttitan\nBuild G3 Silenttitan\n\n22) Marmalade: Move G2 Marmalade Quoth\n\n23) SilentTitan: Discover G2 Soul Y2 Sole\n\n24) Marmalade: Build Y2 Marmalade\n\n25) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y3 Sol\nBuild Y3 Silenttitan\nBuild G3 Sole\n\tMarmalade: These settlers are pretty imaginative.\n\tSilentTitan: lol, I don't believe anyone has ever commented on my star name choices before\r\n\n\n26) Marmalade: Build B1 Marmalade\n\n27) SilentTitan: Trade G3 B3 Silenttitan\n\tMarmalade: I'm really bad at setting up "factory" things - or in managing the stash in general.\n\tSilentTitan: most beginners are... it's a component of the game that comes with actually playing it and having someone mess you over with it a few times. \n\tSilentTitan: to that end.. if you want to pick up this game and start another I have no problem with that... or if you'd like to continue to play this out for the knowledge I have no issue with that either. \n\n28) Marmalade: Build G3 Quoth\n\tMarmalade: Oh no, I'm not suggesting I'm giving up! I'd much rather be soundly beaten and have a game I can pull apart later, then abandon it as soon as it looks like I'm in trouble.\n\n29) SilentTitan: Move G1 Soul Quoth\nCatastrophe Quoth Green\n\n30) Marmalade: Move Y1 Marmalade Sole\n\n31) SilentTitan: Sacrifice B3 Silenttitan\nTrade G2 B2 Sole\nTrade Y1 B1 Sol\nTrade Y3 G3 Silenttitan\n\n32) Marmalade: Trade Y2 G2 Marmalade\n\n33) SilentTitan: Sacrifice G3 Sole\nBuild B1 Sol\nBuild B2 Sol\nBuild B3 Sole\n\n34) Marmalade: Sacrifice B1 Marmalade\nTrade B3 Y3 Marmalade\n\n35) SilentTitan: Sacrifice R1 Silenttitan\nAttack Y1 Sole South\n\n36) Marmalade: Discover G2 Marmalade Y2 Seoul\n\tMarmalade: Sorry about the undo, being stupid.\n\n37) SilentTitan: Sacrifice B2 Sol\nTrade Y1 G1 Sole\nTrade B1 R1 Sol\n\tSilentTitan: don't worry about undo I am always using that.... the worst part is to make two dumb mistakes in a row.. then you're stuck with the second mistake and for some reason it's always worse the second time.\n\n38) Marmalade: Build Y1 Marmalade\n\tMarmalade: I suspect that I'm far too behind with this one. This would be my third game, but the third different way of losing, which is good to know :)\n\n39) SilentTitan: Trade B2 R2 Sole\n\tSilentTitan: Third different way of losing? how so?\n\tMarmalade: Well, first game against you I think the major turning point was that I just blanked insofar as sacrificing reds worked.\r\n\r\nThe second, with someone else, I lost mostly because of my stack management, but also because I made a crucial error whilst half asleep one morning.\r\n\r\nThis one I've been massively outclassed economically - my actions have been purely reactive, and generally less efficient. You have control over everything, and dominance in most colours and ship sizes, with nowhere for me to excel.\r\n\r\nYou're not immediately threatening my homeworld, but it will take something major to claw back any kind of initiative.\n\n40) Marmalade: Move R2 Marmalade Seoul\n\tSilentTitan: oh... I was thinking ... in different terms .... you lose by losing the stars in your homeworld or you lose by losing all the ships in your homeworld and I couldn't for the life of me figure out how you could lose a third way. \r\n\n\n41) SilentTitan: Build Y1 Sol\n\n42) Marmalade: Discover Y1 Marmalade B2 Sool\n\tMarmalade: Do you think it's a little strange to have a text-based interface for this? It works well, and relates directly to the pgn, but given that the options are limited to begin with there's no reason why it couldn't be done with drop-down menus, tick-boxes or whatever.\n\tSilentTitan: True. however, I also play the chase game on this site and one of the things that bugs me about that game is every possible move for each turn is offered to you on a menu. I'd rather not have the computer show me all my possible choices. \n\n43) SilentTitan: Discover Y1 Sol G2 Tic\n\n44) Marmalade: Build R1 Seoul\n\n45) SilentTitan: Trade B3 Y3 Sole\n\n46) Marmalade: Move R1 Seoul Marmalade\n\n47) SilentTitan: Build Y1 Tic\n\n48) Marmalade: Move R2 Seoul Marmalade\n\n49) SilentTitan: Sacrifice Y3 Sol\nMove Y1 Tic Marmalade\nMove Y1 Tic Marmalade\nMove R2 Sole Marmalade\nCatastrophe Marmalade Red\n\n50) Marmalade: Move G2 Seoul Marmalade\n\n51) SilentTitan: Sacrifice Y3 Sole\nMove G1 Sole Marmalade\nMove G1 Silenttitan Sol\nMove G1 Sol Marmalade\nCatastrophe Marmalade Green\n\n\tSilentTitan: Thanks for playing. \n\tMarmalade: Cheers for that - I lost that one a long time ago, but it was worth playing out. Thank you.\r\n\n\nHomeworlds Online (SDG# 24127)\nVariants: "Hard time"\nStarted: 2013.6.10, Ended: 2013.7.8\nParticipants: Aristos (S), Subhan64 (N)\nWinner: Aristos\n\n1) Subhan64: Homeworld B1 Y2 G3\n\tAristos: Good luck.\n\n2) Aristos: Homeworld G3 B2 Y3\n\n3) Subhan64: Build G1 Subhan64\n\tSubhan64: thanks, you too!\r\n\n\n4) Aristos: Build Y1 Aristos\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) Aristos: Trade Y1 B1 Aristos\n\n7) Subhan64: Build G1 Subhan64\n\n8) Aristos: Build B1 Aristos\n\n9) Subhan64: Build Y1 Subhan64\n\n10) Aristos: Discover B1 Aristos Y1 Spark\n\n11) Subhan64: Trade Y1 G1 Subhan64\n\n12) Aristos: Trade Y3 G3 Aristos\n\n13) Subhan64: Discover G1 Subhan64 B3 Papasmurf\n\n14) Aristos: Sacrifice G3 Aristos\nBuild B2 Spark\nBuild B2 Spark\nBuild B3 Aristos\n\tAristos: Ping!\n\n15) Subhan64: Trade G3 B3 Subhan64\n\n16) Aristos: Sacrifice B2 Spark\nTrade B3 Y3 Aristos\nTrade B2 G2 Spark\n\n17) Subhan64: Trade G1 R1 Papasmurf\n\n18) Aristos: Build B2 Spark\n\n19) Subhan64: Build G1 Subhan64\n\n20) Aristos: Sacrifice G2 Spark\nBuild B2 Aristos\nBuild B3 Spark\n\n21) Subhan64: Build Y1 Subhan64\n\n22) Aristos: Sacrifice B2 Aristos\nTrade B2 Y2 Spark\nTrade B3 R3 Spark\n\n23) Subhan64: Discover G1 Subhan64 B3 Blueberry\n\n24) Aristos: Move R3 Spark Blueberry\n\n25) Subhan64: Sacrifice Y1 Subhan64\nDiscover G1 Blueberry B2 Crunch\n\n26) Aristos: Build B2 Aristos\n\n27) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n28) Aristos: Trade R3 G3 Blueberry\n\n29) Subhan64: Trade B3 Y3 Subhan64\n\n30) Aristos: Sacrifice G3 Blueberry\nBuild B3 Spark\nBuild B3 Spark\nBuild Y1 Aristos\n\tAristos: ping\n\tAristos: ping ping\n\n\tAristos: I did not force the resignation... it happened automatically because this was a ladder game.\n\tSubhan64: Yes, sorry, was out of town & didn't put enough vacation time in :( Oh well!\n\nHomeworlds Online (SDG# 24121)\nVariants: "Hard time"\nStarted: 2013.6.10, Ended: 2013.6.18\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld B2 R1 G3\n\tBroccoli_Commander: Have a good game Sir!\n\twil: Yea!! I get to play a game while trying to climb the ladder...(instead of waiting for declines)!!\n\n2) Broccoli_Commander: Homeworld B2 Y3 G3\n\n3) wil: Build G1 Wil\n\tBroccoli_Commander: I know the pain, I've even kinda given up trying climbing higher because of this very reason\n\twil: I've told them....they need to instigate a program...so the dead can be removed...\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\tBroccoli_Commander: Yeah for sure! But also the system is a bit stupid: I actually hesitated before accepting your challenge because I can only go *down* the ladder or, if I win, stay on the same spot!? \r\n==> why would I ever accept a challenge?\r\n\r\nWell in the end I don't care about my rank so I accepted :-D Nevertheless it is much more interesting playing against the top players! Btw the worst thing is when an almost dead player still accepts the challenge: you then have to wait 3days between each turn till the #20 (i.e. 2 months!) even though you won on turn #5 (which was two weeks already). It strips out all of your motivation...\r\n\n\n5) wil: Trade G1 R1 Wil\n\twil: gad, I hear you....to me it is all about playing and learning...and when you lose you only go one down the ladder, when you do the denies at least you drop to the bottom. I just wanna get up in that top 12-15 where it looks like they actuallly play games.\n\n6) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n7) wil: Build R2 Wil\n\n8) Broccoli_Commander: Build R2 Broccoli_commander\n\n9) wil: T R1 Y1 Wil\n\n10) Broccoli_Commander: Build G1 Broccoli_commander\n\n11) wil: Build G1 Wil\n\n12) Broccoli_Commander: Discover G1 Broccoli_commander B1 Blueberry\n\n13) wil: Discover G1 Wil Y3 Y3\n\n14) Broccoli_Commander: Move R2 Broccoli_commander Blueberry\n\n15) wil: Move R2 Wil Y3\n\n16) Broccoli_Commander: Build R1 Blueberry\n\n17) wil: Build G1 Wil\n\n18) Broccoli_Commander: Build G2 Broccoli_commander\n\n19) wil: Build G2 Wil\n\n20) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\n\n21) wil: Trade G1 B1 Wil\n\n22) Broccoli_Commander: Trade R1 Y1 Blueberry\n\twil: very nice...didnt see where the factory would be so advantageous....and how did you pick your moniker here?\n\n23) wil: Build B1 Wil\n\tBroccoli_Commander: Thanks, well a factory is always useful ;)\r\nAbout my moniker, well I came here to play homeworlds (I could try it live once and wanted to play more) and I came up with sth sounding both homeworlds-ish and very serious. Funnily I discovered afterwards that an online comic is also named broccoli commander.\r\nAnd you, are you in anyway related to dlwillson or is it a "coincidence"?\n\twil: coincidence...Iast name ...first name I believe, yeah I just didn't see I was setting you up for a factory....slowly learning.\n\n24) Broccoli_Commander: Move G3 Blueberry Y3\n\n25) wil: Discover R2 Y3 G1 G1\n\n26) Broccoli_Commander: Trade G2 B2 Broccoli_commander\n\n27) wil: Discover G1 Y3 Y1 Y1\n\n28) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\nBuild B3 Broccoli_commander\n\n29) wil: Discover B1 Wil Y3 Y3a\n\n30) Broccoli_Commander: Move B3 Broccoli_commander G1\n\tBroccoli_Commander: sorry for the undo\n\n31) wil: Move G2 Wil Y3a\n\twil: heck undo's aren't a problem...one should actually have a committ button here...so youcan see the lay of the land after a potential move prior to allowing it to become permanent...\r\n\r\n\r\nI've lost a couple games becasuse after seeng what it looked like I wanted to change...yet the other had already moved.\n\n32) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild B3 Broccoli_commander\nBuild B3 G1\n\twil: i just gotta learn to bully\n\n33) wil: Build Y2 Wil\n\n34) Broccoli_Commander: Move B3 Broccoli_commander Y1\n\tBroccoli_Commander: beware of the factory it quickly gets out of control :-)\r\nAnd note that you had a factory too! But not anymore since you moved the g2 from your homeworld...\n\twil: had a factory...but no place to grow....some bully is in town taking over every place we settle!\n\twil: had a factory...but no place to grow....some bully is in town taking over every place we settle!\n\n35) wil: Move G1 Y1 Broccoli_commander\n\n36) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild G2 Y3\nBuild Y2 Blueberry\n\tBroccoli_Commander: those damn bullies ^_^\n\n37) wil: Build R1 G1\n\n38) Broccoli_Commander: Sacrifice R2 Blueberry\nAttack R1 G1\nAttack R2 G1\n\n39) wil: Discover Y1 Wil R3 R3\n\n40) Broccoli_Commander: Move B3 Y1 Y3a\n\twil: yeah...that was stupid...of course you'd sac one for two..\n\twil: I'm digging myself so deep I need you to make about four major mistakes...\n\n41) wil: Discover G2 Y3a Y1 Y1\n\n42) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove G3 Y3 Wil\nMove B3 Y3a Wil\n\n43) wil: Attack B3 Wil\n\tBroccoli_Commander: Yeah I think it's pretty much over, but nasty surprises are always possible :-) Although the lack of y3 ships really mitigates the possibilities \n\twil: he says as his chameleon moves in to control yet another peaceful star system...\n\n44) Broccoli_Commander: Sacrifice R2 G1\nAttack B3 Wil\nAttack G3 Wil\n\twil: I'm just hopin you woud oblige me another game (you know if you'd lose one to me it wouldn't take me six months of attempting to crawl over the masses of dead...and then i'd gladly lose one right back to you to regain your honor)\n\n45) wil: Move B1 Y3a Wil\nCatastrophe Wil B\n\tBroccoli_Commander: Sure! Always glad to actually play :-)\n\tBroccoli_Commander: But if I lose the next one, we can also continue playing outside the ladder (and meet back at the top ;-) )\n\twil: ah you took my guns and I forgot to rebuild....a cavalcade of errors...\n\n46) Broccoli_Commander: Attack Y2 Wil\n\n\twil: I can solve that...\n\nHomeworlds Online (SDG# 24139)\nStarted: 2013.6.14, Ended: 2013.6.21\nParticipants: thejackdiaz (S), EarlOfSlothel (N)\nWinner: thejackdiaz\n\n1) EarlOfSlothel: Homeworld B3 G2 Y3\n\n2) thejackdiaz: Homeworld Y2 B1 G3\n\tEarlOfSlothel: MY ART\n\tEarlOfSlothel: SHAPE OF PLANE\n\n\nHomeworlds Online (SDG# 24135)\nVariants: "No undo, Unrated, Hard time"\nStarted: 2013.6.15, Ended: 2013.6.18\nParticipants: wil (S), Argel (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24113)\nVariants: "Hard time"\nStarted: 2013.6.18, Ended: 2013.7.11\nParticipants: wil (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: Build G1 Wil\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\twil: I don't think I've gone terribly wrong yet... \n\tSilentTitan: Ha.... I think you're right. \n\n6) wil: Trade G1 Y1 Wil\n\twil: I'd appreciate when you see me make what you would consider a poor move or a grevious mistake to point it out (take advantage of it by all means) but tell me where I went wrong and why... I seem to make some biggies, but some small tactical ones that lead to a cumulative disadvantage that I don't understand....twould be appreciated...\n\n7) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: ok.. I will be glad to do that.\n\n8) wil: Build G1 Wil\n\tSilentTitan: first I will be building up... trying to get to a position where I can use the G3 to my advantage. Also I like to corner the yellows as you well know. Additionally, I'm manipulating the bank so as to try putting you into making a bad selection, one that would allow me to get a 2-pip build and have you unable to because it would put you in danger of a catastrophe. \r\n\n\n9) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\twil: Thank you.... and you've already gone beyond...hints on strategy...thanx.\n\n10) wil: Trade G1 R1 Wil\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) wil: Build R1 Wil\n\n13) SilentTitan: Build G1 Sol\n\n14) wil: Build G2 Wil\n\n15) SilentTitan: Build G2 Silenttitan\n\n16) wil: Discover G2 Wil Y2 Y2\n\twil: very nice move...\n\n17) SilentTitan: Discover G2 Silenttitan G3 Soul\n\n18) wil: Build G2 Wil\n\n19) SilentTitan: Sacrifice G2 Soul\nBuild G2 Sol\nBuild G3 Silenttitan\n\n20) wil: Move G2 Y2 Sol\nCatastrophe Sol G\n\n21) SilentTitan: Trade G3 R3 Silenttitan\n\n22) wil: Discover R1 Wil Y2 Y2\n\n23) SilentTitan: Discover R3 Silenttitan Y3 Sol\n\n24) wil: Discover R1 Y2 G3 G3\n\n25) SilentTitan: Move G1 Silenttitan Sol\n\n26) wil: Build Y1 Wil\n\n27) SilentTitan: Build R2 Sol\n\n28) wil: Build Y2 Wil\n\n29) SilentTitan: Build Y2 Silenttitan\n\n30) wil: Discover Y1 Wil R2 R2\n\n31) SilentTitan: Discover Y2 Silenttitan R3 Soul\n\n32) wil: Build R2 G3\n\n33) SilentTitan: Build G1 Silenttitan\n\n34) wil: Discover Y2 Wil G2 G2\n\n35) SilentTitan: Discover G1 Silenttitan Y3 Tic\n\n36) wil: Sacrifice G3 Wil\nBuild Y2 G2\nBuild Y3 Wil\nBuild G1 Wil\n\n37) SilentTitan: Move R3 Sol G2\n\n38) wil: Sacrifice Y2 G2\nMove Y2 G2 G3\nDiscover Y1 Wil B2 B2\n\n39) SilentTitan: Build G2 Silenttitan\n\n40) wil: Trade G1 B1 Wil\n\tSilentTitan: ok.. I undid this move and I feel I need to explain. If you use your pyramids to process the turn I've backup up from.. you should see that you'd have been able to sac your y3 in wil and run both the yellows from g3 and r2 into my homeworld and cause a cat thereby winning you the game. \n\n41) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Sol\nBuild G3 Tic\nBuild G3 Silenttitan\n\twil: color me confused? won the game? I would have only killed your yellows..you'd be left with a binary star and a g3 and my I'd have zero queen ships...\n\n42) wil: Build Y2 G3\n\tSilentTitan: North's ship G3 was sacrificed in the SilentTitan system. North created a Y2 ship in the SilentTitan system. North created a G2 ship in the sol system. North created a G3 ship in the tic system. \r\n\r\nwas the turn I undid. in this case you can see I sac'ed the G3 in my homeworld and built a y2.. so at that point only the y1 and y2 were in my homeworld.\n\n43) SilentTitan: Move Y2 Soul G2\n\twil: ok, I missed the I would have been able to...I read it wrong and thought you were referring to what I should have done....btw I just lost a physical game to that very bluebird mistake!! aaarrggghhhh\n\twil: ok, I missed the I would have been able to...I read it wrong and thought you were referring to what I should have done....btw I just lost a physical game to that very bluebird mistake!! aaarrggghhhh\n\n44) wil:\nMove R1 Wil B2\n\n45) SilentTitan: Move G3 Tic B2\n\n46) wil: Sacrifice Y2 G3\nMove R2 G3 G2\nMove R2 G2 Tic\n\n47) SilentTitan: Sacrifice G3 B2\nBuild R3 Sol\nBuild Y2 G2\nBuild G3 Tic\n\n48) wil: Move R2 Tic R2\n\n49) SilentTitan: Move G1 Tic G2\n\n50) wil: Move B1 Wil B2\n\n51) SilentTitan: Discover R3 Sol B2 Tac\n\n52) wil: Move B1 B2 G3\n\n53) SilentTitan: Sacrifice G3 Tic\nBuild Y3 Silenttitan\nBuild G3 Silenttitan\nPass\n\twil: It's only a matter of time.......you should resign now ;D\r\n\n\n54) wil: Build B1 G3\n\tSilentTitan: It always is .... I shall consider your advice carefully. \n\n55) SilentTitan: Move G1 Sol Tac\n\n56) wil: Move G2 Wil R2\n\n57) SilentTitan: Move G3 Silenttitan Sol\n\n58) wil: Build B3 G3\n\n59) SilentTitan: Discover Y1 Silenttitan B3 Toe\n\n60) wil: Move B3 G3 R2\n\n61) SilentTitan: Move G2 Silenttitan Toe\n\n62) wil: Build B3 G3\n\n63) SilentTitan: Move Y1 Toe Tac\n\n64) wil: Move B3 R2 Wil\n\n65) SilentTitan: Move G3 Sol B2\n\n66) wil: Move R1 B2 G3\n\n67) SilentTitan: Sacrifice Y3 Silenttitan\nMove G1 Tac G3\nMove G1 G2 G3\nMove G3 B2 G3\nCatastrophe G3 Green\n\n68) wil: Build G1 R2\n\n69) SilentTitan: Build G1 Silenttitan\n\n70) wil: Trade B3 G3 Wil\n\n71) SilentTitan: Sacrifice G3 Silenttitan\nBuild G3 Silenttitan\nBuild G3 Sol\nBuild R1 Sol\n\n72) wil: Discover G2 R2 Y3 Y3\n\n73) SilentTitan: Trade G1 B1 Silenttitan\n\n74) wil: Build G1 Wil\n\n75) SilentTitan: Discover R2 Sol Y2 Hic\n\n76) wil: Trade Y1 B1 B2\n\n77) SilentTitan: Build R1 Sol\n\n78) wil: Sacrifice G2 Y3\nBuild Y1 Wil\nBuild Y3 R2\n\n79) SilentTitan: Sacrifice Y2 G2\nMove R1 Sol R2\nMove R1 Sol R2\nCatastrophe R2 Red\n\n80) wil: Move Y1 Wil B2\n\n81) SilentTitan: Sacrifice G3 Sol\nBuild Y1 G2\nBuild Y2 Tac\nBuild G1 Silenttitan\n\n82) wil: Trade B1 R1 B2\n\n83) SilentTitan: Sacrifice Y2 G2\nMove R3 G2 Wil\nMove R2 Hic Wil\n\n84) wil: Attack R3 Wil\n\n85) SilentTitan: Sacrifice G3 Silenttitan\nBuild R1 Wil\nBuild G2 Toe\nBuild G3 Silenttitan\nCatastrophe Wil Red\n\n86) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 B2\nBuild R1 B2\n\n87) SilentTitan: Sacrifice Y2 Tac\nMove G2 Toe Wil\nMove G2 Toe Wil\nCatastrophe Wil Green\n\n88) wil: Trade Y3 R3 Wil\n\n89) SilentTitan: Build Y2 G2\n\n90) wil: Trade R1 G1 B2\n\n91) SilentTitan: Trade G1 B1 Silenttitan\n\n92) wil: Build G1 B2\n\tSilentTitan: I'm currently in Rochester NY. \n\twil: Is that where you reside? or are you on travel? (i have a lot of family up there)\n\n93) SilentTitan: Build G2 Silenttitan\n\twil: I was close a couple of moments but have been running most of the game and it appears I'm gonna be outta wind soon.\n\tSilentTitan: We are on summer vacation. Wife has family up here in finger lake region.\n\n94) wil: Move G1 B2 Wil\n\n95) SilentTitan: Trade G2 Y2 Silenttitan\n\twil: Pretty time to be up there... nice boating/skiing on those lakes....lots of pretty scenery, make sure you wear your shades so you don't get in trouble. \n\n96) wil: Build G2 B2\n\n97) SilentTitan: Discover B1 Silenttitan Y3 Miney\n\n98) wil: Move R1 B2 Sol\n\n99) SilentTitan: Sacrifice G1 Sol\nBuild B3 Miney\n\twil: I know it is over, and I have been running in circles playing rope a dope...but this is I think my longest game yet...50 moves.\n\n100) wil: Discover Y1 B2 G3 G3\n\tSilentTitan: Yeah. I need to work on taking down opponants faster.\n\n101) SilentTitan: Sacrifice Y2 G2\nMove B3 Miney Wil\nMove B1 Miney Wil\n\n102) wil: Attack B3 Wil\n\n103) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Wil\nPass\nPass\nCatastrophe Wil Blue\n\n\tSilentTitan: Good game 55 turns. That's a record for me.\n\twil: You chased me around like a cornered rat most of the time...a sensible person would have forfieted....me...i'm hoping you accidentally sink the 8 ball...\n\nHomeworlds Online (SDG# 24163)\nVariants: "Hard time"\nStarted: 2013.6.18, Ended: 2013.7.26\nParticipants: SirRuthvenMurgatroyd (S), wil (N)\nWinner: SirRuthvenMurgatroyd\n\n1) wil: Homeworld R2 B1 G3\n\n2) SirRuthvenMurgatroyd: Homeworld G3 B2 Y3\n\n3) wil: Build G1 Wil\n\n4) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n5) wil: Trade G1 Y1 Wil\n\n6) SirRuthvenMurgatroyd: Trade Y1 G1 Sirruthvenmurgatroyd\n\n7) wil: Build G1 Wil\n\n8) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\n\n9) wil: Discover G1 Wil Y3 Y3\n\n10) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd B1 B1\n\n11) wil: Build Y1 Wil\n\n12) SirRuthvenMurgatroyd: Discover Y1 Sirruthvenmurgatroyd G1 G1\n\n13) wil: Build G2 Wil\n\n14) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n15) wil: Discover Y1 Wil G3 G3\n\n16) SirRuthvenMurgatroyd: Build G2 B1\n\n17) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild Y2 G3\nBuild G3 Wil\n\n18) SirRuthvenMurgatroyd: Sacrifice Y1 G1\nDiscover G2 B1 Y3 Sol\n\n19) wil: Trade Y1 B1 Wil\n\n20) SirRuthvenMurgatroyd: Build G1 Sol\n\n21) wil: Discover Y2 G3 R1 R1\n\n22) SirRuthvenMurgatroyd: Trade Y2 R2 Sirruthvenmurgatroyd\n\n23) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Wil\nBuild Y1 R1\n\n24) SirRuthvenMurgatroyd: Move G2 Sol Wil\n\n25) wil: Sacrifice Y1 R1\nMove G2 Wil Sol\n\n26) SirRuthvenMurgatroyd: Trade G2 B2 Wil\nCatastrophe Wil Blue\n\n27) wil: Move G2 Y3 B1\n\twil: what was I thinking...nice move.\n\n28) SirRuthvenMurgatroyd: Build G2 Sol\n\n29) wil: Trade G2 R2 B1\n\n30) SirRuthvenMurgatroyd: Sacrifice Y3 Sirruthvenmurgatroyd\nMove G1 B1 Wil\nMove G1 Sol Wil\nMove G2 Sol Wil\nCatastrophe Wil Green\n\twil: thanx for the annihilation...\n\tSirRuthvenMurgatroyd: haha no problem :p\r\nI thought you had me for a while, though, with your vastly superior number of ships.\n\n\nHomeworlds Online (SDG# 24098)\nVariants: "Hard time"\nStarted: 2013.6.19, Ended: 2013.6.29\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld B1 Y2 G3\n\tBroccoli_Commander: Hello again,\r\nI was waiting for your challenge on the ladder ?! But I saw you challenged SirRuthvenSomething so I figured I'd come here instead.\r\nGood game\n\n2) wil: Homeworld R3 B1 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: Build G1 Wil\n\n5) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\twil: I guess I lost the right to challenge you (5 away first try, 4 second?) as you did not show up on the challenge me list...\n\n6) wil: Trade G1 R1 Wil\n\tBroccoli_Commander: I see... maybe you just can't challenge the same guy twice in a row\n\twil: Yeah...don't know...but good luck in your game...you may just bolt through the muck...\n\twil: so there is that get right out there move....hmmmm.....\n\n7) Broccoli_Commander: Build G1 Blueberry\n\n8) wil: Build R1 Wil\n\n9) Broccoli_Commander: Trade G1 R1 Blueberry\n\n10) wil: Trade R1 Y1 Wil\n\n11) Broccoli_Commander: Build G1 Blueberry\n\n12) wil: Build Y1 Wil\n\n13) Broccoli_Commander: Trade G1 Y1 Blueberry\n\n14) wil: Discover Y1 Wil G2 G2\n\n15) Broccoli_Commander: Build Y2 Blueberry\n\n16) wil: Build Y2 G2\n\n17) Broccoli_Commander: Discover Y1 Blueberry G2 Lettuce\n\n18) wil: Build Y3 Wil\n\n19) Broccoli_Commander: Build Y3 Blueberry\n\n20) wil: Move Y1 G2 Blueberry\n\n21) Broccoli_Commander: Build Y3 Lettuce\n\n22) wil: Move Y2 G2 Blueberry\nCatastrophe Blueberry Y\n\n23) Broccoli_Commander: Build G1 Broccoli_commander\n\n24) wil: Discover Y3 Wil G2 G2\n\n25) Broccoli_Commander: Move Y3 Lettuce Blueberry\n\n26) wil: Move R1 Wil G2\n\n27) Broccoli_Commander: Build G1 Blueberry\n\n28) wil: Build G2 Wil\n\n29) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\nBuild R1 Blueberry\n\n30) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 G2\nBuild Y2 Wil\n\n31) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y2 Blueberry\nBuild Y3 Lettuce\n\n32) wil: Discover G2 Wil B2 B2\n\n33) Broccoli_Commander: Sacrifice Y3 Blueberry\nMove R1 Blueberry Lettuce\nDiscover G1 Broccoli_commander B3 Muffin\nMove G1 Blueberry Lettuce\n\n34) wil: Trade Y1 B1 Wil\n\n35) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R2 Blueberry\nBuild R2 Lettuce\n\n36) wil: Build B2 Wil\n\n37) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y1 Lettuce\nBuild Y3 Blueberry\n\n38) wil: Move Y2 Wil Lettuce\nCatastrophe Lettuce Y\n\n39) Broccoli_Commander: Trade R2 B2 Blueberry\n\n40) wil: Trade B2 Y2 Wil\n\n41) Broccoli_Commander: Move Y3 Blueberry Lettuce\n\n42) wil: Move B1 Wil G2\n\n43) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R2 Blueberry\nBuild Y1 Blueberry\n\n44) wil: Build B2 G2\n\n45) Broccoli_Commander: Move B2 Blueberry Lettuce\n\tBroccoli_Commander: There's a high population in Blueberry\n\n46) wil:\nDiscover Y1 G2 B3 B3\n\twil: there is, looks like a carrier fleet ready to advance....starting to bother me...\n\tBroccoli_Commander: Ah I see you have mean plans\n\n47) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild Y1 Blueberry\nBuild Y3 Lettuce\n\n48) wil: Build R2 G2\n\n49) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove R1 Blueberry G2\nMove R2 Blueberry G2\nCatastrophe G2 R\n\n50) wil: Build Y2 G2\n\n51) Broccoli_Commander: Sacrifice Y3 Lettuce\nMove Y3 Lettuce Wil\nMove G3 Blueberry Lettuce\nMove G3 Lettuce Wil\n\n52) wil: Move G3 Wil G2\n\n53) Broccoli_Commander: Attack Y2 Wil\n\n\twil: We leave in peace to form a new civilization away from marauders..\n\tBroccoli_Commander: oh well... It was a trap :P\n\twil: well done trap... I gotta learn it.\n\nHomeworlds Online (SDG# 24162)\nVariants: "Hard time"\nStarted: 2013.6.20, Ended: 2013.6.27\nParticipants: ausmuh (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) ausmuh: Homeworld G3 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) ausmuh: Build B1 Ausmuh\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) ausmuh: Build B1 Ausmuh\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) ausmuh: Discover B1 Ausmuh G2 Gwar\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) ausmuh: Build B1 Gwar\n\n11) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n12) ausmuh: Trade B3 Y3 Ausmuh\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n14) ausmuh: Build B2 Ausmuh\n\n15) SilentTitan: Trade Y2 B2 Sol\n\n16) ausmuh: Discover B2 Ausmuh Y2 Slayer\n\n17) SilentTitan: Discover B2 Sol G2 Sole\n\n18) ausmuh: Build B3 Gwar\n\n19) SilentTitan: Sacrifice Y2 Silenttitan\nMove B2 Sole Sol\nMove B2 Sol Gwar\nCatastrophe Gwar Blue\n\n20) ausmuh: Trade B1 R1 Ausmuh\n\n21) SilentTitan: Trade Y2 R2 Sol\n\n\nHomeworlds Online (SDG# 24171)\nVariants: "Hard time"\nStarted: 2013.6.20, Ended: 2013.6.23\nParticipants: Marmalade (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) Marmalade: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Marmalade: Build G1 Marmalade\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Marmalade: Discover G1 Marmalade B2 Canopus\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) Marmalade: Build G1 Canopus\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) Marmalade: Trade G1 R1 Canopus\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) Marmalade: Build G1 Marmalade\n\n13) SilentTitan: Discover Y1 Sol R2 Sole\n\n14) Marmalade: Build G1 Canopus\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sole\nBuild Y2 Sole\nBuild Y3 Silenttitan\n\n16) Marmalade: Move G3 Marmalade Sole\n\n17) SilentTitan: Sacrifice Y2 Sole\nDiscover Y2 Sole G3 Soul\nDiscover Y1 Sole G3 Tic\n\n18) Marmalade: Build G2 Sole\n\n19) SilentTitan: Build Y2 Tic\n\n20) Marmalade: Sacrifice G3 Sole\nBuild G2 Sole\nBuild G2 Canopus\nBuild G3 Marmalade\n\n21) SilentTitan: Build Y3 Soul\n\n22) Marmalade: Trade G3 Y3 Marmalade\n\n23) SilentTitan: Trade Y3 G3 Silenttitan\n\n24) Marmalade: Build Y3 Marmalade\n\n25) SilentTitan: Sacrifice Y2 Soul\nMove Y1 Tic Sole\nMove Y1 Sole Marmalade\nCatastrophe Marmalade Yellow\n\n26) Marmalade: Trade G1 R1 Marmalade\n\n27) SilentTitan: Move G3 Silenttitan Marmalade\n\n28) Marmalade: Trade G2 Y2 Canopus\n\n29) SilentTitan: Trade G3 R3 Marmalade\n\n30) Marmalade: Sacrifice Y2 Canopus\nMove G2 Sole Marmalade\nMove R1 Canopus Marmalade\n\n31) SilentTitan: Attack G2 Marmalade South\n\n32) Marmalade: Trade R1 G1 Marmalade\n\n33) SilentTitan: Sacrifice R3 Marmalade\nAttack R1 Marmalade South\nAttack G1 Marmalade South\nPass\n\tMarmalade: Thanks for the game :)\n\tSilentTitan: Thank you for the game\n\n\nHomeworlds Online (SDG# 24165)\nVariants: "Hard time"\nStarted: 2013.6.20, Ended: 2013.6.24\nParticipants: Marmalade (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Marmalade: Homeworld Y3 B1 G3\n\n3) wil: Build G1 Wil\n\n4) Marmalade: Build G1 Marmalade\n\n5) wil: Discover G1 Wil Y3 Y3\n\n6) Marmalade: Discover G1 Marmalade B2 Formalhaut\n\n7) wil: Build G1 Wil\n\n8) Marmalade: Build G2 Marmalade\n\n9) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G2 Y3\nBuild G3 Wil\n\n10) Marmalade: Sacrifice G2 Marmalade\nBuild G2 Marmalade\nBuild G3 Formalhaut\n\n11) wil: Trade G2 R2 Wil\n\n12) Marmalade: Trade G1 R1 Formalhaut\n\n13) wil: Trade G1 B1 Wil\n\n14) Marmalade: Build G1 Formalhaut\n\n15) wil: Build B2 Wil\n\n16) Marmalade: Build R1 Formalhaut\n\n17) wil: Discover G2 Y3 Y2 Y2\n\n18) Marmalade: Trade G2 Y2 Marmalade\n\n19) wil: Move B1 Wil Y3\n\n20) Marmalade: Sacrifice Y2 Marmalade\nMove G3 Formalhaut Y3\nMove R1 Formalhaut Y3\n\n21) wil: Sacrifice G2 Y2\nBuild G1 Y3\nBuild G2 Y3\nCatastrophe Y3 G\n\n22) Marmalade: Attack B1N Y3\n\n23) wil: Discover B2 Wil G3 G3\n\n24) Marmalade: Build G1 Marmalade\n\n25) wil: Build B2 G3\n\n26) Marmalade: Sacrifice G3 Marmalade\nBuild B3 Y3\nBuild B3 Y3\nBuild G1 Marmalade\n\n27) wil: Build B3 G3\n\n28) Marmalade: Trade B3 G3 Y3\n\twil: wow\n\n29) wil: Sacrifice B2 G3\nTrade B3 R3 G3\nTrade B2 Y2 G3\n\twil: you sure made it get interesting fast!\n\n30) Marmalade: Move G3 Y3 Formalhaut\n\tMarmalade: heehee cheers\r\n\n\n31) wil: Sacrifice Y2 G3\nMove R3 G3 Formalhaut\nMove R3 Formalhaut Marmalade\n\n32) Marmalade: Build G2 Marmalade\n\n33) wil: Sacrifice R2 Wil\nAttack G2 Marmalade\nAttack G1 Marmalade\n\twil: I think I got outta the jam and into the marmalade\n\twil: I'm still new to this game... it took me 10 games just to learn the system halfway...the past 20 games I've been winning some and losing some...every loss teaches me something that I didn't see coming.... one rule...always keep a queen (3pip) in your homeworld (unless she goes out for the kill) \n\twil: I'm still new to this game... it took me 10 games just to learn the system halfway...the past 20 games I've been winning some and losing some...every loss teaches me something that I didn't see coming.... one rule...always keep a queen (3pip) in your homeworld (unless she goes out for the kill) \n\n34) Marmalade: Trade G1 R1 Marmalade\n\tMarmalade: Yep, think I may have screwed up here.\r\n\r\nI was trying to gain an advantage in size-three ships, and didn't see the trade for red/double-move, which may have been the only thing that could have saved me.\n\n35) wil: Attack R1 Marmalade\n\twil: It was a valid plan....another hint I've learned...anytime anyone trades for a yellow...especially a two or three pip....look at where they can move..they are usually getting set for an attack someplace...\n\n\tMarmalade: yeah, no way out of this one.\r\n\r\nCheers :)\n\twil: diving into my homeworld with your triple blue would have extended the game and given me a chance to do something stupid...another thing I've learned....prolonging the game provides opportunities for openings when it appears all is lost as the dominator gets cocky....a reboot (catastrophe or two) changes the game quickly.... good game...love to play another when you are interested....this is definitely a game you learn by losing...\n\nHomeworlds Online (SDG# 24193)\nVariants: "Hard time"\nStarted: 2013.6.24, Ended: 2013.12.8\nParticipants: Danner (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) Danner: Homeworld B1 R2 G3\n\tDanner: Wow, this will be epic! The top ladder position is at stake, and I'm playing with the player with the highest rating!\r\nGood luck!\n\n3) TwoShort: Build G1 Twoshort\n\n4) Danner: Build G1 Danner\n\n5) TwoShort: Trade G1 B1 Twoshort\n\tDanner: How do you resolve cycles in games?\n\n6) Danner: Trade G1 B1 Danner\n\tTwoShort: There isn't an explicit rule, so my theory is that if neither player is willing to break the cycle it's a draw. It's easy to construct artificial examples where both players should take a draw; and I've seen the potential in past games, and considered whether I wanted a draw, but I've never seen it actually happen.\r\n\n\tTwoShort: There isn't an explicit rule, so my theory is that if neither player is willing to break the cycle it's a draw. It's easy to construct artificial examples where both players should take a draw; and I've seen the potential in past games, and considered whether I wanted a draw, but I've never seen it actually happen.\r\n\n\tTwoShort: Not sure why I got the double post there. Anyway, I'd think it was kind of neat if a game led to such a situation, but the lack of an "offer draw" button here would be a pain :)\r\n\n\n7) TwoShort: Build B2 Twoshort\n\tDanner: I use the same rule in offline games! :) But as you said, there is no draw button. :(\r\nI have encountered such a situation. If you are interested in it: http://superdupergames.org/?page=archive_play&gid=22703&idx=19\n\n8) Danner: Build B2 Danner\n\n9) TwoShort: Trade B2 Y2 Twoshort\n\n10) Danner: Trade B2 Y2 Danner\n\n11) TwoShort: Build B2 Twoshort\n\n12) Danner: Build B2 Danner\n\tTwoShort: I can't decide if I think someone has a better move in that one...\n\tTwoShort: But in any case, there are possible positions where it is clear whoever breaks the cycle loses. So by the default ko rule, there ought to be a draw button :)\r\n\n\n13) TwoShort: Trade B2 R2 Twoshort\n\tDanner: Indeed!\n\n14) Danner: Trade B2 R2 Danner\n\n15) TwoShort: Discover B1 Twoshort G2 Grogar\n\n16) Danner: Discover B1 Danner G3 Ragorg\n\n17) TwoShort: Build B2 Grogar\n\n18) Danner: Build B2 Ragorg\n\n19) TwoShort: Trade B1 R1 Grogar\n\n20) Danner: Trade B1 R1 Ragorg\n\n21) TwoShort: Build R3 Grogar\n\n22) Danner: Build R3 Ragorg\n\n23) TwoShort: Discover R2 Twoshort G2 Greenland\n\n24) Danner: Trade R1 Y1 Ragorg\n\n25) TwoShort: Trade R3 Y3 Grogar\n\n26) Danner: Build B1 Ragorg\n\n27) TwoShort: Discover R1 Grogar Y3 Yolonda\n\n28) Danner: Build Y1 Danner\n\n29) TwoShort: Build Y1 Grogar\n\n30) Danner: Move R2 Danner Yolonda\n\n31) TwoShort: Move Y3 Grogar Yolonda\n\n32) Danner: Move Y1 Danner Yolonda\n\n33) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Grogar\nBuild Y3 Twoshort\nBuild B1 Grogar\n\n34) Danner: Attack R1 Yolonda\n\n35) TwoShort: Sacrifice B2 Grogar\nTrade Y2 G2 Twoshort\nTrade Y3 G3 Yolonda\n\n36) Danner: Move R3 Ragorg Grogar\n\n37) TwoShort: Sacrifice R2 Greenland\nAttack R2 Yolonda\nAttack R1 Yolonda\n\n38) Danner: Sacrifice G3 Danner\nBuild Y2 Yolonda\nBuild Y3 Yolonda\nBuild R1 Grogar\nCatastrophe Yolonda Y\n\n39) TwoShort: Discover Y2 Grogar G3 Greenland\n\n40) Danner: Attack Y1 Grogar\n\n41) TwoShort: Build G1 Twoshort\n\n42) Danner: Move R3 Grogar Greenland\n\n43) TwoShort: Build Y1 Greenland\n\n44) Danner: Trade Y2 G2 Danner\n\n45) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Greenland\nBuild B2 Grogar\n\n46) Danner: Move Y1 Grogar Greenland\nCatastrophe Greenland Y\n\n47) TwoShort: Trade B2 R2 Grogar\n\n48) Danner: Build R1 Grogar\n\n49) TwoShort: Build B2 Grogar\n\n50) Danner: Build R2 Greenland\n\n51) TwoShort: Sacrifice R2 Grogar\nAttack R1 Grogar\nAttack R1 Grogar\n\n52) Danner: Sacrifice B1 Ragorg\nTrade R3 Y3 Greenland\n\n53) TwoShort: Trade B2 Y2 Grogar\n\tDanner: Sorry for being so slow. School, work, competitions...\n\n54) Danner: Build R2 Greenland\n\n55) TwoShort: Discover R1 Grogar G3 Gondor\n\n56) Danner: Sacrifice B2 Ragorg\nTrade R2 B2 Greenland\nPass\n\n57) TwoShort: Build R2 Grogar\n\n58) Danner: Build R3 Greenland\n\n59) TwoShort: Build R3 Gondor\n\n60) Danner: Move Y3 Greenland Danner\n\n61) TwoShort: Sacrifice Y2 Grogar\nMove R2 Grogar Greenland\nMove R1 Grogar Greenland\nCatastrophe Greenland Red\n\n62) Danner: Build G1 Danner\n\n63) TwoShort: Build Y1 Twoshort\n\n64) Danner: Trade G2 R2 Danner\n\n65) TwoShort: Move Y1 Twoshort Grogar\n\n66) Danner: Move R2 Danner Ragorg\n\n67) TwoShort: Build Y1 Twoshort\n\n68) Danner: Build Y2 Danner\n\n69) TwoShort: Build Y2 Grogar\n\n\tDanner: Ooops, sorry. And thanks for the game.\n\nHomeworlds Online (SDG# 24195)\nVariants: "Hard time"\nStarted: 2013.6.24, Ended: 2013.6.27\nParticipants: Broccoli_Commander (S), sordros (N)\nWinner: Broccoli_Commander\n\n\nHomeworlds Online (SDG# 24160)\nVariants: "No undo, Unrated, Hard time"\nStarted: 2013.6.24, Ended: 2013.6.27\nParticipants: Argel (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 24101)\nVariants: "Unrated, Hard time"\nStarted: 2013.6.24, Ended: 2013.6.27\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24200)\nStarted: 2013.6.26, Ended: 2014.8.30\nParticipants: guntz1092 (S), thejackdiaz (N)\nWinner: thejackdiaz\n\n1) thejackdiaz: Homeworld B2 G1 R3\n\tguntz1092: homeworld\n\tguntz1092: okay so this is the chat and not the command box...\n\n2) guntz1092: Homeworld G2 B1 R3\n\tguntz1092: homeworld G2 Y3 R3\n\n3) thejackdiaz: Build R1 Thejackdiaz\n\tguntz1092: uhm. this is going to be a really bad game /relearning x_x\n\n4) guntz1092: Build R1 Guntz1092\n\n5) thejackdiaz: Trade R3 Y3 Thejackdiaz\n\n6) guntz1092: Build R1 Guntz1092\n\n7) thejackdiaz: Build R2 Thejackdiaz\n\tguntz1092: lol\n\n8) guntz1092: Build R2 Guntz1092\n\n9) thejackdiaz: Discover R1 Thejackdiaz B3 Badmovedude\nCatastrophe Guntz1092 R\n\n\nHomeworlds Online (SDG# 24216)\nVariants: "No undo"\nStarted: 2013.6.27, Ended: 2013.7.3\nParticipants: scotward (S), Erik2point0 (N)\nWinner: scotward\n\n1) Erik2point0: Homeworld G2 B1 R3\n\n2) scotward: Homeworld B3 R1 G3\n\n3) Erik2point0: Build R1 Erik2point0\n\n4) scotward: Build G1 Scotward\n\n5) Erik2point0: Trade R1 Y1 Erik2point0\n\n6) scotward: Build G1 Scotward\n\n7) Erik2point0: Build R1 Erik2point0\n\n8) scotward: Trade G1 Y1 Scotward\n\n9) Erik2point0: Trade R1 G1 Erik2point0\n\n10) scotward: Trade G1 B1 Scotward\n\n11) Erik2point0: Build G1 Erik2point0\n\n12) scotward: Build B1 Scotward\n\n13) Erik2point0: Build R1 Erik2point0\n\n14) scotward: Build G1 Scotward\n\n15) Erik2point0: Discover G1 Erik2point0 G3 Biggreen\n\n16) scotward: Discover B1 Scotward G2 Alpha\n\n17) Erik2point0: Build Y1 Erik2point0\n\n18) scotward: Build B2 Alpha\n\n19) Erik2point0: Discover Y1 Erik2point0 G3 Alsobiggreen\n\n20) scotward: Build Y2 Scotward\n\n21) Erik2point0: Build G2 Erik2point0\n\n22) scotward: Discover Y2 Scotward B2 Beta\n\n23) Erik2point0: Move G2 Erik2point0 Alsobiggreen\n\n24) scotward: Sacrifice G3 Scotward\nBuild B2 Alpha\nBuild B3 Scotward\nBuild G3 Scotward\n\n25) Erik2point0: Move Y1 Alsobiggreen Erik2point0\n\n26) scotward: Move B3 Scotward Beta\n\n27) Erik2point0: Sacrifice G2 Alsobiggreen\nBuild G2 Biggreen\nBuild G3 Erik2point0\n\n28) scotward: Sacrifice G3 Scotward\nBuild Y2 Beta\nBuild B3 Beta\nBuild G3 Scotward\n\n29) Erik2point0: Sacrifice Y1 Erik2point0\nDiscover G1 Biggreen Y2 Medyellow\n\tErik2point0: Man I screwed this game up\n\n30) scotward: Sacrifice B3 Beta\nTrade B3 Y3 Beta\nTrade Y2 R2 Beta\nTrade B2 R2 Alpha\n\n31) Erik2point0: Discover G1 Erik2point0 B3 Bigblue\n\n32) scotward: Move Y3 Beta Bigblue\n\n33) Erik2point0: Move R3 Erik2point0 Bigblue\n\n34) scotward: Sacrifice R2 Alpha\nAttack R3 Bigblue\nAttack G1 Bigblue\n\n35) Erik2point0: Build Y1 Erik2point0\n\n36) scotward: Sacrifice Y2 Beta\nMove Y3 Bigblue Erik2point0\nMove R3 Bigblue Erik2point0\n\tErik2point0: Ugh\n\n37) Erik2point0: Attack R3 Erik2point0\n\n38) scotward: Sacrifice R2 Beta\nAttack R3 Erik2point0\nAttack G3 Erik2point0\n\tscotward: Resistance is futile!\n\n39) Erik2point0: Sacrifice G2 Biggreen\nBuild R1 Erik2point0\nBuild R2 Erik2point0\nCatastrophe Erik2point0 Red\n\tErik2point0: Mommy!\n\n40) scotward: Sacrifice G3 Erik2point0\nBuild Y2 Erik2point0\nPass\nPass\nCatastrophe Erik2point0 Y\n\n\nHomeworlds Online (SDG# 24208)\nVariants: "Hard time"\nStarted: 2013.6.28, Ended: 2013.6.28\nParticipants: Broccoli_Commander (S), Marmalade (N)\nWinner: Broccoli_Commander\n\n1) Marmalade: Homeworld B1 Y2 G3\n\n2) Broccoli_Commander: Homeworld B1 G3 Y3\n\n3) Marmalade: Build G1 Marmalade\n\n4) Broccoli_Commander: Build Y1 Broccoli_commander\n\n5) Marmalade: Discover G1 Marmalade G3 Tau_ceti\n\tBroccoli_Commander: Hi!\n\n6) Broccoli_Commander: Trade Y1 B1 Broccoli_commander\n\tMarmalade: Hello there :)\n\n7) Marmalade: Build G1 Marmalade\n\n8) Broccoli_Commander: Build B2 Broccoli_commander\n\tBroccoli_Commander: Good luck and have fun dear Sir\n\n9) Marmalade: Discover G1 Marmalade B3 Formalhaut\n\n10) Broccoli_Commander: Discover B2 Broccoli_commander Y2 Cauliflower\n\n11) Marmalade: Build G1 Formalhaut\n\n12) Broccoli_Commander: Move B2 Cauliflower Formalhaut\n\n13) Marmalade: Trade G1 R1 Formalhaut\n\n14) Broccoli_Commander: Trade B2 R2 Formalhaut\n\n15) Marmalade: Trade G1 R1 Formalhaut\n\n16) Broccoli_Commander: Build B2 Broccoli_commander\n\n17) Marmalade: Build G1 Marmalade\n\n18) Broccoli_Commander: Discover B2 Broccoli_commander Y2 Cauliflower\n\n19) Marmalade: Build G1 Tau_ceti\n\n20) Broccoli_Commander: Trade B2 G2 Cauliflower\n\n21) Marmalade: Build G2 Marmalade\n\n22) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nDiscover G2 Cauliflower R3 Thxforthegame\nMove G2 Thxforthegame Marmalade\nMove R2 Formalhaut Marmalade\nCatastrophe Marmalade G\n\tBroccoli_Commander: Thanks for the live play! :-)\n\tMarmalade: Damn, I didn't see that at all.\r\n\r\nThanks for the game. I've yet to win a game of Homeworlds on here :)\r\n\n\tBroccoli_Commander: Well that's the danger of trying to get an early color monopoly... The payoff for the factory would have been great though. This is why I liked your opening! \r\n\r\nBut then I think you lost too much time by defending your little green ships in Formalhaut: \r\n-You could maybe have "teleported" them (sac g1 to rebuild it \r\nsomewhere else)\r\n-Or just let me the possibility of attacking them. At least this would not have refilled the green stash as your trades did!\n\n\nHomeworlds Online (SDG# 24220)\nVariants: "Hard time"\nStarted: 2013.6.28, Ended: 2013.7.1\nParticipants: Marmalade (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) Marmalade: Homeworld B1 R3 G3\n\tBroccoli_Commander: Hello again - I won't play it as fast as the last one :-P\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tMarmalade: This is probably my eighth or ninth game of Homeworlds, total. I've lost all of the online ones, and won all the face-to-face ones, but that's mostly as I've been teaching people how to play.\r\n\r\nI wanted to try Homeworlds for ages, and just recently imported some pyramids for the purpose.\n\tBroccoli_Commander: Imported? Where do you live?\r\n\r\nAnd don't worry about the online losses there are some monsters online... Plus Homeworlds is not particularly forgiving for mistakes\r\n\r\nAnd well this must only be my 20th game or so. I received some pyramids recently and we tried homeworlds once with a friend by chance. We didn't know it before but I thought it was a great game. Unfortunately I don't get a lot of opportunities to play it in real life so I'm really glad that there is this website!\n\n4) Marmalade: Build G1 Marmalade\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) Marmalade: Trade G1 Y1 Marmalade\n\tMarmalade: The UK - Looney Pyramids failed their EU safety check thing a couple of years ago, so retailers can't sell pyramids in Europe (outside retailers selling to individuals is fine). Looking at the paperwork, it looks like something that could be easily argued against, but it's probably not within Looney Lab's means (especially as their main market is in the US).\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) Marmalade: Build G1 Marmalade\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\tBroccoli_Commander: Ah OK this explains why I could not find them either! (I actually wanted to buy the proper colors for homeworlds) I'm living in switzerland btw.\r\n\r\nI guess the pyramids are too pointy -_- \n\n10) Marmalade: Discover G1 Marmalade Y2 Mote\n\n11) Broccoli_Commander: Build Y1 Broccoli_commander\n\n12) Marmalade: Build Y2 Marmalade\n\n13) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry\n\tMarmalade: What, you don't get the urge to jam them into your eyes?\n\n14) Marmalade: Discover Y2 Marmalade B2 Dust\n\n15) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y2 Broccoli_commander\nBuild Y3 Broccoli_commander\nBuild Y3 Blueberry\n\n16) Marmalade: Build Y3 Marmalade\n\n17) Broccoli_Commander: Trade Y1 R1 Broccoli_commander\n\tBroccoli_Commander: haha :-p\n\n18) Marmalade: Trade Y1 R1 Marmalade\n\n19) Broccoli_Commander: Trade Y3 G3 Broccoli_commander\n\n20) Marmalade: Build R2 Marmalade\n\n21) Broccoli_Commander: Build R2 Broccoli_commander\n\n22) Marmalade: Move R2 Marmalade Dust\n\n23) Broccoli_Commander: Move R2 Broccoli_commander Blueberry\n\n24) Marmalade: Move G3 Marmalade Dust\n\n25) Broccoli_Commander: Build Y1 Broccoli_commander\n\n26) Marmalade: Move G1 Mote Marmalade\n\n27) Broccoli_Commander: Trade Y1 B1 Blueberry\n\n28) Marmalade: Build Y1 Dust\n\n29) Broccoli_Commander: Build B1 Blueberry\n\n30) Marmalade: Discover R1 Marmalade G2 Grit\n\n31) Broccoli_Commander: Move Y3 Blueberry Grit\n\n32) Marmalade: Sacrifice Y2 Dust\nMove G3 Dust Marmalade\nMove G3 Marmalade Grit\n\n33) Broccoli_Commander: Sacrifice R2 Blueberry\nAttack R1 Grit\nAttack G3 Grit\n\n34) Marmalade: Build G1 Marmalade\n\n35) Broccoli_Commander: Sacrifice G3 Grit\nBuild G2 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Blueberry\n\tBroccoli_Commander: errr... you didn't know about that?\n\n36) Marmalade: Trade R2 B2 Dust\n\tMarmalade: Nah, I'm just being dense.\n\n37) Broccoli_Commander: Sacrifice Y1 Broccoli_commander\nMove B1 Blueberry Grit\n\n38) Marmalade: Sacrifice G1 Marmalade\nBuild B3 Dust\n\n39) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild B3 Grit\nBuild R2 Grit\n\n40) Marmalade: Discover B3 Dust R3 Speck\n\n41) Broccoli_Commander: Sacrifice Y2 Broccoli_commander\nMove Y3 Grit Marmalade\nMove B3 Grit Marmalade\n\n42) Marmalade: Attack Y3N Marmalade\n\n43) Broccoli_Commander: Sacrifice R2 Grit\nAttack Y3 Marmalade\nAttack Y3 Marmalade\n\n44) Marmalade: Move Y1 Dust Blueberry\n\n45) Broccoli_Commander: Attack G1 Marmalade\n\tMarmalade: Cheers for the game!\n\n\nHomeworlds Online (SDG# 24219)\nVariants: "Hard time"\nStarted: 2013.6.28, Ended: 2013.7.4\nParticipants: Broccoli_Commander (S), shmil1 (N)\nWinner: Broccoli_Commander\n\n1) shmil1: Homeworld R1 B2 G3\n\n2) Broccoli_Commander: Homeworld R2 B3 G3\n\n3) shmil1: Build G1 Shmil1\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) shmil1: Trade G1 Y1 Shmil1\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n7) shmil1: Build G1 Shmil1\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) shmil1: Trade G1 R1 Shmil1\n\n10) Broccoli_Commander: Discover G1 Broccoli_commander B1 Blueberry\n\n11) shmil1: Build G1 Shmil1\n\n12) Broccoli_Commander: B G1 Broccoli_commander\n\n13) shmil1: Build G2 Shmil1\n\n14) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\n15) shmil1: Discover G1 Shmil1 Y3 Slunce\n\n16) Broccoli_Commander: Build G3 Broccoli_commander\n\n17) shmil1: Move G1 Slunce Blueberry\nCatastrophe Blueberry G\n\n18) Broccoli_Commander: Discover G3 Broccoli_commander B1 Blueberry\n\n19) shmil1: Discover R1 Shmil1 Y3 Slunce2\n\n20) Broccoli_Commander: Build G1 Blueberry\n\n21) shmil1: Sacrifice G2 Shmil1\nBuild R1 Slunce2\nBuild G1 Shmil1\n\n22) Broccoli_Commander: Trade G3 R3 Blueberry\n\n23) shmil1: Discover R1 Slunce2 B1 Obloha1\n\n24) Broccoli_Commander: Build G2 Blueberry\n\n25) shmil1: Move R1 Slunce2 Obloha1\n\n26) Broccoli_Commander: Trade G2 Y2 Blueberry\n\n27) shmil1: Sacrifice G1 Shmil1\nBuild R2 Obloha1\n\n28) Broccoli_Commander: Build R2 Blueberry\n\n29) shmil1: Trade R1 Y1 Obloha1\n\n30) Broccoli_Commander: Discover R2 Blueberry Y3 Cauliflower\n\n31) shmil1: Trade R1 G1 Obloha1\n\n32) Broccoli_Commander: Build G2 Blueberry\n\n33) shmil1: Build G2 Obloha1\n\n34) Broccoli_Commander: Move G2 Blueberry Cauliflower\n\n35) shmil1: Sacrifice G2 Obloha1\nBuild G2 Obloha1\nBuild Y2 Obloha1\n\n36) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Cauliflower\nBuild G3 Broccoli_commander\n\n37) shmil1: Sacrifice Y2 Obloha1\nMove G1 Obloha1 Broccoli_commander\nMove G2 Obloha1 Broccoli_commander\nCatastrophe Broccoli_commander G\n\n38) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild Y2 Broccoli_commander\nBuild R1 Blueberry\n\n39) shmil1: Build Y2 Shmil1\n\n40) Broccoli_Commander: Move R3 Blueberry Broccoli_commander\n\n41) shmil1: Build Y3 Shmil1\n\n42) Broccoli_Commander: Sacrifice Y2 Broccoli_commander\nMove Y2 Blueberry Cauliflower\nMove Y2 Cauliflower Shmil1\nCatastrophe Shmil1 Y\n\n43) shmil1: Build G1 Shmil1\n\n44) Broccoli_Commander: Move G3 Cauliflower Shmil1\n\n45) shmil1: Attack G3 Shmil1\n\n\tshmil1: nice :)\n\tBroccoli_Commander: Thx :-)\n\nHomeworlds Online (SDG# 24224)\nVariants: "Hard time"\nStarted: 2013.6.28, Ended: 2013.9.27\nParticipants: zoltar (S), ts52 (N)\nWinner: zoltar\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) zoltar: Homeworld B3 R1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tzoltar: You too!\n\n4) zoltar: Build G1 Zoltar\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) zoltar: Trade G1 Y1 Zoltar\n\n7) ts52: Trade G1 Y1 Grover\n\n8) zoltar: Build Y2 Zoltar\n\n9) ts52: Build G1 Ts52\n\n10) zoltar: Build Y2 Zoltar\n\n11) ts52: Move G1 Ts52 Grover\n\n12) zoltar: Trade Y1 R1 Zoltar\n\n13) ts52: Build G1 Ts52\n\n14) zoltar: Build R1 Zoltar\n\n15) ts52: Trade G3 R3 Ts52\n\n16) zoltar: Trade R1 B1 Zoltar\n\n17) ts52: Build G1 Ts52\n\n18) zoltar: Build G2 Zoltar\n\n19) ts52: Build G2 Grover\n\n20) zoltar: Discover G2 Zoltar B2 Bluebird\n\n21) ts52: Discover G1 Ts52 B3 Gonzo\n\n22) zoltar: Build G2 Zoltar\n\n23) ts52: B G3 Gonzo\n\n24) zoltar: Build G3 Bluebird\n\n25) ts52: Trade G2 Y2 Grover\n\n26) zoltar: Trade G2 R2 Bluebird\n\n27) ts52: Discover Y1 Grover G2 Kermit\n\n28) zoltar: Move Y2 Zoltar Bluebird\n\n29) ts52: Build G2 Grover\n\n30) zoltar: Move R1 Zoltar Kermit\n\n31) ts52: Move Y1 Kermit Gonzo\n\n32) zoltar: Move R2 Bluebird Grover\n\n33) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y1 Gonzo\nBuild Y3 Grover\n\n34) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y3 Zoltar\nBuild Y3 Bluebird\n\n35) ts52: Trade Y3 R3 Grover\n\n36) zoltar: Sacrifice Y2 Bluebird\nMove R2 Grover Bluebird\nMove Y2 Zoltar Kermit\n\n37) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y2 Gonzo\nBuild Y3 Grover\n\n38) zoltar: Move Y2 Kermit Gonzo\nCatastrophe Gonzo Y\n\n39) ts52: Trade G3 R3 Gonzo\n\n40) zoltar: Sacrifice G2 Zoltar\nBuild G2 Bluebird\nBuild G3 Zoltar\n\n41) ts52: Sacrifice Y2 Grover\nMove G1 Grover Bluebird\nMove G2 Grover Bluebird\nCatastrophe Bluebird G\n\n42) zoltar: Move G3 Zoltar Bluebird\n\n43) ts52: Trade R3 G3 Grover\n\n44) zoltar: Discover G3 Bluebird R3 Redgiant\n\n45) ts52: Build Y1 Grover\n\n46) zoltar: Build Y1 Zoltar\n\n47) ts52: Move Y3 Grover Kermit\n\n48) zoltar: Build G1 Redgiant\n\n49) ts52: Build Y2 Kermit\n\n50) zoltar: Move Y1 Zoltar Kermit\n\n51) ts52: Move Y3 Kermit Gonzo\n\n52) zoltar: Build G2 Zoltar\n\n53) ts52: Build G2 Grover\n\n54) zoltar: Sacrifice G3 Redgiant\nBuild G3 Redgiant\nBuild Y2 Kermit\nBuild Y2 Zoltar\n\n55) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild R1 Ts52\nBuild R2 Gonzo\n\n56) zoltar: Attack Y2 Kermit\n\n57) ts52: Move Y1 Grover Kermit\nCatastrophe Kermit Yellow\n\n58) zoltar: Sacrifice G3 Redgiant\nBuild G3 Redgiant\nBuild R2 Bluebird\nBuild Y1 Bluebird\n\n59) ts52: Move R3 Gonzo Kermit\n\n60) zoltar: Sacrifice G3 Redgiant\nBuild G3 Redgiant\nBuild Y1 Bluebird\nBuild Y2 Zoltar\n\n61) ts52: Attack R1 Kermit\n\n62) zoltar: Discover B1 Zoltar Y2 Goldeneye\n\n63) ts52: Move R2 Gonzo Goldeneye\n\n64) zoltar: Sacrifice Y2 Zoltar\nMove G3 Redgiant Goldeneye\nMove Y3 Bluebird Redgiant\n\n65) ts52: Build Y2 Gonzo\n\n66) zoltar: Sacrifice Y2 Zoltar\nMove Y1 Bluebird Gonzo\nMove Y1 Bluebird Gonzo\nCatastrophe Gonzo Y\n\n67) ts52: Trade G2 Y2 Grover\n\n68) zoltar: Sacrifice G3 Zoltar\nBuild G2 Redgiant\nBuild G3 Zoltar\nBuild Y1 Zoltar\n\n69) ts52: Build Y1 Grover\n\n70) zoltar: Move Y3 Zoltar Bluebird\n\n71) ts52: Move Y1 Grover Kermit\n\n72) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Zoltar\nBuild Y3 Bluebird\n\n73) ts52: Attack B1 Goldeneye\n\n74) zoltar: Sacrifice R2 Bluebird\nAttack R2 Goldeneye\nAttack B1 Goldeneye\n\n75) ts52: Move R1 Ts52 Grover\n\n76) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild R2 Bluebird\nBuild B1 Goldeneye\n\n77) ts52: Move R1 Kermit Gonzo\n\n78) zoltar: Move Y3 Bluebird Gonzo\n\n79) ts52: Sacrifice Y2 Grover\nMove R1 Grover Bluebird\nMove R1 Gonzo Bluebird\nCatastrophe Bluebird Red\n\n80) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y2 Gonzo\nBuild B1 Goldeneye\n\n81) ts52: Sacrifice G3 Grover\nBuild G3 Gonzo\nBuild R1 Kermit\nBuild R1 Ts52\n\n82) zoltar: Sacrifice R2 Goldeneye\nAttack G3 Gonzo\nAttack G1 Gonzo\n\n83) ts52: Move R3 Kermit Gonzo\n\n84) zoltar: Trade G2 R2 Zoltar\n\n85) ts52: Attack Y3 Gonzo\n\n86) zoltar: Sacrifice R2 Zoltar\nAttack R3 Gonzo\nAttack Y3 Gonzo\n\n87) ts52: Build R2 Kermit\n\n88) zoltar: Move B1 Goldeneye Redgiant\n\n89) ts52: Build R2 Kermit\n\n90) zoltar: Sacrifice G2 Redgiant\nBuild B2 Redgiant\nBuild B3 Redgiant\n\n91) ts52: Move R1 Kermit Redgiant\n\tts52: I'm pretty sure I'm not coming back from this one.\n\n92) zoltar: Sacrifice Y3 Bluebird\nMove B3 Redgiant Ts52\nMove G3 Gonzo Ts52\nMove Y3 Redgiant Ts52\n\n\tzoltar: However, the Zoltarian Empire declines the offer and instead has sent a peace delegation, consisting of representatives from the 3 non-warrior casts, the merchants, breeders, and engineers, to extend goodwill and promote the annexation of the ts52 homeworld into the Zoltarian Empire. It has been decided that with all the defections, annexing the rebel homeworld would be a more compassionate response than sending its stars into supernova, as had been planned.\n\tts52: Well done sir. The citizens of the ts52 homeworld accept the holy word of Zoltar and his bountiful offering of peace, and convert.\n\nHomeworlds Online (SDG# 24221)\nVariants: "Hard time"\nStarted: 2013.6.29, Ended: 2013.7.15\nParticipants: Marmalade (S), wil (N)\nWinner: Marmalade\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Marmalade: Homeworld R1 B3 G3\n\n3) wil: Build G1 Wil\n\n4) Marmalade: Build G1 Marmalade\n\n5) wil: Discover G1 Wil Y3 Y3\n\n6) Marmalade: Trade G1 Y1 Marmalade\n\n7) wil: Build G1 Wil\n\n8) Marmalade: Build Y1 Marmalade\n\n9) wil: Trade G1 Y1 Wil\n\n10) Marmalade: Build Y2 Marmalade\n\n11) wil: Discover Y1 Wil G3 G3\n\n12) Marmalade: Discover Y2 Marmalade G2 Sinistra\n\n13) wil: Build Y2 G3\n\n14) Marmalade: Build Y3 Sinistra\n\n15) wil: Discover Y1 G3 G2 G2\n\n16) Marmalade: Trade Y1 R1 Marmalade\n\n17) wil: Trade G3 R3 Wil\n\twil: crap\n\n18) Marmalade: Build G1 Marmalade\n\tMarmalade: I thought this far ahead, but I have no idea where to go from here, without screwing myself :)\n\n19) wil: Build G1 Y3\n\n20) Marmalade: Build R1 Marmalade\n\twil: thats what they all say....\n\n21) wil: Move G1 Y3 Wil\n\n22) Marmalade: Move Y2 Sinistra G3\n\n23) wil: Move Y2 G3 G2\n\n24) Marmalade: Move Y2 G3 G2\n\n25) wil: Sacrifice Y2 G2\nDiscover Y1 G2 G3 G3\nDiscover Y1 G3 G2 G2a\n\n26) Marmalade: Move R1 Marmalade Sinistra\n\n27) wil: Build G3 Wil\n\n28) Marmalade: Sacrifice G3 Marmalade\nBuild G3 Marmalade\nBuild G3 Marmalade\nBuild R2 Sinistra\n\n29) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Wil\nBuild Y1 G2a\n\n30) Marmalade: Sacrifice G3 Marmalade\nBuild G3 Marmalade\nBuild Y2 Sinistra\nBuild Y3 G2\n\n31) wil: Discover Y1 G2a B3 B3\n\n32) Marmalade: Move R2 Sinistra Y3\n\n33) wil: Move R3 Wil Y3\n\n34) Marmalade: Sacrifice G3 Marmalade\nBuild G3 Marmalade\nBuild R2 Y3\nBuild R3 Y3\nCatastrophe Y3 R\n\n35) wil: Sacrifice G1 Y3\nBuild Y3 G2a\n\n36) Marmalade: Sacrifice Y3 G2\nMove Y2 G2 B3\nMove Y2 B3 G2a\nMove Y1 Marmalade G2a\nCatastrophe G2a Y\n\n37) wil: Build R2 Wil\n\n38) Marmalade: Build R2 Sinistra\n\n39) wil: Discover G1 Wil Y3 Y3\n\n40) Marmalade: Sacrifice G3 Marmalade\nBuild R3 Marmalade\nBuild R3 Sinistra\nBuild Y1 Sinistra\n\n41) wil: Move Y1 B3 Sinistra\nCatastrophe Sinistra Y\n\n42) Marmalade: Trade G1 B1 Marmalade\n\n43) wil: Move R2 Wil Y3\n\n44) Marmalade: Sacrifice B1 Marmalade\nTrade R2 Y2 Sinistra\n\n45) wil: Build G1 Wil\n\n46) Marmalade: Trade R1 Y1 Marmalade\n\n47) wil: Build R1 Wil\n\n48) Marmalade: Move R3 Sinistra Y3\n\n49) wil: Build R2 Y3\n\n50) Marmalade: Attack G1N Y3\n\n51) wil: Move R2 Wil Y3\nCatastrophe Y3 R\n\n52) Marmalade: Build G1 Y3\n\n53) wil: Discover G1 Wil Y3 Pftt\n\n54) Marmalade: Sacrifice Y2 Sinistra\nMove G1 Y3 Wil\nMove G1 Y3 Wil\n\n55) wil: Trade G3 R3 Wil\n\n56) Marmalade: Build G2 Marmalade\n\twil: oops\n\n57) wil: Attack G1 Wil\n\n58) Marmalade: Sacrifice G3 Marmalade\nBuild G2 Wil\nBuild G3 Marmalade\nBuild G3 Marmalade\n\n59) wil: Trade G1 B1 Wil\n\twil: a bread crumb?\n\n60) Marmalade: Trade G3 Y3 Marmalade\n\tMarmalade: Just trying something. Mostly trying to figure out how to end this :)\n\n61) wil: Attack G2 Wil\n\twil: if you'da grown three before i turned one it would be over...\n\twil: not that I am complaining....struggling at the end of the rope trying to find the escape hatchis worthy practice for me...\n\n62) Marmalade: Sacrifice G2 Marmalade\nBuild G1 Wil\nBuild G2 Wil\nCatastrophe Wil G\n\n63) wil: Trade R3 G3 Wil\n\n64) Marmalade: Move Y3 Marmalade Sinistra\n\n65) wil: Build R2 Wil\n\n66) Marmalade: Build R2 Marmalade\n\n67) wil: Build G1 Wil\n\n68) Marmalade: Move R3 Marmalade Sinistra\n\n69) wil: Trade R2 Y2 Wil\n\n70) Marmalade: Move R3 Sinistra Pftt\n\n71) wil: Discover G1 Pftt Y2 Y2\n\n72) Marmalade: Move R2 Marmalade Y2\n\n73) wil: Discover G1 Y2 Y3 Y3\n\n74) Marmalade: Build G1 Marmalade\n\n75) wil: Discover G1 Wil B3 B3\n\n76) Marmalade: Move G1 Marmalade Sinistra\n\n77) wil: Build G2 Wil\n\n78) Marmalade: Move G1 Sinistra Pftt\n\n79) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 Wil\nBuild G3 B3\n\n80) Marmalade: Build R2 Pftt\n\n81) wil: Move R1 Wil B3\n\n82) Marmalade: Move R2 Pftt Y2\n\n83) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\nBuild R2 B3\n\n84) Marmalade: Build R3 Pftt\n\n85) wil: Sacrifice Y1 Wil\nMove G3 B3 Y2\n\n86) Marmalade: Sacrifice Y3 Sinistra\nMove R2 Y2 B3\nMove R2 Y2 B3\nMove R3 Pftt Wil\nCatastrophe B3 R\n\n87) wil: Sacrifice Y2 Wil\nMove G3 Wil B3\nDiscover G2 Wil Y3 Escape2freedom\n\n88) Marmalade: Attack B1N Wil\n\n\twil: the civilians have left to populate other galaxies....as they see the evil hourde has polluted their own star system with its citrusy jam\n\tMarmalade: whee! Thanks for the game. That's the first online game of Homeworlds I've won, even if I did make a mess of it in the middle. Thanks for sticking with it.\n\twil: congrats to ya!! glad to be the sucker you beat!! that was an excellent move at the end...while I did see the triple threat with two queen attackers and your movement capablity I did not contemplate you wiping out my reds in the process of the attack....sweet....always looking to play again.\n\nHomeworlds Online (SDG# 24215)\nVariants: "No undo, Unrated, Hard time"\nStarted: 2013.6.29, Ended: 2013.7.2\nParticipants: Argel (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 24198)\nVariants: "Unrated, Hard time"\nStarted: 2013.6.29, Ended: 2013.7.2\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24153)\nVariants: "Hard time"\nStarted: 2013.6.29, Ended: 2013.7.2\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Broccoli_Commander: Homeworld R1 B3 G3\n\twil: ready to get my butt kicked again...\n\n3) wil: Build G1 Wil\n\tBroccoli_Commander: I'll try my best \n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) wil: Discover G1 Wil Y3 Y3\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n7) wil: Build G1 Wil\n\n8) Broccoli_Commander: Build Y1 Broccoli_commander\n\n9) wil: Trade G1 Y1 Wil\n\n10) Broccoli_Commander: Discover Y1 Broccoli_commander G2 Mint\n\n11) wil: Discover Y1 Wil G3 G3\n\n12) Broccoli_Commander: Build Y2 Mint\n\n13) wil: Build Y2 G3\n\twil: I do not have this opening right...\n\twil: I do not have this opening right...\n\n14) Broccoli_Commander: Build Y3 Broccoli_commander\n\n15) wil: Discover Y1 G3 G2 G2\n\tBroccoli_Commander: Not sure either... In fact I think you helped me by going yellow as well :-)\n\n16) Broccoli_Commander: Build Y3 Mint\n\n17) wil: Sacrifice G1 Y3\nBuild Y3 G3\n\n18) Broccoli_Commander: Sacrifice Y3 Mint\nMove Y1 Mint G3\nMove Y1 Broccoli_commander Mint\nMove Y1 Mint G3\nCatastrophe G3 Y\n\n19) wil: Build G1 Wil\n\twil: that didn't work out so well...\n\n20) Broccoli_Commander: Build G1 Broccoli_commander\n\n21) wil: Discover G1 Wil Y3 Y3\n\twil: that was worse than the way I did it..\n\n22) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\tBroccoli_Commander: ?\n\n23) wil: Build G1 Wil\n\n24) Broccoli_Commander: Build R1 Broccoli_commander\n\n25) wil: Build G1 Y3\n\n26) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nMove G3 Broccoli_commander G2\nMove G3 G2 Y3\nMove G3 Y3 Wil\n\n27) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 Wil\nCatastrophe Wil G\n\n\twil: How did I let that happen....and me with no gun again!!\r\n\n\nHomeworlds Online (SDG# 23856)\nVariants: "Unrated"\nStarted: 2013.7.3, Ended: 2013.9.2\nParticipants: Broccoli_Commander (S), OnePageWars (W), Marmalade (N), Leonard_Daniels (E)\nWinner: Marmalade\n\n1) Marmalade: Homeworld B2 Y1 G3\n\n2) Leonard_Daniels: Homeworld R3 B1 G3\n\tBroccoli_Commander: Hi everybody!\r\nSo this is north&south vs east&west? i.e. OnePageWars with Leonard_Daniels against Marmalade and myself?\r\n\r\nGood luck and have fun, and just so it is clear from the get-go: all your base are belong to us.\n\tBroccoli_Commander: Hey Marmalade, let's do the strategy you told me about this game! \r\n\r\nYou know, the whole pyramids eye jamming thing...\n\tMarmalade: That was my understanding, woo.\r\n\r\nGood luck guys.\n\tMarmalade: It was less of a strategy, and more of a compulsion. On the plus side, it has the advantage of surprise.\n\n3) Broccoli_Commander: Homeworld G1 Y2 B3\n\n4) Broccoli_Commander: Build B1 Broccoli_commander\n\tBroccoli_Commander: Errrr OnePageWars has been inactive for the last 40 days...Don't think he'll come back !?!\r\n\r\nDo you want to play last man standing instead? (in 2d and 16h)\n\tMarmalade: I'd be happy with that, but we'll see.\n\tLeonard_Daniels: Certainly I don't want to be in a team on my own.\n\n5) Marmalade: Build G1 Marmalade\n\n6) Leonard_Daniels: Build G1 Leonard_daniels\n\tBroccoli_Commander: ?! why was it my turn? It is a bug, isn't it?\n\n7) Broccoli_Commander: T B3 G3 Broccoli_commander\n\n8) Marmalade: Build G1 Marmalade\n\n9) Leonard_Daniels: Trade G1 Y1 Leonard_daniels\n\n10) Broccoli_Commander: Build B1 Broccoli_commander\n\n11) Marmalade: Trade G1 B1 Marmalade\n\n12) Leonard_Daniels: Build G1 Leonard_daniels\n\n13) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce\n\n14) Marmalade: Discover B1 Marmalade Y3 Paracetamol\n\n15) Leonard_Daniels: Trade G1 R1 Leonard_daniels\n\n16) Broccoli_Commander: Build G1 Broccoli_commander\n\n17) Marmalade: Trade G1 R1 Marmalade\n\n18) Leonard_Daniels: Build G1 Leonard_daniels\n\n19) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n20) Marmalade: Build G1 Marmalade\n\n\nHomeworlds Online (SDG# 24258)\nVariants: "No undo"\nStarted: 2013.7.3, Ended: 2013.7.14\nParticipants: scotward (S), Erik2point0 (N)\nWinner: scotward\n\n1) Erik2point0: Homeworld B1 G2 R3\n\n2) scotward: Homeworld R3 B2 G3\n\n3) Erik2point0: Build R1 Erik2point0\n\n4) scotward: Build G1 Scotward\n\n5) Erik2point0: Build R1 Erik2point0\n\n6) scotward: Build G1 Scotward\n\n7) Erik2point0: Trade R1 G1 Erik2point0\n\n8) scotward: Trade G1 B1 Scotward\n\n9) Erik2point0: Trade R1 Y1 Erik2point0\n\n10) scotward: Trade G1 Y1 Scotward\n\n11) Erik2point0: Build R1 Erik2point0\n\n12) scotward: Build B1 Scotward\n\n13) Erik2point0: Trade R3 B3 Erik2point0\n\n14) scotward: Discover B1 Scotward G1 Ares\n\n15) Erik2point0: Build B2 Erik2point0\n\n16) scotward: Sacrifice G3 Scotward\nBuild B2 Ares\nBuild B3 Ares\nBuild B3 Scotward\n\n17) Erik2point0: Trade B3 Y3 Erik2point0\n\n18) scotward: Sacrifice B2 Ares\nTrade B3 R3 Ares\nTrade B3 G3 Scotward\n\n19) Erik2point0: Build B2 Erik2point0\n\n20) scotward: Build B3 Ares\n\n21) Erik2point0: Discover B2 Erik2point0 G3 Washington\n\n22) scotward: Trade B1 Y1 Ares\n\n23) Erik2point0: Build Y2 Erik2point0\n\n24) scotward: Move R3 Ares Washington\n\n25) Erik2point0: Discover Y1 Erik2point0 G3 Adams\n\n26) scotward: Attack B2 Washington\n\n27) Erik2point0: Build Y2 Adams\n\n28) scotward: Move B3 Ares Adams\n\n29) Erik2point0: Build R1 Erik2point0\n\n30) scotward: Trade B3 R3 Adams\n\n31) Erik2point0: Sacrifice Y1 Adams\nMove Y2 Adams Ares\n\n32) scotward: Move Y1 Ares Adams\n\n33) Erik2point0: Discover Y2 Ares B3 Jefferson\n\n34) scotward: Build Y1 Adams\n\n35) Erik2point0: Trade Y2 G2 Jefferson\n\n36) scotward: Move Y1 Adams Erik2point0\n\n37) Erik2point0: Trade Y2 G2 Erik2point0\n\n38) scotward: Build Y2 Erik2point0\n\n39) Erik2point0: Trade Y3 B3 Erik2point0\n\n40) scotward: Trade Y1 B1 Erik2point0\nCatastrophe Erik2point0 B\n\n41) Erik2point0: Attack Y2 Erik2point0\n\n42) scotward: Move R3 Adams Erik2point0\n\n43) Erik2point0: Build R1 Erik2point0\nCatastrophe Erik2point0 Red\n\n44) scotward: Sacrifice Y1 Scotward\nMove R3 Washington Erik2point0\n\n\nHomeworlds Online (SDG# 24261)\nVariants: "Hard time"\nStarted: 2013.7.4, Ended: 2013.8.14\nParticipants: Mandrel (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) Mandrel: Homeworld B3 R2 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tMandrel: Have a good game.\n\n4) Mandrel: Build G1 Mandrel\n\tBroccoli_Commander: Thanks, you too\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) Mandrel: Build G1 Mandrel\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n10) Mandrel: Discover G1 Mandrel B1 Sale\n\n11) Broccoli_Commander: Build G1 Blueberry\n\n12) Mandrel: Build G2 Sale\n\n13) Broccoli_Commander: Build G2 Broccoli_commander\n\n14) Mandrel: Trade G1 R1 Sale\n\n15) Broccoli_Commander: Build G1 Blueberry\n\n16) Mandrel: Build R1 Sale\n\n17) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\nBuild G3 Broccoli_commander\n\n18) Mandrel: Build R2 Sale\nCatastrophe Blueberry Green\n\n19) Broccoli_Commander: Trade G3 R3 Broccoli_commander\n\n20) Mandrel: Trade R2 Y2 Sale\n\n21) Broccoli_Commander: Discover R3 Broccoli_commander Y3 Cauliflower\n\n22) Mandrel: Build R2 Sale\n\n23) Broccoli_Commander: Discover G2 Broccoli_commander R3 Tomatoe\n\n\nHomeworlds Online (SDG# 24232)\nVariants: "Hard time"\nStarted: 2013.7.5, Ended: 2013.7.10\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld R2 B1 G3\n\twil: ready willing and able to be abused yet again...\n\n2) Broccoli_Commander: Homeworld Y1 G3 B3\n\n3) wil: Build G1 Wil\n\tBroccoli_Commander: Always a pleasure.\n\twil: I've never seen this as an opeming, I figure you thought you could try anything with me.....lol\n\n4) Broccoli_Commander: Build B1 Broccoli_commander\n\n5) wil: Trade G1 B1 Wil\n\twil: okee dokee, I see I gotta get on the stick or be colored out..\n\n6) Broccoli_Commander: Discover B1 Broccoli_commander G2 Lettuce\n\tBroccoli_Commander: Hehe well You re awake...\n\n7) wil: Build B2 Wil\n\n8) Broccoli_Commander: Build B2 Lettuce\n\n9) wil: Trade B1 Y1 Wil\n\n10) Broccoli_Commander: Build B1 Broccoli_commander\n\n11) wil: Build B2 Wil\n\n12) Broccoli_Commander: Build B3 Lettuce\n\n13) wil: Discover B2 Wil Y3 Y3\n\n14) Broccoli_Commander: Trade B2 Y2 Lettuce\n\n15) wil: Move B2 Wil Y3\n\n16) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n17) wil: Trade B2 G2 Y3\n\n18) Broccoli_Commander: Discover B3 Lettuce Y3 Cauliflower\n\n19) wil: Build B2 Y3\n\n20) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Cauliflower\nBuild B3 Lettuce\nBuild B3 Broccoli_commander\n\n21) wil: Move B2 Y3 Lettuce\n\n22) Broccoli_Commander: Trade B1 R1 Lettuce\n\n23) wil: Build B1 Lettuce\n\n24) Broccoli_Commander: Move B3 Lettuce Y3\n\twil: I don't think I thought that out very well.\n\n25) wil: Trade B1 Y1 Lettuce\n\n26) Broccoli_Commander: Attack B2 Lettuce\n\n27) wil: Discover G2 Y3 Y2 Y2\n\n28) Broccoli_Commander: Sacrifice R1 Lettuce\nAttack B2 Y3\n\n29) wil: Discover Y1 Lettuce G3 G3\n\n30) Broccoli_Commander: Sacrifice B2 Y3\nTrade B3 R3 Y3\nTrade B2 R2 Cauliflower\n\n31) wil: Build G1 Wil\n\n32) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove R3 Y3 Wil\nMove B3 Cauliflower Wil\n\n33) wil: Move G3 Wil G3\n\n34) Broccoli_Commander: Sacrifice R2 Cauliflower\nAttack G1 Wil\nAttack Y1 Wil\n\twil: I fell for the get one take two again????\n\n\twil: We leave with the best and brightest to find a peaceful universe without such mean aggressors...\n\tBroccoli_Commander: Sorry, but all your base are belong to us :-D\r\n\r\nWell yes you fall for the get one take two again ^^\r\nBut it is, maybe, THE way to win for not too long games (otherwise it is catastrophing both hw stars and that surely takes a LOT of time)\r\n\r\nAnd otherwise how did you like that opening :-) ?\r\n\n\tBroccoli_Commander: or the infamous you take two I take three, but I think it is less common\n\nHomeworlds Online (SDG# 24230)\nVariants: "Hard time"\nStarted: 2013.7.9, Ended: 2013.7.15\nParticipants: Marmalade (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld G1 Y2 B3\n\n2) Marmalade: Homeworld Y3 B1 G3\n\tBroccoli_Commander: sup\n\n3) Broccoli_Commander: Build B1 Broccoli_commander\n\n4) Marmalade: Build G1 Marmalade\n\n5) Broccoli_Commander: Build B1 Broccoli_commander\n\tMarmalade: Sup indeed :)\n\n6) Marmalade: Discover G1 Marmalade B2 Alamak\n\n7) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce\n\n8) Marmalade: Build G1 Marmalade\n\n9) Broccoli_Commander: Build B2 Lettuce\n\n10) Marmalade: Trade G3 B3 Marmalade\n\n11) Broccoli_Commander: Trade B2 Y2 Lettuce\n\n12) Marmalade: Build G2 Marmalade\n\n13) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n14) Marmalade: Build G2 Alamak\n\n15) Broccoli_Commander: Build B2 Broccoli_commander\n\n16) Marmalade: Trade G2 Y2 Alamak\n\n17) Broccoli_Commander: Discover B2 Broccoli_commander G3 Watermelon\n\n18) Marmalade: Build G2 Alamak\n\n19) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Watermelon\nBuild B3 Lettuce\nBuild B3 Broccoli_commander\n\n20) Marmalade: Trade B3 G3 Marmalade\n\n21) Broccoli_Commander: Trade B2 G2 Watermelon\n\n22) Marmalade: Sacrifice Y2 Alamak\nMove G1 Alamak Watermelon\nMove G2 Alamak Watermelon\nCatastrophe Watermelon G\n\n23) Broccoli_Commander: Trade B3 R3 Lettuce\n\n24) Marmalade: Trade G2 R2 Marmalade\n\n25) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n26) Marmalade: Build R1 Marmalade\n\n27) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Lettuce\nBuild B2 Lettuce\nBuild B2 Broccoli_commander\n\n28) Marmalade: Trade R2 Y2 Marmalade\n\n29) Broccoli_Commander: Discover B2 Lettuce Y1 Lemon\n\tMarmalade: Well, this is all kinds of wrong\r\n\n\n30) Marmalade: Discover G1 Marmalade G2 Moop\n\n31) Broccoli_Commander: Build B3 Broccoli_commander\n\n32) Marmalade: Build Y1 Marmalade\n\n33) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n34) Marmalade: Move Y2 Marmalade Moop\n\tBroccoli_Commander: Relax it will be over soon now :-)\n\n35) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B3 Broccoli_commander\nBuild B3 Lettuce\nBuild B3 Lemon\n\n36) Marmalade: Build Y1 Moop\n\n37) Broccoli_Commander: Sacrifice B2 Lettuce\nTrade B3 Y3 Lettuce\nTrade B3 Y3 Broccoli_commander\n\n38) Marmalade: Discover Y1 Marmalade B2 Meep\n\n39) Broccoli_Commander: Move B3 Lemon Moop\n\n40) Marmalade: Build G1 Moop\n\n41) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nMove Y3 Lettuce Moop\nMove Y3 Moop Marmalade\nMove B3 Moop Marmalade\n\n42) Marmalade: Attack B3N Marmalade\n\n43) Broccoli_Commander: Sacrifice R3 Lettuce\nAttack B3 Marmalade\nAttack G3 Marmalade\nAttack R1 Marmalade\n\n\tMarmalade: Well, that was a lot faster than it should have been :) Cheers for the game.\n\tBroccoli_Commander: Thank you for the game\n\nHomeworlds Online (SDG# 24290)\nVariants: "Unrated"\nStarted: 2013.7.10, Ended: 2013.7.10\nParticipants: Noetherium (S), Orl (N)\nWinner: Orl\n\n1) Orl: Homeworld B2 Y1 G3\n\n2) Noetherium: Homeworld B2 Y3 G3\n\n3) Orl: Build G1 Orl\n\n4) Noetherium: Discover G3 Noetherium Y1 Burbel\n\n\nHomeworlds Online (SDG# 24291)\nVariants: "Hard time"\nStarted: 2013.7.10, Ended: 2013.7.17\nParticipants: Subhan64 (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld Y1 B3 G3\n\n3) Remneb: Build G1 Remneb\n\n\nHomeworlds Online (SDG# 24288)\nVariants: "Hard time"\nStarted: 2013.7.11, Ended: 2013.8.31\nParticipants: MagicJohn (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld B3 G2 Y3\n\n2) MagicJohn: Homeworld Y3 B2 G3\n\n3) Aristos: Build Y1 Aristos\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) Aristos: Trade Y1 G1 Aristos\n\n6) MagicJohn: Trade G1 Y1 Magicjohn\n\n7) Aristos: Discover G1 Aristos Y1 Spark\n\n8) MagicJohn: Trade Y1 R1 Magicjohn\n\n9) Aristos: Discover G1 Spark R2 Shine\n\n10) MagicJohn: Build G1 Magicjohn\n\n11) Aristos: Build Y1 Aristos\n\tAristos: typo\n\n12) MagicJohn: Trade G1 Y1 Magicjohn\n\tMagicJohn: I'm still working on perfect myself..... Might be awhile....\n\n13) Aristos: Trade Y1 R1 Aristos\n\tMagicJohn: \n\n14) MagicJohn: Build Y1 Magicjohn\n\n15) Aristos: Build R1 Aristos\n\n16) MagicJohn: Build R2 Magicjohn\n\n17) Aristos: Discover R1 Aristos Y1 Flicker\n\n18) MagicJohn: Move R2 Magicjohn Flicker\n\n19) Aristos: Build Y2 Aristos\n\n20) MagicJohn: Trade Y1 B1 Magicjohn\n\n21) Aristos: Move Y3 Aristos Flicker\n\n22) MagicJohn: Move Y1 Magicjohn Flicker\n\n23) Aristos: Attack Y1 Flicker\n\n24) MagicJohn: Sacrifice B1 Magicjohn\nTrade R2 Y2 Flicker\nCatastrophe Flicker Y\n\n25) Aristos: Build G1 Shine\n\n26) MagicJohn: Build G1 Magicjohn\n\n27) Aristos: Build G2 Shine\n\tAristos: Better move. Someday I have to get some actual pieces so I can visualize the possible moves better. I just can't see it in my head sometimes.\n\tAristos: Crap. That still doesn't fix the problem. Oh well. Congrats on this game. I doubt I can come back from your next move.\n\n28) MagicJohn: Discover G1 Magicjohn Y1 Depot\n\tMagicJohn: The visualization thing is really difficult for me too. It absolutely kills me when I am silly enough to try and play reasonably good chess players.\r\nI'm still relatively new at this game. Although I do have my moments, I am, unfortunately, very likely to blunder away most any lead I attain. Try to think of this as a handicap you have granted me....... \n\n29) Aristos: Sacrifice G1 Shine\nBuild Y1 Aristos\n\n30) MagicJohn: Build G1 Depot\n\n31) Aristos: Move Y2 Aristos Depot\n\n32) MagicJohn: Move G1 Depot Shine\n\n33) Aristos: Sacrifice R1 Aristos\nAttack G1 Depot\n\n34) MagicJohn: Build G2 Shine\nCatastrophe Shine Green\n\n35) Aristos: Build G1 Depot\n\n36) MagicJohn: Build R1 Magicjohn\n\n37) Aristos: Build Y1 Depot\n\n38) MagicJohn: Discover R1 Magicjohn B1 Misanthropy\n\n39) Aristos: Build Y2 Aristos\n\n40) MagicJohn: Build R1 Magicjohn\n\n41) Aristos: Discover Y1 Depot Y2 Outpost\n\n42) MagicJohn: Move R1 Magicjohn Depot\n\n43) Aristos: Build Y3 Aristos\n\n44) MagicJohn: Attack G1 Depot\n\n45) Aristos: Trade Y2 R2 Aristos\n\n46) MagicJohn: Build G1 Depot\n\n47) Aristos: Sacrifice R2 Aristos\nAttack R1 Depot\nAttack G1 Depot\n\n48) MagicJohn: Sacrifice R1 Misanthropy\nAttack R1 Depot\n\n49) Aristos: Sacrifice G1 Depot\nBuild Y2 Outpost\n\n50) MagicJohn: Attack G1 Depot\n\n51) Aristos: Build Y3 Aristos\n\n52) MagicJohn: Move G1 Depot Aristos\n\n53) Aristos: Trade Y3 R3 Aristos\n\n54) MagicJohn: Build G1 Aristos\n\n55) Aristos: Sacrifice R3 Aristos\nAttack G1 Aristos\nAttack G1 Aristos\nAttack R1 Depot\n\n56) MagicJohn: Move G1 Depot Aristos\nCatastrophe Aristos G\n\n57) Aristos: Trade Y3 G3 Aristos\n\n58) MagicJohn: Build G1 Magicjohn\n\n59) Aristos: Sacrifice G3 Aristos\nBuild Y3 Aristos\nBuild Y3 Depot\nBuild R1 Depot\n\n60) MagicJohn: Build R2 Magicjohn\n\n61) Aristos: Trade Y3 G3 Aristos\n\n62) MagicJohn: Trade R2 B2 Magicjohn\n\n63) Aristos: Build Y3 Aristos\n\n64) MagicJohn: Build R2 Magicjohn\n\n65) Aristos: Build G1 Aristos\n\n66) MagicJohn: Trade R2 B2 Magicjohn\n\n67) Aristos: Move G1 Aristos Depot\n\n68) MagicJohn: Build R2 Magicjohn\n\n69) Aristos: Build G1 Aristos\n\n70) MagicJohn: Move R1 Magicjohn Depot\n\n71) Aristos: Sacrifice R1 Depot\nAttack R1 Depot\n\n72) MagicJohn: Build R1 Magicjohn\n\n73) Aristos: Trade G1 B1 Aristos\n\tMagicJohn: Gaaakk...... My troops have been reduced to hitchhiking....\n\tMagicJohn: Trade r2 b2 magicjohn\n\tMagicJohn: ooops... typed my command into the message window.....\n\n74) MagicJohn: Move R1 Magicjohn Depot\n\n75) Aristos: Sacrifice Y2 Depot\nMove B1 Aristos Depot\nMove B1 Depot Magicjohn\nCatastrophe Magicjohn Blue\n\tAristos: The Hitchhiker's Guide To The Galaxy says nothing about what to do if your civilization lacks the technology for towels... :-)\n\n76) MagicJohn: Move G1 Magicjohn Outpost\n\n77) Aristos: Sacrifice Y3 Aristos\nMove Y2 Outpost Magicjohn\nMove Y1 Outpost Magicjohn\nMove Y3 Depot Magicjohn\nCatastrophe Magicjohn Yellow\n\tAristos: As an honorable opponent, I would prefer to offer you a quick and painless death, but the only sure stategy I see is going to be SLOW, I'm afraid. \n\tMagicJohn: One of my opponents just sent me a message saying that my position in the game was clearly superior but that they were stubborn and sometimes found a way to turn things around...... Kinda where I'm at now......\n\n\tMagicJohn: My learning curve needs to improve. Once again I sacrificed too much material to gain an early advantage....... Guess I have to spend more time in development. Or did I miss opportunities in the middle game??\n\tAristos: I'm not sure... I never saw a move that felt like an outright mistake, but I knew if you didn't make some play to get some yellow tech, I had a creeping advantage on you. \n\tAristos: Good game.\n\nHomeworlds Online (SDG# 24173)\nVariants: "Hard time"\nStarted: 2013.7.14, Ended: 2013.8.21\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n1) SilentTitan: Homeworld R1 B3 G3\n\n2) wil: Homeworld B2 R1 G3\n\tSilentTitan: I almost never try goldilocks. So I am going to give it a go.\n\n3) SilentTitan: Build G1 Silenttitan\n\twil: You go with fortress over goldilocks?\n\tSilentTitan: yeah... I really like fortress. you can really trap your opponent up against their inability to get to your homeworld. \n\n4) wil: Build G1 Wil\n\twil: yeah...the ones can disappear early....\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) wil: Trade G1 R1 Wil\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) wil: Build R2 Wil\n\n9) SilentTitan: Trade G3 R3 Silenttitan\n\n10) wil: Build G1 Wil\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) wil: Trade R2 Y2 Wil\n\n13) SilentTitan: Trade R3 G3 Silenttitan\n\n14) wil: Build R2 Wil\n\n15) SilentTitan: Build R2 Silenttitan\n\n16) wil: Discover R2 Wil G3 G3\n\n17) SilentTitan: Discover R2 Silenttitan Y2 Sol\n\n18) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 G3\nBuild Y1 Wil\n\n19) SilentTitan: Sacrifice G1 Silenttitan\nBuild R3 Sol\n\n20) wil: Trade R3 Y3 Wil\n\n21) SilentTitan: Trade R2 Y2 Silenttitan\n\n22) wil: Sacrifice Y1 Wil\nDiscover R2 G3 G2 G2\n\n23) SilentTitan: Discover R2 Sol G3 Soul\n\n24) wil: Trade R1 B1 Wil\n\n25) SilentTitan: Build G1 Silenttitan\n\n26) wil: Build B1 Wil\n\n27) SilentTitan: Trade G1 B1 Silenttitan\n\n28) wil: Move B1 Wil G3\n\n29) SilentTitan: Move B1 Silenttitan Sol\n\n30) wil: Move Y2 Wil G3\n\n31) SilentTitan: Build G1 Silenttitan\n\n32) wil: Build B2 G3\n\n33) SilentTitan: Discover Y1 Silenttitan R2 Sole\n\n34) wil: Move B2 G3 G2\n\n35) SilentTitan: Move G1 Silenttitan Sol\n\n36) wil: Build B2 G2\n\n37) SilentTitan: Build B3 Sol\n\n38) wil: Build B3 G3\n\n39) SilentTitan: Build Y1 Silenttitan\n\n40) wil: Trade B3 Y3 G3\n\n41) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Sol G3\nMove R3 G3 G2\n\n42) wil: Sacrifice Y3 G3\nMove B2 G2 Soul\nMove B2 G2 Soul\nMove R2 G2 G3\n\n43) SilentTitan: Sacrifice Y1 Sole\nDiscover R2 Soul R1 Tic\n\n44) wil: Build B3 G3\n\n45) SilentTitan: Move B3 Sol G3\n\n46) wil: Attack B3 G3\n\n47) SilentTitan: Move B1 Sol G3\nCatastrophe G3 Blue\n\n48) wil: Move R2 G3 Sol\n\n49) SilentTitan: Discover G1 Sol Y3 Tac\n\n50) wil: Trade B2 Y2 Soul\n\n51) SilentTitan: Build Y1 Silenttitan\n\n52) wil: Build B1 Wil\n\n53) SilentTitan: Move Y1 Silenttitan G2\n\n54) wil: Move B1 Wil G3\n\n55) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 G2\nBuild Y3 Silenttitan\nBuild G1 Tac\n\n56) wil: Build G2 Wil\n\n57) SilentTitan: Move R3 G2 Soul\n\n58) wil: Move Y2 Soul G2\n\twil: crap I knew that was going to come sometime....\n\n59) SilentTitan: Trade Y1 B1 Silenttitan\n\n60) wil: Move G2 Wil Tac\n\n61) SilentTitan: Sacrifice Y1 G2\nMove R3 Soul G2\n\n62) wil: Sacrifice R3 G3\nAttack Y1 G2\nAttack G1 Tac\nAttack G1 Tac\n\n63) SilentTitan: Sacrifice R2 Tic\nAttack Y2 G2 South\nAttack Y1 G2 South\n\n64) wil: Build B2 G3\n\n\nHomeworlds Online (SDG# 24231)\nVariants: "Unrated, Hard time"\nStarted: 2013.7.14, Ended: 2013.7.17\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n\tdlwillson: No time, Wil. Sorry. I'm doing all I can to have a successful Linux Camp in August.\n\twil: oops sorry....I saw ur challenge up....give me a shout when you have the time...\n\nHomeworlds Online (SDG# 24270)\nVariants: "Hard time"\nStarted: 2013.7.14, Ended: 2013.7.19\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld R2 B1 G3\n\n2) Broccoli_Commander: Homeworld Y2 G3 B3\n\n3) wil: Build G1 Wil\n\twil: again with this!\n\n4) Broccoli_Commander: Build B1 Broccoli_commander\n\n5) wil: Build G1 Wil\n\tBroccoli_Commander: Sorry bout that, im playing on my phone and misclicked...\n\tBroccoli_Commander: And good game to you &#55357;&#56833;\n\n6) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n7) wil: Trade G1 B1 Wil\n\n8) Broccoli_Commander: Build B2 Broccoli_commander\n\n9) wil: Build B2 Wil\n\n10) Broccoli_Commander: Discover B1 Broccoli_commander G1 Pea\n\n11) wil: Trade B1 Y1 Wil\n\n12) Broccoli_Commander: Build B1 Broccoli_commander\n\n13) wil: Build B2 Wil\n\n14) Broccoli_Commander: Discover B2 Broccoli_commander R1 Tomatoe\n\n15) wil: Trade B2 R2 Wil\n\twil: I 'blue' it.\n\n16) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Tomatoe\nBuild B3 Broccoli_commander\nBuild B3 Pea\n\n17) wil: Build B3 Wil\n\n18) Broccoli_Commander: Trade B3 R3 Pea\n\n19) wil: Trade B3 Y3 Wil\n\n20) Broccoli_Commander: Trade B2 Y2 Tomatoe\n\n21) wil: Discover B2 Wil G3 G3\n\n22) Broccoli_Commander: Build R1 Pea\n\n23) wil: Move Y1 Wil G3\n\n24) Broccoli_Commander: Build R1 Pea\n\n25) wil: Build B2 G3\n\n26) Broccoli_Commander: Build B3 Pea\n\n27) wil: Discover B2 G3 Y1 Y1\n\n28) Broccoli_Commander: Sacrifice B2 Tomatoe\nTrade B3 R3 Broccoli_commander\nTrade B1 Y1 Pea\n\n29) wil: Move R2 Wil G3\n\n30) Broccoli_Commander: Move R3 Pea G3\n\n31) wil: Sacrifice G3 Wil\nBuild R2 G3\nBuild R3 G3\nBuild B1 Y1\nCatastrophe G3 R\n\n32) Broccoli_Commander: M B3 Pea G3\n\n33) wil: Discover B2 G3 G1 G1\n\n34) Broccoli_Commander: Sacrifice R1 Pea\nAttack Y1 G3\n\twil: ya get rid of one bully and they just go call their friends..\n\n35) wil: Build B2 G1\n\tBroccoli_Commander: Yeah I should talk to them about that at some point\n\n36) Broccoli_Commander: Build Y2 G3\n\twil: yeah...why did I leave that y1 behind anywho...shoulda sacrificed her? or was it good to have just made you waste a move?\n\n37) wil: Build Y3 Wil\n\tBroccoli_Commander: In that situation id say sacrifice\n\n38) Broccoli_Commander: Sacrifice Y2 Tomatoe\nMove Y1 G3 Wil\nMove Y2 G3 Wil\nCatastrophe Wil Y\n\n\twil: I must be blind...I looked to see if you could get me and missed it...\r\n\n\twil: downright embarassin that one..\r\n\n\tBroccoli_Commander: No worries, you put up a good fight, especially at the beginning\n\nHomeworlds Online (SDG# 24254)\nVariants: "No undo, Unrated, Hard time"\nStarted: 2013.7.14, Ended: 2013.7.17\nParticipants: Argel (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 24302)\nVariants: "No undo"\nStarted: 2013.7.14, Ended: 2013.7.17\nParticipants: Erik2point0 (S), scotward (N)\nWinner: scotward\n\n1) scotward: Homeworld G3 R1 B3\n\n2) Erik2point0: Homeworld B1 G2 Y3\n\n3) scotward: Build B1 Scotward\n\n4) Erik2point0: Build Y1 Erik2point0\n\n5) scotward: Trade B1 Y1 Scotward\n\n6) Erik2point0: Trade Y1 G1 Erik2point0\n\n7) scotward: Build Y1 Scotward\n\n8) Erik2point0: Build G1 Erik2point0\n\n9) scotward: Trade Y1 G1 Scotward\n\n10) Erik2point0: Discover G1 Erik2point0 Y3 Intrigue\n\n11) scotward: Build G2 Scotward\n\n12) Erik2point0: Build G2 Erik2point0\n\n13) scotward: Discover G2 Scotward B2 Mystery\n\n14) Erik2point0: Build G3 Intrigue\n\n15) scotward: Build G3 Mystery\n\n16) Erik2point0: Trade G1 R1 Erik2point0\n\n17) scotward: Trade G2 Y2 Mystery\n\n18) Erik2point0: Build Y1 Erik2point0\n\n19) scotward: Build G1 Mystery\n\tErik2point0: Sorry, I missed the email and thought it was still your turn\n\n20) Erik2point0: Trade Y1 B1 Erik2point0\n\n21) scotward: Build G2 Scotward\n\n22) Erik2point0: Sacrifice Y3 Erik2point0\nMove G1 Intrigue Mystery\nMove G1 Mystery Scotward\nDiscover G2 Erik2point0 B3 Seaside\nCatastrophe Scotward Green\n\tscotward: no prob. \n\n23) scotward: Sacrifice Y2 Mystery\nMove G3 Mystery Intrigue\nMove G3 Intrigue Erik2point0\n\n24) Erik2point0: Build G1 Intrigue\n\n25) scotward: Trade G1 R1 Mystery\n\n26) Erik2point0: Trade R1 Y1 Erik2point0\n\n27) scotward: Trade G3 R3 Erik2point0\n\n\nHomeworlds Online (SDG# 24172)\nVariants: "Hard time"\nStarted: 2013.7.17, Ended: 2013.8.18\nParticipants: wil (S), pgadey (N)\nWinner: wil\n\n1) pgadey: Homeworld B3 G2 Y3\n\n2) wil: Homeworld R2 B1 G3\n\n3) pgadey: Build Y1 Pgadey\n\n4) wil: Build G1 Wil\n\n5) pgadey: Trade Y1 G1 Pgadey\n\n6) wil: Trade G1 Y1 Wil\n\n7) pgadey: Trade G1 B1 Pgadey\n\n8) wil: Build G1 Wil\n\tpgadey: The opening in this game always feels a little clunky to me. I feel like there is a long build up before anything ``begins''. I guess that just says how little I understand what's going on.\n\n9) pgadey: Build B1 Pgadey\n\twil: No you are correct....it is like chess, pushing pawns, getting out knights and bishops...the first five moves go fairly quickly, until someone does something unique....and then the game slows pace...\n\tpgadey: Right -- What other games are you interested in, by the way?\n\n10) wil: Discover G1 Wil Y3 Y3\n\twil: This is the only one I play here...I have thought of learning martian chess...but i play live chess, gin, hold-em, craps, euchre, all variety cards, wide variety of board games, grew up in a gaming family, and play regular with a good size group.\n\n11) pgadey: Trade B1 G1 Pgadey\n\n12) wil: Build Y1 Wil\n\tpgadey: Good times! I play a number of abstracts. I go through phases of playing things online with regularity. Here I play Entropy, Amazons, Homeworlds. I wish I could play more Entropy and Homeworlds face to face. They're really great.\n\twil: where abouts do you live...no homeworlds players to develop??\n\n13) pgadey: Discover G1 Pgadey Y1 Banana\n\n14) wil: Discover Y1 Wil G3 G3\n\tpgadey: I'm in Toronto. A lovely city, with a couple board game cafés but they are all about the Euro Games. My girlfriend has got a knack for abstracts, but we're heavily into playing Nick Bentley's Catchup: http://nickbentleygames.wordpress.com/2012/04/29/my-best-game-i-suspect-ketchup/\r\n\r\nSo we haven't been playing much else lately.\n\tpgadey: I'm in Toronto. A lovely city, with a couple board game cafés but they are all about the Euro Games. My girlfriend has got a knack for abstracts, but we're heavily into playing Nick Bentley's Catchup: http://nickbentleygames.wordpress.com/2012/04/29/my-best-game-i-suspect-ketchup/\r\n\r\nSo we haven't been playing much else lately.\n\n15) pgadey: Build B1 Pgadey\n\twil: you play klunker?\n\n16) wil: Build Y2 G3\n\n17) pgadey: Move B1 Pgadey Banana\n\n18) wil: Build Y2 Wil\n\n19) pgadey: Build B2 Banana\n\n20) wil: Trade Y1 R1 Wil\n\n21) pgadey: Trade B2 Y2 Banana\n\n22) wil: Build G1 Wil\n\n23) pgadey: Trade B1 R1 Banana\n\n24) wil: Build G2 Y3\n\n25) pgadey: Build R1 Banana\n\n26) wil: Discover G1 Y3 B1 B1\n\n27) pgadey: Move G1 Banana Y3\n\n28) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 B1\nBuild G3 Wil\n\n29) pgadey: Build B2 Pgadey\n\n30) wil: Move R1 Wil Y3\n\n\twil: awe...hate when that happens...\n\nHomeworlds Online (SDG# 24311)\nVariants: "No undo"\nStarted: 2013.7.17, Ended: 2013.8.6\nParticipants: scotward (S), Erik2point0 (N)\nWinner: scotward\n\n1) Erik2point0: Homeworld B1 G2 Y3\n\n2) scotward: Homeworld R1 B3 G3\n\n3) Erik2point0: Build Y1 Erik2point0\n\n4) scotward: Build G1 Scotward\n\n5) Erik2point0: Trade Y1 G1 Erik2point0\n\n6) scotward: Trade G1 B1 Scotward\n\n7) Erik2point0: Build G1 Erik2point0\n\n8) scotward: Build B1 Scotward\n\n9) Erik2point0: Build Y1 Erik2point0\n\n10) scotward: Build G1 Scotward\n\n11) Erik2point0: Discover G1 Erik2point0 B3 Alpha\n\n12) scotward: Trade G1 Y1 Scotward\n\n13) Erik2point0: Trade Y1 R1 Erik2point0\n\n14) scotward: Discover B1 Scotward G2 Omega\n\n15) Erik2point0: Build Y1 Erik2point0\n\n16) scotward: Build B2 Omega\n\n17) Erik2point0: Build G1 Alpha\n\n18) scotward: Trade B2 G2 Omega\n\n19) Erik2point0: Build G3 Erik2point0\n\n20) scotward: Build G3 Scotward\n\n21) Erik2point0: Trade G1 Y1 Alpha\n\n22) scotward: Build B2 Omega\n\n23) Erik2point0: Sacrifice G3 Erik2point0\nBuild G1 Alpha\nBuild G3 Erik2point0\nBuild Y2 Alpha\n\n24) scotward: Sacrifice G3 Scotward\nBuild Y2 Scotward\nBuild G3 Scotward\nBuild B2 Omega\n\n25) Erik2point0: Sacrifice Y2 Alpha\nMove G1 Alpha Omega\nMove G1 Alpha Omega\nCatastrophe Omega Green\n\n26) scotward: Discover G3 Scotward B2 Omega2\n\n27) Erik2point0: Trade G1 B1 Erik2point0\n\n28) scotward: Move Y2 Scotward Omega2\n\n29) Erik2point0: Build Y2 Erik2point0\n\n30) scotward: Build G1 Omega2\n\n31) Erik2point0: Move Y2 Erik2point0 Alpha\n\n32) scotward: Trade G3 R3 Omega2\n\n33) Erik2point0: Trade Y2 R2 Alpha\n\n34) scotward: Build Y2 Omega2\n\n35) Erik2point0: Discover Y3 Erik2point0 R3 Beta\n\n36) scotward: Trade Y2 G2 Omega2\n\n37) Erik2point0: Discover R2 Alpha G2 Gamma\n\tErik2point0: How are you guys doing?\n\n38) scotward: Discover G2 Omega2 Y3 Psi\n\n39) Erik2point0: Sacrifice G3 Erik2point0\nBuild Y2 Alpha\nBuild Y2 Beta\nBuild Y3 Erik2point0\n\n40) scotward: Sacrifice G2 Psi\nBuild Y3 Scotward\nBuild G1 Omega2\n\n41) Erik2point0: Move Y3 Beta Gamma\n\n42) scotward: Discover G1 Omega2 B3 Chi\n\n43) Erik2point0: Build R1 Gamma\n\n44) scotward: Sacrifice G3 Scotward\nBuild G1 Chi\nBuild G2 Chi\nBuild G3 Omega2\n\n45) Erik2point0: Build R2 Gamma\n\n46) scotward: Sacrifice Y3 Scotward\nMove G1 Chi Gamma\nMove G1 Chi Gamma\nMove G2 Chi Gamma\nCatastrophe Gamma G\n\n47) Erik2point0: Trade Y2 G2 Alpha\n\n48) scotward: Move G3 Omega2 Scotward\n\n49) Erik2point0: Trade Y3 G3 Erik2point0\n\n50) scotward: Move R3 Omega2 Alpha\n\n51) Erik2point0: Sacrifice G3 Erik2point0\nBuild Y2 Alpha\nBuild Y3 Beta\nBuild Y3 Erik2point0\n\n52) scotward: Attack Y2 Alpha\n\n53) Erik2point0: Sacrifice Y1 Alpha\nDiscover G2 Alpha B2 Gamma\n\n54) scotward: Move R3 Alpha Gamma\n\n55) Erik2point0: Sacrifice G2 Gamma\nBuild R1 Erik2point0\nBuild R2 Erik2point0\n\n56) scotward: Trade Y2 G2 Alpha\n\n57) Erik2point0: Trade R1 G1 Erik2point0\n\n58) scotward: Build G1 Alpha\n\n59) Erik2point0: Move G1 Erik2point0 Beta\n\n60) scotward: Discover G1 Omega2 Y3 Phi\n\n61) Erik2point0: Sacrifice Y2 Beta\nMove Y3 Beta Omega2\nMove R2 Erik2point0 Phi\n\n62) scotward: Sacrifice Y2 Omega2\nMove G1 Alpha Erik2point0\nMove G2 Alpha Erik2point0\n\n63) Erik2point0: Attack G1 Phi\n\n64) scotward: Sacrifice R3 Gamma\nAttack R1 Erik2point0\nAttack B1 Erik2point0\nAttack Y1 Erik2point0\n\n65) Erik2point0: Sacrifice R2 Phi\nAttack G1 Erik2point0\nAttack G2 Erik2point0\n\tErik2point0: Hmm. I expected a build green followed by catastrophe\n\n66) scotward: Attack G1 Erik2point0\n\n67) Erik2point0: Trade G2 R2 Erik2point0\n\n68) scotward: Build B2 Erik2point0\n\n69) Erik2point0: Sacrifice R2 Erik2point0\nAttack B1 Erik2point0\nAttack B2 Erik2point0\n\n70) scotward: Build G2 Erik2point0\n\n71) Erik2point0: Trade B2 R2 Erik2point0\n\n72) scotward: Attack R2 Erik2point0\n\n73) Erik2point0: Trade Y3 G3 Omega2\n\n74) scotward: Sacrifice G2 Erik2point0\nBuild Y1 Erik2point0\nBuild Y2 Erik2point0\nCatastrophe Erik2point0 Y\n\n\tErik2point0: Ouch. Good game. \n\nHomeworlds Online (SDG# 24283)\nVariants: "Hard time"\nStarted: 2013.7.22, Ended: 2013.8.3\nParticipants: wil (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld G1 Y2 B3\n\n2) wil: Homeworld B3 R2 G3\n\twil: dang blue starts..\n\n3) Marmalade: Build B1 Marmalade\n\n4) wil: Build G1 Wil\n\tMarmalade: It's not something I've played with before, but I've been crushed by it :)\n\n5) Marmalade: Build B1 Marmalade\n\n6) wil: Trade G1 Y1 Wil\n\n7) Marmalade: Discover B1 Marmalade G3 Ain\n\n8) wil: Trade Y1 G1 Wil\n\n9) Marmalade: Build B1 Ain\n\n10) wil: Trade G1 Y1 Wil\n\twil: dang....typed wrong....meant y1 b1.....what a mistake...\n\tMarmalade: You can still undo...\n\twil: you sir are a gentlemen and scholar....but alas I cannot, it is done. Go ahead, take advantage of my mistake as a proper gamesman, teach me my lesson, and move toward universal dominance...maybe next time I'll not be so impetuous.\n\n11) Marmalade: Build B2 Ain\n\n12) wil: Build G1 Wil\n\n13) Marmalade: Build B2 Marmalade\n\n14) wil: Trade G3 B3 Wil\n\n15) Marmalade: Trade B2 Y2 Ain\n\n16) wil: Build G1 Wil\n\n17) Marmalade: Discover B1 Ain Y1 Kleeia\n\n18) wil: Discover G1 Wil Y1 Y1\n\n19) Marmalade: Build B2 Ain\n\n20) wil: Build Y2 Wil\n\n21) Marmalade: Build Y3 Ain\n\n22) wil: Trade B3 G3 Wil\n\n23) Marmalade: Trade Y2 R2 Ain\n\n24) wil: Build G2 Wil\n\n25) Marmalade: Trade B2 G2 Ain\n\n26) wil: Trade G2 R2 Wil\n\n27) Marmalade: Move G2 Ain Kleeia\n\n28) wil: Build G2 Y1\n\n29) Marmalade: Move Y3 Ain Y1\n\n30) wil: Discover G2 Y1 Y3 Y3\n\n31) Marmalade: Sacrifice G2 Kleeia\nBuild B2 Ain\nBuild B2 Kleeia\n\n32) wil: Discover G1 Y1 Y3 Y3a\n\n33) Marmalade: Trade B2 Y2 Ain\n\n34) wil: Build G2 Y3a\n\n35) Marmalade: Sacrifice B2 Marmalade\nTrade Y3 G3 Y1\nTrade B3 Y3 Marmalade\n\n36) wil: Discover Y1 Wil R1 R1\n\n37) Marmalade: Trade B2 G2 Kleeia\n\n38) wil: Move R2 Wil R1\n\n39) Marmalade: Build R1 Ain\n\n40) wil: Move G1 Y3a R1\n\n41) Marmalade: Build B2 Marmalade\n\n42) wil: Sacrifice G2 Y3a\nBuild Y3 R1\nBuild G2 R1\n\n43) Marmalade: Sacrifice G3 Y1\nBuild G3 Kleeia\nBuild B2 Kleeia\nBuild B2 Ain\n\n44) wil: Move Y3 R1 Ain\n\n45) Marmalade: Discover B2 Ain Y1 Mooose\n\n46) wil: Sacrifice R2 R1\nAttack Y2 Ain\nAttack B1 Ain\n\n47) Marmalade: Sacrifice G3 Kleeia\nBuild G3 Kleeia\nBuild B3 Mooose\nBuild B3 Kleeia\n\tMarmalade: crap\n\n48) wil: Trade G1 R1 Wil\n\n49) Marmalade: Sacrifice Y3 Marmalade\nMove B3 Kleeia Wil\nMove B3 Mooose Wil\nMove G3 Kleeia Wil\n\twil: this is quite the fight...\n\n50) wil: Sacrifice G2 Y3\nBuild Y3 Wil\nBuild R2 Wil\n\twil: very nice....thought I was gonna end the smurf dominance...\n\n51) Marmalade: Sacrifice R2 Ain\nAttack G3S Wil\nAttack Y3S Wil\n\n52) wil: Move Y3 Ain Marmalade\n\tMarmalade: If I've done my sums properly, I think that's done it...\n\tMarmalade: I could, of course, be hilariously wrong.\n\tMarmalade: Still, the galaxy may yet quake under the tyrannical yoke of Papa Smurf.\n\twil: ouch\n\n53) Marmalade: Attack R2S Wil\n\n54) wil: S R1 Wil\nA B2 Marmalade\n\n55) Marmalade: Attack Y2S Wil\n\twil: at least I'm trying...\n\n\twil: Yup one step behind\n\tMarmalade: Cheers for the game :)\n\twil: Wonder if i'll ever learn...\n\nHomeworlds Online (SDG# 24301)\nVariants: "Hard time"\nStarted: 2013.7.22, Ended: 2013.7.30\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 G2 B3\n\tBroccoli_Commander: Greetings Human, we come in peace. (But we installed Blastoids on our homeworld for defense)\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: Build B1 Wil\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) wil: Build B1 Wil\n\n7) Broccoli_Commander: Build Y1 Broccoli_commander\n\n8) wil: Trade B1 Y1 Wil\n\n9) Broccoli_Commander: Build Y2 Broccoli_commander\n\n10) wil: Build Y2 Wil\n\n11) Broccoli_Commander: Discover Y2 Broccoli_commander B3 Blueberry\n\n12) wil: Discover Y1 Wil G1 G1\n\n13) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Muffin\n\n14) wil: Trade B3 G3 Wil\n\n15) Broccoli_Commander: Build G1 Broccoli_commander\n\n16) wil: Sacrifice G3 Wil\nBuild Y2 G1\nBuild Y3 G1\nBuild Y3 Wil\n\n17) Broccoli_Commander: Move Y1 Muffin G1\nCatastrophe G1 Y\n\twil: does he want a y3 or to catastrophe me? choices...\n\n18) wil: Build B1 Wil\n\n19) Broccoli_Commander: Move G1 Broccoli_commander Blueberry\n\n20) wil: Discover B1 Wil G1 G1\n\n21) Broccoli_Commander: Build G1 Broccoli_commander\n\n22) wil: Build B1 Wil\n\n23) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\n24) wil: Trade Y3 G3 Wil\n\n25) Broccoli_Commander: Trade G2 R2 Blueberry\n\n26) wil: Trade B1 Y1 G1\n\n27) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Blueberry\nBuild G3 Broccoli_commander\n\n28) wil: Sacrifice G3 Wil\nBuild Y1 G1\nBuild Y2 G1\nBuild Y3 Wil\n\n29) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y3 Broccoli_commander\nBuild Y3 Blueberry\n\n30) wil: Discover Y1 G1 G3 G3\n\n31) Broccoli_Commander: Move G3 Blueberry G1\n\n32) wil: Discover Y2 G1 B3 B3\n\n33) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nMove G3 G1 Wil\nMove Y3 Blueberry G1\nMove Y3 G1 Wil\n\n34) wil: Attack G3 Wil\n\tBroccoli_Commander: and once again the two brave warriors invade the enemy's homeworld...\n\twil: yeah.and I didn't trade for a red....will I ever learn?\n\n35) Broccoli_Commander: Sacrifice R2 Blueberry\nAttack Y3 Wil\nAttack G3 Wil\n\n36) wil: Build Y3 Wil\n\n37) Broccoli_Commander: Attack B1 Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 24335)\nStarted: 2013.7.29, Ended: 2013.9.27\nParticipants: harmiton (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) harmiton: Homeworld Y2 B1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n\nHomeworlds Online (SDG# 24148)\nVariants: "Unrated"\nStarted: 2013.7.29, Ended: 2013.7.31\nParticipants: zoltar (S), Leonard_Daniels (N), harmiton (E)\nWinner: harmiton\n\n1) harmiton: Homeworld Y1 B2 G3\n\n\tzoltar: We lost a player from the start\r\nBetter to start a new game.\n\nHomeworlds Online (SDG# 24300)\nVariants: "Unrated, Hard time"\nStarted: 2013.7.30, Ended: 2013.8.2\nParticipants: harmiton (S), dlwillson (N)\nWinner: harmiton\n\n\nHomeworlds Online (SDG# 24361)\nVariants: "Hard time"\nStarted: 2013.7.30, Ended: 2013.9.2\nParticipants: wil (S), Salmonax (N)\nWinner: wil\n\n1) Salmonax: Homeworld G3 B2 Y3\n\n2) wil: Homeworld R2 B1 G3\n\n3) Salmonax: Build Y1 Salmonax\n\twil: thanx for the game!\n\n4) wil: Build G1 Wil\n\n5) Salmonax: Trade Y1 G1 Salmonax\n\n6) wil: Trade G1 Y1 Wil\n\tSalmonax: Thanks to you too, good luck. =)\n\n7) Salmonax: Discover G1 Salmonax B1 Slippydee\n\n8) wil: Build G1 Wil\n\n9) Salmonax: Build Y1 Salmonax\n\n10) wil: Build Y1 Wil\n\n11) Salmonax: Trade Y3 R3 Salmonax\n\n12) wil: Trade Y1 R1 Wil\n\n13) Salmonax: Build G1 Slippydee\n\n14) wil: Build G2 Wil\n\n15) Salmonax: Build G2 Slippydee\n\n16) wil: Discover G2 Wil Y3 Y3\n\n17) Salmonax: Trade G2 R2 Slippydee\n\n18) wil: Build G2 Y3\n\n19) Salmonax: Build R1 Slippydee\n\n20) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB G3 Wil\n\n21) Salmonax: Sacrifice Y1 Salmonax\nMove G1 Slippydee Y3\nCatastrophe Y3 G\n\n22) wil: T G3 Y3 Wil\n\n23) Salmonax: Build G1 Slippydee\n\n24) wil: Build G2 Wil\n\n25) Salmonax: Build G2 Slippydee\n\n26) wil: Discover G1 Wil Y3 Y3\n\n27) Salmonax: Trade G1 Y1 Slippydee\n\n28) wil: Build G1 Wil\n\n29) Salmonax: Move G2 Slippydee Y3\n\n30) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 Y3\nBuild G3 Wil\nCatastrophe Y3 G\n\n31) Salmonax: Build R1 Salmonax\n\twil: a reboot...\n\n32) wil: Discover G2 Wil Y3 Y3\n\n33) Salmonax: Trade R3 Y3 Salmonax\n\tSalmonax: Heh. =)\n\n34) wil: Move R1 Wil Y3\n\tSalmonax: oops\n\n35) Salmonax: Build R2 Salmonax\n\n36) wil: Build R3 Y3\n\twil: now you can do that...\n\n37) Salmonax: Build Y1 Salmonax\n\tSalmonax: Well, I think I will!\n\n38) wil: Discover R3 Y3 B1 B1\n\n39) Salmonax: Build Y2 Slippydee\n\twil: me too!\n\n40) wil: Build R3 Y3\n\n\n41) Salmonax: Discover R1 Slippydee G3 Wheskler\n\n42) wil: Move R3 Y3 Slippydee\n\n43) Salmonax: Build R3 Slippydee\n\n44) wil: Sacrifice R3 B1\nAttack R3 Slippydee\nAttack G1 Slippydee\nAttack Y2 Slippydee\n\n45) Salmonax: Move R1 Salmonax Slippydee\nCatastrophe Slippydee R\n\twil: you must be west coast?\n\tSalmonax: Mountain time.\n\twil: ah...I's east coast....I knew one of us was up late/early...\n\n46) wil: Build R1 Y3\n\twil: I was wondering if you might choose that route....\n\n47) Salmonax: Move Y1 Slippydee Wheskler\n\n48) wil: Build Y2 Slippydee\n\tSalmonax: Really swingy game. =)\n\twil: another reboot! Once you took that path it was fairly inevitable eh?\n\n49) Salmonax: Move Y1 Salmonax Slippydee\n\n50) wil: Sacrifice R1 Y3\nAttack Y1 Slippydee\n\n51) Salmonax: Move Y1 Wheskler Slippydee\nCatastrophe Slippydee Y\n\n52) wil: Build R1 Y3\n\n53) Salmonax: Build R2 Wheskler\n\n54) wil: Move R1 Y3 Slippydee\n\n55) Salmonax: Build Y1 Salmonax\n\n56) wil: Build R3 Slippydee\n\n57) Salmonax: Trade Y1 B1 Salmonax\n\n58) wil: Build R3 Y3\n\n\twil: I should have it...it seems to me anyway...but i just can't get a handle on how to get it done....the thing about this game is that taking advantage of a little mistake rotates the power during reboots and anything can happen...quite the give and take so far...\n\twil: awe.... I would have like to have finished....hope all is ok in your world.\r\n\n\nHomeworlds Online (SDG# 24362)\nVariants: "Unrated, Hard time"\nStarted: 2013.8.5, Ended: 2013.8.7\nParticipants: wil (S), harmiton (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24330)\nVariants: "Hard time"\nStarted: 2013.8.10, Ended: 2013.8.22\nParticipants: Marmalade (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\twil: just a masochist...\n\n2) Marmalade: Homeworld G1 Y3 B3\n\n3) wil: Build G1 Wil\n\tMarmalade: We seem to be about the same level, which is great.\r\n\n\twil: So far I am learning from all intergalactic battles....when I play better folks I get annihilated by various tactics and then try to use these against weaker player and learn how it plays out. I use them against equal players and see how they defended it vs how I did....but I lose to weaker and beat much better occasionally.....it is such a game of steps...and while you can make one glorious mistake that someone takes advantage of....mostly it is a series of little things that add upto you being in a bad position....and then waiting andsearching for some way to turn the tide..\n\n4) Marmalade: Build B1 Marmalade\n\n5) wil: Trade G1 B1 Wil\n\n6) Marmalade: Build B2 Marmalade\n\n7) wil: Build B2 Wil\n\n8) Marmalade: Discover B2 Marmalade G2 Coo\n\n9) wil: Trade B1 Y1 Wil\n\n\twil: phooey\n\nHomeworlds Online (SDG# 24331)\nVariants: "Hard time"\nStarted: 2013.8.10, Ended: 2013.8.20\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\twil: I think I am beginning to learn... unless I screw up on my game I should be climbing the ladder a bit...\n\n2) wil: Homeworld B3 R1 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\twil: did I somehow goof up and put us in two games?\n\n4) wil: Build G1 Wil\n\tBroccoli_Commander: Yes it looks like it, I'll just let the other one die...\r\nAnyway, looking forward to seeing wil 2.0 ;)\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\twil: ah...too bad...I was gonna suggest we start out the same and see how a change in choice somewhere creates a totally different game...\n\n6) wil: Trade G1 Y1 Wil\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) wil: Build G1 Wil\n\tBroccoli_Commander: Oh... Well it's not a bad idea, but I wouldn't know when to make a change to get a meaningful result... This particular opening is pretty common so for instance any early change will simply yield two different games\n\twil: I don't think it would be an intentional change....as the two games played out one of us would make an adjustment to strategy and a new game would be developed... hmmmm that makes me think... we should pick openings and have a lot of people play the exact same openings..and switch sides...and see the variety of games that are created...\r\n\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n10) wil: Trade G1 R1 Wil\n\n11) Broccoli_Commander: Build Y1 Broccoli_commander\n\n12) wil: Build R2 Wil\n\n13) Broccoli_Commander: Build Y2 Broccoli_commander\n\n14) wil: Build Y2 Wil\n\n15) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\n16) wil: Discover R2 Wil G2 G2\n\n17) Broccoli_Commander: Move R2 Broccoli_commander Blueberry\n\n18) wil: Move Y1 Wil G2\n\n19) Broccoli_Commander: Move Y1 Broccoli_commander Blueberry\n\n20) wil: Build Y2 Wil\n\n21) Broccoli_Commander: Build G1 Broccoli_commander\n\n22) wil: Build R2 Wil\n\n23) Broccoli_Commander: Build R3 Blueberry\n\n24) wil: Build R3 G2\n\n25) Broccoli_Commander: Discover R3 Blueberry G2 Lettuce\n\n26) wil: Trade R2 G2 Wil\n\n27) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G1 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\n\n28) wil: Sacrifice Y2 Wil\nDiscover Y2 Wil B2 B2\nMove R1 Wil B2\n\n29) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R2 Lettuce\nBuild R3 Blueberry\n\n30) wil: Build Y2 G2\n\n31) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\n32) wil: Move Y2 G2 Wil\n\n33) Broccoli_Commander: Build B1 Broccoli_commander\n\n34) wil: Build Y2 G2\n\n35) Broccoli_Commander: Build Y3 Broccoli_commander\n\n36) wil: Build Y3 Wil\n\n37) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G1 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y3 Blueberry\n\n38) wil: Trade Y3 B3 Wil\n\n39) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nMove R2 Blueberry G2\nMove R3 Blueberry G2\nMove G3 Blueberry B2\nCatastrophe G2 R\n\n40) wil: Build Y3 Wil\n\twil: ouch\n\twil: ouch\n\n41) Broccoli_Commander: Sacrifice R2 Lettuce\nAttack Y2 B2\nAttack R1 B2\n\n42) wil: Trade Y2 R2 Wil\n\n43) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Blueberry\nBuild Y2 B2\nBuild Y3 Broccoli_commander\n\n44) wil: Move B3 Wil G2\n\n45) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R2 B2\nBuild R2 Lettuce\n\n46) wil: Move R2 Wil G2\n\n47) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R3 Lettuce\nBuild R3 B2\n\n48) wil: Build B1 G2\n\twil: Ooops I blew it again...\n\n49) Broccoli_Commander: Sacrifice Y3 Blueberry\nMove R3 Lettuce Wil\nMove G3 B2 Wil\nMove R3 B2 Wil\n\n50) wil: Sacrifice R2 G2\nAttack R3 Wil\nAttack G3 Wil\n\tBroccoli_Commander: Good game though!\r\nYou really got me worried when you took the last r1 at the beginning... This was also a mistake from my part\n\n51) Broccoli_Commander: Sacrifice R3 Lettuce\nAttack R3 Wil\nAttack Y3 Wil\nAttack G3 Wil\n\n52) wil: Sacrifice Y2 G2\nMove B1 G2 Blueberry\nMove B1 Blueberry Broccoli_commander\nC Broccoli_commander B\n\n53) Broccoli_Commander: Sacrifice R2 B2\nAttack G3 Wil\nAttack G2 Wil\n\twil: gad have you got my homeworld full of your large ships...\n\tBroccoli_Commander: You gave me no other choice ;-)\n\twil: it was inevitable.....that is the most imposing force I've ever seen in my homeworld....so I thought I'd give your home star something to remember us by...\n\n\nHomeworlds Online (SDG# 24395)\nVariants: "Hard time"\nStarted: 2013.8.10, Ended: 2013.8.13\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24407)\nVariants: "Hard time"\nStarted: 2013.8.14, Ended: 2013.11.8\nParticipants: Broccoli_Commander (S), AdamBadura (N)\nWinner: Broccoli_Commander\n\n1) AdamBadura: Homeworld G3 B2 Y3\n\n2) Broccoli_Commander: Homeworld R1 B2 G3\n\n3) AdamBadura: Build Y1 Adambadura\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) AdamBadura: Trade Y1 R1 Adambadura\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n7) AdamBadura: Build R1 Adambadura\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) AdamBadura: Build R2 Adambadura\n\n10) Broccoli_Commander: Build G1 Broccoli_commander\n\n11) AdamBadura: Trade R1 G1 Adambadura\n\n12) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n13) AdamBadura: Build G2 Adambadura\n\n14) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\n15) AdamBadura: Trade G1 Y1 Adambadura\n\n16) Broccoli_Commander: Trade G2 R2 Blueberry\n\n17) AdamBadura: Discover R2 Adambadura B1 Changeroom\n\n18) Broccoli_Commander: Build G1 Broccoli_commander\n\n19) AdamBadura: Build R1 Adambadura\n\n20) Broccoli_Commander: Discover G1 Broccoli_commander B3 Muffin\n\n21) AdamBadura: Trade Y3 G3 Adambadura\n\n22) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Muffin\nBuild Y1 Broccoli_commander\nBuild Y2 Broccoli_commander\n\n23) AdamBadura: Sacrifice G2 Adambadura\nBuild R2 Adambadura\nBuild R3 Changeroom\n\n24) Broccoli_Commander: Build R3 Blueberry\n\n25) AdamBadura: Build Y2 Adambadura\n\n26) Broccoli_Commander: Sacrifice Y1 Broccoli_commander\nMove R3 Blueberry Broccoli_commander\n\n27) AdamBadura: Trade R1 B1 Adambadura\n\n28) Broccoli_Commander: Build G2 Broccoli_commander\n\n29) AdamBadura: Trade R3 G3 Changeroom\n\n30) Broccoli_Commander: Sacrifice Y2 Broccoli_commander\nMove G2 Blueberry Changeroom\nMove G1 Blueberry Changeroom\n\n31) AdamBadura: Trade G3 R3 Changeroom\n\tAdamBadura: Tomorrow I'm going on a trip. I will be back on Monday evening. In the mean time I don't expect to be able to make any moves. On the other hand considering slowness of my moves that would not really be a change. :(\n\n32) Broccoli_Commander: Build G3 Muffin\n\n33) AdamBadura: Attack G2 Changeroom\n\n34) Broccoli_Commander: Sacrifice G2 Muffin\nBuild R1 Blueberry\nBuild R3 Blueberry\n\n35) AdamBadura: Build G2 Adambadura\n\n36) Broccoli_Commander: Sacrifice Y1 Broccoli_commander\nMove G1 Changeroom Adambadura\nCatastrophe Adambadura G\n\n37) AdamBadura: Move R1 Adambadura Blueberry\nCatastrophe Blueberry R\n\n38) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n39) AdamBadura: Move Y1 Adambadura Changeroom\n\tAdamBadura: Somehow I missed that... :(\n\n40) Broccoli_Commander: Sacrifice Y1 Broccoli_commander\nMove G3 Muffin Adambadura\n\n\nHomeworlds Online (SDG# 24422)\nStarted: 2013.8.20, Ended: 2013.10.23\nParticipants: mnkr (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\tmnkr: good day. I thought that was a 10 days/movement.\r\ncan we change it?\n\n2) mnkr: Homeworld B3 Y1 G3\n\tts52: Not sure we can change an existing game, but I'm happy to abandon this one and start a new if you like (I'm also really lax on forcing a game end just because you ran out of time, happy to just agree to let it slide for a month or so if you like).\n\n3) ts52: Build G1 Ts52\n\tmnkr: with 10 days per movement I can play well. Have you to create the game?\n\tts52: I think you have to create a new challenge to change the days/move.\n\n4) mnkr: Build G1 Mnkr\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) mnkr: Discover G1 Mnkr Y2 Nnkr\n\n7) ts52: Build G1 Ts52\n\tmnkr: excuse me I had several connection problems.\n\tts52: No problem. Glad you were able to get connected.\n\n8) mnkr: Trade G3 Y3 Mnkr\n\n9) ts52: Discover G1 Ts52 B3 Grover\n\tmnkr: Thanks, I think thatI have to learn a lot about this game before win you.\n\n10) mnkr: Build G1 Nnkr\n\tts52: There is definitely a bit of a learning curve in this game, but it's one of my favorites.\n\n11) ts52: Build G2 Grover\n\n12) mnkr: Move G1 Nnkr Mnkr\n\n13) ts52: Build G2 Ts52\n\n14) mnkr: Build G2 Mnkr\n\n15) ts52: Discover G2 Ts52 B3 Gonzo\n\n16) mnkr: Build G3 Nnkr\n\tmnkr: build G3 nnkr\n\n17) ts52: Build G3 Ts52\n\n18) mnkr: Discover Y3 Mnkr B2 Onkr\n\n19) ts52: Trade G2 Y2 Grover\n\n20) mnkr: Trade G2 Y2 Mnkr\n\n21) ts52: Build Y3 Grover\n\n22) mnkr: Build Y3 Mnkr\n\n23) ts52: Sacrifice Y3 Grover\nMove Y1 Ts52 Grover\nMove Y1 Grover Onkr\nMove Y1 Onkr Mnkr\nCatastrophe Mnkr Yellow\n\n24) mnkr: Build G2 Mnkr\n\n25) ts52: Trade G3 R3 Ts52\n\tmnkr: wow good movement! I didn't see it!\n\n26) mnkr: Move Y3 Onkr Mnkr\n\tmnkr: Am I die?\n\n27) ts52: Move R3 Ts52 Mnkr\n\n28) mnkr: Sacrifice Y3 Mnkr\nMove G3 Nnkr Mnkr\nMove G3 Mnkr Ts52\nMove G1 Nnkr Mnkr\n\tts52: I think so, yes.\n\n29) ts52: Trade G3 R3 Ts52\n\n30) mnkr: Build G2 Ts52\n\n31) ts52: Attack G2 Mnkr\n\n32) mnkr: Trade G2 R2 Ts52\n\n33) ts52: Attack R2 Ts52\n\n34) mnkr: Build G2 Ts52\n\n35) ts52: Sacrifice R2 Ts52\nAttack G1 Mnkr\nAttack G1 Mnkr\n\tts52: Thanks for the game!\n\n\nHomeworlds Online (SDG# 24179)\nStarted: 2013.8.21, Ended: 2013.9.18\nParticipants: thejackdiaz (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) thejackdiaz: Homeworld B3 R2 G3\n\n3) wil: Build G1 Wil\n\n4) thejackdiaz: Build G1 Thejackdiaz\n\n5) wil: Trade G1 Y1 Wil\n\n6) thejackdiaz: Trade G1 Y1 Thejackdiaz\n\n7) wil: Build G1 Wil\n\n8) thejackdiaz: Build G1 Thejackdiaz\n\n9) wil: Discover G1 Wil Y3 Y3\n\n\nHomeworlds Online (SDG# 24394)\nVariants: "Hard time"\nStarted: 2013.8.23, Ended: 2013.9.4\nParticipants: Marmalade (S), wil (N)\nWinner: Marmalade\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Marmalade: Homeworld G3 Y1 B3\n\n3) wil: Build G1 Wil\n\tMarmalade: Hi ho, sorry - I must have totally missed the last one, I was on holiday :)\n\twil: I am ready to be abused agin\n\n4) Marmalade: Build B1 Marmalade\n\n5) wil: Trade G1 B1 Wil\n\n6) Marmalade: Discover B1 Marmalade G2 Floob\n\n7) wil: Build B2 Wil\n\n8) Marmalade: Build B2 Floob\n\n9) wil: Discover B2 Wil Y3 Y3\n\n10) Marmalade: Trade B2 Y2 Floob\n\n11) wil: Discover B2 Y3 G2 G2\n\n12) Marmalade: Build B2 Marmalade\n\n13) wil: Build G1 Wil\n\n14) Marmalade: Trade B2 R2 Marmalade\n\n15) wil: Build B2 G2\n\n16) Marmalade: Build Y1 Floob\n\n17) wil: Trade B2 Y2 G2\n\n18) Marmalade: Build B2 Marmalade\n\n19) wil: Build G1 Wil\n\n20) Marmalade: Trade B3 G3 Marmalade\n\n21) wil: Discover G1 Wil Y3 Y3\n\n22) Marmalade: Move R2 Marmalade G2\n\n23) wil: Sacrifice Y2 G2\nMove B2 G2 Y3\nDiscover B2 Y3 G2 Phooey\n\twil: some fool did not get a gun....AGAIN\n\n24) Marmalade: Sacrifice G3 Marmalade\nBuild B2 Floob\nBuild B3 Marmalade\nBuild B3 Floob\n\n25) wil: Trade B1 R1 Wil\n\n26) Marmalade: Trade B3 G3 Floob\n\n27) wil: Sacrifice G3 Wil\nBuild G1 Y3\nBuild G3 Wil\nBuild R1 Wil\n\n28) Marmalade: Move B2 Floob Y3\n\n29) wil: Discover R1 Wil Y3 Y3a\n\n30) Marmalade: Sacrifice G3 Floob\nBuild B1 Floob\nBuild B3 Floob\nBuild B3 Y3\n\n31) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Wil\nBuild R1 Wil\n\n32) Marmalade: Sacrifice R2 G2\nAttack G1N Y3\nAttack G1N Y3\n\n33) wil: Move G3 Wil Y3a\n\n34) Marmalade: Sacrifice Y2 Floob\nMove G1 Y3 Wil\nMove G1 Y3 Wil\nCatastrophe Wil G\n\n35) wil: Move G3 Y3a Wil\n\twil: oops\n\n36) Marmalade: Trade B2 R2 Marmalade\n\n37) wil: Build B2 Phooey\n\n38) Marmalade: Move B3 Floob Y3a\n\n39) wil: Discover R1 Y3a Y2 Y2\n\n40) Marmalade: Build R2 Marmalade\n\twil: got behind and on the run yet agin....\n\n41) wil: Build G1 Wil\n\tMarmalade: I find that really interesting about Homeworlds - one mistake, or less-than-efficient move can have consequences for several turns after.\r\n\r\nI still haven't worked out how you play the mid-to-end game, but I can see how you can gain an advantage in the early game (even if that's by watching someone beat me)\n\n42) Marmalade: Trade R2 Y2 Marmalade\n\n43) wil: Move G1 Wil Y3 Y3\n\n44) Marmalade: Build R2 Marmalade\n\twil: absolutely agree..only i don't appear to be learning...\n\n45) wil: Build G1 Wil\n\tMarmalade: See, this is where I flounder - I've clearly gained an advantage in ships, but I don't know how to exploit it yet.\n\n46) Marmalade: Sacrifice Y2 Marmalade\nMove B3 Y3 Wil\nMove B3 Y3a Wil\n\n47) wil: Sacrifice G3 Wil\nBuild R2 Y2\nBuild R3 Wil\nBuild R3 Wil\nCatastrophe Wil R\n\twil: beware thespeech..... i missed the take one you get back two scenario yet again...\n\n48) Marmalade: Sacrifice R2 Marmalade\nAttack G1N Wil\nPass\n\tMarmalade: I wasn't bluffing earlier - I couldn't see a way forward, then it just fell into place. Thanks for the game again.\n\twil: Someday I hope to actually challenge you.\n\n\nHomeworlds Online (SDG# 24299)\nVariants: "Hard time"\nStarted: 2013.8.26, Ended: 2013.10.2\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld Y2 G1 B3\n\twil: lamb walking into slaughter agin....mutton for punishment\n\n2) SilentTitan: Homeworld R3 B2 G3\n\tSilentTitan: no....no.. you had me on that last game and I timed out.... I apologize for that. I have been insanely busy getting jobs leaving jobs.. hopefully it's all going to slow down a bit in about a week.\r\n\r\n\n\n3) wil: Build B1 Wil\n\n4) SilentTitan: Build G1 Silenttitan\n\n\twil: hope all goes well on the work search...\n\n5) wil: Discover B1 Wil G3 G3\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) wil: Build B1 Wil\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) wil: Build B2 G3\n\n10) SilentTitan: Trade B2 Y2 Silenttitan\n\n11) wil: Trade B2 Y2 G3\n\n12) SilentTitan: Build G1 Silenttitan\n\n13) wil: Build B2 Wil\n\n14) SilentTitan: Discover B1 Silenttitan G1 Sol\n\n15) wil: Trade B2 R2 Wil\n\n16) SilentTitan: Build B2 Sol\n\n17) wil: Discover B1 Wil Y3 Y3\n\n18) SilentTitan: Trade B1 Y1 Sol\n\n19) wil: Build B1 Wil\n\n20) SilentTitan: Trade B2 R2 Sol\n\n21) wil: Build B2 Wil\n\n22) SilentTitan: Build Y1 Sol\n\n23) wil: Trade B3 G3 Wil\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n25) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B3 Y3\nBuild B3 Wil\n\n26) SilentTitan: Discover Y1 Sol B3 Tic\n\n27) wil: Trade B3 G3 Y3\n\n28) SilentTitan: Build G2 Silenttitan\n\twil: simply amazing how differently these games all play out.\n\n29) wil: Build B3 G3\n\n30) SilentTitan: Discover Y1 Sol R3 Tac\n\tSilentTitan: Yes it is\n\n31) wil: Trade B3 G3 G3\n\n32) SilentTitan: Discover Y2 Silenttitan R1 Toe\n\n33) wil: Build B3 G3\n\n34) SilentTitan: Move Y2 Toe Tic\n\n35) wil: Trade B3 R3 G3\n\n36) SilentTitan: Move R2 Sol Silenttitan\n\n37) wil: Move R3 G3 Sol\n\n38) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Tic Wil\nMove Y1 Tac Wil\nDiscover Y1 Sol B3 Toe\n\n39) wil: Build Y3 G3\n\n\n\n\n40) SilentTitan: Trade Y2 G2 Tic\n\n41) wil: Build G2 Y3\n\n42) SilentTitan: Build Y2 Silenttitan\n\n43) wil: Sacrifice G3 Y3\nBuild G3 Y3\nBuild R1 Sol\nBuild R1 Wil\n\n44) SilentTitan: Move Y1 Toe Wil\nCatastrophe Wil Yellow\n\n45) wil: Sacrifice G3 Y3\nBuild G3 Y3\nBuild B3 G3\nBuild Y1 G3\n\n46) SilentTitan: Sacrifice Y3 Silenttitan\nMove G2 Silenttitan Wil\nMove G1 Silenttitan Wil\nMove G2 Tic Wil\nCatastrophe Wil Green\n\n\twil: have you any idear what a relief that is you finally blew that up??\n\tSilentTitan: Bugging you was it?\n\tSilentTitan: Ok... So I believe this is checkmate.... I don't believe you can do anything to stop it. my next move is:\r\n\r\nSacrifice Y3 Silenttitan\r\nmove g2 silenttitan wil\r\nmove g1 silentttian wil\r\nmove g2 tic wil\r\ncatastrophe wil green\r\n\r\nyou can undo your last move and see if there is anything you can do. I did want you to be aware of what I was going to do before I did it .... because it's hard to see what happened after it happens.\r\n\r\n\n\tSilentTitan: nevermind.... I found an issue\n\tSilentTitan: turns out you could sac your y3 and move the three blue ships in your homeworld to kill the Tic system and that would have taken my third green away so I would not have been able to cat your homeworld. \n\twil: argghh...I missed it. So in reality I didn't start another game while we were in one...I was out and didn't realize it...I was looking elsewhere and didn't see that...nice play, thanx \n\nHomeworlds Online (SDG# 24447)\nVariants: "Hard time"\nStarted: 2013.9.3, Ended: 2013.9.18\nParticipants: wil (S), shmil1 (N)\nWinner: wil\n\n1) shmil1: Homeworld R3 G2 B3\n\n2) wil: Homeworld G2 Y1 B3\n\n3) shmil1: Build B1 Shmil1\n\twil: thank you for the game!\n\n4) wil: Build B1 Wil\n\tshmil1: i didn´t play for a while. looking forward...\r\n\n\n5) shmil1: Trade B1 Y1 Shmil1\n\n6) wil: Discover B1 Wil G3 G3\n\n7) shmil1: Build Y1 Shmil1\n\n8) wil: Build B1 G3\n\n9) shmil1: Build Y2 Shmil1\n\n10) wil: Build B1 Wil\n\n11) shmil1: Discover Y2 Shmil1 G1 Zelena1\n\n12) wil: Build B2 G3\n\n13) shmil1: Build Y2 Zelena1\n\n14) wil: Trade B2 Y2 G3\n\n15) shmil1: Sacrifice Y2 Zelena1\nMove Y2 Zelena1 G3\nMove Y2 G3 Wil\n\n16) wil: T B3 R3 Wil\n\n17) shmil1: Build Y2 Wil\n\twil: wow...what have I done...nice move you scurvy dog!!\n\n18) wil: Build Y3 G3\n\twil: This could very well be a record loss for me!\n\n19) shmil1: Trade B3 G3 Shmil1\n\n20) wil: Discover Y3 G3 G1 G1\n\n21) shmil1: Discover Y1 Shmil1 G1 Malazelena\n\n22) wil: Build Y3 G1\n\n23) shmil1: Discover Y1 Malazelena B3 Modra\n\n24) wil: Build Y3 G3\n\n\n25) shmil1: Move Y1 Modra Wil\nCatastrophe Wil Y\n\n26) wil: Build B2 G3\n\n27) shmil1: Move Y1 Shmil1 G1\n\n28) wil: Sacrifice Y2 G3\nMove Y3 G1 Shmil1\nMove Y3 G1 Shmil1\n\n29) shmil1: Attack Y3 Shmil1\n\n30) wil: Sacrifice R3 Wil\nAttack G3 Shmil1\nAttack Y3 Shmil1\nPass\n\n\twil: the ole you take one, I take two has been used against me half a dozen times and I've finally learned how to get through it.\n\nHomeworlds Online (SDG# 24436)\nVariants: "Hard time"\nStarted: 2013.9.6, Ended: 2013.9.9\nParticipants: SilentTitan (S), Marmalade (N)\nWinner: SilentTitan\n\n\nHomeworlds Online (SDG# 23909)\nVariants: "Unrated, Hard time"\nStarted: 2013.9.10, Ended: 2013.11.9\nParticipants: wil (S), Marmalade (N), Aristos (E)\nWinner: wil\n\n1) Marmalade: Homeworld Y1 G2 B3\n\n2) Aristos: Homeworld B3 G2 Y3\n\n3) wil: Homeworld R3 B1 G3 Wil\n\n4) Marmalade: Build B1 Marmalade\n\twil: Well welcome to the fray! I didn't like the four way because two people were inherently 1 star away...so glad you all started this one up...it is my first time in a three way battle for the universe and I intend to enjoy annihilation...\n\n5) Aristos: Build Y1 Aristos\n\n6) wil: Build G1 Wil\n\tAristos: I've only played one previous more-than-two-player game, so this will be novel -- especially as that last one ended in a "withdraw due to failure to play in time" by two of my three opponents.\n\twil: yeah....that sucks...can't find time to make a move in 5 days?? watsup widat?\n\n7) Marmalade: Build B1 Marmalade\n\n8) Aristos: Build Y1 Aristos\n\n9) wil: Trade G1 B1 Wil\n\n10) Marmalade: Discover B1 Marmalade G3 Bigpointything\n\n11) Aristos: Discover Y1 Aristos Y1 Spark\n\n12) wil: Build B2 Wil\n\n13) Marmalade: Build B2 Bigpointything\n\n14) Aristos: Build Y2 Aristos\n\n15) wil: Trade B2 Y2 Wil\n\n16) Marmalade: Build B2 Marmalade\n\n17) Aristos: Trade Y2 B2 Aristos\n\twil: oops....just about killeded myselfish\n\tMarmalade: heehee\n\n18) wil: Build Y2 Wil\n\n19) Marmalade: Trade B2 Y2 Marmalade\n\n20) Aristos: Trade Y1 R1 Aristos\n\n21) wil: Discover B1 Wil G2 G2\n\n22) Marmalade: Trade B2 R2 Bigpointything\n\tAristos: As I said, this is my first multiplayer game... I find myself having trouble contemplating moves that Wil would never play against me 1-on-1 because it would give me too much advantage, but because I'm not the next player are fine because Marmalade takes advantage instead of me. Tricky.\n\twil: you underestimate my stupidity...\n\n23) Aristos: Discover B2 Aristos G1 Ping\n\n24) wil: Build B2 G2\n\tAristos: You named a star system G2? That's just evil. At least it is a green size 2 star. Had you named a Y3 as G2... hm... as a strategy, that's worth considering... :-)\n\n25) Marmalade: Build B2 Bigpointything\n\n26) Aristos: Build Y1 Aristos\n\twil: ah...I do it out of convenience...evil is making us type some long convoluted made up name for star systems...but i definetly like the idear of naming them what they are not...you've put it out in the universe expect it in a star near you soon! Btw...I was in one 4 person game and it was PAINFUL how slow play went and the game eventually died...I absolutely appreciate the responsiveness of you both...it makes it fun. Gotta find someone to make an app, I'd be blown away to see this in real time.\n\n27) wil: Trade B2 R2 G2\n\tMarmalade: This is the longest-lasting multiplayer game I've had on this site...\n\twil: Wow, that is awful...14 moves in 9 days and that is the longest??\n\n28) Marmalade: Trade B2 Y2 Bigpointything\n\n29) Aristos: Move Y1 Aristos Ping\n\tMarmalade: Yep, so far they've all been abandoned 3-4 moves in.\n\n30) wil: Move Y2 Wil G2\n\n31) Marmalade: Build Y3 Bigpointything\n\n32) Aristos: Build Y3 Ping\n\twil: Well we've got playas here this time....we is rollin! Star systems building and expanding.\n\n33) wil: Build Y3 G2\n\n34) Marmalade: Build B2 Bigpointything\n\n35) Aristos: Build B2 Ping\n\twil: you all are so sweet, you shared and left me one!\n\n36) wil: Trade Y2 B2 Wil\n\n37) Marmalade: Discover B2 Bigpointything G2 Floop\n\tAristos: We aim to please. \n\n38) Aristos: Build Y2 Aristos\n\n39) wil: Build B3 G2\n\tAristos: I'm trying to figure out how afraid to be of BigPointyThing. In a two-player game, I'd have to worry about his those yellow ships jumping into my homeworld or into Ping in short order, but in the three-player, it seems like either move would leave Marmalade and me totally at the mercy of wil. Weird balance of power. \n\n40) Marmalade: Build B3 Bigpointything\n\tMarmalade: I'm having the same issue. It's a lot harder to judge this in free-for-all. I suspect that Homeworlds multiplayer is best with the sinister variant (i.e., attack left), but we'll see how this goes.\n\twil: BUUWAAHHAAAHAAAA\n\n41) Aristos: Sacrifice Y2 Aristos\nMove Y1 Spark G2\nMove Y1 Ping G2\nCatastrophe G2 Yellow\n\twil: I'm actually just totally confused... I enjoy being able to play with you two...hope I can put up a good game. I think I'll realy have to set this one up at home. I say however it turns out, we reboot it switching homeworlds and keep playing the same game from different seats to see the variances...\n\n42) wil: Trade B3 Y3 G2\n\tAristos: Ok. You both took B3s without leaving one for me. Therefore, one of you must suffer. I will either remove all yellows in G2 or all yellows in BigPointyThing. Please make your case as to why you are the lesser threat and I need to go after your opponent. You have a couple hours, maybe even until dawn, before I flip a coin.\n\n43) Marmalade: Build B3 Floop\n\tAristos: Decided not to wait... Finally decided to take out G2 on the grounds that wil has no yellow remaining so the loss was more devastating. If I am going to "use up" my fire power on one opponent, it seemed to make the most sense to go after the one that would be most devastated. Sorry, wil. I just felt threatened by two strong opponents. I may pay for this zealotry... I've left Marmalade rather well positioned. \n\n44) Aristos: Build R1 Aristos\n\n45) wil: Build Y1 G2\n\n46) Marmalade: Trade B2 Y2 Floop\n\n47) Aristos: Discover B2 Ping G3 Pong\n\n48) wil: Build B2 G2\n\n49) Marmalade: Move B3 Floop Pong\n\n50) Aristos: Build Y1 Ping\n\twil: this has got to be the most responsive/active game I've been in...love participation.\n\n51) wil: Trade B2 Y2 Wil\n\n52) Marmalade: Trade B3 R3 Pong\n\tAristos: Why, hello there, Marmalade. Glad we can *share* this Pong system. As a G3, it is certainly big enough for both of us. RIGHT?\n\n53) Aristos: Sacrifice Y3 Ping\nMove B2 Ping Pong\nMove B2 Pong Marmalade\nMove B2 Pong Marmalade\nCatastrophe Marmalade Blue\n\twil: I was thinking of joining you....still may...\n\n54) wil: Build G1 Wil\n\tMarmalade: Phenomenal Cosmic Triangles... Itty Bitty Living Space.\n\tAristos: Sacrifice y3 Ping\r\nmove b2 Ping g2\r\nmove b2 g2 Marmalade\r\nmove b2 Pong Marmalade\r\ncatastrophe Marmalade Blue\n\n55) Marmalade: Move B3 Bigpointything Marmalade\n\tAristos: Typed in the wrong slot. \r\n\r\nI attacked Wil earlier. Now, I balanced the scales of justice... I took out the same number of ships, even. \r\n\r\nWhat was that about itty bitty living spaces? :-) \n\n56) Aristos: Trade R1 B1 Aristos\n\twil: I'm not quite understanding the logic...you knocked out two of my ships at a cost of 3 of yours, spent another three to knock out two of Marmalades...has the aggresiveness paid off?\n\twil: I'm not quite understanding the logic...you knocked out two of my ships at a cost of 3 of yours, spent another three to knock out two of Marmalades...has the aggresiveness paid off?\n\n57) wil: Discover Y1 G2 G1 G1\n\tMarmalade: "Never interrupt your enemy when he is making a mistake."\n\tAristos: Has the aggressiveness paid off? I don't know. I'm still figuring out all the levers that I have to play with in a 3-way game. \n\n58) Marmalade: Build B2 Marmalade\n\twil: I have no enemies here. I have fellow gamers exploring new territory...for us....once we get the hang of it....\n\n59) Aristos: Trade Y3 G3 Aristos\n\n60) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G3 Wil\nBuild R1 G2\n\n61) Marmalade: Build B2 Bigpointything\n\n62) Aristos: Build R1 Aristos\n\twil: What are the levers you are thinking are here and are not in binary? Or what is it you are calling levers in binary? bluebird...factory....etc??\n\twil: we are at 30 moves the equivalaent of 20 in a binary game...\n\n63) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 G2\nBuild Y3 G1\n\n64) Marmalade: Build Y3 Floop\n\tAristos: Levers? Well, take a look at my position. It's a disaster in a two player game. But neither of you can really afford to commit enough forces to truly knock me out of the game without leaving yourself too weak once it is a two-player match. Oh, you could hit me, sure, just like I've hit both of you, but taking me out requires a bigger slice of forces. I find that interesting. It means that in a three-player game, there are tactical options that are suicidal in a two-player game -- which I would have guessed before the game started, but I am surprised how far I have pushed that. \n\n65) Aristos: Move Y1 Ping Aristos\n\n66) wil: M B1 G2 G1\n\n67) Marmalade: Discover B1 Bigpointything G1 Fluff\n\n68) Aristos: Move R1 Aristos Fluff\n\n69) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 G2\nBuild B3 G1\n\n70) Marmalade: Build B3 Fluff\n\n71) Aristos: Build R1 Fluff\n\n72) wil: Move R1 G2 G1\n\n73) Marmalade: Move Y2 Bigpointything Fluff\n\n74) Aristos: Attack B1N Fluff\n\n75) wil: Build R2 G1\n\n76) Marmalade: Sacrifice R2 Bigpointything\nAttack R1E Fluff\nAttack R1E Fluff\n\tAristos: Why did I attack? Because it was pretty much the only move I had... all others were suicide. \n\tAristos: In case you didn't know (because I didn't and had to go find out) in a multiplayer game, to attack you have to specify which opponent's ship. So the command I just did was:\r\n attack b1N Fluff\r\nThe "N" specifies "North".\n\n77) Aristos: Build R2 Aristos\n\n78) wil: Discover B3 G1 R3 R3\n\n79) Marmalade: Attack B1E Fluff\n\n80) Aristos: Pass\n\twil: Now we know, you just like to attack. But for future reference, it is at the top of our page... "the attack command. In this case, the ship must also be specified as belonging to a particular player by appending that player's seat designation (eg. G2S, B1E)."\n\n81) wil: Move R1 G1 Pong\n\tAristos: :-) Missed seeing that. Thanks. \n\n82) Marmalade: Sacrifice Y3 Floop\nMove R3 Pong Floop\nMove R1 Fluff Aristos\nMove R1 Fluff Aristos\nCatastrophe Aristos Red\n\tAristos: Ok... at some point your two massive armies are going to have to actually move against each other. Perhaps you'll kill me along the way... regardless, I'm going to just sit here and watch for a bit.\n\n83) Aristos: Build Y3 Aristos\n\twil: You will have to pay for that front row seat..\n\n84) wil: Move Y1 G2 Pong\n\n85) Marmalade: Move R3 Floop Pong\n\n86) Aristos: Trade Y1 R1 Aristos\n\n87) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Pong\nBuild R1 Pong\nCatastrophe Pong R\n\n88) Marmalade: Trade B2 R2 Marmalade\n\n89) Aristos: Build Y1 Aristos\n\n90) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 R3\nBuild R1 G1\n\n91) Marmalade: Build R1 Marmalade\n\n92) Aristos: Discover Y3 Aristos R1 Flash\n\n93) wil: Move G1 Wil G2\n\n94) Marmalade: Move R2 Marmalade Pong\n\twil: The way these games play out sure is interesting...you always have to look behind your back...I like it a lot better than four players and while it will get to two at sometime, I have a feeling that when it makes it to two....the game is essentially over. As I see it the game is to not anihilate another, but be in a position to take over their homeworld and quickly take over one or more of their star systems.\n\twil: I wish there was an 'online' light on our names, so we would know who is there and if a move was to happen to hang around..\n\n95) Aristos: Move Y3 Flash Pong\n\tAristos: Wil: I started with a similar hypothesis, but I'm not sure it is supported by this game.\r\n\r\nThat hypothesis suggests that at some point, one player will make a tragic mistake and you just need to have an armada built up so you can trivially take advantage of that mistake and attack your remaining opponent in a single turn. Let's call it the "lurker hypothesis". \r\n\r\nMy current hypothesis is that I think *both* of you have a short term goal to remove me from the board, rather than waiting for me to make a mistake. After that, you'll then play a robust two-player game. Call it the "joint strike hypothesis". \r\n\r\nHere's my argument...\r\n\r\nI attacked both of you early on. That action was predicated on the idea that neither of you could afford to actually take me out without leaving yourselves vulnerable. I thought maybe an early strike would put me in a beneficial position later on. \r\n\r\nClearly it did not leave me in a good position. I was wrong there. But I am still alive because it is expensive for you to take me out. That would seem to support the lurker hypothesis.\r\n\r\nBut in the current position, although I have very small chance of winning, I have a very high chance of playing kingmaker. I inject a lot of chaos into the game precisely because I have no clear path to victory, which is going to lead me to make moves that are unusual if only because they are unexplored. That's going to continually jerk around your strategies. My ships mean that there are moves that Wil cannot take and moves that Marmalade cannot take -- but which limitations are more extreme are totally variable at my whim. And unless I'm missing something, I really don't have any reason to accept any diplomacy from either of you -- if I *actively* help one destroy the other, I definitely lose the game. If I tilt the balance such that one of you decides to attack the other and you both lose strength, that's the only shot I have at winning. \r\n\r\nSo in a game between Alice, Bob and Chuck, I think the best strategy is for Alice to quickly identify the weakest player (Chuck) and then ally with the other opponent (Bob) to take Chuck out. The easiest way to do this without creating a formal alliance is for Alice to make an attack on Chuck that makes it dead easy for Bob to deliver the killing blow. \r\n\r\nIn short, I have no reason to help you, and I am a chaotic force on the board that might swing for or against you. I disrupt your strategy versus the opponent that really matters. So it makes most sense for you to both be setting yourselves up to take me out, and if you watch each other's moves on the assumption that that is the goal, you can probably coordinate the strike without ever formally negotiating the alliance. \n\n96) wil: Move Y1 G1 Pong\n\twil: I don't know...being a relative novice to the entire game this one has a twist. I surely don't see anyone being able to wipe out anyone ina single move after a split...I also don't see a reason for any alliance....I see it as winner take all...what is the bennie of helping someone only to come in second?\n\n97) Marmalade: Sacrifice Y3 Bigpointything\nMove B2 Bigpointything Fluff\nMove B1 Fluff R3\nMove B2 Fluff R3\nCatastrophe R3 Blue\n\tMarmalade: If it's worth anything for your analysis - your early attacks were somewhat wasteful, so I saw an opportunity to get a step up the ladder. Then, for a few reasons, but mostly my fault, this allowed Wil to take the advantage from me.\r\n\r\nI don't have a short-term goal of removing you, so much as there was a tactical opening to do so.\n\twil: Yes currently scary for me..I'm the worst player of the three, and much more used to seeing an uphill battle by 30 moves into the game. The whole king maker concept I still don't understand....if you were to continue waiting and watching when one of us attacks you'd be in a position to be even up due to losses and risks during the attack.\n\n98) Aristos: Build Y3 Aristos\n\n99) wil: Build G3 G2\n\n100) Marmalade: Move Y2 Fluff Pong\nCatastrophe Pong Y\n\tMarmalade: Feeling the need to do something dramatic, or else this is going to end very poorly for me :)\n\n101) Aristos: Discover G3 Aristos Y1 Twinkle\n\n102) wil: Trade R2 Y2 G1\n\n103) Marmalade: Build R1 Marmalade\n\n104) Aristos: Move G3 Twinkle G2\nCatastrophe G2 Green\n\n105) wil: Build R2 G1\n\n106) Marmalade: Build R2 Pong\n\tAristos: Man, Wil, you do know how to tempt me. I lose one G3 ship to take out six of your ships in the G2 system? I was expecting you to move a green ship somewhere. Now I'm not sure whether I should attack or not. \n\n107) Aristos: Build R2 Aristos\n\tAristos: It cost me all of my green tech, but I just couldn't see any way that destroying *6* ships with one of mine was a bad trade. \n\n108) wil: Discover R2 G1 Y3 G3\n\n109) Marmalade: Discover R1 Marmalade Y3 Moof\n\n110) Aristos: Discover R2 Aristos Y1 Blip\n\n111) wil: Build R3 G1\n\n112) Marmalade: Trade Y2 G2 Marmalade\n\n113) Aristos: Build R3 Aristos\n\n114) wil: Trade R3 G3 G1\n\n115) Marmalade: Trade B3 G3 Fluff\n\n116) Aristos: Discover R1 Aristos G1 Glint\n\n117) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 G1\nBuild R3 G3\n\twil: Yeah...my stupidity allowed you to get back from your attacks earlier...\n\n118) Marmalade: Build Y1 Floop\n\n119) Aristos: Discover R2 Blip Y2 Shimmer\n\n120) wil: Move R2 G3 Glint\n\n121) Marmalade: Move Y1 Floop G1\n\n122) Aristos: Move Y3 Aristos Glint\n\n123) wil: Sacrifice Y2 G1\nMove R2 Glint Moof\nDiscover Y3 G1 B3 B3\n\n124) Marmalade: Build B1 Marmalade\n\n125) Aristos: Move Y3 Glint Pong\n\twil: attacked on two fronts...you guys ganging up??\n\twil: ok, one was defensive...\n\n126) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\nBuild Y2 B3\n\n127) Marmalade: Sacrifice B1 Marmalade\nTrade R2 B2 Pong\n\tMarmalade: I do wonder how likely this is to simply stalemate. It's a problem in any free-for-all multiplayer game, of course, but I wonder if the simplicity of Homeworlds doesn't tend towards that outcome, given good play.\r\n\n\twil: with a three way here, I don't see a stalemate...there will be a moment where one does pounce and the other take advantage the two on one will build both, the loser making some last ditch effort to be kingmaker as they die out...\n\n128) Aristos: Sacrifice R2 Shimmer\nAttack R2N Pong\nAttack B2N Pong\n\n129) wil: Attack Y1N G1\n\n130) Marmalade: Build Y2 Floop\n\n131) Aristos: Build R2 Pong\n\n132) wil: Move R3 G1 Floop\n\n133) Marmalade: Sacrifice Y2 Floop\nMove Y2 Floop Fluff\nMove R1 Moof Fluff\n\n134) Aristos: Build Y2 Pong\n\n135) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Floop\nBuild B1 G1\n\twil: No matter how this works out...it has been a great game...I moved just before I went out to dinner, came home, went out to the garage and had a beer with the neighborhood boys and come back and have a move to make!! Amazing. Earlier you were saying you hadn't got so far in a multiplayer game...looks like to me this is going to go over a hundred moves. And I look forward to them.\n\n136) Marmalade: Build B2 Marmalade\n\n137) Aristos: Build B2 Pong\n\twil: ah....I found such a nice star system...I thought it had inhabitants, but it seems they must have just left it for me...the coffee is still hot.\n\n138) wil: Move B1 G1 G3\n\n139) Marmalade: Move R1 Fluff Floop\n\n140) Aristos: Sacrifice Y2 Pong\nMove R1 Glint Floop\nDiscover R2 Pong Y2 Zip\nCatastrophe Floop Red\n\tAristos: Sooo many times in this game I have wished I played after Wil instead of before...\n\twil: we play again we can reverse orders....so each of you can have a fair shake at my stupid moves!\n\n141) wil:\nBuild B2 G1\n\n142) Marmalade: Sacrifice B2 Marmalade\nTrade G3 B3 Fluff\nTrade Y2 R2 Fluff\n\n143) Aristos: Build Y2 Pong\n\tAristos: It's not about your mistakes. It's about the timing holes between your moves and Marmalade's. Moves that are great for me right after Wil moves are no longer advantageous after Marmalade moves. You two do a great job of defending each other's assets. \n\tAristos: (That's not an accusation of collaboration... just the way the plays have worked out.)\n\n144) wil: Discover G1 Wil B2 R3\n\n145) Marmalade: Build R1 Fluff\n\n146) Aristos: Trade B2 G2 Pong\n\n147) wil: Sacrifice Y2 B3\nMove B1 G1 Aristos\nMove B2 G1 Aristos\nCatastrophe Aristos B\n\n148) Aristos: Sacrifice G2 Pong\nBuild R1 Aristos\nBuild R3 Pong\n\n149) wil: Sacrifice Y2 Wil\nMove R2 Moof Aristos\nMove R1 G1 Aristos\nCatastrophe Aristos R\n\n150) Aristos: Sacrifice Y2 Pong\nMove Y3 Pong Aristos\nMove R3 Pong Aristos\n\n151) wil: Move Y3 B3 Fluff\n\twil: Everyone ok? Not nagging but playing had a lull here and just making sure folks are alright.\n\twil: 77th move coming up....\n\n\tAristos: Well played... but there's no way I'm coming back from that. I was ok as long as you had another opponent to deal with. ;-) \n\nHomeworlds Online (SDG# 24472)\nVariants: "Hard time"\nStarted: 2013.9.10, Ended: 2013.10.29\nParticipants: SilentTitan (S), Aristos (N)\nWinner: SilentTitan\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\tAristos: So, we meet once again. I have fended off a few opponents since our last contest... perhaps I have learned something? In any case, good game!\n\tSilentTitan: I however have been playing chase. But I am glad to have a challenger. Good game to you as well.\n\n3) Aristos: Build Y1 Aristos\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Aristos: Trade Y1 G1 Aristos\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Aristos: Discover G1 Aristos Y1 Spark\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Aristos: Build G1 Spark\n\n10) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n11) Aristos: Move G1 Spark Sol\n\n12) SilentTitan: Build G2 Silenttitan\n\tAristos: Dang it. Sequences that work just fine against other players never work out when playing against you. And for some reason, I just can't see more than one move down the line in your games. \n\n13) Aristos: Build G2 Spark\n\n14) SilentTitan: Discover G2 Silenttitan G3 Soul\n\tSilentTitan: No battleplan survives meeting with the enemy.\n\n15) Aristos: Build Y1 Aristos\n\n16) SilentTitan: Build Y2 Silenttitan\n\n17) Aristos: Build G2 Sol\n\n18) SilentTitan: Sacrifice G2 Soul\nBuild G2 Sol\nBuild G3 Silenttitan\nCatastrophe Sol Green\n\n19) Aristos: Build Y2 Aristos\n\n20) SilentTitan: Trade G3 R3 Silenttitan\n\n21) Aristos: Trade Y3 R3 Aristos\n\n22) SilentTitan: Discover Y1 Silenttitan G3 Tic\n\n23) Aristos: Build G1 Spark\n\n24) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Tic\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n25) Aristos: Discover Y1 Aristos G1 Pong\n\n26) SilentTitan: Discover Y3 Silenttitan Y3 Sol\n\n27) Aristos: Discover G1 Spark B3 Pop\n\n28) SilentTitan: Trade Y2 G2 Silenttitan\n\n29) Aristos: Build Y2 Pong\n\n30) SilentTitan: Sacrifice Y1 Tic\nDiscover Y3 Sol R1 Tac\n\n31) Aristos: Build R1 Aristos\n\n32) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y1 Tac\nBuild Y3 Silenttitan\n\n33) Aristos: Build G2 Pop\n\n34) SilentTitan: Move R3 Silenttitan Pop\n\n35) Aristos: Sacrifice Y2 Pong\nMove G2 Pop Spark\nMove G2 Spark Tic\n\n36) SilentTitan: Sacrifice Y2 Tic\nMove R3 Pop Spark\nDiscover Y1 Tac B2 Toe\n\n37) Aristos: Build G2 Tic\n\n38) SilentTitan: Attack G2 Spark North\n\n39) Aristos: Sacrifice G2 Tic\nBuild G2 Spark\nBuild G3 Pop\n\n40) SilentTitan: Sacrifice G2 Spark\nBuild R1 Spark\nBuild Y2 Tac\n\n41) Aristos: Trade R1 B1 Aristos\n\n42) SilentTitan: Attack G2 Spark North\n\n43) Aristos: Build Y2 Pong\n\n44) SilentTitan: Move Y3 Silenttitan Pop\n\n\tAristos: Good game. Thanks.\n\nHomeworlds Online (SDG# 24476)\nVariants: "Hard time"\nStarted: 2013.9.11, Ended: 2013.9.25\nParticipants: goulo (S), MagicJohn (N)\nWinner: goulo\n\n1) MagicJohn: Homeworld B1 Y2 G3\n\tgoulo: hi, have fun!\n\n2) goulo: Homeworld R3 B1 G3\n\tMagicJohn: backatcha...\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) goulo: Build G1 Goulo\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) goulo: Build G1 Goulo\n\n9) MagicJohn: Trade G1 R1 Magicjohn\n\n10) goulo: Build G1 Goulo\n\n11) MagicJohn: Trade R1 B1 Magicjohn\n\n12) goulo: Trade G3 B3 Goulo\n\n13) MagicJohn: Build B2 Magicjohn\n\n14) goulo: Build B2 Goulo\n\n15) MagicJohn: Discover B2 Magicjohn R3 Shelob\n\n16) goulo: Trade B2 Y2 Goulo\n\n17) MagicJohn: Build B2 Magicjohn\n\n18) goulo: Discover Y1 Goulo G2 Smeraldego\n\n19) MagicJohn: Discover B1 Magicjohn Y3 Gimli\n\n20) goulo: Discover Y1 Smeraldego B3 Safirego\n\n\tMagicJohn: My wife is still quite ill and I think I need to spend my efforts helping her to recover. I'll get back to gaming when (hopefully) that occurs. Take care and thanks for the game. \r\nMJ\n\tgoulo: Oh no! I'm sorry to hear that! I wish you and your wife the best.\n\nHomeworlds Online (SDG# 24480)\nStarted: 2013.9.19, Ended: 2014.1.19\nParticipants: wil (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R2 B3 G3\n\n2) wil: Homeworld G2 Y1 B3\n\tMandrel: Have a good game\n\n3) Mandrel: Build G1 Mandrel\n\twil: I look forward to it...I've been learning by getting slaughtered by excellent players...looks like I got another whipping coming!\n\n4) wil: Build B1 Wil\n\tMandrel: You're very kind, but I'm not so sure that will be the outcome!\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) wil: Trade B1 Y1 Wil\n\n7) Mandrel: Build Y2 Mandrel\n\n8) wil: Build Y2 Wil\n\n9) Mandrel: B Y2 Mandrel\n\twil: I can see i am in trouble already!\n\n10) wil: Trade Y1 R1 Wil\n\n11) Mandrel: D Y2 Mandrel B1 Loop\n\n12) wil: Build B1 Wil\n\n13) Mandrel: B G1 Mandrel\n\n14) wil: Build R1 Wil\n\n15) Mandrel: B G1 Mandrel\n\n16) wil: Discover Y2 Wil G3 G3\n\n17) Mandrel: M G1 Mandrel Loop\n\n18) wil: Move R1 Wil G3\n\n19) Mandrel: T G1 R1 Mandrel\n\n20) wil: Build R2 Wil\n\n21) Mandrel: M R1 Mandrel Loop\n\n22) wil: Move B1 Wil G3\n\n23) Mandrel: Build Y1 Mandrel\n\n24) wil: Build Y3 G3\n\n25) Mandrel: B Y3 Loop\n\n26) wil: Discover Y2 G3 G1 G1\n\n27) Mandrel: D Y1 Mandrel G1 Solution\n\n28) wil: Build Y3 G3\n\n29) Mandrel: B G2 Mandrel\n\n30) wil: Trade Y3 R3 G3\n\n31) Mandrel: Build Y3 Solution\n\n32) wil: Move R3 G3 G1\n\n33) Mandrel: S G3 Mandrel\nBuild G2 Loop\nBuild G3 Mandrel\nB G3 Mandrel\n\n34) wil: Build B1 G3\n\n35) Mandrel: T G3 B3 Mandrel\n\n36) wil: Trade Y3 G3 G3\n\n37) Mandrel: B Y3 Loop\n\n38) wil: Build R2 G3\n\n39) Mandrel: Build R3 Loop\n\n40) wil: Build R3 G1\n\n41) Mandrel: Sacrifice Y2 Loop\nMove G1 Loop G3\nMove G2 Loop G3\nCatastrophe G3 G\n\n42) wil: Discover R3 G1 B2 B2\n\n43) Mandrel: D Y3 Loop G3 Box\n\n44) wil: Trade R3 G3 B2\n\n45) Mandrel: Build Y2 Box\n\n46) wil: Build G1 B2\n\n47) Mandrel: Discover Y1 Solution R3 Twist\n\n48) wil: Trade R2 G2 Wil\n\n49) Mandrel: S Y3 Loop\nMove Y2 Box Wil\nMove Y3 Box Wil\nMove Y1 Twist Wil\n\n50) wil: Sacrifice R3 G1\nAttack Y3 Wil\nAttack Y2 Wil\nAttack Y1 Wil\n\n51) Mandrel: Build Y3 Solution\nCatastrophe Wil Y\n\n52) wil: Trade G2 R2 Wil\n\twil: the end is nigh...\n\n53) Mandrel: M G2 Mandrel Loop\n\n54) wil: Trade G1 Y1 B2\n\n55) Mandrel: Build G1 Loop\n\n56) wil: Trade R1 Y1 Wil\n\n57) Mandrel: S Y3 Solution\nM G1 Loop Wil\nMove G2 Loop Wil\nMove R3 Loop Wil\n\n\twil: very nice either or...\n\nHomeworlds Online (SDG# 24519)\nStarted: 2013.9.23, Ended: 2013.9.27\nParticipants: JudithTruman (S), AbacusWizard (N)\nWinner: AbacusWizard\n\n1) AbacusWizard: Homeworld B3 R2 G3\n\n2) JudithTruman: Homeworld Y3 B1 G3\n\tJudithTruman: Booyah!\n\n3) AbacusWizard: Build G1 Abacuswizard\n\n4) JudithTruman: Build G1 Judithtruman\n\n5) AbacusWizard: Trade G1 Y1 Abacuswizard\n\n6) JudithTruman: Trade G1 R1 Judithtruman\n\n7) AbacusWizard: Build Y1 Abacuswizard\n\n8) JudithTruman: Build R1 Judithtruman\n\n9) AbacusWizard: Discover Y1 Abacuswizard G1 Konstruktstarr\n\n10) JudithTruman: Discover R1 Judithtruman G2 Fleern\n\n11) AbacusWizard: Build Y1 Konstruktstarr\n\n12) JudithTruman: Build R1 Fleern\n\n13) AbacusWizard: Build Y2 Abacuswizard\n\n14) JudithTruman: Build R2 Judithtruman\n\n15) AbacusWizard: Trade Y2 R2 Abacuswizard\n\n16) JudithTruman: Build R3 Judithtruman\n\n17) AbacusWizard: Move R2 Abacuswizard Konstruktstarr\n\n18) JudithTruman: Trade R3 Y3 Judithtruman\n\n19) AbacusWizard: Build R3 Konstruktstarr\n\n20) JudithTruman: Move Y3 Judithtruman Fleern\n\n21) AbacusWizard: Move R2 Konstruktstarr Fleern\n\n22) JudithTruman: Discover R1 Fleern B1 Apple\n\n23) AbacusWizard: Attack R1 Fleern\n\n24) JudithTruman: Sacrifice R1 Apple\nAttack R2 Fleern\n\n25) AbacusWizard: Build R1 Fleern\n\n26) JudithTruman: Discover R2 Fleern B1 Apple\n\n27) AbacusWizard: Build Y2 Abacuswizard\n\n28) JudithTruman: Sacrifice R1 Judithtruman\nAttack R1 Fleern\n\n29) AbacusWizard: Attack R1 Fleern\n\n30) JudithTruman: Sacrifice R2 Apple\nAttack R1 Fleern\nAttack R1 Fleern\n\n31) AbacusWizard: Build Y2 Konstruktstarr\n\n32) JudithTruman: Discover Y3 Fleern B1 Apple\n\n33) AbacusWizard: Sacrifice Y2 Konstruktstarr\nMove R3 Konstruktstarr Fleern\nMove R3 Fleern Apple\n\n34) JudithTruman: Sacrifice R1 Fleern\nAttack R3 Apple\n\n35) AbacusWizard: Build Y2 Konstruktstarr\n\n36) JudithTruman: Build G1 Judithtruman\n\n37) AbacusWizard: Move Y2 Konstruktstarr Fleern\n\n38) JudithTruman: Build R1 Fleern\n\n39) AbacusWizard: Build Y2 Fleern\n\n40) JudithTruman: Sacrifice G1 Judithtruman\nBuild Y3 Apple\n\n41) AbacusWizard: Sacrifice Y2 Abacuswizard\nMove Y2 Fleern Apple\nMove Y2 Fleern Apple\nCatastrophe Apple Yellow\n\n42) JudithTruman: Trade R2 B2 Judithtruman\n\n43) AbacusWizard: Discover Y1 Konstruktstarr Y2 Dagobah\n\n44) JudithTruman: Build B1 Judithtruman\n\n45) AbacusWizard: Discover Y1 Konstruktstarr G2 Hoth\n\n46) JudithTruman: Trade B2 Y2 Judithtruman\n\n47) AbacusWizard: Build Y2 Hoth\n\n48) JudithTruman: Move Y2 Judithtruman Fleern\n\n49) AbacusWizard: Build Y3 Abacuswizard\n\n50) JudithTruman: Build Y3 Fleern\n\n51) AbacusWizard: Move Y1 Dagobah Judithtruman\n\n52) JudithTruman: Move R1 Fleern Judithtruman\n\n53) AbacusWizard: Build Y2 Hoth\n\n54) JudithTruman: Sacrifice Y3 Fleern\nMove R3 Apple Abacuswizard\nDiscover Y2 Fleern G1 Pear\nMove Y2 Pear Hoth\nCatastrophe Hoth Yellow\n\n55) AbacusWizard: Attack R3 Abacuswizard\n\n56) JudithTruman: Attack Y1 Judithtruman\n\n57) AbacusWizard: Build G1 Abacuswizard\n\n58) JudithTruman: Move Y1 Judithtruman Fleern\n\n59) AbacusWizard: Discover G3 Abacuswizard B1 Appleiie\n\n60) JudithTruman: Build R1 Fleern\n\n61) AbacusWizard: Move R3 Abacuswizard Appleiie\n\n62) JudithTruman: Build G1 Judithtruman\n\n63) AbacusWizard: Build R2 Appleiie\n\n64) JudithTruman: Move G1 Judithtruman Fleern\n\n65) AbacusWizard: Trade R2 Y2 Appleiie\n\n66) JudithTruman: Build B2 Judithtruman\n\n67) AbacusWizard: Build R2 Appleiie\n\n68) JudithTruman: Trade B2 Y2 Judithtruman\n\n69) AbacusWizard: Discover R2 Appleiie B2 Ifruity\n\n70) JudithTruman: Move B1 Judithtruman Fleern\n\n71) AbacusWizard: Move G3 Appleiie Ifruity\n\n72) JudithTruman: Discover R1 Fleern Y1 Froboz\n\n73) AbacusWizard: Move R3 Appleiie Ifruity\n\n74) JudithTruman: Sacrifice G3 Judithtruman\nBuild R2 Froboz\nBuild Y2 Fleern\nBuild Y3 Fleern\n\n75) AbacusWizard: Sacrifice Y2 Appleiie\nMove R3 Ifruity Judithtruman\nMove G3 Ifruity Judithtruman\n\n76) JudithTruman: Sacrifice G1 Fleern\nBuild R3 Judithtruman\n\n77) AbacusWizard: Sacrifice R3 Judithtruman\nAttack Y2 Judithtruman\nAttack R1 Judithtruman\nAttack R3 Judithtruman\n\n\nHomeworlds Online (SDG# 24524)\nVariants: "Hard time"\nStarted: 2013.9.26, Ended: 2013.10.18\nParticipants: wil (S), mneme (N)\nWinner: wil\n\n1) mneme: Homeworld R1 B2 G3\n\tmneme: It's been a while since I last played this.\n\n2) wil: Homeworld B2 R1 G3\n\twil: I look forward to playing...I've been at it for a little over 6 months and getting my butt kicked by various folks and hopefully learning along the way.\n\n3) mneme: Build G1 Mneme\n\tmneme: We'll see. I do ok.\n\n4) wil: Build G1 Wil\n\tmneme: Although I've actually never done small universe. Playing dangerously?\n\twil: no...instant stupidity....what was I thinkin??\n\n5) mneme: Trade G1 R1 Mneme\n\twil: yikes what have ai wrought??\n\twil: now I am just climbin this ladder so I can get up high enough where people are playing (it has taken since may to climb over all the dead wood that haven't even signed in for months or years.. so if you want to resign, so I can step up....I won't complain!!!\n\n6) wil: Trade G1 Y1 Wil\n\tmneme: I think I'll stick around for a bit longer. But you can resign if you want. :-P\n\n7) mneme: Build R2 Mneme\n\n8) wil: Build Y1 Wil\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) wil: Discover Y1 Wil G3 G3\n\n11) mneme: Build R2 Mneme\n\n12) wil: B Y1 Wil\n\n13) mneme: Move R2 Mneme G3\n\n14) wil: Discover Y1 G3 G2 G2\n\n15) mneme: Build Y2 Mneme\n\n16) wil: Build Y2 Wil\n\n17) mneme: Move Y2 Mneme G3\n\n18) wil: Build Y3 G2\n\n19) mneme: Build Y3 Mneme\n\n20) wil: Trade Y2 R2 Wil\n\n21) mneme: Discover R1 Mneme B3 Sapphire\n\n22) wil: Discover R2 Wil Y3 Y3\n\n23) mneme: Sacrifice G3 Mneme\nBuild R2 Sapphire\nBuild R3 Sapphire\nBuild R3 G3\n\n24) wil: Build Y2 Wil\n\n25) mneme: Move Y2 G3 Wil\nCatastrophe Wil Y\n\n26) wil: Build G1 Wil\n\n27) mneme: Trade R2 G2 Sapphire\n\n28) wil: Trade G1 Y1 Wil\n\n29) mneme: Trade Y2 R2 Mneme\n\n30) wil: Build G1 Wil\n\n31) mneme: Build R3 Sapphire\n\n32) wil: Move Y1 G2 G3\n\twil: Yikes...what a mistake that short universe was...and you are walking all over me...\n\n33) mneme: Attack Y1 G3\n\tmneme: Thanks. And yeah--small universe really magnifies small mistakes, I think.\n\n34) wil: Build Y1 Wil\n\twil: oh....that was foolish...i was moving it to a new star and didn't realize I walked into my old star...putting blunder on top or errors.\n\n\twil: argghh...I hate it when these end this way...and especially against a good player. I hope to meet you again sometime.\n\tmneme: Likewise. The problem is, I'm only in one game at a time, tops, so if I miss the ready signal I'm likely to hard time. :(\n\twil: \n\twil: That can be solved by playing more often! I hear you are a wonderful player. But yeah, as I am in the learning curve I try to be in half a dozen games at a time...so I check in once a day (unless I am outta range for a few days)\n\tmneme: Wow -- from whom? It, um, is true that when I was in form, I think TwoShort was the only player here who could regularly beat me (and I did take a game from him once :). It's just a matter of time management, alas.\n\twil: "The only people I never beat were mneme and two short" I believe was the quote. Yes, I am afraid I don't give the game justice yet. I move rather quickly make a lot of mistakes, but seeing the result of my mistakes and getting taken to the cleaners on a regular basis is assistingthe learning curve...\n\twil: I see you are playing again...I've got a standing game up...challenge me if you'd like to whip me appropriately.\n\tmneme: That works. I tend to play very quickly myself. I've accepted a challenge, so if you're still playing it's possible I'll actually keep up this time.\n\twil: Yup, continuing to try to learn this game! Challenge me anytime, I prefer to keep half a dozen games going on at once..\n\nHomeworlds Online (SDG# 24456)\nVariants: "Hard time"\nStarted: 2013.10.2, Ended: 2013.11.23\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n1) SilentTitan: Homeworld R1 B2 G3\n\twil: I miss clicked and started another one with ya...and now we've got two games...my weak attempt to confuse you...\n\tSilentTitan: LOL.... \n\n2) wil: Homeworld R3 B2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: Build G1 Wil\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) wil: Build G1 Wil\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) wil: Trade G1 Y1 Wil\n\n9) SilentTitan: Trade Y1 R1 Silenttitan\n\n10) wil: Trade G1 R1 Wil\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) wil: Build R2 Wil\n\n13) SilentTitan: Build G1 Silenttitan\n\n14) wil: Trade R2 B2 Wil\n\n15) SilentTitan: Build R2 Silenttitan\n\n16) wil: Build R2 Wil\n\n17) SilentTitan: Discover G1 Silenttitan R3 Sol\n\n18) wil: Trade R2 G2 Wil\n\tSilentTitan: Just for information sake... I'll let you know that Mneme and TooShort and the only two people I've not managed to beat on the ladder. I've played each about 6 or 7 times. \n\tSilentTitan: ...TooShort are...\n\twil: I screwed up at the beginning of the game with mneme...I am almost sure to lose. unless that is he times out... I have heard two short is an excellent player. I like losing to the best, makes me feel better...\r\n\n\n19) SilentTitan: Trade R2 Y2 Silenttitan\n\n20) wil: Build R2 Wil\n\n21) SilentTitan: Build R2 Silenttitan\n\n22) wil: Discover R2 Wil G1 G1\n\n23) SilentTitan: Move Y2 Silenttitan Sol\n\n24) wil: Trade G2 Y2 Wil\n\n25) SilentTitan: Trade R1 B1 Silenttitan\n\n26) wil: Build G2 Wil\n\n27) SilentTitan: Build B1 Silenttitan\n\n28) wil: Discover G2 Wil Y1 Y1\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n30) wil: Move Y1 Wil G1\n\n31) SilentTitan: Discover Y1 Silenttitan Y3 Sole\n\twil: very nice\n\n32) wil: Build G2 Wil\n\n33) SilentTitan: Move B1 Silenttitan Sol\n\n34) wil: Move B2 Wil Y1\n\n35) SilentTitan: Build G2 Sol\n\n36) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Y1\nBuild R1 G1\n\n37) SilentTitan: Sacrifice Y2 Sol\nMove G2 Sol Y1\nMove G1 Sol Y1\nCatastrophe Y1 Green\n\n38) wil: Build Y2 G1\n\n39) SilentTitan: Sacrifice B1 Silenttitan\nTrade Y1 G1 Sole\n\n40) wil: Move G2 Wil Y1\n\n41) SilentTitan: Build G2 Silenttitan\n\n42) wil: Build G2 Wil\n\n43) SilentTitan: Trade G1 B1 Silenttitan\n\n44) wil: Discover R2 G1 G3 G3\n\n45) SilentTitan: Move Y3 Silenttitan G3\n\n46) wil: Discover R1 Wil Y1 Why1\n\n47) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 G3 South\nPass\n\n48) wil: Sacrifice G3 Wil\nBuild G1 Y1\nBuild G3 Y1\nBuild G3 Wil\n\n49) SilentTitan: Sacrifice Y2 Sol\nMove G2 Silenttitan Sole\nMove G1 Sole Y1\nCatastrophe Y1 Green\n\n50) wil: Move B2 Y1 Sol\n\tSilentTitan: Y1 .... Why1. Too funny\n\twil: why, ynot?\n\n51) SilentTitan: Move B1 Silenttitan Sol\n\n52) wil: Trade B2 G2 Sol\n\n53) SilentTitan: Trade B1 Y1 Sol\n\n54) wil: Attack Y1 Sol\n\n55) SilentTitan: Build G1 Sole\n\twil: I somehow got the best of mmeme...i have to replay that game to see what I did. I am now losing terribly to goulo, I really blew it in that game. \n\tSilentTitan: Wow good for you. He actually has a medallion from origins for binary Homeworlds. \n\tSilentTitan: Wow good for you. He actually has a medallion from origins for binary Homeworlds. \n\n56) wil: Sacrifice G3 Wil\nBuild G1 Sol\nBuild G3 Wil\nBuild Y2 Sol\n\twil: I think it was a fluke....but what does that mean "medallion from origins"?\n\n57) SilentTitan: Move R2 G3 Why1\n\tSilentTitan: oh... a medal from the national boardgaiming convention for winning at the binary homeworlds tournament held there.\n\twil: I just went back thru...I am playing a number of games and got confused...I did NOT beat him....he timed out on me and I was thinking of another game that ended about that time....but I did not beat him by play...\n\twil: The goal, videos which teach the intracies of games of homeworlds. The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn't see coming or outplayed, or played a very good game themselves against an admirable foe... And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds..... You pick the game number (from the archive) and if you wish we give you credit for your half of the game.... If you'd like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?\n\n58) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Sol\nBuild R2 G1\n\n59) SilentTitan: Attack R1 Why1 South\n\n60) wil: Attack B1 Sol\n\n61) SilentTitan: Sacrifice Y3 G3\nMove G1 Sole Why1\nMove G1 Why1 Sol\nMove G2 Sole Why1\nCatastrophe Sol Green\n\n62) wil: Sacrifice G2 Wil\nBuild Y3 Wil\nBuild Y3 Sol\n\n63) SilentTitan: Trade Y3 G3 Silenttitan\n\n64) wil: T Y3 G3 Sol\n\n65) SilentTitan: Build G1 Silenttitan\n\n66) wil: Sacrifice G3 Wil\nBuild Y3 Sol\nBuild Y3 G1\nBuild G1 Sol\n\n67) SilentTitan: Trade G1 B1 Silenttitan\n\n68) wil: Sacrifice Y2 Sol\nDiscover Y3 G1 G3 G3\nMove R1 G1 G3\n\n69) SilentTitan: Build G1 Why1\n\n70) wil: Sacrifice G3 Sol\nBuild R2 G1\nBuild R3 G3\nBuild Y2 G3\n\n71) SilentTitan: Build G2 Silenttitan\n\n72) wil: Trade Y3 G3 Sol\n\n73) SilentTitan: Move G1 Why1 Sol\n\n74) wil: Sacrifice Y2 G1\nMove G3 Sol Silenttitan\nMove G1 Sol Silenttitan\nCatastrophe Silenttitan G\n\n75) SilentTitan: Sacrifice R2 Why1\nAttack Y1 Sol South\nAttack B1 Sol South\n\n76) wil: Move R3 G3 Silenttitan\n\n77) SilentTitan: Move G1 Sol Silenttitan\n\n78) wil: S R2 G1\nA G1 Silenttitan\nA B1 Silenttitan\n\twil: How long had that been there?\n\n\tSilentTitan: Not sure\n\tSilentTitan: Congratulations. Yea!\n\twil: Thank you forthe game....I am so positive you'll kick my but when I try this on the ladder\r\n\r\n\n\tSilentTitan: Well we will see. you played very well.\n\nHomeworlds Online (SDG# 24528)\nStarted: 2013.10.2, Ended: 2013.10.24\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 R1 Ts52\n\n7) wil: Build G1 Wil\n\n8) ts52: Discover R1 Ts52 G1 Kermit\n\n9) wil: Trade G1 R1 Wil\n\n10) ts52: Build G1 Ts52\n\n11) wil: Build B1 Wil\n\n12) ts52: Trade G1 Y1 Ts52\n\n13) wil: Build G1 Wil\n\n14) ts52: Build Y1 Ts52\n\n15) wil: Trade G1 Y1 Wil\n\n16) ts52: Move Y1 Ts52 Kermit\n\n17) wil: Discover B1 Wil G3 G3\n\n18) ts52: Build Y2 Kermit\n\n19) wil: Build Y2 Wil\n\n20) ts52: Build R1 Kermit\n\n21) wil: Build B2 G3\n\n22) ts52: Build G1 Ts52\n\n23) wil: Sacrifice Y1 Wil\nDiscover B2 G3 G1 G1\n\n24) ts52: Build R2 Kermit\n\n25) wil: Sacrifice G3 Wil\nBuild B2 G1\nBuild B3 Wil\nBuild B3 G3\n\n26) ts52: Discover R1 Kermit Y3 Zoe\n\n27) wil: Trade B3 G3 Wil\n\n28) ts52: Move R1 Kermit Zoe\n\n29) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 G1\nBuild Y1 Wil\n\n30) ts52: Sacrifice Y2 Kermit\nMove R1 Zoe Wil\nMove R1 Zoe Wil\nCatastrophe Wil Red\n\n31) wil: Sacrifice B3 G3\nTrade B3 G3 Wil\nTrade B3 Y3 G1\nTrade Y2 G2 Wil\n\n32) ts52: Move R2 Kermit G3\n\n33) wil: Build B3 G3\n\n34) ts52: Attack B1 G3\n\n35) wil: Trade B3 R3 G3\n\n36) ts52: Sacrifice Y1 Ts52\nMove B1 G3 Kermit\n\n37) wil: Build B3 Wil\n\n38) ts52: Build B3 Kermit\n\n39) wil: Trade B3 R3 Wil\n\n40) ts52: Trade G1 R1 Ts52\n\n41) wil: Build B3 G1\n\n42) ts52: Discover B1 Kermit G2 Robin\n\n43) wil: Sacrifice Y3 G1\nMove B3 G1 Ts52\nMove R3 Wil Ts52\nMove G3 Wil Ts52\n\n44) ts52: Sacrifice R2 G3\nAttack R3 Ts52\nAttack G3 Ts52\n\twil: My what a fine and healthy star system you have here, I don't suppose you noticed but someone has abolished a large portion of mine, we were awfully crowded on this small blue dwarf. I see you have plenty of room here on these two spacious systems\n\tts52: Hmmmmm, how very clever... well played sir.\n\n45) wil: Sacrifice R3 G3\nAttack G3 Ts52\nAttack G3 Ts52\nAttack R3 Ts52\n\twil: I was searching for my error...I was headed to a bluebird but amassing giant ships...when you avoided the bluebird...I said hmmmm...I couldn't see the downside (and frankly am still concerned there is something up your sleeve.\n\n46) ts52: Sacrifice Y1 Kermit\nMove B1 Robin Wil\n\n47) wil: Sacrifice R3 Ts52\nAttack R1 Ts52\nAttack B1 Wil\nPass\n\twil: we welcome the small trader and attack ship to our armada... I got lucky on that one, me thinks I caught you sleepin.\n\tts52: I didn't see it coming, that's for sure. Good game.\n\n\nHomeworlds Online (SDG# 24396)\nVariants: "Hard time"\nStarted: 2013.10.2, Ended: 2013.10.19\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: wil\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 B2 G3\n\tBroccoli_Commander: Hey wil! Long time no play, how do you fare?\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: Build G1 Wil\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\twil: Fare thee well. Still losing and hopefully learning.\n\n6) wil: Build G1 Wil\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) wil: Trade G1 Y1 Wil\n\tBroccoli_Commander: Hey just realized you sent me a pm :D\n\n9) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\twil: Yeah....I hopefully can get through my game....slow play to the point I think hardtime is gonna kick in....aaarggghhh....but we are getting there..\n\n10) wil: Build Y1 Wil\n\twil: Looks to me like you are gonna get a factory over there and be in the catbird seat with yellows quite soon.\n\n11) Broccoli_Commander: Build Y2 Broccoli_commander\n\n12) wil: Build Y2 Wil\n\n13) Broccoli_Commander: Move Y2 Broccoli_commander Blueberry\n\n14) wil: Trade Y1 R1 Wil\n\n\twil: ah phooey brother... that is a lousy way to win...\n\twil: hope all is well.\n\nHomeworlds Online (SDG# 24585)\nVariants: "Hard time"\nStarted: 2013.10.18, Ended: 2013.11.2\nParticipants: Remneb (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) Remneb: Homeworld B2 R1 G3\n\n3) wil: Build G1 Wil\n\twil: yikes, small universe....\n\n4) Remneb: Build G1 Remneb\n\tRemneb: The big pips for battle !\n\n5) wil: Trade G1 B1 Wil\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) wil: Build B1 Wil\n\n8) Remneb: Build G1 Remneb\n\n9) wil: Build G1 Wil\n\n10) Remneb: Discover G1 Remneb Y3 Altar\n\n11) wil: Trade G1 Y1 Wil\n\n12) Remneb: Build G1 Remneb\n\n13) wil: Discover B1 Wil G3 G3\n\n14) Remneb: Trade G1 R1 Remneb\n\n15) wil: Build B2 G3\n\n16) Remneb: Move R1 Remneb G3\n\n17) wil: Trade B2 R2 G3\n\n18) Remneb: Build Y1 Remneb\n\n19) wil: Build Y2 Wil\n\n20) Remneb: Move Y1 Remneb Altar\n\n21) wil: Move Y2 Wil Altar\n\n22) Remneb: Sacrifice G3 Remneb\nBuild Y2 Remneb\nBuild Y2 Altar\nBuild Y3 Remneb\nCatastrophe Altar Y\n\n23) wil: Sacrifice G3 Wil\nBuild B2 G3\nBuild B2 G3\nBuild B3 Wil\n\n24) Remneb: Trade Y1 G1 Remneb\n\n25) wil: Sacrifice B2 G3\nTrade B2 Y2 G3\nTrade B3 G3 Wil\n\n26) Remneb: Discover Y2 Remneb G3 Noah\n\n27) wil: Sacrifice G3 Wil\nBuild B2 G3\nBuild B2 G3\nBuild B3 Wil\n\n28) Remneb: Build G1 Remneb\n\n29) wil: Sacrifice B2 G3\nTrade B3 G3 Wil\nTrade B2 Y2 G3\n\n30) Remneb: Build Y1 Remneb\n\n31) wil: Build B2 Wil\n\n32) Remneb: Attack B1 G3\n\n33) wil:\nAttack R1 G3\n\n34) Remneb: Sacrifice Y1 Remneb\nMove B1 G3 Wil\nCatastrophe Wil B\n\n35) wil: Build G1 Wil\n\n36) Remneb: Build Y1 Remneb\n\n37) wil: Discover Y2 G3 B2 B2\n\twil: I was blind to that....good move.\n\n38) Remneb: Discover G1 Remneb Y3 Rob\n\tRemneb: It was my first idea when i took that ship...but i was sure that you would take it back into your fleet. The second idea was to force you to use the red 2 ship to attack both blue and red one.\n\n39) wil: Build Y1 Wil\n\n40) Remneb: Build G2 Remneb\n\twil: Yes, I looked at the latter but not the former...didn't see it at all...thought you were trying to grow my blues there and swamp itself...I missed it completely...I saw what I thought was a great comeback which blinded me to reality...\n\n41) wil: Build Y3 G3\n\n42) Remneb: Discover Y1 Remneb R3 Oban\n\n43) wil: Trade Y2 B2 B2\n\n44) Remneb: Build G2 Rob\n\n45) wil: Sacrifice B2 B2\nTrade G1 B1 Wil\nTrade Y2 B2 G3\n\n46) Remneb: Trade G1 R1 Remneb\n\n47) wil: Build Y2 G3\n\n48) Remneb: Move R1 Remneb Rob\n\n49) wil: Discover R1 G3 G2 G2\n\n50) Remneb: Build R2 Rob\n\n51) wil: Build R3 G2\n\n52) Remneb: Discover R2 Rob Y2 Aldo\n\n53) wil: Build R3 G3\n\n54) Remneb: Build G1 Remneb\n\n55) wil: Sacrifice Y1 Wil\nMove R3 G2 Rob\n\n56) Remneb: Sacrifice Y2 Noah\nMove G2 Rob Aldo\nMove G1 Rob Aldo\n\n57) wil: Move R3 Rob Aldo\n\tRemneb: That's a croud of ships indeed !\r\n\n\n58) Remneb: Sacrifice G2 Aldo\nBuild Y1 Oban\nBuild Y2 Remneb\n\n59) wil: Attack R2 Aldo\n\n60) Remneb: Move G1 Aldo G3\n\n61) wil: Sacrifice Y2 G3\nMove Y3 G3 Remneb\nMove R3 G3 Remneb\n\twil: It is a crowd of ships... I gotta replay this to see how the heck I accumulated them! Meanwhile, I've got a rogue attack ship violating the prime directive, I disavow that captains current actions.\r\n\n\n62) Remneb: Attack R3 Remneb\n\n63) wil: Sacrifice R3 Aldo\nAttack R3 Remneb\nAttack Y3 Remneb\nAttack G2 Remneb\n\n64) Remneb: Move Y1 Oban Remneb\nCatastrophe Remneb Y\n\n65) wil: Sacrifice R2 Aldo\nAttack G1 G3\nAttack G1 Remneb\n\n\tRemneb: Thanks for the game.\n\twil: Thank you! Again, I have to replay this to see what I did right. I know I felt in trouble for a time, and I know I got away with a little factory of sorts, but I have to figure out what happenned and how to duplicate it.\n\nHomeworlds Online (SDG# 24588)\nVariants: "Hard time"\nStarted: 2013.10.19, Ended: 2013.11.1\nParticipants: mneme (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) mneme: Homeworld B3 R1 G3\n\tagentofchaos: Have fun\n\n3) agentofchaos: Build G1 Agentofchaos\n\tmneme: you too! Hopefully I won't lose track -again-. :(\n\n4) mneme: Build G1 Mneme\n\tagentofchaos: I've lost track a few times myself :-)\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) agentofchaos: Build G1 Agentofchaos\n\n\nHomeworlds Online (SDG# 24548)\nVariants: "Hard time"\nStarted: 2013.10.21, Ended: 2013.10.24\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: wil\n\n\twil: ah phooey...hit me up when you are ready to play...and did you ever tell me how you picked the name broccoli commander?\n\nHomeworlds Online (SDG# 24617)\nStarted: 2013.10.25, Ended: 2013.11.27\nParticipants: mnkr (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\tmnkr: another oportunity? hehe thanks\n\tts52: absolutely!\n\n2) mnkr: Homeworld Y1 B2 G3\n\n3) ts52: Build G1 Ts52\n\n4) mnkr: Build G1 Mnkr\n\n5) ts52: Discover G1 Ts52 B2 Gonzo\n\n6) mnkr: Discover G1 Mnkr B3 Nnkr\n\n7) ts52: Build G1 Ts52\n\n8) mnkr: Build G2 Nnkr\n\n9) ts52: Build G2 Gonzo\n\n10) mnkr: Build G2 Mnkr\n\n11) ts52: Build G3 Gonzo\n\n12) mnkr: Trade G2 Y2 Nnkr\n\n13) ts52: Trade G3 Y3 Gonzo\n\n14) mnkr: Build Y1 Nnkr\n\n15) ts52: Trade G2 R2 Gonzo\n\n16) mnkr: Trade G3 R3 Mnkr\n\n17) ts52: Build G2 Gonzo\n\n18) mnkr: Build G2 Nnkr\n\n19) ts52: Discover G2 Gonzo B3 Grover\n\n20) mnkr: Discover G2 Nnkr B2 Onkr\n\n21) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild G3 Gonzo\n\n22) mnkr:\nMove G1 Nnkr Onkr\n\tmnkr: good action! I wanted to do this before!\n\tmnkr: move G1 nnkr onkr\n\n23) ts52: Trade G1 R1 Ts52\n\n24) mnkr: Trade G2 R2 Onkr\n\n25) ts52: Trade G3 Y3 Grover\n\n26) mnkr: Build R1 Onkr\n\n27) ts52: Move Y3 Grover Onkr\n\n28) mnkr: Trade Y1 G1 Nnkr\n\n29) ts52: Sacrifice R2 Gonzo\nAttack R2 Onkr\nAttack R1 Onkr\n\n30) mnkr: Sacrifice G1 Onkr\nBuild G1 Nnkr\n\tmnkr: great! I never think abouth the red sacrifices!\n\n31) ts52: Sacrifice G3 Gonzo\nBuild G2 Ts52\nBuild G3 Gonzo\nBuild G3 Grover\n\n32) mnkr: Build Y1 Nnkr\n\n33) ts52: Move R2 Onkr Nnkr\n\n34) mnkr: Sacrifice Y2 Nnkr\nMove G1 Nnkr Gonzo\nMove G1 Nnkr Gonzo\nCatastrophe Gonzo Green\n\n35) ts52: Attack Y1 Nnkr\n\n36) mnkr: Build R1 Mnkr\n\n37) ts52: Sacrifice Y3 Gonzo\nMove R2 Nnkr Mnkr\nMove R1 Onkr Grover\nMove R1 Grover Mnkr\nCatastrophe Mnkr Red\n\n\tmnkr: Very good!\r\nI have to learn more.\r\nI take some holidays... when I return I will recall to you, hehe\n\tts52: Thanks for the game. I look forward to playing you again.\n\nHomeworlds Online (SDG# 24310)\nVariants: "Hard time"\nStarted: 2013.10.26, Ended: 2013.11.4\nParticipants: wil (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld R2 B1 G3\n\n2) wil: Homeworld B3 Y2 G3\n\tTeeTeeTee: Greetings!\n\twil: Welcome! Thanx for the game!\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) wil: Build G1 Wil\n\n5) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n6) wil: Discover G1 Wil Y1 Y1\n\n7) TeeTeeTee: Build G1 Teeteetee\n\n8) wil: Build G1 Wil\n\n9) TeeTeeTee: Discover G1 Teeteetee B3 Slough\n\n10) wil: Build G2 Wil\n\n11) TeeTeeTee: Build G2 Teeteetee\n\n12) wil: Sacrifice G3 Wil\nBuild G2 Y1\nBuild G3 Y1\nBuild G3 Wil\n\n13) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild Y1 Teeteetee\nBuild Y2 Teeteetee\n\n14) wil: Trade G2 B2 Wil\n\n15) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove G2 Teeteetee Slough\nMove G1 Slough Y1\nCatastrophe Y1 Green\n\n16) wil: Trade G1 Y1 Wil\n\n17) TeeTeeTee: Move Y1 Teeteetee Slough\n\n18) wil: Build Y2 Wil\n\n19) TeeTeeTee: Sacrifice G2 Slough\nBuild Y2 Teeteetee\nBuild Y3 Slough\n\n20) wil: Discover Y1 Wil G1 G1\n\n21) TeeTeeTee: Trade Y3 G3 Slough\n\n22) wil: Build Y3 G1\n\n23) TeeTeeTee: Build Y3 Slough\n\n24) wil: Discover Y2 Wil G1 Gee1\n\n25) TeeTeeTee: Trade Y1 B1 Slough\n\n26) wil: Build G1 Wil\n\n27) TeeTeeTee: Build G2 Slough\n\n28) wil: Move G1 Wil G1\n\n29) TeeTeeTee: Build G2 Teeteetee\n\n30) wil: Build G2 Wil\n\n31) TeeTeeTee: Trade G3 R3 Slough\n\n32) wil: Trade B2 R2 Wil\n\n33) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild G3 Slough\nBuild R1 Slough\n\n34) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 G1\nBuild Y3 Gee1\n\twil: I see you joined the ladder, welcome to the fray. It takes a while to climb thru the dead wood.\n\n35) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove Y1 Teeteetee Slough\nMove Y1 Slough G1\nCatastrophe G1 Yellow\n\tTeeTeeTee: Ahhh, I've noticed. Tricky to rise up when all but one of the people I can challenge haven't been online in months.\n\n36) wil: Discover Y2 Gee1 B3 B3\n\twil: It took me six months to get up the ladder, and I got a few games in along the way...but now I am where I can get my arse kicked regularly...\n\n37) TeeTeeTee: Build Y1 Slough\n\n38) wil: Sacrifice G3 Wil\nBuild Y1 B3\nBuild G3 Wil\nBuild R1 Wil\n\n39) TeeTeeTee: Move R3 Slough G1\n\n40) wil: Sacrifice Y1 B3\nMove G1 G1 B3\n\twil: am I playin someone I know?\n\n41) TeeTeeTee: Move Y3 Slough G1\n\tTeeTeeTee: Heh, I don't think so; I've not played a game on this site before, and I've never played Homeworlds before either. It's certainly an interesting game, though!\n\twil: You've never played? wow! you are doing well. You don't have a physical set?\n\n42) wil: Move G2 Wil Gee1\n\twil: you've really figured out the system...you must be quite the gamer. it is a great game.\n\n43) TeeTeeTee: Move B1 Slough Teeteetee\n\tTeeTeeTee: Heh, perhaps I put too much thought into this. I've got my hands on an Icehouse set recently, but haven't had a chance to try it out yet. \r\nRight, here we go!\n\n44) wil: Trade R1 B1 Wil\n\n45) TeeTeeTee: Sacrifice G3 Slough\nBuild G3 Slough\nBuild Y1 G1\nBuild R1 G1\n\n46) wil: Sacrifice Y3 Gee1\nMove G2 Gee1 B3\nMove G2 B3 Teeteetee\nMove G1 B3 Teeteetee\nCatastrophe Teeteetee G\n\n47) TeeTeeTee: Move Y3 G1 B3\n\n48) wil: Move Y2 B3 Teeteetee\n\n49) TeeTeeTee: Move Y3 B3 Teeteetee\n\n50) wil: Discover Y2 Teeteetee G3 G3\n\n51) TeeTeeTee: Sacrifice G3 Slough\nBuild Y1 G1\nBuild Y2 Teeteetee\nBuild Y3 Slough\n\n52) wil: Build Y3 G3\n\n53) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove Y1 G1 G3\nMove Y1 G1 G3\nCatastrophe G3 Yellow\n\n54) wil: Build G1 Wil\n\n55) TeeTeeTee: Build G1 Slough\n\n56) wil: Build R1 Wil\n\n57) TeeTeeTee: Sacrifice G2 Slough\nBuild Y1 Slough\nBuild Y1 Teeteetee\n\n58) wil: Move R1 Wil G1\n\n59) TeeTeeTee: Attack R1 G1\n\n60) wil: Move R2 Wil G1\nCatastrophe G1 R\n\n61) TeeTeeTee: Sacrifice Y3 Teeteetee\nDiscover Y3 Slough G1 Staines\nMove Y1 Slough Staines\nMove Y3 Staines Wil\n\twil: I am totally outplayed...great game, you've abused the heck outta me.\n\n62) wil: Move G3 Wil Staines\n\n63) TeeTeeTee: Sacrifice R1 Slough\nAttack B1 Wil\n\n64) wil: Trade G1 R1 Wil\n\n65) TeeTeeTee: Sacrifice B1 Wil\nTrade Y3 R3 Wil\n\n66) wil: Sacrifice G3 Staines\nBuild R1 Wil\nBuild R1 Wil\nBuild R2 Wil\nCatastrophe Wil R\n\n\tTeeTeeTee: Heh, thanks for the praise. :p\r\nI didn't want to acknowledge victory after 29. ... m r1 wil g1 - that was a bold move. It left me an opening, but I had to give up most of my fleet to use it, and if I was careless, then the game's outcome could have easily been different.\n\twil: If this is your first game....you are gonna be a terror! on the ladder, look for someone up 4/5 levels that has logged on in the last 30/60 days...play them. I look forward to playing again.\n\nHomeworlds Online (SDG# 24624)\nStarted: 2013.10.27, Ended: 2013.12.20\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: Homeworld R3 B2 G3\n\tts52: Have a good game! Hopefully you wont catch me napping this time.\n\n3) ts52: Build G1 Ts52\n\twil: ah...come on...the only way I win at pool is when my opponent sinks the 8 ball.\n\n4) wil: Build G1 Wil\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) wil: Trade G1 Y1 Wil\n\n7) ts52: Build G1 Ts52\n\n8) wil: Build Y1 Wil\n\n9) ts52: Build G1 Ts52\n\n10) wil: Build Y2 Wil\n\n11) ts52: Build G2 Grover\n\n12) wil: Build G2 Wil\n\n13) ts52: Trade G2 Y2 Grover\n\n14) wil: Sacrifice Y2 Wil\nDiscover G2 Wil B1 B1\nMove Y1 Wil B1\n\n15) ts52: Discover G1 Ts52 B3 Gonzo\n\n16) wil: Build Y2 B1\n\n17) ts52: Build G2 Gonzo\n\n18) wil: Discover Y2 B1 G3 G3\n\n19) ts52: Trade G2 R2 Gonzo\n\n20) wil: Build G2 Wil\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild R1 Gonzo\n\n22) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Wil\nBuild Y3 B1\n\n23) ts52: Build Y3 Grover\n\n24) wil: Trade Y3 R3 B1\n\n25) ts52: Trade Y3 R3 Grover\n\n26) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 G3\nBuild Y3 B1\n\n27) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Grover\nBuild R1 Grover\n\n28) wil: Trade Y3 B3 B1\n\n29) ts52: Discover Y3 Grover R2 Elmo\n\n30) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 B1\nBuild B1 B1\n\n31) ts52: Move Y3 Elmo Gonzo\n\n32) wil: Sacrifice Y2 G3\nMove G2 B1 G3\nMove G2 G3 Ts52\n\n33) ts52: Trade G1 R1 Ts52\n\n34) wil: Sacrifice G2 Wil\nBuild G1 Ts52\nBuild G2 Ts52\nCatastrophe Ts52 G\n\n35) ts52: Move R3 Grover Ts52\n\n36) wil: Move R3 B1 Grover\n\tts52: Ouch!\n\n37) ts52: Sacrifice G2 Grover\nBuild R2 Grover\nBuild R2 Grover\nCatastrophe Grover Red\n\twil: I stared at that maneuver for quite a while....\n\n38) wil: Trade B3 R3 B1\n\twil: yeah...so I made a stupd move to balance the power that was great...\n\n39) ts52: Trade R3 G3 Ts52\n\n40) wil: Build Y2 G3\n\tts52: You're still ahead by a good margin.\n\n41) ts52: Build G1 Ts52\n\n42) wil: Build G2 Wil\n\n43) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Gonzo\nBuild G3 Ts52\n\twil: The goal, videos which teach the intracies of games of homeworlds. The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn't see coming or outplayed, or played a very good game themselves against an admirable foe... And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds..... You pick the game number (from the archive) and if you wish we give you credit for your half of the game.... If you'd like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?\n\tts52: Wow, I love the idea. I'll try to think back and see if I can find any games that seem like they're worthy. I wish I had a record of the in-person game where I beat Andy for the Homeworld championship at Origins one year. It wasn't the best game, for sure, but it had some interesting points.\n\n44) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 B1\nBuild B1 B1\n\n45) ts52: Trade G3 R3 Ts52\n\n46) wil: Sacrifice Y2 G3\nMove R3 B1 Grover\nMove B1 B1 G3\n\n47) ts52: Build G3 Ts52\n\twil: The idea is to be instructional...so people can see all the elements happen, or happen spectacularly....\n\n48) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 G3\nBuild R2 B1\n\n49) ts52: Sacrifice Y2 Grover\nDiscover G2 Grover Y2 Bigbird\nMove G1 Grover Bigbird\n\n50) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 G3\nBuild R2 Grover\n\n51) ts52: Discover G1 Bigbird B3 Cookiemonster\n\n52) wil: Move R2 B1 Cookiemonster\n\n53) ts52: Move R3 Ts52 Cookiemonster\n\n54) wil: Sacrifice Y3 B1\nMove B1 B1 G3\nMove B1 G3 Ts52\nMove B1 G3 Ts52\n\n55) ts52: Build Y3 Gonzo\n\n56) wil: Sacrifice Y2 Wil\nMove B2 G3 Ts52\nMove G2 Wil B1\nCatastrophe Ts52 B\n\n57) ts52: Attack R2 Cookiemonster\n\n58) wil: Sacrifice Y2 G3\nMove R3 Grover B1\nMove R3 B1 Wil\n\n59) ts52: Move Y3 Gonzo B1\n\n60) wil: Sacrifice Y3 G3\nMove G3 Wil Ts52\nMove G2 B1 Wil\nMove G2 Wil Ts52\nCatastrophe Ts52 G\n\n61) ts52: Move Y3 Gonzo Ts52\n\tts52: Well shoot. There I go napping again... :(\n\n62) wil: Move Y1 B1 Grover\n\n63) ts52: Trade G1 B1 Gonzo\n\n64) wil: Trade Y1 G1 Grover\n\n65) ts52: Trade R2 Y2 Gonzo\n\n66) wil: Trade R3 G3 Wil\n\n67) ts52: Move B1 Gonzo Ts52\n\n68) wil: Build Y1 Wil\n\n69) ts52: Trade Y3 G3 Ts52\n\n70) wil: Discover Y1 Wil G1 G1\n\n71) ts52: Sacrifice G2 Bigbird\nBuild R2 Gonzo\nBuild R3 Ts52\n\n72) wil: B G2 Wil\n\n73) ts52: Move R2 Gonzo B1\n\n74) wil: Sacrifice G3 Wil\nBuild G2 Grover\nBuild G3 Grover\nBuild G3 Wil\n\n75) ts52: Attack R1 B1\n\n76) wil: Build Y2 G1\n\n77) ts52: Sacrifice G3 Ts52\nBuild G3 Gonzo\nBuild Y2 B1\nBuild Y3 Gonzo\n\n78) wil: Move Y2 G1 Grover\n\n79) ts52: Move G2 Gonzo B1\n\n80) wil: Build Y3 G1\n\n81) ts52: Move Y2 B1 Cookiemonster\n\n82) wil: Trade G2 B2 Wil\n\n83) ts52: Move G2 B1 Grover\nCatastrophe Grover Green\n\n84) wil: Move Y1 G1 Grover\n\n85) ts52: Sacrifice Y3 Gonzo\nMove Y3 B1 Grover\nMove Y2 Gonzo B1\nMove Y2 B1 Grover\nCatastrophe Grover Yellow\n\n86) wil: Discover Y3 G1 G3 G3\n\n87) ts52: Trade R2 Y2 B1\n\n88) wil: Sacrifice G3 Wil\nBuild Y1 Wil\nBuild Y2 G3\nBuild R2 Grover\n\n89) ts52: Sacrifice Y2 Cookiemonster\nMove R3 Cookiemonster B1\nMove R3 B1 Wil\n\n90) wil: Sacrifice Y3 G3\nMove Y2 G3 Ts52\nMove Y1 Wil Ts52\nMove Y1 Wil Ts52\nCatastrophe Ts52 Y\n\n\twil: golly day that was scary...so often I am off on move count by one...\n\tts52: Well played sir. I look forward to our next game.\n\twil: thx, trying to learn so I can get up that ladder\n\nHomeworlds Online (SDG# 24647)\nVariants: "Hard time"\nStarted: 2013.11.2, Ended: 2013.11.7\nParticipants: wil (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\twil: You were right...it didn't take a year!\n\n2) wil: Homeworld R1 B2 G3\n\tgoulo: I'm glad! :)\r\n\r\nHave a good game!\n\n3) goulo: Build G1 Goulo\n\twil: May 9th, took just under 6 months to get upto ya! The slow players and nonplayers were just soooo frustrating.\n\n4) wil: Build G1 Wil\n\tgoulo: Well, I can guarantee I'll play, but sadly I can make no guarantee about my competence. :)\n\n5) goulo: Trade G1 Y1 Goulo\n\twil: I look forward to the game, I appreciate the encouragement you offered...every game to me is a learing experience. Both the ones I lose and win.\n\n6) wil: Trade G1 Y1 Wil\n\n7) goulo: Build G1 Goulo\n\n8) wil: Build Y1 Wil\n\n9) goulo: Build Y2 Goulo\n\n10) wil: Discover Y1 Wil B3 B3\n\n11) goulo: Discover Y1 Goulo G1 Smeraldeto\n\n12) wil: Build G1 Wil\n\n13) goulo: Build G2 Goulo\n\n14) wil: Sacrifice G3 Wil\nBuild Y2 B3\nBuild Y2 B3\nBuild Y3 Wil\n\n15) goulo: Move Y1 Smeraldeto B3\nCatastrophe B3 Y\n\n16) wil: Build G1 Wil\n\n17) goulo: Discover G2 Goulo Y1 Citroneto\n\twil: quite the reboot...\r\n\n\twil: quite the reboot...\r\n\n\n18) wil: Build G2 Wil\n\tgoulo: indeed! :)\n\twil: I almost tossed us back to one ship each...\n\n19) goulo: Sacrifice G3 Goulo\nBuild G2 Citroneto\nBuild G3 Citroneto\nBuild G3 Goulo\n\n20) wil: Sacrifice Y3 Wil\nDiscover G1 Wil Y3 Y3\nMove G1 Wil Y3\nMove G1 Y3 Citroneto\nCatastrophe Citroneto G\n\twil: very nice...\n\n21) goulo: Build Y1 Goulo\n\tgoulo: Conventional wisdom would say that you've put yourself at a disadvantage by having no 3-ship now, but who knows... :)\n\n22) wil: Build Y1 Wil\n\twil: Oh, I believe I did...but you already had me outnumbered 3-1 so desperate situations require desp measures...\n\n23) goulo: Discover Y1 Goulo R1 Rubeneto\n\n24) wil: Trade Y1 R1 Wil\n\n25) goulo: Discover Y1 Rubeneto G3 Smeraldego\n\n26) wil: Build R1 Wil\n\n27) goulo: Build Y1 Goulo\n\n28) wil: M R1 Wil Smeraldego\n\n29) goulo: Discover Y1 Smeraldego B2 Mirtelo\n\n30) wil: Build Y2 Wil\n\n31) goulo: Discover Y1 Goulo B1 Safireto\n\n32) wil: Move Y2 Wil Smeraldego\n\n33) goulo: Sacrifice G3 Goulo\nBuild Y2 Mirtelo\nBuild Y3 Safireto\nBuild Y3 Goulo\n\n34) wil: Build R2 Smeraldego\n\n35) goulo: Sacrifice Y2 Mirtelo\nMove Y3 Safireto Y3\nMove Y3 Y3 Wil\n\n36) wil: Build Y2 Wil\n\n37) goulo: Attack G2 Wil\n\n38) wil: Move Y2 Smeraldego Wil\nCatastrophe Wil Y\n\n39) goulo: Attack R1 Wil\n\twil: You've soundly defeated me with your evil ways...we will play agin\n\tgoulo: mwahahaha! :)\r\nThanks for the game! I look forward to the next one.\n\n\nHomeworlds Online (SDG# 24688)\nVariants: "Hard time"\nStarted: 2013.11.8, Ended: 2014.1.14\nParticipants: ajo (S), AdamBadura (N)\nWinner: ajo\n\n1) AdamBadura: Homeworld G3 B2 R3\n\tajo: Wow, it's been a while since I've played on SDG. :)\n\n2) ajo: Homeworld B1 R3 G3\n\n3) AdamBadura: Build R1 Adambadura\n\n4) ajo: Build G1 Ajo\n\n5) AdamBadura: Trade R1 G1 Adambadura\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) AdamBadura: Build R1 Adambadura\n\n8) ajo: Build Y1 Ajo\n\n9) AdamBadura: Trade R1 Y1 Adambadura\n\n10) ajo: Discover Y1 Ajo B2 Alpha\n\n11) AdamBadura: Build R1 Adambadura\n\n12) ajo: Build G1 Ajo\n\n13) AdamBadura: Build G2 Adambadura\n\n14) ajo: Build G2 Ajo\n\n15) AdamBadura: Discover G2 Adambadura R1 Outpost\n\n16) ajo: Move G2 Ajo Alpha\n\n17) AdamBadura: Build R1 Adambadura\n\n18) ajo: Build G2 Ajo\n\n19) AdamBadura: Build G3 Outpost\n\n20) ajo: Sacrifice G2 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\n\n21) AdamBadura: Discover R1 Adambadura B1 Mutator\n\n22) ajo: Trade G2 R2 Alpha\n\n23) AdamBadura: Build Y1 Adambadura\n\n24) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\nBuild Y2 Alpha\n\n25) AdamBadura: Sacrifice Y1 Adambadura\nDiscover G3 Outpost R2 Deathstar\n\n26) ajo: Move G2 Alpha Mutator\n\n27) AdamBadura: Sacrifice Y1 Adambadura\nMove G3 Deathstar Ajo\nCatastrophe Ajo G\n\n28) ajo: Build R2 Alpha\n\tajo: Whoops, got the names of the stars backwards. :P Anyway, I'm back from vacation!\n\n29) AdamBadura: Trade R1 Y1 Mutator\n\n30) ajo: Sacrifice R2 Alpha\nAttack Y1 Mutator\nPass\n\n31) AdamBadura: Build G1 Outpost\n\n32) ajo: Build R1 Alpha\n\n33) AdamBadura: Trade R1 Y1 Adambadura\n\n34) ajo: Build G1 Mutator\n\n35) AdamBadura: Discover G1 Adambadura R1 Deathstar\n\n36) ajo: Build G3 Mutator\n\n37) AdamBadura: Build Y2 Adambadura\n\tajo: You really like those red/green deathtraps, don't you? What's the attraction there?\n\n38) ajo: Trade G2 R2 Mutator\n\n39) AdamBadura: Move Y2 Adambadura Deathstar\n\tAdamBadura: I play poorly. :( I was somewhat better when I was playing more, but since long I only answer chelenges which is rare.\n\n40) ajo: Discover Y2 Alpha B1 Beta\n\n\nHomeworlds Online (SDG# 24687)\nVariants: "Hard time"\nStarted: 2013.11.9, Ended: 2013.11.26\nParticipants: Aristos (S), wil (N)\nWinner: Aristos\n\n1) wil: Homeworld B2 R1 G3\n\n2) Aristos: Homeworld G3 B2 Y3\n\twil: thanks for the game, we's heads up over there with more pieces...\n\n3) wil: Build G1 Wil\n\tAristos: Aristos Empire, having eliminated the last resistance on Homeworld, constructs a ship to explore the stars.\n\n4) Aristos: Build Y1 Aristos\n\n5) wil: Trade G1 Y1 Wil\n\n6) Aristos: Discover Y1 Aristos B1 Aleph\n\n7) wil: Build G1 Wil\n\n8) Aristos: Trade Y1 G1 Aleph\n\n9) wil: Discover G1 Wil B3 B3\n\n10) Aristos: Build Y1 Aristos\n\n11) wil: Build Y1 Wil\n\twil: \r\n(Hide Notebook)\r\n\r\n\r\n \t \n\twil: The goal, videos which teach the intracies of games of homeworlds. The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn't see coming or outplayed, or played a very good game themselves against an admirable foe... And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds..... You pick the game number (from the archive) and if you wish we give you credit for your half of the game.... If you'd like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?\n\n12) Aristos: Build Y2 Aristos\n\tAristos: Could definitely be educational. Let's see how the game develops, but I'm definitely open to it. \n\twil: Oh, I am not talking about this game...I am talking about particularly memorable learning moments you've had in games....\n\n13) wil: Move Y1 Wil B3\n\tAristos: The best games I've had have been in person, not online here. My single best: My opponent built a successful doomsday device, but before he could deploy it, I attacked and managed to successfully own the two Y3s and then deployed it the other direction. ;-)\n\n14) Aristos: Trade Y1 R1 Aristos\n\n15) wil: Build G1 Wil\n\n16) Aristos: Build G2 Aleph\n\n17) wil: Sacrifice G3 Wil\nBuild G2 B3\nBuild G2 B3\nBuild G3 Wil\n\n18) Aristos: Sacrifice Y2 Aristos\nMove G1 Aleph B3\nDiscover G2 Aleph Y3 Beda\nCatastrophe B3 Green\n\n19) wil: Trade G1 R1 Wil\n\n20) Aristos: Build R2 Aristos\n\n21) wil: Build R2 Wil\n\n22) Aristos: Build G1 Beda\n\tAristos: I forgot to trigger the catastrophe the first time. \n\n23) wil: Discover R2 Wil G3 G3\n\n24) Aristos: Build G1 Beda\n\n25) wil: Build G1 Wil\n\n26) Aristos: Sacrifice Y3 Aristos\nMove G1 Beda Wil\nMove G1 Beda Wil\nDiscover R1 Aristos B1 Gimme\nCatastrophe Wil Green\n\n27) wil: Sacrifice Y1 Wil\nMove R2 G3 Wil\n\n28) Aristos: Build R2 Aristos\n\n29) wil: Trade R2 G2 Wil\n\n30) Aristos: Trade R2 Y2 Aristos\n\tAristos: I spent a long time considering the wisdom of that move. I hope I've analyzed this right. \n\n31) wil: Build G1 Wil\n\twil: and I didnt think you'd pull that trigger....\n\n32) Aristos: Build G1 Beda\n\n33) wil: Trade G1 Y1 Wil\n\n34) Aristos: Build R2 Aristos\n\n35) wil: Discover R1 Wil G3 G3\n\twil: startin over...\n\n36) Aristos: Sacrifice G2 Beda\nBuild R2 Gimme\nBuild R3 Aristos\n\n37) wil: Build R3 G3\n\n38) Aristos: Trade R2 Y2 Aristos\n\n39) wil: Build Y1 Wil\n\n40) Aristos: Sacrifice Y2 Aristos\nMove R1 Gimme G3\nMove R2 Gimme Beda\n\n41) wil: S Y1 Wil\nM R3 G3 Wil\n\n42) Aristos: Sacrifice Y2 Aristos\nMove R1 G3 Wil\nMove R2 Beda Wil\nCatastrophe Wil Red\n\n43) wil: B Y1 Wil\n\n44) Aristos: Build R1 Aristos\n\n45) wil: Build Y2 Wil\n\n46) Aristos: Trade R3 Y3 Aristos\n\n47) wil: Move Y1 Wil G3\n\n48) Aristos: Build Y2 Aristos\n\n49) wil: Sacrifice G2 Wil\nBuild Y2 B3\nBuild Y3 G3\n\n50) Aristos: Sacrifice Y2 Aristos\nDiscover Y3 Aristos B1 Temp\nMove Y3 Temp Wil\n\n\tAristos: "But, admiral, that will leave our homeworld undefended!"\r\n"Yes, senator, but once I destroy the enemy's home fleet, I shall loot their world and be back before they cause us any difficulties."\r\n"You realize if you fail, we'll be conquered and likely killed or enslaved."\r\n"Senator, you worry about your reelection. Let me worry about the empire."\n\twil: yes....i was a step behind....too slow...nice game\n\tAristos: Thanks. Good game.\n\twil: I looke foreard to plaaying agan....challenge me off the ladder if you wish... I am way still learning thi thing\n\nHomeworlds Online (SDG# 24693)\nVariants: "Hard time"\nStarted: 2013.11.9, Ended: 2013.11.25\nParticipants: Broccoli_Commander (S), MagicJohn (N)\nWinner: Broccoli_Commander\n\n1) MagicJohn: Homeworld Y1 B2 G3\n\n2) Broccoli_Commander: Homeworld B1 R3 G3\n\tMagicJohn: Wishing you and your little broccolites a good game......\n\n3) MagicJohn: Build G1 Magicjohn\n\tBroccoli_Commander: Likewise dear John\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) MagicJohn: Trade G1 R1 Magicjohn\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\tMagicJohn: Memo to Magic One: encryption code 18.\r\nHave established outpost in sector 8. Currently setting up defenses.\r\nIntelligence indicates a possible alien presence in sector 10. Source describes "little green men sporting Afros." (chuckle) Agent may be over-indulging in spirits or reading early-american science fiction mags.\r\nWill send additional intel when information is more reliable or can be taken seriously...... \n\n7) MagicJohn: Build R1 Magicjohn\n\n8) Broccoli_Commander: Build Y1 Broccoli_commander\n\n9) MagicJohn: Trade G3 Y3 Magicjohn\n\n10) Broccoli_Commander: Build Y2 Broccoli_commander\n\n11) MagicJohn: Trade R1 G1 Magicjohn\n\n12) Broccoli_Commander: Discover Y1 Broccoli_commander B2 Blueberry\n\n13) MagicJohn: Discover Y3 Magicjohn G3 Ruffage\n\tMagicJohn: Memo to MJ\r\nAliens are stockpiling propulsion materials. May be aware of our presence. Suggest counter measures.\r\nAgent Orange\n\n14) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y2 Blueberry\nBuild Y2 Blueberry\nBuild Y3 Broccoli_commander\n\tMagicJohn: Memo to MJ\r\nInterstellar movement detected. Aliens may be more aggressive and mobile than typical autotrophs.\r\nAlso, beware command-post decor and accents. One could be a plant.\n\n15) MagicJohn: Move Y3 Ruffage Magicjohn\n\tMagicJohn: Memo to MJ from Orange:\r\nDUCK!!\n\tMagicJohn: Memo to Magic One:\r\nOutpost under threat. Little green veggies to be taken seriously. Send herbicide and delivery system... SOON!!!\r\nMJ \n\n16) Broccoli_Commander: D Y2 Blueberry G3 Lettuce\n\tMagicJohn: Attention alien commander (Caesar of Salads): Please be advised that we are an expeditionary force representing an entire federation of allied civilizations. If you surrender now, we can guarantee that you will be relocated into a space sector free of herbivores and other vegan species. We also offer Obamacare and/or a Thousand Islands to restore your aged foliage or environmentally stressed sprouts. \n\n17) MagicJohn: Trade Y3 R3 Magicjohn\n\n18) Broccoli_Commander: Build Y3 Lettuce\n\n19) MagicJohn: Trade R1 B1 Magicjohn\n\tMagicJohn: MJ to Orange: Threats and/or promises not effective. Other suggestions?\n\tMagicJohn: Orange to MJ: Try obsequious,,,\n\tMagicJohn: MJ: Ob-se.....\n\tMagicJohn: Orange: Sniveling\n\tMagicJohn: MJ: oh....\n\tMagicJohn: Oh great Mandarin of Oranges, Royal Palm, Crown of Broccoli, Head of Lettuce, Heart of Artichoke, Caesar of Salads: We poor pilgrims, cast out from our native lands, request the favor of an audience with a legume leader to discuss peaceful co-existence in this corner of space. Please send one starship to our docking port. We regret that our poor facilities cannot accommodate your entire,glorious fleet..... \n\n20) Broccoli_Commander: Build Y3 Lettuce\n\n21) MagicJohn: Build G1 Magicjohn\n\tBroccoli_Commander: Dear MJ, dreadful agent O,\r\n\r\nI, the ever healthy Broccoli Commander, would like to express my greenest sympathy to you and your people. You see, with my fellow flowerheads, we had to face an intestine war. One of those that requires a mouthful of diplomatic fibers to settle.\r\n\r\nCaptain Lemon had always added a needed zest to our team. In fact he protected our little seeds and sprouts from the terrible vegan attack of last summer. We had to express our gratitude!\r\n\r\nBut captain Lemon went overboard this time. A rooting spot in the holy lands (with an endless supplies of bees!) was not enough for him. He drained all the cosmopropellant from the entire universe to make a fleet in his glory.\r\n\r\nDo not worry for us, I think the old disputes have rotten now. But I'm afraid I cannot give you any access to cosmoprop tanks anymore. I can only advise you to stay away from Captain Lemon ships or he might unite his acids with his old pal the T to reduce you to ketchup.\r\n\r\nYours delicacy,\r\nThe ever healthy Broccoli Commander.\r\n\r\nPS No seriously: All your base are belong to us. Surrender or tell your kids they gonna have to eat spinach!\n\tBroccoli_Commander: Hilarious:\r\nhttp://news.yahoo.com/blogs/news/obama-broccoli-gate-211714643.html\r\nI should have taken the obamacare you offered me\n\n22) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\n23) MagicJohn: Move B1 Magicjohn Lettuce\n\tMagicJohn: Oh Czar of Zucchini,\r\nOur heartfelt greetings to you and the Cumquat Queen. (Or vice versa, depending upon who's in charge)\r\nWe regret to hear how poorly your Captains obey orders. The insurrection and resulting anarchy must wreck havoc on your magnificent civilization. The stronger hand of the Federation could give you a welcome respite from your societal turmoil.\r\nTo prove our sincerity, we are preparing a nutritious compound of potassium nitrate and various other chemicals for your continued good health.\r\nMJ \n\tMagicJohn: Oh Pontiff of Peach,\r\nWe are sending an emissary to begin a peaceful dialogue and, hopefully, negotiate a lasting peace and mutual respect between our peoples. We trust that your cambium is as pure as one would expect from the leader of such an advanced civilization and our emissary will be safe and treated well.\r\nMay your pith forever prosper!\r\nMJ \n\n24) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove Y3 Lettuce Magicjohn\nMove Y3 Lettuce Magicjohn\n\n25) MagicJohn: Build R1 Magicjohn\n\tBroccoli_Commander: You say potassium nitrate, we come and get it. Our two oversized cargo ships are ready,please deliver.\n\tMagicJohn: Magic 1 to MJ:\r\nHaving successfully and irrevocably pollenated up the tactics needed to complete objectives in your sector, we trust you are willing to accept a small demotion to Private MJ. Agent Orange has returned to Nam where he is trying to ingratiate himself to the current generation of flora.\n\n26) Broccoli_Commander: Sacrifice R2 Broccoli_commander\nAttack R3 Magicjohn\nAttack R1 Magicjohn\n\tMagicJohn: Dear Poobah of Pomegranate, Great Royalty of Rhubarb:\r\n\r\nOur esteemed commander, Private MJ, has been called back to his home planet due to an impending death in his family.\r\nAs acting commander, I am organizing the delivery of nutritious consumables to your magnificent ships as quickly as possible. Loading will most certainly be complete in the current growing season.\r\nMay your bulbs always bloom.\r\nMajor Minor \n\n27) MagicJohn: Trade G1 B1 Magicjohn\n\tBroccoli_Commander: Dear Major Minor,\r\n\r\nThank you for your generosity, this is more than we would have asked for! We took the liberty of borrowing two of your ships to bring the cargo back to all of our ramifications. I'm sure you understand; rest assured we will return them briskly!\r\n\r\nI hope Private MJ is alright, we had quite the fun with him. Transmit our condolences, may he not forget that one's soul harvesting leads to new germinations\r\n\r\nBest wishes of peace, joy and chlorophyll,\r\nThe ever healthy Broccoli Commander\n\n28) Broccoli_Commander: Sacrifice R3 Magicjohn\nAttack B1 Magicjohn\nAttack G1 Magicjohn\nAttack B1 Lettuce\n\tMagicJohn: Command fleet to MJ outpost:\r\nPrepare to receive incoming shipment of raspberry Kool Aid. You know the drill.\n\tMagicJohn: Command fleet to MJ outpost:\r\nP.S. Please instruct Major Disaster's wife to stop rearranging our fleet to accommodate her "feng shui" impulses. Isn't ANYONE in charge out there?\n\tBroccoli_Commander: We are looking forward to feeding on your decomposing bodies.\r\n\r\nPS Thanks for the game, I may have beaten you in space but you are light years ahead in eloquence ;)\n\tMagicJohn: Well played! It's been a while since I have been that thoroughly annihilated……. Going back to home base for more advanced tactical classes……. May recruit Ender…..\n\n\nHomeworlds Online (SDG# 24604)\nVariants: "Hard time"\nStarted: 2013.11.10, Ended: 2013.11.15\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld B2 R1 G3\n\n2) Broccoli_Commander: Homeworld B1 R2 G3\n\n3) wil: Build G1 Wil\n\twil: Oh, these short unis...\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) wil: Trade G1 Y1 Wil\n\tBroccoli_Commander: ?\n\twil: you've done built us a short universe....we are one 3 star away or two moves away from each other...this is only the second time I've played this...\n\n6) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n7) wil: Build G1 Wil\n\tBroccoli_Commander: Ha! That was not intended! (I meant to h b1 r3 g3)\n\twil: well this is another fine mess you've gotten us into.\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\twil: The goal, videos which teach the intracies of games of homeworlds. The concept, ask the main players of homeoworlds what they consider some memorable games, where they were eitther trounced by something they didn't see coming or outplayed, or played a very good game themselves against an admirable foe... And then the game will be recreated with a play by play analysis and commentary by the creator of the pyramids against the creator of the game Homeworlds..... You pick the game number (from the archive) and if you wish we give you credit for your half of the game.... If you'd like to participate, send me the game link, and a short paragraph indicating what makes that game memorable in your mind, and it will be submitted, (you can send more than one, for different reasons, (use of factory, bluebird, the transport, catastrophes, doomsday machine, domination by controlling one color/economy, etc) .... Care to submit?\n\tBroccoli_Commander: Heh nice project! Are you its instigator?\r\nI might submit, but I'll need some archive browsing time... deadline?\n\n9) wil: Build Y1 Wil\n\tBroccoli_Commander: Well in #23216 vs ts52 I had a funny opening that led to a yellow monopole. But while I thought it was "brilliant" at the time, I'm not sure anymore... I mean the point of the opening is rather obvious...\n\tBroccoli_Commander: In #23213 vs SilentTitan I was really helpless after turn 8 already: he had set up himself nicely for a blue monopoly and caught me totally unprepared.\n\tBroccoli_Commander: Finally #23269 vs SilentTitan was also funny:\r\nHe played for a yellow monopole (pretty much as I tried in #23216) and I went for a green monopole. \r\n\r\nI barely managed to prevent his yellow monopole and then he went for a preemptive y cat at my homeworld.\r\n\r\nA terrific war followed that I could only win by "teleporting" g2 repeatedly (s g2, b g2 elsewhere + build anywhere) and because I had built the lone r1 of the game somewhere.\r\n\r\nIf you want to look at one game only I would suggest this one :) But the other two are fun too I think. Note that I won't be offended at all if you judge that none of them are worth for the project ;)\n\twil: Wow, thanx for the quick response....they are gonna be excited! \r\n\r\nno deadline, yes I am instigating, the idea is to review them and pick ones to add 'color commentary' them thinking outloud about moves and what they do to figure out what to do next...\n\n10) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n11) wil: Build Y2 Wil\n\tBroccoli_Commander: Hehe I could not resist going through the old games again ;) Hence the quick reply. But this is really a nice idea! Did you get support from other people of the community already?\r\n\r\nAnother thing I've been thinking about is a smartphone version of homeworlds! It is a hobby of mine... I dunno if there would be any interest from the community and/or creators of the game, though?\n\twil: Oh we've been drooling of the concept of an app....where you could drag and drop ships from star to star, to and from the bank....real time reactions and a live chat feature with players....an actual coin to move to lock in your play....it would be amazing...you have that talent??\n\n12) Broccoli_Commander: Trade G1 R1 Blueberry\n\n13) wil: Trade Y1 R1 Wil\n\n14) Broccoli_Commander: Build G1 Broccoli_commander\n\n15) wil: Move Y2 Wil Blueberry\n\n16) Broccoli_Commander: Build G1 Broccoli_commander\n\tBroccoli_Commander: Hell I'm not on top of this game :D :D :D :D\r\n\r\nHey nice to hear that there would be excitement about an app! I was wondering which platform would be the best... Basically iOS is the most convenient because they provide servers for matchmaking whereas (as far as I know) we need to provide our own server on the other platforms (android, windows phone, ... )\r\n\r\nNow I'm definitely not ready to invest money into this, so I think I would do it for iOS. Do you have an iPhone?\r\n\r\nThe other possibility would be to make a plain windows game; but I guess mobile platforms are preferred nowadays?\r\n\r\nBut otherwise yeah I would be able to make it (hopefully :D) \n\n17) wil: Sacrifice R1 Wil\nAttack R1 Blueberry\n\n18) Broccoli_Commander: Discover G1 Broccoli_commander B3 Muffin\n\n19) wil: Move G1 Wil Blueberry\n\twil: whew\n\n20) Broccoli_Commander: Build G2 Muffin\n\n21) wil: Build G2 Wil\n\twil: short uni issues are crazy\n\twil: You up early or late?\n\tBroccoli_Commander: Its noon here, you?\n\n22) Broccoli_Commander: Trade G2 R2 Muffin\n\twil: you in Europe?\n\twil: I'm on the east coast USA\n\n23) wil: Build G2 Blueberry\n\tBroccoli_Commander: yep I'm in europe, so you're up very late or reasonably early now?\n\n24) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Muffin\nBuild G3 Broccoli_commander\nBuild Y1 Broccoli_commander\n\n25) wil: Sacrifice Y2 Blueberry\nMove G1 Blueberry Broccoli_commander\nMove G2 Blueberry Broccoli_commander\nCatastrophe Broccoli_commander G\n\twil: unreasonably early, I was on holiday for a couple of years..back at work now... looks like i missed an opportunity already...\n\n26) Broccoli_Commander: Move Y1 Broccoli_commander Muffin\n\tBroccoli_Commander: Well my opening was really bad.... Indeed you could have killed me already :|\n\n27) wil: Build Y2 Wil\n\n28) Broccoli_Commander: Sacrifice G2 Muffin\nBuild Y2 Muffin\nBuild Y2 Broccoli_commander\n\n29) wil: Move Y2 Wil Blueberry\n\n30) Broccoli_Commander: Trade Y2 G2 Broccoli_commander\n\n31) wil: Sacrifice G3 Wil\nBuild Y2 Blueberry\nBuild Y3 Wil\nBuild R1 Blueberry\n\n32) Broccoli_Commander: Build Y3 Broccoli_commander\n\n33) wil: Trade Y3 R3 Wil\n\n34) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Topping\n\n35) wil: Build Y3 Wil\n\n36) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild Y3 Topping\nBuild R2 Muffin\n\n37) wil: Discover Y1 Wil G3 G3\n\n38) Broccoli_Commander: Move R2 Muffin Broccoli_commander\n\n39) wil: Sacrifice Y2 Blueberry\nMove R1 Blueberry Broccoli_commander\nMove R1 Blueberry Broccoli_commander\nCatastrophe Broccoli_commander R\n\twil: now somebodies up late!\n\tBroccoli_Commander: Yes indeed.... way too late actually\n\n40) Broccoli_Commander: Build Y2 Muffin\n\n41) wil: Move Y3 Wil G3\n\n42) Broccoli_Commander: Build R1 Muffin\n\n43) wil: Trade R3 G3 Wil\n\n44) Broccoli_Commander: Build G1 Muffin\n\twil: we gotta play a real game after this...this is just so wild....not that I am good at the regular game...but this is foriegn...\n\n45) wil: Sacrifice Y1 G3\nMove G2 Wil Muffin\n\twil: do you have any locals you play homeworlds with? the physical game?\n\n46) Broccoli_Commander: Attack G2 Muffin\n\tBroccoli_Commander: No, I only played once with physical pieces unfortunately. Sure we can play again :)\n\n\twil: Knowledge of this game is quite limited by me...I cannot prolong the agony any longer...\n\tBroccoli_Commander: I should never have won this game :D It was an intense uphill battle...\n\twil: Yes, I blew it early on...didn't see the win... \n\nHomeworlds Online (SDG# 24628)\nVariants: "Hard time"\nStarted: 2013.11.15, Ended: 2013.11.23\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 B1 G3\n\tBroccoli_Commander: Let's play a normal game! (don't pick a h r3 b3 g3* please :D)\n\tBroccoli_Commander: For the app thing: do you have windows 8?\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\twil: I'll have to check on my other computer...I use an asus droid most of the time...are you workin on somethin??\n\n4) wil: Build G1 Wil\n\tBroccoli_Commander: Not quite yet, still prospecting to see what would be the best platform...\n\twil: nah, I am on windows7... over here seems the most popular are droids and ios\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\tBroccoli_Commander: Yeah droid is the one I know the least but it is also the most popular... I'll have a look into droid first [no promises on the whole thing, don't tell all your friends yet :D]\n\n6) wil: Trade G1 Y1 Wil\n\twil: Where was your one live game?? and I know i asked you about the broccoli commander name...I was accusing Andy of bein sneaky (tirade)\n\twil: Where was your one live game?? and I know i asked you about the broccoli commander name...I was accusing Andy of bein sneaky (tirade)\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) wil: Build Y1 Wil\n\tBroccoli_Commander: At a friend s place, but he did not particularly like it...\r\nas for my name it was just an invention.. \n\n9) Broccoli_Commander: Build Y2 Broccoli_commander\n\twil: I don't know if we spoke about it But the inventor of the pyramids had a cartoon character of broccoli, and often calls himself the emporer...so broccoli commander made me think it was him at first....\n\n10) wil: Build Y2 Wil\n\tBroccoli_Commander: Haha ok I see... Well dlwillson also thought I was Andy. I understand now...\n\n11) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Blueberry\n\n12) wil: Trade Y1 R1 Wil\n\n13) Broccoli_Commander: Trade Y1 R1 Blueberry\n\twil: That was probably the reason...from the comic book....Andy doesn't look at broccoli as food but as a cartoonn character.\n\n14) wil: B Y1 Wil\n\n15) Broccoli_Commander: Move G1 Broccoli_commander Blueberry\n\n16) wil: Discover R1 Wil G2 G2\n\n17) Broccoli_Commander: Build R2 Blueberry\n\n18) wil: Build R2 G2\n\n19) Broccoli_Commander: Trade R2 Y2 Blueberry\n\n20) wil: Trade Y1 B1 Wil\n\n21) Broccoli_Commander: Build R2 Blueberry\n\n22) wil: Build B1 Wil\n\n23) Broccoli_Commander: Discover R2 Blueberry G2 Lettuce\n\n24) wil: Move B1 Wil G2\n\n25) Broccoli_Commander: Build R2 Lettuce\n\n26) wil: Trade R1 Y1 G2\n\n27) Broccoli_Commander: Build G1 Broccoli_commander\n\n28) wil: Build B2 G2\n\n29) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y1 Broccoli_commander\nBuild Y3 Broccoli_commander\nBuild Y3 Blueberry\n\n30) wil: Build Y3 G2\n\n31) Broccoli_Commander: Trade Y3 G3 Broccoli_commander\n\n32) wil: Discover B2 G2 G3 G3\n\twil: I was so close to catastrophing your homeworld..\n\n33) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G1 Blueberry\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\n\tBroccoli_Commander: I would have preferred ;-)\n\n34) wil: Move Y1 G2 G3\n\twil: It was tempting...as I looked at moves it kept coming back...\n\n35) Broccoli_Commander: Build Y3 Broccoli_commander\n\n36) wil:\n\nMove Y1 G3 Broccoli_commander\nCatastrophe Broccoli_commander Y\n\n37) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R1 Blueberry\nBuild R3 Blueberry\n\n38) wil: Build R3 G2\n\n39) Broccoli_Commander: Sacrifice Y2 Blueberry\nMove R1 Blueberry G2\nMove R1 Blueberry G2\nCatastrophe G2 R\n\n40) wil: Trade Y2 R2 Wil\n\n41) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Blueberry\nBuild R1 Blueberry\n\n42) wil: Move R2 Wil G2\n\n43) Broccoli_Commander: Discover R1 Blueberry Y2 Cauliflower\n\n44) wil: Sacrifice Y1 Wil\nMove B2 G3 Cauliflower\n\n45) Broccoli_Commander: Sacrifice Y3 Blueberry\nMove G1 Blueberry G2\nMove G1 Blueberry G2\nMove G2 Blueberry G2\nCatastrophe G2 G\n\n46) wil: Trade B1 R1 Wil\n\n47) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild R2 Blueberry\nBuild R3 Cauliflower\nBuild Y1 Blueberry\n\n48) wil: Discover B2 Cauliflower Y3 Y3\n\n49) Broccoli_Commander: Move R3 Blueberry Broccoli_commander\n\twil: nice, I missed that...\n\n50) wil: Build G1 Wil\n\twil: reboot to a new game...with you with a big lead...\n\n51) Broccoli_Commander: Trade Y1 G1 Blueberry\n\tBroccoli_Commander: Thanks, at last you missed something, I was seriously worried ;-)\r\nAnd I dont know if it was your plan, but you forced my hand: you could have done the same with your blues and my beloved Blueberry \n\n52) wil: Trade G1 Y1 Wil\n\n53) Broccoli_Commander: Trade R3 Y3 Broccoli_commander\n\n54) wil: Build G1 Wil\n\n55) Broccoli_Commander: Build R3 Blueberry\n\n56) wil: Discover G1 Wil Y2 Y2\n\twil: Yeah...i blew it as usual.. my issue is I don't take enough time to look at these games. I should set up a physical set and evaluate longer...but i don't have the patience...i shoot from the hip and make mistakes...time for me to wake up.\n\n57) Broccoli_Commander: Trade R3 G3 Blueberry\n\n58) wil: Move R1 Wil Y2\n\n59) Broccoli_Commander: Build R3 Blueberry\n\n60) wil: Move G1 Y2 Y3\n\n61) Broccoli_Commander: Move G3 Blueberry Y2\n\n62) wil: Build G2 Wil\n\n63) Broccoli_Commander: Sacrifice Y3 Broccoli_commander\nMove G3 Y2 Wil\nMove R3 Cauliflower Wil\nMove R3 Blueberry Broccoli_commander\n\n64) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 Wil\n\n65) Broccoli_Commander: Attack Y1 Wil\nCatastrophe Wil G\n\n\twil: thank you for the beating!\n\tBroccoli_Commander: Anytime ;)\r\n\r\nAny news from your best-games-replay project?\n\twil: We are discussing the format, I'd like to make it easy and less complicated so it can be accomplished quickly and improved upon if it shows value... others want more polish and professionalism....but expect something accomplished early next year.\n\twil: on the homeworlds ap front....odds are IOS would be the best format...as it is still the most widely used...\n\tBroccoli_Commander: OK good news :)\r\nFor the app->it might actually be possible to do a multiplatform thing using "Unity"/ but do not expect anything before next year :P\n\nHomeworlds Online (SDG# 24739)\nVariants: "Hard time"\nStarted: 2013.11.19, Ended: 2014.1.7\nParticipants: TeeTeeTee (S), SirRuthvenMurgatroyd (N)\nWinner: TeeTeeTee\n\n1) SirRuthvenMurgatroyd: Homeworld B1 Y2 G3\n\n2) TeeTeeTee: Homeworld Y1 B3 G3\n\n3) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) SirRuthvenMurgatroyd: Discover G1 Sirruthvenmurgatroyd Y3 Sol\n\tTeeTeeTee: Greetings! Thanks for accepting my challenge.\n\n6) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n7) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n8) TeeTeeTee: Build Y1 Teeteetee\n\n9) SirRuthvenMurgatroyd: Trade G3 Y3 Sirruthvenmurgatroyd\n\n10) TeeTeeTee: Discover Y1 Teeteetee G2 Stepney\n\n11) SirRuthvenMurgatroyd: Build Y2 Sirruthvenmurgatroyd\n\n12) TeeTeeTee: Build Y2 Stepney\n\n13) SirRuthvenMurgatroyd: Discover Y2 Sirruthvenmurgatroyd Y3 Aleph\n\n14) TeeTeeTee: Trade Y1 R1 Teeteetee\n\n15) SirRuthvenMurgatroyd: Discover Y2 Aleph G2 Beth\n\n16) TeeTeeTee: Build R1 Teeteetee\n\n17) SirRuthvenMurgatroyd: Build G1 Sol\n\n18) TeeTeeTee: Move Y2 Stepney Sol\n\n19) SirRuthvenMurgatroyd: Build G2 Sirruthvenmurgatroyd\n\n20) TeeTeeTee: Build G3 Teeteetee\n\n21) SirRuthvenMurgatroyd: Build G3 Sirruthvenmurgatroyd\n\n22) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild Y1 Sol\nBuild Y3 Stepney\n\n23) SirRuthvenMurgatroyd: Move Y2 Beth Sol\nCatastrophe Sol Yellow\n\n24) TeeTeeTee: Discover G3 Teeteetee Y2 Aldgate\n\n25) SirRuthvenMurgatroyd: Discover G3 Sirruthvenmurgatroyd Y3 Gimel\n\n26) TeeTeeTee: Move Y3 Stepney Gimel\n\n27) SirRuthvenMurgatroyd: Discover G3 Gimel R2 Dalet\n\n28) TeeTeeTee: Move Y3 Gimel Sirruthvenmurgatroyd\n\n29) SirRuthvenMurgatroyd: Build Y1 Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Yellow\n\n30) TeeTeeTee: Move G3 Aldgate Sirruthvenmurgatroyd\n\n31) SirRuthvenMurgatroyd: Trade G1 Y1 Sirruthvenmurgatroyd\n\n32) TeeTeeTee: Sacrifice R1 Teeteetee\nAttack Y1 Sirruthvenmurgatroyd\n\n33) SirRuthvenMurgatroyd: Build G1 Sirruthvenmurgatroyd\n\n34) TeeTeeTee: Build G1 Sirruthvenmurgatroyd\nCatastrophe Sirruthvenmurgatroyd Green\n\tTeeTeeTee: Thanks for the game!\n\n\nHomeworlds Online (SDG# 24744)\nVariants: "Hard time"\nStarted: 2013.11.20, Ended: 2013.12.11\nParticipants: goulo (S), agentofchaos (N)\nWinner: goulo\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) goulo: Homeworld R3 B1 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\tagentofchaos: Thanks, you too!\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) goulo: Build G1 Goulo\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) goulo: Trade G1 Y1 Goulo\n\n9) agentofchaos: Discover Y1 Agentofchaos G3 Hadaeon\n\n10) goulo: Build Y1 Goulo\n\n11) agentofchaos: Build Y2 Hadaeon\n\n12) goulo: Build Y2 Goulo\n\n13) agentofchaos: Trade G1 B1 Agentofchaos\n\n14) goulo: Discover Y1 Goulo G2 Smeraldo\n\n15) agentofchaos: Build G1 Agentofchaos\n\n16) goulo: Discover Y2 Goulo R2 Rubeno\n\n17) agentofchaos: Build B2 Agentofchaos\n\n18) goulo: Sacrifice G3 Goulo\nBuild Y2 Rubeno\nBuild Y3 Smeraldo\nBuild Y3 Goulo\n\n19) agentofchaos: Move Y1 Hadaeon Agentofchaos\n\n20) goulo: Build Y3 Goulo\n\n21) agentofchaos: Move B2 Agentofchaos Hadaeon\n\n22) goulo: Trade Y1 R1 Goulo\n\n23) agentofchaos: Trade B1 R1 Agentofchaos\n\n24) goulo: Trade R1 B1 Goulo\n\n\nHomeworlds Online (SDG# 24473)\nVariants: "Unrated, Hard time"\nStarted: 2013.11.22, Ended: 2014.1.4\nParticipants: Phil_Coulson (S), wil (N), Leonard_Daniels (E)\nWinner: wil\n\n1) wil: Homeworld B2 G1 Y3\n\twil: Make sure you pick a different homeworld\n\n2) Leonard_Daniels: Homeworld Y1 B3 G3\n\n3) Phil_Coulson: Homeworld B3 R2 G3\n\n4) wil: Build Y1 Wil\n\n5) Leonard_Daniels: Build G1 Leonard_daniels\n\n6) Phil_Coulson: Build G1 Phil_coulson\n\n7) wil: Discover Y1 Wil G3 G3\n\n8) Leonard_Daniels: Trade G1 B1 Leonard_daniels\n\n9) Phil_Coulson: Trade G1 Y1 Phil_coulson\n\n10) wil: Build Y1 Wil\n\n11) Leonard_Daniels: Build B1 Leonard_daniels\n\n12) Phil_Coulson: Build Y2 Phil_coulson\n\n13) wil: Build Y2 Wil\n\n14) Leonard_Daniels: Build G1 Leonard_daniels\n\tLeonard_Daniels: Arse. Frozen out of the yellow economy this early. At some point I'm just going to have to accept that I'm terrible at this game.\n\n15) Phil_Coulson: Discover Y1 Phil_coulson G1 G1\n\n16) wil: Discover Y2 Wil B3 B3\n\n17) Leonard_Daniels: Discover B1 Leonard_daniels G2 G2\n\tPhil_Coulson: Or you can build a blue fleet and eventually trade them for yellows. \n\twil: or trade g3 for y3....but defiantly not frozen out...\n\n18) Phil_Coulson: Build Y2 Phil_coulson\n\tLeonard_Daniels: Didn't even occur to me. Definitely terrible at this game.\n\n19) wil: Trade Y3 G3 Wil\n\n20) Leonard_Daniels: Build B1 G2\n\n21) Phil_Coulson: Trade Y2 B2 Phil_coulson\n\n22) wil: Build Y2 G3\n\n23) Leonard_Daniels: Trade B1 R1 G2\n\n24) Phil_Coulson: Move B2 Phil_coulson G1\n\n25) wil: Discover Y2 G3 B1 B1\n\n26) Leonard_Daniels: Build R1 G2\n\twil: I have never had anyone else use my star nomenclature before and now an entire game of it??\r\n\n\n27) Phil_Coulson: Build G1 Phil_coulson\n\n28) wil: Sacrifice G3 Wil\nBuild Y2 B1\nBuild Y3 B1\nBuild Y3 Wil\n\n29) Leonard_Daniels: Build G2 Leonard_daniels\n\n30) Phil_Coulson: Move Y2 Phil_coulson B1\nCatastrophe B1 Y\n\tPhil_Coulson: Well, this sets me back, but the move is forced, so I have to play it.\n\tPhil_Coulson: Well, this sets me back, but the move is forced, so I have to play it.\n\n31) wil: Trade Y1 R1 Wil\n\twil: ouch\n\n32) Leonard_Daniels: Trade G1 Y1 Leonard_daniels\n\n33) Phil_Coulson: Trade G1 R1 Phil_coulson\n\n34) wil: Build R2 Wil\n\n35) Leonard_Daniels: Move Y1 Leonard_daniels G2\n\n36) Phil_Coulson: Build Y2 G1\n\n37) wil: Build Y2 Wil\n\n38) Leonard_Daniels: Move R1 G2 Leonard_daniels\n\n39) Phil_Coulson: Move Y1 G1 Phil_coulson\n\twil: now this is synister yes?? only can attack left? I've never done this yet...\n\tLeonard_Daniels: Is it? If it is, I'd forgotten. Sinister doesn't affect who you CAN attack, though, does it? I thought it just affected your victory conditions.\n\n40) wil: Trade Y3 G3 Wil\n\n41) Leonard_Daniels: Build R2 Leonard_daniels\n\n42) Phil_Coulson: Move R1 Phil_coulson G1\n\twil: i dunno...never done it...I'm asking...so it is a free for all?\n\tLeonard_Daniels: Pretty sure it's a free-for-all. It doesn't say Sinister at the top of the page, anyway. In any case, I've looked up the rules for Sinister Homeworlds and you can attack anybody you like, it's just that you win if the player to your left is eliminated.\n\n43) wil: Build G1 Wil\n\twil: thx...although the only way I've seen these games end so far is get timed out...\n\n44) Leonard_Daniels: Build B1 G2\n\n45) Phil_Coulson: Build R2 G1\n\n46) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 B3\nBuild Y3 Wil\n\n47) Leonard_Daniels: Build Y3 G2\n\n48) Phil_Coulson: Discover R1 G1 G3 G3prime\n\n49) wil: Move Y3 B3 G1\n\n50) Leonard_Daniels: Move Y1 G2 Leonard_daniels\n\n51) Phil_Coulson: Sacrifice G3 Phil_coulson\nBuild Y3 Phil_coulson\nBuild R3 G3prime\nBuild R3 G3prime\n\n52) wil: Sacrifice R2 Wil\nAttack R2S G1\nAttack Y2S G1\n\tPhil_Coulson: And I would have expected you to move the y1 to planet g1 rather than back to your homeworld!\n\n53) Leonard_Daniels: Sacrifice Y3 G2\nMove R1 G2 G1\nMove R1 Leonard_daniels G2\nMove R1 G2 G1\n\tPhil_Coulson: Shit. That doesn't work because you moved your y1 from the right place to a bad place so you can't help out next turn.\n\twil: Help out?? What is this 'help out' notion? Am I playing a team or two individual players?\n\tPhil_Coulson: No, but if any of us get too powerful the the others help out. In this case, had Leonard moved his y1 into the 'g1' system, that would be asking me to sacrifice and build a y3 and blow up all the yellow commodity in the system. It would help Leonard the most, but it would help me too as it would save my little ships, so I would take that offer. You would similarly do the same to me if I were intruding. That's the fun of 3-player games.\r\n\r\nHowever, Leonard made a move worse than passing, and didn't build big ships. I have to wonder what that is about. As it is, you have a 90% chance of winning, Wil, as you will have all the yellow ships soon. If Leonard doesn't aggressively attack you now, I should simply resign. \n\n54) Phil_Coulson: Sacrifice B2 G1\nTrade R3 Y3 G3prime\nTrade Y1 G1 Phil_coulson\n\tPhil_Coulson: I think my position is lost no matter what, so I'll make a desperation move.\n\n55) wil: Attack R1E G1\n\twil: golly day....g3 prime looks like come kill me... it can't grow, can't trade, can't move..witout a sacrifice in the home world...and the home world can't grow, It is quite the stiuation...\n\tLeonard_Daniels: Phil, were you not listening when I told you I was terrible at this game? Lesson for the future: never make plans based on the assumption that I know what I'm doing...\n\n56) Leonard_Daniels: Sacrifice G2 Leonard_daniels\nBuild R2 G1\nBuild R3 Leonard_daniels\nCatastrophe G1 R\n\tPhil_Coulson: Yeah, I've no idea what I'm doing here either. But I know you want to move everything out of your home world but one big and one small ship of the the two colors different from your stars.\r\n\r\nand wil is right, I can't move my red ships. \n\n57) Phil_Coulson: Discover R3 G3prime Y1 Y1\n\tPhil_Coulson: My blue ship was dead in the water too, so might as well sacrifice it to change colors, I guess.\n\n58) wil: M G1 Wil B3\n\n59) Leonard_Daniels: Build G2 Leonard_daniels\n\n60) Phil_Coulson: Build G2 Phil_coulson\n\n61) wil: Build R1 Wil\n\n\tLeonard_Daniels: Sorry guys, still not used to this system; was on holiday for a couple of days in the Yorkshire Dales without internet access. Haven't been playing a game over holidays before so it slipped my mind that this would be problematic.\n\twil: It happens. Now it is me and you Phil.... Are you guys both from England?\n\tPhil_Coulson: Nah, not worth it. Should have ended when one player is out, shouldn't it?\n\twil: ah phooey....I like playing them out...I've yet to see a three player game last....someone always drops out....but a two player game with that large a bank is awfully interesting. I was so ready to go get his ships!\n\nHomeworlds Online (SDG# 24715)\nVariants: "Hard time"\nStarted: 2013.11.25, Ended: 2013.11.29\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld R2 B1 G3\n\n2) Broccoli_Commander: Homeworld Y2 B3 G3\n\twil: Just got lucky in a game vs SilentTitan, got TS52 last time, but he's got the best of me this time...not doing so good in my ladder battle with Aristos...\n\n3) wil: Build G1 Wil\n\tBroccoli_Commander: Nice :) Well these guys are tough, really looking forward to playing them on the ladder too! \r\n(I've won the game against MagicJohn, just waiting for his last turn...)\n\tBroccoli_Commander: Have you ever played TwoShort?\n\twil: Not yet...everyone tells me they've never beat two short...he lost the top because the fell asleep at the wheel and got timed out...didn't take him long to get back up there.\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) wil: Trade G1 R1 Wil\n\tBroccoli_Commander: the final boss of the game, can't wait :D\n\twil: Zoltar will be a good one for you to prepare on...he hasn't been able to get by two short.. \n\n6) Broccoli_Commander: Discover G1 Broccoli_commander B1 Blueberry\n\n7) wil: Build G1 Wil\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) wil: Trade G1 Y1 Wil\n\n10) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\n11) wil: Build R1 Wil\n\n12) Broccoli_Commander: Build B2 Broccoli_commander\n\twil: Yes way to slow on thet uptake, I realized it after I did it that that was the move\n\n13) wil: Discover R1 Wil G3 G3\n\tBroccoli_Commander: Well you would have needed to re-trade one of yours so you had no good choice. But this is a minor victory...\n\n14) Broccoli_Commander: Discover B2 Broccoli_commander G1 Pea\n\n15) wil: Build R1 Wil\n\n16) Broccoli_Commander: Build B2 Pea\n\twil: minor victories at thiss stage create huge advantagws later\n\n17) wil: Build R2 G3\n\n18) Broccoli_Commander: Trade B2 R2 Pea\n\n19) wil: Build R3 G3\n\n20) Broccoli_Commander: Build R3 Pea\n\n21) wil: Build Y1 Wil\n\n22) Broccoli_Commander: Trade R3 Y3 Pea\n\twil: my mistakes are compounding..opening more doors for you to take advantage of...\n\n23) wil: Sacrifice Y1 Wil\nDiscover R2 G3 G1 G1\n\tBroccoli_Commander: Go easy on yourself, you have not really made mistakes!?\n\n24) Broccoli_Commander: Build R3 Pea\n\twil: yes, exactly what i meant\n\n25) wil: Build R3 G1\n\n26) Broccoli_Commander: Build G2 Broccoli_commander\n\n27) wil: Build G2 Wil\n\n28) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Pea\nBuild B2 Pea\nBuild B3 Broccoli_commander\n\n29) wil: Trade G3 B3 Wil\n\n30) Broccoli_Commander: Trade B2 Y2 Pea\n\n31) wil: Discover R1 Wil Y3 Y3\n\n32) Broccoli_Commander: Trade B3 G3 Broccoli_commander\n\n33) wil: Trade B3 G3 Wil\n\n34) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Broccoli_commander\nBuild B2 Broccoli_commander\n\n35) wil: Build Y1 Wil\n\n36) Broccoli_Commander: Move B1 Broccoli_commander Blueberry\n\n37) wil: Move Y1 Wil G3\n\n38) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild B3 Pea\nBuild B3 Blueberry\n\n39) wil: Build Y1 G3\n\n40) Broccoli_Commander: Trade B3 Y3 Blueberry\n\n41) wil: Build Y2 G3\n\twil: I've been in a game of waitng for you to make a mistake and provide an opening.... hurry up will ya?\n\n42) Broccoli_Commander: Move Y2 Pea G3\nCatastrophe G3 Y\n\n43) wil: Build Y1 Wil\n\twil: I's still waitin\r\n\n\n44) Broccoli_Commander: Move R2 Pea Y3\n\tBroccoli_Commander: did that qualify?\n\twil: nah...looks like you came out ahead agin...\n\n45) wil: Move Y1 Wil G3\n\n46) Broccoli_Commander: Attack R1 Y3\n\n47) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 G3\nBuild Y2 Wil\n\n48) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y2 Blueberry\nBuild B3 Blueberry\n\n49) wil: Sacrifice Y2 Wil\nMove Y1 G3 Blueberry\nMove Y1 G3 Blueberry\nCatastrophe Blueberry Y\n\n50) Broccoli_Commander: Trade B3 Y3 Blueberry\n\n51) wil: Build Y1 Wil\n\n52) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild B3 Blueberry\nBuild Y1 Pea\n\n53) wil: Move Y1 Wil G3\n\n54) Broccoli_Commander: Move B3 Pea Y3\n\n55) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 Wil\nBuild Y2 G3\n\n56) Broccoli_Commander: Sacrifice Y3 Pea\nMove B2 Pea Y3\nMove R1 Y3 Wil\nMove R2 Y3 Wil\nCatastrophe Wil R\n\n57) wil: Sacrifice Y2 G3\nMove R3 G3 Pea\nMove R1 G3 Pea\n\n58) Broccoli_Commander: Sacrifice Y3 Blueberry\nMove B2 Pea Y3\nMove B2 Y3 Wil\nMove B2 Y3 Wil\n\n59) wil: Build R1 Pea\nCatastrophe Pea R\n\n60) Broccoli_Commander: Move B3 Y3 Wil\nCatastrophe Wil B\n\twil: nice\r\n\n\n\twil: it was that R3 that was my issue...thanx for the game\n\twil: it was that R3 that was my issue...thanx for the game\n\tBroccoli_Commander: Sure, the r3 was a key piece too\r\n\r\nThanks for the game\n\nHomeworlds Online (SDG# 24784)\nVariants: "Hard time"\nStarted: 2013.11.26, Ended: 2014.1.1\nParticipants: ts52 (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\tBroccoli_Commander: Greetings\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tts52: Salutations\n\n4) ts52: Build G1 Ts52\n\tBroccoli_Commander: It's a pleasure meeting you again. Took a while to crack the dead wood in the abysses of the ladder...\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) ts52: Build G1 Ts52\n\n9) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) Broccoli_Commander: Build B1 Broccoli_commander\n\n12) ts52: Build G1 Ts52\n\n13) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce\n\n14) ts52: Move Y1 Ts52 Gonzo\n\n15) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Lettuce\nBuild B3 Lettuce\nBuild B3 Broccoli_commander\n\n16) ts52: Discover G1 Gonzo B3 Grover\n\n17) Broccoli_Commander: Sacrifice B2 Lettuce\nTrade B3 G3 Broccoli_commander\nTrade B3 Y3 Lettuce\n\n18) ts52: Move G1 Ts52 Gonzo\n\n19) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Lettuce\nBuild B3 Lettuce\nBuild B3 Broccoli_commander\n\n20) ts52: Build G1 Ts52\n\n21) Broccoli_Commander: Trade B3 R3 Lettuce\n\n22) ts52: Trade G1 R1 Ts52\n\n23) Broccoli_Commander: Move R3 Lettuce Gonzo\n\n24) ts52: Sacrifice Y1 Gonzo\nMove G1 Gonzo Grover\n\n25) Broccoli_Commander: Build B3 Lettuce\n\n26) ts52: Trade G1 Y1 Grover\n\n27) Broccoli_Commander: Trade B3 R3 Broccoli_commander\n\n\nHomeworlds Online (SDG# 24547)\nVariants: "Hard time"\nStarted: 2013.11.26, Ended: 2013.12.1\nParticipants: SilentTitan (S), OnePageWars (N)\nWinner: SilentTitan\n\n1) OnePageWars: Homeworld G1 B2 Y3\n\n2) SilentTitan: Homeworld B3 R2 G3\n\tOnePageWars: gl hf!\n\n3) OnePageWars: Build Y1 Onepagewars\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) OnePageWars: Build Y1 Onepagewars\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) OnePageWars: Trade Y1 B1 Onepagewars\n\n8) SilentTitan: Build G1 Silenttitan\n\tOnePageWars: I can't believe I almost did that.\n\n9) OnePageWars: Build B1 Onepagewars\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\tSilentTitan: Yeah that might have been counterproductive.\n\n11) OnePageWars: Discover B1 Onepagewars G3 Zendo\n\n12) SilentTitan: Build B2 Silenttitan\n\n13) OnePageWars: Build B2 Zendo\n\tOnePageWars: guess which pyramid game I recently got excited about?\n\n14) SilentTitan: Trade B2 R2 Silenttitan\n\n15) OnePageWars: Trade B2 R2 Zendo\n\n16) SilentTitan: Build B2 Silenttitan\n\n17) OnePageWars: Sacrifice Y3 Onepagewars\nDiscover B1 Zendo R1 Nada\nMove B1 Nada Silenttitan\nPass\nCatastrophe Silenttitan B\n\n18) SilentTitan: Discover G3 Silenttitan Y3 Sol\n\n19) OnePageWars: Build R1 Zendo\n\tOnePageWars: sry.\n\tSilentTitan: LOL... No need to apologize.\n\n20) SilentTitan: Move G3 Sol Onepagewars\n\n21) OnePageWars: Build Y1 Onepagewars\n\n22) SilentTitan: Sacrifice R2 Silenttitan\nAttack Y1 Onepagewars North\nAttack Y1 Onepagewars North\n\n23) OnePageWars: Sacrifice R2 Zendo\nAttack Y1S Onepagewars\nAttack Y1S Onepagewars\n\n24) SilentTitan: Trade G3 R3 Onepagewars\n\tOnePageWars: nice.\r\ndidn't know you could do that.\r\nbut it makes sense.\n\n25) OnePageWars: Sacrifice Y1 Onepagewars\nMove R1 Zendo Silenttitan\n\tOnePageWars: I'll take the trade :)\n\tOnePageWars: losing trade tech is harsh. :(\n\n26) SilentTitan: Attack R1 Silenttitan North\n\tSilentTitan: You still have trade tech, I am not understanding your lament.\n\tSilentTitan: I'm going to guess homeworlds.\n\n\tSilentTitan: Thanks. Did you join the ladder yet?\n\tOnePageWars: nah.\n\tOnePageWars: wp. I enjoyed it. This game is so deep.\n\nHomeworlds Online (SDG# 24675)\nVariants: "Hard time"\nStarted: 2013.11.26, Ended: 2013.11.27\nParticipants: Marmalade (S), OnePageWars (N)\nWinner: OnePageWars\n\n1) OnePageWars: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 24781)\nVariants: "Hard time"\nStarted: 2013.11.27, Ended: 2013.12.2\nParticipants: OnePageWars (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\twil: Thanx for the game! I believe I was in a 4 way game with you when I just started learning but havn't played?? I'm still learning...I'm sure you'll teach me some more lessons!\n\twil: Thanx for the game! I believe I was in a 4 way game with you when I just started learning but havn't played?? I'm still learning...I'm sure you'll teach me some more lessons!\n\n2) OnePageWars: Homeworld B2 Y3 G3\n\n3) wil: Build G1 Wil\n\n4) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: gl hf. :)\n\n5) wil: Trade G1 B1 Wil\n\n6) OnePageWars: Trade G3 Y3 Onepagewars\n\n7) wil: Build B1 Wil\n\tOnePageWars: I've got a 4 player game available for joining currently. It has the sinister variant, so we'll see how that goes with the adjacent homeworld problem and stuff. :)\n\twil: yes, I learned I so disliked the adjacent...I've only got involved with threes since. and have run into a couple of binaries that were short uni's and that drove me crazy...but if you don't fill it...maybe I'll play if you don't get anyone soon....sinister means you only attack left??\n\n8) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: yeah. The more I think about it the more I'm tempted to cancel the game and create one that's identical except for 3 players. Acutally, I'm going to go do that now if no-one has joined.\n\tOnePageWars: My intent was to set it up for three players with one of them being you if you wanted and the other being random? Is that what was created or was a 1v1 challenge inadvertently created?\n\n9) wil: Build G1 Wil\n\n10) OnePageWars: Build G2 Onepagewars\n\n11) wil: Trade G1 Y1 Wil\n\n12) OnePageWars: Trade G1 R1 Onepagewars\n\n13) wil: Discover B1 Wil G3 G3\n\n14) OnePageWars: Discover Y3 Onepagewars G1 Starcraft2\n\n15) wil: Build B2 Wil\n\n16) OnePageWars: Build R1 Onepagewars\n\twil: Ok now...movin your big gun outta your homeworld?? like your goalie comin out of the goal....scary part!\n\n17) wil: Build Y1 Wil\n\tOnePageWars: It's only a gun if there's a red with it. :) I'm a peaceful civilization before I start attacking. :)\n\tOnePageWars: PS - I know that you know the rules of the game, my previous comment was not meant in any way to imply ignorance on your part (which would be an incorrect implication, btw) but rather as a lighthearted joke.\n\tOnePageWars: I hope I didn't give the wrong impression. Sorry if I did.\n\twil: no worries...\n\n18) OnePageWars: Move R1 Onepagewars Starcraft2\n\twil: my concern was not for me...but for your open goal.\n\twil: I also accepted that challenge game...\n\n19) wil: Trade B2 R2 Wil\n\n20) OnePageWars: Trade G2 B2 Onepagewars\n\n21) wil: Build B2 G3\n\n22) OnePageWars: Build B3 Onepagewars\n\n23) wil: Sacrifice Y1 Wil\nDiscover B1 G3 Y1 Y1\n\n24) OnePageWars: Move B2 Onepagewars Y1\n\n25) wil: Sacrifice G3 Wil\nBuild B3 G3\nBuild B3 Y1\nBuild Y1 Wil\n\tOnePageWars: your naming conventions are messing with me, lol.\n\twil: I am in a three way game where everyone decided to take on my nomenclature....it is drving me CRAZY\n\n26) OnePageWars: Build R1 Onepagewars\n\tOnePageWars: hey, you took trade tech. :( well, at least I still have trade tech ships.\n\n27) wil: Trade B3 R3 Y1\n\n28) OnePageWars: Build R2 Starcraft2\n\tOnePageWars: ok, I'm getting scared now.\n\n29) wil: Trade B3 G3 G3\n\tOnePageWars: and yes, I am aware of the possibility of a r3 sac attack on my homeworld.\n\n30) OnePageWars: Move R2 Starcraft2 G3\n\n31) wil: S R2 Wil\nAttack R2 G3\nAttack B2 Y1\n\n32) OnePageWars: Build Y2 Starcraft2\n\tOnePageWars: I'm thinking I should resign this position. I don't see much in the way of not losing, lol.\n\twil: You've got a point...I intend on growing big blues and swapping them out for big guns of all colors until I control the Universe bwwahhhaaahhaaa.....but that being said...I've stayed involved under dire straights before, because powere does go to ones head....and the lesser can often tempt the greater and take advantage of their size. One or two catastrophes and their is a completely new game... your choice though\n\tOnePageWars: I think I'll keep going, then, if only to learn how you close out the game so that I can improve. :)\n\n33) wil: Sacrifice G3 G3\nBuild B3 Wil\nBuild B3 G3\nBuild Y2 Wil\n\twil: that is what I did....lost dozens of games....and way too many of them the same way....but after a while you begin to see it coming and learn how to defend against it. look up bluebird and doomsday they are often used.\n\n34) OnePageWars: Sacrifice Y3 Starcraft2\nMove B3 Onepagewars Starcraft2\nMove B3 Starcraft2 G3\nMove B3 G3 Wil\nCatastrophe Wil B\n\tOnePageWars: I've read the strategy article at icehousegames.org (not com); I think I just need experience right now, lol.\n\n35) wil: Sacrifice Y2 Wil\nMove B3 G3 Y1\nMove B3 Y1 Onepagewars\n\n36) OnePageWars: Build R2 Starcraft2\n\twil: this is the risk of leaving your homeworld without a big gun... Once you did it, I began setting up for this opportunity.... I laid a trap that I hoped you could not resist in blowing up my homeworld...that system was toxic...we were leaving it anyway...since you left, we like what you've done with the place....we think we'll take it.\n\tOnePageWars: interesting; I think you had me beat just in the economy.\n\n37) wil: Sacrifice R3 Y1\nAttack R1 Onepagewars\nAttack G1 Onepagewars\nAttack R1 Onepagewars\n\twil: to me the game is a series of tipping points, I can't always identify them...which move caused it to tip in who's favor....to me the tip was you moving your gun out, it changed my focus...there were a number of moves better than that one at that juncture...if you had a specific intent, it didn't play out. ....observation not condemnation...i am learning as well.\n\tOnePageWars: No offense taken. I appreciate the constructive criticism. We're both learning. :)\n\n\nHomeworlds Online (SDG# 24788)\nVariants: "Hard time"\nStarted: 2013.11.27, Ended: 2013.12.31\nParticipants: wil (S), MagicJohn (N)\nWinner: wil\n\n1) MagicJohn: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 B2 G3\n\tMagicJohn: Outpost established in new star system. We extend greetings to all life forms in the quadrant.\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) wil: Build G1 Wil\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\twil: thankful to be in and aware of the universe this fine day\n\n6) wil: Trade G1 Y1 Wil\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) wil: Build G1 Wil\n\n9) MagicJohn: Trade G1 B1 Magicjohn\n\n10) wil: Trade G1 B1 Wil\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) wil: Build G1 Wil\n\n13) MagicJohn: Discover Y1 Magicjohn G3 Abra\n\n14) wil: Trade G1 R1 Wil\n\n15) MagicJohn: Build G1 Magicjohn\n\n16) wil: Build R1 Wil\n\n17) MagicJohn: Trade G3 R3 Magicjohn\n\n18) wil: Discover R1 Wil G1 G1\n\n19) MagicJohn: Build R2 Magicjohn\n\n20) wil: Build G2 Wil\n\n21) MagicJohn: Build G2 Magicjohn\n\n22) wil: Discover G2 Wil B1 B1\n\n23) MagicJohn: Trade R2 Y2 Magicjohn\n\n24) wil: Build G2 Wil\n\n25) MagicJohn: Move G2 Magicjohn Abra\n\n26) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 B1\nBuild B2 Wil\n\n27) MagicJohn: Build B3 Magicjohn\n\n28) wil: Move B2 Wil G1\n\n29) MagicJohn: Move B1 Magicjohn Abra\n\n30) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 G1\nBuild R2 G1\n\n31) MagicJohn: Build B3 Abra\n\n32) wil: Build B3 G1\n\n33) MagicJohn: Discover G2 Abra Y1 Kadabra\n\n34) wil: Sacrifice B2 G1\nTrade R2 Y2 G1\nTrade G2 Y2 B1\n\n\twil: now while I think I was doing ok...I hate winning that way.\n\tMagicJohn: Sorry, my bad. My wife has been ill and our pat dog just developed some issues.. I shouldn't have left my move until the last minute. You were indeed winning so I took too long to analyze the board. Congrats, MJ\n\tMagicJohn: .... make that "pet" dog.....\n\twil: When things are better, I'd love to play again, feel free to challenge me. I am raising a glass to a new and improved year for you and yours!!\n\tMagicJohn: Thanks! (Better make that two glasses....) Hope the new year finds you well and is happy and productive! \n\nHomeworlds Online (SDG# 24807)\nStarted: 2013.11.28, Ended: 2013.11.29\nParticipants: Ultan_the_Blind (S), Bangle_Tiger (N)\nWinner: Ultan_the_Blind\n\n1) Bangle_Tiger: Homeworld R3 B2 G3\n\n2) Ultan_the_Blind: Homeworld Y2 B1 G3\n\n3) Bangle_Tiger: Build G1 Bangle_tiger\n\n4) Ultan_the_Blind: Build G1 Ultan_the_blind\n\n5) Bangle_Tiger: Trade G1 Y1 Bangle_tiger\n\n6) Ultan_the_Blind: Discover G1 Ultan_the_blind Y3 Tatooine\n\n7) Bangle_Tiger: Build G1 Bangle_tiger\n\n8) Ultan_the_Blind: Build G1 Tatooine\n\n9) Bangle_Tiger: Discover G1 Bangle_tiger R1 Dantooine\n\n10) Ultan_the_Blind: Discover G1 Tatooine B2 Hoth\n\n11) Bangle_Tiger: Build Y1 Bangle_tiger\n\n12) Ultan_the_Blind: Build G2 Hoth\n\n13) Bangle_Tiger: Build G2 Bangle_tiger\n\n14) Ultan_the_Blind: Trade G1 Y1 Hoth\n\n15) Bangle_Tiger: Move G2 Bangle_tiger Dantooine\n\n16) Ultan_the_Blind: Build Y2 Hoth\n\n17) Bangle_Tiger: Move Y1 Bangle_tiger Dantooine\n\n18) Ultan_the_Blind: Trade Y2 R2 Hoth\n\n19) Bangle_Tiger: Build Y2 Bangle_tiger\n\n20) Ultan_the_Blind: Build G1 Hoth\n\n21) Bangle_Tiger: Move G2 Dantooine Tatooine\n\n22) Ultan_the_Blind: Discover G1 Hoth B1 Fest\n\n23) Bangle_Tiger: Move Y2 Bangle_tiger Dantooine\n\n24) Ultan_the_Blind: Move G1 Tatooine Ultan_the_blind\n\n25) Bangle_Tiger: Move Y2 Dantooine Tatooine\n\n26) Ultan_the_Blind: Sacrifice G3 Ultan_the_blind\nBuild G2 Hoth\nBuild G3 Ultan_the_blind\nBuild G3 Fest\n\n27) Bangle_Tiger: Move G1 Dantooine Tatooine\n\n28) Ultan_the_Blind: Trade G1 R1 Ultan_the_blind\n\n29) Bangle_Tiger: Sacrifice Y2 Tatooine\nMove G1 Tatooine Fest\nMove G2 Tatooine Fest\nCatastrophe Fest Green\n\n30) Ultan_the_Blind: Build Y2 Hoth\n\n31) Bangle_Tiger: Sacrifice G3 Bangle_tiger\nBuild Y2 Dantooine\nBuild Y3 Bangle_tiger\nBuild Y3 Bangle_tiger\n\n32) Ultan_the_Blind: Sacrifice Y2 Hoth\nDiscover Y1 Hoth B1 Festus\nMove Y1 Festus Bangle_tiger\nCatastrophe Bangle_tiger Y\n\n\nHomeworlds Online (SDG# 24800)\nVariants: "No undo, Sinister"\nStarted: 2013.11.29, Ended: 2013.12.27\nParticipants: Bangle_Tiger (S), OnePageWars (N), wil (E)\nWinner: wil\n\n1) OnePageWars: Homeworld R2 B1 G3\n\n2) wil: Homeworld Y3 G2 B3\n\tOnePageWars: who is left of who?\n\n3) Bangle_Tiger: Homeworld Y1 B2 G3\n\tBangle_Tiger: I'm guessing its clockwise?\n\n4) OnePageWars: Build G1 Onepagewars\n\twil: so wil attacks only bangle, bangle only one, and one only wil?\n\tOnePageWars: makes sense to me.\n\tOnePageWars: If I elim bangle, does that make wil win, or does his target change to me?\n\n5) wil: Build B1 Wil\n\twil: since it is always attack left....I am would now attack the new the one who's left.\n\twil: double entendre pun intendred\n\n6) Bangle_Tiger: Build G1 Bangle_tiger\n\n7) OnePageWars: Trade G1 B1 Onepagewars\n\tBangle_Tiger: Btw this is my second time playing homeworlds so tips are welcome :)\n\twil: tip 1....play more...lose a lot...you learn by getting wupped in various ways... look up bluebird, catastrophe, doomsday machine, teleport...\n\n8) wil: Discover B1 Wil G1 G1\n\n9) Bangle_Tiger: Build G1 Bangle_tiger\n\n10) OnePageWars: Build B1 Onepagewars\n\n11) wil: Build B2 G1\n\n12) Bangle_Tiger: Trade G1 R1 Bangle_tiger\n\n13) OnePageWars: Trade B1 Y1 Onepagewars\n\n14) wil: Build B1 G1\n\twil: I just noticed you two created short universes...\n\n15) Bangle_Tiger: Build G1 Bangle_tiger\n\tOnePageWars: yep. :) very interesting topography.\n\n16) OnePageWars: Build Y1 Onepagewars\n\tBangle_Tiger: 3 player seems to have significantly more complexity.\n\n17) wil: Trade B1 Y1 G1\n\n18) wil: Build Y2 G1\n\twil: this is how these typically end....\n\n19) OnePageWars: Trade Y1 R1 Onepagewars\n\n20) wil: Trade B2 R2 G1\n\twil: we may as well finish the game without him and with a large bank!\n\n21) OnePageWars: Build R1 Onepagewars\n\n22) wil: Sacrifice Y2 G1\nDiscover R2 G1 Y3 Y3\nMove R2 Y3 Onepagewars\nCatastrophe Onepagewars R\n\n\twil: did I fall into some kinda trap?\n\twil: Everything OK? I see you dropped out of the other game?\n\tOnePageWars: oh, yeah. Kind-of got a little sick, but I'm fine now.\n\tOnePageWars: good game, wp.\n\tOnePageWars: good game, wp.\n\tOnePageWars: oops, sry.\n\nHomeworlds Online (SDG# 24820)\nStarted: 2013.11.29, Ended: 2013.12.7\nParticipants: Ultan_the_Blind (S), Bangle_Tiger (N)\nWinner: Ultan_the_Blind\n\n1) Bangle_Tiger: Homeworld B2 Y1 G3\n\n2) Ultan_the_Blind: Homeworld Y3 G1 B3\n\n3) Bangle_Tiger: Build G1 Bangle_tiger\n\n4) Ultan_the_Blind: Build B1 Ultan_the_blind\n\n5) Bangle_Tiger: Build G1 Bangle_tiger\n\n6) Ultan_the_Blind: Trade B3 G3 Ultan_the_blind\n\n7) Bangle_Tiger: Discover G1 Bangle_tiger B3 Coruscant\n\tUltan_the_Blind: Gah, only move #2 and you are already forcing my hand...\n\n8) Ultan_the_Blind: Build G2 Ultan_the_blind\n\n9) Bangle_Tiger: Build G2 Coruscant\n\n10) Ultan_the_Blind: Discover G2 Ultan_the_blind Y2 Sullust\n\n11) Bangle_Tiger: Trade G2 R2 Coruscant\n\n12) Ultan_the_Blind: Discover G2 Sullust R1 Kessel\n\n13) Bangle_Tiger: Build G2 Coruscant\n\n14) Ultan_the_Blind: Build B1 Ultan_the_blind\n\tBangle_Tiger: Wouldn't have it any other way.\n\n15) Bangle_Tiger: Sacrifice G3 Bangle_tiger\nBuild G2 Bangle_tiger\nBuild G3 Bangle_tiger\nBuild G3 Coruscant\n\n16) Ultan_the_Blind: Trade B1 Y1 Ultan_the_blind\n\n17) Bangle_Tiger: Trade G2 Y2 Coruscant\n\n18) Ultan_the_Blind: Sacrifice Y1 Ultan_the_blind\nDiscover G2 Kessel Y3 Alderaan\n\n19) Bangle_Tiger: Trade G2 R2 Bangle_tiger\n\n20) Ultan_the_Blind: Trade G3 B3 Ultan_the_blind\n\n21) Bangle_Tiger: Discover G3 Coruscant R2 Sullest\n\n22) Ultan_the_Blind: Trade B1 R1 Ultan_the_blind\n\n23) Bangle_Tiger: Build Y1 Coruscant\n\n24) Ultan_the_Blind: Build B1 Ultan_the_blind\n\n25) Bangle_Tiger: Build G2 Sullest\n\n26) Ultan_the_Blind: Build G2 Alderaan\n\n27) Bangle_Tiger: Sacrifice G3 Sullest\nBuild G3 Sullest\nBuild G3 Coruscant\nBuild R1 Coruscant\n\n28) Ultan_the_Blind: Move G2 Alderaan Bangle_tiger\n\n29) Bangle_Tiger: Discover G1 Bangle_tiger Y3 Hoth\n\tUltan_the_Blind: Welp, this is not looking good!\n\n30) Ultan_the_Blind: Sacrifice G2 Bangle_tiger\nBuild G2 Alderaan\nBuild B1 Ultan_the_blind\n\n31) Bangle_Tiger: Sacrifice G3 Coruscant\nBuild G3 Coruscant\nBuild R1 Bangle_tiger\nBuild R3 Bangle_tiger\n\tBangle_Tiger: Nice try! Now get outta here before I eat you.\n\tBangle_Tiger: And yes, I chose Hoth because I'm freezing you out.\n\tUltan_the_Blind: but but but... Hoth is blue and white because of ICE and SNOW!\n\n32) Ultan_the_Blind: Sacrifice B1 Ultan_the_blind\nTrade G2 Y2 Alderaan\n\n33) Bangle_Tiger: Sacrifice Y2 Coruscant\nMove G3 Sullest Ultan_the_blind\nMove G2 Sullest Ultan_the_blind\n\tBangle_Tiger: Well there's no white color piece in this game--Yellow is the closest in tone. What happens when you combine yellow and blue? You get green!!\n\tUltan_the_Blind: Such greed. Much anger. So win.\n\n34) Ultan_the_Blind: Attack G3N Ultan_the_blind\n\n35) Bangle_Tiger: Build G2 Ultan_the_blind\nCatastrophe Ultan_the_blind G\n\tBangle_Tiger: Like this?\n\n36) Ultan_the_Blind: Move R1 Ultan_the_blind Bangle_tiger\nCatastrophe Bangle_tiger R\n\n37) Bangle_Tiger: Move R2 Coruscant Bangle_tiger\n\tUltan_the_Blind: I will not go down without a fight!\n\n38) Ultan_the_Blind: Trade B3 G3 Ultan_the_blind\n\tBangle_Tiger: Well played. I forgot that blowing up half a homeworld changed the hyperspace lanes lol\n\n39) Bangle_Tiger: Move R2 Bangle_tiger Ultan_the_blind\n\n40) Ultan_the_Blind: Sacrifice B1 Ultan_the_blind\nTrade Y2 R2 Alderaan\n\n41) Bangle_Tiger: Move G3 Coruscant Bangle_tiger\n\tBangle_Tiger: Lets try a new approach\n\n42) Ultan_the_Blind: Build R1 Alderaan\n\n43) Bangle_Tiger: Trade G3 R3 Bangle_tiger\n\n44) Ultan_the_Blind: Sacrifice R1 Alderaan\nAttack R2N Ultan_the_blind\n\n45) Bangle_Tiger: Build G1 Hoth\n\n46) Ultan_the_Blind: Discover R2 Alderaan Y2 Geonosis\n\tBangle_Tiger: Ah, didn't know that's how that worked.\n\tBangle_Tiger: Well there goes my advantage.\n\n47) Bangle_Tiger: Move R3 Bangle_tiger Alderaan\n\tUltan_the_Blind: Heh, I kinda guessed that might have been the case. You actually could have won by now if you had. However, if you read careful you WOULD notice that was legal from the wording of the rules and my explanation...\n\tUltan_the_Blind: Don't count yourself out just yet. You still have quite a strong position.\n\n48) Ultan_the_Blind: Discover G2 Alderaan Y2 Tatooine\n\n49) Bangle_Tiger: Build G2 Coruscant\n\tBangle_Tiger: Yeah, I just wasn't paying attention.\n\n50) Ultan_the_Blind: Build G2 Ultan_the_blind\n\n51) Bangle_Tiger: Build G3 Bangle_tiger\n\n52) Ultan_the_Blind: Discover G2 Tatooine B3 Fondor\n\n53) Bangle_Tiger: Sacrifice G3 Bangle_tiger\nBuild G3 Bangle_tiger\nBuild Y1 Coruscant\nBuild Y2 Coruscant\n\n54) Ultan_the_Blind: Move R2 Geonosis Hoth\n\n55) Bangle_Tiger: Discover R3 Alderaan Y2 Lando\n\n56) Ultan_the_Blind: Attack G1N Hoth\n\n57) Bangle_Tiger: Sacrifice Y2 Coruscant\nMove Y1 Coruscant Lando\nMove Y1 Coruscant Lando\n\n58) Ultan_the_Blind: Move G3 Ultan_the_blind Bangle_tiger\n\n59) Bangle_Tiger: Trade G3 R3 Bangle_tiger\n\n60) Ultan_the_Blind: Sacrifice R2 Hoth\nAttack R3N Bangle_tiger\nAttack G3N Bangle_tiger\n\tUltan_the_Blind: I have stayed the wrath of my mighty fleet long enough. No more. Good luck, mine honorable foe..\r\n\n\n\tUltan_the_Blind: Brave but foolish...\n\tUltan_the_Blind: Well Played though. You are learning.\n\tBangle_Tiger: ARGH WTF RED. Never see that.\n\nHomeworlds Online (SDG# 24799)\nVariants: "Hard time"\nStarted: 2013.12.2, Ended: 2013.12.4\nParticipants: wil (S), OnePageWars (N)\nWinner: wil\n\n1) OnePageWars: Homeworld R2 B1 G3\n\tOnePageWars: hi again. :)\n\n2) wil: Homeworld B3 Y1 G3\n\twil: we's starting fresh....you play a lot of games....I only play this one(here...I play a lot in 3d)...which are your favorites that I shoiuld expand my horizons on? \n\n3) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: most of the games I have going on I'm just trying out. Mirador is quick but enjoyable, but I prefer binary homeworlds.\n\n4) wil: Build G1 Wil\n\twil: I play a variety of card games and board games, i really think homeworlds is an incredible game of intergalactic chess....it seems to contain all the complexity of chess with some interesting twist as pieces never leave the realm of the game...\n\n5) OnePageWars: Trade G1 Y1 Onepagewars\n\tOnePageWars: Yeah, it's undoubtedly similar to chess, but I am fain to question if it has anywhere near the strategic depth. I could just be selling it short, though.\r\n\r\nHave you ever played shogi?\n\n6) wil: Discover G1 Wil B2 B2\n\tOnePageWars: are there any other viable opening moves besides building a pawn on turn 1 and trading it for a different color turn 2? I guess you could trade the 3 point on turn 2, but other than that?\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) wil: Build G1 Wil\n\n9) OnePageWars: Discover G1 Onepagewars B3 Miranda\n\n10) wil: Build G2 B2\n\n11) OnePageWars: Build G2 Miranda\n\n12) wil: Sacrifice G3 Wil\nBuild G2 B2\nBuild G3 Wil\nBuild G3 Wil\n\n13) OnePageWars: Trade G2 Y2 Miranda\n\n14) wil: Trade G1 R1 Wil\n\tOnePageWars: risky factory play. :)\n\n15) OnePageWars: Build Y1 Miranda\n\twil: I'll say....open for two catastrophies.... \n\n16) wil: Trade G2 Y2 B2\n\n17) OnePageWars: Trade Y1 R1 Miranda\n\n18) wil: Trade G2 R2 B2\n\tOnePageWars: tense game.\n\n19) OnePageWars: Build R1 Miranda\n\n20) wil: Build R2 Wil\n\n21) OnePageWars: Trade R1 B1 Miranda\n\twil: missed the conversation...I have not played shop...The openings are always slow...build trade build trade, like a farmer or a small manufacturer trying to get ahead...\n\n22) wil: Discover G3 Wil Y2 Y2\n\n23) OnePageWars: Build G1 Onepagewars\n\n24) wil: Move G3 Y2 Miranda\n\n25) OnePageWars: Build G2 Miranda\n\n26) wil: Trade G3 R3 Miranda\n\n27) OnePageWars: Sacrifice G3 Onepagewars\nBuild G2 Onepagewars\nBuild G2 Onepagewars\nBuild G3 Miranda\n\twil: it was the right try....\n\n28) wil: Sacrifice Y2 B2\nMove R3 Miranda Onepagewars\nMove R2 Wil B2\n\twil: should've recreated the g3 in your own system...I am there first so I take it...you'll have to grown the other one...three wasted moves and all your greens go back into the bank and I begin owning the system anyway...of course I will lose my G3 but you will have no big gun....oops it is worse...my move is to abandon Miranda...let you have her...and just move my R3 into your homeworld and take over...I'll give you time to change if you wish....\n\tOnePageWars: no, go ahead. :) I appreciate the offer, but I don't think that taking back my move would do anything to improve my play.\n\n29) OnePageWars: Build Y1 Miranda\n\n30) wil: Sacrifice R2 B2\nAttack Y1 Onepagewars\nAttack G2 Onepagewars\n\n31) OnePageWars: Sacrifice G3 Miranda\nBuild G3 Miranda\nBuild Y2 Miranda\nBuild R1 Miranda\n\twil: You'v got the right angle...I think I am just one step ahead of you...\n\n32) wil: Sacrifice R2 B2\nAttack G1 Onepagewars\nAttack G2 Onepagewars\n\twil: carmen she is a growing colony, but her homeworld has been taken over...\n\tOnePageWars: wp. You're good at this game. :)\n\twil: I am learning... I've been beat by the best...(well not the best yet...twoshort holds that title online and I've yet to play him) But Broccoli Commander, TS52, SilentTitan, Zoltar, all regularly beat me and I am learning from them all by the way they move in for the kill...I usually see it too late, and am only now (after dozens of games) seeing what that tipping point is a the middle of the game that starts to shift the power...usually they have won the game essentially long before I see it...it is that one move that takes advantage in the first 8 moves...and then whether they add up, or multiply after that...\n\tOnePageWars: I guess strength is relative. :)\n\twil: Yes, most definitely...defense of your homeworld is imperative. Did you see/read 'enders game'? when the homeworld is destroyed, the queen is dead and all is lost... A key for my learning (beyond the various attacks and tactics) is begin with the end in mind...always be looking as to how to take the homeworld...either take out the stars or take it over..\n\tOnePageWars: I've heard of ender's game. Sounds interesting. Billboard art reminds me of Pacific Rim, but I have no idea if it's even remotely similar. Is it? without spoilers, if you please. :)\n\twil: It is aliens vs earthlings...I had only been recommended in the past. I don't know of Pacific Rim...\n\tOnePageWars: Pacific Rim is aliens vs earthlings. Well, regardless, I'll probably have to check out Ender's game eventually unless I am presented with really good reasons as to why it would be a waste of 1.5 hours of my life, lol.\n\n\nHomeworlds Online (SDG# 24836)\nVariants: "Hard time"\nStarted: 2013.12.3, Ended: 2013.12.4\nParticipants: OnePageWars (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) OnePageWars: Homeworld B1 R2 G3\n\twil: he is ready to go agin...nice...I like playin...I try to stay in 4-5 games at a time...and some 3d world games along the way as well.\n\n3) wil: Build G1 Wil\n\tOnePageWars: First microverse game. :)\n\twil: oh my....i just got into another of these not to long ago...\n\n4) OnePageWars: Build G1 Onepagewars\n\n5) wil: Trade G1 Y1 Wil\n\n6) OnePageWars: Trade G1 Y1 Onepagewars\n\n7) wil: Build G1 Wil\n\n8) OnePageWars: Build G1 Onepagewars\n\n9) wil: Trade G1 R1 Wil\n\tOnePageWars: I feel like this must be the equivalent of the giuco piano in chess.\n\twil: it is an interesting dance of chicken...\n\n10) OnePageWars: Trade G1 B1 Onepagewars\n\n11) wil: Build G1 Wil\n\tOnePageWars: and thus do the builds diverge. :)\n\n12) OnePageWars: Build G1 Onepagewars\n\n13) wil: Build R1 Wil\n\n14) OnePageWars: Build B1 Onepagewars\n\n15) wil: Discover R1 Wil G3 G3\n\n16) OnePageWars: Discover B1 Onepagewars R3 Ilikesdg\n\n17) wil: Build R2 Wil\n\n18) OnePageWars: Build B2 Onepagewars\n\n19) wil: Move R2 Wil Ilikesdg\n\n20) OnePageWars: Build Y1 Onepagewars\n\tOnePageWars: I think you're edging me out here. Won't be long before my empire falls to pieces.\n\n21) wil: Attack B1 Ilikesdg\n\n22) OnePageWars: Trade B2 R2 Onepagewars\n\twil: I could have just swapped and built one, could've moved out and formed my own starsystem, so I don't gain anything by taking yours...but you lose one...which makes the effort of bullying worthwhile...it is a game of increments....capturing space...\n\n23) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 G3\nBuild Y2 Wil\n\n24) OnePageWars: Build Y2 Onepagewars\n\n25) wil: Sacrifice Y2 Wil\nMove R1 G3 Onepagewars\nMove R2 Ilikesdg Onepagewars\nCatastrophe Onepagewars R\n\n26) OnePageWars: Trade Y2 R2 Onepagewars\n\twil: typically there is no reason to wipe out half a starsystem and less you can see clear to wiping out the other half and winning...however in this case I am also voiding you of red, making you start over in that economy...that made my decision.\n\n27) wil: Trade R3 G3 Wil\n\n28) OnePageWars: Build Y2 Onepagewars\n\n29) wil: Build Y2 Wil\n\n30) OnePageWars: Build R1 Onepagewars\n\n31) wil: Move Y2 Wil Ilikesdg\n\n32) OnePageWars: Discover Y1 Onepagewars G2 Ireallylikesdg\n\twil: 2 moves to mate.\n\n33) wil: Sacrifice G3 Wil\nBuild Y2 Ilikesdg\nBuild Y3 Wil\nBuild B2 Ilikesdg\n\tOnePageWars: I believe you. :)\n\n34) OnePageWars: Build Y3 Ireallylikesdg\n\twil: I was wrong...did you see it coming? you can still avoid it....but me in your position would be blinded by greed typically and not see that that my doom was around the corner.\n\n35) wil: Sacrifice Y2 Ilikesdg\nMove B1 Ilikesdg Onepagewars\nMove B2 Ilikesdg Onepagewars\nCatastrophe Onepagewars B\n\twil: greed won out...the same blind spot I often have...this you need to conquer\n\twil: the pisser is you are going to be beating me soon!\n\twil: I did present a dodge...the appearance that I was trying to take all those yellows before you could get to them...but all I really wanted was that one little blue...if I would have done that by itself it would have been more obvious my motive.\n\tOnePageWars: nah. Maybe eventually. But then again, maybe not. And I would have to get pretty lucky to beat you in a 'soon' time scedule.\n\twil: You'll be surprised... I get a win in every now and again amongst those better...\n\tOnePageWars: Yeah, I might get lucky.\n\n\nHomeworlds Online (SDG# 24792)\nVariants: "Hard time"\nStarted: 2013.12.4, Ended: 2013.12.15\nParticipants: wil (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) wil: Homeworld B3 Y2 G3\n\tSilentTitan: Welcome back.\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: Build G1 Wil\n\n5) SilentTitan: Trade G1 R1 Silenttitan\n\twil: time to keep practicin\n\n6) wil: Trade G1 R1 Wil\n\n7) SilentTitan: Build R2 Silenttitan\n\n8) wil: Build R2 Wil\n\n9) SilentTitan: Trade R1 Y1 Silenttitan\n\n10) wil: Discover R2 Wil G1 G1\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) wil: Build G1 Wil\n\n13) SilentTitan: Build Y1 Silenttitan\n\n14) wil: B G2 Wil\n\n15) SilentTitan: Discover G1 Silenttitan R3 Sol\n\n16) wil: Trade G2 Y2 Wil\n\n17) SilentTitan: Move Y1 Silenttitan Sol\n\n18) wil: Build G2 Wil\n\n19) SilentTitan: Build G2 Silenttitan\n\n20) wil: Trade G1 B1 Wil\n\n21) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n22) wil: Move Y2 Wil G1\n\n23) SilentTitan: Build Y3 Silenttitan\n\n24) wil: Build Y3 G1\n\n25) SilentTitan: Sacrifice Y2 Sol\nMove Y1 Sol G1\nMove Y1 Sol G1\nCatastrophe G1 Yellow\n\n26) wil: Trade G2 Y2 Wil\n\twil: that was a learning curve...will he do it...after the fact I thought sure..over course, to have two queens to my one, why not lose three to take out two...\n\n27) SilentTitan: Move Y3 Silenttitan Sol\n\tSilentTitan: Well sort of..... The measure for me is the total pip count not the ship count. I lost 4 pips to take out 5 pips from you. Additionally I cleared you of yellow. Which is always an advantage. Now the turn you built the y3 you had a chance to take my 4 pips in yellow for only 2 pips. I'd have taken that over building the y3.\n\n28) wil: Move Y2 Wil G1\n\twil: thanx\n\twil: thanx\n\n29) SilentTitan: Trade Y1 B1 Silenttitan\n\n30) wil: Build Y1 G1\n\n31) SilentTitan: Move B1 Silenttitan Sol\n\n32) wil: Move B1 Wil G1\n\n33) SilentTitan: Build Y1 Sol\n\n34) wil: Discover Y1 G1 G3 G3\n\n35) SilentTitan: Move Y3 Sol G1\n\n36) wil: Build Y1 G1\n\n37) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 G1 South\nAttack B1 G1 South\n\n38) wil: Build Y2 G1\nCatastrophe G1 Y\n\n39) SilentTitan: Build B1 G1\n\n40) wil: Build G1 Wil\n\twil: that was a nice recovery... my only chance is for you to make some errors...that ain't gonna happen if you keep playing like that! Was that a Y formation? if i do x you do y and if i do y you do x?\n\tSilentTitan: Not really. More like I had an opportunity to mess with you so I took it. Then you decided to make it about the battleship. So rather than run away I took what I could. I thought you might take the r2 back with a sac on your r1. If you had done that I would have traded the y3 for a g3.\n\n41) SilentTitan: Sacrifice G2 Silenttitan\nBuild B2 Sol\nBuild B2 G1\n\n42) wil: Discover G1 Wil R1 R1\n\n43) SilentTitan: Build B3 Sol\n\n44) wil: Build R2 Wil\n\n45) SilentTitan: Trade B3 G3 Sol\n\n46) wil: Build G2 Wil\n\twil: yes it is over for me..\n\n47) SilentTitan: Build B3 Sol\n\n48) wil: Trade G2 Y2 Wil\n\n49) SilentTitan: Trade B2 Y2 G1\n\n50) wil: Build Y1 G3\n\n51) SilentTitan: Move R2 G1 G3\n\n52) wil: Sacrifice Y1 G3\nMove Y1 G3 Silenttitan\n\n53) SilentTitan: Attack Y1 Silenttitan South\n\n54) wil: Build G2 Wil\n\n55) SilentTitan: Trade B3 Y3 Sol\n\n56) wil: Trade R2 B2 Wil\n\n57) SilentTitan: Sacrifice Y3 Sol\nMove Y2 G1 Wil\nMove Y1 Sol G1\nMove Y1 G1 Wil\nCatastrophe Wil Yellow\n\n58) wil: Trade B2 Y2 Wil\n\n59) SilentTitan: Trade G3 Y3 Sol\n\n60) wil: Build R2 Wil\n\n61) SilentTitan: Sacrifice Y3 Sol\nMove B1 Sol G1\nMove B1 G1 Wil\nMove B1 G1 Wil\n\n62) wil: Sacrifice R2 Wil\nAttack B1 Wil\nAttack B1 Wil\n\n63) SilentTitan: Sacrifice Y1 Silenttitan\nMove B1 G1 Wil\nCatastrophe Wil Blue\n\n\twil: You'll have to all but abandon your civilization to take out mine....now you don't wanna do that you could build and decimate me and be ready for all intruders...\n\tSilentTitan: Yeah.. I'll take it.\n\twil: See how you are! thanx again for the game!!\n\nHomeworlds Online (SDG# 24853)\nVariants: "Hard time"\nStarted: 2013.12.4, Ended: 2013.12.11\nParticipants: SilentTitan (S), OnePageWars (N)\nWinner: SilentTitan\n\n1) OnePageWars: Homeworld B1 R2 G3 Yes\n\n2) SilentTitan: Homeworld R2 B3 G3\n\tOnePageWars: hi there! gl hf!\n\n3) OnePageWars: Build G1 Onepagewars\n\tSilentTitan: And to you as well.\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) OnePageWars: Trade G1 Y1 Onepagewars\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) SilentTitan: Build G1 Silenttitan\n\n\nHomeworlds Online (SDG# 24845)\nVariants: "Hard time"\nStarted: 2013.12.4, Ended: 2014.1.6\nParticipants: wil (S), OnePageWars (N)\nWinner: wil\n\n1) OnePageWars: Homeworld R2 B1 G3\n\n2) wil: Homeworld Y3 G1 B3\n\n3) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: gl hf!\n\n4) wil: Build B1 Wil\n\n5) OnePageWars: Trade G1 R1 Onepagewars\n\twil: you oughta join the ladder...it takes a few months to work your way up...but then it is more gaming\n\n6) wil: Build B1 Wil\n\tOnePageWars: I might. I've joined a few times and left just as many.\n\twil: I thought I'd never get through the dead wood...it took me six months to get to 13...but got a few games in the ladder along the way...a lot of timing out and pushing folks who should be booted down behind me and gaining one slot at a time...\n\n7) OnePageWars: Build R1 Onepagewars\n\n8) wil: Discover B1 Wil G2 G2\n\n9) OnePageWars: Trade R1 Y1 Onepagewars\n\twil: the rule here is when you get a gun, I should get a gun (red) but currently you haven't got any transportation system...so I've got a minute..as long as I don't forget.\n\n10) wil: Build B2 G2\n\n11) OnePageWars: Build Y1 Onepagewars\n\n12) wil: Trade B2 R2 G2\n\n13) OnePageWars: Build G1 Onepagewars\n\n14) wil: Build B2 G2\n\n15) OnePageWars: Discover Y1 Onepagewars G3 Ilikedogs\n\n16) wil: Trade B2 Y2 G2\n\tOnePageWars: I'm a dog person. :)\n\n17) OnePageWars: Build Y1 Onepagewars\n\tOnePageWars: I think my main problem (besides falling behind in the tech race) was no having any size 2 ships to trade. Well, live and learn.\n\tOnePageWars: Not, not no. Not not not no. Not no, but not. I mean, it should be not. Not that it shouldn't exist. Just that it should exist as not. I give up.\n\n18) wil: Build Y2 G2\n\twil: Yes, it is imperative to attempt to keep up on each economy....get in the ones, as the twos will disappear and then the same problem may occur with threes...\n\n19) OnePageWars: Build Y2 Ilikedogs\n\tOnePageWars: Do the ship sizes tend to increase in importance throughout the game and peak in the late-game? Because so long as you have at least one size three in every system you care about, they only thing the sizes are good for are sacrifices?\n\n20) wil: Discover Y2 G2 B3 B3\n\tOnePageWars: y2s when you have your natural expansion are quite scary.\n\n21) OnePageWars: Discover Y1 Ilikedogs G2 Idislikecats\n\n22) wil: Build B2 G2\n\tOnePageWars: I try to use a distinct nomenclature for each game of Binary Homeworlds I play.\n\n23) OnePageWars: Build Y3 Ilikedogs\n\n24) wil: Build Y3 G2\n\n25) OnePageWars: Trade G3 B3 Onepagewars\n\n26) wil: Move B2 G2 B3\n\n27) OnePageWars: Move B3 Onepagewars Ilikedogs\n\twil: I thought we still had a game goin....i seez we gots another started.\n\n28) wil: Trade B2 G2 B3\n\tOnePageWars: Yes, Binary Homeworlds and Archimedes are my two current fascinations on SDG.\n\n29) OnePageWars: Build B2 Ilikedogs\n\n30) wil: Trade B3 R3 Wil\n\n31) OnePageWars: Move R1 Onepagewars Ilikedogs\n\n32) wil: Move G2 B3 Onepagewars\n\n33) OnePageWars: Move B3 Ilikedogs Onepagewars\n\n34) wil: Build G1 Onepagewars\n\n35) OnePageWars: Attack G2S Onepagewars\n\n36) wil: Build G3 Onepagewars\nCatastrophe Onepagewars G\n\n37) OnePageWars: Trade Y3 R3 Ilikedogs\n\n38) wil: Trade Y3 G3 G2\n\twil: oh I did that backasswards...\n\twil: oh I did that backasswards...\n\n39) OnePageWars: Build Y3 Ilikedogs\n\n40) wil: Sacrifice G3 G2\nBuild Y3 B3\nBuild R1 G2\nBuild B2 Wil\n\tOnePageWars: This has been a quite, arguably, epic game.\n\n41) OnePageWars: Move R3 Ilikedogs G2\n\n42) wil: Build R1 G2\nCatastrophe G2 R\n\n43) OnePageWars: Build R1 Ilikedogs\n\n44) wil: Build R1 Wil\n\n45) OnePageWars: Trade Y1 G1 Onepagewars\n\n46) wil: Trade Y2 G2 B3\n\n47) OnePageWars: Move R1 Ilikedogs Idislikecats\n\n48) wil: Move R1 Wil G2\n\n49) OnePageWars: Build R2 Idislikecats\n\n50) wil: Trade Y3 G3 B3\n\n51) OnePageWars: Build Y1 Onepagewars\n\n52) wil: Trade R3 G3 Wil\n\n53) OnePageWars: Build G1 Onepagewars\n\n54) wil: Trade B2 R2 Wil\n\n55) OnePageWars: Build R3 Ilikedogs\n\tOnePageWars: How do we know who's winning in this sort of situation?\n\twil: This game can change control in a few moves, one missed opportunity and the other taking advantage is huge. Some folks just count pieces, others will count pips and give an extra pip count for ever step away from your homeworld. But neither of these are real...how close are you to taking out a homeworld, how many positions do you have safe from catastrophe or attack...\n\n56) wil: Sacrifice G3 B3\nBuild G3 B3\nBuild R3 Wil\nBuild R3 G2\n\tOnePageWars: I came to the conclusion that you were ahead because your 2 g3s strike me as more useful than my y3 and b3. The y3 could come in handy, but the b3 seems like a waste of a large.\n\n57) OnePageWars: Sacrifice Y2 Ilikedogs\nMove R1 Idislikecats Wil\nMove R2 Idislikecats Wil\nCatastrophe Wil R\n\twil: you'd be amazed at what color changes can do...but yes you need a g3 for a factory and once you used one on a star I was determined to corner the market..\r\n\n\n58) wil: Sacrifice G3 B3\nBuild G3 B3\nBuild B2 G2\nBuild B2 Wil\n\n59) OnePageWars: Build Y2 Ilikedogs\n\tOnePageWars: was it a necessary sacrifice or just a waste of a y2? I honestly don't know.\n\n60) wil: Sacrifice B2 G2\nTrade R3 Y3 G2\nTrade Y2 R2 G2\n\twil: necessary....no...an option...yes....a bad move...I don't think so...we have to see how it plays out\n\tOnePageWars: I think I lost this from the time I let you get 2 of the g3 pieces and stuck the third in a planet.\n\n61) OnePageWars: Trade B3 R3 Onepagewars\n\n62) wil: Trade B2 R2 Wil\n\twil: I like blues for this reason... and yeah...build a g3 prior to using a G3 as a star...\n\tOnePageWars: well, I did start out with a g3, but I don't remember what happened to it.\n\n63) OnePageWars: Build Y2 Idislikecats\n\n64) wil: Sacrifice G3 B3\nBuild G3 B3\nBuild Y2 G2\nBuild B2 G2\n\n65) OnePageWars: Move G1 Onepagewars Ilikedogs\n\n66) wil: Move R1 G2 B3\n\n67) OnePageWars: Discover Y2 Idislikecats R3 Ilikewolves\n\n68) wil: Sacrifice Y3 G2\nMove R2 G2 B3\nMove R2 B3 Onepagewars\nMove R1 B3 Onepagewars\nCatastrophe Onepagewars R\n\twil: awfully tempting that was....it would be quite the reboot...\n\n\tOnePageWars: oh. I think that's fatal.\n\tOnePageWars: I can't even grab up the y3.\n\tOnePageWars: good game wp.\n\twil: the tempting was two greens in g3, while I'd lose my factory...if I headed that way I'd completely restock the bank with that Ilikedogs system... but I was poised on heading in after blues or reds to take out your homeworld.\r\n\r\nI do like B3s they can be a game changer by sacking them for three color changes...cornering blues to me is a powerful strategy. But having the only factory...for every one you build I build two...is quite an advantage.\n\twil: good game, thanx (I would have backed up my R3 and played to the bitter end...I like seeing how things play out and sometimes can take advantage of errors...have won more than once with a solo homeworld)\n\tOnePageWars: Yeah, I have so much still to learn about this game.\n\twil: You aint th eonly one....I try to stay in 5-8 games so I can be beat in more ways!\n\tOnePageWars: It just seemed comparable to an endgame in chess where you have a king on g1 and they have a king on d5 with only queenside pawns remaining for both players and you're down the exchange with their rook on the 2nd rank.\r\n\r\nMaybe it's not that bad, but that was my impression.\n\nHomeworlds Online (SDG# 24795)\nVariants: "Hard time"\nStarted: 2013.12.12, Ended: 2013.12.13\nParticipants: wil (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld B2 Y1 G3\n\n2) wil: Homeworld B3 G1 Y3\n\n3) Marmalade: Build G1 Marmalade\n\n4) wil: Build Y1 Wil\n\n5) Marmalade: Discover G1 Marmalade Y3 Doom\n\n6) wil: Discover Y1 Wil G2 G2\n\n7) Marmalade: Build G1 Doom\n\n8) wil: Build Y1 G2\n\n9) Marmalade: Build G2 Marmalade\n\n10) wil: Build Y2 Wil\n\n11) Marmalade: Build G2 Doom\n\n12) wil: Trade Y3 G3 Wil\n\n13) Marmalade: Build G3 Marmalade\n\n14) wil: Build Y2 G2\n\n15) Marmalade: Trade G2 Y2 Marmalade\n\n16) wil: Discover Y2 G2 B3 B3\n\n17) Marmalade: Move G3 Marmalade B3\n\n18) wil: Discover Y2 B3 G2 Gtoo\n\n19) Marmalade: Trade G3 R3 B3\n\n20) wil: Discover Y2 Gtoo G3 G3\n\n21) Marmalade: Sacrifice Y2 Marmalade\nMove R3 B3 G2\nMove R3 G2 Wil\n\n22) wil:\nMove G3 Wil G2\n\twil: I gottq go and drive....this is where a heads up display and voice commands woulld be handy....\n\twil: or not\n\twil: shoulda seen that...oh well\n\n23) Marmalade: Attack Y2S Wil\n\twil: We take our best and brightest peacemakers and leave you agressive imperialist to overpopulate and pollute yet another star system....\n\tMarmalade: Sorry man, it's always a good idea to match red for red.\n\twil: No worries...it is a lesson...I was blinded...that happens to me....I need to be reminded...thanx for the annihilation.\n\n\nHomeworlds Online (SDG# 24926)\nVariants: "Hard time"\nStarted: 2013.12.12, Ended: 2014.1.19\nParticipants: TwoShort (S), SilentTitan (N)\nWinner: TwoShort\n\n1) SilentTitan: Homeworld B1 R2 G3\n\tSilentTitan: It would seem that no one else wants to play me and since I cannot challenge downward. You're it. Tag.\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) SilentTitan: Build G1 Silenttitan\n\tTwoShort: Glad to be it :) Have a good game.\n\n4) TwoShort: Build B1 Twoshort\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) SilentTitan: Trade G3 B3 Silenttitan\n\n8) TwoShort: Build B2 Twoshort\n\n9) SilentTitan: Trade G1 Y1 Silenttitan\n\n10) TwoShort: Discover B2 Twoshort G2 Grogar\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) TwoShort: Build B2 Grogar\n\n13) SilentTitan: Discover B2 Silenttitan G3 Sol\n\n14) TwoShort: Trade B2 Y2 Grogar\n\n15) SilentTitan: Build Y1 Silenttitan\n\n16) TwoShort: Build Y1 Grogar\n\n17) SilentTitan: Move Y1 Silenttitan Sol\n\n18) TwoShort: Trade Y2 R2 Grogar\n\n19) SilentTitan: Trade B2 R2 Sol\n\n20) TwoShort: Build Y2 Twoshort\n\n21) SilentTitan: Build Y2 Silenttitan\n\n22) TwoShort: Build B2 Grogar\n\n23) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\n24) TwoShort: Discover B2 Grogar Y3 Yolonda\n\n25) SilentTitan: Trade B3 G3 Silenttitan\n\n26) TwoShort: Trade Y2 G2 Twoshort\n\n27) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Soul\nBuild Y3 Silenttitan\n\n28) TwoShort: Sacrifice G2 Twoshort\nBuild B2 Yolonda\nBuild B3 Grogar\n\n29) SilentTitan: Discover Y2 Silenttitan B3 Tic\n\n30) TwoShort: Move B3 Grogar Sol\n\n31) SilentTitan: Sacrifice Y2 Sol\nMove Y1 Sol Silenttitan\nMove R2 Sol Silenttitan\n\n32) TwoShort: Build Y2 Twoshort\n\n33) SilentTitan: Build G1 Silenttitan\n\n34) TwoShort: Trade B3 R3 Sol\n\n35) SilentTitan: Discover G1 Silenttitan B3 Tac\n\n36) TwoShort: Sacrifice Y3 Twoshort\nMove R2 Grogar Sol\nMove R2 Sol Silenttitan\nMove R3 Sol Silenttitan\nCatastrophe Silenttitan Red\n\n37) SilentTitan: Trade Y2 R2 Tic\n\tSilentTitan: Pretty\n\tSilentTitan: Pretty\n\n38) TwoShort: Move B2 Grogar Silenttitan\n\tTwoShort: Great game, thanks.\n\n39) SilentTitan: Pass\n\tSilentTitan: Hey, thanks for putting up with me yet again.\n\n40) TwoShort: Sacrifice Y2 Twoshort\nMove B2 Yolonda Silenttitan\nMove B2 Yolonda Silenttitan\nCatastrophe Silenttitan Blue\n\n\nHomeworlds Online (SDG# 24835)\nStarted: 2013.12.16, Ended: 2013.12.20\nParticipants: foksieloy (S), OnePageWars (N)\nWinner: OnePageWars\n\n1) OnePageWars: Homeworld B2 R1 G3\n\tOnePageWars: gl hf all!\n\n2) foksieloy: Homeworld B3 Y2 G3\n\n3) OnePageWars: Build G1 Onepagewars\n\tfoksieloy: gl hf!\n\n4) foksieloy: Build G1 Foksieloy\n\n5) OnePageWars: Trade G1 Y1 Onepagewars\n\n6) foksieloy: Trade G1 Y1 Foksieloy\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) foksieloy: Build G1 Foksieloy\n\n9) OnePageWars: Trade G1 B1 Onepagewars\n\n10) foksieloy: Discover G1 Foksieloy R1 Blackadder\n\n11) OnePageWars: Build B1 Onepagewars\n\n12) foksieloy: Build G1 Foksieloy\n\n13) OnePageWars: Discover B1 Onepagewars G3 Bravelyranrobin\n\n14) foksieloy: Sacrifice Y1 Foksieloy\nDiscover G1 Blackadder R3 Balldrick\n\n15) OnePageWars: Build Y1 Onepagewars\n\tfoksieloy: Sorry if this was a stupid move, I am new to this game, it just seemed like it might be the less of few evils of giving you medium ships this soon.\n\n16) foksieloy: Trade G1 R1 Foksieloy\n\tOnePageWars: Sorry, I don't know enough about this game to judge the viability of that move.\n\n17) OnePageWars: Build G1 Onepagewars\n\n18) foksieloy: Build R1 Foksieloy\n\n19) OnePageWars: Build B1 Bravelyranrobin\n\n20) foksieloy: Discover R1 Foksieloy Y1 Percy\n\n21) OnePageWars: Build B2 Bravelyranrobin\n\n22) foksieloy: Sacrifice G1 Balldrick\nBuild R2 Percy\n\n23) OnePageWars: Trade B2 R2 Bravelyranrobin\n\n24) foksieloy: Build G1 Foksieloy\n\n25) OnePageWars: Build B2 Bravelyranrobin\n\n26) foksieloy: Trade G3 B3 Foksieloy\n\n27) OnePageWars: Trade B2 Y2 Bravelyranrobin\n\n28) foksieloy: Build B2 Foksieloy\n\tOnePageWars: Have you seen Frozen?\n\n29) OnePageWars: Sacrifice Y2 Bravelyranrobin\nMove B1 Bravelyranrobin Percy\nMove B1 Percy Foksieloy\nCatastrophe Foksieloy B\n\tfoksieloy: Haven't. Is it good?\n\tOnePageWars: I think so. They only had 90 some minutes, but I think they used the time very well to create well developed characters. I like the focus on internal conflict in Anna and especially Elsa.\n\n30) foksieloy: Build R2 Foksieloy\n\tfoksieloy: I should have seen this coming, just did it 5 min ago in another game. :) Ok, I will check that movie out then.\n\n31) OnePageWars: Build R3 Bravelyranrobin\n\n\tfoksieloy: Ok, I lost. No matter what I do, you will either catastrophe my red in foksieloy if I build r3 there, in Percy if I sac g1 to build r3 there, or just capture my system if I don't build r3. Good game!\n\tfoksieloy: Perhaps another game?\n\tOnePageWars: yes, good game. And sure, I'd be happy to play another.\n\nHomeworlds Online (SDG# 24767)\nVariants: "Unrated, Hard time"\nStarted: 2013.12.17, Ended: 2014.1.30\nParticipants: Ultan_the_Blind (S), wil (N), foksieloy (E)\nWinner: Ultan_the_Blind\n\n1) wil: Homeworld B2 R1 G3\n\n2) foksieloy: Homeworld G3 B2 Y3\n\twil: Welcome to the game....be sure to create different homeworlds so nobody is dealing with a short universe...\n\n3) Ultan_the_Blind: Homeworld Y1 B3 G3\n\tfoksieloy: Hi everyone, good luck, have fun!\n\n4) wil: Build G1 Wil\n\tUltan_the_Blind: G'day! This shall be my first 3 player game. Lets see how it goes... Good luck mine most honorable foes!\n\n5) foksieloy: Build Y1 Foksieloy\n\n6) Ultan_the_Blind: Build G1 Ultan_the_blind\n\n7) wil: Trade G1 Y1 Wil\n\n8) foksieloy: Discover Y1 Foksieloy G1 Katsushiro\n\twil: I played one four way..and didn't like it...I played one other three way...and suddenly I am in three more! Great stuff....but I was told by another player that he has never finished any more multiples than binary...and so far that is true for me....seems most of us don't have the attention span required to play at least once every 5 days....\n\n9) Ultan_the_Blind: Build G1 Ultan_the_blind\n\n10) wil: Build Y1 Wil\n\n11) foksieloy: Build Y2 Foksieloy\n\n12) Ultan_the_Blind: Discover G1 Ultan_the_blind Y2 Sol\n\n13) wil: Discover Y1 Wil G3 G3\n\n14) foksieloy: Trade Y2 G2 Foksieloy\n\n15) Ultan_the_Blind: Trade G3 Y3 Ultan_the_blind\n\n16) wil: Build G1 Wil\n\n17) foksieloy: Build G2 Foksieloy\n\n18) Ultan_the_Blind: Build Y2 Ultan_the_blind\n\n19) wil: Build Y2 Wil\n\n20) foksieloy: Sacrifice G2 Foksieloy\nBuild Y2 Katsushiro\nBuild Y3 Foksieloy\n\n21) Ultan_the_Blind: Trade Y3 G3 Ultan_the_blind\n\tfoksieloy: So, seems yellow is popular this game. Never played a 3p game, this is quite fun already. :)\n\n22) wil: Build Y3 G3\n\twil: isolation of any economy, or cornering any economy is always popular....and when one sees someone else take a run on the bank....we should all try to get a little of what is owed to us out before the bank is empty and commodity prices skyrocket.\n\n23) foksieloy: Trade Y3 B3 Foksieloy\n\n24) Ultan_the_Blind: Discover Y2 Ultan_the_blind G2 Urth\n\n25) wil: Discover G1 Wil Y3 Y3\n\n26) foksieloy: Build Y3 Foksieloy\n\n27) Ultan_the_Blind: Discover G1 Sol B1 Neptune\n\n28) wil: Trade Y2 R2 Wil\n\n29) foksieloy: Discover Y1 Katsushiro G2 Shichiroji\n\n30) Ultan_the_Blind: Build G2 Neptune\n\n31) wil: Build Y2 Wil\n\n32) foksieloy: Build Y2 Shichiroji\n\tUltan_the_Blind: Merry Christmas, O you who I do not know!\n\tfoksieloy: Best wishes for the holidays!\n\twil: backatcha\n\n33) Ultan_the_Blind: Trade G1 B1 Neptune\n\n34) wil: Trade Y2 R2 Wil\n\n35) foksieloy: Trade Y3 R3 Foksieloy\n\n36) Ultan_the_Blind: Sacrifice G3 Ultan_the_blind\nBuild G1 Neptune\nBuild Y2 Urth\nBuild G3 Ultan_the_blind\n\n37) wil: Move R2 Wil G3\n\tfoksieloy: I am not making that mistake again. :>\n\n38) foksieloy: Build Y3 Foksieloy\n\tUltan_the_Blind: The bank is getting kinda depleted....\n\n39) Ultan_the_Blind: Sacrifice Y2 Urth\nMove B1 Neptune Foksieloy\nMove G1 Neptune Foksieloy\n\n40) wil: Build R1 G3\n\n41) foksieloy: Attack G1S Foksieloy\n\tUltan_the_Blind: I apologise for my slow and errant playing. Just got back from a long holiday visit with my family.\n\n42) Ultan_the_Blind: Build B1 Foksieloy\nCatastrophe Foksieloy Blue\n\n43) wil: Discover R2 G3 Y2 Y2\n\n44) foksieloy: Move Y1 Shichiroji Ultan_the_blind\n\n45) Ultan_the_Blind: Trade G1 R1 Ultan_the_blind\n\n46) wil: Build G1 Wil\n\n47) foksieloy: Sacrifice Y3 Foksieloy\nMove Y2 Katsushiro Shichiroji\nMove Y2 Shichiroji Ultan_the_blind\nMove Y2 Shichiroji Ultan_the_blind\nCatastrophe Ultan_the_blind Yellow\n\n48) Ultan_the_Blind: Build G1 Neptune\n\n49) wil: Move G1 Wil Foksieloy\nCatastrophe Foksieloy G\n\n50) Ultan_the_Blind: Build R1 Ultan_the_blind\n\n51) wil: Move R2 Y2 Ultan_the_blind\n\tUltan_the_Blind: :Sigh: I feared that would be the result of angering you, Foksieloy... We could easily destroy each other without Wil needing to do a thing!\n\n52) Ultan_the_Blind: Sacrifice R1 Ultan_the_blind\nAttack R2N Ultan_the_blind\n\twil: I would have liked to have had a few of your ships, but it looks like I can manage from here...\n\tfoksieloy: For some reason I thought this was sinister and I was targeting you. Hence my confusion at you making it easier on wil :) I should pay more attention. But yea, if I haven't done that I would have been dead anyway, so why not go out in a blaze of glory! Good game guys, I'll be watching you.\n\n53) wil: Build R1 Wil\n\n54) Ultan_the_Blind: Sacrifice Y2 Urth\nMove G1 Neptune Ultan_the_blind\nMove R1 Ultan_the_blind Wil\nCatastrophe Wil Red\n\n55) wil: Build G1 Wil\n\twil: well that didn't go as planned.\n\n56) Ultan_the_Blind: Trade G1 Y1 Ultan_the_blind\n\tUltan_the_Blind: Yeah... I was getting quite worried there for a moment! Was about to do something rather rash...\n\n57) wil: Trade G1 B1 Wil\n\n58) Ultan_the_Blind: Trade G2 B2 Neptune\n\n59) wil: Move Y3 G3 Neptune\n\n60) Ultan_the_Blind: Build Y1 Ultan_the_blind\n\n61) wil: Build Y2 G3\n\n62) Ultan_the_Blind: Sacrifice Y1 Ultan_the_blind\nMove B2 Neptune Wil\n\n63) wil: Trade G3 R3 Wil\n\n64) Ultan_the_Blind: Sacrifice G3 Ultan_the_blind\nBuild B1 Wil\nBuild B1 Wil\nBuild B2 Wil\nCatastrophe Wil Blue\n\n\tUltan_the_Blind: Good game, good sirs! You were most honorable foes (and I realize that I got lucky this time). Thank you for an enjoyable game (and sorry again for my slow playing).\n\nHomeworlds Online (SDG# 24859)\nVariants: "Hard time"\nStarted: 2013.12.17, Ended: 2013.12.21\nParticipants: wil (S), foksieloy (N)\nWinner: foksieloy\n\n1) foksieloy: Homeworld R1 G3 B3\n\n2) wil: Homeworld R2 B1 G3\n\tfoksieloy: Hi, good luck, have fun!\n\n3) foksieloy: Build B1 Foksieloy\n\twil: Thanx for the game! How did you discover homeworlds? Do you play the physical game as well?\n\tfoksieloy: Yep, I play the physical game, but most people I played it with (family, friends) either didn't like it, or don't have the time, so I decided to try it online. :) Seems there is much more strategy to this game than I expected (and I expected it to be brutal), so I am hoping to learn a lot here.\n\n4) wil: Build G1 Wil\n\twil: Yes, it is for folks with a chess playing mentality\n\n5) foksieloy: Trade B1 G1 Foksieloy\n\n6) wil: Trade G1 B1 Wil\n\n7) foksieloy: Build G1 Foksieloy\n\n8) wil: Build G1 Wil\n\n9) foksieloy: Trade G1 Y1 Foksieloy\n\n10) wil: Build G1 Wil\n\n11) foksieloy: Build G2 Foksieloy\n\n12) wil: Trade G1 Y1 Wil\n\n13) foksieloy: Trade G1 R1 Foksieloy\n\n14) wil: Trade G1 R1 Wil\n\n15) foksieloy: Build R2 Foksieloy\n\n16) wil: Build R2 Wil\n\n17) foksieloy: Discover R2 Foksieloy G2 Garthmarenghi\n\n18) wil: Trade R2 Y2 Wil\n\n19) foksieloy: Build B1 Foksieloy\n\n20) wil: Build B2 Wil\n\n21) foksieloy: Move B1 Foksieloy Garthmarenghi\n\n22) wil: Trade B2 Y2 Wil\n\n23) foksieloy: Trade R2 Y2 Garthmarenghi\n\n24) wil: Build R2 Wil\n\n25) foksieloy: Build B2 Garthmarenghi\n\twil: awe....you wasn't gonna let me get all the y2s? Now I have a commute to work....see you on the other side....I am on the east coast US, whereabouts are you in the world?\n\tfoksieloy: Europe, GMT + 1. :)\r\n\r\nWell I am new in the game, but as far as I can tell not having access to a ship of certain size+color can seriously limit you later on. Still learning, been reading the wiki, seemed like something I need to avoid.\n\n26) wil: Discover R2 Wil G3 G3\n\twil: yes, don't want to be frozen out of any economy...if you are new you are playing well\n\n27) foksieloy: Move R1 Foksieloy Garthmarenghi\n\n28) wil: Move Y2 Wil G3\n\n29) foksieloy: Build B2 Foksieloy\n\n30) wil: Build G1 Wil\n\n31) foksieloy: Discover B2 Garthmarenghi Y3 Toddrivers\n\n32) wil: Discover G1 Wil Y3 Y3\n\n33) foksieloy: Trade B3 Y3 Foksieloy\n\n34) wil: Build G1 Wil\n\n35) foksieloy: Sacrifice Y3 Foksieloy\nMove B1 Garthmarenghi Toddrivers\nMove B1 Toddrivers Wil\nMove B2 Toddrivers Wil\nCatastrophe Wil Blue\n\n36) wil: Sacrifice G3 Wil\nBuild G1 Y3\nBuild G2 Y3\nBuild G3 Wil\n\tfoksieloy: Boom :)\n\twil: You've traded a pawn, drone and queen for half my homeworld...making it so we are directly connected and you are without a big gun in your homeworld... Dangerous footing...I wish you the best.\n\n37) foksieloy: Sacrifice G2 Foksieloy\nBuild Y1 Garthmarenghi\nBuild Y3 Foksieloy\n\tfoksieloy: I know, but I have to see if I can work at close quarters. Learning as I play.\n\n38) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild Y3 G3\n\n39) foksieloy: Discover Y1 Foksieloy B2 Madeleinewool\n\n40) wil: Discover Y3 G3 B2 B2\n\n41) foksieloy: Build B1 Foksieloy\n\tfoksieloy: I see what you mean now, I have been pondering on my move and noticed a lot of way for you to destroy me quickly. Live and learn, like I said, lack of experience. :)\n\twil: And I agree fully...the way to learn is to be annihilated...crushed...repeatedly in different ways so you can see them building.\n\n42) wil: Move G1 Y3 B2\n\n43) foksieloy: Trade B2 R2 Foksieloy\n\n44) wil: Build R3 G3\n\n45) foksieloy: Sacrifice Y3 Foksieloy\nMove R1 Garthmarenghi Foksieloy\nMove R1 Foksieloy Wil\nMove R2 Foksieloy Wil\nCatastrophe Wil Red\n\tfoksieloy: You took control over G, I just now noticed how badly it will affect me.\n\twil: A monopoly in any ecoomy hurts....I find the moving and trading sectors most worthwhile to corner, but building is valuabe...just having the only factory in the universe can cripple ya. \n\n\tfoksieloy: Good game!\n\tfoksieloy: Perhaps another? I really am enjoying this, wish I joined this site sooner. I am having a nice game in paralel with OnePageWars, and I see you are too, perhaps the three of us should do a multiplayer. :)\n\twil: I didn't even see it coming...great move...caught asleep at the wheel... \n\nHomeworlds Online (SDG# 24855)\nVariants: "Hard time"\nStarted: 2013.12.17, Ended: 2014.1.3\nParticipants: SilentTitan (S), OnePageWars (N)\nWinner: SilentTitan\n\n1) OnePageWars: Homeworld R1 B2 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) OnePageWars: Build G1 Onepagewars\n\n4) SilentTitan: Build G1 Silenttitan\n\tOnePageWars: is there any reason one would wish to trade his size 3 ship on turn 3 rather than his size 1 besides mindgaming his opponent?\n\tSilentTitan: If you are in danger of being locked out of a color. \n\n5) OnePageWars: Trade G1 Y1 Onepagewars\n\tOnePageWars: Would that happen in a 2 player game?\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\tSilentTitan: It could, if each player had say a b1 in homeworld. Then first player to go blue, would have pip advantage into the two-pip pieces and the odd out player would need to change the 3-pip rather than the1-pip to stay in the color.\n\n7) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: Hmmm, interesting.\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) OnePageWars: Trade G1 R1 Onepagewars\n\n10) SilentTitan: Trade G1 R1 Silenttitan\n\n11) OnePageWars: Build R2 Onepagewars\n\n12) SilentTitan: Build R2 Silenttitan\n\n13) OnePageWars: Trade R1 B1 Onepagewars\n\n14) SilentTitan: Trade R2 Y2 Silenttitan\n\n15) OnePageWars: Build B1 Onepagewars\n\n16) SilentTitan: Build R1 Silenttitan\n\n17) OnePageWars: Build G1 Onepagewars\n\n18) SilentTitan: Discover R1 Silenttitan G1 Sol\n\n19) OnePageWars: Discover R2 Onepagewars G3 Ienjoyedfrozen\n\n20) SilentTitan: Trade R1 B1 Silenttitan\n\n21) OnePageWars: Trade B1 R1 Onepagewars\n\n22) SilentTitan: Build G1 Silenttitan\n\n23) OnePageWars: Build G2 Onepagewars\n\n24) SilentTitan: Move Y2 Silenttitan Sol\n\n25) OnePageWars: Move G2 Onepagewars Ienjoyedfrozen\n\n26) SilentTitan: Build G2 Silenttitan\n\n\nHomeworlds Online (SDG# 24940)\nVariants: "Hard time"\nStarted: 2013.12.18, Ended: 2014.1.4\nParticipants: OnePageWars (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) OnePageWars: Homeworld B1 R3 G3\n\tOnePageWars: Should I go small universe?\n\n3) wil: Build G1 Wil\n\twil: why would you want to do that? Do you know who bangle tiger is? That game is dying....\n\n4) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: I don't see what the problem with small universe is in a two player game.\n\n5) wil: Trade G1 Y1 Wil\n\n6) OnePageWars: Trade G1 Y1 Onepagewars\n\n7) wil: Build G1 Wil\n\n8) OnePageWars: Build G1 Onepagewars\n\n9) wil: Discover G1 Wil Y3 Y3\n\n10) OnePageWars: Discover G1 Onepagewars B2 Wormhole\n\n11) wil: Build Y1 Wil\n\n12) OnePageWars: Build Y2 Onepagewars\n\n13) wil: Discover Y1 Wil B3 B3\n\n14) OnePageWars: Build Y2 Onepagewars\n\n15) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 Wil\nBuild Y3 B3\n\n16) OnePageWars: Move Y1 Onepagewars Wormhole\n\n17) wil: Trade Y1 G1 Wil\n\n18) OnePageWars: Build G2 Wormhole\n\n19) wil: Build G2 Y3\n\n20) OnePageWars: Trade G1 R1 Wormhole\n\n21) wil: Trade Y2 R2 Wil\n\n22) OnePageWars: Build R1 Wormhole\n\n23) wil: Discover G1 Y3 Y2 Y2\n\n\twil: hate when this happens\n\tOnePageWars: Sorry about that.\n\nHomeworlds Online (SDG# 24954)\nVariants: "Hard time"\nStarted: 2013.12.20, Ended: 2013.12.20\nParticipants: wil (S), OnePageWars (N)\nWinner: wil\n\n1) OnePageWars: Homeworld R2 B1 G3\n\n2) wil: Homeworld Y3 G2 B3\n\n3) OnePageWars: Build G1 Onepagewars\n\n4) wil: Build B1 Wil\n\n5) OnePageWars: Build G1 Onepagewars\n\n6) wil: Build B1 Wil\n\n7) OnePageWars: Trade G1 Y1 Onepagewars\n\n8) wil: Discover B1 Wil G1 G1\n\n9) OnePageWars: Discover G1 Onepagewars B3 Shogiisfun\n\n10) wil: Build B2 G1\n\n11) OnePageWars: Build Y1 Onepagewars\n\tOnePageWars: I think you've outplayed me in this game.\n\n12) wil: Build B2 Wil\n\twil: oh, give me a chance, I'll screw it up\n\n\tOnePageWars: Don't be to sure, I may have improved, but you're still better. :)\n\tOnePageWars: also, you have a monopoly on trade tech ships.\n\tOnePageWars: good game, well played.\n\nHomeworlds Online (SDG# 24970)\nStarted: 2013.12.20, Ended: 2013.12.28\nParticipants: OnePageWars (S), foksieloy (N)\nWinner: foksieloy\n\n1) foksieloy: Homeworld B1 R2 G3\n\n2) OnePageWars: Homeworld B1 R3 G3\n\n3) foksieloy: Build G1 Foksieloy\n\tOnePageWars: Let's see how the fight for blue econ shapes up. :)\n\tOnePageWars: gl hf!, btw.\n\tfoksieloy: Oh, this is an interesting start! Good luck, have fun!\n\n4) OnePageWars: Build G1 Onepagewars\n\n5) foksieloy: Trade G1 Y1 Foksieloy\n\n6) OnePageWars: Trade G1 Y1 Onepagewars\n\n7) foksieloy: Build G1 Foksieloy\n\n8) OnePageWars: Build G1 Onepagewars\n\n9) foksieloy: Trade G1 B1 Foksieloy\n\n10) OnePageWars: Build G1 Onepagewars\n\n11) foksieloy: Build B2 Foksieloy\n\n12) OnePageWars: Trade G3 B3 Onepagewars\n\n13) foksieloy: Trade B2 R2 Foksieloy\n\n14) OnePageWars: Trade G1 R1 Onepagewars\n\n15) foksieloy: Build B2 Foksieloy\n\tOnePageWars: Sorry for being late to move.\n\n16) OnePageWars: Build B2 Onepagewars\n\n17) foksieloy: Build G1 Foksieloy\n\n18) OnePageWars: Build R1 Onepagewars\n\n19) foksieloy: Trade G3 Y3 Foksieloy\n\n20) OnePageWars: Discover R1 Onepagewars G2 Dota2\n\n21) foksieloy: Sacrifice Y3 Foksieloy\nDiscover B1 Foksieloy G3 Leagueoflegends\nMove B1 Leagueoflegends Dota2\nMove B1 Dota2 Onepagewars\nCatastrophe Onepagewars Blue\n\n\tOnePageWars: ok. Didn't see that, obviously. :)\n\tOnePageWars: good game wp.\n\tfoksieloy: Good game! Another?\n\nHomeworlds Online (SDG# 24969)\nVariants: "Hard time"\nStarted: 2013.12.20, Ended: 2014.1.4\nParticipants: Laurie_Menke (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R1 B2 G3\n\twil: Well...there she is. I do believe neither of our schedules have more than brief holes that aren't filled... a games afoot\n\n2) Laurie_Menke: Homeworld B3 Y1 G3\n\tLaurie_Menke: I do believe you're right! And yay for finding holes! :o)\n\n3) wil: B G1 Wil\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) wil: T G1 Y1 Wil\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) wil: Build Y1 Wil\n\n8) Laurie_Menke: Discover G1 Laurie_menke Y2 Yeller\n\twil: I take its youse is back in California?\r\n\n\tLaurie_Menke: Just back now. Landed about an hour ago. But they gave me the job!!! I'm so excited!!! So you'll see me again as soon as I can get back there. Oh, and don't worry...I'll be living in the Pepperland basement, not at Wunderland. ;o)\n\n9) wil: Build Y2 Wil\n\n10) Laurie_Menke: Trade G1 B1 Laurie_menke\n\twil: what me worry? So what is your job? \n\tLaurie_Menke: "Personal Assistant to the Looneys" :o) The first line of my job description is to keep the family happy. LOL! But basically, it's what I've been doing--organization projects, a little cooking and cleaning, running errands...that sort of thing. :o)\n\n11) wil: Discover Y2 Wil B3 B3\n\twil: great....they can use the assitance.\n\n12) Laurie_Menke: Build B1 Laurie_menke\n\tLaurie_Menke: :o)\n\twil: they just have so much goin on...tracking everyday stuff gets behind...\n\tLaurie_Menke: Right. Hopefully I'll be able to help keep them on track when things get crazy. At least I'm going to try! :o) Ihopeyou had a great Christmas!\n\n13) wil: Build Y2 Wil\n\n14) Laurie_Menke: Trade B1 R1 Laurie_menke\n\n15) wil: Trade Y2 R2 Wil\n\n16) Laurie_Menke: Build B1 Laurie_menke\n\n17) wil: Build Y2 Wil\n\twil: rainy 40's here...the beginning of the wet sloppy cold dc winter\n\n18) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\tLaurie_Menke: Looking forward to it! :o) Though I'm sure the iciness isn't fun. It's sunny & 80 here today.\n\n19) wil: Discover Y2 Wil G3 G3\n\tLaurie_Menke: Hated to lose my g3, but I had to get some yellow. :o/\n\n20) Laurie_Menke: Trade B1 G1 Laurie_menke\n\twil: uh oh, that could be bad...\n\tLaurie_Menke: LOL...see, I'm such a newbie that I don't know if that's bad for me or for you. ;o) Most likely me...\n\n21) wil: Sacrifice G3 Wil\nBuild Y3 B3\nBuild Y3 G3\nBuild R1 Wil\n\tLaurie_Menke: Yeah, I'm starting to see why it's bad for me. ::sigh::\n\n22) Laurie_Menke: Sacrifice Y3 Laurie_menke\nMove R1 Laurie_menke Yeller\nMove R1 Yeller B3\nMove R1 B3 Wil\nCatastrophe Wil Red\n\twil: I learn by losing....often...\n\twil: that is often losing....I'm still working on learning from my losses...\n\tLaurie_Menke: LOL...me, too! So since it's pretty clear I've lost this one, I'm going to go out with a bang by breaking starship rule number one. ;o)\n\n23) wil: Sacrifice Y2 B3\nMove Y3 G3 Yeller\nMove Y3 Yeller Laurie_menke\n\twil: I thought I set that bait correctly....\n\n24) Laurie_Menke: Build B1 Laurie_menke\n\tLaurie_Menke: LOL...now you're just toying with me, eh? ;o)\n\n25) wil: Trade Y3 R3 B3\n\n26) Laurie_Menke: Build G1 Laurie_menke\n\n27) wil: Sacrifice R3 B3\nAttack G1 Laurie_menke\nAttack G1 Laurie_menke\nAttack B1 Laurie_menke\n\twil: yes there was\n\twil: I am trying to end it painlessly for you....\n\tLaurie_Menke: I appreciate the kindness. :o) But I'm not going down without a fight. ;o)\n\n28) Laurie_Menke: Move G1 Yeller Laurie_menke\n\tLaurie_Menke: Just because I need the practice, mind you. I hope you don't mind me dragging it out a little. :o)\n\n29) wil: Build G2 Laurie_menke\nCatastrophe Laurie_menke G\n\twil: no worries that is part of it...\n\n30) Laurie_Menke: Trade B1 G1 Laurie_menke\n\tLaurie_Menke: Thanks. :o) And Happy New Year! :oD\n\n31) wil: Trade Y3 R3 Laurie_menke\n\twil: HNY back atcha....funny trying to figure how to end it...\n\tLaurie_Menke: LOL...I have one tiny little ship left. ;o)\n\n32) Laurie_Menke: Build G1 Laurie_menke\n\n33) wil: Sacrifice R3 Laurie_menke\nAttack G1 Laurie_menke\nAttack G1 Laurie_menke\nPass\n\n\tLaurie_Menke: And now for the finale. ;o)\n\twil: I don't think I've ever completed a game with so few pieces left on the board.\n\tLaurie_Menke: It is pretty sparse! Only one star system besides our homeworlds. :o) Thank you very much for the game! I won't start another right now because I'm in crazy moving-in-11-days mode. But once I'm settled, maybe I can try again?\n\twil: Of course... and yeah...we blew up so much there is nothing left...\n\tLaurie_Menke: :o) Thanks!\n\nHomeworlds Online (SDG# 24983)\nVariants: "Sinister, Hard time"\nStarted: 2013.12.21, Ended: 2013.12.31\nParticipants: wil (S), foksieloy (N), OnePageWars (E)\nWinner: foksieloy\n\n1) foksieloy: Homeworld R1 B3 G3\n\tfoksieloy: Hi guys, sinister is on, so I think that means I am attacking OnePageWars, OnePageWars is attacking wil, and wil is attacking me. Have fun. :)\n\n2) OnePageWars: Homeworld B1 R2 G3\n\tfoksieloy: Oh, and please, let's not have a small universe.\n\n3) wil: H B3 Y2 G3\n\n4) foksieloy: Build G1 Foksieloy\n\n5) wil: Build G1 Wil\n\tfoksieloy: Best wishes for the holidays!\n\n6) foksieloy: Trade G3 Y3 Foksieloy\n\twil: well then?\n\n7) wil: Discover G1 Wil B1 B1\n\tfoksieloy: This was unexpected.\n\n8) foksieloy: Build G1 Foksieloy\n\n9) wil: Build G1 Wil\n\n10) foksieloy: Build G2 Foksieloy\n\n11) wil: Build G2 B1\n\n12) foksieloy: Trade G2 R2 Foksieloy\n\n13) wil: Trade G2 R2 B1\n\n14) foksieloy: Build G2 Foksieloy\n\n15) wil: Build G2 B1\n\n16) foksieloy: Discover G1 Foksieloy B2 Parasoul\n\n17) wil: Trade G1 Y1 B1\n\twil: wonder why it always tells us that we are late for our turns??\n\n18) foksieloy: Build Y1 Foksieloy\n\n19) wil: Move R2 B1 Parasoul\n\tOnePageWars: lol, yeah. That keeps scaring me.\n\n20) foksieloy: Sacrifice G1 Parasoul\nBuild G1 Foksieloy\n\n21) wil: Build G1 B1\n\n22) foksieloy: Discover G1 Foksieloy Y2 Squigly\n\n23) wil: Trade G2 R2 B1\n\n24) foksieloy: Build G2 Squigly\n\n25) wil: Build G2 B1\n\n26) foksieloy: Discover G2 Squigly R1 Filia\n\n27) wil: Move G1 B1 Parasoul\n\n28) foksieloy: Sacrifice Y3 Foksieloy\nMove G1 Squigly Filia\nMove G1 Filia Wil\nMove G2 Filia Wil\nCatastrophe Wil Green\n\n\tfoksieloy: Good game!\n\tOnePageWars: same\n\tfoksieloy: Happy new year guys!\n\tOnePageWars: happy new year!\n\twil: Well I blew that....Happy New Year!\n\nHomeworlds Online (SDG# 24984)\nVariants: "Hard time"\nStarted: 2013.12.21, Ended: 2013.12.25\nParticipants: wil (S), foksieloy (N)\nWinner: wil\n\n1) foksieloy: Homeworld B1 G3 Y3\n\n2) wil: H B2 R1 G3\n\tfoksieloy: Hi, welcome back. :)\n\n3) foksieloy: Build Y1 Foksieloy\n\twil: Thx ilook fwd to the game!\r\n\n\n4) wil: Build G1 Wil\n\n5) foksieloy: Trade Y1 G1 Foksieloy\n\n6) wil: T G1 B1 Wil\n\n7) foksieloy: Build G1 Foksieloy\n\n8) wil: Build B1 Wil\n\n9) foksieloy: Build Y1 Foksieloy\n\n10) wil: Trade B1 Y1 Wil\n\n11) foksieloy: Trade G1 B1 Foksieloy\n\n12) wil: Build B2 Wil\n\n13) foksieloy: Sacrifice Y3 Foksieloy\nDiscover B1 Foksieloy G2 Temporary1\nDiscover B1 Temporary1 G3 Temporary2\nMove B1 Temporary2 Wil\nCatastrophe Wil B\n\n14) wil: Build Y1 Wil\n\tfoksieloy: I know, risky, but I have to see how this strategy works out.\n\twil: I said to my self....self will he do this? maybe....probably....nah...well let's see....got my answer!!\n\n15) foksieloy: Build Y2 Foksieloy\n\tfoksieloy: I am always trigger happy in games! :)\n\n16) wil: Discover Y1 Wil G2 G2\n\n17) foksieloy: Trade Y1 R1 Foksieloy\n\n18) wil: Build Y1 Wil\n\n19) foksieloy: Build Y2 Foksieloy\n\n20) wil: Build Y2 G2\n\n21) foksieloy: Discover Y2 Foksieloy G2 Warvick\n\n22) wil: Discover Y2 G2 B3 B3\n\n23) foksieloy: Build Y3 Warvick\n\n24) wil: Trade Y2 R2 B3\n\n25) foksieloy: Build Y2 Foksieloy\n\n26) wil: Build Y3 G2\n\n27) foksieloy: Trade Y2 B2 Foksieloy\n\twil: I have played this misearably I hope you have found more admirable oponents in other games...\n\n28) wil: Build G1 Wil\n\tfoksieloy: Oh, the games are very enjoyable, don't worry. I made a similar mistake in a game with OnePageWars, and he was quick to punish me there. So, you could say I am learning from my mistakes quickly enough to apply it to other games.\n\n29) foksieloy: Build B1 Foksieloy\n\twil: Yeah, that is my issue...It takes me a while to learn from my mistakes....but losing is the way to grow for sure.\n\n30) wil: Move Y3 G2 Foksieloy\n\n31) foksieloy: Build R1 Foksieloy\n\n32) wil: Sacrifice R2 B3\nAttack R1 Foksieloy\nAttack R1 Foksieloy\n\tfoksieloy: Damn, I shouldn't be making moves so early in the morning. :)\n\n33) foksieloy: Move Y2 Warvick Foksieloy\n\n34) wil: Attack B2 Foksieloy\n\n35) foksieloy: Trade Y2 R2 Foksieloy\n\n36) wil: Attack R2 Foksieloy\n\n37) foksieloy: Trade Y2 R2 Foksieloy\nCatastrophe Foksieloy Red\n\n38) wil: Trade Y3 R3 Foksieloy\n\tfoksieloy: We are both indecisive today. Must be all the food. :)\n\n\tfoksieloy: I didn't even realise I was in danger until it happened. Lack of experience.\n\twil: we are basically at checkmate I believe...\n\tfoksieloy: Yea, too late. Good game!\n\tfoksieloy: Another perhaps? :)\n\twil: always willing... challenge away... leaving up the challenge allows me to play multiple games with multiple folks and learn this daggone strategy. and I get swamped all the time, not seeing the armada creeping in...\n\nHomeworlds Online (SDG# 24801)\nStarted: 2013.12.25, Ended: 2013.12.30\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 24947)\nVariants: "Hard time"\nStarted: 2013.12.25, Ended: 2014.2.4\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: Build G1 Wil\n\twil: oops..short uni...hate short unis\n\tSilentTitan: Lol.... Yeah that's a different set of skills.\r\n\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\twil: a game will sometimes get to that in 30 moves...or even ultra short and direct connect....but starting out that way is just somehow unfulfilling.\n\n6) wil: Trade G1 B1 Wil\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) wil: Build B2 Wil\n\n9) SilentTitan: Trade B2 Y2 Silenttitan\n\n10) wil: Trade B2 R2 Wil\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) wil: Build B2 Wil\n\twil: this is where I go wrong, I should just play follow the leader...I always deviate to soon, or much wrongly...\n\n13) SilentTitan: Discover B1 Silenttitan G3 Sol\n\n14) wil: Trade B2 Y2 Wil\n\n15) SilentTitan: Build B2 Sol\n\n16) wil: Discover B1 Wil G2 G2\n\n17) SilentTitan: Trade B1 Y1 Sol\n\n18) wil: Build Y1 Wil\n\n19) SilentTitan: Build G1 Silenttitan\n\n20) wil: Move Y1 Wil G2\n\n21) SilentTitan: Trade G1 R1 Silenttitan\n\n22) wil: Move R2 Wil G2\n\n23) SilentTitan: Build G1 Silenttitan\n\n24) wil: Build G1 Wil\n\n25) SilentTitan: Move R1 Silenttitan Sol\n\n26) wil: Discover G1 Wil Y2 Y2\n\n27) SilentTitan: Discover G1 Silenttitan Y3 Sole\n\n28) wil: Build G1 Wil\n\n29) SilentTitan: Build G2 Silenttitan\n\n30) wil: Build G2 Y2\n\n31) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Silenttitan\nBuild Y3 Sol\nBuild G3 Silenttitan\n\n32) wil: S G3 Wil\nBuild G3 Wil\nBuild Y3 G2\nBuild R1 G2\n\n33) SilentTitan: Discover Y1 Silenttitan R3 Soul\n\n34) wil: Move R2 G2 Sole\n\n35) SilentTitan: Sacrifice G1 Sole\nBuild R2 Sol\n\n36) wil: Move G2 Y2 Soul\n\n37) SilentTitan: Sacrifice Y1 Soul\nDiscover B2 Silenttitan R3 Tic\n\n38) wil: Sacrifice G3 Wil\nBuild G1 Soul\nBuild R2 Sole\nBuild G3 Wil\n\n39) SilentTitan: Sacrifice G2 Silenttitan\nBuild B1 Tic\nBuild B3 Sol\n\n40) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild B3 G2\nBuild G3 Wil\n\n41) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y3 Sol G2\nMove Y1 Sol G2\nCatastrophe G2 Yellow\n\n42) wil: Trade B3 Y3 G2\n\n43) SilentTitan: Trade B3 Y3 Sol\n\n44) wil: Move G1 Y2 Sole\n\n45) SilentTitan: Move Y3 Sol Silenttitan\n\n46) wil: Move Y3 G2 Sol\n\n47) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Sol\nBuild B3 Sol\nBuild B3 Tic\n\n48) wil: Sacrifice Y2 Wil\nMove B1 G2 Sol\nDiscover R1 G2 G3 G3\nCatastrophe Sol B\n\n49) SilentTitan: Trade B1 Y1 Tic\n\n50) wil: Sacrifice R2 Sole\nAttack R2 Sol\nAttack R1 Sol\n\n51) SilentTitan: Trade B2 G2 Tic\n\n52) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 G3\nBuild Y1 Sol\n\n53) SilentTitan: Build B1 Tic\n\n54) wil: Trade G1 Y1 Wil\n\n55) SilentTitan: Build Y2 Tic\n\n56) wil: Build Y2 Wil\n\n57) SilentTitan: Sacrifice Y2 Tic\nMove B3 Tic Y2\nMove B3 Y2 Soul\n\n58) wil: Sacrifice G2 Soul\nBuild G1 Sole\nBuild G2 Wil\n\n59) SilentTitan: Build Y2 Tic\n\n60) wil: Sacrifice Y2 Wil\nMove R1 G3 Silenttitan\nMove R1 Sol Silenttitan\n\n61) SilentTitan: Attack G1 Soul South\n\n62) wil: Build Y2 Wil\n\n63) SilentTitan: Build B1 Tic\n\n64) wil: Move R2 Sole Silenttitan\nCatastrophe Silenttitan R\n\n65) SilentTitan: Trade Y3 B3 Silenttitan\n\n66) wil: Move Y3 Sol Silenttitan\n\n67) SilentTitan: Pass\n\n68) wil: Sacrifice R2 Sol\nAttack B3 Silenttitan\nPass\n\n\tSilentTitan: Good game\n\nHomeworlds Online (SDG# 25000)\nVariants: "Hard time"\nStarted: 2013.12.25, Ended: 2014.1.4\nParticipants: wil (S), foksieloy (N)\nWinner: wil\n\n1) foksieloy: Homeworld G1 B3 Y3\n\twil: Onepagewars has me in two games now..he had me playin three! We are game 25,000! gotta mean sometin!\n\tfoksieloy: It means we are superior. :)\n\n2) wil: Homeworld R2 B1 G3\n\n3) foksieloy: Build Y1 Foksieloy\n\n4) wil: Build G1 Wil\n\n5) foksieloy: Trade Y1 G1 Foksieloy\n\n6) wil: Build G2 Wil\n\n7) foksieloy: Build G2 Foksieloy\n\n8) wil: Trade G2 Y2 Wil\n\n9) foksieloy: Trade G2 R2 Foksieloy\n\n10) wil: Discover G1 Wil Y3 Y3\n\n11) foksieloy: Discover G1 Foksieloy B2 Banana\n\n12) wil: Build G2 Y3\n\n13) foksieloy: Build G2 Banana\n\n14) wil: Build G2 Wil\n\n15) foksieloy: Trade G1 Y1 Banana\n\n16) wil: Trade G2 R2 Wil\n\n17) foksieloy: Build G1 Banana\n\n18) wil: Build G2 Wil\n\n19) foksieloy: Discover G2 Banana Y3 Orange\n\n20) wil: Trade G2 B2 Wil\n\n21) foksieloy: Build Y1 Banana\n\n22) wil: Discover G1 Y3 Y2 Y2\n\n23) foksieloy: Build R1 Foksieloy\n\n24) wil: Build B1 Wil\n\tfoksieloy: I think I had way too many games going at once for a while there. Took me a bit of time to remember what I was doing in each one.\n\twil: that is a challenge....especiallly when some have similar characteristics!\n\n25) foksieloy: Trade Y1 R1 Banana\n\n26) wil: Move G2 Y3 Banana\n\n27) foksieloy: Build G2 Banana\n\n28) wil: Build G3 Y2\n\n29) foksieloy: Attack G2 Banana\n\n30) wil: Sacrifice G3 Y2\nBuild G3 Y2\nBuild G3 Wil\nBuild Y1 Wil\n\n31) foksieloy: Move G1 Banana Orange\n\twil: I traded one g2 for two g3s...\n\n32) wil: Discover R2 Wil Y3 Y3\n\tfoksieloy: I know, but I would have lost that g3 anyway, and then everything else in banana.\n\n33) foksieloy: Sacrifice G2 Banana\nBuild Y1 Foksieloy\nBuild Y2 Banana\n\n34) wil: Move G3 Wil Y3\n\n35) foksieloy: Trade Y1 B1 Banana\n\n36) wil: Move B2 Wil Y3\n\n37) foksieloy: Sacrifice B1 Banana\nTrade G1 B1 Orange\n\n38) wil: Sacrifice G3 Y2\nBuild G1 Wil\nBuild G2 Y3\nBuild G3 Y2\n\n39) foksieloy: Build B2 Orange\n\n40) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 Y3\nBuild R1 Y3\n\tfoksieloy: Did I notice correctly that if I was to build that last g2 you could use your g3 for massive factory production?\n\twil: Yes...sack g3, build g3 and two more...\n\n41) foksieloy: Sacrifice Y2 Banana\nMove B2 Orange Wil\nMove B1 Orange Wil\nCatastrophe Wil B\n\twil: for example\n\tfoksieloy: Ah, so it was unavoidable. :>\n\n42) wil: Move Y1 Wil Foksieloy\n\twil: well that was just green....now that i have the factories I can reproduce at will\n\n43) foksieloy: Sacrifice Y1 Foksieloy\nMove R1 Banana Orange\n\n44) wil: Sacrifice G2 Y3\nBuild Y1 Foksieloy\nBuild Y1 Foksieloy\nCatastrophe Foksieloy Y\n\tfoksieloy: And now your factory is right next to me it seems. Good luck to me, I will need it.\n\n\twil: I would love some cookies.\n\tfoksieloy: Oh damn, didn't expect that, nice. Good game!\n\twil: I don't know if it has a name....but you move in with one....getting set to catastrophe...if they resppond with an attack you move in with another, if they don't, you grow...tis the bain of having a green star.\n\tfoksieloy: I will have to remember that one! :)\n\twil: Yes, losing a dozen games teaches you a dozen things to avoid and a dozen ways to win. Steven Covey in Seven Habits of Highly Effective people...one of the habits is 'Begin with the end in mind' that is what I focus on...I have to either take out your star system, or eliminate your ships from your star system...so I try to insure that I make that hard for you to do to me, and keep lookng at what I need to accumulate to do that to you...\n\nHomeworlds Online (SDG# 24857)\nStarted: 2013.12.27, Ended: 2014.1.12\nParticipants: haukec (S), OnePageWars (N)\nWinner: haukec\n\n1) OnePageWars: Homeworld B1 R2 G3\n\tOnePageWars: Ah, a brand new game, I see. :) Welcome! gl hf!\n\n2) haukec: Homeworld R1 B2 G3\n\n3) OnePageWars: Build G1 Onepagewars\n\n4) haukec: Build G1 Haukec\n\n5) OnePageWars: Trade G1 B1 Onepagewars\n\n6) haukec: Build G1 Haukec\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) haukec: Trade G1 Y1 Haukec\n\n9) OnePageWars: Trade G1 Y1 Onepagewars\n\n10) haukec: Discover G1 Haukec G3 Somewherelse\n\n11) OnePageWars: Build G1 Onepagewars\n\n12) haukec: Build G1 Haukec\n\n13) OnePageWars: Move G1 Onepagewars Somewherelse\n\n14) haukec: Discover G1 Haukec Y3 Anewworld\n\n15) OnePageWars: Build G2 Onepagewars\n\n16) haukec: Build G2 Haukec\n\n17) OnePageWars: Build B1 Onepagewars\n\thaukec: this game is amazingly strategic - about once per turn i realize another error i made before... though first game ever :)\n\n18) haukec: Sacrifice G3 Haukec\nBuild G2 Anewworld\nBuild G3 Haukec\nBuild Y1 Haukec\n\tOnePageWars: This is your first game? Welcome to Homeworlds!\n\tOnePageWars: And yes, the strategy and tactics of this game abound. I'm still learning new things virtually every game, but I am relatively new to this game.\n\n19) OnePageWars: Move B1 Onepagewars Somewherelse\n\n20) haukec: Build Y2 Haukec\n\n21) OnePageWars: Sacrifice G3 Onepagewars\nBuild G3 Onepagewars\nBuild B2 Somewherelse\nBuild Y2 Onepagewars\n\n22) haukec: Sacrifice Y2 Haukec\nMove G1 Somewherelse Onepagewars\nMove G1 Anewworld Onepagewars\nCatastrophe Onepagewars G\n\n23) OnePageWars: Move Y1 Onepagewars Somewherelse\n\n24) haukec: Move G2 Haukec Somewherelse\n\tOnePageWars: Nice one.\n\n25) OnePageWars: Move G1 Somewherelse Onepagewars\n\n26) haukec: Sacrifice G2 Anewworld\nBuild G1 Somewherelse\nBuild G1 Somewherelse\nCatastrophe Somewherelse G\n\thaukec: thank you :) but now i realize why there was this warning in the manual of inclomplete annilation-plans, you walled me in quite effective ;)\n\n27) OnePageWars: Build G1 Onepagewars\n\n28) haukec: Discover Y1 Haukec G3 Nowhere\n\n29) OnePageWars: Discover G1 Onepagewars B3 Serenity_valley\n\n30) haukec: Build Y1 Haukec\n\tOnePageWars: Have you seen Firefly?\n\n31) OnePageWars: Build Y2 Onepagewars\n\thaukec: Yes! :D Bad omen for me? ;)\n\tOnePageWars: Only if you're one of them independents.\n\n32) haukec: Move Y1 Haukec Serenity_valley\n\n33) OnePageWars: Move Y2 Onepagewars Serenity_valley\n\n34) haukec: Sacrifice G3 Haukec\nBuild Y2 Serenity_valley\nBuild Y3 Nowhere\nBuild Y3 Haukec\n\tOnePageWars: "They thought they'd march through Serenity Valley, and we choked them with those words. We have done the impossible, and that makes us mighty." - Mal as near as I can remember it.\n\n35) OnePageWars: Build Y3 Onepagewars\n\tOnePageWars: Well, since I'm defending Serenity Valley, that would make me the Independents. I guess this is appropriate considering the unfortunate outcome of that fateful battle.\n\n36) haukec: Sacrifice Y2 Serenity_valley\nMove Y1 Nowhere Onepagewars\nMove Y1 Serenity_valley Onepagewars\nCatastrophe Onepagewars Y\n\tOnePageWars: Unless of course you plan to cancel project make psychotic psychics and cease war on the Independents rather than wipe so many of them out in Serenity Valley at unthinkable cost of life to both sides.\n\n37) OnePageWars: Build Y1 Serenity_valley\n\thaukec: So much for the unthinkable cost of life to both sides ;)\r\nI think, i will make an android-clone of this game :D\n\n38) haukec: Move Y3 Nowhere Onepagewars\n\tOnePageWars: Though high command, having only 2 small ships in their home system, has surrendered, the Independents at Serenity_Valley shall still hold out for some three weeks. (Did I get the timeline correct? It's been a while since I watched the series.)\n\thaukec: To be honest, i don't know for sure too, but I will definetively watch the series again sometime soon :)\n\n39) OnePageWars: Build Y1 Serenity_valley\n\tOnePageWars: Zoe: They're not coming. Command says it's to hot. They're pulling out. We're to lay down arms.\n\n40) haukec: Move Y1 Haukec Serenity_valley\nCatastrophe Serenity_valley Y\n\tOnePageWars: And btw, I looked it up and according to http://wiki.serenitymush.com/wiki/index.php/Battle_of_Serenity_Valley It was only two weeks that they held out after Independent High Command had surrendered.\n\n41) OnePageWars: Sacrifice G1 Serenity_valley\nBuild B1 Onepagewars\n\n42) haukec: Attack G1 Onepagewars\n\tOnePageWars: The Independent forces at Serenity Valley who refused to surrender have been eliminated or captured.\n\n43) OnePageWars: Pass\n\n44) haukec: Trade Y3 B3 Onepagewars\nCatastrophe Onepagewars B\n\tOnePageWars: "We're all just folk now." - Mal\n\thaukec: Thank you very much for this challenging and interesting match :)\n\tOnePageWars: The same to you. I very much enjoyed both the gameplay and the Firefly quotations with a little role play thrown in at the end.\n\thaukec: Half of writing history is hiding the truth. ;)\n\thaukec: btw, I started implementing the game in java, having this as an android app would be awesome :)\n\tOnePageWars: Yes, it would.\n\n\nHomeworlds Online (SDG# 25012)\nVariants: "Unrated"\nStarted: 2013.12.29, Ended: 2014.1.14\nParticipants: foksieloy (S), fogus (N)\nWinner: foksieloy\n\n1) fogus: Homeworld R1 B2 G3\n\tfoksieloy: Hi! Have fun, if you have questions, ask. :)\n\tfogus: Thank you. Will do.\n\n2) foksieloy: Homeworld G1 B3 Y3\n\n3) fogus: Build G1 Fogus\n\tfogus: I totally went with Andrew Looney's opening move without fully understanding why. I suspect that I'll get it as I get more (some) games under my belt.\n\n4) foksieloy: Build Y1 Foksieloy\n\tfoksieloy: The homeworld setup you are playing is called a banker. It involves quickly using g1 ships to "reserve" large pieces in the form of stars to later build by sacrificing the g1 ship (since the star returns to the stash if no ships are present). I anticipated that, so that is why g1 is in my system as opposed to b1. It reduces the number of g1 ships you can build without giving me access to g2.\n\n5) fogus: Trade G1 Y1 Fogus\n\n6) foksieloy: Trade Y1 G1 Foksieloy\n\n7) fogus: Build G1 Fogus\n\n8) foksieloy: Build G2 Foksieloy\n\tfogus: How long have you been playing? My son and I have played a few games, but I never felt that I knew what I was doing. I very much appreciate your taking the time to play/discuss with me.\n\tfoksieloy: Not long truth be told, played a bit with family and recently joined here. But had (and still have) a lot of parallel games here, been reading a bit on forums, and just generally analyzing the game. I have a tendency to learn quickly. In its essence this is a resource management game. Here is something that might help you at first: consider each ship pip to be 1 point, and each distance that the ship is closer to the enemy homeworld is 1 point more. So a g2 in your system is 2 points, a g1 next to the enemies system is 4 points. And then try to keep your score growing while not allowing the opponent to do the same. It is a solid abstraction for the beginning of learning the game.\n\n9) fogus: Trade G1 B1 Fogus\n\tfoksieloy: Just a warning, you might not see it but if you build a green ship now, you lose the game. Just a fair warning. :)\n\tfogus: The pip-scoring is a nice idea. Thanks.\n\tfogus: Can you say more about the dangers of another green ship? I know about catastrophes, but I thought it was 4 of the same color.\n\n10) foksieloy: Trade G2 R2 Foksieloy\n\tfoksieloy: You would have 3 green ships . I sacrifice my y3. I move my g1 to your system and declare catastrophe green. You only have y1 left. I just need to get my 2pip ship into your system and it is game over (and I can get it there within 3 turns), and 3 turns is not enough for you to reach a 2 pip ship.\n\n11) fogus: Discover Y1 Fogus R3 Abalone\n\tfogus: Wow! So cool. Way deeper than I can see ATM.\n\tfogus: Hmm, I'm beginning to see how I'm at a disadvantage for ship size.\n\n12) foksieloy: Build R1 Foksieloy\n\n13) fogus: Build G1 Fogus\n\tfoksieloy: A y3 ship is quite good as a pressure strategy, your opponent is constantly evaluating whether to go or not to go over 2 pyramids of same color in system. And yes, I am trying to lock your out of mediums. This is the main advantage of the Goldilocks start (x1 and x3): good control over 2pip, and through that over 3pip.\n\tfoksieloy: Also, happy new year!\n\n14) foksieloy: Build G2 Foksieloy\n\n15) fogus: Trade B1 Y1 Fogus\n\tfogus: Happy new year to you too. :-)\n\n16) foksieloy: Trade G2 B2 Foksieloy\n\n17) fogus: Move G1 Fogus Abalone\n\n18) foksieloy: Build G2 Foksieloy\n\n19) fogus: Build G2 Abalone\n\n20) foksieloy: Trade G2 B2 Foksieloy\n\n21) fogus: Build G2 Fogus\n\n22) foksieloy: Discover B2 Foksieloy Y2 Nurgle\n\n23) fogus: Trade Y1 R1 Fogus\n\n24) foksieloy: Build Y1 Foksieloy\n\tfogus: My ham-handed attempt at a catastrophe was thwarted, so instead I thought it wise to try and get a G2. However, I have no clear vision of a strategy at the moment. Do you mind sharing your thoughts?\n\n25) fogus: Build R2 Fogus\n\tfoksieloy: At the moment I am trying to lock you out of blue to limit your color mobility (switching to colors you need). This is putting me at a slight disadvantage with green which I now intend to start working on. Your best bet at the moment might be to pressure me into giving you a g3 and get some presence in a size 2 system to threaten invasion of my homeworld.\n\n26) foksieloy: Sacrifice Y3 Foksieloy\nMove R1 Foksieloy Nurgle\nMove R1 Nurgle Abalone\nMove R1 Abalone Fogus\nCatastrophe Fogus Red\n\n27) fogus: Trade G2 Y2 Fogus\n\n28) foksieloy: Sacrifice B2 Nurgle\nTrade B2 G2 Foksieloy\nTrade G1 B1 Foksieloy\n\tfoksieloy: See what I meant with y3 being a threat? :)\n\tfogus: OMG! Lol. I suck so bad. :-)\n\n29) fogus: Build G1 Fogus\n\tfoksieloy: Warning: our homesystems are now connected. :)\n\n30) foksieloy: Build Y1 Foksieloy\n\n31) fogus: Trade G1 B1 Fogus\n\n32) foksieloy: Discover Y1 Foksieloy G2 Ramsesii\n\n33) fogus: Build Y2 Abalone\n\tfoksieloy: So, I see you are on BGG as well.\n\n34) foksieloy: Build Y2 Ramsesii\n\n35) fogus: Move B1 Fogus Abalone\n\tfogus: I'm beginning to see how this game works... but my trouble still is seeing more than 1.5 moves ahead. I'm working on it though. :-)\n\n36) foksieloy: Build Y3 Foksieloy\n\n37) fogus: Sacrifice Y2 Fogus\nMove Y1 Abalone Ramsesii\nMove Y2 Abalone Ramsesii\nCatastrophe Ramsesii Y\n\n38) foksieloy: Move Y3 Foksieloy Fogus\n\n39) fogus: Trade G1 Y1 Abalone\n\n40) foksieloy: Sacrifice R2 Foksieloy\nAttack G3 Fogus\nPass\n\tfoksieloy: And that was a mistake :>\n\n\tfoksieloy: Good game. :)\n\tfogus: You're being kind. Thanks a ton for talking through many moves with me.\n\nHomeworlds Online (SDG# 25033)\nVariants: "Hard time"\nStarted: 2014.1.1, Ended: 2014.2.1\nParticipants: Broccoli_Commander (S), Danner (N)\nWinner: Broccoli_Commander\n\n1) Danner: Homeworld B1 R2 G3 Orion\n\tDanner: Hi! Have a good game.\n\n2) Broccoli_Commander: Homeworld B2 R3 G3\n\tDanner: How shall we resolve cycles?\n\n3) Danner: Build G1 Danner\n\tBroccoli_Commander: Hi, thanks have a good game too\r\n\r\nFor cycles I never encountered the problem but I'd suggest the following:\r\n\r\nIf a given situation is encountered twice we are not allowed to create it a third time.\n\tBroccoli_Commander: For instance player 1 plays X -> A and thus initiates a cycle like:\r\n\r\nX->A->B->C->D->A\r\n\r\nPlayer 2 is still allowed to play A->B (it might be the very best option; P1 is responsible for this play because he chose to play X->A in the first place) So we could have\r\n\r\nX->A->B->C->D->A->B->C->D\r\n\r\nbut at this stage P1 must deviate from D->A: he started it so he must end it.\r\n\r\nX->A->B->C->D->A->B->C->D->Y\r\n\r\nWhaddya think?\n\tDanner: Ok, it seems fine to me.\n\n4) Broccoli_Commander: Build G1 Broccoli_commander\n\n5) Danner: Trade G1 Y1 Danner\n\n6) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\n7) Danner: Build Y1 Danner\n\n8) Broccoli_Commander: Build G1 Broccoli_commander\n\n9) Danner: Build Y1 Danner\n\n10) Broccoli_Commander: Build B1 Broccoli_commander\n\n11) Danner: Discover Y1 Danner G3 Tirade\n\n12) Broccoli_Commander: Trade G3 Y3 Broccoli_commander\n\n13) Danner: Build Y2 Danner\n\n14) Broccoli_Commander: Discover B1 Broccoli_commander G1 Pea\n\n15) Danner: Trade Y2 B2 Danner\n\n16) Broccoli_Commander: Build B2 Pea\n\tDanner: I'm sorry for the delay.\n\n17) Danner: Move B2 Danner Tirade\n\n18) Broccoli_Commander: Trade B2 R2 Pea\n\n19) Danner: Build Y2 Tirade\n\n20) Broccoli_Commander: Build Y2 Broccoli_commander\n\n21) Danner: Trade Y2 R2 Tirade\n\n22) Broccoli_Commander: Build B2 Broccoli_commander\n\n23) Danner: Build B3 Tirade\n\n24) Broccoli_Commander: Build B3 Pea\n\n25) Danner: Discover B2 Tirade G1 Bob\n\n26) Broccoli_Commander: Sacrifice B2 Broccoli_commander\nTrade B3 Y3 Pea\nTrade Y3 G3 Broccoli_commander\n\n\tDanner: Darn it. Sorry.\n\tBroccoli_Commander: Too bad, the interesting things were just ahead :P\r\nNo worries, though. It happens.\n\nHomeworlds Online (SDG# 25024)\nVariants: "Hard time"\nStarted: 2014.1.2, Ended: 2014.1.11\nParticipants: Aristos (S), wil (N)\nWinner: Aristos\n\n1) wil: Homeworld B2 R1 G3\n\tAristos: Well met, again. \n\n2) Aristos: Homeworld G3 B2 Y3\n\twil: I look forward to the game....wondering where my first mistake will be...\n\n3) wil: Build G1 Wil\n\n4) Aristos: Build Y1 Aristos\n\n5) wil: Trade G1 Y1 Wil\n\tAristos: Your first mistake was challenging the dread power of the Aristos Empire! Mwuhahahahahaha!\n\tAristos: [Later, in Aristos Command Center]\r\n"Um, sir..."\r\n"Yes?"\r\n"There's a problem with the omnipotent strategy module."\r\n"Problem?"\r\n"Yes, sir. Someone spilled coffee on it. It's busted."\r\n"But... but I already broadcast my maniacal laugh across the galaxy! I assumed the module would be working. Get it fixed!" \r\n"Right away, sir. I just thought you should know."\r\n"If you can't get it fixed, I need you to research technology for recalling radio transmissions..." \n\n6) Aristos: Trade Y1 R1 Aristos\n\twil: Omnipotent strategy module?? You are still using those? We've sent a telescope many multiples of the speed of light to the next galaxy looking back and are watching the history of our galaxy and we can't get back far enough to see when we used those ancient contraptions.\n\n7) wil: Build Y1 Wil\n\tAristos: "Get in here, private!"\r\n"Yes, sir?"\r\n"How in hell did the wil ambassador hear our discussion about the omniscient strategy module?"\r\n"Well, sir, the last output of the omniscient strategy module before the coffee was spilled on it was a directive to enable permanent galactic broadcast mode on all command ships."\r\n"What kind of ridiculous plan is that?"\r\n"An omniscient strategy means making sure that everyone knows everything."\r\n"WHAT?! We'll never win like that!"\r\n"Oh. Then we should have been using the victory strategy modules all along. I believe that's what the wil are using." \r\n"Right. Effective immediately, we will begin using the victory strategy modules. AND TURN OFF THE BROADCAST."\r\n"Yes, sir."\n\n8) Aristos: Build R1 Aristos\n\twil: We've got word now that they are confusing their omniscient strategy with their omnimpotent stategy module... it is better than we thought. \n\n9) wil: Discover Y1 Wil G3 G3\n\tAristos: It could hardly be omnipotent if it wasn't also omniscient. \n\n10) Aristos: Build R2 Aristos\n\n11) wil: Build Y1 G3\n\n12) Aristos: Trade R2 G2 Aristos\n\twil: Beware the speech...I knew you were an aggressive violent race by all that shouting.... \n\n13) wil: Build Y2 Wil\n\tAristos: I just like the color red, that's all.\n\n14) Aristos: Build Y2 Aristos\n\n15) wil: Trade Y2 R2 Wil\n\n16) Aristos: Discover R1 Aristos G1 First\n\n17) wil: Build Y2 Wil\n\n18) Aristos: Move Y2 Aristos First\n\n19) wil: Trade Y2 B2 Wil\n\n20) Aristos: Build R2 First\n\n21) wil: Build Y2 Wil\n\n22) Aristos: Sacrifice G2 Aristos\nBuild Y2 First\nBuild Y3 Aristos\n\n23) wil: Sacrifice Y2 Wil\nMove B2 Wil G3\nMove R2 Wil G3\n\n24) Aristos: Sacrifice Y2 First\nMove Y3 Aristos First\nMove Y3 First G3\n\n25) wil: Build Y2 G3\nCatastrophe G3 Y\n\n26) Aristos: Build Y1 First\n\n27) wil: Build B1 G3\n\twil: Sorry, that ship was contaminated with yellow fever, while we 'know' it entered our airspace for medical assistance it was to far gone and infected two of our ships as well, they all had to be quarantined back in the bank.\n\n28) Aristos: Trade R1 B1 Aristos\n\tAristos: I totally understand. I would have done the same. \n\n29) wil: Trade B1 Y1 G3\n\n30) Aristos: Build B1 Aristos\n\n31) wil: Build Y2 Wil\n\n32) Aristos: Trade B1 R1 Aristos\n\n33) wil: Discover Y2 Wil B3 B3\n\n34) Aristos: Discover R2 First Y3 Second\n\n35) wil: Build B1 G3\n\n36) Aristos: Build R2 First\n\n37) wil: Build R3 G3\n\n38) Aristos: Build R3 Aristos\n\n39) wil: Move R2 G3 First\n\n40) Aristos: Attack R2N First\n\n41) wil: Build R3 G3\n\n42) Aristos: Sacrifice Y2 First\nMove R1 First G3\nMove R2 First G3\nCatastrophe G3 Red\n\tAristos: First blood.\n\n43) wil: Trade B2 R2 G3\n\twil: "I just like the color of red, that's all"\n\tAristos: Yes. And I like it so much, I want *all* of it. ;-)\n\tAristos: sacrifice y2 First\r\nmove r1 First g3\r\nmove r2 First g3\r\ncatastrophe g3 red\n\n44) Aristos: Build Y2 First\n\tAristos: I felt bad about taking all the red, so I decided to share with you. I'm not sure what went wrong in the transfer. \n\n45) wil: Build G1 Wil\n\n46) Aristos: Move Y2 First B3\n\n47) wil: Discover G1 Wil Y3 Y3\n\tAristos: You are one move ahead of me on every branch. I think I paid too much to get ahead of you on size 3 ships.\n\n48) Aristos: Sacrifice R1 Aristos\nAttack Y2 B3\n\n49) wil: Build Y2 G3\n\twil: What do you mean, ahead on every branch? I feel like I haven't yet come close to learning this game.\r\n\n\tAristos: I feel like I'm short one move -- if I build, I open you up to a much more successful build unless I can build twice. If I move to attack, I end up short enough ships to defend afterward. It's like I'm one move out of sync with every strategy that I can come up with. I lost tempo when I attacked... I still think it was a good move because the extra size 3 ship puts me ahead, but I can't figure anything to *do* with it. It's like I'm just in a holding pattern, unable to advance now. \n\n50) Aristos: Build R1 Aristos\n\twil: Have no fear...I will make some mistake which you can capitalize.\n\n51) wil: Sacrifice G1 Y3\nBuild Y3 Wil\n\n52) Aristos: Move R3 Aristos First\n\n53) wil: Trade Y2 B2 G3\n\n54) Aristos: Move R3 First G3\n\n55) wil: Build R1 G3\n\n56) Aristos: Build R3 First\n\n57) wil: Build R3 G3\nCatastrophe G3 R\n\n58) Aristos: Move R3 First G3\n\twil: \t\r\n"I just like the color of red, that's all" \n\n59) wil: Discover B2 G3 G1 G1\n\n60) Aristos: Sacrifice R2 First\nAttack Y1 G3\nAttack B1 G3\n\twil: I've flumoxed this up\n\n61) wil: Trade Y1 R1 Wil\n\tAristos: Believe it or not, I don't think you made a mistake until you just now triggered the catastrophe in red. You made an excellent play and caught up on the number of size-3 ships. I piled into your g3 system. I *think* your better move, rather than catastrophe me, was to keep advancing your blue ships toward my homeworld. If I took the time to actually capture some of your ships, I think you would have beaten me home. By triggering the catastrophe, you actually lost more ground than I did -- yes, I lost a size-3 ship, but you lost a size-2 and a size-1 AND you lost a turn. I don't have any pressure on me now, so I was free to use my other red ship to come right back into the system. \r\n\r\nYou've fought very well, and I certainly wouldn't call the game at this point. I may have a small advantage now, but it isn't enough to declare victory by any means! Game on!\n\n62) Aristos: Build R2 G3\n\twil: I considered that, but I figured you'd sack your r3 and take them all in one fell swoop and then I'd be right where I am now, except you could grow another R3 and I couldn't.\n\n63) wil: Build G1 Wil\n\tAristos: Perhaps. I didnt think it was worth the expense, but I guess you couldn't know what was in my head. :-)\n\tAristos: Wow. That was almost a disaster.\n\n64) Aristos: Sacrifice Y2 B3\nMove R2 G3 Wil\nMove R2 Second Wil\nCatastrophe Wil Red\n\n65) wil: Trade G1 R1 Wil\n\n66) Aristos: Move R3 G3 G1\n\tAristos: Listening to a new piece of music I found online... to the tune of "Carry On, My Wayward Son":\r\n"Those carry ons must weigh a ton... each passenger's allowed just one... so give my weary arms some rest... don't'cha fly no more!" \r\nhttps://origin.cdbaby.com/cd/bohnhoff3\n\twil: hee hee... sounds better than Kansas to me.\r\n\n\n\twil: I'll just not get outta this one...thanx\n\tAristos: Thanks for the game. \n\nHomeworlds Online (SDG# 24998)\nStarted: 2014.1.5, Ended: 2014.3.15\nParticipants: ts52 (S), OnePageWars (N)\nWinner: ts52\n\n1) OnePageWars: Homeworld R1 B2 G3\n\n2) ts52: H Y3 B2 G3\n\tOnePageWars: gl hf!\n\n3) OnePageWars: Build G1 Onepagewars\n\tts52: Hi. Have a good game.\n\tts52: Hi. Have a good game.\n\n4) ts52: B G1 Ts52\n\tOnePageWars: tagg!\n\n5) OnePageWars: Trade G1 B1 Onepagewars\n\n6) ts52: Discover G1 Ts52 B1 Grover\n\n7) OnePageWars: Build G1 Onepagewars\n\n8) ts52: Build G1 Grover\n\n9) OnePageWars: Trade G1 Y1 Onepagewars\n\n10) ts52: Trade G1 R1 Grover\n\n11) OnePageWars: Build Y1 Onepagewars\n\n12) ts52: Build G1 Ts52\n\n13) OnePageWars: Build B1 Onepagewars\n\n14) ts52: Build R1 Grover\n\n15) OnePageWars: Discover B1 Onepagewars G3 Rubik's_cube\n\n16) ts52: Build R2 Grover\n\n17) OnePageWars: Build B2 Rubik's_cube\n\n18) ts52: Trade R2 Y2 Grover\n\n19) OnePageWars: Build B3 Rubik's_cube\n\n20) ts52: Build R2 Grover\n\n21) OnePageWars: Trade B3 R3 Rubik's_cube\n\n22) ts52: Discover R2 Grover Y3 Bigbird\n\n23) OnePageWars: Move Y1 Onepagewars Rubik's_cube\n\n24) ts52: D R1 Grover Y3 Zoe\n\n25) OnePageWars: Build R2 Rubik's_cube\n\n26) ts52: Build G1 Grover\n\n27) OnePageWars: Move R3 Rubik's_cube Grover\n\n28) ts52: Sacrifice Y2 Grover\nMove G1 Grover Zoe\nMove G1 Grover Bigbird\n\n29) OnePageWars: Attack R1 Grover\n\n30) ts52: B G2 Zoe\n\n31) OnePageWars: Trade R1 Y1 Grover\n\n32) ts52: Build R1 Bigbird\n\n33) OnePageWars: Move R3 Grover Bigbird\n\n34) ts52: Move R2 Bigbird Grover\n\n35) OnePageWars: Move R3 Bigbird Grover\n\n36) ts52: Build G2 Bigbird\n\n37) OnePageWars: Attack R2 Grover\n\n38) ts52: Sacrifice G2 Zoe\nBuild R2 Bigbird\nBuild R3 Zoe\n\n39) OnePageWars: Build R3 Rubik's_cube\n\n40) ts52: Build G2 Zoe\n\n41) OnePageWars: Build B3 Rubik's_cube\n\n42) ts52: Build G2 Ts52\n\n43) OnePageWars: Move R3 Grover Bigbird\n\n44) ts52: M R3 Zoe Grover\n\n45) OnePageWars: Attack R2 Bigbird\n\n46) ts52: Attack R2 Grover\n\n47) OnePageWars: Attack G2 Bigbird\n\n48) ts52: A Y1 Grover\n\n49) OnePageWars: Discover R3 Rubik's_cube Y2 Hoban_washburne\n\n50) ts52: M G2 Ts52 Grover\n\n51) OnePageWars: Move R3 Hoban_washburne Zoe\n\n52) ts52: Move R2 Grover Bigbird\nCatastrophe Bigbird Red\n\n53) OnePageWars: Attack G2 Zoe\n\n54) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Zoe\nBuild R2 Zoe\nCatastrophe Zoe Red\n\n55) OnePageWars: Trade B3 R3 Rubik's_cube\n\n56) ts52: Build R1 Grover\n\n57) OnePageWars: Build B3 Rubik's_cube\n\n58) ts52: Move R3 Grover Bigbird\n\n59) OnePageWars: Move R3 Rubik's_cube Grover\n\n60) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Grover\nBuild R2 Grover\nCatastrophe Grover Red\n\n\tOnePageWars: good game, wp.\n\tts52: Thanks. I wasn't so sure I'd won.\n\nHomeworlds Online (SDG# 25014)\nStarted: 2014.1.6, Ended: 2014.6.2\nParticipants: Mandrel (S), wil (N)\nWinner: Mandrel\n\n1) wil: Homeworld B2 R1 G3\n\n2) Mandrel: Homeworld B3 R2 G3\n\twil: starting another prior to finishing me off on the last??\n\n3) wil: Build G1 Wil\n\tMandrel: I like to have gamea at different stages. Plus I don't think things are at all settled in the other game yet...\n\twil: I don't mind at all! I was in three games with one person, it was quite interesting looking at them. As players response varies I like to keep 6 or more games going at once...the more the merrier as I am still way learning.\n\n4) Mandrel: Build G1 Mandrel\n\twil: I think for the first move when you select a big ship the same color little ship should come with it.\n\n5) wil: Trade G1 R1 Wil\n\n6) Mandrel: Trade G1 R1 Mandrel\n\n7) wil: Build R2 Wil\n\n8) Mandrel: B R2 Mandrel\n\n9) wil: Trade R2 Y2 Wil\n\n10) Mandrel: T R1 Y1 Mandrel\n\n11) wil: Build Y1 Wil\n\n12) Mandrel: Build G1 Mandrel\n\n13) wil: Trade Y1 B1 Wil\n\n14) Mandrel: B Y1 Mandrel\n\n15) wil: Build B1 Wil\n\n16) Mandrel: T Y1 B1 Mandrel\n\n17) wil: Discover B1 Wil G3 G3\n\n18) Mandrel: Discover B1 Mandrel G1 Fear\n\n19) wil: Build B2 G3\n\n20) Mandrel: Build B2 Fear\n\n21) wil: Build B3 Wil\n\n22) Mandrel: T B1 R1 Fear\n\n23) wil: Trade B3 Y3 Wil\n\n24) Mandrel: T R2 Y2 Mandrel\n\n25) wil: Move Y2 Wil G3\n\n26) Mandrel: B R2 Fear\n\n27) wil: M R1 Wil G3\n\n28) Mandrel: T R1 Y1 Fear\n\n29) wil: D B2 G3 G1 G1\n\n30) Mandrel: B G2 Mandrel\n\n31) wil: Build G2 Wil\n\n32) Mandrel: Move G1 Mandrel Fear\n\n33) wil: Build Y1 G3\n\n34) Mandrel: Trade Y1 R1 Mandrel\n\n35) wil: M Y1 G3 G1\n\n36) Mandrel: D G1 Fear B3 George\n\n37) wil: B Y1 Wil\n\n38) Mandrel: Build Y2 Mandrel\n\n39) wil: S G3 Wil\nB R2 G3\nB Y3 G3\nB Y3 G1\n\n40) Mandrel: S G3 Mandrel\nBuild G2 George\nBuild G3 Mandrel\nBuild R3 Fear\n\n41) wil: B G3 Wil\n\twil: 4 moves to mate. (He says not very confidently at all)\n\twil: All planets must align, and the moon be in aquarius...\n\n42) Mandrel: M R3 Fear George\n\tMandrel: I fear you may be correct.\n\tMandrel: I'm muttering incantations to gain favour from the Fates.\n\n43) wil: S Y3 G1\nM B1 G3 G1\nM B1 G1 Mandrel\nM B2 G1 Mandrel\n\twil: Your incantations worked...I can't see whatever I thought I saw and I left myself no notes!\n\n44) Mandrel: S R2 Fear\nAttack B1N Mandrel\nAttack B2N Mandrel\n\tMandrel: I fear that it is undoubtedly only a stay of execution. \n\n45) wil: S Y3 G3\nM B1 Wil G3\nM B1 G3 G1\nM B1 G1 Mandrel\nC Mandrel B\n\twil: Yes, I think I've come to my senses and quit wasting time. Any preferences for last meal?\n\n46) Mandrel: M R1 Mandrel G3\n\n47) wil: S G3 Wil\nB G3 Wil\nB Y3 G3\nB Y3 G1\n\n48) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild R2 G3\nBuild R3 George\nCatastrophe G3 R\n\n49) wil: T Y1 B1 Wil\n\twil: I was gonna just send a pawn in, but that looked like it was gonna get circular....\n\n50) Mandrel: Sacrifice Y2 Mandrel\nMove R3 George Wil\nMove R3 George Wil\n\n51) wil: T G2 R2 Wil\nC Wil R\n\n52) Mandrel: Move B2 Fear Wil\n\n\twil: Sweet! Nice plays!\n\tMandrel: Good game, well played.\n\nHomeworlds Online (SDG# 25077)\nStarted: 2014.1.6, Ended: 2014.2.15\nParticipants: OnePageWars (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R3 B2 G3\n\n2) OnePageWars: Homeworld R1 B2 G3\n\twil: Gonna try fortress..\n\n3) wil: Build G1 Wil\n\tOnePageWars: tagg!\n\n4) OnePageWars: Build G1 Onepagewars\n\n5) wil: Trade G1 R1 Wil\n\n6) OnePageWars: Trade G1 R1 Onepagewars\n\n7) wil: Build R2 Wil\n\n8) OnePageWars: Build R2 Onepagewars\n\n9) wil: Trade R2 B2 Wil\n\n10) OnePageWars: Trade R2 Y2 Onepagewars\n\n11) wil: Build R2 Wil\n\n12) OnePageWars: Build R2 Onepagewars\n\n13) wil: Trade R2 Y2 Wil\n\n14) OnePageWars: Trade R2 G2 Onepagewars\n\n15) wil: Build R2 Wil\n\tOnePageWars: These are some early size twos that we're getting. :) It's amazing how quickly each game I play diverges from every other I have ever played.\n\n16) OnePageWars: Build R2 Onepagewars\n\twil: Yes they can be quite different.\n\n17) wil: Discover R2 Wil G1 G1\n\n18) OnePageWars: Discover R2 Onepagewars G3 Hi____\n\n19) wil: Discover R1 Wil B1 B1\n\tOnePageWars: I was hoping it would run the underscores together and then you would have a really hard time moving to my world :)\n\n20) OnePageWars: Build Y1 Onepagewars\n\n21) wil: Build G1 Wil\n\n22) OnePageWars: Move Y1 Onepagewars Hi____\n\n23) wil: Move G1 Wil B1\n\n24) OnePageWars: Move R2 Hi____ B1\n\n25) wil: Build R2 G1\n\n26) OnePageWars: Move R1 Onepagewars Hi____\n\n27) wil: Sacrifice Y2 Wil\nMove B2 Wil G1\nMove R2 G1 Hi____\n\n28) OnePageWars: Build R3 Hi____\n\twil: I like 'lets see what happens' moves.\n\n29) wil: Build R3 G1\n\n30) OnePageWars: Attack R2 Hi____\n\n31) wil: Trade R3 Y3 G1\n\tOnePageWars: So much red tech.\n\n32) OnePageWars: Discover R2 Hi____ G2 Hola__\n\n33) wil: Build R3 G1\n\tOnePageWars: Close game, afaict.\n\n34) OnePageWars: Attack G1 B1\n\n35) wil: Build Y1 G1\n\n36) OnePageWars: Build Y1 Onepagewars\n\n37) wil: Move Y1 G1 Wil\n\n38) OnePageWars: Build Y2 Hi____\n\n39) wil: Build Y2 G1\n\n40) OnePageWars: Discover Y1 Hi____ G2 Hey___\n\n41) wil: Build Y3 Wil\n\n42) OnePageWars: Build Y3 Hi____\n\n43) wil: Move Y3 G1 Hola__\n\n44) OnePageWars: Move R3 Hi____ Hey___\n\n45) wil: Sacrifice R1 B1\nAttack R2 Hola__\n\n46) OnePageWars: Trade G1 B1 B1\n\n47) wil: Build G1 Wil\n\n48) OnePageWars: Move Y2 Hi____ B1\n\n49) wil: Move Y3 Hola__ B1\n\n50) OnePageWars: Sacrifice Y2 B1\nMove R2 B1 Hey___\nMove B1 B1 Hey___\n\n51) wil: Build Y2 G1\n\n52) OnePageWars: Move G2 Onepagewars Hi____\n\n53) wil: Discover Y3 B1 B3 B3\n\n54) OnePageWars: Build B1 Hey___\n\n55) wil: Build B1 G1\n\n56) OnePageWars: Move B1 Hey___ G1\n\n57) wil: Move B1 G1 B3\n\n58) OnePageWars: Build B3 Hey___\n\n59) wil: Trade B1 G1 B3\n\n60) OnePageWars: Build B1 G1\n\n61) wil: Move B2 G1 Hola__\n\n62) OnePageWars: Move R3 Hey___ Hi____\n\n63) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 Hola__\nBuild R1 Hola__\n\n64) OnePageWars: Move B1 Hey___ Hi____\n\n65) wil: Attack B1 G1\n\n66) OnePageWars: Pass\n\n67) wil: Move G1 Wil G1\n\n68) OnePageWars: Pass\n\n69) wil: Sacrifice Y3 Wil\nMove G1 B3 G1\nMove G1 G1 Hi____\nMove G1 G1 Hi____\nCatastrophe Hi____ G\n\n70) OnePageWars: Build Y3 Hey___\n\n71) wil: Build Y3 Wil\n\n72) OnePageWars: Build G1 Onepagewars\n\n73) wil: Trade B3 G3 Hola__\n\n74) OnePageWars: Discover G1 Onepagewars B3 Yippee\n\n75) wil: Move R2 G1 Yippee\n\n\nHomeworlds Online (SDG# 24922)\nVariants: "Hard time"\nStarted: 2014.1.7, Ended: 2014.1.7\nParticipants: balon (S), Marmalade (N)\nWinner: Marmalade\n\n\nHomeworlds Online (SDG# 25097)\nVariants: "Hard time"\nStarted: 2014.1.7, Ended: 2014.2.8\nParticipants: OnePageWars (S), foksieloy (N)\nWinner: foksieloy\n\n1) foksieloy: Homeworld R1 B3 G3\n\n2) OnePageWars: Homeworld R2 B1 G3\n\tfoksieloy: Howdy, good luck and have fun! :)\n\n3) foksieloy: Build G1 Foksieloy\n\n4) OnePageWars: Build G1 Onepagewars\n\tOnePageWars: gl hf!\n\n5) foksieloy: Trade G1 Y1 Foksieloy\n\n6) OnePageWars: Trade G1 Y1 Onepagewars\n\n7) foksieloy: Build G1 Foksieloy\n\n8) OnePageWars: Build G1 Onepagewars\n\n9) foksieloy: Trade G1 B1 Foksieloy\n\n10) OnePageWars: Trade G1 B1 Onepagewars\n\n11) foksieloy: Build G1 Foksieloy\n\n12) OnePageWars: Build B2 Onepagewars\n\n13) foksieloy: Trade G3 Y3 Foksieloy\n\n14) OnePageWars: Discover B2 Onepagewars G3 Hydrogen\n\n15) foksieloy: Build G1 Foksieloy\n\n16) OnePageWars: Build B2 Hydrogen\n\n17) foksieloy: Discover B1 Foksieloy G2 Tibbers\n\n18) OnePageWars: Trade B2 Y2 Hydrogen\n\n19) foksieloy: Build B2 Tibbers\n\tOnePageWars: Flash into Tibbers stun OP! :)\n\n20) OnePageWars: Build B2 Hydrogen\n\n21) foksieloy: Sacrifice Y1 Foksieloy\nDiscover B1 Tibbers G3 Valor\n\tfoksieloy: Annie now has blue :P\n\tOnePageWars: Is it a supp Annie? If so, then at least your mid doesn't have it.\n\n22) OnePageWars: Trade B2 R2 Hydrogen\n\n23) foksieloy: Build B2 Valor\n\n24) OnePageWars: Build B3 Hydrogen\n\n25) foksieloy: Build B3 Tibbers\n\n26) OnePageWars: Trade B3 R3 Hydrogen\n\n27) foksieloy: Trade B3 R3 Tibbers\n\n28) OnePageWars: Build B3 Hydrogen\n\n29) foksieloy: Build B3 Tibbers\n\n30) OnePageWars: Build Y1 Hydrogen\n\n31) foksieloy: Trade B2 Y2 Tibbers\n\n32) OnePageWars: Trade Y1 G1 Hydrogen\n\n33) foksieloy: Sacrifice Y2 Tibbers\nMove B2 Valor Onepagewars\nMove B1 Valor Onepagewars\nCatastrophe Onepagewars Blue\n\n\tOnePageWars: good game.\n\tfoksieloy: Good game!\n\nHomeworlds Online (SDG# 24978)\nVariants: "Hard time"\nStarted: 2014.1.7, Ended: 2014.3.8\nParticipants: Grosseteste (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Grosseteste: Homeworld G3 B1 R3\n\twil: thx for the game!\n\n3) wil: Build G1 Wil\n\tGrosseteste: My first ever SDG game. Good Luck!\n\tGrosseteste: My first ever SDG game. Good Luck!\n\n4) Grosseteste: Build R1 Grosseteste\n\twil: first sdg? have you played homeworlds?\n\tGrosseteste: Only a couple games of solitaire. A big part of the reason I joined SDG is to make sure I'm playing it right before I inflict it on friends :)\n\n5) wil: Trade G1 R1 Wil\n\twil: solitaire homworlds?? playing both sides?\n\n6) Grosseteste: Trade R1 Y1 Grosseteste\n\n7) wil: Build G1 Wil\n\n8) Grosseteste: Discover Y1 Grosseteste G2 Luce\n\tGrosseteste: How did I undo that?\n\tGrosseteste: How did I undo that?\n\tGrosseteste: And yes, playing both sides. Unitary Homeworlds?\n\twil: you get one undo...it appears you may have pushed the button twice?\n\n9) wil: Trade G1 B1 Wil\n\n10) Grosseteste: Build Y1 Luce\n\n11) wil: Trade B1 Y1 Wil\n\twil: You've got the right idea...but you should have built another yellow before you moved one out so you could build in multiple locations...\n\n12) Grosseteste: Build Y2 Luce\n\tGrosseteste: Thanks; also, could you tell me what "hard time" is?\n\twil: hard time means that if you don't play in so many days you automatically resign....\n\twil: hard time means that if you don't play in so many days you automatically resign....\n\n13) wil: Build Y2 Wil\n\n14) Grosseteste: Sacrifice Y2 Luce\nDiscover Y1 Luce G1 Colore\nDiscover Y1 Luce B1 Compotus\n\n15) wil: Trade Y1 B1 Wil\n\n16) Grosseteste: Trade Y1 G1 Compotus\n\n17) wil: Build B2 Wil\n\twil: since you can only travel from a star that is not the same size as your own, your goal is to place ships within range of my homweworld, and me in range of yours...going to a star two moves away from either of us is typically used as a safe zone, sort of counter productive toward attacking..(he says as is opponent amasses armament to beat him rudely 20 moves from now.\n\n18) Grosseteste: Build G1 Compotus\n\twil: b b2 wil\n\n19) wil: Discover B2 Wil G3 G3\n\n20) Grosseteste: Build G2 Compotus\n\n21) wil: Build B2 G3\n\n22) Grosseteste: Trade G2 Y2 Compotus\n\n23) wil: Build B3 G3\n\n24) Grosseteste: Build R1 Grosseteste\n\n25) wil: Trade B3 Y3 G3\n\n26) Grosseteste: Trade R3 B3 Grosseteste\n\n27) wil: Build B3 G3\n\n28) Grosseteste: Build R2 Grosseteste\n\n29) wil: Build B3 Wil\n\n30) Grosseteste: Trade R2 Y2 Grosseteste\n\n31) wil: Sacrifice B2 G3\nTrade B3 R3 G3\nTrade B3 Y3 Wil\n\n32) Grosseteste: Build R2 Grosseteste\n\n33) wil: Build B2 G3\n\n34) Grosseteste: T R2 G2 Grosseteste\n\n35) wil: Discover B2 G3 G2 G2\n\n36) Grosseteste: Trade B3 Y3 Grosseteste\n\n37) wil: Build G2 Wil\n\n38) Grosseteste: Build R2 Grosseteste\n\n39) wil: Sacrifice G3 Wil\nBuild B3 G2\nBuild B3 G2\nBuild G3 Wil\n\n40) Grosseteste: Sacrifice Y3 Grosseteste\nMove G1 Compotus G2\nMove G1 Compotus G2\nMove G2 Grosseteste G2\nCatastrophe G2 Green\n\n41) wil: Build B2 G3\n\n42) Grosseteste: Build Y1 Grosseteste\n\n43) wil: Build B3 G3\n\n44) Grosseteste: Build Y1 Colore\n\n45) wil: Discover B3 G3 G2 G2\n\n46) Grosseteste: Build Y3 Grosseteste\n\n47) wil: Sacrifice Y2 Wil\nMove Y3 G3 G2\nMove Y3 G2 Grosseteste\nCatastrophe Grosseteste Y\n\n48) Grosseteste: S Y2 Compotus\nMove Y1 Colore G2\nMove Y1 G2 Grosseteste\n\n49) wil: Sacrifice G3 Wil\nBuild B1 G3\nBuild B3 G2\nBuild B3 Wil\n\n50) Grosseteste: B Y1 Grosseteste\n\n51) wil: Sacrifice B2 G3\nTrade B3 Y3 G2\nTrade B3 G3 Wil\n\n52) Grosseteste: T R2 G2 Grosseteste\n\twil: I believe I could have ended this by sacking my transportfule and moving my bigBhind intoyour homeworld...then sacking my armor next move and attacking whatever is in your homeworld...but i always miss something...so I figured I'd play it safe and do a little nuclear proliferation\n\tGrosseteste: Cool. You may have noticed that I'm squeezing all the tactical analysis I can out of this one.\n\n53) wil: Move B3 G2 Grosseteste\n\n54) Grosseteste: Trade R1 G1 Grosseteste\n\n55) wil: Sacrifice R3 G3\nAttack G2 Grosseteste\nAttack G1 Grosseteste\nAttack Y1 Grosseteste\n\n56) Grosseteste: Build Y2 Grosseteste\n\n57) wil: Build Y2 Grosseteste\nCatastrophe Grosseteste Y\n\n\twil: Well, there was a lot to analyze there! If you desire more analysis, I am always willing to play..and my belief in this game is you learn by losing (take a look at how many losses I've achieved!!)\n\tGrosseteste: Thanks for the game!\n\nHomeworlds Online (SDG# 25096)\nVariants: "Hard time"\nStarted: 2014.1.9, Ended: 2014.2.23\nParticipants: Mandrel (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 R2 G3\n\n2) Mandrel: H R3 B2 G3\n\n3) TeeTeeTee: Build G1 Teeteetee\n\tMandrel: Have a good game\n\n4) Mandrel: Build G1 Mandrel\n\n5) TeeTeeTee: Trade G1 Y1 Teeteetee\n\tTeeTeeTee: You too!\n\n6) Mandrel: T G1 Y1 Mandrel\n\n7) TeeTeeTee: Build G1 Teeteetee\n\n8) Mandrel: B G1 Mandrel\n\n9) TeeTeeTee: Discover G1 Teeteetee Y3 Barbican\n\n10) Mandrel: D G1 Mandrel R1 District\n\n11) TeeTeeTee: Build Y1 Teeteetee\n\n12) Mandrel: Build Y2 Mandrel\n\n13) TeeTeeTee: Discover Y1 Teeteetee G3 Temple\n\n14) Mandrel: M Y1 Mandrel District\n\n15) TeeTeeTee: Build Y2 Temple\n\n16) Mandrel: Build Y2 District\n\n17) TeeTeeTee: Build Y3 Teeteetee\n\n18) Mandrel: Build Y3 Mandrel\n\n19) TeeTeeTee: Discover Y1 Temple B1 Victoria\n\n20) Mandrel: Move Y2 Mandrel Victoria\n\n21) TeeTeeTee: Sacrifice G1 Barbican\nBuild Y3 Temple\n\n22) Mandrel: Move Y1 District Temple\n\n23) TeeTeeTee: Move Y3 Temple District\n\n24) Mandrel: B G1 Mandrel\n\n25) TeeTeeTee: Trade Y1 B1 Teeteetee\n\n\tMandrel: So sorry to have let this game slide, I can't always keep up as well as I'd like.\n\nHomeworlds Online (SDG# 25138)\nVariants: "Hard time"\nStarted: 2014.1.11, Ended: 2014.1.21\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) wil: Build B2 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: Trade B2 Y2 Wil\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) wil: Build B2 Wil\n\n12) ts52: Move Y1 Ts52 Gonzo\n\n13) wil: Discover B2 Wil G3 G3\n\n14) ts52: Build G1 Ts52\n\n15) wil: Build B2 Wil\n\n16) ts52: Build Y1 Gonzo\n\n17) wil: Build B3 G3\n\n18) ts52: Trade Y1 R1 Gonzo\n\tts52: This isn't looking too good for me.\n\n19) wil: Trade B3 R3 G3\n\n20) ts52: Build R1 Gonzo\n\twil: I'm afraid for whatever shoe to drop...\n\n21) wil: Build B3 G3\n\tts52: I don't think there's a shoe. You just managed to get a good head start to get to large ships faster. Well played.\n\n22) ts52: Build Y1 Gonzo\n\twil: Yes, but I feel I need to pinchmyself, it is like dream....and learn how to duplicate that.\n\n23) wil: T B3 Y3 G3\n\n24) ts52: Build G1 Gonzo\n\n25) wil: Build B3 G3\n\n26) ts52: Build G2 Gonzo\n\n27) wil: Move B3 G3 Gonzo\n\n28) ts52: Move G2 Gonzo G3\n\n29) wil: Sacrifice R3 G3\nAttack G2 G3\nAttack R1 Gonzo\nAttack R1 Gonzo\n\n30) ts52: Trade G3 R3 Ts52\n\n31) wil: Sacrifice G2 G3\nBuild B3 G3\nBuild B3 Gonzo\n\n32) ts52: Move G1 Gonzo G3\n\twil: I suppose I coulda just sent the two red ones in...and then grew them... if you changed again sent in a queen... I don't always see the endings right.\n\n33) wil: Trade B3 R3 G3\n\n34) ts52: Move G1 Gonzo G3\n\n35) wil: Sacrifice Y2 Wil\nMove B3 Gonzo Ts52\nMove B3 Gonzo Ts52\n\n36) ts52: Build G2 G3\nCatastrophe G3 Green\n\n37) wil: Sacrifice R1 Gonzo\nAttack R3 Ts52\n\n38) ts52: Build G1 Ts52\n\n39) wil: Sacrifice R3 Ts52\nAttack G1 Ts52\nAttack G1 Ts52\nAttack Y1 Gonzo\n\tts52: Thanks for the game. I look forward to the next one.\n\twil: I was hopin I'd stay one step ahead...I've been one step behind so many times..\n\twil: Thank you...anytime, learning this is a blast.\n\n\nHomeworlds Online (SDG# 25139)\nVariants: "Hard time"\nStarted: 2014.1.12, Ended: 2014.2.3\nParticipants: zoltar (S), Aristos (N)\nWinner: zoltar\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) zoltar: Homeworld B1 Y2 G3\n\tAristos: Well met, Zoltar. I do not believe we have played each other before. Please forgive and remind me if my memory is faulty. \n\n3) Aristos: Build Y1 Aristos\n\tzoltar: I don't think we have. I don't play very often.\n\n4) zoltar: Build G1 Zoltar\n\n5) Aristos: Discover Y1 Aristos G1 Glow\n\n6) zoltar: Discover G1 Zoltar B3 Bluecheese\n\n7) Aristos: Build Y1 Aristos\n\n8) zoltar: Build G1 Zoltar\n\n9) Aristos: Build Y1 Glow\n\n10) zoltar: Build G2 Bluecheese\n\n11) Aristos: Build Y2 Glow\n\n12) zoltar: Trade G2 Y2 Bluecheese\n\n13) Aristos: Build Y3 Aristos\n\n14) zoltar: Build Y3 Bluecheese\n\n15) Aristos: Sacrifice Y2 Glow\nMove Y1 Glow Bluecheese\nMove Y1 Glow Bluecheese\nCatastrophe Bluecheese Yellow\n\n16) zoltar: Build G1 Bluecheese\n\n17) Aristos: Trade Y3 G3 Aristos\n\tzoltar: Ouch. Haven't played much lately and fell for an opening trap. Looks like I'm pretty much lost already! Well done.\n\n18) zoltar: Build G2 Bluecheese\n\tzoltar: I would normally resign here, but I'll play on a few more moves, as it's a 'ladder' game.\n\tAristos: I've screwed up leads like this before, but I'm going to try very hard not to do that this time. \n\n19) Aristos: Discover G3 Aristos Y1 Spark\n\n20) zoltar: Trade G2 Y2 Bluecheese\n\n21) Aristos: Trade Y1 R1 Aristos\n\tAristos: See, like that... I almost screwed it up. \n\n22) zoltar: Build G2 Bluecheese\n\n23) Aristos: Build R1 Aristos\n\n24) zoltar: Trade G1 R1 Zoltar\n\n25) Aristos: Move R1 Aristos Spark\n\n26) zoltar: Discover G2 Bluecheese B1 Blueberry\n\n27) Aristos: Build R2 Spark\n\n28) zoltar: Build R2 Zoltar\n\n29) Aristos: Build Y1 Aristos\n\n30) zoltar: Build G1 Zoltar\n\n31) Aristos: Discover G3 Spark B3 Blaze\n\n32) zoltar: Sacrifice G3 Zoltar\nBuild G2 Blueberry\nBuild G2 Blueberry\nBuild G3 Zoltar\n\n33) Aristos: Move R1 Spark Blaze\n\n34) zoltar: Move R2 Zoltar Bluecheese\n\n35) Aristos: Sacrifice G3 Blaze\nBuild R2 Aristos\nBuild R3 Blaze\nBuild R3 Spark\n\n36) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild G3 Bluecheese\nBuild R3 Bluecheese\n\n37) Aristos: Discover R3 Spark Y2 Shine\n\n38) zoltar: Move R3 Bluecheese Blueberry\n\tzoltar: I think I finally have compensation for the extra large ship, though I've been wondering just how many extra smaller ships do I need to make up for a large one. \n\n39) Aristos: Move R2 Spark Shine\n\tAristos: > just how many extra smaller ships do I need \r\n> to make up for a large one\r\n\r\nTypically, a lot, though I've never been sure why. I just know that when I've gotten behind with other players, it goes badly, but that could just be a reflection of me playing badly in the first place and then continuing to do so. Correlation does not equal causation. :-)\n\n40) zoltar: Trade G3 Y3 Bluecheese\n\n41) Aristos: Trade R3 G3 Blaze\n\n42) zoltar: Build R3 Blueberry\n\tzoltar: The best player I know, Andy Looney, said that your side of the game he'd rather play (I showed him the position back when it was your G3 vs my 3 mediums and a small), because the game is about the big ships. One big ship can bully all the rest. Now you let me catch up by letting me get all the greens, so you couldn't move your g3 around without my blowing it up, and when you sacked it, you let me get two big ships as well the next move, so I've equalized now, but if you'd got more greens, I think you could have kept the advantage and pressed it.\n\tAristos: I realize that now... I thought that by popping it to pick up more of the red that I'd be able to threaten you the way you were threatening me. \n\tAristos: I've definitely lost that momentum now.\n\n43) Aristos: Discover Y1 Aristos B1 Flicker\n\n44) zoltar: Trade R3 Y3 Blueberry\n\n45) Aristos: Build R3 Blaze\n\n46) zoltar: Sacrifice G3 Zoltar\nBuild G3 Zoltar\nBuild Y1 Blueberry\nBuild Y1 Blueberry\n\n47) Aristos: Move Y1 Flicker Blaze\n\n48) zoltar: Move Y3 Blueberry Aristos\n\n\tAristos: Well done. I see the end. \n\tzoltar: Thanks. Interesting that neither one of us ever got a blue piece. I hought about it, but never had the time. At the beginning I had no time to waste stopping you from getting all the yellows, and even so I let you get the extra large piece, and after that it always seemed better to grow new pieces on blue stars rather than get any blue pieces. In fact all the starts I created were blue. And at the end I realized if I could just trade and get yellows I would have a winning attack, so again I didn't need blue, and didn't care if you get the r3 and g3 I was trading in for the Y3s.\n\nHomeworlds Online (SDG# 25128)\nStarted: 2014.1.12, Ended: 2014.2.24\nParticipants: OnePageWars (S), sleepinggreenideas (N)\nWinner: sleepinggreenideas\n\n1) sleepinggreenideas: Homeworld Y3 B1 G3\n\n2) OnePageWars: Homeworld R1 B2 G3\n\n3) sleepinggreenideas: Build G1 Sleepinggreenideas\n\tOnePageWars: gl hf!\n\n4) OnePageWars: Build G1 Onepagewars\n\n5) sleepinggreenideas: Trade G1 R1 Sleepinggreenideas\n\n6) OnePageWars: Build G1 Onepagewars\n\n7) sleepinggreenideas: Discover R1 Sleepinggreenideas B2 Hello\n\n8) OnePageWars: Trade G1 Y1 Onepagewars\n\n9) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n10) OnePageWars: Build Y1 Onepagewars\n\n11) sleepinggreenideas: Move G1 Sleepinggreenideas Hello\n\n12) OnePageWars: Discover Y1 Onepagewars G3 Anivia\n\n13) sleepinggreenideas: Trade G1 Y1 Hello\n\n14) OnePageWars: Build Y2 Onepagewars\n\n15) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n16) OnePageWars: Trade G1 B1 Onepagewars\n\n17) sleepinggreenideas: Move R1 Hello Anivia\n\n18) OnePageWars: Trade Y2 R2 Onepagewars\n\n19) sleepinggreenideas: Build R1 Anivia\n\n20) OnePageWars: Move R2 Onepagewars Anivia\n\n21) sleepinggreenideas: Build R2 Anivia\n\n22) OnePageWars: Build Y2 Anivia\nCatastrophe Anivia R\n\n23) sleepinggreenideas: Sacrifice G1 Sleepinggreenideas\nBuild Y2 Hello\n\n24) OnePageWars: Build G1 Onepagewars\n\n25) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n26) OnePageWars: Trade G1 R1 Onepagewars\n\n27) sleepinggreenideas: Trade G1 R1 Sleepinggreenideas\n\n28) OnePageWars: Build R2 Onepagewars\n\n29) sleepinggreenideas: Build R2 Sleepinggreenideas\n\n30) OnePageWars: Move R2 Onepagewars Anivia\n\n31) sleepinggreenideas: Trade Y1 G1 Hello\n\n32) OnePageWars: Build R2 Anivia\n\n33) sleepinggreenideas: Build G1 Hello\n\n34) OnePageWars: Build R3 Onepagewars\n\tsleepinggreenideas: Try get red ships into pnrpagewars by discovering new universe\n\tsleepinggreenideas: With gorillas.\n\n35) sleepinggreenideas: Move R2 Sleepinggreenideas Hello\n\n36) OnePageWars: Sacrifice Y2 Anivia\nMove R3 Onepagewars Anivia\nMove R3 Anivia Hello\n\n37) sleepinggreenideas: Build R3 Hello\n\n38) OnePageWars: Attack R3 Hello\n\n39) sleepinggreenideas: Build R3 Hello\nCatastrophe Hello Red\n\n40) OnePageWars: Move R2 Anivia Hello\n\n41) sleepinggreenideas: Sacrifice R1 Sleepinggreenideas\nAttack R2S Hello\n\n\nHomeworlds Online (SDG# 24999)\nVariants: "Hard time"\nStarted: 2014.1.13, Ended: 2014.2.9\nParticipants: SilentTitan (S), sleepinggreenideas (N)\nWinner: SilentTitan\n\n1) sleepinggreenideas: Homeworld G1 Y3 B3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) sleepinggreenideas: Build B1 Sleepinggreenideas\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) sleepinggreenideas: Build B1 Sleepinggreenideas\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) sleepinggreenideas: Discover B1 Sleepinggreenideas G2 Alpha\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) sleepinggreenideas: Trade B1 G1 Sleepinggreenideas\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) sleepinggreenideas: Build B1 Sleepinggreenideas\n\n12) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n13) sleepinggreenideas: Build B1 Alpha\n\n14) SilentTitan: Build G1 Silenttitan\n\n15) sleepinggreenideas: Build B2 Alpha\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n17) sleepinggreenideas: Trade B1 R1 Alpha\n\n18) SilentTitan: Discover Y2 Sol G2 Soul\n\n19) sleepinggreenideas: Trade B3 R3 Sleepinggreenideas\n\n20) SilentTitan: Discover Y1 Silenttitan G3 Sole\n\n21) sleepinggreenideas: Build B1 Alpha\n\n22) SilentTitan: Build Y3 Silenttitan\n\n23) sleepinggreenideas: Build B2 Sleepinggreenideas\n\n24) SilentTitan: Build Y3 Sole\n\n25) sleepinggreenideas: Build B3 Sleepinggreenideas\n\n26) SilentTitan: Discover Y1 Sole G2 Tic\n\n27) sleepinggreenideas: Trade B2 R2 Alpha\n\n28) SilentTitan: Build G3 Silenttitan\n\n29) sleepinggreenideas: Trade B3 G3 Sleepinggreenideas\n\n30) SilentTitan: Sacrifice Y3 Sole\nMove G1 Silenttitan Sol\nMove G1 Sol Tic\nMove G1 Tic Sleepinggreenideas\nCatastrophe Sleepinggreenideas Green\n\n\tsleepinggreenideas: Thanks for the game.\n\tSilentTitan: Yeah. Thank you.\n\nHomeworlds Online (SDG# 25142)\nVariants: "Hard time"\nStarted: 2014.1.14, Ended: 2014.1.29\nParticipants: fogus (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) fogus: Homeworld R1 B2 G3\n\tSilentTitan: Welcome and good luck\n\tfogus: I've only a few games under my belt, but I will try my best to provide a challenge.\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) fogus: Build G1 Fogus\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) fogus: Trade G1 Y1 Fogus\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) fogus: Build G1 Fogus\n\n9) SilentTitan: Trade G1 R1 Silenttitan\n\tfogus: I'm not really trying to mirror you... it just seems that way. ;-)\n\n10) fogus: Trade G1 B1 Fogus\n\tSilentTitan: The first three to five moves of most games are mirrored.\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) fogus: Build Y1 Fogus\n\tfogus: I'm already feeling the resource squeeze. :-O\n\n13) SilentTitan: Build Y2 Silenttitan\n\n14) fogus: Trade Y1 B1 Fogus\n\n15) SilentTitan: Build G1 Silenttitan\n\n16) fogus: Build G1 Fogus\n\n17) SilentTitan: Discover R1 Silenttitan G3 Sol\n\n18) fogus: Discover B1 Fogus Y3 Bacon\n\n19) SilentTitan: Sacrifice G3 Silenttitan\nBuild R2 Sol\nBuild R2 Sol\nBuild R3 Silenttitan\n\n20) fogus: Build B1 Fogus\n\tfogus: Uh oh.\n\tfogus: I'm still learning, but that looks bad to me. :p\n\tSilentTitan: Yeah.... Not so good.\n\n21) SilentTitan: Move R3 Silenttitan Bacon\n\n22) fogus: Move B1 Fogus Bacon\n\n23) SilentTitan: Sacrifice G1 Silenttitan\nBuild R3 Bacon\n\tSilentTitan: Ok.... You need to take your turn back and make another choice, otherwise I will just call for a catastrophe in your homeworld on blue.\n\tfogus: Oh.. Stars count for catastrophes also?! I didn't know that.\n\n24) fogus: Trade B1 Y1 Bacon\n\n25) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Bacon Fogus\nMove R3 Bacon Fogus\n\n26) fogus: Build Y2 Fogus\n\n27) SilentTitan: Sacrifice R3 Fogus\nAttack G3 Fogus South\nAttack Y2 Fogus South\nAttack Y1 Fogus South\n\n\tfogus: I believe that about does it for me. Wow. That was a lesson in resource strangulation. Thank you for the game.\n\tSilentTitan: Thank you for playing.\n\nHomeworlds Online (SDG# 25162)\nVariants: "Hard time"\nStarted: 2014.1.16, Ended: 2014.4.14\nParticipants: ajo (S), MagicJohn (N)\nWinner: ajo\n\n1) MagicJohn: Homeworld B3 R2 G3\n\n2) ajo: Homeworld R1 B2 G3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) ajo: Build G1 Ajo\n\n5) MagicJohn: Trade G1 Y1 Magicjohn\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) MagicJohn: Build G1 Magicjohn\n\n8) ajo: Build G1 Ajo\n\n9) MagicJohn: Discover G1 Magicjohn R1 Prancer\n\n10) ajo: Discover G1 Ajo B3 Alpha\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) ajo: Build G2 Ajo\n\n13) MagicJohn: Trade G1 R1 Magicjohn\n\n14) ajo: Trade G2 R2 Ajo\n\n15) MagicJohn: Discover R1 Magicjohn B1 Comet\n\n16) ajo: Build G1 Ajo\n\n17) MagicJohn: Build G2 Magicjohn\n\n18) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Ajo\n\n19) MagicJohn: Build G3 Magicjohn\n\tajo: Agh. I tried to build "g3 g2 g2" and then forgot to switch the system names around when I had to switch it to "g2 g2 g3".\n\n20) ajo: Trade G2 Y2 Alpha\n\tMagicJohn: I don't mind redos, no need explain. I make enough mistakes tyypiing that other folks mistakes pale in comparison. I still feel like a newbie at the game and appreciate any critiques/discussions that others might offer as post scrips.\n\n21) MagicJohn: Trade G2 Y2 Magicjohn\n\n22) ajo: Move G2 Alpha Prancer\n\n23) MagicJohn: Move Y2 Magicjohn Comet\n\n24) ajo: Attack G1 Prancer\n\n25) MagicJohn: Move G3 Magicjohn Comet\n\n26) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Prancer\nBuild G3 Ajo\n\n27) MagicJohn: Sacrifice G3 Comet\nBuild R2 Comet\nBuild R3 Comet\nBuild G3 Magicjohn\n\n28) ajo: Sacrifice Y2 Alpha\nMove G1 Prancer Magicjohn\nMove G2 Prancer Magicjohn\nCatastrophe Magicjohn Green\n\n29) MagicJohn: Move R3 Comet Magicjohn\n\n30) ajo: Sacrifice G3 Ajo\nBuild G1 Prancer\nBuild G2 Alpha\nBuild G3 Ajo\n\n31) MagicJohn: Trade R3 G3 Magicjohn\n\n32) ajo: Trade G2 Y2 Alpha\n\n33) MagicJohn: Trade R2 G2 Comet\n\n34) ajo: Trade G1 B1 Alpha\n\n35) MagicJohn: Build R2 Comet\n\n36) ajo: Sacrifice G3 Ajo\nBuild G1 Prancer\nBuild G3 Ajo\nBuild G3 Alpha\n\n37) MagicJohn: Trade R2 B2 Comet\n\n38) ajo: Sacrifice Y2 Alpha\nMove G1 Prancer Magicjohn\nMove G1 Prancer Magicjohn\n\n39) MagicJohn: Trade G3 R3 Magicjohn\n\n40) ajo: Trade G2 Y2 Alpha\n\tajo: I think that was a fatal slip…\n\n41) MagicJohn: Build R2 Comet\n\n42) ajo: Sacrifice G3 Ajo\nBuild G2 Magicjohn\nBuild G3 Ajo\nBuild G3 Alpha\n\n43) MagicJohn: Move G2 Comet Magicjohn\nCatastrophe Magicjohn Green\n\n44) ajo: Move G3 Alpha Comet\n\tajo: Wait a minute, I should make you spend that r2 first...\n\n45) MagicJohn: Move B2 Comet Magicjohn\n\n46) ajo: Sacrifice R2 Ajo\nAttack R2 Comet\nAttack Y2 Comet\n\n47) MagicJohn: Trade B2 G2 Magicjohn\n\n48) ajo: Attack R1 Comet\n\n49) MagicJohn: Trade R3 Y3 Magicjohn\n\tajo: If I were you, I would have sacrificed the y2 to get all those ships out of Comet, rather than letting them fall into my hands.\n\n50) ajo: Sacrifice G2 Prancer\nBuild Y1 Comet\nBuild Y2 Alpha\n\tMagicJohn: Figured you needed something on which to take out your aggressive tendencies.\n\tMagicJohn: I did consider the sacrifice but, perhaps incorrectly, I thought that the sacrifice made placement really problematic. My Home World would be more open to catastrophe. Establishing new worlds made your sacrificing a green a more potent threat and spread my forces (small though they may be) to an even more vulnerable state. Your lead is pronounced that it's getting hard to find moves that do more good than harm. \n\tMagicJohn: OOPS... make that "so pronounced".....\n\tajo: Yes, you're definitely in a bad spot; but you let me sac an r2 to capture an r2 PLUS something else (i.e., strictly improve my position), plus you lost both of the ships that I captured. Sacrificing those ships would definitely have been preferable to letting me capture them.\n\n51) MagicJohn: Discover Y1 Magicjohn G1 Donder\n\n52) ajo: Move Y2 Alpha Donder\n\n53) MagicJohn: Build Y3 Donder\n\n54) ajo: Build Y3 Donder\nCatastrophe Donder Yellow\n\n55) MagicJohn: Build G1 Magicjohn\n\n56) ajo: Build G1 Alpha\n\n57) MagicJohn: Discover G1 Magicjohn Y1 Prancer\n\n58) ajo: Move G3 Alpha Prancer\n\n59) MagicJohn: Build G2 Prancer\n\n60) ajo: Sacrifice Y2 Alpha\nMove Y1 Comet Magicjohn\nMove Y2 Comet Magicjohn\n\n61) MagicJohn: Trade Y3 B3 Magicjohn\n\n62) ajo: Trade Y1 B1 Magicjohn\n\n63) MagicJohn: Attack Y2 Magicjohn\n\n64) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\nBuild B2 Magicjohn\nCatastrophe Magicjohn Blue\n\n65) MagicJohn: Move G2 Magicjohn Prancer\nCatastrophe Prancer Green\n\n66) ajo: Sacrifice Y1 Ajo\nMove G3 Comet Magicjohn\n\n67) MagicJohn: Pass\n\n68) ajo: Attack Y2 Magicjohn\n\tMagicJohn: Alone in a still-savage universe.......\n\n\tajo: Good game. :)\n\tMagicJohn: I tried to sail off into the sunset, or, in this case, "Elysian Fields" but the game seems to endorse the social imperative against suicide..... \n\tMagicJohn: I think my game is lacking an opening strategy. I may need to base my opening moves more on a long-range goal rather than trying for small, short-term tactical advantages.\r\nSuggestions? \n\tMagicJohn: Oh..... Thanks for the game...\n\tajo: Well, I'd say you should start with things like my "If I were you" comment a while back. Sure, by then you were already basically losing, but you should have recognized that that move was bad anyway. You gotta train your "muscle memory" to handle the obvious good/bad moves before you can worry about the subtler things.\n\tajo: One more obvious bad move: your fifth move was to discover a red star. Red stars suck. The best stars are blue (with green a distant second, and yellow and red reserved for subtle stash-management and/or endgame positions).\n\nHomeworlds Online (SDG# 25155)\nVariants: "Sinister, Hard time"\nStarted: 2014.1.20, Ended: 2014.2.3\nParticipants: wil (S), TeeTeeTee (W), raster51 (N), sleepinggreenideas (E)\nWinner: TeeTeeTee\n\n1) sleepinggreenideas: Homeworld B1 Y2 G3\n\twil: Well now...let's see how this goes...I've yet to see a multiple homeworlds come to a conclusion, one or more typically drop out/time out. went 60 moves with one, and then it died. Am down to one on one game...that may be the first that completes. \n\twil: Now if anyone wishes to play a binary game...my challenge is open, I like to keep a few games going to improve my skills.\n\tTeeTeeTee: I'm hoping that the (fairly fierce) +6h turn increment will keep the game moving, as the last game I played went at a snail's pace... but I think that 6 hours per turn may be a little too low; this game's outcome may well be decided by what time zones we're in. If this one falls through, I'll start a new 4-player challenge with a +12h turn increment.\n\twil: I didn't notice that...I'll probably be first to fail...\n\n2) wil: Homeworld B3 R2 G3\n\twil: one down before the kickoff...\n\n3) TeeTeeTee: Homeworld Y1 B2 G3\n\n4) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n5) wil: Build G1 Wil\n\n6) TeeTeeTee: Build G1 Teeteetee\n\tTeeTeeTee: That's a hell of a lot of pieces in the stash.\n\twil: I go to sleep and wake up finding I am now late...\r\n\r\nYup, huge stash for two people (the two that stick it out)\n\twil: It is one more of each size than their are players...2 get three of each, 4 get five of each... \r\n\r\nAnd you just created a short universe with sleepin..odds are I'll be standing back watching the fray whilst I amass and army to take on the victor.\n\n7) sleepinggreenideas: Trade G1 Y1 Sleepinggreenideas\n\twil: b g1 wil\n\n8) wil: Trade G1 Y1 Wil\n\n9) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n10) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n11) wil: Build G1 Wil\n\n12) TeeTeeTee: Build G1 Teeteetee\n\n13) sleepinggreenideas: Trade G1 R1 Sleepinggreenideas\n\n14) wil: Discover G1 Wil B1 B1\n\n15) TeeTeeTee: Trade G1 R1 Teeteetee\n\n16) sleepinggreenideas: Build G1 Sleepinggreenideas\n\n17) wil: Build G1 B1\n\n18) TeeTeeTee: Build R1 Teeteetee\n\n19) wil: Trade G1 R1 B1\n\n20) TeeTeeTee: Build G1 Teeteetee\n\n21) wil: Sacrifice Y1 Wil\nDiscover R1 B1 Y3 Y3\n\n22) TeeTeeTee: Build Y1 Teeteetee\n\twil: and then there were two\n\n23) wil: Move R1 Y3 Sleepinggreenideas\n\tTeeTeeTee: Ho-hum. Six hours is too small an increment..\n\twil: I don't think it is that...I think nobody commits fully to these multiplayer games. Binary Homeworlds is great, and three way isn't bad in realtime real life....but both you can walk away and do other things while folks move...but I've yet to hear anyone say they were in one of these that made it to the end with all players staying on till they got beat...they just leave the game when they think they don't have a chance.\n\n24) TeeTeeTee: Discover Y1 Teeteetee G3 Bow\n\n25) wil: Attack G1E Sleepinggreenideas\n\n26) TeeTeeTee: Move R1 Teeteetee Bow\n\n27) wil: Attack R1E Sleepinggreenideas\n\n28) TeeTeeTee: Build R1 Teeteetee\n\n29) wil: Trade R1 B1 Sleepinggreenideas\n\n30) TeeTeeTee: Build Y1 Teeteetee\n\n31) wil: Attack Y1E Sleepinggreenideas\n\n32) TeeTeeTee: Discover Y1 Teeteetee G3 Whitechapel\n\n33) wil: Build Y2 Sleepinggreenideas\n\tsleepinggreenideas: Sorry to die like that. At least I learner something. Namely, that six hours is too short a setting...\n\twil: no worries...it happens....\n\n34) TeeTeeTee: Move Y1 Bow Sleepinggreenideas\nCatastrophe Sleepinggreenideas Yellow\n\n35) wil: Build G1 Sleepinggreenideas\n\n36) TeeTeeTee: Trade G1 B1 Teeteetee\n\n37) wil: Build G1 B1\n\n38) TeeTeeTee: Move B1 Teeteetee Whitechapel\n\n39) wil: Trade G1 Y1 B1\n\n40) TeeTeeTee: Build G1 Teeteetee\n\n41) wil: Build G1 Wil\n\n42) TeeTeeTee: Build G2 Teeteetee\n\n43) wil: Build G2 B1\n\n44) TeeTeeTee: Move G2 Teeteetee Whitechapel\n\n45) wil: Trade G2 R2 B1\n\n46) TeeTeeTee: Build G2 Teeteetee\n\n47) wil: Build G2 B1\n\n48) TeeTeeTee: Discover G1 Teeteetee Y3 Moorgate\n\n49) wil: Trade G2 R2 B1\n\n50) TeeTeeTee: Move G1 Moorgate Sleepinggreenideas\nCatastrophe Sleepinggreenideas Green\n\n51) wil: Move R2 B1 Bow\n\n52) TeeTeeTee: Sacrifice G2 Teeteetee\nBuild R1 Bow\nBuild R2 Bow\nCatastrophe Bow Red\n\n53) wil: Build G1 B1\n\n54) TeeTeeTee: Discover G2 Whitechapel Y1 Shoreditch\n\n55) wil: Build Y2 B1\n\n56) TeeTeeTee: Build Y2 Whitechapel\n\n57) wil: Discover Y2 B1 G3 G3\n\n58) TeeTeeTee: Discover Y1 Teeteetee G3 Stratford\n\n59) wil: Build Y2 B1\n\n60) TeeTeeTee: Build Y2 Stratford\n\n61) wil: Trade Y1 R1 B1\n\n62) TeeTeeTee: Build B1 Whitechapel\n\n63) wil: Trade G1 Y1 Wil\n\n64) TeeTeeTee: Move Y2 Stratford Sleepinggreenideas\n\n65) wil: Move R2 B1 Stratford\n\n66) TeeTeeTee: Discover Y1 Stratford G1 Limehouse\n\n67) wil: Build G1 Wil\n\n68) TeeTeeTee: Build G1 Shoreditch\n\n69) wil: Discover G1 Wil R1 R1\n\n70) TeeTeeTee: Move Y2 Whitechapel R1\n\n71) wil: Discover G1 B1 B3 B3\n\n72) TeeTeeTee: Sacrifice G2 Shoreditch\nBuild Y2 Whitechapel\nBuild Y3 Limehouse\n\n73) wil: Build Y3 B1\n\n74) TeeTeeTee: Sacrifice Y2 Sleepinggreenideas\nMove Y1 Whitechapel B1\nMove Y2 Whitechapel B1\nCatastrophe B1 Yellow\n\n75) wil: Build G2 B1\n\n76) TeeTeeTee: Build G2 Shoreditch\n\n77) wil: Build G2 B3\n\n78) TeeTeeTee: Attack G1S R1\n\n79) wil: Sacrifice Y2 G3\nMove G1 B3 Teeteetee\nMove R2 Stratford Teeteetee\n\n80) TeeTeeTee: Sacrifice R1 Teeteetee\nAttack R2S Teeteetee\n\n81) wil: Sacrifice G2 B1\nBuild G2 Teeteetee\nBuild G2 Teeteetee\nCatastrophe Teeteetee G\n\n82) TeeTeeTee: Move Y3 Limehouse B3\n\n83) wil: Sacrifice G2 B3\nBuild B2 Sleepinggreenideas\nBuild G1 B1\n\n84) TeeTeeTee: Sacrifice Y1 Limehouse\nMove B1 Whitechapel Sleepinggreenideas\nCatastrophe Sleepinggreenideas Blue\n\n\tTeeTeeTee: A wise undo: I'd already typed in my move.\n\tTeeTeeTee: ... what?!\r\nI thought that, after sleepinggreenideas lost, I had to destroy you...\r\nGod, that could've ended days ago.\n\tTeeTeeTee: Thanks for the game, though - it's nice to play a quick-paced match for a change!\n\twil: Interesting...let's play binary sometime...too many ships here...\n\nHomeworlds Online (SDG# 25103)\nVariants: "Hard time"\nStarted: 2014.1.21, Ended: 2014.1.28\nParticipants: wil (S), Laurie_Menke (N)\nWinner: wil\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi, Wil! Have fun! :o)\n\n2) wil: Homeworld B2 R1 G3\n\twil: a game is afoot.\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) wil: Build G1 Wil\n\n\twil: Which way did she go?\r\n\r\nWho's wine, what wine, where the hell did I dine?\n\tLaurie_Menke: Argh! I'm sorry, Wil. :o( I'm an idiot. I'm just having a hard time keeping track of everything right now. I need about 10 more hours in every day. ;o) Can we try again? I promise to play frequently!\n\nHomeworlds Online (SDG# 25064)\nStarted: 2014.1.21, Ended: 2014.3.11\nParticipants: ts52 (S), CDMoose (N)\nWinner: ts52\n\n1) CDMoose: Homeworld Y3 R1 G3 *\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) CDMoose: Build G1 Cdmoose\n\n4) ts52: Build G1 Ts52\n\n5) CDMoose: Discover G1 Cdmoose B2 Aqua\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\n7) CDMoose: Pass\n\n8) ts52: Build G1 Ts52\n\n9) CDMoose: Build G2 Aqua\n\n10) ts52: Build G2 Grover\n\n11) CDMoose: Trade G2 R2 Aqua\n\n12) ts52: Trade G1 R1 Grover\n\n13) CDMoose: Build G1 Aqua\n\n14) ts52: Build G2 Grover\n\n15) CDMoose: Trade G1 Y1 Aqua\n\n16) ts52: Trade G2 Y2 Grover\n\n17) CDMoose: Trade G1 B1 Aqua\n\n18) ts52: B G1 Grover\n\n\nHomeworlds Online (SDG# 25207)\nVariants: "Hard time"\nStarted: 2014.1.21, Ended: 2014.1.25\nParticipants: wil (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) wil: Homeworld R2 B1 G3\n\twil: I've been months learning this game and climbing this ladder to get the chance to get my clock cleaned by the guy at the top... (and that learning part is debatable)\n\n3) TwoShort: Build G1 Twoshort\n\n4) wil: Build G1 Wil\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\twil: I always think the pawn of your queen color should be part of the homeworld setup... I guess it is a safety valve should you have started a particularly embarassing opening and had to change you queen color first thing??\n\n6) wil: Trade G1 Y1 Wil\n\tTwoShort: Yeah, the first turn is pretty predictable.\n\n7) TwoShort: Build G1 Twoshort\n\n8) wil: Build G1 Wil\n\n9) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n10) wil: Trade G1 B1 Wil\n\n11) TwoShort: Build G1 Twoshort\n\n12) wil: Build B1 Wil\n\n13) TwoShort: Build G1 Yolonda\n\n14) wil: Discover B1 Wil G3 G3\n\n15) TwoShort: Discover G1 Yolonda Y3 Yoyodyne\n\n16) wil: Build B2 G3\n\n17) TwoShort: Build G2 Yoyodyne\n\n18) wil: Build G2 Wil\n\n19) TwoShort: Move G1 Yoyodyne Wil\n\n20) wil: Trade G2 R2 Wil\n\twil: OMG watha a plan\n\n21) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Wil\nBuild G2 Wil\nBuild G3 Yoyodyne\nCatastrophe Wil Green\n\n22) wil: Trade B1 Y1 G3\n\twil: wow...did that backwards...\n\n23) TwoShort: Move G3 Yoyodyne Wil\n\tTwoShort: you needed to trade 3 pointer to avoid doom. But then I'd have grown it so it would have been ugly in any case :)\n\n24) wil: Trade B1 G1 Wil\n\twil: I expected to be slaughtered...glad I wasn't disappointed.\n\n25) TwoShort: Attack R2 Wil\n\n\twil: Yup, I'm a just way outta your league...although I'd like to play another...please challenge me whenever you wish to experiment...\n\nHomeworlds Online (SDG# 25087)\nVariants: "Hard time"\nStarted: 2014.1.22, Ended: 2014.1.26\nParticipants: Marmalade (S), ausmuh (N)\nWinner: ausmuh\n\n1) ausmuh: Homeworld B3 Y1 G3\n\n2) Marmalade: Homeworld G2 Y1 B3\n\n3) ausmuh: Build G1 Ausmuh\n\n4) Marmalade: Build B1 Marmalade\n\n5) ausmuh: Trade G1 Y1 Ausmuh\n\n6) Marmalade: Build B1 Marmalade\n\n7) ausmuh: Build Y2 Ausmuh\n\n8) Marmalade: Discover B1 Marmalade G3 Groob\n\n9) ausmuh: Discover Y2 Ausmuh G2 Gwar\n\n10) Marmalade: Build B1 Marmalade\n\n11) ausmuh: Build Y2 Gwar\n\n12) Marmalade: Build B2 Groob\n\n13) ausmuh: Discover Y2 Gwar B3 Bflat\n\n14) Marmalade: Trade B2 Y2 Groob\n\n15) ausmuh: Sacrifice G3 Ausmuh\nBuild Y3 Ausmuh\nBuild Y3 Gwar\nBuild Y3 Bflat\n\n16) Marmalade: Build B2 Groob\n\n17) ausmuh: Discover Y3 Gwar G3 Grass\n\n18) Marmalade: Build B2 Groob\n\n19) ausmuh: Trade Y3 R3 Ausmuh\n\n20) Marmalade: Trade B2 R2 Groob\n\n21) ausmuh: Build Y3 Grass\n\n22) Marmalade: Move R2 Groob Gwar\n\n23) ausmuh: Move Y2 Gwar Bflat\n\n24) Marmalade: Build R1 Gwar\n\n25) ausmuh: Trade Y2 G2 Bflat\n\n26) Marmalade: Trade B3 G3 Marmalade\n\n27) ausmuh: Build G1 Bflat\n\n28) Marmalade: Build Y2 Groob\n\n29) ausmuh: Sacrifice Y3 Grass\nMove G2 Bflat Marmalade\nMove G1 Bflat Marmalade\nMove Y3 Grass Marmalade\nCatastrophe Marmalade Green\n\n\nHomeworlds Online (SDG# 25204)\nVariants: "Hard time"\nStarted: 2014.1.24, Ended: 2014.2.3\nParticipants: radynski (S), wil (N)\nWinner: radynski\n\n1) wil: Homeworld R2 B1 G3\n\twil: thank you for the game\n\n2) radynski: Homeworld B1 G3 Y3\n\n3) wil: Build G1 Wil\n\n4) radynski: Build Y1 Radynski\n\n5) wil: Trade G1 B1 Wil\n\n6) radynski: Discover Y1 Radynski G2 George\n\n7) wil: Build B2 Wil\n\n8) radynski: Build Y1 George\n\n9) wil: Trade B2 Y2 Wil\n\n10) radynski: Discover Y1 George B3 Nexus\n\n11) wil: Build B2 Wil\n\n12) radynski: Build Y1 George\n\n13) wil: Trade B2 R2 Wil\n\n14) radynski: Build Y2 Radynski\n\n15) wil: Build B2 Wil\n\n16) radynski: Trade Y2 B2 Radynski\n\n17) wil: Discover B2 Wil G3 G3\n\n18) radynski: Build Y2 Radynski\n\n19) wil: Build Y2 Wil\n\n20) radynski: Build Y3 Radynski\n\n21) wil: Move Y2 Wil G3\n\n22) radynski: Trade Y2 R2 Radynski\n\n23) wil: Build G1 Wil\n\n24) radynski: Build R1 Radynski\n\n25) wil: Move B2 G3 George\n\n26) radynski: Sacrifice Y1 George\nMove Y3 Radynski George\n\n27) wil: Build B2 Wil\n\n28) radynski: Sacrifice R1 Radynski\nAttack B2 George\n\n29) wil: Move B2 Wil G3\n\n30) radynski: Move Y3 George G3\n\n31) wil: Build Y1 G3\n\n32) radynski: Sacrifice R2 Radynski\nAttack B2 G3\nAttack Y2 G3\n\n33) wil: Build Y2 G3\nCatastrophe G3 Y\n\n34) radynski: Build B3 Radynski\n\n35) wil: Move B1 Wil G3\n\n36) radynski: Trade B2 R2 Radynski\n\n37) wil: Build Y1 Wil\n\n38) radynski: Build Y2 George\n\n39) wil: Discover Y2 Wil B3 B3\n\n40) radynski: Trade Y1 R1 George\n\n41) wil: Build Y1 Wil\n\n42) radynski: Trade Y1 R1 Nexus\n\n43) wil: Build B2 G3\n\n44) radynski: Sacrifice R2 Radynski\nAttack B2 G3\nAttack B1 G3\n\n45) wil: Move R2 Wil Nexus\n\n46) radynski: Sacrifice Y3 Radynski\nMove B2 G3 Wil\nMove B2 G3 Wil\nMove B1 G3 Wil\nCatastrophe Wil Blue\n\n47) wil: Attack R1 Nexus\n\n48) radynski: Build B1 Radynski\n\n49) wil: Sacrifice Y2 B3\nMove G1 Wil Radynski\nMove Y1 Wil Radynski\n\n50) radynski: Trade B3 R3 Radynski\n\n51) wil: Trade Y1 R1 Radynski\n\n52) radynski: Attack R1 Radynski\n\n53) wil: Build Y1 Wil\n\n54) radynski: Attack G1 Radynski\n\n55) wil: Move Y1 Wil Nexus\n\n56) radynski: Trade R3 Y3 Radynski\n\n57) wil: Discover R2 Nexus G2 G2\n\n58) radynski: Discover R1 George G3 Studio\n\n59) wil: Trade R1 G1 Nexus\n\twil: Well I miscounted by one....and now I am dangling from the cliff...\n\n60) radynski: Build R1 Studio\n\n61) wil: Build G1 Wil\n\tradynski: Yeah, I assumed something happened there.\n\n62) radynski: Sacrifice Y3 Radynski\nMove R1 Studio Wil\nMove R1 Studio Wil\nMove R1 Radynski Wil\nCatastrophe Wil Red\n\n\tradynski: Good game, I enjoyed this.\n\twil: Thanx for the game, challenge me anytime. I enjoy playing...even if I'm notso good.\n\nHomeworlds Online (SDG# 25236)\nVariants: "Hard time"\nStarted: 2014.1.26, Ended: 2014.1.29\nParticipants: ausmuh (S), wil (N)\nWinner: ausmuh\n\n1) wil: Homeworld R2 B1 G3\n\n2) ausmuh: Homeworld B3 Y1 G3\n\twil: Welcome and thanx for the game!\n\n3) wil: Build G1 Wil\n\tausmuh: Thank you. ^_^\n\n4) ausmuh: Build G1 Ausmuh\n\n5) wil: Trade G1 Y1 Wil\n\n6) ausmuh: Trade G1 Y1 Ausmuh\n\n7) wil: Build Y2 Wil\n\tausmuh: Huh. Didn't think about that earlier...\n\n8) ausmuh: Build Y2 Ausmuh\n\n9) wil: Discover Y2 Wil G3 G3\n\n10) ausmuh: Build G1 Ausmuh\n\n11) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 Wil\nBuild Y3 Wil\n\n12) ausmuh: Discover Y1 Ausmuh G2 Gwar\n\n13) wil: Move Y2 G3 Gwar\n\n14) ausmuh: Sacrifice Y2 Ausmuh\nMove Y1 Gwar G3\nMove Y1 G3 Wil\nCatastrophe Wil Yellow\n\twil: I was evidently blinded...thank you for the slaughter!\n\n\nHomeworlds Online (SDG# 25254)\nVariants: "Hard time"\nStarted: 2014.1.27, Ended: 2014.2.21\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld R2 B1 G3\n\n2) SilentTitan: Homeworld B1 G2 B3 *\n\n3) wil: Build G1 Wil\n\n4) SilentTitan: Build B1 Silenttitan\n\n5) wil: Build G1 Wil\n\n6) SilentTitan: Trade B3 R3 Silenttitan\n\n7) wil: Trade G1 Y1 Wil\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) wil: Build Y1 Wil\n\n10) SilentTitan: Trade B2 Y2 Silenttitan\n\n11) wil: Discover Y1 Wil G3 G3\n\n12) SilentTitan: Build B2 Silenttitan\n\n13) wil: Build Y1 G3\n\n14) SilentTitan: Move R3 Silenttitan G3\n\n15) wil: Build Y2 Wil\n\n16) SilentTitan: Attack Y1 G3 North\n\n17) wil: Discover Y1 G3 G2 G2\n\n18) SilentTitan: Move B2 Silenttitan G3\n\n19) wil: Trade Y2 B2 Wil\n\n20) SilentTitan: Build B2 Silenttitan\n\n21) wil: Discover B2 Wil Y3 Y3\n\n22) SilentTitan: Trade B2 R2 Silenttitan\n\n23) wil: Sacrifice G1 Wil\nBuild B2 Y3\n\n24) SilentTitan: Build B3 G3\n\n25) wil: Move B2 Y3 Silenttitan\n\n26) SilentTitan: Trade B1 R1 Silenttitan\n\n\nHomeworlds Online (SDG# 24939)\nVariants: "Unrated, Hard time"\nStarted: 2014.1.29, Ended: 2014.2.13\nParticipants: wil (S), pgadey (N), sleepinggreenideas (E)\nWinner: wil\n\n1) pgadey: Homeworld G1 B3 Y3\n\n2) sleepinggreenideas: Homeworld G1 B2 Y3\n\n3) wil: Homeworld B3 Y2 G3\n\n4) pgadey: Build Y1 Pgadey\n\twil: Let's do this!\r\n\r\n\n\n5) wil: Build G1 Wil\n\n6) pgadey: Trade Y1 G1 Pgadey\n\twil: a return to normalcy already\n\n7) wil: Build G2 Wil\n\n\nHomeworlds Online (SDG# 25260)\nVariants: "Hard time"\nStarted: 2014.1.30, Ended: 2014.2.27\nParticipants: wil (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Let's try this again... :o/\n\n2) wil: Homeworld G2 B1 B3 *\n\twil: okee dokee\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Hmmm...interesting starting move!\n\n4) wil: Build B1 Wil\n\n5) Laurie_Menke: Discover G1 Laurie_menke B2 Gotone\n\twil: It is my, if you are gonna start with a blue pawn in your homeworld I'm gonna try to corner the blues move...\n\twil: I shouldn'ta given that away...\n\tLaurie_Menke: LOL! Good to know! ;o)\n\n6) wil: Trade B3 Y3 Wil\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) wil: Build B2 Wil\n\n9) Laurie_Menke: Build G1 Gotone\n\tLaurie_Menke: I didn't see you Thursday. Were you there? I had to work until 10:30, so maybe you left before that. Anyway, I talked with Andy about the machine repairs and have a general sense of what needs to happen, but I'd still like to coordinate with you sometime....both about that and about the basement. Will you be around this weekend?\n\twil: I was asleep...headed to game day now..\n\n10) wil: Discover B2 Wil G3 G3\n\tLaurie_Menke: Glad you got the rest you needed! It was good seeing you at game day & Rink's BD! :o)\n\n11) Laurie_Menke: Build G2 Laurie_menke\n\n12) wil: Build B2 G3\n\n13) Laurie_Menke: Build G2 Gotone\n\n14) wil: Build Y1 Wil\n\n15) Laurie_Menke: Discover G2 Laurie_menke Y2 Yeller\n\n16) wil: Build B3 G3\n\n17) Laurie_Menke: Build G3 Yeller\n\n18) wil: Trade B3 R3 G3\n\n19) Laurie_Menke: Trade G2 Y2 Gotone\n\n\tLaurie_Menke: Ugh...I hate when it rates the resignations. It's just not fair to anyone. :o( Want me to see if Aaron will reverse it?\n\twil: Nah...no worries...I like having my score lowered to increase confidence of my competitors...\r\n\r\nno worries...I just lost a bunch due to lost focus...including a ladder game.\n\tLaurie_Menke: Bummer. But LOL about competitor confidence. ;o) Have a great weekend! (BTW... I will be down in the basement moving wood over part of today.)\n\nHomeworlds Online (SDG# 25273)\nVariants: "Unrated"\nStarted: 2014.1.31, Ended: 2014.2.6\nParticipants: ausmuh (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld R1 B2 G3\n\tausmuh: Hello. I'm certainly not the worlds greatest player, but I know and love the game. I'm sure we can get you started. Please feel free to ask any questions you have.\n\tfogus: Thanks a ton. My first game was catastrophe-o-rama and my second was a resource-strangulation. So far I've covered a broad swath of the ways to lose. :-)\n\n2) ausmuh: Homeworld B3 Y1 G3\n\tausmuh: Haha, it happens. After family few games you start to know what to look for and avoid. Looks like you know about your homeworld options, woo!\n\n3) fogus: Build G1 Fogus\n\tausmuh: *After a few. Autocorrect..... \n\tausmuh: The next move is pretty much always the same, then it gets fun. When you start trading pieces you want to avoid getting locked out, and if possible, lock me out. \n\n4) ausmuh: Build G1 Ausmuh\n\n5) fogus: Trade G1 Y1 Fogus\n\n6) ausmuh: Trade G1 Y1 Ausmuh\n\tausmuh: The colors I'd consider swapping to would be yellow or red. Because if I want to swap to one of those, you would get the first two pip out of it. It can also sometimes be difficult to get into a color once the 1pips are gone.\r\n\r\nFrom here on out it's my opinion, take it with a grain of salt :) everyone sees things different and you may know something I don't.\n\tausmuh: Yup, just like that. \n\n7) fogus: Build G1 Fogus\n\n8) ausmuh: Build Y2 Ausmuh\n\n9) fogus: Build Y2 Fogus\n\tausmuh: It's usually not a bad idea to get a 2pip when you can. You do need to watch out for me being able to catastrophe you, but right now it's safe. Also keep an eye out for a way to put me under the same threat.\n\n10) ausmuh: Discover Y1 Ausmuh G2 Gwar\n\tfogus: The threat of catastrophe is not a problem now because you're not within striking distance?\r\n\n\tfogus: There are two things about HWs that I'm not entirely clear about: 1) How systems connect and 2) How attacking works. \n\tausmuh: Ah, ok. Systems connect as long as they are NOT the same size. So from a 1pip planet you can move to a 2pip or 3pip. Homeworlds have 2 parts, so because of that you can only move to the size you didn't use in your home planet. \r\n\r\nFor you the path is home-3pip, 3pip-2pip, then the 2pip is connected to me\n\tausmuh: So the reason you are safe is I have to move my 1 pip yellow out of my home first, after that, I -could- sacrifice my 2pip yellow for two moves and make it to your base. \n\tausmuh: Hopefully that makes sense.\r\n\r\nAttacking is more like capturing in this game. Ships must be at the same planet. A ship can attack the same size or smaller, but instead of blowing it up, you take control of it. \n\n11) fogus: Trade Y1 R1 Fogus\n\n12) ausmuh: Discover Y1 Gwar G3 Grass\n\tausmuh: So now that I moved out, I have a new mini-base, one step closer to you.\r\n\r\nThe mid game is somewhat about spreading pieces out so you can get bigger and more. \n\tausmuh: Lets try an attack! Move your red ship and lay waste to my tiny yellow minion\n\n13) fogus: Move R1 Fogus Grass\n\n14) ausmuh: Build G1 Ausmuh\n\tfogus: Would it have been better to sacrifice to make the move and attack in one turn?\n\n15) fogus: Attack Y1 Grass\n\tausmuh: Sadly a sacrifice can\n\tausmuh: Sadly a sacrifice cant do that. You only get the actions of what color you sacrificed. So sacrificing a 2pip yellow gets you 2 moves. That becomes important later on. \n\n16) ausmuh: Build Y1 Ausmuh\n\tfogus: Oh! If I sacrifice a yellow2 then I can only move twice?\n\tausmuh: Correct, when ever you sacrifice a piece you only get actions of that color's power\n\tausmuh: So at this point, were pretty much just spreading out and racing to build bigger pieces used in future plans.... something to think about is sacrificing a g3 and building other 3pips with those actions (while avoiding catastrophe)\n\n17) fogus: Sacrifice Y2 Fogus\nDiscover Y1 Grass Y2 Cats\nMove Y1 Cats Ausmuh\nCatastrophe Ausmuh Y\n\tausmuh: I wouldn't normally do that, but it gives you an example of sacrificing for a catastrophe. Your y2 can move your y1 in and destroy part of my hw\n\n18) ausmuh: Trade G1 Y1 Ausmuh\n\tfogus: Oh! I see how that works now. I had to discover a system before moving into yours for the catastrophe. Was there a better way?\n\tfogus: A point I always miss (for whatever reason) is that the star colors count toward catastrophe also.\n\tausmuh: Nope, the discovery was needed. If i had a system you could of used that one, but either works\r\n\r\nAh, yes, that's worth noting, planets count :) Also pay attention to our homeworlds being connected now. \r\n\r\n"The doomsday machine" involves two y3's, enough pieces to destroy me, and takes advantage of the new connections.\r\n\r\nIts a double edge sword though because I'm connected to you just the same\n\tausmuh: So one way to win is blowing me up. That probably the most common tactic. \n\n19) fogus: Trade G1 Y1 Fogus\n\tausmuh: Next I want to show what a homeworld attack looks like. Its a little tougher to set up, easier to notice, but well worth knowing. \r\n\r\nWhat you need is at least one more 3pip than I have in my homeworld (2 in this case) and a big enough red piece to sacrifice to take what I have. And enough yellow to move them in.\r\n\r\nNormally an opponent will build red when you do, and sometimes its hard to build enough 3 pips to overpower your opponent, especially if you have to leave one at home\n\n20) ausmuh: Build G1 Ausmuh\n\n21) fogus: Build G1 Fogus\n\tfogus: Is there ever a reason not to put a 3-pip at your homeworld?\n\tausmuh: Sometimes... like now. You have red and I do not. Our home worlds are connected. If you move your big guy in, you'll take my 3pip before I get the red to react.\r\n\r\nBe very careful with that, if an opponent is ready to move big ships in on you, you want to keep a 3pip at home\n\n22) ausmuh: Discover G1 Ausmuh B2 Gwar\n\n23) fogus: Trade G1 R1 Fogus\n\n24) ausmuh: Build G1 Gwar\n\n25) fogus: Build R2 Fogus\n\n26) ausmuh: Build Y1 Ausmuh\n\n27) fogus: Build Y2 Fogus\n\n28) ausmuh: Build G1 Ausmuh\n\n29) fogus: Build G2 Fogus\n\tausmuh: Just don't forget planets count towards catastrophes :)\n\n30) ausmuh: Move Y1 Ausmuh Gwar\n\tfogus: I almost forgot :-O (whew)\n\n31) fogus: Sacrifice Y2 Fogus\nMove G3 Fogus Ausmuh\nMove R1 Fogus Ausmuh\n\tfogus: It seems like blue ships are kinda the weakest. If there is a blue star then what use is a blue ship?\n\tausmuh: This game didn't see much blue but it can come in handy. One example is sacrificing to trade multiple ships for a catastrophe, and sometimes you can trade a blue ship for another color before anyone has access to it. I. E. Trade a b3 for a r3 when its good timing. You'll feel it out the more you play :)\n\tausmuh: I've purposely been neglecting red to show you what moving in for a homeworld attack looks like (sort of) \r\n\r\nSense our homeworlds are connected and I've got no red, you have a perfect opportunity to move your big ship in and sweep up in my homeworld. Normally an opponent would somehow scramble for their own red, but is just some practice to show you a few things. \n\n32) ausmuh: Build Y2 Gwar\n\tfogus: I can't seem to do what I'm thinking:\r\nsacrifice r2 fogus\r\nmove g3 fogus ausmuh\r\nattack G3S ausmuh\n\tfogus: Oh wait... all actions must be that of the color sacrificed. \n\tausmuh: Close. Because, and only because, I have no red, you can move in as one turn, then attack on the next turn :)\n\n33) fogus: Attack G3 Ausmuh\n\n34) ausmuh: Build G2 Ausmuh\nCatastrophe Ausmuh Green\n\tausmuh: Many of my moves were less then smart, but hopefully it gave you a chance to figure a couple things out :)\n\n35) fogus: Attack Y1 Ausmuh\n\n\tausmuh: There really is not, even after a catastrophe, you are more than prepared to overtake my homeworld \n\tfogus: I definitely missed that catastrophe option. It's a good thing I decided to bring in the r1... even if that wasn't my initial goal. ;-)\r\n\r\nThank you very much for the lesson. I learned a ton.\n\tausmuh: :) thanks for your patience, I'm not much of a teacher, but I'm glad you learned some stuff. Have fun!\n\nHomeworlds Online (SDG# 25291)\nVariants: "Hard time"\nStarted: 2014.2.2, Ended: 2014.2.28\nParticipants: Salmonax (S), ausmuh (N)\nWinner: ausmuh\n\n1) ausmuh: Homeworld B3 R1 G3\n\n2) Salmonax: Homeworld G2 R1 B3\n\tausmuh: Thanks for accepting. Have fun!\n\n3) ausmuh: Build G1 Ausmuh\n\n4) Salmonax: Build B1 Salmonax\n\tSalmonax: Good luck, have fun. =)\n\n5) ausmuh: Trade G1 R1 Ausmuh\n\n6) Salmonax: Trade B1 Y1 Salmonax\n\n7) ausmuh: Build R2 Ausmuh\n\n8) Salmonax: Build Y1 Salmonax\n\n9) ausmuh: Trade R2 Y2 Ausmuh\n\n10) Salmonax: Trade Y1 B1 Salmonax\n\n11) ausmuh: Build R2 Ausmuh\n\n12) Salmonax: Build Y1 Salmonax\n\n13) ausmuh: Discover R2 Ausmuh G2 Gwar\n\n14) Salmonax: Trade B3 R3 Salmonax\n\n15) ausmuh: Build R2 Ausmuh\n\n16) Salmonax: Build B1 Salmonax\n\n17) ausmuh: Discover R2 Ausmuh Y2 Slayer\n\n18) Salmonax: Trade B1 G1 Salmonax\n\n19) ausmuh: Sacrifice G3 Ausmuh\nBuild R2 Gwar\nBuild R3 Slayer\nBuild R3 Ausmuh\n\n20) Salmonax: Discover Y1 Salmonax G3 S2\n\tSalmonax: Yipes!\n\n21) ausmuh: Trade R3 Y3 Ausmuh\n\n22) Salmonax: Build Y1 S2\n\tausmuh: Getting locked out of a color is rough. The same thing happened to me in the other game I'm playing. :P\n\n23) ausmuh: Discover R3 Slayer G3 Glob\n\n24) Salmonax: Build Y2 Salmonax\n\n25) ausmuh: Trade Y2 G2 Ausmuh\n\n26) Salmonax: Build Y2 Salmonax\n\n27) ausmuh: Move R2 Slayer S2\n\n28) Salmonax: Build Y2 S2\n\n29) ausmuh: Build Y3 Ausmuh\n\n30) Salmonax: Sacrifice Y2 S2\nDiscover Y1 S2 B2 S3\nMove Y1 S2 S3\n\n31) ausmuh: Sacrifice Y3 Ausmuh\nMove R2 S2 Salmonax\nMove R2 Gwar Glob\nMove R2 Glob Salmonax\nCatastrophe Salmonax Red\n\n32) Salmonax: Trade B1 R1 Salmonax\n\n33) ausmuh: Sacrifice Y3 Ausmuh\nMove R3 Glob Salmonax\nPass\nPass\n\n34) Salmonax: Move Y2 Salmonax Ausmuh\n\tSalmonax: I used to be okay at this game. =)\n\n35) ausmuh: Sacrifice R2 Gwar\nAttack Y2S Ausmuh\nAttack Y2S Salmonax\n\n36) Salmonax: Build G1 Salmonax\n\tausmuh: ^_^ I'm sure you still got it. Kind of like riding a bike.\n\n37) ausmuh: Sacrifice R3 Salmonax\nAttack R1S Salmonax\nAttack G1S Salmonax\nAttack Y1S Salmonax\n\n38) Salmonax: Trade Y1 B1 S3\n\n39) ausmuh: Attack G1S Salmonax\n\tausmuh: Thanks for the game ^_^ \r\nI'm not certain, but both of us putting a red 1pip in our home seemed to give me some quick access to 2pips. That's a thinker. \r\nI hope we get another game sometime!\n\tSalmonax: gg!\n\n\nHomeworlds Online (SDG# 25158)\nVariants: "Hard time"\nStarted: 2014.2.3, Ended: 2014.3.14\nParticipants: Grosseteste (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Grosseteste: H Y3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Grosseteste: Build G1 Grosseteste\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) Grosseteste: Trade G1 B1 Grosseteste\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) Grosseteste: Build B2 Grosseteste\n\n9) SilentTitan: Trade B2 Y2 Silenttitan\n\n10) Grosseteste: Discover B1 Grosseteste G2 Hexaemeron\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) Grosseteste: Build B2 Grosseteste\n\n13) SilentTitan: Build B3 Silenttitan\n\n14) Grosseteste: Trade B2 Y2 Grosseteste\n\n15) SilentTitan: Discover B1 Silenttitan B3 Sol\n\n16) Grosseteste: Build B2 Hexaemeron\n\n17) SilentTitan: Discover G1 Silenttitan B3 Soul\n\n18) Grosseteste: T B1 Y1 Hexaemeron\n\n19) SilentTitan: Build G1 Silenttitan\n\n20) Grosseteste: M B2 Hexaemeron Soul\n\n21) SilentTitan: Trade B3 R3 Silenttitan\n\n22) Grosseteste: Trade B2 R2 Soul\n\n23) SilentTitan: Move R3 Silenttitan Soul\n\n24) Grosseteste: S Y2 Grosseteste\nM R2 Soul Hexaemeron\nM R2 Hexaemeron Grosseteste\n\n25) SilentTitan: Build Y1 Silenttitan\n\n26) Grosseteste: Build R1 Grosseteste\n\n27) SilentTitan: Trade B1 R1 Sol\n\n28) Grosseteste: Trade R1 Y1 Grosseteste\n\n29) SilentTitan: Move Y1 Silenttitan Soul\n\n\tGrosseteste: Doh! Sorry about that.\n\tSilentTitan: That's ok. Challenge me again. If you'd like\n\nHomeworlds Online (SDG# 25286)\nVariants: "Hard time"\nStarted: 2014.2.3, Ended: 2014.3.19\nParticipants: TwoShort (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) TwoShort: Build G1 Twoshort\n\tBroccoli_Commander: Greetings, have a good game\n\n5) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\tTwoShort: Thanks; you too.\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) TwoShort: Build G1 Twoshort\n\n9) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n10) TwoShort: Build G1 Twoshort\n\n11) Broccoli_Commander: Build B1 Broccoli_commander\n\n12) TwoShort: Discover G1 Twoshort Y2 Yolonda\n\n13) Broccoli_Commander: Discover B1 Broccoli_commander Y3 Cauliflower\n\n14) TwoShort: Build G1 Twoshort\n\n15) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild B2 Cauliflower\nBuild B2 Cauliflower\nBuild B3 Broccoli_commander\n\n16) TwoShort: Discover G1 Twoshort G2 Grogar\n\n17) Broccoli_Commander: Sacrifice B2 Cauliflower\nTrade B2 R2 Cauliflower\nTrade B3 G3 Broccoli_commander\n\n18) TwoShort: Build G2 Twoshort\n\n19) Broccoli_Commander: Discover B1 Broccoli_commander G3 Lettuce\n\n20) TwoShort: Trade G2 R2 Twoshort\n\n21) Broccoli_Commander: Build G2 Broccoli_commander\n\n22) TwoShort: Discover G1 Yolonda Y3 Yoyodyne\n\n23) Broccoli_Commander: Build B2 Lettuce\n\n24) TwoShort: Sacrifice Y1 Twoshort\nMove G1 Grogar Lettuce\n\n25) Broccoli_Commander: Discover R2 Cauliflower G2 Pea\n\n26) TwoShort: Trade R2 Y2 Twoshort\n\tTwoShort: Sorry to play so slow, I've been busy... \n\n27) Broccoli_Commander: Move G2 Broccoli_commander Cauliflower\n\tBroccoli_Commander: It's alright, I understand that you want to stay on the top of the ladder for a few more days. Whatever works. ;D ;D\n\tTwoShort: At this point I'm all about the rematch :) And wishing I'd peeked at your game history before I went for the "blow off the blue lock" experiment :)\n\n28) TwoShort: Sacrifice G3 Twoshort\nBuild G2 Lettuce\nBuild Y1 Twoshort\nBuild G3 Twoshort\n\n29) Broccoli_Commander: Build B2 Cauliflower\n\tBroccoli_Commander: Yet you almost pulled it off. Besides I'm still very wary of your bag of tricks\n\n30) TwoShort: Sacrifice G1 Twoshort\nBuild G1 Lettuce\nCatastrophe Lettuce Green\n\n31) Broccoli_Commander: Build B1 Cauliflower\n\n32) TwoShort: Build G1 Twoshort\n\tTwoShort: You've given me a rough game and have me in a tough spot. But I enjoy trying to weasel out of such positions, and so don't give up easily :) It'd be helpful if you would become overconfident though. :)\n\n33) Broccoli_Commander: Build R1 Pea\n\tBroccoli_Commander: I was not expecting less of you ;)\r\nand also sorry, I ve been in the most stressful period of my life... Almost forgot the existence of superdupergames :P \n\tBroccoli_Commander: I was not expecting less of you ;)\r\nand also sorry, I ve been in the most stressful period of my life...but it s over. Almost forgot the existence of superdupergames :P \n\n34) TwoShort: Build G1 Yoyodyne\n\n35) Broccoli_Commander: Trade B2 Y2 Cauliflower\n\n36) TwoShort: Discover Y1 Twoshort B2 Borbor\n\n37) Broccoli_Commander: Move G2 Cauliflower Borbor\n\n\tTwoShort: Dang! I didn't mean to time out; But I did mean to resign, so I guess it's OK :) I could stall briefly from here, but you've got me. Thanks for a great game!\n\tBroccoli_Commander: No problem, thanks for the game! I look forward to playing you again\n\nHomeworlds Online (SDG# 25290)\nVariants: "Hard time"\nStarted: 2014.2.7, Ended: 2014.2.18\nParticipants: ausmuh (S), Grosseteste (N)\nWinner: ausmuh\n\n1) Grosseteste: H Y2 B1 G3\n\n2) ausmuh: Homeworld B3 R1 G3\n\tGrosseteste: Thanks for the game!\n\n3) Grosseteste: Build G1 Grosseteste\n\tausmuh: Have fun! :)\n\n4) ausmuh: Build G1 Ausmuh\n\n5) Grosseteste: Trade G1 B1 Grosseteste\n\n6) ausmuh: Trade G1 Y1 Ausmuh\n\n7) Grosseteste: Build B1 Grosseteste\n\n8) ausmuh: Build G1 Ausmuh\n\tausmuh: Nice work with blue! \n\n9) Grosseteste: Discover B1 Grosseteste G3 Lineis\n\n10) ausmuh: Trade G3 B3 Ausmuh\n\tGrosseteste: Thanks, I learned to look for that through bitter experience. I expect you to teach me a thing or two (like how to thwart my cunning plan?).\n\tausmuh: Well, plan A is not to make silly mistakes. After that mistake inevitably happens I go into plan B, "wing it" :)\n\n11) Grosseteste: Build B2 Lineis\n\n12) ausmuh: Build B2 Ausmuh\n\n\tGrosseteste: Doh! Sorry about that.\n\tausmuh: Oops? \n\tausmuh: Oh, hard time triggers automatically? I thought I had to force your resignation? :P To be continued! \n\nHomeworlds Online (SDG# 25353)\nVariants: "Hard time"\nStarted: 2014.2.9, Ended: 2014.3.1\nParticipants: foksieloy (S), shmil1 (N)\nWinner: shmil1\n\n1) shmil1: Homeworld R2 B1 G3\n\n2) foksieloy: Homeworld R1 B3 G3\n\tfoksieloy: Hi! Good luck and have fun!\n\n3) shmil1: Build G1 Shmil1\n\n4) foksieloy: Build G1 Foksieloy\n\n5) shmil1: Trade G1 Y1 Shmil1\n\n6) foksieloy: Trade G1 B1 Foksieloy\n\n7) shmil1: Build G1 Shmil1\n\n8) foksieloy: Build G1 Foksieloy\n\n9) shmil1: Build Y1 Shmil1\n\n10) foksieloy: Build B1 Foksieloy\n\n11) shmil1: Trade Y1 R1 Shmil1\n\n\nHomeworlds Online (SDG# 25230)\nVariants: "Hard time"\nStarted: 2014.2.12, Ended: 2014.2.15\nParticipants: fogus (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld Y1 B2 G3\n\n2) fogus: Homeworld R1 B2 G3\n\n3) Marmalade: Build G1 Marmalade\n\n4) fogus: Build G1 Fogus\n\n5) Marmalade: Discover G1 Marmalade Y3 Formalhaut\n\n6) fogus: Trade G1 Y1 Fogus\n\n7) Marmalade: Build G1 Marmalade\n\n8) fogus: Build Y1 Fogus\n\n9) Marmalade: Build G1 Formalhaut\n\n10) fogus: Trade Y1 R1 Fogus\n\n11) Marmalade: Trade G1 R1 Marmalade\n\n12) fogus: Build R2 Fogus\n\n13) Marmalade: Build R2 Marmalade\n\n14) fogus: Move R2 Fogus Formalhaut\n\n15) Marmalade: Move G3 Marmalade Formalhaut\n\n16) fogus: Attack G1 Formalhaut\n\tfogus: Off to shovel some snow. :-|\n\n17) Marmalade: Sacrifice R2 Marmalade\nAttack R2 Formalhaut\nAttack G1 Formalhaut\n\n18) fogus: Discover R1 Fogus Y3 Oboe\n\tMarmalade: Not much in the way of snow here (it's getting close), but do have to worry about flooding :/\n\tfogus: Huh... I didn't know that you could attack even without a ship in the same system. :-( I'm still learning how to best utilize sacrifices, this is a painful way to learn. ;-)\n\n19) Marmalade: Move G3 Formalhaut Marmalade\n\tfogus: And of course as I said that I almost walked right into a catastrophe myself.\n\n20) fogus: Build G1 Fogus\n\tMarmalade: Sacrificing allows you to take that action wherever it would be legal - so I could sac a g1 to create a single red ship at Marmalade, for example.\n\n21) Marmalade: Build R2 Marmalade\n\n22) fogus: Move G1 Fogus Oboe\n\n23) Marmalade: Move R2 Marmalade Oboe\n\n24) fogus: Build G2 Fogus\n\n25) Marmalade: Attack R1S Oboe\n\tfogus: Now that I finally understand the rules (well, mostly) I'm starting to appreciate the subtitles of your position and moves. Very nice.\n\n26) fogus: Move G1 Oboe Fogus\n\n27) Marmalade: Move G1 Formalhaut Fogus\nCatastrophe Fogus G\n\tMarmalade: I'm not particularly brilliant at this, but I'm always happy to play.\n\n28) fogus: Discover Y1 Fogus R3 Caprica\n\n\tfogus: D'oh!\n\tfogus: As thus did the last of humanity flee the fogus system in search of a new home... verily did they find after much toil, a 4-star cluster suitable for habitation. After much deliberation their new home was named Caprica. Little is known of what happened to those survivors.\n\tMarmalade: Aw, poor little triangular guys. It's amazing, considering that they're only difference is pointing in different directions, that they can't get on.\r\n\r\nCheers for the game.\r\n\n\tfogus: Thank you for the game. My apologies for not putting up a very strong fight. I hope to get there one day.\n\nHomeworlds Online (SDG# 25277)\nVariants: "Unrated, Hard time"\nStarted: 2014.2.16, Ended: 2014.4.7\nParticipants: goulo (S), Grosseteste (N), wil (E)\nWinner: goulo\n\n1) Grosseteste: H B2 Y1 G3\n\n2) goulo: Homeworld R3 B2 G3\n\n3) Grosseteste: Build G1 Grosseteste\n\n4) goulo: Build G1 Goulo\n\tgoulo: wow, one player eliminated even before my first turn! :P\n\tGrosseteste: :p\n\tGrosseteste: This'll be a little different with an extra stash...\n\n5) Grosseteste: Discover G1 Grosseteste B3 Luce\n\n6) goulo: Trade G1 Y1 Goulo\n\tgoulo: true, I'd not thought about that side effect of a player being dropped before their first turn.\n\n7) Grosseteste: Build G1 Luce\n\n8) goulo: Build G1 Goulo\n\n9) Grosseteste: Build G1 Grosseteste\n\n10) goulo: Trade G1 R1 Goulo\n\n11) Grosseteste: Trade G1 R1 Luce\n\n12) goulo: Build G1 Goulo\n\n13) Grosseteste: B R1 Luce\n\n14) goulo: Discover R1 Goulo Y1 Citroneto\n\n15) Grosseteste: B G1 Luce\n\n16) goulo: Build G2 Goulo\n\n17) Grosseteste: T R1 Y1 Luce\n\n18) goulo: Move G2 Goulo Citroneto\n\n19) Grosseteste: Build Y2 Luce\n\n20) goulo: Build Y2 Goulo\n\n21) Grosseteste: T G1 R1 Grosseteste\n\n22) goulo: Trade Y1 B1 Goulo\n\twil: Can this game get eliminated from the current list...\r\n\r\n\n\tGrosseteste: Up till now, for me it has always said "Your time is up!"\n\tgoulo: I'm confused what the issue is. wil, you were eliminated due to Hard Time but Grosseteste and I are still playing.\n\twil: Oooopss my bad! I thought it was just sitting there..my apologies!!\n\n23) Grosseteste: Build G1 Grosseteste\n\tGrosseteste: Well that seemed to work. Does frozen just mean our timers aren't running?\n\tgoulo: Ok, it seems I un-called the admin. (I think Aaron is rarely maintaining the site these days in any case, so it might have been a long wait before he appeared...) :)\n\n24) goulo: Build G2 Citroneto\n\n25) Grosseteste: D G1 Luce Y1 Iride\n\n26) goulo: Discover G2 Citroneto Y3 Citronego\n\n27) Grosseteste: M G1 Iride Goulo\n\n28) goulo: Discover G3 Goulo Y1 Vortareto\n\n29) Grosseteste: B G2 Grosseteste\n\n30) goulo: Move G2 Citronego Grosseteste\nCatastrophe Grosseteste G\n\n31) Grosseteste: Sacrifice Y2 Luce\nMove G1 Luce Grosseteste\nM Y1 Luce Grosseteste\n\n32) goulo: Attack G1N Goulo\n\tGrosseteste: Nooooooooooooo! I meant to build in goulo, of course. GG\n\tGrosseteste: Eh, actually I'll try to get what I can tactically out of this as penance for the blunder. Expect a separate challenge though!\n\n33) Grosseteste: B Y2 Grosseteste\n\tgoulo: Aha, I wondered what the plan was with that build in Grosseteste! :)\n\n34) goulo: Build Y2 Goulo\n\n35) Grosseteste: Discover Y1 Grosseteste G3 Colore\n\n36) goulo: Discover Y2 Goulo G1 Smeraldeto\n\n37) Grosseteste: B Y2 Colore\n\n38) goulo: Build Y3 Goulo\n\n39) Grosseteste: T Y2 G2 Grosseteste\n\n40) goulo: Move G3 Vortareto Luce\n\n\tGrosseteste: GG, didn't intend to let it go down to hard time after all that (caught what appears to be the bubonic plague a couple days ago).\r\n\r\nI will challenge again when I'm feeling better.\n\twil: awe sorry that happened... \n\tgoulo: heh, it was an unusual game! :)\n\nHomeworlds Online (SDG# 25397)\nVariants: "Unrated"\nStarted: 2014.2.16, Ended: 2014.3.6\nParticipants: fogus (S), pedrop (N)\nWinner: fogus\n\n1) pedrop: Homeworld Y1 B2 G3\n\n2) fogus: Homeworld R1 B2 G3\n\n3) pedrop: Build G1 Pedrop\n\n4) fogus: Build G1 Fogus\n\n5) pedrop: Trade G1 Y1 Pedrop\n\n6) fogus: Trade G1 Y1 Fogus\n\n7) pedrop: Discover Y1 Pedrop G3 Kaziu\n\n8) fogus: Build G1 Fogus\n\n9) pedrop: Build G1 Pedrop\n\n10) fogus: Trade G1 R1 Fogus\n\n11) pedrop: Trade G1 R1 Pedrop\n\n12) fogus: Move R1 Fogus Kaziu\n\n13) pedrop: Sacrifice R1 Pedrop\nAttack R1 Kaziu\n\n14) fogus: Build G1 Fogus\n\n15) pedrop: Build G1 Pedrop\n\tfogus: ARGH! I always forget about to look for red sacrifices. :-(\n\n16) fogus: Build Y2 Fogus\n\n17) pedrop: Build Y2 Kaziu\n\tpedrop: Yeah... forgeting is not good thing:) But I feel this game is all about Your opponent mistakes... you are just waiting for it. Without it we could play for years... Having written it... it seems quite obvious and relevent to most games... lol... ;)\n\n18) fogus: Discover Y1 Fogus B3 Chum\n\n19) pedrop: Discover Y1 Kaziu G2 Zbysiu\n\n20) fogus: Trade G1 R1 Fogus\n\n21) pedrop: B R2 Kaziu\n\n22) fogus: Move R1 Fogus Chum\n\n23) pedrop: Move R2 Kaziu Zbysiu\n\n24) fogus: Build G1 Fogus\n\n\nHomeworlds Online (SDG# 25369)\nVariants: "Hard time"\nStarted: 2014.2.16, Ended: 2014.2.20\nParticipants: wil (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 25280)\nVariants: "Hard time"\nStarted: 2014.2.21, Ended: 2014.2.24\nParticipants: wil (S), qwertyu63 (N)\nWinner: qwertyu63\n\n1) qwertyu63: Homeworld G1 Y3 B3\n\n\nHomeworlds Online (SDG# 25427)\nVariants: "Hard time"\nStarted: 2014.2.21, Ended: 2014.2.24\nParticipants: wil (S), qwertyu63 (N)\nWinner: qwertyu63\n\n1) qwertyu63: Homeworld G1 Y3 B3\n\n\nHomeworlds Online (SDG# 25407)\nVariants: "Hard time"\nStarted: 2014.2.23, Ended: 2014.3.15\nParticipants: qwertyu63 (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld Y2 G1 B3\n\n2) qwertyu63: Homeworld Y3 G1 B3\n\n3) Marmalade: Build B1 Marmalade\n\n4) qwertyu63: Build B1 Qwertyu63\n\n5) Marmalade: Discover B1 Marmalade G3 Foom\n\n6) qwertyu63: Trade B1 Y1 Qwertyu63\n\n7) Marmalade: Build B1 Foom\n\n8) qwertyu63: Discover Y1 Qwertyu63 R2 Asdf\n\n9) Marmalade: Trade B1 Y1 Foom\n\n10) qwertyu63: Build B1 Qwertyu63\n\n11) Marmalade: Build B1 Marmalade\n\n12) qwertyu63: Move B1 Qwertyu63 Asdf\n\n13) Marmalade: Build B2 Foom\n\n14) qwertyu63: Build B2 Qwertyu63\n\n15) Marmalade: Move B2 Foom Asdf\n\n16) qwertyu63: Move Y1 Asdf Qwertyu63\n\n17) Marmalade: Attack B1 Asdf\n\n18) qwertyu63: Trade B2 R2 Qwertyu63\n\n19) Marmalade: Trade B2 R2 Asdf\n\n20) qwertyu63: Build B2 Qwertyu63\n\n21) Marmalade: Build B2 Foom\n\n22) qwertyu63: Discover Y1 Qwertyu63 G2 Zxc\n\n23) Marmalade: Build B2 Foom\n\n24) qwertyu63: Build Y1 Zxc\n\n25) Marmalade: Build B3 Marmalade\n\n26) qwertyu63: Build Y2 Zxc\n\n27) Marmalade: Move Y1 Foom Zxc\nCatastrophe Zxc Y\n\n28) qwertyu63: Trade B2 Y2 Qwertyu63\n\n29) Marmalade: Trade B3 Y3 Marmalade\n\n\nHomeworlds Online (SDG# 25438)\nVariants: "Hard time"\nStarted: 2014.2.23, Ended: 2014.4.11\nParticipants: fnord (S), Grosseteste (N)\nWinner: Grosseteste\n\n1) Grosseteste: H B2 Y1 G3\n\n2) fnord: Homeworld B2 G1 Y3\n\tGrosseteste: Awesome, have gotten zero action on the ladder so far. Guess it took some new people at the bottom.\n\tGrosseteste: Have a good game!\n\tfnord: Thanks, I'll try, though I'll warn you I'm going to be very rusty at the game. \r\nI hope you have fun!\n\n3) Grosseteste: Build G1 Grosseteste\n\n4) fnord: B Y1 Fnord\n\n5) Grosseteste: B G1 Grosseteste\n\n6) fnord: Build Y1 Fnord\n\tfnord: b y1 fnord\n\tfnord: Whoops, wrong field!\n\n7) Grosseteste: D G1 Grosseteste Y3 Luce\n\n8) fnord: Discover Y1 Fnord B3 Eris\n\n9) Grosseteste: M G1 Luce Fnord\n\n10) fnord: Trade Y3 R3 Fnord\n\n11) Grosseteste: Build G2 Fnord\n\n12) fnord: Attack G2 Fnord\n\n13) Grosseteste: B G2 Fnord\nCatastrophe Fnord Green\n\n14) fnord: Trade Y1 G1 Fnord\n\tfnord: Nicely done.\n\n15) Grosseteste: Trade G1 Y1 Grosseteste\n\n16) fnord: Build R1 Fnord\n\tGrosseteste: Thanks, I'm not sure if South can stop North from destroying its green star given the initial setup; I'll look at it more closely when I'm less sleepy.\n\n17) Grosseteste: T Y1 R1 Grosseteste\n\n\nHomeworlds Online (SDG# 25319)\nVariants: "Hard time"\nStarted: 2014.2.23, Ended: 2014.2.27\nParticipants: SilentTitan (S), qwertyu63 (N)\nWinner: SilentTitan\n\n1) qwertyu63: Homeworld Y1 G2 B3\n\n2) SilentTitan: Homeworld B3 R2 G3\n\n3) qwertyu63: Build B1 Qwertyu63\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) qwertyu63: Trade B1 Y1 Qwertyu63\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) qwertyu63: Discover Y1 Qwertyu63 R3 Asdf\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) qwertyu63: Build B1 Qwertyu63\n\n10) SilentTitan: Trade Y1 B1 Silenttitan\n\n11) qwertyu63: Move B1 Qwertyu63 Asdf\n\n12) SilentTitan: Build G1 Silenttitan\n\n13) qwertyu63: Build B1 Qwertyu63\n\n14) SilentTitan: Discover B1 Silenttitan Y1 Sol\n\n15) qwertyu63: Build B2 Qwertyu63\n\n16) SilentTitan: Sacrifice Y2 Silenttitan\nMove B1 Sol Asdf\nMove B1 Asdf Qwertyu63\nCatastrophe Qwertyu63 Blue\n\n\nHomeworlds Online (SDG# 25445)\nVariants: "Hard time"\nStarted: 2014.2.24, Ended: 2014.2.28\nParticipants: TeeTeeTee (S), Remneb (N)\nWinner: TeeTeeTee\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) TeeTeeTee: Homeworld B1 Y3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) Remneb: Trade G1 Y1 Remneb\n\tRemneb: Have a good game.\n\n6) TeeTeeTee: Trade G1 B1 Teeteetee\n\n7) Remneb: Build G1 Remneb\n\n8) TeeTeeTee: Build B1 Teeteetee\n\n9) Remneb: Build Y1 Remneb\n\tTeeTeeTee: You too!\n\n10) TeeTeeTee: Discover B1 Teeteetee G2 Dirac\n\n11) Remneb: Trade Y1 R1 Remneb\n\n12) TeeTeeTee: Build B2 Dirac\n\n13) Remneb: Discover R1 Remneb Y3 Redrum\n\n14) TeeTeeTee: Trade B2 R2 Dirac\n\n15) Remneb: Build Y1 Remneb\n\n16) TeeTeeTee: Build B2 Dirac\n\n17) Remneb: Discover R1 Redrum Y2 Ouja\n\n18) TeeTeeTee: Build B2 Teeteetee\n\n19) Remneb: Discover Y1 Remneb B3 Altar\n\n20) TeeTeeTee: Build B3 Dirac\n\n21) Remneb: Build G1 Remneb\n\n22) TeeTeeTee: Trade B3 Y3 Dirac\n\n23) Remneb: Discover G1 Remneb Y3 Horla\n\n24) TeeTeeTee: Build B3 Dirac\n\n25) Remneb: Build G1 Horla\n\n26) TeeTeeTee: Move R2 Dirac Horla\n\n27) Remneb: Sacrifice G3 Remneb\nBuild G2 Horla\nBuild G2 Horla\nBuild G3 Remneb\nCatastrophe Horla G\n\n28) TeeTeeTee: Trade B3 G3 Dirac\n\n29) Remneb: Move G1 Remneb Altar\n\n30) TeeTeeTee: Build B3 Dirac\n\n31) Remneb: Build G1 Altar\n\n32) TeeTeeTee: Move B3 Dirac Altar\n\n33) Remneb: Move G1 Altar Dirac\n\n34) TeeTeeTee: Sacrifice Y3 Dirac\nMove G3 Dirac Altar\nMove G3 Altar Remneb\nMove B3 Altar Remneb\n\n35) Remneb: Sacrifice G3 Remneb\nBuild G1 Dirac\nBuild G2 Dirac\nBuild Y1 Altar\nCatastrophe Dirac G\n\n\n\n36) TeeTeeTee: Attack Y1 Remneb\n\tRemneb: Thanks for the game.\n\tTeeTeeTee: Thanks! It's nice to play a quick-paced game for a change: the last few people I played took days to make a single move...\n\tRemneb: I've played some games who took months ! \n\tBabamots: In case anyone is interested, this game was featured in Homeworlds Theater episode 1:\r\n\r\nhttps://www.youtube.com/watch?v=CXG1GETk4_g\n\n\nHomeworlds Online (SDG# 25442)\nVariants: "Hard time"\nStarted: 2014.2.25, Ended: 2014.3.8\nParticipants: SilentTitan (S), ausmuh (N)\nWinner: SilentTitan\n\n1) ausmuh: Homeworld B3 Y2 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) ausmuh: Build G1 Ausmuh\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) ausmuh: Trade G1 R1 Ausmuh\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) ausmuh: Build R1 Ausmuh\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) ausmuh: Build R2 Ausmuh\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) ausmuh: Trade R2 Y2 Ausmuh\n\n12) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n13) ausmuh: Build R2 Ausmuh\n\n14) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n15) ausmuh: Sacrifice Y2 Ausmuh\nDiscover R2 Ausmuh G1 Temp\nMove R2 Temp Sol\n\n16) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover Y1 Sol B1 Soul\nDiscover Y1 Sol G1 Sole\n\n17) ausmuh: Move R1 Ausmuh Soul\n\n18) SilentTitan: Discover Y1 Soul R3 Tic\n\n19) ausmuh: Build R2 Ausmuh\n\tausmuh: Heh, clever planet names :)\n\tSilentTitan: Lol. Thanks\n\n20) SilentTitan: Trade Y3 R3 Silenttitan\n\n21) ausmuh: Trade R2 Y2 Ausmuh\n\n22) SilentTitan: Build Y2 Silenttitan\n\n23) ausmuh: Build Y3 Ausmuh\n\n24) SilentTitan: Move Y1 Sole Ausmuh\nCatastrophe Ausmuh Yellow\n\n25) ausmuh: Sacrifice G3 Ausmuh\nBuild R2 Soul\nBuild R2 Sol\nBuild R3 Ausmuh\n\n26) SilentTitan: Trade R3 B3 Silenttitan\n\n27) ausmuh: Build R3 Sol\n\n28) SilentTitan: Build B1 Silenttitan\n\n29) ausmuh: Trade R2 Y2 Soul\n\n30) SilentTitan: Trade Y2 R2 Silenttitan\n\n31) ausmuh: Sacrifice Y2 Soul\nMove R2 Sol Silenttitan\nMove R2 Sol Silenttitan\nCatastrophe Silenttitan Red\n\n32) SilentTitan: Trade B1 R1 Silenttitan\n\n33) ausmuh: Trade R3 G3 Ausmuh\n\n34) SilentTitan: Build B1 Silenttitan\n\n35) ausmuh: Trade R1 Y1 Ausmuh\n\n36) SilentTitan: Build Y2 Silenttitan\n\n37) ausmuh: Trade R1 B1 Soul\n\n38) SilentTitan: Discover B1 Silenttitan G1 Sole\n\n39) ausmuh: Sacrifice Y1 Ausmuh\nMove B1 Soul Sol\n\n40) SilentTitan: Build Y1 Silenttitan\n\tausmuh: Ahhh! Everything of mine is in the wrong place :)\n\n41) ausmuh: Build B1 Sol\n\tSilentTitan: That is the general lament of binary Homeworlds\n\n42) SilentTitan: Move Y1 Silenttitan Sole\n\n43) ausmuh: Trade R3 Y3 Sol\n\n44) SilentTitan: Sacrifice Y2 Silenttitan\nMove B3 Silenttitan Ausmuh\nMove B1 Sole Ausmuh\n\n45) ausmuh: Sacrifice Y3 Sol\nMove B1 Sol Silenttitan\nMove B1 Sol Silenttitan\nPass\n\n46) SilentTitan: Sacrifice G1 Silenttitan\nBuild B2 Ausmuh\nCatastrophe Ausmuh Blue\n\tausmuh: Ugh, I kinda lost my grip the second half :/ Good game though! I had a lot of fun :)\n\n\tausmuh: Grip is not the right word, more like strategy or something. O.o\n\tSilentTitan: Thanks for the game.\n\nHomeworlds Online (SDG# 25450)\nStarted: 2014.2.26, Ended: 2014.3.9\nParticipants: Laurie_Menke (S), Otts (N)\nWinner: Otts\n\n1) Otts: Homeworld B2 Y1 G3\n\tLaurie_Menke: Thanks for the challenge, Alex! Have fun! (For starters, you'll want to build a homeworld with any two colors except green, and then build a large green ship.)\n\n2) Laurie_Menke: Homeworld Y3 B1 G3\n\n3) Otts: Build G1 Otts\n\tLaurie_Menke: The second move has no choice involved...we each have only one thing we can do: build a small green. After that, the choices start to open up. :o)\n\tOtts: Ok, I think I've got a grasp of it here! But...just to be (overly) technical and make sure I'm clear, before building that little green I could still have a few moves: pass, sacrifice my g3, or trade my g3 for another color. I couldn't move it out because I wouldn't have any ships in my homeworld. Granted none of those make sense, but I want to be sure I've got my head around it properly!\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Otts: Discover G1 Otts B3 Beagle\n\tLaurie_Menke: It is true that you could pass or trade it for another color. Good thinking! :o) You couldn't sacrifice it because that would leave your homeworld empty and end the game.\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n7) Otts: Build G1 Otts\n\n8) Laurie_Menke: Build Y1 Laurie_menke\n\n9) Otts: Build G1 Beagle\n\n10) Laurie_Menke: Build G2 Laurie_menke\n\n11) Otts: Sacrifice G3 Otts\nBuild G2 Beagle\nBuild G2 Otts\nBuild G3 Otts\n\tLaurie_Menke: One thing you want to look out for is taking the last of any size. When you took the last small green, I was able to get a medium green. It was basically like you lost a turn, because I got 2 points of green power in one turn and those same two points of green power took you two turns. It's not really avoidable a lot of the time, but it's something to watch for. And BTW... you're doing well so far!\n\tLaurie_Menke: P.S. I was safe taking the last yellow earlier because you didn't have the ability to grow yellow.\n\tOtts: Damn. The learning curve is steep here, but I'm working my way through it. I'm already finding holes in things I was thinking were solid yesterday. I see now I'm frozen out of yellow ships for the time being. You sly fox, I'll remember that. ;)\n\n12) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild G3 Laurie_menke\nPass\n\n13) Otts: Trade G3 Y3 Otts\n\tLaurie_Menke: Yes, the learning curve is extremely steep for this game. But it's worth the time and effort. And you are doing well! That last move was a nice move! That is called the "factory" move. It's a great way to speed up production, but you have to be careful not to set yourself up for destruction...which you have done! Nice job!\n\tLaurie_Menke: Yes, the learning curve is extremely steep for this game. But it's worth the time and effort. And you are doing well! That last move was a nice move! That is called the "factory" move. It's a great way to speed up production, but you have to be careful not to set yourself up for destruction...which you have done! Nice job!\n\tLaurie_Menke: Oops! Not sure why that posted twice...\n\n14) Laurie_Menke: Discover Y1 Laurie_menke B2 Blue\n\tLaurie_Menke: LOL! I don't know why I did that that way. I could have just grown the green the regular way. ::sigh::\n\tOtts: I realized its much tougher to learn this game when trying to learn other pyramid games at the same time. Since they all have different trade mechanisms, I've had a little trouble connecting all the pips...er, dots, but I think I'm there now. The thing that messed me up was thinking that when you trade, if your size ship is not available, you just take the next size up. Well, that's not the case, so then I was thinking that I was frozen out of yellow ships, and even said so yesterday. However, I just realized that I could swap my G3 for a Y3. Gotta watch this game carefully!!\n\n15) Otts: Sacrifice Y3 Otts\nDiscover G2 Otts Y3 I_hope\nDiscover G2 I_hope Y2 This_works\nMove G2 This_works Laurie_menke\nCatastrophe Laurie_menke G\n\tLaurie_Menke: Yep...there are always more options than appear on the surface. :o) And I know what you mean about learning multiple pyramid games at once!\n\n16) Laurie_Menke: Discover Y1 Blue R3 Red\n\n17) Otts: Sacrifice G2 Beagle\nBuild G2 Otts\nBuild G2 Otts\n\tLaurie_Menke: A well-executed move! And it may pay off. But it left your homeworld very weak. We'll have to see how this pans out. :o)\n\n18) Laurie_Menke: Move Y1 Red Otts\n\n19) Otts: Trade G2 R2 Otts\n\tOtts: Thanks! I'm not completely sure how the attacking works, so I'm interested to see how this ends up as well!\n\tLaurie_Menke: I'm not actually attacking. I'm just protecting myself against an attack from you. ;o) In general, it takes two moves to attack--one to move into the same star system, and the other to turn an opponent's equal or smaller sized ship into your own ship (assuming you have accessto red).\n\n20) Laurie_Menke: Discover Y1 Otts G3 Green\n\tLaurie_Menke: I should be nice and warn you that you are in imminent danger. ;o)\n\tOtts: Hmmm...I sure do appreciate the courtesy...But I honestly can't figure out how. There are no little greens you can trade your little yellow for, so I'm thinking I'm safe from catastrophe...Can you use the build technology off my green ships? In any event, I was planning on switching a G2 to a R2, so that's what I guess I'm going to roll with...\n\n21) Otts: Move R2 Otts Green\n\tLaurie_Menke: Ah, you are right...no little greens. ::sigh:: And now i have to retreat. ::double sigh:: You are doing very well!\n\n22) Laurie_Menke: Discover Y1 Green G2 G2\n\n23) Otts: Trade G2 Y2 Otts\n\n24) Laurie_Menke: Move Y1 G2 Laurie_menke\n\n25) Otts: Sacrifice Y2 Otts\nDiscover R2 Green G2 Sativa\nMove R2 Sativa Laurie_menke\n\n26) Laurie_Menke: Discover Y1 Laurie_menke G2 Ack\n\n27) Otts: Attack Y1 Laurie_menke\n\n\tOtts: Well thanky! I'm thinking I may have gotten lucky while your guard was down playing a newbie, but I'll take the compliment! I do believe a rematch be a fair proposition!\n\nHomeworlds Online (SDG# 25447)\nVariants: "Hard time"\nStarted: 2014.2.26, Ended: 2014.3.25\nParticipants: radynski (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) radynski: Homeworld G1 B3 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) radynski: Build Y1 Radynski\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) radynski: Trade Y1 G1 Radynski\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) radynski: Build Y1 Radynski\n\n9) SilentTitan: Trade Y1 R1 Silenttitan\n\n10) radynski: Trade Y1 R1 Radynski\n\n11) SilentTitan: Build R2 Silenttitan\n\n12) radynski: Build R2 Radynski\n\n13) SilentTitan: Discover R1 Silenttitan B3 Sol\n\n14) radynski: Build Y1 Radynski\n\tradynski: Shouldn't sol be a y2? :)\n\n15) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: :)\n\n16) radynski: Build G2 Radynski\n\n17) SilentTitan: Build G2 Silenttitan\n\n18) radynski: Sacrifice Y3 Radynski\nDiscover G1 Radynski B2 George\nMove G1 George Sol\nMove G1 Sol Silenttitan\nCatastrophe Silenttitan Green\n\tradynski: I have no idea whether or not this is a good idea, but I'm going to try it.\n\n19) SilentTitan: Trade R2 G2 Silenttitan\n\n20) radynski: Build R2 Radynski\n\n21) SilentTitan: Build G1 Silenttitan\n\n22) radynski: Discover R2 Radynski R2 Beetle\n\n23) SilentTitan: Sacrifice G1 Silenttitan\nBuild R3 Sol\n\n24) radynski: Build R3 Radynski\n\n25) SilentTitan: Trade R1 Y1 Sol\n\n26) radynski: Trade R3 Y3 Radynski\n\n27) SilentTitan: Build Y2 Silenttitan\n\n28) radynski: Move Y1 Radynski Beetle\n\n29) SilentTitan: Trade Y1 G1 Sol\n\n30) radynski: Build Y1 Radynski\n\n31) SilentTitan: Build G1 Sol\n\n32) radynski: Sacrifice G2 Radynski\nBuild Y2 Beetle\nBuild Y2 Radynski\n\n33) SilentTitan: Move Y1 Silenttitan Sol\n\n34) radynski: Sacrifice Y1 Radynski\nDiscover R2 Beetle G3 Lush\n\n35) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y1 Sol\nBuild Y3 Silenttitan\n\n36) radynski: Move Y2 Beetle Lush\n\n37) SilentTitan: Trade Y2 G2 Silenttitan\n\n38) radynski: Trade Y2 G2 Radynski\n\n39) SilentTitan: Discover Y1 Sol B2 Soul\n\n40) radynski: Trade R1 B1 Radynski\n\n41) SilentTitan: Move G1 Sol Soul\n\n42) radynski: Move G2 Radynski Beetle\n\n43) SilentTitan: Trade Y3 G3 Silenttitan\n\n44) radynski: Build R1 Lush\n\n45) SilentTitan: Sacrifice G3 Silenttitan\nBuild G2 Sol\nBuild G3 Soul\nBuild G3 Silenttitan\n\n46) radynski: Build R1 Lush\n\n47) SilentTitan: Trade G3 B3 Soul\n\n48) radynski: Move R1 Lush Silenttitan\n\n49) SilentTitan: Sacrifice B3 Soul\nTrade Y1 B1 Soul\nTrade G2 Y2 Sol\nTrade G2 B2 Silenttitan\n\n50) radynski: Sacrifice B1 Radynski\nTrade Y1 B1 Beetle\n\n51) SilentTitan: Attack R1 Silenttitan South\n\n52) radynski: Sacrifice Y2 Lush\nMove R2 Lush Silenttitan\nMove R1 Lush Silenttitan\nCatastrophe Silenttitan Red\n\n53) SilentTitan: Move R3 Sol Beetle\n\n54) radynski: Sacrifice G2 Beetle\nBuild R1 Radynski\nBuild Y1 Radynski\n\n55) SilentTitan: Build B1 Soul\n\n56) radynski: Move R2 Radynski Soul\n\n57) SilentTitan: Sacrifice Y2 Sol\nMove B1 Soul Radynski\nMove B1 Soul Radynski\n\n58) radynski: Attack G1 Soul\n\n59) SilentTitan: Build B3 Radynski\nCatastrophe Radynski Blue\n\n60) radynski: Build G2 Soul\n\n61) SilentTitan: Build G2 Silenttitan\n\n62) radynski: Trade G1 B1 Soul\n\n63) SilentTitan: Sacrifice B2 Silenttitan\nTrade Y1 G1 Sol\nTrade R3 Y3 Beetle\n\n64) radynski: Move Y3 Radynski Silenttitan\n\n65) SilentTitan: Sacrifice Y3 Beetle\nMove G1 Sol Radynski\nMove G1 Sol Radynski\nMove G2 Silenttitan Radynski\nCatastrophe Radynski Green\n\n\tradynski: You may blow up my home, but you've lost yours in the process! Ha ha!\r\n\r\nYou may win by the rules of the game, but the moral victory shall be mine!\r\n\r\nGood game. ;-)\n\tSilentTitan: Actually a phenomenol game. You are a very good player. Definitely a cut above the norm.\n\tSilentTitan: Actually a phenomenol game. You are a very good player. Definitely a cut above the norm.\n\nHomeworlds Online (SDG# 25428)\nVariants: "Hard time"\nStarted: 2014.2.27, Ended: 2014.3.6\nParticipants: wil (S), radynski (N)\nWinner: wil\n\n1) radynski: Homeworld G1 B2 Y3\n\n2) wil: Homeworld B3 G1 G3 *\n\n3) radynski: Build Y1 Radynski\n\n4) wil: Build G1 Wil\n\n5) radynski: Trade Y1 R1 Radynski\n\n6) wil: Trade G3 Y3 Wil\n\n7) radynski: Build Y1 Radynski\n\n8) wil: Build G2 Wil\n\n9) radynski: Discover Y1 Radynski B3 George\n\n10) wil: Trade G2 R2 Wil\n\n11) radynski: Build R1 Radynski\n\n12) wil: Build G2 Wil\n\n13) radynski: Discover Y1 George R1 Banks\n\n14) wil: Build R2 Wil\n\twil: shaping up to be one strange game....\r\n\n\n15) radynski: Build R2 Radynski\n\n16) wil: Build R3 Wil\n\tradynski: this is just not going well\n\n17) radynski: Sacrifice Y3 Radynski\nDiscover R2 Radynski B3 George\nDiscover R2 George B2 Georgy\nMove R2 Georgy Wil\nCatastrophe Wil Red\n\n18) wil: Discover G2 Wil Y2 Y2\n\n19) radynski: Build R2 Radynski\n\n20) wil: Build G2 Y2\n\n21) radynski: Trade R2 G2 Radynski\n\n22) wil: Build G3 Wil\n\n23) radynski: Build G3 Radynski\n\n24) wil: Sacrifice Y3 Wil\nDiscover G2 Y2 Y3 Y3\nMove G2 Y2 Y3\nMove G2 Y3 Radynski\nCatastrophe Radynski G\n\twil: It is all about experimentation in learning this game... lots of strategy with few moving parts...\n\n\twil: it just got worse...\n\tradynski: yeah, I knew I was screwed like 10 turns ago, but was hoping you would just screw up. :)\r\nGood game.\n\twil: that is always the potentiall....a couple of reboots and this game can turn on the dime.\n\nHomeworlds Online (SDG# 25426)\nVariants: "Unrated"\nStarted: 2014.2.28, Ended: 2014.3.13\nParticipants: wil (S), qwertyu63 (N)\nWinner: wil\n\n1) qwertyu63: Homeworld B1 Y2 G3\n\n2) wil: Homeworld G3 B1 B3 *\n\n3) qwertyu63: Build G1 Qwertyu63\n\n4) wil: Build B1 Wil\n\n5) qwertyu63: Trade G1 Y1 Qwertyu63\n\n6) wil: Trade B3 Y3 Wil\n\n7) qwertyu63: Build Y1 Qwertyu63\n\n8) wil: Build B2 Wil\n\n\twil: Hellooooooo\n\nHomeworlds Online (SDG# 25475)\nVariants: "Hard time"\nStarted: 2014.2.28, Ended: 2014.3.6\nParticipants: ausmuh (S), Remneb (N)\nWinner: ausmuh\n\n1) Remneb: Homeworld B3 R2 G3\n\n2) ausmuh: Homeworld G3 B1 B3 *\n\n3) Remneb: Build G1 Remneb\n\tausmuh: Greetings and Have fun!\n\tRemneb: Have a good game too !\n\n4) ausmuh: Build B1 Ausmuh\n\n5) Remneb: Build G1 Remneb\n\n6) ausmuh: Trade B3 Y3 Ausmuh\n\n7) Remneb: Trade G1 B1 Remneb\n\n8) ausmuh: Build B2 Ausmuh\n\n9) Remneb: Trade G1 Y1 Remneb\n\n10) ausmuh: Discover B1 Ausmuh G2 Gwar\n\n11) Remneb: Discover B1 Remneb Y1 Trek\n\n12) ausmuh: Build B2 Gwar\n\n13) Remneb: Build G1 Remneb\n\n14) ausmuh: Trade B2 Y2 Gwar\n\n15) Remneb: Sacrifice G1 Remneb\nBuild B2 Trek\n\n16) ausmuh: Build B2 Gwar\n\n17) Remneb: Trade B2 R2 Trek\n\n18) ausmuh: Trade B2 R2 Gwar\n\n19) Remneb: Build G1 Remneb\n\n20) ausmuh: Build B2 Gwar\n\n21) Remneb: Build G1 Remneb\n\n22) ausmuh: Discover B2 Gwar G1 Slayer\n\n23) Remneb: Move G1 Remneb Trek\n\n24) ausmuh: Trade Y3 G3 Ausmuh\n\n25) Remneb: Sacrifice G3 Remneb\nBuild G2 Trek\nBuild G2 Trek\nBuild G3 Remneb\n\n26) ausmuh: Sacrifice G3 Ausmuh\nBuild B2 Gwar\nBuild B3 Slayer\nBuild B3 Ausmuh\n\tausmuh: Oops, color blind today -_-\n\n27) Remneb: Trade G2 Y2 Trek\n\n28) ausmuh: Sacrifice B2 Gwar\nTrade B3 G3 Slayer\nTrade B3 Y3 Ausmuh\n\n29) Remneb: Build B2 Trek\n\n30) ausmuh: Build B3 Slayer\n\n31) Remneb: Discover G2 Trek Y2 Moon\n\n32) ausmuh: Sacrifice G3 Slayer\nBuild Y1 Ausmuh\nBuild B3 Gwar\nBuild Y3 Gwar\n\n33) Remneb: Sacrifice G3 Remneb\nBuild G2 Moon\nBuild G3 Moon\nBuild Y3 Remneb\n\n34) ausmuh: Build R1 Gwar\n\n35) Remneb: Build G3 Remneb\n\n36) ausmuh: Sacrifice Y2 Gwar\nMove B3 Gwar Trek\nMove R1 Gwar Trek\n\n37) Remneb: Sacrifice Y2 Trek\nMove R2 Trek Moon\nMove B2 Trek Moon\n\n38) ausmuh: Sacrifice R2 Gwar\nAttack B1N Trek\nAttack G1N Trek\n\n39) Remneb: Sacrifice Y3 Remneb\nMove G2 Moon Ausmuh\nMove G2 Moon Ausmuh\nMove G3 Moon Ausmuh\nCatastrophe Ausmuh G\n\n40) ausmuh: Sacrifice B2 Slayer\nTrade B3 R3 Slayer\nTrade B2 R2 Ausmuh\n\n41) Remneb: Build Y2 Remneb\n\n42) ausmuh: Sacrifice Y3 Gwar\nMove R2 Ausmuh Remneb\nMove R3 Slayer Remneb\nMove R1 Trek Remneb\nCatastrophe Remneb Red\n\n43) Remneb: Move G3 Remneb Ausmuh\n\n44) ausmuh: Sacrifice Y3 Ausmuh\nMove B3 Trek Remneb\nMove B1 Trek Remneb\nMove B1 Gwar Remneb\nCatastrophe Remneb Blue\n\n\tausmuh: Good game, thanks again!\n\tRemneb: Thanks for the game !\n\nHomeworlds Online (SDG# 25474)\nVariants: "Hard time"\nStarted: 2014.3.1, Ended: 2014.4.17\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld B2 R1 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) wil: Build G1 Wil\n\twil: I got overloaded and ddin't get back..sorry\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 Y1 Wil\n\tSilentTitan: Not a problem\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) wil: Build G1 Wil\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) wil: Trade G1 R1 Wil\n\n10) SilentTitan: Build Y1 Silenttitan\n\twil: Looks like BC has TS in a predicament...He's not going to hard time out his he?\n\tSilentTitan: That happens occasionally. That's how I got to #1\n\tSilentTitan: That happens occasionally. That's how I got to #1\n\n11) wil: Build Y2 Wil\n\twil: I recall you dancing on top there for a bit! But didn't it happen because TS missed a challenge and dropped to 6?\n\n12) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n13) wil: Trade Y1 B1 Wil\n\n14) SilentTitan: Build Y1 Sol\n\n15) wil: Build Y2 Wil\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\tSilentTitan: Yes. That is exactly correct. However, the underlying cause is probably the same. Real life got busy.\n\n17) wil: Discover Y2 Wil G3 G3\n\n18) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover Y2 Sol R3 Soul\n\twil: nice move\n\n19) wil: Build B1 Wil\n\n20) SilentTitan: Trade Y3 G3 Silenttitan\n\n21) wil: Move B1 Wil G3\n\n22) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y3 Soul\nBuild Y3 Silenttitan\n\n23) wil: Discover R1 Wil G3 Gee3\n\n24) SilentTitan: Discover Y1 Sol R3 Sole\n\n25) wil: Build B1 Wil\n\n26) SilentTitan: Trade Y3 B3 Silenttitan\n\n27) wil: B Y3 Wil\n\n28) SilentTitan: Sacrifice Y3 Soul\nMove Y2 Soul Wil\nMove Y1 Sole Wil\nDiscover B3 Silenttitan G1 Tic\nCatastrophe Wil Yellow\n\n29) wil: B Y1 G3\n\n30) SilentTitan: Build Y2 Silenttitan\n\n31) wil: B B2 G3\n\n32) SilentTitan: Sacrifice Y2 Silenttitan\nMove B3 Tic G3\nMove B3 G3 Wil\nCatastrophe Wil Blue\n\n33) wil: S Y1 G3\nM R1 Gee3 Sol\n\n34) SilentTitan: Sacrifice Y1 Sol\nDiscover Y1 Sol G3 Soul\n\n35) wil: B R1 Sol\n\n36) SilentTitan: Build G1 Silenttitan\n\n37) wil: Build Y1 G3\n\tSilentTitan: I've forgotten what I was doing here..\r\n\n\n38) SilentTitan: Build G2 Silenttitan\n\n39) wil: Move B1 G3 Sol\n\n40) SilentTitan: Build Y1 Silenttitan\n\n41) wil: Sacrifice B2 G3\nTrade Y1 B1 G3\nTrade G3 B3 Wil\n\n42) SilentTitan: Trade G2 R2 Silenttitan\n\n43) wil: Sacrifice Y2 G3\nMove R1 Sol Silenttitan\nMove R1 Sol Silenttitan\nCatastrophe Silenttitan R\n\n44) SilentTitan: Build G2 Silenttitan\n\n45) wil: Trade B1 R1 Sol\n\n46) SilentTitan: Trade G2 R2 Silenttitan\n\twil: you just teasin?\n\tSilentTitan: Sorry fell asleep actually.\n\n47) wil: T B1 Y1 G3\n\n48) SilentTitan: Build Y2 Silenttitan\n\n49) wil: B Y2 G3\n\n50) SilentTitan: Trade Y3 R3 Silenttitan\n\n51) wil: T B3 G3 Wil\n\n52) SilentTitan: Sacrifice Y2 Silenttitan\nMove R3 Silenttitan Wil\nMove R2 Silenttitan Wil\n\n\twil: Thanx for the game\n\nHomeworlds Online (SDG# 25480)\nVariants: "Hard time"\nStarted: 2014.3.2, Ended: 2014.3.4\nParticipants: goulo (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3 Teeteetee\n\n2) goulo: Homeworld R1 B3 G3\n\n3) TeeTeeTee: Build G1 Teeteetee\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\tTeeTeeTee: Thanks: you too!\n\n5) TeeTeeTee: Trade G1 B1 Teeteetee\n\n6) goulo: Build G1 Goulo\n\n7) TeeTeeTee: Build B1 Teeteetee\n\n8) goulo: Trade G3 B3 Goulo\n\n9) TeeTeeTee: Discover B1 Teeteetee G3 Pauli\n\n10) goulo: Trade G1 Y1 Goulo\n\n11) TeeTeeTee: Build B2 Pauli\n\n12) goulo: Build B2 Goulo\n\n13) TeeTeeTee: Build B2 Pauli\n\n14) goulo: Trade B2 R2 Goulo\n\n15) TeeTeeTee: Trade B2 Y2 Pauli\n\n16) goulo: Build Y1 Goulo\n\n17) TeeTeeTee: Build B2 Teeteetee\n\n18) goulo: Discover R2 Goulo G2 Smeraldo\n\n19) TeeTeeTee: Discover B1 Pauli G2 Bohr\n\n20) goulo: Move Y1 Goulo Smeraldo\n\n21) TeeTeeTee: Build B2 Bohr\n\n22) goulo: Discover R2 Smeraldo B3 Safirego\n\n23) TeeTeeTee: Trade B1 R1 Teeteetee\n\n24) goulo: Build G1 Goulo\n\n25) TeeTeeTee: Build B1 Bohr\n\n26) goulo: Move G1 Goulo Smeraldo\n\n27) TeeTeeTee: Sacrifice Y2 Pauli\nMove B1 Bohr Goulo\nMove B1 Bohr Goulo\nCatastrophe Goulo Blue\n\n\tgoulo: thanks for the game\n\tTeeTeeTee: Thanks again!\n\nHomeworlds Online (SDG# 25440)\nVariants: "Hard time"\nStarted: 2014.3.2, Ended: 2014.3.15\nParticipants: wil (S), Marmalade (N)\nWinner: wil\n\n1) Marmalade: Homeworld G1 Y2 B3\n\twil: sorry I missed that last offer...\n\n2) wil: Homeworld B3 G1 G3 *\n\n3) Marmalade: Build B1 Marmalade\n\n4) wil: Build G1 Wil\n\n5) Marmalade: Build B1 Marmalade\n\n6) wil: Trade G3 Y3 Wil\n\n7) Marmalade: Discover B1 Marmalade G3 Foop\n\n8) wil: Build G2 Wil\n\n9) Marmalade: Build B1 Foop\n\n10) wil: Trade G2 B2 Wil\n\n11) Marmalade: Build B2 Foop\n\n12) wil: Build B2 Wil\n\n13) Marmalade: Trade B2 Y2 Foop\n\n14) wil: Discover B2 Wil G2 G2\n\n15) Marmalade: Sacrifice Y2 Foop\nMove B1 Foop G2\nMove B1 G2 Wil\n\n16) wil: Discover B2 Wil Y2 Y2\n\tMarmalade: Let's try this :P\r\n\n\twil: that worx well..\n\n17) Marmalade: Build B2 Wil\n\n18) wil: Build B3 G2\n\n\nHomeworlds Online (SDG# 25451)\nVariants: "Hard time"\nStarted: 2014.3.6, Ended: 2014.3.14\nParticipants: fogus (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) fogus: Homeworld G1 B3 Y3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) fogus: Build Y1 Fogus\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) fogus: Trade Y1 R1 Fogus\n\n7) SilentTitan: Trade Y1 R1 Silenttitan\n\n8) fogus: Build R2 Fogus\n\n9) SilentTitan: Build R2 Silenttitan\n\n10) fogus: Sacrifice Y3 Fogus\nDiscover R1 Fogus Y2 Ping\nDiscover R1 Ping Y3 Pong\nMove R1 Pong Silenttitan\nCatastrophe Silenttitan R\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) fogus: Build R1 Fogus\n\n13) SilentTitan: Build G1 Silenttitan\n\n14) fogus: Trade R2 G2 Fogus\n\n15) SilentTitan: Trade G1 Y1 Silenttitan\n\n16) fogus: Build R1 Fogus\n\n17) SilentTitan: Trade Y1 R1 Silenttitan\n\n18) fogus: Trade R1 Y1 Fogus\n\n19) SilentTitan: Trade G1 Y1 Silenttitan\n\n20) fogus: Build Y1 Fogus\n\n21) SilentTitan: Build Y2 Silenttitan\n\n22) fogus: Discover Y1 Fogus G2 Mac\n\n23) SilentTitan: Trade Y2 R2 Silenttitan\n\n24) fogus: Build Y2 Mac\n\n25) SilentTitan: Move G3 Silenttitan Fogus\n\n26) fogus: Build Y2 Fogus\n\n27) SilentTitan: Sacrifice R2 Silenttitan\nAttack Y2 Fogus South\nAttack R1 Fogus South\n\n28) fogus: Build G1 Fogus\n\tfogus: Nice!\n\n29) SilentTitan: Attack Y1 Fogus South\nCatastrophe Fogus Green\n\tSilentTitan: Good game. Thanks for playing. Defiantly a challenge to figure out the end there.\n\tfogus: Stinks to lose, but that was a pleasure to watch. :-) Thanks a ton.\n\n\nHomeworlds Online (SDG# 25499)\nVariants: "Hard time"\nStarted: 2014.3.7, Ended: 2014.3.15\nParticipants: ts52 (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld R1 B2 G3\n\n2) ts52: Homeworld B3 Y1 G3\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) ts52: Build G1 Ts52\n\n5) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) TeeTeeTee: Build Y1 Teeteetee\n\n8) ts52: Build G1 Ts52\n\n9) TeeTeeTee: Build Y2 Teeteetee\n\n10) ts52: Build G1 Gonzo\n\n11) TeeTeeTee: Build G2 Teeteetee\n\n12) ts52: Build G2 Ts52\n\n13) TeeTeeTee: Discover Y1 Teeteetee G3 Feynman\n\n14) ts52: Trade G2 Y2 Ts52\n\n15) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y2 Feynman\nBuild Y3 Feynman\nBuild Y3 Teeteetee\n\n16) ts52: Move Y2 Ts52 Gonzo\n\n17) TeeTeeTee: Move Y3 Feynman Gonzo\n\n18) ts52: Trade G1 R1 Gonzo\n\n19) TeeTeeTee: Trade Y3 R3 Teeteetee\n\n20) ts52: Sacrifice Y2 Gonzo\nDiscover G1 Gonzo Y3 Bigbird\nMove R1 Gonzo Bigbird\n\n21) TeeTeeTee: Sacrifice G2 Teeteetee\nBuild Y2 Gonzo\nBuild Y3 Teeteetee\n\n22) ts52: Build G1 Bigbird\n\n23) TeeTeeTee: Trade Y3 G3 Gonzo\n\n24) ts52: Build R1 Bigbird\n\n25) TeeTeeTee: Move Y2 Teeteetee Bigbird\n\n26) ts52: Move R1 Bigbird Teeteetee\n\n27) TeeTeeTee: Sacrifice R3 Teeteetee\nAttack R1 Teeteetee\nAttack R1 Bigbird\nAttack G1 Bigbird\n\n28) ts52: Trade G3 R3 Ts52\n\n29) TeeTeeTee: Build Y3 Gonzo\n\n30) ts52: Build R2 Ts52\n\n31) TeeTeeTee: Trade Y3 R3 Gonzo\n\n32) ts52: Sacrifice R2 Ts52\nAttack R1 Bigbird\nAttack G1 Bigbird\n\n33) TeeTeeTee: Sacrifice R3 Gonzo\nAttack R1 Bigbird\nAttack G1 Bigbird\nAttack G1 Bigbird\n\n34) ts52: Build R2 Ts52\n\n35) TeeTeeTee: Build Y3 Feynman\n\n36) ts52: Build G2 Ts52\n\n37) TeeTeeTee: Trade Y3 G3 Teeteetee\n\n38) ts52: Discover R2 Ts52 B2 Grover\n\n39) TeeTeeTee: Move Y3 Feynman Grover\n\n40) ts52: Trade R2 G2 Grover\n\n41) TeeTeeTee: Sacrifice Y2 Gonzo\nMove G3 Gonzo Ts52\nMove Y3 Grover Ts52\n\n42) ts52: Attack G3 Ts52\n\tTeeTeeTee: I think you needed to keep hold of an r2, there...\n\tts52: Hmmm, that is a problem, isn't it. :/ I don't think I was winning this one anyway.\n\n43) TeeTeeTee: Sacrifice R1 Teeteetee\nAttack R3 Ts52\n\n44) ts52: Trade G2 R2 Ts52\n\n45) TeeTeeTee: Sacrifice R3 Ts52\nAttack G3 Ts52\nAttack R2 Ts52\nAttack G1 Ts52\n\tTeeTeeTee: Thanks for the game!\n\tts52: Thank you. Well played.\n\n\nHomeworlds Online (SDG# 25503)\nVariants: "Hard time"\nStarted: 2014.3.8, Ended: 2014.3.9\nParticipants: ausmuh (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R1 B2 G3\n\n2) ausmuh: Homeworld G3 B2 R3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\tausmuh: Hello. Thanks for accepting and you have fun too! \n\n4) ausmuh: Build R1 Ausmuh\n\n5) goulo: Build G1 Goulo\n\n\tgoulo: that was unexpectedly short...!\n\nHomeworlds Online (SDG# 25460)\nVariants: "Hard time"\nStarted: 2014.3.8, Ended: 2014.3.9\nParticipants: ausmuh (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\twil: thx 4 da game\n\n2) ausmuh: Homeworld G3 Y2 B3\n\n3) wil: Build G1 Wil\n\tausmuh: You too, have fun :)\n\n4) ausmuh: Build B1 Ausmuh\n\twil: Win or lose I always have fun...and when I lose I hopefully get to learn something as well.\n\n5) wil: Trade G1 B1 Wil\n\n\twil: Well now...that wasn't fun.\n\nHomeworlds Online (SDG# 25509)\nStarted: 2014.3.10, Ended: 2014.4.20\nParticipants: Laurie_Menke (S), Otts (N)\nWinner: Otts\n\n1) Otts: Homeworld Y3 B1 G3\n\n2) Laurie_Menke: Homeworld Y1 B2 G3\n\tLaurie_Menke: OK, let's see if I can give you a better run for your money this time. :o)\n\n3) Otts: Build G1 Otts\n\tOtts: :) I like that B2Y1 homeworld ya got there! I used it last time and am curious to see the difference with this Y3B1! Good lucks!!\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: :o)\n\n5) Otts: Discover G1 Otts Y2 Old_yeller\n\n6) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n7) Otts: Build G1 Otts\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) Otts: Build G2 Old_yeller\n\n10) Laurie_Menke: Discover G1 Laurie_menke Y3 Fuel\n\n11) Otts: Trade G1 B1 Otts\n\n12) Laurie_Menke: Build B2 Laurie_menke\n\n13) Otts: Build B2 Otts\n\n14) Laurie_Menke: Discover B1 Laurie_menke Y3 Useemup\n\n15) Otts: Move B2 Otts Old_yeller\n\n16) Laurie_Menke: Build B3 Laurie_menke\n\n17) Otts: Discover G2 Old_yeller G3 Greendica\n\n18) Laurie_Menke: Trade B2 Y2 Laurie_menke\n\n19) Otts: Move B2 Old_yeller Useemup\n\n20) Laurie_Menke: Discover B1 Useemup Y2 Closer\n\n21) Otts: Build G1 Old_yeller\n\n22) Laurie_Menke: Sacrifice G1 Fuel\nBuild B2 Closer\n\n23) Otts: Move B1 Otts Old_yeller\n\n24) Laurie_Menke: Build Y1 Laurie_menke\n\n25) Otts: Build B3 Old_yeller\n\n26) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove B1 Closer Otts\nMove B2 Closer Otts\n\n27) Otts: Trade B3 Y3 Old_yeller\n\n28) Laurie_Menke: Move B3 Laurie_menke Useemup\n\n29) Otts: Move B2 Useemup Laurie_menke\n\n30) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n31) Otts: Sacrifice G2 Greendica\nBuild B3 Laurie_menke\nBuild B3 Laurie_menke\nCatastrophe Laurie_menke Blue\n\n32) Laurie_Menke: Discover B3 Useemup Y2 Almostthere\n\n33) Otts: Trade G1 R1 Old_yeller\n\tLaurie_Menke: Grrr...should have seen that coming...\n\n34) Laurie_Menke: Move B3 Almostthere Otts\nCatastrophe Otts B\n\n35) Otts: Build Y1 Old_yeller\n\n36) Laurie_Menke: Build R1 Laurie_menke\n\n37) Otts: Move Y1 Old_yeller Otts\n\n38) Laurie_Menke: Discover R1 Laurie_menke B2 Phonebooth\n\n39) Otts: Build Y1 Old_yeller\n\n40) Laurie_Menke: Move R1 Laurie_menke Otts\n\n41) Otts: Sacrifice R1 Old_yeller\nAttack R1 Otts\n\tLaurie_Menke: Oohhh...tricky! :o)\n\n42) Laurie_Menke: Build G1 Laurie_menke\n\n43) Otts: Build Y2 Otts\n\tLaurie_Menke: Sometimes this game makes me feel very stupid. :o/ Nice move!\n\n44) Laurie_Menke: Build G1 Laurie_menke\n\tOtts: There is too much to think about here. I don't know that I'll ever reach the point of being ready to play this game in person again because of it. I am learning though. I've seen the early scramble to get into the 3rd non-red color twice from you now, and Andy did the same to me in person, so I'm finding that to be something to watch out for. I'm also finding the red power to be almost too powerful. With the ability to sacrifice one small red for an attack anywhere on the board, I don't know that I'd ever go as long without getting my hands on one again. This is one dynamic game!\n\tOtts: ..And I wouldn't say it should make you feel stupid. This game has so many options, it almost depends on someone making a mistake, or missing out on noticing someones intentions, to create a crack of opportunity. Those cracks can be certainly tough to seal, however! \n\n45) Otts: Move G1 Old_yeller Laurie_menke\nCatastrophe Laurie_menke G\n\tLaurie_Menke: You are very kind...and observant and a quick study! If you enjoy the game, then don't give up! You are very talented! You keep whooping me soundly, and *I* play Andy all the time. He makes short order of everyone. Don't let that experience sour you. You're right that there are tons of options, which is what makes the game fun and interesting...if a bitof a brain burner. ;o) And you're right that it's hard to recover from goofs, which is what makes it frustrating. :o/ But you should definitely explore your theory about red. Most players don't see it as particularly powerful or necessary early on, but you are better at this than most players. :o) Anyway, if it's more work than fun for you, then absolutely move on to more fun! I've definitely enjoyed the challenge you've provided!\n\n\tOtts: Thank you back for the kind words and gracious games! I'm not soured from getting whipped in person, nor ready to give up on my homeworlds experience just yet! I'm going go try to teach a friend how to play, but I think I'll be back for another rematch soon if you're interested!\n\tLaurie_Menke: Sounds good! Anytime! Just ping me on FaceBook so I know you've challenged me. Congrats! :o)\n\nHomeworlds Online (SDG# 25512)\nStarted: 2014.3.11, Ended: 2014.3.18\nParticipants: Remneb (S), fogus (N)\nWinner: Remneb\n\n1) fogus: Homeworld G1 B3 Y3\n\n2) Remneb: Homeworld R1 B2 G3\n\n3) fogus: Build Y1 Fogus\n\n4) Remneb: Build G1 Remneb\n\n5) fogus: Trade Y1 R1 Fogus\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) fogus: Build Y1 Fogus\n\n8) Remneb: Build G1 Remneb\n\n9) fogus: Trade Y1 G1 Fogus\n\n10) Remneb: Discover G1 Remneb Y3 Zork\n\n11) fogus: Build G2 Fogus\n\n12) Remneb: Build G2 Zork\n\n13) fogus: Discover G1 Fogus Y2 Floop\n\n14) Remneb: Move G2 Zork Floop\n\n15) fogus: Build G2 Floop\n\n16) Remneb: Build G3 Zork\n\n17) fogus: Sacrifice G2 Floop\nBuild R1 Fogus\nBuild R2 Fogus\n\n18) Remneb: Move G3 Zork Remneb\n\n19) fogus: Move R2 Fogus Floop\n\n20) Remneb: Discover G2 Floop Y1 Thor\n\n21) fogus: Build G2 Floop\n\n22) Remneb: Build G3 Thor\n\n23) fogus: Move R2 Floop Zork\n\n24) Remneb: Move G1 Zork Floop\n\n25) fogus: Move R1 Fogus Floop\n\n26) Remneb: Sacrifice G3 Remneb\nBuild Y1 Remneb\nBuild Y2 Remneb\nBuild G3 Remneb\n\n27) fogus: Trade G2 R2 Fogus\n\n28) Remneb: Move G2 Thor Floop\nCatastrophe Floop G\n\n29) fogus: Discover R1 Floop B3 Wonka\n\tfogus: CATASTROPHE AS SIMPLIFYING MECHANISM :-)\n\tRemneb: You cannot build somewhere else then in your homeworld...for few moves.\n\n30) Remneb: Move G3 Remneb Wonka\n\n31) fogus: Trade R1 G1 Wonka\n\n32) Remneb: Move Y2 Remneb Wonka\n\n33) fogus: Move R2 Zork Remneb\n\n34) Remneb: Attack R2 Remneb\n\n35) fogus: Build Y2 Fogus\n\tfogus: OH MY! I feel much more comfortable with this game then a month ago, but I still have this huge hole in my planning around attacking. :-O\n\n36) Remneb: Trade G3 R3 Wonka\n\tRemneb: I'm not so familiar with this game either.\n\tfogus: No worries. We can learn together. :-)\n\n37) fogus: Sacrifice G1 Wonka\nBuild Y2 Fogus\n\n38) Remneb: Move G3 Thor Wonka\n\n39) fogus: Discover Y2 Fogus G2 Leaf\n\n40) Remneb: Move R3 Wonka Leaf\n\n41) fogus: Discover Y2 Leaf G3 Pill\n\n42) Remneb: Build G1 Remneb\n\n43) fogus: Trade R1 G1 Fogus\n\n44) Remneb: Build G2 Wonka\n\n45) fogus: Trade Y2 B2 Fogus\n\tfogus: I feel the resource squeeze! \n\n46) Remneb: Discover G2 Wonka Y2 Argo\n\n47) fogus: Sacrifice B2 Fogus\nTrade R2 G2 Fogus\nTrade G1 R1 Fogus\n\tRemneb: Yes...well my only task for now is to get all the greens that i can.\n\n48) Remneb: Build G1 Argo\n\n49) fogus: Discover G2 Fogus R2 Gnome\n\n50) Remneb: Move R2 Remneb Pill\n\n51) fogus: Move Y2 Pill Argo\n\n52) Remneb: Sacrifice R2 Pill\nAttack Y2 Argo\nPass\n\n\tfogus: I stink at this game. :-(\n\tfogus: Thanks for the game.\n\tRemneb: Ok. Thanks.\n\nHomeworlds Online (SDG# 25403)\nVariants: "Unrated, Hard time"\nStarted: 2014.3.15, Ended: 2014.5.21\nParticipants: Grosseteste (S), fogus (N), wil (E)\nWinner: fogus\n\n1) fogus: Homeworld G1 B3 Y3\n\twil: I'll try to keep up...\n\n2) wil: Homeworld B2 G1 Y3\n\n3) Grosseteste: H B3 Y2 G3\n\n4) fogus: Build Y1 Fogus\n\n5) wil: B Y1 Wil\n\n6) Grosseteste: B G1 Grosseteste\n\n7) fogus: Trade Y1 G1 Fogus\n\n8) wil: D Y1 Wil G3 G3\n\n9) Grosseteste: T G1 R1 Grosseteste\n\n10) fogus: Build Y1 Fogus\n\n11) wil: B Y1 Wil\n\n12) Grosseteste: B R1 Grosseteste\n\n13) fogus: Trade Y1 R1 Fogus\n\n14) wil: T Y1 R1 Wil\n\n15) Grosseteste: Discover R1 Grosseteste G1 Luce\n\n16) fogus: Build G2 Fogus\n\n17) wil: Build R2 Wil\n\n18) Grosseteste: B G2 Grosseteste\n\n19) fogus: Build R2 Fogus\n\n20) wil: M R2 Wil G3\n\n21) Grosseteste: Build R2 Luce\n\n22) fogus: Discover G1 Fogus B2 Grapes\n\n23) wil: B Y1 Wil\n\n24) Grosseteste: T G2 Y2 Grosseteste\n\n25) fogus: Build G2 Grapes\n\n26) wil: T Y1 B1 Wil\n\n27) Grosseteste: B G2 Grosseteste\n\n28) fogus: Move R1 Fogus Grapes\n\n29) wil: B R2 Wil\n\n30) Grosseteste: S G2 Grosseteste\nB R3 Grosseteste\nB R3 Luce\n\n31) fogus: Sacrifice G2 Grapes\nBuild R3 Fogus\nBuild R3 Grapes\n\n32) wil: M R2 G3 Luce\nC Luce R\n\n33) Grosseteste: T R1 B1 Grosseteste\n\n34) fogus: Build Y1 Fogus\n\n35) wil: B B1 Wil\n\n36) Grosseteste: Build G1 Grosseteste\n\n37) fogus: Trade Y1 B1 Fogus\n\n38) wil: M B1 Wil G3\n\n39) Grosseteste: Discover G1 Grosseteste Y1 Luce\n\n40) fogus: Build G2 Grapes\n\n41) wil: B B2 G3\n\n42) Grosseteste: B G2 Luce\n\n43) fogus: Trade G2 B2 Grapes\n\n44) wil: T B1 R1 G3\n\n45) Grosseteste: Discover G1 Luce Y2 Colore\n\n46) fogus: Build Y1 Fogus\n\n47) wil: T R2 G2 Wil\n\n48) wil: B R1 G3\n\n49) fogus: Move Y1 Fogus Grapes\n\n50) wil: B R2 Wil\n\tfogus: So now what? Are we still trying to attack the left-hand player? Or is it me vs wil now?\n\twil: Me n you... The issue with online multiplayer...rarely does it actually last...we are now in a binary game.\n\tfogus: Shoot. Having those extra pyramids hanging and out of play around makes things super interesting... and super-confusing. ;-)\n\tGrosseteste: Sorry guys.\n\n51) fogus: Discover B2 Grapes Y3 Flipper\n\n52) wil: M R1 G3 Luce\n\n53) fogus: Trade R1 B1 Grapes\n\n54) wil: B B3 G3\n\n55) fogus: Sacrifice Y3 Fogus\nMove B1 Grapes Flipper\nMove B2 Flipper Wil\nMove B1 Flipper Wil\nCatastrophe Wil B\n\n56) wil: M B3 G3 Luce\n\n57) fogus: Trade R3 Y3 Fogus\n\n58) wil: A G2S Luce\n\n59) fogus: Sacrifice Y3 Fogus\nMove G2 Fogus Colore\nMove G2 Colore Wil\nMove G1 Grapes Wil\nCatastrophe Wil G\n\n\tfogus: Thank you for the game.\n\twil: I didn't see that you had two greens!!! I was working toward insuring you wouldn't get three and thought you only had one and am now babbling incoherently due to my grevious error!!! Oh well...yes...good game! Till next time...give me another chaLlenge whenever...I enjoy getting my butt whipped!\n\twil: I didn't see that you had two greens!!! I was working toward insuring you wouldn't get three and thought you only had one and am now babbling incoherently due to my grevious error!!! Oh well...yes...good game! Till next time...give me another chaLlenge whenever...I enjoy getting my butt whipped!\n\tfogus: I was hoping that the cover of the extra pieces would shield me... my strategy was totally, cross my fingers and hope that obfuscation would pan out. :-)\n\nHomeworlds Online (SDG# 25485)\nVariants: "Hard time"\nStarted: 2014.3.15, Ended: 2014.4.9\nParticipants: Grosseteste (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld Y2 B1 G3\n\n2) Grosseteste: Homeworld Y3 B1 G3\n\n3) Marmalade: Build G1 Marmalade\n\n4) Grosseteste: B G1 Grosseteste\n\n5) Marmalade: Discover G1 Marmalade B3 Foop\n\n6) Grosseteste: B G1 Grosseteste\n\n7) Marmalade: Build G2 Marmalade\n\n8) Grosseteste: T G1 B1 Grosseteste\n\n9) Marmalade: Build G1 Foop\n\n10) Grosseteste: D G1 Grosseteste Y2 Luce\n\n11) Marmalade: Trade G1 Y1 Foop\n\n12) Grosseteste: B B2 Grosseteste\n\n13) Marmalade: Trade G2 B2 Marmalade\n\n14) Grosseteste: Move B1 Grosseteste Luce\n\n15) Marmalade: Build Y1 Foop\n\n16) Grosseteste: S G3 Grosseteste\nB B2 Luce\nB B3 Luce\nB B3 Grosseteste\n\n17) Marmalade: Discover B2 Marmalade G3 Cloom\n\n18) Grosseteste: D B3 Luce Y3 Hexaemeron\n\n19) Marmalade: Build G1 Marmalade\n\n20) Grosseteste: Sacrifice B2 Luce\nTrade B3 G3 Grosseteste\nTrade B3 R3 Hexaemeron\n\n21) Marmalade: Trade G1 R1 Marmalade\n\n\tGrosseteste: Sorry about that; I was sick over the weekend and apparently miscounted the time left in this one by a couple hours :(\n\nHomeworlds Online (SDG# 25540)\nVariants: "Hard time"\nStarted: 2014.3.15, Ended: 2014.4.7\nParticipants: SilentTitan (S), Grosseteste (N)\nWinner: SilentTitan\n\n1) Grosseteste: Homeworld Y2 B1 G3\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) Grosseteste: B G1 Grosseteste\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Grosseteste: B G1 Grosseteste\n\n6) SilentTitan: Build G2 Silenttitan\n\n7) Grosseteste: D G1 Grosseteste G3 Luce\n\n8) SilentTitan: Trade G2 Y2 Silenttitan\n\n9) Grosseteste: B G2 Grosseteste\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) Grosseteste: T G1 B1 Grosseteste\n\n12) SilentTitan: Build B2 Silenttitan\n\n13) Grosseteste: B B2 Grosseteste\n\n14) SilentTitan: Discover B1 Silenttitan G1 Sol\n\n\tGrosseteste: Sorry again! I plead illness this time, hopefully I won't be as flaky should we meet again.\n\tSilentTitan: No problem. We can meet again anytime you like\n\nHomeworlds Online (SDG# 25506)\nVariants: "Hard time"\nStarted: 2014.3.15, Ended: 2014.3.25\nParticipants: Remneb (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) Remneb: Homeworld B3 R1 G3\n\n3) wil: Build G1 Wil\n\n4) Remneb: Build G1 Remneb\n\n5) wil: Trade G1 Y1 Wil\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) wil: Build G1 Wil\n\n8) Remneb: Build G1 Remneb\n\n9) wil: Trade G1 R1 Wil\n\n10) Remneb: Trade G1 R1 Remneb\n\n11) wil: Build R2 Wil\n\n12) Remneb: Build R2 Remneb\n\n13) wil: Discover R1 Wil B3 B3\n\n14) Remneb: Discover R1 Remneb Y2 Op\n\n15) wil: Build R3 Wil\n\n16) Remneb: Discover R1 Op Y3 Rem\n\n17) wil: Trade R2 Y2 Wil\n\n18) Remneb: Build G1 Remneb\n\n19) wil: Move R3 Wil Rem\n\n20) Remneb: Discover R1 Rem Y2 Orb\n\n21) wil: Build G1 Wil\n\n22) Remneb: Discover R2 Remneb Y2 Pod\n\n23) wil: Move Y2 Wil B3\n\n24) Remneb: Discover R1 Orb Y3 Juno\n\n25) wil: M G1 Wil B3\n\n26) Remneb: Discover G1 Remneb Y2 Seth\n\n27) wil: S G3 Wil\nB Y1 B3\nB Y3 Wil\nB R2 Rem\n\n28) Remneb: Sacrifice G1 Seth\nBuild R3 Juno\n\n29) wil: B R3 B3\n\n30) Remneb: Build Y2 Remneb\n\n31) wil: T R3 G3 B3\n\n32) Remneb: Build G1 Remneb\n\n33) wil: B R3 B3\n\n34) Remneb: Move G1 Remneb Pod\n\n35) wil: M G3 B3 Pod\n\n36) Remneb: Move R2 Pod Rem\n\n37) wil: M R2 Rem Pod\n\n38) Remneb: Sacrifice Y2 Remneb\nDiscover R2 Rem G2 Log\nMove G1 Pod Juno\n\n39) wil: M R3 Rem Log\n\n40) Remneb: Sacrifice Y1 Remneb\nDiscover R2 Log Y3 Top\n\n41) wil: Build G1 Pod\n\twil: Stay still will ya? \n\n42) Remneb: Build G2 Juno\n\n43) wil: S Y2 B3\nM G1 Pod Remneb\nM G3 Pod Remneb\n\n44) Remneb: Sacrifice R2 Top\nAttack G3 Remneb\nAttack G1 Remneb\n\n45) wil: S Y3 Wil\nM R3 Log Remneb\nM G1 B3 Pod\nM G1 Pod Remneb\nC Remneb G\n\n\twil: I gave you three choices...all bad...thanx for the game...I look forward to the next!\n\tRemneb: Thanks for the game.\n\nHomeworlds Online (SDG# 25542)\nVariants: "Hard time"\nStarted: 2014.3.20, Ended: 2014.4.8\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\tBroccoli_Commander: Hey! Decided to accept your suggestion now that I officially avenged you ;)\n\n2) wil: H B3 Y2 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: B G1 Wil\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) wil: D G1 Wil B1 B1\n\n7) Broccoli_Commander: Build G1 Broccoli_commander\n\n8) wil: B G1 Wil\n\n9) Broccoli_Commander: Build Y1 Broccoli_commander\n\n10) wil: Build G2 Wil\n\n11) Broccoli_Commander: Discover Y1 Broccoli_commander G3 Lettuce\n\n12) wil: S G3 Wil\nB G2 B1\nB G2 B1\nB G3 Wil\n\n13) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Broccoli_commander\nBuild Y2 Lettuce\n\n14) wil: T G2 Y2 B1\n\n15) Broccoli_Commander: Build Y3 Broccoli_commander\n\n16) wil: T G2 R2 Wil\n\n17) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Blueberry\n\n18) wil: B Y3 B1\n\n19) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove Y1 Lettuce B1\nMove Y1 Blueberry B1\nCatastrophe B1 Y\n\n20) wil: D G1 Wil Y1 Y1\n\n21) Broccoli_Commander: Discover Y3 Broccoli_commander G3 Lettuce\n\n22) wil: B G2 Wil\n\n23) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Lettuce\n\n24) wil: T G2 Y2 B1\n\n25) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n26) wil: T G2 B2 Wil\n\n27) Broccoli_Commander: Move Y3 Lettuce B1\n\n28) wil: M Y2 B1 Lettuce\n\n29) Broccoli_Commander: Sacrifice G2 Broccoli_commander\nBuild Y2 Lettuce\nBuild Y3 B1\n\n30) wil: S Y2 Lettuce\nM R2 Wil Y1\nM R2 Y1 Lettuce\n\n31) Broccoli_Commander: Sacrifice R1 Broccoli_commander\nAttack R2 Lettuce\n\n32) wil: Build B1 Wil\n\twil: What was I thinkin? Obviously I wasn't\r\n\n\tBroccoli_Commander: Yeah, not your best move \n\n33) Broccoli_Commander: Move Y3 B1 Wil\n\n\twil: Why do I always forget I need a gun? \n\nHomeworlds Online (SDG# 25516)\nStarted: 2014.3.23, Ended: 2014.4.18\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) ts52: Homeworld R3 B2 G3\n\n3) wil: B G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: T G1 Y1 Wil\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: B G1 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: Trade G1 R1 Wil\n\n10) ts52: Discover G1 Ts52 B1 Gonzo\n\n11) wil: D R1 Wil Y3 Y3\n\n12) ts52: Trade G1 R1 Gonzo\n\n13) wil: B G1 Wil\n\n14) ts52: Build G1 Ts52\n\n15) wil: B Y1 Wil\n\n16) ts52: Build Y2 Ts52\n\n17) wil: D Y1 Wil G3 G3\n\n18) ts52: Move Y2 Ts52 Gonzo\n\n19) wil: B Y2 G3\n\n20) ts52: Move G1 Ts52 Gonzo\n\n21) wil: D Y1 G3 G2 G2\n\n22) ts52: Build R2 Gonzo\n\n23) wil: S G3 Wil\nB Y2 G2\nB Y3 G3\nB Y3 Wil\n\n\n24) ts52: Move R2 Gonzo Y3\n\n25) wil: M R1 Y3 G2\n\n26) ts52: Build R2 Gonzo\n\n27) wil: Move Y3 G3 Gonzo\n\n28) ts52: Sacrifice Y2 Gonzo\nDiscover R2 Gonzo Y2 Zoe\nMove R1 Gonzo Zoe\n\n29) wil: Build R2 G2\n\n30) ts52: Sacrifice G1 Gonzo\nBuild R3 Y3\n\n31) wil: Sacrifice Y2 G2\nMove R2 G2 Y3\nMove R1 G2 Y3\nCatastrophe Y3 R\n\n32) ts52: Move R2 Zoe G3\n\n33) wil: Trade Y3 G3 Wil\n\n34) ts52: Attack Y2 G3\n\n35) wil: Sacrifice G3 Wil\nBuild Y2 Gonzo\nBuild Y3 Wil\nBuild Y3 G2\n\n36) ts52: Build G1 Ts52\n\n37) wil: Trade Y2 R2 Gonzo\n\n38) ts52: Build Y2 Ts52\n\n39) wil: Move Y3 G2 G3\n\n40) ts52: Move R2 G3 G2\n\n41) wil: D Y1 G2 B1 Bone\n\n42) ts52: Move Y2 Ts52 Bone\n\n43) wil: T Y1 B1 Wil\n\n44) ts52: Build Y1 G3\n\n45) wil: Build B2 Wil\n\n46) ts52: Sacrifice R1 Zoe\nAttack Y1 Bone\n\n47) wil: S B2 Wil\nT Y3 R3 G3\nT Y3 G3 Wil\n\n48) ts52: Sacrifice Y1 G3\nMove Y2 G3 G2\n\n49) wil: T G1 Y1 Wil\n\n50) ts52: Trade Y1 G1 Bone\n\n51) wil: B B2 Wil\n\n52) ts52: Build R1 G2\n\n53) wil: D B2 Wil Y3 Y3\n\n54) ts52: Build G1 Bone\n\n55) wil: S G3 Wil\nB B3 Wil\nB B3 Wil\nB B3 Y3\n\n56) ts52: Discover G1 Bone Y3 Bigbird\n\n57) wil:\nT B3 G3 Wil\n\n58) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Bone\nBuild G3 Ts52\n\n59) wil: T B3 R3 Wil\n\n60) ts52: Move R2 G2 Bigbird\n\n61) wil: M B3 Y3 Bone\n\n62) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Bone\nBuild Y2 G2\n\n63) wil: S R3 Wil\nA G1 Bone\nA Y2 Bone\nA G2 Bone\n\n64) ts52: Sacrifice Y1 Bone\nDiscover G1 Ts52 Y1 Zoe\n\n65) wil: B B3 Bone\n\n66) ts52: Build R1 Bigbird\n\n67) wil: T B3 R3 Bone\n\n68) ts52: Build R2 G2\n\n69) wil: B B3 Bone\n\n70) ts52: Move Y2 G2 Y3\n\twil: I yi captain, the guns are loaded and in place as directed...\n\n71) wil: S Y3 Gonzo\nM B3 Bone Ts52\nM B3 Bone Ts52\nM R3 Bone Ts52\n\n72) ts52: Sacrifice R2 Bigbird\nAttack R3 Ts52\nAttack B3 Ts52\n\n73) wil: S R3 G3\nA R3 Ts52\nA G3 Ts52\nA B3 Ts52\n\tts52: Yeah, I was pretty sure there was no way out of this. Sorry for dragging it out, but I always like to play it to the end. Well played sir. \n\twil: I agree, playing them out, one missed move capitalized on and the tide turns quickly.\n\n74) ts52: Sacrifice G1 Bigbird\nBuild Y3 Ts52\n\n75) wil: S G3 Ts52\nB R2 Ts52\nB R3 Ts52\nB B3 Ts52\nC Ts52 R\nC Ts52 B\n\tts52: I've been losing the race to large ships a lot recently. Have to sit down and figure that out. Thanks for the game!\n\twil: I couldn't let it end with me with seven ships in your homeworld...\n\twil: This game always intrigues... I had a great game against someone who beats me consistently and lost a game to someone I was teaching for the second time..\n\twil: This game always intrigues... I had a great game against someone who beats me consistently and lost a game to someone I was teaching for the second time..\n\n\nHomeworlds Online (SDG# 25716)\nVariants: "Hard time"\nStarted: 2014.4.14, Ended: 2014.5.17\nParticipants: TwoShort (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) TwoShort: Homeworld B1 R3 G3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) TwoShort: Build G1 Twoshort\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) TwoShort: Trade G1 B1 Twoshort\n\n7) Broccoli_Commander: Build Y1 Broccoli_commander\n\n8) TwoShort: Build B1 Twoshort\n\n9) Broccoli_Commander: Build Y1 Broccoli_commander\n\n10) TwoShort: Trade G3 Y3 Twoshort\n\n11) Broccoli_Commander: Discover Y1 Broccoli_commander G3 Lettuce\n\n12) TwoShort: Discover B1 Twoshort G2 Grogar\n\n13) Broccoli_Commander: Discover Y1 Broccoli_commander B3 Blueberry\n\n14) TwoShort: Build B2 Grogar\n\n15) Broccoli_Commander: Build Y2 Lettuce\n\n16) TwoShort: Trade B2 G2 Grogar\n\n17) Broccoli_Commander: Discover Y1 Lettuce Y2 Cauliflower\n\n18) TwoShort: Sacrifice G2 Grogar\nBuild B2 Grogar\nBuild B2 Twoshort\n\n19) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y2 Lettuce\nBuild Y3 Broccoli_commander\nBuild Y3 Blueberry\n\n20) TwoShort: Build B3 Grogar\n\n21) Broccoli_Commander: Trade Y3 R3 Blueberry\n\n22) TwoShort: Sacrifice B2 Twoshort\nTrade B2 R2 Grogar\nTrade B3 Y3 Grogar\n\n23) Broccoli_Commander: Trade Y3 G3 Broccoli_commander\n\tBroccoli_Commander: heh i fell for it\n\n24) TwoShort: Build B2 Grogar\n\n25) Broccoli_Commander: Build Y3 Broccoli_commander\n\n26) TwoShort: Build B2 Grogar\n\n27) Broccoli_Commander: Trade Y3 R3 Broccoli_commander\n\n28) TwoShort: Trade B2 G2 Grogar\n\n29) Broccoli_Commander: Build Y3 Broccoli_commander\n\n30) TwoShort: Sacrifice G2 Grogar\nBuild B2 Grogar\nBuild B3 Twoshort\n\n31) Broccoli_Commander: Move R3 Broccoli_commander Lettuce\n\n32) TwoShort: Build R1 Grogar\n\n33) Broccoli_Commander: Build R1 Lettuce\n\n34) TwoShort: Trade B3 G3 Twoshort\n\n35) Broccoli_Commander: Build G1 Broccoli_commander\n\n36) TwoShort: Build B3 Twoshort\n\n37) Broccoli_Commander: Move G1 Broccoli_commander Blueberry\n\n\tTwoShort: Dammit. Sorry, life got busy...\n\tBroccoli_Commander: No worries, it's just a game\n\nHomeworlds Online (SDG# 25580)\nVariants: "Hard time"\nStarted: 2014.4.14, Ended: 2014.6.15\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: wil\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) wil: Homeworld B3 G2 Y3\n\tBroccoli_Commander: Have a good game dear wil!\r\nAny news from your commented-games project?\n\twil: Lonely at the top? No challengers yet? If I don't win the game I'm on, I am challenging Zoltar next... and still discussng format...\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: Build Y1 Wil\n\n5) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n6) wil: B Y1 Wil\n\tBroccoli_Commander: Well TwoShort just challenged me again... And I thought you won the game against silentTitan but now he can win I think.... Ok for the format, I hope it will work out though, the game needs some publicity ;)\n\n7) Broccoli_Commander: Build R1 Broccoli_commander\n\n8) wil: D Y1 Wil G1 G1\n\n9) Broccoli_Commander: Discover R1 Broccoli_commander G3 Lettuce\n\n10) wil: B Y2 Wil\n\n11) Broccoli_Commander: Build R1 Broccoli_commander\n\n12) wil: B Y2 G1\n\n13) Broccoli_Commander: Build R2 Broccoli_commander\n\n14) wil: B Y2 G1\n\n15) Broccoli_Commander: Discover R2 Broccoli_commander Y3 Cauliflower\n\n16) wil: T Y3 G3 Wil\n\n17) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild R2 Cauliflower\nBuild R2 Cauliflower\nBuild R3 Broccoli_commander\n\n18) wil: T G3 R3 Wil\n\n19) Broccoli_Commander: Build R3 Lettuce\n\twil: Weird game and me without a gun!\n\n20) wil: B Y3 Wil\n\n21) Broccoli_Commander: Discover R1 Broccoli_commander Y3 Banana\n\n22) wil: D Y2 G1 B3 B3\n\n23) Broccoli_Commander: Move R2 Cauliflower G1\n\n24) wil: S Y1 G1\nM Y2 G1 B3\n\twil: This is a first for me...it will be interesting! And I don't know what happened to my Zoltar ladder challenge, it just disapeared...and now the undefeated ttt is gunnin for me\n\n25) Broccoli_Commander: Trade R1 Y1 Broccoli_commander\n\tBroccoli_Commander: We'll see...\r\nweird for the challenge, but teach the boy how it's done here ;)\n\n26) wil: B R1 Wil\n\n27) Broccoli_Commander: Move Y1 Broccoli_commander Lettuce\n\n28) wil: M Y3 Wil G1\n\twil: I feel suckered somehow...had three good moves to pick from and couldn't choose which was better.\n\n29) Broccoli_Commander: Discover R1 Lettuce G1 Pea\n\n30) wil: S R1 Wil\nA R2 G1\n\n31) Broccoli_Commander: Trade R3 G3 Broccoli_commander\n\n32) wil: M Y2 Wil Pea\n\twil: No matter the outcome, this will remain one strange game...\n\n33) Broccoli_Commander: Build G1 Broccoli_commander\n\tBroccoli_Commander: Absolutely :) But I'm afraid (for myself) you will win this one! And deserve it! notwithstanding the strangeness of it all\n\tBroccoli_Commander: (PS: I think you chose the best move 2 turns ago)\n\n34) wil: M Y3 G1 Cauliflower\n\n35) Broccoli_Commander: Build G2 Broccoli_commander\n\n36) wil: T Y2 G2 B3\n\twil: You know darn well I need a significant lead to cover for my mistakes.\n\n37) Broccoli_Commander: Move G2 Broccoli_commander B3\n\n38) wil: S R2 G1\nA G2 B3\nA R1 Pea\n\n39) Broccoli_Commander: Trade G1 B1 Broccoli_commander\n\n40) wil: B G1 B3\n\n41) Broccoli_Commander: Build B1 Broccoli_commander\n\n42) wil: T G2 R2 B3\n\n43) Broccoli_Commander: Move R2 Cauliflower Broccoli_commander\n\n44) wil: B Y2 Wil\n\n45) Broccoli_Commander: Move B1 Broccoli_commander Lettuce\n\n46) wil: T G1 B1 B3\n\n47) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild R1 Lettuce\nBuild R3 Broccoli_commander\nBuild B2 Lettuce\n\n48) wil: M B1 B3 Pea\n\twil: Ah the day when this can be played real time with a chess clock and we can put 10 minutes on each side and enter a game knowing we are going to play a 20 minute game! Dragging our ships around the starfield...one can dream...\n\n49) Broccoli_Commander: Trade R2 G2 Broccoli_commander\n\n50) wil: B R2 Pea\n\n51) Broccoli_Commander: Trade R1 G1 Lettuce\n\tBroccoli_Commander: Yeah would be nice indeed ;)\n\n52) wil: Trade R1 G1 Pea\n\n53) Broccoli_Commander: Build G3 Broccoli_commander\n\n54) wil: Build G3 B3\n\n55) Broccoli_Commander: Discover G1 Lettuce R1 Tomatoe\n\n56) wil: B R1 B3\n\n57) Broccoli_Commander: Move B2 Lettuce Tomatoe\n\n58) wil: S R1 B3\nA R2 Cauliflower\n\n59) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild B2 Tomatoe\nBuild B3 Lettuce\n\n60) wil: M Y3 Cauliflower Tomatoe\n\n61) Broccoli_Commander: Move B3 Lettuce Pea\n\n62) wil: S Y2 Pea\nM G1 Pea Cauliflower\nM R2 Pea Banana\n\n63) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R1 Lettuce\nBuild Y2 Lettuce\n\n64) wil: A R1 Banana\n\n65) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove B2 Tomatoe B3\nMove B2 Tomatoe B3\n\n66) wil: S Y2 B3\nM G3 B3 Broccoli_commander\nM G2 B3 Broccoli_commander\nC Broccoli_commander G\n\twil: The universe as we know it is about to go through a dramatic change...\r\n\n\n67) Broccoli_Commander: Build Y2 Lettuce\n\n68) wil: A G1 Tomatoe\n\n69) Broccoli_Commander: Trade B3 G3 Pea\n\n70) wil: S Y1 Wil\nM B1 Pea B3\nC B3 B\n\n71) Broccoli_Commander: Build B1 Lettuce\n\n72) wil: B G2 Tomatoe\n\n73) Broccoli_Commander: Sacrifice Y1 Lettuce\nMove G3 Pea Banana\n\twil: Universe reboot complete... Not to my benefit...\n\n74) wil: S Y2 Wil\nM R1 Banana Broccoli_commander\n\nM R2 Banana Broccoli_commander\n\tBroccoli_Commander: Strange game indeed ;)\n\n75) Broccoli_Commander: Trade R3 G3 Broccoli_commander\n\twil: The variations in this gane are endless... Ya get going with a plan...it gets subverted and you start another direction...and then... And ... And...\n\n76) wil: M R1 Broccoli_commander Lettuce\n\n77) Broccoli_Commander: Sacrifice R1 Lettuce\nAttack R2 Broccoli_commander\n\n78) wil: S G2 Tomatoe\nB R1 Lettuce\nB R2 Lettuce\nC Lettuce R\n\n79) Broccoli_Commander: Build B2 Broccoli_commander\n\n80) wil: B Y1 Tomatoe\n\n81) Broccoli_Commander: Build Y1 Lettuce\n\tBroccoli_Commander: Welcome to turn #41 stone age!\n\n82) wil: D Y3 Tomatoe B3 B3\n\tBroccoli_Commander: oops forgot to send the command yesterday, sorry\n\n83) Broccoli_Commander: Move B2 Broccoli_commander Banana\n\n84) wil: T Y3 B3 B3\n\n85) Broccoli_Commander: Move B2 Banana Tomatoe\n\n86) wil: S Y1 Tomatoe\nM B3 B3 Tomatoe\n\n87) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove B1 Lettuce Tomatoe\nMove B1 Lettuce Tomatoe\nCatastrophe Tomatoe B\n\n88) wil: B R1 Wil\n\n89) Broccoli_Commander: Build Y1 Lettuce\n\n90) wil: B R1 Cauliflower\n\n91) Broccoli_Commander: Build R2 Broccoli_commander\n\twil: A reboot with ne way behind...\n\n92) wil: T R3 Y3 Wil\n\n93) Broccoli_Commander: Move R2 Broccoli_commander Lettuce\n\n94) wil: B R3 Wil\n\n95) Broccoli_Commander: Build Y2 Lettuce\n\n96) wil: D R3 Wil B1 B1\n\n97) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild R3 Broccoli_commander\nBuild R3 Lettuce\nBuild B1 Broccoli_commander\n\n98) wil: B Y2 Wil\n\n99) Broccoli_Commander: Move R2 Broccoli_commander Cauliflower\n\n100) wil: T R3 B3 B1\n\n101) Broccoli_Commander: Sacrifice R2 Lettuce\nAttack R2 Cauliflower\nAttack R1 Cauliflower\n\n102) wil: S Y2 Wil\nM B3 B1 Cauliflower\nD G1 Tomatoe B3 B3\n\n103) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove B1 Broccoli_commander Cauliflower\nMove B1 Broccoli_commander Cauliflower\n\n104) wil: T B3 G3 Cauliflower\n\n105) Broccoli_Commander: Trade R1 G1 Cauliflower\n\n106) wil: D G3 Cauliflower B1 B1\n\twil: Congrats on the defend... And I see ttt laid in wait!\n\n107) Broccoli_Commander: Build Y2 Lettuce\n\tBroccoli_Commander: Thanks! Was pretty happy how it turned out ;) Yeah ttt gonna be interesting\n\n108) wil: B R1 Wil\n\n109) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove G3 Banana B1\nMove R3 Lettuce B1\n\n110) wil: S G3 B1\nB G2 Cauliflower\nB G2 Cauliflower\nB G3 B3\nC Cauliflower G\n\n111) Broccoli_Commander: Build Y2 Lettuce\n\n112) wil: T R1 G1 Wil\n\n113) Broccoli_Commander: Trade R3 B3 B1\n\n114) wil: T G3 R3 B3\n\n115) Broccoli_Commander: Sacrifice Y2 Lettuce\nMove B3 B1 B3\nMove G3 B1 B3\n\n116) wil: Sacrifice R3 B3\nPass\nPass\nPass\n\n117) Broccoli_Commander: Build Y2 Lettuce\n\twil: Well hopefully I am exercising you a little while you run me in circles...\n\n118) wil: B G1 B3\n\n119) Broccoli_Commander: Sacrifice Y2 Lettuce\nDiscover B3 B3 R1 Tomatoe\nMove G3 B3 Tomatoe\n\n120) wil: B Y2 Wil\n\n121) Broccoli_Commander: Discover Y1 Lettuce R2 Cherry\n\n122) wil: T G1 R1 B3\n\tBroccoli_Commander: What a sad destiny for your r3 ship. At least its admiral had the courage to trigger the self-destruction\n\n123) Broccoli_Commander: Sacrifice G3 Tomatoe\nBuild R3 Cauliflower\nBuild R3 Broccoli_commander\nBuild Y2 Cherry\n\n124) wil: S Y2 Wil\nM R1 B3 Cherry\nM R1 Cherry Cauliflower\nC Cauliflower R\n\n125) Broccoli_Commander: Build Y2 Lettuce\n\n126) wil: B R1 Wil\n\n127) Broccoli_Commander: Discover Y2 Lettuce G1 Pea\n\n128) wil: B G2 B3\n\n129) Broccoli_Commander: Build Y2 Pea\n\twil: I lost over 40 moves ago and just keep running around waiting for you to blunder\n\n130) wil: T G2 R2 B3\n\tBroccoli_Commander: And it almost worked, I was not patient enough... \r\nIt can still take a while :D\n\n131) Broccoli_Commander: Move R3 Broccoli_commander Lettuce\n\n132) wil: B G2 Wil\n\n133) Broccoli_Commander: Build Y3 Lettuce\n\twil: All over but the cryin\n\n134) wil: D G2 Wil B1 B1\n\n135) Broccoli_Commander: Move R3 Lettuce B1\n\n136) wil: S G2 B1\nB R2 B3\nB G2 B3\n\n\twil: WHAT?? I was running in circles for a record number of moves...not the way to win!! hope all is alright on your end.\n\nHomeworlds Online (SDG# 25718)\nVariants: "Hard time"\nStarted: 2014.4.14, Ended: 2014.4.16\nParticipants: TeeTeeTee (S), ajo (N)\nWinner: TeeTeeTee\n\n1) ajo: Homeworld R3 B2 G3\n\n2) TeeTeeTee: Homeworld B1 Y2 G3\n\n3) ajo: Build G1 Ajo\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) ajo: Trade G3 Y3 Ajo\n\n6) TeeTeeTee: Trade G1 B1 Teeteetee\n\n7) ajo: Build G1 Ajo\n\n8) TeeTeeTee: Build B1 Teeteetee\n\n9) ajo: Discover G1 Ajo Y1 Alpha\n\n10) TeeTeeTee: Discover B1 Teeteetee G3 Paris\n\tajo: Nicely opened!\n\n11) ajo: Build G1 Ajo\n\n12) TeeTeeTee: Build B2 Teeteetee\n\tTeeTeeTee: Thanks!\n\n13) ajo: Build G2 Alpha\n\n14) TeeTeeTee: Build G2 Teeteetee\n\n15) ajo: Discover G2 Alpha B3 Beta\n\tTeeTeeTee: I'd say more, but I feel a little, well, pompous when commenting on a game in-progress. Ask me about the opening later!\n\n16) TeeTeeTee: Build B2 Paris\n\tajo: And I'd say more about what I had expected you to do this last turn instead of "build g2", but I don't want to give you ideas. ;D\n\n17) ajo: Build G2 Beta\n\tTeeTeeTee: I'd definitely be interested to know what you had in mind. :P\n\n18) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild G3 Teeteetee\nBuild B3 Paris\n\n19) ajo: Trade G2 Y2 Beta\n\tajo: Well, I think that from this position ( http://superdupergames.org/?page=archive_play&gid=25718&idx=12 ) I would have done "trade b2 r2" to get that fourth color, relieve the blue situation at your homeworld, and threaten my forward development a bit.\n\tajo: Although I guess you're in a good position now, too. Bother. :)\n\n20) TeeTeeTee: Move G3 Teeteetee Beta\n\n21) ajo: Move Y2 Beta Teeteetee\n\n22) TeeTeeTee: Trade B3 R3 Paris\n\tajo: Innnteresting...\n\n23) ajo: Sacrifice G2 Beta\nBuild Y1 Teeteetee\nBuild Y1 Teeteetee\nCatastrophe Teeteetee Yellow\n\n24) TeeTeeTee: Trade G3 Y3 Teeteetee\n\tajo: wait, this move is strictly better :D\n\tTeeTeeTee: Oi!\n\tTeeTeeTee: That was somewhat rude: I'd already made my move. D:\n\n25) ajo: Build G2 Alpha\n\tTeeTeeTee: It was a strong move, though; I rarely get surprised like that in this game. Well done\n\n26) TeeTeeTee: Discover B1 Teeteetee Y3 Berlin\n\tajo: We might *both* be getting careless with all these quick moves...\n\n27) ajo: Discover G2 Alpha B3 Gamma\n\n28) TeeTeeTee: Sacrifice G2 Teeteetee\nBuild G2 Beta\nBuild B3 Teeteetee\n\n29) ajo: Build G2 Gamma\n\n30) TeeTeeTee: Trade B3 G3 Teeteetee\n\n31) ajo: Build Y1 Ajo\n\n32) TeeTeeTee: Sacrifice G3 Beta\nBuild G3 Beta\nBuild B3 Teeteetee\nBuild R1 Paris\n\n33) ajo: Move Y1 Ajo Alpha\n\n34) TeeTeeTee: Sacrifice Y3 Teeteetee\nMove B3 Teeteetee Ajo\nMove G3 Beta Teeteetee\nMove G3 Teeteetee Ajo\n\tajo: Yup, I'm in a bad spot.\n\n35) ajo: Build Y1 Ajo\n\n36) TeeTeeTee: Sacrifice R3 Paris\nAttack Y3 Ajo\nAttack Y1 Ajo\nAttack G1 Ajo\n\n37) ajo: Pass\n\n38) TeeTeeTee: Attack G1 Ajo\n\n\tajo: Good game! So what were you going to say about the opening? :)\n\tTeeTeeTee: Thanks for the game! I always prefer the games where people don't take days to make a single move.\r\n\r\nI think that I was ahead from the start because I had a far stronger opening than you did. I reckon that it's always the stronger move to choose a small/medium homeworld if your oppenent hasn't done so already. Also, the colour of the small pyramid in someone's homeworld is generally the easiest colour to monopolise, so I think you should have grabbed a blue pyramid on your third move - that was your last chance to get a grasp on blue in the game...\r\n\r\nAlso, I stand by "7: ... Build g2 TeeTeeTee"; I think that it gave me a chance to access more greens without risking losing control of the blues, and I wasn't at risk of a blue catastrophe. I think that a better time for me to get a red ship would have been to trade a g3 for an r3 on my 10th move.\n\tajo: That's a good point about small blue. You definitely locked me out of blue very effectively. I'll try monopolizing your small homeworld pyramid's color next game. ;) Play again?\n\nHomeworlds Online (SDG# 25726)\nVariants: "Hard time"\nStarted: 2014.4.15, Ended: 2014.5.17\nParticipants: mneme (S), Grosseteste (N)\nWinner: mneme\n\n1) Grosseteste: H B2 Y1 G3\n\n2) mneme: Homeworld G2 B3 Y3\n\n3) Grosseteste: B G1 Grosseteste\n\n4) mneme: Build Y1 Mneme\n\n5) Grosseteste: Trade G1 B1 Grosseteste\n\n6) mneme: Build Y1 Mneme\n\n7) Grosseteste: Build G1 Grosseteste\n\n8) mneme: Trade Y1 R1 Mneme\n\n9) Grosseteste: Trade G1 R1 Grosseteste\n\n10) mneme: Trade Y1 B1 Mneme\n\n11) Grosseteste: Build G1 Grosseteste\n\n12) mneme: Build Y1 Mneme\n\n13) Grosseteste: T G1 Y1 Grosseteste\n\n14) mneme: Build Y2 Mneme\n\n15) Grosseteste: Discover Y1 Grosseteste G3 Hexaemeron\n\n16) mneme: Discover Y1 Mneme G1 Emerald\n\n17) Grosseteste: Build Y2 Hexaemeron\n\n18) mneme: Trade Y2 G2 Mneme\n\n\tGrosseteste: Sorry about that.\n\tmneme: so it goes.\n\nHomeworlds Online (SDG# 25607)\nStarted: 2014.4.16, Ended: 2014.5.7\nParticipants: ts52 (S), inundator (N)\nWinner: ts52\n\n1) inundator: Homeworld B2 Y3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) inundator: Build G1 Inundator\n\n4) ts52: Build G1 Ts52\n\n5) inundator: Trade G1 Y1 Inundator\n\tinundator: Wow, there sure are a lot of spectators in this game. Are you famous or something?\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\n7) inundator: Build Y1 Inundator\n\n8) ts52: Build G1 Ts52\n\n9) inundator: Trade Y1 B1 Inundator\n\n10) ts52: T G1 Y1 Ts52\n\n11) inundator: Build Y2 Inundator\n\n12) ts52: Build G1 Ts52\n\n13) inundator: Discover Y1 Inundator B1 Oscar\n\n14) ts52: Move Y1 Ts52 Grover\n\n15) inundator: Build Y2 Inundator\n\n16) ts52: Build Y2 Grover\n\n17) inundator: Trade Y2 R2 Inundator\n\n18) ts52: Trade Y2 R2 Grover\n\n19) inundator: Build Y2 Inundator\n\n20) ts52: Build Y2 Grover\n\n21) inundator: Discover Y2 Inundator G1 Bigbird\n\n22) ts52: Move R2 Grover Oscar\n\n23) inundator: Discover Y1 Oscar G2 Elmo\n\n24) ts52: Move Y1 Grover Oscar\n\tts52: Sorry, just saw your message. I'm not famous, no. Not sure why there are so many spectators.\n\n25) inundator: Build Y3 Elmo\n\n26) ts52: Build Y3 Grover\n\n27) inundator: Sacrifice Y2 Inundator\nMove Y1 Elmo Grover\nMove Y2 Bigbird Grover\nCatastrophe Grover Yellow\n\n\n\n\n\n28) ts52: Discover G1 Ts52 Y3 Bigbird\n\n29) inundator: Trade B1 G1 Inundator\n\n30) ts52: Build G2 Ts52\n\n31) inundator: Sacrifice G3 Inundator\nBuild G2 Inundator\nBuild G3 Inundator\nBuild Y1 Elmo\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild Y2 Oscar\n\n33) inundator: Discover G1 Inundator B1 Count\n\n34) ts52: Move Y2 Oscar Grover\n\n35) inundator: Move Y1 Elmo Count\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Oscar\nBuild Y2 Grover\n\n37) inundator: Move G3 Inundator Oscar\n\n38) ts52: Sacrifice Y2 Grover\nMove G3 Grover Count\nMove G3 Count Inundator\n\n39) inundator: Sacrifice G3 Oscar\nBuild G3 Inundator\nBuild R1 Inundator\nBuild Y2 Elmo\n\n40) ts52: Sacrifice R2 Oscar\nAttack R2 Inundator\nAttack G3 Inundator\n\n\tinundator: Nice job!\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 25723)\nVariants: "Unrated"\nStarted: 2014.4.18, Ended: 2014.5.7\nParticipants: fogus (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) fogus: Homeworld B3 Y2 G3\n\n3) wil: B G1 Wil\n\n4) fogus: Build G1 Fogus\n\n5) wil: T G1 R1 Wil\n\n6) fogus: Build G1 Fogus\n\n7) wil: B R1 Wil\n\n8) fogus: Trade G1 Y1 Fogus\n\n9) wil: T R1 Y1 Wil\n\n10) fogus: Trade G1 R1 Fogus\n\twil: Thanx for the game and goodluck! \n\n11) wil: B R2 Wil\n\n12) fogus: Build R2 Fogus\n\n13) wil: D R2 Wil G3 G3\n\n14) fogus: Build G1 Fogus\n\n15) wil: B R2 G3\n\n16) fogus: Build R3 Fogus\n\n17) wil: B R3 Wil\n\n18) fogus: Discover R1 Fogus Y1 Timmy\n\n19) wil: T R1 B1 Wil\n\n20) fogus: Move G3 Fogus Timmy\n\n21) wil: B B1 Wil\n\n22) fogus: Build Y2 Fogus\n\n23) wil: Build Y2 Wil\n\n24) fogus: Discover Y2 Fogus B1 Pickle\n\n25) wil: B Y3 Wil\n\n26) fogus: Trade Y1 G1 Fogus\n\n27) wil: S Y2 Wil\nM Y1 Wil G3\nM B1 Wil G3\n\n28) fogus: Discover Y2 Pickle B2 Goo\n\n29) wil: T R3 Y3 Wil\n\tfogus: OMG I'm finding the 3-player game super-confusing. :-O\n\tfogus: Not that this one isn't, but at least I feel like I have some notion of what's happening. :-)\n\twil: Binary is the best...four player the worst...multiplayer are funky as you are working towards a plan that will make you ship leader once it gets to binary...\n\n30) fogus: Build G1 Timmy\n\n31) wil: D R2 G3 B1 B1\n\n32) fogus: Discover R2 Fogus Y1 Hit\n\n33) wil: S G3 Wil\nB B2 G3\nB B3 G3\nB B3 Wil\n\n34) fogus: Build G2 Fogus\n\n35) wil: S B2 G3\nT B3 Y3 G3\nT B3 G3 Wil\n\n36) fogus: Move Y2 Goo Timmy\n\n37) wil: B G2 Wil\n\n38) fogus: Trade G2 B2 Fogus\n\n39) wil: S G3 Wil\nB Y2 Wil\nB B2 G3\nB B3 Wil\n\n40) fogus: Discover G1 Timmy B3 Nil\n\n41) wil: S Y3 Wil\nM Y2 Wil G3\nM Y2 G3 Timmy\nM Y1 G3 Timmy\nC Timmy Y\n\n42) fogus: Build G2 Nil\n\tfogus: Hrmph. Missed that one.\n\n43) wil: T B3 G3 Wil\n\n44) fogus: Trade B2 Y2 Fogus\n\n45) wil: S G3 Wil\nB B2 Wil\nB B3 G3\nB R1 B1\n\twil: Yes getting caught unawares... Happens to me all the time...\n\n46) fogus: Move G1 Fogus Hit\n\tfogus: Oh nice. I never thought about dominating a color via pointed sacrifice. Nice technique.\n\n47) wil: T B3 Y3 G3\n\twil: As this game gains popularity, more moves and gambits will be named..can't wait for the day books begin to be written.\n\n48) fogus: Trade R3 G3 Fogus\n\n49) wil: T Y3 G3 Wil\n\n50) fogus: Sacrifice Y2 Fogus\nMove G1 Nil Wil\nMove G2 Nil Wil\nCatastrophe Wil G\n\n51) wil: S B2 G3\nT R1 G1 B1\nT R2 G2 G3\n\tfogus: I doubt they will name this gambit. Maybe the Fogus Folly? ;-)\n\n52) fogus: Build G2 Hit\n\twil: It is quite the move!\n\tfogus: Whoa! Nice block on the reds! That took the wind out of my sails. :-) This is the first really effective use of blue that I've seen (I'm usually out of the game much sooner than this)\n\twil: Cornering any economy can give you a big ship advantage....blues you trade like crazy...yellows stagnating the opponents ability to move is devestating...green, no growth...red..no attacks...no defense. Monopolies are powerful and almost always detrmine the game. But yeah..unloading small ships back in when someone is drooling for the opportunity...mean...just mean...and DISTRACTING!\n\n\twil: I warned you about my distraction... Now you wanna take that back? (Hint you and I currently both are guilty of the same very bad practice)\n\twil: Can you see that it is currently checkmate? We can either end here, and play another, or you can back up and try again,\n\tfogus: I do see it yes. Too late of course.\n\twil: Ah crap...the undo last move button was gone? I wonder how long it lasts...\r\n\r\nThis situation is called Bluebird, when you only have one color ship in your homeworld...diversity is good.\n\nHomeworlds Online (SDG# 25745)\nVariants: "Hard time"\nStarted: 2014.4.19, Ended: 2014.7.22\nParticipants: ts52 (S), MagicJohn (N)\nWinner: ts52\n\n1) MagicJohn: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\tMagicJohn: have a good game!\n\tts52: Thanks. You too!\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) ts52: Build G1 Ts52\n\n5) MagicJohn: Trade G1 B1 Magicjohn\n\n6) ts52: Trade G1 B1 Ts52\n\n7) MagicJohn: Build B2 Magicjohn\n\n8) ts52: Discover B1 Ts52 G1 Oscar\n\n9) MagicJohn: Discover B2 Magicjohn Y3 Elysian\n\n10) ts52: Build B2 Oscar\n\n11) MagicJohn: Sacrifice G3 Magicjohn\nBuild B2 Elysian\nBuild B3 Magicjohn\nBuild B3 Elysian\n\n12) ts52: Trade B2 Y2 Oscar\n\n13) MagicJohn: Sacrifice B2 Elysian\nTrade B3 G3 Elysian\nTrade B3 G3 Magicjohn\n\n14) ts52: Build B2 Oscar\n\n15) MagicJohn: Trade B2 R2 Elysian\n\n16) ts52: Trade B2 R2 Oscar\n\n17) MagicJohn: Move G3 Elysian Oscar\n\n18) ts52: Discover R2 Oscar Y3 Bigbird\n\n19) MagicJohn: Sacrifice R2 Elysian\nAttack Y2 Oscar\nAttack B1 Oscar\n\n20) ts52: Build G1 Ts52\n\n21) MagicJohn: Trade B1 R1 Oscar\n\n22) ts52: Discover G1 Ts52 Y1 Zoe\n\n23) MagicJohn: Build B1 Magicjohn\n\n24) ts52: Discover G1 Zoe B2 Grover\n\n25) MagicJohn: Discover B1 Magicjohn B3 Missp\n\n26) ts52: Build G1 Grover\n\n27) MagicJohn: Discover B1 Magicjohn Y3 Kermit\n\n28) ts52: Build G2 Ts52\n\n29) MagicJohn: Build G2 Magicjohn\n\n30) ts52: Trade G1 Y1 Grover\n\n31) MagicJohn: Sacrifice G3 Oscar\nBuild B2 Kermit\nBuild B2 Missp\nBuild B3 Kermit\n\n32) ts52: Build G1 Grover\n\n33) MagicJohn: Move G2 Magicjohn Kermit\n\n34) ts52: Move G1 Grover Bigbird\n\n35) MagicJohn: Trade B3 G3 Kermit\n\n36) ts52: Discover Y1 Grover B3 Gonzo\n\n37) MagicJohn: Build G2 Magicjohn\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Gonzo\nBuild R1 Bigbird\n\n39) MagicJohn: Trade B1 Y1 Missp\n\n40) ts52: Trade G3 Y3 Ts52\n\n41) MagicJohn: Move G2 Magicjohn Missp\n\n42) ts52: Build G3 Ts52\n\n43) MagicJohn: Discover G2 Kermit B1 Animal\n\n44) ts52: Move G3 Ts52 Oscar\n\tMagicJohn: My first inclination was to sac a y2 and "discover" a new star from kermit and move from magicjohn to missp. Apparently that's not legal?\n\tts52: That's odd. I think it should be legal.\n\n45) MagicJohn: Discover Y2 Oscar R2 Fozzie\n\n46) ts52: Sacrifice R1 Bigbird\nAttack R1 Oscar\n\n47) MagicJohn: Trade B2 R2 Kermit\n\n48) ts52: Move Y1 Gonzo Oscar\n\n49) MagicJohn: Discover B2 Missp R1 Rowlf\n\n50) ts52: Sacrifice G3 Oscar\nBuild G3 Bigbird\nBuild R1 Bigbird\nBuild R3 Oscar\n\n51) MagicJohn: Build R3 Kermit\n\n52) ts52: Move G3 Bigbird Rowlf\n\n53) MagicJohn: Move R3 Kermit Animal\n\n54) ts52: Attack B2 Rowlf\n\n55) MagicJohn: Build B2 Kermit\n\n56) ts52: Move R3 Oscar Missp\n\n57) MagicJohn: Move Y1 Missp Animal\n\n58) ts52: Build R3 Oscar\n\n59) MagicJohn: Move Y2 Fozzie Animal\n\n60) ts52: Attack G2 Missp\n\n61) MagicJohn: Move Y1 Animal Ts52\n\n62) ts52: Sacrifice R1 Bigbird\nAttack Y1 Ts52\n\n63) MagicJohn: Move Y2 Animal Ts52\nCatastrophe Ts52 Y\n\n64) ts52: Move R3 Oscar Ts52\n\n65) MagicJohn: Trade B2 Y2 Kermit\n\n66) ts52: Trade G3 Y3 Rowlf\n\n67) MagicJohn: Build G3 Animal\n\n68) ts52: Sacrifice Y3 Rowlf\nMove G1 Bigbird Magicjohn\nMove G2 Missp Magicjohn\nMove G2 Ts52 Magicjohn\nCatastrophe Magicjohn Green\n\n\nHomeworlds Online (SDG# 25496)\nVariants: "Hard time"\nStarted: 2014.4.20, Ended: 2014.4.23\nParticipants: SilentTitan (S), richpee (N)\nWinner: SilentTitan\n\n\trichpee: I'm new here. Interface is confusing. How the hell do I construct a new star, G3/B2?\n\tSilentTitan: So to set up your home world you type "Homeworld b1 r2 g3". Which sets up a two star Homeworld of b1 and r2 then gives you a green battleship in that Homeworld. Every other star comes into existence when you use the discover command.\n\tSilentTitan: Keep in mind that you done have to type that exact command you can type Homeworld then whichever star combo you'd like, that is legal. Then the last letter number group is the ship. Does this help?\n\tSilentTitan: Done = don't\n\nHomeworlds Online (SDG# 25751)\nVariants: "Hard time"\nStarted: 2014.4.20, Ended: 2014.5.5\nParticipants: TeeTeeTee (S), wil (N)\nWinner: TeeTeeTee\n\n1) wil: H B2 R1 G3\n\twil: Procedural question, I had a challenge against Zoltar in play. It was neither accepted or rejected as far as I can see... What happens there?\n\twil: I gueSs if they don't answer -kll start...but where did you come from outta the blue? Undefeated in Zemdo or HW... Impressive climb on the ladder...everently no newbie... \n\tTeeTeeTee: Heh, I'm not sure what to say to that. I'm not sure how your challenge to zoltar was deleted, but as (at the time) all the players above you were inactive or playing ladder games, and as you had asked to play another binary game with me at some point, I thought you'd be fine with accepting a ladder challenge...\n\n2) TeeTeeTee: Homeworld B1 Y3 G3\n\twil: I am ok, with playing another game...many more as a matter o fact! I was just hoping to ascertain what went on or at least highlight a hiccup...but let's have at it!\n\n3) wil: B G1 Wil\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) wil: T G1 R1 Wil\n\n6) TeeTeeTee: Trade G1 R1 Teeteetee\n\n7) wil: B R2 Wil\n\n8) TeeTeeTee: Build R2 Teeteetee\n\n9) wil: T R2 Y2 Wil\n\n10) TeeTeeTee: Trade R1 B1 Teeteetee\n\n11) wil: B Y1 Wil\n\n12) TeeTeeTee: Build B1 Teeteetee\n\n13) wil: D Y1 Wil G3 G3\n\n14) TeeTeeTee: Discover B1 Teeteetee G2 Hull\n\n15) wil: B Y1 Wil\n\n16) TeeTeeTee: Build B2 Hull\n\twil: I did that back asswards.... Lovely day here in DC wherabouts are you on this big blue ball?\n\n17) wil: T Y2 B2 Wil\n\tTeeTeeTee: What did you do back-asswards? I was going to mention, I expected you to move the y2 out instead of the y1.\r\nI'm from lovely sunny London, and today I am going to name my stars after the less well-loved British cities.\n\n18) TeeTeeTee: Trade B2 Y2 Hull\n\n19) wil: M B2 Wil G3\n\n20) TeeTeeTee: Discover B1 Teeteetee G2 Scunthorpe\n\twil: Not moving that y2 was my backasswards move... Sunny London? You blokes fond of sarcasm too? How did you get introduced to homeworlds?\n\n21) wil: M B2 G3 Scunthorpe\n\tTeeTeeTee: Erm, I just saw it described on the internet, and it looked interesting. Not played it in person yet, but I may well introduce some people to it in the next few weeks - I've got a set, now.\n\n22) TeeTeeTee: Build B2 Scunthorpe\n\twil: Are you a chess player? Quite logical I take it...howdja get so good? \r\n\r\nLess loved cities? But appreciated by you? Are they places I should visit ifn I get across the pond? Places my English friends would know?\n\n23) wil: B B3 Scunthorpe\nC Scunthorpe B\n\n24) TeeTeeTee: Build B1 Hull\n\twil: I can understand the sentiment. I mean, I just stopped in to visit scunthorpe and some bloke from hull came over and spoiled the hole thing...\n\n25) wil: B Y1 G3\n\n26) TeeTeeTee: Build Y2 Hull\n\n27) wil: B Y2 Wil\n\n28) TeeTeeTee: Move Y2 Hull G3\n\n29) wil: S G3 Wil\nB Y3 Wil\nB Y3 G3\nB R1 Wil\nC G3 Y\n\n30) TeeTeeTee: Build R2 Teeteetee\n\n31) wil: D Y2 Wil G3 G3\n\n32) TeeTeeTee: Move R2 Teeteetee Hull\n\n33) wil: M R1 Wil G3\n\n34) TeeTeeTee: Discover B1 Hull G3 Milton_keynes\n\n35) wil: T R1 G1 Wil\n\n36) TeeTeeTee: Build B2 Milton_keynes\n\n37) wil: B R1 G3\n\n38) TeeTeeTee: Build B2 Hull\n\n39) wil: D R1 G3 G2 G2\n\n40) TeeTeeTee: Build B3 Milton_keynes\n\n41) wil: B R2 G3\n\n42) TeeTeeTee: Build R3 Hull\n\n43) wil: B R3 G2\n\twil: I think I lost this before I started... Now with no factory or blues it is just me playing around...\n\n44) TeeTeeTee: Build R3 Teeteetee\n\n45) wil: S Y2 G3\nM R1 G3 Hull\nM R2 G3 Hull\nC Hull R\n\n46) TeeTeeTee: Trade B3 R3 Milton_keynes\n\n47) wil: B Y1 Wil\n\n48) TeeTeeTee: Move R3 Teeteetee Hull\n\twil: Treading water in high seas...\n\n49) wil: S Y1 Wil\nD R3 G2 B3 B3\n\n50) TeeTeeTee: Build B3 Milton_keynes\n\n51) wil: T R3 G3 B3\n\n52) TeeTeeTee: Sacrifice Y2 Hull\nMove B3 Milton_keynes Wil\nMove R3 Milton_keynes Wil\n\n\tTeeTeeTee: You needed that r3, there.\n\tTeeTeeTee: Thanks for the game!\n\twil: Thank you!! (For the abuse and the geography lesson)\r\n\r\nFeel free to challenge me anytime. I do like to try to learn by getting beat. And I like to keep a number of games in play so I keep learning.\n\nHomeworlds Online (SDG# 25741)\nStarted: 2014.4.25, Ended: 2014.5.10\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: H B3 G2 Y3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) wil: B Y1 Wil\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) wil: B Y2 Wil\n\n7) ts52: Discover Y1 Ts52 G3 Kermit\n\n8) wil: T Y2 R2 Wil\n\n9) ts52: Build G1 Ts52\n\n10) wil: B Y2 Wil\n\n11) ts52: Trade G1 R1 Ts52\n\n12) wil: T Y2 B2 Wil\n\n13) ts52: Build Y2 Kermit\n\n14) wil: T Y1 G1 Wil\n\n15) ts52: Build G1 Ts52\n\twil: I think I blew it in my opening...\n\n16) wil: D B2 Wil G1 G1\n\n17) ts52: Discover G1 Ts52 B3 Grover\n\n18) wil: D G1 Wil Y1 Y1\n\n19) ts52: Build G2 Ts52\n\n20) wil: B Y2 Wil\n\n21) ts52: Trade G2 R2 Ts52\n\n22) wil: B G2 Y1\n\n23) ts52: Move R2 Ts52 Kermit\n\n24) wil: D G2 Y1 R3 R3\n\n25) ts52: Move Y2 Kermit G1\n\n26) wil: S R2 Wil\nA Y2 G1\nP\n\n27) ts52: Move R2 Kermit G1\n\n28) wil: S Y2 Wil\nM Y2 G1 R3\nM B2 G1 R3\n\n29) ts52: Build Y2 Kermit\n\n30) wil: B Y2 Wil\n\n31) ts52: Move Y1 Kermit G1\n\n32) wil: T Y2 R2 Wil\n\n33) ts52: Build R1 G1\n\n34) wil: B R1 Wil\n\n35) ts52: Move R2 G1 Grover\n\n36) wil: M B2 R3 G1\n\n37) ts52: Sacrifice G3 Ts52\nBuild R2 Grover\nBuild R3 Ts52\nBuild R3 G1\n\n38) wil: B G2 R3\n\n39) ts52: Attack B2 G1\n\n40) wil: B G3 Y1\n\n41) ts52: Build G3 Grover\n\n42) wil: S G3 Y1\nB G3 Y1\nB Y2 Wil\nB Y3 R3\n\n43) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild B1 G1\nBuild Y3 Kermit\n\n44) wil: T R2 B2 Wil\n\n45) ts52: Sacrifice Y2 Kermit\nMove B1 G1 Wil\nMove B2 G1 Wil\nCatastrophe Wil Blue\n\n46) wil: B R2 Wil\n\twil: Well I guess that is that...\n\n47) ts52: Sacrifice Y3 Kermit\nMove R1 G1 Wil\nMove R2 Grover Wil\nPass\nCatastrophe Wil Red\n\n48) wil: D Y2 Wil B3 B3\n\n49) ts52: Move R3 G1 Wil\n\n\twil: Yeah, -nice\n\tts52: Thanks for the game! \n\twil: Thank you!! Someday -'ll learn...\n\nHomeworlds Online (SDG# 25750)\nVariants: "Hard time"\nStarted: 2014.4.25, Ended: 2014.4.30\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: H R2 B1 G3\n\n2) SilentTitan: Homeworld Y1 G3 B3\n\n3) wil: B G1 Wil\n\tSilentTitan: Welcome\n\n4) SilentTitan: Build B1 Silenttitan\n\n5) wil: T G1 B1 Wil\n\n\nHomeworlds Online (SDG# 25779)\nVariants: "Hard time"\nStarted: 2014.5.5, Ended: 2014.6.1\nParticipants: wil (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) wil: H B3 G2 R3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: B R1 Wil\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) wil: B R1 Wil\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) wil: T R3 Y3 Wil\n\n9) SilentTitan: Discover G1 Silenttitan R3 Sol\n\n10) wil: B R2 Wil\n\n11) SilentTitan: Build G1 Silenttitan\n\n12) wil: D R2 Wil Y1 Y1\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Sol\nBuild G2 Sol\nBuild G2 Silenttitan\n\n14) wil: T Y3 G3 Wil\n\n15) SilentTitan: Trade G2 Y2 Silenttitan\n\n16) wil: B R2 Wil\n\n17) SilentTitan: Build G2 Silenttitan\n\n18) wil: D R2 Y1 G3 G3\n\n19) SilentTitan: Build G3 Silenttitan\n\n20) wil: T R2 B2 Wil\n\n21) SilentTitan: Trade G3 B3 Silenttitan\n\n22) wil: B R2 Wil\n\n23) SilentTitan: Build G3 Silenttitan\n\twil: You gonna make this a slow and painful death?\n\tSilentTitan: Obviously, you see something I don't. Or maybe you're not as impressed with your playing as I am.\n\n24) wil: B R2 G3\n\n25) SilentTitan: Trade G3 R3 Silenttitan\n\n26) wil: T R1 Y1 Wil\n\n27) SilentTitan: Build G3 Silenttitan\n\n28) wil: T R2 Y2 Wil\n\n29) SilentTitan: Move R3 Silenttitan G3\n\n30) wil: B R1 G3\nC G3 R\n\n31) SilentTitan: Trade G3 Y3 Silenttitan\n\n32) wil: B R1 Wil\n\n33) SilentTitan: Build G3 Silenttitan\n\n34) wil: B R2 Wil\n\n35) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover G1 Sol Y1 Soul\n\n36) wil: S B2 Wil\nT R1 B1 Wil\nT G3 R3 Wil\n\n37) SilentTitan: Sacrifice G3 Silenttitan\nBuild G3 Soul\nBuild G3 Soul\nBuild G3 Silenttitan\n\n38) wil: D Y1 Wil B1 B1\n\n39) SilentTitan: Trade G3 R3 Silenttitan\n\n40) wil: D B1 Wil Y1 Y1\n\n41) SilentTitan: Sacrifice Y3 Silenttitan\nMove R3 Silenttitan Sol\nMove R3 Sol Soul\nMove R3 Soul Wil\nCatastrophe Wil Red\n\n42) wil: T B1 R1 Y1\n\n43) SilentTitan: Trade G2 R2 Silenttitan\n\n44) wil: B Y2 Wil\n\n45) SilentTitan: Move G3 Soul Wil\n\twil: Hopin I give you more of a run next time!\n\n\nHomeworlds Online (SDG# 25791)\nVariants: "Unrated"\nStarted: 2014.5.17, Ended: 2014.6.9\nParticipants: daselva (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) daselva: Homeworld R1 B2 G3\n\n\n3) fogus: Build G1 Fogus\n\n4) daselva: Build G1 Daselva\n\n5) fogus: Trade G1 Y1 Fogus\n\n6) daselva: Trade G1 Y1 Daselva\n\n7) fogus: Build G1 Fogus\n\n8) daselva: Build G1 Daselva\n\n9) fogus: Discover G1 Fogus Y3 Goo\n\n10) daselva: Trade G1 B1 Daselva\n\n11) fogus: Build G1 Fogus\n\n12) daselva: Trade B1 R1 Daselva\n\n13) fogus: Trade G1 B1 Fogus\n\n14) daselva: Move R1 Daselva Goo\n\n15) fogus: Move G1 Goo Fogus\n\n16) daselva: Build G1 Daselva\n\n17) fogus: Trade B1 R1 Fogus\n\n18) daselva: Move G1 Daselva Goo\n\n19) fogus: Build R2 Fogus\n\n20) daselva: Build R2 Goo\n\n21) fogus: Discover R2 Fogus Y3 Boo\n\n22) daselva: Build G1 Goo\n\n23) fogus: Move G1 Fogus Boo\n\n24) daselva: Build G2 Daselva\n\n25) fogus: Build G2 Boo\n\n26) daselva: Trade G2 Y2 Daselva\n\n27) fogus: Discover G2 Boo B2 Glob\n\n28) daselva: Move R1 Goo Daselva\n\n29) fogus: Build G2 Glob\n\n30) daselva: Sacrifice Y2 Daselva\n\nMove G1 Goo Glob\nMove G1 Goo Glob\nCatastrophe Glob G\n\n\n\n31) fogus: Build R2 Boo\n\n32) daselva: Build G1 Daselva\n\n33) fogus: Build R3 Fogus\n\n34) daselva: Sacrifice G1 Daselva\nBuild R3 Goo\n\tfogus: Bold move! :-)\n\n35) fogus: Trade R3 Y3 Fogus\n\n36) daselva: Discover R1 Daselva G3 R1\n\n37) fogus: Move Y3 Fogus R1\n\n38) daselva: Build R3 R1\n\n39) fogus: Sacrifice R2 Boo\nAttack R3 R1\nAttack R1 R1\n\n40) daselva: Build G1 Daselva\n\n41) fogus: Build R2 Boo\n\n42) daselva: Trade G1 B1 Daselva\n\n43) fogus: Build R3 Boo\n\n\nHomeworlds Online (SDG# 25541)\nVariants: "Hard time"\nStarted: 2014.5.17, Ended: 2014.5.18\nParticipants: AndoDaan (S), Marmalade (N)\nWinner: Marmalade\n\n1) Marmalade: Homeworld G2 Y1 B3\n\n\nHomeworlds Online (SDG# 25839)\nVariants: "Hard time"\nStarted: 2014.5.18, Ended: 2014.6.15\nParticipants: TeeTeeTee (S), Broccoli_Commander (N)\nWinner: TeeTeeTee\n\n1) Broccoli_Commander: Homeworld R1 B2 G3\n\n2) TeeTeeTee: Homeworld B1 Y3 G3\n\tBroccoli_Commander: Have a good game\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tTeeTeeTee: And to you too! As you guessed, I am indeed a physicist; I suppose you noticed that I'd named some planets after early 20th-Century physicists in a previous game...\n\n4) TeeTeeTee: Build G1 Teeteetee\n\tBroccoli_Commander: Thanks!\r\nIndeed I did. Are you working in academia?\n\n5) Broccoli_Commander: Trade G1 Y1 Broccoli_commander\n\n6) TeeTeeTee: Trade G1 R1 Teeteetee\n\n7) Broccoli_Commander: Build Y1 Broccoli_commander\n\n8) TeeTeeTee: Build R1 Teeteetee\n\n9) Broccoli_Commander: Build Y1 Broccoli_commander\n\n10) TeeTeeTee: Build R2 Teeteetee\n\n11) Broccoli_Commander: Discover Y1 Broccoli_commander R3 Tomatoe\n\n12) TeeTeeTee: Discover R1 Teeteetee B2 Riemann\n\n13) Broccoli_Commander: Build Y2 Broccoli_commander\n\n14) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild R2 Riemann\nBuild R2 Riemann\nBuild R3 Teeteetee\n\n15) Broccoli_Commander: Discover Y1 Broccoli_commander R3 Cherry\n\n16) TeeTeeTee: Trade R3 G3 Teeteetee\n\n17) Broccoli_Commander: Discover Y1 Broccoli_commander R3 Chili\n\n18) TeeTeeTee: Trade R2 Y2 Riemann\n\n19) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild Y2 Cherry\nBuild Y3 Tomatoe\nBuild Y3 Broccoli_commander\n\n20) TeeTeeTee: Discover Y2 Riemann G3 Fourier\n\n21) Broccoli_Commander: Discover Y1 Tomatoe R2 Strawberry\n\n22) TeeTeeTee: Trade R2 G2 Riemann\n\n23) Broccoli_Commander: Trade Y2 R2 Broccoli_commander\n\n24) TeeTeeTee: Build Y2 Fourier\n\n25) Broccoli_Commander: Sacrifice Y1 Strawberry\nMove Y3 Tomatoe Riemann\n\n26) TeeTeeTee: Sacrifice G2 Riemann\nBuild R2 Riemann\nBuild R3 Teeteetee\n\n27) Broccoli_Commander: Sacrifice R2 Broccoli_commander\nAttack R1 Riemann\nAttack R2 Riemann\n\tBroccoli_Commander: Wha-?\r\nThat possibility did not occur to me...\n\n28) TeeTeeTee: Discover R3 Teeteetee B2 Bernoulli\n\n29) Broccoli_Commander: Trade R2 G2 Riemann\n\n30) TeeTeeTee: Trade R1 B1 Teeteetee\n\n31) Broccoli_Commander: Trade Y3 B3 Riemann\n\tTeeTeeTee: I'm sorry to have to put a hold on this game, but I will be away from the internet for several days - I'll be back on Sunday evening.\n\n32) TeeTeeTee: Sacrifice Y2 Fourier\nDiscover Y2 Fourier G2 Laplace\nMove B1 Teeteetee Laplace\n\tBroccoli_Commander: OK, no problem\r\nI appreciate the notice :)\n\n33) Broccoli_Commander: Build G1 Riemann\n\n34) TeeTeeTee: Build B1 Laplace\n\n35) Broccoli_Commander: Build G1 Riemann\n\n36) TeeTeeTee: Build B3 Laplace\n\n37) Broccoli_Commander: Sacrifice Y2 Cherry\nMove G1 Riemann Teeteetee\nMove G2 Riemann Teeteetee\n\n38) TeeTeeTee: Attack G2 Teeteetee\n\n39) Broccoli_Commander: Build G1 Teeteetee\nCatastrophe Teeteetee G\n\n40) TeeTeeTee: Move B3 Laplace Teeteetee\n\n41) Broccoli_Commander: Build G1 Riemann\n\n42) TeeTeeTee: Build B3 Laplace\n\n\tTeeTeeTee: Ahhh... I thought you'd have played on for a little longer. Thanks for the game!\n\nHomeworlds Online (SDG# 25717)\nVariants: "Hard time"\nStarted: 2014.5.20, Ended: 2014.6.14\nParticipants: wil (S), vanoosbree (N)\nWinner: wil\n\n1) vanoosbree: Homeworld B1 Y2 G3\n\n2) wil: H Y3 G2 B3\n\tvanoosbree: My VERY first game here and just discovering Looney Pyramids etc. Thanks for your patience!\n\n3) vanoosbree: Build G1 Vanoosbree\n\twil: Congrats on selecting one of the finest game systems out there...AND picking my fav game! (Published that is)... So how did you come across them (the pyramids) do you have a set? \n\tvanoosbree: Kotaku Moneysaver linked to a deal on Pink Hijinks, which led me to the Looney Labs site, Fluxx, Looney Pyramids, etc... Got some pyramids coming in the mail!\n\n4) wil: B B1 Wil\n\twil: Very cool! A physical set not only allows you to play with friends but also setting it up to mirror the computer games allows you to see the situation more clearly and test moves (this interface is lousy but all we got). Are you stateside? I am near DC\n\n5) vanoosbree: Discover G1 Vanoosbree Y3 Omega_centauri\n\n6) wil: B B1 Wil\n\tvanoosbree: I spent a couple months in DC and am in the San Fran bay area these days. Good gaming community here (wish I had more free time) and my SO is very indulgent ;)\n\twil: I used to live in Carson city, my sister in SF and visited often...wunnerful town...napa sonoma weren't bad either....Marin, mariposa...memories\n\n7) vanoosbree: Build G1 Vanoosbree\n\twil: I am learning by seeing how I get beat...and then trying to avoid that while using what I learned against others. This lesson is on not letting another corner/monopolize any one economy (action/color). I am hoping I will teach it well.\n\n8) wil: D B1 Wil Y1 Y1\n\n9) vanoosbree: Trade G1 R1 Vanoosbree\n\n10) wil: B B2 Wil\n\n11) vanoosbree: Build G1 Vanoosbree\n\n12) wil: T B2 G2 Wil\n\n13) vanoosbree: Build R1 Vanoosbree\n\n14) wil: B B2 Wil\n\n15) vanoosbree: Build R1 Vanoosbree\n\n16) wil: T B2 R2 Wil\n\n17) vanoosbree: Build R2 Vanoosbree\n\n18) wil: B R2 Wil\n\n19) vanoosbree: Trade R1 Y1 Vanoosbree\n\twil: Four of one color in any star system is overpopulated and can cause a catastrophe... A warning...\n\tvanoosbree: I noticed that as soon as I completed my last turn. Thanks for the warning!\n\n20) wil: M R2 Wil Y1\n\n21) vanoosbree: Move R1 Vanoosbree Omega_centauri\n\n22) wil: M R2 Y1 Omega_centauri\n\n23) vanoosbree: Trade R2 B2 Vanoosbree\n\n24) wil: A G1 Omega_centauri\n\n25) vanoosbree: Build B2 Vanoosbree\n\n26) wil: S G2 Wil\nB B2 Wil\nB B3 Y1\n\n27) vanoosbree: Trade G3 R3 Vanoosbree\n\n28) wil: T B3 Y3 Y1\n\n29) vanoosbree: Trade B2 Y2 Vanoosbree\n\n30) wil: A R1 Omega_centauri\n\n31) vanoosbree: Build B2 Vanoosbree\n\n32) wil: Sacrifice Y3 Y1\nM B1 Y1 Omega_centauri\nM B1 Omega_centauri Vanoosbree\nM R1 Omega_centauri Vanoosbree\nC Vanoosbree B\n\n33) vanoosbree: Attack R1 Vanoosbree\n\n34) wil: M R2 Omega_centauri Vanoosbree\nC Vanoosbree R\n\n\twil: I felt safe having three of one color in my homeworld...because you couldn't get to me. Anytime anyone trades for a triple three look around, danger is afoot. Once half you homeworld was gone acess is easier... I sent the small ship in as a tease...and a trojan horse. I'll play again whenever you are intereted.\n\nHomeworlds Online (SDG# 25847)\nVariants: "Hard time"\nStarted: 2014.5.23, Ended: 2014.5.26\nParticipants: wil (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld B3 Y1 G3\n\n\twil: Sorry about that... I was cell free for a while... Challenge agin...anytime.\n\tbhorner: Ah, ok, I will. :)\n\nHomeworlds Online (SDG# 25874)\nVariants: "Hard time"\nStarted: 2014.5.31, Ended: 2014.7.8\nParticipants: bhorner (S), Grosseteste (N)\nWinner: Grosseteste\n\n1) Grosseteste: H Y2 B1 G3\n\n2) bhorner: Homeworld B3 Y2 G3\n\n3) Grosseteste: B G1 Grosseteste\n\n4) bhorner: Build G1 Bhorner\n\n5) Grosseteste: D G1 Grosseteste B3 Luce\n\n6) bhorner: Discover G1 Bhorner Y1 Y1\n\n7) Grosseteste: Build G1 Luce\n\n8) bhorner: Build G2 Y1\n\n9) Grosseteste: Build G2 Grosseteste\n\n10) bhorner: Discover G1 Y1 Y3 Y3\n\n11) Grosseteste: Trade G2 R2 Grosseteste\n\n12) bhorner: Build G2 Bhorner\n\n13) Grosseteste: Trade G1 Y1 Luce\n\n14) bhorner: Trade G2 R2 Bhorner\n\n15) Grosseteste: Build G1 Luce\n\n16) bhorner: Build R1 Bhorner\n\n17) Grosseteste: Discover G1 Luce Y1 Colore\n\n\nHomeworlds Online (SDG# 25853)\nVariants: "Hard time"\nStarted: 2014.5.31, Ended: 2014.6.26\nParticipants: bhorner (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) bhorner: H B3 Y2 G3\n\twil: \r\nThanx for the game, let us see if I can stay alert!\n\n3) wil: B G1 Wil\n\tbhorner: It's been quite a while since I played. I will also try to stay alert!\n\n4) bhorner: Build G1 Bhorner\n\n5) wil: T G1 B1 Wil\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) wil: B B2 Wil\n\n8) bhorner: Build B2 Bhorner\n\n9) wil: D B1 Wil G3 G3\n\n10) bhorner: Discover B2 Bhorner Y1 Y1\n\n11) wil: T B2 R2 Wil\n\n12) bhorner: Trade B1 R1 Bhorner\n\n13) wil: Build R1 Wil\n\n14) bhorner: Build G1 Bhorner\n\n15) wil: Build G1 Wil\n\n16) bhorner: Move G1 Bhorner Y1\n\n17) wil: T G1 Y1 Wil\n\n\twil: hate when that happens\n\tbhorner: Me too... Sorry about that. Work got busy, so I wasn't checking every night...\n\nHomeworlds Online (SDG# 25886)\nVariants: "Hard time"\nStarted: 2014.6.2, Ended: 2014.6.24\nParticipants: wil (S), TwoShort (N)\nWinner: TwoShort\n\n1) TwoShort: Homeworld R1 B3 G3\n\n2) wil: H Y2 B1 G3\n\tTwoShort: Howdy. \n\n3) TwoShort: Build G1 Twoshort\n\n4) wil: B G1 Wil\n\n5) TwoShort: Trade G1 Y1 Twoshort\n\n6) wil: T G1 B1 Wil\n\n7) TwoShort: Trade Y1 B1 Twoshort\n\n8) wil: B B2 Wil\n\n9) TwoShort: Build B2 Twoshort\n\n10) wil: T B2 R2 Wil\n\n11) TwoShort: Trade B2 Y2 Twoshort\n\n12) wil: B B2 Wil\n\n13) TwoShort: Build B2 Twoshort\n\n14) wil: D B1 Wil G3 G3\n\n15) TwoShort: Discover B1 Twoshort Y2 Yolonda\n\n16) wil: B G1 Wil\n\n17) TwoShort: Build Y1 Twoshort\n\n18) wil: B R1 Wil\n\n19) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Yolonda\nBuild B3 Yolonda\nBuild B3 Twoshort\n\n20) wil: T R1 Y1 Wil\n\twil: I was thinkin of goin yelloe...but not for that reason....I've pulled the same move...it is great..and now that I've let the horse outta the barn and you are gigglin of what short shrift you've made of me....\n\n21) TwoShort: Trade B2 R2 Yolonda\n\twil: Well I am dominated...and BC just timed out to TTT... it would be right of me to resign now so you could challenge first place...if you'd rather I did that than fight out this game...and I'll challenge you again when I reach a position to do so.\n\n22) wil: Build R1 Wil\n\n23) TwoShort: Trade B3 G3 Twoshort\n\n24) wil: Discover G1 Wil Y3 Y3\n\n25) TwoShort: Move B3 Yolonda Y3\n\n26) wil: Discover G1 Y3 R2 R2\n\tTwoShort: As far as resigning or not, I'm not particularly concerned about jumping into the next game fast (I feel a little guilty for timing out my previous game, and I'm still pretty busy). I'm pretty sure I'm going to win this one, but I still find it interesting to figure out how to turn an advantage into actual victory. In the past I've gotten annoyed at people I thought quit too early, but I'm trying to adopt a more relaxed attitude :) Don't feel like you should resign on my account; but also don't feel you need to keep playing a bad position if you're not having fun or you'd rather go on to the next game.\n\twil: thanks for that, I enjoy the struggle and watching it play out...and so often in this game one can take advantabe of an opening that occurs and turn the tide instantly with a new universe (an error I doubt you will present) Yes it is intriguing how you can 'get ahead' significantly but still have to fight to put the pieces in place to end the game.\n\n27) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Y3\nBuild B3 Twoshort\nBuild R1 Yolonda\n\n28) wil: Move R1 Wil G3\n\n29) TwoShort: Sacrifice B2 Twoshort\nTrade B2 G2 Y3\nTrade R1 Y1 Yolonda\n\twil: the assemblage of massive ships begins... I just played this very same game (from your side with TS52 and just finally amassed the numbers required...I can see the future...it is not good.\n\n30) wil: Move Y1 Wil G3\n\twil: m y1 wil g3\n\n31) TwoShort: Sacrifice G2 Y3\nBuild B2 Y3\nBuild Y3 Twoshort\n\twil: ding dong place the move in the wrong box...you've got me flustered\r\n\n\n32) wil: Sacrifice G3 Wil\nBuild R1 G3\nBuild R3 Wil\nBuild Y3 G3\n\n33) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Y3 Wil\nMove B2 Y3 Wil\nDiscover Y1 Yolonda G3 Grogar\n\n34) wil: Move Y3 G3 Yolonda\nCatastrophe Wil B\n\n35) TwoShort: Build Y3 Grogar\n\n36) wil: S R2 Wil\nA R2 Yolonda\nA B1 Yolonda\n\n37) TwoShort: Sacrifice Y3 Grogar\nMove Y1 Grogar Wil\nMove Y1 Twoshort Wil\nMove Y2 Twoshort Wil\nCatastrophe Wil Yellow\n\twil: Just whistlin while sending forces to waterloo..\n\tTwoShort: Thanks for the game!\n\twil: very nice...thank you!\n\n\nHomeworlds Online (SDG# 25793)\nStarted: 2014.6.2, Ended: 2014.6.12\nParticipants: Timetech (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\tTimetech: Y3 G1 R2\n\tTimetech: what\r\nis\r\nwhy\r\nis\r\nthis not\r\nworking\n\tTimetech: OOOOOOOHHHHHHHHH, sorry. Its my first time. I think maybe its actually your turn.\n\tTimetech: homeworld y3 g1 r2\n\tTimetech: nope\r\n\n\tts52: Yes, it's my turn. \n\n2) Timetech: Homeworld B3 G1 Y3\n\tTimetech: SOrry, I'm so confused.\r\n\n\n3) ts52: Build G1 Ts52\n\tts52: That's ok, looks like you're figuring it out. Have you played much homeworlds before?\n\n4) Timetech: Build Y1 Timetech\n\tTimetech: No I have never played before . ... I'm brand new, any chance of going easy on me?\n\n5) ts52: Trade G1 B1 Ts52\n\tTimetech: Um, I'm having trouble figuring out how to build a different color ship? Could you perhaps give me a hint?\n\tts52: Sure. You can't build a color you don't have in that system. You have to trade a ship you have for another of the same size of a different color.\n\n6) Timetech: Trade Y3 R3 Timetech\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\tTimetech: DEFENSE INITIATED\r\nPROJECT: RED SHIP\n\n8) Timetech: Discover Y1 Timetech R2 Two\n\n9) ts52: Trade B1 R1 Kermit\n\n10) Timetech: Build R1 Timetech\n\n11) ts52: Build G1 Ts52\n\n12) Timetech: Trade R1 Y1 Timetech\n\n13) ts52: Build G1 Ts52\n\n14) Timetech: Build Y2 Timetech\n\n15) ts52: Discover G1 Ts52 B3 Gonzo\n\n16) Timetech: Discover Y1 Timetech R2 Three\n\n17) ts52: Build G2 Gonzo\n\n\nHomeworlds Online (SDG# 25892)\nVariants: "Unrated"\nStarted: 2014.6.4, Ended: 2014.6.6\nParticipants: Timetech (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) Timetech: Homeworld R3 G2 B3\n\n3) fogus: Build G1 Fogus\n\n4) Timetech: Build B1 Timetech\n\n5) fogus: Build G1 Fogus\n\n6) Timetech: Trade B1 Y1 Timetech\n\n7) fogus: Discover G1 Fogus Y3 Ape\n\n8) Timetech: Discover Y1 Timetech R1 A2\n\n9) fogus: Build G1 Ape\n\n10) Timetech: Build B1 Timetech\n\n11) fogus: Build G2 Ape\n\n\nHomeworlds Online (SDG# 25767)\nVariants: "Hard time"\nStarted: 2014.6.13, Ended: 2014.7.6\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n1) SilentTitan: Homeworld Y3 B1 G3\n\n2) wil: H G2 B1 B3 *\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) wil: B B1 Wil\n\n5) SilentTitan: Trade G3 B3 Silenttitan\n\n6) wil: T B1 Y1 Wil\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) wil: B Y1 Wil\n\n9) SilentTitan: Build G1 Silenttitan\n\n10) wil: Discover Y1 Wil G3 G3\n\n11) SilentTitan: Discover G1 Silenttitan Y2 Sol\n\n12) wil: Build Y1 Wil\n\n13) SilentTitan: Build G2 Silenttitan\n\n14) wil: Build Y2 Wil\n\n15) SilentTitan: Trade B3 Y3 Silenttitan\n\n16) wil: Build Y2 G3\n\n17) SilentTitan: Build G2 Sol\n\n18) wil: Build Y3 G3\n\n19) SilentTitan: Move G1 Sol G3\n\n20) wil: Sacrifice Y2 Wil\nMove Y1 G3 Sol\nMove Y1 Sol Silenttitan\n\n21) SilentTitan: Sacrifice G2 Silenttitan\nBuild G2 G3\nBuild G3 G3\nCatastrophe G3 Green\n\n22) wil: Build Y2 Wil\n\n23) SilentTitan: Trade G1 R1 Silenttitan\n\n24) wil: Sacrifice Y2 Wil\nDiscover Y1 Wil G3 G3\nDiscover Y1 G3 G2 G2\n\n25) SilentTitan: Trade Y3 G3 Silenttitan\n\twil: I don't know exactly what I was thinkin there...\n\tSilentTitan: I'm not either. I was prepared to move out of Sol in order to drop a y2 into the bank and delay your y3 build another couple of turns.\n\n26) wil: Build Y2 G2\n\tSilentTitan: Heh. But the talkin almost distracted me enough, of course the two hours of sleep may be part of it as well\n\n27) SilentTitan: Attack Y1 Silenttitan S\n\n28) wil: Build B1 Wil\n\n29) SilentTitan: Move Y1 Silenttitan G2\n\n30) wil: Build Y2 Wil\n\n31) SilentTitan: Build Y3 G2\nCatastrophe G2 Yellow\n\n32) wil: Discover B1 Wil Y3 Y3\n\n33) SilentTitan: Sacrifice G3 Silenttitan\nBuild G1 Sol\nBuild G1 Sol\nBuild G2 Silenttitan\n\tSilentTitan: I had no idea, yellow in my home world would mess me up so bad.\n\n34) wil: Trade Y1 R1 Wil\n\n35) SilentTitan: Build G3 Silenttitan\n\twil: yellow homeworlds are different....but my opening borders on the ridiculous....but I thought it might fly...\n\tSilentTitan: Oh, yeah I tried that one once. Also tough.\n\n36) wil: Build B2 Wil\n\n37) SilentTitan: Discover G1 Sol Y3 Soul\n\n38) wil: B R1 Wil\n\n39) SilentTitan: Sacrifice G3 Silenttitan\nBuild G3 Soul\nBuild G3 Soul\nBuild G3 Silenttitan\n\n40) wil: Trade B2 Y2 Wil\n\n\nHomeworlds Online (SDG# 25838)\nVariants: "Hard time"\nStarted: 2014.6.13, Ended: 2014.6.23\nParticipants: Marmalade (S), wil (N)\nWinner: wil\n\n1) wil: H R2 B1 G3\n\n2) Marmalade: Homeworld B2 Y3 G3\n\n3) wil: B G1 Wil\n\n4) Marmalade: Build G1 Marmalade\n\n5) wil: T G1 B1 Wil\n\n6) Marmalade: Trade G3 B3 Marmalade\n\n7) wil: B G1 Wil\n\n8) Marmalade: Build G1 Marmalade\n\n9) wil: B G2 Wil\n\n10) Marmalade: Build G2 Marmalade\n\n11) wil: Trade G1 Y1 Wil\n\n12) Marmalade: Discover G1 Marmalade Y1 Krom\n\n13) wil: Discover G2 Wil Y3 Y3\n\n14) Marmalade: Sacrifice G1 Marmalade\nBuild G1 Krom\n\n15) wil: Build Y1 Wil\n\n16) Marmalade: Build G1 Marmalade\n\n17) wil: Build Y2 Wil\n\n18) Marmalade: Trade G2 Y2 Marmalade\n\n19) wil: Discover Y2 Wil G3 G3\n\n20) Marmalade: Build G2 Marmalade\n\n21) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 Wil\nBuild G2 Y3\n\n22) Marmalade: Sacrifice G2 Marmalade\nBuild G2 Krom\nBuild G3 Marmalade\n\n23) wil: Move G2 Y3 Krom\nCatastrophe Krom G\n\n24) Marmalade: Discover G1 Marmalade Y1 Phaf\n\n25) wil: Trade Y1 R1 Wil\n\n26) Marmalade: Trade B3 R3 Marmalade\n\n27) wil: Move Y2 G3 Phaf\n\n28) Marmalade: Move R3 Marmalade Phaf\n\n29) wil: Move Y2 Phaf Marmalade\n\n30) Marmalade: Trade G3 R3 Marmalade\n\n31) wil: Sacrifice G2 Y3\nBuild Y1 Marmalade\nBuild B1 Wil\nCatastrophe Marmalade Y\n\n32) Marmalade: Build G1 Phaf\n\tMarmalade: Well, that was silly :) Ah well.\n\n33) wil: Move B1 Wil G3\n\n34) Marmalade: Move R3 Phaf G3\n\n35) wil: Sacrifice Y2 G3\nDiscover B1 G3 G1 G1\nDiscover B1 Wil G3 Gee3\n\n36) Marmalade: Build G2 Phaf\n\n37) wil: Build B2 G1\n\twil: dang big school yard bullies.... all I am doing is trying to take over the universe... sheesh...\n\n\twil: doomsday machine parts assembled.\n\tMarmalade: Ah yes, you're quite right.\r\n\n\twil: Thank you for the game, I look forward to playing again...\n\nHomeworlds Online (SDG# 25891)\nStarted: 2014.6.13, Ended: 2014.6.30\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H R2 B1 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: Build B2 Wil\n\n8) ts52: Discover B1 Ts52 G2 Oscar\n\n9) wil: Trade B1 Y1 Wil\n\n10) ts52: Build G1 Ts52\n\n11) wil: Build Y1 Wil\n\n12) ts52: Build G1 Ts52\n\n13) wil: Build Y2 Wil\n\n14) ts52: Discover G1 Ts52 B2 Gonzo\n\n15) wil: Trade Y2 R2 Wil\n\n16) ts52: Trade G3 Y3 Ts52\n\n17) wil: Trade Y1 R1 Wil\n\n18) ts52: Build B1 Oscar\n\n19) wil: Discover R2 Wil Y3 Y3\n\n20) ts52: Trade B1 R1 Oscar\n\n21) wil: Move R2 Y3 Oscar\n\n22) ts52: Build R1 Oscar\n\n23) wil: Attack B1 Oscar\n\n24) ts52: Attack B1 Oscar\n\twil: I almost grew an R2 at home....don't know which was the better move...\n\n25) wil: Attack B1 Oscar\n\tts52: Hmmm, not sure, might've been the better option...\n\n26) ts52: Build R2 Oscar\nCatastrophe Oscar Red\n\twil: I suppose if the circuitous route were to continue...it is always on the table.\n\n27) wil: Build B1 Wil\n\tts52: Meh, I'm not inclined to follow this cycle any farther. Though I suspect this isn't going to end well for me.\n\n28) ts52: Build G1 Ts52\n\twil: If you were to have chosen to flip it back, Ida taken the other route...as the stalemate is obviously not in my best interest... (I frankly didn't see it coming initially)\r\n\n\twil: But yeah, either way it appears to me my game to lose at this point...\n\n29) wil: Build B2 Oscar\n\n30) ts52: Trade G1 R1 Ts52\n\n31) wil: Build B3 Oscar\n\n32) ts52: Build Y1 Ts52\n\n33) wil: Trade B3 Y3 Oscar\n\n34) ts52: Move Y1 Ts52 Gonzo\n\n35) wil: Build B3 Oscar\n\n36) ts52: Build Y2 Gonzo\n\n37) wil: Trade B3 R3 Oscar\n\n38) ts52: Trade Y2 R2 Gonzo\n\n39) wil: Build B3 Oscar\n\n40) ts52: Build Y2 Gonzo\n\n41) wil: Trade B3 Y3 Oscar\n\twil: oh my...that was the faux pas you were waiting for!!\n\tts52: Oh, man. If only I'd caught you in those 44 seconds...\n\n42) ts52: Discover Y2 Gonzo G3 Kermit\n\n43) wil: Build Y2 Wil\n\n44) ts52: Build Y2 Gonzo\n\n45) wil: Build B3 Oscar\n\n46) ts52: Trade Y2 R2 Gonzo\n\n47) wil: S Y2 Wil\nM B3 Oscar Kermit\nM B3 Kermit Gonzo\n\n48) ts52: Sacrifice Y2 Kermit\nDiscover R2 Gonzo G3 Kermit\nMove R2 Gonzo Kermit\n\n49) wil: Build B3 Oscar\n\n50) ts52: Build Y2 Gonzo\n\n51) wil: Sacrifice Y3 Oscar\nMove Y3 Oscar Ts52\nMove B3 Oscar Ts52\nMove B3 Gonzo Ts52\n\twil: I believe the occupation forces are at the border, and enough munitions are at hand for a regime change.\n\n52) ts52: Sacrifice R2 Kermit\nAttack Y3 Ts52\nAttack B3 Ts52\n\twil: \n\n53) wil: Sacrifice R3 Oscar\nAttack Y3 Ts52\nAttack Y3 Ts52\nAttack B3 Ts52\n\n54) ts52: Trade R1 G1 Ts52\n\n55) wil: Sacrifice Y1 Wil\nMove B1 Oscar Ts52\nCatastrophe Ts52 B\n\twil: We come promoting democracy and freedom...\n\n56) ts52: Build R1 Kermit\n\n57) wil: Sacrifice G3 Wil\nBuild Y1 Ts52\nBuild B1 Oscar\nBuild B3 Oscar\nCatastrophe Ts52 Y\n\twil: I suppose converting a blue to an attack ship would have been the other option...now I am just in catastrophe mode and not much will be left of the universe when I finish....and after building that huge flotilla...seems a waste...\n\n\tts52: Yeah, I've really got no way out of this.\n\twil: thank you for the game... I like to keep numerous games going so I can continue to learn...feel free to challenge me anytime...\n\tts52: Sure thing. I owe you one.\n\twil: oh my....\n\nHomeworlds Online (SDG# 25933)\nVariants: "Unrated"\nStarted: 2014.6.19, Ended: 2014.6.21\nParticipants: Timetech (S), Moman1 (N)\nWinner: Timetech\n\n1) Moman1: Homeworld R2 B1 G3\n\tTimetech: the letters have to be lower case\r\n\n\n2) Timetech: Homeworld R1 G2 B3\n\n3) Moman1: Build G1 Moman1\n\n4) Timetech: Build B1 Timetech\n\n5) Moman1: Build G1 Moman1\n\n6) Timetech: Trade B1 Y1 Timetech\n\n7) Moman1: Trade G1 R1 Moman1\n\n8) Timetech: Build B1 Timetech\n\n9) Moman1: Build G1 Moman1\n\n10) Timetech: Trade B1 R1 Timetech\n\n11) Moman1: Build R2 Moman1\n\n12) Timetech: Discover R1 Timetech R3 W2\n\n13) Moman1: Build R2 Moman1\n\n14) Timetech: Build B1 Timetech\nCatastrophe Moman1 R\n\n15) Moman1: Trade G1 Y1 Moman1\n\n16) Timetech: Build B1 Timetech\n\n17) Moman1: Trade G1 R1 Moman1\n\n18) Timetech: Trade B3 R3 Timetech\n\n19) Moman1: Build R2 Moman1\n\n20) Timetech: Build R2 Timetech\n\n21) Moman1: Build Y1 Moman1\n\n22) Timetech: Discover R2 Timetech R3 W3\n\n23) Moman1: Build R2 Moman1\n\n24) Timetech: Build Y2 Timetech\n\n25) Moman1: Discover Y1 Moman1 B2 E1\n\n26) Timetech: Sacrifice Y2 Timetech\nMove R1 W2 E1\nMove R2 W3 E1\n\n27) Moman1: Build R3 Moman1\n\n28) Timetech: Attack Y1 E1\nCatastrophe Moman1 R\n\n29) Moman1: Build Y2 Moman1\n\n30) Timetech: Move R2 E1 Moman1\n\n31) Moman1: Build Y2 Moman1\n\n32) Timetech: Sacrifice R3 Timetech\nAttack Y2 Moman1\nAttack Y2 Moman1\nAttack Y1 Moman1\n\n33) Moman1: Trade G3 R3 Moman1\n\n34) Timetech: Sacrifice Y2 Moman1\nMove R2 Moman1 E1\nMove Y2 Moman1 E1\n\n35) Moman1: Attack Y1 Moman1\n\n36) Timetech: Build Y2 Timetech\n\n37) Moman1: Move R3 Moman1 E1\n\n38) Timetech: Sacrifice Y2 E1\nMove R2 E1 Moman1\nMove R1 E1 Moman1\n\n39) Moman1: Attack Y1 E1\n\n40) Timetech: Attack Y1 Moman1\n\n\nHomeworlds Online (SDG# 25942)\nVariants: "Hard time"\nStarted: 2014.6.22, Ended: 2014.7.15\nParticipants: TeeTeeTee (S), SilentTitan (N)\nWinner: TeeTeeTee\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tTeeTeeTee: Hello, and welcome!\n\tSilentTitan: Hello and thanks\n\n2) TeeTeeTee: Homeworld B1 R3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) TeeTeeTee: Build G1 Teeteetee\n\n9) SilentTitan: Trade G1 B1 Silenttitan\n\n10) TeeTeeTee: Trade G1 B1 Teeteetee\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) TeeTeeTee: Build B2 Teeteetee\n\n13) SilentTitan: Discover B2 Silenttitan G3 Sol\n\n14) TeeTeeTee: Trade B1 R1 Teeteetee\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild B1 Sol\nBuild B3 Sol\nBuild B3 Silenttitan\n\tTeeTeeTee: I just saw the announcement about Super Duper Games shutting down... sad news. :( \n\tSilentTitan: Yes\n\n16) TeeTeeTee: Build B3 Teeteetee\n\n17) SilentTitan: Trade B2 Y2 Sol\n\n18) TeeTeeTee: Trade B3 Y3 Teeteetee\n\n\tTeeTeeTee: Argh! That's a shame. I think you had a much stronger start than I did, and I was struggling to keep up.\r\n\r\nIf you have more time in the near future, then feel free to send me another challenge.\n\nHomeworlds Online (SDG# 25944)\nVariants: "Unrated"\nStarted: 2014.6.23, Ended: 2015.1.14\nParticipants: SilentTitan (S), Link2888 (N)\nWinner: SilentTitan\n\n1) Link2888: Homeworld G3 B1 Y3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) Link2888: Build Y1 Link2888\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Link2888: Trade Y1 R1 Link2888\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Link2888: Build Y1 Link2888\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) Link2888: Build Y2 Link2888\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) Link2888: Trade Y2 G2 Link2888\n\n12) SilentTitan: Trade Y1 B1 Silenttitan\n\n13) Link2888: Trade Y1 B1 Link2888\n\n14) SilentTitan: Build B2 Silenttitan\n\n15) Link2888: Discover B1 Link2888 G2 Endor\n\n16) SilentTitan: Discover B1 Silenttitan G3 Sol\n\n17) Link2888: Discover R1 Link2888 Y2 Dune\n\n18) SilentTitan: Build B2 Sol\n\n19) Link2888: Move R1 Dune Sol\n\n20) SilentTitan: Trade B2 R2 Silenttitan\n\n21) Link2888: Attack B1 Sol\n\n22) SilentTitan: Sacrifice R2 Silenttitan\nAttack B1 Sol North\nAttack R1 Sol North\n\n23) Link2888: Build B2 Endor\n\n24) SilentTitan: Sacrifice Y1 Silenttitan\nDiscover B1 Sol Y2 Soul\n\n25) Link2888: Trade B2 Y2 Endor\n\n26) SilentTitan: Build B2 Sol\n\n27) Link2888: Discover B1 Endor Y1 Blue\n\n28) SilentTitan: Sacrifice Y2 Silenttitan\nMove B2 Sol Endor\nDiscover B2 Sol G2 Sole\n\n29) Link2888: Move B1 Blue Sole\n\n30) SilentTitan: Sacrifice R1 Sol\nAttack Y2 Endor North\n\n31) Link2888: Build Y1 Link2888\n\n32) SilentTitan: Trade B2 R2 Sole\n\n33) Link2888: Trade B1 G1 Sole\n\n34) SilentTitan: Attack G1 Sole North\n\n\nHomeworlds Online (SDG# 25893)\nStarted: 2014.6.24, Ended: 2014.10.25\nParticipants: wil (S), Mandrel (N)\nWinner: wil\n\n1) Mandrel: Homeworld R3 B2 G3\n\n2) wil: Homeworld Y2 B1 G3\n\tMandrel: Have a good game!\n\n3) Mandrel: Build G1 Mandrel\n\twil: Lookin forward to it... I have yet to have a bad game (well except the ones that linger and then get lost by time)...I've played badly, played terribly even, but always enjoy the game and learning.\n\n4) wil: Build G1 Wil\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) wil: Trade G1 B1 Wil\n\n7) Mandrel: Build Y1 Mandrel\n\n8) wil: Build B1 Wil\n\n9) Mandrel: Build G1 Mandrel\n\n10) wil: Discover B1 Wil G3 G3\n\n11) Mandrel: Build Y1 Mandrel\n\n12) wil: Build B2 G3\n\n13) Mandrel: Discover Y1 Mandrel G1 Bowl\n\n14) wil: Build B2 Wil\n\n15) Mandrel: Build Y2 Bowl\n\n16) wil: Build B3 G3\n\n17) Mandrel: Build Y2 Mandrel\n\n18) wil: Trade B3 Y3 G3\n\n19) Mandrel: B Y3 Bowl\n\n20) wil: Build B3 G3\n\n21) Mandrel: T Y1 R1 Mandrel\n\n22) wil: Trade B3 R3 G3\n\n23) Mandrel: Trade G3 B3 Mandrel\n\n24) wil: Trade B1 R1 Wil\n\n25) Mandrel: Sacrifice Y2 Mandrel\nMove B3 Mandrel Bowl\nMove Y3 Bowl Mandrel\n\n26) wil: Build R1 G3\n\n27) Mandrel: Move R1 Mandrel Bowl\n\n28) wil: Discover R3 G3 G1 G1\n\n29) Mandrel: Build G2 Mandrel\n\n30) wil: Build G2 Wil\n\n31) Mandrel: Build R2 Bowl\n\n32) wil: Move B2 G3 G1\n\n33) Mandrel: Build Y1 Bowl\n\n34) wil: Build Y2 G3\n\n35) Mandrel: Build Y3 Mandrel\n\n36) wil: S Y3 G3\nMove R3 G1 Mandrel\nMove Y2 G3 G1\nMove Y2 G1 Mandrel\nCatastrophe Mandrel Y\n\n37) Mandrel: S Y2 Bowl\nMove R1 Bowl Mandrel\nMove R2 Bowl Mandrel\nC Mandrel R\n\twil: It appears a disaster has occurred with your large propulsion refineries, we are utilizing a portion of our superfund budget to send in our largest trojan horse, I mean red cross ship to assist in the cleanup efforts.\n\n38) wil: Sacrifice G3 Wil\nBuild B1 G1\nBuild B3 G3\nBuild B3 Wil\n\tMandrel: Apologies, my own relief effort appears to have made matters worse.\n\n39) Mandrel: Trade G1 Y1 Mandrel\n\twil: Yes it looks like my Red Cross ship is missing with all its crew and supplies...\n\n40) wil: S B2 Wil\nT B3 R3 G3\nT B2 Y2 G1\n\n41) Mandrel: Build Y2 Mandrel\n\n42) wil: Build Y3 G1\n\n43) Mandrel: Build Y3 Bowl\n\n44) wil: Sacrifice Y2 G1\nMove B3 Wil G3\nMove B3 G3 Mandrel\n\n45) Mandrel: Build Y2 Mandrel\n\n46) wil: S R3 G3\nA G2 Mandrel\nA Y2 Mandrel\nA Y2 Mandrel\n\n47) Mandrel: Move B3 Bowl Mandrel\n\n48) wil: Move B1 G1 Mandrel\nCatastrophe Mandrel B\n\twil: The operation was a success, but the patient died...thanx for the game!\n\n\nHomeworlds Online (SDG# 25921)\nVariants: "Hard time"\nStarted: 2014.6.26, Ended: 2014.6.26\nParticipants: wil (S), Marmalade (N)\nWinner: Marmalade\n\n\nHomeworlds Online (SDG# 25949)\nVariants: "Hard time"\nStarted: 2014.6.26, Ended: 2014.6.29\nParticipants: wil (S), Marmalade (N)\nWinner: wil\n\n\twil: oops....wanted to play a game...but got two...\n\twil: or rather...guess I didn't get any...\n\nHomeworlds Online (SDG# 25955)\nVariants: "Hard time"\nStarted: 2014.6.30, Ended: 2014.7.24\nParticipants: TwoShort (S), wil (N)\nWinner: TwoShort\n\n1) wil: Homeworld Y2 B1 G3\n\twil: there was no one else I was allowed to challenge on the ladder....I've been beat by the rest, might as well get beat by the best again.\n\n2) TwoShort: Homeworld B1 G3 B3 *\n\n3) wil: Build G1 Wil\n\n4) TwoShort: Build B1 Twoshort\n\twil: lol...deja view\n\n5) wil: Build G1 Wil\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) wil: Discover G1 Wil Y3 Y3\n\n8) TwoShort: Build B2 Twoshort\n\n9) wil: Build G1 Wil\n\n10) TwoShort: Discover B2 Twoshort B2 Bluzilla\n\n11) wil: Build G2 Y3\n\n12) TwoShort: Build B2 Twoshort\n\n13) wil: Trade G1 R1 Wil\n\n14) TwoShort: Trade B2 R2 Twoshort\n\n15) wil: Trade G3 B3 Wil\n\n16) TwoShort: Discover B1 Twoshort G2 Grogar\n\n17) wil: Build G1 Wil\n\n18) TwoShort: Build B2 Grogar\n\n19) wil: Build G2 Wil\n\n20) TwoShort: Build B3 Grogar\n\n21) wil: Discover G1 Wil Y3 Why3\n\n22) TwoShort: Sacrifice Y3 Twoshort\nMove B3 Grogar Twoshort\nDiscover B2 Grogar G3 Greenland\nDiscover B1 Grogar G3 Greedo\n\n23) wil: Build B3 Wil\n\n24) TwoShort: Trade B2 Y2 Bluzilla\n\n25) wil: Trade B3 Y3 Wil\n\n26) TwoShort: Build B2 Greedo\n\n27) wil: Move B3 Wil Y3\n\n28) TwoShort: Build B3 Greenland\n\n29) wil: Trade G2 Y2 Y3\n\twil: and here I expected bluezilla to get sacked and greedo to take out half my homeworld...\n\tTwoShort: But after tha, I had no quick way to finish you; Our homeworlds would be adjacent; and you'd have a massive piece advantage... \n\n30) TwoShort: Trade B1 Y1 Greedo\n\n31) wil: Build G2 Y3\n\twil: hmmm I'd be outta blues...no position to trade ships anywhere and be stuck trying move to a blue to do it...and many of my ships two steps away... would be cool to be able to after a game completes set the program to restart from x move and try again... \n\n32) TwoShort: Build Y1 Greedo\n\n33) wil: Trade G2 R2 Y3\n\n34) TwoShort: Sacrifice Y2 Bluzilla\nMove Y1 Greedo Wil\nMove Y1 Greedo Wil\nCatastrophe Wil Yellow\n\n35) wil: Move B3 Y3 Wil\n\n36) TwoShort: Trade B3 Y3 Twoshort\n\n37) wil: Trade B3 R3 Wil\n\n38) TwoShort: Sacrifice Y3 Twoshort\nMove B2 Greedo Wil\nMove B2 Greenland Wil\nMove B3 Greenland Wil\nCatastrophe Wil Blue\n\twil: Well that be it yet again...\n\n\twil: It'll at least look like we tried to defend...\n\tTwoShort: Thanks for the game.\n\twil: thank you for the butt whoopin!\n\nHomeworlds Online (SDG# 25922)\nStarted: 2014.7.11, Ended: 2014.8.4\nParticipants: ts52 (S), Conflux (N)\nWinner: ts52\n\n1) Conflux: Homeworld B3 G2 R3\n\n2) ts52: Homeworld Y1 B2 G3\n\n\tts52: Have a good game!\n\nHomeworlds Online (SDG# 25920)\nVariants: "Hard time"\nStarted: 2014.7.14, Ended: 2014.7.17\nParticipants: SilentTitan (S), Grosseteste (N)\nWinner: Grosseteste\n\n1) Grosseteste: Homeworld B1 Y2 G3\n\n\tGrosseteste: Let's see if I can keep the time control this time. Have fun!\n\nHomeworlds Online (SDG# 25950)\nVariants: "Hard time"\nStarted: 2014.7.14, Ended: 2014.7.17\nParticipants: Grosseteste (S), Marmalade (N)\nWinner: Grosseteste\n\n\tGrosseteste: Trying to make amends for my Hard Time losses. Have a good game!\n\nHomeworlds Online (SDG# 26005)\nStarted: 2014.7.15, Ended: 2014.9.24\nParticipants: Grosseteste (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B1 R2 G3\n\n2) Grosseteste: Homeworld Y3 B1 G3\n\n3) mneme: Build G1 Mneme\n\n4) Grosseteste: B G1 Grosseteste\n\n5) mneme: Trade G1 B1 Mneme\n\n6) Grosseteste: B G1 Grosseteste\n\n7) mneme: Build B2 Mneme\n\n8) Grosseteste: Trade G1 R1 Grosseteste\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) Grosseteste: T G3 B3 Grosseteste\n\n11) mneme: Build B2 Mneme\n\n12) Grosseteste: B R1 Grosseteste\n\n13) mneme: Discover B2 Mneme G3 Staging\n\n14) Grosseteste: D R1 Grosseteste Y2 Luce\n\n15) mneme: Build B2 Staging\n\n16) Grosseteste: D R1 Luce G3 Compotus\n\n17) mneme: Build B2 Mneme\n\n18) Grosseteste: B R1 Compotus\n\n19) mneme: Build B3 Staging\n\n20) Grosseteste: B R2 Compotus\n\n21) mneme: Trade B2 R2 Mneme\n\n22) Grosseteste: B R3 Grosseteste\n\tmneme: I'm pretty sure you wanted to make that last r2 in your home system.\n\tGrosseteste: B r3 Grosseteste\n\tGrosseteste: B r3 Grosseteste\n\n23) mneme: Build R3 Mneme\n\tGrosseteste: Doh, wrong window. It was intentional, but I did not see your trade coming.\n\tGrosseteste: Doh, wrong window. It was intentional, but I did not see your trade coming.\n\n24) Grosseteste: B R3 Grosseteste\n\tmneme: Well, you did get a 3 out of it, but I did too, and at a very high cost.\n\n25) mneme: Move R2 Mneme Compotus\nCatastrophe Compotus R\n\tmneme: ok, 2 3s, but I didn't want to say that until you built the third one\n\n26) Grosseteste: T R3 G3 Grosseteste\n\n27) mneme: Trade B3 Y3 Staging\n\n28) Grosseteste: Discover B3 Grosseteste G2 Hexaemeron\n\n29) mneme: Build B2 Staging\n\n30) Grosseteste: T R3 Y3 Grosseteste\n\n31) mneme: Move B2 Staging Hexaemeron\n\n32) Grosseteste: Sacrifice R1 Grosseteste\nAttack B2 Hexaemeron\n\n33) mneme: Sacrifice Y2 Mneme\nMove B2 Staging Hexaemeron\nMove B2 Staging Hexaemeron\nCatastrophe Hexaemeron B\n\n34) Grosseteste: Discover G1 Grosseteste Y2 Colore\n\n35) mneme: Sacrifice Y3 Staging\nDiscover G3 Mneme Y3 Staging\nMove G3 Staging Colore\nMove G3 Colore Grosseteste\n\n\tmneme: good game.\n\tGrosseteste: Thanks, gg\n\tGrosseteste: Thanks, gg\n\nHomeworlds Online (SDG# 25999)\nVariants: "Hard time"\nStarted: 2014.7.15, Ended: 2014.9.19\nParticipants: Grosseteste (S), Mandrel (N)\nWinner: Grosseteste\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) Grosseteste: Homeworld B1 Y3 G3\n\tMandrel: Have a good game\n\n3) Mandrel: Build G1 Mandrel\n\tGrosseteste: You too!\n\n4) Grosseteste: Build G1 Grosseteste\n\n5) Mandrel: Trade G1 R1 Mandrel\n\n6) Grosseteste: Trade G1 R1 Grosseteste\n\n7) Mandrel: Build R2 Mandrel\n\n8) Grosseteste: B R2 Grosseteste\n\n9) Mandrel: T R1 B1 Mandrel\n\n10) Grosseteste: B G1 Grosseteste\n\n11) Mandrel: Build G1 Mandrel\n\n12) Grosseteste: D G1 Grosseteste R2 Hexaemeron\n\n13) Mandrel: Trade G1 Y1 Mandrel\n\n14) Grosseteste: B G1 Grosseteste\n\n15) Mandrel: Discover B1 Mandrel G3 Corn\n\n16) Grosseteste: Discover R1 Grosseteste G2 Colore\n\n17) Mandrel: Build B1 Corn\n\n18) Grosseteste: B G1 Hexaemeron\n\n19) Mandrel: Build B2 Corn\n\n20) Grosseteste: B G2 Grosseteste\n\n21) Mandrel: Build G2 Mandrel\n\n22) Grosseteste: T G2 B2 Grosseteste\n\n23) Mandrel: Trade B1 Y1 Corn\n\n24) Grosseteste: S G3 Grosseteste\nB R1 Colore\nB R3 Grosseteste\nB R3 Grosseteste\n\n\nHomeworlds Online (SDG# 25539)\nVariants: "Unrated, Hard time"\nStarted: 2014.7.15, Ended: 2014.7.22\nParticipants: ts52 (S), TeeTeeTee (N), wil (E)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3\n\n2) wil: Homeworld G3 B1 B3 *\n\tTeeTeeTee: Shall we have another try at a multiplayer game, then?\n\twil: Heck...you think we'll complete one?? Maybe with you two! Now convention says we each create a different homeworld yes? I suppose I'll take fortress....\n\n3) ts52: Homeworld Y2 B3 G3\n\n4) TeeTeeTee: Build G1 Teeteetee\n\tts52: Wow, I can't remember the last time I played Homeworlds with more than one opponent. This should be fun.\n\n5) wil: Build B1 Wil\n\tTeeTeeTee: I've not played a game with more than two players before, with the exception of one that lasted for only a few days before two players dropped out. We've got a good chance of this one playing out, though... \n\twil: I've yet to complete one... I think binary is still the best...but these do lead to a binary game with lots of pieces once one is eliminated...I just haven't got that far with one yet...\n\n6) ts52: Build G1 Ts52\n\twil: I meant to take fortress and instead to goldilocks and just noticed... And you TTT sure rallied up the ladder!!\n\n7) TeeTeeTee: Trade G1 B1 Teeteetee\n\n8) wil: Build B2 Wil\n\n9) ts52: Build G1 Ts52\n\tTeeTeeTee: ...?\n\n10) TeeTeeTee: Build B2 Teeteetee\nCatastrophe Wil Blue\n\n11) ts52: Trade G1 B1 Ts52\n\tTeeTeeTee: Right. I think that we should try this, again.\n\n12) TeeTeeTee: Discover B1 Teeteetee G3 Duvel\n\tts52: d'oh! how did I miss that. I'm up for trying again...\n\tts52: Wil just wanted to make sure the 3 player game didn't finish. ;)\r\n\n\n13) ts52: Discover B1 Ts52 G1 Kermit\n\n14) TeeTeeTee: Build G1 Teeteetee\n\n15) ts52: Trade G1 Y1 Ts52\n\tTeeTeeTee: Okay - feel free to set up another 3-player challenge, then, wil (or ts52). Perhaps you two should agree to team up, this time?\n\twil: oops...what the hell did i do? did I overload myself??...I did I did...foolishness!\n\twil: oops...what the hell did i do? did I overload myself??...I did I did...foolishness!\n\tTeeTeeTee: Yeah... I have to say, you each made terrible blunders in Homeworlds games yesterday. (ts52: can you see what you should have done here, instead of sacrificing the r1? http://superdupergames.org/?page=archive_play&gid=25745&idx=60 )\r\n\r\nAlso, wil, did you ever follow through with your plan to discuss/comment on interesting Homeworlds games?\n\tts52: TTT: I missed the yellow you had one move away from my homeworld. So sacrificing the r1 was a complete waste. \n\n16) TeeTeeTee: Trade G1 R1 Teeteetee\n\tts52: TTT: Er, sorry, wasn't your yellow, but the rest is the same.\n\n17) ts52: Build G1 Ts52\n\n18) TeeTeeTee: Build G1 Teeteetee\n\n19) ts52: Trade G1 R1 Ts52\n\n20) TeeTeeTee: Build R1 Teeteetee\n\n21) ts52: Build G1 Ts52\n\n22) TeeTeeTee: Trade B2 Y2 Teeteetee\n\n23) ts52: Move Y1 Ts52 Kermit\n\n24) TeeTeeTee: Discover G1 Teeteetee B3 Chimay\n\n25) ts52: Build Y1 Kermit\n\n26) TeeTeeTee: Build Y1 Teeteetee\n\n27) ts52: Discover Y1 Kermit G2 Oscar\n\n28) TeeTeeTee: Move Y1 Teeteetee Chimay\n\n29) ts52: Move G1 Ts52 Kermit\n\n30) TeeTeeTee: Build G1 Chimay\n\n31) ts52: Build G2 Ts52\n\n32) TeeTeeTee: Move G1 Chimay Kermit\n\n33) ts52: Move B1 Kermit Oscar\n\n34) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G2 Kermit\nBuild G2 Chimay\nBuild G3 Chimay\nCatastrophe Kermit Green\n\n35) ts52: Build Y1 Oscar\n\twil: Yeah, we only got a few suggestions...but we are going to do it..\n\tTeeTeeTee: Great! I'd certainly be interested in seeing what you come up with. If you'd like, then I could offer some suggestions for games? Alternatively, if you've already chosen some games, then I could offer my own comments on them? Send me a private message if you're interested.\n\twil: send me suggestions... The suggestions I am asking for are ones from players that got whipped by something they didn't see coming...or perfect examples of setting up a doomsday machine or taking advantage of a bluebird, or cornering an economy.... teachable moments for those learning.\r\n\n\n36) TeeTeeTee: Move G1 Chimay Oscar\n\n37) ts52: Trade G2 R2 Ts52\n\n38) TeeTeeTee: Sacrifice G2 Chimay\nBuild G1 Oscar\nBuild G1 Oscar\nCatastrophe Oscar Green\n\n39) ts52: Discover R2 Ts52 Y1 Zoe\n\tts52: It's funny, I should've seen that coming, since you just did it to me a turn ago. Sigh.\n\n40) TeeTeeTee: Move Y2 Teeteetee Duvel\n\n41) ts52: Build G1 Ts52\n\tTeeTeeTee: Actually, I think I made an error, there: the stronger move for me would have been to build a single g1 at Oscar. If you took both g1s by sacrificing the r2, then I could move in the g2 to cause a catastrophe, and we'd have both lost a medium ship; otherwise, I'd have built a g1, and we'd have both kept our medium ships. Oh well - guess it makes the game more interesting!\n\n42) TeeTeeTee: Build Y1 Duvel\n\n43) ts52: Build G1 Ts52\n\n44) TeeTeeTee: Sacrifice G3 Chimay\nBuild Y1 Duvel\nBuild Y2 Chimay\nBuild Y3 Chimay\n\n45) ts52: Move G1 Ts52 Zoe\n\n46) TeeTeeTee: Trade Y2 R2 Duvel\n\n47) ts52: Discover R2 Zoe Y3 Bigbird\n\n48) TeeTeeTee: Move Y2 Chimay Teeteetee\n\n49) ts52: Trade G1 B1 Ts52\n\n50) TeeTeeTee: Trade Y3 G3 Chimay\n\n51) ts52: Discover G1 Zoe B3 Gonzo\n\n52) TeeTeeTee: Sacrifice G3 Chimay\nBuild Y1 Chimay\nBuild Y2 Chimay\nBuild Y3 Teeteetee\n\n53) ts52: Build G1 Gonzo\n\n54) TeeTeeTee: Trade Y3 G3 Teeteetee\n\n55) ts52: Discover B1 Ts52 G1 Kermit\n\n56) TeeTeeTee: Move Y2 Chimay Kermit\n\n57) ts52: Sacrifice G1 Gonzo\nBuild R1 Bigbird\n\n58) TeeTeeTee: Sacrifice Y2 Kermit\nMove R1 Teeteetee Bigbird\nMove R1 Teeteetee Bigbird\nCatastrophe Bigbird Red\n\n59) ts52: Build R1 Ts52\n\n60) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y2 Chimay\nBuild Y3 Teeteetee\nBuild Y3 Duvel\n\n61) ts52: Discover R1 Ts52 G1 Oscar\n\tts52: Yeah, being locked out of yellow is really hurting me. I don't expect this will last too much longer.\n\n62) TeeTeeTee: Move Y3 Duvel Oscar\n\n63) ts52: Build R1 Ts52\n\n64) TeeTeeTee: Build Y3 Oscar\n\tTeeTeeTee: Yeah, I didn't exactly leave you with many options, here...\n\n65) ts52: Discover R1 Ts52 G1 Robin\n\n66) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove Y3 Oscar Ts52\nMove Y3 Oscar Ts52\n\n67) ts52: Sacrifice R1 Robin\nAttack Y3N Ts52\n\tts52: And that will do it. Thanks for the game.\n\n68) TeeTeeTee: Sacrifice R2 Duvel\nAttack G3S Ts52\nAttack Y3S Ts52\n\n69) ts52: Build R1 Oscar\n\n70) TeeTeeTee: Trade Y3 R3 Ts52\n\tTeeTeeTee: Thanks for the game! Although it is a shame that both attempts at a three-player game fell through...\n\n71) ts52: Sacrifice G1 Gonzo\nBuild R1 Ts52\n\n72) TeeTeeTee: Sacrifice R3 Ts52\nAttack R1S Ts52\nAttack R1S Ts52\nPass\n\n\nHomeworlds Online (SDG# 26006)\nVariants: "Unrated, Hard time"\nStarted: 2014.7.17, Ended: 2014.7.21\nParticipants: TeeTeeTee (S), wil (N), ts52 (E)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n\tTeeTeeTee: ffs\n\twil: the record still stands...I still haven't been able to play one...\n\tts52: Sorry guys, went on vacation over the weekend, and didn't have enough time built up. Honest, we'll get one of these through to the end.\n\twil: no worries....it is funny how it works... the best game is binary anyway....\r\n\n\nHomeworlds Online (SDG# 25880)\nVariants: "Hard time"\nStarted: 2014.7.17, Ended: 2014.8.4\nParticipants: justin (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 R1 G3\n\twil: Howdy Justin, first time playing this here?\n\n2) justin: Homeworld G2 R3 B3\n\twil: Are you familiar with the game?\n\n3) wil: Build G1 Wil\n\tjustin: I used to play it about 3 years ago on here and had then I had a kid, so lost most of my free time. Almost certainly rusty, but I'll pick it up again soon enough. \n\twil: Cool! A little time absorption capsule....I know what they are like, sucking up all the free time known to man. My twins just turned 21, they are in the middle of the next joy...college tuitions...\n\n4) justin: Build B1 Justin\n\n5) wil: Trade G1 R1 Wil\n\n6) justin: Trade B1 Y1 Justin\n\n7) wil: Build G1 Wil\n\n8) justin: Build Y1 Justin\n\n9) wil: Trade G1 Y1 Wil\n\n10) justin: Discover Y1 Justin B1 Wyoming\n\n11) wil: Build Y2 Wil\n\n12) justin: Build Y2 Justin\n\n13) wil: Trade Y1 B1 Wil\n\twil: I so want these to be real time...\n\n14) justin: Trade Y2 G2 Justin\n\n15) wil: Build R1 Wil\n\tjustin: Yeah. I'm going to a game store today at lunch to pick up some pyramids to try to get some games going at work. \n\twil: I have one set up that me and my housemate play all the time.... we make moves whenever...you walk by and see it and contmemplate\n\n16) justin: Move G2 Justin Wyoming\n\n17) wil: Discover R1 Wil G2 G2\n\n18) justin: Build G1 Wyoming\n\n19) wil: Sacrifice G3 Wil\nBuild R2 Wil\nBuild R2 G2\nBuild R2 G2\n\n20) justin: Discover G1 Wyoming Y2 Ohio\n\n21) wil: Sacrifice Y2 Wil\nMove R2 G2 Wyoming\nDiscover R1 G2 G1 G1\n\n22) justin: Sacrifice Y1 Wyoming\nDiscover G2 Wyoming B2 Maine\n\twil: I enjoy trying weird things to see how they work out...\n\twil: and I do get myself in much trouble with these weird gambits....but gotta see how they play out\r\n\n\tjustin: Yeah, the sacrifice to block out red is interesting. \n\n23) wil: Build R3 G2\n\n24) justin: Build Y1 Justin\n\n25) wil: Build R3 G1\n\n26) justin: Trade Y1 G1 Justin\n\n27) wil: Trade B1 Y1 Wil\n\n28) justin: Build G3 Ohio\n\n29) wil: Move R2 Wil Maine\n\twil: yeah...that didn't work out\r\n\n\n30) justin: Sacrifice Y1 Justin\nMove G2 Maine Wil\n\n31) wil: Sacrifice Y1 Wil\nMove R3 G2 Wil\n\tjustin: It's a pain right now, though!\n\twil: O to the M to the G you let me outta that one!! My silly ruse worked? What have you up your sleeve it was game over I thought??\n\n32) justin: Build G3 Wil\n\n33) wil: Sacrifice R2 Maine\nAttack G3 Wil\nAttack G2 Wil\n\tjustin: Let's see. You've got a real stranglehold on attacks, so I'm stuck trying to make a catastrophe out of nothing!\n\twil: If your big green moved in...no catastrophe, you would have used my red homeworld star to attack me...i was one step behind....and thought it was over..\r\n\n\n\twil: My cornering the red economy failed...I didn't think it all the way out (I'm afraid I never do) I've got to start thinking ahead...my usual only chance is taking advantage of others oopses\n\twil: awe....where did you go?\n\nHomeworlds Online (SDG# 26018)\nVariants: "Hard time"\nStarted: 2014.7.24, Ended: 2014.8.5\nParticipants: fogus (S), justin (N)\nWinner: fogus\n\n1) justin: Homeworld R1 G3 B3\n\n2) fogus: Homeworld B1 Y2 G3\n\n3) justin: Build B1 Justin\n\n4) fogus: Build G1 Fogus\n\n5) justin: Trade B3 G3 Justin\n\n6) fogus: Build G1 Fogus\n\n7) justin: Build B1 Justin\n\n8) fogus: Discover G1 Fogus Y3 Sacsac\n\n9) justin: Trade B1 Y1 Justin\n\n10) fogus: Trade G1 B1 Fogus\n\n11) justin: Discover B1 Justin G2 Sourdough\n\n12) fogus: Build B2 Fogus\n\n13) justin: Build B2 Sourdough\n\n14) fogus: Trade B1 Y1 Fogus\n\n15) justin: Build G1 Justin\n\n16) fogus: Trade B2 Y2 Fogus\n\n17) justin: Trade B2 Y2 Sourdough\n\n18) fogus: Sacrifice Y2 Fogus\nDiscover G1 Sacsac R2 Temp\nMove G1 Temp Justin\nCatastrophe Justin G\n\n19) justin: Discover Y2 Sourdough G3 Rye\n\n20) fogus: Build G1 Fogus\n\n21) justin: Build B1 Sourdough\n\n22) fogus: Build G1 Fogus\n\n\nHomeworlds Online (SDG# 25983)\nStarted: 2014.7.24, Ended: 2014.8.4\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\twil: I was down to two games in play....I need to play more!!!\r\n\n\tts52: Excellent!\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 Y1 Wil\n\n6) ts52: Build G1 Ts52\n\n7) wil: Build Y1 Wil\n\n8) ts52: Discover G1 Ts52 B3 Grover\n\n9) wil: Build Y2 Wil\n\n10) ts52: Build G1 Ts52\n\n11) wil: B G2 Wil\n\n12) ts52: Build G2 Grover\n\n13) wil: Discover G2 Wil G2 G2\n\n14) ts52: Trade G1 R1 Ts52\n\n15) wil: Trade Y2 R2 Wil\n\n16) ts52: Trade G2 Y2 Grover\n\n17) wil: Build Y2 Wil\n\n18) ts52: Discover G1 Ts52 B3 Gonzo\n\n19) wil: Move R2 Wil G2\n\n20) ts52: Build G1 Ts52\n\n21) wil: Build G2 Wil\n\n22) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild R1 Ts52\n\twil: nice move...had no choice....\n\n23) wil: Discover Y1 Wil B2 B2\n\tts52: Thanks.\n\n24) ts52: Move R1 Ts52 Gonzo\n\n25) wil: Move Y1 Wil G2\n\n26) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Ts52\nBuild R2 Gonzo\n\n27) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 G2\nBuild Y3 B2\n\n28) ts52: Build Y3 Grover\n\n29) wil: Trade Y3 R3 B2\n\n30) ts52: Trade G3 R3 Grover\n\n31) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 Wil\nBuild Y3 B2\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild R2 Grover\n\n33) wil: Discover R2 G2 B3 B3\n\n34) ts52: Move R3 Grover G2\n\twil: gotta look funny on a physical board... a wall of B3s...\r\n\n\n35) wil: Sacrifice Y2 G2\nMove Y1 G2 B3\nMove G2 G2 B3\n\tts52: I really should start setting these up with real pieces again.\n\twil: I think there is incredible value in that...when an app or program is created that clearly reflects the preferred fly on the right and orderly starscape...it'll make it much easier...\n\n36) ts52: Move Y2 Grover G2\n\n37) wil: Build Y2 B3\n\n38) ts52: Move R3 G2 B3\n\twil: I created a delicious appateezer for a hungry red monster that just missed a meal.\n\tts52: It's a trap! (Wha?)\n\n39) wil: Sacrifice Y2 B3\nMove Y1 B3 Ts52\nMove G2 B3 Ts52\n\n40) ts52: Attack G2 Ts52\n\twil: Well that was the plan...now we'll see how it plays out... \n\tts52: See, I knew it was a trap...\n\n41) wil: Sacrifice R3 B2\nAttack R1 Ts52\nAttack R1 Ts52\nAttack G1 Ts52\n\n42) ts52: Build R3 Grover\n\n43) wil: Build Y2 Ts52\n\n44) ts52: Sacrifice R2 Gonzo\nAttack Y2 Ts52\nAttack R2 B3\n\n45) wil: Sacrifice G2 Wil\nBuild G2 Ts52\nBuild R2 Ts52\nCatastrophe Ts52 G\n\n46) ts52: Sacrifice Y2 Ts52\nMove G3 Gonzo Ts52\nMove R1 Gonzo Ts52\nCatastrophe Ts52 Red\n\twil: the system would not let me end the game... s y3 m y1 in and catastrophe yellow leaves me g2 to move in from wil direct one step to ts52 game over...but the system doesn't allow any moves past the catastrophe..doesn't allow for two catastrophes....dang it.\n\tts52: Odd. Nice play, I hadn't anticipated the double catastrophe. That should be fixed.\r\n\n\n47) wil: Trade Y2 G2 Wil\n\twil: dang system... now I am behind...\n\n48) ts52: Move R3 Grover B2\n\n49) wil: Sacrifice Y1 B2\nMove Y3 B2 Gonzo\n\tts52: Yeah, I'm curious to see if I can fight back from here. But you totally won this. I'll resign before the end, regardless.\n\n50) ts52: Move Y3 Grover B2\n\n51) wil: Sacrifice G2 Wil\nBuild Y1 Ts52\nBuild Y2 Ts52\nCatastrophe Ts52 Y\n\n52) ts52: Sacrifice Y2 G2\nMove Y3 B2 Wil\nMove R3 B2 Wil\n\n53) wil: Sacrifice G3 Wil\nBuild Y1 Wil\nBuild Y1 Wil\nBuild Y1 Wil\n\tts52: I think that's it. You can take one of those, but I've still got an r3 to retake them all.\n\twil: Sorry, we don't have dinner enough for all of you. Yeah, I saw it aftermy move...not before...\n\n\tts52: Nice. Thanks for the game. We should get them to fix that bug.\n\twil: All we left you with is that hungry red ship and a world infected with yellow fever, an epidemic soon to be an issue...\n\twil: hey...you resigned...not fair...\n\tts52: Interesting, just found this in the Homeworlds rules:\r\nOverpopulation and Catastrophes \r\nIf a system contains four or more pieces of the same color (including system markers and ships of any ownership), that system contains an overpopulation of that color. At the end of your turn, you may trigger catastrophes for any overpopulations that exist on the board, regardless of where they are or who owns the ships in them. To trigger a catastrophe, remove all of the pieces of that color from the system (including system markers), and return the pieces to the global stash. If you remove a system marker from a binary system, the system becomes a single-star system. (This may cause the system to become connected to more systems.) If you remove the system marker from a single-star system, the system itself is destroyed, and all of the ships in it are returned to the global stash. Triggering a catastrophe for any given overpopulation is always optional, but if you do choose to trigger it, you must remove all of the pieces causing the overpopulation.\n\tts52: Note it specifically mentions catastrophes happening 'at the end of your turn'.\n\tts52: I resigned because I thought you should've been able to win with your catastrophes, but apparently that's not the case. Oh well. At least it's not a bug.\n\nHomeworlds Online (SDG# 26003)\nVariants: "Hard time"\nStarted: 2014.7.24, Ended: 2014.7.27\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 26038)\nVariants: "Hard time"\nStarted: 2014.7.24, Ended: 2014.8.7\nParticipants: wil (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3\n\n2) wil: Homeworld B3 Y1 G3\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) wil: Build G1 Wil\n\n5) TeeTeeTee: Trade G1 Y1 Teeteetee\n\twil: we been saying the rules should be a binary homeworld and then a large and a small of the same color to start....\r\n\n\n6) wil: Trade G1 Y1 Wil\n\tTeeTeeTee: Might as well. I guess it's possible to start a game without a green star or ship, and trade for one on the first turn, but there isn't really any benefit from that at all.\n\n7) TeeTeeTee: Build Y2 Teeteetee\n\n8) wil: Build Y2 Wil\n\n9) TeeTeeTee: Discover Y1 Teeteetee G3 Hammerfall\n\twil: The only issue I see is if someone makes an extreme counter play to your opening...so extreme that you wish to change your ship prior to building your first small ship... but yeah the typical opening requires G n B, Y n R are the options....and both have their reasoning...\n\n10) wil: D Y1 Wil G2 G2\n\n11) TeeTeeTee: Build Y3 Hammerfall\n\n12) wil: Build Y3 G2\n\tTeeTeeTee: Just so you know, I'm going on holiday for the rest of the week - I'll be back before I time out, though.\n\twil: poifect....I won't be badmouthin you then...hee hee tee tee\n\n13) TeeTeeTee: Discover Y3 Hammerfall B2 Avantasia\n\n14) wil: Discover Y1 G2 Y3 Y3\n\n15) TeeTeeTee: Trade Y2 G2 Teeteetee\n\n16) wil: Trade Y2 R2 Wil\n\n17) TeeTeeTee: Sacrifice G2 Teeteetee\nBuild Y2 Hammerfall\nBuild Y2 Avantasia\n\n18) wil: Build G1 Wil\n\tTeeTeeTee: Sorry! I know that an undo after a few minutes is a little cheeky, but, erm, I'd rather be slightly rude than lose the top ladder position on a blunder like that.\n\n19) TeeTeeTee: Trade Y3 R3 Avantasia\n\tTeeTeeTee: ... on second thought, you don't have a winning move on this turn, after all. Sorry to mess you around :p\n\tTeeTeeTee: (I think)\n\twil: whoa now...two things...first and formost I need a good blunder on your part to win...and second...in the physical game we have a move token...this thing misses setting the stage to review prior to deciding it is your final answer....so one undo is nothing...it should be unlimited..\n\n20) wil: Build Y3 G2\n\tTeeTeeTee: Righto. In my mind, when I submit a turn, that's the online equivalent of passing the move token across, so I should have just let it go. \r\n\r\nI realised after submitting my last move that you could have sacrificed your y3 to move your g3 to my homeworld. From that position, there would have been nothing I could do to stop you from conquering my homeworld by sacrificing the r2 - but you'd have had no ships at your world, either. Guess you're after a win, and not a draw, then?\n\n21) TeeTeeTee: Sacrifice Y2 Avantasia\nMove Y1 Hammerfall G2\nMove Y2 Hammerfall G2\nCatastrophe G2 Yellow\n\twil: a I am never after a draw... and I can't abandon a home world to win or draw...that is a loss before the draw or win happens... but b... tis a flaw in the system, the game is complex enough that you need to see it played out...and then decide if it is what you want to do.... with the configuration here...the undo is required..imo\n\n22) wil: Trade G1 Y1 Wil\n\n23) TeeTeeTee: Build G1 Teeteetee\n\n24) wil: Build Y2 Wil\n\twil: I dint think you'd pull that trigger!\n\n25) TeeTeeTee: Trade G1 R1 Teeteetee\n\n26) wil: Discover Y2 Wil G2 G2\n\n27) TeeTeeTee: Trade R3 Y3 Avantasia\n\tTeeTeeTee: Yeah, I kind of had to, as I didn't want to be a large ship down. There's the blunder you were waiting on - I didn't expect you to build a y3 there because I could go a large ship up if you did. I'm now a large ship up, but definitely in a weaker position than you. Let's see if I can come back from this!\r\n\r\nBy the way, did you get my email, and find the time to have a look at it?\n\n28) wil: Sacrifice G3 Wil\nBuild Y2 Y3\nBuild Y3 Wil\nBuild R1 Wil\n\twil: hmmm email must've got in wrong box...will check... and I need you to make bigger blunders.... but look G2 is back and building yellows is a thing again!!\n\n29) TeeTeeTee: Move Y3 Avantasia Wil\nCatastrophe Wil Yellow\n\n30) wil: Build Y1 G2\n\n31) TeeTeeTee: Build R1 Teeteetee\n\n32) wil: Trade R2 G2 Wil\n\twil: yeah, some how I was blinded to see that comin...face palm... I'm so outta my league.\r\n\n\n33) TeeTeeTee: Discover R1 Teeteetee Y3 Hevydevy\n\n34) wil: Build G1 Wil\n\n35) TeeTeeTee: Build R2 Teeteetee\n\n36) wil: Build R2 Wil\n\n37) TeeTeeTee: Trade G3 B3 Teeteetee\n\n38) wil: Trade G1 Y1 Wil\n\n39) TeeTeeTee: Discover R1 Teeteetee Y3 Apocalyptica\n\n40) wil: Move R1 Wil Teeteetee\n\n41) TeeTeeTee: Attack R1 Teeteetee\n\twil: I must admit... I have no clue what is going on.\n\n42) wil: Build R2 Wil\n\twil: oh...I see\n\n43) TeeTeeTee: Trade R2 G2 Teeteetee\n\twil: I saw before the move...but don't yet really know who has the step ahead...probably you.\n\n44) wil: Move R2 Wil Teeteetee\n\n45) TeeTeeTee: Sacrifice R1 Teeteetee\nAttack R2 Teeteetee\n\tTeeTeeTee: Until that last move, you were definitely ahead.\n\tTeeTeeTee: ... perhaps you still are.\n\n46) wil: Move Y1 Y3 G2\n\twil: hmmm... I thought you had me by one step...\r\n\n\twil: and still think you have me...\n\n47) TeeTeeTee: Move B3 Teeteetee Wil\n\n\twil: Well that was a strange one, nice game...thanx... \n\tTeeTeeTee: Thanks for the game. Perhaps I was being too negative about my position, but I did feel like I was in trouble for most of that game. I reckon that "10. Trade y3 r3 Avantasia" was a major error on my part: as I said, I assumed you wouldn't build a large ship as I could destroy them both - but building that ship anyway meant I had the choice of being a large ship down or losing all my yellow ships.\r\n\r\nEven after you made the mistake of letting me blow up your large ship and half your homeworld, I still didn't feel like I was winning: you had a total monopoly on yellows, far more ships than I did, and I couldn't just move my large ship to your homeworld without losing, then. If, at that point, I'd played carefully and just tried to acquire more ships, then you would have soon built large ships, I would still have had no yellow ships, and my last chance to attack would be gone. \r\n\r\nMy only real chance of winning was to get an attack together before you acquired a large ship - and I was fortunate that it worked. I get the feeling that you could have acquired a large ship at some point somehow, though. Perhaps, on your last move, instead of moving that y1 to g2, you could have sacrificed the y1 at the star y3, and moved the y2 there to TeeTeeTee? On the next go, you could have sacrificed the g2 to build a y3 at wil (and a y1 at g2).\r\n\r\nStill, I think you underestimate yourself at this game - and I think I underestimated you too! You played much better than me for the first half of the game. By the way, do you want me to resend you the email I wrote via PM?\n\twil: The game is a blast. Your circumventing my control of the yellows was awesome...we were neck and neck, I thought I had it for a minute, until you got my homeworld, and then I thought I had a chance with my red game to get to that big ship...you cut me off masterfully. Yes please send the email via pm...I can't find it.\r\nthx again for the lesson\n\nHomeworlds Online (SDG# 26004)\nVariants: "Hard time"\nStarted: 2014.8.4, Ended: 2014.8.7\nParticipants: a_magical_me (S), Marmalade (N)\nWinner: a_magical_me\n\n\nHomeworlds Online (SDG# 26068)\nStarted: 2014.8.4, Ended: 2015.4.17\nParticipants: ts52 (S), a_magical_me (N)\nWinner: ts52\n\n1) a_magical_me: Homeworld Y3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) a_magical_me: Build G1 A_magical_me\n\tts52: Have a good game!\n\ta_magical_me: Thanks, you too\n\n4) ts52: Build G1 Ts52\n\n5) a_magical_me: Discover G1 A_magical_me B2 Pisces\n\n6) ts52: Discover G1 Ts52 B3 Grover\n\n7) a_magical_me: Build G1 Pisces\n\n8) ts52: Build G2 Ts52\n\n9) a_magical_me: Build G2 A_magical_me\n\n10) ts52: Trade G2 Y2 Ts52\n\n11) a_magical_me: Trade G1 Y1 Pisces\n\n12) ts52: Move Y2 Ts52 Grover\n\n13) a_magical_me: Discover G1 Pisces Y3 Orion\n\n14) ts52: Build G1 Ts52\n\n15) a_magical_me: Discover Y1 Pisces G3 Virgo\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n17) a_magical_me: Move G1 Orion Ts52\n\n18) ts52: Trade G1 R1 Ts52\n\tts52: Sorry, _bad_ typo there\n\n19) a_magical_me: Move G1 Ts52 Grover\nCatastrophe Grover Green\n\n20) ts52: Build G1 Ts52\n\n21) a_magical_me: Build G1 A_magical_me\n\ta_magical_me: Nice try\n\n22) ts52: Move G1 Ts52 Grover\n\n23) a_magical_me: Discover G2 A_magical_me B2 Pyxis\n\n24) ts52: Build R1 Ts52\n\n25) a_magical_me: Trade G1 B1 A_magical_me\n\n26) ts52: Build G1 Ts52\n\n27) a_magical_me: Build B1 A_magical_me\n\n28) ts52: Move R1 Ts52 Virgo\n\n29) a_magical_me: Move Y1 Virgo Pyxis\n\n30) ts52: Build R1 Ts52\n\n31) a_magical_me: Move B1 A_magical_me Pyxis\n\n32) ts52: Build R2 Ts52\n\n33) a_magical_me: Build B2 Pyxis\n\n34) ts52: Move R2 Ts52 Grover\n\n35) a_magical_me: Trade B2 R2 Pyxis\n\n36) ts52: Discover R1 Ts52 Y3 Bigbird\n\n37) a_magical_me: Build B2 Pyxis\n\n38) ts52: Sacrifice G3 Ts52\nBuild R2 Bigbird\nBuild R3 Ts52\nBuild R3 Grover\n\n39) a_magical_me: Build R3 Pyxis\n\n40) ts52: Sacrifice Y2 Grover\nMove R1 Virgo Pyxis\nMove R1 Bigbird Pyxis\nCatastrophe Pyxis Red\n\n41) a_magical_me: Build B3 A_magical_me\n\n42) ts52: Move R2 Bigbird Pyxis\n\n43) a_magical_me: Sacrifice B2 Pyxis\nTrade B1 R1 A_magical_me\nTrade B3 R3 A_magical_me\n\n44) ts52: Sacrifice R2 Grover\nAttack G2 Pyxis\nAttack Y1 Pyxis\n\n45) a_magical_me: Move R3 A_magical_me Pyxis\n\n46) ts52: Sacrifice G2 Pyxis\nBuild R1 Pyxis\nBuild R2 Pyxis\nCatastrophe Pyxis Red\n\n47) a_magical_me: Build R1 A_magical_me\n\n48) ts52: Build R2 Grover\n\ta_magical_me: Nice.\n\n49) a_magical_me: Build R2 A_magical_me\n\n50) ts52: Trade R2 Y2 Grover\n\n51) a_magical_me: Sacrifice R1 A_magical_me\nAttack Y1S Pyxis\n\n52) ts52: Build R1 Grover\n\n53) a_magical_me: Move R2 A_magical_me Pyxis\n\n54) ts52: Move R3 Grover Pyxis\n\n55) a_magical_me: Sacrifice G3 A_magical_me\nBuild R2 Pyxis\nBuild R2 Pyxis\nBuild R3 A_magical_me\nCatastrophe Pyxis Red\n\n56) ts52: Build R2 Grover\n\n57) a_magical_me: Trade B1 G1 Pyxis\n\n58) ts52: Move R2 Grover Pyxis\n\n59) a_magical_me: Trade R3 G3 A_magical_me\n\n60) ts52: Attack Y1 Pyxis\n\n61) a_magical_me: Build R2 A_magical_me\n\n62) ts52: Attack G1 Pyxis\n\n63) a_magical_me: Discover R2 A_magical_me Y2 Andromeda\n\n64) ts52: Build G2 Grover\n\n65) a_magical_me: Build G2 A_magical_me\n\n66) ts52: Sacrifice G2 Grover\nBuild R2 Pyxis\nBuild R3 Grover\n\n67) a_magical_me: Sacrifice G2 A_magical_me\nBuild R3 Andromeda\nBuild G2 A_magical_me\n\n68) ts52: Build G2 Grover\n\n69) a_magical_me: Discover G2 A_magical_me B2 Hydra\n\n70) ts52: Trade R1 B1 Ts52\n\n71) a_magical_me: Trade R1 B1 A_magical_me\n\n72) ts52: Discover B1 Ts52 G3 Kermit\n\n73) a_magical_me: Move R3 Andromeda Kermit\n\n74) ts52: Trade R3 B3 Grover\n\n75) a_magical_me: Move B1 A_magical_me Andromeda\n\n76) ts52: Move B3 Grover Andromeda\n\n77) a_magical_me: Sacrifice G2 Hydra\nBuild B2 Andromeda\nBuild B3 Andromeda\nCatastrophe Andromeda Blue\n\n78) ts52: Build G2 Ts52\n\n79) a_magical_me: Attack B1S Kermit\n\n80) ts52: Discover G2 Ts52 G3 Oscar\n\n81) a_magical_me: Trade R3 Y3 Kermit\n\ta_magical_me: Kaboom\n\n82) ts52: Build G2 Pyxis\n\n83) a_magical_me: Build B1 Kermit\n\n84) ts52: Sacrifice G2 Oscar\nBuild G2 Pyxis\nBuild G3 Grover\n\n85) a_magical_me: Move R2 Andromeda Kermit\n\n86) ts52: Trade R2 B2 Pyxis\n\n87) a_magical_me: Move B1 Kermit Ts52\n\n88) ts52: Attack B1 Ts52\n\n89) a_magical_me: Build B3 Kermit\n\n90) ts52: Discover B1 Ts52 Y3 Bigbird\n\n91) a_magical_me: Move B3 Kermit Pyxis\n\ta_magical_me: Sorry about the wait. Been busy.\n\tts52: No worries.\n\n92) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild B3 Bigbird\nBuild Y1 Grover\n\n93) a_magical_me: Sacrifice R2 Kermit\nAttack R2S Pyxis\nAttack Y1S Pyxis\n\n94) ts52: Sacrifice Y2 Grover\nMove G2 Pyxis Bigbird\nMove G2 Pyxis Bigbird\n\n95) a_magical_me: Trade B3 R3 Pyxis\n\n96) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild B3 Bigbird\nBuild Y2 Grover\n\n97) a_magical_me: Attack B2S Pyxis\n\n98) ts52: Discover B3 Bigbird R2 Elmo\n\n99) a_magical_me: Sacrifice B2 Pyxis\nTrade G3 R3 A_magical_me\nTrade R3 G3 Pyxis\n\n100) ts52: Trade B3 R3 Bigbird\n\n101) a_magical_me: Build B2 Kermit\n\n102) ts52: Build B3 Bigbird\n\n103) a_magical_me: Attack G1S Pyxis\n\n104) ts52: Move G2 Grover Elmo\n\n105) a_magical_me: Sacrifice G3 Pyxis\nBuild G3 Pyxis\nBuild Y2 Pyxis\nBuild Y2 Kermit\n\n106) ts52: S Y2 Grover\nM G2 Bigbird Pyxis\nM G2 Bigbird Pyxis\nC Pyxis Green\n\n107) a_magical_me: Discover Y2 Pyxis G3 Cancer\n\n108) ts52: Build Y2 Grover\n\tts52: sorry for the delay\n\n109) a_magical_me: Move R2 Pyxis Kermit\n\n110) ts52: Move Y2 Grover Elmo\n\n111) a_magical_me: Build R1 Kermit\n\n112) ts52: Build G1 Elmo\n\n\ta_magical_me: Hey, sorry for not finishing the game. I just want to say thanks for the game and congrats. I think it was pretty clear that you were the winner.\n\tts52: No problem. Thanks for the game.\n\nHomeworlds Online (SDG# 26084)\nVariants: "Hard time"\nStarted: 2014.8.8, Ended: 2014.9.6\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\n2) SilentTitan: Homeworld B3 G2 Y3\n\n3) wil: Build G1 Wil\n\twil: I'm ready for a new lesson...\n\n4) SilentTitan: Build Y1 Silenttitan\n\n5) wil: B G1 Wil\n\n6) SilentTitan: Trade Y1 G1 Silenttitan\n\n7) wil: Trade G1 B1 Wil\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) wil: Build B1 Wil\n\n10) SilentTitan: Discover G1 Silenttitan Y1 Sol\n\n11) wil: Trade G1 Y1 Wil\n\n12) SilentTitan: Build G1 Sol\n\n13) wil: Discover B1 Wil G3 G3\n\n14) SilentTitan: Build G2 Silenttitan\n\n15) wil: Build B2 G3\n\n16) SilentTitan: Trade G2 B2 Silenttitan\n\n17) wil: Trade B2 Y2 G3\n\n18) SilentTitan: Build G2 Silenttitan\n\n19) wil: Build G2 Wil\n\n\twil: dang it!\n\nHomeworlds Online (SDG# 26014)\nVariants: "Unrated, Hard time"\nStarted: 2014.8.12, Ended: 2014.9.10\nParticipants: wil (S), TeeTeeTee (N), ts52 (E)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3\n\tTeeTeeTee: Let's give this another try.\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) wil: Homeworld B3 R2 G3\n\n4) TeeTeeTee: Pass\n\twil: No problemo! But hey there top of the ladder, are you unaware of the star captain's code?\n\n5) ts52: Build G1 Ts52\n\tTeeTeeTee: I am unaware of the `star captain's code' ... but I can make a guess of what you're getting at.\n\n6) wil: Build G1 Wil\n\n7) TeeTeeTee: Build G1 Teeteetee\n\n8) ts52: Discover G1 Ts52 B2 Grover\n\twil: lol, and your guess is?\r\n\n\twil: Oh wow...I wondered what happenned! You passed, you didn't have to do that...but quite honorable of you fearless leader! And yes you just gave us junior officers a chance there..I guess maybe it is unwritten that the best player would not take banker... too funny tho... your are too honorable!\n\n9) wil: Trade G1 Y1 Wil\n\n10) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n11) ts52: Build G1 Grover\n\n12) wil: Build G1 Wil\n\n13) TeeTeeTee: Discover Y1 Teeteetee G3 B1\n\n14) ts52: Trade G1 Y1 Grover\n\twil: Look forward to this being my first multi player game to finish...\r\n\n\n15) wil: Build Y2 Wil\n\n16) TeeTeeTee: Build Y2 B1\n\twil: I love it....calling a g3 a b1....too funny..\n\n17) ts52: Build G1 Ts52\n\n18) wil: Discover Y2 Wil R1 R1\n\n19) TeeTeeTee: Discover Y1 B1 G2 Bigbird\n\n20) ts52: Trade G1 R1 Ts52\n\n21) wil: Trade G1 R1 Wil\n\n22) TeeTeeTee: Build G1 Teeteetee\n\n23) ts52: Build G1 Ts52\n\n24) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 Wil\nBuild Y3 R1\n\n25) TeeTeeTee: Trade G1 R1 Teeteetee\n\n26) ts52: Build Y3 Grover\n\n27) wil: Trade Y3 G3 Wil\n\n28) TeeTeeTee: Build Y3 Bigbird\n\n29) ts52: Trade Y3 R3 Grover\n\n30) wil: Trade Y1 B1 Wil\n\n31) TeeTeeTee: Build R2 Teeteetee\n\n32) ts52: Build R2 Grover\n\twil: It is funny, when I see that a move has been made in an HW game.... I never expect that it is this one that needs attention... It is a completely different game though... Cutthroat is right... somewhere along the line, you gotta cut someone out...without making yourself vulnerable.\n\n33) wil: Discover Y2 R1 B2 B2\n\tTeeTeeTee: Yeah, this game can be quite unforgiving at times. A few turns back, I was very tempted to build a y3 instead of trading for an r1, thinking that I could get away without a red ship for another turn. I noticed just in time, though, that I would have been knocked out immediately if I'd done that.\r\n\r\nThere's another element in the three-player game that isn't there in the two player-game: if it's in the players' interests (or at least they think it is), then they can work together to knock someone else out, as they have two attacking turns to the defender's one turn. Everyone has to guess: would they? (And wil: is it worth an r2 to find out? :P)\n\n34) TeeTeeTee: Move R1 Teeteetee B1\n\twil: exactamentary..... and funny enough this is the fastest moving game I am currently in!\n\n35) ts52: Discover R3 Grover Y3 Zoe\n\n36) wil: Build G1 Wil\n\tTeeTeeTee: ts52: wil is going to sacrifice his g3 to build three yellow ships on the next turn. If you want to stop him having more large ships than you (and me), then you need to block off a large yellow, either by trading your r3 for a y3, or by discovering a y3 star.\n\twil: Captain, received a transmission on SETI, evidently someone thinks we would risk losing our current fuel reserves by reducing our ability to build and simultaneously increasing our refining capacity.... our scientists looked at this and determined it wasn't worth the risk of a potential well site catastrophe which would destroy all reserves and exploration in one or more systems... first contact and what are they thinking?\n\n37) TeeTeeTee: Discover Y3 Bigbird B3 G3\n\tts52: Ok Tee, you convinced me. Here's hoping I don't regret it.\n\tTeeTeeTee: Good call. If I was wil, I'd have definitely sacrificed the g3.\n\n38) ts52: Sacrifice G3 Ts52\nBuild R2 Zoe\nBuild R3 Ts52\nBuild R3 Grover\n\twil: cutthroat already...\n\n39) wil: D Y3 R1 R3 R3\n\n40) TeeTeeTee: Build R1 Teeteetee\n\n41) ts52: Discover R2 Grover Y3 Bert\n\n42) wil: Sacrifice G1 Wil\nBuild Y1 B2\n\n43) TeeTeeTee: Build G1 Teeteetee\n\n44) ts52: Trade R1 B1 Ts52\n\n45) wil: B B1 Wil\n\n46) TeeTeeTee: Trade R2 B2 Teeteetee\n\n47) ts52: Move B1 Ts52 Grover\n\n48) wil: Trade Y1 G1 B2\n\n49) TeeTeeTee: Move B2 Teeteetee B1\n\twil: I need to be in more games!! my housemate is gone, no games going on at home to move...only in 3 others online...and this is the fastest! challenge me!!\n\n50) ts52: Build G2 Grover\n\n51) wil: Sacrifice B1 Wil\nTrade Y3 G3 R3\n\tTeeTeeTee: I very rarely play more than one Homeworlds game at a time...\n\twil: As fast as they move, I used to like to keep 6-8 going....that way there was a move or two to make every day...\n\n52) TeeTeeTee: Build B1 B1\n\n53) ts52: Move G2 Grover Zoe\n\n54) wil: B G2 Wil\n\n55) TeeTeeTee: Move B2 B1 Bigbird\n\n56) ts52: Move B1 Grover Zoe\n\n57) wil: S G3 Wil\nBuild G2 B2\nBuild G3 Wil\nBuild Y1 Wil\n\n58) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild Y3 Bigbird\nBuild R1 Teeteetee\n\n59) wil: Sacrifice Y2 Wil\nMove G3 R3 Grover\nMove G2 B2 Bert\n\n60) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G3 Teeteetee\nBuild R2 B1\nBuild R3 Teeteetee\n\tTeeTeeTee: If I were you, wil, I would have sacrificed the g2 to build a y3 on your last move.\n\twil: And that is why you are top dog!! Thanx I missed that. I don't take enough time on moves.\n\twil: I was concentrating on slyly causing the eliminating of all the small ships and securing my fortress...\n\n61) wil: Sacrifice R1 Wil\nAttack R3E Grover\n\tTeeTeeTee: Damnit, ts52- just when things were about to get interesting...\n\tts52: oh crap. sorry guys... things got hectic here and I lost track\n\tts52: can we try again without hard time?\n\tts52: looks like you can only specify one person to challenge. wil, if you join up, we can try again.\n\tTeeTeeTee: I'm sorry, but I won't play without hard time... perhaps we can try another three-player game later on, when things are less hectic.\n\tts52: Ok, that's fair.\n\twil: Dang it! My record holds... can't complete a multi person game.\n\n62) TeeTeeTee: Discover B2 Bigbird R1 Ts52e\n\n63) wil: Sacrifice Y1 Wil\nMove G3 Grover Ts52e\n\n64) TeeTeeTee: Sacrifice Y3 Bigbird\nMove B1 B1 Ts52e\nMove B1 Ts52e Wil\nMove B2 Ts52e Wil\nCatastrophe Wil Blue\n\n65) wil: Attack Y1E Grover\n\n66) TeeTeeTee: Move R1 Teeteetee G3\n\twil: I knew I shouldn't have sacked that single pip... my fortress was strong....\n\n\twil: well that is that.... I think I still way prefer the binary game...\n\tTeeTeeTee: Yes, I prefer binary too, but I did enjoy this game: Ternary Homeworlds plays very differently to binary. There's a much greater degree of guessing each players' intentions and working out whether it's in players' interests to collude or not. There were instances in that game when two players could have caused serious damage to a third, if they could work together - but there was no guarantee that the player you were working with would do what you expected... \r\n\r\nAlso, nobody wanted to start attacking because the third player would continue to acquire ships while the other two were sparring. (For my part, I noticed that by sacrificing and discovering a y1 world, I could be in a position to attack your homeworld - but doing this would quite likely have put ts52 at an advantage. I couldn't see any obvious way to attack ts52's homeworld.)\r\n\r\nIt was surprising just how quickly the game changed once ts52 timed out, though. Once ts52 was out, there were lots of free large ships to claim, and no reason to not attack... \n\twil: There is another method where you can only attack to the left...keeps folks from ganging up...hmmm I wonder if it also allows one to use the stars to the right...interesting...\n\nHomeworlds Online (SDG# 26016)\nVariants: "Hard time"\nStarted: 2014.8.12, Ended: 2014.8.13\nParticipants: wil (S), anonfunc (N)\nWinner: anonfunc\n\n1) anonfunc: Homeworld B1 R3 G3\n\tanonfunc: Hi! I've played HW a few times physically, but not yet on SDG.\n\n2) wil: Homeworld B3 Y2 G3\n\n3) anonfunc: Build G1 Anonfunc\n\twil: Very cool... you can't straigten ou the universe but you can play. It is often best to set up a mock set hat home when it gets compilcated. Where are you from? How did you find the game?\n\tanonfunc: I'm in California (Bay Area), and came to the pyramids via BGG\n\n4) wil: Build G1 Wil\n\tanonfunc: Wow, looks like we've been playing wrong in person. I thought I should have been able to build a B1 at home, but couldn't.\n\n5) anonfunc: Trade G1 B1 Anonfunc\n\twil: very cool, I used to live near tahoe and visit my sister in SF...\n\twil: ah...yes you can only build the color that you already have in your star system (need blue to build a blue) Hence the reason you have to have a blue and green in your homeworld otherwise you can't build or change\n\twil: It takes a while to build when you have to keep changing colors...you had faster games\n\n6) wil: Trade G1 B1 Wil\n\tanonfunc: How about yourself? You've been doing the pyramid thing for a while, if I'm not mistaken.\n\n7) anonfunc: Build B2 Anonfunc\n\n8) wil: Build B2 Wil\n\twil: I like the game, I've played since last march...I've played a lot, I like to keep 5 or more games going at one...I lost a lot to learn, keep getting beat by new strategies, keep making same mistakes.... just looked...played 147, won 83, 56%\n\n9) anonfunc: Trade B2 Y2 Anonfunc\n\twil: *once\n\n10) wil: Discover B2 Wil Y1 Y1\n\n11) anonfunc: Discover Y2 Anonfunc G2 Green\n\n12) wil: Build B2 Wil\n\twil: You name your new stars whatever you want...I tend to keep it simple.\n\twil: You name your new stars whatever you want...I tend to keep it simple.\n\n13) anonfunc: Build Y1 Green\n\n14) wil: Sacrifice G3 Wil\nBuild B2 Y1\nBuild B3 Y1\nBuild B3 Wil\n\n15) anonfunc: Move Y1 Green Anonfunc\nCatastrophe Wil B\n\tanonfunc: Thanks for the game!\n\twil: what did I do? overpopulate myself? What was I thinkin?\n\twil: too funny....\n\twil: I'd say I committed suicide on that game....but I wouldn't want to make light of Mork.\n\n\nHomeworlds Online (SDG# 26040)\nVariants: "Hard time"\nStarted: 2014.8.12, Ended: 2014.8.15\nParticipants: SilentTitan (S), anonfunc (N)\nWinner: anonfunc\n\n1) anonfunc: Homeworld B1 R2 G3\n\tanonfunc: Hi! I've played a few times physically, but am just getting started with SDG.\n\n\nHomeworlds Online (SDG# 26070)\nStarted: 2014.8.12, Ended: 2014.8.12\nParticipants: ts52 (S), pinkpan (N)\nWinner: ts52\n\n\tpinkpan: Sorry, this was a mistake.\n\nHomeworlds Online (SDG# 26067)\nVariants: "Hard time"\nStarted: 2014.8.13, Ended: 2014.8.13\nParticipants: peterh58 (S), Marmalade (N)\nWinner: Marmalade\n\n\nHomeworlds Online (SDG# 26103)\nVariants: "Hard time"\nStarted: 2014.8.13, Ended: 2014.8.16\nParticipants: Marmalade (S), peterh58 (N)\nWinner: peterh58\n\n1) peterh58: Homeworld G1 B2 R3\n\tpeterh58: My first online Homeworlds game, so be patient!\r\n\n\n\nHomeworlds Online (SDG# 26102)\nStarted: 2014.8.13, Ended: 2014.8.21\nParticipants: anonfunc (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B3 G3\n\n2) anonfunc: Homeworld Y1 B2 G3\n\n3) ts52: Build G1 Ts52\n\n4) anonfunc: Build G1 Anonfunc\n\n5) ts52: Discover G1 Ts52 B1 Gonzo\n\n6) anonfunc: Discover G1 Anonfunc B3 Blue\n\n7) ts52: Build G1 Ts52\n\n8) anonfunc: Build G2 Anonfunc\n\n9) ts52: Trade G1 Y1 Gonzo\n\n10) anonfunc: Trade G1 Y1 Blue\n\n11) ts52: Move G1 Ts52 Gonzo\n\n12) anonfunc: Sacrifice G2 Anonfunc\nBuild Y2 Blue\nBuild G1 Anonfunc\n\n13) ts52: Build Y2 Gonzo\n\n14) anonfunc: Trade Y2 G2 Blue\n\n15) ts52: Build G1 Ts52\n\n16) anonfunc: Discover G1 Anonfunc G3 Green\n\n17) ts52: Trade Y2 R2 Gonzo\n\n18) anonfunc: Build G2 Anonfunc\n\n19) ts52: Move R2 Gonzo Green\n\n20) anonfunc: Sacrifice G2 Blue\nBuild G2 Green\nBuild G2 Green\nCatastrophe Green G\n\n21) ts52: Build Y2 Gonzo\n\n22) anonfunc: Trade G2 R2 Anonfunc\n\n23) ts52: Trade Y2 R2 Gonzo\n\n24) anonfunc: Build G1 Anonfunc\n\n25) ts52: Build Y2 Gonzo\n\n26) anonfunc: Move G1 Anonfunc Blue\n\n27) ts52: Move R2 Gonzo Blue\n\n28) anonfunc: Build G2 Anonfunc\n\n29) ts52: Attack Y1 Blue\n\n\tanonfunc: Don't see a way out of this. Thanks for the game!\n\tts52: Fair enough. Thanks for the game.\n\nHomeworlds Online (SDG# 26100)\nVariants: "Hard time"\nStarted: 2014.8.13, Ended: 2014.8.16\nParticipants: anonfunc (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R3 B1 G3\n\n2) anonfunc: Homeworld Y1 B2 G3\n\twil: thanx for the rematch...lets see what mistakes I can make this time! Nave ya joined the ladder yet? It takes a while to work thru the dead wood.\n\n3) wil: Build G1 Wil\n\tanonfunc: I didn't opt-in to anything, but it did print out some rank numbers on the last game\n\n4) anonfunc: Build G1 Anonfunc\n\n5) wil: Trade G1 B1 Wil\n\n6) anonfunc: Discover G1 Anonfunc B3 Blue\n\twil: Yeah, I've actually only played HW here...but and it will record your games and ranking based on play....but there is a ladder to compete for position that is separate... \n\twil: Yeah, I've actually only played HW here...but and it will record your games and ranking based on play....but there is a ladder to compete for position that is separate... \n\tanonfunc: Gotcha. It's nice in person... the games run about 30-40 minutes for us, and there's some good heckling around mistakes.\n\n7) wil: Build B1 Wil\n\twil: I agree.... in person is great (and now you have a twist you missed, only growing ships you already have) And playing with a chess clock you can make it a ten minute game and multiply the mistakes, increase the learning...\n\n8) anonfunc: Build G1 Blue\n\n9) wil: Build G1 Wil\n\n10) anonfunc: Trade G1 Y1 Blue\n\n11) wil: Trade G1 Y1 Wil\n\n12) anonfunc: Build Y2 Blue\n\n13) wil: Build Y2 Wil\n\n14) anonfunc: Trade Y2 B2 Blue\n\n15) wil: Trade B1 R1 Wil\n\n16) anonfunc: Build Y2 Blue\n\n17) wil: Discover Y2 Wil G2 G2\n\n18) anonfunc: Build G1 Anonfunc\n\n19) wil: Build Y2 G2\n\n20) anonfunc: Discover B2 Blue G2 Green\n\n21) wil: Move Y2 G2 Blue\n\n22) anonfunc: Sacrifice G3 Anonfunc\nBuild G1 Blue\nBuild G2 Blue\nBuild G3 Anonfunc\n\n23) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 G2\nBuild Y3 Blue\nCatastrophe Blue Y\n\n24) anonfunc: Sacrifice G3 Anonfunc\nBuild G3 Anonfunc\nBuild G3 Anonfunc\nBuild B1 Green\n\twil: well I made it past 8 moves...that's progress!!\n\n25) wil: Trade Y3 G3 Wil\n\tanonfunc: :-D\n\n26) anonfunc: Sacrifice B2 Green\nTrade B1 R1 Green\nTrade G3 Y3 Anonfunc\n\n27) wil: Build G3 Wil\n\n28) anonfunc: Build R1 Green\n\n29) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\nBuild Y2 Wil\n\n30) anonfunc: Sacrifice Y3 Anonfunc\nMove R1 Green Wil\nMove R1 Green Wil\nDiscover G1 Blue B2 Bluish\nCatastrophe Wil Red\n\n31) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild Y2 G2\n\n32) anonfunc: Trade G1 B1 Anonfunc\n\twil: I was considering moving the red out...I thought the loss was too great to lose all your red and your Y3, that the reboot at that time would leave me with even more advantage...it appears it did dang interesting universe right now...\n\tanonfunc: I'm a sucker for the easy catastrophes, but I'm too close to being locked out of yellow.\n\n33) wil: Sacrifice Y2 G2\nMove Y3 G2 Blue\nDiscover G3 Wil Y3 Y3\n\n34) anonfunc: Trade G2 Y2 Blue\n\n35) wil: Trade Y1 R1 Wil\n\n36) anonfunc: Trade B1 R1 Anonfunc\n\twil: whew barely escaped disaster....once I looked at that oh my...\n\n37) wil: Trade G2 R2 Wil\n\n38) anonfunc: Sacrifice G3 Anonfunc\nBuild R1 Anonfunc\nBuild R2 Anonfunc\n\nBuild Y1 Blue\n\tanonfunc: Hmm. Just saw something I hadn't thought of...\n\twil: I thought you were gonna sack your yellow and move all the way in... I think I still had a step on you though.\n\twil: this is a 'red alert' Unless you get a red ship, I'm moving my Y3 into your homeworld and will take it over... \r\n\n\twil: You may back up your move and try another \n\tanonfunc: Thanks for the warning!\n\n\tanonfunc: Yep, dead. Good game!\n\twil: thank you for the game...don't hesitate to challenge me again... I've played as many as three games with the same person simultaneously....funny how different they all are...look forward to another.\n\nHomeworlds Online (SDG# 26105)\nVariants: "Hard time"\nStarted: 2014.8.15, Ended: 2014.9.13\nParticipants: peterh58 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\tpeterh58: homeworld G1 B2 R3\n\n2) peterh58: Homeworld G1 B2 R3\n\twil: you can make your move now...do you play the physical game with pyramids?\r\n\n\twil: thank you for the game!!\n\tpeterh58: homeworld G1 B2 R3\n\n3) wil: Build G1 Wil\n\tpeterh58: Oops, I see now.\r\n\n\tpeterh58: I've played a couple of times with my pyramids, but find it difficult to persuade people to play. I think it's a very cool game though.\r\n\n\n4) peterh58: Build R1 Peterh58\n\twil: Chess players are the best...they already have the mindset for this kind of game... and I like it better....\n\twil: You switched from fortress to banker I see...\n\n5) wil: Build G1 Wil\n\tpeterh58: Fortress to banker? Not familiar with the jargon... I'm clearly doomed already :)\r\n\n\n6) peterh58: Trade R1 Y1 Peterh58\n\twil: Well not doomed but you did provide me the early advantage. \n\twil: the starting HWs Banker 2/1 stars in homeworld allowing you to build 'investments' of 3 pip stars which by sacrificing green ships can become your own later in the game... Fortress is 3/2 pip homeworld because 1 pips often get used up in the game if played correctly you've got a 1 pip mote that is hard to penetrate. Mine 3/1 hw, is goldilocks...no strategy...just not big, not small for first stars to access... \n\tpeterh58: Flip. There's clearly a lot to think about! I must have a hunt round for strategy articles...\r\n\n\n7) wil: Discover G1 Wil B2 B2\n\n8) peterh58: Build Y1 Peterh58\n\twil: where abouts you from? how did you find the pyramids?\r\n\n\tpeterh58: I'm in Oxford UK. I bought Zendo many years ago from my FLGS. I love the "open source" nature of the pyramid games.\r\n\n\n9) wil: Build G2 B2\n\twil: lol...zendo was also my introduction! My daughter bought it. \n\n10) peterh58: Discover Y1 Peterh58 G3 Deneb\n\n11) wil: Sacrifice G3 Wil\nBuild G2 B2\nBuild G2 Wil\nBuild G3 Wil\n\n12) peterh58: Trade R3 G3 Peterh58\n\n13) wil: T G2 Y2 B2\n\tpeterh58: Oof! That was effective!\n\n14) peterh58: Build Y2 Deneb\n\n15) wil: Trade G2 R2 B2\n\twil: That is called a factory....any time you have a large G3 and another green you've built yourself a factory....the factory doesn't go into operation though until you can sac your G3 to build 3 and actually get a 3 back...(so the bank has to be out of green or low on green.)\n\n16) peterh58: Trade G3 R3 Peterh58\n\n17) wil: Trade G2 R2 Wil\n\n18) peterh58: Build R1 Peterh58\n\n19) wil: Build G2 B2\n\n20) peterh58: Move R1 Peterh58 Deneb\n\n21) wil: Trade G2 B2 B2\n\n22) peterh58: Build R1 Deneb\n\tpeterh58: I should have given myself a shorter name, saved on typing!\r\n\n\twil: lol.... I think some folks name their new star systems long convuluted names just to keep folks from attacking...\n\n23) wil: Build G2 B2\n\tpeterh58: Haha! That's mean.\n\n24) peterh58: Discover Y1 Deneb G2 Vega\n\n25) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 B2\n\n26) peterh58: Build Y2 Vega\n\n27) wil: Discover G3 B2 Y3 Y3\n\tpeterh58: I get it (too late). I can't take advantage of your green buildup, as you now have the monopoly.\n\n28) peterh58: Build Y3 Deneb\n\n29) wil: Build Y3 B2\n\twil: Yes you don't want anyone to get a monopoly in any economy.\n\n30) peterh58: Move Y3 Deneb Peterh58\n\n31) wil: Move Y3 B2 Deneb\n\n32) peterh58: Move Y1 Peterh58 Y3\n\n33) wil: Sacrifice R2 B2\nAttack Y1 Y3\nAttack Y2 Deneb\n\n34) peterh58: Build R1 Peterh58\n\n35) wil: Trade G2 R2 B2\n\n36) peterh58: Move Y1 Vega Deneb\n\n37) wil: Sacrifice G3 Wil\nBuild G2 B2\nBuild R2 Wil\nBuild G3 Wil\n\n38) peterh58: Build R3 Deneb\n\n39) wil: Sacrifice Y2 Deneb\nMove Y3 Deneb Vega\nMove R2 B2 Deneb\nCatastrophe Deneb R\n\n40) peterh58: Trade R1 B1 Peterh58\n\n41) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Wil\nBuild Y2 B2\n\tpeterh58: Darn! Only one undo...\n\n42) peterh58: Move B1 Peterh58 Deneb\n\twil: One is sometimes better than none...but not always...\n\n43) wil: Move Y2 B2 Deneb\n\n44) peterh58: Build B1 Deneb\n\n45) wil: Sacrifice R2 Wil\nAttack Y2 Vega\nAttack B1 Deneb\n\n46) peterh58: Build R1 Peterh58\n\n47) wil: Move B2 B2 Y3\n\n48) peterh58: Sacrifice R1 Peterh58\nAttack B1N Deneb\n\n49) wil: Sacrifice R2 Wil\nAttack B1 Deneb\nAttack Y1 Deneb\n\n50) peterh58: Build R1 Peterh58\n\n51) wil: Trade Y2 R2 Deneb\n\n52) peterh58: Build Y2 Peterh58\n\twil: If I were a better player this would probably be over... The mass of pieces I have against you should have created victory long ago...but alas..all I seem to be doing is building an army at your border...\n\tpeterh58: Well, yes, I am feeling a bit outnumbered!\r\n\n\n53) wil: Sacrifice Y2 Vega\nMove Y1 Deneb Peterh58\nMove Y1 Y3 Peterh58\nCatastrophe Peterh58 Y\n\n54) peterh58: Build B1 Deneb\n\n55) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 Y3\nBuild B3 Y3\n\n56) peterh58: Trade B1 Y1 Deneb\n\twil: the end is near...\r\n\n\twil: where are you out of? I am east coast, near DC.\n\tpeterh58: Ouch! \r\nI'm in Oxford, England, I work as a neuroscientist. How about you?\r\n\n\n57) wil: Attack Y1 Deneb\n\twil: I was just asked to ask if Thirsty Meeples (?) has a set yet? NeuroScientist... wow. Construction Manager..\n\n58) peterh58: Trade R1 Y1 Peterh58\n\n59) wil: Sacrifice Y3 Vega\nMove B3 Y3 Peterh58\nMove B3 Y3 Peterh58\nMove G3 Y3 Peterh58\n\tpeterh58: They might have a Zendo set, I'll look out for it when I'm next in there. Have you heard of Thirsty Meeples over there then?\n\twil: lol, i was thinking he was talkin about a mutual friends screen/ nickname...\n\n60) peterh58: Build Y2 Peterh58\n\tpeterh58: Ah, OK. Thirtsy Meeples is this excellent games cafe in Oxford.\r\n\n\n61) wil: Sacrifice R2 Deneb\nAttack R3 Peterh58\nAttack Y2 Peterh58\n\twil: Well then, they need to get a set of pyramids\n\n62) peterh58: Build Y2 Peterh58\n\twil: I look forward to playing with you again... please challenge me however many times you wish...\n\tpeterh58: build y2 peterh58\n\n63) wil: Sacrifice G3 Wil\nBuild Y3 Peterh58\nBuild B1 Peterh58\nBuild Y3 Deneb\nCatastrophe Peterh58 Y\nCatastrophe Peterh58 B\n\n\n\tpeterh58: Thanks, I will read the strategy wiki and try to do better next time!\r\n\n\tpeterh58: I played another pyramid game last weekend, World War 5. It was great fun. Have you tried it?\n\twil: ten times better than risk!\n\twil: I lost about half of my games of homeworlds... by doing so I've watched the strategies that come at me... yet there are still folks who beat me everytime (but they are getting fewer) \r\n\n\nHomeworlds Online (SDG# 26104)\nVariants: "Hard time"\nStarted: 2014.8.16, Ended: 2014.8.19\nParticipants: Marmalade (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 26150)\nVariants: "Hard time"\nStarted: 2014.9.4, Ended: 2014.9.28\nParticipants: TeeTeeTee (S), TwoShort (N)\nWinner: TeeTeeTee\n\n1) TwoShort: Homeworld R1 B3 G3\n\tTeeTeeTee: I was hoping that you'd challenge me! Have a good game.\n\n2) TeeTeeTee: Homeworld B1 R2 G3\n\n3) TwoShort: Build G1 Twoshort\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) TwoShort: Trade G1 B1 Twoshort\n\n6) TeeTeeTee: Trade G1 R1 Teeteetee\n\twil: Do I get to get beat by the winner or loser?\n\tTeeTeeTee: I'll accept a challenge after this game, if you like... but I think it might be more appropriate for you to wait a bit and not make a ladder challenge, this time. You've avoided being challenged on the ladder before by immediately re-challenging someone as soon as you've lost a game, so nobody lower down on the ladder ever has the opportunity to play you: I only got the chance to challenge you once before due to a glitch in the system.\r\n\r\nAlso, please ask peterh58 if the Thirsty Meeples has a pyramid set. :P\n\n7) TwoShort: Build B1 Twoshort\n\twil: I'm on the third rung like a sitting duck until this game concludes! So I'll be right here in the spectator stands..\n\n8) TeeTeeTee: Build R1 Teeteetee\n\n9) TwoShort: Trade B1 Y1 Twoshort\n\n10) TeeTeeTee: Trade R1 Y1 Teeteetee\n\n11) TwoShort: Build B1 Twoshort\n\n12) TeeTeeTee: Build R1 Teeteetee\n\n13) TwoShort: Discover B1 Twoshort G2 Grogar\n\n14) TeeTeeTee: Discover R1 Teeteetee B3 Edinburgh\n\n15) TwoShort: Build B2 Grogar\n\n16) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild R2 Edinburgh\nBuild R2 Edinburgh\nBuild R3 Teeteetee\n\n17) TwoShort: Trade B1 Y1 Grogar\n\n18) TeeTeeTee: Sacrifice Y1 Teeteetee\nMove R2 Edinburgh Grogar\n\n19) TwoShort: Sacrifice Y1 Grogar\nDiscover B2 Grogar R3 Rover\n\n20) TeeTeeTee: Trade R3 G3 Teeteetee\n\n21) TwoShort: Build B1 Twoshort\n\n22) TeeTeeTee: Build R3 Teeteetee\n\n23) TwoShort: Discover B1 Twoshort B2 Borbor\n\n24) TeeTeeTee: Trade R3 Y3 Teeteetee\n\n25) TwoShort: Sacrifice G3 Twoshort\nBuild B2 Borbor\nBuild B3 Twoshort\nBuild Y1 Twoshort\n\n26) TeeTeeTee: Move G3 Teeteetee Rover\n\n\tTeeTeeTee: Thanks for the game\n\tTeeTeeTee: May I ask, did you unintentionally run out of time here, or was that a tacit resignation?\n\tTwoShort: Whoops, sorry. I meant to resign intentionally. I kept coming back looking for a decent move, but there isn't one. Good game.\n\nHomeworlds Online (SDG# 26110)\nStarted: 2014.9.13, Ended: 2014.11.13\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: Homeworld Y3 B1 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\twil: I gotta go on a serious effort to recruit homeworlds players to this site... I need to play more!!\n\tts52: You know homeworlds players not on this site?\n\n5) wil: Trade G1 B1 Wil\n\twil: I am just starting to teach neighbors...but I have three players that I play live games with occasionally now. I like this because when you are waiting for a train, or appt, you can make moves and check out the games...(like the game, not the format) \n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: Build B2 Wil\n\tts52: Nice that you have local players. This is the only way I get to play these days.\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\twil: Got to play again today...teachin nieghbors\r\n\n\n9) wil: Trade B1 R1 Wil\n\n10) ts52: Build B1 Kermit\n\n11) wil: Build R1 Wil\n\n12) ts52: Trade B1 R1 Kermit\n\n13) wil: Build R2 Wil\n\n14) ts52: Build R2 Kermit\n\n15) wil: Discover R2 Wil G2 G2\n\n16) ts52: Build G1 Ts52\n\n17) wil: Trade R1 Y1 Wil\n\n18) ts52: Trade R2 Y2 Kermit\n\n19) wil: Build Y1 Wil\n\n20) ts52: Build B1 Kermit\n\n21) wil: Move B2 Wil G2\n\n22) ts52: Discover B1 Kermit G2 Oscar\n\n23) wil: Move Y1 Wil G2\n\n24) ts52: Trade G1 R1 Ts52\n\n25) wil: Build R2 G2\n\n26) ts52: Build G1 Ts52\n\n27) wil: T R2 Y2 G2\n\n28) ts52: Build R2 Kermit\n\n29) wil: D Y2 G2 G1 G1\n\n30) ts52: Move R2 Kermit Oscar\n\n31) wil: Build Y1 G2\n\n32) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\nBuild R3 Oscar\n\n33) wil: B R3 G2\n\n34) ts52: Sacrifice Y2 Kermit\nMove R1 Kermit G2\nMove R2 Kermit G2\nCatastrophe G2 Red\n\n35) wil: Sacrifice G3 Wil\nBuild Y2 G2\nBuild Y2 G1\nBuild Y3 Wil\n\n36) ts52: Build G2 Ts52\n\tts52: Well that's unfortunate. Well played\n\n37) wil: Discover Y2 G2 G3 G3\n\n38) ts52: Build G3 Ts52\n\n39) wil: Discover Y2 G1 B3 B3\n\twil: I was avoiding what I was afraid of and moved from the wrong star!!! I thought you'd move your big red gun in and take one of my Y2s...\n\n40) ts52: Discover G3 Ts52 R1 Elmo\n\n41) wil: Move R1 Wil G2\n\n42) ts52: Sacrifice G2 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\n\n43) wil: Build R2 G2\n\n44) ts52: Sacrifice G3 Ts52\nBuild B2 Oscar\nBuild B3 Oscar\nBuild B3 Kermit\n\twil: Is it possible I will have my first stalemate as we hold our control by stubbornly refusing to lose our monopolies and begin to pass?\n\n45) wil: Sacrifice Y2 B3\nMove R1 G2 G1\nMove R1 G1 Ts52\n\n46) ts52: Trade R3 G3 Ts52\n\n47) wil: Build R2 G2\n\n48) ts52: Trade B2 Y2 Oscar\n\n49) wil: Discover Y1 Wil B2 B2\n\n50) ts52: Attack R1 Ts52\n\twil: why did I let you have a yellow?? I would never win, but I assurred a stalemate..\r\n\n\n51) wil: Move R2 G2 G1\n\n52) ts52: Move R3 Oscar G3\n\n53) wil: Move Y2 G3 B2\n\n54) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Oscar\nBuild R3 G3\n\n55) wil: Discover Y1 G2 B3 B3\n\n56) ts52: Move R3 Oscar G1\n\twil: the struggle is real\n\n57) wil: Sacrifice Y2 G1\nDiscover R2 G1 Y2 Y3\nMove R2 G2 B3\n\tts52: Wow, maximum utilization. I'm impressed... now what? :)\n\twil: my only choice since my early mistakes was to attempt to force a stalemate by you not being able to move...it is still my only choice...you have not made a mistake that I found to capitalize on...\r\n\n\twil: I am outnumbered...out gunned... are ties possible in this format? If not....I guess I should resign as you clearly have and have had the advantage.\n\twil: I am thinking you finish me off by sacking your only yellow and moving two big guns into two different systems....and taking over ships...I don't know where that leads for sure though...\r\n\n\n58) ts52: Move Y2 Oscar G3\n\twil: yeah, that is better... don't think I can squirm out of this.\r\n\n\twil: yeah, that is better... don't think I can squirm out of this.\r\n\n\tts52: It seems unlikely, but I've certainly screwed up before.\n\n59) wil: Pass\n\n60) ts52: Move R3 G3 G2\n\n61) wil: Sacrifice Y1 G2\nDiscover B2 G2 Y1 Y1\n\twil: It has now gone past borderline ridiculous...I am a mouse without much life, that the cat is just toying with...\n\n62) ts52: Sacrifice G3 Elmo\nBuild G3 Ts52\nPass\nPass\n\n63) wil: Pass\n\n64) ts52: Move G3 Ts52 Y1\n\n65) wil: Sacrifice Y2 B2\nDiscover B2 Y1 Y2 Y2\nPass\n\n66) ts52: Sacrifice G3 Y1\nBuild G3 Elmo\nBuild Y1 G3\nPass\n\n67) wil: Pass\n\twil: look at the armada of ships you have my galaxy is surrounded...\n\n68) ts52: Move Y1 G3 Kermit\n\n69) wil: Pass\n\n70) ts52: Move Y1 Kermit Oscar\n\n71) wil: Move R2 B3 Y3\n\twil: Fought on 2nd August, 216 BC, it was one of the major battles of Second Punic War. It took place in the town of Cannae in Italy. The army of Cathage, very easily defeated a numerically greater army of the Romans. The most significant fact associated with the battle is that more than 80% of the losing side was captured or killed by the army of Cathage under the leadership of legendary Hannibal.\n\n72) ts52: Move B3 Oscar Wil\n\n73) wil: Sacrifice R2 Y3\nAttack B3 Wil\nPass\n\n74) ts52: Build R2 G3\n\n75) wil: Pass\n\n76) ts52: Sacrifice Y2 G3\nMove B3 Kermit Oscar\nMove B3 Oscar Wil\n\n77) wil: Move B2 Y2 Wil\nCatastrophe Wil B\n\twil: I'm gonna resign at 40....I'll have drug it out long enough...funny freakin game this one was.\n\n78) ts52: Build Y2 Oscar\n\tts52: :) This has definitely been a unique game.\n\n79) wil: Pass\n\n80) ts52: Sacrifice Y1 Oscar\nMove G3 Elmo Wil\n\n81) wil: Sacrifice R2 Y3\nAttack G3 Wil\nPass\n\twil: hee hee\n\n82) ts52: Sacrifice Y2 Oscar\nMove R3 G1 Wil\nMove R3 G2 Wil\n\n83) wil: Sacrifice G3 Wil\nBuild Y1 Wil\nBuild Y2 Wil\nBuild Y2 B2\nCatastrophe Wil Y\n\n\twil: now then, that doesn't look near as bad as it did a while ago.... beatin me up all over the board you are!\n\tts52: :) Well played. Thanks for the game!\n\twil: the game is supposed to not allow you to commit suicide... I get away with it every now and then...I believe this ranks amongst the weirdest games i've played (mostly my fault)\n\tts52: Definitely one of the strangest games I've every played too.\n\nHomeworlds Online (SDG# 26200)\nVariants: "Hard time"\nStarted: 2014.9.14, Ended: 2014.9.18\nParticipants: goulo (S), Aristos (N)\nWinner: goulo\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) goulo: Homeworld R3 B1 G3\n\tAristos: The great Aristos Empire celebrates the launching of its first interstellar vessel. Scientists eagerly debate what sort of creatures we will find in the depths. Theologians debate whether they will share our mythos. Chefs debate whether they will be tasty.\n\n3) Aristos: Build Y1 Aristos\n\tgoulo: happy exploration!\n\n4) goulo: Build G1 Goulo\n\n5) Aristos: Discover Y1 Aristos B1 Spark\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) Aristos: Discover Y1 Spark G2 Flash\n\n8) goulo: Build G1 Goulo\n\n9) Aristos: Build Y1 Aristos\n\n10) goulo: Build Y2 Goulo\n\n11) Aristos: Build Y2 Flash\n\n12) goulo: Trade Y2 R2 Goulo\n\n13) Aristos: Trade Y1 B1 Aristos\n\n14) goulo: Move R2 Goulo Flash\n\n15) Aristos: Sacrifice Y1 Flash\nDiscover Y2 Flash R3 Refuge\n\tAristos: "Captain! Aliens! We've never seen another species before!" \r\n"What a wonderful opportunity! Open hailing frequencies!"\r\n"Sir! They appear to be hostile!"\r\n"WHAT? Just attacking without greeting? By the gods, we shall remember this. Let us withdraw for now."\n\n16) goulo: Build Y1 Goulo\n\n17) Aristos: Build B1 Aristos\n\tgoulo: "Wait, they weren't hostile. They just had their ship painted red."\n\n18) goulo: Move Y1 Goulo Flash\n\tAristos: Diplomats have patched relations for the moment, but the leadership of the Aristos Empire remains wary.\n\n19) Aristos: Trade B1 G1 Aristos\n\n20) goulo: Discover R2 Flash Y1 Citroneto\n\n21) Aristos: Trade G1 R1 Aristos\n\tAristos: "You gave what command to our troops, Captain?!?!?!"\r\n"Don't worry, General... the Edit Universe Project was a success."\n\n22) goulo: Build Y2 Flash\n\n23) Aristos: Build R1 Aristos\n\n24) goulo: Sacrifice G3 Goulo\nBuild Y2 Flash\nBuild Y3 Goulo\nBuild Y3 Goulo\n\n\tAristos: good game\n\tgoulo: thanks!\n\nHomeworlds Online (SDG# 26106)\nVariants: "Hard time"\nStarted: 2014.9.15, Ended: 2014.9.20\nParticipants: wil (S), jotarp (N)\nWinner: wil\n\n1) jotarp: Homeworld G1 B2 Y3\n\n2) wil: Homeworld B3 G1 G3 *\n\n\twil: Thank you for the game! First time playing homeworlds?\n\nHomeworlds Online (SDG# 26223)\nVariants: "Hard time"\nStarted: 2014.9.18, Ended: 2014.12.6\nParticipants: dlwillson (S), SilentTitan (N)\nWinner: dlwillson\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tdlwillson: You thought you'd never see me again, didn't you?\r\n\r\nWell, I remembered my password!\r\n\r\nActually, I didn't, but the reminder thing finally worked. :-)\n\tSilentTitan: What r u on about? I saw you at tacticon!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\tdlwillson: Ha! Take that! You *never* would've guessed I'd do that, would you?\r\n\r\nEnough of my silliness... It's good to be back.\n\n6) dlwillson: D G1 Dlwillson B2 Smurf\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) dlwillson: B G1 Dlwillson\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) dlwillson: Trade G3 Y3 Dlwillson\n\n11) SilentTitan: Sacrifice Y2 Silenttitan\nDiscover Y1 Silenttitan G3 Sol\nDiscover Y1 Sol G2 Soul\n\n12) dlwillson: Build G1 Dlwillson\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Soul\nBuild Y2 Soul\nBuild Y2 Silenttitan\n\n14) dlwillson: Move Y3 Dlwillson Soul\nCatastrophe Soul Y\n\n15) SilentTitan: Trade Y2 G2 Silenttitan\n\tSilentTitan: Funny looks like I should have six ships out of those builds\n\n16) dlwillson: Build G2 Smurf\n\n17) SilentTitan: Build Y1 Silenttitan\n\n18) dlwillson: T G2 Y2 Smurf\n\n19) SilentTitan: Build Y2 Silenttitan\n\n20) dlwillson: B G2 Dlwillson\n\n21) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n22) dlwillson: D G1 Dlwillson B2 Sky\n\n23) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n24) dlwillson: D Y2 Smurf G3 Turf\n\n25) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\tdlwillson: drat\n\n26) dlwillson: Build Y3 Turf\n\n27) SilentTitan: Trade Y2 G2 Silenttitan\n\n28) dlwillson: S Y2 Turf\nD G1 Smurf Y3 Sunny\nD G2 Dlwillson Y2 Golden\n\n29) SilentTitan: Sacrifice Y2 Sol\nMove Y1 Sol Sky\nMove Y1 Sky Dlwillson\n\n30) dlwillson: Sacrifice G2 Golden\nBuild Y2 Turf\nBuild Y2 Turf\n\n31) SilentTitan: Trade Y1 R1 Dlwillson\n\n32) dlwillson: B G2 Dlwillson\n\n33) SilentTitan: Attack G1 Dlwillson South\n\n34) dlwillson: Sacrifice Y2 Turf\nMove Y3 Turf Sky\nMove Y3 Sky Dlwillson\n\n35) SilentTitan: Build R1 Dlwillson\n\n36) dlwillson: Trade G2 R2 Dlwillson\n\n37) SilentTitan: Sacrifice G2 Silenttitan\nBuild G2 Dlwillson\nBuild G2 Dlwillson\n\n38) dlwillson: Sacrifice R2 Dlwillson\nAttack G2 Dlwillson\nAttack G2 Dlwillson\n\n39) SilentTitan: Build G2 Dlwillson\nCatastrophe Dlwillson Green\n\n40) dlwillson: Build G1 Sunny\n\n41) SilentTitan: Trade R1 Y1 Dlwillson\n\n42) dlwillson: Trade Y3 G3 Dlwillson\n\n43) SilentTitan: Move R1 Dlwillson Sky\n\n44) dlwillson: Sacrifice G1 Sky\nBuild G1 Sunny\n\n45) SilentTitan: Build Y2 Soul\n\tdlwillson: You're really quite good at this game. It's very satisfying to play against you.\n\n46) dlwillson: Build G2 Dlwillson\n\n47) SilentTitan: Move Y2 Soul Silenttitan\n\n48) dlwillson: Trade G2 R2 Dlwillson\n\n49) SilentTitan: Trade Y2 G2 Silenttitan\n\n50) dlwillson: Attack Y1 Dlwillson\n\n51) SilentTitan: Move G2 Silenttitan Sunny\nCatastrophe Sunny Green\n\n52) dlwillson: Build Y2 Turf\n\n53) SilentTitan: Discover Y1 Soul G2 Sol\n\n54) dlwillson: Sacrifice Y2 Turf\nMove Y1 Dlwillson Sky\nDiscover Y1 Sky G3 Field\n\n\tdlwillson: Good game, bro'\n\nHomeworlds Online (SDG# 26272)\nVariants: "Hard time"\nStarted: 2014.9.29, Ended: 2014.10.7\nParticipants: TeeTeeTee (S), wil (N)\nWinner: TeeTeeTee\n\n1) wil: Homeworld Y2 B1 G3\n\n2) TeeTeeTee: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\n4) TeeTeeTee: Build G1 Teeteetee\n\twil: Disappointing clock run out last game, I'm gonna do my darndest to give you a little challenge.\n\n5) wil: T G1 B1 Wil\n\n6) TeeTeeTee: Trade G1 Y1 Teeteetee\n\tTeeTeeTee: I was treating TwoShort's time-out as if it was a resignation: I'd taken the lead very early on in the game, and would have been very surprised if TwoShort had found a way to catch up after my last move.\n\n7) wil: B B1 Wil\n\n8) TeeTeeTee: Build Y1 Teeteetee\n\n9) wil: D B1 Wil G3 G3\n\n10) TeeTeeTee: Discover Y1 Teeteetee G2 Grasshopper\n\n11) wil: B B2 G3\n\n12) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y2 Grasshopper\nBuild Y2 Grasshopper\nBuild Y3 Teeteetee\n\n13) wil: Build B2 Wil\n\twil: Congrats on the game...\n\twil: this one too it appears...\n\n14) TeeTeeTee: Trade Y3 G3 Teeteetee\n\n15) wil: D B1 Wil Y3 Y3\n\n16) TeeTeeTee: Discover Y2 Grasshopper B3 Beetle\n\n17) wil: Build B2 Wil\n\twil: b b2 wil\n\n18) TeeTeeTee: Discover Y2 Grasshopper B3 Ant\n\n19) wil: Trade B2 R2 G3\n\twil: nice...it is so over for me...\n\n20) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y3 Ant\nBuild Y3 Beetle\nPass\n\n21) wil: Trade B2 R2 Wil\n\tTeeTeeTee: I'm in the lead again, yes, but it'd be quite easy for me to lose that advantage if I'm careless here. Can you see why did that last move, by the way?\n\twil: Oh yeah...you successfully cornered me out...I had plenty of opportunity to correct early on and blew it. the likelihood of your errors is slim...but I am waitn\n\n22) TeeTeeTee: Trade Y3 R3 Ant\n\n23) wil: Build B2 Wil\n\n24) TeeTeeTee: Trade Y3 G3 Beetle\n\n25) wil: Build B2 G3\n\n26) TeeTeeTee: Build Y3 Grasshopper\n\n27) wil: Trade B2 G2 Wil\n\n28) TeeTeeTee: Move Y3 Grasshopper G3\n\n29) wil: Discover B2 Wil Y3 Why3\n\n30) TeeTeeTee: Sacrifice R3 Ant\nAttack R2 G3\nAttack B2 G3\nAttack B1 G3\n\twil: If I had any sense I'd resigned move 7\n\n31) wil: Move G2 Wil Y3\n\tTeeTeeTee: Hmm. It would have been a stronger move for me to build another y3 on my last move, rather than move that y3 to your world g3 - guess I was being impatient...\n\n32) TeeTeeTee: Build B2 G3\n\twil: I just tried to take a little of your clout away and prolong the agony.\n\n33) wil: Build G1 Y3\n\n34) TeeTeeTee: Move Y3 G3 Grasshopper\n\n35) wil: Discover G1 Y3 R2 R2\n\tTeeTeeTee: Hmm. This game punishes impatience.\n\n36) TeeTeeTee: Sacrifice B1 G3\nTrade Y3 R3 Grasshopper\n\n37) wil: Build R1 Wil\n\n38) TeeTeeTee: Build Y3 Grasshopper\n\n39) wil: Build G1 R2\n\n40) TeeTeeTee: Build R1 G3\n\n41) wil: Build G1 Wil\n\n42) TeeTeeTee: Sacrifice Y3 Grasshopper\nMove R1 G3 Wil\nMove R2 G3 Wil\nMove G3 Beetle Wil\nCatastrophe Wil Red\n\n\tTeeTeeTee: A more stalling move for you would have been "trade b1 y3 r1".\n\twil: ah... I stalled long enough... I played pittifully....I'll give it a few days for someone else to challenge you before I try again...thanx\n\tTeeTeeTee: Hmmm... I don't think you played 'pitifully'. You made a catastrophic mistake at the start, but after that, I don't think there was much else you could have done better - you were only playing on in the hope that I'd slip up somewhere from that point - and you put up quite a strong defence. TwoShort made the same catastrophic error right at the start of the last game that I played, too.\r\n\r\nAt the beginning of the game, when there's a choice of two colours with two small pyramids in the stash - yellow and blue in this case, and red and blue in the game with TwoShort - it's surely better to choose the colour with fewer medium pyramids in the stash. I was able to very quickly cut off all access to yellows in this game, and then stake out the large blues as stars, which made your monopoly on blue not very useful. A similar thing happened in the last game I played: TwoShort had a monopoly on blue, but couldn't use that to any effect as I was able to repeatedly attack their worlds with impunity due to my red monopoly.\r\n\r\nI'd like to wait for a bit to see if there are any other ladder challengers, as we have played quite a lot of games recently. Thanks for the game!\n\twil: yeah...a pitiful catastrophic mistake...which by all rights in a 'championship' game should have caused an immediate resignation on my part. but yeah...I am gone till early week...and I'll be glad to let a challenger slip in... \r\n\n\twil: thank you for the game.\n\twil: appears I must challenge two short now...again tho...I'll wait till next week in case he wishes to challenge you.\n\nHomeworlds Online (SDG# 26269)\nVariants: "Hard time"\nStarted: 2014.9.29, Ended: 2014.11.22\nParticipants: Aristos (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Aristos: Homeworld B3 Y2 G3\n\tts52: have a good game!\n\n3) ts52: Build G1 Ts52\n\tAristos: You as well.\n\n4) Aristos: Build G1 Aristos\n\n5) ts52: Trade G1 B1 Ts52\n\tAristos: Sorry for delay... I'm in a play and tonight was final dress rehearsal... play opens tomorrow night. All this week was chaos. \n\tts52: No problem. Break a leg!\n\n6) Aristos: Build G1 Aristos\n\n7) ts52: Build B1 Ts52\n\n8) Aristos: Trade G1 Y1 Aristos\n\n9) ts52: Discover B1 Ts52 G2 Kermit\n\n10) Aristos: Trade G3 B3 Aristos\n\n11) ts52: Build B2 Kermit\n\n12) Aristos: Build B2 Aristos\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) Aristos: Discover B2 Aristos G1 Ping\n\n15) ts52: Build B2 Kermit\n\n16) Aristos: Build Y1 Aristos\n\n17) ts52: Discover B1 Ts52 G2 Oscar\n\n18) Aristos: Move Y1 Aristos Ping\n\n19) ts52: Trade B2 R2 Kermit\n\n20) Aristos: Trade Y1 R1 Ping\n\n21) ts52: Build B2 Oscar\n\n22) Aristos: Build Y1 Aristos\n\n23) ts52: Build R1 Kermit\n\n24) Aristos: Trade B3 G3 Aristos\n\n25) ts52: Build Y1 Kermit\n\n26) Aristos: Move Y1 Aristos Ping\n\n27) ts52: Discover Y2 Kermit G3 Robin\n\n28) Aristos: Discover Y1 Aristos R1 Spark\n\n29) ts52: Move R1 Kermit Robin\n\n30) Aristos: Sacrifice G3 Aristos\nBuild Y2 Spark\nBuild Y3 Spark\nBuild Y3 Ping\n\n31) ts52: Move Y1 Kermit Spark\nCatastrophe Spark Yellow\n\n32) Aristos: Build G1 Aristos\n\n33) ts52: B Y1 Robin\n\n34) Aristos: Move Y3 Ping Aristos\n\n35) ts52: Move Y1 Robin Kermit\n\n36) Aristos: Discover G1 Aristos Y1 Flash\n\n37) ts52: Move R2 Kermit Flash\n\n38) Aristos: Discover G1 Flash R2 Buzz\n\n39) ts52: Move Y2 Robin Buzz\n\tAristos: Sorry for the indecisions... I don't have physical pieces laid out to move around to plan moves, and it helps if I can actually see the next board state. \n\tts52: No problem\n\n40) Aristos: Sacrifice G1 Buzz\nBuild G1 Aristos\n\tAristos: Wow. My move to Flash was a truly spectacularly bad move. Nice trap. I think it may have cost me the game. \n\n41) ts52: Build R1 Robin\n\tAristos: We'll try this path... I'm not sure if this is an escape or just delay of inevitable. \n\n42) Aristos: Move G1 Aristos Ping\n\n43) ts52: Move Y2 Buzz Robin\n\n44) Aristos: Trade Y3 G3 Aristos\n\n45) ts52: Build G2 Ts52\n\n46) Aristos: Build R2 Ping\n\n47) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Flash\nBuild R3 Flash\n\n48) Aristos: Move R2 Ping Kermit\n\n49) ts52: Move R3 Flash Kermit\n\n50) Aristos: Sacrifice G3 Aristos\nBuild G3 Aristos\nBuild R3 Kermit\nBuild R3 Kermit\nCatastrophe Kermit Red\n\n51) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Robin\nBuild Y3 Kermit\n\n52) Aristos: Build Y3 Ping\n\n53) ts52: Trade Y3 R3 Kermit\n\n54) Aristos: Build B2 Ping\n\n55) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Kermit\nBuild B3 Kermit\n\n\tAristos: Good game.\n\tts52: Thanks. You too.\n\nHomeworlds Online (SDG# 26202)\nVariants: "Hard time"\nStarted: 2014.10.1, Ended: 2014.10.8\nParticipants: cacodemon (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\twil: welcome to sdg... do you play homeworlds irl?\n\n2) cacodemon: Homeworld G2 B1 Y3\n\n3) wil: Build G1 Wil\n\tcacodemon: Thank you and yes I play irl, any chance I get. Forgive my typing. My mobile device is the only access to sdg I have. Have fun.\n\twil: no worries about your typing... where are you from, I am near DC\n\n4) cacodemon: Build Y1 Cacodemon\n\n5) wil: Trade G1 Y1 Wil\n\n6) cacodemon: Trade Y1 B1 Cacodemon\n\twil: what other pyramid games do you like? I first was introduced through zendo (my daughter bought it)\n\n7) wil: Build Y1 Wil\n\tcacodemon: I am from utah where pyramid players are few (that I know). Ive played and enjoy zark city and ice house. Volcano and zendo once but I liked both. HW is just mind blowing to me. A real amazing thing. Wish everyone played it. :)\n\twil: Absolutely agree....where abouts are you in Utah? Near any of the national parks?\n\n8) cacodemon: Build Y2 Cacodemon\n\twil: I have always liked chess, HW is sooo much more...\r\n\n\n9) wil: Discover Y1 Wil G2 G2\n\n10) cacodemon: Build Y2 Cacodemon\n\n11) wil: Build G1 Wil\n\twil: I've enjoyed your parks, brice, arches, zion...and the wasatch...ran around provo in the late 70's for a bit.\r\n\n\n12) cacodemon: Discover Y2 Cacodemon G3 Green3\n\n\twil: oh nooooooooo\n\nHomeworlds Online (SDG# 26307)\nVariants: "Hard time"\nStarted: 2014.10.6, Ended: 2015.1.31\nParticipants: fogus (S), Salmonax (N)\nWinner: fogus\n\n1) Salmonax: Homeworld R1 B3 G3\n\n2) fogus: Homeworld B1 Y2 G3\n\n3) Salmonax: Build G1 Salmonax\n\n4) fogus: Build G1 Fogus\n\n5) Salmonax: Trade G1 Y1 Salmonax\n\n6) fogus: Build G1 Fogus\n\n7) Salmonax: Build G1 Salmonax\n\n8) fogus: Trade G1 Y1 Fogus\n\n9) Salmonax: Discover G1 Salmonax B2 Frootyloops\n\n10) fogus: Trade Y1 R1 Fogus\n\n11) Salmonax: Build Y1 Salmonax\n\n12) fogus: Discover R1 Fogus Y3 Way\n\n13) Salmonax: Trade G1 R1 Frootyloops\n\n14) fogus: Sacrifice G1 Fogus\nBuild R2 Way\n\n15) Salmonax: Build G1 Salmonax\n\n16) fogus: Move R2 Way Frootyloops\n\n17) Salmonax: Sacrifice Y1 Salmonax\nMove R1 Frootyloops Salmonax\n\n18) fogus: Build G1 Fogus\n\n19) Salmonax: Move G3 Salmonax Frootyloops\n\n20) fogus: Trade R2 B2 Frootyloops\n\n21) Salmonax: Sacrifice R1 Salmonax\nAttack B2 Frootyloops\n\n22) fogus: Trade G1 Y1 Fogus\n\n23) Salmonax: Trade B2 Y2 Frootyloops\n\n24) fogus: Build G1 Fogus\n\n25) Salmonax: Build G1 Frootyloops\n\n26) fogus: Move G1 Fogus Way\n\n27) Salmonax: Trade G1 R1 Frootyloops\n\tSalmonax: Sorry for the delay\n\n28) fogus: Build R2 Way\n\n29) Salmonax: Move G3 Frootyloops Way\n\n30) fogus: Discover R2 Way Y2 Foo\n\n31) Salmonax: Move Y2 Frootyloops Salmonax\n\n32) fogus: Move R1 Way Fogus\n\n33) Salmonax: Move G3 Way Foo\n\tfogus: no problem about the delay. i'm in no rush. :)\n\n34) fogus: Move R2 Foo Way\n\n35) Salmonax: Build G1 Foo\n\n36) fogus: Move R2 Way Frootyloops\n\n37) Salmonax: Sacrifice Y1 Salmonax\nMove R1 Frootyloops Salmonax\n\n38) fogus: Build R2 Fogus\n\n39) Salmonax: Move G3 Foo Way\n\n40) fogus: Move G1 Way Fogus\n\n41) Salmonax: Build G2 Way\n\n42) fogus: Discover G1 Fogus Y3 Flipper\n\n43) Salmonax: Move G3 Way Frootyloops\n\n44) fogus: Trade R2 B2 Frootyloops\n\n45) Salmonax: Sacrifice R1 Salmonax\nAttack B2 Frootyloops\n\tfogus: Curse frootyloops! Something bad happens whenever I go there! ;)\n\tSalmonax: It's that Toucan Sam!\n\n46) fogus: Build G2 Fogus\n\n47) Salmonax: Build G2 Salmonax\n\n48) fogus: Build G3 Flipper\n\n49) Salmonax: Build Y1 Salmonax\n\n50) fogus: Trade R1 B1 Fogus\n\n51) Salmonax: Trade G1 R1 Salmonax\n\n52) fogus: Move G3 Flipper Foo\n\n53) Salmonax: Sacrifice Y1 Salmonax\nMove G3 Frootyloops Salmonax\n\n54) fogus: Build Y1 Fogus\n\n55) Salmonax: Build G1 Way\n\n56) fogus: Move G3 Fogus Way\n\n57) Salmonax: Discover G1 Foo Y3 Blipper\n\n58) fogus: Discover Y1 Fogus R3 Warworld\n\n59) Salmonax: Build Y1 Salmonax\n\tSalmonax: blipper flipper foo.\n\n60) fogus: Sacrifice G1 Flipper\nBuild Y3 Warworld\n\n61) Salmonax: Sacrifice G2 Salmonax\nBuild G1 Way\nBuild G2 Blipper\nCatastrophe Way G\n\n62) fogus: Build Y3 Fogus\n\n63) Salmonax: Trade B2 R2 Frootyloops\n\n64) fogus: Build R1 Fogus\n\n65) Salmonax: Sacrifice G2 Blipper\nBuild G1 Blipper\nBuild R2 Frootyloops\n\n66) fogus: Move Y3 Warworld Frootyloops\n\n67) Salmonax: Discover Y1 Salmonax G2 Charlier\n\n68) fogus: Discover Y1 Fogus R3 Chthon\n\n69) Salmonax: Sacrifice Y1 Charlier\nMove R2 Frootyloops Chthon\n\n70) fogus: Sacrifice R1 Fogus\nAttack R2 Frootyloops\n\n71) Salmonax: Attack Y1 Chthon\n\n72) fogus: Sacrifice G2 Fogus\nBuild R1 Frootyloops\nBuild R3 Fogus\n\n73) Salmonax: Build G1 Salmonax\n\n74) fogus: Sacrifice Y3 Frootyloops\nMove R1 Frootyloops Salmonax\nMove R2 Frootyloops Salmonax\nMove G3 Foo Warworld\nCatastrophe Salmonax R\n\n75) Salmonax: Build Y1 Salmonax\n\n76) fogus: Discover Y3 Fogus Y3 Gipf\n\n77) Salmonax: Sacrifice G1 Salmonax\nBuild R1 Chthon\n\n78) fogus: Move R2 Fogus Gipf\n\tSalmonax: I had my eye off that possibility for a little while.\n\n79) Salmonax: Build G1 Salmonax\n\n80) fogus: Move G3 Warworld Fogus\n\n81) Salmonax: Discover R2 Chthon G2 Ziggle\n\n82) fogus: Build B1 Fogus\n\n83) Salmonax: Sacrifice G1 Salmonax\nBuild Y2 Chthon\n\n84) fogus: Move B1 Fogus Gipf\n\n85) Salmonax: Build R1 Ziggle\n\n86) fogus: Build B2 Fogus\n\n87) Salmonax: Trade Y2 B2 Salmonax\n\n88) fogus: Sacrifice Y3 Gipf\nMove B1 Fogus Salmonax\nMove B2 Fogus Salmonax\nPass\nCatastrophe Salmonax B\n\n\tfogus: Thank you for the game. I'll never forget the scourge that was frootyloops! :-)\n\nHomeworlds Online (SDG# 26333)\nVariants: "Hard time"\nStarted: 2014.10.14, Ended: 2014.10.17\nParticipants: TwoShort (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\twil: I climbed the ladder so I can lose to better and better players...hopefully I'll give you a little run for your money!\n\n\nHomeworlds Online (SDG# 26338)\nStarted: 2014.10.15, Ended: 2014.10.17\nParticipants: JaredL (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld B2 G3 R3\n\tJaredL: homeworld blue3 green2 red\n\tJaredL: homeworld g3 b2 r3\n\n2) JaredL: Homeworld G2 B1 R3\n\tJaredL: homeworld g2 b1 r3 \n\n3) hellajoey: Build R1 Hellajoey\n\n4) JaredL: Build R1 Jaredl\n\n5) hellajoey: Trade R1 Y1 Hellajoey\n\n6) JaredL: Trade R1 Y1 Jaredl\n\n7) hellajoey: Build R1 Hellajoey\n\n8) JaredL: Build R1 Jaredl\n\n9) hellajoey: Trade R1 G1 Hellajoey\n\n10) JaredL: Trade R1 B1 Jaredl\n\n11) hellajoey: Discover G1 Hellajoey Y1 Lemonasia\n\n12) JaredL: Discover B1 Jaredl G3 Greenie\n\n13) hellajoey: Build Y2 Hellajoey\n\n14) JaredL: Build Y2 Jaredl\n\n15) hellajoey: Discover Y2 Hellajoey G1 Beanstone\n\n16) JaredL: Build B1 Greenie\n\n17) hellajoey: Build Y2 Hellajoey\n\n18) JaredL: Move Y2 Jaredl Greenie\n\n19) hellajoey: Build Y3 Hellajoey\n\n20) JaredL: Build Y3 Greenie\n\n21) hellajoey: Build Y3 Beanstone\n\n22) JaredL: Sacrifice Y3 Greenie\nMove Y1 Jaredl Greenie\nMove Y1 Greenie Beanstone\nMove Y1 Beanstone Hellajoey\nCatastrophe Hellajoey Y\n\n23) hellajoey: Build R1 Hellajoey\n\n24) JaredL: Build B2 Greenie\n\n25) hellajoey: Move Y2 Beanstone Hellajoey\n\n26) JaredL: Discover B2 Greenie G2 Sectorg\n\n27) hellajoey: Discover G1 Lemonasia B3 Blunder\n\n28) JaredL: Build B2 Sectorg\n\n29) hellajoey: Sacrifice Y2 Hellajoey\nMove R3 Hellajoey Beanstone\nMove R3 Beanstone Greenie\n\n30) JaredL: Sacrifice Y2 Greenie\nMove B1 Greenie Beanstone\nMove B1 Greenie Beanstone\n\n31) hellajoey: Build R1 Hellajoey\n\n32) JaredL: Build B3 Beanstone\n\n33) hellajoey: Sacrifice R1 Hellajoey\nAttack B3 Beanstone\n\n\nHomeworlds Online (SDG# 26339)\nStarted: 2014.10.16, Ended: 2014.10.23\nParticipants: hellajoey (S), abridged (N)\nWinner: hellajoey\n\n1) abridged: Homeworld G3 B1 R3\n\n2) hellajoey: Homeworld B1 G2 R3\n\n3) abridged: Build R1 Abridged\n\n4) hellajoey: Build R1 Hellajoey\n\n5) abridged: Trade R1 Y1 Abridged\n\n6) hellajoey: Trade R1 Y1 Hellajoey\n\n7) abridged: Build R1 Abridged\n\n8) hellajoey: Build R1 Hellajoey\n\n9) abridged: Discover Y1 Abridged G2 Gazebo\n\n10) hellajoey: Trade R1 B1 Hellajoey\n\n11) abridged: Trade R3 B3 Abridged\n\n12) hellajoey: Build B2 Hellajoey\n\n13) abridged: Build B2 Abridged\n\n14) hellajoey: Discover B2 Hellajoey G3 Weedsville\n\n15) abridged: Trade B3 R3 Abridged\n\n16) hellajoey: Build B2 Weedsville\n\n17) abridged: Build B3 Abridged\n\n18) hellajoey: Build B3 Hellajoey\n\n19) abridged: Discover Y1 Gazebo B3 Bozega\n\n20) hellajoey: Trade B2 Y2 Weedsville\n\n21) abridged: Build R1 Abridged\n\n22) hellajoey: Sacrifice Y2 Weedsville\nDiscover B2 Weedsville R2 Tempworld\nMove B2 Tempworld Abridged\nCatastrophe Abridged Blue\n\n23) abridged: Discover Y1 Bozega G2 Hideyhole\n\tabridged: Wow! So catastrophes don't require a separate turn, eh?\n\n24) hellajoey: Sacrifice Y1 Hellajoey\nMove R3 Hellajoey Abridged\nCatastrophe Abridged Red\n\n\nHomeworlds Online (SDG# 26351)\nStarted: 2014.10.20, Ended: 2014.10.22\nParticipants: JaredL (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld B1 G2 R3\n\n2) JaredL: Homeworld G3 B1 R3\n\n3) hellajoey: Build R1 Hellajoey\n\n4) JaredL: Build R1 Jaredl\n\n5) hellajoey: Trade R1 Y1 Hellajoey\n\n6) JaredL: Trade R1 Y1 Jaredl\n\n7) hellajoey: Build R1 Hellajoey\n\n8) JaredL: Build R1 Jaredl\n\n9) hellajoey: Trade R1 G1 Hellajoey\n\n10) JaredL: Trade R1 B1 Jaredl\n\n11) hellajoey: Trade R3 B3 Hellajoey\n\n12) JaredL: Build B2 Jaredl\n\n13) hellajoey: Build B2 Hellajoey\n\n14) JaredL: Discover B2 Jaredl G2 Green2\n\n15) hellajoey: Discover B2 Hellajoey B3 Bluton\n\n16) JaredL: Move B1 Jaredl Green2\n\n17) hellajoey: Build B2 Hellajoey\n\n18) JaredL: Trade B2 Y2 Green2\n\n19) hellajoey: Trade B3 R3 Hellajoey\n\n20) JaredL: Build R1 Jaredl\n\n21) hellajoey: Build G1 Hellajoey\n\n22) JaredL: Move R1 Jaredl Green2\n\n23) hellajoey: Discover G1 Hellajoey R3 Redrock\n\n24) JaredL: Move Y2 Green2 Redrock\n\n25) hellajoey: Build R1 Hellajoey\n\n26) JaredL: Attack G1 Redrock\n\n27) hellajoey: Move R3 Hellajoey Redrock\n\n28) JaredL: Move Y2 Redrock Green2\n\n29) hellajoey: Attack G1 Redrock\n\n30) JaredL: Move R3 Jaredl Green2\n\n31) hellajoey: Trade B2 Y2 Bluton\n\n32) JaredL: Move R3 Green2 Jaredl\n\n33) hellajoey: Discover Y2 Bluton G1 Grunonia\n\n34) JaredL: Discover B1 Green2 G3 Green3\n\n35) hellajoey: Build G2 Hellajoey\n\n36) JaredL: Build R1 Green2\n\n37) hellajoey: Discover G2 Hellajoey B3 Blubox\n\n38) JaredL: Sacrifice Y2 Green2\nMove R1 Green2 Redrock\nMove R1 Green2 Redrock\nCatastrophe Redrock R\n\n39) hellajoey: Build G1 Hellajoey\n\n40) JaredL: Trade R3 G3 Jaredl\n\n41) hellajoey: Build G2 Blubox\n\n42) JaredL: Build B2 Green3\n\n43) hellajoey: Trade G2 B2 Blubox\n\n44) JaredL: Trade B2 Y2 Green3\n\n45) hellajoey: Move G1 Hellajoey Green3\n\n46) JaredL: Discover B1 Green3 G2 Green22\n\n47) hellajoey: Move Y2 Grunonia Green22\n\n48) JaredL: Build B2 Green22\n\n49) hellajoey: Move B2 Hellajoey Green3\n\n50) JaredL: Discover Y2 Green3 R1 Red1\n\n51) hellajoey: Build B3 Green3\n\n52) JaredL: Sacrifice Y2 Red1\nMove B1 Green22 Green3\nMove B2 Green22 Green3\nCatastrophe Green3 B\n\n53) hellajoey: Build G1 Blubox\n\n54) JaredL: Build Y1 Jaredl\n\n55) hellajoey: Build Y2 Green22\n\n56) JaredL: Trade Y1 R1 Jaredl\n\n57) hellajoey: Sacrifice Y2 Green22\nDiscover G2 Blubox B2 Blubon\nMove G1 Blubox Blubon\n\n\nHomeworlds Online (SDG# 26354)\nVariants: "Hard time"\nStarted: 2014.10.22, Ended: 2014.10.31\nParticipants: wil (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld Y1 B2 G3\n\n2) wil: Homeworld B3 R1 G3\n\n3) TeeTeeTee: Build G1 Teeteetee\n\twil: Two short must be busy.... I only had one person available to challenge!\n\n4) wil: Build G1 Wil\n\n5) TeeTeeTee: Trade G1 R1 Teeteetee\n\n6) wil: Trade G1 R1 Wil\n\n7) TeeTeeTee: Build R2 Teeteetee\n\n8) wil: Build R2 Wil\n\n9) TeeTeeTee: Build R2 Teeteetee\n\n10) wil: Trade R2 Y2 Wil\n\n11) TeeTeeTee: Discover R1 Teeteetee B3 Mercia\n\n12) wil: Discover R1 Wil G2 G2\n\n13) TeeTeeTee: Discover R2 Teeteetee Y3 Wessex\n\n14) wil: Build Y1 Wil\n\n15) TeeTeeTee: Move R2 Wessex G2\n\n16) wil: Sacrifice Y1 Wil\nMove R1 G2 Wil\n\n17) TeeTeeTee: Build G1 Teeteetee\n\twil: awe the early attack...makes sense.. almost grew a red...\n\tTeeTeeTee: I sort of hoped you would grow a red: I'd have got a red monopoly in a few turns if you'd done that.\n\n18) wil: Build Y1 Wil\n\n19) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n20) wil: Discover R1 Wil G2 Gee2\n\n21) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild R2 G2\nBuild R3 Mercia\nBuild R3 Teeteetee\n\n22) wil: Build R3 Gee2\n\n23) TeeTeeTee: Trade R3 G3 Mercia\n\n24) wil: Build Y2 Wil\n\n25) TeeTeeTee: Move Y1 Teeteetee Mercia\n\n26) wil: Sacrifice Y1 Wil\nDiscover R3 Gee2 G3 G3\n\n27) TeeTeeTee: Build R3 Mercia\n\n28) wil: Build G1 Wil\n\n29) TeeTeeTee: Move R3 Mercia Gee2\n\n30) wil: Build Y1 Wil\n\n31) TeeTeeTee: Build Y2 Mercia\n\n32) wil: Discover Y2 Wil G2 Gtoo\n\n33) TeeTeeTee: Move Y1 Mercia G2\n\n34) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 Gtoo\nBuild Y3 Gtoo\n\n35) TeeTeeTee: Trade R3 G3 Teeteetee\n\n36) wil: Sacrifice Y1 Wil\nDiscover Y3 Gtoo R3 R3\n\tTeeTeeTee: I guess we'll stick with the original plan, after all.\n\twil: I wish I had an original plan...\n\n37) TeeTeeTee: Attack R1 Gee2\n\twil: I think this will leave me one up...\n\n38) wil: Build G1 Wil\n\tTeeTeeTee: Hah! Well done.\n\twil: not quite well done...you made the best response... I sure was hopin you'd miss it!!\n\n39) TeeTeeTee: Build G1 Mercia\n\n40) wil: Move G1 Wil Gee2\n\tTeeTeeTee: I have to say, I was quite hoping that you'd miss that last move.\n\twil: LOL....that is what I was going to say... I was at the cusp, on the edge...of actually winning a game against you...now it is back to the foxhole to see if I can hold out against your far superior prowess!\n\n41) TeeTeeTee: Attack G1 Gee2\n\n42) wil: Discover Y2 Wil B2 B2\n\n43) TeeTeeTee: Build Y1 G2\n\n44) wil: Move Y2 Gtoo G3\n\tTeeTeeTee: ...? I don't get it.\n\twil: I went to the wrong g2, foiled by my own devices...didn't check where it went and went to another game to make a move...CRAP\n\twil: CRAP\n\tTeeTeeTee: Ahhhh... I'm actually sorry to hear that it was a typo. I don't believe that there's the opportunity to double-undo, is there?\r\n\r\nIf you like, I can wait a little longer before responding to moves in the future... but, I have to say, you should always double-check that you're moving to the right place before submitting orders. (Also, perhaps you should give more original names to your planets? :P)\n\tTeeTeeTee: Ohhh, very well. \r\nWould you like me to undo my last move, so that you can (potentially) undo your last move, and move your ship to the correct g2 (gtoo)?\n\twil: nope...I screwed up... what a royal mistake!\r\n\n\tTeeTeeTee: Very well. (If it's any consolation, I reckon that moving the g1 to gtoo would've been a mistake, too - albeit not as drastic.)\n\twil: I don't think you would have wasted y2 g3 g1 to catastrophe, it would have given me the opp to get back a factory and set you further behind...\n\n45) TeeTeeTee: Trade R2 B2 Teeteetee\n\n46) wil: Build R2 G3\n\n47) TeeTeeTee: Sacrifice Y2 Mercia\nMove R1 Gee2 G3\nMove R2 G2 G3\nCatastrophe G3 Red\n\n48) wil: Build Y2 G3\n\n49) TeeTeeTee: Sacrifice G3 Mercia\nBuild G3 Mercia\nBuild R1 Gee2\nBuild R2 G2\n\n50) wil: Move Y2 G3 Teeteetee\n\n51) TeeTeeTee: Sacrifice R1 Gee2\nAttack Y2 Teeteetee\n\n52) wil: Sacrifice Y2 B2\nMove Y2 G3 Teeteetee\nMove Y3 R3 Teeteetee\nCatastrophe Teeteetee Y\n\n53) TeeTeeTee: Sacrifice G3 Mercia\nBuild G3 Mercia\nBuild G3 Teeteetee\nBuild R1 Gee2\n\n54) wil: Build Y1 Wil\n\n55) TeeTeeTee: Trade B2 Y2 Teeteetee\n\twil: I had a chance before I gave away that little green one...\n\n56) wil: Trade Y3 B3 Wil\n\n57) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove G3 Teeteetee Wil\nMove R3 Gee2 Wil\n\n\twil: and there it is...congrats..\n\tTeeTeeTee: ... Well, this one was a complex game. I've not played many games where I've both failed to monopolise a colour and been behind on large ships - it was not at all clear who was winning for most of this game, despite your lead on large ships.\r\n\r\nMy mistake in this game was not trying to cut you off from getting the large y3's, as I assuming that you couldn't build them without losing one of them to catastrophe immediately. It was only after you built the three large yellows that I saw that I'd have lost by `bluebird' if I'd done that: I couldn't destroy all three y3's in the same turn. (Also, as I said earlier, your response to "18: Trade r3 g3 TeeTeeTee" was a strong move.)\r\n\r\nI think you made three major mistakes in this game. Firstly, I think that your moving that g1 out was a weak move, but not for the reason you thought it was. At this stage, you could only win the game by setting up a doomsday device, which you had the means to do - but you needed to trade that g1 for a b1 to start it, and you couldn't do that once you moved it out (even if you had moved it to the correct place!) I suppose now that you were planning to move the g1 to gtoo and on the next turn destroy my greens at Mercia by catastrophe? You'd have got a large green from that, but would no longer have had all the y3s, which was your greatest advantage in this game.\r\n\r\nSecondly, I think "23: ... Build r2 g3" was not a good move, as it gave me the chance to monopolise the reds, which I'd been threatening to do all game. I would not have been able to invade, though, as I didn't have a y2 or a y3: but you would have had to have given one of them up to attack me. You could perhaps have scratched out a draw or even an unlikely win if you'd got some blue ships and blew up one of my homeworlds, but then you played "25 ... Move y2 g3 TeeTeeTee". I think that was your third mistake, and the move that lost you the game: without your yellows, you no longer had a chance to set up a doomsday machine before I invaded. You needed to try and blow up my blue homeworld first.\r\n\r\nOnce again, thanks for the game! This was definitely a tough one.\n\twil: thanks for the feedback, sincerely appreciated!!\n\nHomeworlds Online (SDG# 26358)\nStarted: 2014.10.22, Ended: 2014.11.5\nParticipants: hellajoey (S), JaredL (N)\nWinner: hellajoey\n\n1) JaredL: Homeworld Y1 B2 G3\n\n2) hellajoey: Homeworld B2 G3 Y3\n\n3) JaredL: Build G1 Jaredl\n\n4) hellajoey: Build Y1 Hellajoey\n\n5) JaredL: Discover G1 Jaredl B3 Blue3\n\n6) hellajoey: Build Y1 Hellajoey\n\n7) JaredL: Build G1 Blue3\n\n8) hellajoey: Discover Y1 Hellajoey G1 Grun\n\n9) JaredL: Build G2 Jaredl\n\n10) hellajoey: Build Y2 Hellajoey\n\n11) JaredL: Build G2 Blue3\n\n12) hellajoey: Build Y2 Grun\n\n13) JaredL: Trade G2 Y2 Blue3\n\n14) hellajoey: Discover Y2 Grun B3 Blooth\n\n15) JaredL: Discover G1 Blue3 B2 Blue2\n\n16) hellajoey: Trade Y2 G2 Blooth\n\n17) JaredL: Sacrifice G3 Jaredl\nBuild G2 Blue2\nBuild G3 Blue3\nBuild G3 Jaredl\n\n18) hellajoey: Discover Y1 Hellajoey R1 Reedle\n\n19) JaredL: Trade G3 R3 Blue3\n\n20) hellajoey: Build G3 Blooth\n\n21) JaredL: Sacrifice Y2 Blue3\nMove G2 Blue2 Blooth\nMove G1 Blue2 Blooth\nCatastrophe Blooth G\n\n22) hellajoey: Trade Y3 G3 Hellajoey\n\n23) JaredL: Trade G2 Y2 Jaredl\n\n24) hellajoey: Trade Y2 R2 Hellajoey\n\n25) JaredL: Build Y2 Jaredl\n\n26) hellajoey: Build Y2 Grun\n\n27) JaredL: Move Y2 Jaredl Blue3\n\n28) hellajoey: Discover Y2 Grun G2 Grande\n\n29) JaredL: Trade Y2 G2 Jaredl\n\n30) hellajoey: Build Y2 Grun\n\n31) JaredL: Sacrifice G3 Jaredl\nBuild G1 Blue3\nBuild G2 Blue3\nBuild G3 Jaredl\n\n32) hellajoey: Build Y3 Grande\n\n33) JaredL: Discover G2 Blue3 R1 Red1\n\n34) hellajoey: Move Y3 Grande Red1\n\n35) JaredL: Trade G3 Y3 Jaredl\n\n36) hellajoey: Discover Y2 Grun G3 Grown\n\n37) JaredL: Sacrifice Y3 Jaredl\nMove G2 Red1 Hellajoey\nMove G1 Blue3 Red1\nMove G1 Red1 Hellajoey\nCatastrophe Hellajoey G\n\n38) hellajoey: Move Y3 Red1 Hellajoey\n\n39) JaredL: Move R3 Blue3 Jaredl\n\n40) hellajoey: Build Y3 Grown\n\n41) JaredL: Build Y3 Blue3\n\n42) hellajoey: Sacrifice Y2 Grown\nMove Y1 Grun Blue3\nMove Y1 Reedle Blue3\nCatastrophe Blue3 Yellow\n\n43) JaredL: Build G1 Blue3\n\n44) hellajoey: Trade Y3 R3 Hellajoey\n\n\nHomeworlds Online (SDG# 26361)\nStarted: 2014.10.23, Ended: 2014.12.17\nParticipants: hellajoey (S), abridged (N)\nWinner: hellajoey\n\n1) abridged: Homeworld B1 R2 G3\n\n2) hellajoey: Homeworld B1 G3 Y3\n\n3) abridged: Build G1 Abridged\n\n4) hellajoey: Build Y1 Hellajoey\n\n5) abridged: Build G1 Abridged\n\n6) hellajoey: Trade Y1 B1 Hellajoey\n\n7) abridged: Trade G1 Y1 Abridged\n\n8) hellajoey: Build Y1 Hellajoey\n\n9) abridged: Discover G1 Abridged B3 Dracut\n\n10) hellajoey: Build B2 Hellajoey\n\thellajoey: Are you enjoying this game, Jake? You got a little whirlwinded in your first just like I did in my first 2. That will pass though. I think there's probably about 3 or 4 games worth of concepts to get acquainted with. Anyway, hope it's enjoyable enough for you. Also, I'm mostly just testing out this message feature right now ;)\n\tabridged: I feel like I'm getting the hang of the rules. They're still not fully internalized -- e.g. I just tried to create a blue ship, and then realized I couldn't -- but I'm getting there. I'm definitely enjoying it. I got creamed in game 1, but it was clear at various points what mistakes I'd made, which always makes me want to play more.\n\n11) abridged: Build G1 Abridged\n\n12) hellajoey: Trade B2 G2 Hellajoey\n\n13) abridged: Discover G1 Abridged B3 Overthere\n\n14) hellajoey: Build B2 Hellajoey\n\n15) abridged: Build G1 Abridged\n\n16) hellajoey: Discover B2 Hellajoey G2 Grun\n\n17) abridged: Sacrifice G3 Abridged\nBuild G2 Dracut\nBuild G3 Abridged\nBuild G3 Overthere\n\n18) hellajoey: Build B2 Grun\n\n19) abridged: Sacrifice G3 Abridged\nBuild G3 Abridged\nBuild Y1 Abridged\nBuild Y2 Abridged\n\n20) hellajoey: Sacrifice G2 Hellajoey\nBuild B2 Hellajoey\nBuild B3 Grun\n\n21) abridged: Trade Y1 R1 Abridged\n\n22) hellajoey: Trade B3 R3 Grun\n\n23) abridged: Move R1 Abridged Overthere\n\n24) hellajoey: Build B3 Grun\n\n25) abridged: Sacrifice G2 Dracut\nBuild G2 Overthere\nBuild G2 Abridged\n\n26) hellajoey: Move Y1 Hellajoey Grun\n\n27) abridged: Move Y1 Abridged Overthere\n\n28) hellajoey: Trade B3 R3 Grun\n\n29) abridged: Trade G3 B3 Abridged\n\thellajoey: By the by, it was noticed in my last game that if a person activates the "take back move" option there is some strange behavior that it's tempting to imagine is a glitch with the interface: the opponent is presented with a pair of buttons that seem to allow either of forced victory or a forced end of game. Jared and I decided on a gentleman's agreement to just never click either of these buttons. I'd like to make the same arrangement with you if you're down :)\n\n30) hellajoey: Move R3 Grun Dracut\n\n31) abridged: Sacrifice G3 Overthere\nBuild G3 Overthere\nBuild G3 Abridged\nBuild R1 Overthere\n\n32) hellajoey: Attack G1 Dracut\n\n\nHomeworlds Online (SDG# 26350)\nVariants: "Unrated"\nStarted: 2014.10.25, Ended: 2014.11.27\nParticipants: Northman01 (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n\twil: first time you say?\n\twil: I give you the opportunity to have banker...as I should\n\tNorthman01: sorry man, I've read the rules but this game interface is odd...i'm not writing the orders properly i guess..can't make a move..\n\twil: no worries I just write the first letter H for homeworlds... so H (star size like) R2 (second of your binary star like ) B1 (and then your ship size) G3 ask any question you like along the way!\n\twil: I'm hoping you find your way back...I'll work with you on learning the correct input...it is confusing, but quick learning curve once you understand.\n\nHomeworlds Online (SDG# 26287)\nVariants: "Hard time"\nStarted: 2014.10.28, Ended: 2014.11.4\nParticipants: wil (S), dsabremaster (N)\nWinner: wil\n\n1) dsabremaster: Homeworld Y3 G1 B3\n\n2) wil: Homeworld B3 Y2 G3\n\twil: thanx for the game!!\n\twil: interesting open, where do you play?\n\n3) dsabremaster: Build B1 Dsabremaster\n\n4) wil: Build G1 Wil\n\tdsabremaster: I play with friends when I can find a partner, which is rare.\n\twil: ah...live games? so you have pyramids? Yeah, we have to teach the games to others, I'm finding chess players most interested...\n\n5) dsabremaster: Discover B1 Dsabremaster G2 Gamma 37\n\tdsabremaster: Yeah I have pyramids. I think they're great; lots of different games. Chess players makes sense; this is like the spiritual successor in my opinion.\n\n6) wil: Build G1 Wil\n\twil: agree...agree...agree...agree... I am in USA...DC area... You? and how did you find the games??\n\n7) dsabremaster: Build B1 Gamma\n\tdsabremaster: Missouri. A cousin introduced me to homeworlds, and I looked up all the other games through looneylabs.com.\n\n8) wil: Discover G1 Wil Y1 Y1\n\twil: very cool...I have a friend in Columbia, actually a little south, headed to Jeff City\r\nI was introduced first thru Zendo..my daughter played it and wanted it.\n\n9) dsabremaster: Build B1 Dsabremaster\n\n10) wil: Build G2 Y1\n\tdsabremaster: I've wanted to try zendo but haven't had the pyramids, time or players.\n\n11) dsabremaster: Trade B1 Y1 Gamma\n\n12) wil: Build G2 Wil\n\n13) dsabremaster: Build B1 Gamma\n\twil: zendo is fun, and people enjoy it that like riddles... I also like volcano/caldera... what other games do you play?\n\tdsabremaster: I've played a little martian chess, as well as some zark city.\n\n14) wil: Move G1 Y1 Gamma\n\n15) dsabremaster: Move B1 Gamma Y1\n\twil: I haven't tried any martian chess yet ( I think they have it here, but I've only played HW on this site... I came because I was told this was a great place to learn..and I've learned by losing...lots...I'm still losing... but to better players!)\n\n16) wil: Trade G3 R3 Wil\n\tdsabremaster: Nothing has been quite as endearing to me as HW, because it's so different every time.\n\n17) dsabremaster: Discover B1 Gamma G3 Aspire\n\twil: no kidding, no two games even close to alike... intergalactic chess, control of the universe!\n\n18) wil: Sacrifice R3 Wil\nAttack Y1 Gamma\nAttack B1 Y1\nPass\n\n19) dsabremaster: Build B2 Aspire\n\twil: that was downright mean of my big red ship to do that...glad that angry guy is gone..\n\tdsabremaster: Huh. Didn't see that coming. Usually not advisable to sacrifice your big ship... unless you're ready to build it back next turn of course...\n\n20) wil: Build G3 Wil\n\twil: Yeah, you got that right... risky business...but I have a correction coming..\n\n21) dsabremaster: Trade B1 R1 Dsabremaster\n\twil: If you didn't move out, I was going to grow two greens and blow up the star... since you moved out I did the next best thing.\n\tdsabremaster: That's what I WAS expecting...\n\n22) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Y1\nBuild Y1 Gamma\n\n23) dsabremaster: Trade B2 Y2 Aspire\n\n24) wil: Build Y2 Gamma\n\n25) dsabremaster: Move Y2 Aspire Gamma\nCatastrophe Gamma Y\n\n26) wil: Trade G3 Y3 Y1\n\n27) dsabremaster: Build B1 Dsabremaster\n\tdsabremaster: Now the question is, was that a mistake on your part, or was that your intention all along....\n\twil: It was my intention. The I wanted to insure you didn't get a big one at this time...If you didn't do it to me, I was going to do it to you..\n\n28) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Y1\nBuild B2 Y1\n\n29) dsabremaster: Build B2 Aspire\n\n30) wil: Discover B2 Y1 Y2 Y2\n\n31) dsabremaster: Trade B3 Y3 Dsabremaster\n\n32) wil: Sacrifice G3 Y1\nBuild B2 Y1\nBuild B3 Y1\nBuild B3 Y2\n\n33) dsabremaster: Move R1 Dsabremaster Gamma\n\n34) wil: Sacrifice Y3 Y1\nMove G1 Gamma Dsabremaster\nMove B1 Y1 Aspire\nMove B2 Y1 Aspire\nCatastrophe Aspire B\n\n35) dsabremaster: Sacrifice R1 Gamma\nAttack G1S Dsabremaster\n\n36) wil: Trade G1 R1 Wil\n\n37) dsabremaster: Trade Y3 R3 Dsabremaster\n\twil: looks like you got plenty of computer skillz! Ever built an app, or had your students build apps?\n\n38) wil: Trade G2 Y2 Wil\n\tdsabremaster: No, I haven't. But I've spent quite a lot of time around computers, mostly playing games.\n\n39) dsabremaster: Discover G1 Dsabremaster B2 Lagoon\n\n40) wil: Sacrifice B2 Y2\nTrade B3 G3 Y2\nTrade G3 R3 Wil\n\twil: looks like I have prolonged the game by blowing so much up...\n\n41) dsabremaster: Build R1 Dsabremaster\n\tdsabremaster: Perhaps. I just wish you had affected the outcome!\n\twil: lol\r\n\n\n42) wil: Move B3 Y1 Y2\n\n43) dsabremaster: Build G1 Lagoon\n\n44) wil: Sacrifice Y2 Wil\nMove G3 Y2 Dsabremaster\nMove B3 Y2 Dsabremaster\n\n45) dsabremaster: Attack G3S Dsabremaster\n\n46) wil: S R3 Wil\nAttack R3 Dsabremaster\nAttack R1 Dsabremaster\nAttack G3 Dsabremaster\n\twil: We have seen that your galaxy needs help and have sent in two of our top change and grow ships to adjust your economy, correct your social mores, and make you a better civilization.... because WE know better, and we can.\n\tdsabremaster: Alas, our lack of foresight has been our downfall not once, but twice. We will not underestimate you again...\n\n47) dsabremaster: Build B1 Dsabremaster\n\twil: My people came in peace to enlighten, and you attack with your big mean ship? Really?? While it is against our wishes we are forced to respond in kind...\n\n48) wil: Sacrifice R3 Dsabremaster\nAttack B1 Dsabremaster\nAttack B1 Dsabremaster\nPass\n\twil: that was the old, you can have one I get three swap. it also works with the you get two I get three deal or even 1/2... not beneficial to have your big red in the homeworld where it can't be utilized... but I'm afraid in this game I gotcha way early, and then used my factory extensively...building a factory is a powerful tool, it is only safe to not have one when the opponent can't get one...\n\twil: I thank you for the game... I like to play, and don't wish to be obnoxious, so feel free to challenge me to as many or few games as you'd like. It is all about the learning and sharing..\n\tdsabremaster: Yeah, it's been a while since I've played, and I'm not quite back in the mindset to anticipate those things again yet. I'd like to try again, although I think I'd change my opening setup slightly and go for a Banker instead of a Goldilocks. Not sure if that's enough to deal with what you started with (which I think is one of the most solid starts in the game), but I'd be interestd to try.\n\n\twil: Yeah, I'd love it if we had a program which could say....let us back up to that mistake, or turning point and try it differently...that would be a dream (oh and the live action app where you could watch the other person move and you just slid the pyramids with your fingers on your smart phone...\n\nHomeworlds Online (SDG# 26386)\nVariants: "Hard time"\nStarted: 2014.10.30, Ended: 2014.11.4\nParticipants: fogus (S), dsabremaster (N)\nWinner: dsabremaster\n\n1) dsabremaster: Homeworld G3 B2 Y3\n\n2) fogus: Homeworld B1 Y2 G3\n\twil: ah, the elusive three player game...they are rarely found, and even rarer to finish...\n\twil: pardon me...I was lost...didn't know where i was....leaving now...\n\n3) dsabremaster: Build Y1 Dsabremaster\n\n4) fogus: Build G1 Fogus\n\n5) dsabremaster: Discover Y1 Dsabremaster B1 Venture\n\n6) fogus: Build G1 Fogus\n\n7) dsabremaster: Trade Y1 G1 Venture\n\n8) fogus: Trade G1 R1 Fogus\n\n9) dsabremaster: Build Y1 Dsabremaster\n\n10) fogus: Discover R1 Fogus Y3 Plug\n\n11) dsabremaster: Build Y1 Dsabremaster\n\n12) fogus: Move R1 Plug Venture\n\n13) dsabremaster: Sacrifice Y1 Dsabremaster\nDiscover G1 Venture B3 Azure\n\n14) fogus: Trade G1 Y1 Fogus\n\n15) dsabremaster: Build Y1 Dsabremaster\n\n16) fogus: Move Y1 Fogus Azure\n\n17) dsabremaster: Build G1 Azure\n\n18) fogus: Move Y1 Azure Venture\n\n19) dsabremaster: Trade Y1 R1 Dsabremaster\n\n20) fogus: Discover R1 Venture Y3 Flipper\n\n21) dsabremaster: Discover Y1 Dsabremaster Y1 Hermes\n\n22) fogus: Move R1 Flipper Fogus\n\n23) dsabremaster: Build Y2 Dsabremaster\n\tfogus: sorry for the undo. i mistyped the moving ship\n\tdsabremaster: No problem.\n\n\tfogus: I made a HUGE mistake chasing you around early in the game. :( Live and learn I guess. :)\n\tdsabremaster: Yup. Hope to play again soon, thanks for the game!\n\nHomeworlds Online (SDG# 26395)\nStarted: 2014.10.30, Ended: 2014.12.11\nParticipants: jimbojimbojimbojimbo (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld B1 Y2 G3\n\n2) jimbojimbojimbojimbo: Homeworld G3 R2 Y3 *\n\n3) hellajoey: Build G1 Hellajoey\n\n4) jimbojimbojimbojimbo: Build Y1 Jimbojimbojimbojimbo\n\n5) hellajoey: Trade G1 B1 Hellajoey\n\n6) jimbojimbojimbojimbo: Discover Y1 Jimbojimbojimbojimbo G1 Kashif\n\tjimbojimbojimbojimbo: Now I wish I didn't name myself jimbojimbojimbojimbo\n\n7) hellajoey: Build B1 Hellajoey\n\tjimbojimbojimbojimbo: jimbo was taken by me 2,095 days ago on a prev. email addy\n\n8) jimbojimbojimbojimbo: Build Y1 Kashif\n\n9) hellajoey: Trade B1 Y1 Hellajoey\n\n10) jimbojimbojimbojimbo: Discover Y1 Kashif B3 Bongo_solo\n\n11) hellajoey: Build G1 Hellajoey\n\n12) jimbojimbojimbojimbo: Build Y2 Jimbojimbojimbojimbo\n\n13) hellajoey: Discover Y1 Hellajoey G3 Gruner\n\n14) jimbojimbojimbojimbo: Build Y2 Kashif\n\n15) hellajoey: Build Y3 Gruner\n\n16) jimbojimbojimbojimbo: Build Y3 Kashif\n\n17) hellajoey: Move Y1 Gruner Kashif\nCatastrophe Kashif Yellow\n\n18) jimbojimbojimbojimbo: Trade Y1 G1 Bongo_solo\n\n19) hellajoey: Trade G1 R1 Hellajoey\n\n20) jimbojimbojimbojimbo: Build G1 Bongo_solo\n\n21) hellajoey: Move R1 Hellajoey Bongo_solo\n\n\nHomeworlds Online (SDG# 26394)\nVariants: "Hard time"\nStarted: 2014.10.31, Ended: 2014.11.12\nParticipants: wil (S), dsabremaster (N)\nWinner: wil\n\n1) dsabremaster: Homeworld B1 G2 Y3\n\n2) wil: Homeworld G3 B1 B3 *\n\twil: I saw you posted a challenge....thought if interested we could play more than one game at a time...\n\n3) dsabremaster: Build Y1 Dsabremaster\n\n4) wil: Build B1 Wil\n\tdsabremaster: Why not. That one will probably be over soon anyway. :P\n\tdsabremaster: Speaking of interesting opens... Double blue?\n\twil: Yes, you actually have to * asterisk it, the system says you are NUTS...the only two colors required in your homeworld to get going are green to grow and blue to change... everynow and then I test that theory...making mistakes is how I learn...pushing the envelope is what I do..\n\n5) dsabremaster: Discover Y1 Dsabremaster G3 Garden\n\n6) wil: Trade B3 Y3 Wil\n\n7) dsabremaster: Build Y1 Garden\n\n8) wil: Build B2 Wil\n\n9) dsabremaster: Discover Y1 Garden B2 Lagoon\n\n10) wil: Trade B2 R2 Wil\n\n11) dsabremaster: Build Y1 Garden\n\n12) wil: Build R1 Wil\n\n13) dsabremaster: Build Y2 Garden\n\n14) wil: Move R2 Wil Lagoon\n\n15) dsabremaster: Move Y1 Lagoon Wil\n\n16) wil: Attack Y1 Wil\n\n17) dsabremaster: Build Y2 Dsabremaster\n\n18) wil: Move Y1 Wil Lagoon\n\n19) dsabremaster: Discover Y1 Garden B2 Meridian\n\n20) wil: Move R2 Lagoon Garden\n\n21) dsabremaster: Sacrifice Y1 Garden\nMove Y2 Garden Lagoon\n\n22) wil: Move Y1 Lagoon Garden\n\n23) dsabremaster: Trade Y2 G2 Dsabremaster\n\n24) wil: Build B2 Wil\n\n25) dsabremaster: Build G1 Dsabremaster\n\n26) wil: Discover B2 Wil Y2 Y2\n\n27) dsabremaster: Trade G1 R1 Dsabremaster\n\n28) wil: Trade Y3 G3 Wil\n\twil: ya got yourself a gun, yup mine was about to move again...\n\n29) dsabremaster: Build Y1 Dsabremaster\n\tdsabremaster: I had that feeling...\n\n30) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 Y2\nBuild B3 Y2\n\n31) dsabremaster: Move Y3 Dsabremaster Garden\n\n32) wil: Sacrifice B2 Y2\nTrade B3 R3 Y2\nTrade B3 Y3 Wil\n\n33) dsabremaster: Sacrifice G2 Dsabremaster\nBuild Y2 Meridian\nBuild Y3 Dsabremaster\n\twil: Moved your big ship outta the home world? You are going to have to pay for that!!\n\twil: But yeah, anytime anyone trades a big ship for another color (and they don't have a reason to avoid or can't build it right back next move) you gotta look...just got a g3? What are you going to build? Just got a R3 what are you going to attack? Just got a y3, what are you going to move? \n\tdsabremaster: We will see...\n\n34) wil: Discover R2 Garden G2 G2\n\n35) dsabremaster: Move Y3 Garden G2\n\twil: lol, this fool got in a hurry quit thinkin and gave you that big yellow!!\n\tdsabremaster: Always helpful when your opponent gets in a hurry...\n\twil: oh I rely on the mistakes of others to win in this game!\n\n36) wil: Build R1 G2\n\tdsabremaster: That's usually what it comes down to. The tricky part is that it can be the smallest mistake which starts a chain reaction that you can't recover from....\n\tdsabremaster: That's usually what it comes down to. The tricky part is that it can be the smallest mistake which starts a chain reaction that you can't recover from....\n\n37) dsabremaster: Sacrifice R1 Dsabremaster\nAttack R2S G2\n\twil: yes, like simply not taking the best of three good moves...but in this case...I simply blew it.\r\n\n\n38) wil: Build R1 G2\n\tdsabremaster: It can be very difficult to know what the actual best available move is until later.\n\n39) dsabremaster: Sacrifice R2 G2\nAttack R1S G2\nAttack R1S G2\n\twil: tru\n\n40) wil: Build R2 Wil\n\n41) dsabremaster: Move R1 G2 Wil\n\n42) wil: Attack R1 Wil\n\n43) dsabremaster: Build R2 G2\n\n44) wil: Move R1 Wil G2\n\n45) dsabremaster: Move R1 G2 Garden\n\n46) wil: Build R2 G2\n\n47) dsabremaster: Sacrifice R2 G2\nAttack R2S G2\nAttack Y1S Garden\n\tdsabremaster: Choices, choices...\n\n48) wil: Build B2 Wil\n\n49) dsabremaster: Trade Y1 G1 Dsabremaster\n\n50) wil: Discover B1 Wil G2 Gtoo\n\n51) dsabremaster: Sacrifice Y2 Meridian\nMove Y3 G2 Garden\nMove Y3 Garden Gtoo\n\n52) wil: Trade B1 G1 Gtoo\n\n53) dsabremaster: Build G1 Dsabremaster\n\n54) wil: Trade Y3 G3 Wil\n\n55) dsabremaster: Sacrifice Y2 Lagoon\nDiscover G1 Dsabremaster R3 Ares\nDiscover Y1 Meridian B3 Didact\n\tdsabremaster: Shoot, that's what I should have done....\n\n56) wil: Move B3 Y2 Ares\n\n57) dsabremaster: Sacrifice G1 Ares\nBuild R2 Garden\n\n58) wil: Build R3 G2\n\n59) dsabremaster: Move R1 Garden G2\nCatastrophe G2 R\n\n60) wil: Move R3 Y2 Garden\n\n61) dsabremaster: Sacrifice Y1 Garden\nMove R2 Garden Gtoo\n\n62) wil: Build G1 Gtoo\n\n63) dsabremaster: Sacrifice R2 Gtoo\nAttack G1S Gtoo\nAttack G1S Gtoo\n\n64) wil: Trade R1 Y1 Wil\n\n65) dsabremaster: Trade G1 R1 Dsabremaster\n\n66) wil: Move G3 Wil Gtoo\nCatastrophe Gtoo G\n\n67) dsabremaster: Trade Y1 G1 Didact\n\n68) wil: Build B1 Wil\n\tdsabremaster: *Epic Facepalm*\n\tdsabremaster: *Epic Facepalm*\n\tdsabremaster: I guess that's that.\n\n69) dsabremaster: Build G1 Didact\n\twil: We'll see how it goes, risky maneuver, now I got to get a big three back in my homeworld...\n\n70) wil: Trade B2 Y2 Wil\n\n71) dsabremaster: Build R1 Dsabremaster\n\tdsabremaster: Even if I lose, I have to say that this was a pretty intense game for a while there.\n\twil: That is one of the most interesting parts of the game how the universe reboots...\n\n72) wil: Sacrifice Y2 Wil\nMove R3 Garden Dsabremaster\nMove B3 Ares Dsabremaster\n\n73) dsabremaster: Build R1 Dsabremaster\nCatastrophe Dsabremaster Red\n\tdsabremaster: I usually find that, as in this case, there's too big a disparity in the resources controlled by players once a catastrophe takes place.\n\twil: yup, it is a powerful tool, and the reason to be careful of overpopulating a star with the star color...\r\n\n\n74) wil: Sacrifice R2 Wil\nAttack Y3 Dsabremaster\nPass\n\n\twil: well, not much of a universe left... thx for the game, I look forward to the next.\n\tdsabremaster: Ditto\n\twil: I just set up challenges in martian chess and volcano...the next pyramid games I am learning...\n\nHomeworlds Online (SDG# 26101)\nVariants: "Hard time"\nStarted: 2014.10.31, Ended: 2014.11.3\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 26383)\nVariants: "Hard time"\nStarted: 2014.11.1, Ended: 2014.11.28\nParticipants: Glutnix (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) Glutnix: Homeworld G3 B2 Y3\n\twil: thank you for the game! \n\twil: If unfamiliar with the game don't hesitate to ask questions.\n\n3) wil: Build G1 Wil\n\tGlutnix: Hi wil, thanks! I've never played before, so please offer recommendations or corrections, and I will accept them humbly!\n\n4) Glutnix: Build Y1 Glutnix\n\twil: So far so good, you made a good opening... \n\n5) wil: Trade G1 Y1 Wil\n\n6) Glutnix: Discover Y3 Glutnix R1 Virginmary\n\twil: the rule for me there was...you have a yellow, I should have a the capability to create more yellow as well... and since there was only one small one left, I better get it now before you corner the market on fuel to move about the universe...\n\twil: while the game is about taking over the universe...one way to do it is a monopoly of any economy, ability to horde and create a false shortage...\n\n7) wil: Build Y2 Wil\n\n8) Glutnix: Build Y2 Glutnix\n\n9) wil: Discover Y1 Wil G2 G2\n\n10) Glutnix: Trade Y2 G2 Glutnix\n\n11) wil: Build Y2 G2\n\n12) Glutnix: Build G1 Glutnix\n\n13) wil: Trade Y2 R2 Wil\n\n14) Glutnix: Move G1 Glutnix Virginmary\n\n15) wil: Discover Y2 G2 G1 G1\n\n16) Glutnix: Move Y3 Virginmary Glutnix\n\n17) wil: Build Y2 G2\n\n18) Glutnix: Discover Y1 Glutnix G1 Oldfashioned\n\twil: your current trouble... you can't build a yellow at home or I'll send one in and catastrophe the bunch....if I move a drone into the mother of G!d system I can take it over... the game has many moving parts..\n\n19) wil: Sacrifice G3 Wil\nBuild Y2 G1\nBuild Y3 G1\nBuild Y3 G2\n\n20) Glutnix: Move Y1 Oldfashioned G2\nCatastrophe G2 Y\n\twil: New troubles..while your g1 is still at risk...the bigger trouble is at home...no gun...no red economy...no department of defense...I move in with a yellow queen and you are without defense.\n\twil: I learned by losing lots (lots) of games and watching these various attacks come at me from one direction after another...\n\n21) wil: Sacrifice Y2 G1\nDiscover Y2 G1 G2 G2\nMove Y2 G2 Wil\n\n22) Glutnix: Build G1 Glutnix\n\twil: ya done good, I wasn't thinkin right!!\n\n23) wil: Move Y3 G1 Glutnix\n\tGlutnix: Thanks! If I lose this game, at least I caused a catastrophe :)\n\n24) Glutnix: Trade G2 R2 Glutnix\n\n25) wil: Sacrifice R2 Wil\nAttack R2 Glutnix\nAttack Y3 Glutnix\n\twil: yes you did, you changed my whole universe!\n\n\twil: risky behavior me leaving and attacking like that, but it appeared I would stay one step ahead...so I proceeded...\n\twil: keep playin, keep challenging, this is a great game... any questions...ask.\n\twil: If you look at my record I've played a lot of homeworlds....and one just over half of them...the first 20 I probably lost...but each time watched different strategies come at me, and eventually learned them. I like the way this game plays, I've always liked chess and actually prefer it over chess now... I hope you continue playing it and enjoy it as much as I.\n\nHomeworlds Online (SDG# 26181)\nStarted: 2014.11.4, Ended: 2015.2.1\nParticipants: ts52 (S), wil (N), dsabremaster (E)\nWinner: ts52\n\n1) wil: Homeworld B3 G1 Y3\n\n2) dsabremaster: Homeworld B2 Y2 G3 *\n\n3) ts52: H Y1 B2 G3\n\n4) wil: Build Y1 Wil\n\twil: Oh my, you've got a twin star...we are in a short universe!!\n\n5) dsabremaster: Build G1 Dsabremaster\n\n6) ts52: Build G1 Ts52\n\tdsabremaster: I guess that makes us next-door neighbors.\n\twil: I've yet to actually conclude on of these three or four person games online...done so in person, but since they end up binary....to me that is really the best way for this game.\n\tts52: b g1 ts52\n\tts52: oops, sorry\n\n7) wil: Build Y1 Wil\n\n8) dsabremaster: Trade G1 R1 Dsabremaster\n\n9) ts52: Trade G1 R1 Ts52\n\n10) wil: Trade Y3 R3 Wil\n\tts52: Sorry for the delay\n\n11) dsabremaster: Build G1 Dsabremaster\n\n12) ts52: Build G1 Ts52\n\n13) wil: Build Y1 Wil\n\n14) dsabremaster: Discover G1 Dsabremaster B1 Kepler\n\n15) ts52: Build R1 Ts52\n\n16) wil: Discover Y1 Wil G2 G2\n\n17) dsabremaster: Build G1 Dsabremaster\n\n18) ts52: Build G2 Ts52\n\n19) wil: Build Y2 Wil\n\n20) dsabremaster: Build G2 Kepler\n\n21) ts52: Discover G2 Ts52 B3 Grover\n\n22) wil: Build R1 Wil\n\n23) dsabremaster: Trade G2 Y2 Kepler\n\n24) ts52: Build G2 Grover\n\n25) wil: Trade R3 G3 Wil\n\n26) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G2 Kepler\nBuild G3 Kepler\nBuild G3 Dsabremaster\n\n27) ts52: Move R1 Ts52 Grover\n\n28) wil: Build R2 Wil\n\n29) dsabremaster: Sacrifice G3 Kepler\nBuild G3 Kepler\nBuild Y2 Kepler\nBuild R2 Dsabremaster\n\n30) ts52: Build R2 Ts52\n\n31) wil: Build Y3 G2\n\n32) dsabremaster: Sacrifice Y2 Kepler\nDiscover G2 Kepler R2 Aurora\nMove Y2 Kepler Aurora\n\n33) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Ts52\nBuild R3 Grover\n\n34) wil: Build R3 Wil\n\n35) dsabremaster: Discover R1 Dsabremaster Y3 Telas\n\n36) ts52: Move R3 Ts52 Telas\n\n37) wil: Move G3 Wil Aurora\n\n38) dsabremaster: Sacrifice Y2 Aurora\nDiscover G2 Aurora B3 Abyss\nMove R1 Telas Kepler\n\n39) ts52: Sacrifice G2 Grover\nBuild G2 Grover\nBuild R3 Telas\n\n40) wil: Build Y2 G2\n\n41) dsabremaster: Trade G2 Y2 Abyss\n\n42) ts52: Trade R3 Y3 Grover\n\n43) wil: Sacrifice Y2 G2\nMove G3 Aurora Abyss\nMove R2 Wil G2\n\n44) dsabremaster: Move Y2 Abyss Kepler\n\twil: I think we are about the longest running multiplayer hw i've been in...\n\tdsabremaster: Sorry for the Delay\n\n45) ts52: Discover R3 Telas Y2 Bigbird\n\n46) wil: Build Y3 G2\n\n47) dsabremaster: Move Y2 Kepler G2\nCatastrophe G2 Yellow\n\n48) ts52: Sacrifice G2 Grover\nBuild R2 Bigbird\nBuild R3 Grover\n\n49) wil: Build G2 Abyss\n\n50) dsabremaster: Trade G1 Y1 Kepler\n\n51) ts52: Move R3 Grover G2\n\n52) wil: Move R1 Wil G2\n\n53) dsabremaster: Build Y2 Kepler\n\n54) ts52: Attack R2N G2\n\n55) wil: Discover Y1 Wil G2 Gee2\n\twil: d y1 wil g2 gee2\n\n56) dsabremaster: Discover G1 Dsabremaster Y3 Spiral\n\twil: always feel silly when I do that....\n\n57) ts52: Build Y3 Grover\n\n58) wil: Sacrifice Y1 Wil\nMove R1 G2 Abyss\n\n59) dsabremaster: Build G1 Dsabremaster\n\n60) ts52: Move Y3 Grover G2\n\n61) wil: Build Y1 Gee2\n\n62) dsabremaster: Move G1 Dsabremaster Spiral\n\n63) ts52: Move G1 Ts52 Telas\n\n64) wil: Move Y1 Gee2 Abyss\n\n65) dsabremaster: Discover Y1 Kepler B2 Orion\n\n66) ts52: Move R3 G2 Spiral\n\n67) wil: Trade Y1 B1 Abyss\n\n68) dsabremaster: Move G1 Spiral Orion\n\n69) ts52: Attack G1E Spiral\n\n70) wil: Build Y1 Gee2\n\n71) dsabremaster: Trade Y1 B1 Orion\n\n72) ts52: B Y1 G2\n\n73) wil: Move Y1 Gee2 Abyss\n\n74) dsabremaster: Sacrifice G1 Orion\nBuild G1 Kepler\n\n75) ts52: Move R3 Spiral Orion\n\n76) wil: Move B1 Abyss Gee2\n\n77) dsabremaster: Sacrifice G3 Kepler\nBuild G3 Kepler\nBuild B1 Orion\nBuild B2 Orion\n\n78) ts52: Sacrifice Y1 G2\nMove R3 Orion Spiral\nCatastrophe Orion Blue\n\n79) wil: Sacrifice G3 Abyss\nBuild G3 Abyss\nBuild Y1 Abyss\nBuild B1 Gee2\n\n80) ts52: Move R3 Spiral Kepler\n\twil: another multiplayer game bites the dust...I'm gonna remove this from challenges....we so rarely get to the end of them.\n\tts52: Might just be delayed over the holidays. I've been remiss in making my plays in other games.\n\twil: yup...tis the season of the reason not to end games prematurely...\r\n\n\n81) wil: Move G2 Abyss Dsabremaster\n\twil: now this is a fine mess..\n\tts52: d'oh! sorry everyone. moving now.\n\tts52: oh, didn't realize he resigned.. yeah, this will be interesting\n\n82) ts52: A G3E Kepler\n\n83) wil: Move G2 Dsabremaster Spiral\n\twil: What are you toying with that other game? You never go that easy on me...\n\n84) ts52: M R3 Bigbird Spiral\n\n85) wil: Move G3 Abyss Dsabremaster\n\n86) ts52: Attack G2N Spiral\n\n87) wil: Discover B1 Gee2 B3 B3\n\n88) ts52: Attack Y2E Kepler\n\n89) wil: Sacrifice R1 Abyss\nAttack R2E Dsabremaster\n\twil: I've discontinued my challenge on multiplayer...I like binary so much better...\n\n90) ts52: Attack R1E Kepler\n\tts52: Yeah, I definitely prefer binary...\n\n91) wil: Attack G3E Dsabremaster\n\n92) ts52: Move R3 Kepler Abyss\n\n93) wil: Move B1 Gee2 Abyss\n\n94) ts52: Attack Y1N Abyss\n\n95) wil: Sacrifice G3 Dsabremaster\nBuild B1 Abyss\nBuild B2 Abyss\nBuild B2 B3\nCatastrophe Abyss B\n\n96) ts52: Build G3 Telas\n\n97) wil: Move Y1 Gee2 B3\n\n98) ts52: Sacrifice G3 Telas\nBuild G2 Grover\nBuild Y1 Kepler\nBuild G3 Telas\n\n99) wil: Move G3 Dsabremaster B3\n\n100) ts52: Sacrifice G3 Telas\nBuild G3 Telas\nBuild R1 G2\nBuild R3 Bigbird\n\n101) wil: Move B1 B3 Ts52\n\n102) ts52: Attack B1N Ts52\n\n103) wil: Build Y1 B3\n\n104) ts52: Move B1 Ts52 Telas\n\n105) wil: Build B1 B3\n\n106) ts52: Move B1 Telas G2\n\n107) wil: Move B1 B3 Dsabremaster\n\twil: You are like a cat playing with a half dead mouse...when are you gonna put me outta my misery?\n\n108) ts52: Move R3 Telas Dsabremaster\n\tts52: Sorry. I'll focus on ending this. Been on vacation...\n\twil: no worries...you've been moving....just not in for the kill...I think your intending on owning every ship before you take me out...\n\twil: Where did you go on holiday?\n\n\twil: very cool.... memories are worth making...\n\twil: there was just no getting anywhere here... You've had me for a while and you couldn't even make a mistake disasterous enough for me to catch up.\n\tts52: Fair enough. Thanks for the game!\n\twil: thank you\n\nHomeworlds Online (SDG# 26419)\nVariants: "Unrated"\nStarted: 2014.11.6, Ended: 2014.11.13\nParticipants: fogus (S), dsabremaster (N)\nWinner: fogus\n\n1) dsabremaster: Homeworld G1 R2 B3\n\n2) fogus: Homeworld B1 Y2 G3\n\n3) dsabremaster: Build B1 Dsabremaster\n\n4) fogus: Build G1 Fogus\n\n5) dsabremaster: Trade B1 G1 Dsabremaster\n\tfogus: Thanks (again) for the game. I'll try my best to provide a more convincing challenge this time. \n\tdsabremaster: No problem. I actually have more fun when I don't have to worry that any move I make might be the one that dooms me... \n\n6) fogus: Build G2 Fogus\n\tfogus: That's part of the reason why I tend to only play unrated games on this site. It's too easy to get stressed about ratings and such.\n\n7) dsabremaster: Build G2 Dsabremaster\n\n8) fogus: Discover G1 Fogus Y3 Turtle\n\n9) dsabremaster: Trade G1 Y1 Dsabremaster\n\n10) fogus: Build G1 Fogus\n\n11) dsabremaster: Discover G2 Dsabremaster R3 Requiem\n\n12) fogus: Trade G1 R1 Fogus\n\n13) dsabremaster: Build Y1 Dsabremaster\n\n14) fogus: Build R1 Fogus\n\n15) dsabremaster: Build B1 Dsabremaster\n\n16) fogus: Move G3 Fogus Requiem\n\n17) dsabremaster: Build G1 Requiem\n\n18) fogus: Sacrifice G3 Requiem\nBuild G2 Turtle\nBuild G3 Fogus\nBuild G3 Turtle\n\tdsabremaster: I think you might have jumped the gun there, just a little.\n\n19) dsabremaster: Sacrifice Y1 Dsabremaster\nDiscover G2 Requiem Y2 Sigma-2\n\n20) fogus: Move G3 Turtle Sigma-2\n\tdsabremaster: Or maybe I jumped the gun in thinking that you had. O.o\n\n21) dsabremaster: Build G3 Requiem\n\n22) fogus: Sacrifice R1 Fogus\nAttack G2 Sigma-2\n\n23) dsabremaster: Move B1 Dsabremaster Requiem\n\n24) fogus: Build R1 Fogus\n\n25) dsabremaster: Sacrifice G3 Requiem\nBuild G3 Requiem\nBuild B1 Dsabremaster\nBuild B2 Requiem\n\n26) fogus: Trade G2 Y2 Fogus\n\n27) dsabremaster: Build Y1 Dsabremaster\n\n28) fogus: Build G2 Fogus\n\n29) dsabremaster: Move Y1 Dsabremaster Requiem\n\n30) fogus: Trade G3 R3 Fogus\n\n31) dsabremaster: Trade B1 R1 Dsabremaster\n\n32) fogus: Build G3 Fogus\n\tfogus: Hmmm, catastrophe didn't quite work the way that I thought. :(\n\tfogus: Back to re-reading the rules to make sure I didn't miss anything else.\n\tdsabremaster: How did you think it worked?\n\n33) dsabremaster: Sacrifice G3 Requiem\nBuild G3 Requiem\nBuild Y1 Requiem\nBuild R2 Dsabremaster\n\tfogus: I thought that it destroyed all ships in the system, not just the same color. Needless to say, that changed my plans drastically. :(\n\n34) fogus: Sacrifice Y2 Fogus\nMove R1 Fogus Turtle\nMove R1 Turtle Dsabremaster\nCatastrophe Dsabremaster R\n\tdsabremaster: It will destroy all ships in the system if you destroy the star.\n\n35) dsabremaster: Sacrifice G3 Requiem\nBuild G3 Requiem\nBuild Y2 Requiem\nBuild Y3 Dsabremaster\n\n36) fogus: Move G3 Sigma-2 Dsabremaster\n\tfogus: That was the missing part of my understanding... the connection between the star and the ships at it.\n\n37) dsabremaster: Sacrifice Y3 Dsabremaster\nMove G3 Requiem Dsabremaster\nMove B2 Requiem Dsabremaster\nMove Y2 Requiem Dsabremaster\n\n38) fogus: Move G1 Turtle Dsabremaster\nCatastrophe Dsabremaster G\n\tdsabremaster: wow, I baked myself. And I was only one mistake from victory...\n\n\tdsabremaster: Luckily there's usually plenty of time to think about it. Also, I decided not to just give up. Probably didn't change the outcome though...\n\tfogus: Thanks for the re-match. I really enjoyed the games. \n\tdsabremaster: Ditto, and well done.\n\nHomeworlds Online (SDG# 26428)\nStarted: 2014.11.6, Ended: 2014.11.11\nParticipants: Grissom (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld B1 Y2 G3\n\n2) Grissom: Homeworld G3 B1 Y3\n\n3) hellajoey: Build G1 Hellajoey\n\n4) Grissom: Build Y1 Grissom\n\n5) hellajoey: Build G1 Hellajoey\n\tGrissom: I didn't realize I can only build ships the same color as the ships I have. I thought it included the homeworld colors...\n\n6) Grissom: Discover Y1 Grissom G2 Moria\n\thellajoey: Yeah, there will probably be a few discoveries like that. That's a first game is for I guess :)\n\thellajoey: Yeah, there will probably be a few discoveries like that. That's a first game is for I guess :)\n\n7) hellajoey: Discover G1 Hellajoey B3 Blubot\n\thellajoey: Luckily, you're not in a bad spot yet. I would trade that yellow for a green this move though.\n\n8) Grissom: Build Y1 Moria\n\n9) hellajoey: Trade G1 Y1 Hellajoey\n\n10) Grissom: Build Y2 Grissom\n\n11) hellajoey: Move Y1 Hellajoey Blubot\n\n12) Grissom: Discover Y2 Grissom B2 Rohan\n\n13) hellajoey: Build Y2 Blubot\n\n14) Grissom: Build Y3 Grissom\n\n15) hellajoey: Discover Y2 Blubot G2 Grunland\n\n16) Grissom: Trade Y3 R3 Grissom\n\n17) hellajoey: Build Y3 Grunland\n\n18) Grissom: Build Y3 Grissom\n\n19) hellajoey: Sacrifice Y3 Grunland\nMove Y1 Blubot Grunland\nMove Y1 Grunland Grissom\nMove Y2 Grunland Grissom\nCatastrophe Grissom Yellow\n\n20) Grissom: Trade Y2 G2 Rohan\n\n21) hellajoey: Build G1 Hellajoey\n\n22) Grissom: Build R1 Grissom\n\n23) hellajoey: Build G1 Blubot\n\n24) Grissom: Move Y1 Moria Grissom\n\n25) hellajoey: Sacrifice G3 Hellajoey\nBuild G2 Blubot\nBuild G3 Hellajoey\nBuild G3 Hellajoey\n\n26) Grissom: Move Y1 Grissom Rohan\n\n27) hellajoey: Trade G1 Y1 Blubot\n\n28) Grissom: Trade R3 Y3 Grissom\n\n29) hellajoey: Discover G3 Hellajoey B3 Ruddin\n\n30) Grissom: Build Y2 Grissom\n\n31) hellajoey: Trade G1 B1 Blubot\n\n32) Grissom: Sacrifice G2 Rohan\nBuild Y2 Rohan\nBuild Y3 Moria\n\n33) hellajoey: Build Y3 Blubot\n\n34) Grissom: Sacrifice Y2 Grissom\nMove Y1 Rohan Blubot\nMove Y1 Moria Blubot\nCatastrophe Blubot Yellow\n\n35) hellajoey: Build G1 Ruddin\n\thellajoey: Crap. After I just got done telling you I'm always watching out for that :)\n\n36) Grissom: Trade Y2 G2 Rohan\n\n37) hellajoey: Sacrifice G3 Hellajoey\nBuild G1 Blubot\nBuild G3 Hellajoey\nBuild B2 Blubot\n\n38) Grissom: Discover Y3 Moria B3 Thebluegate\n\n39) hellajoey: Trade B2 Y2 Blubot\n\n40) Grissom: Build Y1 Grissom\n\n41) hellajoey: Discover B1 Blubot G2 Gruner\n\n42) Grissom: Move Y1 Grissom Rohan\n\n43) hellajoey: Sacrifice G3 Hellajoey\nBuild G3 Hellajoey\nBuild B2 Gruner\nBuild B2 Gruner\n\n44) Grissom: Trade Y3 R3 Grissom\n\n45) hellajoey: Trade G1 R1 Hellajoey\n\n46) Grissom: Move G2 Rohan Thebluegate\n\n47) hellajoey: Sacrifice G3 Ruddin\nBuild G1 Hellajoey\nBuild G3 Ruddin\nBuild Y1 Blubot\n\thellajoey: I lied. I did a move ;)\n\thellajoey: undid\n\n48) Grissom: Move Y1 Rohan Thebluegate\n\n49) hellajoey: Move Y1 Blubot Gruner\n\n50) Grissom: Move Y3 Thebluegate Gruner\n\n51) hellajoey: Sacrifice G3 Hellajoey\nBuild G3 Hellajoey\nBuild Y1 Gruner\nBuild Y2 Gruner\nCatastrophe Gruner Yellow\n\n52) Grissom: Build Y1 Thebluegate\n\n53) hellajoey: Build Y1 Blubot\n\n54) Grissom: Trade R3 Y3 Grissom\n\n55) hellajoey: Move Y1 Blubot Gruner\n\n56) Grissom: Trade Y1 R1 Thebluegate\n\n57) hellajoey: Move B1 Gruner Grissom\n\n58) Grissom: Sacrifice G2 Thebluegate\nBuild Y1 Thebluegate\nBuild Y2 Grissom\n\n59) hellajoey: Move B2 Gruner Grissom\n\n60) Grissom: Build R2 Grissom\n\n61) hellajoey: Move G1 Blubot Gruner\n\n62) Grissom: Discover Y2 Grissom G2 Gondor\n\n63) hellajoey: Discover G2 Blubot B2 Blub\n\n64) Grissom: Build Y3 Grissom\n\n65) hellajoey: Sacrifice G3 Ruddin\nBuild G3 Blub\nBuild R2 Hellajoey\nPass\n\n66) Grissom: Build Y3 Gondor\n\n67) hellajoey: Move B2 Gruner Grissom\nCatastrophe Grissom Blue\n\n68) Grissom: Sacrifice Y3 Gondor\nMove Y1 Thebluegate Hellajoey\nMove Y1 Thebluegate Hellajoey\nMove Y3 Grissom Hellajoey\nCatastrophe Hellajoey Yellow\n\n69) hellajoey: Move G1 Gruner Grissom\n\n70) Grissom: Sacrifice Y2 Gondor\nMove R1 Thebluegate Hellajoey\nMove R1 Grissom Hellajoey\nCatastrophe Hellajoey Red\n\n71) hellajoey: Sacrifice Y2 Blubot\nMove G2 Blub Grissom\nMove G3 Blub Grissom\nCatastrophe Grissom Green\n\n\tGrissom: Good game\n\thellajoey: Hey. Fun game. How's it goin'?\n\nHomeworlds Online (SDG# 26463)\nVariants: "Hard time"\nStarted: 2014.11.11, Ended: 2014.11.13\nParticipants: TeeTeeTee (S), wil (N)\nWinner: TeeTeeTee\n\n1) wil: Homeworld Y2 B1 G3\n\n2) TeeTeeTee: Homeworld Y1 B3 G3\n\twil: tis me an u agin...\n\n3) wil: Build G1 Wil\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) wil: Trade G1 B1 Wil\n\tTeeTeeTee: So it is! You know, half of the games of Homeworlds I've played have been against you. (Not that I mind, though: you play very quickly!)\n\n6) TeeTeeTee: Trade G1 Y1 Teeteetee\n\twil: lol...you need better players... we need to create more players... \r\n\n\twil: I think quickly has a lot to do with my downfall..\r\n\n\n7) wil: Build B1 Wil\n\n8) TeeTeeTee: Build Y1 Teeteetee\n\n9) wil: Discover B1 Wil G3 G3\n\n10) TeeTeeTee: Discover Y1 Teeteetee G2 Spite\n\n11) wil: Build B2 G3\n\twil: Nice, I see the error of my ways...finally\n\n12) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y2 Spite\nBuild Y2 Spite\nBuild Y3 Teeteetee\n\n13) wil: Build B2 Wil\n\n14) TeeTeeTee: Trade Y3 G3 Teeteetee\n\n15) wil: Trade B2 R2 Wil\n\n16) TeeTeeTee: Build Y3 Teeteetee\n\n17) wil: Discover R2 Wil Y3 Y3\n\n18) TeeTeeTee: Trade Y3 R3 Teeteetee\n\twil: amazing how I lost this game so early nice play\n\n19) wil: Build G1 Wil\n\n20) TeeTeeTee: Build Y3 Teeteetee\n\n\tTeeTeeTee: Yeah, I think that this one was my game from as soon as I took the last y1. A possible stalling move would have been to discover a g3 as soon as I sacrificed by g3: this would have also have stopped you from being able to sacrifice your own g3, but would have certainly slowed me down too.\r\n\r\nYou've made this mistake before! The first seven moves we each played in this game were identical to this one: http://superdupergames.org/main.html?page=archive_play&gid=26272 - I tried to monopolise yellow, you tried to monopolise blue, but choosing the colour with fewer medium pyramids in the stash gave me the advantage.\r\n\r\nThanks for the game. Feel free to re-challenge me, as this one was quite brief.\n\twil: Yeah..story of my life making the same mistakes over and over... I'ma gonna wait and see if you get a real challenger, if not, I'll step back in as a sparring partner and hope to give you a little run for your money...\n\tTeeTeeTee: I think you're a little harsh on yourself, here. You've played stronger games and weaker games: I thought that the previous game we played could have gone either way right up until near the the end. The other relatively recent game we played (#26038) was close, and I felt that I was lucky to win that one. It does feel like games are decided on just one or two errors these days, though... \n\nHomeworlds Online (SDG# 26418)\nVariants: "Hard time"\nStarted: 2014.11.12, Ended: 2014.12.10\nParticipants: dsabremaster (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 G2 Y3\n\n2) dsabremaster: Homeworld B1 Y2 G3\n\n3) wil: Build Y1 Wil\n\n4) dsabremaster: Build G1 Dsabremaster\n\n5) wil: Build Y1 Wil\n\n6) dsabremaster: Build G1 Dsabremaster\n\n7) wil: Discover Y1 Wil B1 B1\n\n8) dsabremaster: Discover G1 Dsabremaster Y3 Depot\n\n9) wil: Trade Y1 R1 Wil\n\n10) dsabremaster: Trade G1 R1 Dsabremaster\n\n11) wil: Build Y1 Wil\n\n12) dsabremaster: Build G1 Dsabremaster\n\n13) wil: Trade Y1 G1 Wil\n\n14) dsabremaster: Trade G1 Y1 Dsabremaster\n\n15) wil: Move G1 Wil B1\n\n16) dsabremaster: Trade Y1 B1 Dsabremaster\n\n17) wil: Build R1 Wil\n\n18) dsabremaster: Build R2 Dsabremaster\n\n19) wil: Build R2 Wil\n\n20) dsabremaster: Move B1 Dsabremaster Depot\n\n21) wil: Move R2 Wil B1\n\n22) dsabremaster: Build B2 Depot\n\n23) wil: Move R1 Wil B1\n\n24) dsabremaster: Build B2 Depot\n\n25) wil: Trade R2 B2 B1\n\n26) dsabremaster: Discover B2 Depot R2 Dais\n\n27) wil: Build Y1 B1\n\n28) dsabremaster: Trade R2 Y2 Dsabremaster\n\n29) wil: Discover B2 B1 G3 G3\n\n30) dsabremaster: Discover B1 Depot G1 Knoll\n\n31) wil: Build B3 G3\n\n32) dsabremaster: Build B3 Knoll\n\n33) wil: Build R2 B1\n\n34) dsabremaster: Build G2 Dsabremaster\n\n35) wil: Trade R2 Y2 B1\n\n36) dsabremaster: Build R2 Dsabremaster\n\n37) wil: Trade B3 G3 G3\n\n38) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G2 Depot\nBuild B3 Depot\nBuild G3 Dsabremaster\n\n39) wil: Sacrifice Y1 B1\nMove G3 G3 B1\n\n\n40) dsabremaster: Trade B1 Y1 Knoll\n\n41) wil: Sacrifice G3 B1\nBuild R2 B1\nBuild R3 Wil\nBuild G3 B1\n\n42) dsabremaster: Sacrifice B2 Dais\nTrade B3 R3 Depot\nTrade B3 Y3 Knoll\n\n43) wil: Sacrifice G3 B1\nBuild G3 B1\n\nBuild R2 Wil\nBuild R3 B1\n\n44) dsabremaster: Sacrifice Y2 Dsabremaster\nMove R1 Dsabremaster Depot\nMove R1 Depot B1\nCatastrophe B1 Red\n\n45) wil: Move R2 Wil B1\n\n46) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G3 Dsabremaster\nBuild R1 Dsabremaster\nBuild B1 Depot\n\n47) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild B2 G3\nBuild B3 G3\n\n48) dsabremaster: Move B1 Depot Knoll\n\n49) wil: Discover Y1 B1 B3 B3\n\n50) dsabremaster: Move B1 Knoll G3\nCatastrophe G3 Blue\n\n51) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild Y1 B1\nBuild Y2 B3\n\n52) dsabremaster: Move B2 Depot Knoll\n\n53) wil: Sacrifice Y2 B1\nMove Y1 B3 Knoll\nMove Y2 B3 Knoll\nCatastrophe Knoll Y\n\n54) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G3 Dsabremaster\nBuild B1 Knoll\nBuild B2 Knoll\n\n55) wil: Trade R2 B2 B1\n\n56) dsabremaster: Trade B2 Y2 Knoll\n\n57) wil: Move R3 Wil Knoll\n\n58) dsabremaster: Sacrifice B2 Knoll\nTrade B1 R1 Knoll\nTrade Y2 R2 Knoll\n\n59) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild R2 Knoll\nBuild R3 Wil\nCatastrophe Knoll R\n\n60) dsabremaster: Discover G1 Depot Y1 Ryloth\n\n61) wil: D B2 B1 G3 G3\n\n62) dsabremaster: Trade R1 Y1 Dsabremaster\n\n63) wil: M R3 Wil Ryloth\n\n64) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G1 Ryloth\nBuild G3 Dsabremaster\nBuild R1 Dsabremaster\n\n65) wil: Attack G1 Ryloth\n\n66) dsabremaster: Discover Y1 Dsabremaster R3 Echo\n\n67) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild B1 G3\nBuild B2 G3\n\n68) dsabremaster: Discover G1 Ryloth B2 Midway\n\n69) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild Y2 B1\nBuild R1 Ryloth\n\n70) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G3 Dsabremaster\nBuild R2 Depot\nBuild Y2 Echo\n\n71) wil: Sacrifice G3 B1\nBuild G3 B1\nBuild Y3 Wil\nBuild R2 Wil\n\n72) dsabremaster: Sacrifice Y1 Echo\nDiscover R3 Depot Y1 Pit\n\n73) wil: Sacrifice Y2 B1\nMove G3 B1 Depot\nMove B2 G3 Ryloth\n\n74) dsabremaster: Move R2 Depot B1\n\n75) wil: Sacrifice Y1 B1\nMove G1 B1 G3\n\n76) dsabremaster: Sacrifice G3 Dsabremaster\nBuild G3 Dsabremaster\nBuild Y1 Echo\nBuild Y2 Echo\n\n77) wil: Sacrifice R1 Wil\nAttack G2 Depot\n\n78) dsabremaster: Move Y1 Echo B1\n\n79) wil: Sacrifice Y3 Wil\nMove G1 G3 Dsabremaster\nMove R1 Ryloth G3\nMove G2 Depot Dsabremaster\nCatastrophe Dsabremaster G\n\n80) dsabremaster: Sacrifice Y2 Echo\nMove Y2 Echo Dsabremaster\nMove R3 Pit Wil\n\n81) wil: Attack R3 Wil\n\twil: had to wait for the planets to align...\n\tdsabremaster: Welp. I knew it was coming, eventually. I got out-economied again.\n\n82) dsabremaster: Sacrifice G1 Midway\nBuild R1 B1\n\n83) wil: Sacrifice Y3 Wil\nMove G3 Depot Dsabremaster\nMove R2 Wil B1\nMove R1 G3 B1\nCatastrophe B1 R\n\twil: yes, monopolies cause problems... but lol.. I had two plans in place depending on what you did...and I almost fired one off after I saw what you did in your homeworld... and almost did it until I took one last look and saw what you did in MY homeworld!! While we are but moves away from the end, that was a good game. I thought I had you early and you changed the universe on me. Ready for more whenever you are...\n\tdsabremaster: Yeah, I was hoping you might not notice... heh.\r\nI thought I had a chance in the middle there but I managed to get out-manuevered again. I'll have to take a few more risks next time.\n\n84) dsabremaster: Move Y1 B1 Wil\n\n85) wil: Sacrifice R3 Ryloth\nAttack R2 Dsabremaster\nAttack R1 Dsabremaster\nAttack Y2 Dsabremaster\n\twil: Going for galactic domination now....\n\n\twil: We send a team in to sanitize the ship, as rumors of there being yellow fever aboard... have no fear we will take good care of your women and children...\n\nHomeworlds Online (SDG# 26519)\nVariants: "Hard time"\nStarted: 2014.11.18, Ended: 2014.11.19\nParticipants: wil (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld Y1 B2 G3\n\n2) wil: Homeworld B3 Y2 G3\n\tTeeTeeTee: Another re-challenge! Have a good game.\r\n\r\n(Perhaps I should play some more non-ladder games, as I only ever make a conservative choice of homeworlds in these ladder games.)\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) wil: Build G1 Wil\n\twil: Yeah, I just signed up on the ladders of volcano an martian chess and put up challenges so I can learn those...\n\n5) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n6) wil: Trade G1 Y1 Wil\n\tTeeTeeTee: Maybe I should give those two a go at some point... Homeworlds and Zendo were the only two pyramids games that have really leapt out at me so far. (I think Zendo works better in a pub than online, though: the SDG interface for Zendo is arcane and ineffective, and the game that I was running has completely fizzled out, now.)\n\twil: Zendo was my first introduction to them...my daughter bought it at a game designer gathering, she met Kory, played the game with others there and wanted to get it..\n\n7) TeeTeeTee: Build Y2 Teeteetee\n\n8) wil: Build Y2 Wil\n\twil: I still am working on the strategies involved in Martian Chess and Volcano...have yet to win a game (but I am might just have one soon)\n\n9) TeeTeeTee: Discover Y1 Teeteetee G3 Leviathan\n\twil: hmmm am I still gonna make the same mistake? I should have had a y3 homeworld?\n\n10) wil: Discover Y1 Wil G1 G1\n\n11) TeeTeeTee: Build Y3 Leviathan\n\twil: i think that worx\n\n12) wil: Build Y3 G1\n\n13) TeeTeeTee: Move Y3 Leviathan G1\n\tTeeTeeTee: This game is very different from the last few: you've not been frozen out of yellow, or any other colour. By choosing to not have a y3 in your homeworld, you immediately made yellows the most advantageous ships to go for: if I'd done anything else but go for a large yellow and let you do the same, then I think I'd have been at a great disadvantage. \r\n\r\nI'll have to stop and think about my next move for a bit, here. Up till now, my moves have been mostly automatic, as the opening was more-or-less decided by your choice of homeworld.\n\tTeeTeeTee: Let's try this.\n\n14) wil: Move Y3 G1 Leviathan\n\twil: oh my\n\twil: incredible move... so many ways to make a big costly mistake on my part! let us hope this isn't one of them.\n\n15) TeeTeeTee: Build Y3 Leviathan\n\n16) wil: Move Y3 Leviathan Teeteetee\n\n17) TeeTeeTee: Trade Y2 R2 Teeteetee\n\twil: I just don't know...\n\n18) wil: Discover Y3 Teeteetee R3 R3\n\tTeeTeeTee: I wouldn't have done that. I don't believe you can both keep that y3 and stop me invading your homeworld on my next turn, now.\n\twil: amazing defeat yet agin...\n\n19) TeeTeeTee: Move Y3 G1 Wil\n\n20) wil: Move Y1 G1 Wil\nCatastrophe Wil Y\n\tTeeTeeTee: I think this is my game again, yes. You can blow up your homeworld and my large yellow, but I'll invade in a turn or two anyway as our homeworlds will be directly connected.\n\n21) TeeTeeTee: Build R1 Teeteetee\n\twil: I think I lose before I challenge with you!\n\n22) wil: Build G1 Wil\n\n23) TeeTeeTee: Move G3 Teeteetee Wil\n\n24) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G1 Wil\nBuild Y1 R3\nCatastrophe Wil G\n\tTeeTeeTee: I think this game went badly for you because you sort of gave up as soon as I moved my y3 to g1. I was definitely ahead at that point, but the game wasn't over! Once you made the unfortunate move of invading with the y3, that was when the game was practically decided.\n\twil: I didn't see any move at that time...the move I made I missed you getting the red...\n\n\nHomeworlds Online (SDG# 26402)\nVariants: "Hard time"\nStarted: 2014.11.19, Ended: 2014.12.1\nParticipants: SilentTitan (S), DetectiveAzul (N)\nWinner: DetectiveAzul\n\n1) DetectiveAzul: Homeworld B1 G2 Y3\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) DetectiveAzul: Build Y1 Detectiveazul\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) DetectiveAzul: Trade Y3 R3 Detectiveazul\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) DetectiveAzul: Build R1 Detectiveazul\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) DetectiveAzul: Build R1 Detectiveazul\n\n10) SilentTitan: Trade G1 B1 Silenttitan\n\n11) DetectiveAzul: Trade R1 G1 Detectiveazul\n\n12) SilentTitan: Build B1 Silenttitan\n\n13) DetectiveAzul: Trade R3 B3 Detectiveazul\n\n14) SilentTitan: Discover B1 Silenttitan G1 Sol\n\n15) DetectiveAzul: Build B2 Detectiveazul\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild B2 Sol\nBuild B3 Sol\nBuild B3 Silenttitan\n\n17) DetectiveAzul: Discover B2 Detectiveazul R3 Flordealeli\n\n18) SilentTitan: Trade B1 R1 Sol\n\n19) DetectiveAzul: Trade B3 Y3 Detectiveazul\n\n20) SilentTitan: Trade B3 G3 Silenttitan\n\n21) DetectiveAzul: Sacrifice Y1 Detectiveazul\nMove B2 Flordealeli Detectiveazul\n\n22) SilentTitan: Trade B2 Y2 Sol\n\n23) DetectiveAzul: Build Y1 Detectiveazul\n\n24) SilentTitan: Build B1 Sol\n\n25) DetectiveAzul: Trade B2 R2 Detectiveazul\n\n26) SilentTitan: Discover B3 Sol G3 Soul\n\n27) DetectiveAzul: Trade R2 B2 Detectiveazul\n\n28) SilentTitan: Build B2 Soul\n\n29) DetectiveAzul: Trade B2 R2 Detectiveazul\n\n\nHomeworlds Online (SDG# 26484)\nVariants: "Hard time"\nStarted: 2014.11.19, Ended: 2014.11.19\nParticipants: DetectiveAzul (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld R1 B2 G3\n\n2) DetectiveAzul: Homeworld B1 G2 Y3\n\tTeeTeeTee: Hello, and welcome!\n\n3) TeeTeeTee: Build G1 Teeteetee\n\tDetectiveAzul: Hello!\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\n5) TeeTeeTee: Trade G1 B1 Teeteetee\n\n6) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n7) TeeTeeTee: Build B1 Teeteetee\n\n8) DetectiveAzul: Discover G1 Detectiveazul R3 Kamino\n\n9) TeeTeeTee: Build G1 Teeteetee\n\n10) DetectiveAzul: Build G1 Kamino\n\n11) TeeTeeTee: Build G2 Teeteetee\n\n12) DetectiveAzul: Build Y1 Detectiveazul\n\n13) TeeTeeTee: Trade G2 Y2 Teeteetee\n\n14) DetectiveAzul: Build Y1 Detectiveazul\n\n15) TeeTeeTee: Discover G1 Teeteetee Y3 Frodo\n\n16) DetectiveAzul: Trade Y1 R1 Detectiveazul\n\n17) TeeTeeTee: Build G2 Teeteetee\n\n18) DetectiveAzul: Build Y1 Detectiveazul\n\n19) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G2 Frodo\nBuild G3 Frodo\nBuild G3 Teeteetee\n\n20) DetectiveAzul: Sacrifice Y3 Detectiveazul\nMove G1 Kamino Detectiveazul\nMove G1 Detectiveazul Frodo\nMove Y1 Detectiveazul Kamino\nCatastrophe Frodo G\n\n21) TeeTeeTee: Trade G3 R3 Teeteetee\n\n22) DetectiveAzul: Build R1 Detectiveazul\n\n23) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove G2 Teeteetee Kamino\nMove G2 Kamino Detectiveazul\n\n\tTeeTeeTee: Thanks for the game! I must say, you do have a surprisingly aggressive style - I've not played a game with a short universe before. It certainly makes for an interesting change from most of the games that I play, though! Have you played Homeworlds much before?\n\nHomeworlds Online (SDG# 26426)\nVariants: "Unrated"\nStarted: 2014.11.21, Ended: 2014.12.28\nParticipants: dsabremaster (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld B1 R2 G3\n\n2) dsabremaster: Homeworld Y1 G3 B3\n\n3) Remneb: Build G1 Remneb\n\n4) dsabremaster: Build B1 Dsabremaster\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) dsabremaster: Trade B1 Y1 Dsabremaster\n\n7) Remneb: Build Y2 Remneb\n\n8) dsabremaster: Build B1 Dsabremaster\n\n9) Remneb: Trade Y1 B1 Remneb\n\n10) dsabremaster: Trade B1 G1 Dsabremaster\n\n11) Remneb: Build G1 Remneb\n\n12) dsabremaster: Discover G1 Dsabremaster B2 Union\n\n13) Remneb: Discover B1 Remneb Y3 Thor\n\n14) dsabremaster: Build B1 Dsabremaster\n\n15) Remneb: Build Y1 Remneb\n\n16) dsabremaster: Build Y2 Dsabremaster\n\n17) Remneb: Move Y1 Remneb Thor\n\n18) dsabremaster: Move Y1 Dsabremaster Union\n\n19) Remneb: Move B1 Thor Union\n\n20) dsabremaster: Build G1 Union\n\n21) Remneb: Move Y1 Thor Union\n\n22) dsabremaster: Discover G1 Union Y3 Felix\n\n23) Remneb: Trade B1 R1 Union\n\n24) dsabremaster: Trade Y2 R2 Dsabremaster\n\n25) Remneb: Attack Y1 Union\n\n26) dsabremaster: Sacrifice R2 Dsabremaster\nAttack R1N Union\nAttack Y1N Union\n\n27) Remneb: Discover Y1 Union G3 Drako\n\n28) dsabremaster: Build G2 Felix\n\n29) Remneb: Build Y2 Drako\n\n30) dsabremaster: Build Y2 Union\n\n31) Remneb: Build Y3 Remneb\n\n32) dsabremaster: Discover Y1 Union B3 Khalla\n\n33) Remneb: Discover Y3 Remneb Y3 Altar\n\n34) dsabremaster: Discover G1 Felix B1 Opal\n\n35) Remneb: Move G1 Remneb Altar\n\n36) dsabremaster: Build G2 Opal\n\n37) Remneb: Move Y3 Altar Union\n\n38) dsabremaster: Move R1 Union Altar\n\n39) Remneb: Trade Y3 R3 Union\n\n40) dsabremaster: Sacrifice Y2 Union\nMove G1 Union Khalla\nMove G2 Opal Altar\n\n41) Remneb: Sacrifice Y1 Drako\nMove R3 Union Altar\n\n\nHomeworlds Online (SDG# 26536)\nVariants: "No undo"\nStarted: 2014.11.22, Ended: 2014.11.26\nParticipants: hellajoey (S), Grissom (N)\nWinner: hellajoey\n\n1) Grissom: Homeworld Y2 B1 G3\n\n2) hellajoey: Homeworld B3 Y1 G3\n\n3) Grissom: Build G1 Grissom\n\n4) hellajoey: Build G1 Hellajoey\n\n5) Grissom: Discover G1 Grissom B3 Narnia\n\n6) hellajoey: Discover G1 Hellajoey B2 Blubot\n\n7) Grissom: Trade G1 Y1 Narnia\n\n8) hellajoey: Build G1 Hellajoey\n\n9) Grissom: Build G1 Grissom\n\n10) hellajoey: Build G2 Blubot\n\n11) Grissom: Move G1 Grissom Narnia\n\n12) hellajoey: Trade G1 Y1 Blubot\n\n13) Grissom: Build G1 Grissom\n\n14) hellajoey: Build Y2 Blubot\n\n15) Grissom: Discover G1 Grissom B3 Telmar\n\n16) hellajoey: Move Y2 Blubot Hellajoey\n\n17) Grissom: Build Y2 Narnia\n\n18) hellajoey: Build Y3 Blubot\n\n19) Grissom: Sacrifice Y2 Narnia\nMove G1 Narnia Blubot\nMove G1 Blubot Hellajoey\n\n20) hellajoey: Trade G1 R1 Hellajoey\n\n21) Grissom: Build G1 Hellajoey\n\n22) hellajoey: Trade G3 R3 Hellajoey\n\n23) Grissom: Build G2 Grissom\n\n24) hellajoey: Attack G1 Hellajoey\n\n25) Grissom: Sacrifice G3 Grissom\nBuild G2 Hellajoey\nBuild G3 Grissom\nBuild G3 Telmar\n\n26) hellajoey: Build G3 Blubot\n\n27) Grissom: Trade G2 Y2 Hellajoey\n\n28) hellajoey: Attack Y2 Hellajoey\n\n29) Grissom: Sacrifice G3 Grissom\nBuild G2 Hellajoey\nBuild Y3 Narnia\nBuild G3 Grissom\n\n30) hellajoey: Move G3 Blubot Narnia\n\n31) Grissom: Sacrifice Y3 Narnia\nMove Y1 Narnia Blubot\nMove Y1 Blubot Hellajoey\nDiscover G2 Grissom Y3 Kalormen\nCatastrophe Hellajoey Yellow\n\n32) hellajoey: Sacrifice Y1 Blubot\nMove G3 Narnia Grissom\n\n33) Grissom: Trade G3 R3 Grissom\n\n34) hellajoey: Sacrifice R1 Hellajoey\nAttack R3 Grissom\n\n\nHomeworlds Online (SDG# 26479)\nStarted: 2014.11.24, Ended: 2015.2.15\nParticipants: rosbi (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B3 G3\n\n2) rosbi: Homeworld B3 R2 G3\n\n3) ts52: Build G1 Ts52\n\n4) rosbi: Build G1 Rosbi\n\n5) ts52: Discover G1 Ts52 Y2 Bigbird\n\n6) rosbi: Trade G1 Y1 Rosbi\n\n7) ts52: Build G1 Ts52\n\n8) rosbi: Build G1 Rosbi\n\n9) ts52: Build G2 Bigbird\n\n10) rosbi: Trade G1 R1 Rosbi\n\n11) ts52: Trade G1 R1 Ts52\n\n12) rosbi: Discover R1 Rosbi Y1 Smallworm\n\n13) ts52: Build G1 Ts52\n\n14) rosbi: Build Y2 Rosbi\n\n15) ts52: Trade G1 B1 Ts52\n\n16) rosbi: Move Y1 Rosbi Smallworm\n\n17) ts52: Move B1 Ts52 Bigbird\n\n18) rosbi: Build G1 Rosbi\n\n19) ts52: Trade G2 R2 Bigbird\n\n20) rosbi: Move Y2 Rosbi Smallworm\n\n21) ts52: Build B1 Bigbird\n\n22) rosbi: Discover Y1 Smallworm G2 Blackcat\n\n23) ts52: Build B1 Bigbird\n\n24) rosbi: Sacrifice G3 Rosbi\nBuild Y2 Blackcat\nBuild Y3 Smallworm\nBuild Y3 Blackcat\n\n25) ts52: Discover B1 Bigbird Y3 Telly\n\n26) rosbi: Move Y3 Smallworm Rosbi\n\n27) ts52: Build B2 Bigbird\n\n28) rosbi: Build G1 Rosbi\n\n29) ts52: Build G2 Ts52\n\n30) rosbi: Move G1 Rosbi Smallworm\n\n31) ts52: S G2 Ts52\nB G2 Ts52\nB B2 Telly\n\n32) rosbi: Build G2 Rosbi\n\n33) ts52: Build G3 Bigbird\n\n34) rosbi: Build G3 Smallworm\n\n35) ts52: Discover B2 Bigbird R1 Elmo\n\n36) rosbi: Trade G2 B2 Rosbi\n\n37) ts52: Sacrifice G2 Ts52\nBuild G2 Ts52\nBuild B3 Elmo\n\n38) rosbi: Build R2 Smallworm\n\n39) ts52: Build R3 Bigbird\n\n40) rosbi: Move R1 Smallworm Rosbi\n\n41) ts52: Build R3 Ts52\n\n42) rosbi: Build R3 Rosbi\n\n43) ts52: Move G3 Bigbird Telly\n\n44) rosbi: Sacrifice Y3 Rosbi\nMove Y1 Blackcat Ts52\nMove Y2 Blackcat Ts52\nMove Y3 Blackcat Ts52\nCatastrophe Ts52 Y\n\n45) ts52: Trade B2 Y2 Elmo\n\n46) rosbi: Trade R1 Y1 Rosbi\n\tts52: sorry for the delay\n\trosbi: no problem, happy new year !\n\n47) ts52: S Y2 Elmo\nM G1 Bigbird Smallworm\nM G2 Ts52 Smallworm\nC Smallworm G\n\n48) rosbi: Build Y1 Rosbi\n\n49) ts52: M R3 Bigbird Smallworm\n\n50) rosbi: Move Y1 Rosbi Smallworm\n\n51) ts52: Build G1 Telly\n\n52) rosbi: Build G1 Rosbi\n\n53) ts52: Attack R2S Smallworm\n\n54) rosbi: Move Y1 Rosbi Smallworm\nCatastrophe Smallworm Y\n\n55) ts52: Move G1 Telly Elmo\n\n56) rosbi: Trade G1 Y1 Rosbi\n\n57) ts52: Build B2 Elmo\n\n58) rosbi: Build Y1 Rosbi\n\n59) ts52: Trade B2 Y2 Elmo\n\n60) rosbi: Discover Y1 Rosbi G1 Pinewood\n\n61) ts52: Build G2 Ts52\n\n62) rosbi: Build G2 Rosbi\n\n63) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\nBuild G3 Telly\n\n\nHomeworlds Online (SDG# 26099)\nVariants: "Unrated, Hard time"\nStarted: 2014.11.24, Ended: 2014.11.30\nParticipants: Rizzotto (S), DetectiveAzul (N), wil (E)\nWinner: Rizzotto\n\n1) DetectiveAzul: Homeworld G3 B2 R3\n\n2) wil: Homeworld B3 Y2 G3\n\twil: I haven't played either of you in a binary game...feel free to challenge me!\n\n3) Rizzotto: Homeworld B3 G2 R3\n\n4) DetectiveAzul: Build R1 Detectiveazul\n\tDetectiveAzul: Uhm, we're new at this game, only a week playing it, so we're not too goods. Playing here to learn and to have some fun :3\n\n5) wil: Build G1 Wil\n\twil: I blew it...and you followed suit....we now have a short universe...only one star between us all!\n\n6) Rizzotto: Build R1 Rizzotto\n\n7) DetectiveAzul: Trade R1 B1 Detectiveazul\n\tRizzotto: ..fuck, I'm copying movements. Not intentional, I swear. I didn't have many options. \n\twil: What I am getting at is usually there is a protection level of two star systems between each homeworld...with all of us picking queens and drones only pawn systems will be in the middle, two moves, easy access to each...should be a short battle....you both are welcome to challenge me to a binary game, and each could 'monitor' the other game and I will do my best to teach you some ins and outs...(best way to win is by losing and seeing different strategies play out)\n\n8) wil: Build G1 Wil\n\n9) Rizzotto: Trade R1 Y1 Rizzotto\n\n10) DetectiveAzul: Build R1 Detectiveazul\n\n11) wil: Discover G1 Wil Y1 Y1\n\n12) Rizzotto: Build Y1 Rizzotto\n\n13) DetectiveAzul: Trade R1 Y1 Detectiveazul\n\n14) wil: Sacrifice G3 Wil\nBuild G1 Y1\nBuild G1 Wil\nBuild G2 Y1\n\n15) Rizzotto: Build R1 Rizzotto\n\n16) DetectiveAzul: Build Y2 Detectiveazul\n\tDetectiveAzul: Build y2 detectiveazul\n\n17) wil: Build G2 Wil\n\n18) Rizzotto: Build Y2 Rizzotto\n\twil: in sooooo much trouble....can't count...\n\n19) DetectiveAzul: Trade R3 G3 Detectiveazul\n\n20) wil: Move G1 Y1 Detectiveazul\n\n21) Rizzotto: Move Y1 Rizzotto Y1\n\n22) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove G3 Detectiveazul Y1\nMove G3 Y1 Wil\nCatastrophe Wil G\n\n23) Rizzotto: Sacrifice Y2 Rizzotto\nMove R3 Rizzotto Y1\nMove R3 Y1 Detectiveazul\n\n24) DetectiveAzul: Build Y2 Detectiveazul\n\n25) Rizzotto: Attack Y2N Detectiveazul\n\n26) DetectiveAzul: Build Y2 Detectiveazul\n\n27) Rizzotto: Move R3 Detectiveazul Y1\n\n28) DetectiveAzul: Trade Y2 R2 Detectiveazul\n\n29) Rizzotto: Move R3 Y1 Detectiveazul\n\n30) DetectiveAzul: Build R1 Detectiveazul\n\n31) Rizzotto: Sacrifice R3 Detectiveazul\nAttack R2N Detectiveazul\nAttack R1N Detectiveazul\nAttack Y1N Detectiveazul\n\n32) DetectiveAzul: Build B1 Detectiveazul\n\n33) Rizzotto: Sacrifice R2 Detectiveazul\nAttack B1N Detectiveazul\nAttack B1N Detectiveazul\n\n\nHomeworlds Online (SDG# 26561)\nVariants: "Unrated"\nStarted: 2014.11.24, Ended: 2014.11.24\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld G1 B2 Y3\n\tDetectiveAzul: Eres una putilla :3\n\n2) DetectiveAzul: Homeworld B1 G2 R3\n\tRizzotto: Cerdillo tú\n\n3) Rizzotto: Discover Y3 Rizzotto B3 Azul\n\n\nHomeworlds Online (SDG# 26563)\nVariants: "Unrated"\nStarted: 2014.11.24, Ended: 2014.11.30\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld B1 G2 Y3\n\n2) DetectiveAzul: Homeworld G3 B2 Y3\n\tRizzotto: Puto juego\n\n3) Rizzotto: Build Y1 Rizzotto\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\tDetectiveAzul: jajaja, aprendiste a mandar mensajes\n\n5) Rizzotto: Discover Y1 Rizzotto B3 Azulita\n\tRizzotto: Ya había aprendido la otra vez :( \n\n6) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n7) Rizzotto: Build Y1 Rizzotto\n\n8) DetectiveAzul: Build G1 Detectiveazul\n\n9) Rizzotto: Move Y3 Rizzotto Azulita\n\n10) DetectiveAzul: Trade G1 R1 Detectiveazul\n\n11) Rizzotto: Trade Y3 R3 Azulita\n\n12) DetectiveAzul: Build R1 Detectiveazul\n\n13) Rizzotto: Build Y1 Rizzotto\n\n14) DetectiveAzul: Trade R1 B1 Detectiveazul\n\n15) Rizzotto: Move Y1 Rizzotto Azulita\n\n16) DetectiveAzul: Build Y2 Detectiveazul\n\n17) Rizzotto: Trade Y1 R1 Azulita\n\n18) DetectiveAzul: Discover B1 Detectiveazul G1 Putilla\n\n19) Rizzotto: Move R3 Azulita Putilla\n\n20) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove B1 Putilla Azulita\nMove B1 Azulita Rizzotto\n\tRizzotto: Mi naaaaaaaaaaaveee\r\nMe la controlarooon\r\nAnoooooosheeeeeee\r\nCuando dormíaaaaaaa\r\n\n\tRizzotto: (Y ahora Rizzotto puede adivinar perfectamente el adjetivo con el que DetectiveAzul va a calificar su última intervención)\n\tDetectiveAzul: Pues si no me hubieras dicho nada, no me habría dado cuenta. Así que gracias :3, te has contrarrestado tú sola.\n\n21) Rizzotto: Build Y1 Rizzotto\n\tRizzotto: Meh, lo hice por hacer la gracia y porque pegaba xD\n\tRizzotto: De todas formas...¿qué comando es para controlar? Porque en principio no veo nada\n\n22) DetectiveAzul: Trade B1 R1 Rizzotto\n\tDetectiveAzul: Attack es el comando para atacar y controlar\n\n23) Rizzotto: Build Y2 Rizzotto\n\n24) DetectiveAzul: Trade Y3 R3 Detectiveazul\n\n25) Rizzotto: Trade Y2 R2 Rizzotto\n\n26) DetectiveAzul: Build R2 Rizzotto\n\n27) Rizzotto: Attack R2S Rizzotto\n\n28) DetectiveAzul: Sacrifice R3 Detectiveazul\nAttack Y1 Rizzotto\nAttack Y1 Rizzotto\nPass\n\n29) Rizzotto: Sacrifice R3 Putilla\nAttack Y1 Rizzotto\nAttack R1 Rizzotto\nPass\n\n30) DetectiveAzul: Build Y2 Rizzotto\n\n31) Rizzotto: Sacrifice R2 Rizzotto\nAttack Y1S Rizzotto\nAttack Y2 Rizzotto\n\n32) DetectiveAzul: Build R2 Detectiveazul\n\n33) Rizzotto: Trade Y1 G1 Rizzotto\n\n34) DetectiveAzul: Trade R1 B1 Detectiveazul\n\n35) Rizzotto: Move G1 Rizzotto Azulita\n\n36) DetectiveAzul: Build R1 Detectiveazul\n\n37) Rizzotto: Trade Y2 G2 Rizzotto\n\n38) DetectiveAzul: Trade R1 Y1 Detectiveazul\n\n39) Rizzotto: Trade G2 R2 Rizzotto\n\n40) DetectiveAzul: Build Y2 Detectiveazul\n\n41) Rizzotto: Move R2 Rizzotto Azulita\n\n42) DetectiveAzul: Build Y2 Detectiveazul\n\n43) Rizzotto: Discover R2 Azulita G1 Estaclaro\n\n44) DetectiveAzul: Trade Y2 B2 Detectiveazul\n\n45) Rizzotto: Build G2 Azulita\n\n46) DetectiveAzul: Discover B2 Detectiveazul B1 Estrambolico\n\n47) Rizzotto: Build Y2 Azulita\n\n48) DetectiveAzul: Trade B2 G2 Estrambolico\n\tRizzotto: *tiritirititiiii* wiggle wiggle wiggle *tiritirititiiii*\n\n49) Rizzotto: Move G1 Azulita Estaclaro\n\tDetectiveAzul: They see me rollin'! They hatiiiinggg\n\n50) DetectiveAzul: Build G3 Estrambolico\n\tRizzotto: Batmaaaan, se va casar con Vicky Vaaale/ Batmaaan, se va a casar con Vicky Vaaale \n\tDetectiveAzul: Build g3 estrambolico\n\n51) Rizzotto: Build G3 Estaclaro\n\n52) DetectiveAzul: Move G1 Detectiveazul Estaclaro\nCatastrophe Estaclaro G\n\n53) Rizzotto: Trade G2 R2 Azulita\n\tRizzotto: Mierda xD\n\n54) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove G3 Estrambolico Azulita\nMove G3 Azulita Rizzotto\n\n55) Rizzotto: Move R2 Rizzotto Azulita\n\n56) DetectiveAzul: Sacrifice R2 Detectiveazul\nAttack R1 Rizzotto\nAttack Y1 Rizzotto\n\n\nHomeworlds Online (SDG# 26562)\nVariants: "Unrated, Hard time"\nStarted: 2014.11.30, Ended: 2014.12.10\nParticipants: Rizzotto (S), DetectiveAzul (N), wil (E)\nWinner: DetectiveAzul\n\n1) DetectiveAzul: Homeworld G1 B2 Y3\n\n2) wil: H Y3 B1 G3\n\n3) Rizzotto: Homeworld G2 B3 R3 Rizzotto\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\n5) wil: B G1 Wil\n\n6) Rizzotto: Build R1 Rizzotto\n\n7) DetectiveAzul: Build Y1 Detectiveazul\n\n8) wil: T G1 Y1 Wil\n\n9) Rizzotto: Trade R1 Y1 Rizzotto\n\n10) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n11) wil: Build G1 Wil\n\n12) Rizzotto: Build R1 Rizzotto\n\twil: at least we are all protected two stars away from each other....one does look very angry though...\n\n13) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\tRizzotto: hahaha \n\n14) wil: Discover G1 Wil B2 B2\n\n15) Rizzotto: Build Y1 Rizzotto\n\n16) DetectiveAzul: Build B1 Detectiveazul\n\n17) wil: Build G1 Wil\n\n18) Rizzotto: Trade Y1 B1 Rizzotto\n\n19) DetectiveAzul: Build G2 Detectiveazul\n\n20) wil: Build G2 B2\n\n21) Rizzotto: Build B2 Rizzotto\n\n22) DetectiveAzul: Trade G2 Y2 Detectiveazul\n\n23) wil: Trade G2 B2 B2\n\n24) Rizzotto: Build B3 Rizzotto\n\tRizzotto: build b3 Rizzotto\n\tRizzotto: oops \n\n25) DetectiveAzul: Trade Y3 R3 Detectiveazul\nCatastrophe Rizzotto B\n\n26) wil: Build G2 B2\n\twil: now we see your evil plan...\n\n27) Rizzotto: Move R3 Rizzotto Wil\n\n28) DetectiveAzul: Build R1 Detectiveazul\n\n29) wil: Trade G2 R2 B2\n\twil: he attacks you and you lash out at me? Is this a tag team?\n\n30) Rizzotto: Attack G3E Wil\n\tRizzotto: Nop, it was just easy. Sorry. \n\n31) DetectiveAzul: Build Y1 Detectiveazul\n\n32) wil: Build G2 Wil\n\n33) Rizzotto: Trade G3 R3 Wil\n\twil: I don't know why I didn't just move into your system...murder suicide is my only way to go now...\n\n34) DetectiveAzul: Sacrifice Y2 Detectiveazul\nDiscover R3 Detectiveazul R3 Armada\nMove R3 Armada Rizzotto\n\tRizzotto: You shouldn't have told me. \n\tRizzotto: shouldn't had*\n\tRizzotto: No, wait....*have. My english is broken. Help. \n\n35) wil: Sacrifice B2 B2\nTrade G1 R1 Wil\nTrade Y1 R1 Wil\nCatastrophe Wil R\n\n36) Rizzotto: Build R1 Rizzotto\n\twil: We were a peace loving people, growing, trading, and you came into my world with your big warships, and then converted our largest ship supplying food and aid to foreign lands into one of your ugly warships...they had to be eliminated, while our days in this galaxy are numbered, they will not be spent in war, but in personal growth and meditation...we could not allow such evil to win.\n\twil: broken english.... where are you guys from?\n\tRizzotto: Spain\n\n37) DetectiveAzul: Attack Y1S Rizzotto\n\n38) wil: Trade G1 Y1 B2\n\n39) Rizzotto: Build R1 Rizzotto\n\twil: Welcome to homeworlds! do you have a physical set of pyramids to play with? \n\tDetectiveAzul: Yep, but not official pyramids. I printed some cards with ships on the face, and the stars on the back, so i can bring them all anywhere.\n\twil: Interesting... while you can't nest or tree some other games are lacking, but that should work well for this... \n\n40) DetectiveAzul: Move R3 Rizzotto Wil\n\n\tRizzotto: The game won't let me cause catastrophe in my own system, sooo...That's it haha But we didn't double team, wil, I just made one horrible mistake after another.\n\tDetectiveAzul: Oh D: Game is concluded. \n\twil: lol...it is fine...first game ever for me for more than two players that really reached a conclusion\n\twil: seriously, either of a both challenge me...\n\tRizzotto: Will do later today. \n\nHomeworlds Online (SDG# 26585)\nVariants: "Unrated"\nStarted: 2014.11.30, Ended: 2014.11.30\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld B3 G2 R3\n\n2) DetectiveAzul: Homeworld G1 B1 R3 *\n\n3) Rizzotto: Build R1 Rizzotto\n\n4) DetectiveAzul: Build R1 Detectiveazul\n\tDetectiveAzul: If any ocasional watcher has following this game, is an experimental game to test universe 0-between steps\n\n5) Rizzotto: Trade R1 Y1 Rizzotto\n\n6) DetectiveAzul: Trade R1 Y1 Detectiveazul\n\n7) Rizzotto: Build R1 Rizzotto\n\n8) DetectiveAzul: Build R1 Detectiveazul\n\n9) Rizzotto: Trade R1 G1 Rizzotto\n\n10) DetectiveAzul: Trade R1 G1 Detectiveazul\n\n11) Rizzotto: Build R1 Rizzotto\n\n12) DetectiveAzul: Build R1 Detectiveazul\n\n13) Rizzotto: Build Y1 Rizzotto\n\n14) DetectiveAzul: Build Y2 Detectiveazul\n\n15) Rizzotto: Build G2 Rizzotto\n\n16) DetectiveAzul: Move G1 Detectiveazul Rizzotto\nCatastrophe Rizzotto Green\n\n17) Rizzotto: Trade Y1 G1 Rizzotto\n\n18) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\n19) Rizzotto: Build Y1 Rizzotto\n\n20) DetectiveAzul: Build Y1 Detectiveazul\n\n21) Rizzotto: Discover R1 Rizzotto B2 Explotido\n\n22) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n23) Rizzotto: Move G1 Rizzotto Explotido\n\n24) DetectiveAzul: Build Y1 Detectiveazul\n\n25) Rizzotto: Build G2 Explotido\n\n26) DetectiveAzul: Move R3 Detectiveazul Explotido\n\n27) Rizzotto: Move R3 Rizzotto Detectiveazul\n\n28) DetectiveAzul: Move Y1 Detectiveazul Rizzotto\n\n29) Rizzotto: Attack Y2 Detectiveazul\n\n30) DetectiveAzul: Sacrifice R3 Explotido\nAttack Y1 Rizzotto\nAttack Y1 Rizzotto\nPass\n\n\nHomeworlds Online (SDG# 26587)\nVariants: "Unrated"\nStarted: 2014.11.30, Ended: 2014.12.4\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld B1 G2 R3\n\n2) DetectiveAzul: Homeworld G1 B3 Y3\n\n3) Rizzotto: Build R1 Rizzotto\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\n5) Rizzotto: Build R1 Rizzotto\n\n6) DetectiveAzul: Trade Y1 R1 Detectiveazul\n\n7) Rizzotto: Trade R1 Y1 Rizzotto\n\n8) DetectiveAzul: Build R1 Detectiveazul\n\n9) Rizzotto: Discover R1 Rizzotto G3 Hulk\n\n10) DetectiveAzul: Build R2 Detectiveazul\n\n11) Rizzotto: Build R2 Hulk\n\n12) DetectiveAzul: Trade R2 B2 Detectiveazul\n\n13) Rizzotto: Build R2 Rizzotto\n\n14) DetectiveAzul: Build Y1 Detectiveazul\n\n15) Rizzotto: Trade R2 Y2 Rizzotto\n\tRizzotto: Cada vez me gusta más esto aunque casi la jieda en este turno xD\n\n16) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\tDetectiveAzul: Me congratula, me congratula. Pero ¿tú no estás trabajando?\n\tRizzotto: Algunas veces paro para desayunar :3\n\n17) Rizzotto: Build R2 Rizzotto\n\n18) DetectiveAzul: Build Y1 Detectiveazul\n\n19) Rizzotto: Move Y1 Rizzotto Hulk\n\n20) DetectiveAzul: Discover Y3 Detectiveazul G2 Cristina\n\tDetectiveAzul: En la partida que jugaba contra el top 4 del servidor al final ha muerto por no jugar. Lo puso en hardtime y llevaba 5 días sin postear :(. Yo que quería ganarla con justicia y honor. Se ha batido en retirada.\n\n21) Rizzotto: Build Y1 Rizzotto\n\tRizzotto: El que ha perdido el honor es él, por huir ò.ó Cobarde\n\n22) DetectiveAzul: Move R1 Detectiveazul Cristina\n\n23) Rizzotto: Sacrifice Y2 Rizzotto\nMove R2 Hulk Cristina\nMove R2 Cristina Detectiveazul\n\n24) DetectiveAzul: Attack R2 Detectiveazul\n\n25) Rizzotto: Build Y2 Hulk\n\n26) DetectiveAzul: Build Y2 Cristina\n\n27) Rizzotto: Trade Y1 B1 Rizzotto\n\tRizzotto: Vale...cualquier nave de cualquier color podía atacar a cualquier nave de cualquier color? xD\n\n28) DetectiveAzul: Move R2 Detectiveazul Cristina\n\tDetectiveAzul: Cualquier nave puede capturar una de tamaño igual o inferior si hay tecnología roja en el sistema (sea de otra nave o de un planeta)\n\n29) Rizzotto: Move Y1 Hulk Rizzotto\n\n30) DetectiveAzul: Move Y3 Cristina Hulk\n\n31) Rizzotto: Move Y2 Hulk Rizzotto\n\n32) DetectiveAzul: Sacrifice R1 Cristina\nAttack R1 Hulk\n\tRizzotto: Qué perdida estoy ahora mismo...xD Mi fallo me ha descolocao totalmente. \n\n33) Rizzotto: Discover Y2 Rizzotto B3 Kirito\n\tDetectiveAzul: Sí, si no hubieras tenido ese fallo, estarías muy bien con todo lo que tienes. Ahora tendrías que haber reconfigurado tu estrategia.\n\n34) DetectiveAzul: Build R1 Hulk\n\tRizzotto: Aún estoy superando la pérdida, ssssshhh\n\n35) Rizzotto: Move R2 Rizzotto Kirito\n\n36) DetectiveAzul: Build R2 Detectiveazul\n\n37) Rizzotto: Trade Y2 G2 Kirito\n\n38) DetectiveAzul: Build R3 Cristina\n\n39) Rizzotto: Build R3 Kirito\n\n40) DetectiveAzul: Sacrifice Y3 Hulk\nMove R1 Detectiveazul Cristina\nMove R1 Cristina Kirito\nMove R2 Cristina Kirito\nCatastrophe Kirito R\n\n41) Rizzotto: Trade G2 Y2 Kirito\n\n42) DetectiveAzul: Sacrifice B2 Detectiveazul\nTrade R1 B1 Hulk\nPass\n\n43) Rizzotto: Build R1 Rizzotto\n\n44) DetectiveAzul: Build B2 Hulk\n\n45) Rizzotto: Trade B1 G1 Rizzotto\n\n46) DetectiveAzul: Build B1 Hulk\n\n47) Rizzotto: Move G1 Rizzotto Kirito\n\n48) DetectiveAzul: Sacrifice Y2 Cristina\nMove B1 Hulk Rizzotto\nMove B1 Hulk Rizzotto\n\n49) Rizzotto: Attack B1S Rizzotto\n\n50) DetectiveAzul: Sacrifice Y1 Detectiveazul\nMove B2 Hulk Rizzotto\nCatastrophe Rizzotto B\n\n51) Rizzotto: Move R3 Rizzotto Detectiveazul\n\n52) DetectiveAzul: Build R1 Detectiveazul\n\n53) Rizzotto: Attack G1 Detectiveazul\n\n54) DetectiveAzul: Attack G1 Detectiveazul\n\n55) Rizzotto: Sacrifice Y1 Rizzotto\nMove R3 Detectiveazul Rizzotto\n\n56) DetectiveAzul: Trade R2 Y2 Detectiveazul\n\n57) Rizzotto: Build G2 Kirito\n\n58) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove R1 Detectiveazul Rizzotto\nMove R1 Hulk Rizzotto\nCatastrophe Rizzotto R\n\n\nHomeworlds Online (SDG# 26568)\nVariants: "Hard time"\nStarted: 2014.11.30, Ended: 2014.12.10\nParticipants: dlwillson (S), dethdukk (N)\nWinner: dlwillson\n\n1) dethdukk: Homeworld B2 R1 G3\n\n2) dlwillson: Homeworld B1 Y3 G3\n\tdethdukk: forgot how slow this website is sometimes.\n\n3) dethdukk: Build G1 Dethdukk\n\tdlwillson: It can be.\n\n4) dlwillson: Build G1 Dlwillson\n\n5) dethdukk: Trade G1 R1 Dethdukk\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) dethdukk: Build R2 Dethdukk\n\n8) dlwillson: B R2 Dlwillson\n\n9) dethdukk: Trade R1 Y1 Dethdukk\n\n10) dlwillson: T R1 B1 Dlwillson\n\n11) dethdukk: Build R1 Dethdukk\n\tdethdukk: b r1 dethdukk\n\n12) dlwillson: B B1 Dlwillson\n\tdethdukk: whoops, wrong box.\n\n\tdlwillson: :-)\n\nHomeworlds Online (SDG# 26601)\nVariants: "Hard time"\nStarted: 2014.12.1, Ended: 2014.12.8\nParticipants: wil (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3\n\n2) wil: Homeworld G3 B1 B3 *\n\twil: round 43... ttt swats the fly away agin...\r\n\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) wil: Build B1 Wil\n\tTeeTeeTee: Oooh: something different.\n\n5) TeeTeeTee: Trade G3 B3 Teeteetee\n\n6) wil: Trade B3 Y3 Wil\n\n7) TeeTeeTee: Build B2 Teeteetee\n\n8) wil: Build B2 Wil\n\n9) TeeTeeTee: Trade B3 R3 Teeteetee\n\n10) wil: Trade B1 R1 Wil\n\n11) TeeTeeTee: Build G1 Teeteetee\n\tTeeTeeTee: That's a fierce opening you chose, there, wil.\n\n12) wil: Discover B2 Wil G2 G2\n\twil: I had to do something... it was quite scary...\n\n13) TeeTeeTee: Build G1 Teeteetee\n\n14) wil: Build B1 G2\n\n15) TeeTeeTee: Discover G1 Teeteetee B3 Earlgrey\n\n16) wil: Trade B2 G2 G2\n\n17) TeeTeeTee: Discover G1 Teeteetee Y3 Ceylon\n\n18) wil: Build Y1 Wil\n\twil: nice..step behind again...\n\n19) TeeTeeTee: Build G2 Teeteetee\n\n20) wil: Sacrifice Y1 Wil\nDiscover G2 G2 Y3 Y3\n\n21) TeeTeeTee: Move G1 Teeteetee Y3\n\n22) wil: Sacrifice R1 Wil\nAttack G1 Y3\n\n23) TeeTeeTee: Build G3 Earlgrey\n\n24) wil: Build G3 Y3\n\n25) TeeTeeTee: Move G2 Teeteetee Y3\nCatastrophe Y3 Green\n\n26) wil: Build B2 G2\n\n27) TeeTeeTee: Build G1 Ceylon\n\n28) wil: Trade B2 R2 G2\n\n29) TeeTeeTee: Sacrifice G3 Earlgrey\nBuild G2 Ceylon\nBuild G2 Earlgrey\nBuild G3 Earlgrey\n\n30) wil: Build B2 G2\n\twil: over again....you need to find better competition..\n\n31) TeeTeeTee: Move G1 Ceylon G2\n\n32) wil: Attack G1 G2\n\twil: dang your good..\n\n33) TeeTeeTee: Move G1 Ceylon G2\n\n34) wil: Trade G1 Y1 G2\n\twil: dang I wish I had a reason to continue this charade\n\n35) TeeTeeTee: Sacrifice G3 Earlgrey\nBuild G1 G2\nBuild G3 G2\nBuild G3 Earlgrey\nCatastrophe G2 Green\n\n\tTeeTeeTee: You might as well have attacked that g1 on your last turn - I'd have lost more ships.\n\tTeeTeeTee: Thanks for the game. I liked your opening, but I feel like you would have been in a stronger position if you'd pushed your blue advantage more at the start, i.e. not traded a b1 for an r1, or a b2 for a g2, but kept building blue ships for as long as you could get away with it.\n\twil: I would've, but you immediately traded for a B3...ended that gambit...\n\nHomeworlds Online (SDG# 26540)\nVariants: "Unrated"\nStarted: 2014.12.2, Ended: 2014.12.28\nParticipants: DetectiveAzul (S), dsabremaster (N)\nWinner: DetectiveAzul\n\n1) dsabremaster: Homeworld G2 B1 Y3\n\n2) DetectiveAzul: Homeworld B3 G1 R3\n\n3) dsabremaster: Build Y1 Dsabremaster\n\n4) DetectiveAzul: Build R1 Detectiveazul\n\n5) dsabremaster: Discover Y1 Dsabremaster G3 Clover\n\n6) DetectiveAzul: Build R1 Detectiveazul\n\n7) dsabremaster: Build Y1 Dsabremaster\n\n8) DetectiveAzul: Trade R1 G1 Detectiveazul\n\n9) dsabremaster: Build Y1 Clover\n\n10) DetectiveAzul: Build R1 Detectiveazul\n\n11) dsabremaster: Build Y2 Dsabremaster\n\n12) DetectiveAzul: Trade R3 Y3 Detectiveazul\n\n13) dsabremaster: Trade Y1 B1 Dsabremaster\n\n14) DetectiveAzul: Build R1 Detectiveazul\n\n15) dsabremaster: Move B1 Dsabremaster Clover\n\n16) DetectiveAzul: Discover R1 Detectiveazul G2 Hulk\n\n17) dsabremaster: Build B1 Clover\n\n18) DetectiveAzul: Build R2 Hulk\n\n19) dsabremaster: Build B2 Clover\n\n20) DetectiveAzul: Build R2 Hulk\n\n21) dsabremaster: Trade B2 R2 Clover\n\n22) DetectiveAzul: Sacrifice R1 Hulk\nPass\n\n23) dsabremaster: Build B2 Clover\n\n24) DetectiveAzul: Build G1 Detectiveazul\n\n\nHomeworlds Online (SDG# 26567)\nVariants: "Hard time"\nStarted: 2014.12.2, Ended: 2014.12.23\nParticipants: dlwillson (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\n3) mneme: Build G1 Mneme\n\tdlwillson: Hey mneme, It's good to play you again. I kept meaning to tell you on FB that I had setup the challenge, but kept forgetting to do it. Anyway, have fun! \n\tmneme: Oh, I noticed, I just needed to get around to replying. My habits have mostly left out sdg, which is why I dropped so many games.\n\n4) dlwillson: Build G1 Dlwillson\n\n5) mneme: Trade G1 B1 Mneme\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) mneme: Build B2 Mneme\n\n8) dlwillson: B B2 Dlwillson\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) dlwillson: T B1 R1 Dlwillson\n\n11) mneme: Build B1 Mneme\n\n12) dlwillson: B R1 Dlwillson\n\n13) mneme: Discover B1 Mneme G3 Livery\n\n14) dlwillson: D B2 Dlwillson G2 Field\n\n15) mneme: Discover B1 Mneme Y3 Portal\n\n16) dlwillson: M R1 Dlwillson Field\n\n17) mneme: Build B2 Livery\n\n18) dlwillson: B B3 Field\n\n19) mneme: Build B3 Livery\n\n20) dlwillson: T B3 Y3 Field\n\n21) mneme: Trade B2 R2 Livery\n\n22) dlwillson: B R2 Field\n\n23) mneme: Build G1 Mneme\n\tmneme: b g1 mneme\n\n24) dlwillson: Discover R2 Field B3 Sky\n\n25) mneme: Move G1 Mneme Portal\n\n26) dlwillson: B Y1 Field\n\n27) mneme: Build Y1 Mneme\n\n28) dlwillson: Discover Y1 Field R3 Mars\n\n29) mneme: Discover Y2 Mneme R3 Ruby\n\n30) dlwillson: B G1 Dlwillson\n\n31) mneme: Build G1 Mneme\n\n32) dlwillson: D G1 Dlwillson Y2 Golden\n\n33) mneme: Trade B1 Y1 Livery\n\n34) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Mars\nBuild R2 Sky\nBuild R3 Dlwillson\n\tdlwillson: So much going on! I have to get out the plastic now. Sorry for the delay.\n\tmneme: heh. I try not to take it quite that seriously. :)\n\tdlwillson: My ladder-match took a sudden turn, so I have to use my plastic for that match. So... I guess I'll follow your lead and take this one less seriously. I'll play the best I can from the screen, and hope you'll excuse me if I disappoint you. :-)\n\n35) mneme: Build G2 Portal\n\tmneme: I don't mind if you use a model, btw. I don't take things too seriously, but I can also model pretty well in my head... :)\n\n36) dlwillson: Sacrifice Y2 Mars\nMove R2 Sky Mneme\nMove R2 Sky Mneme\n\n37) mneme: Sacrifice R2 Livery\nAttack R2 Mneme\nAttack R2 Mneme\n\n38) dlwillson: Sacrifice Y3 Field\nDiscover G1 Golden Y3 Sunny\nMove R1 Field Mars\nMove R1 Mars Mneme\nCatastrophe Mneme R\n\n39) mneme: Trade G1 R1 Mneme\n\n40) dlwillson: Trade R3 G3 Dlwillson\n\tdlwillson: Sorry, forgot the catastrophe\n\tmneme: Whoops. Yeah, that would have been a bit of a blunder. No big. \n\n41) mneme: Build G1 Mneme\n\n42) dlwillson: B G2 Sunny\n\tmneme: :) Figured it was worth having r at this stage in the game. :)\n\n43) mneme: Move G1 Mneme Sunny\n\tdlwillson: Very discerning of you. :-)\n\n44) dlwillson: Sacrifice G2 Sunny\nBuild B1 Field\nBuild Y2 Mars\n\n45) mneme: Sacrifice G2 Portal\nBuild B2 Livery\nBuild B3 Portal\n\n46) dlwillson: Sacrifice Y2 Mars\nDiscover B1 Field B3 Sky\nMove B2 Field Sunny\n\n47) mneme: Build G2 Portal\n\n48) dlwillson: Sacrifice Y1 Mars\nMove B1 Sky Mneme\n\n49) mneme: Attack B1 Mneme\n\n50) dlwillson: B B3 Sunny\n\n51) mneme: Move B1 Mneme Ruby\n\n52) dlwillson: Discover B2 Sunny Y2 Golden\n\n53) mneme: Trade G2 R2 Portal\n\n54) dlwillson: B G2 Dlwillson\n\n55) mneme: Move B2 Livery Golden\n\n56) dlwillson: T B3 R3 Sunny\n\n57) mneme: Sacrifice G1 Sunny\nBuild B3 Golden\n\n58) dlwillson: B G1 Sunny\n\n59) mneme: Build G2 Mneme\n\n60) dlwillson: M G1 Sunny Mneme\n\n61) mneme: Move G2 Mneme Dlwillson\n\n62) dlwillson: S G2 Dlwillson\nB G2 Mneme\nB G2 Mneme\nC Mneme G\n\n63) mneme: Sacrifice R2 Portal\nAttack R1 Dlwillson\nAttack B2 Golden\n\n64) dlwillson: M G1 Sunny Mneme\n\n65) mneme: Attack G1 Mneme\n\n66) dlwillson: M R3 Sunny Mneme\n\n67) mneme: Sacrifice G2 Dlwillson\nBuild R1 Mneme\nBuild R2 Mneme\nCatastrophe Mneme R\n\n68) dlwillson: Trade G3 R3 Dlwillson\n\n69) mneme: Sacrifice G1 Portal\nBuild R1 Dlwillson\n\n70) dlwillson: Trade R3 G3 Dlwillson\n\n71) mneme: Move B3 Golden Dlwillson\n\tmneme: That was fascinating until that last blunder. :(\n\n72) dlwillson: Build G1 Dlwillson\n\tdlwillson: I think you only lost one turn, if that.\n\n73) mneme: Sacrifice B2 Golden\nTrade B3 G3 Dlwillson\nTrade R1 G1 Dlwillson\nCatastrophe Dlwillson G\n\tmneme: I meant the r3 entry into my home. I'm not sure you had a choice at that point--but it did make the endgame relatively trivial. I think I had a solid endgame even without that, though (although running an endgame with no large ships in my home system is interesting.\n\n\tdlwillson: Not that it matters much, but I don't like passing, and we're within a turn of the end anyway.\n\tmneme: I think playing out your home system and hoping I blunder might have been better. If I made a mistake on the blue kill you might get tempo for an attack on my home system.\n\tdlwillson: Again?\n\tdlwillson: And I disagree with you about the potential of playing to regain control of my home-system. I saw that option, and I don't think your win would have been any more difficult. I would have had to sac my R3 to get i, then all you have to do is swap B3 to Y3, ignore my next turn, because it can't get me a multi-pip R, and come in with two B3. Done either way. The R3 seemed to me to have more chances for you to make a mistake, which I needed, due to your massive material advantage.\n\tmneme: Fair enough; I'm not going to spend too much time on post-analysis right now anyway. The issue with coming in with two b3 is if you can get two b in your home system, in which case my attack can be easily repelled.\r\n\r\nTotally again.\n\nHomeworlds Online (SDG# 26634)\nVariants: "No undo"\nStarted: 2014.12.6, Ended: 2015.1.1\nParticipants: Grissom (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld R1 B2 G3\n\n2) Grissom: Homeworld R3 B2 G3\n\n3) hellajoey: Build G1 Hellajoey\n\n4) Grissom: Build G1 Grissom\n\n5) hellajoey: Trade G1 Y1 Hellajoey\n\n6) Grissom: Build G1 Grissom\n\thellajoey: Hey, Larry. I have an Android question: Do you have experience with pinch-to-zoom or panning? I've started working on a Homeworlds player in my spare time. I've implemented both pinch-to-zoom and panning but there are some problems. The biggest issue is I need to be able to pan or zoom out and see parts of the board that started outside of the screen window but anything that starts outside of the screen window gets chopped off once it's moved into the screen window. Does that make sense? I'd really like to be able to accomplish this without having to know how big the game view is going to be since it will be built dynamically.\r\n\r\nAny ideas? Also, how's eBay and how's life? \n\tGrissom: Hi Joey, eBay is good I'm really enjoying it. I do have some experience with pinch to zoom and panning but it is a bit difficult to make sense of it without seeing the code. Do you have a git project? I would be interested in contributing. Regardless I would recommend looking into an existing library like a pinch to zoom image view and reviewing how they handle drawing the bitmap.\n\n7) hellajoey: Build Y1 Hellajoey\n\n8) Grissom: Trade G1 Y1 Grissom\n\n9) hellajoey: Build Y2 Hellajoey\n\n10) Grissom: Build Y2 Grissom\n\n11) hellajoey: Discover Y1 Hellajoey G3 Grun\n\n12) Grissom: Discover Y1 Grissom G1 Greengob\n\n13) hellajoey: Trade Y1 B1 Hellajoey\n\n14) Grissom: Discover G1 Grissom Y1 Flash\n\n15) hellajoey: Move B1 Hellajoey Grun\n\n16) Grissom: Discover Y1 Greengob B3 Blubot\n\n17) hellajoey: Build G1 Hellajoey\n\thellajoey: Thanks, Larry. I don't think the project is in the place where I want to open it up yet. It's still a little haywire until I figure out how I want the visuals to work. I'll keep you posted though. Once I have a general player working there will still be a lot of work to make it awesome. Glad things are going well at eBay. Miss you guys.\n\n18) Grissom: Discover G1 Flash B3 Blubot2point0\n\tGrissom: This may be helpful: https://github.com/sephiroth74/ImageViewZoom\n\n19) hellajoey: Trade G3 R3 Hellajoey\n\n20) Grissom: Build G1 Grissom\n\n21) hellajoey: Build G2 Hellajoey\n\n22) Grissom: Build G2 Blubot2point0\n\n23) hellajoey: Move G2 Hellajoey Grun\n\n24) Grissom: Trade G3 R3 Grissom\n\n25) hellajoey: Move R3 Hellajoey Blubot2point0\n\n26) Grissom: Sacrifice G2 Blubot2point0\nBuild G2 Grissom\nBuild Y1 Blubot\n\n27) hellajoey: Attack G1 Blubot2point0\n\n28) Grissom: Sacrifice G2 Grissom\nBuild Y2 Blubot\nBuild Y3 Grissom\n\n29) hellajoey: Sacrifice G2 Grun\nBuild Y3 Grun\nBuild Y3 Hellajoey\n\n30) Grissom: Sacrifice Y2 Blubot\nMove Y1 Blubot Hellajoey\nMove Y1 Blubot Hellajoey\nCatastrophe Hellajoey Yellow\n\n31) hellajoey: Move Y3 Grun Hellajoey\n\n32) Grissom: Build G2 Grissom\n\n33) hellajoey: Build G2 Blubot2point0\n\n34) Grissom: Discover G1 Grissom Y1 Yo\n\n35) hellajoey: Build Y1 Hellajoey\n\n36) Grissom: Discover Y2 Grissom B1 Hop\n\n37) hellajoey: Move Y1 Hellajoey Blubot2point0\n\n38) Grissom: Build Y2 Grissom\n\n39) hellajoey: Sacrifice G2 Blubot2point0\nBuild Y2 Blubot2point0\nBuild Y3 Hellajoey\n\n40) Grissom: Build G2 Yo\n\n41) hellajoey: Build G2 Blubot2point0\n\n42) Grissom: Build G3 Grissom\n\n43) hellajoey: Build G3 Hellajoey\n\n44) Grissom: Trade Y2 B2 Grissom\n\n45) hellajoey: Build Y2 Grun\n\n46) Grissom: Move Y2 Hop Grun\n\n47) hellajoey: Build R1 Blubot2point0\n\n48) Grissom: Move R3 Grissom Yo\n\n49) hellajoey: Move Y2 Grun Yo\n\n50) Grissom: Sacrifice R3 Yo\nAttack Y2 Yo\nAttack B1 Grun\nAttack Y1 Grun\n\n51) hellajoey: Discover Y3 Hellajoey B3 Blut\n\n52) Grissom: Sacrifice G3 Grissom\nBuild G3 Grissom\nBuild B1 Grun\nBuild B1 Grun\n\n53) hellajoey: Discover G1 Hellajoey B3 Druid\n\n54) Grissom: Move G2 Yo Druid\n\n55) hellajoey: Move R3 Blubot2point0 Yo\n\n56) Grissom: Sacrifice B2 Grissom\nTrade G2 R2 Druid\nTrade Y1 R1 Grun\n\n57) hellajoey: Attack G1 Yo\n\n58) Grissom: Build R2 Grun\n\n59) hellajoey: Sacrifice Y3 Blut\nMove G1 Blubot2point0 Yo\nMove G1 Yo Grissom\nMove G1 Yo Grissom\nCatastrophe Grissom Green\n\n60) Grissom: Sacrifice Y2 Yo\nMove R2 Druid Hellajoey\nMove R1 Grun Hellajoey\n\n61) hellajoey: Move Y3 Hellajoey Grun\n\n62) Grissom: Sacrifice Y2 Grun\nDiscover B1 Grun G1 Skip\nMove R2 Grun Hellajoey\nCatastrophe Hellajoey Red\n\n63) hellajoey: Move Y2 Blubot2point0 Skip\n\n64) Grissom: Build B2 Grun\n\n65) hellajoey: Sacrifice R3 Yo\nAttack B1 Skip\nAttack B2 Grun\nAttack B1 Grun\n\n66) Grissom: Build B3 Grun\nCatastrophe Grun Blue\n\n67) hellajoey: Build Y1 Skip\n\n68) Grissom: Trade Y3 G3 Grissom\n\n69) hellajoey: Move G2 Blubot2point0 Skip\n\n70) Grissom: Build G1 Grissom\n\n71) hellajoey: Sacrifice Y3 Grun\nMove G1 Druid Skip\nMove G1 Skip Grissom\nMove G2 Skip Grissom\nCatastrophe Grissom Green\n\thellajoey: That was probably the coolest game I've been in.\n\tGrissom: Just saw this comment, ya it was a fun one.\n\n\nHomeworlds Online (SDG# 26638)\nVariants: "Hard time"\nStarted: 2014.12.6, Ended: 2015.1.2\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: Homeworld B1 Y2 G3\n\twil: Been a while...if I recall your life/work got real busy....hope you are back to an even keel.\n\n2) dlwillson: Homeworld B3 R2 G3\n\n3) wil: Build G1 Wil\n\n4) dlwillson: Build G1 Dlwillson\n\tdlwillson: I am, mostly. Still very busy, but I'm making time for SDG::Homeworlds again.\n\n5) wil: Trade G1 B1 Wil\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) wil: Build B2 Wil\n\tdlwillson: Blue. Yuck. :-)\n\n8) dlwillson: B B2 Dlwillson\n\twil: Building trading ships looked like a fine venture to investigate.\n\n9) wil: Discover B2 Wil G3 G3\n\n10) dlwillson: Trade B1 Y1 Dlwillson\n\n11) wil: Build G1 Wil\n\n12) dlwillson: Build Y1 Dlwillson\n\n13) wil: Trade G1 R1 Wil\n\n14) dlwillson: B Y1 Dlwillson\n\n15) wil: Build B1 G3\n\n16) dlwillson: Discover Y1 Dlwillson G1 Field\n\n17) wil: Trade B2 Y2 G3\n\n18) dlwillson: Discover Y1 Dlwillson G1 Sea\n\n19) wil: Discover B1 Wil Y3 Y3\n\n20) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Field\nBuild Y3 Sea\nBuild Y3 Dlwillson\n\n21) wil: Build B2 G3\n\twil: Yeah, I got behind on that one... and good luck with ttt since you guys left the playing field he's been beating the pants off me...\n\tdlwillson: He's good, and he got me. I guess I'll play someone else next, you or TwoShort, or maybe I'll wait a few days and see if I get challenged.\n\twil: I wanna see he an two short go at it.. \n\n22) dlwillson: Trade Y1 R1 Dlwillson\n\n23) wil: Discover B2 G3 Y1 Y1\n\n24) dlwillson: M B2 Dlwillson Field\n\n25) wil: Trade B1 G1 Y3\n\n26) dlwillson: D Y3 Sea B3 Sky\n\n27) wil: Sacrifice G1 Y3\nBuild Y3 G3\n\n28) dlwillson: S Y2 Field\nM Y1 Field G3\nM Y1 Sea G3\nC G3 Y\n\n29) wil: Build R1 Wil\n\n30) dlwillson: T Y3 G3 Dlwillson\n\n31) wil: Build R2 Wil\n\n32) dlwillson: B R2 Dlwillson\n\n33) wil: Move R1 Wil G3\n\n34) dlwillson: Trade R2 Y2 Dlwillson\n\n35) wil: Trade R2 Y2 Wil\n\n36) dlwillson: Move R1 Dlwillson Field\n\n37) wil: Build R2 G3\n\n38) dlwillson: Build B1 Field\n\n39) wil: Trade R1 Y1 G3\n\n40) dlwillson: T B1 Y1 Field\n\n41) wil: Build Y3 G3\n\n42) dlwillson: B Y3 Field\n\n43) wil: Discover Y2 Wil B3 B3\n\tdlwillson: Happy Christmas, Wil!\n\twil: back atcha brother!\n\n44) dlwillson: T Y3 R3 Field\n\n45) wil: Move Y1 G3 Field\n\n46) dlwillson: B Y3 Dlwillson\n\n47) wil: Build B1 G3\n\n48) dlwillson: B B2 Field\n\n49) wil: Build G1 Wil\n\n50) dlwillson: Attack Y1 Field\n\n51) wil: Discover B1 G3 R1 R1\n\n52) dlwillson: M B2 Field B3\n\n53) wil: Move Y2 B3 R1\n\n54) dlwillson: T B2 G2 B3\n\n55) wil: Build R2 G3\n\n56) dlwillson: M R1 Field B3\n\n57) wil: Build R3 Wil\n\n58) dlwillson: B R3 B3\n\n59) wil:\nB B2 G3\n\n\n60) dlwillson: Trade Y2 G2 Dlwillson\n\n61) wil: Build Y2 G3\n\n62) dlwillson: Build G1 B3\n\n63) wil: Move B1 G3 R1\n\n64) dlwillson: Sacrifice Y3 Dlwillson\nMove G2 B3 Wil\nMove G1 B3 Wil\nMove R3 B3 Wil\nCatastrophe Wil G\n\n65) wil: Sacrifice Y2 R1\nMove R2 G3 Wil\nMove Y3 G3 Wil\nCatastrophe Wil R\n\tdlwillson: I think that's got it.\n\twil: Why was I blind?\n\n66) dlwillson: Move Y1 Field B3\n\twil: I was ready to pull the plug on my first step...and thought i should pull out that green, but just didn't see it!\n\n67) wil: Build Y2 G3\n\tdlwillson: Wow! You slipped out of the noose! I thought I had you!\n\n68) dlwillson: Sacrifice Y3 Sky\nMove Y1 B3 Wil\nMove Y1 Field B3\nMove Y1 B3 Wil\nCatastrophe Wil Y\n\tdlwillson: I guess I did after all. I was expecting you to trade back to green that turn.\n\twil: I wasn't counting again....sheesh...nice game!\n\n\nHomeworlds Online (SDG# 26648)\nVariants: "Hard time"\nStarted: 2014.12.9, Ended: 2014.12.14\nParticipants: TeeTeeTee (S), dlwillson (N)\nWinner: TeeTeeTee\n\n1) dlwillson: H B3 Y1 G3\n\tTeeTeeTee: Hello! That was a quick challenge.\n\tdlwillson: I was waiting for you to finish your game with Wil, and worrying that someone would challenge me before you did. :-)\n\n2) TeeTeeTee: Homeworld B1 Y2 G3\n\n3) dlwillson: B G1 Dlwillson\n\tTeeTeeTee: Indeed - I have been challenged a lot, here.\n\n4) TeeTeeTee: Build G1 Teeteetee\n\tdlwillson: Did you have to beat TwoShort? He's a great player. Have you played Zoltar? I was away for about a year and a half.\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) TeeTeeTee: Trade G1 Y1 Teeteetee\n\n7) dlwillson: B B1 Dlwillson\n\tTeeTeeTee: I've never played Zoltar, which is a shame - I've heard good things about him. I've played TwoShort only once, but I had a very strong start in that game and didn't really give him a chance to get started. I've also heard that SilentTitan is a strong player, but I haven't played a full game with them yet. I reckon that the strongest people that I've played full games with so far are Broccoli_Commander and Wil.\n\n8) TeeTeeTee: Build Y1 Teeteetee\n\n9) dlwillson: D B1 Dlwillson G2 Field\n\n10) TeeTeeTee: Discover Y1 Teeteetee B3 Dalwhinnie\n\n11) dlwillson: B B2 Field\n\n12) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y2 Dalwhinnie\nBuild Y2 Teeteetee\nBuild Y3 Dalwhinnie\n\n13) dlwillson: Build B2 Dlwillson\n\tdlwillson: NICE!\n\n14) TeeTeeTee: Trade Y3 G3 Dalwhinnie\n\n15) dlwillson: T G3 Y3 Dlwillson\n\n16) TeeTeeTee: Discover Y1 Teeteetee B3 Strathisla\n\n17) dlwillson: T B2 R2 Dlwillson\n\n18) TeeTeeTee: Build G1 Dalwhinnie\n\n19) dlwillson: M Y3 Dlwillson Field\n\n20) TeeTeeTee: Trade G1 R1 Dalwhinnie\n\tTeeTeeTee: Haha! I like that move.\n\n21) dlwillson: Discover Y3 Field G3 Sea\n\tdlwillson: I'm glad you approve. Your "Going for the Gold", what I secretly call "TwoShort's Gambit" caught me by surprise, but I think you pulled it a move too early, and I'm doing my best to prove it, but you're a strong player, so it's going to be difficult. I'll need a moment to consider my next move.\n\n22) TeeTeeTee: Sacrifice Y2 Dalwhinnie\nMove G3 Dalwhinnie Field\nMove G3 Field Dlwillson\n\n23) dlwillson: Sacrifice Y3 Sea\nDiscover R2 Dlwillson Y2 Golden\nMove B1 Field Dlwillson\nDiscover B2 Field Y3 Sunny\n\n24) TeeTeeTee: Move Y1 Strathisla Teeteetee\n\n25) dlwillson: T B1 G1 Dlwillson\n\tTeeTeeTee: I reckon that, if you'd played "S b2 field, t r2 g2 dlwillson, t b1 r1(or g1) field" instead of sacrificing the y3, then you could have forced a draw (I assume that if someone sacrifices their last ship at their homeworld to capture the other one, then it's a draw?)\n\n26) TeeTeeTee: Trade Y2 R2 Teeteetee\n\tdlwillson: I think the game won't allow that, but I'm not sure.\n\n27) dlwillson: B G1 Dlwillson\n\n28) TeeTeeTee: Sacrifice R1 Dalwhinnie\nAttack B1 Dlwillson\n\n29) dlwillson: Build G1 Dlwillson\n\n30) TeeTeeTee: Pass\nCatastrophe Dlwillson Green\n\tdlwillson: Confirmed. A player may not eliminate himself/herself.\n\tTeeTeeTee: Aha. I see now that it's explicitly stated in the rules file that a player can't eliminate themselves. That would have been a shock...\r\n\r\nThanks for the game! Let me know if you have any comments or insights on the game (or if you wanted to hear mine.)\n\n\nHomeworlds Online (SDG# 26652)\nVariants: "Unrated"\nStarted: 2014.12.10, Ended: 2014.12.14\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld B3 G1 R3\n\n2) DetectiveAzul: Homeworld B2 G1 G3 *\n\n3) Rizzotto: Build R1 Rizzotto\n\n4) DetectiveAzul: Build G1 Detectiveazul\n\n5) Rizzotto: Build R1 Rizzotto\n\n6) DetectiveAzul: Trade G3 Y3 Detectiveazul\n\n7) Rizzotto: Trade R1 Y1 Rizzotto\n\n8) DetectiveAzul: Build G2 Detectiveazul\n\n9) Rizzotto: Discover Y1 Rizzotto G2 Kaguya\n\n10) DetectiveAzul: Discover G1 Detectiveazul R3 Pisdemono\n\n11) Rizzotto: Build R1 Rizzotto\n\n12) DetectiveAzul: Build G2 Pisdemono\n\n13) Rizzotto: Trade R1 Y1 Rizzotto\n\n14) DetectiveAzul: Build G3 Detectiveazul\n\tRizzotto: Al siguiente lo voy a llamar Gifu. Así jamás me lo robarás. \n\n15) Rizzotto: Trade R3 G3 Rizzotto\n\n16) DetectiveAzul: Build G3 Pisdemono\n\tRizzotto: (En el otro juego no podía hacer otra cosa que rendirme. El juego me prohibió hacer catástrofe en mi propio planeta porque me suicidaba. No podía crear, no podía cambiar, no podía moverme...xD...Mierda, podría haberte atacao. Pero pa qué)\n\n17) Rizzotto: Build R1 Rizzotto\n\n18) DetectiveAzul: Trade G2 B2 Detectiveazul\n\tDetectiveAzul: Eeestoy jugando con fueeeego\n\n19) Rizzotto: Trade R1 B1 Rizzotto\n\tRizzotto: Nah, no tanto. No tengo forma de hacerte catástrofe de momento xD\n\n20) DetectiveAzul: Move B2 Detectiveazul Pisdemono\n\n21) Rizzotto: Move B1 Rizzotto Kaguya\n\n22) DetectiveAzul: Trade G1 Y1 Pisdemono\n\n23) Rizzotto: Build Y2 Kaguya\n\n24) DetectiveAzul: Trade G2 R2 Pisdemono\n\n25) Rizzotto: Trade Y1 G1 Kaguya\n\n26) DetectiveAzul: Build Y1 Detectiveazul\n\n27) Rizzotto: Trade G3 R3 Rizzotto\n\n28) DetectiveAzul: Sacrifice B2 Pisdemono\nTrade Y1 R1 Detectiveazul\nTrade G3 B3 Pisdemono\n\n29) Rizzotto: Build B1 Kaguya\n\tRizzotto: Qué hacemos con el guiri? Nos unimos a otra con él?\n\tDetectiveAzul: Por mí guay\n\n30) DetectiveAzul: Build Y1 Detectiveazul\n\n31) Rizzotto: Build Y2 Rizzotto\n\tRizzotto: Chachi, pues esta noche ya si eso lo hacemos, que ahora voy a pegarme una ducha ^^\n\n32) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\n33) Rizzotto: Build G2 Kaguya\n\n34) DetectiveAzul: Discover G3 Detectiveazul B3 Capitanchurros\n\n35) Rizzotto: Trade G2 R2 Kaguya\n\tRizzotto: Questo di pesto\n\n36) DetectiveAzul: Build G2 Capitanchurros\n\n37) Rizzotto: Discover Y2 Rizzotto B2 Gifu\n\n38) DetectiveAzul: Move B3 Pisdemono Gifu\n\n39) Rizzotto: Trade Y2 B2 Gifu\n\n40) DetectiveAzul: Trade B3 Y3 Gifu\n\n41) Rizzotto: Build R1 Kaguya\n\n42) DetectiveAzul: Move R2 Pisdemono Detectiveazul\n\n43) Rizzotto: Sacrifice Y1 Rizzotto\nDiscover B2 Gifu R3 Sovietrussia\n\n44) DetectiveAzul: Trade G2 Y2 Capitanchurros\n\n45) Rizzotto: Trade R1 Y1 Rizzotto\n\n46) DetectiveAzul: Move G3 Capitanchurros Gifu\n\n47) Rizzotto: Move B1 Kaguya Rizzotto\n\n48) DetectiveAzul: Move B1 Detectiveazul Capitanchurros\n\n49) Rizzotto: Trade B2 G2 Sovietrussia\n\n50) DetectiveAzul: Discover B1 Capitanchurros G2 Sinverduras\n\n51) Rizzotto: Build G3 Sovietrussia\n\n52) DetectiveAzul: Discover R1 Detectiveazul G3 Nomoregreen\n\n53) Rizzotto: Build Y1 Rizzotto\n\n54) DetectiveAzul: Build B2 Sinverduras\n\n55) Rizzotto: Build B3 Kaguya\n\n56) DetectiveAzul: Sacrifice Y2 Capitanchurros\nMove B1 Sinverduras Rizzotto\nMove B2 Sinverduras Rizzotto\nCatastrophe Rizzotto B\n\n57) Rizzotto: Move B3 Kaguya Rizzotto\n\n58) DetectiveAzul: Build Y2 Detectiveazul\n\n59) Rizzotto: Move Y1 Rizzotto Sovietrussia\n\n60) DetectiveAzul: Trade Y2 B2 Detectiveazul\n\n61) Rizzotto: Move G3 Sovietrussia Rizzotto\n\n62) DetectiveAzul: Trade R2 G2 Detectiveazul\n\n63) Rizzotto: Build R1 Rizzotto\n\n64) DetectiveAzul: Sacrifice Y3 Detectiveazul\nMove G3 Gifu Rizzotto\nMove G2 Detectiveazul Nomoregreen\nMove G2 Nomoregreen Rizzotto\nCatastrophe Rizzotto G\n\n\nHomeworlds Online (SDG# 26654)\nVariants: "Hard time"\nStarted: 2014.12.12, Ended: 2014.12.22\nParticipants: Gungho (S), dsabremaster (N)\nWinner: Gungho\n\n1) dsabremaster: Homeworld B1 Y2 G3\n\n2) Gungho: Homeworld G3 Y1 B3\n\n3) dsabremaster: Build G1 Dsabremaster\n\n4) Gungho: Build B1 Gungho\n\n5) dsabremaster: Discover G1 Dsabremaster B3 Shoal\n\n6) Gungho: Build B1 Gungho\n\n7) dsabremaster: Build G1 Dsabremaster\n\n8) Gungho: Discover B1 Gungho G2 Gg\n\n\nHomeworlds Online (SDG# 26586)\nVariants: "Unrated, Hard time"\nStarted: 2014.12.12, Ended: 2015.1.28\nParticipants: DetectiveAzul (S), Rizzotto (N), wil (E)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld B1 G3 R3\n\n2) wil: Homeworld Y1 B2 G3\n\n3) DetectiveAzul: Homeworld B3 G2 Y3\n\n4) Rizzotto: Build R1 Rizzotto\n\n5) wil: Build G1 Wil\n\n6) DetectiveAzul: Build Y1 Detectiveazul\n\n7) Rizzotto: Trade R1 Y1 Rizzotto\n\n8) wil: Trade G1 Y1 Wil\n\n9) DetectiveAzul: Build Y2 Detectiveazul\n\n10) Rizzotto: Build Y2 Rizzotto\n\n11) wil: Build Y2 Wil\n\n12) DetectiveAzul: Discover Y1 Detectiveazul G1 Pedroelchurros\n\n13) Rizzotto: Build R1 Rizzotto\n\n14) wil: Trade Y1 R1 Wil\n\n15) DetectiveAzul: Trade Y2 R2 Detectiveazul\n\n16) Rizzotto: Discover Y1 Rizzotto B2 Pedrobear\n\n17) wil: Build G1 Wil\n\n18) DetectiveAzul: Build Y1 Detectiveazul\n\n19) Rizzotto: Build Y2 Rizzotto\n\n20) wil: Discover Y2 Wil G3 G3\n\n21) DetectiveAzul: Build Y2 Pedroelchurros\n\n22) Rizzotto: Trade Y1 G1 Pedrobear\n\n23) wil: Build R1 Wil\n\n24) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n25) Rizzotto: Build G2 Pedrobear\n\n26) wil: Discover G1 Wil Y3 Y3\n\n27) DetectiveAzul: Build G2 Detectiveazul\n\n28) Rizzotto: Trade G1 R1 Pedrobear\n\n29) wil: Move R1 Wil G3\n\n30) DetectiveAzul: Discover Y2 Pedroelchurros G3 Oioioioi\n\n31) Rizzotto: Build R2 Pedrobear\n\n32) wil: Build G1 Wil\n\tRizzotto: Sorry I took so long to answer. Happy Christmas!\n\n33) DetectiveAzul: Trade G1 Y1 Detectiveazul\n\n34) Rizzotto: Trade R1 Y1 Pedrobear\n\n35) wil: Build Y3 G3\n\n36) DetectiveAzul: Build Y3 Pedroelchurros\n\n37) Rizzotto: Build R1 Pedrobear\n\n38) wil: Move Y3 G3 Pedrobear\n\n39) DetectiveAzul: Move Y3 Pedroelchurros G3\n\n40) Rizzotto: Trade R2 G2 Pedrobear\n\n41) wil: Build R2 Wil\n\n42) DetectiveAzul: Sacrifice R2 Detectiveazul\nAttack Y2E G3\nAttack R1E G3\n\n43) Rizzotto: Trade G2 B2 Pedrobear\n\n44) wil: Sacrifice R2 Wil\nAttack R1N Pedrobear\nAttack G2N Pedrobear\n\n45) DetectiveAzul: Build R2 G3\n\n46) Rizzotto: Sacrifice Y1 Pedrobear\nMove B2 Pedrobear Y3\n\n47) wil: Build R2 Pedrobear\n\n48) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\n49) Rizzotto: Trade B2 R2 Y3\n\n50) wil: Move Y3 Pedrobear Y3\n\n51) DetectiveAzul: Move Y3 G3 Pedrobear\n\n52) Rizzotto: Move R2 Y3 Pedroelchurros\n\n53) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G2 Y3\nBuild G3 Wil\n\n54) DetectiveAzul: Sacrifice R2 G3\nAttack R2E Pedrobear\nAttack G2E Pedrobear\n\n55) Rizzotto: Attack Y1S Pedroelchurros\n\n56) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Pedrobear\nBuild R2 Pedrobear\nCatastrophe Pedrobear R\n\n57) DetectiveAzul: Sacrifice Y2 Oioioioi\nMove G2 Pedrobear Y3\nMove G2 Y3 Wil\nCatastrophe Wil G\n\n58) Rizzotto: Build R1 Pedroelchurros\n\n59) wil: Move Y3 Y3 Wil\n\n60) DetectiveAzul: Build Y1 G3\n\n61) Rizzotto: Trade Y2 G2 Rizzotto\n\n62) wil: Discover G1 Y3 Y2 Y2\n\n63) DetectiveAzul: Sacrifice Y3 Pedrobear\nMove Y1 G3 Wil\nMove Y2 G3 Wil\nDiscover R1 G3 G1 Conejos\nCatastrophe Wil Y\n\n64) Rizzotto: Move R2 Pedroelchurros Wil\n\n65) wil: Sacrifice G2 Y3\nBuild R2 Wil\nBuild R2 Wil\nCatastrophe Wil R\n\n66) Rizzotto: Move R1 Rizzotto Y2\n\n67) DetectiveAzul: Build Y1 Detectiveazul\n\twil: thanx for the game... Feel free to challenge me in binary homeworlds.... \n\twil: or volcano, or martian chess...the current games I'm trying to learn on this site...\n\tDetectiveAzul: Uhm, i will see how to play martian chess or volcano :O\n\n\nHomeworlds Online (SDG# 26674)\nVariants: "Hard time"\nStarted: 2014.12.15, Ended: 2014.12.20\nParticipants: Gungho (S), DetectiveAzul (N)\nWinner: Gungho\n\n1) DetectiveAzul: Homeworld G3 B1 Y3\n\n2) Gungho: Homeworld Y2 G1 B3\n\n3) DetectiveAzul: Build Y1 Detectiveazul\n\n4) Gungho: Build B1 Gungho\n\n5) DetectiveAzul: Build Y1 Detectiveazul\n\n6) Gungho: Build B1 Gungho\n\n7) DetectiveAzul: Discover Y1 Detectiveazul G2 Coladelparo\n\n8) Gungho: Trade B1 Y1 Gungho\n\n9) DetectiveAzul: Build Y2 Coladelparo\n\n10) Gungho: Discover Y1 Gungho G3 Ggg\n\n11) DetectiveAzul: Trade Y1 R1 Detectiveazul\n\n12) Gungho: Trade B1 R1 Gungho\n\n13) DetectiveAzul: Build Y1 Detectiveazul\n\n14) Gungho: Build B1 Gungho\n\n15) DetectiveAzul: Move Y2 Coladelparo Ggg\n\n16) Gungho: Discover Y1 Ggg B1 Bl\n\n17) DetectiveAzul: Build Y2 Ggg\n\n18) Gungho: Build B2 Gungho\n\n19) DetectiveAzul: Build Y3 Coladelparo\n\n20) Gungho: Discover B2 Gungho G3 Ggg2\n\n21) DetectiveAzul: Build Y3 Detectiveazul\n\n22) Gungho: Build B2 Ggg2\n\n23) DetectiveAzul: Discover Y1 Coladelparo R3 Morenasabrosona\n\n24) Gungho: Build B2 Gungho\n\n25) DetectiveAzul: Sacrifice Y3 Coladelparo\nMove Y1 Morenasabrosona Gungho\nMove Y2 Ggg Gungho\nMove Y2 Ggg Gungho\nCatastrophe Gungho Y\n\n26) Gungho: Build B3 Ggg2\n\n27) DetectiveAzul: Trade Y3 B3 Detectiveazul\n\n28) Gungho: Trade B2 Y2 Gungho\n\n29) DetectiveAzul: Discover B3 Detectiveazul Y2 Nopasaras\n\n30) Gungho: Sacrifice B2 Ggg2\nTrade B3 G3 Gungho\nTrade B3 Y3 Ggg2\n\n31) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n32) Gungho: Build B2 Ggg2\n\n33) DetectiveAzul: Discover G1 Detectiveazul R2 Allevoy\n\n34) Gungho: Discover B2 Ggg2 G2 Gwar\n\n35) DetectiveAzul: Sacrifice Y3 Detectiveazul\nMove R1 Detectiveazul Allevoy\nMove R1 Allevoy Gungho\nMove G1 Allevoy Gungho\n\n\tDetectiveAzul: lol, noob failure\n\tDetectiveAzul: I dont know what i did xDDD, np, congrats, i failed.\n\tGungho: Oh no! That's no good. But thanks for the game. Lets have a rematch some tome. Its a shame you couldn't undo. Good job dominating yellow at the start.\n\tGungho: Oh. Yellow 3 Pip went to bank then your 1 pips left. An empty homeworld is a loss. I think that's what happened. Sorry of I stated what you already knew :)\n\tDetectiveAzul: Yep, but for some reason i thought i had a ship left at homeworld, and when i noticed i coudn't undo. Thanks, was a good game, until i failed :3\n\nHomeworlds Online (SDG# 26678)\nVariants: "Unrated"\nStarted: 2014.12.16, Ended: 2014.12.20\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: Rizzotto\n\n1) Rizzotto: Homeworld R3 G1 B3\n\n2) DetectiveAzul: Homeworld G3 B1 Y3\n\n3) Rizzotto: Build B1 Rizzotto\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\tRizzotto: Tiiiiiniiiini ninininini do that conga...nosé qué no se cuánto any longah\n\n5) Rizzotto: Trade B1 Y1 Rizzotto\n\n6) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\n7) Rizzotto: Build B1 Rizzotto\n\n8) DetectiveAzul: Build B2 Detectiveazul\n\n9) Rizzotto: Trade B1 R1 Rizzotto\n\n10) DetectiveAzul: Trade B1 G1 Detectiveazul\n\n11) Rizzotto: Build Y1 Rizzotto\n\n12) DetectiveAzul: Build B1 Detectiveazul\n\n13) Rizzotto: Build R1 Rizzotto\n\n14) DetectiveAzul: Trade B1 R1 Detectiveazul\n\n15) Rizzotto: Trade R1 G1 Rizzotto\n\n16) DetectiveAzul: Build G2 Detectiveazul\n\n17) Rizzotto: Discover G1 Rizzotto B2 Dasdingo\n\n18) DetectiveAzul: Move G2 Detectiveazul Dasdingo\n\tRizzotto: Buenos días, caballero *reverencia*\n\n19) Rizzotto: Build G2 Dasdingo\n\tDetectiveAzul: Síiii, das dingo\n\n20) DetectiveAzul: Build G2 Dasdingo\nCatastrophe Dasdingo G\n\tRizzotto: Verás tú que la jiedo xD Tú siempre avasallando mis planetas\n\n21) Rizzotto: Build B1 Rizzotto\n\n22) DetectiveAzul: Build G1 Detectiveazul\n\n23) Rizzotto: Build Y1 Rizzotto\n\tRizzotto: "A lo mejor no destruye por destruir" me dije "Vamos a arriesgarnos", me dije. Casi cuela :(\n\n24) DetectiveAzul: Build Y2 Detectiveazul\n\n25) Rizzotto: Discover Y1 Rizzotto G2 Gilipolless\n\n26) DetectiveAzul: Discover G1 Detectiveazul Y2 Mulatillas\n\n27) Rizzotto: Build Y2 Gilipolless\n\n28) DetectiveAzul: Build G2 Mulatillas\n\n29) Rizzotto: Sacrifice B1 Rizzotto\nTrade Y2 G2 Gilipolless\n\tRizzotto: Bsjsjjs yo antes sabía un poco cómo jugar a esto\n\n30) DetectiveAzul: Sacrifice B2 Detectiveazul\nTrade G1 R1 Mulatillas\nTrade G2 R2 Mulatillas\n\tDetectiveAzul: xDDD, no pasa na, mujé. Lo que pasa es que estoy jugando estrategia de monopolio y he sido más rápido, y ahora andas un poco más jodidilla.\n\n31) Rizzotto: Move R1 Rizzotto Gilipolless\n\n32) DetectiveAzul: Move Y3 Detectiveazul Gilipolless\n\tRizzotto: Muy jodida xD ...has desecho tu mvoimiento para hacer el mismo?\n\n33) Rizzotto: Sacrifice G2 Gilipolless\nBuild Y2 Gilipolless\nBuild Y3 Gilipolless\nCatastrophe Gilipolless Y\n\n34) DetectiveAzul: Build G1 Detectiveazul\n\n35) Rizzotto: Build R2 Gilipolless\n\n36) DetectiveAzul: Trade G1 B1 Detectiveazul\n\n37) Rizzotto: Move Y1 Rizzotto Gilipolless\n\n38) DetectiveAzul: Build R2 Detectiveazul\n\n39) Rizzotto: Move R1 Gilipolless Rizzotto\n\n40) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove R1 Mulatillas Rizzotto\nMove R2 Mulatillas Rizzotto\nCatastrophe Rizzotto R\n\n41) Rizzotto: Build R1 Gilipolless\n\n42) DetectiveAzul: Build G1 Detectiveazul\n\n43) Rizzotto: Build B1 Rizzotto\n\n44) DetectiveAzul: Trade R2 Y2 Detectiveazul\n\n45) Rizzotto: Trade B3 R3 Rizzotto\n\n46) DetectiveAzul: Build B2 Detectiveazul\n\n47) Rizzotto: Build B2 Rizzotto\n\n48) DetectiveAzul: Trade B2 R2 Detectiveazul\n\n49) Rizzotto: Move R1 Gilipolless Rizzotto\n\n50) DetectiveAzul: Build B2 Detectiveazul\n\n51) Rizzotto: Trade B2 Y2 Rizzotto\n\n52) DetectiveAzul: Trade B2 Y2 Detectiveazul\n\n53) Rizzotto: Build B2 Rizzotto\n\n54) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove R1 Detectiveazul Gilipolless\nMove R1 Gilipolless Rizzotto\n\n55) Rizzotto: Trade R1 Y1 Rizzotto\n\n56) DetectiveAzul: Build R1 Rizzotto\n\n57) Rizzotto: Discover R3 Rizzotto Y3 Help\n\n58) DetectiveAzul: Sacrifice R2 Detectiveazul\nAttack Y1 Rizzotto\nAttack B1 Rizzotto\n\n59) Rizzotto: Sacrifice R2 Gilipolless\nAttack Y1 Rizzotto\nAttack B1 Rizzotto\n\n60) DetectiveAzul: Attack Y1 Rizzotto\n\n61) Rizzotto: Build B2 Rizzotto\n\n62) DetectiveAzul: Build Y2 Rizzotto\nCatastrophe Rizzotto Y\n\n63) Rizzotto: Trade B1 R1 Rizzotto\n\n64) DetectiveAzul: Sacrifice Y2 Detectiveazul\nMove B1 Detectiveazul Gilipolless\nMove B1 Gilipolless Rizzotto\n\n65) Rizzotto: Trade B2 Y2 Rizzotto\n\n66) DetectiveAzul: Attack R1 Rizzotto\n\n67) Rizzotto: Trade Y2 R2 Rizzotto\nCatastrophe Rizzotto R\n\n68) DetectiveAzul: Build B1 Rizzotto\n\n69) Rizzotto: Trade B2 R2 Rizzotto\n\n70) DetectiveAzul: Build B2 Rizzotto\n\n71) Rizzotto: Attack B2 Rizzotto\n\n72) DetectiveAzul: Trade B1 R1 Rizzotto\n\n73) Rizzotto: Move Y1 Gilipolless Detectiveazul\n\n74) DetectiveAzul: Sacrifice R1 Rizzotto\nAttack Y1 Detectiveazul\n\n75) Rizzotto: Attack B1 Rizzotto\n\n76) DetectiveAzul: Build Y1 Detectiveazul\n\n77) Rizzotto: Trade B2 Y2 Rizzotto\n\n78) DetectiveAzul: Build Y1 Detectiveazul\n\n79) Rizzotto: Sacrifice Y2 Rizzotto\nDiscover R3 Help G2 Salto\nMove R3 Salto Detectiveazul\n\tDetectiveAzul: gg wp\n\n80) DetectiveAzul: Trade Y1 R1 Detectiveazul\n\n81) Rizzotto: Attack R1 Detectiveazul\n\n82) DetectiveAzul: Trade G1 R1 Detectiveazul\n\n83) Rizzotto: Sacrifice R3 Detectiveazul\nAttack R1 Detectiveazul\nAttack G1 Detectiveazul\nAttack Y1 Detectiveazul\n\n\nHomeworlds Online (SDG# 26686)\nVariants: "Hard time"\nStarted: 2014.12.18, Ended: 2015.1.10\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) wil: Homeworld B2 Y1 G3\n\tdlwillson: I hope you were hoping for another game with me, because I can't challenge TeeTeeTee again, and TwoShort seems to be dormant, and nobody seems eager to challenge me, and well... it seems like time to do something. :-)\n\twil: Oh you only had to wait another day to challenge ttt...I see your evil plan...you'll just kick my ass on the way up!\n\twil: and seriously... If I had my druthers I'd be in half a dozen different games with one person...I think it amazing how different they all get...\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) wil: Trade G1 B1 Wil\n\n7) dlwillson: B B2 Dlwillson\n\n8) wil: Build B2 Wil\n\n9) dlwillson: D B1 Dlwillson Y2 Golden\n\n10) wil: Trade B1 R1 Wil\n\n11) dlwillson: T B2 R2 Dlwillson\n\n12) wil: Discover B2 Wil Y3 Y3\n\n13) dlwillson: B R1 Dlwillson\n\n14) wil: Build G1 Wil\n\n15) dlwillson: Trade R2 Y2 Dlwillson\n\n16) wil: Discover G1 Wil Y3 Why3\n\twil: twas an oops...not the move...the undo...unintentional undo...\n\n17) dlwillson: Build G1 Dlwillson\n\n18) wil: Build G1 Wil\n\n19) dlwillson: Move G1 Dlwillson Golden\n\n20) wil: Trade G1 Y1 Wil\n\n21) dlwillson: D Y2 Dlwillson G2 Field\n\n22) wil: Discover Y1 Wil B3 B3\n\n23) dlwillson: B Y1 Field\n\n24) wil: Build G1 Wil\n\n25) dlwillson: B G2 Dlwillson\n\n26) wil: Sacrifice G1 Wil\nBuild Y2 B3\n\n27) dlwillson: B B1 Golden\n\n28) wil: Build G1 Wil\n\n29) dlwillson: Move B1 Golden Why3\n\n30) wil: Sacrifice G3 Wil\nBuild G2 Why3\nBuild G3 Why3\nBuild G3 Wil\n\n31) dlwillson: M G1 Golden Why3\nC Why3 Green\n\n32) wil: Move G1 Wil Y3\n\tdlwillson: You sure?\n\twil: you got a better move for me? I was gonna lose my position....those two new ships aren't really mine, there was no way for me to get them and keep them...it only makes it so you lose one to get my one...if I move my one...you gain those two now...meh...yeah....it is only a game.\n\n33) dlwillson: S G2 Dlwillson\nB B2 Golden\nB B3 Why3\n\n34) wil: Build B3 Y3\n\n35) dlwillson: T B3 G3 Why3\n\n36) wil: T B3 R3 Y3\n\n37) dlwillson: Build B3 Why3\n\n38) wil: Build B3 Y3\n\n39) dlwillson: Sacrifice Y2 Field\nMove B2 Golden Y3\nMove B1 Golden Y3\nCatastrophe Y3 B\n\n40) wil: Move G1 Y3 Field\n\n41) dlwillson: Sacrifice G3 Why3\nBuild Y2 Field\nBuild G1 Dlwillson\nBuild B1 Why3\n\n42) wil: Build G1 Field\n\n43) dlwillson: Sacrifice Y2 Field\nMove G1 Dlwillson Field\nDiscover Y1 Field B3 Sky\nCatastrophe Field G\n\n44) wil: Build G1 Wil\n\n45) dlwillson: Trade B3 G3 Why3\n\n46) wil: Trade Y1 G1 B3\n\n47) dlwillson: T B1 R1 Why3\n\n48) wil: Trade G1 B1 Wil\n\n49) dlwillson: Build B2 Why3\n\n50) wil: Move B1 Wil B3\n\n51) dlwillson: Discover B1 Why3 G2 Field\n\n52) wil: Build R2 Wil\n\n53) dlwillson: B B2 Why3\n\n54) wil: Build B3 B3\n\n55) dlwillson: S Y1 Sky\nM B1 Field B3\nC B3 B\n\n56) wil: Discover R2 Wil B3 B3\n\tdlwillson: You sure?\n\twil: I should have moved a r2 to b3 to keep you from getting it...but I didn't ... I made a mistake....I eat it...\n\n57) dlwillson: Build B1 Why3\n\n58) wil: Build R2 Wil\n\n59) dlwillson: S G3 Why3\nB R2 Dlwillson\nB R3 Why3\nB R3 Dlwillson\n\n60) wil: Trade R1 B1 Wil\n\n61) dlwillson: Move B2 Why3 Wil\n\n62) wil: Discover B1 Wil G3 G3\n\n63) dlwillson: S R1 Why3\nA R2 Wil\n\n64) wil: Sacrifice R2 B3\nAttack B2 Wil\nAttack R2 Wil\n\n65) dlwillson: M B2 Why3 Wil\n\n66) wil: Move B2 Wil Y3\n\n67) dlwillson: Sacrifice R1 Dlwillson\nAttack R2 Wil\n\n68) wil: Build B3 G3\n\twil: I just love it how diverse these games can get.. You've got me...I blew it...but it is still fun to watch it play out.\n\n69) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Wil\nBuild B3 Wil\nBuild R1 Why3\n\n70) wil: Sacrifice R3 Y3\nAttack B3 Wil\nAttack B2 Wil\nAttack R2 Wil\n\n71) dlwillson: Move B1 Why3 Wil\nCatastrophe Wil B\n\tdlwillson: Me too. I love this game.\n\n72) wil: Attack R1 Wil\n\n73) dlwillson: Trade R3 G3 Dlwillson\n\n74) wil: Move R2 Wil G3\n\n75) dlwillson: D R3 Why3 B2 Sky\n\n76) wil: Build R1 Wil\n\n77) dlwillson: B G1 Dlwillson\n\n78) wil: Move R1 Wil Y3\n\n79) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Why3\nBuild R3 Sky\nBuild R3 Dlwillson\n\n80) wil: Sacrifice B3 G3\nTrade R2 Y2 G3\nTrade B1 Y1 G3\nTrade R1 Y1 Y3\n\n81) dlwillson: Trade R2 Y2 Dlwillson\n\twil: nice, I expected that..couldn't do much about it... https://www.youtube.com/watch?v=DtpGgdBzy2Q\n\n82) wil: Build Y2 G3\n\n83) dlwillson: Move Y2 Dlwillson Sky\n\tdlwillson: Hm. Good defensive move. This is going to take longer than I hoped.\n\tdlwillson: :-)\r\n\n\n84) wil: Trade B2 R2 Y3\n\twil: me like a chicken running around in the corner from the farmers knife...\n\n85) dlwillson: Move R3 Sky Y3\n\n86) wil: Sacrifice Y1 Y3\nDiscover R2 Y3 Y1 Y1\n\n87) dlwillson: Sacrifice Y2 Sky\nMove R3 Sky Wil\nMove R3 Y3 Wil\n\n88) wil: Build R1 Wil\nCatastrophe Wil R\n\n89) dlwillson: Discover R2 Why3 B2 Sky\n\n90) wil: Discover Y2 G3 B2 B2\n\twil: McGiver is still trying to find a paperclip and matchbook cover to save the skin on his teeth for the next episode.\n\n91) dlwillson: T R2 Y2 Sky\n\tdlwillson: Yeah... I saw the mistake as soon as I made it.\n\tdlwillson: But I figured that with our relative positions, I should just take what I had.\n\n92) wil: Build G1 Wil\n\n93) dlwillson: S G1 Dlwillson\nB Y3 Sky\n\n94) wil: Move R2 Y1 Why3\n\n95) dlwillson: Move R1 Why3 Sky\n\n96) wil: Move G1 Wil B2\n\n97) dlwillson: Move Y2 Sky G3\n\n98) wil: Discover Y2 G3 G2 G2\n\n99) dlwillson: T R1 G1 Sky\n\n100) wil: Discover Y1 G3 G2 Geetoo\n\n101) dlwillson: B Y1 Sky\n\n102) wil: Build G1 B2\n\n103) dlwillson: M Y1 Sky Wil\n\n104) wil: Sacrifice R2 Why3\nAttack Y1 Wil\nPass\n\n105) dlwillson: Sacrifice Y2 G3\nMove G1 Sky Dlwillson\nMove Y3 Sky Wil\n\n106) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 B2\nBuild G2 B2\nCatastrophe Wil Y\n\n\twil: The vagabond (without a homeworld) rebels have populated the known universe and have you surrounded....the siege of the multiverse begins ....thanx for the game...now go get TTT\n\tdlwillson: I will! Thanks for the game! I'm surprised the system let you get away with a suicide; usually, it won't accept valid moves that result in the active player's loss.\n\twil: Ever since I found the system did not allow suicide...I've been working on ways to trick it...but it is NOT suicide, we simply move on to safe planets and live on!\n\nHomeworlds Online (SDG# 26529)\nVariants: "Hard time"\nStarted: 2014.12.19, Ended: 2014.12.22\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 26411)\nVariants: "Hard time"\nStarted: 2014.12.21, Ended: 2015.1.1\nParticipants: wil (S), Gungho (N)\nWinner: Gungho\n\n1) Gungho: Homeworld G3 Y1 B3\n\n2) wil: Homeworld B2 G1 Y3\n\n3) Gungho: Build B1 Gungho\n\n4) wil: B Y1 Wil\n\n5) Gungho: Build B1 Gungho\n\n6) wil: T Y1 B1 Wil\n\n7) Gungho: Trade B1 Y1 Gungho\n\n8) wil: Build B1 Wil\n\n9) Gungho: Build B2 Gungho\n\twil: yup...I'd do it just to see where the game goes...\n\n10) wil: Build Y1 Wil\n\n11) Gungho: Build Y2 Gungho\n\n12) wil: Sacrifice Y3 Wil\nDiscover B1 Wil R3 R3\nDiscover B1 R3 B2 B2\nMove B1 B2 Gungho\nCatastrophe Gungho B\n\n13) Gungho: Discover Y1 Gungho B2 Tywil\n\tGungho: Lol awesome \n\n14) wil: Build Y2 Wil\n\n15) Gungho: Trade Y1 G1 Tywil\n\twil: crazy eh? I just had to see where it would take us.\n\n16) wil: Build B1 Wil\n\n17) Gungho: Build G1 Tywil\n\n18) wil: Trade Y2 G2 Wil\n\n19) Gungho: Build G2 Tywil\n\n20) wil: Build G2 Wil\n\n21) Gungho: Trade G1 Y1 Tywil\n\n22) wil: Trade G2 R2 Wil\n\n23) Gungho: Build Y2 Tywil\n\n24) wil: Discover G2 Wil Y3 Y3\n\n25) Gungho: Trade Y1 R1 Tywil\n\n26) wil: Discover B1 Wil G3 G3\n\n27) Gungho: Build Y1 Tywil\n\n28) wil: Move Y1 Wil G3\n\n29) Gungho: Discover Y1 Tywil B3 Bflat\n\n30) wil: Build B1 G3\n\n31) Gungho: Sacrifice G2 Tywil\nBuild Y2 Tywil\nBuild Y3 Bflat\n\n32) wil: Build Y3 G3\n\n33) Gungho: Move Y3 Bflat Wil\n\n34) wil: Sacrifice Y3 G3\nMove Y1 G3 Wil\nMove R2 Wil G3\nMove B1 G3 Wil\n\n35) Gungho: Sacrifice G1 Tywil\nBuild Y3 Bflat\n\n36) wil: Move B1 Wil Bflat\n\twil: nice move, I blew that...\n\n37) Gungho: Trade Y2 R2 Tywil\n\tGungho: Thanks. I don't have the atk I want... but the opportunity was there. \n\twil: yeah...it is game over thou\n\n38) wil: Sacrifice G2 Y3\nBuild Y2 Wil\nBuild Y3 Wil\nCatastrophe Wil Y\n\twil: I look forward to another game...I just had to see where it would go with that disaster I caused earlier.. it went disaterously (for me)\n\n39) Gungho: Sacrifice Y2 Tywil\nMove R2 Tywil Bflat\nMove R2 Bflat Wil\n\tGungho: It was fun. It may not have worked out but it's worth a try. Sometimes I think about destroying part of my own hw to connect to connect to the other one. \n\tGungho: Err.. sorry. Touch screen type fail. :)\n\n40) wil: Build B2 Wil\n\twil: might as well delay the inevitable a moment...\n\n\twil: I look forward to another game, challenge anytime.....thanx\n\tGungho: Thanks, same here! Happy new year.\n\nHomeworlds Online (SDG# 26692)\nVariants: "Hard time"\nStarted: 2014.12.22, Ended: 2014.12.25\nParticipants: Gungho (S), SilentTitan (N)\nWinner: Gungho\n\n\nHomeworlds Online (SDG# 26698)\nVariants: "Hard time"\nStarted: 2014.12.24, Ended: 2014.12.27\nParticipants: Rizzotto (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B2 G3\n\n\twil: thanx for the game!\n\twil: What happened?\n\tRizzotto: Sorry, I've been very busy and completely forgot about this D: Can I challenge you again?\n\twil: Of course!!\n\nHomeworlds Online (SDG# 26709)\nVariants: "Unrated"\nStarted: 2014.12.24, Ended: 2015.1.15\nParticipants: DetectiveAzul (S), Rizzotto (N)\nWinner: DetectiveAzul\n\n1) Rizzotto: Homeworld R3 B2 G3\n\n2) DetectiveAzul: Homeworld G3 B1 Y3\n\n3) Rizzotto: Build G1 Rizzotto\n\n4) DetectiveAzul: Build Y1 Detectiveazul\n\n5) Rizzotto: Trade G1 R1 Rizzotto\n\n6) DetectiveAzul: Build Y1 Detectiveazul\n\n7) Rizzotto: Build R1 Rizzotto\n\n8) DetectiveAzul: Trade Y1 R1 Detectiveazul\n\n9) Rizzotto: Trade R1 Y1 Rizzotto\n\n10) DetectiveAzul: Trade Y1 B1 Detectiveazul\n\n11) Rizzotto: Build G1 Rizzotto\n\n12) DetectiveAzul: Build Y1 Detectiveazul\n\n13) Rizzotto: Trade G1 B1 Rizzotto\n\n14) DetectiveAzul: Trade Y1 G1 Detectiveazul\n\n15) Rizzotto: Build B2 Rizzotto\n\n16) DetectiveAzul: Build B2 Detectiveazul\n\n17) Rizzotto: Discover B1 Rizzotto G1 Piticli\n\n18) DetectiveAzul: Discover B2 Detectiveazul G2 Potoclo\n\n19) Rizzotto: Build B3 Piticli\n\n20) DetectiveAzul: Build B3 Detectiveazul\n\n21) Rizzotto: Trade B3 Y3 Piticli\n\n22) DetectiveAzul: Trade B3 R3 Detectiveazul\n\n23) Rizzotto: Build B3 Piticli\n\n24) DetectiveAzul: Build B3 Potoclo\n\n25) Rizzotto: Trade B3 R3 Piticli\n\n26) DetectiveAzul: Trade B3 G3 Potoclo\n\n27) Rizzotto: Build B3 Piticli\n\n28) DetectiveAzul: Build B3 Potoclo\n\n29) Rizzotto: Discover B3 Piticli G2 Bocasecaman\n\n30) DetectiveAzul: Trade B3 Y3 Potoclo\n\n31) Rizzotto: Build R1 Piticli\n\n32) DetectiveAzul: Build B3 Potoclo\n\n33) Rizzotto: Trade B2 Y2 Rizzotto\n\n34) DetectiveAzul: Discover G3 Potoclo Y1 Laconcha\n\tRizzotto: wow\r\nso many blu\r\nwow\r\nmuch tradingg\n\n35) Rizzotto: Move R1 Piticli Bocasecaman\n\n36) DetectiveAzul: Move B3 Potoclo Laconcha\n\n37) Rizzotto: Build R2 Piticli\n\n38) DetectiveAzul: Move R1 Detectiveazul Potoclo\n\n39) Rizzotto: Build R2 Bocasecaman\n\n40) DetectiveAzul: Build R2 Potoclo\n\n41) Rizzotto: Build B2 Piticli\n\n42) DetectiveAzul: Build B3 Laconcha\n\n43) Rizzotto: Build Y1 Piticli\n\n44) DetectiveAzul: Build Y2 Detectiveazul\n\n45) Rizzotto: Build Y2 Rizzotto\n\n46) DetectiveAzul: Discover B2 Potoclo G1 Agentcarter\n\n47) Rizzotto: Sacrifice Y3 Piticli\nMove Y1 Rizzotto Laconcha\nMove Y2 Rizzotto Laconcha\nMove Y2 Rizzotto Laconcha\nCatastrophe Laconcha Y\n\n48) DetectiveAzul: Build B3 Agentcarter\n\n49) Rizzotto: Trade B2 Y2 Piticli\n\tRizzotto: Hsjdjjdjjdjdjdjdvhufhdu nerviooooos\n\n50) DetectiveAzul: Sacrifice Y2 Detectiveazul\nDiscover B1 Detectiveazul G2 Pepapig\nDiscover B1 Pepapig Y1 Pepapig2\n\tDetectiveAzul: A impulsar la economíaaaa\n\n51) Rizzotto: Trade B3 Y3 Bocasecaman\n\n52) DetectiveAzul: Sacrifice Y3 Potoclo\nMove B2 Agentcarter Rizzotto\nMove B3 Agentcarter Rizzotto\nMove B1 Pepapig2 Rizzotto\nCatastrophe Rizzotto B\n\tRizzotto: Vamos a mover esto un poco ò.ó \n\n53) Rizzotto: Sacrifice B1 Piticli\nTrade R1 B1 Rizzotto\n\n54) DetectiveAzul: Sacrifice Y3 Detectiveazul\nMove R1 Potoclo Rizzotto\nMove R2 Potoclo Rizzotto\nDiscover R3 Detectiveazul Y2 Rocketraccoon\n\n\nHomeworlds Online (SDG# 26711)\nVariants: "Hard time"\nStarted: 2014.12.24, Ended: 2015.1.2\nParticipants: Gungho (S), foksieloy (N)\nWinner: Gungho\n\n1) foksieloy: Homeworld Y3 B1 G3\n\n2) Gungho: Homeworld G3 R2 B3\n\tfoksieloy: Hi, good luck and have fun! It has been a while since I played. :)\n\n3) foksieloy: Build G1 Foksieloy\n\tGungho: Hello. Have fun! :)\n\n4) Gungho: Build B1 Gungho\n\n5) foksieloy: Trade G1 R1 Foksieloy\n\n6) Gungho: Build B1 Gungho\n\n7) foksieloy: Build R1 Foksieloy\n\n8) Gungho: Trade B1 R1 Gungho\n\n9) foksieloy: Trade R1 B1 Foksieloy\n\n10) Gungho: Build B2 Gungho\n\n11) foksieloy: Build G1 Foksieloy\n\n12) Gungho: Trade B1 Y1 Gungho\n\n13) foksieloy: Trade G3 Y3 Foksieloy\n\n14) Gungho: Discover B2 Gungho G1 Imove\n\n15) foksieloy: Build G1 Foksieloy\n\n16) Gungho: Build Y1 Gungho\n\n17) foksieloy: Discover G1 Foksieloy Y2 Tibbers\n\n18) Gungho: Build B1 Imove\n\n19) foksieloy: Build B2 Foksieloy\n\n20) Gungho: Trade B2 Y2 Imove\n\n21) foksieloy: Move B2 Foksieloy Tibbers\n\n22) Gungho: Build B2 Imove\n\n23) foksieloy: Build G2 Tibbers\n\n24) Gungho: Trade B2 G2 Imove\n\n25) foksieloy: Build B2 Tibbers\n\n26) Gungho: Sacrifice G2 Imove\nBuild B2 Gungho\nBuild B3 Imove\n\n27) foksieloy: Trade G2 Y2 Tibbers\n\n28) Gungho: Discover B3 Imove G2 Voodoo\n\n29) foksieloy: Move B2 Tibbers Imove\n\n30) Gungho: Sacrifice R1 Gungho\nAttack B2N Imove\n\n31) foksieloy: Build B3 Tibbers\n\n32) Gungho: Move Y1 Gungho Imove\n\n33) foksieloy: Trade B3 R3 Tibbers\n\n34) Gungho: Move Y1 Imove Voodoo\n\tfoksieloy: Happy new year!\n\tGungho: You too! Thanks. :)\n\n35) foksieloy: Build B3 Tibbers\n\n36) Gungho: Build Y1 Voodoo\n\n37) foksieloy: Discover B2 Tibbers Y3 Annie\n\n38) Gungho: Sacrifice Y2 Imove\nMove Y1 Voodoo Foksieloy\nMove Y1 Voodoo Foksieloy\nCatastrophe Foksieloy Yellow\n\n39) foksieloy: Move R3 Tibbers Foksieloy\n\n40) Gungho: Trade B3 Y3 Voodoo\n\n41) foksieloy: Sacrifice B1 Foksieloy\nTrade B3 R3 Tibbers\n\n\tfoksieloy: Good game!\n\tGungho: You too, Thanks for playing! \n\nHomeworlds Online (SDG# 26710)\nVariants: "Hard time"\nStarted: 2014.12.26, Ended: 2015.1.16\nParticipants: wil (S), agentofchaos (N)\nWinner: wil\n\n1) agentofchaos: Homeworld R1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tagentofchaos: Hi, have fun\n\twil: I recall this name....Merry Christmas and thanx for the game...\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) wil: Build G1 Wil\n\tagentofchaos: Been a while since I last played! Merry Christmas to you too\n\n5) agentofchaos: Trade G1 Y1 Agentofchaos\n\n6) wil: Trade G1 R1 Wil\n\n7) agentofchaos: Trade Y1 R1 Agentofchaos\n\n8) wil: Build R2 Wil\n\n9) agentofchaos: Build R2 Agentofchaos\n\n10) wil: Build R2 Wil\n\n11) agentofchaos: Trade R2 G2 Agentofchaos\n\n12) wil: Trade R1 B1 Wil\n\n13) agentofchaos: Build G1 Agentofchaos\n\n14) wil: Build B1 Wil\n\n15) agentofchaos: Trade G1 Y1 Agentofchaos\n\n16) wil: Discover B1 Wil G2 G2\n\n17) agentofchaos: Discover G2 Agentofchaos Y3 Dare\n\n18) wil: Build B2 Wil\n\n19) agentofchaos: Build G1 Dare\n\n20) wil: Discover B2 Wil B2 B2\n\n21) agentofchaos: Build G1 Agentofchaos\n\n22) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 B2\nBuild B3 G2\n\n23) agentofchaos: Build R1 Agentofchaos\n\n24) wil: Sacrifice B2 B2\nTrade B3 Y3 G2\nTrade B3 G3 Wil\n\n25) agentofchaos: Discover G2 Dare Y2 Hadestorm\n\n26) wil: Sacrifice Y3 G2\nMove R2 Wil G2\nMove R2 G2 Dare\nMove R2 Dare Agentofchaos\nCatastrophe Agentofchaos R\n\n27) agentofchaos: Trade G1 R1 Agentofchaos\n\n28) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B3 B2\nBuild B3 Wil\n\n29) agentofchaos: Build G1 Hadestorm\n\n30) wil: Trade B3 G3 B2\n\n31) agentofchaos: Discover R1 Agentofchaos G1 Dospair\n\n32) wil: Move B1 Wil Agentofchaos\n\n33) agentofchaos: Trade G3 R3 Agentofchaos\n\n34) wil: Trade B3 Y3 B2\n\n\twil: unless I am missing something that gives me two avenues to end it.. Play another? \n\tagentofchaos: yeah sure\n\nHomeworlds Online (SDG# 26667)\nVariants: "Unrated, Hard time"\nStarted: 2014.12.29, Ended: 2015.1.11\nParticipants: wil (S), Sarthobi (N), agentofchaos (E)\nWinner: agentofchaos\n\n1) Sarthobi: Homeworld G2 B1 Y3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) wil: Homeworld Y3 B2 G3\n\n4) Sarthobi: Build Y1 Sarthobi\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) wil: Build G1 Wil\n\n7) Sarthobi: Trade Y1 G1 Sarthobi\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) wil: Trade G1 B1 Wil\n\n10) Sarthobi: Build G1 Sarthobi\n\n11) agentofchaos: Build Y1 Agentofchaos\n\n12) wil: Build B1 Wil\n\n13) Sarthobi: Trade G1 B1 Sarthobi\n\n14) agentofchaos: Build G1 Agentofchaos\n\n15) wil: Discover B1 Wil G1 G1\n\n16) Sarthobi: Build B2 Sarthobi\n\n17) agentofchaos: Trade Y1 R1 Agentofchaos\n\n18) wil: Build B2 G1\n\n19) Sarthobi: Discover B1 Sarthobi G3 G3\n\n20) agentofchaos: Discover R1 Agentofchaos Y2 Kralizec\n\n21) wil: Trade B2 Y2 G1\n\n22) Sarthobi: Build B2 G3\n\n23) agentofchaos: Build Y1 Agentofchaos\n\n24) wil: Sacrifice G3 Wil\nBuild B2 G1\nBuild B3 G1\nBuild B3 Wil\n\n25) Sarthobi: Build B3 Sarthobi\n\n26) agentofchaos: Discover Y1 Agentofchaos G2 Skanknor\n\n27) wil: Sacrifice Y2 G1\nMove B1 G1 G3\nMove B1 G3 Sarthobi\nCatastrophe Sarthobi B\n\n28) Sarthobi: Sacrifice Y3 Sarthobi\nMove B1 G3 G1\nMove B1 G1 Wil\nMove B2 G3 Sarthobi\nCatastrophe Wil B\n\n29) agentofchaos: Move G3 Agentofchaos Sarthobi\n\n30) Sarthobi: T G1 R1 Sarthobi\n\n31) agentofchaos: Sacrifice R1 Kralizec\nAttack B2N Sarthobi\n\n32) Sarthobi: Build R1 Sarthobi\n\n33) agentofchaos: Trade B2 R2 Sarthobi\n\n34) Sarthobi: Build R1 Sarthobi\n\n35) agentofchaos: Pass\nCatastrophe Sarthobi R\n\tSarthobi: nice nice :]\n\n\tagentofchaos: Thanks for a fun game :-)\n\tSarthobi: indeed :)\r\ngood game \n\twil: nice...\n\nHomeworlds Online (SDG# 26716)\nVariants: "Hard time"\nStarted: 2014.12.29, Ended: 2015.1.23\nParticipants: Rizzotto (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B1 G3\n\n2) Rizzotto: Homeworld R3 B2 G3\n\n3) wil: Build G1 Wil\n\tRizzotto: Hello again!\n\twil: let's get this universe populated!\r\n\n\n4) Rizzotto: Build G1 Rizzotto\n\n5) wil: Trade G1 B1 Wil\n\tRizzotto: Yeeeaah!\n\n6) Rizzotto: Trade G1 Y1 Rizzotto\n\n7) wil: Build B1 Wil\n\tRizzotto: Happy (late) New Year!\n\twil: backatcha\n\n8) Rizzotto: Build Y1 Rizzotto\n\n9) wil: Discover B1 Wil G2 G2\n\n10) Rizzotto: Build G1 Rizzotto\n\n11) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 G2\nBuild B3 Wil\n\n12) Rizzotto: Trade G1 Y1 Rizzotto\n\n13) wil: Sacrifice B2 G2\nTrade B2 Y2 G2\nTrade B3 G3 Wil\n\n14) Rizzotto: Discover Y1 Rizzotto G1 Gamora\n\n15) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 G2\nBuild B3 Wil\n\n16) Rizzotto: Build Y2 Gamora\n\n17) wil: Trade B3 G3 Wil\n\n18) Rizzotto: Trade Y1 R1 Rizzotto\n\n19) wil: Trade B2 R2 G2\n\n20) Rizzotto: Build G1 Rizzotto\n\n21) wil: Discover B2 G2 Y1 Y1\n\n\nHomeworlds Online (SDG# 26719)\nVariants: "Unrated"\nStarted: 2014.12.30, Ended: 2015.1.3\nParticipants: dsabremaster (S), Sarthobi (N)\nWinner: Sarthobi\n\n1) Sarthobi: Homeworld B2 Y1 G3\n\n\nHomeworlds Online (SDG# 26724)\nVariants: "Hard time"\nStarted: 2015.1.2, Ended: 2015.1.10\nParticipants: Gungho (S), wil (N)\nWinner: Gungho\n\n1) wil: Homeworld Y2 B1 G3\n\tGungho: Round 2. Fight. :)\n\twil: yee haw!!\n\n2) Gungho: Homeworld G3 Y1 B3\n\n3) wil: Build G1 Wil\n\n4) Gungho: Build B1 Gungho\n\n5) wil: Trade G1 B1 Wil\n\n6) Gungho: Build B2 Gungho\n\n7) wil: Build B2 Wil\n\n8) Gungho: Discover B1 Gungho G2 Trogdor\n\n9) wil: Trade B1 R1 Wil\n\n10) Gungho: Build B1 Gungho\n\n11) wil: Discover B2 Wil Y3 Y3\n\n12) Gungho: Trade B1 Y1 Trogdor\n\n13) wil: Build R1 Wil\n\n14) Gungho: Trade B2 R2 Gungho\n\n15) wil: Build G1 Wil\n\n16) Gungho: Build B1 Gungho\n\n17) wil: Move G1 Wil Y3\n\n18) Gungho: Build Y1 Trogdor\n\n19) wil: Move B2 Y3 Trogdor\n\n20) Gungho: Sacrifice Y1 Trogdor\nDiscover Y1 Trogdor G3 Gwar\n\n21) wil: Build B2 Trogdor\n\n22) Gungho: Discover B1 Gungho Y2 Yeller\n\n23) wil: Build B2 Trogdor\n\n24) Gungho: Build B3 Gungho\n\n25) wil: Trade B2 Y2 Trogdor\n\n26) Gungho: Sacrifice B1 Gungho\nTrade B3 Y3 Gungho\n\n27) wil: Move R1 Wil Y3\n\n28) Gungho: Move Y3 Gungho Trogdor\n\n29) wil: Sacrifice G3 Wil\nBuild Y1 Trogdor\nBuild Y3 Trogdor\nBuild R1 Y3\nCatastrophe Trogdor Y\n\n30) Gungho: Build R2 Gungho\n\n31) wil: Build R2 Y3\n\n32) Gungho: Trade R2 Y2 Gungho\n\n33) wil: Move R2 Y3 Trogdor\n\n34) Gungho: Build Y1 Gwar\n\n35) wil: Build R2 Trogdor\n\tGungho: Ugh... just had one of those hindsight moments.....\n\tGungho: That was an unexpected yellow catastrophe!\n\n36) Gungho: Build Y3 Gungho\n\twil: Yeah didn't do so well, you've got this in the bag..\n\n37) wil: Build R3 Y3\n\n38) Gungho: Sacrifice Y3 Gungho\nMove B3 Gungho Yeller\nMove B3 Yeller Gwar\nMove B3 Gwar Wil\n\tGungho: Maybe. Being locked out of yellow sucks. I'm also capable of making really stupid moves in my end game. My keep you away from 3 pips gambit has ended, too.\n\n39) wil: Sacrifice G1 Y3\nBuild R3 Wil\n\n40) Gungho: Sacrifice R2 Gungho\nAttack R3N Wil\nAttack R1N Wil\n\twil: done well....well done\n\n\twil: just some more for your fleet...\n\tGungho: Thanks for playing! ^_^\n\twil: thank you! I enjoy the heck out of this game...win or lose...and it is always different...please challenge any time... I like being in lots of games (since often there are days between moves)\n\nHomeworlds Online (SDG# 26729)\nVariants: "Unrated"\nStarted: 2015.1.3, Ended: 2015.1.12\nParticipants: sounde (S), dsabremaster (N)\nWinner: sounde\n\n\nHomeworlds Online (SDG# 26737)\nVariants: "Hard time"\nStarted: 2015.1.4, Ended: 2015.1.10\nParticipants: Sarthobi (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B1 G3\n\n2) Sarthobi: Homeworld B1 Y2 G3\n\n3) wil: Build G1 Wil\n\twil: thanx for the game! Challenge as many times as you wish, I enjoy playing this!! (and teaching if you have any questions)\n\n4) Sarthobi: Build G1 Sarthobi\n\twil: a little faux pas in the opening....when you pick the same small for your star you leave an easy monopoly start...when I change my g1 for blue you'll be cornered out of blues...your fix before it gets to far will be after you grow g1 switch your g3 for b3 (unless i get two close with a b and can catastrophe) \n\n5) wil: Trade G1 B1 Wil\n\n6) Sarthobi: Build G1 Sarthobi\n\n7) wil: Build B2 Wil\n\n8) Sarthobi: Discover G1 Sarthobi B3 B3\n\n9) wil: Discover B2 Wil Y2 Y2\n\n10) Sarthobi: Build G1 B3\n\n11) wil: Sacrifice G3 Wil\nBuild B2 Y2\nBuild B2 Y2\nBuild B3 Wil\n\n12) Sarthobi: Build G2 B3\n\n13) wil: Sacrifice B2 Y2\nTrade B3 G3 Wil\nTrade B2 Y2 Y2\n\n14) Sarthobi: Trade G1 Y1 B3\n\twil: don't fall for the sucker move I just dangled...\n\n15) wil: Sacrifice G3 Wil\nBuild B2 Y2\nBuild B2 Y2\nBuild B3 Wil\n\tSarthobi: Thanks for all the tips, trying to learn the game flow :)\r\nThis is as far as i've gotten with any game challange so far\n\twil: I learned by losing...a lot...by seeing the moves and strategies come at me repeatedly\n\n16) Sarthobi: Move Y1 B3 Y2\n\twil: monopolies in any economy are bad...by allowing me to get a monopoly I can continually produce multiple ships and then change them into a variety of other ships accumulating twice as fast ..\n\n17) wil: Sacrifice Y2 Y2\nDiscover B2 Y2 Y3 Y3\n\nDiscover B2 Y2 G3 G3\n\tSarthobi: Good to know.. will try to avoid it next time i guess\n\twil: best way to learn in my opinion is to see the power of it...\n\twil: lol, nice effort!!\n\n18) Sarthobi: Move Y1 Y2 Wil\n\n19) wil: Build B3 G3\n\n20) Sarthobi: Sacrifice G2 B3\nBuild Y1 Wil\nBuild Y1 Wil\nCatastrophe Wil Y\n\n21) wil: Sacrifice B2 Y2\nTrade B3 Y3 G3\nTrade B3 G3 Wil\n\tSarthobi: Btw i love the commentary. helps a lot.\r\nif i make any silly move, give me feed back :)\n\n22) Sarthobi: Trade G1 Y1 B3\n\n23) wil: Sacrifice G3 Wil\nBuild B2 G3\nBuild B3 Y3\nBuild B3 Wil\n\n24) Sarthobi: Move Y1 B3 Wil\n\n25) wil: Sacrifice B2 G3\nTrade B3 R3 Wil\nTrade B3 G3 Y3\n\n26) Sarthobi: Trade G1 R1 Sarthobi\n\twil: Ya got no red man! no ability to attack...what is that little yellow mosquito doing in my homeworld?\n\n27) wil: Attack Y1 Wil\n\tSarthobi: yeah, i messed that up, didnt think all the way through :]\r\n\n\n28) Sarthobi: Build R1 Sarthobi\n\n29) wil: Sacrifice G3 Y3\nBuild B2 Wil\nBuild B3 G3\nBuild B3 Y3\n\twil: Your crew have been anesthetized, your ship retrofitted for our use. Send another transport ship and we'll have your crew loaded aboard for return to a neutral zone. \n\twil: attack is interesting...you can't move in and attack since it is turn based...the other guy can attack you if he is equal size and has the capability... what I am working toward now, and I don't think you can stop because of my blue monopoly is.. you take one, I take three... I send two big ships into your homeworld...you may be able to take one but with my Red Queen I'll be able to take that back and yours in the process... so I'll sack my g3 again...for two more b3s then with my y3 send them in for the kill...\n\n30) Sarthobi: Build G1 Sarthobi\n\n31) wil: Build B3 G3\n\n32) Sarthobi: Move G3 Sarthobi Y3\n\n33) wil: Sacrifice Y3 G3\nMove B3 Y3 Sarthobi\nMove B2 Y3 Sarthobi\nDiscover B1 Wil Y3 Why3\n\twil: the ships are on the horizon....\n\n34) Sarthobi: Sacrifice G3 Y3\nBuild G1 Sarthobi\nBuild G1 Sarthobi\nBuild R1 Sarthobi\n\twil: Ah....they've left their star system...attempting to discover greener pastures elsewhere...\r\n \n\n35) wil: Trade B2 R2 Sarthobi\nCatastrophe Sarthobi R\n\tSarthobi: I can either lose this round or claw my way to another round and then lise :p\n\n36) Sarthobi: Trade G1 R1 Sarthobi\n\n37) wil: Sacrifice R3 Wil\nAttack R1 Sarthobi\nAttack G1 Sarthobi\nAttack G1 Sarthobi\n\twil: https://www.youtube.com/watch?v=Zf-fORxQvW0\r\n\n\n\twil: The monopoly is what killed you... When someone gets a color...insure you get that color (unless you are able to hold a simultaneous monopoly of another color...but that is fraught with peril) \n\tSarthobi: Thanks a lot for the game :)\r\nLearned a few things hehe.\r\nI'll finish some challanges and will try out some new ones later.\r\nGood game!\n\twil: I try to keep a half dozen to a dozen games going (since some folks take 3-7 days to play) challenge me anytime... I lost probably 80% if my first few dozen games of homeworlds...but I love watching it..\n\nHomeworlds Online (SDG# 26738)\nVariants: "Hard time"\nStarted: 2015.1.4, Ended: 2015.1.6\nParticipants: Gungho (S), Sarthobi (N)\nWinner: Gungho\n\n1) Sarthobi: Homeworld Y2 B1 G3\n\n2) Gungho: Homeworld G3 Y1 B3\n\tGungho: Hello. Have fun :)\n\n3) Sarthobi: Build G1 Sarthobi\n\tSarthobi: Thanks, you too :)\n\n4) Gungho: Build B1 Gungho\n\n5) Sarthobi: Trade G1 Y1 Sarthobi\n\n6) Gungho: Build B1 Gungho\n\n7) Sarthobi: Build Y1 Sarthobi\n\n8) Gungho: Discover B1 Gungho G2 Buildy\n\n9) Sarthobi: Discover Y1 Sarthobi G3 G3buildy\n\n10) Gungho: Build B2 Buildy\n\n11) Sarthobi: Build Y2 Sarthobi\n\n12) Gungho: Trade B3 Y3 Gungho\n\n13) Sarthobi: Build Y2 G3buildy\n\tGungho: O.o I'm not really sure what my best choice was there. Sometimes you gotta pull out plan "wing it".\n\n14) Gungho: Build B2 Gungho\n\tSarthobi: Plan 'wing it' it is then!\r\nI'm not sure of any of my moves yet :p\n\n15) Sarthobi: Sacrifice Y2 Sarthobi\nMove Y1 G3buildy Buildy\nMove Y1 Buildy Gungho\n\tGungho: Sometimes the options are overwhelming, but you start to learn how you like to get things done after a while. Not me.. but ya know... other players. :)\n\n16) Gungho: Trade Y3 R3 Gungho\n\n17) Sarthobi: Sacrifice G3 Sarthobi\nBuild Y2 Gungho\nBuild Y3 Gungho\nBuild Y3 Sarthobi\nCatastrophe Gungho Y\n\n18) Gungho: Trade B1 Y1 Buildy\n\n19) Sarthobi: Trade Y3 G3 Sarthobi\n\n20) Gungho: Sacrifice Y1 Buildy\nMove R3 Gungho Sarthobi\n\n21) Sarthobi: Move G3 Sarthobi Gungho\n\n22) Gungho: Attack Y1N Sarthobi\n\tGungho: Thanks for the game. You had a strong open. You had me locked out of yellow, and you were out pacing me on getting to 3 pips.\n\tSarthobi: Thanks :)\r\nI thought i could have one more round that i lose if i dont have ships in the home world by the end of my turn.\r\nGreat game :)\n\n\nHomeworlds Online (SDG# 26704)\nVariants: "Hard time"\nStarted: 2015.1.4, Ended: 2015.1.27\nParticipants: Sarthobi (S), SilentTitan (N)\nWinner: Sarthobi\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Sarthobi: Homeworld Y3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Sarthobi: Build G1 Sarthobi\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Sarthobi: Build G1 Sarthobi\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) Sarthobi: Trade G1 B1 Sarthobi\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) Sarthobi: Build B1 Sarthobi\n\n11) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n12) Sarthobi: Discover B1 Sarthobi G2 G2\n\n13) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\n14) Sarthobi: Build B2 G2\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Soul\nBuild Y2 Silenttitan\n\n16) Sarthobi: B B2 G2\n\n17) SilentTitan: Build Y3 Sol\n\n18) Sarthobi: B B3 Sarthobi\n\n19) SilentTitan: Discover Y1 Silenttitan Y3 Sole\n\n20) Sarthobi: Trade B3 R3 Sarthobi\n\n21) SilentTitan: Move Y3 Sol Silenttitan\n\tSilentTitan: Oooooh Shiny\n\n22) Sarthobi: Build B3 Sarthobi\n\n23) SilentTitan: Move Y1 Sol Silenttitan\n\tSarthobi: brand new and shiny :]\r\nyou can smell the scent all the way to your home world :P\n\tSilentTitan: Ah... Well I believe this is a draw. First one I've ever seen, and maybe I've missed something somewhere. I do tend to be wrong from time to time.\n\n24) Sarthobi: Trade B3 R3 Sarthobi\n\n25) SilentTitan: Discover Y1 Soul R2 Tic\n\tSarthobi: i dont think it's a draw.. maybe i didnt think that far, but we have some options for the game :)\n\n26) Sarthobi: M R3 Sarthobi Tic\n\n27) SilentTitan: Move Y1 Tic Sol\n\n28) Sarthobi: B B3 Sarthobi\n\n29) SilentTitan: Discover Y1 Sol R2 Tac\n\n30) Sarthobi: B R1 Sarthobi\n\n31) SilentTitan: Discover Y2 Soul G2 Toe\n\n32) Sarthobi: M B3 Sarthobi Tac\n\n33) SilentTitan: Move Y1 Tac Sol\n\n34) Sarthobi: B B3 Sarthobi\n\n35) SilentTitan: Discover Y1 Sol G2 Ying\n\n36) Sarthobi: B R1 Sarthobi\n\n37) SilentTitan: Discover Y2 Toe B3 Yang\n\n38) Sarthobi: Move R1 Sarthobi G2\n\n39) SilentTitan: Discover Y2 Yang G2 Mish\n\n40) Sarthobi: M B1 Sarthobi Tic\n\n41) SilentTitan: Move Y1 Silenttitan Sol\n\n42) Sarthobi: B B3 Sarthobi\n\n43) SilentTitan: Discover Y1 Sol R2 Mash\n\n44) Sarthobi: B R3 Sarthobi\n\n45) SilentTitan: Move Y1 Mash Sol\n\n46) Sarthobi: T R3 G3 Tic\n\n47) SilentTitan: Move Y1 Sol Silenttitan\n\n48) Sarthobi: M R3 Sarthobi Mish\n\n49) SilentTitan: Discover Y2 Mish R3 Eenie\n\n50) Sarthobi: M R3 Sarthobi Ying\n\n51) SilentTitan: Discover Y1 Ying G1 Meenie\n\n52) Sarthobi: M G3 Sarthobi G2\n\n53) SilentTitan: Move Y2 Eenie Meenie\n\n54) Sarthobi: T B3 R3 Sarthobi\n\n55) SilentTitan: Move Y1 Meenie Sol\n\n56) Sarthobi: B B3 Sarthobi\n\n57) SilentTitan: Move Y1 Sol Meenie\n\n58) Sarthobi: Build R2 Sarthobi\n\n59) SilentTitan: Move Y1 Silenttitan Sol\n\n60) Sarthobi: Build G1 Sarthobi\n\n61) SilentTitan: Move Y1 Sol Silenttitan\n\n62) Sarthobi: Sacrifice B1 Tic\nPass\n\n63) SilentTitan: Pass\n\tSilentTitan: Draw?\n\tSarthobi: not yet :)\r\ngonna do some crazy moves now\n\tSarthobi: btw, how do we call a draw?\n\n64) Sarthobi: Pass\n\tSilentTitan: Not sure. Like I said this would be the first ever for me.\n\n65) SilentTitan: Move Y2 Meenie Sol\n\n66) Sarthobi: Move G1 Sarthobi Tac\n\n67) SilentTitan: Move Y2 Sol Meenie\n\n68) Sarthobi: Trade G1 B1 Tac\n\n69) SilentTitan: Move Y2 Silenttitan Sol\n\n70) Sarthobi: B G1 Sarthobi\n\n71) SilentTitan: Move Y2 Sol Silenttitan\n\n72) Sarthobi: Pass\n\n73) SilentTitan: Move Y2 Meenie Sol\n\n74) Sarthobi: Pass\n\n\tSilentTitan: Draw?\n\tdlwillson: Huh. Too bad there's no league. We could call a judge. I think it's supposed to end when both players pass, but I'm not sure.\n\tSarthobi: Draw\n\tSilentTitan: Good game\n\nHomeworlds Online (SDG# 26759)\nVariants: "Hard time"\nStarted: 2015.1.6, Ended: 2015.1.16\nParticipants: mneme (S), Gungho (N)\nWinner: Gungho\n\n1) Gungho: Homeworld G3 Y1 B3\n\n2) mneme: Homeworld R1 B2 G3\n\tGungho: Thanks for accepting. Have fun\n\n3) Gungho: Build B1 Gungho\n\n4) mneme: Build G1 Mneme\n\n5) Gungho: Build B1 Gungho\n\n6) mneme: Trade G1 B1 Mneme\n\n7) Gungho: Discover B1 Gungho G2 Mold\n\n8) mneme: Build B2 Mneme\n\n9) Gungho: Build B2 Mold\n\n10) mneme: Trade B1 Y1 Mneme\n\n11) Gungho: Trade B2 Y2 Mold\n\n12) mneme: Discover B2 Mneme G3 Forest\n\n13) Gungho: Build B1 Mold\n\n14) mneme: Build G1 Mneme\n\n15) Gungho: Trade B1 R1 Mold\n\n16) mneme: Trade G1 R1 Mneme\n\n17) Gungho: Build R2 Mold\n\n18) mneme: Move R1 Mneme Forest\n\n19) Gungho: Trade R1 B1 Mold\n\n20) mneme: Build G1 Mneme\n\n21) Gungho: Trade B1 G1 Mold\n\tmneme: Oh, missed your chat--have fun!\n\tGungho: Thanks! :)\n\n22) mneme: Discover G1 Mneme B3 Ocean\n\n23) Gungho: Discover G1 Mold B3 Puddle\n\n24) mneme: Build G1 Mneme\n\n25) Gungho: Build G2 Puddle\n\n26) mneme: Discover G1 Mneme Y3 Sol\n\n27) Gungho: Move R2 Mold Ocean\n\n28) mneme: Sacrifice G1 Ocean\nBuild Y1 Mneme\n\n29) Gungho: Build Y2 Mold\n\n30) mneme: Move Y1 Mneme Forest\n\n31) Gungho: Sacrifice Y2 Mold\nMove G1 Puddle Mneme\nMove G2 Puddle Mneme\n\n32) mneme: Sacrifice G3 Mneme\nBuild Y2 Forest\nBuild Y2 Forest\nBuild Y3 Mneme\n\tGungho: This ought to stir the pot some. :)\n\n33) Gungho: Build Y3 Mold\n\n34) mneme: Attack G2 Mneme\n\tmneme: Well, yes. \n\n35) Gungho: Move Y2 Mold Forest\nCatastrophe Forest Yellow\n\n36) mneme: Attack G1 Mneme\n\n37) Gungho: Move Y3 Mold Forest\n\tmneme: NOT happy with being behind in larges. But still, a successful defense.\n\n38) mneme: Sacrifice G2 Mneme\nBuild R1 Forest\nBuild R2 Forest\n\n39) Gungho: Sacrifice R2 Ocean\nAttack R2S Forest\nAttack B2S Forest\n\n40) mneme: Build R2 Forest\nCatastrophe Forest R\n\n41) Gungho: Trade B3 G3 Gungho\n\n42) mneme: Trade Y1 R1 Mneme\n\n43) Gungho: Sacrifice G3 Gungho\nBuild B1 Mold\nBuild B2 Mold\nBuild B3 Gungho\n\n44) mneme: Build Y1 Mneme\n\n45) Gungho: Build B3 Forest\n\n46) mneme: Discover G1 Mneme B3 No\n\n47) Gungho: Sacrifice B2 Forest\nTrade B2 Y2 Mold\nTrade B3 R3 Gungho\n\n48) mneme: Trade Y3 G3 Mneme\n\n49) Gungho: Sacrifice Y2 Mold\nMove B3 Forest Mneme\nMove Y3 Forest Mneme\n\n\tmneme: nicely done. Missed that you'd set up your freeze quite so close to my home system, but once you did it was all over. Another game?\n\tGungho: Thanks. You had quite the bag of defensive tricks. I enjoyed that game. Another game sounds great.\n\nHomeworlds Online (SDG# 26750)\nVariants: "Hard time"\nStarted: 2015.1.10, Ended: 2015.1.14\nParticipants: wil (S), Sarthobi (N)\nWinner: wil\n\n1) Sarthobi: Homeworld B1 Y2 G3\n\tSarthobi: Lets see how i'll do this time\n\n2) wil: Homeworld R3 B2 G3\n\twil: COOL!! Thanx..so openings...you've chosen the best one...or the one the best players like to use most and win with most... The Banker...I'll take Goldilocks...no...I'll take fortress, I want to learn how to use it to my advantage.\n\n3) Sarthobi: Build G1 Sarthobi\n\tSarthobi: I guess the red in the opening lets you stay defensive if i come by with a shi, right?\r\nAnd i like this game :)\r\nTrying to think of a way to make some AI for it that wont act foolish.\r\n\n\tSarthobi: I guess the red in the opening lets you stay defensive if i come by with a shi, right?\r\nAnd i like this game :)\r\nTrying to think of a way to make some AI for it that wont act foolish.\r\n\n\n4) wil: Build G1 Wil\n\twil: We dream of someone creating an app where you just slide pieces from the bank to the position...it jumps back if it is an illegal move... you can toggle on helps so whenever you touch a piece it shows where it can move... of the day we can play a computer... \n\twil: Yes, having the power of defense in my star is just like having a gun at my star... While I like having immediate transportation, having a defense system (can't be used in agression when it can't move or be sacked) is valuable...we come in peace.\n\n5) Sarthobi: T G1 B1 Sarthobi\n\tSarthobi: I saw how peacful you are. You wont fool me with that act :p\n\n6) wil: Trade G1 B1 Wil\n\n7) Sarthobi: B B2 Sarthobi\n\n8) wil: Build B2 Wil\n\n9) Sarthobi: T B1 Y1 Sarthobi\n\n10) wil: Trade B2 Y2 Wil\n\n11) Sarthobi: D Y1 Sarthobi G3 G3\n\n12) wil: Build G1 Wil\n\n13) Sarthobi: B G1 Sarthobi\n\n14) wil: Trade G1 R1 Wil\n\n15) Sarthobi: T G1 R1 Sarthobi\n\n16) wil: Build G1 Wil\n\n17) Sarthobi: Build G1 Sarthobi\n\n18) wil: Build Y1 Wil\n\n19) Sarthobi: Move B2 Sarthobi G3\n\twil: So this is the building game...you've avoided being locked out of anything...and now it is trying to not be the person that lets the other gain in the larger ships...(while being the person that takes the upper eddge in the larger ships)\n\tSarthobi: seems like it :]\n\n20) wil: Discover Y1 Wil G1 G1\n\n21) Sarthobi: Build G2 Sarthobi\n\n22) wil: Discover G1 Wil Y1 Y1\n\n23) Sarthobi: M G2 Sarthobi G3\n\twil: Do you have a physical set of pyramids? This display is just about the worst for actually figuring out what is going on... \n\tSarthobi: Hehe i dont, and this display aint toi good.. but we can manage :)\n\n24) wil: Build G2 Y1\n\n25) Sarthobi: D G2 G3 G2 G2\n\twil: You should get a set....playing real time with others is great...and when you get to critical conditions in an online game seeing a real layout helps...a lot. (I should do it more, but don't)\n\n26) wil: Discover G2 Y1 Y3 Y3\n\tSarthobi: I'm thinking about it, wanted to try out the game a few times before :)\n\n27) Sarthobi: D G1 Sarthobi Y3 Y-3\n\twil: That makes sense...I know no better two player strategy game. I enjoy chess, but the flavor of this is superior...games are not ever close in look or feel, and the reboot caused by catastrophes as well as the 'banking' system is great.\n\n28) wil: Move B1 Wil G1\n\tSarthobi: When i first read the rules i wasn't sure the game had this much depth. The rules intriged me, but Playing it really changed the way i saw it.\n\n29) Sarthobi: S G2 G2\nB G2 Y-3\nB G2 Sarthobi\n\twil: John Cooper developed the most amazing game with the Looney Pyramids... I am now learning Volcano, and Martian Chess, both good, but this is the best published game with them I know...having a set of them though is quite versatile...lots of games to play... this one, play anywhere, no board needed...just a table.\r\n\n\twil: John Cooper developed the most amazing game with the Looney Pyramids... I am now learning Volcano, and Martian Chess, both good, but this is the best published game with them I know...having a set of them though is quite versatile...lots of games to play... this one, play anywhere, no board needed...just a table.\r\n\n\n30) wil: Move R1 Wil Y1\n\n31) Sarthobi: Move G2 Y-3 Y1\n\n32) wil: Move G1 Y1 Wil\n\n33) Sarthobi: Sacrifice R1 Sarthobi\nAttack R1 Y1\n\n34) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 G1\nBuild G3 Wil\n\n35) Sarthobi: Sacrifice G1 Y-3\nBuild Y3 G3\n\n36) wil: Trade Y2 R2 Wil\n\n37) Sarthobi: B R1 Y1\n\twil: Hence the banker...used exactly correctly\n\n38) wil: Discover Y1 G1 B3 B3\n\n39) Sarthobi: S Y3 G3\nM R1 Y1 Wil\nM R1 Y1 Wil\nM G2 Y1 Wil\nC Wil R\n\n40) wil: Trade G1 R1 Wil\n\n41) Sarthobi: T G2 Y2 Sarthobi\n\twil: a little reboot... but it looks like you've left me in decent shape...don't need that big red...\n\n42) wil: Attack G2 Wil\n\twil: one move to mate.. starship captains warning....\n\n43) Sarthobi: B B1 G3\n\twil: good job!!\n\n44) wil: Sacrifice G2 Wil\nBuild Y1 G1\nBuild Y3 B3\n\n45) Sarthobi: M B1 G3 Wil\n\tSarthobi: Thnks :p\n\n46) wil: Attack B1 Wil\n\twil: I was about ready to go to bed....should I stay up... tell me if you are going to think about a move for a while...\n\tSarthobi: You can go if you want, i have likr an hour of free time right now\n\twil: yes there is thinking to be had....I think you are one step behind...you got a good plan thou...\n\n47) Sarthobi: B B2 G3\n\tSarthobi: I think you can out menuver me no matter what move i whould have done..\r\nBut i think this might open the mist options for me..\r\nIt is a good game any way :)\n\n48) wil: Sacrifice Y3 G1\nMove B1 G1 G3\nMove B1 Wil G3\nMove Y3 B3 Sarthobi\nCatastrophe G3 B\n\n49) Sarthobi: T Y2 R2 Sarthobi\n\n50) wil: Sacrifice R1 Wil\nAttack R2 Sarthobi\n\twil: Now that, is a reboot of the universe... \n\twil: again one move to mate... and I don't yet see a way out...hmmmm there is another delaying tactic..\n\n51) Sarthobi: M Y1 G3 Sarthobi\n\tSarthobi: Nice move, \r\nI'm stuck on a diffrent game. Both players are locked :p\r\nOn #26704\n\n52) wil: Sacrifice R2 Sarthobi\nAttack Y1 Sarthobi\nAttack G3 Sarthobi\n\twil: and nice try.. enjoyed the game... before you made your move on me...if you'd have added a piece in your homeworld so you could sack your y2 and move two blues in...you'd've had the game! \n\tSarthobi: Thanks, great game.\r\nI didnt think that move through. It was the general idea and i rushed it.\r\nOh well :)\n\twil: lol...interesting battle over there..both of you going for monopolies... he's a good player... good luck\n\n\twil: Please don't hesitate to challenge me again!\n\twil: So many moving parts with so few pieces... learn the bluebird, monopolies, u take 1/2, I take 2/3, factory... you are a formidable foe!\n\nHomeworlds Online (SDG# 26774)\nVariants: "Unrated, Hard time"\nStarted: 2015.1.11, Ended: 2015.1.13\nParticipants: Gungho (S), Sarthobi (N)\nWinner: Gungho\n\n1) Sarthobi: Homeworld B1 Y2 G3\n\n2) Gungho: Homeworld G3 Y1 B3\n\n3) Sarthobi: Build G1 Sarthobi\n\tGungho: Hello. Enjoy the game!\n\tGungho: Hello. Enjoy the game!\n\tGungho: Oops. Double tap. O.o\n\n4) Gungho: Build B1 Gungho\n\tSarthobi: Thanks, you too!\r\n:]\n\n5) Sarthobi: Trade G1 B1 Sarthobi\n\n6) Gungho: Trade B1 Y1 Gungho\n\n7) Sarthobi: Build G1 Sarthobi\n\n8) Gungho: Build Y1 Gungho\n\n9) Sarthobi: Sacrifice G3 Sarthobi\nBuild G1 Sarthobi\nBuild G1 Sarthobi\nBuild B1 Sarthobi\n\n10) Gungho: Build B2 Gungho\n\tGungho: That's a pretty wild move. Opened up the 2 pips for sure. Beware bigger ships getting to your HW!\n\n11) Sarthobi: Discover G1 Sarthobi B3 B3\n\n12) Gungho: Trade B3 R3 Gungho\n\tSarthobi: yeah, seems like a bad move in retro spec\n\tGungho: Someone who's better than me would know exactly what to do to take advantage of it. I have a rough idea. The presence of a 3 pip at HW is really important for defense in the early game.\n\n13) Sarthobi: B G2 B3\n\n14) Gungho: Discover R3 Gungho Y2 Darkcloud\n\tSarthobi: Yeah.. i'm still a newb..\r\nWell i'll learn the hard way :)\n\n15) Sarthobi: T G2 Y2 B3\n\n16) Gungho: Discover R3 Darkcloud Y3 Brightlight\n\n17) Sarthobi: Build Y2 B3\n\n18) Gungho: Move R3 Brightlight Sarthobi\n\n19) Sarthobi: B Y3 B3\n\n20) Gungho: Attack G1N Sarthobi\n\n21) Sarthobi: Sacrifice Y2 B3\nDiscover Y2 B3 R2 R2\nMove Y2 R2 Gungho\nCatastrophe Gungho Y\n\n22) Gungho: Sacrifice R3 Sarthobi\nAttack G1N Sarthobi\nAttack B1N Sarthobi\nAttack B1N Sarthobi\n\tGungho: Thanks for the game. I was happy to see you get the yellow catastrophe. Next time maybe keep a big ship at your hw. And also remember the "gun rule". If your opponent draws his gun (red ship) it's almost always a good idea to draw your own.\r\n\r\nSorry I'm not a great teacher, but feel free to send me a challenge any time (rated or not)\n\tSarthobi: Thanks a lot, i didnt think about you using the sacrifice on the red ship a head of time, thought i'd get to destroy the second star before you catch all my ships :]\r\n\n\n\nHomeworlds Online (SDG# 26780)\nVariants: "Hard time"\nStarted: 2015.1.12, Ended: 2015.1.26\nParticipants: TeeTeeTee (S), dlwillson (N)\nWinner: TeeTeeTee\n\n1) dlwillson: H Y3 B1 G3\n\n2) TeeTeeTee: Homeworld Y1 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) TeeTeeTee: Trade G1 B1 Teeteetee\n\n7) dlwillson: Build B2 Dlwillson\n\n8) TeeTeeTee: Build B2 Teeteetee\n\n9) dlwillson: Discover B2 Dlwillson G2 Field\n\n10) TeeTeeTee: Trade B2 Y2 Teeteetee\n\n11) dlwillson: B B2 Field\n\n12) TeeTeeTee: Build B3 Teeteetee\n\n13) dlwillson: B B3 Dlwillson\n\n14) TeeTeeTee: Discover B1 Teeteetee G3 Pear\n\n15) dlwillson: Trade B1 R1 Dlwillson\n\n16) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild Y1 Teeteetee\nBuild B1 Teeteetee\nBuild B3 Pear\n\n17) dlwillson: Trade B2 Y2 Field\n\tdlwillson: Interesting!\n\n18) TeeTeeTee: Trade B1 R1 Teeteetee\n\n19) dlwillson: Move B2 Field Pear\n\tTeeTeeTee: It's always nice to try something different.\n\n20) TeeTeeTee: Sacrifice B1 Pear\nTrade B3 R3 Pear\n\n21) dlwillson: S Y2 Field\nD B2 Pear Y2 Sunny\nD B3 Dlwillson G2 Field\n\tdlwillson: I'll come back after work.\n\n22) TeeTeeTee: Move Y2 Teeteetee Pear\n\n23) dlwillson: B B1 Field\n\n24) TeeTeeTee: Build Y1 Pear\n\n25) dlwillson: Trade B3 Y3 Field\n\n26) TeeTeeTee: Build Y2 Pear\n\n27) dlwillson: Discover B2 Sunny Y3 Golden\n\n28) TeeTeeTee: Trade B3 G3 Teeteetee\n\n29) dlwillson: Build Y2 Field\n\n30) TeeTeeTee: Sacrifice Y2 Pear\nMove Y2 Pear Field\nMove Y1 Pear Field\nCatastrophe Field Yellow\n\n31) dlwillson: Build G1 Dlwillson\n\n32) TeeTeeTee: Build Y1 Teeteetee\n\n33) dlwillson: Trade G1 B1 Dlwillson\n\n34) TeeTeeTee: Sacrifice Y1 Teeteetee\nMove R3 Pear Field\n\n35) dlwillson: T B1 G1 Field\n\n36) TeeTeeTee: Attack G1 Field\n\n37) dlwillson: B G1 Dlwillson\n\n38) TeeTeeTee: Build Y1 Teeteetee\n\n39) dlwillson: T B2 G2 Golden\n\n40) TeeTeeTee: Build G1 Teeteetee\n\n41) dlwillson: Move G1 Dlwillson Field\n\n42) TeeTeeTee: Sacrifice Y1 Teeteetee\nMove R3 Field Golden\n\n43) dlwillson: Discover G2 Golden Y2 Sunny\n\n44) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild G2 Field\nBuild G3 Teeteetee\nBuild G3 Teeteetee\nCatastrophe Field Green\n\n45) dlwillson: B G1 Dlwillson\n\n46) TeeTeeTee: Build Y1 Teeteetee\n\tdlwillson: Well. Good game. I'll play it out, if you like.\n\tTeeTeeTee: That's up to you! It'd be quite reasonable to stop, here, if you think you can't make a come-back from this. (I don't believe that I've won a game after being two large ships down, before.)\n\n\tdlwillson: I'll resign so the ladder is open to other attackers. No point wasting time. Well played.\n\twil: Helluva game guys! I'ma gonna wait... see if you can get 2short outta the woods DL\n\tTeeTeeTee: Okay, then. Thanks!\r\n\r\nI reckon that two things cost you the game, here. First was "15. Build y2 field": it let me go a large ship ahead, and I was able to harrass your small and medium ships in the centre from then on. The second was to trade away your blues, starting from "18. Trade b1 g1 field". At this point in the game, you had a far better grasp on the blue ships than I did, and there were lots of unbuilt b3s in the stash, which made blues very valuable. Indeed, sacrificing the g3 on this turn would have put you level with me on large ships (and you could have then sacrificed a smaller ship to prevent catastrophe on the next turn).\r\n\r\nAlso, I'm probably only going to defend my ladder position for maybe one or two more games: I kind of feel like I should give Homeworlds a rest for a bit. (Or, at least, I'd like to have the choice of when to accept games...)\n\twil: dang they reach the top and then retire....\r\n\n\nHomeworlds Online (SDG# 26751)\nVariants: "Hard time"\nStarted: 2015.1.14, Ended: 2015.3.14\nParticipants: agentofchaos (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tagentofchaos: Hi have fun\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) SilentTitan: Trade G1 R1 Silenttitan\n\n6) agentofchaos: Trade G1 R1 Agentofchaos\n\n7) SilentTitan: Build R2 Silenttitan\n\n8) agentofchaos: Build R2 Agentofchaos\n\n9) SilentTitan: Trade R2 Y2 Silenttitan\n\n10) agentofchaos: Trade R1 Y1 Agentofchaos\n\n11) SilentTitan: Build Y1 Silenttitan\n\n12) agentofchaos: Discover R2 Agentofchaos Y1 Hartstorm\n\n13) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n14) agentofchaos: Build Y2 Agentofchaos\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\n16) agentofchaos: Discover Y1 Agentofchaos G1 Krillsol\n\n17) SilentTitan: Discover Y3 Silenttitan Y3 Soul\n\n18) agentofchaos: Build G1 Agentofchaos\n\n19) SilentTitan: Trade Y1 G1 Sol\n\n20) agentofchaos: Build Y1 Krillsol\n\n21) SilentTitan: Trade Y2 G2 Silenttitan\n\n22) agentofchaos: Build Y2 Agentofchaos\n\n23) SilentTitan: Build G2 Silenttitan\n\n24) agentofchaos: Move Y1 Krillsol Soul\n\n25) SilentTitan: Build G2 Sol\n\n26) agentofchaos: Move Y1 Krillsol Soul\nCatastrophe Soul Y\n\n27) SilentTitan: Sacrifice G2 Sol\nBuild Y1 Sol\nBuild Y1 Silenttitan\n\n28) agentofchaos: Discover Y2 Agentofchaos G1 Akastroph\n\n29) SilentTitan: Sacrifice Y2 Sol\nDiscover G2 Silenttitan Y3 Sole\nDiscover G2 Silenttitan Y3 Soul\n\n30) agentofchaos: Build Y2 Akastroph\n\n31) SilentTitan: Sacrifice G2 Soul\nBuild Y3 Sol\nBuild G2 Sol\n\n32) agentofchaos: Discover Y2 Akastroph G3 Doomclysm\n\n33) SilentTitan: Discover Y3 Sol B1 Soul\n\n34) agentofchaos: Move Y2 Akastroph Doomclysm\n\n35) SilentTitan: Sacrifice G2 Sole\nBuild Y3 Sol\nPass\n\n36) agentofchaos: M R2 Hartstorm Doomclysm\n\n37) SilentTitan: Trade Y3 G3 Silenttitan\n\n\nHomeworlds Online (SDG# 26776)\nVariants: "Hard time"\nStarted: 2015.1.15, Ended: 2015.1.19\nParticipants: wil (S), Sarthobi (N)\nWinner: Sarthobi\n\n1) Sarthobi: Homeworld B1 Y2 G3\n\tSarthobi: Hello again :)\n\n2) wil: Homeworld B3 Y1 G3\n\n3) Sarthobi: B G1 Sarthobi\n\n4) wil: Build G1 Wil\n\n5) Sarthobi: T G1 B1 Sarthobi\n\n6) wil: Trade G1 Y1 Wil\n\n7) Sarthobi: B B1 Sarthobi\n\n8) wil: Build Y1 Wil\n\n9) Sarthobi: D B1 Sarthobi G3 G3\n\n10) wil: Discover Y1 Wil G2 G2\n\n11) Sarthobi: B B2 G3\n\n12) wil: Sacrifice G3 Wil\nBuild Y2 G2\nBuild Y2 Wil\nBuild Y3 G2\n\n13) Sarthobi: B B2 Sarthobi\n\twil: in this case I went for yellow because even thou you were a step ahead...there were only two drone yellows...which would allow me to jump ahead and get to queens first... we'll see how it plays out..\n\twil: a big thing in this game is...'darnit...how did s/he get ahead of me?'\n\n14) wil: Discover Y3 G2 B3 B3\n\tSarthobi: Yeah indeed, i learn things as i see them against me.\r\nNice\n\twil: Yes, exactly how I learned...somewhere between the third and seventh attack of the same way I began to catch on... top players still kick my butt...every time!\n\n15) Sarthobi: D B1 Sarthobi Y3 Y3\n\twil: It is easy to see the move that gets ya...it takes a bit to see the set up that allows the move..\r\n\n\n16) wil: Trade Y3 B3 B3\n\n17) Sarthobi: B G1 Sarthobi\n\twil: very weird game...love it! \n\n18) wil: Build Y3 G2\n\n19) Sarthobi: T G3 Y3 Sarthobi\n\n20) wil: Trade Y1 G1 Wil\n\n21) Sarthobi: T B1 Y1 G3\n\n22) wil: Build G1 Wil\n\n23) Sarthobi: B G2 Sarthobi\n\n24) wil: Trade G1 R1 Wil\n\n25) Sarthobi: M Y1 G3 G2\nCatastrophe G2 Y\n\n26) wil: Trade B3 G3 B3\n\twil: what...was I blind?\r\n\n\n27) Sarthobi: B B1 G3\n\n28) wil: Build Y1 Wil\n\tSarthobi: Seems so :)\r\nGot a little lucky \n\n29) Sarthobi: B B2 G3\n\n30) wil: Discover Y1 Wil G2 G2\n\n31) Sarthobi: T B2 Y2 G3\n\n32) wil: Move Y1 G2 Y3\n\n33) Sarthobi: T G1 R1 Sarthobi\n\n34) wil: Sacrifice R1 Wil\nAttack B1 Y3\n\n35) Sarthobi: B Y1 G3\n\n36) wil: Build G1 Wil\n\n37) Sarthobi: Discover B2 G3 G2 G2\n\twil: I am playing terribly\n\n38) wil: Trade G1 R1 Wil\n\n39) Sarthobi: Build B2 G2\n\n40) wil: Discover Y1 Y3 G2 Gee2\n\n41) Sarthobi: Build G1 Sarthobi\n\n42) wil: Sacrifice G3 B3\nBuild B3 Y3\nBuild Y3 Gee2\nBuild R1 Wil\n\n43) Sarthobi: Sacrifice Y2 G3\nMove B2 G2 Wil\nMove B2 G2 Wil\n\tSarthobi: nice play.. i wonder how this effects my plan :)\n\n44) wil: Move B1 Y3 Sarthobi\n\n45) Sarthobi: Sacrifice G2 Sarthobi\nBuild B3 Wil\nBuild Y2 G3\nCatastrophe Wil B\n\twil: Nice plan...let us see how she plays out...\n\tSarthobi: i dont think you can stop it, at least not with out a huge lose on your side\n\n46) wil: Sacrifice Y3 Gee2\nMove Y1 Gee2 Y3\nMove B3 Y3 Sarthobi\n\nMove Y1 Y3 Sarthobi\nCatastrophe Sarthobi B\n\twil: you got me by one I think...\r\n\n\twil: nope...you got me by a glitch in the system!! darnitall... \r\n\r\ns y3 gee2\r\nm b3 y3 sarthobi\r\nc sarthobi b\r\nm y1 gee2 sarthobi\r\nm y1 wil sarthobi\r\nc sarthobi y\r\n\r\n\n\n47) Sarthobi: S Y3 Sarthobi\nM Y2 G3 Wil\nM Y1 G3 Wil\nPass\nC Wil Y\n\twil: good game!\n\twil: good game!\n\tSarthobi: Great game :)\r\nThanks!\n\n\nHomeworlds Online (SDG# 26791)\nVariants: "Unrated"\nStarted: 2015.1.15, Ended: 2015.2.18\nParticipants: wil (S), sounde (N)\nWinner: sounde\n\n1) sounde: Homeworld Y1 B3 G3\n\n2) wil: Homeworld B2 Y3 G3\n\tsounde: Haven't played this in years. Hope I still offer some amount of challenge.\n\twil: I like the game....we'll see about a challenge...\n\n3) sounde: Build G1 Sounde\n\n4) wil: Build G1 Wil\n\twil: Where did you play? Here?\n\n5) sounde: Trade G1 Y1 Sounde\n\n6) wil: Trade G1 Y1 Wil\n\tsounde: Yeah. I also own a set of pyramids, but haven't played in person in a long time.\n\n7) sounde: Build Y2 Sounde\n\twil: cool.... I prefer this over chess now... Although I have more folks that will play chess... and seems chess folks get leery of learning something they may like better than chess...\n\tsounde: Ha hah. This is chessy in some ways and yeah... chess folks seem to get stuck in chess.\n\n8) wil: Build Y2 Wil\n\twil: intragalactic war game instead of land based... \n\n9) sounde: Discover Y2 Sounde G2 Sissa\n\n10) wil: Trade Y1 R1 Wil\n\n11) sounde: Trade Y1 R1 Sounde\n\n12) wil: Build G1 Wil\n\n13) sounde: Build G1 Sounde\n\tsounde: How long have you been playing?\n\n14) wil: Trade G1 B1 Wil\n\twil: It says first game march 2013... almost two years, and almost 200 games... hmmm that would be about 2 games a week... I lost a lot while learning....\n\n15) sounde: Build Y1 Sissa\n\n16) wil: Discover Y2 Wil G1 G1\n\n17) sounde: Discover Y2 Sissa B1 Huin\n\n18) wil: Build B1 Wil\n\n19) sounde: Trade Y2 G2 Huin\n\n20) wil: Move B1 Wil G1\n\n21) sounde: Sacrifice G3 Sounde\nBuild G1 Huin\nBuild G2 Huin\nBuild G3 Sounde\n\n22) wil: Build G3 Wil\n\n23) sounde: Trade G2 Y2 Huin\n\n24) wil: Discover G3 Wil Y1 Y1\n\n25) sounde: Sacrifice Y2 Huin\nMove G1 Huin Wil\nMove G2 Huin Wil\n\n26) wil: Trade G3 Y3 Wil\n\n27) sounde: Trade G2 Y2 Wil\n\n28) wil: Trade Y3 R3 Wil\n\n29) sounde: Sacrifice G3 Sounde\nBuild G2 Wil\nBuild G2 Wil\nBuild G3 Sounde\n\twil: did that wrong last time... coulda stopped ya from being such a pest..\n\n30) wil: Move G3 Y1 Wil\nCatastrophe Wil G\n\tsounde: nuisancing!\n\tsounde: i'm relearning how some of these things play out. may be a bit too bold, but it's all process. :)\n\twil: no, it is great...I agree, I lost so many games, correct that lose so many games, by experimentation, but there are lessons to be learned...\n\n31) sounde: Discover Y2 Wil G1 Huin\n\n32) wil: Trade R3 G3 Wil\n\n33) sounde: Build G2 Sounde\n\n34) wil: Build B1 G1\n\n35) sounde: Discover G2 Sounde B2 Tra\n\n36) wil: Discover B1 G1 G3 G3\n\n37) sounde: Sacrifice G3 Sounde\nBuild G2 Tra\nBuild G3 Sounde\nBuild Y1 Huin\n\n38) wil: Sacrifice G3 Wil\nBuild B2 G3\nBuild B3 Wil\nBuild B3 G1\n\n39) sounde: Sacrifice G3 Sounde\nBuild G3 Sounde\nBuild G3 Tra\nBuild Y2 Huin\n\n40) wil: Build Y3 G1\n\tsounde: i'm probably in some trouble now with the blue lock-out. i remember that being problematic.\n\n41) sounde: Sacrifice Y2 Huin\nMove G3 Tra G3\nDiscover G2 Tra R1 Dorst\n\twil: it could be...but you've got greens..any monopoly is an issue...\n\n42) wil: Move B3 G1 Tra\n\n43) sounde: Sacrifice G2 Tra\nBuild G2 Dorst\nBuild Y2 Sissa\n\twil: so we'll end both monopolies with a prisoner exchange...\n\n44) wil: Trade B3 Y3 Tra\n\tsounde: nah.\n\n45) sounde: Build R2 Sounde\n\n46) wil: Build B3 G1\n\n47) sounde: Sacrifice R1 Sounde\nAttack B2 G3\n\n48) wil: Move B1 G1 G3\n\n49) sounde: Sacrifice B2 G3\nTrade G2 B2 Dorst\nTrade Y1 R1 Huin\n\n50) wil: Trade Y2 R2 G1\n\tsounde: thanks for the patience\n\n51) sounde: Sacrifice G3 G3\nBuild G2 Sounde\nBuild G3 Dorst\nBuild R2 Huin\n\n52) wil: Build R3 G1\n\n53) sounde: Sacrifice Y2 Sissa\nMove G3 Dorst Wil\nMove B2 Dorst Wil\nCatastrophe Wil B\n\twil: de nada.... the game gives you a length of time to play.. sometimes we play rapidly, sometimes life gets in the way...\n\n54) wil: S Y3 G1\nM B3 G1 Wil\nM R2 G1 Wil\nM Y3 Tra Sounde\n\tsounde: i almost feel like that was a trap, but i don't really see how you can recover....\n\tsounde: oh... there's a way you can live a little longer... but not sure it saves you\n\tsounde: well yeah.... the game reminds me why it is so good.... things are never as simple as they seem\n\n55) sounde: Sacrifice R2 Huin\nAttack B3 Wil\nAttack Y3 Sounde\n\n\twil: Good game \r\n\n\nHomeworlds Online (SDG# 26788)\nVariants: "Hard time"\nStarted: 2015.1.15, Ended: 2015.2.16\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld R2 B1 G3\n\twil: oops? what have I done? challenged you twice... my bad...I am up for simultaneous games to see where they go... but will resign from one if you wish...\n\n2) SilentTitan: Homeworld B2 R3 G3\n\n3) wil: Build G1 Wil\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 B1 Wil\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\n7) wil: Build B2 Wil\n\twil: interesting theme...\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) wil: Trade B2 Y2 Wil\n\n10) SilentTitan: Trade B1 Y1 Silenttitan\n\n11) wil: Build Y1 Wil\n\n12) SilentTitan: Build Y1 Silenttitan\n\n13) wil: Discover Y1 Wil G3 G3\n\n14) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n15) wil: Build Y2 Wil\n\n16) SilentTitan: Build G1 Silenttitan\n\n17) wil: Trade Y2 R2 Wil\n\n18) SilentTitan: Build Y2 Silenttitan\n\n19) wil: Build Y2 G3\n\n20) SilentTitan: Build Y3 Sol\n\n21) wil: Build Y3 Wil\n\n22) SilentTitan: Discover Y1 Sol B3 Soul\n\n23) wil: Discover R2 Wil Y3 Y3\n\n24) SilentTitan: Trade Y1 R1 Silenttitan\n\n25) wil: Build G1 Wil\n\n26) SilentTitan: Build Y1 Sol\n\n27) wil: Move G1 Wil Y3\n\n28) SilentTitan: Sacrifice B2 Silenttitan\nTrade Y3 R3 Sol\nTrade G1 B1 Silenttitan\n\n29) wil: Discover B1 Wil Y3 Why3\n\n30) SilentTitan: Move R3 Sol Y3\n\n31) wil: Build R1 Y3\n\n32) SilentTitan: Attack G1 Y3 North\n\twil: shoo\n\tSilentTitan: Omg. I actually laughed out loud.\n\n33) wil: Sacrifice G3 Wil\nBuild R1 Y3\nBuild B2 Why3\nBuild B2 Why3\nCatastrophe Y3 R\n\n34) SilentTitan: Sacrifice G1 Y3\nBuild Y3 Soul\n\n35) wil: Sacrifice B2 Why3\nTrade B2 G2 Why3\nTrade Y2 G2 Wil\n\n36) SilentTitan: Trade Y1 G1 Soul\n\n37) wil: Build B2 Why3\n\n38) SilentTitan: Discover B1 Silenttitan Y1 Sole\n\n39) wil: Trade B2 R2 Why3\n\n40) SilentTitan: Build G1 Silenttitan\n\n41) wil: Build Y2 Wil\n\n\nHomeworlds Online (SDG# 26793)\nVariants: "Hard time"\nStarted: 2015.1.15, Ended: 2015.1.30\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) SilentTitan: Homeworld Y2 B3 G3\n\n3) wil: Build G1 Wil\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 B1 Wil\n\n6) SilentTitan: Trade G1 B1 Silenttitan\n\tSilentTitan: On a theme here are we\n\n7) wil: Build B2 Wil\n\n8) SilentTitan: Build B2 Silenttitan\n\n9) wil: Trade B2 Y2 Wil\n\n10) SilentTitan: Discover B1 Silenttitan G1 Sol\n\n11) wil: Discover B1 Wil G3 G3\n\n12) SilentTitan: Build B2 Sol\n\n13) wil: Build B2 G3\n\n14) SilentTitan: Trade B1 Y1 Sol\n\n15) wil: Trade B1 R1 G3\n\n16) SilentTitan: Trade Y1 R1 Sol\n\n17) wil: Build Y1 Wil\n\n18) SilentTitan: Build B1 Sol\n\n19) wil: Build B1 G3\n\n20) SilentTitan: Trade B1 Y1 Sol\n\n21) wil: Move Y1 Wil G3\n\n22) SilentTitan: Build B1 Sol\n\n23) wil: Discover B1 G3 R1 R1\n\n24) SilentTitan: Discover B2 Sol Y3 Soul\n\n25) wil: Build B3 G3\n\n26) SilentTitan: Build B3 Sol\n\n27) wil: Trade B3 Y3 G3\n\n\tSilentTitan: Good game. Well played\n\twil: Wow, I wasn't positive I could execute an ending...\n\twil: I did like watching the two games side by side though..intriguing. I think an interesting tourney would be everyone playing from the same midgame situation....\n\nHomeworlds Online (SDG# 26794)\nVariants: "Hard time"\nStarted: 2015.1.15, Ended: 2015.2.1\nParticipants: SilentTitan (S), Gungho (N)\nWinner: SilentTitan\n\n1) Gungho: Homeworld G3 Y1 B3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\tGungho: Hello. Have fun. \n\tSilentTitan: You as well\n\n3) Gungho: Build B1 Gungho\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Gungho: Build B1 Gungho\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Gungho: Discover B1 Gungho G2 Mold\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Gungho: Build B1 Mold\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) Gungho: Build B2 Mold\n\n12) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n\nHomeworlds Online (SDG# 26773)\nVariants: "Hard time"\nStarted: 2015.1.16, Ended: 2015.2.23\nParticipants: agentofchaos (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) wil: Build G1 Wil\n\twil: thx for the game...I my old housemate and I kept a game of hw going almost continuously....like here...when someone walked by and looked at it...they'd move...and whenever the other looked at it...they'd move... I miss that.\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) wil: Trade G1 Y1 Wil\n\tagentofchaos: Sounds like it was a fun arrangement \n\twil: Made me just talk to my new housemate of his need to learn homeworlds..\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) wil: Discover Y1 Wil G2 G2\n\tagentofchaos: Definitely a skill worth learning!\n\n8) agentofchaos: Discover Y1 Agentofchaos G1 Hartax\n\n9) wil: Build G1 Wil\n\n10) agentofchaos: Build Y2 Hartax\n\n11) wil: Build Y2 G2\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) wil: Trade G1 R1 Wil\n\n14) agentofchaos: Trade G1 R1 Agentofchaos\n\n15) wil: Discover Y1 G2 B1 B1\n\n16) agentofchaos: Build G1 Agentofchaos\n\n17) wil: Build Y2 G2\n\n18) agentofchaos: Move Y1 Hartax Agentofchaos\n\n19) wil: Sacrifice G3 Wil\nBuild Y3 B1\nBuild Y3 B1\nBuild Y3 G2\n\n20) agentofchaos: Trade G1 B1 Agentofchaos\n\n21) wil: Trade Y1 B1 B1\n\n22) agentofchaos: Build Y1 Hartax\n\n23) wil: Move Y3 G2 Wil\n\n24) agentofchaos: Build G1 Agentofchaos\n\n25) wil: Move B1 B1 G2\n\n26) agentofchaos: Build G1 Agentofchaos\n\n27) wil: Build B2 G2\n\n28) agentofchaos: Move R1 Agentofchaos Hartax\n\n29) wil: Trade Y2 R2 G2\n\n30) agentofchaos: Build Y2 Agentofchaos\n\twil: And now i gotta do it!\n\n31) wil: Trade B2 G2 G2\n\tagentofchaos: It's an arms race!\n\n32) agentofchaos: Trade G1 R1 Agentofchaos\n\twil: I couldn't even win a foot race...\n\n33) wil: Trade Y3 G3 Wil\n\n34) agentofchaos: Move B1 Agentofchaos Hartax\n\n35) wil: Build Y3 G2\n\n36) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y1 Hartax G2\nMove Y2 Hartax G2\nCatastrophe G2 Y\n\n37) wil: Build G1 Wil\n\n38) agentofchaos: Build B2 Hartax\n\n39) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 G2\n\n40) agentofchaos: Build R2 Hartax\n\n41) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 Wil\nBuild R3 G2\n\n\nHomeworlds Online (SDG# 26802)\nVariants: "Hard time"\nStarted: 2015.1.17, Ended: 2015.1.18\nParticipants: wil (S), Gungho (N)\nWinner: Gungho\n\n1) Gungho: Homeworld G2 Y2 B3 *\n\n2) wil: Homeworld Y3 G1 R3 *\n\tGungho: And now for something completely different.\r\n(I have never tried any of the obscure homeworlds.)\n\twil: a short homeworld?? really??\n\n3) Gungho: Build B1 Gungho\n\twil: I sir shall be equally silly...\n\n4) wil: Build R1 Wil\n\n5) Gungho: Trade B1 R1 Gungho\n\n6) wil: Discover R1 Wil B2 B2\n\n7) Gungho: Build R1 Gungho\n\n8) wil: Build R2 Wil\n\n9) Gungho: Move R1 Gungho Wil\n\n10) wil: Build R2 Wil\nCatastrophe Wil R\n\twil: yup...we'll have to play another real game..\n\tGungho: For sure\n\n\nHomeworlds Online (SDG# 26821)\nVariants: "Hard time"\nStarted: 2015.1.17, Ended: 2015.2.6\nParticipants: agentofchaos (S), Gungho (N)\nWinner: agentofchaos\n\n1) Gungho: Homeworld G3 Y1 B3\n\tGungho: Thanks for accepting. Have fun!\n\n2) agentofchaos: Homeworld B1 R2 G3\n\n3) Gungho: Build B1 Gungho\n\tagentofchaos: Thanks for the challenge! Enjoy!\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Gungho: Build B1 Gungho\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) Gungho: Discover B1 Gungho G2 Mold\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) Gungho: Build B2 Mold\n\n10) agentofchaos: Build Y1 Agentofchaos\n\n11) Gungho: Trade B2 Y2 Mold\n\n12) agentofchaos: Build Y2 Agentofchaos\n\n13) Gungho: Build B2 Mold\n\n14) agentofchaos: Trade Y2 B2 Agentofchaos\n\n15) Gungho: Discover B2 Mold Y3 Taffy\n\n16) agentofchaos: Discover Y1 Agentofchaos G3 Holdgar\n\n17) Gungho: Build B2 Mold\n\n18) agentofchaos: Move B2 Agentofchaos Holdgar\n\n19) Gungho: Build B3 Gungho\n\n20) agentofchaos: Build B3 Holdgar\n\n\nHomeworlds Online (SDG# 26838)\nVariants: "Hard time"\nStarted: 2015.1.20, Ended: 2015.1.27\nParticipants: mneme (S), ajo (N)\nWinner: mneme\n\n1) ajo: Homeworld B2 R3 G3\n\n2) mneme: Homeworld R1 G3 B3\n\tajo: Wow, it's been a loooong time. I should be easy prey. :)\n\tmneme: :) I've mostly been retired for a bit, though I did play a couple of games recently.\n\n3) ajo: Build G1 Ajo\n\n4) mneme: Build B1 Mneme\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) mneme: Trade B1 Y1 Mneme\n\n7) ajo: Build G1 Ajo\n\n8) mneme: Build B1 Mneme\n\n9) ajo: Trade G3 B3 Ajo\n\n10) mneme: Trade B1 R1 Mneme\n\n11) ajo: Build B1 Ajo\n\n12) mneme: Build R1 Mneme\n\n13) ajo: Discover B1 Ajo G1 Alpha\n\n14) mneme: Discover R1 Mneme Y2 Hester\n\n15) ajo: Build G1 Ajo\n\n16) mneme: Build R2 Mneme\n\n17) ajo: Build G2 Ajo\n\n18) mneme: Trade R2 G2 Mneme\n\n19) ajo: Move G2 Ajo Alpha\n\n20) mneme: Move G2 Mneme Hester\n\n21) ajo: Trade G2 R2 Alpha\n\n22) mneme: Build R2 Hester\n\n23) ajo: Build R2 Alpha\n\n24) mneme: Build R3 Mneme\n\n25) ajo: Trade R2 Y2 Alpha\n\n26) mneme: Trade R3 Y3 Mneme\n\n27) ajo: Build R2 Alpha\n\n28) mneme: Discover R1 Hester R3 Andromeda\n\n29) ajo: Trade R2 Y2 Alpha\n\n30) mneme: Sacrifice G2 Hester\nBuild R2 Andromeda\nBuild R3 Hester\n\n31) ajo: Move R2 Alpha Andromeda\nCatastrophe Andromeda Red\n\n32) mneme: Move R3 Hester Alpha\n\n33) ajo: Sacrifice Y2 Alpha\nDiscover Y2 Alpha G2 Gamma\nMove B1 Alpha Gamma\n\n34) mneme: Move B3 Mneme Gamma\n\n35) ajo: Build G2 Ajo\n\n36) mneme: Sacrifice R2 Hester\nAttack Y2 Gamma\nAttack B1 Gamma\n\n37) ajo: Discover G1 Ajo B1 Beta\n\n38) mneme: Move B3 Gamma Beta\n\n39) ajo: Discover G2 Ajo B1 Delta\n\n40) mneme: Sacrifice B1 Gamma\nTrade Y3 R3 Mneme\n\n41) ajo: Build G2 Ajo\n\n42) mneme: Sacrifice Y2 Gamma\nMove R3 Alpha Ajo\nMove B3 Beta Ajo\n\n43) ajo: Attack R3 Ajo\n\tajo: I'm almost inclined to resign at this point... you're pretty far ahead.\n\n44) mneme: Sacrifice R3 Mneme\nAttack R3 Ajo\nAttack B3 Ajo\nAttack G2 Ajo\n\n\tmneme: It would probably have made the pain easier. :)\n\tmneme: I probably spent a few extra turns on the kill, actually, since I could have done more or less the same kill on the turn I sacced my first r2. But it was (a bit) safer to retrench first.\n\tajo: I could drag it out one more turn, but that's all. :) Good game.\n\tmneme: yes, it was, thanks.\n\nHomeworlds Online (SDG# 26852)\nStarted: 2015.1.22, Ended: 2015.7.29\nParticipants: Gungho (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B3 G3\n\tGungho: Hello again! Enjoy the game.\n\tmneme: You too!\n\n2) Gungho: Homeworld G2 Y1 B3\n\n3) mneme: Build G1 Mneme\n\n4) Gungho: Build B1 Gungho\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Gungho: Trade B1 R1 Gungho\n\n7) mneme: Build Y1 Mneme\n\n8) Gungho: Build R1 Gungho\n\n9) mneme: Build Y2 Mneme\n\n10) Gungho: Build R2 Gungho\n\n11) mneme: Trade Y2 R2 Mneme\n\n12) Gungho: Trade R1 G1 Gungho\n\n13) mneme: Build Y2 Mneme\n\n14) Gungho: Discover G1 Gungho B3 Bflat\n\n15) mneme: Discover Y2 Mneme B2 Eris\n\n16) Gungho: Trade R2 Y2 Gungho\n\n17) mneme: Sacrifice G3 Mneme\nBuild Y2 Eris\nBuild Y3 Eris\nBuild Y3 Mneme\n\n18) Gungho: Move Y2 Gungho Bflat\n\n19) mneme: Trade Y2 G2 Eris\n\n20) Gungho: Build Y2 Bflat\n\n21) mneme: Trade Y1 G1 Mneme\n\n22) Gungho: Build G1 Bflat\n\n23) mneme: Discover Y3 Eris G3 Clotho\n\n24) Gungho: Trade G1 R1 Bflat\n\n25) mneme: Sacrifice G2 Eris\nBuild Y1 Clotho\nBuild Y3 Eris\n\n26) Gungho: Build R2 Bflat\n\tGungho: Oh man. Tough choices ahead. :)\n\n27) mneme: Trade Y3 G3 Eris\n\tmneme: Yeah. I played a lot more aggressively this time.\n\n28) Gungho: Discover R2 Bflat G2 Myohmy\n\n29) mneme: Move R2 Mneme Eris\n\n30) Gungho: Trade B3 G3 Gungho\n\n31) mneme: Sacrifice Y2 Eris\nMove G3 Eris Bflat\nMove Y3 Clotho Myohmy\n\n\tmneme: You going to finish this?\n\nHomeworlds Online (SDG# 26892)\nVariants: "Hard time"\nStarted: 2015.2.3, Ended: 2015.2.7\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) wil: Homeworld B2 Y1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\twil: So since no one challenged ttt, you or me...I thought I'd give them another chance while we play a game to determine that it will be you to challenge that top again...\n\n6) wil: Trade G1 B1 Wil\n\n7) dlwillson: Build Y1 Dlwillson\n\twil: I just can't be conventional...\n\tdlwillson: :-)\r\n\r\nI'm glad you have such confidence! I'm so busy right now, but I want to study his games. I think I've figured out my bad pattern.\n\n8) wil: Build B1 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) wil: Discover B1 Wil Y3 Y3\n\n11) dlwillson: B Y2 Field\n\n12) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n13) dlwillson: Discover Y2 Field B3 Sky\n\n14) wil: Trade B3 Y3 Wil\n\n15) dlwillson: M Y2 Sky Wil\n\n16) wil: Trade Y3 R3 Wil\n\twil: I still play by the seat of my pants...making the same mistakes often..\n\n17) dlwillson: D Y2 Wil B3 Sky\n\n18) wil: Trade R3 G3 Wil\n\tdlwillson: Actually, I think I made a mistake. Dunno, we'll see.\n\n19) dlwillson: Build G1 Dlwillson\n\n20) wil: Build B3 Wil\n\twil: b b3 wil\n\n21) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Field\nBuild Y2 Sky\nBuild Y3 Sky\n\twil: helps if I put the input info in the right place\n\n22) wil: Trade B2 R2 Y3\n\twil: and why did i not see that potential?\n\n23) dlwillson: T Y3 R3 Sky\n\n24) wil: Discover B3 Wil G3 G3\n\n25) dlwillson: B Y3 Field\n\n26) wil: Build B2 G3\n\n27) dlwillson: S Y2 Field\nM Y3 Field Sky\nM Y3 Sky Wil\n\n28) wil: Sacrifice R2 Y3\nAttack Y3 Wil\nPass\n\twil: nice\n\twil: I'm blind...I don't deserve another shot at the top! Go for it!\n\twil: but first\n\n29) dlwillson: M R3 Sky Wil\n\twil: is there a hole in your plan? \n\n30) wil: Trade B3 R3 G3\n\tdlwillson: Probably. We'll see.\n\n31) dlwillson: M R3 Wil Y3\n\twil: now shoo\n\n32) wil: Sacrifice Y3 Wil\nMove G3 Wil Y3\nMove G3 Y3 Field\nMove G3 Field Dlwillson\n\n\twil: now if you weren't so menacing with that big red attack craft I may not have seen... this (and still am not sure it is right)\r\n\n\tTeeTeeTee: Impressive!\n\tdlwillson: Very well done! :-)\n\twil: I did not see that coming... I didn't see you coming, I didn't see my way out....I was just about to resign when I thought I saw a possible window...I never saw how it could all play out..\n\nHomeworlds Online (SDG# 26916)\nVariants: "Hard time"\nStarted: 2015.2.6, Ended: 2015.2.9\nParticipants: Subhan64 (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 26911)\nVariants: "Hard time"\nStarted: 2015.2.6, Ended: 2015.3.2\nParticipants: TeeTeeTee (S), SilentTitan (N)\nWinner: TeeTeeTee\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) TeeTeeTee: Homeworld B1 Y3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) TeeTeeTee: Trade G1 B1 Teeteetee\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) TeeTeeTee: Build B1 Teeteetee\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) TeeTeeTee: Discover B1 Teeteetee G2 Alice\n\n11) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n12) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild B2 Alice\nBuild B2 Alice\nBuild B3 Teeteetee\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n14) TeeTeeTee: Trade B3 G3 Teeteetee\n\n15) SilentTitan: Sacrifice Y2 Sol\nDiscover Y1 Silenttitan B3 Soul\nDiscover Y1 Silenttitan B3 Sole\n\tTeeTeeTee: Quirky\n\n16) TeeTeeTee: Trade B2 Y2 Alice\n\n17) SilentTitan: Trade Y1 G1 Sol\n\n18) TeeTeeTee: Build B2 Teeteetee\n\n19) SilentTitan: Build Y1 Sol\n\n20) TeeTeeTee: Sacrifice Y2 Alice\nMove G3 Teeteetee Alice\nDiscover G3 Alice Y3 Bob\n\n\tTeeTeeTee: I guess it only takes one yellow ship to break the blockade. Also, I think that if you'd traded your y2 for a green ship instead of the y1, you'd have been able to get your large ship back... \r\nThanks for the game!\n\tSilentTitan: Oh... Good points. Thanks for the game. \n\nHomeworlds Online (SDG# 27000)\nVariants: "Unrated"\nStarted: 2015.2.18, Ended: 2015.3.22\nParticipants: wil (S), sounde (N)\nWinner: wil\n\n1) sounde: Homeworld Y3 B1 G3\n\twil: thanx for the rematch...i was blindsided last time...didn't see the danger...good job taking advantage of it...and then I blew it on my response!\n\tsounde: you'll get me this time :)\n\n2) wil: Homeworld B2 Y1 G3\n\twil: we'll see...and I agree with your last sentiment...the game is ALWAYS different, and always new, and watching a game reboot through catastrophes and attacks is so interesting...\n\n3) sounde: Build G1 Sounde\n\n4) wil: Build G1 Wil\n\tsounde: yeah - it's all push pull push pull\n\n5) sounde: Trade G1 Y1 Sounde\n\n6) wil: Trade G1 Y1 Wil\n\n7) sounde: Build G1 Sounde\n\n8) wil: Build Y2 Wil\n\n9) sounde: Build Y2 Sounde\n\n10) wil: Discover Y1 Wil G3 G3\n\n11) sounde: Trade Y2 R2 Sounde\n\n12) wil: B Y2 Wil\n\n13) sounde: Discover Y1 Sounde B2 Willow\n\n14) wil: T Y2 R2 Wil\n\n15) sounde: Move G1 Sounde Willow\n\n16) wil: Build Y2 Wil\n\n17) sounde: Build R1 Sounde\n\n18) wil: Discover Y2 Wil B3 B3\n\n19) sounde: Build G1 Sounde\n\n20) wil: Build R1 Wil\n\n21) sounde: Move R1 Sounde Willow\n\n22) wil: Move Y2 B3 Willow\n\n23) sounde: Sacrifice G3 Sounde\nBuild R1 Willow\nBuild R2 Sounde\nBuild R3 Sounde\n\twil: our transportation ship is looking for a fueling station...\n\tsounde: that sounds potentially catastrophic\n\n24) wil: Build R3 Wil\n\tsounde: i seem to be off on some weird side-quest... not sure what I'm aiming for\r\n\n\n25) sounde: Trade R3 G3 Sounde\n\twil: All I can think is there a trap I can't see...\n\n26) wil: Sacrifice R3 Wil\nAttack R1 Willow\nAttack R1 Willow\nAttack Y1 Willow\n\n27) sounde: Sacrifice R2 Sounde\nAttack Y1 Willow\nAttack R1 Willow\n\n28) wil: Attack R1 Willow\n\n29) sounde: Build G1 Willow\n\n30) wil: Sacrifice R2 Wil\nAttack G1 Willow\n\nAttack G1 Willow\n\n\nHomeworlds Online (SDG# 26999)\nVariants: "Hard time"\nStarted: 2015.2.18, Ended: 2015.2.28\nParticipants: Aristos (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) Aristos: Homeworld G3 B1 Y3\n\n3) fogus: Build G1 Fogus\n\n4) Aristos: Build Y1 Aristos\n\n5) fogus: Trade G1 Y1 Fogus\n\n6) Aristos: Trade Y1 B1 Aristos\n\n7) fogus: Build G1 Fogus\n\n8) Aristos: Build B2 Aristos\n\n9) fogus: Build Y1 Fogus\n\n10) Aristos: Discover B2 Aristos G2 Boing\n\n11) fogus: Build G1 Fogus\n\n12) Aristos: Build B2 Boing\n\n13) fogus: Trade Y1 R1 Fogus\n\n14) Aristos: Build B2 Aristos\n\n15) fogus: Discover G1 Fogus B3 Kismet\n\n16) Aristos: Build B3 Boing\n\n17) fogus: Build Y1 Fogus\n\n18) Aristos: Discover B1 Aristos R2 Pop\n\n19) fogus: Build G1 Kismet\n\n20) Aristos: Trade B2 Y2 Boing\n\n21) fogus: Build G2 Fogus\n\n22) Aristos: Sacrifice Y3 Aristos\nMove Y2 Boing Kismet\nMove Y2 Kismet Fogus\nDiscover B2 Boing G3 Whack\nCatastrophe Fogus Yellow\n\n23) fogus: Trade G2 Y2 Fogus\n\n24) Aristos: Build B2 Aristos\n\n25) fogus: Trade G3 R3 Fogus\n\tAristos: Sorry for the undo/redos. I don't have a physical set of these to model with, and sometimes I have to make the move and then tweak it to see the strategy I really want. I try to always undo right away after grabbing a screenshot to avoid you thinking it's really your turn. \n\n26) Aristos: Sacrifice B2 Aristos\nTrade B3 R3 Boing\nTrade B2 Y2 Whack\n\tfogus: No worries at all. I missed that in any case. :)\n\n27) fogus: Sacrifice Y2 Fogus\nMove R3 Fogus Pop\nMove R3 Pop Aristos\n\n\tAristos: Oh. I forgot you could now jump straight there. DOH. \n\tfogus: Thank you for the game. I was really sweating after you destroyed my star!\n\nHomeworlds Online (SDG# 27021)\nVariants: "Hard time"\nStarted: 2015.2.21, Ended: 2015.4.18\nParticipants: Grosseteste (S), Remneb (N)\nWinner: Grosseteste\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) Grosseteste: H B1 Y3 G3\n\n3) Remneb: Build G1 Remneb\n\n4) Grosseteste: B G1 Grosseteste\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) Grosseteste: B G1 Grosseteste\n\n7) Remneb: Build Y1 Remneb\n\n8) Grosseteste: D G1 Grosseteste B2 Lucy\n\n9) Remneb: Discover Y1 Remneb G3 Thor\n\n10) Grosseteste: T G1 B1 Grosseteste\n\n11) Remneb: Build G1 Remneb\n\n\n12) Grosseteste: D B1 Grosseteste G2 Linus\n\n13) Remneb: Move G1 Remneb Thor\n\n14) Grosseteste: B G1 Grosseteste\n\n15) Remneb: Build G2 Remneb\n\n16) Grosseteste: B G2 Lucy\n\n17) Remneb: Move G1 Thor Linus\n\n18) Grosseteste: T G1 R1 Grosseteste\n\n19) Remneb: Sacrifice G2 Remneb\nBuild Y1 Thor\nBuild Y2 Remneb\n\n20) Grosseteste: Build G1 Grosseteste\n\n21) Remneb: Build G2 Remneb\n\n22) Grosseteste: T G1 B1 Grosseteste\n\n23) Remneb: Trade G2 R2 Remneb\n\n24) Grosseteste: Sacrifice G3 Grosseteste\nBuild B2 Linus\nBuild B3 Linus\nBuild B3 Grosseteste\n\n25) Remneb: Discover Y1 Remneb B3 Roma\n\n26) Grosseteste: Trade B3 G3 Grosseteste\n\n27) Remneb: Sacrifice Y1 Thor\nMove G1 Linus Thor\n\n\n28) Grosseteste: B B3 Grosseteste\n\n29) Remneb: Build G1 Remneb\n\n30) Grosseteste: T B3 Y3 Linus\n\n31) Remneb: Move G1 Remneb Roma\n\n32) Grosseteste: B B3 Linus\n\n33) Remneb: Move G1 Roma Lucy\n\n34) Grosseteste: B G2 Grosseteste\n\n35) Remneb: Move G1 Thor Lucy\nCatastrophe Lucy G\n\n36) Grosseteste: S Y3 Linus\nD B3 Linus Y3 Rerun\nM B2 Linus Rerun\nM B1 Linus Rerun\n\n37) Remneb: Trade R2 B2 Remneb\n\n38) Grosseteste: M B3 Rerun Remneb\n\n39) Remneb: Attack B3 Remneb\n\n40) Grosseteste: M B1 Rerun Remneb\nC Remneb Blue\n\n41) Remneb: Build G1 Remneb\n\n42) Grosseteste: T B2 R2 Rerun\n\n43) Remneb: Trade Y1 B1 Roma\n\n44) Grosseteste: T B3 Y3 Grosseteste\n\n45) Remneb: Discover Y1 Thor G2 Rem\n\n46) Grosseteste: S Y3 Grosseteste\nM R2 Rerun Remneb\nM R1 Grosseteste Rem\nM R1 Rem Remneb\n\n47) Remneb: Attack R2 Remneb\n\n48) Grosseteste: S G2 Grosseteste\nB R1 Remneb\nP\nC Remneb Red\n\n\tGrosseteste: Good game, thanks!\n\tRemneb: Thanks.\n\nHomeworlds Online (SDG# 27037)\nVariants: "No undo, Hard time"\nStarted: 2015.2.23, Ended: 2015.4.5\nParticipants: hellajoey (S), Grissom (N)\nWinner: Grissom\n\n1) Grissom: Homeworld B3 R2 G3\n\n2) hellajoey: Homeworld B1 G2 R3\n\n3) Grissom: Build G1 Grissom\n\n4) hellajoey: Build R1 Hellajoey\n\n5) Grissom: Trade G1 Y1 Grissom\n\n6) hellajoey: Trade R1 Y1 Hellajoey\n\n7) Grissom: Build G1 Grissom\n\n8) hellajoey: Build R1 Hellajoey\n\n9) Grissom: Discover G1 Grissom B1 Star\n\n10) hellajoey: Discover R3 Hellajoey Y3 Goldstar\n\n11) Grissom: Build G1 Grissom\n\n12) hellajoey: Move R3 Goldstar Star\n\n13) Grissom: Trade G1 R1 Star\n\n14) hellajoey: Attack R1 Star\n\n15) Grissom: Discover G1 Grissom B1 Newblu\n\n16) hellajoey: Trade R3 G3 Star\n\n17) Grissom: Build G1 Newblu\n\n18) hellajoey: Build R1 Hellajoey\n\n19) Grissom: Trade G1 Y1 Newblu\n\n20) hellajoey: Build R2 Hellajoey\n\n21) Grissom: Build G1 Grissom\n\n22) hellajoey: Discover R2 Hellajoey Y3 Planetx\n\n23) Grissom: Build Y2 Newblu\n\n24) hellajoey: Move R2 Planetx Newblu\n\n25) Grissom: Sacrifice Y2 Newblu\nDiscover Y1 Newblu R3 Bigred\nMove G1 Newblu Bigred\n\n26) hellajoey: Sacrifice G3 Star\nBuild R2 Star\nBuild R3 Newblu\nBuild R3 Hellajoey\n\n27) Grissom: Build Y2 Bigred\n\n28) hellajoey: Trade R3 Y3 Newblu\n\n29) Grissom: Build Y2 Grissom\n\n30) hellajoey: Trade R2 G2 Star\n\n31) Grissom: Discover Y1 Grissom G1 Missinglink\n\n32) hellajoey: Build R2 Star\n\n33) Grissom: Sacrifice G3 Grissom\nBuild G2 Bigred\nBuild G3 Bigred\nBuild G3 Grissom\n\n34) hellajoey: Sacrifice Y1 Hellajoey\nMove G2 Star Bigred\nCatastrophe Bigred Green\n\n35) Grissom: Sacrifice G3 Grissom\nBuild Y1 Bigred\nBuild Y2 Missinglink\nBuild Y3 Grissom\n\n36) hellajoey: Trade R3 Y3 Hellajoey\n\n37) Grissom: Trade Y3 G3 Grissom\n\n38) hellajoey: Move Y3 Hellajoey Bigred\nCatastrophe Bigred Yellow\n\n39) Grissom: Discover Y2 Missinglink B3 Spot\n\n40) hellajoey: Trade R2 G2 Star\n\n41) Grissom: Trade Y2 R2 Spot\n\n42) hellajoey: Move Y3 Newblu Spot\n\n43) Grissom: Sacrifice Y1 Missinglink\nMove R2 Spot Hellajoey\n\n44) hellajoey: Move Y3 Spot Hellajoey\n\n45) Grissom: Build R3 Hellajoey\nCatastrophe Hellajoey Red\n\n46) hellajoey: Trade R2 G2 Newblu\n\n47) Grissom: Discover G1 Grissom Y1 Yellno\n\n48) hellajoey: Build G1 Star\n\n49) Grissom: Discover G1 Yellno B3 Blubo\n\n50) hellajoey: Build Y1 Hellajoey\n\n51) Grissom: Build Y1 Grissom\n\thellajoey: How's it going, Larry? How's eBay treating you? I heard a rumor there was some downsizing.\n\n52) hellajoey: Trade G1 Y1 Star\n\tGrissom: Hi Joey, I am doing well. eBay is great, classifieds was not effected by the down sizing. I was converted so I am enjoying officially being on the team. \n\tGrissom: How are you?\n\n53) Grissom: Discover Y1 Grissom G1 Gbot\n\n54) hellajoey: Move R1 Star Blubo\n\n55) Grissom: Discover Y1 Gbot G3 Gbot2point0\n\thellajoey: Things are pretty good. Also pretty strange. I haven't actually been doing any Android development since I left eBay and I think I need to get back into it by EOS (end of Spring ;) at the latest. I'm glad to hear things are going well for you still at eBay. I accidentally met the new Product Manager for Classifieds at a dance club a couple weeks ago (another strange story). She seemed cool. But when I heard there was downsizing (did you really lose the 3rd floor?) I was feeling bad for you guys. Nice to hear things are still good.\n\tGrissom: Ya we are on 9 now. It is different but I feel like it has been good for the team. Also they started catering breakfast every day and that has been great. \n\n56) hellajoey: Attack G1 Blubo\n\n57) Grissom: Build Y2 Gbot2point0\n\n58) hellajoey: Build G1 Blubo\n\n59) Grissom: Sacrifice Y2 Grissom\nMove Y2 Gbot2point0 Hellajoey\nMove Y1 Gbot2point0 Hellajoey\nCatastrophe Hellajoey Yellow\n\thellajoey: Oh, dang. I was thinking those were two jumps away. Good job!\n\n\nHomeworlds Online (SDG# 26967)\nStarted: 2015.2.23, Ended: 2015.3.22\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) ts52: Build G1 Ts52\n\n4) wil: Build G1 Wil\n\n5) ts52: Discover G1 Ts52 B3 Grover\n\n6) wil: Trade G1 B1 Wil\n\n7) ts52: Build G1 Grover\n\n8) wil: Build B1 Wil\n\n9) ts52: Trade G1 Y1 Grover\n\n10) wil: Discover B1 Wil G2 G2\n\n11) ts52: Build G1 Ts52\n\n12) wil: Build B2 G2\n\n\nHomeworlds Online (SDG# 26801)\nVariants: "Hard time"\nStarted: 2015.2.23, Ended: 2015.3.26\nParticipants: SilentTitan (S), wil (N)\nWinner: SilentTitan\n\n1) wil: Homeworld Y2 B1 G3\n\n2) SilentTitan: Homeworld R1 B3 G3\n\n3) wil: Build G1 Wil\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Discover G1 Wil B3 B3\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) wil: Build G1 B3\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) wil: T G1 Y1 B3\n\n10) SilentTitan: Trade Y1 R1 Silenttitan\n\n11) wil: Build Y1 B3\n\n12) SilentTitan: Discover R1 Silenttitan Y2 Sol\n\n13) wil: T Y1 R1 B3\n\n14) SilentTitan: Build Y1 Silenttitan\n\n15) wil: Build R2 B3\n\n16) SilentTitan: Discover Y1 Silenttitan G2 Soul\n\n17) wil: M R2 B3 Soul\n\n18) SilentTitan: Discover Y1 Soul G3 Sole\n\n19) wil: Build R2 B3\n\n20) SilentTitan: Build G1 Silenttitan\n\n21) wil: Build G1 Wil\n\n22) SilentTitan: Build G2 Silenttitan\n\n23) wil: Move R2 B3 Sol\n\n24) SilentTitan: Discover R1 Sol Y3 Tac\n\n25) wil: Trade G1 B1 Wil\n\n26) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\nBuild Y3 Sole\n\n27) wil: Move G1 B3 Sol\n\n28) SilentTitan: Move Y3 Sole Soul\n\n29) wil: Build G1 Wil\n\twil: you did do it...\n\n30) SilentTitan: Move Y3 Silenttitan Sol\n\tSilentTitan: I confess it was me. I did it. I killed them all.... Wait! Is this mike still on?\n\n31) wil: Move G1 Sol B3\n\n32) SilentTitan: Trade Y2 R2 Silenttitan\n\n33) wil: Build Y2 B3\n\n34) SilentTitan: Sacrifice R2 Silenttitan\nAttack R2 Sol North\nAttack R2 Soul North\n\n35) wil: Build R2 B3\n\twil: I am doing terribly this game.. I'm completely undeserving of being #1 on that ladder..\n\tSilentTitan: First of all: congrats. Second we've all felt that way. Third enjoy while you can. (Grin)\n\n36) SilentTitan: Sacrifice Y3 Sol\nMove Y3 Soul Silenttitan\nMove Y1 Silenttitan Soul\nMove G1 Silenttitan Sol\n\twil: Oh I feel I am a decent player... just not in the caliber of two short, brocolli or TTT... I'm outta their league.. would there be a real tournament, I'd have to be lucky to beat you, dlwilson an zoltar...\n\n37) wil: Trade G3 Y3 Wil\n\n38) SilentTitan: Build R3 Sol\n\tSilentTitan: Hummel.. I disagree with most of your analysis, but am too short(ha) of time to elaborate at the moment. Maybe get a chance to later this weekend.\n\n39) wil: Discover R2 B3 G2 G2\n\n40) SilentTitan: Build G3 Sol\n\n41) wil: B G3 Wil\n\tSilentTitan: Ok. I have a moment. I believe you are a very strong player. As for better or worse than the list of players you provided. That would remain to be seen. Too short is by his own admission a very poor performer live. Broccoli and TTT while they have been very powerful in a relatively short time, I've seen little evidence that they are comprehensive players. The only player on the entire ladder to win an actual medallion at a tournament (that I know of) is neme and he is currently only passively playing the ladder. Since the ladder is supposedly weighted like chess the relative strength of a player is supposed to be the value, but I believe that is only part of the story. \n\n42) SilentTitan: Sacrifice G3 Sol\nBuild G3 Sol\nBuild R3 Soul\nBuild R3 Tac\n\twil: while I appreciate your analysis... I have made terrible blunders this game and you are kicking my butt\n\n43) wil: B B1 Wil\n\n44) SilentTitan: Move R3 Soul Silenttitan\n\tSilentTitan: I hope to make no mistakes and thereby win. Nothing is certain.\n\n45) wil: Move Y1 B3 G2\n\n46) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Soul Sole\nMove Y1 Sole Wil\nMove Y1 Sole Wil\nCatastrophe Wil Yellow\n\twil: So was it you that slipped into first when i first started learning hw on the ladder like I just did? (when two short missed a challenge and slipped to 6?)\n\n47) wil: Move R1 B3 G2\n\tSilentTitan: Yes and it was my brother in law that had made the challenge,and thereby alerted me to the fact that I was in first. Hence my analysis regarding broccoli and TTT. \n\n48) SilentTitan: Move G3 Sol Wil\n\n49) wil: Sacrifice Y2 B3\nMove R1 G2 Silenttitan\nMove R2 G2 Silenttitan\nCatastrophe Silenttitan R\n\n50) SilentTitan: Sacrifice R3 Sol\nAttack G3 Wil North\nAttack B1 Wil North\nAttack B1 Wil North\n\twil: this is the end...\n\n51) wil: Build G3 B3\n\n52) SilentTitan: Sacrifice R1 Tac\nAttack G1 Wil North\n\n\twil: thx for the whoopin!\n\tSilentTitan: Anytime......\n\nHomeworlds Online (SDG# 27071)\nVariants: "Hard time"\nStarted: 2015.3.2, Ended: 2015.3.6\nParticipants: TeeTeeTee (S), wil (N)\nWinner: TeeTeeTee\n\n1) wil: Homeworld B2 Y1 G3\n\tTeeTeeTee: That was fast...\n\twil: I just finished a move in another game and the top of the page said I had a ladder opening...didnt expect this one...\n\n2) TeeTeeTee: Homeworld B1 Y3 G3\n\n3) wil: Build G1 Wil\n\tTeeTeeTee: Well, you're at spot #2 on the ladder, so I'm not sure what you were expecting... were you surprised by SilentTitan resigning?\n\twil: Yeah, somewhat... After I clicked on challenge i went back to look at what happened\n\n4) TeeTeeTee: Build G1 Teeteetee\n\n5) wil: Trade G1 B1 Wil\n\n6) TeeTeeTee: Trade G1 B1 Teeteetee\n\n7) wil: Build B2 Wil\n\twil: Also, I sure don't feel I deserve to be at 2... Silent titan often bests me...two short...like you, I've never beaten.\n\twil: Also, I sure don't feel I deserve to be at 2... Silent titan often bests me...two short...like you, I've never beaten.\n\n8) TeeTeeTee: Build B2 Teeteetee\n\n9) wil: Trade B2 R2 Wil\n\n10) TeeTeeTee: Discover B1 Teeteetee G2 Apple\n\n11) wil: Discover B1 Wil G3 G3\n\twil: That is the point right there...\n\n12) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild B2 Apple\nBuild B3 Apple\nBuild B3 Teeteetee\n\n13) wil: Build B3 G3\n\n14) TeeTeeTee: Trade B3 Y3 Apple\n\n15) wil: Trade B1 Y1 G3\n\n16) TeeTeeTee: Trade B3 G3 Teeteetee\n\n17) wil: Build Y1 G3\n\n18) TeeTeeTee: Build Y2 Apple\n\n19) wil: Move Y1 G3 Apple\n\n20) TeeTeeTee: Trade Y3 R3 Apple\n\tTeeTeeTee: Haha: good idea.\n\n21) wil: Build Y2 Apple\n\n22) TeeTeeTee: Move B1 Apple G3\n\n23) wil: Build R1 Wil\n\n24) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild B1 G3\nBuild B3 Teeteetee\nBuild B3 G3\nCatastrophe G3 Blue\n\n25) wil: S R2 Wil\nA B2 Apple\nA Y2 Apple\n\n26) TeeTeeTee: Attack B2 Apple\n\n27) wil: Sacrifice G3 Wil\nBuild Y2 Apple\nBuild Y3 G3\nBuild Y3 G3\nCatastrophe Apple Y\n\n28) TeeTeeTee: Trade B3 G3 Teeteetee\n\n29) wil: M Y3 G3 Wil\n\n30) TeeTeeTee: Sacrifice G3 Teeteetee\nBuild B1 Apple\nBuild B1 Apple\nBuild B3 Teeteetee\n\n31) wil: T Y3 G3 Wil\n\tTeeTeeTee: I think that you just traded away your constructive and offensive options for a large ship.\n\n32) TeeTeeTee: Trade B3 G3 Teeteetee\n\n33) wil: M Y3 G3 Wil\n\n34) TeeTeeTee: Build B3 Teeteetee\n\twil: me? Make a game-changing blunder against you? never.... \n\n35) wil: Trade Y3 B3 Wil\n\n36) TeeTeeTee: Trade B3 Y3 Teeteetee\n\n37) wil: Move B3 Wil G3\n\n38) TeeTeeTee: Build B3 Teeteetee\n\twil: It was a risk...but I had to keep up in the Queen game or I was gonna be swamped.\n\n39) wil: Discover B3 G3 G2 G2\n\n40) TeeTeeTee: Move B3 Teeteetee G2\n\n41) wil: Sacrifice Y1 G3\nDiscover B3 G2 Y3 Y3\n\n42) TeeTeeTee: Build B3 G2\n\n\tTeeTeeTee: Going to play this out?\n\twil: I am just so far outta your league... I make wunnerful blunders and you capitalize on them all...\n\tTeeTeeTee: I'm trying to think where it all went wrong for you, here. As I said earlier, when you built those large yellow ships, you got yourself an immediate material gain, but put yourself in a very weak position: you had no ability to trade ships or put pressure on my ships, and that let me get an effective monopoly on blue.\n\twil: I lost way back...early mistake...that move you pointed out was a last ditch effort...\n\twil: outgunned and virtual blue factory...its over...time to let someone give you some competition again...\n\tTeeTeeTee: What do you think the early mistake was? Trading for the r2 in the opening? I think that did let me get a foothold on blues, yes, but going unarmed for so long did put me at risk, and I was fortunate to get away unscathed. Or were you referring to letting me blow up your blue ship?\n\nHomeworlds Online (SDG# 26820)\nVariants: "Hard time"\nStarted: 2015.3.4, Ended: 2015.3.16\nParticipants: Takvorian (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B1 G3\n\n2) Takvorian: Homeworld R1 B2 G3\n\twil: thx for the game.\n\tTakvorian: my first ever game of Homworlds...\n\n3) wil: Build G1 Wil\n\twil: That is a near perfect opening response...do you want me to walk you through stuff I see as we go?\n\n4) Takvorian: Build G1 Takvorian\n\tTakvorian: Yes, that would be very helpful! This game is really different from all that I played before, I have no clue what to do...\r\nIf my English sounds a bit strange to you - I am from Berlin Germany, so it's not my native language.\r\nThanks for your help!\n\n5) wil: T G1 R1 Wil\n\twil: No worries .. Where chest is a land based war game this is a inter inter galactic war game the colors of your ships and stars indicate what powers you have\n\twil: typically you want to make sure you don't get isolated out of any economy / color...\n\n6) Takvorian: Trade G1 Y1 Takvorian\n\n7) wil: B R1 Wil\n\tTakvorian: ok, so I tried to diversify my colors...\n\twil: True, but to show you what happens I'll go for a red monopoly \r\n\n\n8) Takvorian: Build Y1 Takvorian\n\n9) wil: B R2 Wil\n\tTakvorian: Just discovered that my small red star, doesn't help to buil a red ship...\n\twil: Exactly.... Picture it like you need a template of the other color to retrofit / trade it was not for another \n\n10) Takvorian: Build Y1 Takvorian\n\n11) wil: Discover R2 Wil B2 B2\n\tTakvorian: Am I already doomed?\n\n12) Takvorian: Discover Y1 Takvorian R3 Cygnus-x1\n\twil: nah...well maybe...as you'll have work to figure out how to get back out of this mess...but even if you were...it will be educational to see how powerful this is, and how it plays out... yellow and blue monopolies are the worst in my opinion...but any monopoly can be disastrous.\n\n13) wil: Discover R1 Wil R2 R2\n\tTakvorian: To be honest, I have no real plan for this game yet.\r\nI suppose you need many games under your belt, before things click.\n\twil: lol...yeah I lost dozens in different ways before I saw the attacks coming...two ways to win...take over all the ships in the homeworld or blow up the stars..\n\n14) Takvorian: Build Y2 Takvorian\n\n15) wil: Sacrifice G3 Wil\nBuild R2 B2\nBuild R3 B2\nBuild R3 Wil\n\n16) Takvorian: Discover Y1 Takvorian B3 Aldebaran\n\twil: Sacrificing...by sacrificing any ship anywhere you transmit the power throughout your armada... be it attacking, building, trading, or moving...by the strength (pip number) on that sacrificed ship...hence my sacrificing a g3 allowed me three grows.\n\n17) wil: T R3 Y3 B2\n\n18) Takvorian: Build Y2 Takvorian\n\n19) wil: T R3 G3 Wil\n\tTakvorian: I feel completely clueless in this game...\n\twil: It'll take you less than 10 games... \n\n20) Takvorian: Move Y2 Takvorian Aldebaran\n\twil: It'll take you less than 10 games... Watch for catastrophe.... 4 of any color in one star system will move all of that color back to the bank... Including the star \n\n21) wil: Build R3 Wil\n\tTakvorian: I don't know, I think I'll need around 50...\r\nSo far, I have no strategy. Because I have no access to red ships, I don't have an idea how I could harm you in any way. And it seems that you can easily overtake my two systems...\r\nBut I checked the rankings and saw that you are one of the strongest Homeworld players here.\r\nPerhaps we can play an unranked teaching game hereafter where you can tell me the ideas behind your moves.\r\nThe game itself looks very promising to me, if I could only wrap my head around...\n\n22) Takvorian: Trade G3 R3 Takvorian\n\n23) wil: T R2 G2 B2\n\n24) Takvorian: Trade Y2 R2 Aldebaran\n\n25) wil: B Y2 B2\n\n26) Takvorian: Trade Y1 G1 Takvorian\n\twil: you did good on grabbing that r3to stop the monopoly. but now you have no greens can't grow.\n\n27) wil: D Y2 B2 B3 B3\n\tTakvorian: So I have green again, but still don't know what to do ;)\n\twil: Always look at how to end the game and build the ships required to do it\n\n28) Takvorian: Move G1 Takvorian Cygnus-x1\n\twil: It is about moving a force in range and of the numbers needed \n\twil: It is about moving a force in range and of the numbers needed \n\twil: It is about moving a force in range and of the numbers needed \n\n29) wil: Build G1 B2\n\n30) Takvorian: Discover Y1 Cygnus-x1 Y2 Ertrus\n\n31) wil: S G2 B2\nB Y1 B2\nB Y3 B3\n\twil: There is a building stage, an arms race, there are only a limited number of pieces in the bank. That morphs into a positioning stage, protecting and taking territory in space as you are working toward their homeworld. Skirmishes of attacks and catastrophes. Here is where it beats the crap out of chess... you don't destroy pieces if you can help it...when you attack you take over the ship...these are multitrillion dollar intragalactic crafts which carry upto thousands of people from one star system to another...you surely don't want to destroy that... and then the way catastrophied or sacrificed pieces can come back into play... the universe can reboot over and over as this happens. until someone goes in for the kill...building a doomsday machine, or taking advantage of a bluebird.\n\n32) Takvorian: Move R2 Aldebaran Ertrus\n\n33) wil: Move R2 B2 Aldebaran\n\tTakvorian: That is really a lot of stuff to consider, and I even don't know what doomsday machine and bluebird means ;)\r\nI can't remember that I was ever so clueless, the depth of this game must be similar to Go.\n\n34) Takvorian: Sacrifice G1 Cygnus-x1\nBuild R3 Ertrus\n\n35) wil: Sacrifice Y3 B3\nMove R1 R2 Aldebaran\nMove R1 Aldebaran Takvorian\nMove R2 Aldebaran Takvorian\nCatastrophe Takvorian R\n\n36) Takvorian: Trade Y2 G2 Takvorian\n\twil: You'll get the handle of it... It is a great game for having set up in the house...with a move coin going back and forth from side to side and everytime you or you wife moves as you walk by you see it...and then make your move and move the coin... I've played numerous games with roomates this way. (as for definitions) http://www.looneylabs.com/rules/homeworlds \n\twil: four colors, three sizes of pieces... so much variation... yes like GO...simple rules, tons of strategy\n\tTakvorian: great idea setting up a game at home. Unfortunately we have some cats and because of that game positions would probably change while absent from the table...;)\n\n37) wil: Move R3 Wil Takvorian\n\twil: cat moves are part of the game..\n\n38) Takvorian: Move R2 Ertrus B3\n\tTakvorian: That was quite a hit!\r\nI think my days are counted (I don't know if this is also an English proverb).\n\n39) wil: Attack G2 Takvorian\n\twil: You got it! We call it "My days are numbered"\n\twil: You are in trouble...but you wanna watch the end play out.\n\twil: I said that before looking at the board...yeah...you needed to sacrifice the y2 for two moves to get your big red gun back home to protect the remaining star... it is over..\n\n\tTakvorian: Thanks for the instructive game. Perhaps I learned a few things...\r\nBut comparing to the alphabet, now I know A, B and perhaps C, but all the other letters are well behind my horizon;)\n\twil: imagine how long chess took... in less than ten games you'll be beating some folks\\\n\nHomeworlds Online (SDG# 27112)\nVariants: "Hard time"\nStarted: 2015.3.4, Ended: 2015.3.20\nParticipants: Takvorian (S), foksieloy (N)\nWinner: Takvorian\n\n1) foksieloy: Homeworld B1 G3 Y3\n\n2) Takvorian: Homeworld R1 B2 G3\n\n3) foksieloy: Build Y1 Foksieloy\n\tTakvorian: Have fun!\n\tfoksieloy: Hey, good luck, have fun!\n\n4) Takvorian: Build G1 Takvorian\n\n5) foksieloy: Trade Y1 G1 Foksieloy\n\n6) Takvorian: Trade G1 Y1 Takvorian\n\n\nHomeworlds Online (SDG# 27038)\nVariants: "Hard time"\nStarted: 2015.3.8, Ended: 2015.3.16\nParticipants: DiEvAl (S), SilentTitan (N)\nWinner: DiEvAl\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tDiEvAl: Hi\n\n2) DiEvAl: Homeworld R2 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) DiEvAl: Build G1 Dieval\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) DiEvAl: Trade G1 Y1 Dieval\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) DiEvAl: Build G1 Dieval\n\n\nHomeworlds Online (SDG# 27111)\nVariants: "Hard time"\nStarted: 2015.3.19, Ended: 2015.4.9\nParticipants: Takvorian (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B1 G3\n\twil: welcome back!\n\n2) Takvorian: Homeworld B2 R1 G3\n\tTakvorian: Hello again! Hopefully I will perform a bit better than in our last game.\r\nBy the way, I entered the Homeworlds ladder and already won my first game. After two moves my opponent was timed out...\r\nProbably he had to think too long because of my clever moves ;)\n\n3) wil: Build G1 Wil\n\twil: lol.... now ya got me scared... played snake oil the other night... have you seen that game? too much fun!\n\twil: But ya done goofed up on this opening...taking a b1 when I already did leaves one in the stash...I trade my g1 for a b1 and you are aced outta blues from the get...if you want to retract and pick adifferent start...\n\n4) Takvorian: Build G1 Takvorian\n\tTakvorian: Thanks for the hint. You see, I am still as bad as before. I just didn't think that the first move is already so important...\n\twil: Yes, you'll develop your favorite opening moves (mine is a form of banker...but banker seems to be a slight advantage(not confirmed due to better players simply choosing it)) So as an intragalactic warlord training a young starship captain is is only appropriate that I not take banker...(I should start with fortress as I soooo dislike it and should be practicing) and yes..you can lose the game in your first move (making a bad choice of a homeworld and ship)\n\n5) wil: Trade G1 R1 Wil\n\twil: I do see an exploit here though....red.. while convention has it that having red in your homeworld is advantageous (protection) I also find it tough when I can move and you can't...should be interesting. (and when I say you can lose on an opening move, you can still win, but you have to find mistakes to take advantage of...a bad opehing move and you have an uphill battle until you do)\n\n6) Takvorian: Trade G1 R1 Takvorian\n\tTakvorian: Thanks for your comments, trainer. These are really helpful for me, because this game is still a mystery for me.\n\tTakvorian: What abaout choosing the same sizes as your opponent and making the universe smaller this way. Do you recommend this?\n\twil: we hate that...a short universe changes soooo much. I don't know if anyone does it intentionally....usually a mistake (be worth considering though)\n\n7) wil: Build R2 Wil\n\n8) Takvorian: Build R2 Takvorian\n\tTakvorian: in our last game I took a y here and got in severe trouble without any r, so let's see what will happen now...\n\n9) wil: Build R2 Wil\n\n10) Takvorian: Trade R1 Y1 Takvorian\n\tTakvorian: Just saw that I didn't reply to you mentioning Snake Oil...\r\nNo, I don't own or played it yet. It sounds like a light Party game. Would you recommend it?\n\n11) wil: Trade R1 B1 Wil\n\n12) Takvorian: Build Y1 Takvorian\n\n13) wil: Build B1 Wil\n\n14) Takvorian: Build Y1 Takvorian\n\twil: party game yes....silly as all get out...who knows about shelflife...\r\n\n\n15) wil: Discover B1 Wil G2 G2\n\n16) Takvorian: Build G1 Takvorian\n\n17) wil: B B2 G2\n\n18) Takvorian: Discover Y1 Takvorian B3 Tb3\n\n19) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B3 Wil\nBuild R1 Wil\n\n20) Takvorian: Move R2 Takvorian Tb3\n\n21) wil: Trade B3 Y3 Wil\n\n22) Takvorian: Discover G1 Takvorian Y3 Tak-2\n\n23) wil: Trade B2 Y2 G2\n\tTakvorian: This game is still twisting my brain, I feel completely overwhelmed...\n\twil: you are a gamer...in games and in the world...the more experience often has the advantage... I'm not giving you any breaks..I'm using all the tricks so you can see them coming...\n\n24) Takvorian: Trade Y1 R1 Takvorian\n\n25) wil: Discover R2 Wil G2 Gee2\n\twil: Okee dokee...figuring out attacks is a tough one sometimes...everything is a move...so you have to have the jump. I can right now attack your r2 you moved in. I will sacrifice an r1 in my homeworld and attack your r2 (turn it around to be mine) should I proceed or would yoiu like to back up?\n\tTakvorian: omg, I really suck...\r\nSo I did take back my stupid move.\n\n26) Takvorian: Build G1 Takvorian\n\tTakvorian: I suppose this is not much better though\n\n27) wil: Trade R1 G1 Wil\n\twil: it is better than losing your only attack ship... Now i hope you know what I am upto next..\n\twil: lol...oh crap...I didn't really look!! You did what I was gonna do next...before I mentioned it...sheesh...nice move!\n\tTakvorian: You expect too much from me, I don't know what you plan.\n\tTakvorian: Have to think about it...\n\twil: you took it perfect...invested a green 1 in a y3 poifection!\r\n\n\n28) Takvorian: Build G2 Tak-2\n\n29) wil: Build G3 Wil\n\n30) Takvorian: Build G3 Takvorian\n\n31) wil: Sacrifice Y3 Wil\nMove G1 Wil G2\nMove G1 G2 Tb3\nMove G1 Tb3 Takvorian\nCatastrophe Takvorian G\n\n32) Takvorian: Move G2 Tak-2 Takvorian\n\n33) wil: Build B2 G2\n\n34) Takvorian: Move R1 Takvorian Tak-2\n\n35) wil: Move B2 G2 Tak-2\n\twil: gotta watch out for overpopulation...\n\n36) Takvorian: Build G1 Takvorian\n\tTakvorian: did'nt see it coming. This game is still so confusing for me...\n\twil: believe me...I know the feeling... I had to see somethings two or three times before I was able to catch them\n\n37) wil: Sacrifice R2 Gee2\nAttack R1 Tak-2\nAttack G1 Tak-2\n\n38) Takvorian: Move G1 Takvorian Tb3\n\n39) wil: Build B3 Wil\n\n40) Takvorian: Build G1 Takvorian\n\n41) wil: Build B3 G2\n\n\tTakvorian: So I resign here to concentrate on our teaching game (not that I have any idea how to continue here ;))\n\twil: it was over when you lost your queen\n\nHomeworlds Online (SDG# 27163)\nVariants: "Hard time"\nStarted: 2015.3.21, Ended: 2015.3.30\nParticipants: SilentTitan (S), OnePageWars (N)\nWinner: SilentTitan\n\n1) OnePageWars: Homeworld G1 B2 Y3\n\n2) SilentTitan: Homeworld R1 B3 G3\n\tOnePageWars: gl hf!\n\n3) OnePageWars: Build Y1 Onepagewars\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) OnePageWars: Trade Y3 G3 Onepagewars\n\n6) SilentTitan: Trade G3 Y3 Silenttitan\n\n7) OnePageWars: Build Y1 Onepagewars\n\n8) SilentTitan: Discover Y3 Silenttitan G2 Sol\n\n9) OnePageWars: Discover Y1 Onepagewars B3 Rossum\n\n10) SilentTitan: Build G1 Silenttitan\n\n11) OnePageWars: Move G3 Onepagewars Rossum\n\n12) SilentTitan: Trade G1 R1 Silenttitan\n\n13) OnePageWars: Trade Y1 R1 Onepagewars\n\n14) SilentTitan: Build R2 Silenttitan\n\n15) OnePageWars: Build R2 Onepagewars\n\n16) SilentTitan: Trade R2 Y2 Silenttitan\n\n17) OnePageWars: Trade R1 Y1 Onepagewars\n\n18) SilentTitan: Sacrifice Y2 Silenttitan\nMove Y3 Sol Rossum\nMove Y3 Rossum Onepagewars\n\n19) OnePageWars: Move G3 Rossum Onepagewars\n\n20) SilentTitan: Sacrifice R1 Silenttitan\nAttack R2 Onepagewars North\n\n\tOnePageWars: Thanks for the game.\n\tSilentTitan: Thank you. \n\nHomeworlds Online (SDG# 27282)\nVariants: "Hard time"\nStarted: 2015.3.21, Ended: 2015.4.1\nParticipants: dlwillson (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) dlwillson: H B3 R1 G3\n\twil: If I recall correctly when I first started learning this game you slipped into this very place under similar circumstances.\n\n3) wil: Build G1 Wil\n\tdlwillson: I don't think I've ever hit #1. I think Silent Titan has.\n\tdlwillson: Have a lot of fun.\n\n4) dlwillson: B G1 Dlwillson\n\twil: hmmm...well then you got a chance now!!!\n\n5) wil: Trade G1 B1 Wil\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) wil: Build B2 Wil\n\tdlwillson: Good luck to both of us!\n\n8) dlwillson: B B2 Dlwillson\n\twil: no such thing as a bad homeworlds game... bad plays... but no bad games\n\n9) wil: Discover B1 Wil G3 G3\n\n10) dlwillson: Trade B1 Y1 Dlwillson\n\n11) wil: B G1 Wil\n\n12) dlwillson: Build Y1 Dlwillson\n\n13) wil: T B2 Y2 Wil\n\n14) dlwillson: D Y1 Dlwillson G2 Field\n\n15) wil: Trade G1 R1 Wil\n\n16) dlwillson: B Y1 Field\n\n17) wil: Move Y2 Wil G3\n\n18) dlwillson: Discover Y1 Field B3 Lake\n\n19) wil: Build R1 Wil\n\n20) dlwillson: D Y1 Field Y3 Sol\n\twil: the best man is winning...\n\tSilentTitan: I was at number one for almost 1 year. I believe I had 11 defends and then dlwillson challenged me and we were Neck and Neck when I was suddenly let go from my job. I then timed out on the match and you were number one until... Not sure. I think tooshort beat you to reclaim.\n\twil: lol...we'll see if I can get one defend!\n\n21) wil: Discover R1 Wil Y3 Y3\n\tdlwillson: :-)\n\n22) dlwillson: B G1 Dlwillson\n\n23) wil: Build R2 Wil\n\n24) dlwillson: D B2 Dlwillson G2 Field\n\tdlwillson: I'd say the odds are good!\n\n25) wil: M R2 Wil Sol\n\n26) dlwillson: M Y1 Sol Field\n\n27) wil: S G3 Wil\nB R2 Wil\nB R2 Y3\nB R3 Wil\n\n28) dlwillson: S G3 Dlwillson\nB Y2 Dlwillson\nB Y3 Dlwillson\nB B1 Field\n\n29) wil: Trade R3 G3 Wil\n\n30) dlwillson: T Y3 R3 Dlwillson\n\n31) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 Sol\nBuild Y3 G3\n\n32) dlwillson: Discover B1 Field G1 Forest\n\n33) wil: Move R2 Sol Field\n\n34) dlwillson: Sacrifice Y1 Field\nDiscover B2 Field Y1 Sunny\n\n35) wil: Discover Y2 G3 B2 B2\n\n36) dlwillson: D B2 Sunny G3 Vale\n\twil: It is a little scary and a little different defending the top of the ladder...\n\tdlwillson: You're doing a fine job. Did you know I can see up your skirt from here?\n\twil: oops...bad day for me to have gone commando\n\n37) wil: S Y3 G3\nM R1 Y3 Field\nM R1 Field Dlwillson\nM R2 Field Dlwillson\nC Dlwillson R\n\n38) dlwillson: T Y1 R1 Dlwillson\n\n39) wil: Move R3 Wil Dlwillson\n\n40) dlwillson: B R1 Dlwillson\n\n41) wil: Sacrifice R3 Sol\nAttack R1 Dlwillson\nAttack R1 Dlwillson\nAttack G1 Dlwillson\n\n42) dlwillson: T Y2 G2 Dlwillson\n\twil: who are all these 'spectators' and why don't I see them playing homeworlds?\n\tdlwillson: Dunno. It's been that way forever.\n\n43) wil: Attack G2 Dlwillson\n\twil: That could have easily blown up in my face, I barely stayed one step ahead of disaster there..\n\tdlwillson: Well played, Wil!\r\n\r\nCongrats on your first defend. I'll give the others a week or so before I attack again.\n\twil: thanx and anytime.... we'll see who steps upto the plate.\n\n\nHomeworlds Online (SDG# 27287)\nVariants: "Hard time"\nStarted: 2015.3.22, Ended: 2015.5.12\nParticipants: fogus (S), Takvorian (N)\nWinner: Takvorian\n\n1) Takvorian: Homeworld B1 R2 G3\n\n2) fogus: Homeworld B1 Y2 G3\n\tTakvorian: have fun!\n\n3) Takvorian: Build G1 Takvorian\n\n4) fogus: Build G1 Fogus\n\n5) Takvorian: Trade G1 B1 Takvorian\n\n6) fogus: Trade G1 Y1 Fogus\n\n7) Takvorian: Build G1 Takvorian\n\n8) fogus: Build G1 Fogus\n\n9) Takvorian: Trade G1 Y1 Takvorian\n\tfogus: thanks! you too\n\n10) fogus: Build G1 Fogus\n\tTakvorian: I like Homeworlds, but I really have no clue in this game. It knots my brain...\n\n11) Takvorian: Build B2 Takvorian\n\n12) fogus: Discover G1 Fogus B3 Scan\n\n13) Takvorian: Trade B2 R2 Takvorian\n\n14) fogus: Trade Y1 R1 Fogus\n\n15) Takvorian: Move R2 Takvorian Scan\n\n16) fogus: Sacrifice G1 Scan\nBuild R1 Fogus\n\n17) Takvorian: Build B2 Takvorian\n\n18) fogus: Trade G1 Y1 Fogus\n\n19) Takvorian: Trade B2 Y2 Takvorian\n\n20) fogus: Build G1 Fogus\n\n21) Takvorian: Build G1 Takvorian\n\n22) fogus: Discover G1 Fogus Y3 Blip\n\tfogus: I've gotten myself in a pickle\n\n23) Takvorian: Trade Y2 R2 Takvorian\n\n24) fogus: Build G1 Fogus\n\n25) Takvorian: Move R2 Takvorian Blip\n\n26) fogus: Discover G1 Blip Y2 Flip\n\n27) Takvorian: Move G1 Takvorian Blip\n\n28) fogus: Build G2 Flip\n\n29) Takvorian: Build G2 Blip\n\n30) fogus: Discover R1 Fogus G3 Chip\n\n31) Takvorian: Build B2 Takvorian\n\n32) fogus: Trade R1 Y1 Fogus\n\n33) Takvorian: Build Y2 Takvorian\n\n34) fogus: Move Y1 Fogus Chip\n\n35) Takvorian: Build G2 Takvorian\n\n36) fogus: Build Y3 Chip\n\n37) Takvorian: Sacrifice Y2 Takvorian\nMove G2 Blip Fogus\nMove G1 Blip Fogus\nCatastrophe Fogus G\n\n\nHomeworlds Online (SDG# 27274)\nVariants: "Hard time"\nStarted: 2015.3.24, Ended: 2015.4.15\nParticipants: Laurie_Menke (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hey, Wil! You wanna give this another shot and see if I can remember to check into SDG on a regular basis? :)\n\twil: lol\r\n\n\n2) Laurie_Menke: Homeworld B2 R1 G3\n\n3) wil: Build G1 Wil\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) wil: Trade G1 B1 Wil\n\n6) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n7) wil: Build B2 Wil\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) wil: Trade B1 R1 Wil\n\twil: looks like I just may defend my number 1 spot at least once!!\n\twil: of course that is me counting chickens...\n\n10) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tLaurie_Menke: I have complete faith in you and have had from the beginning! Congrats in advance! :)\n\n11) wil: Build R2 Wil\n\n12) Laurie_Menke: Build R2 Laurie_menke\n\n13) wil: Discover R2 Wil B2 B2\n\twil: I held onto my rung!!\n\n14) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Wooooo-hooooo!!!!! Congrats... I knew you could do it! :)\n\n15) wil: Sacrifice G3 Wil\nBuild R2 B2\nBuild R3 B2\nBuild R3 Wil\n\n16) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n17) wil: Trade R2 Y2 B2\n\tLaurie_Menke: Grrr.... ;)\n\n18) Laurie_Menke: Discover R2 Laurie_menke Y3 Yellow\n\twil: I think the two intermediary goals are similar cousins even...the race to the queens, it can be by acing out singles or by isolation. \n\tLaurie_Menke: True. And you are far too good at all of the above (or below)!\n\n19) wil: Move R3 B2 Yellow\n\n20) Laurie_Menke: Discover R2 Yellow G2 Green\n\n21) wil: Trade R3 G3 Wil\n\n22) Laurie_Menke: Discover B1 Laurie_menke G3 Greentoo\n\n23) wil: Sacrifice G3 Wil\nBuild R2 Yellow\nBuild R3 B2\nBuild R3 Wil\n\n24) Laurie_Menke: Move R1 Laurie_menke Yellow\n\tLaurie_Menke: Well, at least I accurately predicted what you would do. Didn't have any good way to stop it, but saw it coming. ;)\n\n25) wil: Move R3 Yellow Green\n\n26) Laurie_Menke: Build B1 Greentoo\n\twil: I'm not gonna swat that little mosquito...I am just gonna go sight seeing...\n\tLaurie_Menke: Yeah, yeah.... was worth a shot... ;)\n\n27) wil: Move R3 B2 Greentoo\n\n28) Laurie_Menke: Build Y1 Laurie_menke\n\twil: You gonna make me another star?\n\twil: I mean I appreciate all the stars you've created for me so far...they are very nice...\n\tLaurie_Menke: grumblegrumblegrumble\n\n29) wil: Sacrifice R2 B2\nAttack B1 Greentoo\nAttack B1 Greentoo\n\n\twil: I have never played John Cooper...but John Cooper has changed my game play dramatically. Andy came back from the JoCo cruise last year saying he got to play a number of games with John...and that John has a very aggressive game play....so I began attacking stars that others created... it is obnoxious, but it works... \n\tLaurie_Menke: It works for you! I tried that on Andy and it cost me my current game, I think. :/ I just need a lot more practice...\n\tLaurie_Menke: Hmmm... I think I should concede this game. Congratulations, and Happy Birthday!!! (Don't say I never gave you anything.) ;) ;) ;)\n\twil: Andy is such a tricky player... he's seen it all..and comes up with moves that I baffle me at times when I think I have him cornered.\n\twil: Musta been ts52's birthday too...\n\tLaurie_Menke: LOL... musta been... ;) And yes, he is tricky!\n\tLaurie_Menke: Actually, I guess it was mine... did you see how that turned out? :)\n\twil: Yeah, I am surprised neither of you saw that...it was sittin there and he moved and you moved and he moved... I was bouncin off the walls!\n\tLaurie_Menke: So weird. I don't know why I didn't see it, either!\n\twil: That was why I said it must've been his birthday... \r\n\n\tLaurie_Menke: Gotcha. :)\n\nHomeworlds Online (SDG# 27281)\nVariants: "Hard time"\nStarted: 2015.3.24, Ended: 2015.4.27\nParticipants: Laurie_Menke (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B3 G3\n\tLaurie_Menke: Hi, SilentTitan! Here's to a good game! :)\n\tSilentTitan: Hello, and a good game to you as well\n\n2) Laurie_Menke: Homeworld B1 R2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) Laurie_Menke: Build R1 Laurie_menke\n\n9) SilentTitan: Discover Y1 Silenttitan G2 Sol\n\n10) Laurie_Menke: Trade R1 Y1 Laurie_menke\n\n11) SilentTitan: Build Y2 Sol\n\n12) Laurie_Menke: Build R1 Laurie_menke\n\n13) SilentTitan: Discover Y2 Sol B3 Soul\n\n14) Laurie_Menke: Build Y2 Laurie_menke\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Soul\nBuild Y3 Silenttitan\n\n16) Laurie_Menke: Move Y2 Laurie_menke Soul\n\n17) SilentTitan: Trade Y3 R3 Soul\n\n18) Laurie_Menke: Move Y2 Soul Sol\n\n19) SilentTitan: Move R3 Soul Laurie_menke\nCatastrophe Laurie_menke Red\n\n20) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y3 Laurie_menke\nBuild Y3 Sol\nPass\nCatastrophe Sol Y\n\n21) SilentTitan: Trade Y3 G3 Silenttitan\n\tLaurie_Menke: Ack! Why didn't I see that??? ::sigh::\n\n22) Laurie_Menke: Discover Y1 Laurie_menke G2 Green\n\tLaurie_Menke: Good game! Congratulations and thanks for the fun! :)\n\n23) SilentTitan: Build Y1 Silenttitan\n\n24) Laurie_Menke: Build Y2 Green\n\tLaurie_Menke: Oops! I was thinking you had me last turn, but I miscounted. You were one pip short.\n\n25) SilentTitan: Trade Y2 B2 Soul\n\n26) Laurie_Menke: Move Y1 Green Laurie_menke\n\n27) SilentTitan: Sacrifice Y1 Silenttitan\nMove B2 Soul Laurie_menke\n\n28) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\n29) SilentTitan: Sacrifice G3 Silenttitan\nBuild B1 Laurie_menke\nBuild B1 Laurie_menke\nBuild Y1 Silenttitan\nCatastrophe Laurie_menke Blue\n\n\tSilentTitan: Thanks for the game\n\tLaurie_Menke: Nice job! Thanks for the fun and congratulations! :)\n\nHomeworlds Online (SDG# 27290)\nStarted: 2015.3.24, Ended: 2015.4.16\nParticipants: ts52 (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld B3 R1 G3\n\tLaurie_Menke: Hi, ts52! Have fun! :)\n\n2) ts52: Homeworld Y1 B2 G3\n\tts52: Thanks! You too!\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) ts52: Build G1 Ts52\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) ts52: Build G1 Ts52\n\n7) Laurie_Menke: Build Y1 Laurie_menke\n\n8) ts52: Discover G1 Ts52 B3 Gonzo_the_great\n\n9) Laurie_Menke: Build Y2 Laurie_menke\n\n10) ts52: Build G1 Ts52\n\tLaurie_Menke: LOL! I like the name!\n\n11) Laurie_Menke: Discover Y2 Laurie_menke G2 Green\n\n12) ts52: Build G2 Gonzo_the_great\n\tLaurie_Menke: Sorry I keep undoing stupid moves. :/\n\n13) Laurie_Menke: Build G2 Laurie_menke\n\n14) ts52: Build G3 Gonzo_the_great\n\n15) Laurie_Menke: Sacrifice Y2 Green\nDiscover G2 Laurie_menke Y2 Yellow\nMove G2 Yellow Gonzo_the_great\nCatastrophe Gonzo_the_great G\n\n16) ts52: Discover G1 Ts52 B3 Gonzo\n\n17) Laurie_Menke: Build Y2 Laurie_menke\n\n18) ts52: Build G1 Ts52\n\n19) Laurie_Menke: Build G2 Laurie_menke\n\n20) ts52: Build G2 Gonzo\n\n21) Laurie_Menke: Discover G2 Laurie_menke Y2 Yellow\n\n22) ts52: Trade G2 Y2 Gonzo\n\n23) Laurie_Menke: Build G2 Laurie_menke\n\n24) ts52: Build Y3 Gonzo\n\tts52: Sorry about the undo, was typing on autopilot. \n\tLaurie_Menke: No worries!\n\n25) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove G2 Yellow Gonzo\nMove G2 Gonzo Ts52\nCatastrophe Ts52 G\n\n\tLaurie_Menke: Good game, ts52! Thanks for the fun! :)\n\tts52: Thanks for the game! Well played.\n\nHomeworlds Online (SDG# 27311)\nStarted: 2015.3.24, Ended: 2015.4.30\nParticipants: hellajoey (S), JaredL (N)\nWinner: hellajoey\n\n1) JaredL: Homeworld B2 Y1 G3\n\n2) hellajoey: Homeworld R1 B2 G3\n\n3) JaredL: Build G1 Jaredl\n\n4) hellajoey: Build G1 Hellajoey\n\n5) JaredL: Discover G1 Jaredl B3 Blue3\n\n6) hellajoey: Trade G1 Y1 Hellajoey\n\n7) JaredL: Build G1 Blue3\n\n8) hellajoey: Build Y1 Hellajoey\n\n9) JaredL: Build G1 Jaredl\n\n10) hellajoey: Build Y2 Hellajoey\n\n11) JaredL: Build G2 Blue3\n\n12) hellajoey: Build G2 Hellajoey\n\n13) JaredL: Trade G2 Y2 Blue3\n\n14) hellajoey: Discover Y1 Hellajoey G3 Grun\n\n15) JaredL: Move G1 Blue3 Hellajoey\n\n16) hellajoey: Trade G3 R3 Hellajoey\n\n17) JaredL: Trade G1 R1 Jaredl\n\n18) hellajoey: Move R3 Hellajoey Blue3\n\n19) JaredL: Move Y2 Blue3 Hellajoey\n\n20) hellajoey: Attack Y2 Hellajoey\n\n21) JaredL: Sacrifice G1 Blue3\nBuild G1 Hellajoey\n\n22) hellajoey: Move G2 Hellajoey Blue3\n\n23) JaredL: Build G1 Jaredl\n\n24) hellajoey: Attack G1 Hellajoey\n\n25) JaredL: Sacrifice G3 Jaredl\nBuild G2 Hellajoey\nBuild G2 Hellajoey\nBuild G3 Jaredl\nCatastrophe Hellajoey G\n\n26) hellajoey: Build Y2 Grun\n\n27) JaredL: Trade G3 Y3 Jaredl\n\n28) hellajoey: Sacrifice Y2 Hellajoey\nMove Y2 Grun Jaredl\nMove Y1 Grun Jaredl\nCatastrophe Jaredl Yellow\n\n29) JaredL: Build G1 Jaredl\n\n30) hellajoey: Sacrifice Y2 Hellajoey\nMove G2 Blue3 Jaredl\nMove R3 Blue3 Jaredl\n\n31) JaredL: Build R1 Jaredl\n\n32) hellajoey: Sacrifice R3 Jaredl\nAttack R1 Jaredl\nAttack R1 Jaredl\nAttack G1 Jaredl\n\n33) JaredL: Build G1 Jaredl\n\n34) hellajoey: Pass\nCatastrophe Jaredl Green\n\n\nHomeworlds Online (SDG# 27308)\nVariants: "Hard time"\nStarted: 2015.3.30, Ended: 2015.4.10\nParticipants: wil (S), Aghmarck (N)\nWinner: wil\n\n1) Aghmarck: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\twil: welcome and thx for the game! You new around these parts? would this be anderson?\n\n3) Aghmarck: Build G1 Aghmarck\n\tAghmarck: Hi! Yes, I'm kind of new, but I'm not sure who Mr. Anderson is though, reminds me of a movie somehow...\n\n4) wil: Build G1 Wil\n\twil: hee hee...just someone who said he was going to join and challenge me... if you have any questions about the game, don't hesitate to ask.\n\twil: hee hee...just someone who said he was going to join and challenge me... if you have any questions about the game, don't hesitate to ask.\n\n5) Aghmarck: Discover G1 Aghmarck B3 Storm\n\n6) wil: Trade G1 B1 Wil\n\n7) Aghmarck: Build G1 Aghmarck\n\n8) wil: Build B1 Wil\n\n9) Aghmarck: Trade G1 Y1 Aghmarck\n\n10) wil: Discover B1 Wil G2 G2\n\n11) Aghmarck: Build Y1 Aghmarck\n\n12) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 G2\nBuild B3 Wil\n\n13) Aghmarck: Move Y1 Aghmarck Storm\n\n14) wil: Trade B2 Y2 G2\n\n15) Aghmarck: Build Y2 Storm\n\n16) wil: B Y2 G2\n\n17) Aghmarck: Trade Y2 B2 Storm\n\n18) wil: Trade Y2 R2 G2\n\n19) Aghmarck: Trade B2 R2 Storm\n\n20) wil: Build B2 G2\n\n21) Aghmarck: Build Y2 Storm\n\n22) wil: Discover B2 G2 Y3 Y3\n\n23) Aghmarck: Discover Y1 Aghmarck B3 Sea\n\n24) wil: Trade B3 G3 Wil\n\n25) Aghmarck: Build G1 Aghmarck\n\n26) wil: Build B3 G2\n\n27) Aghmarck: Trade G3 Y3 Aghmarck\n\n28) wil: Discover Y2 G2 G3 G3\n\n29) Aghmarck: Build Y2 Aghmarck\n\n30) wil: Move Y2 G3 Aghmarck\nCatastrophe Aghmarck Y\n\n\tAghmarck: How did I miss that? :)\n\twil: I don't know... I moved so you couldn't have it...then you grew it...I was looking all over for a trap! Thanx for the game!\n\nHomeworlds Online (SDG# 27350)\nVariants: "Hard time"\nStarted: 2015.3.30, Ended: 2015.4.7\nParticipants: Aghmarck (S), foksieloy (N)\nWinner: Aghmarck\n\n1) foksieloy: Homeworld G1 B3 Y3\n\n2) Aghmarck: Homeworld Y1 B2 G3\n\tfoksieloy: Hi, good luck, have fun!\n\n3) foksieloy: Build Y1 Foksieloy\n\n4) Aghmarck: Build G1 Aghmarck\n\n5) foksieloy: Trade Y1 G1 Foksieloy\n\n6) Aghmarck: Build G2 Aghmarck\n\n7) foksieloy: Build G2 Foksieloy\n\n8) Aghmarck: Trade G1 Y1 Aghmarck\n\n9) foksieloy: Trade G2 B2 Foksieloy\n\n10) Aghmarck: Discover G2 Aghmarck B3 Storm\n\n11) foksieloy: Build Y1 Foksieloy\n\tAghmarck: Hi! I'm new around here and had missed your message. good luck and have fun!\n\n12) Aghmarck: Build Y2 Aghmarck\n\tfoksieloy: No problem, if you need assistance, give me a shout.\n\n13) foksieloy: Discover Y1 Foksieloy G2 Tibbers\n\n14) Aghmarck: Trade Y1 B1 Aghmarck\n\n15) foksieloy: Build B1 Foksieloy\n\n16) Aghmarck: B G1 Aghmarck\n\n17) foksieloy: Move B1 Foksieloy Tibbers\n\n18) Aghmarck: Sacrifice G3 Aghmarck\nBuild G2 Aghmarck\nBuild G3 Aghmarck\nBuild G3 Storm\n\n19) foksieloy: Build Y1 Tibbers\n\n20) Aghmarck: Trade G3 Y3 Storm\n\n21) foksieloy: Build Y2 Tibbers\n\n22) Aghmarck: Discover G2 Aghmarck B3 Sea\n\n23) foksieloy: Trade Y1 R1 Tibbers\n\n24) Aghmarck: Sacrifice G3 Aghmarck\nBuild G3 Aghmarck\nBuild G3 Sea\nBuild G3 Storm\n\n25) foksieloy: Discover Y1 Tibbers Y3 Annie\n\n26) Aghmarck: Trade G3 R3 Sea\n\n27) foksieloy: Sacrifice G1 Foksieloy\nBuild Y1 Annie\n\n28) Aghmarck: Trade G3 R3 Aghmarck\n\n29) foksieloy: Sacrifice Y2 Tibbers\nMove Y1 Annie Aghmarck\nMove Y1 Annie Aghmarck\nCatastrophe Aghmarck Y\n\n30) Aghmarck: Sacrifice Y3 Storm\nMove R3 Aghmarck Foksieloy\nMove R3 Sea Tibbers\nMove R3 Tibbers Foksieloy\n\n\tfoksieloy: A light miscalculation :D\r\n\r\nsacrifice y3 foksieloy\r\nmove b2 foksieloy Aghmarck\r\nmove b1 Tibbers sea\r\nmove b1 sea Aghmarck\r\ncatastrophe Aghmarck blue\r\n\r\nYou may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn.\r\n\r\nGood game!\n\tAghmarck: Yes, that was pretty close.\r\n\r\nGood game!\n\nHomeworlds Online (SDG# 27309)\nVariants: "Hard time"\nStarted: 2015.3.30, Ended: 2015.4.8\nParticipants: SilentTitan (S), OnePageWars (N)\nWinner: SilentTitan\n\n1) OnePageWars: Homeworld G1 B2 Y3\n\tOnePageWars: hi gl hf!\n\n2) SilentTitan: Homeworld R2 B3 G3\n\n3) OnePageWars: Build Y1 Onepagewars\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) OnePageWars: Build Y1 Onepagewars\n\tSilentTitan: One more time into the breach.....\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) OnePageWars: Discover Y1 Onepagewars G3 Tvtropes\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) OnePageWars: Build Y2 Tvtropes\n\n10) SilentTitan: Discover Y1 Silenttitan G1 Sol\n\n11) OnePageWars: Trade Y1 B1 Onepagewars\n\n12) SilentTitan: Build Y1 Sol\n\n13) OnePageWars: Build B1 Onepagewars\n\n14) SilentTitan: Discover Y1 Sol B3 Soul\n\n15) OnePageWars: Move B1 Onepagewars Tvtropes\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Soul\nBuild Y3 Silenttitan\n\n17) OnePageWars: Trade Y2 R2 Tvtropes\n\tOnePageWars: Oh no, I'm dead I'm dead, I'm alive, but I'm dead!\r\nI'm dead, deceased, I'm dead alack the day --\r\nAlack the day, I'm dead, I'm dead, I'm dead.\n\n18) SilentTitan: Trade Y3 G3 Silenttitan\n\tOnePageWars: Do you recognize the two (almost) quotes?\n\tSilentTitan: I do not ... If you said "Aliens one, Humans nothing". That one I would have recognized \n\n19) OnePageWars: Trade Y3 G3 Onepagewars\n\tOnePageWars: The first one (line 1) is paraphrased from 'The Incredibles', the second (lines 2 and 3) is paraphrased from 'Romeo and Juliet'.\n\n20) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Soul\nBuild Y3 Silenttitan\nBuild Y3 Silenttitan\n\tSilentTitan: Yeah, I'd have got the first if you'd had written, "we're dead", Dash says it when they resurface after diving to avoid a large piece of the plane they just bailed from.\n\n\tOnePageWars: But not the second if I had said: "She's dead, deaceased, she's dead, alack the day, // Alack the day, she's dead, she's dead, she's dead!"?\n\tOnePageWars: thanks for the game.\n\nHomeworlds Online (SDG# 27349)\nVariants: "Hard time"\nStarted: 2015.4.2, Ended: 2015.4.6\nParticipants: wil (S), OnePageWars (N)\nWinner: wil\n\n1) OnePageWars: Homeworld B2 G1 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\tOnePageWars: gl hf!\n\twil: Thanx for the game!!\n\n3) OnePageWars: Build Y1 Onepagewars\n\n4) wil: Build G1 Wil\n\n5) OnePageWars: Discover Y1 Onepagewars G3 Table_tennis\n\n6) wil: Build G1 Wil\n\n7) OnePageWars: Build Y1 Onepagewars\n\n8) wil: Discover G1 Wil B2 B2\n\n9) OnePageWars: Trade Y1 B1 Onepagewars\n\n10) wil: Build G2 Wil\n\n11) OnePageWars: Build Y1 Onepagewars\n\n12) wil: Discover G2 Wil Y2 Y2\n\n13) OnePageWars: Trade Y1 R1 Onepagewars\n\n14) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild G2 B2\nBuild G3 Wil\n\n15) OnePageWars: Build Y1 Onepagewars\n\n16) wil: Trade G2 Y2 B2\n\n17) OnePageWars: Build R1 Onepagewars\n\n18) wil: S G3 Wil\nB G2 B2\nB G3 B2\nB G3 Wil\n\n19) OnePageWars: Move R1 Onepagewars Table_tennis\n\n20) wil: T G3 Y3 B2\n\n21) OnePageWars: Build R1 Table_tennis\n\n22) wil: Trade Y2 R2 B2\n\n23) OnePageWars: Build R2 Onepagewars\n\n24) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 B2\nBuild R2 B2\n\n\tOnePageWars: good game, thanks for the game.\n\twil: Yes there wasn't enough room in this galaxy for both of us!\n\nHomeworlds Online (SDG# 27401)\nVariants: "Hard time"\nStarted: 2015.4.8, Ended: 2015.5.27\nParticipants: Aghmarck (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R2 B3 G3\n\n2) Aghmarck: Homeworld G1 B2 Y3\n\tMandrel: Have a good game.\n\tAghmarck: Hi, good luck and have fun!\n\n3) Mandrel: Build G1 Mandrel\n\n4) Aghmarck: Build Y1 Aghmarck\n\n5) Mandrel: Build G1 Mandrel\n\n6) Aghmarck: Trade Y1 B1 Aghmarck\n\n7) Mandrel: Trade G1 Y1 Mandrel\n\n8) Aghmarck: Build Y1 Aghmarck\n\n9) Mandrel: Discover G1 Mandrel B1 Anomaly\n\tAghmarck: Hi Mandrel, are you still there? Cheers!\n\n10) Aghmarck: Build B1 Aghmarck\n\tMandrel: Apologies, hectic few days, should be able to keep up a bit better now.\n\tAghmarck: That's ok. I just wanted to make sure you were not going to run out of time without realizing it.\n\tMandrel: Cheers, wouldn't have been the first time that's happened sadly!\n\n11) Mandrel: Build G1 Mandrel\n\n12) Aghmarck: Discover B1 Aghmarck G3 Treant\n\n13) Mandrel: Build G2 Anomaly\n\n14) Aghmarck: Build B2 Treant\n\n15) Mandrel: Build G2 Anomaly\n\n16) Aghmarck: T B2 Y2 Treant\n\n17) Mandrel: Trade G2 B2 Anomaly\n\n18) Aghmarck: Build B2 Treant\n\n19) Mandrel: Trade G2 Y2 Anomaly\n\n20) Aghmarck: Trade B2 G2 Treant\n\n21) Mandrel: Build G2 Anomaly\n\n22) Aghmarck: Build B2 Treant\n\n23) Mandrel: Trade G2 R2 Anomaly\n\n24) Aghmarck: Sacrifice Y2 Treant\nMove B1 Treant Anomaly\nMove B2 Treant Anomaly\nCatastrophe Anomaly Blue\n\n25) Mandrel: Discover G1 Mandrel B1 Anomaly2\n\n26) Aghmarck: Build B1 Aghmarck\n\n27) Mandrel: B G1 Mandrel\n\n28) Aghmarck: B B2 Aghmarck\n\n29) Mandrel: B G2 Anomaly2\nCatastrophe Aghmarck Blue\n\n\tAghmarck: whoops :)\n\nHomeworlds Online (SDG# 27414)\nVariants: "Unrated"\nStarted: 2015.4.9, Ended: 2015.5.6\nParticipants: Takvorian (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\tTakvorian: Hello again,\r\nthanks for setting up a teaching game! I am very interested to know what you are thinking when making moves in Homeworlds.\n\n2) Takvorian: Homeworld R1 B2 G3\n\twil: I've tried other scenarios but have always come back to green ships...I don't wanna give up a factory possibility..it just isn't worth it. Now for you...since the bank is limited you need to insure you don't give me a monopoly opportunity immediately (no small yellow!!)\n\tTakvorian: So far, I had always chosen a homeworld with a red star, so I will do it again here. I remember not to choose the same color of your small star from our other game.\n\n3) wil: Build G1 Wil\n\n4) Takvorian: Build G1 Takvorian\n\twil: red in homeworld is good..you never have to worry about protection in your homeworld...I like yellow..it allows me to get out early and take to the stars...but differing openings require differing responses.\n\n5) wil: D G1 Wil Y2 Y2\n\twil: i didn't mean to back up..I was being clumsy\n\twil: Begin with the end in mind... I look at three things...how can I get rid of the other homeworld stars...how can I get rid of the ships....how can I get to Queens first.\n\n6) Takvorian: Trade G1 R1 Takvorian\n\tTakvorian: So the first move is always easy ;)\r\nIt seems to me that as in many strategy games there is a bit of a first player advantage, right?\r\nAnd the only possibility to get rid of homeworld stars is to trigger a catastrophe, or?\n\twil: Yes and yes\n\n7) wil: B G1 Y2\n\twil: The advantage of yellow in my homeworld... Being able to get right out\n\n8) Takvorian: Build R1 Takvorian\n\tTakvorian: I don't know, was my move o.k.?\n\tTakvorian: Or should I go for yellow?\n\twil: either are good choices... there are only two smalls. yellow however only has two yellows..possibly a faster way to get to queens and lets you get outta your homeworld...you already have a red so you are limited on how many of those you can grow before you have to get a yellow to move out... \n\twil: red should force me to get a red soon...yellow doesn't...but yellow looks to me to be the better path...although both will force me off greens soon.\n\tTakvorian: ok, so because my red isn't a big blunder, I'll keep it and see what will happen...\r\n\n\twil: You tell me if you wanna back up and play differently or want to leave it alone and tell me if you want to play it out and see how it works out.\n\n9) wil: Build G1 Wil\n\tTakvorian: As I see it, my options are very limited at this point. I will grab the last small red...\n\n10) Takvorian: Build G2 Takvorian\n\twil: That is right...at this point...as I said,I wold have headed for yellow...so you could get out and about...but this isn't bad..I have to build a green, lets you get into drones, you usually don't want the last small of anything, lets somebody else get into mediums...unless you control the market...which you currently do...\n\n11) wil: Discover G1 Y2 B3 B3\n\tTakvorian: My Homeworld looks a bit crowded with reds at the moment but as you do not have a red yet I think it is not too dangerous...\r\nI will build a g2 now and perhaps trade it later on into a y2\n\n12) Takvorian: Trade G2 Y2 Takvorian\n\n13) wil: Build G2 B3\n\twil: Exactly and I made a mistake my not doing the move I just made last time....that way I would have got the g2 when you built a g1\n\n14) Takvorian: Build Y1 Takvorian\n\tTakvorian: Is this trade reasonable now?\n\n15) wil: Trade G2 Y2 B3\n\n16) Takvorian: Discover R1 Takvorian B3 Tb3\n\tTakvorian: Now the point has come, where I really have no idea how to proceed...\n\n17) wil: Build G2 Wil\n\twil: There are two major stall points in the game...when you run out of smalls or mediums and taking the last one will allow the other guy to jump up a notch on ya and get more powerful ships... (one goal...get to 3s first) the other is when we've completely exhausted the bank...there is nothing else left to take...now what do I do... In both cases it must always be, begin with the end in mind...you need to put 3 blues and 3 yellows within shooting distance of my homeworld to create a doomsday machine and end the game (and have a way to get them in) Or you need to get enough 3s within shooting distance and enough big red guns to out power me in my homeworld...the entire game is about amassing enough ships in the right positions to be able to accomplish an end game condition.\r\n\n\twil: Along the way, you try to take over stars that the other has built, take over ships the other has created, and catastrophe at times to reboot the galaxy... It is a game of chess, of positioning and control of the galaxy...in a balanced way so as the other guy cannot do the same to you.\n\twil: Along the way, you try to take over stars that the other has built, take over ships the other has created, and catastrophe at times to reboot the galaxy... It is a game of chess, of positioning and control of the galaxy...in a balanced way so as the other guy cannot do the same to you.\n\twil: I am looking at, I build another g2, trade for r2, have the y2 to send it in if you don't clear out your reds (forces you to move some out)... I took the Y2 so if you took a Y1 I would be able to get a Y3...if you move Ys out so you can get two to my one...I'll create an investment and leave a y2 back in the bank just to cause trouble maybe...If I were you I'd be moving out and creating more stars, more bases of operation in the galaxy to prepare to launch attacks..\n\tTakvorian: Your thoughts are very helpful for me, although they are still at a much higher level than mine...;)\r\nI see that my homeworld is a bit crowded with reds, so I will move one out, but even then I don't know if it is better to build a yellow or blue system. I opt for blue. What do you think?\n\n18) Takvorian: Move Y2 Takvorian B3\n\n19) wil: Discover Y2 B3 G2 G2\n\twil: a. we may get another commentator! TeeTeeTee one of the best on the board (if not the best) has asked to pipe in...his thoughts and analysis are always top notch. But tell me why you should n't build a yellow...\n\tTeeTeeTee: Hi Takvorian,\r\n\r\nI had written some comments, but you've both already moved in the time it took me to write them! Serves me right for trying to say too much, I guess...\r\n\r\nI would probably have done something different on the last turn... I think that your greatest advantage at this point in the game is that you have red ships and Wil does not. At present, if you started moving ships into Wil's worlds, then he has to run, or lose the ships. (Remember that you can attack a ship by sacrificing a red ship in a different system, and that the attacking ship doesn't need to be red: it only needs to be the same size or larger than the attacked ship.)\r\n\r\n(On the question of blue or yellow world: I'd have opted for discovering a green world. In the early game, the primary aim is to get a large ship before your opponent, or to prevent your opponent from getting one. Wil's route to large ships is through building greens, and staking out a g3 star stops him from going a large ship ahead.)\r\n\r\nHope this helps!\n\n20) Takvorian: Build R2 Takvorian\n\tTakvorian: Sorry for my late answer wasn't online very often during the last days.\r\n\n\tTakvorian: Hi TeeTeeTee,\r\n\r\nThanks for taking the time to comment on our game. Very helpful ideas! There is so much to discover in this game...\n\twil: no worries.. So nice move, I like the agressiveness... you've got a red, I haven't any, nice move to head in and attack... do I mitigate it by moving on? or by growing yellows? \n\n21) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild G3 B3\nBuild G3 Wil\n\n22) Takvorian: Build Y1 Takvorian\n\tTakvorian: is building another red reasonable?\r\n\n\twil: Its not terrible...but at every move there is a theoretical 'best move' your concern is the inability to factory...mine is I have no red...so while I can factory, I can also be in great trouble... I think my thing is to factory and get another big 3...since I have a y2 I'll be able to keep you at bay from getting a factory... I'll wait a day...\n\twil: note: not that I ever know what the theoretical best move is... the game takes such wonderful twists and turns..\n\tTakvorian: I simply have no other ides what to do...\r\n\n\n23) wil: Build Y3 G2\n\twil: moving a r1 to a new G3 star would have kept me from getting the new 3....but I've still plenty of work to do... trading out my 3 is not easy as you can grow it...(although I could trade it for Y3...and that would keep you at bay)\n\n24) Takvorian: Move Y1 Takvorian Tb3\n\twil: b y3 g2\n\n25) wil: Trade G3 R3 B3\n\n\tTakvorian: Wil, thanks for the patience you had with me, but I will resign now. Seems that Homeworlds is not really my cup of tea...\n\twil: Oh well... take care... hope to see you around.\n\twil: http://new.wunderland.com/2015/05/05/the-i-beat-andy-medal/\r\n\n\nHomeworlds Online (SDG# 27413)\nStarted: 2015.4.10, Ended: 2015.4.13\nParticipants: anirtak (S), ringebri (N)\nWinner: ringebri\n\n1) ringebri: Homeworld B3 G2 Y3\n\n\tringebri: I've played this before but was bad at it. John got to be pretty good and even joined the ladder.\n\tanirtak: ugh - i can't figure out the commands. i need to look at the rules when i have more time :( - maybe tomorrow\n\tringebri: That's ok. I never quite got it, myself. Though it is one of the most popular games on this system.\n\nHomeworlds Online (SDG# 26789)\nVariants: "Unrated, Hard time"\nStarted: 2015.4.14, Ended: 2015.7.23\nParticipants: agentofchaos (S), wil (W), DiEvAl (N), OnePageWars (E)\nWinner: wil\n\n1) DiEvAl: Homeworld R1 B2 G3\n\n2) OnePageWars: Homeworld Y3 B1 G3\n\n3) agentofchaos: Homeworld R2 B3 G3\n\n4) wil: Homeworld B3 R1 G3\n\n5) DiEvAl: Build G1 Dieval\n\n6) OnePageWars: Build G1 Onepagewars\n\n7) agentofchaos: Build G1 Agentofchaos\n\tOnePageWars: gl hf!\n\n8) wil: Build G1 Wil\n\n9) DiEvAl: Trade G1 Y1 Dieval\n\n10) OnePageWars: Trade G1 Y1 Onepagewars\n\n11) agentofchaos: Trade G1 Y1 Agentofchaos\n\n12) wil: Trade G1 Y1 Wil\n\n13) DiEvAl: Build G1 Dieval\n\n14) OnePageWars: Build G1 Onepagewars\n\n15) agentofchaos: Build G1 Agentofchaos\n\n16) wil: Build G1 Wil\n\twil: b g1 wil\n\n17) DiEvAl: Trade G1 R1 Dieval\n\n18) OnePageWars: Trade G1 R1 Onepagewars\n\n19) agentofchaos: Trade G1 R1 Agentofchaos\n\n20) wil: Build Y1 Wil\n\n21) DiEvAl: Build R2 Dieval\n\n22) OnePageWars: Build R2 Onepagewars\n\n23) agentofchaos: Build R2 Agentofchaos\n\n24) wil: Build Y2 Wil\n\n25) DiEvAl: Build Y2 Dieval\n\n26) OnePageWars: Discover R2 Onepagewars G2 Tom_m_riddle\n\n27) agentofchaos: Build Y2 Agentofchaos\n\n28) wil: Trade Y2 R2 Wil\n\n29) DiEvAl: Discover G3 Dieval R3 Draco_l_malfoy\n\n30) OnePageWars: Build R3 Tom_m_riddle\n\n31) agentofchaos: Discover R1 Agentofchaos G1 Kakrafoon\n\n32) wil: Discover R2 Wil G2 Serenity\n\tDiEvAl: Let's keep the theme. ;-)\n\tOnePageWars: I agree. :)\n\n33) DiEvAl: Move Y1 Dieval Draco_l_malfoy\n\tDiEvAl: We should attack anyone who disagrees!\n\tOnePageWars: let's. :)\n\twil: theme? what theme?\n\tOnePageWars: That of Harry Potter. :) Or Harry Potter Characters. Or Harry Potter Evil Characters. I'm not quite sure which.\n\n34) OnePageWars: Build R3 Onepagewars\n\n35) agentofchaos: Build R3 Kakrafoon\n\n36) wil: Build R3 Serenity\n\n37) DiEvAl: Build G1 Draco_l_malfoy\n\tOnePageWars: Just to keep a record,\r\n\r\nTom_M_Riddle and Draco_L_Malfoy are referencing Harry Potter.\r\n\r\nKakrafoon is referencing The Hitchhiker's Guide to the Galaxy.\r\n\r\nSerenity is referencing Serenity (Joss Whedon, 2005)\n\tOnePageWars: Is that correct on the last one? Or is it just a serene planet?\n\twil: Firefly...\n\tOnePageWars: Keep Flying.\n\n38) OnePageWars: Build G1 Onepagewars\n\n39) agentofchaos: Build Y2 Agentofchaos\n\tagentofchaos: A diverse bunch of franchises here!\n\n40) wil: Move Y1 Wil Serenity\n\n41) DiEvAl: Move G1 Draco_l_malfoy Dieval\n\n42) OnePageWars: Trade G1 B1 Onepagewars\n\n43) agentofchaos: Move Y1 Agentofchaos Kakrafoon\n\n44) wil: Build Y2 Serenity\n\n45) DiEvAl: Trade R1 B1 Dieval\n\twil: bumpin....\n\n46) OnePageWars: Move B1 Onepagewars Tom_m_riddle\n\n47) agentofchaos: Trade Y2 B2 Agentofchaos\n\n48) wil: Discover Y2 Serenity G3 Xuan-wu\n\n49) DiEvAl: Move B1 Dieval Draco_l_malfoy\n\n50) OnePageWars: Build B1 Tom_m_riddle\n\n51) agentofchaos: Build Y2 Kakrafoon\n\n52) wil: Sacrifice G3 Wil\nBuild Y2 Serenity\nBuild Y3 Xuan-wu\nBuild Y3 Wil\n\n53) DiEvAl: Sacrifice G3 Draco_l_malfoy\nBuild R1 Dieval\nBuild Y3 Draco_l_malfoy\nBuild Y3 Dieval\n\tOnePageWars: Is xuan-wu a firefly reference to Niska's inspiration?\n\n54) OnePageWars: Build G1 Onepagewars\n\twil: in the firefly system...\n\twil: I need more binary Homeworld games...I am not in any right now....\n\twil: rated or non rated, competitive or training/discussion games...all are welcome.\n\twil: Is this about to go the way of the vast majority of multiplayer games??\n\tOnePageWars: stagnation?\n\twil: historically (in my experience) someone drops out... and yeah it could be due to just the time between the moves when there are so many people...if each move takes a few days it is a couple of weeks before you move again and someone forgets...\n\twil: historically (in my experience) someone drops out... and yeah it could be due to just the time between the moves when there are so many people...if each move takes a few days it is a couple of weeks before you move again and someone forgets...\n\n55) agentofchaos: Move B2 Agentofchaos Kakrafoon\n\tagentofchaos: Sorry for holding up the game, been a bit distracted and busy lately\n\n56) wil: Trade Y1 B1 Wil\n\n57) DiEvAl: Trade Y3 G3 Draco_l_malfoy\n\n58) OnePageWars: Trade B1 Y1 Tom_m_riddle\n\n59) agentofchaos: Build Y3 Agentofchaos\n\n60) wil: Move B1 Wil Serenity\n\n61) DiEvAl: Build G1 Draco_l_malfoy\n\n62) OnePageWars: Discover G3 Onepagewars B2 River_tam\n\n63) agentofchaos: Build B1 Kakrafoon\n\n64) wil: Build G2 Wil\n\n65) DiEvAl: Sacrifice Y2 Dieval\nDiscover G3 Draco_l_malfoy G2 Readtheinstruct\nMove R1 Dieval Draco_l_malfoy\n\n66) OnePageWars: Build G2 River_tam\n\n67) agentofchaos: Build G3 Agentofchaos\n\n68) wil: Build Y2 Wil\n\tOnePageWars: He looks better in red. No, can't go back, don't want to go back. They took Christmas away. Doesn't matter: they're here. Two by two hands of blue, two by two hands of blue. \n\n69) DiEvAl: Sacrifice G3 Readtheinstruct\nBuild G2 Dieval\nBuild G3 Draco_l_malfoy\nBuild B2 Draco_l_malfoy\n\n70) OnePageWars: Build B2 Tom_m_riddle\n\n71) wil: Build B3 Serenity\n\n72) DiEvAl: Move G3 Draco_l_malfoy Kakrafoon\n\tDiEvAl: Just Read The Instructions is a reference both to Culture series and to Elon Musk's pet project.\n\n73) OnePageWars: Discover B2 Tom_m_riddle B3 Simon_tam\n\tOnePageWars: River_Tam and my comment are both references to Firefly.\n\n74) wil: Sacrifice Y2 Serenity\nMove B3 Serenity Kakrafoon\nMove B3 Kakrafoon Agentofchaos\n\n75) DiEvAl: Sacrifice G2 Dieval\nBuild G2 Dieval\nBuild Y2 Draco_l_malfoy\n\n76) OnePageWars: Move R3 Tom_m_riddle Xuan-wu\n\n77) wil: Sacrifice R2 Serenity\nAttack R3E Xuan-wu\nAttack Y3S Agentofchaos\n\n78) DiEvAl: Sacrifice R2 Dieval\nAttack R3S Kakrafoon\nAttack Y2S Kakrafoon\n\n79) OnePageWars: Build R2 Tom_m_riddle\n\n80) wil: Build B3 Serenity\n\n81) DiEvAl: Attack R1S Kakrafoon\n\n82) OnePageWars: Build R2 Onepagewars\n\n83) wil: Attack G3S Agentofchaos\n\n84) DiEvAl: Sacrifice Y2 Kakrafoon\nMove R1 Kakrafoon Serenity\nMove R1 Serenity Onepagewars\nCatastrophe Onepagewars R\n\n85) OnePageWars: Build Y2 Tom_m_riddle\n\n86) wil: Attack R2S Agentofchaos\n\n87) DiEvAl: Attack Y1S Kakrafoon\n\n88) OnePageWars: Move R2 Tom_m_riddle Onepagewars\n\n89) wil: Move R3 Serenity Draco_l_malfoy\n\n90) DiEvAl: Sacrifice Y2 Draco_l_malfoy\nDiscover Y1 Draco_l_malfoy R2 Readtheinstruct\nMove G1 Draco_l_malfoy Readtheinstruct\n\n91) OnePageWars: Move Y1 Tom_m_riddle Simon_tam\n\n92) wil: Build Y2 Serenity\n\n93) DiEvAl: Trade B1 R1 Draco_l_malfoy\nCatastrophe Draco_l_malfoy R\n\tOnePageWars: I get the strangest feeling this is not so good for me.\n\n94) OnePageWars: Build R1 Tom_m_riddle\n\n95) wil: Move G2 Wil Readtheinstruct\n\n96) DiEvAl: Sacrifice Y3 Dieval\nMove Y1 Kakrafoon Readtheinstruct\nMove Y1 Readtheinstruct Onepagewars\nMove Y1 Readtheinstruct Onepagewars\nCatastrophe Onepagewars Y\n\n97) OnePageWars: Build R1 Onepagewars\n\n98) wil: Attack G1N Readtheinstruct\n\tDiEvAl: Is the timer broken for anyone else?\n\n99) DiEvAl: Build R1 Kakrafoon\n\twil: the way this multiplayer game works (as far as I can tell) when someone drops out and it becomes my turn...it says that MY time ran out...\n\tOnePageWars: yeah; same here. scared me for a few turns. :)\n\n100) OnePageWars: Trade G3 R3 River_tam\n\n101) wil: Build G3 Wil\n\n102) DiEvAl: Attack B2S Kakrafoon\n\tDiEvAl: Poor Draco :(\n\tDiEvAl: Does anyone want to write an eulogy for him?\n\tOnePageWars: Nah; noone likes Draco. :)\n\n103) OnePageWars: Build R3 River_tam\n\n104) wil: Sacrifice Y2 Wil\nMove G1 Readtheinstruct Kakrafoon\nMove G2 Readtheinstruct Kakrafoon\nCatastrophe Kakrafoon G\n\tDiEvAl: What about Astoria Greengrass?\n\n105) DiEvAl: Trade G1 B1 Dieval\n\n106) OnePageWars: Trade G2 Y2 River_tam\n\n107) wil: Sacrifice Y3 Agentofchaos\nMove B3 Agentofchaos Onepagewars\nMove B1 Serenity Onepagewars\nMove B3 Serenity Onepagewars\nCatastrophe Onepagewars B\n\n108) wil: Move Y3 Xuan-wu Dieval\n\n\tDiEvAl: nope...just wil\n\twil: lol...you are back early... and I was just about to send a cruise ship full of tourists to visit your fine home...\n\twil: wierd...I have to move? It shows you, OPW still in the mix?\n\twil: Well how about that...our tourist ship got to dock anyway...\n\tOnePageWars: good game, all!\n\twil: It was my first 4 person game to make it to the end...and I guess we didn't really since agent of chaos got kicked out..\n\nHomeworlds Online (SDG# 26822)\nVariants: "Unrated, Hard time"\nStarted: 2015.4.14, Ended: 2015.6.2\nParticipants: agentofchaos (S), wil (N), DiEvAl (E)\nWinner: wil\n\n1) wil: Homeworld Y3 B2 G3\n\n2) DiEvAl: Homeworld R1 B2 G3\n\twil: While I feel binary is the only way to go... and these multiplayer hw games often end up with someone forgetting about it.... I got a jones for HW...so I'll play!\n\n3) agentofchaos: Homeworld R1 B3 G3\n\tDiEvAl: Why is "E" at the bottom?\n\twil: N is at the bottom for me...the default always puts 'you' at the bottom so to provide you a perspective of sitting at the table.\n\n4) wil: Build G1 Wil\n\tagentofchaos: I'll try not to forget about the game! Have fun all :-)\n\twil: uh oh...I may have a bit of an advantage with you two with short universes... I'll wait a bit to see if you wanna change your homeworld AOC\n\n5) DiEvAl: Build G1 Dieval\n\tagentofchaos: OK thanks, for some reason I was sure my system was different from East\n\twil: no worries....\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) wil: Trade G1 R1 Wil\n\n8) DiEvAl: Trade G1 Y1 Dieval\n\n9) agentofchaos: Trade G1 R1 Agentofchaos\n\n10) wil: Build R2 Wil\n\n11) DiEvAl: Build Y1 Dieval\n\n12) agentofchaos: Build R2 Agentofchaos\n\n13) wil: Discover R2 Wil G1 G1\n\n14) DiEvAl: Trade Y1 G1 Dieval\n\n15) agentofchaos: Trade R2 Y2 Agentofchaos\n\n16) wil: Build R2 Wil\n\n17) DiEvAl: Trade G3 R3 Dieval\n\n18) agentofchaos: Build Y1 Agentofchaos\n\n19) wil: Trade R2 B2 Wil\n\n20) DiEvAl: Discover R3 Dieval Y3 Y3\n\n21) agentofchaos: Discover Y2 Agentofchaos G2 Morgostar\n\n22) wil: Build R2 G1\n\n23) DiEvAl: Move R3 Y3 Morgostar\n\n24) agentofchaos: Discover Y2 Morgostar G3 Hadehome\n\n25) wil: Build R2 Wil\n\n26) DiEvAl: Build G1 Dieval\n\n27) agentofchaos: Build Y1 Agentofchaos\n\n28) wil: Trade R2 Y2 Wil\n\n29) DiEvAl: Build Y1 Dieval\n\n30) agentofchaos: Build Y2 Agentofchaos\n\n31) wil: Move Y2 Wil G1\n\n32) DiEvAl: Build R2 Morgostar\n\n33) agentofchaos: Discover R1 Agentofchaos G2 Elysiadrome\n\n34) wil: Discover R2 G1 G3 G3\n\n35) DiEvAl: Sacrifice Y1 Dieval\nMove R3 Morgostar G3\n\n36) agentofchaos: Build R2 Elysiadrome\n\n37) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 G1\nBuild R3 G3\n\n38) DiEvAl: Attack R3N G3\n\n39) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R1 Elysiadrome G3\nMove Y2 Hadehome Dieval\nCatastrophe G3 R\n\n40) wil: Move R3 G1 Elysiadrome\n\n41) DiEvAl: Build Y1 Dieval\n\tDiEvAl: Thanks for that ship\n\twil: You do realize the dire straights you are in...yes? No large ship in your homeworld, anyone can waltz in and pick off those pawns one by one... and I gave up that toxic planet G3 there is an infection spreading due to overpopulation and either of us will be soon saving the galaxy by eliminating it and all its inhabitants... star ship captains code requires me to at least give you a heads up.. you now have a chance to save yourself...\n\n42) agentofchaos: Sacrifice R2 Elysiadrome\nAttack Y1E Dieval\nAttack Y1E Dieval\n\n43) wil: Build Y2 G1\n\n44) DiEvAl: Trade G1 R1 Dieval\n\n45) agentofchaos: Attack R1E Dieval\n\n46) wil: Discover Y2 G1 B2 B2\n\n47) DiEvAl: Attack R1S Dieval\n\n48) agentofchaos: Discover Y1 Dieval G3 Jartravartid\n\n49) wil: Trade R3 G3 Wil\n\n50) DiEvAl: Build R2 Dieval\n\n51) agentofchaos: Attack R2E Dieval\n\n52) wil: Sacrifice G3 Wil\nBuild R2 Elysiadrome\nBuild R3 Wil\nBuild R3 Wil\n\n53) DiEvAl: Build R3 Dieval\n\n54) agentofchaos: Attack G1E Dieval\nCatastrophe Dieval R\n\n55) wil: Trade R3 Y3 Wil\n\n56) agentofchaos: Trade Y2 R2 Dieval\n\n57) wil: Build Y2 G1\n\n58) agentofchaos: Build Y2 Dieval\n\n59) wil: Move Y2 G1 Jartravartid\n\n60) agentofchaos: Build Y3 Jartravartid\n\n61) wil: Build Y3 G1\n\n62) agentofchaos: Build G1 Agentofchaos\n\n63) wil: Move Y2 G1 Jartravartid\nCatastrophe Jartravartid Y\n\n64) wil: Move Y3 G1 Morgostar\n\n\nHomeworlds Online (SDG# 27359)\nVariants: "Hard time"\nStarted: 2015.4.14, Ended: 2015.4.26\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y2 G3\n\n2) SilentTitan: Homeworld G1 R3 B3\n\tSilentTitan: Lol. Are u bored?\n\n3) wil: Build G1 Wil\n\twil: Why do you ask that? I just like playing the game. Dang interesting opening!\n\n4) SilentTitan: Build B1 Silenttitan\n\twil: Interesting opening, but I possibly problematic with the small g?\n\n5) wil: Build G1 Wil\n\n6) SilentTitan: Trade B1 Y1 Silenttitan\n\n7) wil: Discover G1 Wil B1 B1\n\n8) SilentTitan: Build B1 Silenttitan\n\n9) wil: Build G2 Wil\n\n10) SilentTitan: Trade B3 G3 Silenttitan\n\n11) wil: Trade G2 Y2 Wil\n\n12) SilentTitan: Discover G3 Silenttitan Y2 Sol\n\n13) wil: Build G2 B1\n\twil: I just had someone do that to me the other day...interesting...\n\n14) SilentTitan: Sacrifice G3 Sol\nBuild B1 Silenttitan\nBuild B2 Silenttitan\nBuild Y1 Silenttitan\n\twil: the opening I tried the other day... yellow/red homeworld...against all rules...but I need to try again...\n\n15) wil: Build G2 Wil\n\n\twil: dang..\r\n\n\tSilentTitan: So sorry. Life has gotten very hectic again.\n\nHomeworlds Online (SDG# 27376)\nVariants: "Hard time"\nStarted: 2015.4.15, Ended: 2015.5.6\nParticipants: wil (S), Grosseteste (N)\nWinner: wil\n\n1) Grosseteste: H Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\twil: thx for the game! \n\n3) Grosseteste: B G1 Grosseteste\n\n4) wil: Build G1 Wil\n\n5) Grosseteste: D G1 Grosseteste B3 Lucy\n\n6) wil: Trade G1 B1 Wil\n\n7) Grosseteste: B G1 Grosseteste\n\n8) wil: Build B1 Wil\n\n9) Grosseteste: T G1 Y1 Grosseteste\n\n10) wil: Discover B1 Wil G2 G2\n\n11) Grosseteste: Build G1 Grosseteste\n\n12) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 Wil\nBuild B3 G2\n\n13) Grosseteste: Trade G3 B3 Grosseteste\n\n14) wil: Sacrifice B2 G2\nTrade B3 R3 G2\nTrade B2 Y2 Wil\n\n15) Grosseteste: T Y1 R1 Grosseteste\n\n16) wil: Build B2 G2\n\n17) Grosseteste: B R1 Grosseteste\n\n18) wil: Build B2 G2\n\n\twil: hate that...\n\tGrosseteste: Thanks for the game, sorry I didn't get back to take my medicine but you got ahead of me really quick there. Well done.\n\nHomeworlds Online (SDG# 27448)\nStarted: 2015.4.18, Ended: 2015.4.24\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B3 G3\n\n2) wil: Homeworld Y2 B1 G3\n\n3) ts52: Build G1 Ts52\n\twil: should i terminate?\n\tts52: No. Sorry... man, I suck at keeping up with these. Moving now.\n\n4) wil: Build G1 Wil\n\n5) ts52: Discover G1 Ts52 B2 Gonzo\n\n6) wil: Trade G1 B1 Wil\n\n7) ts52: Build G1 Gonzo\n\n8) wil: Build B1 Wil\n\n9) ts52: Trade G1 Y1 Gonzo\n\n10) wil: Discover B1 Wil Y3 Y3\n\n11) ts52: Build Y1 Gonzo\n\n12) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Y3\nBuild B3 Wil\n\twil: lol...you are making up for slow moves now!! (would be great if the site had a button for us to press saying..."online and ready to play live!" \n\n13) ts52: Build Y2 Gonzo\n\n14) wil: Move B1 Y3 Gonzo\n\tts52: :) Trying to make up for it a bit. \n\n15) ts52: Trade Y2 R2 Gonzo\n\n16) wil: Move B2 Y3 Gonzo\n\n17) ts52: Discover G1 Gonzo B3 Grover\n\twil: I love how weird and interesting this game can be... \r\n\n\n18) wil: Trade B3 G3 Wil\n\tts52: I agree. Very interesting. I really need to get some of my coworkers into it so I can play in person.\n\n19) ts52: Attack B2 Gonzo\n\n20) wil: Build B3 Wil\n\twil: yes in person games are great...although they do reach stalls and need some time... (unless you are chess clocking it) my roomate and i used to keep a game going all the time... we'd get the early play down face to face..and then it would slow as the plot thickened..and become more like this...\n\twil: yes in person games are great...although they do reach stalls and need some time... (unless you are chess clocking it) my roomate and i used to keep a game going all the time... we'd get the early play down face to face..and then it would slow as the plot thickened..and become more like this...\n\n21) ts52: Move B2 Gonzo Y3\n\n22) wil: Discover B2 Y3 Y2 Y2\n\n23) ts52: Move B2 Y3 Wil\nCatastrophe Wil Blue\n\n24) wil: Build G1 Wil\n\twil: had no idea where this experiment would go...still don't\n\twil: lol what was I thinkin? I new I had to change that....Good show!!\n\twil: this is over....\n\n25) ts52: Attack B1 Gonzo\n\n26) wil: Discover G1 Wil B3 B3\n\tts52: Yeah, but my endgame sucks....\n\n27) ts52: Move Y1 Gonzo Grover\n\n28) wil: Build G1 B3\n\n29) ts52: Build G2 Grover\n\twil: I feel like that poor knight in MP Holy Grail...no arms, no legs, still want to fight...\n\twil: and to think I woke you up for this abuse!! (I surely don't deserve the top of the ladder, someone needs to knock me outta there!)\n\n30) wil: Build G2 B3\n\tts52: damn, meant to type y2, not g2. oh well...\n\tts52: I can't remember the last ladder game I played. Maybe it's time to challenge you... :)\n\n31) ts52: Build Y2 Grover\n\twil: I'd say so!\n\n32) wil: Build G2 Wil\n\n33) ts52: Sacrifice Y2 Grover\nMove G1 Grover Wil\nMove G2 Grover Wil\nCatastrophe Wil Green\n\tts52: Thanks for the game!\n\n\nHomeworlds Online (SDG# 27463)\nVariants: "Hard time"\nStarted: 2015.4.21, Ended: 2015.5.18\nParticipants: Grosseteste (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld G1 R2 B3\n\n2) Grosseteste: H Y3 B1 G3\n\tgoulo: man, i've not played this game in a while! thanks for the invitation.\n\n3) goulo: Build B1 Goulo\n\n4) Grosseteste: B G1 Grosseteste\n\n5) goulo: Build B1 Goulo\n\n6) Grosseteste: B G1 Grosseteste\n\n7) goulo: Trade B3 Y3 Goulo\n\n8) Grosseteste: Discover G1 Grosseteste B2 Chuck\n\n9) goulo: Discover B1 Goulo G3 Smeraldego\n\n10) Grosseteste: B G2 Grosseteste\n\n11) goulo: Build B2 Smeraldego\n\n12) Grosseteste: Trade G2 Y2 Grosseteste\n\n13) goulo: Build B2 Smeraldego\n\n14) Grosseteste: T G3 B3 Grosseteste\n\n15) goulo: Build B3 Goulo\n\n\tgoulo: ludus interruptus. :/\n\tGrosseteste: Sorry, had a bit of life intervene. I suspect this won't be out last meeting :)\n\nHomeworlds Online (SDG# 27464)\nVariants: "No undo, Hard time"\nStarted: 2015.4.21, Ended: 2015.4.28\nParticipants: Grissom (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld B2 Y1 G3\n\tGrissom: I was just thinking about you the other day. I would have challenged but i was busy with the release.\n\n2) Grissom: Homeworld R3 B2 G3\n\n3) hellajoey: Build G1 Hellajoey\n\n4) Grissom: Build G1 Grissom\n\n5) hellajoey: Discover G1 Hellajoey B3 Blu3\n\n6) Grissom: Trade G1 Y1 Grissom\n\n7) hellajoey: Build G1 Blu3\n\n8) Grissom: Build Y1 Grissom\n\n9) hellajoey: Build G1 Hellajoey\n\n10) Grissom: Build G2 Grissom\n\n11) hellajoey: Build G2 Hellajoey\n\n12) Grissom: Discover Y1 Grissom B1 Lilblu\n\n13) hellajoey: Discover G2 Hellajoey G3 Gre3n\n\n14) Grissom: Sacrifice G3 Grissom\nBuild G2 Grissom\nBuild G3 Grissom\nBuild Y2 Grissom\n\n15) hellajoey: Sacrifice G2 Gre3n\nBuild G2 Blu3\nBuild G3 Hellajoey\n\n16) Grissom: Sacrifice G3 Grissom\nBuild Y2 Lilblu\nBuild Y2 Lilblu\nBuild Y3 Grissom\n\n17) hellajoey: Discover G3 Hellajoey G3 Gre3n\n\n18) Grissom: Sacrifice Y2 Lilblu\nMove Y2 Lilblu Blu3\nMove Y2 Blu3 Hellajoey\n\n19) hellajoey: Trade G2 Y2 Blu3\n\n20) Grissom: Sacrifice G2 Grissom\nBuild Y3 Hellajoey\nBuild Y3 Hellajoey\nCatastrophe Hellajoey Yellow\n\n21) hellajoey: Discover G1 Blu3 Y1 Yel1ow\n\n22) Grissom: Discover Y2 Grissom B1 Blop\n\n23) hellajoey: Build G2 Blu3\n\n24) Grissom: Trade Y1 B1 Lilblu\n\n25) hellajoey: Trade G3 R3 Hellajoey\n\n26) Grissom: Trade Y3 G3 Grissom\n\n27) hellajoey: Move G1 Yel1ow Grissom\n\n28) Grissom: Move G2 Grissom Lilblu\n\thellajoey: Hey, Larry. I know you've got a busy schedule and so do I but let me know if you'd like to get together for a live game sometime. I think it would be pretty fun.\n\n29) hellajoey: Sacrifice G2 Blu3\nBuild G2 Grissom\nBuild G2 Grissom\nCatastrophe Grissom Green\n\tGrissom: Absolutely! I have a good amount of time between now and the end of May.\n\thellajoey: Cool. If I remember correctly you have children and you live in Gresham. I live in SE. So maybe a happy hour thing near me on your way home would work well? Seems like you could stop by on your way home sometime? If that's not as good a weekend afternoon also works.\n\thellajoey: I should warn you a full game could take us a couple hours.\n\thellajoey: Something I've been thinking of trying but haven't is playing with a chess clock. We could try that for limiting game time.\n\n30) Grissom: Sacrifice Y2 Blop\nMove G2 Lilblu Gre3n\nMove B1 Lilblu Hellajoey\n\tGrissom: I really wanted the undo option after that last move.\n\tGrissom: My family is out of town until the end of may so pretty much any time is good. Chess timer sounds interesting.\n\n31) hellajoey: Sacrifice R3 Hellajoey\nAttack G2 Gre3n\nAttack B1 Hellajoey\nPass\n\n32) Grissom: Trade Y1 G1 Grissom\n\n33) hellajoey: Sacrifice Y2 Blu3\nDiscover G3 Gre3n R1 C1ose\nMove G3 C1ose Grissom\n\n34) Grissom: Build G2 Grissom\n\n35) hellajoey: Build G2 Grissom\nCatastrophe Grissom Green\n\n\nHomeworlds Online (SDG# 27456)\nStarted: 2015.4.26, Ended: 2015.5.6\nParticipants: ts52 (S), rockabilly (N)\nWinner: ts52\n\n1) rockabilly: Homeworld G3 Y1 B3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) rockabilly: Build B1 Rockabilly\n\tts52: Have a good game.\n\n4) ts52: Build G1 Ts52\n\trockabilly: Thanks, you too.\n\n5) rockabilly: Build B1 Rockabilly\n\n6) ts52: Build G1 Ts52\n\n7) rockabilly: Discover B1 Rockabilly G2 Vincent\n\n8) ts52: Discover G1 Ts52 B3 Gonzo\n\n9) rockabilly: Build B2 Rockabilly\n\n10) ts52: Build G1 Gonzo\n\n11) rockabilly: Build B2 Vincent\n\n12) ts52: Build G2 Ts52\n\n13) rockabilly: Trade B2 Y2 Vincent\n\n14) ts52: Discover G2 Ts52 B3 Grover\n\n15) rockabilly: Discover B1 Vincent G3 Buddy\n\n16) ts52: Build G2 Grover\n\n17) rockabilly: Sacrifice B2 Rockabilly\nTrade B1 Y1 Rockabilly\nTrade B1 Y1 Buddy\n\n18) ts52: Trade G2 Y2 Grover\n\n19) rockabilly: Build Y3 Rockabilly\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild Y3 Grover\n\n21) rockabilly: Build Y3 Buddy\n\n22) ts52: Trade G2 R2 Grover\n\n23) rockabilly: Trade Y3 R3 Rockabilly\n\n24) ts52: Discover G1 Ts52 Y3 Bigbird\n\n25) rockabilly: Sacrifice Y2 Vincent\nDiscover R3 Rockabilly Y2 Tmp\nMove R3 Tmp Gonzo\n\n26) ts52: Sacrifice Y2 Grover\nMove G1 Gonzo Ts52\nDiscover G1 Gonzo Y2 Zoe\n\n\nHomeworlds Online (SDG# 27486)\nVariants: "Hard time"\nStarted: 2015.4.27, Ended: 2015.5.23\nParticipants: SilentTitan (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld B3 R1 G3\n\n3) ts52: Build G1 Ts52\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) SilentTitan: Trade G3 Y3 Silenttitan\n\n7) ts52: Build G1 Ts52\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) ts52: Discover G1 Ts52 B3 Gonzo\n\n10) SilentTitan: Discover G1 Silenttitan Y2 Sol\n\n11) ts52: Build G2 Ts52\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\n14) SilentTitan: Build G3 Sol\n\n15) ts52: Discover G2 Ts52 Y3 Bigbird\n\n16) SilentTitan: Trade G2 R2 Silenttitan\n\n17) ts52: Trade G1 R1 Gonzo\n\n18) SilentTitan: Build Y1 Silenttitan\n\n19) ts52: Move Y1 Ts52 Gonzo\n\n20) SilentTitan: Move G3 Sol Bigbird\n\n21) ts52: Sacrifice G3 Ts52\nBuild G1 Bigbird\nBuild G2 Bigbird\nBuild G3 Ts52\nCatastrophe Bigbird Green\n\n\tSilentTitan: Thanks for the game\n\nHomeworlds Online (SDG# 27489)\nStarted: 2015.4.27, Ended: 2015.4.29\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: Homeworld Y2 R1 G3 *\n\n2) ts52: Homeworld Y2 B3 G3\n\twil: I am trying unconventional....\n\n3) wil: Build G1 Wil\n\tts52: _Very_ unconventional. Interesting.\n\twil: I saw you started the ladder again....with a familiar opponent... \n\n4) ts52: Build G1 Ts52\n\n5) wil: Discover G1 Wil B3 B3\n\tts52: Yeah, I tried to challenge you, but couldn't. Guessing either you were in a game already, or I wasn't high enough up.\n\twil: Somebody opened with it against me... in a live game. I played it with mixed results... \n\n6) ts52: Discover G1 Ts52 B1 Gonzo\n\twil: Yeah, you can only go five up at a time... takes a long time to crawl thru the dead wood up that ladder..\n\n7) wil: Build G1 B3\n\tts52: I really need to get more people playing so I can play more live games. :(\n\twil: I'd like to see Silent, Two, Tee, Broc, Zoltar, DL all active... we'd have some go arounds on that ladder!\n\n8) ts52: Build G2 Gonzo\n\twil: great job screwin up my whole plan!\n\n9) wil: Build G2 Wil\n\tts52: There was a plan? ;)\n\n10) ts52: Trade G2 Y2 Gonzo\n\twil: Well there was you spoiler.. you had two choices and you took the unexpected one...\n\n11) wil: Trade G1 R1 B3\n\n12) ts52: Build Y1 Gonzo\n\n13) wil: Build R1 B3\n\n14) ts52: Trade Y2 R2 Gonzo\n\twil: so... so far while this opening set has been frowned upon...no major ill effects, eh?\n\n15) wil: Build R2 B3\n\tts52: Hasn't hurt you yet, true.\n\n16) ts52: Move R2 Gonzo B3\nCatastrophe B3 Red\n\twil: Yet... he says... dangles carrot.\n\n17) wil: Discover G2 Wil B3 Bee3\n\tts52: ok, I'll take that bait.\n\n18) ts52: Build Y1 Gonzo\n\twil: it was tempting wasn't it... hopefully it was crisp and tastee!\n\n19) wil: Build G1 Wil\n\n20) ts52: Build G2 Gonzo\n\n21) wil: Sacrifice G3 Wil\nBuild G2 B3\nBuild G3 Bee3\nBuild G3 Wil\n\n22) ts52: Sacrifice G2 Gonzo\nBuild G2 Ts52\nBuild Y1 Gonzo\n\tts52: Why is it I always forget that trick. :( Well played.\n\n23) wil: Trade G2 Y2 B3\n\n24) ts52: Discover Y1 Gonzo G2 Kermit\n\n25) wil: Sacrifice Y2 B3\nMove G1 B3 Gonzo\nMove G1 Gonzo Ts52\n\n26) ts52: Trade G2 R2 Ts52\n\n27) wil: Sacrifice G2 Bee3\nBuild G2 Ts52\nBuild G2 Ts52\nCatastrophe Ts52 G\n\n28) ts52: Build Y2 Kermit\n\tts52: Wow, very nice play. \n\n29) wil: Build G1 Bee3\n\n30) ts52: Build Y3 Gonzo\n\twil: it wasn't completely thought out...\n\n31) wil: Trade G3 Y3 Bee3\n\n32) ts52: Build Y3 Kermit\n\n33) wil: Move Y3 Bee3 Gonzo\nCatastrophe Gonzo Y\n\n34) ts52: Build G2 Gonzo\n\twil: should be thinking...but am enjoying just shooting from the hip...\n\n35) wil: Build G2 Bee3\n\twil: unfortunately shooting from the hip hits me in the foot... I 'was' doing well...\n\n36) ts52: Build G3 Gonzo\n\n37) wil: Trade G1 R1 Bee3\n\tts52: Time will tell.\n\n38) ts52: Sacrifice Y2 Kermit\nDiscover G3 Gonzo Y3 Bigbird\nMove G1 Gonzo Bigbird\n\twil: my main problem is I play here like a play live...not taking the time to evaluate enough...\n\n39) wil: Build R1 Bee3\n\n40) ts52: Sacrifice Y3 Kermit\nMove G1 Bigbird Wil\nMove G3 Bigbird Wil\nPass\nCatastrophe Wil Green\n\tts52: Yeah, I almost screwed that up, but I think that start probably cost you. Thanks for the game!\n\twil: I'll try it again...\n\twil: I think my quick play lost me the game...not the opening...I am not ready to concede that yet... I'll be testing it against Andy within the month...he'll flip out.\n\tts52: Good luck!\n\n\nHomeworlds Online (SDG# 27492)\nVariants: "No undo, Hard time"\nStarted: 2015.4.28, Ended: 2015.5.19\nParticipants: Grissom (S), hellajoey (N)\nWinner: Grissom\n\n1) hellajoey: Homeworld B1 Y2 G3\n\n2) Grissom: Homeworld B3 R2 G3\n\n3) hellajoey: Build G1 Hellajoey\n\n4) Grissom: Build G1 Grissom\n\n5) hellajoey: Discover G1 Hellajoey B3 Blu3\n\n6) Grissom: Trade G1 Y1 Grissom\n\n7) hellajoey: Build G1 Hellajoey\n\n8) Grissom: Build Y1 Grissom\n\n9) hellajoey: Trade G1 Y1 Hellajoey\n\n10) Grissom: Discover Y1 Grissom B1 B1ue\n\n11) hellajoey: Build Y2 Hellajoey\n\n12) Grissom: Build G1 Grissom\n\n13) hellajoey: Build G1 Hellajoey\n\n14) Grissom: Sacrifice G3 Grissom\nBuild Y2 B1ue\nBuild Y3 Grissom\nBuild Y3 Grissom\n\n15) hellajoey: Move Y1 Hellajoey Blu3\n\n16) Grissom: Trade Y3 G3 Grissom\n\n17) hellajoey: Build Y3 Blu3\n\n18) Grissom: Discover Y2 B1ue B3 Blomb\n\n\thellajoey: Crap. I'm so sorry. Was just remembering today that I need to take a turn. Didn't realize I was about to time out though :) I still want to play. I promise I won't screw the next one up!\n\nHomeworlds Online (SDG# 27500)\nStarted: 2015.5.1, Ended: 2015.5.6\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) wil: Homeworld Y3 R1 G3 *\n\tts52: I know, so boring.... have a good game!\n\n3) ts52: Build G1 Ts52\n\twil: never boring this game..\r\nnever know where it will go...\r\nsafe openings... I'm testin troubled waters\n\n4) wil: Build G1 Wil\n\n5) ts52: Trade G1 B1 Ts52\n\n6) wil: Discover G1 Wil B2 B2\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\n8) wil: Build G1 B2\n\n9) ts52: Build B1 Kermit\n\n10) wil: Build G1 Wil\n\n11) ts52: Build G2 Ts52\n\n12) wil: Build G2 B2\n\n13) ts52: Build B2 Kermit\n\n14) wil: Trade G1 Y1 B2\n\n15) ts52: Trade B2 Y2 Kermit\n\n16) wil: Trade G2 R2 B2\n\n17) ts52: Trade G2 R2 Ts52\n\n18) wil: Discover G1 B2 B3 B3\n\n19) ts52: Move R2 Ts52 B3\n\n20) wil: B G1 B3\n\n21) ts52: Build G2 Ts52\n\n22) wil: Build G2 B3\n\n23) ts52: Attack G2 B3\n\n24) wil: Sacrifice G3 Wil\nBuild G2 B3\nBuild Y1 B2\nBuild G3 Wil\nCatastrophe B3 G\n\n25) ts52: Move G2 Ts52 B3\n\n26) wil: Trade R2 B2 B2\n\n27) ts52: Sacrifice Y2 Kermit\nMove B1 Kermit B2\nMove B1 Kermit B2\nCatastrophe B2 Blue\n\n28) wil: Discover G1 Wil B2 B2\n\n29) ts52: Build G1 B3\n\twil: this opening is not easy...obviously a couple steps behind...which means buckets in this game...\n\n30) wil: Build G1 Wil\n\tts52: definitely a tough opening, for sure\n\n31) ts52: Trade G1 Y1 B3\n\n32) wil: Build G1 B2\n\n33) ts52: Move R2 B3 B2\n\twil: it was a bad plan, poorly executed..\n\n34) wil: Build G2 Wil\n\n35) ts52: Attack G1 B2\n\n36) wil: Discover G1 Wil B2 Bee2\n\n37) ts52: Trade G1 Y1 B2\n\n38) wil: Build G1 B2\n\n39) ts52: Attack G1 B2\n\n40) wil: Sacrifice G3 Wil\nBuild G2 Bee2\nBuild G3 Wil\nBuild G3 Wil\n\n41) ts52: Move G1 B2 Wil\nCatastrophe Wil Green\n\n\tts52: Thanks for the game. But I feel like my stats are getting falsely inflated.\n\twil: lol... blind he was... hint don't look at the computer when you come back from a cinco de mayo partay...\n\tts52: :D\n\nHomeworlds Online (SDG# 27437)\nVariants: "Hard time"\nStarted: 2015.5.1, Ended: 2015.5.9\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) wil: Homeworld R3 Y2 G3 *\n\n3) SilentTitan: Build G1 Silenttitan\n\tSilentTitan: No blue harsh way to go\n\tSilentTitan: No blue harsh way to go\n\n4) wil: Build G1 Wil\n\twil: experimentation\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) wil: Discover G1 Wil B1 B1\n\n\nHomeworlds Online (SDG# 27416)\nVariants: "Unrated"\nStarted: 2015.5.5, Ended: 2015.5.12\nParticipants: wil (S), mcowper (N)\nWinner: wil\n\n1) mcowper: Homeworld G3 B2 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\twil: Welcome and thank you for the game! Good luck!\n\n3) mcowper: Build Y1 Mcowper\n\n4) wil: Build G1 Wil\n\twil: new to homeworlds? feel free to ask questions...\n\n5) mcowper: Trade Y1 R1 Mcowper\n\n6) wil: Trade G1 B1 Wil\n\tmcowper: Thanks. I'm not new to homeworlds, but this is my first online homeworlds games, so I'm new to this interface.\n\n7) mcowper: Build Y1 Mcowper\n\twil: ah...the interface sucks...the new systems layout as haphazardly as the ships in the star systems....but...it allows me to play more games with more people...so we put up with it! \n\n8) wil: Build B1 Wil\n\n9) mcowper: Build Y1 Mcowper\n\n10) wil: Discover B1 Wil G2 G2\n\n11) mcowper: Trade Y1 G1 Mcowper\n\n12) wil: Sacrifice G3 Wil\nBuild B2 Wil\nBuild B2 G2\nBuild B3 G2\n\n13) mcowper: Discover Y1 Mcowper G1 Omega\n\n14) wil: Trade B2 G2 Wil\n\n15) mcowper: Build Y1 Omega\n\n16) wil: Trade B3 Y3 G2\n\n17) mcowper: Build Y1 Mcowper\n\n18) wil: Build Y2 G2\n\n19) mcowper: Discover Y1 Mcowper G1 Psi\n\n20) wil: Build B2 G2\n\n21) mcowper: Build Y2 Mcowper\n\n22) wil: Discover B2 G2 R1 R1\n\n23) mcowper: Sacrifice Y2 Mcowper\nMove Y1 Psi G2\nMove Y1 Omega G2\nCatastrophe G2 Y\n\n24) wil: Build B3 G2\n\twil: I left the bait...wondering...\n\n25) mcowper: Build Y1 Omega\n\n26) wil: Sacrifice G2 Wil\nBuild B3 R1\nBuild B3 Wil\n\n27) mcowper: Build Y1 Mcowper\n\n28) wil: Sacrifice B3 G2\nTrade B2 R2 G2\nTrade B3 Y3 R1\nTrade B3 G3 Wil\n\n29) mcowper: Trade Y3 B3 Mcowper\n\twil: I've got a queen building factory in place...\n\n30) wil: Sacrifice G3 Wil\nBuild B2 R1\nBuild B3 G2\nBuild B3 Wil\n\n31) mcowper: Build Y2 Mcowper\n\twil: captains log... trade ships are amassed at strike location, overpopulation will destroy new large trade ships as well as half of home world...\n\n32) wil: Sacrifice Y3 R1\nMove B3 G2 R1\nMove B2 R1 Mcowper\nMove B2 R1 Mcowper\nCatastrophe Mcowper B\n\n33) mcowper: Discover G1 Mcowper B2 Psi\n\n34) wil: Build B2 G2\n\n35) mcowper: Build Y2 Mcowper\n\n36) wil: Trade B3 G3 Wil\n\n37) mcowper: Move Y2 Mcowper Psi\n\n38) wil: Sacrifice G3 Wil\nBuild B2 R1\nBuild B3 G2\nBuild B3 Wil\n\n39) mcowper: Build Y2 Psi\n\n40) wil: Trade B3 Y3 R1\n\n41) mcowper: Build Y3 Omega\n\n42) wil: Sacrifice Y3 R1\nMove B3 G2 Mcowper\nMove B2 R1 Psi\nPass\n\n43) mcowper: Build Y3 Mcowper\n\n44) wil: Sacrifice R2 G2\nAttack Y3 Mcowper\nAttack R1 Mcowper\n\n45) mcowper: Trade G1 R1 Psi\n\n46) wil: Attack Y2 Mcowper\n\n47) mcowper: Sacrifice R1 Psi\nAttack R1 Mcowper\n\twil: it is all but over....thanx for the game....ALWAYS willing to play!\n\n48) wil: Trade Y3 R3 Mcowper\n\n49) mcowper: Build Y3 Mcowper\n\n50) wil: Sacrifice R3 Mcowper\nAttack Y3 Mcowper\nAttack Y1 Mcowper\nAttack R1 Mcowper\n\tmcowper: Thanks for the game. I'm sure that we will play again.\n\twil: I look forward to it... I can't get enough of this game... \n\n\nHomeworlds Online (SDG# 27520)\nStarted: 2015.5.8, Ended: 2015.5.13\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 R1 G3 *\n\n2) ts52: Homeworld Y3 B1 G3\n\twil: Ok, the last run at yr homeworlds... \n\n3) wil: Build G1 Wil\n\tts52: :) Have a good time.\n\n4) ts52: Build G1 Ts52\n\twil: I'm a gonna take my time...or try to... I got that game in... and re-insured my medal..\n\tts52: Nice! Not sure when I'm going to get to collect mine.\n\n5) wil: Discover G1 Wil B3 B3\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) wil: Build G1 B3\n\n8) ts52: Build G2 Ts52\n\n9) wil: Trade G1 R1 B3\n\n10) ts52: Trade G2 R2 Ts52\n\n11) wil: Build R1 B3\n\n12) ts52: Build R2 Ts52\n\n13) wil: Trade R1 Y1 B3\n\twil: I am getting further behind at every turn\n\n14) ts52: Move R2 Ts52 Gonzo\n\n15) wil: Discover R1 B3 G2 G2\n\n16) ts52: Build G1 Ts52\n\n17) wil: Build G2 B3\n\n18) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\n19) wil: Trade G1 B1 B3\n\n20) ts52: Move R2 Ts52 G2\n\n21) wil: Build R1 G2\n\n22) ts52: Trade G1 Y1 Gonzo\n\n23) wil: Build G1 Wil\n\n24) ts52: Sacrifice R2 Gonzo\nAttack R1 G2\nAttack R1 G2\n\n25) wil: Build G1 B3\n\n26) ts52: Sacrifice Y1 Gonzo\nMove R2 G2 B3\n\n27) wil: Discover G2 B3 Y2 Y2\n\n28) ts52: Sacrifice G2 Ts52\nBuild G2 Gonzo\nBuild R2 B3\n\n29) wil: Sacrifice Y1 B3\nMove B1 B3 Y2\n\n30) ts52: Trade R2 Y2 B3\n\n31) wil: Sacrifice G3 Wil\nBuild B1 Y2\nBuild B2 Y2\nBuild G3 Wil\n\n32) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild R2 B3\nBuild R2 B3\n\n33) wil: Discover B2 Y2 B3 Bee3\n\n34) ts52: Move R2 B3 Wil\n\n35) wil: Sacrifice G3 Wil\nBuild B2 Bee3\nBuild B3 Y2\nBuild G3 Wil\n\n36) ts52: Sacrifice Y2 B3\nMove R2 B3 Wil\nMove R2 B3 Wil\nCatastrophe Wil Red\n\n37) wil: Trade B3 Y3 Y2\n\n38) ts52: Move G3 Ts52 Wil\n\n39) wil: Sacrifice Y3 Y2\nMove G1 B3 Wil\nMove B2 Bee3 Wil\nMove G2 Y2 Ts52\nCatastrophe Wil G\n\n40) ts52: Trade G2 Y2 Gonzo\n\twil: I thought that was too costly a trigger to pull...\n\n41) wil: Sacrifice G2 Ts52\nBuild B3 Wil\nBuild B3 Wil\n\tts52: I really hope I've thought this through correctly.\n\twil: lol, I knew I should have got an R3....I knew there was a catch I couldn't see..\n\n42) ts52: Move G3 Gonzo Ts52\n\n43) wil: Sacrifice B3 Wil\nTrade B2 R2 Bee3\nTrade B3 G3 Wil\nTrade B1 R1 Y2\n\twil: forgot to initiate the collapse... \n\tts52: Damn. I knew I hadn't thought it through enough. Now to see if I can come back.\n\n44) ts52: Move G1 Ts52 Gonzo\n\twil: I think you are still ahead...\n\n45) wil: Sacrifice G3 Wil\nBuild B1 Y2\nBuild B2 Y2\nBuild B3 Wil\n\twil: well, I've got blue in my hw now!!\n\n46) ts52: Build G1 Ts52\n\tts52: Yes, yes you do...\n\n47) wil: Trade B3 G3 Wil\n\twil: wotta crazy game!\n\n48) ts52: Build Y1 Gonzo\n\tts52: Absolutely crazy.\n\n49) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 Wil\nBuild R2 Y2\n\n50) ts52: Discover Y2 Gonzo G1 Kermit\n\n51) wil: Trade B3 Y3 Wil\n\twil: I believe it is now mine to lose...\n\n52) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\n\twil: and I am quite capable of just that!!\n\tts52: I think you may be right.\n\n53) wil: Trade B3 G3 Wil\n\n54) ts52: Trade G3 R3 Ts52\n\twil: are syou still a step ahead? I knew I should have moved a piece to stop the y3 growth...to greedy\n\twil: are you still a step ahead? I knew I should have moved a piece to stop the y3 growth...to greedy\n\n55) wil: Build B3 Wil\n\twil: still... I think it is clear that the yr opening is not the disaster it was thought to be..\n\twil: it appears it made you pause.... I am taking that as a good sign.... however you probably just got distracted...and your next move will end the game..\n\tts52: I was offline this morning. Have to get my head back into it. :)\n\n56) ts52: Build Y1 Kermit\n\n57) wil: Sacrifice Y3 Wil\nMove G3 Wil Ts52\nMove B3 Wil Ts52\nDiscover B2 Y2 Y3 Y3\n\n58) ts52: Move Y2 Kermit Wil\n\n59) wil: Sacrifice R2 Y2\nAttack R3 Ts52\nAttack Y2 Wil\n\n60) ts52: Move Y1 Kermit Wil\n\n61) wil: Sacrifice R3 Ts52\nAttack G2 Ts52\nAttack G1 Ts52\nAttack Y1 Wil\n\twil: he pulls the plug and hopes calculations are correct...\n\twil: Good game... whole lotta fun...despite the ending!\n\n\twil: aarrghh...I slipped out by default... I didn't see it...and evidently you didn't either.. s y2 m r3 into wil and y1 gonzo into your hw...\n\twil: one move apart....either of us hiccup and it was game over....wow.\r\n\n\tts52: Damn. Sorry I missed that too... very good game.\n\nHomeworlds Online (SDG# 27530)\nStarted: 2015.5.12, Ended: 2015.5.21\nParticipants: mcowper (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B3 G3\n\n2) mcowper: Homeworld G3 R1 B3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) mcowper: Build B1 Mcowper\n\n5) ts52: Trade G1 B1 Ts52\n\n6) mcowper: Trade B1 Y1 Mcowper\n\n7) ts52: Discover B1 Ts52 G1 Robin\n\n8) mcowper: Build Y1 Mcowper\n\n9) ts52: Build G1 Ts52\n\n10) mcowper: Trade Y1 R1 Mcowper\n\n11) ts52: Trade G1 R1 Ts52\n\n12) mcowper: Build R2 Mcowper\n\n13) ts52: Build R2 Ts52\n\n14) mcowper: Trade R2 G2 Mcowper\n\n15) ts52: Move R2 Ts52 Robin\n\n16) mcowper: Build R2 Mcowper\n\n17) ts52: Sacrifice G3 Ts52\nBuild R2 Robin\nBuild R3 Robin\nBuild R3 Ts52\n\n18) mcowper: Trade R2 Y2 Mcowper\n\n19) ts52: Trade R3 Y3 Robin\n\n20) mcowper: Discover R1 Mcowper G2 Alpha\n\n21) ts52: Move R2 Robin Alpha\n\n22) mcowper: Discover Y1 Mcowper R2 Beta\n\n23) ts52: Attack R1 Alpha\n\n24) mcowper: Build Y1 Mcowper\n\n25) ts52: Build R3 Robin\n\n26) mcowper: Build B1 Mcowper\n\n27) ts52: Build R3 Alpha\n\n28) mcowper: Build G1 Mcowper\n\n29) ts52: Trade R3 G3 Ts52\n\n30) mcowper: Move G2 Mcowper Beta\n\n31) ts52: Build R3 Ts52\n\n32) mcowper: Discover Y2 Mcowper B2 Gamma\n\n33) ts52: Trade R2 Y2 Robin\n\n34) mcowper: Trade Y2 R2 Gamma\n\n35) ts52: Move Y2 Robin Alpha\n\n36) mcowper: Build Y1 Mcowper\n\n37) ts52: Build G1 Ts52\n\n38) mcowper: Move B1 Mcowper Beta\n\n39) ts52: Move R3 Robin Gamma\n\n40) mcowper: Sacrifice Y1 Mcowper\nMove R2 Gamma Robin\n\n41) ts52: Sacrifice R1 Ts52\nAttack R2 Robin\n\n42) mcowper: Trade Y1 R1 Beta\n\n43) ts52: Move Y3 Robin Beta\n\n44) mcowper: Sacrifice Y1 Mcowper\nMove R1 Beta Mcowper\n\n45) ts52: Sacrifice Y2 Alpha\nMove R1 Alpha Mcowper\nMove R2 Alpha Mcowper\nCatastrophe Mcowper Red\n\n46) mcowper: Sacrifice G2 Beta\nBuild B1 Beta\nBuild B2 Mcowper\n\n47) ts52: Sacrifice Y3 Beta\nMove R3 Gamma Mcowper\nMove G1 Ts52 Robin\nMove G1 Robin Mcowper\n\n48) mcowper: Build G2 Mcowper\n\n49) ts52: Sacrifice R3 Ts52\nAttack B3 Mcowper\nAttack B2 Mcowper\nAttack G2 Mcowper\nCatastrophe Mcowper Green\n\tts52: Thanks for the game.\n\tmcowper: Thanks for playing. Perhaps we'll play again some time.\n\tts52: I look forward to it.\n\n\nHomeworlds Online (SDG# 27580)\nVariants: "No undo, Hard time"\nStarted: 2015.5.22, Ended: 2015.6.7\nParticipants: Grissom (S), hellajoey (N)\nWinner: hellajoey\n\n1) hellajoey: Homeworld Y1 B2 G3\n\n2) Grissom: Homeworld B2 R1 G3\n\n3) hellajoey: Build G1 Hellajoey\n\n4) Grissom: Build G1 Grissom\n\n5) hellajoey: Discover G1 Hellajoey B3 Blu3\n\n6) Grissom: Trade G1 Y1 Grissom\n\n7) hellajoey: Build G1 Hellajoey\n\n8) Grissom: Build Y1 Grissom\n\n9) hellajoey: Discover G1 Hellajoey Y3 Y3llow\n\n10) Grissom: Discover Y1 Grissom G3 Gr33n\n\n11) hellajoey: Build G1 Hellajoey\n\n12) Grissom: Build Y2 Grissom\n\n13) hellajoey: Build G2 Y3llow\n\n14) Grissom: Discover Y2 Grissom B3 Eulb\n\n15) hellajoey: Sacrifice G3 Hellajoey\nBuild G2 Blu3\nBuild G2 Blu3\nBuild G3 Hellajoey\n\n16) Grissom: Sacrifice G3 Grissom\nBuild Y2 Eulb\nBuild Y2 Gr33n\nBuild Y3 Grissom\n\n17) hellajoey: Build G3 Y3llow\n\n18) Grissom: Build Y3 Gr33n\n\n19) hellajoey: Trade G1 R1 Hellajoey\n\n20) Grissom: Trade Y1 G1 Grissom\n\n21) hellajoey: Discover G2 Y3llow B1 B1ue\n\n22) Grissom: Build Y1 Grissom\n\n23) hellajoey: Sacrifice G2 Blu3\nBuild R1 Hellajoey\nBuild G2 Hellajoey\n\n24) Grissom: Trade Y3 R3 Grissom\n\n25) hellajoey: Discover R1 Hellajoey Y3 Olyeller\n\n26) Grissom: Sacrifice Y2 Eulb\nMove R3 Grissom Y3llow\nMove Y3 Gr33n Grissom\n\n27) hellajoey: Sacrifice R1 Hellajoey\nAttack R3 Y3llow\n\n28) Grissom: Build Y2 Gr33n\n\n29) hellajoey: Sacrifice G3 Hellajoey\nBuild R1 Olyeller\nBuild R2 Y3llow\nBuild G3 Hellajoey\n\n30) Grissom: Move Y1 Gr33n Hellajoey\n\n31) hellajoey: Move G2 Hellajoey Gr33n\n\n32) Grissom: Sacrifice Y2 Eulb\nMove Y2 Gr33n Hellajoey\nMove Y2 Gr33n Hellajoey\nCatastrophe Hellajoey Yellow\n\n33) hellajoey: Move R2 Y3llow Hellajoey\n\n34) Grissom: Trade Y1 B1 Grissom\n\n35) hellajoey: Trade R2 Y2 Hellajoey\n\n36) Grissom: Build Y1 Grissom\n\n37) hellajoey: Sacrifice G3 Y3llow\nBuild G3 Y3llow\nBuild Y1 Hellajoey\nBuild Y1 Hellajoey\n\n38) Grissom: Discover Y1 Grissom B3 Eulb\n\n39) hellajoey: Move Y2 Hellajoey Eulb\n\n40) Grissom: Discover Y1 Eulb B1 Eu1b\n\n41) hellajoey: Sacrifice G3 Y3llow\nBuild G3 Y3llow\nBuild R2 Y3llow\nBuild R2 Olyeller\n\n42) Grissom: Build Y2 Grissom\n\n43) hellajoey: Sacrifice G3 Y3llow\nBuild G3 Y3llow\nBuild Y2 Eulb\nBuild R2 Y3llow\n\n44) Grissom: Discover Y2 Grissom R3 R3d\n\n45) hellajoey: Sacrifice Y2 Eulb\nMove R1 Olyeller Grissom\nMove R1 Olyeller Grissom\n\n46) Grissom: Build B2 Grissom\n\n47) hellajoey: Sacrifice G3 Y3llow\nBuild G3 Y3llow\nBuild R3 Grissom\nBuild Y2 Eulb\nCatastrophe Grissom Red\n\n48) Grissom: Trade B1 R1 Grissom\n\n49) hellajoey: Trade Y1 B1 Hellajoey\n\n50) Grissom: Sacrifice Y2 R3d\nMove R1 Grissom Y3llow\nDiscover B2 Grissom Y1 Ye11ow\nCatastrophe Y3llow Red\n\n51) hellajoey: Move G3 Y3llow Grissom\n\n52) Grissom: Move B2 Ye11ow Hellajoey\n\n53) hellajoey: Sacrifice R2 Olyeller\nAttack Y3 Grissom\nAttack G1 Grissom\n\tGrissom: Good game\n\thellajoey: Thanks. Feels like I drug it out at the end. Wasn't trying to though.\n\n\nHomeworlds Online (SDG# 27518)\nVariants: "Unrated"\nStarted: 2015.5.22, Ended: 2015.7.1\nParticipants: wil (S), mcowper (N)\nWinner: wil\n\n1) mcowper: Homeworld R1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) mcowper: Build G1 Mcowper\n\twil: thx for the game...good luck\n\n4) wil: Build G1 Wil\n\n5) mcowper: Trade G1 Y1 Mcowper\n\n6) wil: Trade G1 B1 Wil\n\n7) mcowper: Build Y1 Mcowper\n\n8) wil: Build B1 Wil\n\n9) mcowper: Build G1 Mcowper\n\n10) wil: Discover B1 Wil Y2 Y2\n\n11) mcowper: Discover G1 Mcowper B3 Alef\n\n12) wil: Build B2 Wil\n\n13) mcowper: Build G1 Mcowper\n\n14) wil: Discover B2 Wil Y2 Whytoo\n\n15) mcowper: Build Y1 Mcowper\n\n16) wil: Build B2 Wil\n\n17) mcowper: Discover Y1 Mcowper G3 Bet\n\n18) wil: Discover B2 Whytoo Y3 Y3\n\n19) mcowper: Build Y2 Bet\n\n20) wil: Trade B2 Y2 Y3\n\n21) mcowper: Build Y3 Bet\n\n22) wil: Discover B2 Wil G2 G2\n\n23) mcowper: Discover Y3 Bet B2 Gimel\n\n24) wil: Build B3 G2\n\n25) mcowper: Trade Y3 B3 Gimel\n\n26) wil: Discover B1 Y2 Y3 Why3\n\n27) mcowper: Build Y2 Bet\n\n28) wil: Trade B3 R3 G2\n\n29) mcowper: Sacrifice Y2 Bet\nMove Y1 Mcowper Y3\nMove Y1 Mcowper Y3\nCatastrophe Y3 Y\n\n30) wil: Build B3 G2\n\n31) mcowper: Move Y1 Bet Gimel\n\n32) wil: Trade B3 Y3 G2\n\n33) mcowper: Move B3 Gimel Bet\n\n34) wil: Move R3 G2 Bet\n\n35) mcowper: Sacrifice Y2 Bet\nDiscover B3 Bet G2 Dalet\nMove G1 Alef Gimel\n\n36) wil: Build B3 G2\n\n37) mcowper: Build B3 Dalet\n\n38) wil: Trade B3 R3 G2\n\n39) mcowper: Sacrifice G3 Mcowper\nBuild G1 Gimel\nBuild G2 Gimel\nBuild G3 Mcowper\n\n40) wil: Build B3 G2\n\n41) mcowper: Trade G2 Y2 Gimel\n\n42) wil: Trade B3 R3 G2\n\n43) mcowper: Sacrifice Y2 Gimel\nMove B3 Dalet Wil\nMove B3 Dalet Wil\nCatastrophe Wil B\n\n44) wil: Move R3 G2 Wil\n\n45) mcowper: Discover G1 Gimel Y1 Alef\n\n46) wil: Build G2 Wil\n\n47) mcowper: Trade G1 B1 Mcowper\n\twil: b g2 wil\n\n48) wil: Move Y3 G2 Bet\n\twil: ya gotta type the directions in the right box\n\n49) mcowper: Build Y1 Gimel\n\n50) wil: Move R3 Bet Gimel\n\n51) mcowper: Move Y1 Gimel Alef\n\n52) wil: Attack Y1 Gimel\n\n53) mcowper: Move Y1 Alef Bet\n\n54) wil: Attack G1 Gimel\n\n55) mcowper: Build Y2 Bet\n\n56) wil: Sacrifice R3 G2\nAttack Y2 Bet\nAttack Y1 Bet\nPass\n\n57) mcowper: Build G1 Alef\n\n58) wil: Build Y2 Gimel\n\twil: s g2 wil\r\nb b3 why3\r\nb b1 g2\n\n59) mcowper: Move G1 Alef Wil\n\n60) wil: Sacrifice G2 Wil\nBuild B1 G2\nBuild B3 Why3\n\twil: you are teachin me Hebrew numbers..\n\tmcowper: I'm teaching myself too.\n\n61) mcowper: Sacrifice B1 Mcowper\nTrade G1 B1 Alef\n\n62) wil: S Y3 Bet\nMove B3 Why3 Mcowper\nMove R3 Gimel Why3\nMove R3 Why3 Mcowper\n\n63) mcowper: Attack R3 Mcowper\n\twil: cool\r\n\n\n64) wil: Sacrifice R3 Wil\nAttack G1 Wil\nAttack R3 Mcowper\nAttack G3 Mcowper\n\twil: It looks like I have two choices...\r\nS y3 bet m b3 why3 mcowper m r3 gimel why3 m r3 why3 mcowper Or s y3 bet m g3 wil mcowper m g1 gimel wil m g1 wil mcowper.... both appear unstoppable? If you'd like to change your move you may.\n\tmcowper: Thanks. Let's play it out this way. You are a better player than I and I will most likely lose, but I'll learn stuff along the way and improve. I think that I have improved from our previous game.\n\n\twil: Have fun.... and challenge any time..\n\nHomeworlds Online (SDG# 27586)\nVariants: "Hard time"\nStarted: 2015.5.26, Ended: 2015.5.28\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\twil: here we go! good luck\n\tts52: Thanks! Have a good game!\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 Y1 Wil\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: Build Y1 Wil\n\n8) ts52: Build B1 Ts52\n\twil: oopsie...\n\n9) wil: Discover Y1 Wil B3 B3\n\n10) ts52: Discover B1 Ts52 G2 Robin\n\twil: s g3 wil\r\nb y2 b3\r\nb y2 b3\r\nb y3 wil\n\n11) wil: Sacrifice G3 Wil\nBuild Y2 B3\nBuild Y2 B3\nBuild Y3 Wil\n\n12) ts52: Build B2 Robin\n\tts52: That's a lot of yellow\n\n13) wil: Discover Y2 B3 G2 G2\n\n14) ts52: Build G1 Ts52\n\n15) wil: Trade Y3 G3 Wil\n\n16) ts52: Build B2 Ts52\n\twil: that move surprised me...while i am seeing red, I am not seeing a need for concern right away...\n\n17) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 B3\nBuild Y3 G2\n\n18) ts52: Trade B2 R2 Ts52\n\twil: now this is a lot of yellow!\n\n19) wil: Trade Y3 G3 Wil\n\tts52: Yes, yes it is.\n\n20) ts52: Move R2 Ts52 G2\n\twil: Now I want all the Queens!\n\n21) wil: Discover Y2 G2 R3 R3\n\n22) ts52: Build B2 Ts52\n\n23) wil: Trade Y3 B3 B3\n\n24) ts52: Discover B2 Ts52 G2 Oscar\n\n25) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 B3\nBuild B2 B3\n\twil: It is interesting ...there are factories and then there are queen factories....the regular factory creates extra ships...the queen factory creates extra large ships....through the monopoly race...\n\n26) ts52: Build G1 Ts52\n\tts52: Yeah, this seems to be quickly turning into a slaughter. Why did I think I could challenge you again?\n\n27) wil: Sacrifice B3 B3\nTrade Y3 B3 G2\nTrade Y3 G3 Wil\nTrade Y3 R3 B3\n\twil: Because you've beaten me before with my silly mistakes! But I capitalized on yours way back when I said "oopsie"... you let me corner the yellows... \n\n28) ts52: Discover G1 Ts52 R2 Elmo\n\tts52: Yeah, that was definitely a mistake. Thought I could let you have the smalls, and still build up to trade a medium in time. Now I know just how wrong I was... :)\n\n29) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 R3\nBuild Y3 B3\n\twil: there were three Blue drones...and only two yellow ones...once I had that edge I knew I could keep you from queens...lessons learned from TTT and BC..\n\n30) ts52: Sacrifice G3 Ts52\nBuild G1 Elmo\nBuild G3 Ts52\nBuild G3 Ts52\n\twil: he leaves the bait...if you take it, it is two moves to mate...if you don't it'll be a little longer.\n\twil: it is too funny that I wasted my time building a red... but I can't hardly imagine winning without one!\n\n31) wil: Sacrifice Y3 R3\nMove B2 B3 G2\nMove B2 G2 Ts52\nMove B3 G2 Ts52\nCatastrophe Ts52 B\n\tts52: I'm assuming I bit. But I can't see it. So lets see what happens next...\n\n32) ts52: Sacrifice B2 Robin\nTrade G3 R3 Ts52\nTrade G3 B3 Ts52\n\twil: and now the end is clear (in his best Frank Sinatra voice)\n\tts52: Ah yes, figures I wasn't looking for that... :(\n\n33) wil: Sacrifice Y3 Wil\nMove Y3 B3 Ts52\nMove Y2 B3 Ts52\nMove Y2 R3 Ts52\nCatastrophe Ts52 Y\n\twil: the goal of cornering yellow is the doomsday machine...\r\n\n\twil: thx for the game! I look forward to the next one!!\n\tts52: Good game! I'll try not to let you win so easily next time. ;)\n\twil: by the looks of the end game you almost had me!!\r\n\r\nit was that one hiccup early...I was pretty sure after that it was my game to lose...\n\n\nHomeworlds Online (SDG# 27600)\nVariants: "Hard time"\nStarted: 2015.5.28, Ended: 2015.6.2\nParticipants: ts52 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\tts52: Have a good game!\n\n3) dlwillson: B G1 Dlwillson\n\n4) ts52: Build G1 Ts52\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) ts52: Discover G1 Ts52 B3 Gonze\n\n7) dlwillson: B Y2 Dlwillson\n\tdlwillson: You too!\n\n8) ts52: Build G1 Ts52\n\n9) dlwillson: D Y1 Dlwillson B2 Sky\n\n10) ts52: Build G1 Gonze\n\n11) dlwillson: B G2 Dlwillson\n\n12) ts52: Build G2 Gonze\n\n13) dlwillson: S G3 Dlwillson\nB Y2 Sky\nB Y2 Sky\nB Y3 Dlwillson\n\n14) ts52: Discover G1 Ts52 B3 Grover\n\n15) dlwillson: D Y2 Dlwillson B2 Sea\n\n16) ts52: Sacrifice G2 Gonze\nBuild G2 Ts52\nBuild G2 Grover\n\n17) dlwillson: B G3 Dlwillson\n\n18) ts52: Sacrifice G2 Grover\nBuild G2 Gonze\nBuild G3 Grover\n\n19) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB Y3 Sea\nB Y3 Sea\n\n20) ts52: Trade G2 R2 Ts52\n\n21) dlwillson: T Y3 R3 Sea\n\n22) ts52: Trade G3 Y3 Grover\n\n23) dlwillson: T Y3 R3 Dlwillson\n\n24) ts52: Sacrifice G2 Gonze\nBuild G2 Ts52\nBuild Y3 Grover\n\n25) dlwillson: S Y2 Sky\nM Y1 Sky Grover\nM Y2 Sea Grover\nC Grover Y\n\n26) ts52: Sacrifice G3 Ts52\nBuild G2 Gonze\nBuild G3 Ts52\nBuild G3 Grover\n\n27) dlwillson: M R3 Sea Gonze\n\n28) ts52: Trade G1 Y1 Grover\n\n29) dlwillson: A G2 Gonze\n\n30) ts52: Build Y2 Grover\n\n31) dlwillson: T G2 Y2 Gonze\n\n32) ts52: Sacrifice G3 Ts52\nBuild G1 Gonze\nBuild G2 Grover\nBuild G3 Ts52\n\n33) dlwillson: S G3 Dlwillson\nB Y3 Gonze\nB Y3 Sea\nB G3 Dlwillson\n\n34) ts52: Trade G2 R2 Grover\n\n35) dlwillson: A G1 Gonze\n\n36) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild R1 Grover\n\n37) dlwillson: A G1 Gonze\n\n38) ts52: Sacrifice G2 Ts52\nBuild G2 Gonze\nBuild R1 Ts52\nCatastrophe Gonze Green\n\n39) dlwillson: Sacrifice Y2 Sky\nDiscover Y3 Sea R3 Mars\nMove Y3 Sea Mars\n\n40) ts52: Build Y2 Grover\n\n41) dlwillson: T Y2 G2 Gonze\n\tdlwillson: Huh... Good struggle. I can't quite seem to pluck off your head.\n\n42) ts52: Discover Y2 Grover G1 Robin\n\n43) dlwillson: Sacrifice G3 Dlwillson\nB Y2 Gonze\nB R1 Gonze\nB R2 Dlwillson\n\tts52: :) I screwed up in the beginning letting you monopolize yellow. Just glad I've been able to make you work for it.\n\n44) ts52: Sacrifice Y2 Grover\nDiscover R2 Grover Y2 Bigbird\nMove R2 Ts52 Grover\n\n45) dlwillson: Sacrifice Y3 Mars\nMove Y3 Mars Ts52\nMove Y3 Gonze Ts52\nMove R3 Gonze Ts52\n\n46) ts52: Sacrifice G3 Grover\nBuild G1 Ts52\nBuild R3 Ts52\nBuild Y3 Grover\n\n47) dlwillson: Sacrifice R2 Dlwillson\nAttack R3 Ts52\nAttack G3 Ts52\n\n48) ts52: Sacrifice Y2 Robin\nMove R1 Grover Ts52\nMove Y1 Grover Ts52\nCatastrophe Ts52 Red\nCatastrophe Ts52 Yellow\n\n49) dlwillson: Sacrifice R1 Gonze\nAttack G1 Ts52\n\tts52: Thanks for the game!\n\tdlwillson: Wow! That was a lot of fireworks!\n\tdlwillson: Good game!\n\n\nHomeworlds Online (SDG# 27547)\nVariants: "Unrated, Hard time"\nStarted: 2015.5.28, Ended: 2015.5.29\nParticipants: wil (S), jrandom (N)\nWinner: wil\n\n1) jrandom: Homeworld G2 B3 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) jrandom: Build Y1 Jrandom\n\twil: thanx for the game!\n\n4) wil: Build G1 Wil\n\tjrandom: My first game... there will be blood. Probably mine.\n\twil: Do you want any explanation or hints or just play and learn from losing (this is a great game and I lost dozens...watching different scenarios attack me until I saw them coming)\n\twil: Do you want any explanation or hints or just play and learn from losing (this is a great game and I lost dozens...watching different scenarios attack me until I saw them coming)\n\n5) jrandom: Discover Y1 Jrandom Y1 Fungus\n\n6) wil: Discover G1 Wil B2 B2\n\tjrandom: I think I'll learn by losing (for now), but thank you for the offer. Seems like I have to do things the hard way...\n\n7) jrandom: Build Y1 Jrandom\n\n8) wil: Build G1 Wil\n\n9) jrandom: Discover Y3 Jrandom B1 Horsehair\n\twil: You got it good...I'm making plenty of mistakes!\n\n10) wil: Build G1 Wil\n\n11) jrandom: Trade Y3 G3 Horsehair\n\twil: scary to take your big ship out of you homeworld..\n\n12) wil: Trade G1 R1 Wil\n\tjrandom: I had a brilliant reason for doing it, but I don't remember what it is now.\n\n13) jrandom: Build Y2 Jrandom\n\twil: lol...only a brilliant reason would do!\n\n14) wil: Build G1 Wil\n\n15) jrandom: Trade Y2 R2 Jrandom\n\n16) wil: Build G2 B2\n\n17) jrandom: Build G2 Horsehair\n\n18) wil: Trade G2 Y2 B2\n\n19) jrandom: Build Y2 Jrandom\n\n20) wil: Build Y2 B2\n\n21) jrandom: Move Y2 Jrandom Horsehair\n\n22) wil: Discover Y2 B2 G3 G3\n\n23) jrandom: Move G3 Horsehair Jrandom\n\n24) wil: Sacrifice G3 Wil\nBuild G2 B2\nBuild Y3 B2\nBuild Y3 G3\n\n25) jrandom: Build G3 Jrandom\n\n26) wil: Sacrifice Y3 B2\nMove G1 B2 Horsehair\nMove G1 Horsehair Jrandom\nMove Y3 G3 Horsehair\nCatastrophe Jrandom G\n\n27) jrandom: Build Y3 Horsehair\n\twil: catastrophes....ya gotta watch out for them ... I left the g3 because I knew you couldn't safely build it..\n\n28) wil: Move Y3 Horsehair Jrandom\n\tjrandom: I should probably stop thinking of my spaceships as "spaceships" -- then I wouldn't be so shy about sacrificing them...\n\n29) jrandom: Move Y3 Horsehair B2\n\twil: Nah...that is a good thought...that is why when we capture them we don't lose a ship that capable of interstellar travel and thousands of crew when we attack...however when we cause a castrophe, we are looking further at endgame... that being said...y3s are powerful tools (as are all 3s)\n\n30) wil: Sacrifice R1 Wil\nAttack R2 Jrandom\n\n31) jrandom: Move G2 Horsehair Jrandom\n\n32) wil: Sacrifice R2 Jrandom\nAttack G2 Jrandom\nAttack Y1 Jrandom\n\tjrandom: I'm guessing you're going to send in a Yellow ship to my homeworld and catastrophize.\n\n\tjrandom: Now you can explode me some other way...\n\twil: nah...only catastrophe when I need to...much prefer to enslave your people and take over the ships you offer me! Feel free to challenge as often as you want... I'll be glad to show you various attacks and grows...\n\nHomeworlds Online (SDG# 27582)\nVariants: "Unrated"\nStarted: 2015.5.29, Ended: 2015.6.1\nParticipants: wil (S), jrandom (N)\nWinner: wil\n\n1) jrandom: Homeworld B3 G2 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\tjrandom: Well, you've got me addicted now.\n\twil: Cool. So you've started with Fortress...you get out of your homeworld with one pip pawns...they disappear early so a long game makes it harder for the other side to get in... Folks believe the best start is banker, because my moving out greens you can sacrifice the investment later and build a queen star... I am taking goldilocks...because it isn't right for me to take that start... \n\n3) jrandom: Build Y1 Jrandom\n\n4) wil: Build G1 Wil\n\n5) jrandom: Trade Y1 G1 Jrandom\n\n6) wil: Trade G1 B1 Wil\n\n7) jrandom: Build Y1 Jrandom\n\n8) wil: Build B1 Wil\n\n9) jrandom: Trade Y3 G3 Jrandom\n\n10) wil: Discover B1 Wil G2 G2\n\twil: a. I like the speed of your play...makes me gotta watch so I don't delay you (I've had some games take months as people are so slow to respond) b. I am making a 'b' line to corner a commodity (it is always what I attempt...if I can't do it I simply switch to building and trying to be the first in larger pyramids in any situation. c. is this your first pyramid game? do you own and physical Looney Pyramids?\n\n11) jrandom: Discover G1 Jrandom G1 Connery\n\twil: one of the problems with having a green in your homestar is the fact that you cannot create a factory at home...always at risk of catastrophe\n\tjrandom: I've actually ordered a pile of Looney Pyramids. This is my second game of Homeworlds.\n\n12) wil: Build B2 Wil\n\n13) jrandom: Build Y1 Jrandom\n\twil: lol a pile of pyramids...\n\n14) wil: Build G1 Wil\n\tjrandom: Six stashes!\n\n15) jrandom: Move Y1 Jrandom Connery\n\n16) wil: Discover B2 Wil Y2 Y2\n\twil: This game is one of the best... there are other good ones, but for this former chess player this is my favorite by far. on this site I am enjoying megavolcano, martian chess and blam!\n\n17) jrandom: Build Y1 Jrandom\n\n18) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 Y2\nBuild B3 Y2\n\n19) jrandom: Discover Y1 Connery R2 Moore\n\n20) wil: Build B3 Wil\n\n21) jrandom: Trade Y1 R1 Jrandom\n\n22) wil: Sacrifice B2 Y2\nTrade B3 G3 Y2\nTrade B3 G3 Wil\n\n23) jrandom: Build G2 Jrandom\n\n24) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Y2\nBuild B3 G2\n\n25) jrandom: Discover G2 Jrandom Y1 Lazenby\n\n26) wil: Trade B3 Y3 G2\n\n27) jrandom: Build Y2 Jrandom\n\n28) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 G2\nBuild Y3 G2\n\n29) jrandom: Discover Y1 Moore R1 Dalton\n\n30) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 G2\nBuild B3 Y2\n\n31) jrandom: Pass\n\twil: the power of the factory cannot be overlooked... once the Gs are out...a G3 and any other G is a factory...sacrifice the G3 rebuild it right back where it was, and then build two more ships wherever you can..\n\twil: risky in that I've got 3 Ys and two of them Queens...but they are two star systems away..so you have to sack a y2 to hop a y1 one in to catastrophe...leaving you with only one y...and I have the ability (thru B monopoly and factory) to grow faster. \n\n32) wil: Sacrifice B2 Y2\nTrade B3 R3 Y2\nTrade B3 R3 G2\n\tjrandom: What does "You did not provide a recognized colour name" mean?\n\tjrandom: sacrifice y2 jrandom\r\nmove y1 Moore Connery\r\nmove y1 Connery g2\r\ncatastrophe\n\n33) jrandom: Trade G3 R3 Jrandom\n\twil: s y2 jrandom \r\nm y1 Moore Connery \r\nm y1 Connery g2 \r\nc g2 y (y being the recongized color to catastrophe)\n\twil: I'll wait to see if you wanna back up and change your move...\n\twil: I'll go mix another martini whilst I wait..\n\tjrandom: I just did a different move.\n\n34) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 Y2\nBuild B2 Y2\n\n35) jrandom: Move Y1 Dalton G2\nCatastrophe G2 Y\n\n36) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 G2\nBuild B3 Y2\n\n37) jrandom: Discover G2 Lazenby R2 Horton\n\n38) wil: Sacrifice B2 Y2\nTrade B3 Y3 G2\nTrade B3 Y3 Y2\n\n39) jrandom: Sacrifice Y2 Jrandom\nMove R3 Jrandom Connery\nMove R3 Connery Horton\n\twil: lol great timing on that...next two moves were:\r\ns y3 g2\r\nm g3 y2 lazenby\r\nm g3 y2 dalton\r\nm r3 g2 connery\r\n\r\ns y3 g2\r\nm g3 lazenby jrandom\r\nm g3 dalton jrandom\r\nm r3 connery jrandom\n\twil: that would be the you take one I take three move after that... but now you put me back to work!\n\n40) wil: Sacrifice Y3 Y2\nMove G3 Y2 Connery\nMove R3 Y2 Connery\nMove G3 Connery Jrandom\n\n41) jrandom: Sacrifice Y1 Jrandom\nMove R3 Horton Wil\n\n42) wil: Sacrifice R3 G2\nAttack R1 Jrandom\nAttack G1 Connery\nAttack R3 Wil\n\n\tjrandom: Here, I'll make things even easier for you.\n\twil: a visitor.... It took me a little over ten games to get the handle of this...prolly five times that to understand the intracies... to me it is chess on steroids in space\n\twil: we thank you and your people for donating the fine ships, pilots and technicians... you will all be treated well and given a path to citizenship...\n\nHomeworlds Online (SDG# 27612)\nVariants: "Unrated"\nStarted: 2015.6.1, Ended: 2015.6.3\nParticipants: jrandom (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 R1 G3 *\n\twil: thank you for the game!! What do you think of it so far...frustration level?\n\n2) jrandom: Homeworld B1 G3 Y3\n\tjrandom: I think the worst part is when I suddenly discover that my clever move isn't allowed. E.g. not being able to create ships with a colour that you don't already control.\n\twil: this is an unconventional opening...opening without a blue in the past was considered ludicrous...I am busy proving that otherwise\n\tjrandom: Which means that you need to use blue to trade. Except you can't trade unless there's a ship of the appropriate size.\n\twil: yes you must have the resources to build new ships...the star can't provide...your team must have another ship, a pattern to build it.. that and 'how exactly do I attack?" are common hurdles\n\twil: exactly right again...hence the reason if someone else gets that color...you better as well\n\n3) wil: Build G1 Wil\n\tjrandom: Since we're both doing Goldilocks, this game will probably be quick.\n\twil: oh my...short universe!\n\n4) jrandom: Build Y1 Jrandom\n\n5) wil: Discover G1 Wil B2 B2\n\n6) jrandom: Trade Y1 R1 Jrandom\n\n7) wil: Build G1 Wil\n\n8) jrandom: Build Y1 Jrandom\n\n9) wil: Build G1 B2\n\n10) jrandom: Move R1 Jrandom B2\n\n11) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G2 B2\nPass\n\n12) jrandom: Trade Y1 B1 Jrandom\n\twil: cool...you've got me on the ropes\n\tjrandom: Do I? That seems unlikely.\n\n13) wil: Trade G2 R2 B2\n\n14) jrandom: Trade B1 R1 Jrandom\n\n15) wil: Attack R1 B2\n\n16) jrandom: Build R2 Jrandom\n\n17) wil: Build G2 B2\n\n18) jrandom: Build Y1 Jrandom\n\n19) wil: Trade G2 Y2 B2\n\n20) jrandom: Trade R2 B2 Jrandom\n\n21) wil: Build G2 B2\n\n22) jrandom: Build R2 Jrandom\n\tjrandom: Argh, wrong move!\n\n23) wil: Discover G1 Wil Y2 Y2\n\twil: which move was wrong? the second was much better than the first..\n\tjrandom: I know, but it wasn't the second move I wanted. Oh, well.\n\n24) jrandom: Move R2 Jrandom Y2\n\tjrandom: You now have an opportunity to beat our swords into ploughshares.\n\n25) wil: Discover G1 Y2 Y3 Y3\n\twil: yeah there is that..but starting over isn't in the current plan\n\twil: one of my thoughts is always begin with the end in mind....two ways to win the game...take over all the pieces in the homeworld or destroy both homeworld stars... every move should be thinking about building a flotilla that is preparing one or both scenarios whilst wheedling the others chances of doing the same.. \n\twil: short universes are generally frowned upon as games...but interesting thing about them is that killing half a homeworld provides no advantage\n\n26) jrandom: Move B2 Jrandom Y2\n\n27) wil: Move R2 B2 Y3\n\n28) jrandom: Trade B2 G2 Y2\n\n29) wil: Trade G1 B1 B2\n\n30) jrandom: Build R2 Y2\n\n31) wil: Build R3 B2\n\n32) jrandom: Build R3 Jrandom\n\n33) wil: Build R3 Y3\n\n34) jrandom: Sacrifice Y3 Jrandom\nMove R2 Y2 Y3\nMove R2 Y2 Y3\nMove R1 Jrandom Y2\nCatastrophe Y3 R\n\n35) wil: Build B1 B2\n\n36) jrandom: Build R2 Y2\n\twil: reboot the galaxy\n\n37) wil: Move B1 B2 Wil\n\n38) jrandom: Build Y1 Jrandom\n\n39) wil: Move R1 B2 Y3\n\n40) jrandom: Move Y1 Jrandom Y2\n\n41) wil: Build R2 Y3\n\n42) jrandom: Discover Y1 Y2 R3 Betelgeuse\n\n43) wil: Build R2 B2\n\n44) jrandom: Build Y1 Jrandom\n\n45) wil: Move R2 Y3 Y2\n\n46) jrandom: Attack R2 Y2\n\twil: very nice...the 'if I can't get it neither can you move.' now if that would have been done with a green....that becomes an investment.\n\n47) wil: Move R1 Y3 Y2\nCatastrophe Y2 R\n\n48) jrandom: Move G2 Y2 Jrandom\n\twil: Greetings....we were out traveling and were drawn to the light from your star... \n\twil: it looked familiar to us....so we thought we'd visit...for old times sake. \n\n49) wil: Build Y2 B2\n\n50) jrandom: Discover Y1 Betelgeuse B2 Beetlejuice\n\n51) wil: Discover Y2 B2 G3 G3\n\n52) jrandom: Move G2 Jrandom Beetlejuice\n\n53) wil: Sacrifice G2 B2\nBuild Y2 B2\nBuild Y3 G3\n\n54) jrandom: Trade Y1 G1 Jrandom\n\n55) wil: Sacrifice G2 Wil\nBuild B2 B2\nBuild B3 Wil\n\n56) jrandom: Build G2 Beetlejuice\n\n57) wil: Trade B3 G3 Wil\n\n58) jrandom: Trade G2 R2 Beetlejuice\n\n59) wil: Build G2 B2\n\twil: so much for a short game! i don't have a handle yet but it is about to get real...\n\n60) jrandom: Move R2 Beetlejuice Y3\n\n61) wil: Move B1 B2 Jrandom\n\n62) jrandom: Attack G1 Y3\n\twil: good move...I just saw I missed abusing that situation!\n\n63) wil: Sacrifice Y2 B2\nMove G1 B2 Jrandom\nMove G2 B2 Jrandom\nCatastrophe Jrandom G\n\n64) jrandom: Move R2 Y3 Beetlejuice\n\n65) wil: Sacrifice Y3 G3\nMove B2 B2 Jrandom\nMove B1 Wil B2\nMove B1 B2 Jrandom\nCatastrophe Jrandom B\n\n\tjrandom: In fact, your next move will probably be to sacrifice y3 in g3, then move b2 from b2 to jrandom, then b1 from wil to b2, then b2 to jrandom, then catastrophe blue.\n\twil: exactly...and that is why the b1 moved in...didn't matter if you attacked her...she is still blue.. I was forever without a big three in this match...you should have got and sacked a y2 attacked me directly with your Queen and used my own red star to anihilate me...but you are starting to see things\n\twil: the more you play the more you see...games are all so unique... ya try one gambit, get foiled, move onto another... whattya think? gonna get started up the ladder?\n\nHomeworlds Online (SDG# 27510)\nVariants: "Hard time"\nStarted: 2015.6.2, Ended: 2015.6.14\nParticipants: SilentTitan (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) wil: Build G1 Wil\n\twil: thanx for the game!\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) wil: Trade G1 B1 Wil\n\n6) SilentTitan: Build G1 Silenttitan\n\n7) wil: Discover B1 Wil G2 G2\n\n8) SilentTitan: Trade G1 Y1 Silenttitan\n\n9) wil: Build B1 G2\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) wil: Build B2 G2\n\twil: he wakes up after a four day festival to two hours to go in the game...\n\n\twil: phooey\n\tSilentTitan: So sorry, I do hope the festival was fun. \n\twil: 19 hours of straight sleep...woke up once during it to get off the couch and crawl into bed...without stopping for water or toilet... that...THAT is how fun the festival was..as defined by the recovery period\n\nHomeworlds Online (SDG# 27550)\nStarted: 2015.6.2, Ended: 2015.6.10\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) wil: Build G1 Wil\n\twil: Hava great game...good luck!\n\n4) ts52: Build G1 Ts52\n\tts52: Thanks. You too!\n\n5) wil: Trade G1 Y1 Wil\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build Y2 Wil\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) wil: Discover Y2 Wil B1 B1\n\n10) ts52: Build G1 Ts52\n\n11) wil: Trade Y1 B1 Wil\n\n12) ts52: Trade G1 B1 Ts52\n\n13) wil: Build B2 Wil\n\n14) ts52: Build G1 Ts52\n\n15) wil: Discover B2 Wil G1 G1\n\n16) ts52: Move B1 Ts52 Kermit\n\n17) wil: Trade B1 R1 Wil\n\n18) ts52: Trade G1 R1 Ts52\n\n19) wil: Build R1 Wil\n\n20) ts52: Build R2 Ts52\n\n21) wil: Build R2 Wil\n\n22) ts52: Move R2 Ts52 Kermit\n\n23) wil: Trade R1 Y1 Wil\n\n24) ts52: Build G1 Ts52\n\n25) wil: Build G1 Wil\n\n26) ts52: Build G2 Ts52\n\n27) wil: Move G1 Wil B1\n\n28) ts52: Discover G2 Ts52 B3 Grover\n\n29) wil: Move Y1 Wil G1\n\n30) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n31) wil: Move G1 B1 Grover\nCatastrophe Grover G\n\n32) ts52: Build R1 Kermit\n\n33) wil: Move R1 Wil G1\n\n34) ts52: Build B1 Kermit\n\n35) wil: Build B2 G1\n\n36) ts52: Discover B1 Kermit G1 Robin\n\n37) wil: Trade B2 G2 G1\n\n38) ts52: Discover G1 Ts52 Y3 Bigbird\n\n39) wil: Build G2 Wil\n\n40) ts52: Move R1 Kermit Robin\n\n41) wil: Discover Y2 B1 G2 G2\n\n42) ts52: Sacrifice G3 Ts52\nBuild G3 Bigbird\nBuild R2 Robin\nBuild R3 Ts52\n\n43) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 Wil\nBuild R3 G1\n\n44) ts52: Trade R3 Y3 Ts52\n\n45) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 G2\nBuild Y3 G1\n\n46) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild R3 Ts52\nBuild B1 Robin\n\n47) wil: Sacrifice Y2 G2\nDiscover Y1 G1 B3 B3\nMove R1 G1 B3\n\n48) ts52: Sacrifice Y3 Ts52\nMove G1 Bigbird G1\nMove G3 Bigbird G1\nMove R2 Robin B3\nCatastrophe G1 Green\n\n49) wil: Sacrifice G2 Wil\nBuild Y2 B3\nBuild Y3 B3\n\n50) ts52: Build R3 Robin\n\n51) wil: Build Y3 G2\n\n52) ts52: Build Y3 Kermit\n\n53) wil: Sacrifice Y3 G2\nMove R3 Wil Robin\nMove R3 Robin B3\nMove R3 B3 Ts52\n\n54) ts52: Sacrifice R2 Kermit\nAttack R3 Ts52\nAttack R1 B3\n\n55) wil: Sacrifice Y3 B3\nMove R2 Wil Robin\nMove R2 Robin B3\nMove R2 B3 Ts52\nCatastrophe Ts52 R\n\twil: the excrement is about to impact the rotating propellers....\n\n\twil: it was a surprising conclusion to me.... I was not on that path at all...\n\tts52: Indeed, I was struggling for a while. Thanks for the game!\n\twil: Heck, I thought I was behind, trying to play catchup on reds...he's cornering blues, can i stayout of that economy, yellows big yellows are coming what do I do... the y2/g2 trade was unique I thought and my turning point... trading for a g2 to sack when I can't have a factory.. I'm putting that in the memory banks... thanx for the game! I look forward to the next one...challenge me anytime...heck 10 times...I like playing this thing!\n\tts52: Funny to think we both felt behind... I too look forward to our next match.\n\nHomeworlds Online (SDG# 27635)\nVariants: "Hard time"\nStarted: 2015.6.2, Ended: 2015.6.15\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\twil: thx for the game!\n\n2) wil: Homeworld Y2 B1 G3\n\n3) dlwillson: B G1 Dlwillson\n\twil: now I gotta be on my toes and not play reckless, good luck. \n\n4) wil: Build G1 Wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: Build Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) wil: Discover Y1 Wil G3 G3\n\n11) dlwillson: Build Y3 Field\n\n12) wil: Build Y3 G3\n\n13) dlwillson: D Y1 Field B3 Sky\n\twil: I got behind on this race!\n\n14) wil: Move Y3 G3 Field\n\n15) dlwillson: T Y1 R1 Sky\n\n16) wil: Move Y3 Field Sky\n\tdlwillson: Sorry I forgot about this game for a bit!\n\tdlwillson: Hey! Don't you time out on me, Wil!\n\twil: just woke up from a four day festival\n\n17) dlwillson: Move Y3 Field Sky\n\n18) wil: Discover Y3 Sky G2 G2\n\tdlwillson: Nice! Burning man, or something?\n\n19) dlwillson: B G1 Dlwillson\n\n20) wil: Build G1 Wil\n\n21) dlwillson: D G1 Dlwillson B2 Sea\n\n22) wil: Trade Y2 G2 Wil\n\n23) dlwillson: Sacrifice Y3 Sky\nMove G3 Dlwillson Sea\nMove G3 Sea Sky\nMove G3 Sky Wil\nCatastrophe Wil G\n\twil: well that was both disappointing and appropriate!\n\tdlwillson: What happened? I waited and waited, hoping you would take it back...\n\twil: I couldn't take it back...not in the ladder....wouldn't be prudent...not when it took me that long to see it.\n\n\nHomeworlds Online (SDG# 27625)\nVariants: "Unrated"\nStarted: 2015.6.3, Ended: 2015.7.12\nParticipants: jrandom (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\n2) jrandom: Homeworld B1 G2 Y3\n\n3) wil: Build G1 Wil\n\n4) jrandom: Build Y1 Jrandom\n\n5) wil: Trade G1 Y1 Wil\n\n6) jrandom: Build Y2 Jrandom\n\n7) wil: Build Y2 Wil\n\n8) jrandom: Trade Y2 G2 Jrandom\n\n9) wil: Discover Y2 Wil B2 B2\n\n10) jrandom: Build G1 Jrandom\n\n11) wil: Trade Y1 R1 Wil\n\n12) jrandom: Discover G2 Jrandom R3 Abalone\n\n13) wil: Build R1 Wil\n\n14) jrandom: Discover Y1 Jrandom B3 Bartleby\n\n15) wil: Discover R1 Wil G2 G2\n\n16) jrandom: Trade Y1 G1 Bartleby\n\n17) wil: Move Y2 B2 Bartleby\n\n18) jrandom: Build Y1 Jrandom\n\n19) wil: Sacrifice R1 G2\nAttack G1 Bartleby\n\n20) jrandom: Trade Y1 R1 Jrandom\n\n21) wil: Build G1 Wil\n\n22) jrandom: Build Y1 Jrandom\n\twil: headed off camping for a few days soon... into Pennsylvania...pocono mtns eastern US...where abouts are you?\n\tjrandom: About 40 miles west of Toronto.\n\n23) wil: Discover G1 Wil Y2 Y2\n\twil: I've a ton of family in Rochester...just crossed that little lake...\n\n24) jrandom: Move Y1 Jrandom Abalone\n\n25) wil: Build G2 Y2\n\n26) jrandom: Build G3 Abalone\n\n27) wil: Build G3 Wil\n\n28) jrandom: Trade G1 B1 Jrandom\n\n29) wil: Move G2 Y2 Abalone\n\n30) jrandom: Move G2 Abalone Y2\n\n31) wil: Move G1 Y2 Abalone\n\n32) jrandom: Attack G2 Abalone\n\tjrandom: move g2 Abalone y2\n\n33) wil: Sacrifice G3 Wil\nBuild G1 Abalone\nBuild R1 Wil\nBuild G3 Wil\nCatastrophe Abalone G\n\n34) jrandom: Build R2 Jrandom\n\n35) wil: Discover R1 Wil G2 G2\n\n36) jrandom: Move R2 Jrandom Bartleby\n\n37) wil: Sacrifice R1 G2\nAttack R2 Bartleby\n\n38) jrandom: Build G1 Y2\n\n39) wil: Discover G3 Wil B2 B2\n\n40) jrandom: Move Y1 Abalone Y2\n\n41) wil: Build G1 B2\n\n42) jrandom: Build R1 Jrandom\n\n43) wil: Build G2 Bartleby\n\n44) jrandom: Discover G1 Y2 G3 Cooper\n\n45) wil: Sacrifice G3 B2\nBuild G3 B2\nBuild R2 Bartleby\nBuild Y1 Bartleby\n\n46) jrandom: Build Y2 Jrandom\n\n47) wil: Sacrifice G3 B2\nBuild G3 B2\nBuild R2 Wil\nBuild R3 Wil\n\n48) jrandom: Build R3 Jrandom\n\n49) wil: Move R2 Bartleby Jrandom\nCatastrophe Jrandom R\n\n50) jrandom: Trade Y3 R3 Jrandom\n\n51) wil: Move Y1 Bartleby B2\n\twil: I can just move on of my reds in and catastrophe all the reds in your homeworld...are you aware of this?\n\twil: m r2 bartleby jrandom\r\nc jrandom r\n\twil: I'm waiting for a response before I move...or if it gets upto the last couple days I'll just go ahead...\n\twil: another day...and I'll go ahead and move...\n\n52) jrandom: Build Y3 Jrandom\n\n53) wil: Sacrifice G3 B2\nBuild G3 B2\nBuild Y3 B2\nBuild Y3 Bartleby\n\n54) jrandom: Move Y2 Jrandom Cooper\n\n55) wil: Move R3 Wil Y2\n\n56) jrandom: Move G2 Y2 Cooper\n\n57) wil: Move G1 B2 Cooper\nCatastrophe Cooper G\n\n58) jrandom: Trade Y3 G3 Jrandom\n\n59) wil: Sacrifice Y2 Bartleby\nMove G1 Bartleby Jrandom\nMove G2 Bartleby Jrandom\nCatastrophe Jrandom G\n\n60) jrandom: Trade B1 G1 Jrandom\n\twil: Oh no, my little builder came to the convention and it was too much... \n\n61) wil: Sacrifice Y3 B2\nMove Y3 Bartleby Jrandom\nMove G3 B2 Bartleby\nMove G3 Bartleby Jrandom\n\n62) jrandom: Attack G3 Jrandom\n\n63) wil: Sacrifice R3 Y2\nAttack G3 Jrandom\nAttack R3 Jrandom\nAttack G1 Jrandom\n\n\twil: thx for the game....challenge me anytime...\n\nHomeworlds Online (SDG# 27632)\nStarted: 2015.6.3, Ended: 2015.6.11\nParticipants: ts52 (S), jrandom (N)\nWinner: ts52\n\n1) jrandom: Homeworld B1 G3 Y3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) jrandom: Build Y1 Jrandom\n\n4) ts52: Build G1 Ts52\n\n5) jrandom: Trade Y1 R1 Jrandom\n\n6) ts52: Trade G1 B1 Ts52\n\n7) jrandom: Build Y1 Jrandom\n\n8) ts52: Build B2 Ts52\n\n9) jrandom: Trade Y1 G1 Jrandom\n\n10) ts52: Trade B2 R2 Ts52\n\n11) jrandom: Build Y1 Jrandom\n\n12) ts52: Build B2 Ts52\n\n13) jrandom: Trade Y3 B3 Jrandom\n\n14) ts52: Build G1 Ts52\n\n15) jrandom: Build B2 Jrandom\n\n16) ts52: Discover B2 Ts52 G3 Kermit\n\n17) jrandom: Trade B3 Y3 Jrandom\n\n18) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\nBuild B3 Ts52\n\n19) jrandom: Discover G1 Jrandom R2 Artichoke\n\n20) ts52: Trade B3 Y3 Kermit\n\n21) jrandom: Sacrifice Y1 Jrandom\nMove G1 Artichoke Jrandom\n\n22) ts52: Build B3 Kermit\n\n23) jrandom: Build B3 Jrandom\n\n24) ts52: Trade B3 G3 Ts52\n\n25) jrandom: Discover B2 Jrandom Y2 Artichoke\n\n26) ts52: Trade B3 R3 Kermit\n\n27) jrandom: Build R1 Jrandom\n\n28) ts52: Move R3 Kermit Artichoke\n\n29) jrandom: Discover B2 Artichoke Y3 Bartleby\n\n30) ts52: Build B3 Kermit\n\n31) jrandom: Build Y1 Jrandom\n\n32) ts52: Discover G1 Ts52 B3 Gonzo\n\n33) jrandom: Discover R1 Jrandom Y2 Cummerbund\n\n34) ts52: Move B2 Kermit Artichoke\n\n35) jrandom: Move G1 Jrandom Cummerbund\n\n36) ts52: Trade B3 R3 Kermit\n\n37) jrandom: Move G1 Cummerbund Bartleby\n\n38) ts52: Build B3 Kermit\n\n39) jrandom: Move R1 Cummerbund Gonzo\n\n40) ts52: Move R2 Ts52 Gonzo\n\n41) jrandom: Move B2 Bartleby Ts52\n\n42) ts52: Sacrifice R2 Gonzo\nAttack R1 Gonzo\nAttack B2 Ts52\n\n43) jrandom: Sacrifice Y3 Jrandom\nMove B3 Jrandom Artichoke\nMove B3 Artichoke Bartleby\nMove B3 Bartleby Ts52\nCatastrophe Ts52 B\n\n44) ts52: Move R3 Artichoke Jrandom\n\n45) jrandom: Build R1 Jrandom\n\n46) ts52: Sacrifice R3 Kermit\nAttack R1 Jrandom\nAttack R1 Jrandom\nAttack Y1 Jrandom\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 27440)\nVariants: "Hard time"\nStarted: 2015.6.10, Ended: 2015.6.11\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\tSimon: Hi. I hope you don't mind bashing a newb. :-) I've played 5-10 games IRL.\n\n2) wil: Homeworld B3 Y2 G3\n\twil: no problem at all... If you have any questions...don't hesitate to ask!\n\n3) Simon: Build G1 Simon\n\tSimon: Alright, cool. Have fun!\n\n4) wil: Build G1 Wil\n\n5) Simon: Trade G1 Y1 Simon\n\n6) wil: Trade G1 R1 Wil\n\n7) Simon: Build G1 Simon\n\twil: bashing a newb.... we'll see how well meet that goal...\n\n8) wil: Build R1 Wil\n\n9) Simon: Discover G1 Simon B2 Blue2\n\n10) wil: Discover R1 Wil Y1 Y1\n\n11) Simon: Build G1 Simon\n\n12) wil: Sacrifice G3 Wil\nBuild R2 Wil\nBuild R2 Y1\nBuild R2 Y1\n\n13) Simon: Build Y1 Simon\n\n14) wil: Trade R2 G2 Wil\n\n15) Simon: Build Y2 Simon\n\twil: the bashing will soon commence...\n\n16) wil: Sacrifice G2 Wil\nBuild R2 Wil\nBuild R3 Wil\n\tSimon: I didn't see the G3 sacrifice, and the counter-G3-sac wouldn't have cut it :)\n\n17) Simon: Move Y1 Simon Blue2\n\twil: you are correct... gotta watch out for hoarding/monopolizing any economy...\n\n18) wil: Trade R3 G3 Wil\n\n19) Simon: Sacrifice G3 Simon\nBuild Y2 Blue2\nBuild Y3 Blue2\nBuild Y3 Simon\n\n20) wil: Move R1 Y1 Blue2\n\n21) Simon: Trade Y3 R3 Simon\n\n22) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 Y1\nPass\n\twil: nice choice!\n\tSimon: Is there a ko rule on SDG? The wiki didn't mention anything. What's the designer's official stance on ko?\n\tSimon: > nice choice!\r\nthanks :) it's gonna be very expensive defense though\n\n23) Simon: Build Y3 Simon\n\twil: ko?\n\tSimon: I mean a rule to prevent repetition. (taking the same ship using red back and forth, with neither player wanting to break the cycle.)\n\n24) wil: Trade R3 Y3 Wil\n\twil: ah....that hasn't happened to me yet in 200 games... but I sure blew this game\r\n\n\tSimon: > that hasn't happened to me yet in 200 games\r\nokay, thanks. I thought it would come up more often. :)\r\n> but I sure blew this game\r\nNow as you say it, I see how I missed the one-move win (sac Y3, move R3 to wil)... I'd rather not undo, because I didn't see it. I don't see a forced win for me right now :)\n\n25) Simon: Move R3 Simon Blue2\n\n26) wil: Move R2 Y1 Blue2\n\n27) Simon: Sacrifice Y2 Simon\nDiscover R3 Blue2 G1 Green1\nMove Y2 Blue2 Green1\n\n28) wil: Trade R2 G2 Wil\n\n29) Simon: Build R2 Green1\n\n30) wil: Build R3 Wil\n\n31) Simon: Sacrifice R2 Green1\nAttack R2S Blue2\nAttack R1S Blue2\n\n32) wil: Trade R1 B1 Wil\n\n33) Simon: Build Y2 Green1\n\n34) wil: Build G2 Wil\n\n35) Simon: Trade R1 B1 Blue2\n\twil: my blunders have got me in full regroup mode...\n\n36) wil: Move G2 Wil Y1\n\tSimon: small blue ship seems better for now than diving in with all the yellows. let's see whether I should have been greedy instead.\n\n37) Simon: Discover Y3 Blue2 R1 Red1\n\n38) wil: Move R3 Y1 Blue2\n\n39) Simon: Move B1 Blue2 Red1\n\twil: yes there are times when we have no great move...and have to not make a bad one..\n\n40) wil: Attack R2 Blue2\n\n41) Simon: Sacrifice Y1 Blue2\nMove G1 Blue2 Red1\n\n42) wil: Trade R3 G3 Blue2\n\n43) Simon: Build G2 Simon\n\n44) wil: Build G3 Y1\n\n45) Simon: Build G3 Red1\n\n46) wil: Discover Y3 Wil R1 R1\n\n47) Simon: Sacrifice G3 Red1\nBuild G3 Red1\nBuild Y1 Red1\nBuild B1 Red1\n\n48) wil: Sacrifice G3 Y1\nBuild G3 Y1\nBuild R2 Y1\nBuild R3 Blue2\n\n49) Simon: Sacrifice Y3 Red1\nMove B1 Red1 Wil\nMove B1 Red1 Wil\nMove Y2 Green1 Wil\nCatastrophe Wil B\n\n50) wil: Sacrifice Y3 R1\nMove G3 Blue2 Green1\nMove R3 Blue2 Green1\nDiscover G2 Wil Y3 Y3\n\twil: sweet! nice move...and enough set up for the doomsday machine...great job!\n\n51) Simon: Sacrifice Y2 Green1\nMove Y1 Red1 Wil\nMove Y1 Simon Wil\nCatastrophe Wil Y\n\tSimon: Thanks, I believe it was the only variation that was guarantueed to work in 2 turns. Now I don't know whether I lucked out in the middlegame, or if 'newb' doesn't match -- in any case, I learned new things, and have offer a rematch. :-)\n\twil: Good game...now challenge me again so I can get a reprieve!!\n\twil: or buttwhipped...\n\tSimon: Good game!\n\n\nHomeworlds Online (SDG# 27671)\nStarted: 2015.6.11, Ended: 2015.6.20\nParticipants: Simon (S), ts52 (N)\nWinner: Simon\n\n1) ts52: Homeworld Y3 B2 G3\n\tSimon: Hi. It's my second game on SDG. I've played 5 to 10 times IRL, and am doing okay in my first online one. Enjoy the game!\n\tts52: Welcome! Feel free to ask any questions you like. Since you're new, I wont play the arguably stronger opening, as per star captain etiquette. ;)\n\n2) Simon: Homeworld B3 R1 G3\n\tts52: Which is 'h y1 b2 g3' or 'h b1 y2 g3'.\n\n3) ts52: Build G1 Ts52\n\n4) Simon: Build G1 Simon\n\tSimon: Yeah, I've read about the ideas behind it. It'll be fun to experiment with later. :-)\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Simon: Trade G1 Y1 Simon\n\n7) ts52: Build B1 Ts52\n\n8) Simon: Build G1 Simon\n\n9) ts52: Discover B1 Ts52 G1 Robin\n\n10) Simon: Discover G1 Simon B2 Sea\n\n11) ts52: Build B1 Robin\n\n12) Simon: Build G1 Sea\n\n13) ts52: Build B2 Ts52\n\n14) Simon: Build G2 Simon\n\n15) ts52: Build B3 Robin\n\n16) Simon: Sacrifice G3 Simon\nBuild G2 Simon\nBuild G2 Simon\nBuild G3 Sea\n\n17) ts52: Build G3 Ts52\n\n18) Simon: Trade G3 Y3 Sea\n\n19) ts52: Trade B3 Y3 Robin\n\n20) Simon: Sacrifice G2 Simon\nBuild G2 Sea\nBuild G3 Simon\n\n21) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Robin\nBuild Y1 Robin\n\n22) Simon: Trade G2 R2 Simon\n\n23) ts52: Discover B3 Robin G2 Oscar\n\tSimon: I considered destroying both of the non-homeworlds, but then you'd take the first turn with a slightly stronger setup.\n\n24) Simon: Discover G1 Sea B3 Snatch\n\n25) ts52: Discover G3 Ts52 R1 Elmo\n\n26) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 Simon\nBuild Y2 Sea\n\n27) ts52: Trade B2 R2 Ts52\n\n28) Simon: Sacrifice Y2 Sea\nDiscover G2 Simon Y2 Melon\nMove R2 Simon Melon\n\n29) ts52: Move Y1 Robin Oscar\n\n30) Simon: Sacrifice G2 Sea\nBuild G2 Simon\nBuild Y2 Sea\n\n31) ts52: Build Y2 Oscar\n\n32) Simon: Trade Y2 B2 Sea\n\n33) ts52: Build Y2 Robin\n\n34) Simon: Trade Y1 R1 Simon\n\n35) ts52: Trade B3 R3 Oscar\n\n36) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild R2 Melon\nBuild R3 Melon\n\n37) ts52: Sacrifice G3 Ts52\nBuild G3 Elmo\nBuild B3 Robin\nBuild R3 Ts52\n\n38) Simon: Move B2 Sea Robin\nCatastrophe Robin Blue\n\n39) ts52: Move Y2 Oscar Elmo\n\n40) Simon: Move R2 Melon Snatch\n\n41) ts52: Move G3 Elmo Snatch\n\n42) Simon: Sacrifice Y1 Simon\nMove R2 Snatch Sea\n\n43) ts52: Sacrifice G3 Snatch\nBuild G3 Elmo\nBuild Y1 Elmo\nBuild Y1 Oscar\n\tSimon: hmm, I should have chosen the route via a yellow star instead >_>\n\n44) Simon: Trade G1 B1 Sea\n\n45) ts52: Discover G3 Elmo B2 Gonzo\n\n46) Simon: Discover B1 Sea G1 Nan\n\n47) ts52: Move B1 Ts52 Robin\n\n48) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B1 Nan\nBuild B3 Nan\n\n49) ts52: Move G3 Elmo Gonzo\n\n50) Simon: Move R3 Melon Elmo\n\n51) ts52: Sacrifice Y3 Robin\nMove G3 Gonzo Simon\nMove G3 Gonzo Simon\nMove R2 Ts52 Robin\nCatastrophe Simon Green\n\n52) Simon: Move Y3 Sea Simon\n\n53) ts52: Build Y3 Robin\n\n54) Simon: Attack Y2 Elmo\n\n55) ts52: Move Y3 Robin Melon\n\n56) Simon: Move R2 Melon Nan\n\n57) ts52: Move R2 Robin Melon\n\n58) Simon: Sacrifice R2 Sea\nAttack R2 Melon\nAttack Y1 Elmo\n\n59) ts52: Build R2 Oscar\n\n60) Simon: Move R2 Melon Nan\n\n61) ts52: Trade R3 G3 Ts52\n\n62) Simon: Move G2 Melon Elmo\n\n63) ts52: Move R3 Oscar Robin\n\n64) Simon: Build G2 Elmo\n\n65) ts52: Discover Y2 Robin B2 Grover\n\n66) Simon: Trade B3 G3 Nan\n\n67) ts52: Sacrifice Y1 Oscar\nMove R3 Robin Ts52\n\n68) Simon: Trade B1 Y1 Nan\n\n69) ts52: Build R3 Oscar\n\n70) Simon: Sacrifice G2 Elmo\nBuild G2 Snatch\nBuild G3 Snatch\n\n71) ts52: Move Y3 Melon Robin\n\n72) Simon: Sacrifice G3 Snatch\nBuild G3 Snatch\nBuild Y2 Nan\nBuild B1 Nan\n\n73) ts52: Sacrifice Y2 Grover\nMove R2 Oscar Elmo\nMove R3 Oscar Elmo\nCatastrophe Elmo Red\n\n74) Simon: Trade G2 Y2 Snatch\n\n75) ts52: Build Y1 Robin\n\n76) Simon: Build Y2 Snatch\n\n77) ts52: Build B2 Robin\n\n78) Simon: Move Y2 Snatch Robin\n\n79) ts52: Trade Y3 R3 Robin\n\n80) Simon: Move Y2 Robin Ts52\n\n81) ts52: Attack Y2 Ts52\n\n82) Simon: Sacrifice Y2 Snatch\nMove Y1 Nan Ts52\nMove Y2 Nan Ts52\nCatastrophe Ts52 Y\n\n83) ts52: Move B1 Robin Oscar\n\n84) Simon: Trade G3 Y3 Nan\n\n85) ts52: Build B2 Robin\n\n86) Simon: Trade Y3 B3 Simon\n\n87) ts52: Build G2 Ts52\n\n88) Simon: Sacrifice Y3 Nan\nMove B1 Nan Ts52\nMove B1 Nan Ts52\nMove B3 Simon Ts52\nCatastrophe Ts52 B\n\n\tSimon: Hm, this may have looked like an easy endgame; I've learned something in the opening though. <_< And have to offer you a rematch to play against the stronger homeworld.\n\tts52: Well played. Thanks for the game. I look forward to the rematch.\n\tSimon: Thanks for the game!\n\nHomeworlds Online (SDG# 27676)\nStarted: 2015.6.11, Ended: 2015.6.13\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: Homeworld Y3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) wil: Build G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 B1 Wil\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build B1 Wil\n\n8) ts52: Build Y1 Ts52\n\n9) wil: Discover B1 Wil G2 G2\n\n10) ts52: Discover Y1 Ts52 G3 Kermit\n\n11) wil: Build B2 G2\n\n12) ts52: Build Y2 Ts52\n\n13) wil: Trade B2 R2 G2\n\n14) ts52: Trade Y2 R2 Ts52\n\n15) wil: Sacrifice G3 Wil\nBuild B2 Wil\nBuild B2 G2\nBuild B3 G2\n\n16) ts52: Build Y2 Kermit\n\n17) wil: Trade B3 Y3 G2\n\n18) ts52: Build Y2 Ts52\n\n19) wil: Build Y2 G2\n\n20) ts52: Discover Y2 Ts52 G3 Oscar\n\n21) wil: Discover B2 G2 Y3 Y3\n\n22) ts52: Sacrifice Y2 Kermit\nMove Y1 Kermit G2\nMove Y2 Oscar G2\nCatastrophe G2 Yellow\n\n23) wil: Build B3 G2\n\n24) ts52: Build Y1 Ts52\n\twil: I was wondering if you were willing to pull that trigger...poor kermit and oscar...\n\tts52: Yeah, not sure if it'll save me, but I figured it was worth the shot.\n\n25) wil: Trade B3 Y3 G2\n\n26) ts52: Discover Y1 Ts52 G3 Kermit\n\n27) wil: Build B3 G2\n\n28) ts52: Build Y2 Kermit\n\n29) wil: Build Y2 G2\n\n30) ts52: Build R1 Ts52\n\n31) wil: Move B3 G2 Kermit\n\n32) ts52: Build Y2 Ts52\n\n33) wil: Sacrifice Y3 G2\nMove B3 Kermit Ts52\nMove Y2 G2 Kermit\nMove Y2 Kermit Ts52\nCatastrophe Ts52 Y\n\n34) ts52: Attack B3 Ts52\n\n35) wil: Build B3 G2\n\n36) ts52: Sacrifice Y1 Kermit\nMove B3 Ts52 Wil\nCatastrophe Wil Blue\n\tts52: Thanks for the game. I wasn't sure I was going to get away with that one.\n\twil: lol....what a space cadet I was...\n\n\nHomeworlds Online (SDG# 27668)\nVariants: "Hard time"\nStarted: 2015.6.11, Ended: 2015.6.14\nParticipants: Simon (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 R1 G3 *\n\tSimon: Have fun!\n\n2) Simon: Homeworld R2 B1 G3\n\n3) wil: Build G1 Wil\n\n4) Simon: Build G1 Simon\n\twil: experimental opening.... \n\n5) wil: Discover G1 Wil B2 B2\n\n6) Simon: Trade G1 Y1 Simon\n\n7) wil: Build G1 B2\n\n8) Simon: Build Y1 Simon\n\n9) wil: Trade G1 Y1 B2\n\n10) Simon: Discover Y1 Simon G3 G3\n\n11) wil: Build Y2 B2\n\n12) Simon: Build Y2 Simon\n\n13) wil: Trade Y1 R1 B2\n\n14) Simon: Trade Y2 R2 Simon\n\n15) wil: Build R1 B2\n\n16) Simon: Move R2 Simon G3\n\n17) wil: Trade R1 B1 B2\n\n18) Simon: Build Y1 Simon\n\n19) wil: Build B1 B2\n\n20) Simon: Build Y2 G3\n\n21) wil: Discover B1 B2 Y3 Y3\n\n22) Simon: Discover Y1 Simon B3 B3\n\n23) wil: Discover G1 B2 Y3 Why3\n\n24) Simon: Build Y2 Simon\n\n25) wil: Move B1 B2 Wil\n\n26) Simon: Trade Y2 R2 Simon\n\n27) wil: Build B2 Wil\n\n28) Simon: Move R2 Simon Y3\n\n29) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B3 Y3\nBuild B3 Wil\n\n30) Simon: Sacrifice R2 G3\nAttack B2 Y3\nAttack B1 Y3\n\twil: I know you thought my little trade ship was easy pickins....but he has friends.\n\tSimon: nice, didn't see it at all. In general, blue ships are much more important than I've always thought\n\n31) wil: Trade B3 G3 Wil\n\n32) Simon: Discover R2 Y3 G2 Geetoo\n\n33) wil: Trade B3 R3 Y3\n\n34) Simon: Move B2 Y3 Simon\n\n35) wil: Attack B1 Y3\n\n36) Simon: Build G1 Simon\n\n37) wil: Build B3 Wil\n\n38) Simon: Move B2 Simon Why3\n\n39) wil: Trade B2 G2 Wil\n\n40) Simon: Build R1 Geetoo\n\n41) wil: Sacrifice G3 Wil\nBuild R2 B2\nBuild R3 B2\nBuild R3 Y3\n\n42) Simon: Build Y2 Simon\n\n43) wil: Move R3 B2 Why3\n\tSimon: I feel this is a lost game, with 1 large against 4. I should have went for the 3 red ships, even if it's pricey. >_>\n\twil: Yeah, I don't have a closing argument yet...but it is a mater of time....although mistakes are made....when I am this far behind I still don't quit because folks are known to be focused on an end game and make a huge blunder.\n\n44) Simon: Move B2 Why3 Geetoo\n\tSimon: Alright, then I'll play on happily. :)\n\n45) wil: Move R3 Why3 Geetoo\n\twil: no force...you can resign if you wish...the other thing I liked about sticking it out was watching the end game...watching how others beat me (ts52 just slaughtered me, like our old game..I was blinded by my scheme and missed the obvious)\n\n46) Simon: Build B2 Geetoo\n\n47) wil: Sacrifice R3 Y3\nAttack R2 Geetoo\nAttack R1 Geetoo\nAttack B2 Geetoo\n\n\tSimon: This sac is the safest play. Thanks for the game. :-)\n\twil: Yeah...that pretty much sealed the deal...look forward to another whenever you are upto it.\n\nHomeworlds Online (SDG# 27644)\nVariants: "Unrated"\nStarted: 2015.6.14, Ended: 2015.6.28\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld G3 B2 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\tdragon76n: Hello Wil, I'm new to Homeworlds. I just read the rules of the game today on http://www.looneylabs.com/rules/homeworlds and was hoping to find an open game here that would be willing to show me the ropes. \n\twil: I'm glad to help...just about my favorite game! So now openings, folks think banker is best, you took fortress so I'll take goldilocks...\n\n3) dragon76n: Build Y1 Dragon76n\n\twil: Having a green star in your homeworld makes it hard to have a factory later..as you can't have one there...reduces opportunity.\n\n4) wil: Build G1 Wil\n\tdragon76n: Ok. Thanks for the tip about The Factory. I'll try to keep that in mind for the future. \n\n5) dragon76n: Trade Y1 B1 Dragon76n\n\twil: Are you a chess player? What is your favorite game?\n\tdragon76n: I play chess once in a while. My favorite game is Conquest of the Empire, but it is tough for me to find people who will play. I play Dominion and Settlers of Catan the most with my wife and son.\n\n6) wil: Trade G1 B1 Wil\n\tdragon76n: At this point I'm not even sure how I should be expanding. I'm just trying to read over the instructions to try to grasp the basic ideas, so any tips you're willing to give a "Junior Officer" is much appreciated, even if they don't come until after you are in position to destroy me. \n\twil: You've picked perfectly...the shortest stack...tis the game to get to the big pieces...\n\n7) dragon76n: Build B2 Dragon76n\n\twil: You are first working to build a variety of ships for use later, to build new outposts with protection and diversity\n\twil: Begin with the end in mind...there are two ways to win... take over the ships in the other homeworld or destroy the stars...\n\n8) wil: Build B2 Wil\n\n9) dragon76n: Trade B2 Y2 Dragon76n\n\n10) wil: Trade B1 R1 Wil\n\tdragon76n: Is it common for players to build up a lot at the homeworld before moving away to another star? \n\n11) dragon76n: Trade Y3 R3 Dragon76n\n\twil: nah...sometimes build two and move one...or you may simply move one straight out...depends\n\n12) wil: Discover B2 Wil G2 G2\n\tdragon76n: Based on what I was reading in the rules, bigger yellow ships seem to be able to move further than smaller ones, but I didn't see anything in the "Move" section that would confirm that. \n\twil: they don't...sacking a y3 allows you 3 moves with other ships...like sacrificing a r2 allows you to attack two ships and sacking a g1 build one, sacking a b3 changing the colors of 3 ships...\n\n13) dragon76n: Discover Y2 Dragon76n Y1 Yellone\n\tdragon76n: Ok. Thanks for the clarification. \n\n14) wil: Build R1 Wil\n\n15) dragon76n: Build B1 Dragon76n\n\n16) wil: Build B2 G2\n\tdragon76n: I guess I just tried a couple illegal plays, trying to build ships that I couldn't.\n\twil: you must have one of the ships in the star system you want to build... it is like you need an example to build another one...\n\n17) dragon76n: Move Y2 Yellone Dragon76n\n\twil: If you are confused...don't hesitate to ask questions...right there taking the last blue pawn, you opened up blue drones for me...and in the safety of you not being able to build another without a catastrophe\n\n18) wil: Trade B2 Y2 G2\n\tdragon76n: Ok. Thanks again. Is it possible for you to get to my Homeworld in one turn if there is no connecting star? For example, if you had a Y3 ship that you Sacrifice, would it allow you to do a discovery with one ship and then move past there with another? I don't think that's allowed since each "pip" only allows one ship from the current star to move to the next star, right? \n\twil: yes and no...the star system is created momentarily for you to land and then disappears again after you leave it. \r\n\r\ns y3 hw\r\nm g1 hw existingstar\r\nd g1 existingstar newstar\r\nm g1 newstar opponentHW\n\n19) dragon76n: Discover B1 Dragon76n G1 Greeone\n\twil: and now suddenly your question is appropriate!\n\n20) wil: Build R1 Wil\n\tdragon76n: So a Sacrifice doesn't have to be applied at the same location?\n\twil: No...once you sac something you provide that power (trade, build, attack, move) anywhere on the board to any piece regardless of its color or the color of its star system, tis galaxy wide (for your ships)\n\n21) dragon76n: Build R2 Dragon76n\n\n22) wil: Move R1 Wil G2\n\tdragon76n: Ok. Thanks for the info. I'm glad to be playing against you for my first game. Too many times I've tried playing games online with people who have no tolerance for new players. I tried playing some stuff on VASSAL last week... a game that I know the rules to but didn't know how to play in using that program, but I was told to leave in a rather rude manner. And it wasn't my first experience like that. \n\twil: humans...\n\twil: and I missed my moment by one move...I shoulda moved in on your new star with my ship...you wouldn't sac a 3 for one kill and I would have had it....\n\n23) dragon76n: Move R2 Dragon76n Greeone\n\n24) wil: Trade R1 Y1 Wil\n\tdragon76n: Ahh... I think I'm now realizing why even having small red ships would be nice, since you've pointed out that I "wouldn't sac a 3 for one kill." Those little red ones can just sit back like long range missiles. \n\twil: zactly, inter galactic star wars protection...lazer accuracy\n\n25) dragon76n: Build Y1 Dragon76n\n\n26) wil: Build G1 Wil\n\tdragon76n: Sorry, I thought I had submitted the orders for my turn yesterday. \n\n27) dragon76n: Move Y1 Dragon76n Greeone\n\twil: no worries..\n\n28) wil: Discover G1 Wil Y2 Y2\n\n29) dragon76n: Build B2 Greeone\n\n30) wil: Build B3 G2\n\n31) dragon76n: Move R2 Greeone Y2\n\n32) wil: Trade B3 Y3 G2\n\twil: do you know about overpopulation? that you can cause an environmental catastrophe by having 4 of any one color in a star system? That if I sac my y2 in g2 I can send a blue thru greeone into your homeworld and catastrophe all your blues? Which would include half your homeworld star? \n\twil: I'll wait till you decide to make a different move before I go.\n\twil: tell me if you wish to keep this move..\n\tdragon76n: I read about catastrophe before, but didn't notice you were in range to do out. I will accept the consequences if you choose to do that. \n\twil: no...if you didn't know you can always back up...I've got no choice to go forward and do that...this is your chance, the learning game...next time I won't be so nice (note so much changes when you move...when we play live we move a coin or something when we are done..because you really need to look to see how the board changes...you legitimately get a reprieve on this one...\n\tdragon76n: Ok. Thanks. I'll adjust my move. \n\n33) dragon76n: Attack G1 Y2\n\tdragon76n: Ok. I think I'm set now. Do players get the option to take back their turn every time? I don't see an option to do it now. I only see an option to Resign up where I saw the option to undo my move before. Not that I'm trying to take back this move, I'm just wondering if it's possible. \n\twil: you can back up one move at a time... each move allows run redo...but not two... in real life you can try as much as you want...until you move the coin\n\n34) wil: Build B3 G2\n\n35) dragon76n: Sacrifice Y2 Dragon76n\nMove B1 Greeone G2\nMove B2 Greeone G2\nCatastrophe G2 Blue\n\n36) wil: Trade Y1 B1 Wil\n\n37) dragon76n: Trade B1 Y1 Dragon76n\n\tdragon76n: Ok. I noticed that multiple moves in one turn are submitted all together. \n\n38) wil: Build B1 Wil\n\n39) dragon76n: Discover Y1 Greeone B3 Bluethr\n\n40) wil: Move B1 Wil G2\n\n41) dragon76n: Build R1 Y2\n\n42) wil: Build R2 G2\n\n43) dragon76n: Move R2 Y2 Bluethr\n\n44) wil: Discover R2 G2 G3 G3\n\n45) dragon76n: Build R2 Y2\n\n46) wil: Build R3 G2\n\n47) dragon76n: Build R3 Dragon76n\n\n48) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B2 G2\nBuild B3 Wil\n\n49) dragon76n: Discover R2 Bluethr G2 Gretwo\n\twil: looks like I might get both of those...hmmm\n\tdragon76n: Ouch. Yeah... I was wondering if that was coming. \n\n50) wil: Trade B3 G3 Wil\n\n51) dragon76n: Move Y1 Bluethr Gretwo\n\n52) wil: Discover B2 G2 G1 G1\n\n53) dragon76n: Move R3 Dragon76n G1\n\n54) wil: Move B1 G2 G3\n\n55) dragon76n: Attack B2 G1\n\n56) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 G2\nBuild B3 G3\n\n57) dragon76n: Build G1 Y2\n\n58) wil: Trade B3 G3 Wil\n\n59) dragon76n: Trade B2 Y2 G1\n\n60) wil: Trade B3 Y3 G3\n\n61) dragon76n: Build Y1 Gretwo\n\n62) wil: Build B2 G3\n\n63) dragon76n: Move Y1 Gretwo Wil\n\n64) wil: Attack Y1 Wil\n\n65) dragon76n: Move Y1 Dragon76n G1\n\n66) wil: Move Y3 G3 Y2\n\n67) dragon76n: Move Y1 G1 Gretwo\n\n68) wil: Sacrifice R1 G2\nAttack R2 Y2\n\n69) dragon76n: Sacrifice Y2 G1\nMove Y1 Gretwo Wil\nMove Y1 Gretwo Wil\nCatastrophe Wil Yellow\n\n70) wil: Sacrifice Y3 G2\nMove R3 G2 Wil\nMove R3 Wil Dragon76n\nMove R1 Wil Dragon76n\n\n71) dragon76n: Attack R3 Dragon76n\n\n72) wil: Sacrifice Y2 G2\nMove R2 G3 Wil\nMove R2 Wil Dragon76n\nCatastrophe Dragon76n R\n\n\tdragon76n: Yep... I realized that I have no movement after I sent in my attack. I was hoping that it would be worth the sacrifice but I'm wondering about that now. \n\twil: good game... I look forward to the next!\n\twil: the issue is one color in your homeworld leaves you open for the blue bird (simply eliminating that color through catastrophe)...\n\tdragon76n: Oh wow... I saw that you were probably going to eliminate the red ships from my homeworld. I had forgotten about that causing an immediate loss. Good game. \n\twil: Can't run your fleet if you have no leaders left at home\n\nHomeworlds Online (SDG# 27678)\nVariants: "Hard time"\nStarted: 2015.6.14, Ended: 2015.6.16\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 Y1 G3\n\tSimon: Have fun!\n\n2) wil: Homeworld B3 R1 G3\n\n3) Simon: Build G1 Simon\n\twil: THere he is again... thanx for the game\n\n4) wil: Build G1 Wil\n\n5) Simon: Trade G1 B1 Simon\n\twil: I'm in the DC area... I'm guessing you are west coast?\n\tSimon: I'm from Germany. :) I have a weird sleeping schedule these days, sleeping in the evenings, and getting to play early in the morning before university.\n\n6) wil: Trade G1 Y1 Wil\n\twil: lol....for some reason I was first gonna say EU...but then the late night responses made no sense! now they do!\n\n7) Simon: Build B1 Simon\n\n8) wil: Build Y1 Wil\n\n9) Simon: Discover B1 Simon G2 Gee\n\twil: the race...\n\n10) wil: Discover Y1 Wil R2 R2\n\tSimon: Getting no blue ships in the last game was worse than getting no yellows.\n\n11) Simon: Build B1 Gee\n\twil: oh crap..dang short universe my bad\n\n12) wil: Build Y2 Wil\n\n13) Simon: Build B2 Gee\n\twil: while blues are great for trading...ya can't move without y...\n\n14) wil: Discover Y2 Wil G2 G2\n\n15) Simon: Trade B2 Y2 Gee\n\n16) wil: Build G1 Wil\n\n17) Simon: Build B2 Gee\n\n18) wil: Build Y2 Wil\n\n19) Simon: Build Y3 Gee\n\n20) wil: Sacrifice Y2 G2\nMove Y1 Wil Gee\nMove Y2 Wil Gee\nCatastrophe Gee Y\n\n21) Simon: Trade B2 Y2 Gee\n\n22) wil: Build G1 Wil\n\tSimon: now nobody can move without yellow.\n\n23) Simon: Sacrifice Y2 Gee\nMove G3 Simon Gee\nMove G3 Gee Wil\nCatastrophe Wil G\n\twil: yeah...I've been playin real bad lately\n\tSimon: Small universe seems to makes the first move even more valuable. >_>\n\n\nHomeworlds Online (SDG# 27692)\nVariants: "Hard time"\nStarted: 2015.6.17, Ended: 2015.6.23\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld B2 R1 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tSimon: Let's do another one. Enjoy!\n\twil: Yay-yuh!\n\twil: I think at one time I was playing 3 with the same player...it was fun...but confusing..\n\n3) Simon: Build G1 Simon\n\n4) wil: Build G1 Wil\n\n5) Simon: Trade G1 B1 Simon\n\n6) wil: Trade G1 B1 Wil\n\n7) Simon: Build B2 Simon\n\n8) wil: Build B2 Wil\n\n9) Simon: Trade B1 Y1 Simon\n\n10) wil: Trade B1 R1 Wil\n\n11) Simon: Build Y1 Simon\n\n12) wil: Build R1 Wil\n\n13) Simon: Discover B2 Simon G3 G3\n\n14) wil: Discover R1 Wil Y2 Y2\n\n15) Simon: Build G1 Simon\n\n16) wil: Build R2 Wil\n\n17) Simon: Build B1 G3\n\n18) wil: Sacrifice G3 Wil\nBuild R2 Y2\nBuild R2 Y2\nBuild R3 Wil\n\n19) Simon: Trade B2 Y2 G3\n\n20) wil: Move R2 Y2 G3\n\n21) Simon: Discover Y2 G3 G1 G1\n\n22) wil: Build R3 G3\n\tSimon: nowhere to hide!\n\n23) Simon: Discover G1 Simon Y3 Y3\n\twil: tis a cat and mouse game...I was one step ahead on growth, if you didn't trade for a red I could see a way to control the economy...worse than that...it is the red economy which covers attacks...(all monopolies are bad this just has another aspect. \r\n\r\nonly one move I see that can delay me winning in 3\n\tSimon: I didn't pay attention after getting a b2 ship. That sure had to cover everything that could possibly happen. :]\n\n24) wil: Build R3 G3\n\n25) Simon: Sacrifice G3 Simon\nBuild Y1 G1\nBuild Y2 G1\nBuild Y3 Simon\n\twil: close...you needed to create an R3 star...\n\n26) wil: Attack B1 G3\n\twil: ar that that worked\n\n27) Simon: Discover Y2 G1 B3 B3\n\n28) wil: Move R2 Y2 G1\n\n29) Simon: Sacrifice G1 Y3\nBuild Y3 B3\n\n30) wil: Attack Y2 G1\n\n31) Simon: Trade Y3 G3 Simon\n\n32) wil: Sacrifice Y2 G1\nMove R3 G3 Simon\nMove R3 G3 Simon\n\n\twil: this is the you take one I'll take three maneuver....you held it off with your yellow monopoly...I couldn't move in with two until I got that y2\n\tSimon: gg. Instructive game again.\n\twil: I still miss stuff all the time...and probably lost 90% of my first 20 games....recognizing both attacks and opportunities comes from watching yourself get whooped (my opinion)\n\twil: thanx challenge me anytime...start climbing the ladder we need more playing at the top!\n\nHomeworlds Online (SDG# 27685)\nStarted: 2015.6.18, Ended: 2015.6.23\nParticipants: ts52 (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) endo: Build G1 Endo\n\n4) ts52: Build G1 Ts52\n\n5) endo: Trade G1 R1 Endo\n\n6) ts52: Trade G1 B1 Ts52\n\n7) endo: Build R1 Endo\n\n8) ts52: Discover B1 Ts52 G1 Robin\n\n9) endo: Build R1 Endo\n\n10) ts52: Build B1 Robin\n\n11) endo: Discover R1 Endo B3 Union\n\n12) ts52: Build B2 Robin\n\n13) endo: Sacrifice G3 Endo\nBuild R2 Endo\nBuild R2 Union\nBuild R2 Union\n\n14) ts52: Trade B2 Y2 Robin\n\n15) endo: Discover R1 Endo G3 Powerset\n\n16) ts52: Discover B1 Robin G3 Kermit\n\n17) endo: Move R2 Endo Kermit\n\n18) ts52: Build G1 Ts52\n\n19) endo: Attack B1 Kermit\n\n20) ts52: Build B2 Robin\n\n21) endo: Build R3 Kermit\n\n22) ts52: Build G1 Ts52\n\n23) endo: Trade B1 Y1 Kermit\n\n24) ts52: Build B1 Robin\n\n25) endo: Build R3 Powerset\n\n26) ts52: Discover B2 Robin Y3 Bigbird\n\n27) endo: Build R3 Kermit\n\n28) ts52: Discover G1 Ts52 Y1 Zoe\n\n29) endo: Move R3 Kermit Zoe\n\n30) ts52: Build G2 Zoe\n\n31) endo: Move R3 Zoe Ts52\n\n32) ts52: Move B2 Bigbird Endo\n\n33) endo: Sacrifice R2 Union\nAttack G3 Ts52\nAttack G1 Ts52\n\tts52: Thanks for the game. Shouldn't have let you get the monopoly in red. Well played.\n\n\nHomeworlds Online (SDG# 27716)\nStarted: 2015.6.19, Ended: 2015.6.20\nParticipants: KatsCyl (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y1 G3 *\n\tKatsCyl: homeworld B3 Y2 G3\n\n2) KatsCyl: Homeworld B3 R1 G3\n\n3) endo: Build G1 Endo\n\n4) KatsCyl: Build G1 Katscyl\n\n5) endo: Discover G1 Endo B2 Mono\n\tKatsCyl: Tämä on varmaan kämäsin webbipeli mitä oon koskaan pelannut +D\n\n6) KatsCyl: Trade G1 Y1 Katscyl\n\tendo: Noh, toimii\n\n7) endo: Build G1 Mono\n\n8) KatsCyl: Build Y1 Katscyl\n\n9) endo: Trade G1 R1 Mono\n\n10) KatsCyl: Build Y2 Katscyl\n\n11) endo: Build R1 Mono\n\n12) KatsCyl: Discover Y2 Katscyl B2 Serenity\n\n13) endo: Build R2 Mono\n\n14) KatsCyl: Build G1 Katscyl\n\n15) endo: Trade R2 Y2 Mono\n\n16) KatsCyl: Move G1 Katscyl Serenity\n\n17) endo: Build R2 Mono\n\n18) KatsCyl: Build Y2 Serenity\n\n19) endo: Build Y3 Mono\n\n20) KatsCyl: Sacrifice Y2 Serenity\nMove Y1 Katscyl Mono\nMove Y1 Katscyl Mono\nCatastrophe Mono Y\n\n21) endo: Trade R2 Y2 Mono\n\n22) KatsCyl: Build Y1 Serenity\n\n23) endo: Build R2 Mono\n\n24) KatsCyl: Trade Y2 R2 Serenity\n\n25) endo: Trade R1 B1 Mono\n\n26) KatsCyl: Build G1 Serenity\n\n27) endo: Build G2 Mono\n\n28) KatsCyl: Build G2 Katscyl\n\n\tKatsCyl: Minä olen tuuba...\n\nHomeworlds Online (SDG# 27628)\nVariants: "Hard time"\nStarted: 2015.6.21, Ended: 2015.7.6\nParticipants: endo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) endo: Homeworld Y1 B3 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) endo: Build G1 Endo\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) endo: Trade G1 B1 Endo\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) endo: Build B1 Endo\n\n9) SilentTitan: Build Y2 Silenttitan\n\n10) endo: Discover B1 Endo G2 Ideal\n\n11) SilentTitan: Discover Y2 Silenttitan G3 Sol\n\n12) endo: Build B2 Ideal\n\n13) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n14) endo: Build B2 Endo\n\n15) SilentTitan: Discover Y1 Silenttitan B3 Soul\n\n16) endo: Discover B2 Endo B2 Filter\n\n17) SilentTitan: Discover Y1 Silenttitan B3 Sole\n\n18) endo: Build G1 Endo\n\n19) SilentTitan: Discover Y2 Sol G2 Tic\n\n20) endo: Trade G3 Y3 Endo\n\n21) SilentTitan: Move Y2 Sol Silenttitan\n\n22) endo: Trade B2 G2 Filter\n\n23) SilentTitan: Build Y3 Sol\n\n24) endo: Build G1 Filter\n\n25) SilentTitan: Sacrifice Y3 Sol\nMove Y2 Sol Tic\nMove Y2 Tic Endo\nMove Y2 Tic Endo\nCatastrophe Endo Yellow\n\n26) endo: Trade B1 Y1 Endo\n\n27) SilentTitan: Trade Y3 R3 Silenttitan\n\n28) endo: Build Y2 Endo\n\n29) SilentTitan: Move R3 Silenttitan Endo\n\n30) endo: Move Y2 Endo Silenttitan\n\n31) SilentTitan: Attack Y2 Silenttitan South\n\n32) endo: Move Y1 Endo Silenttitan\n\n33) SilentTitan: Attack G1 Endo South\n\n\nHomeworlds Online (SDG# 27719)\nStarted: 2015.6.22, Ended: 2015.9.18\nParticipants: Simon (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Simon: Homeworld G3 B1 Y3\n\tSimon: Have fun! :)\n\n3) ts52: Build G1 Ts52\n\tts52: Thanks. You too!\n\n4) Simon: Build Y1 Simon\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Simon: Build Y2 Simon\n\n7) ts52: Discover Y1 Ts52 G3 Kermit\n\n8) Simon: Discover Y2 Simon G2 Grass\n\n9) ts52: Build Y2 Kermit\n\n10) Simon: Trade Y1 B1 Simon\n\n11) ts52: Build G1 Ts52\n\n12) Simon: Build B1 Simon\n\n13) ts52: Move Y2 Kermit Ts52\n\n14) Simon: Move B1 Simon Grass\n\n15) ts52: Trade Y2 B2 Ts52\n\n16) Simon: Build B2 Grass\n\n17) ts52: Move B2 Ts52 Kermit\n\n18) Simon: Build B3 Simon\n\n19) ts52: Build B3 Kermit\n\n20) Simon: Trade B3 R3 Simon\n\n21) ts52: Trade B3 R3 Kermit\n\n22) Simon: Build B3 Simon\n\n23) ts52: Build B3 Kermit\n\n24) Simon: Trade B3 Y3 Simon\n\n25) ts52: Discover B3 Kermit G2 Robin\n\n26) Simon: Build B3 Grass\n\n27) ts52: Build B3 Robin\n\n28) Simon: Trade B3 Y3 Grass\n\n29) ts52: Build B3 Kermit\n\n30) Simon: Discover Y3 Simon R2 Wine\n\n31) ts52: Trade B3 R3 Robin\n\n32) Simon: Build B3 Grass\n\n33) ts52: Move B2 Kermit Grass\nCatastrophe Grass Blue\n\n34) Simon: Move B1 Simon Grass\n\n35) ts52: Discover G1 Ts52 B3 Gonzo\n\n36) Simon: Build R1 Simon\n\n37) ts52: Build G1 Ts52\n\n38) Simon: Move R3 Simon Grass\n\n39) ts52: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\n\n40) Simon: Move R3 Grass Gonzo\n\n41) ts52: Sacrifice G3 Ts52\nBuild Y1 Kermit\nBuild Y2 Kermit\nBuild G3 Ts52\n\n42) Simon: Attack G2 Gonzo\n\n43) ts52: Trade G1 R1 Ts52\n\n44) Simon: Attack G1 Gonzo\n\n45) ts52: Move Y1 Kermit Robin\n\n46) Simon: Sacrifice Y2 Grass\nMove G1 Gonzo Ts52\nMove G2 Gonzo Ts52\nCatastrophe Ts52 G\n\n47) ts52: Move B3 Kermit Ts52\n\n48) Simon: Build Y2 Grass\n\n49) ts52: Trade B3 G3 Ts52\n\n50) Simon: Build Y2 Simon\n\n51) ts52: Build G1 Ts52\n\n52) Simon: Build B1 Grass\n\n53) ts52: Build B2 Robin\n\n54) Simon: Trade B1 G1 Grass\n\n55) ts52: Move B3 Robin Kermit\n\n56) Simon: Move G1 Grass Gonzo\n\n57) ts52: Move Y1 Kermit Robin\n\n58) Simon: Trade Y2 G2 Simon\n\n59) ts52: Build Y2 Kermit\n\n60) Simon: Move G2 Simon Wine\n\n61) ts52: Discover Y2 Kermit G1 Oscar\n\n62) Simon: Sacrifice Y3 Grass\nMove G1 Gonzo Ts52\nMove G2 Wine Gonzo\nMove G2 Gonzo Ts52\nCatastrophe Ts52 Green\n\n63) ts52: Move B3 Kermit Ts52\n\n64) Simon: Build Y3 Grass\n\n65) ts52: Trade B3 G3 Ts52\n\n66) Simon: Build B1 Grass\n\n67) ts52: Move Y2 Oscar Grass\n\n68) Simon: Move Y2 Grass Gonzo\n\n69) ts52: Build G1 Ts52\n\n70) Simon: Move B1 Grass Gonzo\n\n71) ts52: Build G1 Ts52\n\n72) Simon: Trade B1 G1 Gonzo\n\n73) ts52: Move G1 Ts52 Kermit\n\n74) Simon: Build R1 Gonzo\n\n75) ts52: Build R2 Kermit\n\n76) Simon: Build R2 Simon\n\n77) ts52: Sacrifice R1 Ts52\nAttack B1S Grass\n\n78) Simon: Build G2 Gonzo\n\n79) ts52: Trade G1 R1 Ts52\n\n80) Simon: Sacrifice R2 Simon\nAttack Y2 Grass\nAttack B1 Grass\n\n81) ts52: Build R2 Robin\n\n82) Simon: Discover Y3 Wine B3 Sea\n\n83) ts52: Build R2 Ts52\n\n84) Simon: Build B1 Grass\n\n85) ts52: Sacrifice Y2 Kermit\nMove R1 Ts52 Gonzo\nMove R2 Robin Gonzo\nCatastrophe Gonzo Red\n\n86) Simon: Sacrifice G1 Gonzo\nBuild Y2 Sea\n\n87) ts52: Move R3 Robin Gonzo\n\n88) Simon: Trade B1 R1 Grass\n\n89) ts52: Sacrifice R2 Kermit\nAttack Y2 Gonzo\nAttack G2 Gonzo\n\n90) Simon: Trade Y2 R2 Sea\n\n91) ts52: Build Y2 Gonzo\n\n92) Simon: Build B1 Grass\n\n93) ts52: Build G1 Ts52\n\n94) Simon: Trade B1 G1 Grass\n\n95) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Robin\nBuild R1 Gonzo\n\n96) Simon: Build B2 Grass\n\n97) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R3 Kermit\n\n98) Simon: Move G1 Grass Sea\n\n99) ts52: Move B1 Robin Kermit\n\n100) Simon: Discover B1 Grass B3 B3\n\n101) ts52: Move Y1 Robin Kermit\n\n102) Simon: Move Y2 Grass B3\n\n103) ts52: Move R3 Kermit Robin\n\n104) Simon: Move R2 Sea Grass\n\n105) ts52: Move R1 Gonzo Robin\n\n106) Simon: Move R1 Grass Sea\n\n107) ts52: Move R2 Ts52 Kermit\n\n108) Simon: Move R1 Sea Grass\n\n109) ts52: Move R3 Robin B3\n\n110) Simon: Sacrifice Y2 B3\nMove R1 Grass Kermit\nMove R2 Grass Kermit\nCatastrophe Kermit R\n\n111) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild R1 Robin\n\n112) Simon: Build R2 Simon\n\n113) ts52: Sacrifice Y2 Gonzo\nMove R1 Robin Simon\nMove R1 Robin Simon\nCatastrophe Simon Red\n\n114) Simon: Trade G1 R1 Sea\n\n115) ts52: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild G3 Ts52\nBuild Y2 Robin\n\n116) Simon: Move R1 Sea Grass\n\n117) ts52: Sacrifice Y2 Kermit\nMove Y1 Robin Simon\nMove Y2 Robin Simon\n\n118) Simon: Trade Y3 R3 Simon\n\n119) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gonzo\nBuild Y3 Kermit\n\n120) Simon: Attack Y2 Simon\n\n121) ts52: Move R3 Gonzo Robin\n\n122) Simon: Build R1 Grass\n\n123) ts52: Attack B1 B3\n\n124) Simon: Attack Y1 Simon\n\n125) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Robin\nBuild R2 Robin\n\n126) Simon: Sacrifice Y2 Simon\nMove R1 Grass Simon\nMove R1 Simon Robin\nCatastrophe Robin R\n\n127) ts52: Move Y2 Gonzo Robin\n\n128) Simon: Build Y2 Grass\n\n129) ts52: Discover Y3 Kermit R2 Elmo\n\n130) Simon: Build R1 Grass\n\n131) ts52: Sacrifice Y1 Kermit\nMove R3 B3 Robin\n\n132) Simon: Move Y3 Grass Gonzo\n\n133) ts52: Sacrifice Y2 Robin\nMove Y3 Elmo Simon\nMove R3 Robin Simon\n\n\tSimon: Nice, didn't see this. Thanks for the game!\n\tts52: Thanks! Good game!\n\nHomeworlds Online (SDG# 27705)\nVariants: "Hard time"\nStarted: 2015.6.22, Ended: 2015.6.23\nParticipants: wil (S), endo (N)\nWinner: wil\n\n1) endo: Homeworld B1 Y3 G3\n\n2) wil: Homeworld R2 Y1 B3 *\n\n3) endo: Build G1 Endo\n\twil: thanx for the game! my fav...\n\n4) wil: Trade B3 G3 Wil\n\twil: oh crap, what was I thinkin? \n\n5) endo: Trade G1 B1 Endo\n\tendo: hehe it happens :) I thought you were giving the beginner the "second turn timewarp"\n\n6) wil: Build G1 Wil\n\n7) endo: Discover B1 Endo G2 Ring\n\twil: are you a beginner? well good... I've got a huge uphill battle now!\n\n8) wil: Discover G1 Wil B3 B3\n\n9) endo: Build B1 Ring\n\twil: you done gave me a fightin chance!\n\n10) wil: Build G1 B3\n\n11) endo: Build B2 Ring\n\n12) wil: Build G1 Wil\n\n13) endo: Trade B2 Y2 Ring\n\n14) wil: Build G2 B3\n\n15) endo: Build B2 Ring\n\n16) wil: Trade G2 R2 B3\n\n17) endo: Build G2 Endo\n\n18) wil: Trade G1 Y1 B3\n\n19) endo: Trade B2 R2 Ring\n\n20) wil: Build G1 Wil\n\n21) endo: Build B2 Ring\n\n22) wil: Build G2 B3\n\n23) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild G3 Endo\nBuild R1 Ring\n\n24) wil: Build R1 B3\n\n25) endo: Discover R2 Ring B3 Module\n\n26) wil: Discover G2 B3 B2 B2\n\n27) endo: Move G3 Endo B2\n\n28) wil: Move G1 Wil B3\n\n29) endo: Sacrifice R1 Ring\nAttack G2 B2\n\n30) wil: Move G1 B3 B2\n\n31) endo: Trade G2 Y2 B2\n\n32) wil: Build G2 B2\n\n33) endo: Sacrifice Y2 Ring\nMove Y2 B2 Module\nMove G3 B2 B3\n\n34) wil: Sacrifice G1 B2\nBuild G1 B3\n\n35) endo: Sacrifice G3 B3\nBuild Y1 Module\nBuild Y2 Module\nBuild R1 Module\n\twil: you and your running me in circles with that green queen\n\n36) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 B2\nBuild Y2 B3\n\n37) endo: Sacrifice Y2 Module\nMove G2 Endo Ring\nDiscover G2 Ring B3 Monoid\n\n38) wil: Move Y1 B3 B2\n\n39) endo: Trade G3 R3 Endo\n\n40) wil: Move G3 B2 Monoid\n\n41) endo: Sacrifice G2 Monoid\nBuild R1 Module\nBuild R3 Endo\n\n42) wil: Sacrifice G3 Wil\nBuild G2 Monoid\nBuild G3 Wil\nBuild G3 B2\n\n43) endo: Trade B2 Y2 Ring\n\n44) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 B2\nBuild Y3 B3\n\n45) endo: Sacrifice Y2 Ring\nMove R1 Module Wil\nMove R1 Module Wil\n\twil: have I cemented the value of the factory in yet?\n\n46) wil: Sacrifice Y2 B3\nMove R1 B3 B2\nMove R1 B2 Endo\n\tendo: I think you have. sacrificing the green was a beautiful disaster in one move, had I just left it there I would've been fine\n\n47) endo: Move R2 Module Wil\nCatastrophe Wil R\n\twil: lol my very next move... and you did it first! although I think I am still a step ahead...\n\n48) wil: Sacrifice G1 Wil\nBuild R1 Endo\nCatastrophe Endo R\n\tendo: well, at least I got something!\n\twil: lol...blew up half my homeworld!!\n\twil: ya done darn well! challenge me anytime! start climbing the ladder now and I'll see you at the top\n\n\nHomeworlds Online (SDG# 27737)\nVariants: "Hard time"\nStarted: 2015.6.22, Ended: 2015.6.28\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B2 R3 G3\n\n2) wil: Homeworld Y2 B1 G3\n\twil: keep my seat warm!\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: :-)\n\n4) wil: Build G1 Wil\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) wil: Trade G1 B1 Wil\n\n7) dlwillson: Build B2 Dlwillson\n\n8) wil: Build B2 Wil\n\n9) dlwillson: Trade B2 Y2 Dlwillson\n\n10) wil: Discover B2 Wil G3 G3\n\n11) dlwillson: D B1 Dlwillson G1 Field\n\n12) wil: Build B2 G3\n\n13) dlwillson: B B3 Field\n\n14) wil: Trade B2 Y2 G3\n\twil: I look and it isn't where I think it should be...dang fingers typing wrong...\n\tdlwillson: You're still given me a battleship!\n\n15) dlwillson: T B3 R3 Field\n\twil: mistakes.... I make them...\n\n16) wil: Trade B1 R1 Wil\n\n17) dlwillson: Build R1 Field\n\n18) wil: Build R1 Wil\n\twil: our spacescopes have picked up activity of refitting a trade ship into a warship...while this doesn't violate any treaties it is a cause for concern and has required us to move funds from our indigent care and intergalactic support to homeworld defense..\n\n19) dlwillson: T R1 Y1 Field\n\tdlwillson: LOL! Excellent!\r\nMeanwhile I have to bumble along on voluntary contributions. If I ever screw up, the people will stop giving, and I'll have to go get a real job. :-)\n\n20) wil: Move R1 Wil G3\n\n21) dlwillson: M R3 Field G3\n\n22) wil: Build R1 G3\n\n23) dlwillson: A Y2 G3\n\n24) wil: Build R2 G3\nCatastrophe G3 R\n\n25) dlwillson: D Y2 G3 G1 Forest\n\n26) wil: Build G1 Wil\n\twil: i needed the reboot\n\twil: i needed the reboot\n\n27) dlwillson: B Y1 Forest\n\tdlwillson: I'm sorry about my last move. That was bogus and I should have taken it back, but I didn't get back soon enough.\n\twil: I thought you had another plan in place...too move out it woulda cost you your yellows...\n\n28) wil: Trade G1 Y1 Wil\n\n29) dlwillson: S G3 Dlwillson\nB Y3 Dlwillson\nB Y3 Dlwillson\nB Y3 Field\n\tdlwillson: No, I mean you could have just taken the y2 back. \n\twil: I'm clueless..\r\n\n\n30) wil: Build R1 Wil\n\n31) dlwillson: T Y3 R3 Field\n\twil: well that is that!\n\n32) wil: Discover R1 Wil Y3 Y3\n\twil: I'll soon be waiting for the computer to give me another chance...\n\n33) dlwillson: Discover Y2 Forest B3 Sky\n\n34) wil: Build R1 Wil\n\n35) dlwillson: S Y3 Dlwillson\nM Y1 Forest Sky\nM Y1 Sky Wil\nM Y2 Sky Wil\nC Wil Y\n\n36) wil: Trade R1 Y1 Wil\n\twil: I should resign....now I am just waiting for you to make a mistake...\n\n37) dlwillson: T Y3 G3 Dlwillson\n\n38) wil: Build G1 Wil\n\n39) dlwillson: Move R3 Field G3\n\n40) wil: Sacrifice Y1 Wil\nDiscover B2 G3 Y2 Y2\n\n41) dlwillson: Build G1 Dlwillson\n\n42) wil: Trade G1 Y1 Wil\n\n43) dlwillson: M B1 Field G3\n\n44) wil: Build G1 Wil\n\n45) dlwillson: Move G3 Dlwillson Wil\n\n46) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G2 Wil\nBuild R1 Wil\nCatastrophe Wil G\n\n47) dlwillson: Sacrifice Y1 Field\nMove R3 G3 Wil\n\n48) wil: Move R1 Y3 Wil\nCatastrophe Wil R\n\n49) dlwillson: Build Y1 Dlwillson\n\n50) wil: Trade B2 R2 Y2\n\n51) dlwillson: Trade Y2 R2 Dlwillson\n\twil: Seriously weird ending...\n\n52) wil: Move R2 Y2 Wil\n\tdlwillson: I made a mistake going in with the red. If I'd gone in with the yellow, instead... I think it would have been over a turn or two quicker.\n\n53) dlwillson: Build R1 Dlwillson\n\twil: I thought I saw where you were headed and prepared by blowing myself up as a diversion while building the r1....hoping you'd see i did your work for you and you'd jump on in before checking the water...\n\n54) wil: Trade Y1 G1 Wil\n\n55) dlwillson: Build B1 G3\n\twil: I wasted a step there...but let the games begin...again!\n\n56) wil: Build G1 Wil\n\n57) dlwillson: B G2 Dlwillson\n\tdlwillson: This is going to take a minute, isn't it?\n\n58) wil: Trade G1 Y1 Wil\n\n59) dlwillson: B B2 G3\n\twil: I told you I was waitin for you to make a couple mistakes.... that was one...a couple more would help.\n\n60) wil: Build G1 Wil\n\n61) dlwillson: Trade G2 Y2 Dlwillson\n\n62) wil: Move R2 Wil Dlwillson\nCatastrophe Dlwillson R\n\n63) dlwillson: Sacrifice Y2 Dlwillson\nMove B2 G3 Wil\nMove B1 G3 Wil\n\n64) wil: Discover G1 Wil Y3 Y3\n\n65) dlwillson: S Y1 Dlwillson\nM B1 G3 Wil\nC Wil B\n\n\twil: Just so when it ends it doesn't look like I did as poorly as the truth is...thanks for the game...I'll be back!\n\tdlwillson: This may be the cleanest ending board I've ever seen. Good game! See you for the rematch. :-)\n\twil: too funny....\n\nHomeworlds Online (SDG# 27731)\nVariants: "Hard time"\nStarted: 2015.6.22, Ended: 2015.7.10\nParticipants: SilentTitan (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B2 R3 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\tSilentTitan: Lol\n\tSilentTitan: Homeworld b1 r2 g3\n\tSilentTitan: I forgot how to play\n\n3) dlwillson: B G1 Dlwillson\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dlwillson: T G1 B1 Dlwillson\n\tdlwillson: :-)\n\n6) SilentTitan: Trade G3 B3 Silenttitan\n\n7) dlwillson: B G1 Dlwillson\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) dlwillson: B G2 Dlwillson\n\n10) SilentTitan: Build G2 Silenttitan\n\n11) dlwillson: Trade G2 Y2 Dlwillson\n\n12) SilentTitan: Trade G2 Y2 Silenttitan\n\n13) dlwillson: Build G2 Dlwillson\n\n14) SilentTitan: Discover G1 Silenttitan Y3 Sol\n\n15) dlwillson: D G2 Dlwillson Y1 Sirius\n\n16) SilentTitan: Build G2 Silenttitan\n\tdlwillson: What is our count? I know you usually win on the table. Do I usually win on SDG?\n\tSilentTitan: Hummmm. Good question, I would doubt the assertion that I always win "on table", more like I lose less often when a chess clock is involved.\n\n17) dlwillson: Move B1 Dlwillson Sirius\n\n18) SilentTitan: Discover B3 Silenttitan Y3 Soul\n\n19) dlwillson: Build B1 Sirius\n\n20) SilentTitan: Sacrifice G1 Silenttitan\nBuild B2 Soul\n\n21) dlwillson: S Y2 Dlwillson\nM B1 Sirius Soul\nM B1 Sirius Soul\nC Soul B\n\n22) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y1 Silenttitan\nBuild Y1 Silenttitan\n\n23) dlwillson: Trade G3 Y3 Dlwillson\n\n24) SilentTitan: Discover Y1 Silenttitan G3 Soul\n\n25) dlwillson: Build Y2 Dlwillson\n\n\tSilentTitan: Good game thanks\n\nHomeworlds Online (SDG# 27740)\nVariants: "Hard time"\nStarted: 2015.6.24, Ended: 2015.6.29\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G2 B1 Y3\n\n2) wil: Homeworld B3 Y1 G3\n\tSimon: Alright, have fun!\n\n3) Simon: Build Y1 Simon\n\n4) wil: Build G1 Wil\n\n5) Simon: Build Y1 Simon\n\n6) wil: Trade G1 B1 Wil\n\n7) Simon: Discover Y1 Simon G3 G3\n\n8) wil: Build B1 Wil\n\n9) Simon: Build Y2 Simon\n\n10) wil: Discover B1 Wil G2 G2\n\n11) Simon: Trade Y2 B2 Simon\n\n12) wil: Build B2 G2\n\n13) Simon: Move B2 Simon G3\n\n14) wil: Trade B2 Y2 G2\n\n15) Simon: Build Y2 G3\n\n16) wil: Build B2 G2\n\n17) Simon: Build B2 G3\n\n18) wil: Discover B2 G2 G3 Gee3\n\n19) Simon: Trade B2 R2 G3\n\n20) wil: Trade B1 R1 G2\n\n21) Simon: Trade Y1 R1 Simon\n\n22) wil: Move B1 Wil G2\n\n23) Simon: Trade Y2 G2 G3\n\n24) wil: Build G1 Wil\n\n25) Simon: Discover G2 G3 Y2 Y2\n\n26) wil: Discover G1 Wil B2 B2\n\n27) Simon: Build G1 Y2\n\n28) wil: Build G1 Wil\n\n29) Simon: Sacrifice Y3 Simon\nMove G1 Y2 Wil\nMove G2 Y2 Wil\nPass\nCatastrophe Wil G\n\tSimon: I wanted to prevent that last g1 build. It seemed like the best move if I couldn't sac the yellow >_>\n\twil: ya done good!\n\twil: I look forward to the next...\n\tSimon: thanks for the game :)\n\n\nHomeworlds Online (SDG# 27761)\nVariants: "Hard time"\nStarted: 2015.6.26, Ended: 2015.7.7\nParticipants: Aghmarck (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 Y1 G3\n\n2) Aghmarck: Homeworld B1 G2 Y3\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\tAghmarck: Hello there! Good luck and have fun.\n\n4) Aghmarck: Build Y1 Aghmarck\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Aghmarck: Trade Y1 B1 Aghmarck\n\n7) Simon: Build G1 Simon\n\n8) Aghmarck: Build B1 Aghmarck\n\n9) Simon: Build Y1 Simon\n\n10) Aghmarck: Build Y2 Aghmarck\n\n11) Simon: Discover Y1 Simon G2 Leaf\n\n12) Aghmarck: Discover B1 Aghmarck G3 Verdega\n\n13) Simon: Build Y2 Leaf\n\n14) Aghmarck: Move Y2 Aghmarck Verdega\n\n15) Simon: Build Y2 Simon\n\n16) Aghmarck: Build Y3 Aghmarck\n\n17) Simon: Trade Y2 B2 Simon\n\n18) Aghmarck: B B2 Verdega\n\n19) Simon: Move B2 Simon Leaf\n\n20) Aghmarck: Discover B2 Verdega G2 Verda\n\n21) Simon: Discover G1 Simon B2 Sea\n\n22) Aghmarck: Build B3 Verda\n\n23) Simon: Build B3 Leaf\n\n24) Aghmarck: Trade B3 R3 Verda\n\n25) Simon: Trade B2 R2 Leaf\n\n26) Aghmarck: Build B2 Verda\n\n27) Simon: Build B3 Leaf\n\n28) Aghmarck: Sacrifice Y3 Aghmarck\nMove B1 Verdega Leaf\nMove B2 Verda Simon\nMove B2 Simon Leaf\nCatastrophe Leaf B\n\n29) Simon: Build G1 Simon\n\n30) Aghmarck: Build Y2 Verdega\n\n31) Simon: Sacrifice G3 Simon\nBuild G1 Sea\nBuild G3 Sea\nBuild G3 Simon\n\n32) Aghmarck: B Y3 Aghmarck\n\n33) Simon: Trade G3 Y3 Sea\n\n34) Aghmarck: B B1 Verda\n\n35) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 Sea\nBuild R1 Leaf\n\n36) Aghmarck: Build B2 Verda\n\n37) Simon: Move G3 Sea Verdega\n\n38) Aghmarck: Sacrifice Y2 Verdega\nMove R3 Verda Verdega\nMove R3 Verdega Leaf\n\n39) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y2 Sea\nBuild R1 Leaf\nCatastrophe Leaf R\n\n40) Aghmarck: Build B3 Aghmarck\n\n41) Simon: Trade Y3 B3 Sea\n\n42) Aghmarck: Trade B3 R3 Aghmarck\n\n43) Simon: Trade Y1 R1 Simon\n\n44) Aghmarck: Sacrifice Y3 Aghmarck\nMove B1 Verda Simon\nMove B2 Verda Simon\nMove B2 Verda Simon\nCatastrophe Simon B\n\n45) Simon: Sacrifice G3 Simon\nBuild G2 Verdega\nBuild G3 Simon\nBuild R1 Simon\n\n46) Aghmarck: Build Y1 Verdega\n\n47) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y3 Sea\nBuild Y3 Leaf\n\n48) Aghmarck: Discover Y2 Verdega B2 Blua\n\n49) Simon: Discover B3 Sea R3 Cow\n\n50) Aghmarck: Trade Y3 R3 Aghmarck\n\n51) Simon: Sacrifice R1 Simon\nAttack Y1 Verdega\n\n\tAghmarck: Thanks for the game!\n\tSimon: Thanks!\n\nHomeworlds Online (SDG# 27762)\nVariants: "Hard time"\nStarted: 2015.6.28, Ended: 2015.9.5\nParticipants: foksieloy (S), MagicJohn (N)\nWinner: foksieloy\n\n1) MagicJohn: Homeworld Y1 B2 G3\n\tfoksieloy: Good luck, have fun!\n\tMagicJohn: Hey! Somebody accepted a challenge!! The "declines" really get old. Thanks for the game ..... Enjoy!\n\n2) foksieloy: Homeworld B1 G3 Y3\n\n3) MagicJohn: Build G1 Magicjohn\n\n4) foksieloy: Build Y1 Foksieloy\n\n5) MagicJohn: Build G1 Magicjohn\n\n6) foksieloy: Trade Y1 G1 Foksieloy\n\n7) MagicJohn: Discover G1 Magicjohn Y3 Pine\n\n8) foksieloy: Build G2 Foksieloy\n\n9) MagicJohn: Trade G3 Y3 Magicjohn\n\n10) foksieloy: Trade G2 B2 Foksieloy\n\n11) MagicJohn: Build G2 Magicjohn\n\n12) foksieloy: Discover G1 Foksieloy B2 Tibbers\n\n13) MagicJohn: Trade G1 R1 Magicjohn\n\n14) foksieloy: Build Y1 Foksieloy\n\n15) MagicJohn: Move R1 Magicjohn Pine\n\n16) foksieloy: Trade Y1 R1 Foksieloy\n\n17) MagicJohn: Build Y1 Magicjohn\n\n18) foksieloy: Build Y1 Foksieloy\n\n19) MagicJohn: Trade Y1 B1 Magicjohn\n\n20) foksieloy: Move Y1 Foksieloy Tibbers\n\n21) MagicJohn: Move B1 Magicjohn Pine\n\n22) foksieloy: Discover B2 Foksieloy G2 Annie\n\n23) MagicJohn: Move G2 Magicjohn Pine\n\n24) foksieloy: Build G1 Tibbers\n\n25) MagicJohn: Move G1 Pine Magicjohn\n\n26) foksieloy: Discover G1 Tibbers B1 Lulu\n\n27) MagicJohn: Build B3 Pine\n\n28) foksieloy: Build B3 Annie\n\n29) MagicJohn: Trade B3 R3 Pine\n\n30) foksieloy: Trade B3 R3 Annie\n\n31) MagicJohn: Build B3 Pine\n\n32) foksieloy: Build B3 Annie\n\n33) MagicJohn: Move R3 Pine Tibbers\n\n34) foksieloy: Trade B3 R3 Annie\n\n35) MagicJohn: Sacrifice Y3 Magicjohn\nMove R3 Tibbers Pine\nMove R3 Pine Annie\nMove R1 Pine Annie\nCatastrophe Annie Red\n\n36) foksieloy: Build B3 Annie\n\n37) MagicJohn: Trade B3 R3 Pine\n\n38) foksieloy: Trade B3 R3 Annie\n\n39) MagicJohn: Move R3 Pine Magicjohn\n\n40) foksieloy: Build B3 Annie\n\n41) MagicJohn: Build B3 Pine\n\n42) foksieloy: Trade B3 Y3 Annie\n\n43) MagicJohn: Build G2 Pine\n\n44) foksieloy: Build G3 Tibbers\n\n45) MagicJohn: Sacrifice G2 Pine\nBuild G2 Pine\nBuild G3 Magicjohn\n\n46) foksieloy: Sacrifice G3 Tibbers\nBuild G3 Tibbers\nBuild B3 Annie\nBuild R1 Annie\n\n47) MagicJohn: Trade B1 Y1 Pine\n\n48) foksieloy: Sacrifice G3 Tibbers\nBuild G3 Tibbers\nBuild Y2 Annie\nBuild Y2 Tibbers\n\n49) MagicJohn: Discover Y1 Pine R1 Elm\n\n50) foksieloy: Sacrifice Y3 Annie\nMove Y1 Tibbers Pine\nMove Y2 Tibbers Pine\nMove Y2 Annie Pine\nCatastrophe Pine Yellow\n\n51) MagicJohn: Build R2 Magicjohn\n\n52) foksieloy: Sacrifice B2 Annie\nTrade R1 Y1 Annie\nTrade G1 B1 Tibbers\n\n53) MagicJohn: Sacrifice G1 Magicjohn\nBuild Y2 Elm\n\n54) foksieloy: Build Y2 Annie\n\n55) MagicJohn: Discover Y2 Elm G2 Mulberry\n\n56) foksieloy: Discover Y2 Annie B3 Shen\n\n57) MagicJohn: Trade R3 B3 Magicjohn\n\n58) foksieloy: Trade Y2 G2 Shen\n\n59) MagicJohn: Build Y2 Mulberry\n\n60) foksieloy: Build G1 Tibbers\n\n\tMagicJohn: Sorry.... Family health issues..Time got away from me. You were torching me anyway, so congrats. Thanks for the game.\n\tfoksieloy: Aww, sorry to hear that. It was a very enjoyable game, I have to admit, the most turns I played so far. Good game!\n\nHomeworlds Online (SDG# 27753)\nVariants: "Hard time"\nStarted: 2015.6.28, Ended: 2015.6.29\nParticipants: wil (S), endo (N)\nWinner: wil\n\n1) endo: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tendo: hey, let's play another one\n\twil: I'll play as many as you like... this game makes me think!\n\n3) endo: Build G1 Endo\n\n4) wil: Build G1 Wil\n\n5) endo: Trade G1 Y1 Endo\n\n6) wil: Trade G1 B1 Wil\n\n7) endo: Build Y1 Endo\n\n8) wil: Build B1 Wil\n\n9) endo: Discover Y1 Endo B3 Epi\n\n10) wil: Discover B1 Wil G2 G2\n\n11) endo: Build Y2 Endo\n\n12) wil: Sacrifice G3 Wil\nBuild B2 Wil\nBuild B2 G2\nBuild B3 G2\n\n13) endo: Discover Y2 Endo B3 Iso\n\n14) wil: Trade B3 Y3 G2\n\n15) endo: Discover Y1 Endo B3 Auto\n\n16) wil: Trade B2 Y2 G2\n\n17) endo: Build G1 Endo\n\n18) wil: Build B2 G2\n\n19) endo: Trade G1 R1 Endo\n\n20) wil: Trade Y2 R2 G2\n\n21) endo: Sacrifice G3 Endo\nBuild Y2 Epi\nBuild Y2 Auto\nBuild Y3 Iso\n\n22) wil: Sacrifice Y3 G2\nMove R2 G2 Auto\nMove B2 G2 Auto\nMove B2 Auto Endo\n\n23) endo: Sacrifice Y2 Auto\nMove Y3 Iso Endo\nDiscover Y1 Auto G2 Mono\n\n24) wil: Sacrifice R2 Auto\nAttack R1 Endo\nPass\n\n25) endo: Build Y2 Mono\n\twil: lol...forgot you had a 3....silly o me!\n\n26) wil: Trade B2 G2 Wil\n\n27) endo: Build Y3 Mono\n\n28) wil: Sacrifice G2 Wil\nBuild B2 Wil\nBuild B3 Endo\n\n29) endo: Trade Y3 R3 Endo\n\tendo: crap, I forgot you can also build at my homeworld\n\n30) wil: Attack R3 Endo\n\twil: That was quite the interesting go around there... I look forward to our next game.. challenge me anytime, ask any questions!\n\n\nHomeworlds Online (SDG# 27745)\nStarted: 2015.6.29, Ended: 2015.7.11\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: Homeworld B3 G1 Y3\n\tts52: Have a good game!\n\twil: If you insist...\n\n3) ts52: Build G1 Ts52\n\n4) wil: Build Y1 Wil\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) wil: Discover Y1 Wil G2 G2\n\n7) ts52: Discover Y1 Ts52 G3 Kermit\n\n8) wil: Build Y2 Wil\n\n9) ts52: Build Y2 Kermit\n\n10) wil: Trade Y2 R2 Wil\n\n11) ts52: Build G1 Ts52\n\n12) wil: Build Y2 G2\n\n13) ts52: Trade G1 R1 Ts52\n\n14) wil: Discover Y2 G2 G3 G3\n\n15) ts52: Build G1 Ts52\n\n16) wil: Build Y2 G2\n\n17) ts52: Discover Y2 Kermit G2 Oscar\n\n18) wil: Build Y3 G3\n\n19) ts52: Build Y3 Kermit\n\n20) wil: Sacrifice Y2 G3\nMove Y1 G2 Kermit\nMove Y2 G2 Kermit\nCatastrophe Kermit Y\n\n21) ts52: Build G1 Ts52\n\twil: oh phooey, a fuel fire at your oil field....we ame to help...but it looks like pouring rocket fuel on it doesn't help...sorry\n\n22) wil: Build Y1 Wil\n\tts52: Dangit! I hate it when that happens.\n\n23) ts52: Discover G1 Ts52 Y3 Bigbird\n\twil: I'm sure your expedition was insured right?\n\n24) wil: Build R1 Wil\n\tts52: Insufficiently, it seems. :)\n\n25) ts52: Build G2 Bigbird\n\n26) wil: Trade R2 G2 Wil\n\n27) ts52: Build G3 Bigbird\n\n28) wil: Sacrifice Y3 G3\nDiscover Y1 Wil B2 B2\nMove G2 Wil B2\nMove G2 B2 Bigbird\nCatastrophe Bigbird G\n\n29) ts52: Build G1 Ts52\n\n30) wil: Build R1 Wil\n\twil: oops...that didn't look right!\n\n31) ts52: Discover G1 Ts52 B3 Gonzo\n\n32) wil: Discover R1 Wil G2 G2\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Gonzo\n\n34) wil: Discover Y1 B2 G3 G3\n\n35) ts52: Trade G3 Y3 Gonzo\n\n36) wil: Build R2 G2\n\twil: I've definitely lost this game...\n\n37) ts52: Build G3 Gonzo\n\n38) wil: Build R2 Wil\n\n39) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild R2 Ts52\nBuild R3 Ts52\n\n40) wil: Build R3 Wil\n\n41) ts52: Sacrifice Y3 Gonzo\nMove R1 Ts52 Gonzo\nMove R1 Gonzo G2\nMove R1 G2 Wil\nCatastrophe Wil Red\n\n42) wil: Build Y1 Wil\n\n43) ts52: Trade G3 Y3 Gonzo\n\n44) wil: Sacrifice Y1 Wil\nDiscover R1 G2 G3 Gee3\n\n45) ts52: Move R2 Ts52 Gee3\n\n46) wil: Build Y1 Wil\n\n47) ts52: Attack R1 Gee3\n\n48) wil: Trade Y1 B1 Wil\n\n49) ts52: Move R3 Ts52 Gonzo\n\n50) wil: Build B1 Wil\n\n51) ts52: Move R3 Gonzo G2\n\n52) wil: Trade B1 R1 Wil\n\n53) ts52: Attack R2 G2\n\n54) wil: Build B1 Wil\n\n55) ts52: Move Y2 Oscar Gee3\n\n56) wil: Discover B1 Wil Y2 Y2\n\n57) ts52: Move R2 Gee3 Y2\n\twil: this game is so over...\n\n58) wil: Discover B1 Y2 Y3 Y3\n\n59) ts52: Move Y3 Gonzo G2\n\n60) wil: Build B1 Wil\n\twil: it appears an impossibility for you to make a fatal error when I have nothing....but if you simply continue to chase me in circles and torture me instead of putting an end to my misery I may find an opening somehow...somewhere..\n\tts52: My endgame is my weakest. Much as I see that I should be able to overpower you, finding my way to it is difficult for me somehow.\n\n61) ts52: Sacrifice Y2 Gee3\nMove R3 G2 Wil\nMove Y3 G2 Wil\n\n62) wil: Build R1 Wil\n\n63) ts52: Sacrifice R2 G2\nAttack Y3S Wil\nAttack B1S Wil\n\twil: see there...the ole I get one you get two...\n\n64) wil: Build R2 Wil\n\n65) ts52: Attack B1S Wil\nCatastrophe Wil Red\n\tts52: Yep, took me a while to see it.\n\tts52: Hmmm, guess I could've sac'd the R3 that turn. Oh well.\n\n\tts52: Thanks for the game!\n\twil: thank you for the game...\n\nHomeworlds Online (SDG# 27690)\nVariants: "Unrated"\nStarted: 2015.6.29, Ended: 2015.7.17\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld B2 G1 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\tdragon76n: Hello again. \n\n3) dragon76n: Build Y1 Dragon76n\n\twil: thx for the game....let us have at it!\n\n4) wil: Build G1 Wil\n\n5) dragon76n: Discover Y1 Dragon76n G3 Grethr\n\n6) wil: Build G1 Wil\n\n7) dragon76n: Build Y1 Dragon76n\n\n8) wil: Trade G1 Y1 Wil\n\n9) dragon76n: Build Y2 Dragon76n\n\n10) wil: Discover Y1 Wil G2 G2\n\n11) dragon76n: Discover Y2 Dragon76n B3 Bluthr\n\n12) wil: Build Y2 G2\n\n13) dragon76n: Trade Y1 R1 Dragon76n\n\n14) wil: Trade G1 R1 Wil\n\n15) dragon76n: Trade Y2 R2 Bluthr\n\n16) wil: Build G1 Wil\n\n17) dragon76n: Build Y1 Grethr\n\n18) wil: Move Y2 G2 Grethr\n\n19) dragon76n: Sacrifice Y1 Grethr\nMove R2 Bluthr G2\n\n20) wil: Discover Y1 G2 G3 G3\n\n21) dragon76n: Build Y1 Grethr\n\n22) wil: Build Y2 G3\n\n23) dragon76n: Sacrifice Y1 Grethr\nMove R2 G2 G3\n\n24) wil: Sacrifice R1 Wil\nAttack R2 G3\n\n25) dragon76n: Build R1 Dragon76n\n\twil: I'll gladly trade my little pawn for your glorious attack drone...I like the way you've outfitted it.\n\tdragon76n: I was wondering about that. \n\n26) wil: Build R1 G3\n\twil: everything is a move.... when it comes to attack who is bigger will trump....or who gets the first to fire their weapon in the case of evenly matched.\n\n27) dragon76n: Trade R1 B1 Dragon76n\n\n28) wil: Trade G1 B1 Wil\n\twil: t g1 b1 wil\n\n29) dragon76n: Build B2 Dragon76n\n\twil: basic strategy always get piece the same color as the other fellow has...gotta keep up...more basic stategy....write the directions in the correct box.\n\n30) wil: Discover B1 Wil Y2 Y2\n\tdragon76n: Ok. Thanks for the tips. Btw, I'm assuming my build setup is safe since you don't have a y3 to move your b1 straight to my homeworld.\r\n\n\tdragon76n: It looks like there are some more abbreviated words that the system will accept. Are all of the commands able to be shortened to 1 letter?\n\n31) dragon76n: T B2 R2 Dragon76n\n\twil: yes you were correct...now you are not...cha cha cha..\n\n32) wil: Build G1 Wil\n\n33) dragon76n: Trade R1 G1 Dragon76n\n\n34) wil: Move G1 Wil Y2\n\n35) dragon76n: Build R1 Dragon76n\n\n36) wil: Build B2 Y2\n\n37) dragon76n: Move Y1 Grethr Y2\n\n38) wil: Sacrifice R1 G3\nAttack Y1 Y2\n\n39) dragon76n: Move B1 Dragon76n Grethr\n\n40) wil: Build R1 G3\n\n41) dragon76n: Discover R2 Dragon76n Y3 Yelthr\n\n42) wil: Sacrifice R1 G3\nAttack B1 Grethr\n\n43) dragon76n: Build R1 Dragon76n\n\n44) wil: Build G2 Wil\n\n45) dragon76n: Move G1 Dragon76n Yelthr\n\n46) wil: Trade G2 R2 Wil\n\twil: factory installed.\n\tdragon76n: Ooohhhhhh....\n\n47) dragon76n: Build G2 Yelthr\n\n48) wil: Build G2 Wil\n\twil: ok, so I'll postpone factory production for some planetary defense.\n\n49) dragon76n: Move G1 Yelthr Y2\n\n50) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild Y1 Grethr\nBuild G3 Wil\n\n51) dragon76n: M G2 Yelthr Y2\nC Y2 Green\n\n52) wil: Sacrifice G2 Wil\nBuild G1 Wil\nBuild G1 Wil\n\n53) dragon76n: Move R1 Dragon76n Yelthr\n\n54) wil: Build B2 Grethr\n\n55) dragon76n: M R2 Yelthr Dragon76n\n\n56) wil: Build B3 Grethr\n\n57) dragon76n: T R2 G2 Dragon76n\n\n58) wil: Sacrifice G1 Wil\nBuild B3 Y2\n\n59) dragon76n: Build G1 Dragon76n\n\n60) wil: Trade B3 R3 Grethr\n\n61) dragon76n: Sacrifice G2 Dragon76n\nBuild R1 Yelthr\nBuild G2 Dragon76n\n\n62) wil: Build B3 Grethr\n\n63) dragon76n: S G2 Dragon76n\nB R2 Yelthr\nB G2 Dragon76n\n\n64) wil: Build R3 G3\n\twil: got a two step plan where the second step requires two steps so we are three steps away....not from annihilation but massive control\n\n65) dragon76n: B R3 Dragon76n\n\n66) wil: Discover G1 Wil G2 G2\n\n67) dragon76n: Move R2 Yelthr Y2\n\n68) wil: Sacrifice Y2 G3\nMove G1 G2 G3\nMove G1 G3 Dragon76n\nCatastrophe Dragon76n G\n\n69) dragon76n: A B2 Y2\n\n70) wil: Sacrifice Y2 Grethr\nMove R2 Wil Dragon76n\nMove R2 G3 Dragon76n\nCatastrophe Dragon76n R\n\n71) dragon76n: M B2 Y2 Grethr\nC Grethr Blue\n\n72) wil: Build R1 Grethr\n\n73) dragon76n: D R2 Y2 G1 Greone\n\n74) wil: Build R2 Grethr\n\n75) dragon76n: Move R1 Yelthr Dragon76n\n\n76) wil: Move B3 Y2 Greone\n\n77) dragon76n: M R1 Yelthr Y2\n\n78) wil: Sacrifice B3 Greone\nTrade R3 B3 G3\nTrade R3 Y3 Grethr\nTrade Y1 B1 Grethr\n\n79) dragon76n: A Y1 Y2\n\n80) wil: Build B2 G3\n\n81) dragon76n: A B1 Y2\n\n82) wil: Sacrifice Y3 Grethr\nMove B1 Grethr Dragon76n\nMove B2 G3 Dragon76n\nMove B3 G3 Dragon76n\nCatastrophe Dragon76n B\n\n\twil: it was...42 moves...you made me work for it!\n\twil: I look forward to the next game... I am playing HW, blam!, subdivision, mega volcano (lotso pyramid games) but am interested in any other game that you are willing to help teach!\n\nHomeworlds Online (SDG# 27768)\nVariants: "Hard time"\nStarted: 2015.6.29, Ended: 2015.7.2\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Simon: Homeworld Y3 B1 G3\n\twil: that last one was just too easy for you...and I was blind to reality\n\n3) wil: Build G1 Wil\n\tSimon: Have fun!\n\n4) Simon: Build G1 Simon\n\n5) wil: Trade G1 B1 Wil\n\n6) Simon: Trade G1 B1 Simon\n\n7) wil: Build B2 Wil\n\n8) Simon: Discover B1 Simon G2 G2\n\n9) wil: Trade B1 Y1 Wil\n\n10) Simon: Build G1 Simon\n\n11) wil: Build Y1` Wil\n\n12) Simon: Build B1 G2\n\n13) wil: Discover B2 Wil G3 G3\n\n14) Simon: Trade G3 Y3 Simon\n\n15) wil: Build B2 G3\n\n16) Simon: Build Y2 Simon\n\n17) wil: Trade B2 R2 G3\n\n18) Simon: Trade Y2 R2 Simon\n\n19) wil: Build B2 G3\n\n20) Simon: Build Y2 Simon\n\n21) wil: Trade B2 Y2 G3\n\n22) Simon: Discover Y2 Simon R2 R2\n\n23) wil: Move R2 G3 G2\n\n24) Simon: Build G1 Simon\n\n25) wil: Attack B1 G2\n\n26) Simon: Build B2 G2\n\n27) wil: Build B3 G3\n\n28) Simon: Sacrifice R2 Simon\nAttack R2 G2\nAttack B1 G2\n\n29) wil: Move B2 G3 G2\nCatastrophe G2 B\n\n30) Simon: Move G1 Simon R2\n\n31) wil: Move B3 G3 R2\n\n32) Simon: Move Y2 R2 G3\n\n33) wil: Move Y2 G3 R2\n\n34) Simon: Move Y2 G3 Wil\nCatastrophe Wil Y\n\n35) wil: Trade B3 R3 R2\n\n36) Simon: Trade Y3 B3 Simon\n\n37) wil: Attack G1 R2\n\n38) Simon: Build B1 Simon\n\n39) wil: Build G1 Wil\n\n40) Simon: Build G2 Simon\n\n41) wil: Move G1 R2 Simon\n\n42) Simon: Trade G1 R1 Simon\n\n43) wil: Build G1 Simon\n\n44) Simon: Sacrifice R2 G2\nAttack G1 Simon\nAttack G1 Simon\n\n45) wil: Trade G1 Y1 Wil\n\n46) Simon: Move B1 Simon Wil\n\n47) wil: Move G3 Wil Simon\nCatastrophe Simon G\n\twil: nice game...\n\n48) Simon: Sacrifice R1 Simon\nAttack Y1 Wil\n\tSimon: Thanks -- most claustrophobic came I've seen. I should have chosen other homeworld stars to not yield a monopoly again, but that is hard to see :)\n\twil: thanx, challenge me anytime!!\n\n\nHomeworlds Online (SDG# 27785)\nVariants: "Hard time"\nStarted: 2015.7.4, Ended: 2015.7.7\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: Homeworld Y2 B1 G3\n\n2) dlwillson: H B3 Y1 G3\n\n3) wil: Build G1 Wil\n\n4) dlwillson: B G1 Dlwillson\n\n5) wil: Trade G1 Y1 Wil\n\n6) dlwillson:\n\nT G1 Y1 Dlwillson\n\n7) wil: Build Y2 Wil\n\n8) dlwillson: B Y2 Dlwillson\n\n9) wil: Discover Y1 Wil B3 B3\n\n10) dlwillson: D Y1 Dlwillson G2 Field\n\n11) wil: Discover Y2 Wil G3 G3\n\n12) dlwillson: D Y2 Dlwillson G2 Forest\n\n13) wil: Build G1 Wil\n\n14) dlwillson: B Y3 Field\n\n15) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild Y3 B3\nBuild Y3 G3\n\n16) dlwillson: Sacrifice Y2 Forest\nMove Y3 Field B3\nMove Y3 B3 Wil\n\n17) wil: Move Y1 B3 Wil\n\n18) dlwillson: Trade Y3 R3 Wil\n\twil: record fast game\r\n\n\n19) wil: Build Y2 Wil\n\tdlwillson: Yup\r\n\n\n20) dlwillson: Attack Y2 Wil\n\n21) wil: Build G1 Wil\n\n22) dlwillson: B G2 Dlwillson\n\n23) wil: Trade Y3 B3 B3\n\n24) dlwillson: Attack G1 Wil\n\n25) wil: Build Y3 Wil\nCatastrophe Wil Y\n\n26) dlwillson: B G2 Wil\nC Wil G\n\tdlwillson: :-) I think you forgot the big rule.\n\twil: I forgot a lot... the end was coming fast enough...just thought I'd accelerate it.\n\tdlwillson: Sure, but you lost back when you sac'd your big green without looking.\r\n\r\nThe "big" rule is that you leave a big at home.\r\n\r\nThe "gun" rule is that when the other guy goes for his gun (a red), you go for yours.\r\n\r\nThere are probably other rules but I can't think of them.\r\n\r\nAnd the rules are just rules. You can break with them, but you gotta be careful. :-)\n\twil: Oh I agree...I broke them all...but I lost right out of the gates. Once the early mistake was made it was written on the wall.\r\nI also have a habit of simply moving..and the format is such I can't see the field...I should at least set up a physical galaxy during a ladder game... I look and shoot from the hip way too often.\n\n\nHomeworlds Online (SDG# 27773)\nVariants: "Hard time"\nStarted: 2015.7.5, Ended: 2015.7.17\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: Homeworld Y3 B1 G3\n\tSimon: Once more, enjoy. :-)\n\twil: can't stop me! I always enjoy this game\n\n2) Simon: Homeworld R1 B2 G3\n\n3) wil: Build G1 Wil\n\n4) Simon: Build G1 Simon\n\n5) wil: Trade G1 B1 Wil\n\n6) Simon: Trade G1 B1 Simon\n\n7) wil: Trade B1 R1 Wil\n\n8) Simon: Build B1 Simon\n\n9) wil: Build R1 Wil\n\n10) Simon: Build G1 Simon\n\n11) wil: Build R2 Wil\n\n12) Simon: Trade G1 Y1 Simon\n\n13) wil: Discover R2 Wil G2 G2\n\n14) Simon: Discover B1 Simon R3 R3\n\n15) wil: Sacrifice G3 Wil\nBuild R2 G2\nBuild R2 G2\nBuild R3 Wil\n\n16) Simon: Sacrifice G3 Simon\nBuild B2 R3\nBuild B2 R3\nBuild B3 Simon\n\n17) wil: Trade R3 G3 Wil\n\n18) Simon: Trade B3 G3 Simon\n\n19) wil: Build R3 Wil\n\n20) Simon: Build B3 Simon\n\n21) wil: Trade R3 B3 Wil\n\n22) Simon: Trade B2 Y2 R3\n\n23) wil: Build R3 Wil\n\n24) Simon: Discover B3 Simon G3 G3\n\n25) wil: Trade R3 Y3 Wil\n\n26) Simon: Trade B3 R3 G3\n\n27) wil: Build R3 Wil\n\n28) Simon: Discover B2 R3 G1 G1\n\twil: conundrum launched...\n\n29) wil: Discover R3 Wil G2 Gee2\n\n30) Simon: Build B2 G1\n\n31) wil: Move B3 Wil Gee2\n\n32) Simon: Build B3 G1\n\n33) wil: Move Y3 Wil Gee2\n\n34) Simon: Trade B3 Y3 G1\n\n35) wil: Move B3 Gee2 R3\n\n36) Simon: Build B3 G1\n\n37) wil: Sacrifice R2 G2\nAttack Y2 R3\nAttack B1 R3\n\tSimon: Can't build 3 blue ships, the stack is one short. >_> Nice timing for moving in. I will make one tasty ship instead.\n\n38) Simon: Sacrifice Y3 G1\nMove B2 G1 R3\nMove B1 Simon R3\nDiscover R3 G3 G2 Third\nCatastrophe R3 Blue\n\n39) wil: Build R2 Wil\n\n40) Simon: Trade B3 Y3 G1\n\n41) wil: Trade R2 Y2 Wil\n\n42) Simon: Build R2 Third\n\n43) wil: Trade R1 B1 Wil\n\n44) Simon: Build G1 Simon\n\n45) wil: Build G1 Wil\n\n46) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 G1\nBuild B1 G1\n\n47) wil: Move B1 Wil G2\n\n48) Simon: Move B1 G1 Third\n\n49) wil: Move Y2 Wil G2\n\n50) Simon: Move Y1 G1 Third\n\n51) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Gee2\nBuild Y2 G2\n\n52) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B2 G1\nBuild B3 Third\n\n53) wil: Build B3 G2\n\n54) Simon: Move B3 Third R3\n\n55) wil: Trade B3 G3 G2\n\n56) Simon: Attack Y2 R3\n\n57) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Wil\nBuild B3 G2\n\n58) Simon: Build B3 Third\n\n59) wil: Sacrifice Y2 G2\nMove R1 Wil Third\nMove R1 Wil Third\nCatastrophe Third R\n\n60) Simon: Trade B2 R2 G1\n\n61) wil: Discover G3 G2 R3 Arr3\n\n62) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild R1 G1\nBuild Y2 Third\n\twil: from the debris we discovered a pirate system...\n\n63) wil: Move B3 G2 Arr3\n\tSimon: New and exciting, making a catastrophe only to recover a piece as a pathway.\n\n64) Simon: Move R1 G1 Arr3\n\twil: Similar to a teleport with ships...but in two moves...\n\n65) wil: Attack R1 Arr3\n\tSimon: All abort the pirate ship!\n\n66) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild R1 G1\nBuild B2 G1\n\twil: welcome aboard young straggler, are you lost? we will accommodate your needs...said the spider to the fly...me thinks you may have just entered the web, now if you'd please string the trap\n\n67) wil: Sacrifice Y2 G2\nMove R2 G2 G1\nMove R1 Arr3 G1\nCatastrophe G1 R\n\n68) Simon: Trade B2 R2 G1\n\twil: sproing... foist trap released\n\n69) wil: Move Y3 Gee2 Arr3\n\n70) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y2 G1\nBuild R1 G1\n\n71) wil: Move G3 Arr3 Simon\n\twil: nice moves...that exchange lost me ground\n\n72) Simon: Attack G3 Simon\n\n73) wil: Sacrifice Y3 Arr3\nMove G1 Wil G2\nMove G1 G2 Arr3\nMove G1 Arr3 Simon\nCatastrophe Simon G\n\tSimon: thanks :) I expected a retreat, but then I get first dips on moving in. Returning the 1 large ship seems better, you get to make the first move later.\n\n74) Simon: Sacrifice Y1 Third\nMove B3 R3 Simon\n\n75) wil: Build R1 G2\n\n76) Simon: Trade B3 G3 Simon\n\n77) wil: Build G1 Wil\n\n78) Simon: Build G1 Simon\n\n79) wil: Trade G3 Y3 Wil\n\n80) Simon: Sacrifice Y3 G1\nMove Y2 Third Wil\nMove Y2 R3 Third\nMove Y2 Third Wil\nCatastrophe Wil Yellow\n\n81) wil: Move R3 Gee2 Wil\n\twil: sweet, missed that.\n\n82) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 G1\nBuild B2 G1\n\n83) wil: Build G3 Wil\n\tSimon: hnn, it was an opening after a long while >_>\n\n84) Simon: Discover B2 G1 Y3 Y3\n\n85) wil: Build B3 G2\n\n86) Simon: Move B2 Y3 Wil\n\n87) wil: Attack B2 Wil\n\twil: this is the end...\n\n88) Simon: Sacrifice Y2 G1\nMove B3 Third Wil\nMove B1 Third Wil\nCatastrophe Wil Blue\n\tSimon: You've played a better opening game again. I somehow managed to equalize later on, not sure how exactly. Thanks, great ideas in this round.\n\twil: feel free to challenge me anytime...\n\n\nHomeworlds Online (SDG# 27809)\nVariants: "Hard time"\nStarted: 2015.7.8, Ended: 2015.7.30\nParticipants: endo (S), Aghmarck (N)\nWinner: endo\n\n1) Aghmarck: Homeworld Y1 B2 G3\n\n2) endo: Homeworld Y1 B3 G3\n\n3) Aghmarck: Build G1 Aghmarck\n\n4) endo: Build G1 Endo\n\n5) Aghmarck: Trade G1 Y1 Aghmarck\n\n6) endo: Trade G3 Y3 Endo\n\n7) Aghmarck: Build Y2 Aghmarck\n\n8) endo: Build Y2 Endo\n\n9) Aghmarck: Trade Y2 G2 Aghmarck\n\n10) endo: Discover Y2 Endo G2 Subtle\n\n11) Aghmarck: Build Y2 Aghmarck\n\n12) endo: Build Y2 Subtle\n\n13) Aghmarck: Discover Y2 Aghmarck G3 Verdega\n\n14) endo: Build Y3 Endo\n\n15) Aghmarck: Build Y3 Verdega\n\n16) endo: Trade Y3 R3 Endo\n\n17) Aghmarck: Trade Y1 R1 Aghmarck\n\n18) endo: Build R1 Endo\n\n19) Aghmarck: Discover Y3 Verdega G2 Verda\n\n20) endo: Move Y2 Subtle Verdega\n\n21) Aghmarck: Build Y1 Verdega\n\n22) endo: Build Y3 Subtle\n\n23) Aghmarck: Build G1 Aghmarck\n\n24) endo: Sacrifice Y3 Endo\nMove G1 Endo Verda\nMove G1 Verda Verdega\nMove G1 Verdega Aghmarck\nCatastrophe Aghmarck G\n\n\nHomeworlds Online (SDG# 27810)\nVariants: "Hard time"\nStarted: 2015.7.9, Ended: 2015.7.21\nParticipants: Simon (S), Mandrel (N)\nWinner: Simon\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) Simon: Homeworld B3 Y1 G3\n\tMandrel: Have a good game\n\n3) Mandrel: Build G1 Mandrel\n\tSimon: Hi, enjoy!\n\n4) Simon: Build G1 Simon\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) Simon: Trade G1 R1 Simon\n\n\tSimon: Hi, you're low on time. Take care. :)\n\nHomeworlds Online (SDG# 27822)\nVariants: "Hard time"\nStarted: 2015.7.12, Ended: 2015.7.27\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 R1 G3\n\n2) wil: Homeworld Y2 B1 G3\n\tdlwillson: Have fun!\n\twil: the pest is back\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: Build G1 Wil\n\tdlwillson: Happy to see you. I'm here to play.\n\twil: b g1 wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\twil: ya gotta put the order in the right box\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: B G1 Dlwillson\n\n8) wil: Build G1 Wil\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) wil: Trade G1 R1 Wil\n\n11) dlwillson: B R2 Dlwillson\n\n12) wil: Build R2 Wil\n\n13) dlwillson: T R2 Y2 Dlwillson\n\n14) wil: Trade R2 Y2 Wil\n\n15) dlwillson: D Y1 Dlwillson B2 Sky\n\n16) wil: Discover Y1 Wil G3 G3\n\n17) dlwillson: B R2 Dlwillson\n\n18) wil: Build R2 Wil\n\n19) dlwillson: M R1 Dlwillson Sky\n\n20) wil: Discover Y2 Wil B3 B3\n\n21) dlwillson: Build G1 Dlwillson\n\n22) wil: Trade R2 G2 Wil\n\n23) dlwillson: B R2 Dlwillson\n\n24) wil: Build R2 Wil\n\n25) dlwillson: S G1 Dlwillson\nB R3 Sky\n\n26) wil: Move R2 Wil B3\n\n27) dlwillson: T R2 G2 Dlwillson\n\n28) wil: Sacrifice G2 Wil\nBuild R2 B3\nBuild R3 Wil\n\n29) dlwillson: M R3 Sky G3\n\n30) wil: Move R2 B3 Sky\n\tdlwillson: Sorry for the delay. I didn't see an obvious move, and then I forgot about it for a while.\n\n31) dlwillson: S G3 Dlwillson\nB Y1 Sky\nB Y3 Dlwillson\nB R3 G3\n\n32) wil: Sacrifice Y2 B3\nMove R1 Wil G3\nMove R2 Sky G3\nCatastrophe G3 R\n\n33) dlwillson: T Y1 G1 Sky\n\n34) wil: Sacrifice Y1 G3\nMove R2 B3 Sky\n\n35) dlwillson: Sacrifice G2 Dlwillson\nBuild R1 Sky\nBuild R2 Sky\nCatastrophe Sky R\n\n36) wil: Build G1 Wil\n\n37) dlwillson: T Y3 G3 Dlwillson\n\n38) wil: Trade G1 B1 Wil\n\n39) dlwillson: Trade Y1 B1 Sky\n\n40) wil: Discover B1 Wil G3 G3\n\n41) dlwillson: Build B2 Sky\n\n42) wil: Build B2 G3\n\n43) dlwillson: T B2 Y2 Sky\n\n44) wil: Trade B1 Y1 G3\n\n45) dlwillson: M R2 Dlwillson Sky\n\n46) wil: Build R1 Wil\n\n47) dlwillson: M B1 Sky G3\n\n48) wil: Move R3 Wil G3\n\n49) dlwillson: B B1 G3\n\twil: The home office has sent an emissary to greet our visitor. \n\n50) wil: Discover B2 G3 G2 G2\n\n51) dlwillson: T Y2 R2 Sky\n\twil: Interesting position...I wish we could play it out this way...and then play it out again where I sacked by R3 and took both of those...\n\n52) wil: Attack B1 G3\n\tdlwillson: You might have me beat this time.\n\n53) dlwillson: Sacrifice Y2 Dlwillson\nMove R2 Sky G3\nMove R2 Sky G3\n\twil: there is time for me to screw up still...\n\n54) wil: Attack B1 G3\n\n55) dlwillson: Attack Y1 G3\n\twil: even more interesting...I was sure before you were going to send the two blues in to attack half my homeworld..this is all a surprise\r\n\n\n56) wil: Build R1 G3\nCatastrophe G3 R\n\n57) dlwillson: M Y1 G3 Sky\n\twil: again unexpected...and I don't want to play othello...so I'll move it on...\n\n58) wil: Build B2 G2\n\n59) dlwillson: B G1 Dlwillson\n\n60) wil: Build B3 G2\n\n61) dlwillson: B G1 Sky\n\n62) wil: Build G2 Wil\n\n63) dlwillson: S G3 Dlwillson\nB G2 Sky\nB Y1 Sky\nB G3 Dlwillson\n\n64) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 G3\nBuild R1 Wil\n\n65) dlwillson: T G2 Y2 Sky\n\twil: I am feeling more comfortable now that your prediction is correct...\n\n66) wil: Sacrifice B2 G2\nTrade B3 Y3 G3\nTrade B3 R3 G2\n\n67) dlwillson: Move Y1 Sky G3\n\n68) wil: Sacrifice G2 Wil\nBuild B2 G2\nBuild B3 G3\n\n69) dlwillson: Move G1 Sky G3\n\n70) wil: Move B3 G3 Sky\n\n71) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 G3\nBuild G2 G3\nBuild G3 Dlwillson\nCatastrophe G3 G\n\n72) wil: Sacrifice R3 G2\nAttack G1 Sky\nAttack Y1 Sky\nAttack Y2 Sky\n\n73) dlwillson: Trade G1 Y1 Dlwillson\n\twil: I didn't see that coming either...nice\n\twil: while it is one I'll hopefully save in my memory banks..it appears it backfired somewhat.\n\tdlwillson: I have no illusions about who's ultimately winning here. I'm just looking for interesting opportunities, like that one, in the declining game.\n\n74) wil: Sacrifice G3 Wil\nBuild B1 G2\nBuild B1 Sky\nBuild R2 Wil\n\n75) dlwillson: B G1 Dlwillson\n\tdlwillson: What I need is a bow and arrow. Two free moves and I could have them. The and I could fire it. :-)\n\n76) wil: Trade B3 G3 Sky\n\n77) dlwillson: M G1 Dlwillson G2\n\twil: lol...yup...treadin dangerouse waters...\n\twil: I've never cornered two commodities before...but I've got them backwards...I need the red on the frontline and the blue in my homeworld...\n\twil: ah...you just made me aware of what I need to do..\n\twil: something I never really saw before...dawn just broke over marble head\n\n78) wil: Trade B2 R2 G2\n\n79) dlwillson: B G1 G2\n\n80) wil: Sacrifice R2 Wil\nAttack G1 G2\nAttack G1 G2\n\n81) dlwillson: B G2 Dlwillson\n\n82) wil: Sacrifice Y2 Sky\nMove G1 Sky Dlwillson\nMove G1 G2 Dlwillson\nCatastrophe Dlwillson G\n\twil: one strange game...\n\n83) dlwillson: T Y1 G1 Dlwillson\n\n84) wil: Move B1 Sky Dlwillson\n\n85) dlwillson: A B1 Dlwillson\n\n86) wil: Move G3 Sky Dlwillson\n\twil: yup, one strange game... \n\n87) dlwillson: B G1 Dlwillson\n\twil: LOL...what was I thinking?\n\n88) wil: Sacrifice R2 G2\nAttack G1 Dlwillson\nAttack G1 Dlwillson\n\n89) dlwillson: Pass\n\n90) wil: Attack B1 Dlwillson\n\twil: unless you have another rabbit in that hat\n\n\tdlwillson: Nope. That's a wrap.\n\twil: and now I have to defend...\n\twil: If there was only a b1 in the bank...I wanted to sack my b2 and change the colors of my green to catastrophe b's...all that would be left would be pawns on the board\n\tdlwillson: Congrats and good game! See you in about a week.\n\nHomeworlds Online (SDG# 27820)\nStarted: 2015.7.13, Ended: 2015.9.1\nParticipants: r01andg (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) r01andg: Homeworld Y2 G3 B3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tr01andg: You too!\n\n4) r01andg: Build B1 R01andg\n\n5) ts52: Trade G1 B1 Ts52\n\n6) r01andg: Discover B1 R01andg G1 Terra1\n\n7) ts52: Build B2 Ts52\n\n8) r01andg: Build B2 R01andg\n\n9) ts52: Discover B2 Ts52 G2 Kermit\n\n10) r01andg: Trade B1 G1 Terra1\n\n11) ts52: Build G1 Ts52\n\n12) r01andg: Move B2 R01andg Terra1\n\n13) ts52: Discover G1 Ts52 Y2 Bigbird\n\n14) r01andg: Trade B2 Y2 Terra1\n\n15) ts52: Build G2 Bigbird\n\n16) r01andg: Build Y1 Terra1\n\n17) ts52: Trade B1 Y1 Ts52\n\n18) r01andg: Move Y2 Terra1 Kermit\n\n19) ts52: Trade B2 R2 Kermit\n\n20) r01andg: Discover Y1 Terra1 G3 Terr2\n\n21) ts52: Attack Y2 Kermit\n\n\nHomeworlds Online (SDG# 27772)\nVariants: "Unrated"\nStarted: 2015.7.13, Ended: 2015.7.18\nParticipants: wil (S), AcetyleneLamp (N)\nWinner: wil\n\n1) AcetyleneLamp: Homeworld B1 G2 Y3\n\tAcetyleneLamp: Where are the system lablels? I clicked hide/show system labels a couple of times and there still aren't any labels.\n\tAcetyleneLamp: What kind of first move should I make?\n\tAcetyleneLamp: Have you played this before? I don't understand how to do anything.\n\n2) wil: Homeworld B3 Y2 G3\n\tAcetyleneLamp: I found the games in progress on this site and looked at the commands for archived games. I still don't quite understand what I'm doing though.\n\tAcetyleneLamp: I'm trying to learn how to play some Looney Pyramid games on this site so I can introduce them to people I know in an offline gaming group. They might not go for this one (I think Zendo is out of the question), but they might like some of the simpler games like Blam.\n\twil: You've chosen a fine start...banker star system...the yellow big ship is questionable...it works but is better suited for an experienced star ship captain...easier with a green (to maintain factory) I'll show you why... (don't know about system labels, never clicked that before)\n\twil: anyone who likes chess will love this when they grock how incredible it is.\n\n3) AcetyleneLamp: Build Y1 Acetylenelamp\n\tAcetyleneLamp: Ok, what kinds of things can I do now? I tried to build a new ship in my home system but it's telling me I need to already have one of the same color? How do I get that?\n\twil: You have a G in your homeworld star so you can always build (I have a G ship, so while my homeworld stars don't have that ability I do) So you only have a mockup for a yellow ship, you can only build what you already have...so you can build yellow.\r\n\r\nAfter you've built (first real move is a small ship the same color as the large ship..we are discussing as to whether that is will be the real start (there are times when a response may not be)..anywho... then you can trade (since you have blue in your star) either of those ships to a different color and then have the ability to build it as well) G build/grow...Y move/fuel B trade/change R attack\r\n\r\none other biggie...over population, 4 of any one color in a star system (including the star) can cause a catastrophe and all the pieces of that color go back to the bank (if the star blows too, then all the ships anchored in that system are destroyed as well. We call this a reboot...\n\n4) wil: Build G1 Wil\n\tAcetyleneLamp: Sorry if it seems like I'm relying on you to teach me these games, the rules for some of them don't really make sense to me until I've had a chance to play a game or two, and the somewhat clunky interface on this site doesn't help.\n\tAcetyleneLamp: Why doesn't think game have a list of legal rules you can bring up like the others?\n\tAcetyleneLamp: Legal moves, I mean.\n\twil: this site is basically been running wild for awhile..aint the best and all we got... to much work coding legal moves on this one....but there is some behind the scenes (different curtain) shenanigans going on\n\twil: like any game there is a learning curve...some slow some fast...learning curve for something as simple as go... this is not as long as chess..four or five games and you'll have about all the tricks figured...then it is seeing them\n\n\twil: If you wish, I'll inform you reason of and ask you to back off of a noticeably bad move.. and try again... I'll also tell you of situations I established and why...\n\twil: you can only move to stars of a different star than the one your ship is currently in...so you can only move to 3s and I can only move to 1s right now. \n\twil: When you discover a new system...you name it..whatever you'd like..for future reference (in live games they don't get a name)\n\tAcetyleneLamp: I'm trying to discover a new system but it says there are insufficient pieces in the stash.\n\twil: what is listed as the global reserve stash is the bank...you can't discover a star that doesn't have it in the bank...\n\nHomeworlds Online (SDG# 27742)\nVariants: "Hard time"\nStarted: 2015.7.20, Ended: 2015.7.23\nParticipants: wil (S), SilentTitan (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 27829)\nVariants: "Unrated"\nStarted: 2015.7.21, Ended: 2015.8.27\nParticipants: jeep (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y3 B2 G3\n\twil: ooo ooh thx for the game!\n\n2) jeep: Homeworld B3 Y1 G3\n\n3) wil: Build G1 Wil\n\tjeep: thanks for leaving up the challenge. I've been away for a couple years and am trying to ease back into playing here. I will be travelling for GenCon, but expect I can keep up with this one game. ;)\n\twil: lol... I can't get enough of this game.. \n\n4) jeep: Build G1 Jeep\n\n5) wil: Trade G1 R1 Wil\n\tjeep: Cool... FYI, I am unlikely to make a play tomorrow as I'll be driving, but I will make my move when I can.\n\twil: no worries...ome folks don't play for days...I just look when it shows up and play then...\n\n6) jeep: Trade G1 R1 Jeep\n\n7) wil: Build G1 Wil\n\n8) jeep: Build G1 Jeep\n\n9) wil: Trade G1 Y1 Wil\n\n10) jeep: Trade G1 Y1 Jeep\n\tjeep: Ugh... I am so rusty...\n\n11) wil: Build Y2 Wil\n\n12) jeep: Build Y2 Jeep\n\twil: I need rusty...\n\n13) wil: Discover Y1 Wil G1 G1\n\n14) jeep: Discover Y1 Jeep G2 G2\n\n15) wil: Discover Y2 Wil B1 B1\n\n16) jeep: Build G1 Jeep\n\n17) wil: Build G1 Wil\n\n18) jeep: Build G2 Jeep\n\n19) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G3 Wil\nBuild Y2 B1\n\n20) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y3 G2\nBuild R1 Jeep\n\n21) wil: Move G2 Wil B1\n\tjeep: Sorry for the delay. I should play more frequently when GenCon is over.\n\n22) jeep: Discover G2 Jeep B2 B2\n\twil: Were you a vendor or participant? Did you see the Looneys?\n\tjeep: Participant. I saw Kristin as she walked by. Said "hi" to Andy, but he didn't remember me and he was too busy for me to remind him who I was. ;)\r\n\n\n23) wil: S G3 Wil\nBuild G3 B1\nBuild G3 Wil\nBuild Y3 G1\n\n24) jeep: Discover Y1 G2 B1 B1-2\n\n25) wil: Trade G3 R3 B1\n\tjeep: Sorry for the delay. It always seems to happen that when I start up a game here, something happens...\n\twil: no worries\n\n26) jeep: Build G3 B2\n\n27) wil: Sacrifice G3 Wil\nBuild R2 Wil\nBuild R2 B1\nBuild G3 Wil\n\n28) jeep: Trade G2 R2 B2\n\n29) wil: Trade R1 B1 Wil\n\n30) jeep: Sacrifice G3 Jeep\nBuild G2 B2\nBuild G3 Jeep\nBuild R1 B2\n\n31) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 Wil\nBuild B2 Wil\n\n32) jeep: Trade G3 B3 B2\n\n33) wil: S Y2 B1\nM R3 Wil G1\nM B2 Wil G1\n\tjeep: Yeah, this game is all over but the crying...\n\n34) jeep: Sacrifice Y2 Jeep\nMove R2 B2 B1\nMove R1 B2 B1\nCatastrophe B1 Red\n\n35) wil: S G3 Wil\nB G3 Wil\nB G3 B1\nB Y2 B1\n\n36) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y2 B1-2\nPass\n\n37) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB B3 G1\n\n38) jeep: Move R1 Jeep B2\n\n39) wil: M R2 Wil B1\n\n40) jeep: Move Y1 B1-2 B2\n\n41) wil: S Y2 B1\nM B3 G1 G2\nM Y3 G1 G2\n\n42) jeep: Trade B3 R3 B2\n\n43) wil: S R1 Wil\nA Y3 G2\n\n44) jeep: Sacrifice G3 Jeep\nBuild G3 Jeep\nBuild Y2 B2\nBuild R1 Jeep\n\tjeep: And it gets more and more grim...\n\twil: Yeah,but that's a good move....slowed my plan...\n\twil: Yeah,but that's a good move....slowed my plan...\n\n45) wil: S G3 Wil\nB B3 G2\nB R2 B1\nB G3 Wil\n\n46) jeep: Move Y1 B2 B1-2\n\n47) wil: T B3 R3 G2\n\n48) jeep: Trade Y2 R2 B1-2\n\n49) wil: S Y2 B1\nM R2 B1 B2\nM R2 B1 B2\nC B2 R\n\twil: Two moves to mate...unless\n\n50) jeep: Move Y1 B1-2 Wil\n\n51) wil: S Y3 G2\nM Y3 G2 Jeep\nM R3 G2 Jeep\nM B3 G2 Jeep\n\twil: Occupation vehicles in place...\n\n52) jeep: Sacrifice G3 Jeep\nBuild G2 Jeep\nBuild Y2 Wil\nBuild Y2 Wil\nCatastrophe Wil Yellow\n\n53) wil: S R3 Jeep\nA G2 Jeep\nA R1 Jeep\nA R1 Jeep\n\twil: We gracefully accept your gift\n\twil: And have sent a welcoming envoy to introduce your peoples tontheir new rulers..\n\n54) jeep: Sacrifice Y2 B2\nMove G2 B2 B1\nMove G2 B1 Wil\n\n55) wil: A G1 Jeep\n\twil: Our old homeworld was a superfund site, se are amazed at not only what a wonderful job you've done on the environment here.,.but also how fast you cleameed uot that oil spill...\n\n\tjeep: gg\n\twil: We just kind of oil does rusty parts and gets too short back in the games and it back\n\nHomeworlds Online (SDG# 27790)\nVariants: "Hard time"\nStarted: 2015.7.22, Ended: 2015.7.29\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld B3 G1 R3\n\n2) wil: Homeworld B3 Y2 G3\n\tSimon: Have fun!\n\twil: Oh, alright, if you insist! Seriously thanx for the game...\n\twil: and now he looks at your opening and says "WoW"\n\n3) Simon: Build R1 Simon\n\n4) wil: Build G1 Wil\n\n5) Simon: Build R1 Simon\n\n6) wil: Trade G1 R1 Wil\n\n7) Simon: Trade R1 Y1 Simon\n\n8) wil: Build G1 Wil\n\n9) Simon: Discover R1 Simon G2 G2\n\n10) wil: Build G1 Wil\n\n11) Simon: Build Y1 Simon\n\n12) wil: Discover G1 Wil B1 B1\n\n13) Simon: Build R1 Simon\n\n14) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G2 B1\nBuild G3 Wil\n\n15) Simon: Build R2 G2\n\n16) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild G3 B1\nBuild R2 Wil\n\n17) Simon: Build R2 Simon\n\n18) wil: Trade G3 R3 B1\n\n19) Simon: Build R3 G2\n\n20) wil: Build G3 B1\n\n21) Simon: Trade R2 B2 Simon\n\n22) wil: Trade G3 Y3 B1\n\n23) Simon: Sacrifice B2 Simon\nTrade R1 B1 G2\nTrade R3 Y3 G2\n\n24) wil: Discover G2 B1 B2 B2\n\n25) Simon: Discover Y3 G2 G3 G3\n\n26) wil: Build G3 B2\n\n27) Simon: Trade Y1 B1 Simon\n\n28) wil: Trade G3 R3 B2\n\tSimon: Alright, the red ship sucked x_X\n\n29) Simon: Trade R3 G3 Simon\n\twil: You dang war mongers...\n\n30) wil: Sacrifice G2 Wil\nBuild R1 B2\nBuild G2 B2\n\n31) Simon: Sacrifice G3 Simon\nBuild B2 G2\nBuild B2 G2\nBuild B3 Simon\n\twil: Oh....so now you wanna go green? After the sea rises?\n\n32) wil: Build G3 B2\n\twil: https://www.youtube.com/watch?t=14&v=d90ZWD4I9O0\n\n33) Simon: Trade B2 Y2 G2\n\n34) wil: Trade G3 Y3 B2\n\n35) Simon: Trade B3 G3 Simon\n\n36) wil: Sacrifice Y3 B1\nMove G2 B2 Simon\nMove G2 B2 Simon\nMove R3 B2 Simon\nCatastrophe Simon G\n\n37) Simon: Sacrifice Y2 G2\nMove B1 G2 Simon\nMove B2 G2 Simon\nCatastrophe Simon B\n\tSimon: Nice, thanks for the game. Anything else than making a g3 didn't look enticing either.\n\twil: no, ya done right...I got ahead when I created that queen mill...\n\twil: Challenge me anytime...this game is never the same..\n\n\nHomeworlds Online (SDG# 27903)\nVariants: "Hard time"\nStarted: 2015.7.27, Ended: 2015.9.29\nParticipants: Grosseteste (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 Y1 G3\n\n2) Grosseteste: Homeworld B2 Y1 G3\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\tGrosseteste: Likewise, thanks for the game!\n\n4) Grosseteste: Build G1 Grosseteste\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Grosseteste: Discover G1 Grosseteste B3 Charlie\n\n7) Simon: Build Y2 Simon\n\n8) Grosseteste: Build G1 Charlie\n\n9) Simon: Discover Y2 Simon G2 G2\n\n10) Grosseteste: Build G1 Grosseteste\n\n11) Simon: Build Y2 G2\n\n12) Grosseteste: Trade G3 Y3 Grosseteste\n\n13) Simon: Build G2 Simon\n\n14) Grosseteste: Build G2 Grosseteste\n\n15) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y2 Simon\nBuild Y3 G2\n\n16) Grosseteste: Discover G1 Grosseteste B3 Linus\n\n17) Simon: Trade Y2 B2 Simon\n\n18) Grosseteste: Build G3 Grosseteste\n\n19) Simon: Sacrifice B2 Simon\nTrade Y2 R2 G2\nTrade Y2 B2 G2\n\n20) Grosseteste: Sacrifice Y3 Grosseteste\nMove G1 Linus G2\nMove G1 Charlie G2\nMove G1 Charlie G2\nCatastrophe G2 G\n\n21) Simon: Build Y2 Simon\n\n22) Grosseteste: Trade G2 Y2 Grosseteste\n\n23) Simon: Discover Y2 Simon B2 B2\n\n24) Grosseteste: Build G1 Grosseteste\n\n25) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y3 B2\nBuild Y3 Simon\n\n26) Grosseteste: Discover G1 Grosseteste Y3 Chuck\n\n27) Simon: Trade Y3 G3 B2\n\n28) Grosseteste: D Y2 Grosseteste G3 Linus\n\n29) Simon: Trade Y2 R2 B2\n\n30) Grosseteste: B G1 Grosseteste\n\n31) Simon: Sacrifice Y2 B2\nMove G3 B2 Chuck\nMove G3 Chuck Grosseteste\n\n\tGrosseteste: Doh! Didn't see that coming. GG\n\tSimon: gg -- Thanks for the game!\n\nHomeworlds Online (SDG# 27883)\nVariants: "Hard time"\nStarted: 2015.7.29, Ended: 2015.8.15\nParticipants: DOA (S), wil (N)\nWinner: DOA\n\n1) wil: Homeworld B3 Y1 G3\n\twil: thanx for the game...\n\n2) DOA: Homeworld G3 Y2 B3\n\twil: Can't find a live game?\n\n3) wil: Build G1 Wil\n\tDOA: Thanks and have fun. Not many live games for me, sadly. People just don't "get" homeworlds sometimes or don't like the head to head aspect of games that I enjoy, so.... what do ya do? :)\n\twil: I always liked chess...and think the complexity here is more than equivalent, I keep thinking I should find a local chess club and introduce it.\n\n4) DOA: Build B1 Doa\n\twil: Interesting opening... so how many games have you played? And do you like fortress and blue or are you experimenting?\n\n5) wil: Trade G1 B1 Wil\n\tDOA: I've played maybe... 40 games tops, but mostly against the same opponent. Fortress is an experiment but I like blue.\r\n\r\nYeah, I feel like most chess people would like this game. The fact that homeworlds is comparatively young is a huge draw for me. The future is wide open. I have a hard time hooking anyone with it because of the learning curve and many choices.\n\n6) DOA: Trade B1 G1 Doa\n\n7) wil: Build G1 Wil\n\n8) DOA: Discover G1 Doa B1 Lxsx\n\twil: I don't see where the learning curve is longer than chess... I played and played here watched various attacks take me out...\n\n9) wil: Discover B1 Wil G2 G2\n\n10) DOA: Build G1 Lxsx\n\n11) wil: Trade G1 R1 Wil\n\n12) DOA: Trade G1 Y1 Lxsx\n\n13) wil: Trade B1 Y1 G2\n\n14) DOA: Build Y2 Lxsx\n\twil: yup...did that backwards..\n\n15) wil: Build Y2 G2\n\n16) DOA: Trade Y1 R1 Lxsx\n\n17) wil: Build G1 Wil\n\n18) DOA: Build B1 Doa\n\n19) wil: Trade G1 B1 Wil\n\n20) DOA: Discover B1 Doa Y1 Opip\n\n21) wil: Discover Y1 G2 G1 G1\n\twil: where are you out of...and how did you find homeworlds?\n\n22) DOA: Sacrifice Y2 Lxsx\nDiscover B1 Opip G2 Gee\nDiscover G1 Lxsx B2 Bee\n\tDOA: I'm out of AZ. I discovered homeworlds out of PwP, then binary from wunderland. Got stashes, found a friend to learn with, and now here we are. \r\n\r\nCame here because of that post on Wunderland about Andy wanting opponents and offering a metal to the winners haha. I have never made it out east for anything game related nor would I win, but a guy can have a dream. ^_^\n\n23) wil: Move Y2 G2 Lxsx\n\twil: I am in the DC area and picked up HW during localgame nights...my daughter bought zendo first...a long time ago..\n\twil: Practice here...and then challenge him at a convention and earn that medal!!\n\twil: 1st grade to 3rd grade I lived in Pheonix... visited often...love the SW\n\n24) DOA: Build B2 Gee\n\n25) wil: Discover B1 Wil G2 G2\n\n26) DOA: Trade B2 Y2 Gee\n\tDOA: I have to agree about the SW. :) I have not visited the DC area sense I was in middle school. All the historical stuff, it was neat. Only played zendo a few times, but it was a lot of fun. It's awesome you're daughter had/has a zendo box. "alpha" pyramid stuff is really cool.\n\n27) wil: Build B2 G2\n\twil: I took my kids to a local game developer gathering, them showing and playtesting new games...Corey was there with Zendo, wits and wagers was being tested..my kids were each allowed to pick one game... it was a great experience...we did it a couple of years and then got caught up in life...didn't find pyramids again till a few years ago.\n\twil: DC/MD/VA great spring and fall...stay away summer and winter...\n\n28) DOA: Build B2 Gee\n\n29) wil: Build R1 Wil\n\twil: I just so enjoy how each game is sooo different\n\n30) DOA: Build B3 Doa\n\tDOA: And how! It's one of the best parts for sure.\n\twil: that and how a couple of reboots with catastrophes or attacks turns it into a brand new game in the middle...\n\n31) wil: Trade B1 Y1 G2\n\n32) DOA: Build Y3 Gee\n\n33) wil: Build Y3 G2\n\n34) DOA: Sacrifice Y2 Gee\nMove B2 Gee Wil\nMove B1 Gee Wil\n\n35) wil: Build B1 G2\n\n36) DOA: Sacrifice G1 Bee\nBuild B2 Wil\nCatastrophe Wil Blue\n\n37) wil: Move B2 G2 G1\n\n38) DOA: Trade B3 R3 Doa\n\n39) wil: Sacrifice R1 Wil\nAttack R1 Lxsx\n\n40) DOA: Build Y2 Gee\n\n41) wil: Build Y3 G1\n\tDOA: uhh... never mind, then never mind that never mind. -_-\n\n42) DOA: Discover Y2 Gee G3 Ugh\n\n43) wil: B G1 Wil\n\n44) DOA: Build B1 Doa\n\n45) wil: B B2 G2\n\n46) DOA: Sacrifice Y2 Ugh\nMove Y3 Gee Wil\nMove B3 Doa Wil\n\n47) wil: A Y3 Wil\n\n48) DOA: Sacrifice R3 Doa\nAttack G3N Wil\nAttack Y3N Wil\nAttack R1N Wil\n\n49) wil: S Y3 G2\nM Y3 G1 Doa\nM B2 G1 Doa\nM B2 G2 Wil\n\n50) DOA: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 Wil\nPass\nCatastrophe Wil Yellow\n\n\twil: Luv it when it gets interesting\n\twil: Luv it when it gets interesting\n\tDOA: Good game, thanks for playing.\n\twil: Thank you! Challenge me anytime.. I enjoy playing hw..\n\nHomeworlds Online (SDG# 27876)\nVariants: "Unrated"\nStarted: 2015.8.3, Ended: 2015.8.6\nParticipants: mcowper (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\n2) mcowper: Homeworld R2 B1 G3\n\twil: THANX for the game! Good Luck.\n\n3) wil: Build G1 Wil\n\n4) mcowper: Build G1 Mcowper\n\n5) wil: Trade G1 B1 Wil\n\n6) mcowper: Trade G1 Y1 Mcowper\n\n7) wil: Build B1 Wil\n\n8) mcowper: Build G1 Mcowper\n\n9) wil: Discover B1 Wil G2 G2\n\n10) mcowper: Discover G1 Mcowper B3 Heinlein\n\n11) wil: Build B2 G2\n\n12) mcowper: Build G1 Mcowper\n\n13) wil: Build B2 Wil\n\n14) mcowper: Discover G1 Mcowper B3 Asimov\n\n15) wil: Build B2 G2\n\n16) mcowper: Build G1 Mcowper\n\n17) wil: Sacrifice B2 Wil\nTrade B2 Y2 G2\nTrade B2 R2 G2\n\twil: very nice\n\n18) mcowper: Sacrifice G3 Mcowper\nBuild G2 Heinlein\nBuild G2 Asimov\nBuild G3 Mcowper\n\n19) wil: Build G3 Wil\n\n20) mcowper: Sacrifice G3 Mcowper\nBuild G3 Mcowper\nBuild Y1 Mcowper\nBuild Y2 Mcowper\n\n21) wil: Move R2 G2 Asimov\n\n22) mcowper: Sacrifice Y2 Mcowper\nDiscover G1 Asimov B2 Clarke\nDiscover G2 Asimov B2 Williamson\n\twil: this is where I'd love to push a button, play it one way, then another, and another...I've no clue which is the best direction...\n\n23) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Asimov\nBuild Y2 G2\n\n24) mcowper: Move Y1 Mcowper Heinlein\n\n25) wil: Move Y2 G2 Heinlein\n\n26) mcowper: Sacrifice G3 Mcowper\nBuild Y2 Mcowper\nBuild Y3 Heinlein\nBuild G3 Mcowper\n\n27) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 Heinlein\nBuild Y3 G2\nCatastrophe Heinlein Y\n\n28) mcowper: Sacrifice Y2 Mcowper\nMove G1 Clarke Wil\nMove G2 Williamson Wil\nCatastrophe Wil G\n\twil: Again three choices and don't know which was best...this should be fun.\n\twil: these are the times I wish I was the kinda guy that set up a physical board and thought about it and didn't just shoot from the hip...\n\n29) wil: Move Y2 G2 Heinlein\n\n30) mcowper: Trade G2 R2 Heinlein\n\n31) wil: Sacrifice R2 Asimov\nAttack R2 Heinlein\nAttack G1 Heinlein\n\n32) mcowper: Build Y1 Mcowper\n\twil: Putting two queen g's on the chopping block doesn't seem so ridiculous now\n\n33) wil: Build G1 Heinlein\n\n34) mcowper: Discover G1 Mcowper G3 Niven\n\n35) wil: Build G2 Heinlein\n\n36) mcowper: Move Y1 Mcowper Niven\n\n37) wil: Move Y3 G2 Niven\n\n38) mcowper: Sacrifice G3 Mcowper\nBuild Y2 Niven\nBuild Y2 Niven\nBuild Y3 Mcowper\nCatastrophe Niven Y\n\n39) wil: Discover G1 Heinlein Y2 Y2\n\twil: oh hell....great move!!\n\n40) mcowper: Trade Y3 R3 Mcowper\n\n41) wil: Sacrifice Y2 Heinlein\nMove R2 Heinlein Mcowper\nMove R1 Asimov Mcowper\nCatastrophe Mcowper R\n\tmcowper: Thank you. I think I'm getting better at this.\n\n42) mcowper: Sacrifice G1 Niven\nBuild Y1 Mcowper\n\twil: me thinks we both made the same mistake!\n\tmcowper: How did I not see that coming? Maybe I'm not getting better. I'm pretty sure that I have lost at this point. I'll go a couple of more turns and see what happens.\n\n43) wil: Trade G2 R2 Heinlein\n\twil: It is going to take me a couple of moves...but you didn't see it the exact same way I didn't see yours...we get a plan, and then ego and tunnel vision collude...\n\n44) mcowper: Trade Y1 G1 Mcowper\n\n45) wil: Build G2 Heinlein\n\n46) mcowper: Build Y1 Mcowper\n\twil: Interesting, you are one step ahead...so I've got to do some maneuvering to retake or I'll be in another blunder..\n\n47) wil: Build B2 G2\n\n48) mcowper: Build Y2 Mcowper\n\n49) wil: Trade B2 Y2 G2\n\n50) mcowper: Trade Y2 R2 Mcowper\n\n51) wil: Build B2 G2\n\twil: the dance of not givin your opponent access to the next larger size...\n\n52) mcowper: Build Y2 Mcowper\n\twil: I've got a plan to come visit your fine homeworld..the ships are gassed up\n\n53) wil: Build Y3 G2\n\twil: here goes nuthin\n\twil: nope...that ain't gonna work..\n\n54) mcowper: Build G2 Mcowper\n\twil: ball back in your court...taking it the slow safe way...\n\n55) wil: Build B2 G2\n\tmcowper: I'm pretty sure that all that I can do is delay the inevitable.\n\n\twil: lol... I've been wasting my time.. and we've just encountered an error in the system..I could sack my y3 and send in y2 and two Gs and catastrophe all your Ys and Gs but the system won't allow any moves after the first catastrophe.... which made me realize why am i focused on your ships when I only need to attack the star...\n\tmcowper: I saw that double catastrophe and was wondering if the system could handle it. I was kind of figuring that you would go after the star. I'm resigning. Thank you for a good game. We'll play again soon.\n\twil: quite the back and forth...challenge anytime...thanx\n\nHomeworlds Online (SDG# 27920)\nVariants: "Unrated"\nStarted: 2015.8.7, Ended: 2015.8.12\nParticipants: mcowper (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\twil: thanks...hava good game\n\n2) mcowper: Homeworld R2 B1 G3\n\n3) wil: Build G1 Wil\n\n4) mcowper: Build G1 Mcowper\n\n5) wil: Trade G1 B1 Wil\n\n6) mcowper: Trade G1 B1 Mcowper\n\n7) wil: Trade B1 Y1 Wil\n\n8) mcowper: Build G1 Mcowper\n\n9) wil: Build Y1 Wil\n\n10) mcowper: Trade G3 Y3 Mcowper\n\n11) wil: Discover Y1 Wil G2 G2\n\n12) mcowper: Build Y2 Mcowper\n\n13) wil: Build Y2 Wil\n\n14) mcowper: Build G1 Mcowper\n\n15) wil: Trade Y1 R1 Wil\n\n16) mcowper: Discover G1 Mcowper Y3 Asimov\n\n17) wil: Build R1 Wil\n\n18) mcowper: Trade Y3 G3 Mcowper\n\n19) wil: Move R1 Wil G2\n\n20) mcowper: Trade G1 R1 Mcowper\n\n21) wil: Build R2 G2\n\n22) mcowper: Build G1 Mcowper\n\n23) wil: Move R2 G2 Asimov\n\n24) mcowper: Discover G1 Asimov B2 Bradbury\n\n25) wil: Sacrifice G3 Wil\nBuild R2 Asimov\nBuild R3 Wil\nBuild R3 Wil\n\n26) mcowper: Discover R1 Mcowper B3 Clarke\n\n27) wil: Trade R3 Y3 Wil\n\n28) mcowper: Build Y1 Mcowper\n\n29) wil: Discover Y3 Wil G2 Gee2\n\n30) mcowper: Discover Y1 Mcowper B3 Delaney\n\n31) wil: Build R3 G2\n\n32) mcowper: Sacrifice G3 Mcowper\nBuild R3 Clarke\nBuild Y2 Delaney\nBuild Y3 Mcowper\n\n33) wil: Trade R3 G3 Wil\n\n34) mcowper: Trade Y3 G3 Mcowper\n\n35) wil: Build Y3 G2\n\n36) mcowper: Sacrifice G3 Mcowper\nBuild G1 Bradbury\nBuild G2 Bradbury\nBuild G3 Mcowper\n\n37) wil: Build R3 Wil\n\n38) mcowper: Trade G1 B1 Bradbury\n\n39) wil: Move R3 Wil Bradbury\n\n40) mcowper: Sacrifice G2 Bradbury\nBuild B2 Bradbury\nBuild B2 Bradbury\nCatastrophe Bradbury B\n\n41) wil: Build R3 Wil\n\n42) mcowper: Build G1 Mcowper\n\n43) wil: Sacrifice Y3 Gee2\nMove R1 Wil G2\nMove R1 G2 Clarke\nMove R1 G2 Clarke\nCatastrophe Clarke R\n\twil: On the precipice... \r\n\n\n44) mcowper: Build Y3 Mcowper\n\n45) wil: B R1 G2\n\n46) mcowper: Discover G1 Mcowper B3 Ellison\n\n47) wil: M Y3 G2 Ellison\n\n48) mcowper: Sacrifice Y2 Mcowper\nDiscover G1 Ellison Y2 Flint\nMove G1 Mcowper Delaney\n\n49) wil: M R3 G2 Delaney\n\n50) mcowper: Trade G3 R3 Mcowper\n\n51) wil: S Y3 Ellison\nM R3 Wil Flint\nM R2 Asimov Mcowper\nM R2 Asimov Mcowper\nC Mcowper R\n\n\tmcowper: I should have resigned last turn. Thank you for the game.\n\twil: Thank you! For the game...challenge me anytime!\n\nHomeworlds Online (SDG# 27944)\nVariants: "Hard time"\nStarted: 2015.8.9, Ended: 2015.9.1\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y1 G3 Dlwillson\n\n2) wil: Homeworld Y2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: Build G1 Wil\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) wil: Build Y2 Wil\n\n9) dlwillson: Discover Y1 Dlwillson G2 Field\n\n10) wil: Discover Y1 Wil G3 G3\n\n11) dlwillson: Build Y3 Field\n\n12) wil: Build Y3 G3\n\n13) dlwillson: T Y2 R2 Dlwillson\n\n14) wil: Trade Y2 R2 Wil\n\n15) dlwillson: D Y1 Field B3 Sky\n\n16) wil: D Y3 G3 G2 G2\n\tdlwillson: Sorry for the delay\n\n17) dlwillson: B Y2 Field\n\tdlwillson: B y2 field\n\n18) wil: B Y2 G3\n\tdlwillson: Oops :-)\n\n19) dlwillson: Trade Y1 G1 Sky\n\twil: I do that all the time... \n\n20) wil: B R1 Wil\n\n21) dlwillson: Move Y2 Field Sky\n\n22) wil: D R2 Wil Y3 Y3\n\n23) dlwillson: Build G1 Dlwillson\n\n24) wil: B G1 Wil\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sky\nBuild Y1 Field\nBuild G3 Dlwillson\n\n26) wil: Build R1 Wil\n\n27) dlwillson: S Y3 Field\nM G2 Sky Wil\nM G1 Sky Wil\nM Y2 Sky Wil\nC Wil G\n\n28) wil: M Y2 G3 Wil\n\twil: Igotts watch better\n\n29) dlwillson: B Y3 Field\n\n30) wil: A Y2 Wil\n\n31) dlwillson: M Y3 Field Y3\n\twil: I thought I already lost this game... Oh I see I did... But this is where super duper games as an issue or it would be ended next move\n\tdlwillson: Actually, I goofed.\n\twil: Join the club!\n\n32) wil: D Y1 G3 B2 B2\n\tdlwillson: Sorry for the long delay. No obvious moves.\n\n33) dlwillson: B R1 Dlwillson\n\n34) wil: M Y1 B2 Y3\n\tdlwillson: Now that we're a couple moves out, what do you mean about SDG having an issue?\n\twil: It doesn't allow you to continue to move after a catastrophe which would have allowed you to move in on me more \n\twil: It doesn't allow you to continue to move after a catastrophe which would have allowed you to move in on me more \n\n35) dlwillson: M Y3 Y3 Wil\nC Wil Y\n\n36) wil: T R1 G1 Wil\n\tdlwillson: All my fiddling around bought me nothing! Good job!\n\n37) dlwillson: M R2 Dlwillson Field\n\twil: Half a homeworld out numbered..\n\twil: Half a homeworld out numbered..\n\n38) wil: B G1 Wil\n\n39) dlwillson: T G1 B1 Dlwillson\n\n40) wil: B Y2 G2\n\n41) dlwillson: B Y2 Field\n\n42) wil: M Y3 G2 Wil\n\n43) dlwillson: B B1 Dlwillson\n\n44) wil: B Y2 Wil\n\n45) dlwillson: Move Y1 Field Wil\n\n46) wil: B Y3 G2\n\n47) dlwillson: Move Y2 Field Wil\nCatastrophe Wil Y\n\tdlwillson: I will snatch defeat from the jaws of victory!\n\n48) wil: B Y1 G2\n\twil: Should we really concern oucellves with Vic's foot fetish?\n\n49) dlwillson: Move B1 Dlwillson Field\n\n50) wil: M Y3 G2 Wil\n\n51) dlwillson: Build B2 Field\n\n52) wil: M Y3 Wil Field\n\twil: Not quite deja vu... More like Groundhog Day, I keep seeing the same things and trying something different\n\n53) dlwillson: T R2 Y2 Field\n\n54) wil: S R2 Y3\nA Y2 Field\nA B2 Field\n\twil: And this is different...\n\n55) dlwillson: B B2 Field\n\n56) wil: S R1 Wil\nA B2 Field\n\n57) dlwillson: B B2 Field\nC Field B\n\n58) wil: B Y2 Field\n\twil: The twists and turns of this game are just so dramatic.,.\n\n59) dlwillson: B B1 Dlwillson\n\n60) wil: T G1 R1 Wil\n\n61) dlwillson: D B1 Dlwillson G2 Forest\n\n62) wil: B Y3 G2\n\n63) dlwillson: Build B2 Dlwillson\n\n64) wil: B R1 Wil\n\n65) dlwillson: B R2 Dlwillson\n\n66) wil: B R2 Wil\n\n67) dlwillson: M R2 Dlwillson Forest\n\n68) wil: T R2 B2 Wil\n\n69) dlwillson: M B2 Dlwillson Field\n\n70) wil: B R2 Wil\n\n71) dlwillson: B B2 Field\n\n72) wil: S R2 Wil\nA B2 Field\nA B2 Field\n\n73) dlwillson: D B1 Dlwillson R2 Mars\n\n74) wil: B B3 Wil\n\n75) dlwillson: Build B3 Forest\n\n76) wil: S Y2 Field\nM B2 Wil Forest\nM B3 Wil Forest\nC Forest B\n\n77) dlwillson: Sacrifice B1 Mars\nTrade R2 Y2 Forest\n\n78) wil: M Y3 G2 Wil\n\n79) dlwillson: B R2 Dlwillson\n\n80) wil: B R2 Wil\n\n81) dlwillson: Move R2 Dlwillson Forest\n\n82) wil: M R2 Wil Y3\n\n83) dlwillson: Build R2 Dlwillson\n\n84) wil: T R1 B1 Wil\n\n85) dlwillson: Build G1 Dlwillson\n\n86) wil: M B1 Wil G2\n\n87) dlwillson: Discover R2 Dlwillson B2 Sky\n\n88) wil: S Y3 Field\nM B2 Field Dlwillson\nM B2 Field Dlwillson\nM B1 G2 Dlwillson\nC Dlwillson B\n\twil: Well...that took long enough\n\twil: I believe doomsday machine is finally in place\n\n89) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Sky\nBuild R3 Forest\nBuild R3 Dlwillson\n\n90) wil: S Y3 Wil\nM Y2 Field Dlwillson\nM Y2 G2 Dlwillson\nM Y1 G2 Dlwillson\nC Dlwillson Y\n\n\twil: It is time to rebuild the galaxy... Lot o warships out tgere\n\tdlwillson: gg\n\twil: Thanx for the game..I feel you had me...I got lucky as each big reboot I seemed to gain a little position.... And then it took me forever to close the deal..\n\tTeeTeeTee: You know, you had a perfect doomsday machine set up a dozen or so turns back, just before you triggered a catastrophe at Forest...\n\twil: I realized that I didn't see it...I took my I off the ball...\n\nHomeworlds Online (SDG# 27938)\nVariants: "Unrated"\nStarted: 2015.8.13, Ended: 2015.9.2\nParticipants: wil (S), mcowper (N)\nWinner: wil\n\n1) mcowper: Homeworld Y2 B1 G3\n\n2) wil: H Y3 B1 G3\n\n3) mcowper: Build G1 Mcowper\n\twil: Thank for the game..the one thing we know is that it will be new and different\n\n4) wil: B G1 Wil\n\n5) mcowper: Discover G1 Mcowper B3 Angel\n\n6) wil: T G1 B1 Wil\n\n7) mcowper: Build G1 Mcowper\n\twil: You didn't capitalize on my error\n\n8) wil: B B2 Wil\n\n9) mcowper: Build G1 Angel\n\tmcowper: I missed your error.\n\n10) wil: D B1 Wil G2 G2\n\n11) mcowper: Sacrifice G3 Mcowper\nBuild G2 Angel\nBuild G2 Mcowper\nBuild G3 Mcowper\n\twil: And I am thoroughly glad you did\n\n12) wil: B G3 Wil\n\n13) mcowper: Trade G2 B2 Mcowper\n\n14) wil: S G3 Wil\nB B2 G2\nB B3 G2\nB B3 Wil\n\n15) mcowper: Trade G1 Y1 Angel\n\twil: Smurfs up...ride the wave\n\n16) wil: S B2 G2\nT B3 Y3 G2\nT B3 G3 Wil\n\n17) mcowper: Discover G2 Angel Y2 Beast\n\n18) wil: S G3 Wil\nB B2 G2\nB B3 G2\nB B3 Wil\n\n19) mcowper: Build Y1 Angel\n\n20) wil: S B2 G2\nT B3 R3 G2\nT B3 G3 Wil\n\n21) mcowper: Discover Y1 Angel G2 Cyclops\n\n22) wil: S G3 Wil\nB B2 G2\nB B3 G2\nB B3 Wil\n\n23) mcowper: Trade G1 R1 Mcowper\n\n24) wil: T B3 Y3 Wil\n\n25) mcowper: Build G1 Mcowper\n\n26) wil: M B3 G2 Angel\n\n27) mcowper: Move Y1 Angel Beast\n\n28) wil: T B3 G3 Angel\n\n29) mcowper: Discover B2 Mcowper B3 Dazzler\n\n30) wil: B G1 Wil\n\n31) mcowper: Sacrifice G3 Mcowper\nBuild G3 Mcowper\nBuild Y1 Cyclops\nBuild Y2 Cyclops\n\twil: Has Elvis left the building?\n\n32) wil: S Y3 Wil\nM G3 Angel Mcowper\nM Y3 G2 Angel\nM Y3 Angel Mcowper\n\tmcowper: Sorry. I've just been very busy lately.\n\twil: No worries..\n\twil: No worries..\n\twil: No worries..\n\n33) mcowper: Attack Y3 Mcowper\n\n34) wil: S R3 G2\nA Y3 Mcowper\nA G3 Mcowper\nA R1 Mcowper\n\tmcowper: This is not looking good for me.\n\n\twil: The ole you take one I'll take three...\n\tmcowper: I don't see any way out. I think I'll resign. Thanks for the game.\n\twil: Thanx for the game.. Challenge anytime...\n\nHomeworlds Online (SDG# 27957)\nVariants: "Unrated"\nStarted: 2015.8.19, Ended: 2015.8.27\nParticipants: wil (S), Professor_Rabbit (N)\nWinner: wil\n\n1) Professor_Rabbit: Homeworld B2 G3 Y3\n\n2) wil: H B2 Y1 G3\n\n3) Professor_Rabbit: Build Y1 Professor_rabbit\n\twil: At the game\n\twil: Have! A good game\n\tProfessor_Rabbit: you too\r\n\n\tProfessor_Rabbit: you too\r\n\n\n4) wil: B G1 Wil\n\n5) Professor_Rabbit: Trade Y1 R1 Professor_rabbit\n\n\n6) wil: T G1 R1 Wil\n\twil: So what brings you to play homeworlds?\n\n7) Professor_Rabbit: Build Y1 Professor_rabbit\n\tProfessor_Rabbit: I wanted to practice a few times before playing Andy.\r\n\n\n8) wil: B R1 Wil\n\n9) Professor_Rabbit: Build R2 Professor_rabbit\n\twil: Lol...I heard that from another!! Doni know you?\n\tProfessor_Rabbit: I'm Shane. I ran their events at GenCon.\r\n\n\n10) wil: B R2 Wil\n\twil: Ah, I see...didna get to play there? Or was it work all the time?\n\n11) Professor_Rabbit: Discover R2 Professor_rabbit G1 Alpha\n\n12) wil: T R1 Y1 Wil\n\tProfessor_Rabbit: A little bit of playing in the morning and running the Looney event in the afternoon and evening.\n\n13) Professor_Rabbit: Build Y2 Professor_rabbit\n\n14) wil: B Y2 Wil\n\n15) Professor_Rabbit: Move Y3 Professor_rabbit Alpha\n\n16) wil: D Y1 Wil G3 G3\n\n17) Professor_Rabbit: Build Y2 Alpha\n\n18) wil: B Y3 G3\n\n19) Professor_Rabbit: Build Y3 Professor_rabbit\n\n20) wil: S Y2 Wil\nM Y1 G3 Alpha\nM Y1 Alpha Professor_rabbit\nC Professor_rabbit Y\n\n21) Professor_Rabbit: Build R1 Professor_rabbit\n\n22) wil: M R2 Wil G3\n\n23) Professor_Rabbit: Trade R1 B1 Professor_rabbit\n\twil: That is something you are going to want to avoid.... How do you wanna play these? Do you want me to warn you so you can back off? Or full steam ahead...the way I've learned is watching me make stupid mistakes and others move in with various attacks..join the ladder and you can play a variety of players..\n\tProfessor_Rabbit: Play to win\r\n\n\n24) wil: D Y3 G3 R1 R1\n\n25) Professor_Rabbit: Build B1 Professor_rabbit\n\n26) wil: M Y3 R1 Professor_rabbit\n\n27) Professor_Rabbit: Move Y3 Alpha Professor_rabbit\n\n28) wil: S R1 Wil\nA Y3 Professor_rabbit\n\twil: No big gun in your homeworld...you keft yourself unprotected...\n\n\twil: The struggle is real!!\n\tProfessor_Rabbit: Good game.\n\twil: Feel free to challenge anytime\n\nHomeworlds Online (SDG# 28012)\nVariants: "Hard time"\nStarted: 2015.8.24, Ended: 2015.8.28\nParticipants: Remneb (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) Remneb: Homeworld B3 R2 G3\n\tendo: thanks for the game, it took me ages to get through the decliners... gl hf\n\n3) endo: Build G1 Endo\n\n4) Remneb: Build G1 Remneb\n\tRemneb: Ya. There is some who are no more on SDG.\n\n5) endo: Trade G1 B1 Endo\n\n6) Remneb: Trade G1 Y1 Remneb\n\tendo: Couldn't they simply leave the ladder to avoid receiving challenges and slowing down active players? Also, the player I just dropped to the last spot has posted a challenge...\n\tRemneb: There are plenty of people who don't care for\r\nwhat ever.\n\n7) endo: Build B1 Endo\n\n8) Remneb: Build Y1 Remneb\n\n9) endo: Discover B1 Endo G2 Kernel\n\n10) Remneb: Discover Y1 Remneb G1 Rem\n\n11) endo: Build B2 Kernel\n\n12) Remneb: Build Y1 Rem\n\n13) endo: Trade B2 Y2 Kernel\n\n14) Remneb: Build Y2 Remneb\n\n15) endo: Build B2 Kernel\n\n16) Remneb: Trade Y2 B2 Remneb\n\n17) endo: Move B2 Kernel Rem\n\n18) Remneb: Move B2 Remneb Rem\n\n19) endo: Sacrifice G3 Endo\nBuild B2 Endo\nBuild B3 Kernel\nBuild B3 Rem\n\n20) Remneb: Move B2 Rem Kernel\n\n21) endo: Sacrifice B2 Rem\nTrade B2 R2 Endo\nTrade B3 R3 Kernel\n\n22) Remneb: Trade B2 Y2 Kernel\n\n23) endo: Sacrifice R3 Kernel\nAttack Y2S Kernel\nAttack Y1S Rem\nAttack Y1S Rem\n\n\tRemneb: Thanks for the game.\n\tendo: thanks\n\nHomeworlds Online (SDG# 27995)\nVariants: "Unrated"\nStarted: 2015.8.26, Ended: 2015.8.27\nParticipants: crothlisberger (S), wil (N)\nWinner: wil\n\n1) wil: H R3 Y1 G3 *\n\twil: Thx for the game\n\n2) crothlisberger: Homeworld B1 R2 G3\n\twil: So you've dove right in! Do ya play this in the real world?\n\n3) wil: B G1 Wil\n\tcrothlisberger: Not yet, have a set in the mail. \n\n4) crothlisberger: Build G1 Crothlisberger\n\twil: Never played? Ask any questions you wish... And I can play instructional...or for blood..your choice...\n\n5) wil: D G1 Wil B2 B2\n\tcrothlisberger: Nope, ok, ha nah just play your game I'll learn as I go. \n\tcrothlisberger: Nope, ok, ha nah just play your game I'll learn as I go. \n\tcrothlisberger: Oh weird just gave an error then sent three times. This site could definitely use some work. \n\twil: This site is fairly stagnant as far as work on improvement goes... FYI you picked a quite tried and true opening... Mine is quite unconventional...\n\n6) crothlisberger: Trade G1 Y1 Crothlisberger\n\n7) wil: B G1 Wil\n\n8) crothlisberger: Build G1 Crothlisberger\n\n9) wil: B G2 B2\n\n10) crothlisberger: Discover G1 Crothlisberger B3 B3\n\n11) wil: T G1 R1 B2\n\n12) crothlisberger: Trade G1 R1 B3\n\n13) wil: B R1 B2\n\n14) crothlisberger: Move Y1 Crothlisberger B3\n\n15) wil: B R2 B2\n\n16) crothlisberger: Move R1 B3 B2\nCatastrophe B2 R\n\n17) wil: B G1 B2\n\n18) crothlisberger: Build G1 Crothlisberger\n\n19) wil: T G1 R1 B2\n\n20) crothlisberger: Move Y1 B3 Crothlisberger\n\n21) wil: M G1 Wil B2\n\n22) crothlisberger: Trade G1 R1 Crothlisberger\n\n23) wil: T G2 Y2 B2\n\n24) crothlisberger: Build G1 Crothlisberger\n\n25) wil: B G1 B2\n\n26) crothlisberger: Discover R1 Crothlisberger G3 G3\n\n27) wil: B G2 Wil\n\n28) crothlisberger: Trade G1 B1 Crothlisberger\n\n29) wil: D G1 B2 B3 B3\n\n30) crothlisberger: Move B1 Crothlisberger G3\n\n31) wil: B G1 B3\n\n32) crothlisberger: Trade G3 R3 Crothlisberger\n\n33) wil: S G3 Wil\nB G2 B2\nB G2 B3\nB G3 Wil\n\n34) crothlisberger: Move R3 Crothlisberger B3\n\twil: You may have just list the capability to dactiey\n\twil: *factory...\n\n35) wil: B G3 B2\n\twil: S y2 b2\r\nMove in two green pawns to your homeworld and you experience a catastrophe in the power to build including your big ship\n\twil: Essentially game oveer...it'll take a little bit but is inevitable unless I blunders of course\n\twil: So do you want to back up one, or just proceed and watch it playout like it is?\n\tcrothlisberger: Ah cause if you sacrifice a piece those actions can be used in any system? \n\twil: Yes...the power of move, growth, trade, attack becomes galaxy wide...\n\tcrothlisberger: Gotcha, yes Im screwed ha. Maybe I should just resign and we could play again.\n\twil: Uoto you...you can challenge another, back this one up and keep playing...\n\twil: Uoto you...you can challenge another, back this one up and keep playing...\n\n36) crothlisberger: Attack G2 B3\n\n37) wil: S Y2 B2\nM G3 B2 B3\nM G3 B3 Crothlisberger\n\twil: Or both\n\n\twil: Yes...here you can (because you have to activate it and it is a choice) live games it catastrophes... But unless you are out of that size star...you can land on a previously unknown star for a bit and then fly off to your next destination and when you leave it moves back to the bank (they only aooear in the starfueld when they are populated)\n\tcrothlisberger: Ok. \n\twil: After a few games will see how powerful this game is... After a hundred games you'll be amazed you haven't played the same game twice they are all so different\n\twil: After a few games will see how powerful this game is... After a hundred games you'll be amazed you haven't played the same game twice they are all so different\n\twil: After a few games will see how powerful this game is... After a hundred games you'll be amazed you haven't played the same game twice they are all so different\n\twil: After a few games will see how powerful this game is... After a hundred games you'll be amazed you haven't played the same game twice they are all so different\n\tcrothlisberger: Thanks for the clarifications on some of these rules. \n\nHomeworlds Online (SDG# 27871)\nVariants: "Hard time"\nStarted: 2015.8.26, Ended: 2015.9.8\nParticipants: SilentTitan (S), crothlisberger (N)\nWinner: crothlisberger\n\n1) crothlisberger: Homeworld R2 B1 G3\n\n2) SilentTitan: Homeworld B3 R1 G3\n\n3) crothlisberger: Build G1 Crothlisberger\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) crothlisberger: Trade G1 Y1 Crothlisberger\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) crothlisberger: Build G1 Crothlisberger\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) crothlisberger: Discover G1 Crothlisberger B3 B3\n\n10) SilentTitan: Discover G1 Silenttitan Y2 Sol\n\n11) crothlisberger: Build G1 Crothlisberger\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) crothlisberger: Trade G1 Y1 Crothlisberger\n\n14) SilentTitan: Build Y2 Silenttitan\n\n15) crothlisberger: Move Y1 Crothlisberger B3\n\n16) SilentTitan: Discover G1 Sol Y3 Soul\n\n17) crothlisberger: Build Y2 B3\n\n18) SilentTitan: Discover Y1 Silenttitan G2 Sole\n\n19) crothlisberger: Trade Y1 R1 B3\n\n20) SilentTitan: Trade G2 Y2 Silenttitan\n\n21) crothlisberger: Move R1 B3 Sole\n\n\nHomeworlds Online (SDG# 28022)\nVariants: "Unrated"\nStarted: 2015.8.27, Ended: 2015.9.22\nParticipants: wil (S), jeep (N)\nWinner: wil\n\n1) jeep: Homeworld Y2 B1 G3\n\n2) wil: H B3 Y1 G3\n\n3) jeep: Build G1 Jeep\n\n4) wil: B G1 Wil\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) wil: T G1 Y1 Wil\n\n7) jeep: Build Y2 Jeep\n\n8) wil: B Y2 Wil\n\n9) jeep: Discover Y2 Jeep B3 Bigblue\n\n10) wil: D Y1 Wil G2 G2\n\n11) jeep: Build G1 Jeep\n\tjeep: Heh, I thought I moved my y1... hmm... \n\n12) wil: B Y3 G2\n\n13) jeep: Sacrifice G1 Jeep\nBuild Y3 Bigblue\n\n14) wil: D Y3 G2 B3 B3\n\n15) jeep: Trade Y2 G2 Bigblue\n\n16) wil: B G1 Wil\n\n17) jeep: Build G1 Jeep\n\n18) wil: B Y2 G2\n\n19) jeep: Discover G1 Jeep Y3 Bank\n\n20) wil: T G1 R1 Wil\n\tjeep: So many basic concepts that I have forgotten and am learning the hard way. ;)\n\n21) jeep: Trade Y1 R1 Jeep\n\twil: That is the only way to learn! First you get slammed when you don't see it coming..then you see it coming and can't figure out how to stop it...then you start using the same thing against others\n\n22) wil: B Y1 G2\n\tjeep: Yeah, the problem is that I used to be pretty good at this.\n\tjeep: Yeah, the problem is that I used to be pretty good at this.\n\n23) jeep: Discover Y3 Bigblue B2 Medblue\n\n24) wil: B G1 Wil\n\n25) jeep: Sacrifice G1 Bank\nBuild Y3 Medblue\n\n26) wil: S Y3 B3\nM Y1 G2 Bigblue\nM Y1 Bigblue Medblue\nM Y2 Wil Medblue\nC Medblue Y\n\n27) jeep: Trade G2 Y2 Bigblue\n\n28) wil: D Y1 G2 G3 G3\n\n29) jeep: Build G1 Jeep\n\n30) wil: T G1 B1 Wil\n\n31) jeep: Trade G1 B1 Jeep\n\n32) wil: T B1 Y1 Wil\n\n33) jeep: Discover Y2 Bigblue G2 Medgreen\n\n34) wil: B Y3 G2\n\n35) jeep: Build Y3 Medgreen\n\n36) wil: S Y2 G2\nM Y1 G3 Medgreen\nM Y1 Wil Medgreen\nC Medgreen Y\n\n37) jeep: Build G1 Jeep\n\n38) wil: B Y1 G2\n\tjeep: Heh, I saw that and then made the play anyway. I was so far behind already that I didn't know what to do. :/\n\n39) jeep: Build B1 Jeep\n\n40) wil: B R1 Wil\n\n41) jeep: Build R2 Jeep\n\n42) wil: B R2 Wil\n\n43) jeep: Build R2 Jeep\n\tjeep: Yep, I see little in the way of getting out of this mess.\n\n44) wil: M R1 Wil G2\n\n45) jeep: Trade R2 Y2 Jeep\n\n46) wil: B R2 G2\n\n47) jeep: Discover G1 Jeep B3 Changer\n\n48) wil: M R2 G2 Changer\n\n49) jeep: Sacrifice G1 Changer\nBuild G1 Jeep\n\n50) wil: S G3 Wil\nB R3 Changer\nB R3 G2\nB R3 Wil\n\n\tjeep: GG, There is no getting out of this even for a few moves. I need to take care of some family issues, but will be back to accept your standing challenge again in a few days. I'll get the rust off sooner or later. ;)\n\twil: Take care of family!! Yay. And thanx for the game I look forward to the next\n\nHomeworlds Online (SDG# 28033)\nVariants: "Unrated"\nStarted: 2015.8.27, Ended: 2015.9.5\nParticipants: crothlisberger (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) crothlisberger: Homeworld B2 Y1 G3\n\n3) wil: B G1 Wil\n\n4) crothlisberger: Build G1 Crothlisberger\n\n5) wil: T G1 Y1 Wil\n\n6) crothlisberger: Build G1 Crothlisberger\n\n7) wil: B Y1 Wil\n\twil: Oops this can spell trouble if I can monopolize an economy..\n\n8) crothlisberger: Trade G3 Y3 Crothlisberger\n\n9) wil: D Y1 Wil G1 G1\n\twil: That is a solution!\n\n10) crothlisberger: Build Y2 Crothlisberger\n\n11) wil: B Y2 Wil\n\n12) crothlisberger: Sacrifice Y3 Crothlisberger\nDiscover Y2 Crothlisberger B3 Hoth\nMove Y2 Hoth G1\nMove Y2 G1 Wil\nCatastrophe Wil Y\n\n13) wil: B Y1 G1\n\twil: You are a crazy man!! What are you gonna do without a big ship? I'll wait a bit for you to rethink that or tell me to go ahead..\n\tcrothlisberger: Ha I debated whether or not it was worth it, but wasn't really sure, figured it was risky.\n\n14) crothlisberger: Build G2 Crothlisberger\n\tcrothlisberger: eh I already did it, let's just play it out this time.\n\n15) wil: M Y1 G1 Wil\n\n16) crothlisberger: Trade G1 R1 Crothlisberger\n\n17) wil: B Y2 Wil\n\tcrothlisberger: Just realized something unfortunate. \n\tcrothlisberger: Just realized something unfortunate. \n\tcrothlisberger: Just realized something unfortunate. \n\tcrothlisberger: Just realized something unfortunate. \n\n18) crothlisberger: Trade G2 Y2 Crothlisberger\n\n19) wil: T Y1 R1 Wil\n\n20) crothlisberger: Build G1 Crothlisberger\n\n21) wil: B G2 Wil\n\n22) crothlisberger: Build R1 Crothlisberger\n\n23) wil: B Y1 G1\n\n24) crothlisberger: Move G1 Crothlisberger Wil\n\n25) wil: T G2 R2 Wil\n\n26) crothlisberger: Build G2 Wil\n\n27) wil: S G3 Wil\nB Y2 Wil\nB Y3 G1\nB Y3 Wil\n\n28) crothlisberger: Move Y2 Crothlisberger Wil\nCatastrophe Wil Y\n\n29) wil: A G2 Wil\n\n30) crothlisberger: Build G2 Wil\n\n31) wil: A G2 Wil\n\twil: Crazy game...\n\n32) crothlisberger: Build G2 Wil\n\n33) wil: M Y3 G1 Wil\nC Wil G\n\n34) crothlisberger: Build G1 Crothlisberger\n\n35) wil: M Y3 Wil Crothlisberger\n\n36) crothlisberger: Build G2 Crothlisberger\n\n37) wil: S R2 Wil\nA R1 Crothlisberger\nA R1 Crothlisberger\n\n38) crothlisberger: Move G2 Crothlisberger Wil\n\n39) wil: A G1 Crothlisberger\n\tcrothlisberger: Oh dang I didn't realize you could do that without having a red ship in the system. \n\tcrothlisberger: Oh dang I didn't realize you could do that without having a red ship in the system. \n\n40) crothlisberger: Trade G2 R2 Wil\n\tcrothlisberger: I'm out of options \n\n41) wil: A G1 Crothlisberger\n\twil: A sacrifice is intragalactic...if you have the other requirements any ability is deployed system wide\n\tcrothlisberger: But when you sacrifice a green you can't build in a system unless you have green there. \n\n\twil: Exactly.it just imoparts the ability to every star system.. As if you had a green there..you can always onkybuild where you have the color..\n\twil: I counted the steps and just stayed one ahead..good game\n\tcrothlisberger: Like you can sacrifice a green, and then build a yellow in a system you have yellow but not green? \n\tcrothlisberger: Yeah good game, better than the first ha \n\twil: Yes in order for the build power of the green anywhere ...you must have that color to build from...and why/how blue is important...\n\nHomeworlds Online (SDG# 28031)\nVariants: "Unrated"\nStarted: 2015.8.27, Ended: 2016.4.21\nParticipants: crothlisberger (S), sompm (N)\nWinner: sompm\n\n1) sompm: Homeworld G2 B3 Y3\n\n2) crothlisberger: Homeworld B1 Y2 G3\n\n3) sompm: Build Y1 Sompm\n\n4) crothlisberger: Build G1 Crothlisberger\n\n5) sompm: Trade Y1 B1 Sompm\n\n6) crothlisberger: Discover G1 Crothlisberger B3 Hoth\n\n7) sompm: Discover B1 Sompm Y1 Mirrodin\n\n8) crothlisberger: Build G1 Hoth\n\n9) sompm: Trade B1 G1 Mirrodin\n\n10) crothlisberger: Trade G1 Y1 Hoth\n\n11) sompm: Discover G1 Mirrodin G3 Galifrey\n\n12) crothlisberger: Build Y1 Hoth\n\n13) sompm: Build Y1 Sompm\n\n14) crothlisberger: Build Y2 Hoth\n\n15) sompm: Build G1 Galifrey\n\n16) crothlisberger: Move Y1 Hoth Crothlisberger\n\n17) sompm: Sacrifice Y1 Sompm\nMove G1 Galifrey Crothlisberger\n\n18) crothlisberger: Trade G3 R3 Crothlisberger\n\n19) sompm: Discover G1 Crothlisberger Y3 Vulcan\n\n20) crothlisberger: Trade R3 G3 Crothlisberger\n\n21) sompm: Build G2 Vulcan\n\n22) crothlisberger: Build Y1 Hoth\n\n23) sompm: Discover G2 Vulcan B1 Fodra\n\n24) crothlisberger: Move Y1 Hoth Fodra\n\n25) sompm: Build Y2 Sompm\n\tsompm: Are you dropping SDG or are you doing what I did and forgetting about it because there are no persistent reminders after your last "your turn" message arrives? I think you might get a "time is almost up" message right before the end, but yeah, it's possible to fall off entirely.\n\tcrothlisberger: Oh wow sorry, yeah just been busy and never got any email or anything. \n\n26) crothlisberger: Build Y3 Hoth\n\n27) sompm: Trade Y3 R3 Sompm\n\tsompm: I know how that goes. You get busy, and Homeworlds is also not the easiest game in terms of turn-time.\n\tsompm: I ended up attaching a second email to my phone so I would be reminded. I'm hoping if I keep my number of running games down I won't get overloaded and go offline again. We'll see how that goes.\n\n28) crothlisberger: Trade Y2 R2 Hoth\n\tcrothlisberger: I should probably do that \n\n29) sompm: Build G2 Vulcan\n\n30) crothlisberger: Build G3 Hoth\n\n31) sompm: Move G1 Vulcan Crothlisberger\n\n32) crothlisberger: Trade G3 R3 Crothlisberger\n\n33) sompm: Build G3 Fodra\n\n\tsompm: Poke.\n\nHomeworlds Online (SDG# 28035)\nVariants: "Unrated"\nStarted: 2015.8.27, Ended: 2015.9.14\nParticipants: sompm (S), wil (N)\nWinner: sompm\n\n1) wil: H R3 Y1 G3 *\n\n2) sompm: Homeworld B3 G1 Y3\n\n3) wil: B G1 Wil\n\twil: By also picking goldilocks... We have a short universe is that your intent? You may back up and change\n\tsompm: That was intentional. If there is a known disadvantage to matched planets for a given player, then I'll switch back, but I do want to see how a short universe pans out.\n\twil: K, typically it is just a shorter game..\n\n4) sompm: Build Y1 Sompm\n\n5) wil: D G1 Wil B2 B2\n\n6) sompm: Move Y1 Sompm B2\n\n7) wil: T G1 R1 B2\n\n8) sompm: Discover Y1 B2 Y1 Y1\n\n9) wil: B G1 Wil\n\n10) sompm: Build Y2 Sompm\n\n11) wil: B G1 Wil\n\n12) sompm: Trade Y2 G2 Sompm\n\n13) wil: M G1 Wil B2\n\n14) sompm: Discover G2 Sompm Y2 Y2\n\n15) wil: B G2 B2\n\n16) sompm: Build Y2 Sompm\n\n17) wil: T G2 Y2 B2\n\n18) sompm: Trade Y2 R2 Sompm\n\n19) wil: B G2 B2\n\n20) sompm: Build G2 Y2\n\n21) wil: B G3 B2\n\n22) sompm: Sacrifice Y3 Sompm\nMove G2 Y2 Wil\nMove G2 Y2 Wil\nPass\nCatastrophe Wil G\n\n\tsompm: Good game. Not kidding about matched Homeworlds being fast - I think that was the shortest game I've ever played.\n\twil: Yez..n I fell asleep at the wheel\n\tsompm: That's sometimes literal. I once took a game of chess from slightly in my advantage to lost in six moves by playing late at night.\n\nHomeworlds Online (SDG# 28032)\nVariants: "Hard time"\nStarted: 2015.8.27, Ended: 2015.9.9\nParticipants: sompm (S), SilentTitan (N)\nWinner: sompm\n\n1) SilentTitan: Homeworld B1 R3 G3\n\n2) sompm: Homeworld G2 Y1 B3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) sompm: Build B1 Sompm\n\n5) SilentTitan: Build G1 Silenttitan\n\n6) sompm: Discover B1 Sompm G3 Pandora\n\n7) SilentTitan: Trade G1 Y1 Silenttitan\n\n8) sompm: Build B1 Pandora\n\n9) SilentTitan: Build Y1 Silenttitan\n\n10) sompm: Build B2 Sompm\n\n\nHomeworlds Online (SDG# 28045)\nStarted: 2015.8.29, Ended: 2015.9.7\nParticipants: crothlisberger (S), DOA (N)\nWinner: crothlisberger\n\n1) DOA: Homeworld G3 Y1 B3\n\n2) crothlisberger: Homeworld B1 Y2 G3\n\tDOA: Hello. Good luck and have fun!\n\n3) DOA: Build B1 Doa\n\n4) crothlisberger: Build G1 Crothlisberger\n\n5) DOA: Discover B1 Doa G2 Lxsx\n\n6) crothlisberger: Discover G1 Crothlisberger B3 Hoth\n\n7) DOA: Build B1 Doa\n\n8) crothlisberger: Build G1 Crothlisberger\n\n9) DOA: Build B2 Lxsx\n\n10) crothlisberger: Build G1 Crothlisberger\n\n11) DOA: Trade B2 Y2 Lxsx\n\n12) crothlisberger: Build G2 Hoth\n\n13) DOA: Trade B3 G3 Doa\n\n14) crothlisberger: Trade G1 R1 Crothlisberger\n\n15) DOA: Build B2 Lxsx\n\n16) crothlisberger: Trade G2 Y2 Hoth\n\n17) DOA: Discover B1 Lxsx Y3 Mxwx\n\n18) crothlisberger: Build G1 Hoth\n\n19) DOA: Sacrifice G3 Doa\nBuild B2 Mxwx\nBuild B2 Lxsx\nBuild B3 Doa\n\n20) crothlisberger: Move G1 Hoth Lxsx\n\n21) DOA: Build B3 Doa\n\n22) crothlisberger: Sacrifice G3 Crothlisberger\nBuild G2 Lxsx\nBuild G2 Hoth\nBuild G3 Crothlisberger\n\n23) DOA: Sacrifice Y2 Lxsx\nDiscover B2 Lxsx G3 Gwar\nMove B2 Lxsx Gwar\n\n24) crothlisberger: Trade G2 Y2 Hoth\n\n\nHomeworlds Online (SDG# 28063)\nVariants: "Hard time"\nStarted: 2015.8.30, Ended: 2015.9.14\nParticipants: ajo (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) ajo: Homeworld R2 B3 G3\n\n3) endo: Build G1 Endo\n\n4) ajo: Build G1 Ajo\n\n5) endo: Trade G1 B1 Endo\n\n6) ajo: Build G1 Ajo\n\n7) endo: Build B1 Endo\n\n8) ajo: Trade G1 Y1 Ajo\n\n9) endo: Discover B1 Endo G2 Image\n\n10) ajo: Discover G1 Ajo Y1 Alpha\n\n11) endo: Build B2 Endo\n\n12) ajo: Build G1 Ajo\n\n13) endo: Discover B1 Endo B2 Quotient\n\n14) ajo: Build G1 Alpha\n\n15) endo: Sacrifice G3 Endo\nBuild B2 Image\nBuild B3 Endo\nBuild B3 Quotient\n\n16) ajo: Discover G1 Ajo Y1 Delos\n\n17) endo: Trade B3 G3 Endo\n\n18) ajo: Discover G1 Alpha B3 Lebling\n\n19) endo: Trade B3 G3 Quotient\n\n20) ajo: Build G2 Lebling\n\n21) endo: Sacrifice G3 Quotient\nBuild G2 Endo\nBuild G3 Endo\nBuild B3 Quotient\n\n22) ajo: Build Y2 Ajo\n\n23) endo: Trade G2 R2 Endo\n\n24) ajo: Trade G2 Y2 Lebling\n\n25) endo: Trade B3 Y3 Quotient\n\n26) ajo: Build Y2 Ajo\n\n27) endo: Sacrifice G3 Endo\nBuild R1 Endo\nBuild B3 Quotient\nBuild Y3 Quotient\n\n28) ajo: Build G2 Ajo\n\n29) endo: Trade B3 G3 Quotient\n\tajo: I'm definitely going to lose...\n\n30) ajo: Discover G1 Alpha B3 Kotok\n\tendo: probably... I've got quite a few larges\n\n31) endo: Move Y3 Quotient Kotok\n\n32) ajo: Sacrifice G3 Ajo\nBuild G2 Delos\nBuild G3 Ajo\nBuild Y1 Lebling\n\n33) endo: Sacrifice B2 Endo\nTrade B1 R1 Image\nTrade B1 R1 Quotient\n\n34) ajo: Trade Y2 R2 Lebling\n\n35) endo: Sacrifice G3 Quotient\nBuild G3 Endo\nBuild R3 Image\nBuild R3 Quotient\n\n36) ajo: Sacrifice G1 Kotok\nBuild R3 Lebling\n\n37) endo: Sacrifice Y3 Kotok\nDiscover R3 Image Y3 Sub\nMove R1 Image Lebling\nMove R1 Quotient Lebling\nCatastrophe Lebling R\n\n38) ajo: Trade Y2 B2 Ajo\n\n39) endo: Move R3 Quotient Delos\n\n40) ajo: Sacrifice G2 Delos\nBuild Y2 Lebling\nBuild Y2 Lebling\n\n41) endo: Attack G1S Delos\n\n42) ajo: Discover Y1 Lebling R2 Kotok\n\n43) endo: Sacrifice G3 Endo\nBuild G1 Endo\nBuild G2 Endo\nBuild G3 Delos\n\n44) ajo: Sacrifice Y2 Lebling\nMove G1 Lebling Delos\nMove G2 Ajo Delos\nCatastrophe Delos Green\n\n45) endo: Sacrifice G3 Endo\nBuild R1 Delos\nBuild R1 Delos\nBuild R3 Sub\n\n46) ajo: Move Y1 Kotok Endo\n\n47) endo: Sacrifice G2 Endo\nBuild Y2 Quotient\nBuild R2 Sub\n\n48) ajo: Build G1 Ajo\n\n49) endo: Sacrifice Y3 Quotient\nMove R3 Delos Ajo\nMove R3 Sub Delos\nMove R3 Delos Ajo\n\n50) ajo: Sacrifice G1 Ajo\nBuild Y3 Endo\n\n51) endo: Sacrifice R3 Ajo\nAttack G3 Ajo\nAttack B2 Ajo\nAttack Y2 Ajo\n\n52) ajo: Pass\n\n53) endo: Attack Y1 Ajo\n\tajo: Good game!\n\tendo: Thanks for the game. I like how the stashes kept swinging between the different colors throughout.\n\n\nHomeworlds Online (SDG# 28064)\nVariants: "No undo, Hard time"\nStarted: 2015.9.3, Ended: 2015.9.7\nParticipants: wil (S), DOA (N)\nWinner: wil\n\n1) DOA: Homeworld B3 Y1 G3\n\n2) wil: H B3 G2 Y3\n\tDOA: Hello again :) Have fun!\n\twil: Let's!!\n\n3) DOA: Build G1 Doa\n\n4) wil: B Y1 Wil\n\n5) DOA: Discover G1 Doa B2 Clue\n\n6) wil: B Y1 Wil\n\n7) DOA: Build G1 Clue\n\n8) wil: D Y1 Wil B1 B1\n\n9) DOA: Build G1 Clue\n\n10) wil: B Y2 Wil\n\n11) DOA: Build G2 Doa\n\n12) wil: T Y2 G2 Wil\n\n13) DOA: Trade G2 Y2 Doa\n\n14) wil: M G2 Wil B1\n\n15) DOA: Discover Y2 Doa G2 Badplan\n\n16) wil: D Y1 Wil B1 Be1\n\tDOA: Haha I'm out of my element this time around. I should not have neglected that yellow! That was a clever reason to take fortress.\n\n17) DOA: Trade G1 R1 Clue\n\twil: Cornering any economy has advantages...\n\twil: But you've got in...I was not successful..\n\twil: You stopped OPEC from controlling fissil fuels and I stopped Halibutron from and endless cycle of no bid contracts...\n\n18) wil: B Y2 B1\n\tDOA: Haha!\n\n\nHomeworlds Online (SDG# 28080)\nVariants: "Hard time"\nStarted: 2015.9.4, Ended: 2015.9.7\nParticipants: DOA (S), Aghmarck (N)\nWinner: Aghmarck\n\n1) Aghmarck: Homeworld Y1 B2 G3\n\n2) DOA: Homeworld G3 Y1 B3\n\n3) Aghmarck: Build G1 Aghmarck\n\n\nHomeworlds Online (SDG# 28042)\nVariants: "Unrated"\nStarted: 2015.9.6, Ended: 2015.9.10\nParticipants: wil (S), panglott (N)\nWinner: wil\n\n1) panglott: Homeworld G3 B1 Y3\n\n2) wil: H B3 Y2 G3\n\n3) panglott: Trade Y3 G3 Panglott\n\n4) wil: B G1 Wil\n\twil: Why didn't you build a yellow one?\n\twil: You'll now need to trade back for a yellow to move...I'll wait a bit...un case you want to take back that move. \n\twil: You'll now need to trade back for a yellow to move...I'll wait a bit...un case you want to take back that move. \n\tpanglott: Thanks, but no worries ;) I might have to learn things the hard way :)\n\twil: That is the way i see it too.... I lost a few dozen games learning what various attacks look like...then how to use them...then how to stop them...\n\n5) panglott: Build G1 Panglott\n\n6) wil: T G1 B1 Wil\n\n7) panglott: Trade G1 Y1 Panglott\n\n8) wil: B B1 Wil\n\n9) panglott: Build Y1 Panglott\n\twil: Second contemplation if I get a color you should make sure you have the same color \n\n10) wil: D B1 Wil G1 G1\n\n11) panglott: Discover Y1 Panglott G2 Helium\n\n12) wil: S G3 Wil\nB B2 G1\nB B2 G1\nB B2 Wil\n\n13) panglott: Build G1 Panglott\n\n14) wil: T B2 G2 Wil\n\n15) panglott: Trade G1 R1 Panglott\n\n16) wil: T B2 Y2 G1\n\n17) panglott: Build R1 Panglott\n\n18) wil: B B2 G1\n\n19) panglott: Move R1 Panglott Helium\n\n20) wil: T B2 R2 G1\n\n21) panglott: Build G1 Panglott\n\n22) wil: M B2 G1 Helium\n\n23) panglott: Move G3 Panglott Helium\n\n24) wil: S Y2 G1\nM B2 Helium Panglott\nD B1 G1 G2 Geetoo\n\n25) panglott: Build R1 Panglott\n\twil: I've made some silly mistakes for ya. But I think I am still safe.\n\n26) wil: S R2 G1\nA R1 Panglott\nA R1 Panglott\n\n27) panglott: Build R2 Helium\n\n28) wil: A Y1 Panglott\n\n29) panglott: Move R1 Helium Panglott\n\n30) wil: A G1 Panglott\n\n31) panglott: Sacrifice R2 Helium\nAttack R1 Panglott\nAttack R1 Panglott\n\twil: This is the scary part about counting as nd verifying that I thought I could stay one step ahead...\n\n32) wil: T B2 R2 Panglott\nC Panglott R\n\tpanglott: Whew! ;)\n\n\twil: Good try...and I forgot this didn't automatically catastrophe! You'll take a few beatings along the way but eventually be rewarded with a great game... Challenge me anytime...ask any questions\n\tpanglott: Good game, thanks! ;)\n\nHomeworlds Online (SDG# 28072)\nStarted: 2015.9.10, Ended: 2015.10.30\nParticipants: MattTheSpratt (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B2 Y3 G3\n\n2) MattTheSpratt: Homeworld Y2 B1 G3\n\tts52: Have a good game!\n\tMattTheSpratt: Same to you!\n\n3) ts52: Build G1 Ts52\n\n4) MattTheSpratt: Build G1 Mattthespratt\n\n5) ts52: Trade G1 B1 Ts52\n\n6) MattTheSpratt: Discover G1 Mattthespratt R3 Corneria\n\n7) ts52: Build B1 Ts52\n\n8) MattTheSpratt: Build G1 Mattthespratt\n\n9) ts52: Discover B1 Ts52 Y1 Zoe\n\n10) MattTheSpratt: Move G1 Mattthespratt Corneria\n\n11) ts52: Build B2 Ts52\n\n12) MattTheSpratt: Trade G3 B3 Mattthespratt\n\n13) ts52: Trade B2 G2 Ts52\n\n\nHomeworlds Online (SDG# 28131)\nVariants: "Hard time"\nStarted: 2015.9.11, Ended: 2015.9.18\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: Homeworld B3 Y1 G3\n\twil: good luck... I look forward to when there are more players who work there way up to the top\n\n2) wil: H Y2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\twil: Until then I'll gladly battle you to improve my skill\n\n4) wil: B G1 Wil\n\tdlwillson: I always kinda hope someone will write an android app of this.\r\n\r\n:-)\r\n\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\twil: We all do... Where you could slide with your fingers and see resoonse s real time... Got one contendah...currently not an app..but live java script in alpa.. When it goes beta and I am allowed I'll get you in testing...\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) wil: B Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Sky\n\n10) wil: D Y1 Wil G3 G3\n\tdlwillson: Cool!\n\n11) dlwillson: B Y3 Sky\n\n12) wil: Build Y3 G3\n\n13) dlwillson: D Y3 Sky B3 Sea\n\n14) wil: T Y2 R2 Wil\n\n15) dlwillson: T Y2 R2 Dlwillson\n\n16) wil: D Y3 G3 B2 B2\n\n17) dlwillson: Build Y2 Sky\n\n18) wil: D R2 Wil Y3 Y3\n\n19) dlwillson: Move Y2 Sky Sea\n\n20) wil: B Y2 G3\n\n21) dlwillson: Trade Y2 G2 Sea\n\n22) wil: M Y2 G3 B2\n\n23) dlwillson: Build Y2 Sea\n\n24) wil: B G1 Wil\n\n25) dlwillson: Build G1 Dlwillson\n\n26) wil: M G1 Wil Y3\n\n27) dlwillson: Build R1 Dlwillson\n\n28) wil: B R1 Y3\n\n29) dlwillson: Build G1 Sea\n\n30) wil: M R1 Y3 Wil\n\n31) dlwillson: Build G2 Sea\n\twil: Done forgot to fix the bluebird\n\n32) wil: S Y2 B2\nM G1 Y3 B2\nM G1 B2 Sea\nC Sea G\n\n33) dlwillson: Trade Y2 G2 Sea\n\n34) wil: B G1 Wil\n\n35) dlwillson: Build G1 Sea\n\n36) wil: M G1 Wil Y3\n\n37) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sea\nBuild G2 Sea\nBuild G3 Dlwillson\n\n38) wil: B R1 Wil\n\n39) dlwillson: Trade G2 R2 Sea\n\n40) wil: B Y2 G3\n\n41) dlwillson: Sacrifice Y2 Sea\nMove G1 Sea Wil\nDiscover R2 Dlwillson B2 Life\n\n42) wil: A G1 Wil\n\n43) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Sea\nBuild R3 Life\nBuild R3 Dlwillson\n\n44) wil: S G3 Wil\nB G2 Y3\nB G3 Y3\nB G3 Wil\n\twil: I don't like where this is going\n\n45) dlwillson: Trade R2 Y2 Life\n\n46) wil: M G1 Y3 B2\n\n47) dlwillson: M R3 Life G3\n\n48) wil: M R1 Wil Sea\n\n49) dlwillson: Sacrifice R2 Sea\nAttack Y2 G3\nAttack Y1 G3\n\n50) wil: B R2 Wil\n\tdlwillson: I wish I had hit those greens a few turns ago. :-/\n\n51) dlwillson: M G1 Dlwillson Life\n\twil: Yeah that wasn't so smart\n\n52) wil: B R2 Y3\n\twil: Ànd I wish I went with both reds and took out your aw queen...comedy of errors..\n\twil: Ànd I wish I went with both reds and took out your aw queen...comedy of errors..\n\twil: Ànd I wish I went with both reds and took out your aw queen...comedy of errors..\n\twil: Ànd I wish I went with both reds and took out your aw queen...comedy of errors..\n\twil: The not so smart...I was talking if my move not yours...but I did stick my neck out there...\n\n53) dlwillson: A R1 Sea\n\n54) wil: M R2 Y3 B2\n\n55) dlwillson: Sacrifice Y2 G3\nMove R3 G3 Wil\nMove G2 Sea Wil\n\n56) wil: S Y3 B2\nM R2 Y3 B2\nM R2 B2 Dlwillson\nM R2 B2 Dlwillson\nC Dlwillson R\n\n\tdlwillson: I believe that's checkmate, but you've surprised me before. Let's see what you think of.\n\twil: I believe you were blinded like I often am...I get so focused on my gamut that I can't see anything else...\n\tdlwillson: Yup. I knew I was putting home in danger when I pulled the green out, but I didn't make the connection when you split your reds. I would have, on a table. Well done.\n\nHomeworlds Online (SDG# 28183)\nStarted: 2015.9.18, Ended: 2015.10.6\nParticipants: torianironfist (S), RogueJedi234 (N)\nWinner: torianironfist\n\n1) RogueJedi234: Homeworld B1 Y2 G3\n\n2) torianironfist: Homeworld G3 B1 Y3\n\ttorianironfist: homeworld g3 b1 y3 \n\n3) RogueJedi234: Build G1 Roguejedi234\n\n4) torianironfist: Build Y1 Torianironfist\n\n5) RogueJedi234: Trade G1 R1 Roguejedi234\n\n6) torianironfist: Trade Y1 R1 Torianironfist\n\n7) RogueJedi234: Build G1 Roguejedi234\n\n8) torianironfist: Build Y1 Torianironfist\n\n9) RogueJedi234: Discover G1 Roguejedi234 B3 Yavin4\n\n10) torianironfist: Trade Y1 G1 Torianironfist\n\n11) RogueJedi234: Build G1 Yavin4\n\n12) torianironfist: Build G2 Torianironfist\n\n13) RogueJedi234: Build G2 Yavin4\n\n14) torianironfist: Discover G1 Torianironfist B2 Dathomir\n\n15) RogueJedi234: Trade G2 R2 Yavin4\n\n16) torianironfist: Build G2 Dathomir\n\n17) RogueJedi234: Trade G1 Y1 Yavin4\n\n18) torianironfist: Move R1 Torianironfist Dathomir\n\n19) RogueJedi234: Build Y1 Yavin4\n\n20) torianironfist: Trade G2 Y2 Dathomir\n\n21) RogueJedi234: Discover Y1 Yavin4 G2 Ossus\n\n22) torianironfist: Trade G2 R2 Torianironfist\n\n23) RogueJedi234: Build Y1 Ossus\n\n24) torianironfist: Discover G1 Dathomir Y3 Sonamazekot\n\n25) RogueJedi234: Build Y2 Yavin4\n\n26) torianironfist: Sacrifice G1 Sonamazekot\nBuild Y3 Dathomir\n\n27) RogueJedi234: Sacrifice Y2 Yavin4\nMove Y1 Ossus Torianironfist\nMove Y1 Ossus Torianironfist\n\n28) torianironfist: Attack Y1 Torianironfist\n\n29) RogueJedi234: Build Y2 Torianironfist\nCatastrophe Torianironfist Yellow\n\n30) torianironfist: Move Y3 Dathomir Torianironfist\n\n31) RogueJedi234: Discover G1 Yavin4 B2 Moncalamari\n\n32) torianironfist: Build Y1 Torianironfist\n\n33) RogueJedi234: Build G1 Moncalamari\n\n34) torianironfist: Move Y1 Torianironfist Dathomir\n\n35) RogueJedi234: Build G1 Moncalamari\n\n36) torianironfist: Trade Y2 G2 Dathomir\n\ttorianironfist: trade y2 g2 dathomir \n\n37) RogueJedi234: Move R2 Yavin4 Moncalamari\n\n38) torianironfist: Build G2 Dathomir\n\n39) RogueJedi234: Sacrifice G1 Moncalamari\nBuild Y1 Yavin4\n\n40) torianironfist: Build Y2 Dathomir\n\n41) RogueJedi234: Move Y1 Yavin4 Dathomir\n\n42) torianironfist: Discover Y2 Dathomir G3 Kashyyyk\n\n43) RogueJedi234: Move Y1 Yavin4 Moncalamari\n\n44) torianironfist: Attack Y1 Dathomir\n\n45) RogueJedi234: Build Y2 Moncalamari\n\n46) torianironfist: Build Y3 Kashyyyk\n\n47) RogueJedi234: Sacrifice Y2 Moncalamari\nMove G1 Moncalamari Torianironfist\nMove G1 Moncalamari Torianironfist\n\n48) torianironfist: Sacrifice R2 Torianironfist\nAttack G1 Torianironfist\nAttack G1 Torianironfist\n\n49) RogueJedi234: Trade R2 G2 Moncalamari\n\n50) torianironfist: Trade G1 R1 Torianironfist\n\n51) RogueJedi234: Build Y2 Moncalamari\n\n52) torianironfist: Build Y3 Torianironfist\n\n53) RogueJedi234: Sacrifice Y2 Moncalamari\nMove Y1 Moncalamari Torianironfist\nMove G2 Moncalamari Torianironfist\n\n54) torianironfist: Attack G2 Torianironfist\n\n55) RogueJedi234: Build Y2 Torianironfist\nCatastrophe Torianironfist Yellow\n\n56) torianironfist: Discover Y1 Dathomir B3 Alderaan\n\n57) RogueJedi234: Build R2 Roguejedi234\n\n58) torianironfist: Move G2 Dathomir Alderaan\n\n59) RogueJedi234: Move R2 Roguejedi234 Alderaan\n\n60) torianironfist: Sacrifice R1 Torianironfist\nAttack R2 Alderaan\n\n\nHomeworlds Online (SDG# 28182)\nVariants: "Hard time"\nStarted: 2015.9.18, Ended: 2015.10.9\nParticipants: SilentTitan (S), goulo (N)\nWinner: SilentTitan\n\n1) goulo: Homeworld R3 B2 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\tSilentTitan: Thx\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) goulo: Trade G3 Y3 Goulo\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) goulo: Discover Y3 Goulo G1 Verdeto\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) goulo: Build G1 Goulo\n\n10) SilentTitan: Build G2 Silenttitan\n\n11) goulo: Build G2 Goulo\n\n12) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n13) goulo: Trade G1 Y1 Goulo\n\n14) SilentTitan: Move Y1 Sol Verdeto\n\n15) goulo: Move Y3 Verdeto Goulo\n\n16) SilentTitan: Build Y2 Silenttitan\n\n17) goulo: Trade Y1 R1 Goulo\n\n18) SilentTitan: Discover Y2 Silenttitan G3 Sol\n\n19) goulo: Discover G2 Goulo Y1 Flaveto\n\n20) SilentTitan: Build Y2 Verdeto\n\n21) goulo: Discover G2 Flaveto Y3 Flavego\n\n22) SilentTitan: Build Y1 Silenttitan\n\n23) goulo: Build G1 Flavego\n\n24) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Sol\nBuild Y3 Silenttitan\n\n25) goulo: Build G2 Flavego\n\n26) SilentTitan: Move G3 Silenttitan Flavego\nCatastrophe Flavego Green\n\n\tgoulo: Congrats - Thanks for the game!\n\nHomeworlds Online (SDG# 28197)\nVariants: "Hard time"\nStarted: 2015.9.20, Ended: 2015.9.21\nParticipants: Aristos (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) Aristos: Homeworld Y3 G2 B3\n\tendo: Good luck, have fun!\n\n3) endo: Build G1 Endo\n\tAristos: The Aristos Empire, spurred by a message from the stars, builds its first starship. As the scientists say: "We have no idea what 'G-o-o-d- -l-u-c-k' means, but it is clearly a non-natural signal. We must investigate." \n\n4) Aristos: Build B1 Aristos\n\n5) endo: Discover G1 Endo Y2 Stationary\n\n6) Aristos: Discover B1 Aristos B1 Plum\n\n7) endo: Build G1 Endo\n\n8) Aristos: Build B2 Aristos\n\n9) endo: Build G1 Stationary\n\n10) Aristos: Trade B2 G2 Aristos\n\n11) endo: Discover G1 Stationary Y1 Club\n\n12) Aristos: Trade B1 R1 Plum\n\n13) endo: Sacrifice G3 Endo\nBuild G2 Stationary\nBuild G3 Endo\nBuild G3 Club\n\n14) Aristos: Move G2 Aristos Plum\n\n15) endo: Build G3 Endo\n\n16) Aristos: Build B1 Aristos\n\n17) endo: Trade G1 R1 Endo\n\n18) Aristos: Build G1 Plum\n\n19) endo: Trade G3 B3 Endo\n\n\tAristos: Oh well .\n\nHomeworlds Online (SDG# 27906)\nVariants: "Hard time"\nStarted: 2015.9.20, Ended: 2015.9.29\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H B3 Y1 G3\n\tSimon: Hi. Once again, have fun!\n\twil: Thanx...I wil\n\n2) Simon: Homeworld R2 B1 G3\n\n3) wil: B G1 Wil\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 B1 Wil\n\n6) Simon: Trade G1 Y1 Simon\n\n7) wil: B B1 Wil\n\n8) Simon: Build Y1 Simon\n\n9) wil: D B1 Wil B2 B2\n\n10) Simon: Build Y2 Simon\n\n11) wil: S G3 Wil\nB B2 B2\nB B2 B2\nB B3 Wil\n\n12) Simon: Discover Y2 Simon G3 G3\nCatastrophe B2 Blue\n\n13) wil: T B3 G3 Wil\n\tSimon: hmm, what have I been missing? I pondered about the g3 sac while showering, and decided that you had to get 4 of blue in a system?\n\twil: I just screwed up...pure and simple\n\twil: Odds are a non recoverable error...\n\n14) Simon: Build Y2 Simon\n\n15) wil: B B1 Wil\n\n16) Simon: Trade Y2 B2 Simon\n\n17) wil: T B1 R1 Wil\n\n18) Simon: Move B2 Simon G3\n\n19) wil: B R1 Wil\n\n20) Simon: Build Y2 G3\n\n21) wil: B R1 Wil\n\n22) Simon: Trade Y2 R2 G3\n\n23) wil: D R1 Wil B2 B2\n\n24) Simon: Build R2 G3\n\n25) wil: D R1 Wil Y2 Y2\n\n26) Simon: Build R3 G3\n\n27) wil: M R1 Y2 G3\nC G3 R\n\n28) Simon: Sacrifice G3 Simon\nBuild Y2 Simon\nBuild Y2 G3\nBuild Y3 G3\n\n29) wil: B R1 Wil\n\n30) Simon: Discover Y1 Simon Y3 Y3\n\n31) wil: B R2 Wil\n\n32) Simon: Trade Y3 R3 G3\n\n33) wil: D R1 Wil G2 G2\n\n34) Simon: Build Y3 G3\n\n35) wil: D R1 Wil G2 Gtoo\n\twil: Yup, you've got that queen factory goin...\n\twil: It really should just knock over my king\n\twil: It really should just knock over my king\n\n36) Simon: Discover Y3 G3 G2 Gtree\n\n37) wil: B R2 G2\n\tSimon: Hmm yeah, I can produce a large every other turn. But maybe the game will become complex enough for me to err still. :-) It's your call.\n\n38) Simon: Build R3 G3\n\n39) wil: B R3 Wil\n\n40) Simon: Build Y3 Gtree\n\n41) wil: M B1 Wil G2\n\n42) Simon: Build B1 G3\n\twil: Waiting on those mistakes you promised\n\twil: Waiting on those mistakes you promised\n\n43) wil: T R3 B3 Wil\n\n44) Simon: Move B1 G3 Gtree\n\n45) wil: M B3 Wil G2\n\n46) Simon: Build B2 Gtree\n\n47) wil: B R3 Wil\n\twil: I don't need to help with your doomsday machine\n\n48) Simon: Build B3 Gtree\n\n49) wil: T R3 G3 Wil\n\n50) Simon: Sacrifice Y3 Gtree\nMove B1 Gtree Wil\nMove B2 Gtree Wil\nMove B3 Gtree Wil\nCatastrophe Wil B\n\n51) wil: T B3 Y3 G2\n\n52) Simon: Sacrifice Y3 Gtree\nMove Y1 Y3 Wil\nMove Y2 G3 Wil\nMove Y2 G3 Wil\nCatastrophe Wil Y\n\n\tSimon: Nyargh, it turned out straightforward enough to avoid mistakes >_>\n\twil: I got a yellow....I got a yellow!\n\nHomeworlds Online (SDG# 28224)\nVariants: "No undo"\nStarted: 2015.9.23, Ended: 2015.10.20\nParticipants: neilb (S), rjbs (N)\nWinner: rjbs\n\n1) rjbs: Homeworld G2 B1 R3\n\n2) neilb: Homeworld G1 B2 R3\n\trjbs: I have no idea what I'm doing, Neil, but I doubt you do, either, so allons-y!\n\n3) rjbs: Build R1 Rjbs\n\n4) neilb: Build R1 Neilb\n\n5) rjbs: Trade R1 Y1 Rjbs\n\n6) neilb: Trade R1 Y1 Neilb\n\n7) rjbs: Build R1 Rjbs\n\n8) neilb: Discover Y1 Neilb B3 Frobozz\n\n9) rjbs: Move R3 Rjbs Frobozz\n\n10) neilb: Build R1 Neilb\n\n11) rjbs: Attack Y1 Frobozz\n\n12) neilb: Trade R1 Y1 Neilb\n\n13) rjbs: Build R1 Rjbs\n\n14) neilb: Build R1 Neilb\n\n15) rjbs: Trade R1 G1 Rjbs\n\n16) neilb: Discover Y1 Neilb G3 Banana\n\n17) rjbs: Move G1 Rjbs Frobozz\n\n18) neilb: Build Y2 Banana\n\n19) rjbs: Build Y2 Rjbs\n\n20) neilb: Build Y2 Banana\n\n21) rjbs: Build Y3 Frobozz\n\n22) neilb: Discover Y2 Banana R1 Trumpton\n\n23) rjbs: Trade Y3 R3 Frobozz\n\n24) neilb: Build Y3 Banana\n\n25) rjbs: Build R2 Rjbs\n\tneilb: It always feels like a minor victory if the first move I enter is actually valid!\n\n26) neilb: Build R2 Neilb\n\n27) rjbs: Move R3 Frobozz Trumpton\n\n28) neilb: Trade R1 G1 Neilb\n\n29) rjbs: Attack Y2 Trumpton\n\n30) neilb: Build R1 Neilb\n\n31) rjbs: Move R3 Trumpton Banana\n\n32) neilb: Move Y1 Banana Neilb\n\n33) rjbs: Attack Y3 Banana\n\n34) neilb: Build G2 Neilb\n\n35) rjbs: Attack Y2 Banana\n\n36) neilb: Discover R3 Neilb Y3 Pogle\n\n37) rjbs: Move R3 Frobozz Neilb\n\n38) neilb: Build Y3 Neilb\n\n39) rjbs: Attack Y3 Neilb\n\n40) neilb: Build R2 Neilb\n\n41) rjbs: Move G1 Frobozz Neilb\nCatastrophe Neilb Green\n\n42) neilb: Move R3 Pogle Trumpton\n\n43) rjbs: Trade Y1 B1 Rjbs\n\n44) neilb: Attack Y2 Trumpton\n\n45) rjbs: Trade R2 G2 Rjbs\n\n46) neilb: Move R3 Trumpton Neilb\n\tneilb: Arrgh!\n\n47) rjbs: Move G2 Rjbs Frobozz\nCatastrophe Neilb Red\n\tneilb: This log would sure be a lot longer if it recorded all the "neilb tried to make a bonehead move"! :-)\n\n\nHomeworlds Online (SDG# 28200)\nVariants: "Hard time"\nStarted: 2015.9.27, Ended: 2015.10.20\nParticipants: wil (S), sompm (N)\nWinner: wil\n\n1) sompm: Homeworld R1 Y3 G3 *\n\n2) wil: H Y2 B1 G3\n\n3) sompm: Build G1 Sompm\n\twil: I thought I was the only one crazy enough for that opening!\n\tsompm: Good luck.\r\n\r\nI'm trying out a weird homeworld arrangement because I think it only rearranges the inevitable first three moves rather than restricting them, and it might help the endgame. We'll find out.\n\tsompm: You might not be. :)\n\n4) wil: B G1 Wil\n\twil: I've played it...just to break convention... Took me a few times to win with it..first time I get this side!\n\n5) sompm: Discover G1 Sompm B2 Octothorpe\n\n6) wil: T G1 B1 Wil\n\n7) sompm: Build G1 Octothorpe\n\n8) wil: B B1 Wil\n\n9) sompm: Trade G1 Y1 Octothorpe\n\n10) wil: D B1 Wil Y3 Y3\n\n11) sompm: Build G1 Octothorpe\n\n12) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n13) sompm: Discover Y1 Octothorpe G3 G3\n\twil: Better than a factory.,.tis a queen mill...\n\tsompm: I come to understand why lacking easy access to blue is a disadvantage.\n\n14) wil: D B2 Y3 G2 G2\n\n15) sompm: Build Y1 G3\n\twil: Yup...it ain't easy\n\n16) wil: B B3 G2\n\n17) sompm: Move Y1 G3 Wil\n\n18) wil: T B3 R3 Wil\n\n19) sompm: Sacrifice G1 Octothorpe\nBuild Y1 Wil\n\twil: Where is that mosquito repellent?\n\twil: He has tossed in a Molotov cocktail..\n\twil: Little itty bitty suicide ship filled with fuel..\n\n20) wil: T B3 Y3 G2\n\tsompm: Hey, I have to get rid of that dumb long-named planet somehow...\n\tsompm: I knew I played with someone who named planets after their piece (which actually does make things a lot easier, so I may pick up the practice), I just forgot who it was. I haven't yet tired of naming planets dumb jokes, but I'll keep it to other games so you don't have to type build g2 ApocryphalDeuterocanon or anything.\n\twil: Yeah...some folks don't like it...for them I think about using g3 for b1... I think the naming if some star systems long goofy names I'd to keep me from attacking!!\n\n21) sompm: Sacrifice G1 Octothorpe\nBuild Y2 Wil\nCatastrophe Wil Y\n\n22) wil: B B2 G2\n\n23) sompm: Build Y1 G3\n\twil: Lol...wrong move...I'll leave it alone...but it is over\n\tsompm: The temptation to (trade g3 b3 sompm) right now is real. But it would also result in immediately undoing it to avoid death.\n\tsompm: Your message seems to suggest that one of us can force a win... I'm having trouble seeing it. What am I missing?\n\n24) wil: B B3 G2\n\twil: We are close... II lengthened it a step\n\n25) sompm: Move Y1 G3 G2\n\n26) wil: T B3 R3 G2\n\tsompm: I do see the attack - I don't think it's fast enough I can't survive it. But we'll see... I get to mosquito until then. :)\n\n27) sompm: Discover Y1 G2 B3 B3\n\n28) wil: B B3 G2\n\n\twil: Swat...\n\tsompm: Hoisted by my own hard time pitard. Apologies.\n\twil: Hate that...it was all but ovah though\n\tsompm: What was the plan, by the way?\n\twil: S y3...send in r3 n b3... You attack one I sack r3 in my homeworld... And take over all your ships.,.\n\tsompm: Gotcha. I was keeping careful track of saccable yellows for catastrophes, but not size 3s, apparently.\n\twil: Yes you used one up in your hw...\n\nHomeworlds Online (SDG# 28265)\nVariants: "Hard time"\nStarted: 2015.9.29, Ended: 2015.10.21\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) wil: H B2 Y1 G3\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: Don't you *ever* get tired of banker?\n\n4) wil: B G1 Wil\n\twil: I've played them all...I like it playing second for sure...\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: B Y2 Wil\n\n9) dlwillson: T Y1 R1 Dlwillson\n\n10) wil: D Y1 Wil G3 G3\n\n11) dlwillson: D Y2 Dlwillson G1 Field\n\n12) wil: B G1 Wil\n\n13) dlwillson: Build R1 Dlwillson\n\n14) wil: T G1 R1 Wil\n\n15) dlwillson: M R1 Dlwillson Field\n\n16) wil: D Y2 Wil B3 B3\n\n17) dlwillson: Build R2 Field\n\n18) wil: B R2 Wil\n\n19) dlwillson: M R2 Field G3\n\n20) wil: D Y1 G3 B1 B1\n\n21) dlwillson: B G1 Dlwillson\n\n22) wil: T R1 B1 Wil\n\n23) dlwillson: T G1 B1 Dlwillson\n\n24) wil: B B2 Wil\n\tdlwillson: Sorry for the delay. I forgot the game!\n\n25) dlwillson: B B2 Dlwillson\n\n26) wil: D B2 Wil Y3 Y3\n\n27) dlwillson: M B1 Dlwillson Field\n\n28) wil: S G3 Wil\nB B3 Y3\nB Y1 B3\nB Y3 B1\n\n29) dlwillson: B Y3 Field\n\n30) wil: S Y3 B1\nM Y1 B1 B3\nM Y1 B3 Field\nM Y1 B3 Field\nC Field Y\n\n31) dlwillson: B G1 Dlwillson\n\n32) wil: T B3 G3 Y3\n\n33) dlwillson: B R1 Field\n\n34) wil: B G1 Y3\n\n35) dlwillson: Trade R1 Y1 Field\n\n36) wil: B G2 Y3\n\n37) dlwillson: T B2 Y2 Dlwillson\n\n38) wil: T G2 R2 Y3\n\n39) dlwillson: D Y1 Field R3 Mars\n\n40) wil: M R2 Y3 Field\n\n41) dlwillson: S G3 Dlwillson\nB R1 G3\nB R3 Dlwillson\nB R3 Field\n\n42) wil: T G1 Y1 Y3\n\twil: Well that didn't work well?\n\n43) dlwillson: S Y2 Dlwillson\nM R3 Field G3\nM R3 G3 Wil\n\n\twil: I'm not worthy!\n\twil: I'm not worthy!\n\tdlwillson: Thanks for the game!\n\twil: I'll be back..\n\nHomeworlds Online (SDG# 28239)\nVariants: "Unrated"\nStarted: 2015.9.29, Ended: 2015.10.20\nParticipants: kanzenryu (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) kanzenryu: Homeworld B1 G3 Y3\n\n3) fogus: Build G1 Fogus\n\tkanzenryu: This is my first game, so don't expect much! BTW, are you the famous Clojure guy?\n\n4) kanzenryu: Build Y1 Kanzenryu\n\tfogus: I hesitate to say famous, but yes, I do stuff with Clojure. Don't worry about this being your first game. We can talk through it if you'd like.\n\n5) fogus: Trade G1 Y1 Fogus\n\tkanzenryu: I bought The Joy of Clojure a while back. So I'm the reason you're rich now ;-)\n\tfogus: Thanks (I say from my yacht)\n\n6) kanzenryu: Trade Y1 G1 Kanzenryu\n\n7) fogus: Build G1 Fogus\n\tkanzenryu: Really quite stoked to finally be playing a game of Homeworlds\n\n8) kanzenryu: Build Y1 Kanzenryu\n\n9) fogus: Discover G1 Fogus Y3 Foo\n\n10) kanzenryu: Discover Y1 Kanzenryu G2 Bar\n\n11) fogus: Discover G1 Foo Y2 Baz\n\n12) kanzenryu: Build Y1 Bar\n\n13) fogus: Build G1 Fogus\n\n14) kanzenryu: Build Y2 Kanzenryu\n\n15) fogus: Build G2 Baz\n\tfogus: You might want to rethink that move. I've one move away from your home world and can move in and declare a catastrophe. that'll leave you in bad shape. Feel free to undo if you'd like.\n\n16) kanzenryu: Trade Y2 R2 Kanzenryu\n\tkanzenryu: Okay, thanks. I had carefully checked that there would not be a catastrophe before the move, but not after the move :-(\n\tkanzenryu: Playing around with rendering the position... http://imgur.com/OmNUlyU\n\tkanzenryu: Playing around with rendering the position... http://imgur.com/OmNUlyU\n\n17) fogus: Trade G1 R1 Fogus\n\tfogus: Very cool. What did you use to render them?\n\n18) kanzenryu: Discover Y1 Bar G3 Staging\n\tkanzenryu: Rendered with povray. I had to hunt around on the net to find the files specifying the pyramids, and then change the colouring to make them less annoyingly transparent. I still don't have the lighting right.\n\tkanzenryu: And in the actual game... Red Alert!\n\n19) fogus: Discover Y1 Fogus B3 Prod\n\tfogus: trade g1 r1 fogus\n\n20) kanzenryu: Build R1 Kanzenryu\n\n21) fogus: Discover Y1 Prod G2 Boink\n\tkanzenryu: Are you still there?\n\n22) kanzenryu: Move Y3 Kanzenryu Baz\n\n23) fogus: Discover G2 Baz Y3 Frob\n\n24) kanzenryu: Trade R2 Y2 Kanzenryu\n\n25) fogus: Build Y3 Boink\n\n26) kanzenryu: Build R1 Kanzenryu\n\n27) fogus: Move Y3 Boink Kanzenryu\n\n28) kanzenryu: Move Y3 Baz Kanzenryu\n\n29) fogus: Sacrifice R1 Fogus\nAttack Y3 Kanzenryu\n\n\tkanzenryu: Pretty much time to resign. I keep overlooking the power of the sacrifice! Thanks for the game; I really enjoyed it.\n\tfogus: It takes a few games to really get a hang of the possibilities at any moment. I'm happy to play again if you want, or to try out your MCTS player one day. :)\n\tkanzenryu: I confess I'd love another game.\n\tkanzenryu: I've set up a challenge.\n\nHomeworlds Online (SDG# 28267)\nVariants: "Hard time"\nStarted: 2015.9.29, Ended: 2015.10.15\nParticipants: Aristos (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R2 B1 G3\n\tAristos: The people of the Aristos Empire look out on the vast empty reaches of space and call upon their leaders, "We should see what's out there... maybe it is edible!"\n\tSimon: Hehe -- enjoy the game!\n\n2) Aristos: Homeworld Y3 G2 B3\n\n3) Simon: Build G1 Simon\n\tAristos: Oh! A message from the stars spurs science research... The people of Aristos launch their first ship capable of FTL travel. "Unfortunately, we are dependent on our G-class yellow sun for jump ability, which limits our empire's reach. Research in artificial jump engines on ships is proceeding. \n\n4) Aristos: Build B1 Aristos\n\n5) Simon: Trade G1 B1 Simon\n\n6) Aristos: Trade B1 G1 Aristos\n\n7) Simon: Build G1 Simon\n\n8) Aristos: Discover G1 Aristos B1 Plum\n\n9) Simon: Build B2 Simon\n\n10) Aristos: Build B2 Aristos\n\n11) Simon: Trade B2 Y2 Simon\n\n12) Aristos: Build B2 Aristos\n\n13) Simon: Discover B1 Simon G3 G3\n\n14) Aristos: Trade B2 R2 Aristos\n\n15) Simon: Build B2 G3\n\n16) Aristos: Trade B2 Y2 Aristos\n\n17) Simon: Trade B2 Y2 G3\n\tAristos: At long last, Aristoi science discovers how to build ships with built in interstellar jump capacity! The new ship is christened "The Ubiquitous" for its ability to travel everywhere. \n\tAristos: Signals reach Homeworld from a new star, but in the same language, indicating that at least one other star-faring people exists in the universe. Thus far, the language defies our efforts at translation. \n\n18) Aristos: Build G1 Plum\n\n19) Simon: Discover G1 Simon B3 B3\n\n20) Aristos: Build G2 Plum\n\n21) Simon: Build G2 Simon\n\n22) Aristos: Sacrifice Y2 Aristos\nDiscover G2 Plum G3 Pear\nDiscover G1 Plum Y3 Banana\n\n23) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B2 G3\nBuild B2 G3\n\n24) Aristos: Sacrifice G2 Pear\nBuild G2 Banana\nBuild G3 Plum\n\n25) Simon: Trade B2 R2 G3\n\n26) Aristos: Sacrifice G3 Plum\nBuild G3 Plum\nBuild R1 Aristos\nBuild B2 Aristos\n\n27) Simon: Discover B2 G3 R1 R1\n\n28) Aristos: Trade B2 Y2 Aristos\n\n29) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild R1 G3\nBuild R3 G3\n\n30) Aristos: Sacrifice Y2 Aristos\nMove R1 Aristos Plum\nMove R1 Plum G3\nCatastrophe G3 Red\n\n31) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B2 R1\nBuild B2 R1\n\tAristos: Disaster! On entering a new system, something destabilized our ship. The final readings from the ship suggest that there was an overabundance of the red energy used in our splitter beams (used for peaceful mining purposes). Perhaps it was a triple star system? We will never know now as all contact with that system was lost. \n\n32) Aristos: Trade G1 Y1 Plum\n\n33) Simon: Sacrifice G3 Simon\nBuild G1 B3\nBuild G3 Simon\nBuild B3 G3\n\n34) Aristos: Move G3 Plum G3\n\n35) Simon: Sacrifice Y2 G3\nDiscover B3 G3 R1 R1b\nMove G1 B3 R1b\n\tAristos: FIRST CONTACT! "Ma'am... they outnumber us. How do we know they are friendly?" "Have they powered up any weapons?" "Not that we can detect..." \n\n36) Aristos: Sacrifice Y1 Plum\nMove G3 G3 R1\n\tSimon: yeah, having no reds was the price for getting the large ship\n\n37) Simon: Sacrifice G2 Simon\nBuild G2 R1b\nBuild B1 G3\n\n38) Aristos: Attack B2 R1\n\n39) Simon: Sacrifice G1 B3\nBuild B3 R1b\n\tAristos: "I have good news and bad news, Captain! The bad news is we *still* haven't translated their announcement. The good news is our weapons work against their shields! Oh... even better news... yes, they are edible!" \n\n40) Aristos: Build G1 R1\n\n41) Simon: Trade B3 Y3 R1b\n\tAristos: Stunning announcement... the enemy has discovered time warping technology! They are able to leap back into the past at least one full cycle! We are doomed if we cannot replicate this dark magic!\n\n42) Aristos: Attack B2 R1\n\n43) Simon: Build B3 R1b\n\n44) Aristos: Trade B2 R2 R1\n\n45) Simon: Sacrifice B2 R1\nTrade B3 R3 R1b\nTrade B1 Y1 G3\n\n46) Aristos: Trade B2 Y2 R1\n\n47) Simon: Move R3 R1b Banana\n\n48) Aristos: Move R2 R1 G3\n\tAristos: Well, we figured out the time travel trick. That alternate timeline was a bad idea!\n\n49) Simon: Attack G2 Banana\n\n50) Aristos: Sacrifice G3 R1\nBuild G3 R1\nBuild R1 G3\nBuild R3 Aristos\n\n51) Simon: Sacrifice G2 Banana\nBuild G2 Simon\nBuild R3 Banana\n\n52) Aristos: Sacrifice R2 Aristos\nAttack Y1 G3\nAttack B1 G3\n\n53) Simon: Attack G1 Banana\n\n54) Aristos: Sacrifice G3 R1\nBuild G3 R1\nBuild B1 G3\nBuild B2 G3\n\n55) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 R1b\nBuild B2 R1b\n\n56) Aristos: Move B1 G3 Simon\n\n57) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild R2 Banana\nBuild B2 R1b\n\n58) Aristos: Move B1 G3 Simon\n\n59) Simon: Discover R3 Banana Y1 Y1\n\tAristos: Intrepid explorers report that they have found the homeworld of the aliens. It is a strange place with red and blue suns. Not like our friendly yellow star and its green companion. Initial photos stir xenophobia among the populace. The popular press dubs the red star "krypton" and warns of a race of supermen seeking to take us over. It seems unlikely that there can be peace between our species...\n\n60) Aristos: Move B2 G3 Simon\nCatastrophe Simon Blue\n\tSimon: The red sun is only for decoration!\n\n61) Simon: Build Y2 Simon\n\n62) Aristos: Move G1 R1 Simon\n\n63) Simon: Sacrifice G2 Simon\nBuild G2 Banana\nPass\n\n64) Aristos: Move R1 G3 Simon\n\n65) Simon: Attack R1 Simon\n\tAristos: We have destroyed one of their Homeworld stars! Weirdly, they have managed to stabilize their world's orbit and continue to live. You'd think blowing up a star that close would be game over, but noooooo! :-)\n\n66) Aristos: Move Y2 R1 Aristos\n\n67) Simon: Move R1 Simon R1\n\n\tAristos: Well played.\n\tSimon: Thanks for a challenging game!\n\nHomeworlds Online (SDG# 28286)\nVariants: "Hard time"\nStarted: 2015.10.1, Ended: 2015.10.12\nParticipants: MagicJohn (S), foksieloy (N)\nWinner: MagicJohn\n\n1) foksieloy: Homeworld B1 G3 Y3\n\tfoksieloy: Hi, good luck, have fun.\n\n2) MagicJohn: Homeworld B1 G3 B3 *\n\n3) foksieloy: Build Y1 Foksieloy\n\n4) MagicJohn: Build B1 Magicjohn\n\n5) foksieloy: Build Y1 Foksieloy\n\tMagicJohn: Enjoy de game!\n\n6) MagicJohn: Trade B3 Y3 Magicjohn\n\n7) foksieloy: Trade Y1 G1 Foksieloy\n\n8) MagicJohn: Build B2 Magicjohn\n\n9) foksieloy: Trade Y3 B3 Foksieloy\n\n10) MagicJohn: Discover B2 Magicjohn B2 Bbking\n\n11) foksieloy: Build Y1 Foksieloy\n\n12) MagicJohn: Build B2 Magicjohn\n\n13) foksieloy: Discover B3 Foksieloy G2 Tibbers\n\n14) MagicJohn: Trade B2 R2 Magicjohn\n\n15) foksieloy: Trade B3 R3 Tibbers\n\n16) MagicJohn: Build Y1 Magicjohn\n\n17) foksieloy: Build Y2 Foksieloy\n\n18) MagicJohn: Discover B1 Magicjohn G2 Muddywaters\n\n19) foksieloy: Discover Y1 Foksieloy G2 Gnar\n\n20) MagicJohn: Build B2 Muddywaters\n\n21) foksieloy: Build Y2 Gnar\n\n22) MagicJohn: Move Y1 Magicjohn Muddywaters\n\n23) foksieloy: Trade Y2 R2 Foksieloy\n\n24) MagicJohn: Build R1 Magicjohn\n\n25) foksieloy: Build R1 Tibbers\n\n26) MagicJohn: Build B3 Muddywaters\n\n27) foksieloy: Build Y2 Foksieloy\n\n28) MagicJohn: Discover B2 Muddywaters Y3 Eclapton\n\n29) foksieloy: Discover Y1 Gnar B3 Teemo\n\n30) MagicJohn: Trade B3 G3 Muddywaters\n\n31) foksieloy: Trade Y1 G1 Teemo\n\n32) MagicJohn: Sacrifice G3 Muddywaters\nBuild Y1 Muddywaters\nBuild B3 Muddywaters\nBuild B3 Bbking\n\n33) foksieloy: Build G1 Teemo\n\n34) MagicJohn: Trade B3 G3 Bbking\n\n35) foksieloy: Trade G1 R1 Teemo\n\n36) MagicJohn: Trade B3 R3 Muddywaters\n\n37) foksieloy: Build Y2 Gnar\n\n38) MagicJohn: Sacrifice Y1 Muddywaters\nMove G3 Bbking Foksieloy\n\n39) foksieloy: Sacrifice Y2 Foksieloy\nMove G1 Teemo Tibbers\nMove G1 Tibbers Foksieloy\nCatastrophe Foksieloy Green\n\n40) MagicJohn: Sacrifice Y1 Muddywaters\nMove R3 Muddywaters Foksieloy\n\n\tfoksieloy: Compressed space means we start with same star system (mirror match). Reason why it is compressed is because in a normal setup (different star systems) there are 2 systems of distance between homeworlds, while in compressed games the distance is 1 system (in our case: medium stars). Only worse scenario is if we start with dual same size homeworlds of different sizes (example I start g3 b3 and you start g1 b1) in which case the distance is 0 (we can directly attack each others systems).\n\tfoksieloy: Congrats, I enjoyed this game!\n\tMagicJohn: Challenge back if you like. Both of our games have been instructive for me.\n\nHomeworlds Online (SDG# 28320)\nVariants: "Hard time"\nStarted: 2015.10.6, Ended: 2015.10.11\nParticipants: torianironfist (S), RogueJedi234 (N)\nWinner: torianironfist\n\n1) RogueJedi234: Homeworld B2 Y3 G3\n\n2) torianironfist: Homeworld G1 B2 Y3\n\n3) RogueJedi234: Build G1 Roguejedi234\n\n4) torianironfist: Build Y1 Torianironfist\n\n\nHomeworlds Online (SDG# 28331)\nVariants: "Hard time"\nStarted: 2015.10.8, Ended: 2015.10.25\nParticipants: ts52 (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) endo: Build G1 Endo\n\n4) ts52: Build G1 Ts52\n\n5) endo: Trade G1 B1 Endo\n\n6) ts52: Trade G1 B1 Ts52\n\n7) endo: Build B2 Endo\n\n8) ts52: Discover B1 Ts52 G3 Kermit\n\n9) endo: Discover B1 Endo G2 Pspace\n\n10) ts52: Build G1 Ts52\n\n11) endo: Build G1 Endo\n\n12) ts52: Trade G1 Y1 Ts52\n\n13) endo: Trade G1 Y1 Endo\n\n14) ts52: Build Y2 Ts52\n\n15) endo: Build Y2 Endo\n\n16) ts52: Discover Y2 Ts52 B3 Grover\n\n17) endo: Discover Y1 Endo G2 Bqp\n\n\nHomeworlds Online (SDG# 28245)\nVariants: "Hard time"\nStarted: 2015.10.8, Ended: 2015.10.11\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\n\tSimon: Undo, in hopes that it resets your clock, but it doesn't :-/\n\twil: I was gone camping...give me another shot! Homeworls thinking will take the space of my brain contemplating aching bones and muscles...\r\n.\n\nHomeworlds Online (SDG# 28294)\nVariants: "Unrated"\nStarted: 2015.10.8, Ended: 2015.10.15\nParticipants: kanzenryu (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\n2) kanzenryu: Homeworld G1 B2 Y3\n\tSimon: Hi, enjoy. Since you're new, ask away if you have any questions whatsoever. :-) If you like, we can play with a 1-turn handicap (I will pass twice, because I'm starting player) or an even game with you moving first (I will pass once).\n\n3) Simon: Pass\n\tkanzenryu: Hi, thanks for playing! I have no objection to getting squashed quickly... this is only my second game and one thing I'd like to learn is how quickly it can turn to custard.\n\n4) kanzenryu: Build Y1 Kanzenryu\n\tSimon: Hehe, that's the spirit. Then let's still make it a game where you go first.\n\n5) Simon: Build G1 Simon\n\tkanzenryu: Then it's a yellow star destroyer coming at ya.\n\n6) kanzenryu: Build Y1 Kanzenryu\n\n7) Simon: Trade G1 Y1 Simon\n\n8) kanzenryu: Discover Y1 Kanzenryu G3 Glorp\n\n9) Simon: Build Y2 Simon\n\n10) kanzenryu: Trade Y1 G1 Kanzenryu\n\n11) Simon: Discover Y2 Simon B2 B2\n\n12) kanzenryu: Trade Y3 R3 Kanzenryu\n\tkanzenryu: trade y3 r3 kanzenryu\n\n13) Simon: Build G1 Simon\n\n14) kanzenryu: Build G2 Kanzenryu\n\n15) Simon: Build G2 Simon\n\n16) kanzenryu: Build R1 Kanzenryu\n\n17) Simon: Move G2 Simon B2\n\n18) kanzenryu: Trade G1 Y1 Kanzenryu\n\n19) Simon: Sacrifice G3 Simon\nBuild G1 B2\nBuild G2 B2\nBuild G3 Simon\n\tkanzenryu: Ouch... Was trying to move but had no yellow at home\n\n20) kanzenryu: Build Y2 Glorp\n\tSimon: The opponent's yellows are important to assess frequently, to plan where & what to build, yeah. I can ignore making red ships so far, because you can't move yours out.\n\n21) Simon: Trade G2 R2 B2\n\n22) kanzenryu: Sacrifice Y2 Glorp\nMove R3 Kanzenryu Glorp\nMove R3 Glorp B2\n\n23) Simon: Sacrifice G2 B2\nBuild R1 B2\nBuild R2 B2\nCatastrophe B2 R\n\tkanzenryu: I suspect this will either be very good or very bad...\n\n24) kanzenryu: Build Y2 Glorp\n\tSimon: I have to sacrifice to defend, but the net result is a 3-ship for a 2-ship.\n\n25) Simon: Build G2 B2\n\tkanzenryu: That was a learning experience! Defending by sacrifice and catastrophe did not occur to me. More possibilities than meets the eye in this game.\n\n26) kanzenryu: Discover Y2 Glorp G2 Staging\n\n27) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y2 Simon\nBuild Y3 B2\n\n28) kanzenryu: Build Y3 Staging\n\n29) Simon: Trade Y2 R2 B2\n\tkanzenryu: Nice trick with building multiple ships per turn. I can't see a way to stop you from doing that.\n\tkanzenryu: Nice trick with building multiple ships per turn. I can't see a way to stop you from doing that.\n\tSimon: Setting this up is a common midgame target, and opening with a g3 ship is strong for this reason.\n\n30) kanzenryu: Build G3 Kanzenryu\n\n31) Simon: Sacrifice Y2 Simon\nMove G1 B2 Glorp\nMove G1 Glorp Kanzenryu\nCatastrophe Kanzenryu G\n\n\tkanzenryu: Haha, I thought I had carefully checked for that. Okay, I guess I can safely resign at this point. Thanks very much for the game, it was a lot of fun.\n\tSimon: Thanks. Yeah, there were some neat tactical ideas. This might have given the impression that every possible catastrophe is a good play. But whenever you make one, you pay 1 turn + maybe a sacrificed ship + the ships to bring the count to 4. This is expensive, and making a developing move can be better on occasion.\n\tkanzenryu: It does tell me I need to pay far more attention to the possibilities of sacrifices! My wife just ordered me some of the pyramids for my birthday, so that should be fun when they arrive.\n\nHomeworlds Online (SDG# 28106)\nVariants: "Unrated"\nStarted: 2015.10.9, Ended: 2015.10.20\nParticipants: mathieuzebest (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) mathieuzebest: Homeworld G1 B2 Y3\n\n3) wil: B G1 Wil\n\n4) mathieuzebest: Build Y1 Mathieuzebest\n\n5) wil: T G1 Y1 Wil\n\n6) mathieuzebest: Trade Y1 G1 Mathieuzebest\n\n7) wil: D Y1 Wil B2 B2\n\n8) mathieuzebest: Discover G1 Mathieuzebest B3 B1\n\n9) wil: B G1 Wil\n\n10) mathieuzebest: Build G2 B1\n\n11) wil: T G1 R1 Wil\n\n12) mathieuzebest: Trade G1 Y1 B1\n\n13) wil: B R1 Wil\n\n14) mathieuzebest: Build Y2 B1\n\n15) wil: D R1 Wil G2 G2\n\n16) mathieuzebest: Move Y2 B1 B2\n\n17) wil: B R1 G2\n\n18) mathieuzebest: Build Y2 B1\n\n19) wil: D Y1 B2 G3 G3\n\n20) mathieuzebest: Build Y2 Mathieuzebest\n\n21) wil: B Y3 G3\n\n22) mathieuzebest: Trade Y2 R2 B2\n\n23) wil: M Y3 G3 Mathieuzebest\n\n24) mathieuzebest: Trade Y2 R2 Mathieuzebest\n\n25) wil: S R1 G2\nA Y3 Mathieuzebest\n\n26) mathieuzebest: Build R1 Mathieuzebest\n\n27) wil: S R1 G2\nA R2 Mathieuzebest\n\n28) mathieuzebest: Move Y1 B1 Mathieuzebest\n\n29) wil: S R2 Mathieuzebest\nA R1 Mathieuzebest\nA Y1 Mathieuzebest\n\n\nHomeworlds Online (SDG# 28345)\nStarted: 2015.10.10, Ended: 2015.10.10\nParticipants: mathieuzebest (S), ulric (N)\nWinner: ulric\n\n1) ulric: Homeworld B3 G2 Y3\n\n2) mathieuzebest: Homeworld G1 Y2 B3\n\n3) ulric: Build Y1 Ulric\n\n4) mathieuzebest: Build B1 Mathieuzebest\n\n5) ulric: Discover Y1 Ulric Y1 Paf\n\n6) mathieuzebest: Discover B1 Mathieuzebest Y3 Zoulou\n\n7) ulric: Build Y1 Ulric\n\n8) mathieuzebest: Trade B1 R1 Zoulou\n\n9) ulric: Build Y2 Ulric\n\n10) mathieuzebest: Move R1 Zoulou Paf\n\n11) ulric: Trade Y2 R2 Ulric\n\n12) mathieuzebest: Attack Y1 Paf\n\n13) ulric: Move R2 Ulric Paf\n\n14) mathieuzebest: Discover R1 Paf G3 Urss\n\n15) ulric: Attack Y1 Paf\n\n16) mathieuzebest: Build B1 Mathieuzebest\n\n17) ulric: Move R2 Paf Urss\n\n18) mathieuzebest: Move B3 Mathieuzebest Urss\n\n19) ulric: Attack R1 Urss\n\n20) mathieuzebest: Trade B3 R3 Urss\n\n21) ulric: Sacrifice Y1 Ulric\nDiscover R2 Urss B1 Bim\n\n22) mathieuzebest: Attack R1 Urss\n\n23) ulric: Build Y1 Ulric\n\n24) mathieuzebest: Build R1 Urss\n\n25) ulric: Trade Y1 B1 Ulric\n\n26) mathieuzebest: Build B2 Mathieuzebest\n\n27) ulric: Build B2 Ulric\n\n28) mathieuzebest: Trade B2 Y2 Mathieuzebest\n\n29) ulric: Trade B2 G2 Ulric\n\n30) mathieuzebest: Move Y2 Mathieuzebest Urss\n\n31) ulric: Sacrifice Y1 Paf\nMove R2 Bim Urss\nCatastrophe Urss R\n\n32) mathieuzebest: Discover Y2 Urss B2 Glouda\n\n33) ulric: Discover G2 Ulric Y1 Paf\n\n34) mathieuzebest: Build B1 Mathieuzebest\n\n35) ulric: Build B2 Ulric\n\n36) mathieuzebest: Trade B1 G1 Mathieuzebest\n\n37) ulric: Move B2 Ulric Paf\n\n38) mathieuzebest: Discover G1 Mathieuzebest Y3 Name\n\n39) ulric: Build G1 Paf\n\n40) mathieuzebest: Move G1 Name Glouda\n\n41) ulric: Trade G1 R1 Paf\n\n42) mathieuzebest: Build Y1 Glouda\n\n43) ulric: Build G1 Paf\n\n44) mathieuzebest: Trade Y2 R2 Glouda\n\n45) ulric: Move G1 Paf Ulric\n\n46) mathieuzebest: Build G2 Glouda\n\n47) ulric: Build G3 Paf\n\n48) mathieuzebest: Build G3 Glouda\n\n49) ulric: Build G3 Ulric\n\n50) mathieuzebest: Trade G3 Y3 Glouda\n\n51) ulric: Discover G2 Paf B3 Bim\n\n52) mathieuzebest: Move Y3 Glouda Bim\n\n53) ulric: Build G3 Bim\n\n54) mathieuzebest: Sacrifice Y3 Bim\nMove G2 Glouda Bim\nMove G1 Glouda Bim\nMove R2 Glouda Bim\nCatastrophe Bim G\n\n55) ulric: Move G1 Ulric Paf\n\n56) mathieuzebest: Move Y1 Glouda Bim\n\n57) ulric: Move G3 Ulric Paf\n\n58) mathieuzebest: Discover Y1 Bim G1 Yoda\n\n59) ulric: Trade G3 R3 Paf\n\n60) mathieuzebest: Move Y1 Yoda Ulric\n\n61) ulric: Sacrifice Y3 Ulric\nMove R1 Paf Bim\nMove R1 Bim Mathieuzebest\nMove R3 Paf Ulric\n\n62) mathieuzebest: Trade Y1 R1 Ulric\n\n63) ulric: Attack B1 Mathieuzebest\n\n\nHomeworlds Online (SDG# 28373)\nVariants: "Hard time"\nStarted: 2015.10.13, Ended: 2015.11.15\nParticipants: MagicJohn (S), foksieloy (N)\nWinner: MagicJohn\n\n1) foksieloy: Homeworld R1 B3 G3\n\tfoksieloy: Hey, let's play another, I enjoyed the previous games. :) Good luck, have fun!\n\n2) MagicJohn: Homeworld B1 G3 B3 *\n\n3) foksieloy: Build G1 Foksieloy\n\tMagicJohn: Live long and prosper...\n\n4) MagicJohn: Build B1 Magicjohn\n\n5) foksieloy: Trade G1 B1 Foksieloy\n\n6) MagicJohn: Trade B3 Y3 Magicjohn\n\n7) foksieloy: Build B2 Foksieloy\n\n8) MagicJohn: Build B2 Magicjohn\n\n9) foksieloy: Trade B1 Y1 Foksieloy\n\n10) MagicJohn: Discover B2 Magicjohn B2 Billieholiday\n\n11) foksieloy: Discover B2 Foksieloy G2 Tibbers\n\n12) MagicJohn: Trade B1 R1 Magicjohn\n\n13) foksieloy: Build B1 Tibbers\n\n14) MagicJohn: Build Y1 Magicjohn\n\n15) foksieloy: Trade B2 G2 Tibbers\n\n16) MagicJohn: Trade B2 R2 Billieholiday\n\n17) foksieloy: Build G1 Foksieloy\n\n18) MagicJohn: Discover Y1 Magicjohn G2 Gatemouth\n\n19) foksieloy: Discover G1 Foksieloy B2 Warwick\n\n20) MagicJohn: Build R1 Magicjohn\n\n21) foksieloy: Build Y1 Foksieloy\n\n22) MagicJohn: Build Y2 Gatemouth\n\n23) foksieloy: Trade Y1 B1 Foksieloy\n\n24) MagicJohn: Build R2 Magicjohn\n\tMagicJohn: Warwick :-)\n\n25) foksieloy: Build B2 Tibbers\n\n26) MagicJohn: Move R2 Magicjohn Tibbers\n\n27) foksieloy: Sacrifice G2 Tibbers\nBuild B3 Foksieloy\nBuild G1 Warwick\n\n28) MagicJohn: Attack B2 Tibbers\n\n29) foksieloy: Trade B3 Y3 Foksieloy\n\n30) MagicJohn: Attack B1 Tibbers\n\n31) foksieloy: Move B1 Foksieloy Warwick\n\n32) MagicJohn: Move R1 Magicjohn Warwick\n\n33) foksieloy: Move Y3 Foksieloy Warwick\n\n34) MagicJohn: Sacrifice R2 Tibbers\nAttack B1 Warwick\nAttack G1 Warwick\n\n35) foksieloy: Trade Y3 R3 Warwick\n\n36) MagicJohn: Build B3 Tibbers\n\n37) foksieloy: Sacrifice R3 Warwick\nAttack G1 Warwick\nAttack B1 Warwick\nAttack R1 Warwick\n\n38) MagicJohn: Trade B3 Y3 Tibbers\n\n39) foksieloy: Trade G1 Y1 Warwick\n\n40) MagicJohn: Build B3 Tibbers\n\n41) foksieloy: Discover B1 Warwick Y3 Gnar\n\n42) MagicJohn: Trade B2 G2 Tibbers\n\n43) foksieloy: Build Y2 Warwick\n\n44) MagicJohn: Sacrifice G2 Tibbers\nBuild Y2 Magicjohn\nBuild R2 Billieholiday\n\n45) foksieloy: Build G1 Warwick\n\n46) MagicJohn: Move B3 Tibbers Gnar\n\n47) foksieloy: Build G1 Warwick\n\n48) MagicJohn: Sacrifice R1 Magicjohn\nAttack B1 Gnar\n\n49) foksieloy: Move G1 Warwick Magicjohn\n\n50) MagicJohn: Trade B1 R1 Tibbers\n\n51) foksieloy: Sacrifice Y2 Warwick\nMove G1 Warwick Magicjohn\nMove G1 Warwick Magicjohn\nCatastrophe Magicjohn Green\n\n52) MagicJohn: Sacrifice Y3 Tibbers\nMove R1 Tibbers Foksieloy\nMove R2 Billieholiday Foksieloy\nMove R2 Billieholiday Foksieloy\nCatastrophe Foksieloy Red\n\tfoksieloy: Missclick :)\n\tMagicJohn: Who is this "Miss Click" and how did you meet? Does your significant other know?\n\n53) foksieloy: Build Y2 Foksieloy\n\n54) MagicJohn: Trade Y3 G3 Magicjohn\n\n55) foksieloy: Discover Y1 Warwick G3 Annie\n\n56) MagicJohn: Build Y3 Magicjohn\n\n57) foksieloy: Build Y3 Annie\n\n58) MagicJohn: Sacrifice Y2 Gatemouth\nMove Y1 Gatemouth Annie\nMove Y2 Magicjohn Annie\nCatastrophe Annie Yellow\n\n59) foksieloy: Sacrifice Y2 Foksieloy\nMove G3 Foksieloy Magicjohn\nMove R1 Warwick Magicjohn\n\n60) MagicJohn: Trade B3 R3 Gnar\n\n\tMagicJohn: Yep! :)\n\tfoksieloy: Argh I seen wrong, I though you had a blue ship in MagicJohn, wanted to build 3 blue ships. :D\r\n\r\nGG!\n\tMagicJohn: Thanks for the game! We seem to play on about the same level. Makes for a good game. Challenge me any time!\n\nHomeworlds Online (SDG# 28334)\nVariants: "Hard time"\nStarted: 2015.10.13, Ended: 2015.10.18\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld B3 R1 G3\n\n2) wil: H B3 Y2 G3\n\tSimon: Enjoy!\n\twil: I will!...played three games camping 2/1 \n\n3) Simon: Build G1 Simon\n\n4) wil: B G1 Wil\n\n5) Simon: Trade G1 Y1 Simon\n\n6) wil: T G1 R1 Wil\n\n7) Simon: Build Y1 Simon\n\n8) wil: B R1 Wil\n\n9) Simon: Discover Y1 Simon G2 G2\n\n10) wil: D R1 Wil B1 B1\n\n11) Simon: Build Y1 G2\n\n12) wil: B R2 Wil\n\n13) Simon: Build Y2 Simon\n\n14) wil: S G3 Wil\nB R2 B1\nB R2 B1\nB R3 Wil\n\n15) Simon: Build Y2 G2\n\n16) wil: T R3 G3 Wil\n\n17) Simon: Discover Y2 G2 B1 B1a\n\n18) wil: M R2 Wil B1a\n\n19) Simon: Sacrifice G3 Simon\nBuild Y3 Simon\nBuild Y3 B1a\nBuild Y3 B1a\n\n20) wil: S G3 Wil\nB R3 Wil\nB R3 B1a\nB R3 B1a\n\twil: Fat fingers\n\tSimon: Against 6 red ships, and the natural reaction is *not* to defend!\n\n21) Simon: Sacrifice Y2 B1a\nDiscover Y3 B1a G3 G3\nDiscover Y3 B1a B3 B3\n\n22) wil: T R3 G3 Wil\n\n23) Simon: Trade Y3 G3 Simon\n\n24) wil: T R3 Y3 B1a\n\n25) Simon: Trade Y3 R3 B3\n\tSimon: Assume I'd have built the last y2 instead of trade to g3 here. Then I would only move ships back and forth and never let go of a yellow. Does the game allow a draw by mutual agreement?\n\twil: Doesn't look like it..,and I've not encountered one yet \n\twil: Doesn't look like it..,and I've not encountered one yet \n\twil: Doesn't look like it..,and I've not encountered one yet \n\twil: Doesn't look like it..,and I've not encountered one yet \n\twil: Doesn't look like it..,and I've not encountered one yet \n\twil: Doesn't look like it..,and I've not encountered one yet \n\n26) wil: B R3 Wil\n\n27) Simon: Build G1 Simon\n\n28) wil: B G1 Wil\n\n29) Simon: Sacrifice G3 Simon\nBuild G1 Simon\nBuild Y2 G3\nBuild Y3 Simon\n\n30) wil: M R3 B1a G2\n\n31) Simon: Move Y3 G3 B1\n\n32) wil: A Y1 G2\n\n33) Simon: Trade Y2 B2 Simon\n\n34) wil: S G1 Wil\nB Y2 B1a\n\n35) Simon: Sacrifice R3 B3\nAttack Y1 G2\nAttack R2 B1\nAttack R2 B1\n\n36) wil: M R1 Wil B1\nC B1 R\n\n37) Simon: Discover B2 Simon G2 G2a\n\n38) wil: M R2 B1a G2a\n\n39) Simon: Move Y1 G2 B1a\n\n40) wil: T Y2 G2 B1a\n\n41) Simon: Sacrifice G1 Simon\nBuild Y2 B1\n\n42) wil: A Y1 G2\n\n43) Simon: Sacrifice B2 G2a\nTrade Y2 R2 B1\nTrade Y3 G3 Simon\n\twil: Most folks name their star systems... I just like naming mine by the star...\n\twil: Most folks name their star systems... I just like naming mine by the star...\n\n44) wil: M Y3 B1a G2a\n\tSimon: I found this to be the most descriptive name. Cute names obscure what it is, and naming by strategical idea is bad because that will change.\n\twil: Agree..\n\twil: Agree..\n\n45) Simon: Sacrifice G3 Simon\nBuild Y2 B1\nBuild Y3 Simon\nBuild R1 B1\n\n46) wil: B R1 G2a\n\n47) Simon: Build G1 Simon\n\tSimon: And my sleep schedule is botched again, making for good Homeworlds.\n\n48) wil: B G1 Wil\n\n49) Simon: Build G3 Simon\n\n50) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R3 G2\n\n51) Simon: Discover G3 Simon B2 B2\n\n52) wil: S R1 G2a\nA Y1 B1a\n\n53) Simon: Move G1 Simon B2\n\n54) wil: M G3 Wil B1a\n\n55) Simon: Move Y1 Simon B2\n\n56) wil: D G3 B1a B2 Beetwo\n\n57) Simon: Move G3 B2 B1a\n\n58) wil: S Y3 G2a\nM R3 G2 Simon\nM R3 G2 Simon\nM G3 Beetwo Simon\n\n\twil: It is 'the ole you take two I'll take three trick'\n\tSimon: yep, gg!\n\twil: Ready anytime...win or lose...\n\nHomeworlds Online (SDG# 28385)\nVariants: "Hard time"\nStarted: 2015.10.15, Ended: 2015.11.2\nParticipants: SilentTitan (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R3 B1 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\tSimon: Hi, enjoy the game!\n\tSilentTitan: Thanks and the same back at you\n\n3) Simon: Build G1 Simon\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Simon: Trade G1 B1 Simon\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Simon: Build B1 Simon\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) Simon: Build G1 Simon\n\n10) SilentTitan: Build Y1 Silenttitan\n\n11) Simon: Trade G3 Y3 Simon\n\n12) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n13) Simon: Discover B1 Simon G2 G2\n\n14) SilentTitan: Build G1 Silenttitan\n\n15) Simon: Build B2 G2\n\n\nHomeworlds Online (SDG# 28336)\nVariants: "Unrated"\nStarted: 2015.10.16, Ended: 2015.11.11\nParticipants: wil (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld G1 B3 Y3\n\n2) wil: H Y2 B1 G3\n\tdragon76n: Hello Wil, we meet again. \n\n3) dragon76n: Build Y1 Dragon76n\n\n4) wil: B G1 Wil\n\n5) dragon76n: T Y1 G1 Dragon76n\n\n6) wil: B G2 Wil\n\n7) dragon76n: B G2 Dragon76n\n\twil: I think I had a better move..\n\twil: It has been awhile...\n\n8) wil: T G1 B1 Wil\n\tdragon76n: I'm still learning the game anyway... I think I'me only played Homeworlds twice since I played online here with you. \n\n9) dragon76n: B Y1 Dragon76n\n\n10) wil: B B1 Wil\n\n11) dragon76n: T G2 R2 Dragon76n\n\n12) wil: D B1 Wil G3 G3\n\n13) dragon76n: Build R1 Dragon76n\n\n14) wil: B B2 Wil\n\n15) dragon76n: D R2 Dragon76n Y2 Yeltwo\n\n16) wil: T B2 R2 Wil\n\n17) dragon76n: Move R2 Yeltwo G3\n\n18) wil: B B2 G3\n\n19) dragon76n: A B2 G3\n\n20) wil: B B2 G3\n\n21) dragon76n: Sacrifice Y1 Dragon76n\nDiscover B2 G3 Y1 Yelone\n\n22) wil: S R2 Wil\nA R2 G3\nP\n\n23) dragon76n: B R1 Dragon76n\n\n24) wil: T B2 Y2 G3\n\n25) dragon76n: D B2 Yelone B3 Bluthr\n\n26) wil: B B2 Wil\n\n27) dragon76n: B Y1 Dragon76n\n\n28) wil: D B1 Wil G3 Gee3\n\n29) dragon76n: T B2 G2 Bluthr\n\n30) wil: B B2 Gee3\n\n31) dragon76n: B G1 Bluthr\n\n32) wil: B B2 Wil\n\n33) dragon76n: Trade Y3 B3 Dragon76n\n\n34) wil: D G2 Wil Y3 Y3\n\n35) dragon76n: Trade G1 Y1 Bluthr\n\n36) wil: B G1 Wil\n\n37) dragon76n: B G2 Bluthr\n\n38) wil: T B2 Y2 Gee3\n\n39) dragon76n: T G2 B2 Bluthr\n\n40) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB R1 G3\n\n41) dragon76n: M B2 Bluthr Wil\nC Wil Blue\n\n42) wil: M R1 G3 Wil\n\n43) dragon76n: Sacrifice G2 Bluthr\nBuild Y1 Bluthr\nBuild Y3 Bluthr\n\tdragon76n: My previous orders were submitted in a browser that had old data still so when the page reloaded the results were quite different than I was expecting.\n\twil: Do you wanna back up nmakecths move you wanted?\n\n44) wil: B Y3 G3\n\tdragon76n: I had already done that. Thanks for checking though. \n\n45) dragon76n: Sacrifice Y3 Bluthr\nMove Y1 Bluthr Wil\nMove Y1 Bluthr Wil\nMove Y1 Dragon76n Wil\nCatastrophe Wil Y\n\n\twil: Doh... I didn't scroll down far enough\n\tdragon76n: GG\n\twil: Miss count... Thx for the game...\n\nHomeworlds Online (SDG# 28398)\nVariants: "Hard time"\nStarted: 2015.10.19, Ended: 2015.12.1\nParticipants: MagicJohn (S), Salmonax (N)\nWinner: MagicJohn\n\n1) Salmonax: Homeworld R3 B2 G3\n\n2) MagicJohn: Homeworld B1 G3 B3 *\n\n3) Salmonax: Build G1 Salmonax\n\n4) MagicJohn: Build B1 Magicjohn\n\n5) Salmonax: Trade G1 Y1 Salmonax\n\n6) MagicJohn: Trade B3 Y3 Magicjohn\n\n7) Salmonax: Build G1 Salmonax\n\n8) MagicJohn: Build B1 Magicjohn\n\n9) Salmonax: Build G1 Salmonax\n\n10) MagicJohn: Discover B1 Magicjohn G2 Leaf\n\n11) Salmonax: Trade G3 B3 Salmonax\n\n12) MagicJohn: Build B2 Leaf\n\n13) Salmonax: Build Y1 Salmonax\n\n14) MagicJohn: Build Y1 Magicjohn\n\n15) Salmonax: Discover Y1 Salmonax G1 Two\n\n16) MagicJohn: Trade B2 Y2 Leaf\n\n17) Salmonax: Build Y2 Two\n\n18) MagicJohn: Build B2 Leaf\n\n19) Salmonax: Build G2 Salmonax\n\n20) MagicJohn: Build B2 Leaf\n\n21) Salmonax: Sacrifice Y2 Two\nMove Y1 Two Leaf\nMove Y1 Leaf Magicjohn\n\n22) MagicJohn: Trade Y3 R3 Magicjohn\n\n23) Salmonax: Build Y2 Magicjohn\n\n24) MagicJohn: Attack Y2 Magicjohn\n\n25) Salmonax: Build Y2 Magicjohn\n\n26) MagicJohn: Discover B2 Leaf G1 Stem\nCatastrophe Magicjohn Yellow\n\n27) Salmonax: Build Y1 Salmonax\n\tSalmonax: Sorry for the delay\n\n28) MagicJohn: Build B3 Stem\n\n\tMagicJohn: Life happens...\n\nHomeworlds Online (SDG# 28375)\nVariants: "Hard time"\nStarted: 2015.10.20, Ended: 2015.10.31\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H B3 Y1 G3\n\n2) Simon: Homeworld B1 R2 G3\n\n3) wil: B G1 Wil\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 B1 Wil\n\tSimon: Still wondering about the mutually agreed draw when one person has all the yellows with nothing else, and is too weak to trade any. The red player can probably prevent the forced draw by moving to a y star.\n\twil: Exactly... I have yet to draw...often eventually you have to give up your monopoly to trade to continue... And then pandoeas box is open... Last ditch I trade my queen at home if I feel out manipulated it one economy.\n\twil: Exactly... I have yet to draw...often eventually you have to give up your monopoly to trade to continue... And then pandoeas box is open... Last ditch I trade my queen at home if I feel out manipulated it one economy.\n\n6) Simon: Trade G1 Y1 Simon\n\n7) wil: B B1 Wil\n\n8) Simon: Build Y1 Simon\n\n9) wil: D B1 Wil G2 G2\n\n10) Simon: Discover Y1 Simon B3 B3\n\n11) wil: B B2 Wil\n\n12) Simon: Build Y2 Simon\n\n13) wil: T B2 Y2 Wil\n\n14) Simon: Build G1 Simon\n\n15) wil: B B2 Wil\n\n16) Simon: Sacrifice G3 Simon\nBuild Y2 B3\nBuild Y3 B3\nBuild Y3 Simon\n\n17) wil: M Y2 Wil G2\n\n18) Simon: Trade Y2 B2 B3\n\n19) wil: T B1 R1 Wil\n\n20) Simon: Trade Y1 R1 B3\n\n21) wil: B B1 G2\n\n22) Simon: Discover B2 B3 G2 G2a\n\n23) wil: D B2 Wil Y2 Y2\n\n24) Simon: Trade Y3 G3 Simon\n\n25) wil: T B1 R1 G2\n\n26) Simon: Build B1 G2a\n\n27) wil: B R2 Wil\n\n28) Simon: Trade B2 R2 G2a\n\n29) wil: T R2 G2 Wil\n\n30) Simon: Build B2 G2a\n\n31) wil: S G2 Wil\nB B2 Y2\nB B3 G2\n\n32) Simon: Discover Y1 Simon R3 R3\n\n33) wil: T B3 Y3 G2\n\n34) Simon: Trade B1 Y1 G2a\n\n35) wil: D B2 Y2 Y3 Y3\n\n36) Simon: Move G1 Simon B3\n\n37) wil: B R2 G2\n\n38) Simon: Build R3 G2a\n\n39) wil: B R3 Wil\n\n40) Simon: Build G1 Simon\n\n41) wil: M Y2 G2 R3\n\tSimon: The game flows too comfortably. This is the most likely time to overlook something <_<\n\n42) Simon: Discover Y1 R3 G1 G1\n\n43) wil: T B2 G2 Y3\n\n44) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B3\nPass\n\n45) wil: S G2 Y3\nB Y3 R3\nB G2 Wil\n\n46) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B1 G2a\nBuild B2 G2a\n\twil: I bought an option on a factory early...my investment paid off\n\n47) wil: B B3 G2\n\twil: And the bank... She is empty\n\n48) Simon: Move B1 G2a Wil\n\twil: But I suspect we'll see an economic collapse followed quickly by a govt bailout and our coffers will be full again soon.\n\n49) wil: A B1 Wil\n\tSimon: I've won a different game because the other guy spent 3 moves on flying blues in.\n\twil: Looks like I'll be flying blues out...\n\n50) Simon: Sacrifice Y2 Simon\nMove B2 G2a Wil\nMove B2 G2a Wil\nCatastrophe Wil B\n\twil: And the bank will be full and universe reboot...\n\twil: The wicket....she is about to get sticky...\n\twil: Surely you won't waste three moves on this venture....he says slyly\n\n51) wil: S Y3 R3\nM B2 Y2 B3\nM B1 G2 B3\nM B3 G2 B3\nC B3 B\n\n52) Simon: Trade G1 B1 Simon\n\twil: And the bank is replenished\n\tSimon: In the other game, I didn't steal the first blue. But that position offered big alternative moves, unlike the empty bank.\n\n53) wil: B Y2 G2\n\n54) Simon: Build Y2 G2a\n\n55) wil: M Y2 G2 G1\n\n56) Simon: Discover Y1 G1 G3 G3\n\n57) wil: S G3 Wil\nB Y3 G1\nB Y3 R3\nB G1 Wil\n\n58) Simon: Move Y1 G3 Simon\n\n59) wil: S Y3 G2\nM R1 G2 Wil\nM R1 Wil G2a\nM R1 Wil G2a\nC G2a R\n\n60) Simon: Build Y3 Simon\n\n61) wil: S Y2 G1\nM Y3 R3 Simon\nM Y2 R3 Simon\nC Simon Y\n\n62) Simon: Build Y1 G2a\n\tSimon: The board is a blank void.\n\n63) wil: B Y2 G1\n\twil: Yeah...but it is still over\n\twil: I've just been delaying the inevitable\n\n64) Simon: Move Y1 G2a Wil\n\n65) wil: A Y1 Wil\n\tSimon: Hmm, I'd have expected the yellow catastrophe at g2a, then it would have played out like an opening with extra ships instead of blue.\n\twil: Yeah...I blew it....\n\n66) Simon: Move Y1 G2a Wil\n\n67) wil: M Y1 Wil G2a\n\n68) Simon: Sacrifice G3 Simon\nBuild Y2 Wil\nBuild Y3 Wil\nBuild Y3 Wil\nCatastrophe Wil Y\n\twil: Thx for the game...challenge anytime\n\twil: Thx for the game...challenge anytime\n\tSimon: gg, and challenge coming right up.\n\n\nHomeworlds Online (SDG# 28422)\nVariants: "Unrated"\nStarted: 2015.10.21, Ended: 2015.11.4\nParticipants: fogus (S), kanzenryu (N)\nWinner: fogus\n\n1) kanzenryu: Homeworld B1 Y2 G3\n\n2) fogus: Homeworld B1 Y2 G3\n\n3) kanzenryu: Build G1 Kanzenryu\n\tfogus: let's try a claustrophobic game this time. :)\n\n4) fogus: Build G1 Fogus\n\tkanzenryu: Variety is the spice of life. The spice must flow!\n\n5) kanzenryu: Discover G1 Kanzenryu G3 Alpha\n\n6) fogus: Trade G1 R1 Fogus\n\n7) kanzenryu: Build G1 Kanzenryu\n\n8) fogus: Move R1 Fogus Alpha\n\n9) kanzenryu: Trade G1 R1 Kanzenryu\n\n10) fogus: Attack G1 Alpha\n\tkanzenryu: In trouble already...\n\n11) kanzenryu: Build G1 Kanzenryu\n\n12) fogus: Build G1 Fogus\n\n13) kanzenryu: Trade G1 Y1 Kanzenryu\n\n14) fogus: Discover G1 Fogus Y3 Beta\n\tkanzenryu: So at least I've learned not to create another green ship\n\n15) kanzenryu: Build R1 Kanzenryu\n\n16) fogus: Build G1 Fogus\n\n17) kanzenryu: Move R1 Kanzenryu Beta\n\n18) fogus: Build G2 Beta\n\n19) kanzenryu: Attack G1 Beta\n\n20) fogus: Sacrifice R1 Alpha\nAttack R1 Beta\n\n21) kanzenryu: Move G1 Beta Fogus\n\n22) fogus: Trade G1 R1 Fogus\n\tkanzenryu: Hmmm... let's try this\n\n23) kanzenryu: Discover G1 Fogus Y3 Gamma\n\n24) fogus: Build R2 Fogus\n\n25) kanzenryu: Build R2 Kanzenryu\n\n26) fogus: Sacrifice G3 Fogus\nBuild R2 Beta\nBuild R3 Fogus\nBuild G1 Beta\n\n27) kanzenryu: Move R2 Kanzenryu Gamma\n\n28) fogus: Move R3 Fogus Gamma\n\n29) kanzenryu: Sacrifice G3 Kanzenryu\nBuild R3 Gamma\nBuild R3 Gamma\nBuild G2 Gamma\nCatastrophe Gamma Red\n\tkanzenryu: Don't forget about our alien city game!\n\n30) fogus: Move R2 Beta Kanzenryu\n\n\tkanzenryu: Of course it's not enough to save me\n\nHomeworlds Online (SDG# 28392)\nVariants: "Unrated"\nStarted: 2015.10.22, Ended: 2015.12.21\nParticipants: wil (S), sompm (N)\nWinner: wil\n\n1) sompm: Homeworld G3 Y2 B3\n\n2) wil: H B3 Y1 G3\n\n3) sompm: Build B1 Sompm\n\twil: We meet again...have fun.\n\n4) wil: B G1 Wil\n\tsompm: You too.\r\n\r\nI have an exhibition match scheduled in ten months. I have to practice.\n\twil: Exhibition match?\n\n5) sompm: Build B1 Sompm\n\n6) wil: T G1 Y1 Wil\n\tsompm: Every year around PAX Prime/Dev, one certain Andy Looney will be in town and desires to play Homeworlds with whomever he can. I was a poor opponent for him last year, so I must train.\n\n7) sompm: Discover B1 Sompm G1 G1\n\twil: Ah...and he is giving out medals for those that beat him! \n\n8) wil: B Y1 Wil\n\tsompm: The medal is one of the goals. It would be more of a physical record of an event than anything. Basically I want to give him a good fight.\n\n9) sompm: Build B1 G1\n\twil: While I've been working on the early advantage, he is more long build for the end game...\n\n10) wil: D Y1 Wil G2 G2\n\n11) sompm: Build B2 Sompm\n\n12) wil: B Y2 Wil\n\n13) sompm: Trade B2 Y2 Sompm\n\n14) wil: B Y3 G2\n\n15) sompm: Sacrifice Y2 Sompm\nMove B1 G1 G2\nDiscover B1 G1 Y3 Y3\n\n16) wil: T Y1 R1 Wil\n\n17) sompm: Sacrifice B1 G2\nTrade B1 Y1 Sompm\n\n18) wil: B Y2 G2\n\n19) sompm: Build B1 Sompm\n\n20) wil: B Y3 Wil\n\n21) sompm: Discover B1 Sompm G1 G1\n\tsompm: I think I may not be very good at this game.\n\n22) wil: T Y2 B2 Wil\n\twil: It took probably a dozen games to start to understand.... Another two dozen games before I started to develop strategies...\n\n23) sompm: Build B1 G1\n\n24) wil: B B2 Wil\n\n25) sompm: Build B2 G1\n\n26) wil: D Y2 G2 B3 B3\n\n27) sompm: Trade B2 Y2 G1\n\n28) wil: M B2 Wil G2\n\n29) sompm: Trade B1 G1 G1\n\n30) wil: B R1 Wil\n\n31) sompm: Trade Y1 R1 Sompm\n\n32) wil: M Y3 G2 G1\n\n33) sompm: Build G1 G1\n\n34) wil: B G2 Wil\n\n35) sompm: Discover Y2 G1 G2 G2a\n\n36) wil: D B2 G2 G3 G3\n\n37) sompm: Build B1 G1\n\tsompm: What's your naming convention for identically-sized planets?\n\twil: I'm really the only one around that calls them like this...Andy likes to use star names, others sci-fi references.... Geetoo, beewon, whytree...is my next steos\n\n38) wil: S G3 Wil\nB G3 Wil\nB Y1 B3\nB B2 G3\n\n39) sompm: Build R2 Sompm\n\n40) wil: M R1 Wil G2\n\n41) sompm: Move R1 Sompm G1\n\n42) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R2 G2\n\n43) sompm: Sacrifice Y2 G2a\nDiscover B1 G1 Y2 Y2\nMove B1 G1 Y2\n\n44) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB R3 G2\n\n45) sompm: Move B1 Y2 Wil\n\tsompm: Well, it's approaching concede time. Most of the resources are claimed and not by me. Might as well go out with a bang, eh?\n\n46) wil: M Y1 B3 G1\n\n47) sompm: Move B1 Y2 Wil\nCatastrophe Wil Blue\n\n48) wil: S R2 G2\nA R1 G1\nA G1 G1\n\n49) sompm: Build B1 Sompm\n\tsompm: I just realized a blue nuke opens me up (further) to a green nuke. Hmm...\n\n50) wil: S G3 Wil\nB G3 Wil\nB Y2 G1\nB R2 G1\n\tsompm: Screw it, right? You're not really living if you don't die once in a while.\n\n51) sompm: Build R3 Sompm\n\n52) wil: S Y2 G1\nM R1 G1 Sompm\nM R1 Wil Sompm\nC Sompm R\n\n53) sompm: Trade B3 R3 Sompm\n\n54) wil: S Y3 Wil\nM R3 G2 G1\nM R3 G1 Sompm\nM Y3 G1 Sompm\n\n55) sompm: Attack R3 Sompm\n\twil: Finale...\n\n56) wil: S R2 G1\nA R3 Sompm\nA R3 Sompm\n\tsompm: I believe it must take you at least three moves to wipe me out, not two. :)\n\twil: That will be your choice\n\n57) sompm: Build B1 Sompm\n\n58) wil: S R2 Wil\nA B1 Sompm\nA B1 Sompm\n\n\tsompm: Good game.\n\twil: Yez it is...challenge me anytime\n\nHomeworlds Online (SDG# 28444)\nVariants: "Hard time"\nStarted: 2015.10.25, Ended: 2015.11.3\nParticipants: dlwillson (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld Y1 B2 G3\n\n2) dlwillson: H B3 R1 G3\n\tendo: At last I've reached the top 5! Good luck and have fun.\n\n3) endo: Build G1 Endo\n\tdlwillson: Congratulations on making it so far!\r\nGood skill and fun to you!\n\n4) dlwillson: B G1 Dlwillson\n\n5) endo: Trade G1 Y1 Endo\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) endo: Build Y2 Endo\n\n8) dlwillson: B Y2 Dlwillson\n\n9) endo: Trade Y1 R1 Endo\n\n10) dlwillson: D Y1 Dlwillson B2 Sky\n\n11) endo: Build R1 Endo\n\n12) dlwillson: S G3 Dlwillson\nB Y1 Sky\nB Y2 Sky\nB Y3 Dlwillson\n\n13) endo: Discover Y2 Endo G3 Zf\n\n14) dlwillson: T Y1 G1 Sky\n\n15) endo: Build Y1 Zf\n\n16) dlwillson: T Y3 G3 Dlwillson\n\n17) endo: Discover Y1 Zf G2 Kp\n\n18) dlwillson: T Y2 R2 Sky\n\n19) endo: Build R2 Endo\n\n20) dlwillson: B R2 Sky\n\n21) endo: Move R2 Endo Zf\n\n22) dlwillson: Trade R2 G2 Sky\n\n23) endo: Discover R1 Endo Y3 Nf\n\n24) dlwillson: D G1 Sky Y3 Sol\n\n25) endo: Sacrifice G3 Endo\nBuild R2 Zf\nBuild R3 Endo\nBuild R3 Nf\n\n26) dlwillson: B R3 Sky\n\n27) endo: Trade R3 G3 Endo\n\n28) dlwillson: T R3 Y3 Sky\n\n29) endo: Build R3 Endo\n\n30) dlwillson: S G2 Sky\nB Y2 Dlwillson\nB R3 Sky\n\n31) endo: Trade R3 B3 Endo\n\n32) dlwillson: M R3 Sky Zf\n\n33) endo: Build R3 Zf\nCatastrophe Zf R\n\tdlwillson: Do your system names mean anything?\n\n34) dlwillson: D Y1 Sky B3 Sea\n\tendo: I name my systems after mathematical concepts. In this game they're axiom systems of set theory. Zermelo-Fraenkel set theory, Kripke-Platek set theory, New Foundations.\n\n35) endo: Move B3 Endo Sol\n\tdlwillson: I want to know more about them. Should I head to Wikipedia, or somewhere else?\n\n36) dlwillson: M G1 Sol Sky\n\tendo: Wikipedia is what I've used the most. Mathematics Stack Exchange also contains a lot of good facts, and might be more accessible than the technical Wikipedia articles. If you know the basics about logic and set theory, you could start immediately with the lists of axioms in the relevant Wikipedia articles. If not, the article https://en.wikipedia.org/wiki/Set_theory looks like a good introduction, and browsing the Stack Exchange questions would be useful if you don't understand something. There are also some other sites like PlanetMath, Wolfram MathWorld and Stanford Encyclopedia of Philosophy. If you're looking for a particular concept, Google is probably your best friend.\n\n37) endo: Build R2 Endo\n\tdlwillson: I'll do some reading. Thanks!\n\n38) dlwillson: T Y2 R2 Dlwillson\n\tendo: You're welcome! I hope you'll read about some things that are interesting to you - I personally find set theory fascinating, but I don't think it's a branch of mathematics for everyone.\n\n39) endo: Move R2 Endo Sea\n\n40) dlwillson: M R2 Dlwillson Kp\n\n41) endo: Sacrifice G3 Endo\nBuild Y2 Zf\nBuild R3 Endo\nBuild R3 Sea\n\n42) dlwillson: Attack Y1 Kp\n\n43) endo: Attack Y1S Sea\n\n44) dlwillson: Trade Y3 G3 Sky\n\n45) endo: Discover R1 Endo Y3 Tg\n\n46) dlwillson: M R2 Kp Tg\n\n47) endo: Trade R2 G2 Sea\n\n48) dlwillson: B R2 Sky\n\n49) endo: Move R1 Tg Endo\n\n50) dlwillson: M R2 Tg Endo\n\n51) endo: Trade R3 Y3 Endo\n\n52) dlwillson: A R1 Endo\n\n53) endo: Build R3 Sea\n\n54) dlwillson: S Y2 Dlwillson\nM R2 Sky Sea\nM R2 Endo Sea\nC Sea R\n\n55) endo: Build Y2 Sea\n\n56) dlwillson: Build G1 Dlwillson\n\n57) endo: Build G1 Sea\n\n58) dlwillson: Trade G1 B1 Sky\n\n59) endo: Sacrifice R1 Nf\nAttack R1 Endo\n\n60) dlwillson: M Y1 Kp Dlwillson\n\n61) endo: Sacrifice G2 Sea\nBuild B1 Sol\nBuild R1 Nf\n\n62) dlwillson: M Y1 Dlwillson Sky\n\n63) endo: Sacrifice Y2 Zf\nMove B1 Sol Sky\nMove B3 Sol Sky\nCatastrophe Sky B\n\n64) dlwillson: T G3 Y3 Dlwillson\n\n65) endo: Discover Y1 Sea G2 Nbg\n\n66) dlwillson: B Y1 Dlwillson\n\n67) endo: Sacrifice Y3 Endo\nMove Y2 Zf Nbg\nMove Y1 Nbg Dlwillson\nMove Y2 Nbg Dlwillson\nCatastrophe Dlwillson Y\n\n\tdlwillson: Good game well played. I look forward to playing you again someday.\n\tendo: Thanks for an interesting game!\n\nHomeworlds Online (SDG# 28487)\nVariants: "Hard time"\nStarted: 2015.10.31, Ended: 2015.11.6\nParticipants: goulo (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) goulo: Homeworld R3 B2 G3\n\n3) ts52: Build G1 Ts52\n\tgoulo: hi, have fun!\n\tts52: Thanks! You too!\r\n\n\n4) goulo: Build G1 Goulo\n\n5) ts52: Trade G1 B1 Ts52\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) ts52: Build B1 Ts52\n\n8) goulo: Build G1 Goulo\n\n9) ts52: Discover B1 Ts52 G2 Kermit\n\n10) goulo: Trade G3 B3 Goulo\n\n11) ts52: Build B2 Kermit\n\n12) goulo: Build G1 Goulo\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) goulo: Discover B3 Goulo Y1 Flaveto\n\n15) ts52: Build B2 Kermit\n\n16) goulo: Move B3 Flaveto Goulo\n\n17) ts52: Trade B2 G2 Kermit\n\n18) goulo: Discover G1 Goulo Y1 Flaveto\n\n19) ts52: Build B2 Kermit\n\n20) goulo: Move G1 Flaveto Kermit\n\n21) ts52: Discover G2 Kermit B3 Grover\n\n22) goulo: Build G1 Kermit\n\n23) ts52: Discover B2 Kermit G3 Oscar\n\n24) goulo: Build G2 Kermit\nCatastrophe Kermit G\n\n25) ts52: Build B1 Ts52\n\n26) goulo: Build G1 Goulo\n\n27) ts52: Discover B1 Ts52 G2 Kermit\n\n28) goulo: Trade G1 R1 Goulo\n\n29) ts52: Trade B1 R1 Ts52\n\n30) goulo: Build Y1 Goulo\n\n31) ts52: Build B1 Oscar\n\n32) goulo: Discover Y1 Goulo Y1 Flaveto\n\n33) ts52: Trade B2 Y2 Oscar\n\n34) goulo: Build Y2 Goulo\n\n35) ts52: Build B2 Kermit\n\n36) goulo: Build G1 Goulo\n\n37) ts52: Build B2 Oscar\n\n38) goulo: Discover Y1 Flaveto G2 Verdo\n\n39) ts52: Build B3 Oscar\n\n40) goulo: Build Y1 Verdo\n\n41) ts52: Trade B3 Y3 Oscar\n\n42) goulo: Build Y2 Verdo\n\n43) ts52: Move Y2 Oscar Verdo\nCatastrophe Verdo Yellow\n\n\tgoulo: i can't see any hope for me here... thanks for the game!\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 28420)\nVariants: "Hard time"\nStarted: 2015.11.1, Ended: 2015.11.5\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H B3 Y2 G3\n\n2) Simon: Homeworld R3 B1 G3\n\n3) wil: B G1 Wil\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 B1 Wil\n\n6) Simon: Trade G1 B1 Simon\n\n7) wil: B B2 Wil\n\n8) Simon: Build B2 Simon\n\n9) wil: D B2 Wil G1 G1\n\n10) Simon: Trade B2 Y2 Simon\n\n11) wil: T B1 R1 Wil\n\n12) Simon: Discover B1 Simon G2 G2\n\n13) wil: B R1 Wil\n\n14) Simon: Build B1 G2\n\n15) wil: M R1 Wil G1\n\n16) Simon: Build B2 G2\n\n17) wil: B R1 G1\n\n18) Simon: Trade B2 R2 G2\n\n19) wil: T R1 Y1 G1\n\n20) Simon: Trade B1 Y1 G2\n\n21) wil: B G1 Wil\n\n22) Simon: Build Y1 Simon\n\n23) wil: B Y2 G1\n\n24) Simon: Discover Y2 Simon B2 B2\n\n25) wil: M Y1 G1 B2\n\n26) Simon: Sacrifice G3 Simon\nBuild Y3 Simon\nBuild Y3 B2\nBuild Y3 G2\n\n27) wil: M Y2 G1 B2\nC B2 Y\n\n28) Simon: Trade Y3 G3 Simon\n\twil: Yeah, I got behind the ball there\n\n29) wil: T G1 Y1 Wil\n\n30) Simon: Move Y3 G2 G1\n\tSimon: hmm, and catastrophe is expensive as always, but looks like the only move still.\n\n31) wil: D Y1 Wil G1 Gee1\n\n32) Simon: Sacrifice R2 G2\nAttack R1 G1\nAttack B2 G1\n\twil: It is really time to knock over my king\n\n33) wil: B Y2 Gee1\n\n34) Simon: Build Y2 G2\n\n35) wil: D Y1 Gee1 B2 B2\n\n36) Simon: Build Y3 G1\n\n37) wil: B Y3 Gee1\n\n38) Simon: Trade Y3 R3 G1\n\n39) wil: D Y2 Gee1 B2 Bee2\n\n40) Simon: Build Y3 Simon\n\n\twil: I could wait for an error...but you got me\n\tSimon: gg.\n\nHomeworlds Online (SDG# 28488)\nVariants: "Hard time"\nStarted: 2015.11.2, Ended: 2015.11.13\nParticipants: wil (S), foksieloy (N)\nWinner: wil\n\n1) foksieloy: Homeworld Y3 B1 G3\n\tfoksieloy: Hi wil, been a while. Let's hit one.\n\n2) wil: H Y3 B2 G3\n\twil: It has and thx!\n\n3) foksieloy: Build G1 Foksieloy\n\n4) wil: B G1 Wil\n\n5) foksieloy: Discover G1 Foksieloy B2 Tibbers\n\n6) wil: T G1 B1 Wil\n\n7) foksieloy: Trade G1 B1 Tibbers\n\n8) wil: B B2 Wil\n\n9) foksieloy: Build G1 Foksieloy\n\n10) wil: D B1 Wil Y1 Y1\n\n11) foksieloy: Move G1 Foksieloy Tibbers\n\n12) wil: B B3 Wil\n\n13) foksieloy: Build G1 Foksieloy\n\n14) wil: T B2 R2 Wil\n\n15) foksieloy: Trade G1 R1 Foksieloy\n\n16) wil: B B2 Wil\n\n17) foksieloy: Build G1 Tibbers\n\n18) wil: S G3 Wil\nB B3 Y1\nB B3 Y1\nB R1 Wil\n\n19) foksieloy: Trade G1 Y1 Tibbers\n\n20) wil: T B3 R3 Y1\n\n21) foksieloy: Discover B1 Tibbers G1 Annie\n\n22) wil: T B1 G1 Y1\n\n23) foksieloy: Sacrifice Y1 Tibbers\nMove B1 Annie Wil\nCatastrophe Wil Blue\n\n24) wil: M R3 Y1 Tibbers\n\twil: Ouch\n\n25) foksieloy: Sacrifice G1 Tibbers\nBuild R1 Foksieloy\n\tfoksieloy: You still have an economic advantage.\n\n26) wil: B B1 Y1\n\twil: He says twisting the sword...\n\n27) foksieloy: Build R2 Foksieloy\n\n28) wil: B B1 Y1\n\n29) foksieloy: Trade R2 Y2 Foksieloy\n\n30) wil: M B3 Y1 Wil\n\n31) foksieloy: Discover R1 Foksieloy G2 Fiora\n\n32) wil: B B2 Y1\n\n33) foksieloy: Build R2 Foksieloy\n\n34) wil: T R1 G1 Wil\n\n35) foksieloy: Trade R2 B2 Foksieloy\n\n36) wil: D B2 Y1 Y2 Y2\n\n37) foksieloy: Move B2 Foksieloy Fiora\n\n38) wil: T B1 Y1 Y1\n\n39) foksieloy: Build R1 Fiora\n\n40) wil: T R3 Y3 Tibbers\n\n41) foksieloy: Build B1 Fiora\n\n42) wil: B B3 Y1\n\n43) foksieloy: Trade B1 Y1 Fiora\n\n44) wil: T B3 G3 Y1\n\n45) foksieloy: Build Y2 Fiora\n\n46) wil: S G3 Y1\nB B1 Wil\nB B3 Y2\nB B3 Y1\n\n47) foksieloy: Move Y2 Fiora Wil\n\n48) wil: A Y2 Wil\n\n49) foksieloy: Move Y2 Foksieloy Fiora\n\n50) wil: B R2 Wil\n\twil: To early\n\n51) foksieloy: Move Y2 Fiora Wil\n\n52) wil: D Y2 Wil G2 G2\n\n53) foksieloy: Sacrifice Y2 Wil\nMove R1 Fiora Wil\nMove R1 Fiora Wil\nCatastrophe Wil Red\n\n54) wil: B Y2 G2\n\n55) foksieloy: Trade G3 R3 Foksieloy\n\n56) wil: T B3 R3 Wil\n\n57) foksieloy: Build B3 Fiora\n\n58) wil: T B3 G3 Y2\n\n59) foksieloy: Trade B3 R3 Fiora\n\n60) wil: S G3 Y2\nB B3 Y2\nB B3 Wil\nB R1 Wil\n\n61) foksieloy: Build R1 Fiora\n\n62) wil: B G1 Y1\n\n63) foksieloy: Move R1 Fiora Wil\n\n64) wil: M R3 Wil Y2\n\n65) foksieloy: Build R2 Fiora\n\n66) wil: S G1 Y1\nB R2 Y2\n\n67) foksieloy: Trade R1 G1 Foksieloy\n\n68) wil: A R1 Wil\n\n69) foksieloy: Build G2 Foksieloy\n\n70) wil: S Y2 G2\nM R1 Wil Fiora\nM R1 Wil Fiora\nC Fiora R\n\n71) foksieloy: Build Y2 Fiora\n\n72) wil: S Y2 G2\nM Y3 Tibbers Foksieloy\nM B3 Y2 Foksieloy\n\n73) foksieloy: Attack Y3 Foksieloy\n\n74) wil: S R3 Y2\nA Y3 Foksieloy\nA R3 Foksieloy\nA G2 Foksieloy\n\n\twil: Why this system looks suitable for a new colony.... They've left all these nice ships!\n\twil: 40 moves...good game!\n\tfoksieloy: This was quite fun. gg!\n\nHomeworlds Online (SDG# 28043)\nVariants: "Hard time"\nStarted: 2015.11.3, Ended: 2015.11.6\nParticipants: kanzenryu (S), SilentTitan (N)\nWinner: kanzenryu\n\n\nHomeworlds Online (SDG# 28186)\nStarted: 2015.11.3, Ended: 2015.11.10\nParticipants: ts52 (S), kanzenryu (N)\nWinner: ts52\n\n1) kanzenryu: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\tkanzenryu: If you don't feel like playing a newbie just let me know and I'll resign.\n\tts52: I'm always happy to play a newbie. More players is a good thing. Feel free to ask questions. Just make a move then undo it, so SDG will still send me an email.\n\n3) kanzenryu: Build G1 Kanzenryu\n\n4) ts52: Build G1 Ts52\n\tkanzenryu: I'm having a hard time convincing people to play with the plastic pyramids I got for my birthday so it's great to be able to play online.\n\tts52: Oh no. That's terrible. Although I have the same problem. No one around here want's to play homeworlds... :(\n\n5) kanzenryu: Trade G1 Y1 Kanzenryu\n\n6) ts52: Trade G1 B1 Ts52\n\n7) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: I've been kind of obsessed with this game ever since I read the rules.\n\n8) ts52: Build B1 Ts52\n\n9) kanzenryu: Build Y1 Kanzenryu\n\n10) ts52: Discover B1 Ts52 G2 Kermit\n\n11) kanzenryu: Discover Y1 Kanzenryu G3 Moon\n\n12) ts52: Build B2 Kermit\n\n13) kanzenryu: Build Y1 Moon\n\n14) ts52: Trade B2 Y2 Kermit\n\n15) kanzenryu: Build Y2 Kanzenryu\n\n16) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B2 Kermit\nBuild B3 Ts52\n\n17) kanzenryu: Discover G1 Kanzenryu B3 Desperation\n\tkanzenryu: Ironically the Smurf fleet warps into the Kermit system\n\n18) ts52: Trade B3 G3 Ts52\n\n19) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: Oops meant b3, that's better\n\n20) ts52: Build B3 Ts52\n\n21) kanzenryu: Sacrifice Y2 Kanzenryu\nDiscover Y1 Moon G2 Close\nMove Y1 Moon Close\n\n22) ts52: Discover B2 Kermit G3 Oscar\n\n23) kanzenryu: Move Y1 Close Ts52\n\n24) ts52: Trade B3 R3 Ts52\n\n25) kanzenryu: Sacrifice G3 Kanzenryu\nBuild Y2 Ts52\nBuild Y2 Ts52\nBuild G1 Desperation\nCatastrophe Ts52 Y\n\tkanzenryu: And... this marks the first time I've made it to the other side in any game so far ;-)\n\n26) ts52: Sacrifice Y2 Kermit\nMove R3 Ts52 Oscar\nMove R3 Oscar Kanzenryu\n\tts52: :)\n\n\tkanzenryu: Yes indeed. But the current economic climate was not favorable for starship building for any strategy. Thanks so much for the game.\n\tts52: Thank you for the game. Happy to play again, any time.\n\nHomeworlds Online (SDG# 28397)\nVariants: "Hard time"\nStarted: 2015.11.3, Ended: 2015.11.8\nParticipants: kanzenryu (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R3 B1 G3\n\tSimon: Hi, enjoy. :-)\n\n2) kanzenryu: Homeworld B1 Y2 G3\n\n3) Simon: Build G1 Simon\n\tkanzenryu: More fun coming up\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) Simon: Trade G1 B1 Simon\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) Simon: Build B2 Simon\n\n8) kanzenryu: Build G1 Kanzenryu\n\n9) Simon: Trade B2 Y2 Simon\n\tkanzenryu: Ah, now I see why you did that. Medium ship.\n\n10) kanzenryu: Trade G1 R1 Kanzenryu\n\tSimon: Yeah, this follows from the colors of 1-pointers in the homeworlds.\n\n11) Simon: Discover B1 Simon G2 G2\n\n12) kanzenryu: Discover Y1 Kanzenryu G3 Foothold\n\n13) Simon: Build B2 G2\n\n14) kanzenryu: Build G1 Kanzenryu\n\n15) Simon: Trade B2 Y2 G2\n\tkanzenryu: Not being able to trade for a small blue ship is annoying!\n\n16) kanzenryu: Build Y1 Foothold\n\n17) Simon: Build B2 G2\n\n18) kanzenryu: Build R1 Kanzenryu\n\n19) Simon: Trade B2 R2 G2\n\n20) kanzenryu: Discover Y1 Foothold G2 Staging\n\n21) Simon: Build B2 G2\n\n22) kanzenryu: Build Y1 Staging\n\n23) Simon: Build Y3 G2\n\n24) kanzenryu: Build Y3 Foothold\n\n25) Simon: Build Y3 Simon\n\n26) kanzenryu: Trade G3 B3 Kanzenryu\n\n27) Simon: Trade Y3 R3 Simon\n\n28) kanzenryu: Move R1 Kanzenryu Foothold\n\n29) Simon: Move R3 Simon Staging\n\n30) kanzenryu: Sacrifice Y1 Staging\nDiscover Y1 Staging G3 Other\n\n31) Simon: Build G1 Simon\n\n32) kanzenryu: Discover Y3 Foothold R2 Brink\n\n33) Simon: Move B2 G2 Foothold\n\n34) kanzenryu: Move Y3 Brink Foothold\n\n35) Simon: Sacrifice Y3 G2\nMove B2 Foothold Kanzenryu\nMove B1 G2 Foothold\nMove B1 Foothold Kanzenryu\nCatastrophe Kanzenryu B\n\n36) kanzenryu: Move Y3 Foothold Kanzenryu\n\n37) Simon: Build Y1 Simon\n\n38) kanzenryu: Build Y3 Foothold\n\n39) Simon: Build Y3 G2\n\n40) kanzenryu: Discover Y1 Foothold R2 Hopeful\n\n41) Simon: Discover Y2 Simon R2 R2\n\n42) kanzenryu: Build G1 Kanzenryu\n\n43) Simon: Sacrifice Y2 G2\nMove Y2 R2 Foothold\nMove Y2 Foothold Kanzenryu\n\n44) kanzenryu: Discover Y3 Kanzenryu R3 Yikes\n\tkanzenryu: Wow, nice.\n\n45) Simon: Sacrifice R3 Staging\nAttack R1 Kanzenryu\nAttack G1 Kanzenryu\nAttack G1 Kanzenryu\n\tkanzenryu: Party at my place\n\tSimon: Yes, this kind of maneuver needs thorough calculation, otherwise it's too expensive. You may have one star left only, but haven't done any maneuvers that exhaust your own fleet, potentially giving you the more active position.\n\tSimon: Nonetheless, you seem to understand well the moves that occur. :) Even if you don't anticipate all of them, but that's the experience growing still. gg. Have your reallife pieces arrived yet?\n\tkanzenryu: Yes. Mainly been playing IceTowers with my family. They're not into more hardcore games.\n\n\nHomeworlds Online (SDG# 28433)\nVariants: "Unrated"\nStarted: 2015.11.3, Ended: 2015.11.11\nParticipants: wil (S), kanzenryu (N)\nWinner: wil\n\n1) kanzenryu: Homeworld Y1 B3 G3\n\n2) wil: H B3 Y2 G3\n\tkanzenryu: If you're not keen on playing newbies let me know and I'll resign.\n\twil: No problem... If you'd like any instructions just ask....enjoy teaching the game\n\n3) kanzenryu: Build G1 Kanzenryu\n\n4) wil: B G1 Wil\n\tkanzenryu: I'm really enjoying learning this game. Trying to concentrate on noticing what sacrifice opportunities exist for both sides.\n\twil: It took me a while to see the strategies come at me...\n\n5) kanzenryu: Trade G1 Y1 Kanzenryu\n\n6) wil: T G1 Y1 Wil\n\n7) kanzenryu: Build Y2 Kanzenryu\n\n8) wil: B Y2 Wil\n\tkanzenryu: Now I'm wondering why you let me build a y2...\n\n9) kanzenryu: Discover Y2 Kanzenryu G2 Foothold\n\n10) wil: D Y1 Wil G1 G1\n\n11) kanzenryu: Build Y3 Foothold\n\n12) wil: B Y3 G1\n\n13) kanzenryu: Trade Y1 R1 Kanzenryu\n\n14) wil: T Y2 R2 Wil\n\n15) kanzenryu: Build G1 Kanzenryu\n\n16) wil: D Y1 G1 G2 G2\n\n17) kanzenryu: Build R1 Kanzenryu\n\n18) wil: B G1 Wil\n\n19) kanzenryu: Move R1 Kanzenryu Foothold\n\n20) wil: T G1 B1 Wil\n\n21) kanzenryu: Trade G1 B1 Kanzenryu\n\n22) wil: M B1 Wil G1\n\n23) kanzenryu: Move B1 Kanzenryu Foothold\n\n24) wil: B Y1 G2\n\n25) kanzenryu: Build G1 Kanzenryu\n\n26) wil: B G1 Wil\n\n27) kanzenryu: Discover Y2 Foothold R1 Peep\n\n28) wil: M G1 Wil G1\n\n29) kanzenryu: Build R2 Foothold\n\n30) wil: D G1 G1 Y3 Y3\n\n31) kanzenryu: Build Y2 Foothold\n\n32) wil: B G2 Wil\n\n33) kanzenryu: Sacrifice G3 Kanzenryu\nBuild B1 Foothold\nBuild R2 Kanzenryu\nBuild G3 Kanzenryu\n\n34) wil: B G3 Y3\n\n35) kanzenryu: Move R2 Kanzenryu G2\n\n36) wil: S G2 Wil\nB R3 Wil\nB B2 G1\n\n37) kanzenryu: Attack Y1 G2\n\n38) wil: M R2 Wil G1\n\n39) kanzenryu: Build R3 G2\n\n40) wil: S G3 Y3\nB G2 Wil\nB G3 Y3\nB R3 G1\n\n41) kanzenryu: Move Y1 G2 Peep\n\n42) wil: D Y1 G2 B3 B3\n\n43) kanzenryu: Sacrifice Y3 Foothold\nMove Y2 Foothold Peep\nMove Y1 Peep Wil\nMove Y2 Peep Wil\n\n44) wil: B Y3 G1\n\n45) kanzenryu: Move Y2 Peep Wil\nCatastrophe Wil Y\n\n46) wil: M Y3 G1 Foothold\n\tkanzenryu: This is when I want to negotiate a peace treaty ;-)\n\twil: I will send over a red cardinal to discuss your surrender\n\n47) kanzenryu: Trade R1 Y1 Foothold\n\n48) wil: S R2 G1\nA R2 Foothold\nA Y1 Foothold\n\twil: On second thought our secretary of transportation might be better suited\n\tkanzenryu: Ha ha, nice\n\n\tkanzenryu: Staring down a lot of barrels pointed at me.\n\twil: True... I still had work to do but was in control\n\nHomeworlds Online (SDG# 28495)\nVariants: "Hard time"\nStarted: 2015.11.3, Ended: 2015.11.24\nParticipants: TwoShort (S), Simon (N)\nWinner: TwoShort\n\n1) Simon: Homeworld R3 B1 G3\n\n2) TwoShort: Homeworld B1 G2 B3 *\n\tSimon: Hi, enjoy the game!\n\n3) Simon: Build G1 Simon\n\tTwoShort: Howdy!\n\n4) TwoShort: Build B1 Twoshort\n\n5) Simon: Build G1 Simon\n\n6) TwoShort: Trade B3 Y3 Twoshort\n\n7) Simon: Trade G3 Y3 Simon\n\n8) TwoShort: Build B2 Twoshort\n\n9) Simon: Discover G1 Simon B2 B2\n\n10) TwoShort: Discover B2 Twoshort G3 Grogar\n\n11) Simon: Build G1 B2\n\n12) TwoShort: Build B2 Twoshort\n\n13) Simon: Build G2 B2\n\n14) TwoShort: Build B3 Grogar\n\n15) Simon: Trade G2 Y2 B2\n\n16) TwoShort: Discover B2 Twoshort G3 Greenland\n\n17) Simon: Build G2 B2\n\n18) TwoShort: Build B3 Twoshort\n\n19) Simon: Move G1 B2 Grogar\n\n20) TwoShort: Build B3 Greenland\n\n21) Simon: Build G2 B2\n\n22) TwoShort: Discover B1 Twoshort G3 Gondor\n\n23) Simon: Trade G2 R2 B2\n\n24) TwoShort: Trade B2 R2 Greenland\n\n25) Simon: Sacrifice G2 B2\nBuild G2 Grogar\nBuild G2 Grogar\nCatastrophe Grogar G\n\n26) TwoShort: Build B2 Gondor\n\n27) Simon: Build G1 Simon\n\n28) TwoShort: Build B2 Greenland\n\n29) Simon: Build G2 Simon\n\n30) TwoShort: Build B3 Twoshort\n\n31) Simon: Build G2 B2\n\n32) TwoShort: Sacrifice B2 Gondor\nTrade B3 Y3 Greenland\nTrade B3 G3 Twoshort\n\n33) Simon: Trade G2 B2 Simon\n\n34) TwoShort: Sacrifice G3 Twoshort\nBuild B3 Gondor\nBuild B3 Greenland\nBuild R1 Greenland\n\n35) Simon: Build G2 B2\n\n36) TwoShort: Move B3 Greenland B2\n\n37) Simon: Build G3 Simon\n\n38) TwoShort: Sacrifice R2 Greenland\nAttack R2 B2\nAttack Y2 B2\n\n39) Simon: Discover G3 Simon R2 R2\n\n40) TwoShort: Sacrifice Y3 Twoshort\nMove Y3 Greenland B2\nMove Y3 B2 Simon\nMove B3 B2 Simon\n\n\tSimon: gg\n\tSimon: And instructive opening too. There should be no problem if I trade the queen at home to blue once, but it must done very early.\n\tTwoShort: Thanks for the game! You can escape the blue lock by trading the queen asap, but I think forcing you to spend a few early turns dealing with it gives me enough of a jump that it's still a problem :)\n\nHomeworlds Online (SDG# 28507)\nVariants: "Hard time"\nStarted: 2015.11.3, Ended: 2015.11.6\nParticipants: endo (S), wil (N)\nWinner: endo\n\n1) wil: H Y3 B1 G3\n\n2) endo: Homeworld Y1 B2 G3\n\n3) wil: B G1 Wil\n\n4) endo: Build G1 Endo\n\n5) wil: T G1 B1 Wil\n\n6) endo: Trade G1 Y1 Endo\n\n7) wil: B B1 Wil\n\n8) endo: Build Y1 Endo\n\twil: Ah you chose to race\n\n9) wil: D B1 Wil G2 G2\n\n10) endo: Discover Y1 Endo B3 Well\n\n11) wil: S G3 Wil\nB B2 G2\nB B2 G2\nB B3 Wil\n\n12) endo: Build Y2 Endo\n\n13) wil: T B2 Y2 G2\n\n14) endo: Discover Y1 Endo B3 Lattice\n\n15) wil: B Y2 G2\n\n16) endo: Build G1 Endo\n\n17) wil: D Y2 G2 G3 G3\n\n18) endo: Sacrifice G3 Endo\nBuild G1 Endo\nBuild Y3 Well\nBuild Y3 Lattice\n\n19) wil: T B3 G3 Wil\n\n20) endo: Trade Y1 R1 Well\n\n21) wil: T B2 R2 G2\n\n22) endo: Sacrifice Y2 Endo\nMove Y3 Well Endo\nMove Y3 Lattice G2\n\n23) wil: B Y1 G2\n\n24) endo: Sacrifice R1 Well\nAttack R2 G2\n\n25) wil: M Y2 G3 G2\nC G2 Y\n\n26) endo: Attack B1 G2\n\n27) wil: B B2 Wil\n\n28) endo: Sacrifice Y1 Lattice\nMove B1 G2 Wil\nCatastrophe Wil B\n\n29) wil: B G1 Wil\n\n30) endo: Move Y3 Endo Wil\n\twil: Nice plays\n\n\tendo: Thanks for the game! You had me in a kinda tight situation at around moves 6-11 with your blue domination, catastrophe threats and bunch of medium ships against my extra Y3, but apparently I managed to create enough complications to wrestle my way out.\n\nHomeworlds Online (SDG# 28499)\nStarted: 2015.11.3, Ended: 2015.11.11\nParticipants: ts52 (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) endo: Build G1 Endo\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\tendo: Same to you!\n\n5) endo: Trade G1 B1 Endo\n\n6) ts52: Trade G1 B1 Ts52\n\n7) endo: Build B2 Endo\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) endo: Discover B1 Endo G2 Cyclic\n\n10) ts52: Build G1 Ts52\n\n11) endo: Sacrifice G3 Endo\nBuild B2 Cyclic\nBuild B3 Endo\nBuild B3 Cyclic\n\n12) ts52: Build B3 Kermit\n\n13) endo: Trade B2 Y2 Cyclic\n\n14) ts52: Trade B3 Y3 Kermit\n\n15) endo: Trade B3 G3 Endo\n\n16) ts52: Build Y1 Kermit\n\n17) endo: Discover B1 Cyclic G1 Simple\n\tendo: Gotta get the move order right!\n\n18) ts52: Trade Y3 R3 Kermit\n\n19) endo: Trade B2 R2 Endo\n\n20) ts52: Build B2 Kermit\n\n21) endo: Build B2 Cyclic\n\n22) ts52: Discover B2 Kermit G2 Oscar\n\n23) endo: Build B3 Simple\n\n24) ts52: Build B3 Oscar\n\n25) endo: Trade B2 G2 Cyclic\n\n26) ts52: Discover G1 Ts52 Y1 Zoe\n\n27) endo: Build G3 Endo\n\n28) ts52: Build B2 Kermit\n\n29) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild R1 Endo\nBuild R1 Endo\n\n30) ts52: Trade B2 R2 Oscar\n\n31) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild B2 Cyclic\nBuild Y1 Cyclic\n\n32) ts52: Move Y1 Kermit Oscar\n\n33) endo: Move R2 Endo Cyclic\n\n34) ts52: Build Y2 Oscar\n\n35) endo: Move B2 Cyclic Zoe\n\n36) ts52: Move G1 Zoe Ts52\n\n37) endo: Move Y2 Cyclic Simple\n\n38) ts52: Move Y2 Oscar Kermit\n\n39) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y2 Simple\nBuild Y3 Cyclic\n\n40) ts52: Build R1 Kermit\n\n41) endo: Sacrifice Y3 Cyclic\nMove G3 Endo Oscar\nMove G3 Oscar Kermit\nMove G3 Kermit Ts52\n\n42) ts52: Trade G3 R3 Ts52\n\n43) endo: Sacrifice R2 Cyclic\nAttack G1 Ts52\nAttack R3 Ts52\n\n\tts52: Thanks for the game.\n\tendo: Thanks!\n\nHomeworlds Online (SDG# 28500)\nVariants: "Hard time"\nStarted: 2015.11.3, Ended: 2015.11.7\nParticipants: Simon (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) Simon: Homeworld B3 R1 G3\n\tendo: Hey, we haven't played yet! Have fun!\n\tSimon: Hi, enjoy! :-)\n\n3) endo: Build G1 Endo\n\n4) Simon: Build G1 Simon\n\n5) endo: Trade G1 B1 Endo\n\n6) Simon: Trade G1 B1 Simon\n\n7) endo: Build B2 Endo\n\n8) Simon: Build B2 Simon\n\n9) endo: Discover B1 Endo G2 Compact\n\n10) Simon: Trade B2 Y2 Simon\n\n11) endo: Build B2 Compact\n\tSimon: oh yeah, small universe.\n\n12) Simon: Build B2 Simon\n\tendo: It took me a while to realize that as well...\n\n13) endo: Trade B2 Y2 Endo\n\n14) Simon: Sacrifice B1 Simon\nTrade B2 Y2 Simon\n\n15) endo: Trade B2 R2 Compact\n\n16) Simon: Discover Y2 Simon G2 G2\n\n17) endo: Build R1 Compact\n\n18) Simon: Build Y1 G2\n\n19) endo: Move Y2 Endo G2\n\n20) Simon: Build Y1 Simon\n\n21) endo: Build B1 Compact\n\n22) Simon: Discover Y1 Simon B2 B2\n\n23) endo: Sacrifice R2 Compact\nAttack Y1 G2\nAttack Y2 G2\n\n24) Simon: Move Y2 Simon G2\nCatastrophe G2 Y\n\n25) endo: Build R1 Compact\n\n26) Simon: Build G1 Simon\n\n27) endo: Build B2 Compact\n\n28) Simon: Trade G1 Y1 Simon\n\n29) endo: Trade B2 Y2 Compact\n\n30) Simon: Build G1 Simon\n\n31) endo: Build B2 Compact\n\n32) Simon: Build G1 Simon\n\n33) endo: Build R2 Compact\n\n34) Simon: Move G1 Simon B2\n\n35) endo: Trade R2 Y2 Compact\n\n36) Simon: Sacrifice G3 Simon\nBuild Y1 B2\nBuild Y2 B2\nBuild Y3 Simon\n\n37) endo: Move B1 Compact Simon\n\n38) Simon: Build G1 B2\n\n39) endo: Sacrifice Y2 Compact\nMove B1 Compact Simon\nMove B2 Compact Simon\nCatastrophe Simon B\n\n40) Simon: Build G2 Simon\n\n41) endo: Move R1 Compact Endo\n\n42) Simon: Build G2 Simon\n\n43) endo: Build R2 Compact\n\n44) Simon: Move G1 B2 Endo\n\n45) endo: Build R2 Compact\n\n46) Simon: Sacrifice Y3 Simon\nMove G1 Endo Compact\nMove G1 Simon Compact\nMove G2 Simon Compact\nCatastrophe Compact G\n\n47) endo: Build G1 Endo\n\n48) Simon: Build Y2 Simon\n\n49) endo: Build R1 Endo\n\n50) Simon: Discover Y2 Simon Y2 Y2\n\n51) endo: Build R2 Endo\n\n52) Simon: Build Y3 Simon\n\n53) endo: Move R2 Endo B2\n\n54) Simon: Sacrifice Y2 Y2\nMove Y1 B2 Endo\nMove Y1 B2 Endo\n\n55) endo: Attack Y2 B2\n\n\tSimon: gg. :) It might have remained playable had I sacrificed the other y2, but it would have been hard still.\n\tendo: Good game! I think you were winning (by gaining total control over yellow) until the last few moves. You should have traded into red to prevent the invasion. Interestingly, I had a draw after your move 22 (which I think I should have taken, objectively speaking). I sacrifice my Y2 and bring my R1 and R2 to your homeworld, threatening to sacrifice the G3 for a catastrophe. You sacrifice your Y3 and blow up my G3 with your G1's. Then we attack one of your G2's back and forth. The system could probably not deal very well with such a situation!\n\tSimon: Yeah, that's a draw. I don't know what the official ruling is about repetition, there is no draw offer on this implementation at least. I believe it's still a hole in the rules.\r\n\r\nI should have traded the y2 for an r2 instead of sending in the g1 on move 22, right. Trading for red seemed necessary, but slow; but it was very urgent by then.\n\tSimon: And I'd always be happy to play again :)\n\nHomeworlds Online (SDG# 28520)\nVariants: "Hard time"\nStarted: 2015.11.5, Ended: 2015.11.28\nParticipants: fogus (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y2 G3\n\n2) fogus: Homeworld Y3 B1 G3\n\tfogus: homeworld g3 y3 b1\n\n3) endo: Build G1 Endo\n\n4) fogus: Build G1 Fogus\n\n5) endo: Trade G1 B1 Endo\n\n6) fogus: Trade G1 Y1 Fogus\n\n7) endo: Build B2 Endo\n\n8) fogus: Build G1 Fogus\n\n9) endo: Discover B1 Endo G3 Separable\n\n10) fogus: Build G1 Fogus\n\n11) endo: Build B2 Endo\n\n12) fogus: Trade G1 R1 Fogus\n\n13) endo: Discover B2 Endo Y3 Regular\n\n14) fogus: Discover R1 Fogus Y2 Flib\n\n15) endo: Sacrifice G3 Endo\nBuild B2 Separable\nBuild B3 Endo\nBuild B3 Regular\n\n16) fogus: Build G1 Fogus\n\tfogus: I've never faced this strategy before. It's blowing my mind! \n\n17) endo: Build B3 Separable\n\n18) fogus: Build Y1 Fogus\n\n19) endo: Trade B3 G3 Regular\n\n20) fogus: Move G1 Fogus Flib\n\n21) endo: Build B3 Regular\n\n22) fogus: Build R1 Flib\n\n23) endo: Trade B3 R3 Separable\n\n24) fogus: Trade Y1 R1 Fogus\n\n25) endo: Move B3 Regular Flib\n\n26) fogus: Sacrifice G1 Flib\nBuild R2 Fogus\n\n27) endo: Sacrifice R3 Separable\nAttack R1 Flib\nAttack R1 Flib\nPass\n\n28) fogus: Discover R2 Fogus Y2 Frogger\n\n29) endo: Build B3 Separable\n\n30) fogus: Build R2 Fogus\n\n31) endo: Trade B3 R3 Separable\n\n32) fogus: Build Y1 Fogus\n\n33) endo: Build B3 Separable\n\n34) fogus: Discover R1 Fogus G2 Flipper\n\n35) endo: Trade B3 R3 Endo\n\n36) fogus: Trade R2 G2 Fogus\n\n37) endo: Trade B3 Y3 Separable\n\n\nHomeworlds Online (SDG# 28492)\nVariants: "Hard time"\nStarted: 2015.11.5, Ended: 2015.11.15\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H B2 Y1 G3\n\twil: I'll try harder!\n\n2) Simon: Homeworld R3 B1 G3\n\n3) wil: B G1 Wil\n\tSimon: Have fun!\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 B1 Wil\n\n6) Simon: Trade G1 Y1 Simon\n\n7) wil: B B1 Wil\n\n8) Simon: Build Y1 Simon\n\n9) wil: D B1 Wil G3 G3\n\n10) Simon: Build Y2 Simon\n\n11) wil: B B2 Wil\n\n12) Simon: Discover Y2 Simon G2 G2\n\n13) wil: T B2 Y2 Wil\n\n14) Simon: Build Y2 Simon\n\n15) wil: D B1 Wil Y3 Y3\n\n16) Simon: Build Y3 G2\n\n17) wil: M Y2 Wil G3\n\n18) Simon: Trade Y2 B2 Simon\n\n19) wil: B G1 Wil\n\n20) Simon: Move B2 Simon G2\n\n21) wil: D G1 Wil Y3 Why3\n\n22) Simon: Trade Y3 R3 G2\n\n23) wil: T B1 G1 Y3\n\n24) Simon: Build R1 G2\n\n25) wil: B Y2 G3\n\n26) Simon: Build Y3 G2\n\n27) wil: T Y2 R2 G3\n\twil: You missed the win...s y2 send r3 in\n\twil: Not that you still ain't in the catbird seat\n\n28) Simon: Build Y2 Simon\n\n29) wil: S G1 Why3\nB Y3 G3\n\tSimon: Hnn yeah, I didn't even look for anything, was focused on development only.\n\n30) Simon: Discover Y2 Simon G2 G2b\n\n31) wil: B R1 G3\n\n32) Simon: Build B1 G2\n\n33) wil: D Y2 G3 G2 Gee2\n\n34) Simon: Move B2 G2 Y3\n\n35) wil: M G1 Y3 Wil\n\n36) Simon: Build G1 Simon\n\n37) wil: M R1 G3 Wil\n\n38) Simon: Move G1 Simon G2b\n\n39) wil: D R2 G3 G1 G1\n\n40) Simon: Move Y3 G2 G1\n\n41) wil: B R1 Wil\n\n42) Simon: Sacrifice R1 G2\nAttack R2 G1\n\n43) wil: M R1 Wil G3\n\n44) Simon: Move R2 G1 Y3\n\n45) wil: S G3 Wil\nB G3 Wil\nB R1 G3\nB R2 Wil\n\n46) Simon: Discover Y3 G1 R3 R3\n\n47) wil: D R1 G3 G1 G1\n\n48) Simon: Move G1 G2b Y3\n\n49) wil: S G3 Wil\nB G3 Wil\nB R2 G3\nB B2 G3\n\tSimon: no, I will not go and mop it up again. You can have it sit at the g1!\n\n50) Simon: Build B3 Y3\n\n51) wil: M B1 G3 Gee2\n\n52) Simon: Move Y3 R3 Gee2\n\n53) wil: S G3 Wil\nB G3 Wil\nB B3 G3\nB R3 G1\n\n54) Simon: Build B3 G2\n\n55) wil: S Y2 Gee2\nMove B1 Gee2 G3\nD B1 G3 Y2 Y2\n\n56) Simon: Move Y2 G2b Y3\n\n57) wil: M Y3 G3 G1\n\n58) Simon: Build G2 Y3\n\n59) wil: M R3 G1 Y2\n\n60) Simon: Sacrifice Y2 Y3\nMove G1 Y3 Wil\nMove G2 Y3 Wil\nCatastrophe Wil G\n\n\twil: Yeah...that's the end\n\tSimon: gg.\n\nHomeworlds Online (SDG# 28559)\nVariants: "Hard time"\nStarted: 2015.11.8, Ended: 2015.11.13\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y1 G3\n\n2) wil: H Y2 B1 G3\n\twil: Been gettin my butt kicked all over the board\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: Played endo? He's pretty good.\n\n4) wil: B G1 Wil\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B B1 Dlwillson\n\n8) wil: B Y1 Wil\n\n9) dlwillson: D B1 Dlwillson G2 Forest\n\n10) wil: D Y1 Wil B3 B3\n\n11) dlwillson: B B2 Forest\n\n12) wil: S G3 Wil\nB Y2 B3\nB Y2 B3\nB Y3 Wil\n\n13) dlwillson: B G1 Dlwillson\n\n14) wil: T Y3 G3 Wil\n\n15) dlwillson: T G3 Y3 Dlwillson\n\n16) wil: B Y3 Wil\n\n17) dlwillson: Build B2 Dlwillson\n\n18) wil: T Y3 B3 Wil\n\n19) dlwillson: Move Y3 Dlwillson Forest\n\n20) wil: B Y3 Wil\n\n21) dlwillson: B G1 Dlwillson\n\n22) wil: T B3 R3 Wil\n\n23) dlwillson: S B2 Forest\nT G1 R1 Dlwillson\nT B2 G2 Dlwillson\n\n24) wil: T Y2 B2 B3\n\n25) dlwillson: B Y2 Forest\n\n26) wil: D Y2 B3 G2 G2\n\n27) dlwillson: D Y2 Forest G3 Field\n\n28) wil: D Y3 Wil Y3 Y3\n\n29) dlwillson: M Y3 Forest Dlwillson\n\n30) wil: B G1 Wil\n\n31) dlwillson: T Y3 R3 Dlwillson\n\twil: Ya finally got the big one back home\r\n..you were surprisingly well protected...\n\n32) wil: B Y3 G2\n\n33) dlwillson: M R1 Dlwillson Forest\n\n34) wil: M G1 Wil Y3\n\n35) dlwillson: S G2 Dlwillson\nB B2 Forest\nB R1 Forest\n\n36) wil: M Y3 Y3 Forest\n\n37) dlwillson: Build R1 Forest\n\n38) wil: S G1 Y3\nB Y3 Forest\n\n39) dlwillson: Discover Y2 Field G2 Fen\n\n40) wil: B R2 Wil\n\n41) dlwillson: Sacrifice B2 Forest\nTrade B1 G1 Forest\nTrade R1 G1 Forest\n\n42) wil: S Y3 G2\nM Y3 Forest B3\nM Y3 Forest B3\nM Y3 B3 Fen\n\twil: Nice try\n\n43) dlwillson: B G3 Dlwillson\n\n44) wil: B Y3 G2\n\n45) dlwillson: M G1 Dlwillson Fen\n\n46) wil: B G3 Wil\n\n47) dlwillson: M G3 Dlwillson Fen\n\n48) wil: S R3 Wil\nA G3 Fen\nA G1 Fen\nA Y2 Fen\n\n\twil: Two moves to mate I believe\n\tdlwillson: Good game! You kept picking up bigs. Well done.\n\twil: You were off you game..\n\nHomeworlds Online (SDG# 28530)\nVariants: "Hard time"\nStarted: 2015.11.8, Ended: 2015.11.10\nParticipants: kanzenryu (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) kanzenryu: Homeworld R1 G2 B3\n\n3) endo: Build G1 Endo\n\tkanzenryu: Hi, I'm just a newbie but I'm really loving this game\n\n4) kanzenryu: Build B1 Kanzenryu\n\tendo: Hi! I think I've played some 25 games so far. I like the game, but the deeper I learn to calculate, the more confusing it seems to get... Enjoy the match!\n\n5) endo: Discover G1 Endo Y2 Gch\n\tkanzenryu: I've played about five and lost in five interesting ways.\n\n6) kanzenryu: Trade B3 Y3 Kanzenryu\n\n7) endo: Build G1 Endo\n\n8) kanzenryu: Build Y1 Kanzenryu\n\n9) endo: Sacrifice G3 Endo\nBuild G1 Gch\nBuild G2 Endo\nBuild G2 Gch\n\n10) kanzenryu: Trade Y1 R1 Kanzenryu\n\n11) endo: Build G3 Endo\n\n12) kanzenryu: Build Y1 Kanzenryu\n\n13) endo: Discover G2 Gch Y3 Ac\n\n14) kanzenryu: Trade Y3 G3 Kanzenryu\n\n15) endo: Trade G2 Y2 Endo\n\n16) kanzenryu: Move R1 Kanzenryu Ac\n\n17) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G3 Endo\nBuild G3 Ac\n\tkanzenryu: Hmmm... And to think I couldn't get in trouble early if I built one of each ship.\n\n18) kanzenryu: Trade G3 R3 Kanzenryu\n\n19) endo: Trade G3 R3 Endo\n\tendo: Although the tutorials tell you to get at least one of each, that's a gross oversimplification. The main reason it's bad to give your opponent control of some color is that then they'll be able to build medium/large ships in that color while you won't. For building those ships, however, they need room on a star with a ship of that color. Each star can usually house two ships of the same color (three in the early game or when there are no catastrophe threats, such as when you already control a color). The stars in the system reduce this value by one or two, depending on the situation.\r\n\r\nIn order to gain build capacity, you need to send your ships to new stars with a free "slot" as you build more. In here, you can't build green, because your green star takes away the slot.\r\n\r\nYou usually don't need to rush into all the colors, you just need to make sure you don't get frozen out of anything. In this case, I was only building green ships, so I wasn't threatening to take all the small ships of some other color.\r\n\r\nWhat you do need to take care about is that your opponent doesn't get bigger *sizes* of ships than you. Bigger ships get produced once the smaller ones run out (this is why you need a lot of build capacity in a color you are trying to control, to "push" the color to the bigger sizes). When you get to the medium ships, it's much easier to obtain any color when necessary, because the medium ships are exhausted only after the small ones. And, size is power, obviously.\r\n\r\nTo get to the larger ships, you can either use the same color as your opponent (build capacity less important, since either player can store the small ships) or start a "race" with a different color (build capacity very important). If your opponent has controlled a color, having one small of each other color won't get you towards medium and large ships.\n\n20) kanzenryu: Move R1 Ac Gch\n\tkanzenryu: Wow, thanks for all the great advice. In fact everybody on this site seems extra nice.\n\n21) endo: Sacrifice G3 Ac\nBuild G3 Endo\nBuild G3 Gch\nBuild G3 Ac\n\tendo: You're welcome! If some questions come to your mind, feel free to ask. Good luck to your upcoming games!\n\tkanzenryu: Thanks, I'm going to need it ;-)\n\n\tkanzenryu: I won't waste any more of your time on this disaster ;-)\n\tendo: Thanks for the game!\n\nHomeworlds Online (SDG# 28517)\nVariants: "Hard time"\nStarted: 2015.11.8, Ended: 2015.11.19\nParticipants: Simon (S), kanzenryu (N)\nWinner: Simon\n\n1) kanzenryu: Homeworld G1 R3 B3\n\tkanzenryu: Thanks for the previous game! Up for another?\n\n2) Simon: Homeworld B2 R1 G3\n\tSimon: Sure sure, always happy to play!\n\n3) kanzenryu: Build B1 Kanzenryu\n\n4) Simon: Build G1 Simon\n\n5) kanzenryu: Trade B3 Y3 Kanzenryu\n\n6) Simon: Trade G1 Y1 Simon\n\n7) kanzenryu: Build Y1 Kanzenryu\n\n8) Simon: Build G1 Simon\n\n9) kanzenryu: Trade Y3 G3 Kanzenryu\n\n10) Simon: Trade G1 B1 Simon\n\n11) kanzenryu: Build G1 Kanzenryu\n\n12) Simon: Discover B1 Simon G3 G3\n\n13) kanzenryu: Discover G1 Kanzenryu Y2 First\n\n14) Simon: Build G1 Simon\n\n15) kanzenryu: Build G2 First\n\n16) Simon: Build G2 Simon\n\n17) kanzenryu: Build B1 Kanzenryu\n\n18) Simon: Discover G2 Simon B3 B3\n\n19) kanzenryu: Build G2 Kanzenryu\n\n20) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 Simon\nBuild Y2 Simon\n\n21) kanzenryu: Discover G2 Kanzenryu Y2 Out\n\n22) Simon: Trade Y1 R1 Simon\n\n23) kanzenryu: Trade B1 R1 Kanzenryu\n\n24) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B1 G3\nBuild B2 G3\n\n25) kanzenryu: Move R1 Kanzenryu First\n\n26) Simon: Trade B2 R2 G3\n\n27) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Out\nBuild Y1 Kanzenryu\nBuild Y3 Kanzenryu\n\n28) Simon: Move Y1 Simon G3\n\n29) kanzenryu: Move Y1 Kanzenryu Out\n\n30) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y3 Simon\nBuild Y3 G3\n\n31) kanzenryu: Sacrifice G3 Out\nBuild G3 Out\nBuild B2 Kanzenryu\nBuild R2 First\n\n32) Simon: Discover B1 G3 R2 R2\n\n33) kanzenryu: Discover Y1 Out B3 Nearly\n\n34) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B2 G3\nBuild B3 R2\n\n35) kanzenryu: Move R2 First Nearly\n\n36) Simon: Build R3 G3\n\n37) kanzenryu: Sacrifice G3 Out\nBuild G3 Out\nBuild R3 Nearly\nPass\n\n38) Simon: Move R3 G3 First\n\n39) kanzenryu: Move R3 Nearly Simon\n\n40) Simon: Sacrifice R1 Simon\nAttack R3 Simon\n\n41) kanzenryu: Sacrifice Y3 Kanzenryu\nMove R1 First Nearly\nMove R1 Nearly Simon\nMove R2 Nearly Simon\nCatastrophe Simon R\n\n42) Simon: Sacrifice Y3 Simon\nMove R3 First Kanzenryu\nMove B3 R2 Kanzenryu\nMove B1 R2 Kanzenryu\nCatastrophe Kanzenryu B\n\n\tkanzenryu: Nice, thanks\n\tSimon: gg. Always happy to play again.\n\nHomeworlds Online (SDG# 28498)\nVariants: "Hard time"\nStarted: 2015.11.9, Ended: 2015.11.14\nParticipants: endo (S), SilentTitan (N)\nWinner: endo\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) endo: Homeworld B1 Y3 G3\n\n\nHomeworlds Online (SDG# 28561)\nVariants: "Hard time"\nStarted: 2015.11.9, Ended: 2015.11.12\nParticipants: Simon (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld R1 B2 G3\n\n2) Simon: Homeworld B1 R3 G3\n\tendo: Let's do another one then! I'll try a Planetary Defense System for the first time...\n\tSimon: Have fun!\n\n3) endo: Build G1 Endo\n\n4) Simon: Build G1 Simon\n\n5) endo: Trade G1 B1 Endo\n\n6) Simon: Trade G1 R1 Simon\n\n7) endo: Build B1 Endo\n\n8) Simon: Build G1 Simon\n\n9) endo: Trade B1 Y1 Endo\n\n10) Simon: Trade G1 Y1 Simon\n\n11) endo: Build B1 Endo\n\n12) Simon: Build R1 Simon\n\n13) endo: Discover B1 Endo R3 Sat\n\n14) Simon: Discover R1 Simon B2 B2\n\n15) endo: Sacrifice G3 Endo\nBuild B2 Sat\nBuild B3 Endo\nBuild B3 Sat\n\n16) Simon: Build G1 Simon\n\n17) endo: Trade B3 G3 Endo\n\n18) Simon: Build R2 Simon\n\n19) endo: Build B3 Endo\n\n20) Simon: Discover R1 Simon Y2 Y2\n\n21) endo: Trade B3 R3 Endo\n\n22) Simon: Sacrifice G3 Simon\nBuild R2 B2\nBuild R2 Y2\nBuild Y1 Simon\n\n23) endo: Build Y2 Endo\n\n24) Simon: Build Y2 Simon\n\n25) endo: Build Y3 Endo\n\n26) Simon: Discover Y1 Simon G2 G2\n\n27) endo: Sacrifice Y2 Endo\nMove B3 Sat B2\nMove B3 B2 Simon\n\n\tSimon: one of the many ways to do it. gg.\n\tendo: Good game, thanks for playing. I've got a standing challenge up too, so you can use that when you feel like playing another one.\n\nHomeworlds Online (SDG# 28560)\nVariants: "Hard time"\nStarted: 2015.11.10, Ended: 2015.11.17\nParticipants: kanzenryu (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y2 G3\n\tkanzenryu: I guess I know one more thing to avoid now\n\n2) kanzenryu: Homeworld G1 B3 Y3\n\n3) endo: Build G1 Endo\n\n4) kanzenryu: Build Y1 Kanzenryu\n\n5) endo: Build G1 Endo\n\n6) kanzenryu: Trade Y3 G3 Kanzenryu\n\n7) endo: Discover G1 Endo B3 Grp\n\n8) kanzenryu: Build G2 Kanzenryu\n\n9) endo: Sacrifice G3 Endo\nBuild G2 Grp\nBuild G2 Grp\nBuild G3 Endo\n\n10) kanzenryu: Trade G2 R2 Kanzenryu\n\n11) endo: Trade G2 Y2 Grp\n\n12) kanzenryu: Discover R2 Kanzenryu Y2 First\n\n13) endo: Trade G2 R2 Grp\n\n14) kanzenryu: Build Y1 Kanzenryu\n\tkanzenryu: Hmmm in trouble already\n\n15) endo: Build G2 Grp\n\n16) kanzenryu: Trade Y1 B1 Kanzenryu\n\n17) endo: Discover G2 Grp B2 Top\n\n18) kanzenryu: Build Y1 Kanzenryu\n\n19) endo: Sacrifice G3 Endo\nBuild G2 Grp\nBuild G2 Top\nBuild G3 Endo\n\n20) kanzenryu: Trade G3 R3 Kanzenryu\n\n21) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild G3 Grp\nBuild G3 Top\n\n22) kanzenryu: Build R1 Kanzenryu\n\tkanzenryu: This game simultaneously fills me with joy and makes me want to curl up into a ball rocking back and forward.\n\n23) endo: Trade G3 R3 Endo\n\n24) kanzenryu: Move R1 Kanzenryu Top\n\n25) endo: Sacrifice G3 Grp\nBuild G3 Endo\nBuild G3 Grp\nBuild R1 Grp\n\n26) kanzenryu: Build R1 Kanzenryu\n\n27) endo: Sacrifice R1 Grp\nAttack R1 Top\n\n28) kanzenryu: Move B1 Kanzenryu First\n\n29) endo: Sacrifice G3 Grp\nBuild R1 Top\nBuild R2 Endo\nBuild R3 Grp\n\n30) kanzenryu: Move Y1 Kanzenryu First\n\n31) endo: Move R3 Grp First\n\n32) kanzenryu: Sacrifice Y1 First\nDiscover R2 First G3 Peep\n\n33) endo: Sacrifice Y2 Grp\nMove R1 Top Kanzenryu\nMove R1 Top Kanzenryu\nCatastrophe Kanzenryu R\n\n\tkanzenryu: Thanks, despite the crushing result I'm loving this game.\n\nHomeworlds Online (SDG# 28576)\nStarted: 2015.11.10, Ended: 2015.11.28\nParticipants: ts52 (S), kanzenryu (N)\nWinner: ts52\n\n1) kanzenryu: Homeworld G1 B3 Y3\n\n2) ts52: Homeworld Y1 B2 G3\n\tkanzenryu: Keen for more!\n\tts52: Absolutely!\n\n3) kanzenryu: Build Y1 Kanzenryu\n\n4) ts52: Build G1 Ts52\n\n5) kanzenryu: Discover Y1 Kanzenryu G2 First\n\n6) ts52: Build G1 Ts52\n\n7) kanzenryu: Trade Y3 G3 Kanzenryu\n\n8) ts52: Discover G1 Ts52 B3 Grover\n\n9) kanzenryu: Build G2 Kanzenryu\n\n10) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Grover\nBuild G3 Ts52\n\n11) kanzenryu: Build Y1 First\n\n12) ts52: Trade G2 Y2 Grover\n\n13) kanzenryu: Trade G2 R2 Kanzenryu\n\n14) ts52: Sacrifice G3 Grover\nBuild G2 Ts52\nBuild G2 Grover\nBuild G3 Grover\n\n15) kanzenryu: Build R1 Kanzenryu\n\n16) ts52: Trade G3 R3 Grover\n\n17) kanzenryu: Discover Y1 First B3 Nearly\n\n18) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild Y2 Grover\n\n19) kanzenryu: Build Y2 First\n\n20) ts52: Discover Y2 Grover B2 Gonzo\n\n21) kanzenryu: Move Y1 First Kanzenryu\n\n22) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Grover\nBuild Y3 Gonzo\n\tkanzenryu: Retreat!\n\n23) kanzenryu: Build Y3 Kanzenryu\n\n24) ts52: Trade G2 R2 Ts52\n\n25) kanzenryu: Move G3 Kanzenryu First\n\n26) ts52: Sacrifice Y2 Grover\nMove G1 Grover First\nMove G2 Grover First\nCatastrophe First Green\n\n27) kanzenryu: Discover Y1 Kanzenryu G2 New\n\n28) ts52: Build Y2 Grover\n\n29) kanzenryu: Build Y2 New\n\n30) ts52: Trade Y2 G2 Gonzo\n\n31) kanzenryu: Build Y2 Kanzenryu\n\n32) ts52: Sacrifice G3 Ts52\nBuild G1 Gonzo\nBuild G2 Grover\nBuild G3 Ts52\n\n33) kanzenryu: Trade Y3 G3 Kanzenryu\n\n34) ts52: Sacrifice Y2 Grover\nMove G1 Gonzo Kanzenryu\nMove G2 Gonzo Kanzenryu\nCatastrophe Kanzenryu Green\n\n\tkanzenryu: Good game, thanks\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 28501)\nVariants: "Unrated"\nStarted: 2015.11.11, Ended: 2015.11.15\nParticipants: wil (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld B3 Y1 G3\n\n2) wil: H Y2 B1 G3\n\tAusmuh: Hello again. I'm back after a hiatus. Sorry about the sudden disappearance last year ish...\n\twil: Why apologize for life? Welcome back!\n\n3) Ausmuh: Build G1 Ausmuh\n\n4) wil: B G1 Wil\n\n5) Ausmuh: Trade G1 Y1 Ausmuh\n\n6) wil: T G1 Y1 Wil\n\n7) Ausmuh: Build Y2 Ausmuh\n\n8) wil: B Y2 Wil\n\n9) Ausmuh: Discover Y1 Ausmuh G2 Blellow\n\n10) wil: D Y1 Wil G3 G3\n\n11) Ausmuh: Build Y3 Blellow\n\n12) wil: B Y3 G3\n\n13) Ausmuh: Discover Y1 Blellow B3 Srv\n\n14) wil: D Y2 Wil Y3 Y3\n\n15) Ausmuh: Build G1 Ausmuh\n\n16) wil: B G1 Wil\n\n17) Ausmuh: Trade G1 B1 Ausmuh\n\n18) wil: T G1 B1 Wil\n\n19) Ausmuh: Move B1 Ausmuh Blellow\n\twil: I didn't want to join the trade treaty... But it looked like you gave me no choice\n\n20) wil: M B1 Wil G3\n\n21) Ausmuh: Trade Y3 R3 Blellow\n\n22) wil: D Y1 G3 G2 G2\n\n23) Ausmuh: Sacrifice Y2 Ausmuh\nMove R3 Blellow Srv\nMove R3 Srv Wil\n\n\twil: Well crap...no excuses...why didn't I get a gun?\n\twil: Well crap...no excuses...why didn't I get a gun?\n\nHomeworlds Online (SDG# 28579)\nVariants: "Unrated"\nStarted: 2015.11.11, Ended: 2015.11.28\nParticipants: kanzenryu (S), wil (N)\nWinner: wil\n\n1) wil: H R2 B1 G3\n\n2) kanzenryu: Homeworld B2 Y3 G3\n\n3) wil: B G1 Wil\n\tkanzenryu: And now for something completely different\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) wil: T G1 B1 Wil\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) wil: B B1 Wil\n\n8) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: It amazes me how quickly I can get into trouble but still not see it coming one move earlier.\n\n9) wil: T G3 Y3 Wil\n\twil: It takes a while to see them coming... Rule of thumb... Rarely on insure what they get you get.. Often when it comes to growing new economies, copy cat is recommended...unless you have another plan to gain access...\n\n10) kanzenryu: Discover G1 Kanzenryu Y1 First\n\n11) wil: D B1 Wil G3 G3\n\n12) kanzenryu: Build G1 Kanzenryu\n\n13) wil: T Y3 G3 Wil\n\n14) kanzenryu: Discover G1 Kanzenryu Y1 Dwarf\n\n15) wil: S G3 Wil\nB B2 G3\nB B2 G3\nB B3 Wil\n\n16) kanzenryu: Build Y2 Kanzenryu\n\n17) wil: T B3 G3 Wil\n\n18) kanzenryu: Trade Y2 R2 Kanzenryu\n\n19) wil: B B3 Wil\n\n20) kanzenryu: Build R1 Kanzenryu\n\n21) wil: T B3 R3 Wil\n\n22) kanzenryu: Build Y2 Kanzenryu\n\n23) wil: B B3 Wil\n\n24) kanzenryu: Move R2 Kanzenryu First\n\n25) wil: T B3 Y3 Wil\n\n26) kanzenryu: Move Y2 Kanzenryu Dwarf\n\n27) wil: B Y2 Wil\n\n28) kanzenryu: Discover R2 First Y3 Peep\n\n29) wil: M R3 Wil Peep\n\n30) kanzenryu: Sacrifice G1 First\nBuild R1 Peep\n\n31) wil: M R3 Peep Dwarf\n\n32) kanzenryu: Move G1 Dwarf Peep\n\n33) wil: A Y2 Dwarf\n\n34) kanzenryu: Build R1 Peep\n\n35) wil: T B2 Y2 G3\n\n36) kanzenryu: Move R1 Peep Wil\n\n37) wil: A R1 Wil\n\n38) kanzenryu: Move R2 Peep Wil\n\n39) wil: T R1 Y1 Wil\n\n40) kanzenryu: Sacrifice G1 Peep\nBuild R1 Wil\n\n41) wil: M Y3 Wil Peep\n\n42) kanzenryu: Move R1 Peep Wil\nCatastrophe Wil R\n\n43) wil: S Y2 G3\nM Y2 Dwarf Kanzenryu\nM Y1 Wil Kanzenryu\nC Kanzenryu Y\n\n44) kanzenryu: Build G1 Kanzenryu\n\twil: I'm afraid I let you walk right into this one... \n\n45) wil: S Y3 Peep\nM B1 Wil Kanzenryu\nM B2 G3 Kanzenryu\nM B1 G3 Kanzenryu\nC Kanzenryu B\n\tkanzenryu: I could see that I've been significantly behind for quite some time (like all my games ;-) so some big attack has to happen at some stage.\n\twil: This is a variation of the doomsday machine...using yellows and strategically placed ships to blow up your opponents homeworld...your blowing up half my homeworld helped to give me access to yours.\n\twil: Not much left in my galaxy after that...but enough to rebuild civilization...\n\n\nHomeworlds Online (SDG# 28535)\nVariants: "Hard time"\nStarted: 2015.11.11, Ended: 2015.12.11\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld B2 G1 Y3\n\tdragon76n: Hi Wil, I'm back for another game. \n\n2) wil: H Y3 B1 G3\n\twil: I'm glad! Let us hope I don't blink\n\n3) dragon76n: B Y1 Dragon76n\n\n4) wil: B G1 Wil\n\n5) dragon76n: T Y1 G1 Dragon76n\n\n6) wil: T G1 B1 Wil\n\n7) dragon76n: B Y1 Dragon76n\n\n8) wil: B B1 Wil\n\n9) dragon76n: B G1 Dragon76n\n\n10) wil: D B1 Wil Y2 Y2\n\n11) dragon76n: D Y1 Dragon76n G3 Grethr\n\n12) wil: B G2 Wil\n\n13) dragon76n: Discover G1 Dragon76n Y3 Yelthr\n\n14) wil: B B2 Wil\n\n15) dragon76n: B G2 Dragon76n\n\n16) wil: S G2 Wil\nB B2 Y2\nB B3 Y2\n\n17) dragon76n: Sacrifice G2 Dragon76n\nBuild G2 Yelthr\nBuild G2 Yelthr\n\n18) wil: T B3 G3 Y2\n\n19) dragon76n: Sacrifice G2 Yelthr\nBuild Y1 Grethr\nBuild G2 Dragon76n\n\n20) wil: B B3 Y2\n\n21) dragon76n: Trade G2 R2 Dragon76n\n\n22) wil: T B3 R3 Y2\n\n23) dragon76n: Build Y1 Grethr\n\n24) wil: T B2 Y2 Wil\n\n25) dragon76n: S Y3 Dragon76n\nM Y1 Grethr Y2\nM Y1 Grethr Y2\nM Y1 Grethr Y2\nC Y2 Yellow\n\n26) wil: B G2 Wil\n\n27) dragon76n: D G1 Yelthr B2 Blutwo\n\n28) wil: T G2 R2 Wil\n\n29) dragon76n: B G2 Blutwo\n\n30) wil: B G2 Wil\n\n\twil: I hate to win that way\n\nHomeworlds Online (SDG# 28571)\nVariants: "Hard time"\nStarted: 2015.11.12, Ended: 2015.11.20\nParticipants: endo (S), Simon (N)\nWinner: endo\n\n1) Simon: Homeworld Y1 B3 G3\n\n2) endo: Homeworld B1 Y2 G3\n\tSimon: Yes yes, more homeworlds.\n\n3) Simon: Build G1 Simon\n\n4) endo: Build G1 Endo\n\n5) Simon: Trade G1 B1 Simon\n\n6) endo: Trade G1 B1 Endo\n\n7) Simon: Build B2 Simon\n\n8) endo: Build B2 Endo\n\n9) Simon: Discover B2 Simon G2 G2\n\n10) endo: Trade B1 Y1 Endo\n\n11) Simon: Build B1 Simon\n\n12) endo: Build Y1 Endo\n\n13) Simon: Discover B1 Simon R2 R2\n\n14) endo: Discover Y1 Endo B3 Clique\n\n15) Simon: Trade B2 Y2 G2\n\n16) endo: Sacrifice G3 Endo\nBuild Y2 Clique\nBuild Y3 Endo\nBuild Y3 Clique\n\n17) Simon: Build Y3 G2\n\n18) endo: Trade Y3 R3 Clique\n\n19) Simon: Discover Y3 G2 R3 R3\n\n20) endo: Sacrifice Y3 Endo\nMove R3 Clique R2\nMove R3 R2 Simon\nMove Y2 Clique R2\n\n\tSimon: Flat-out oversight. gg!\n\tendo: Good game! The position after move 9 was pretty crazy. "s y3 g2, m y2 g2 clique, m y2 clique endo, c endo y, m b1 r2 endo" would have been enough to win, I think, but if I understand it correctly, SDG doesn't allow taking actions after declaring catastrophes. I had to check the sources to make sure but was busy with real-life matters, that's why it took me so long. :)\n\tSimon: Right, catastrophe and then normal moves is forbidden here, which is the older version of the rules. Is the site open source?\n\tendo: There's a copy of the source from 2014 available in the author's Google Drive at https://drive.google.com/folderview?id=0Bw8J0V9P_9hMeEJUSXE1LXRBN00. I'm not sure if it's completely up to date.\n\tSimon: Cool, thanks.\n\nHomeworlds Online (SDG# 28599)\nVariants: "Unrated"\nStarted: 2015.11.13, Ended: 2016.1.14\nParticipants: kanzenryu (S), fogus (N)\nWinner: kanzenryu\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) kanzenryu: Homeworld Y1 G3 B3\n\n3) fogus: Build G1 Fogus\n\tkanzenryu: I'm still loving this game...\n\n4) kanzenryu: Build B1 Kanzenryu\n\n5) fogus: Build G1 Fogus\n\n6) kanzenryu: Build B1 Kanzenryu\n\tkanzenryu: After being crushed a number of times and getting into trouble pretty quickly I'm now getting scared just doing the first few moves\n\n7) fogus: Trade G3 B3 Fogus\n\n8) kanzenryu: Trade B1 G1 Kanzenryu\n\tfogus: I like the "Blue Rush" strategy. It's fun to play against. :)\n\n9) fogus: Build G2 Fogus\n\n10) kanzenryu: Build G2 Kanzenryu\n\n11) fogus: Discover G1 Fogus Y3 Fripp\n\n12) kanzenryu: Discover G1 Kanzenryu Y2 Out\n\n13) fogus: Trade G2 Y2 Fogus\n\n14) kanzenryu: Build G2 Out\n\n15) fogus: Build G2 Fogus\n\n16) kanzenryu: Discover G1 Out Y3 Nearly\n\n17) fogus: Build G3 Fripp\n\n18) kanzenryu: Build G3 Nearly\n\n19) fogus: Move G1 Fripp Out\n\n20) kanzenryu: Trade B1 R1 Kanzenryu\n\n21) fogus: Build B1 Fogus\n\n22) kanzenryu: Sacrifice G3 Nearly\nBuild G3 Nearly\nBuild R1 Kanzenryu\nBuild B1 Kanzenryu\n\n23) fogus: Move G1 Out Fripp\n\n24) kanzenryu: Sacrifice G3 Nearly\nBuild G3 Nearly\nBuild R1 Kanzenryu\nBuild B2 Kanzenryu\n\tfogus: How's the MCTS player coming along?\n\tkanzenryu: I was reading some articles on the MCTS and UCT algorithms. So far I'm confused as to how a position that looks good but allows one very good move for the opponent will be handled. So the short answer is "not started" ;-)\n\n25) fogus: Trade G2 R2 Fogus\n\n26) kanzenryu: Trade B3 Y3 Kanzenryu\n\n27) fogus: Move B1 Fogus Fripp\n\n28) kanzenryu: Sacrifice B1 Kanzenryu\nTrade G3 B3 Nearly\n\n29) fogus: Sacrifice G3 Fripp\nBuild G2 Fogus\nBuild G3 Fripp\nBuild R2 Fogus\n\n30) kanzenryu: Build G3 Nearly\n\n31) fogus: Move R2 Fogus Fripp\n\n32) kanzenryu: Move R1 Kanzenryu Out\n\n33) fogus: Discover R2 Fripp Y1 Eno\n\n34) kanzenryu: Sacrifice G3 Nearly\nBuild G3 Nearly\nBuild Y1 Kanzenryu\nBuild B1 Nearly\n\n35) fogus: Sacrifice G3 Fripp\nBuild R2 Fogus\nBuild R3 Eno\nBuild G3 Fripp\n\n36) kanzenryu: Sacrifice G3 Nearly\nBuild G3 Nearly\nBuild B2 Nearly\nBuild R3 Out\n\n37) fogus: Trade B3 R3 Fogus\n\n38) kanzenryu: Move R1 Out Nearly\n\n39) fogus: Move R2 Fogus Fripp\n\tkanzenryu: BTW I sent you a challenge for alien city\n\n40) kanzenryu: Move Y1 Kanzenryu Out\n\n41) fogus: Move B1 Fripp Fogus\n\n42) kanzenryu: Move B1 Nearly Fogus\n\n43) fogus: Move B1 Fogus Fripp\n\n44) kanzenryu: Move B2 Nearly Fogus\n\n45) fogus: Sacrifice G3 Fripp\nBuild G3 Fripp\nBuild B2 Fripp\nBuild B3 Fripp\n\n46) kanzenryu: Sacrifice G2 Kanzenryu\nBuild G2 Out\nBuild B3 Fogus\nCatastrophe Fogus B\n\n47) fogus: Discover B3 Fripp B2 Zakir\n\n48) kanzenryu: Move Y1 Out Nearly\n\tkanzenryu: Congrats on making it to the top of Hacker News with your blog. Awesome stuff. Have you tried out parinfer? I'm using vim-parinfer which is still pretty great.\n\n49) fogus: Move Y2 Fogus Fripp\n\tfogus: I have not tried parinfer yet. People keep telling me about it though. :)\n\n50) kanzenryu: Move R3 Out Nearly\n\tkanzenryu: Parinfer seems to have dramatically improved the speed that I can write working Clojure code. But then I started from a position of being pretty crap.\n\n51) fogus: Move R2 Fogus Nearly\n\n52) kanzenryu: Move G3 Nearly Fogus\n\tfogus: Whoops. Accidental undo.\n\n53) fogus: Attack G3 Fogus\n\n54) kanzenryu: Move G1 Nearly Fogus\nCatastrophe Fogus G\n\n55) fogus: Move G3 Fripp Fogus\n\n56) kanzenryu: Attack R2 Nearly\n\tfogus: Sorry that it's taking me so long to play, but the new year has brought much busy-ness at work.\n\n57) fogus: Move R2 Eno Nearly\nCatastrophe Nearly R\n\tkanzenryu: No problem at all. At least your work involves Clojure. I once managed to write a GUI testing framework in Clojure, but a couple of years later it got rewritten in Groovy.\n\n58) kanzenryu: Trade B3 R3 Nearly\n\n59) fogus: Sacrifice Y2 Fripp\nMove R3 Eno Nearly\nMove B3 Zakir Nearly\n\n60) kanzenryu: Discover Y1 Nearly G1 Side\n\n61) fogus: Attack R3 Nearly\n\n62) kanzenryu: Sacrifice G2 Out\nBuild Y1 Side\nBuild Y2 Side\n\n\tkanzenryu: So far my homeworlds AI code really only finds the legal moves for a position (which is quite complex for sacrifices).\r\n\r\nMaybe you could have a quick look at https://github.com/davidplumpton/homeworldsai and when you stop laughing give me some advice.\n\tfogus: ARGGH!!! I got too greedy! I knew that I should have traded for that y2. Great game!\n\tkanzenryu: Thanks, that game was pretty epic.\n\tfogus: This game is great because very often you're balancing on a knife's edge the whole time. This game was a good example of that.\n\nHomeworlds Online (SDG# 28601)\nVariants: "Hard time"\nStarted: 2015.11.13, Ended: 2015.12.1\nParticipants: wil (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) wil: H B2 Y1 G3\n\n3) endo: Build G1 Endo\n\twil: Another try... I like the ladder because I get to play\n\n4) wil: B G1 Wil\n\tendo: Good luck, have fun!\n\n5) endo: Trade G1 B1 Endo\n\n6) wil: T G1 B1 Wil\n\n7) endo: Build B2 Endo\n\n8) wil: B B2 Wil\n\n9) endo: Discover B1 Endo G2 Directed\n\n10) wil: D B1 Wil Y3 Y3\n\n11) endo: Build B3 Directed\n\n12) wil: B B3 Wil\n\n13) endo: Build B3 Endo\n\n14) wil: T B3 Y3 Wil\n\n15) endo: Trade B2 Y2 Endo\n\n16) wil: B Y1 Wil\n\n17) endo: Move Y2 Endo Directed\n\n18) wil: T Y1 R1 Wil\n\n19) endo: Trade B1 R1 Directed\n\n20) wil: B Y1 Wil\n\n21) endo: Build Y1 Directed\n\n22) wil: D Y3 Wil G3 G3\n\n23) endo: Build Y2 Directed\n\n24) wil: D Y3 G3 G2 G2\n\n25) endo: Trade Y1 G1 Directed\n\n26) wil: B G1 Wil\n\n27) endo: Build G1 Endo\n\n28) wil: M G1 Wil Y3\n\n29) endo: Discover G1 Directed B3 Dense\n\n30) wil: M Y3 G2 Dense\n\n31) endo: Build G2 Dense\n\n32) wil: B G2 Y3\n\n33) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild G3 Dense\nBuild R1 Directed\n\n34) wil: S R1 Wil\nA G3 Dense\n\n35) endo: Sacrifice Y2 Directed\nMove B3 Directed Dense\nMove B3 Dense Wil\n\n36) wil: S G3 Dense\nB G3 Wil\nB B1 Wil\nB B2 Y3\nC Wil B\n\n37) endo: Move Y2 Directed Wil\n\n38) wil: S G3 Wil\nB Y1 Dense\nB Y2 Dense\nB Y2 Dense\n\n39) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild B1 Endo\nBuild R1 Directed\nCatastrophe Dense Y\n\twil: Curses... Slaughtered again.\n\n40) wil: S G2 Y3\nB Y1 Wil\nB G2 Y3\n\n\tendo: You denied me my historic triple catastrophe :(\n\twil: Lol... I set it up... I took it down \r\n\r\nWe need to build a tourney... \n\nHomeworlds Online (SDG# 28566)\nVariants: "Hard time"\nStarted: 2015.11.15, Ended: 2015.11.20\nParticipants: Simon (S), Ausmuh (N)\nWinner: Simon\n\n1) Ausmuh: Homeworld G3 Y2 B3\n\n2) Simon: Homeworld R1 B3 G3\n\tAusmuh: Hello. Have a fun game.\n\tSimon: Hi, have fun!\n\n3) Ausmuh: Build B1 Ausmuh\n\n4) Simon: Build G1 Simon\n\n5) Ausmuh: Trade B1 Y1 Ausmuh\n\n6) Simon: Trade G1 Y1 Simon\n\n7) Ausmuh: Build B1 Ausmuh\n\n8) Simon: Build G1 Simon\n\n9) Ausmuh: Discover Y1 Ausmuh B1 Ls1\n\n10) Simon: Trade G1 B1 Simon\n\n11) Ausmuh: Discover Y1 Ls1 G2 Mw2\n\n12) Simon: Discover B1 Simon G2 G2\n\n13) Ausmuh: Trade B1 R1 Ausmuh\n\n14) Simon: Build B1 G2\n\n15) Ausmuh: Build B1 Ausmuh\n\n16) Simon: Build B2 G2\n\n17) Ausmuh: Build B2 Ausmuh\n\n18) Simon: Trade B2 Y2 G2\n\n19) Ausmuh: Build R1 Ausmuh\n\n20) Simon: Sacrifice Y2 G2\nDiscover B1 G2 G1 G1\nMove B1 G1 Ausmuh\nCatastrophe Ausmuh B\n\n21) Ausmuh: Build R2 Ausmuh\n\tAusmuh: Wow I was not paying attention. \n\n22) Simon: Build B1 G2\n\n23) Ausmuh: Discover R1 Ausmuh Y1 Sm1\n\tSimon: Yeah, such threats can often restrict the choice of colors for a while.\n\n24) Simon: Build Y2 Simon\n\n25) Ausmuh: Move R1 Sm1 Mw2\n\n26) Simon: Move Y2 Simon G2\n\n27) Ausmuh: Build R2 Mw2\n\n28) Simon: Trade Y2 R2 G2\n\n29) Ausmuh: Build R3 Ausmuh\n\n30) Simon: Build R3 G2\n\n31) Ausmuh: Build R3 Mw2\n\n32) Simon: Trade R3 Y3 G2\n\n33) Ausmuh: Discover R2 Ausmuh B1 Ls1\n\n34) Simon: Build R3 G2\n\n35) Ausmuh: Trade R2 B2 Ls1\n\tAusmuh: Oops, wrong color :P\n\n36) Simon: Move R3 G2 Ls1\n\n37) Ausmuh: Sacrifice B2 Ls1\nTrade R2 Y2 Mw2\nTrade R3 B3 Ausmuh\n\n38) Simon: Trade B1 G1 G2\n\n39) Ausmuh: Discover Y1 Mw2 G1 Mw1\n\n40) Simon: Move G1 G2 Ls1\n\n41) Ausmuh: Trade R1 B1 Ausmuh\n\n42) Simon: Build G1 Simon\n\n43) Ausmuh: Move B1 Ausmuh Mw1\n\n44) Simon: Sacrifice G3 Simon\nBuild G2 Ls1\nBuild G3 Ls1\nBuild G3 Simon\n\n45) Ausmuh: Build B2 Mw1\n\n46) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 G2\nBuild B2 G2\n\n47) Ausmuh: Build B2 Ausmuh\n\n48) Simon: Move B1 G2 Mw1\n\n49) Ausmuh: Move R3 Mw2 Mw1\n\n50) Simon: Sacrifice Y3 G2\nMove B1 Mw1 Ausmuh\nMove B2 G2 Mw1\nMove B2 Mw1 Ausmuh\nCatastrophe Ausmuh B\n\n\tSimon: I wanted to make room for building the last b3 myself, while gaining time by forcing responses to the various blue threats. >_>;\r\n\r\nThanks for the game still, I had to make some good decisions, and I'd be up for rematches anytime!\n\nHomeworlds Online (SDG# 28588)\nVariants: "Hard time"\nStarted: 2015.11.15, Ended: 2015.11.19\nParticipants: Ausmuh (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld Y1 B2 G3\n\n2) Ausmuh: Homeworld G3 Y2 B3\n\n3) endo: Build G1 Endo\n\n4) Ausmuh: Build B1 Ausmuh\n\n5) endo: Build G1 Endo\n\n6) Ausmuh: Trade B1 Y1 Ausmuh\n\n7) endo: Discover G1 Endo Y3 Abelian\n\n8) Ausmuh: Discover Y1 Ausmuh G1 Mw1\n\n9) endo: Build G2 Abelian\n\n10) Ausmuh: Discover Y1 Mw1 G3 Mw3\n\n11) endo: Discover G1 Abelian G1 Solvable\n\n12) Ausmuh: Build Y1 Mw3\n\n13) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G2 Abelian\nBuild G3 Endo\n\n14) Ausmuh: Build Y2 Mw3\n\n15) endo: Trade G3 R3 Endo\n\n16) Ausmuh: Sacrifice Y2 Mw3\nMove Y1 Mw3 Endo\nDiscover Y1 Endo G3 Mj3\n\n17) endo: Move G2 Endo Mj3\n\n18) Ausmuh: Build Y2 Mw3\n\n19) endo: Sacrifice G2 Abelian\nBuild G2 Endo\nBuild R1 Endo\n\n20) Ausmuh: Discover Y1 Mj3 Y2 Md1\n\tAusmuh: That was a sweet move.\n\n21) endo: Move R3 Endo Mw3\n\n22) Ausmuh: Sacrifice Y1 Mw3\nDiscover Y2 Mw3 Y1 Sm1\n\n23) endo: Sacrifice G2 Mj3\nBuild G2 Abelian\nBuild G3 Endo\n\n24) Ausmuh: Build B1 Ausmuh\n\n25) endo: Trade G3 Y3 Endo\n\n26) Ausmuh: Discover Y2 Sm1 G3 Mj3\n\n27) endo: Move G2 Endo Mj3\n\n28) Ausmuh: Build Y1 Mj3\n\n29) endo: Sacrifice R3 Mw3\nAttack Y1 Mj3\nAttack Y2 Mj3\nPass\n\n30) Ausmuh: Discover Y1 Md1 G3 Mw3\n\n31) endo: Sacrifice Y2 Mj3\nMove Y1 Mj3 Endo\nMove Y1 Endo Mw3\n\n32) Ausmuh: Trade B3 R3 Ausmuh\n\n33) endo: Sacrifice R1 Endo\nAttack Y1 Mw3\n\n34) Ausmuh: Build B1 Ausmuh\n\n35) endo: Sacrifice G2 Mj3\nBuild G2 Endo\nBuild G3 Endo\n\n36) Ausmuh: Build B1 Ausmuh\n\n37) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y2 Endo\nBuild Y2 Mw3\n\n38) Ausmuh: Move B1 Ausmuh Solvable\n\n39) endo: Discover Y3 Endo B3 Nilpotent\n\n40) Ausmuh: Trade B1 R1 Solvable\n\n41) endo: Sacrifice G1 Solvable\nBuild Y3 Nilpotent\n\n42) Ausmuh: Move B1 Ausmuh Solvable\n\n43) endo: Move G2 Abelian Solvable\n\n44) Ausmuh: Trade B1 G1 Solvable\n\n45) endo: Sacrifice Y3 Nilpotent\nMove G2 Abelian Solvable\nMove G2 Solvable Ausmuh\nMove G2 Solvable Ausmuh\n\n46) Ausmuh: Build R1 Ausmuh\n\n47) endo: Sacrifice G3 Endo\nBuild G3 Ausmuh\nBuild Y3 Nilpotent\nBuild Y3 Nilpotent\nCatastrophe Ausmuh G\n\n48) Ausmuh: Build G2 Solvable\n\tAusmuh: Thanks for playing. Nice work taking over yellow and nice doomsday machine. :)\n\n49) endo: Sacrifice Y3 Nilpotent\nMove Y1 Mw3 Ausmuh\nMove Y1 Mw3 Ausmuh\nMove Y2 Mw3 Ausmuh\nCatastrophe Ausmuh Y\n\tendo: Thanks for the game.\n\n\nHomeworlds Online (SDG# 28583)\nVariants: "Hard time"\nStarted: 2015.11.15, Ended: 2015.12.9\nParticipants: wil (S), Ausmuh (N)\nWinner: wil\n\n1) Ausmuh: Homeworld G3 Y2 B3\n\n2) wil: H B3 Y1 G3\n\tAusmuh: Last one was just the warm up. :)\n\twil: And another interesting open!\n\n3) Ausmuh: Build B1 Ausmuh\n\n4) wil: B G1 Wil\n\tAusmuh: Fortress intrigues me because it's less popular\n\twil: Yes...but it is your opening colors that surprised me...\n\n5) Ausmuh: Trade B1 Y1 Ausmuh\n\n6) wil: T G1 Y1 Wil\n\n7) Ausmuh: Build Y2 Ausmuh\n\n8) wil: B Y2 Wil\n\n9) Ausmuh: Discover Y1 Ausmuh G1 Mw1\n\n10) wil: D Y1 Wil G2 G2\n\n11) Ausmuh: Trade Y2 B2 Ausmuh\n\tAusmuh: My, what symmetric openings we can produce. :)\n\n12) wil: T Y2 R2 Wil\n\n13) Ausmuh: Build Y2 Mw1\n\n14) wil: B Y2 G2\n\n15) Ausmuh: Trade B2 R2 Ausmuh\n\n16) wil: D Y1 G2 B3 B3\n\n17) Ausmuh: Move Y1 Mw1 B3\n\n18) wil: B Y3 G2\n\n19) Ausmuh: Sacrifice R2 Ausmuh\nAttack Y1S B3\nPass\n\n20) wil: M Y3 G2 Mw1\n\n21) Ausmuh: Trade Y1 R1 B3\n\n22) wil: B R1 Wil\n\n23) Ausmuh: Move Y2 Mw1 B3\n\n24) wil: B Y1 G2\n\n25) Ausmuh: Trade Y1 G1 B3\n\n26) wil: B Y1 G2\n\n27) Ausmuh: Discover Y2 B3 G2 Mw2\n\n28) wil: M Y2 G2 B3\n\n29) Ausmuh: Build B1 Ausmuh\n\n30) wil: S R2 Wil\nA R1 B3\nA G1 B3\n\n31) Ausmuh: Trade B1 R1 Ausmuh\n\n32) wil: B G1 Wil\n\n33) Ausmuh: Build Y3 Mw2\n\n34) wil: S G3 Wil\nB G2 B3\nB Y3 B3\nB G3 Wil\n\n35) Ausmuh: Discover Y2 Mw2 B1 Ls1\n\n36) wil: S G3 Wil\nB G3 Wil\nB G3 B3\nB R2 B3\n\n37) Ausmuh: Trade Y2 R2 Ls1\n\n38) wil: B Y2 Mw1\n\n39) Ausmuh: Build B1 Ausmuh\n\n40) wil: M R1 B3 Mw1\n\n41) Ausmuh: Build B1 Ausmuh\n\n42) wil: T G2 B2 B3\n\n43) Ausmuh: Move B1 Ausmuh Ls1\n\n44) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB B2 B3\n\n45) Ausmuh: Sacrifice Y3 Mw2\nMove B1 Ls1 B3\nPass\nPass\nCatastrophe B3 Blue\n\n46) wil: B R2 Wil\n\n47) Ausmuh: Trade B1 G1 Ausmuh\n\n48) wil: T R1 B1 Wil\n\n49) Ausmuh: Move G1 Ausmuh Ls1\n\n50) wil: D Y1 G2 B1 B1\n\n51) Ausmuh: Trade R2 Y2 Ls1\n\n52) wil: S G2 Wil\nB Y3 B1\nB Y3 G2\n\n53) Ausmuh: Build G2 Ls1\n\n54) wil: M Y3 G2 Ls1\n\n55) Ausmuh: Move Y2 Ls1 G2\n\n56) wil: S R2 Wil\nA G1 Ls1\nA G2 Ls1\n\n\twil: I hate it when that happens\n\nHomeworlds Online (SDG# 28618)\nVariants: "Hard time"\nStarted: 2015.11.16, Ended: 2015.11.23\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld B2 Y1 G3\n\n2) wil: H B3 Y2 G3\n\tSimon: More homeworlds, more homeworlds!\n\n3) Simon: Build G1 Simon\n\n4) wil: B G1 Wil\n\n5) Simon: Trade G1 Y1 Simon\n\n6) wil: T G1 Y1 Wil\n\n7) Simon: Build Y2 Simon\n\n8) wil: B Y2 Wil\n\n9) Simon: Discover Y2 Simon G3 G3\n\n10) wil: T Y1 R1 Wil\n\n11) Simon: Build Y1 G3\n\n12) wil: D Y2 Wil G1 G1\n\n13) Simon: Build Y3 Simon\n\n14) wil: B Y3 G1\n\n15) Simon: Trade Y3 R3 Simon\n\n16) wil: D Y2 G1 B3 B3\n\n17) Simon: Move R3 Simon B3\n\n18) wil: B Y3 G1\n\n19) Simon: Attack Y2 B3\n\n20) wil: D Y3 G1 Y3 Y3\n\n21) Simon: Build G1 Simon\n\n22) wil: B R1 Wil\n\n23) Simon: Move G1 Simon B3\n\n24) wil: T R1 B1 Wil\n\n25) Simon: Discover Y1 G3 G1 G1a\n\n26) wil: B G2 Wil\n\n27) Simon: Build G2 Simon\n\n28) wil: B R1 Wil\n\n29) Simon: Sacrifice G3 Simon\nBuild G2 B3\nBuild G3 Simon\nBuild R1 B3\n\n30) wil: M R1 Wil G1\n\n31) Simon: Move R1 B3 G1a\n\n32) wil: S G3 Wil\nB G3 Wil\nB B1 Wil\nB R2 G1\n\n33) Simon: Trade G1 B1 B3\n\n34) wil: M B1 Wil G1\n\n35) Simon: Move B1 B3 G1a\n\n36) wil: M G2 Wil G1a\n\n37) Simon: Discover Y2 G3 G1 G1b\n\n38) wil: B G3 Wil\n\n39) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B2 G1a\nBuild B2 G1a\n\n40) wil: S R2 G1\nA B2 G1a\nA R1 G1a\n\n41) Simon: Sacrifice Y2 G1b\nMove B1 G1a Wil\nMove B2 G1a Wil\nCatastrophe Wil B\n\n42) wil: B Y2 G1\n\n43) Simon: Sacrifice Y2 B3\nMove Y1 Simon Y3\nMove Y1 G1a Y3\nCatastrophe Y3 Y\n\n44) wil: D G3 Wil Y3 Y3\n\n45) Simon: Sacrifice G3 Simon\nBuild G1 B3\nBuild R2 B3\nBuild G3 Simon\n\n46) wil: S Y3 G1\nM G2 G1a Y3\nM G2 Y3 Simon\nM G3 Y3 Simon\nC Simon G\n\n\twil: The bluebird\n\tSimon: Smart, because the distance is 2 only now. I stopped reading the move after "ventured forth from wil".\n\twil: Yes taking out a homeworld is a one two punch....if you can't do the follow-up eight away you often forget it is a short universe..\n\nHomeworlds Online (SDG# 28581)\nVariants: "Unrated"\nStarted: 2015.11.16, Ended: 2015.11.18\nParticipants: Danielaurence (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\tDanielaurence: homeworld G2 B1 Y3\n\n2) Danielaurence: Homeworld R2 B1 G3\n\twil: Good luck... Have you played this? \n\tDanielaurence: Only with real pyramids. I haven't played online yet. Figuring the controls out now.\n\n3) wil: B G1 Wil\n\twil: You have go catastrophe... It isn't automatic here... And you can't make any moves after one\n\n4) Danielaurence: Build G1 Danielaurence\n\n5) wil: T G1 B1 Wil\n\tDanielaurence: Got it. Thanks for the tips. Good luck!\n\n6) Danielaurence: Trade G1 Y1 Danielaurence\n\n7) wil: B B2 Wil\n\n8) Danielaurence: Build Y1 Danielaurence\n\n9) wil: D B2 Wil G2 G2\n\n10) Danielaurence: Build G1 Danielaurence\n\n11) wil: B B2 Wil\n\n12) Danielaurence: Discover G1 Danielaurence B3 B3\n\n13) wil: T B2 R2 Wil\n\n14) Danielaurence: Build G1 B3\n\n15) wil: B B2 G2\n\n16) Danielaurence: Trade G3 B3 Danielaurence\n\n17) wil: T B2 Y2 G2\n\n18) Danielaurence: Trade Y1 G1 Danielaurence\n\n19) wil: B G2 Wil\n\n20) Danielaurence: Build G2 Danielaurence\n\n21) wil: B G3 Wil\n\n22) Danielaurence: Build G3 Danielaurence\n\tDanielaurence: I have a lot to learn about this game... part of the reason I'm on here is to get a firmer grasp on the rules. For instance, I didn't know that you can only build a ship if you have another SHIP of the same color. I thought being in a system with that color was enough.\n\n23) wil: S G3 Wil\nB B2 Wil\nB B2 G2\nB B3 G2\n\n24) Danielaurence: Build G3 B3\n\n25) wil: T B3 Y3 G2\n\n26) Danielaurence: Trade G3 Y3 Danielaurence\n\n27) wil: S Y2 G2\nM G2 Wil G2\nM G2 G2 B3\nC B3 G\n\n28) Danielaurence: Discover B3 Danielaurence G3 Forest\n\n29) wil: M B2 G2 Forest\n\n30) Danielaurence: Trade B3 R3 Forest\n\n31) wil: T B2 R2 Forest\n\twil: Forgot to tell it to catastrophe\n\n32) Danielaurence: Attack R2 Forest\n\n33) wil: B B2 G2\n\n34) Danielaurence: Move Y1 Danielaurence Forest\n\twil: Nice\n\n35) wil: D B1 Wil Y2 Y2\n\n36) Danielaurence: Move R2 Forest Y2\n\tDanielaurence: Thanks!\n\n37) wil: S G3 Wil\nB B3 Wil\nB B3 Y2\nB B3 G2\n\twil: We.are a peaceful people and would like to offer you a warship\n\n38) Danielaurence: Move R3 Forest Y2\n\n39) wil: S R2 Wil\nA R3 Y2\nA R2 Y2\n\n40) Danielaurence: Build Y1 Forest\n\n41) wil: T B3 G3 Wil\n\twil: It was nice to have you come visit, you may stay for breakfast but you better be gone before nightfall\n\twil: It was nice to have you come visit, you may stay for breakfast but you better be gone before nightfall\n\n42) Danielaurence: Trade G1 R1 Danielaurence\n\tDanielaurence: I think I'd like to sleep over :)\n\n43) wil: M B3 Y2 Forest\n\twil: What was I thinking? Pardon my manners, in that case I welcome you to the fold like family...you can stay as long as like\n\tDanielaurence: Cripes. Nice move!\n\twil: Your donation is gratefully accepted, while we are not a warring factions, these are nice ships...\n\n44) Danielaurence: Sacrifice Y1 Forest\nMove Y1 Forest Danielaurence\n\n45) wil: S Y3 G2\nM B3 G2 Forest\nM B3 Forest Danielaurence\nM B3 Forest Danielaurence\n\n46) Danielaurence: Trade Y3 B3 Danielaurence\nCatastrophe Danielaurence Blue\n\n47) wil: M G3 Wil Danielaurence\n\n48) Danielaurence: Build G1 Danielaurence\n\n49) wil: S R3 Y2\nA G2 Danielaurence\nA G1 Danielaurence\nA R1 Danielaurence\n\n50) Danielaurence: Pass\n\tDanielaurence: You left me with no choice...\n\twil: It was you only delaying tactic\n\n51) wil: A Y1 Danielaurence\n\n\tDanielaurence: Haha, brilliant strategy on the name change! :) Great game. As a beginner, I definitely learned a lot.\n\twil: Challenge me anytime...join the ladder now and by the time you work your way painfully through the deadwood... You'll be ready for those on top!\n\nHomeworlds Online (SDG# 28582)\nStarted: 2015.11.16, Ended: 2015.11.23\nParticipants: Danielaurence (S), ts52 (N)\nWinner: Danielaurence\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) Danielaurence: Homeworld B2 R1 G3\n\n3) ts52: Build G1 Ts52\n\n4) Danielaurence: Build G1 Danielaurence\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Danielaurence: Trade G1 B1 Danielaurence\n\tDanielaurence: Good luck! I'm relatively new to the game, but I'll give it my best.\n\n7) ts52: Build B2 Ts52\n\tts52: Have a good game. Feel free to ask questions if you like. Always happy to help new players get into the game.\n\n8) Danielaurence: Build B2 Danielaurence\n\n9) ts52: Discover B2 Ts52 G2 Oscar\n\n10) Danielaurence: Trade B1 Y1 Danielaurence\n\n11) ts52: Build G1 Ts52\n\n12) Danielaurence: Build Y1 Danielaurence\n\n13) ts52: Move B1 Ts52 Oscar\n\n14) Danielaurence: Discover B2 Danielaurence G3 Forest\n\n15) ts52: Trade B2 Y2 Oscar\n\n16) Danielaurence: Build G1 Danielaurence\n\n17) ts52: Discover G1 Ts52 B2 Gonzo\n\n18) Danielaurence: Move Y1 Danielaurence Forest\n\n19) ts52: Build G1 Ts52\n\n20) Danielaurence: Move G1 Danielaurence Forest\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\n\n22) Danielaurence: Discover G1 Forest Y2 Desert\n\n23) ts52: Trade G2 R2 Gonzo\n\n24) Danielaurence: Move G1 Desert Ts52\nCatastrophe Ts52 Green\n\tDanielaurence: Good game! I hope you didn't let me win just because I'm a beginner! I'd love to play again sometime.\n\tts52: I did not. Well played. I"d be happy to play again, any time.\n\n\nHomeworlds Online (SDG# 28616)\nVariants: "Hard time"\nStarted: 2015.11.17, Ended: 2015.11.27\nParticipants: kanzenryu (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld Y1 B3 G3\n\n2) kanzenryu: Homeworld B1 G2 Y3\n\n3) endo: Build G1 Endo\n\tkanzenryu: Can I stay out of trouble for one extra move this time? ;-)\n\n4) kanzenryu: Build Y1 Kanzenryu\n\tendo: You have to be really careful if you don't pick a green ship, especially when going second...\n\n5) endo: Discover G1 Endo B2 Adjoint\n\n6) kanzenryu: Trade Y3 G3 Kanzenryu\n\n7) endo: Build G1 Adjoint\n\n8) kanzenryu: Build Y1 Kanzenryu\n\n9) endo: Build G1 Endo\n\n10) kanzenryu: Discover Y1 Kanzenryu G3 Out\n\n11) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G2 Adjoint\nBuild G3 Endo\n\n12) kanzenryu: Build Y2 Out\n\n13) endo: Discover G1 Endo B2 Monoidal\n\n14) kanzenryu: Build Y2 Out\n\n15) endo: Trade G2 Y2 Adjoint\n\n16) kanzenryu: Discover Y2 Out B2 Peep\n\n17) endo: Sacrifice G3 Endo\nBuild G2 Monoidal\nBuild G3 Endo\nBuild Y3 Adjoint\n\tkanzenryu: Are these stars functional programming or math terms? Or both?\n\n18) kanzenryu: Move Y1 Out Peep\n\tendo: I pick a math theme for each game. In this case it's functors from category theory, which is strongly related to functional programming, yes.\n\n19) endo: Discover Y2 Adjoint B3 Enriched\n\n20) kanzenryu: Build Y3 Out\n\n21) endo: Sacrifice G2 Endo\nBuild G2 Endo\nBuild Y3 Enriched\n\n22) kanzenryu: Trade Y2 R2 Peep\n\n23) endo: Trade Y3 R3 Enriched\n\n24) kanzenryu: Build Y2 Kanzenryu\n\n25) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y3 Adjoint\nBuild R1 Enriched\n\n26) kanzenryu: Move Y3 Out Peep\n\n27) endo: Move G1 Adjoint Enriched\n\n28) kanzenryu: Trade Y1 R1 Kanzenryu\n\n29) endo: Sacrifice Y3 Adjoint\nMove G1 Adjoint Enriched\nMove G1 Enriched Kanzenryu\nMove G1 Enriched Kanzenryu\nCatastrophe Kanzenryu G\n\n30) kanzenryu: Move Y3 Peep Kanzenryu\n\n31) endo: Move Y3 Adjoint Kanzenryu\n\n\tkanzenryu: I just want to say this is not the first time I have been defeated by functional programming ;-)\n\nHomeworlds Online (SDG# 28563)\nVariants: "Hard time"\nStarted: 2015.11.18, Ended: 2015.12.6\nParticipants: SilentTitan (S), Danielaurence (N)\nWinner: Danielaurence\n\n1) Danielaurence: Homeworld B2 Y1 G3\n\n2) SilentTitan: Homeworld B3 R1 G3\n\n3) Danielaurence: Build G1 Danielaurence\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Danielaurence: Discover G1 Danielaurence B3 Boris\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) Danielaurence: Build G1 Boris\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) Danielaurence: Build G1 Danielaurence\n\n10) SilentTitan: Discover Y1 Silenttitan G2 Sol\n\n11) Danielaurence: Build G2 Boris\n\n12) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Silenttitan\nBuild Y2 Silenttitan\nBuild Y2 Sol\n\n13) Danielaurence: T G3 Y3 Danielaurence\n\n14) SilentTitan: Build Y3 Sol\n\n15) Danielaurence: T G1 R1 Boris\n\n16) SilentTitan: Discover Y2 Silenttitan B2 Soul\n\n17) Danielaurence: Move Y3 Danielaurence Boris\n\n\tDanielaurence: Thanks for playing\n\nHomeworlds Online (SDG# 28622)\nVariants: "Unrated"\nStarted: 2015.11.18, Ended: 2015.11.24\nParticipants: wil (S), Danielaurence (N)\nWinner: wil\n\n1) Danielaurence: Homeworld B3 G2 Y3\n\n2) wil: H R3 Y1 G3 *\n\tDanielaurence: Again! Again! Hopefully I have learned from some of my mistakes last time.\n\twil: Hopefully we'll find new mistakes for you to try!\n\n3) Danielaurence: Build Y1 Danielaurence\n\n4) wil: B G1 Wil\n\n5) Danielaurence: Build Y1 Danielaurence\n\n6) wil: D G1 Wil B2 B2\n\n7) Danielaurence: Discover Y1 Danielaurence G1 Jelloland\n\n8) wil: B G1 Wil\n\n9) Danielaurence: Build Y2 Jelloland\n\n10) wil: B G2 B2\n\n11) Danielaurence: Trade Y3 G3 Danielaurence\n\n12) wil: T G2 Y2 B2\n\tDanielaurence: I see your green and raise you a yellow!\n\n13) Danielaurence: Move Y1 Jelloland Danielaurence\n\twil: I'd jelly of yo yelly\n\n14) wil: B G2 B2\n\n15) Danielaurence: Trade Y1 B1 Danielaurence\n\n16) wil: D G2 B2 Y1 Y1\n\n17) Danielaurence: Build B1 Danielaurence\n\n18) wil: S G3 Wil\nB G2 Y1\nB G3 B2\nB G3 Wil\n\n19) Danielaurence: Sacrifice G3 Danielaurence\nBuild Y2 Danielaurence\nBuild Y3 Jelloland\nBuild Y3 Danielaurence\n\n20) wil: S G3 Wil\nB G3 Wil\nB G3 B2\nB Y3 B2\n\n21) Danielaurence: Trade Y2 R2 Danielaurence\n\n22) wil: T G3 R3 B2\n\n23) Danielaurence: Move B1 Danielaurence Jelloland\n\n24) wil: D Y2 B2 B1 B1\n\n25) Danielaurence: Trade Y3 G3 Jelloland\n\n26) wil: T G3 Y3 B2\n\twil: Note... My opening...starting without a blue...is completely unorthodox.. But I have been successful with it...currently mixed reviews... And most popular opening is the banker, currently considered strongest and as a starship commander and galactic overlord, decorum does not allow me to use it against you...\n\n27) Danielaurence: Discover G3 Jelloland B2 Topos\n\n28) wil: S G3 Wil\nB G3 Wil\nB G3 B2\nB Y2 B1\n\tDanielaurence: I love using unorthodox strategies in games like this. I didn't know that the banker is considered stronger. I really like learning how to use less popular strategies and openings in these games. Thank you for your grace in avoiding the banker, oh great galactic overlord. Please allow my humble construction/conversion fortress to exist in peace!\n\n29) Danielaurence: Sacrifice G3 Topos\nBuild B2 Jelloland\nBuild B2 Jelloland\nBuild B3 Danielaurence\n\n30) wil: M Y3 B2 Jelloland\n\twil: We will let you live in peace....and expect similar diplomacy on your side...you do have an excess of resources which we will gladly facilitate taking off your hands at some point in time, and should your ancestral lands ever become desrbalized we will assist by eliminating the star before it nebulizes and puts my galaxy at risk\n\n31) Danielaurence: Sacrifice Y3 Danielaurence\nMove B2 Jelloland B2\nMove B2 Jelloland B2\nMove B1 Jelloland B2\nCatastrophe B2 Blue\n\n32) wil: S G3 Wil\nB G1 Y1\nB G3 Wil\nB G3 Wil\n\n33) Danielaurence: Build Y3 Danielaurence\n\n34) wil: T Y2 R2 B1\n\n35) Danielaurence: Trade B3 G3 Danielaurence\n\n36) wil: D G3 Wil B2 B2\n\n37) Danielaurence: Trade G3 R3 Danielaurence\n\n38) wil: B G3 B2\n\n39) Danielaurence: Move R3 Danielaurence Y1\n\n40) wil: T G3 Y3 B2\n\n41) Danielaurence: Attack G2 Y1\n\n42) wil: S G3 Wil\nB G3 Wil\nB G3 Y1\nB Y2 B1\nC Y1 G\n\n43) Danielaurence: Trade Y1 G1 Danielaurence\n\n44) wil: B G2 B2\n\n45) Danielaurence: Move B1 Danielaurence Jelloland\n\n46) wil: M G3 B2 B1\n\n47) Danielaurence: Move G1 Danielaurence Y1\n\twil: You giving me that fine ship?\n\tDanielaurence: Nope :)\n\n48) wil: S G3 Wil\nB G2 B2\nB G3 B1\nB G3 Wil\n\n49) Danielaurence: Build Y1 Jelloland\n\n50) wil: T G2 R2 B2\n\n51) Danielaurence: Build G2 Y1\n\n52) wil: S G3 Wil\nB G3 Wil\nB R1 B1\nB R1 B2\n\n53) Danielaurence: Discover G1 Y1 B2 Ice Town\n\n54) wil: M G1 Wil B2\n\n55) Danielaurence: Build B1 Jelloland\n\n56) wil: S R2 B2\nA Y2 Jelloland\nA B1 Jelloland\n\n57) Danielaurence: Move B1 Jelloland Ice\n\n58) wil: S R1 B1\nA Y1 Jelloland\n\n59) Danielaurence: Move R3 Y1 Ice\n\tDanielaurence: I knew you wouldn't fall for that, but it was worth a shot!\n\n60) wil: S Y3 B2\nM Y1 Jelloland Danielaurence\nM Y2 Jelloland Danielaurence\nM Y2 B1 Danielaurence\nC Danielaurence Y\n\n61) Danielaurence: Build R1 Ice\n\n62) wil: M Y3 Jelloland Danielaurence\n\twil: It was worth a shot!\n\twil: It was worth a shot!\n\twil: It was worth a shot!\n\n63) Danielaurence: Pass\n\n64) wil: S R1 B2\nA R2 Danielaurence\n\n\twil: Anytime...\n\tDanielaurence: Any tips regarding strategy? I'm still quite bad at this but I'd love any pointers from my new galactic dictator. You know... just in case I find a chance to spark a rebellion and overthrow your empire.\n\twil: Try to keep up in color/economy...not to allow a monopoly...begin and stay with the ends in mind... Loss lot, learn a lot...seeing various attacks come at you..\n\tDanielaurence: Thanks!\n\nHomeworlds Online (SDG# 28638)\nVariants: "Hard time"\nStarted: 2015.11.18, Ended: 2015.11.27\nParticipants: Danielaurence (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) Danielaurence: Homeworld B3 Y2 G3\n\tAusmuh: Have fun!\n\tDanielaurence: Thanks, you too!\n\n3) Ausmuh: Build B1 Ausmuh\n\n4) Danielaurence: Build G1 Danielaurence\n\n5) Ausmuh: Build B1 Ausmuh\n\n6) Danielaurence: Trade G1 B1 Danielaurence\n\n7) Ausmuh: Discover B1 Ausmuh G2 Mw2\n\n8) Danielaurence: Build B2 Danielaurence\n\n9) Ausmuh: Build B2 Mw2\n\n10) Danielaurence: Discover B2 Danielaurence G1 Foris\n\n11) Ausmuh: Sacrifice B2 Mw2\nTrade B1 Y1 Mw2\nTrade B1 R1 Ausmuh\n\n12) Danielaurence: Build B1 Foris\n\n13) Ausmuh: Build Y1 Mw2\n\n14) Danielaurence: Trade B2 Y2 Foris\n\n15) Ausmuh: Build R1 Ausmuh\n\n16) Danielaurence: Trade Y2 R2 Foris\n\n17) Ausmuh: Build Y2 Mw2\n\n18) Danielaurence: Build G1 Danielaurence\n\n19) Ausmuh: Move Y2 Mw2 Ausmuh\n\n20) Danielaurence: Move G1 Danielaurence Foris\n\n21) Ausmuh: Trade Y2 B2 Ausmuh\n\n22) Danielaurence: Build G1 Danielaurence\n\n23) Ausmuh: Build Y2 Mw2\n\n24) Danielaurence: Sacrifice G3 Danielaurence\nBuild G2 Foris\nBuild G2 Danielaurence\nBuild G3 Danielaurence\n\n25) Ausmuh: Discover Y2 Mw2 R1 Cc1\n\n26) Danielaurence: Trade G2 Y2 Foris\n\n27) Ausmuh: Trade B2 G2 Ausmuh\n\n28) Danielaurence: Sacrifice G3 Danielaurence\nBuild G3 Foris\nBuild Y3 Foris\nBuild G3 Danielaurence\n\n29) Ausmuh: Sacrifice Y2 Cc1\nMove G2 Ausmuh Mw2\nMove G2 Mw2 Foris\nCatastrophe Foris Green\n\n30) Danielaurence: Trade G2 Y2 Danielaurence\n\n31) Ausmuh: Build R1 Ausmuh\n\tDanielaurence: Nice play!\n\n32) Danielaurence: B Y2 Danielaurence\n\tAusmuh: Thanks, I don't have many. :)\n\n33) Ausmuh: Discover Y1 Mw2 G1 Mw1\n\n34) Danielaurence: Discover Y2 Danielaurence G1 Naboo\n\n35) Ausmuh: Build Y3 Mw1\n\n36) Danielaurence: S G3 Danielaurence\nB G2 Danielaurence\nB Y3 Danielaurence\nB Y3 Naboo\n\n37) Ausmuh: Move Y1 Mw1 Danielaurence\nCatastrophe Danielaurence Y\n\n38) Danielaurence: M Y3 Naboo Danielaurence\n\tDanielaurence: Ouch. I missed that!\n\n39) Ausmuh: Move Y3 Mw1 Danielaurence\n\n40) Danielaurence: Build Y1 Danielaurence\n\n41) Ausmuh: Trade Y3 R3 Danielaurence\n\tDanielaurence: Well done. I didn't see that gambit coming at all and it worked beautifully! I have learned.\n\n42) Danielaurence: Build Y2 Danielaurence\n\tAusmuh: Catastrophes are sneaky indeed. It's usually advised to get into red when your opponent does. A 2 pip red has the ability to ward off most direct attacks on your Homeworld, as you would need three 3 pip ships to survive the sacrifice attack. Good game and thanks for playing\n\n43) Ausmuh: Attack Y3S Danielaurence\n\tDanielaurence: I see that now. And I forgot that you can always sacrifice an r1 to attack with a non-red ship in another system. Sneaky indeed! \n\n44) Danielaurence: Sacrifice G2 Danielaurence\nBuild B1 Danielaurence\nBuild B1 Danielaurence\n\n45) Ausmuh: Trade R3 B3 Danielaurence\nCatastrophe Danielaurence Blue\n\tDanielaurence: Let me help you out there ;)\n\n\nHomeworlds Online (SDG# 28614)\nVariants: "Hard time"\nStarted: 2015.11.19, Ended: 2015.12.2\nParticipants: kanzenryu (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B2 R1 G3\n\n2) kanzenryu: Homeworld Y1 B3 G3\n\n3) Simon: Build G1 Simon\n\tkanzenryu: This game is an amazing universe of every idea turns out to be wrong ;-)\n\tSimon: It's a battle of several unevenly distributed resources, hard to estimate the value of them all.\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) Simon: Trade G1 Y1 Simon\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) Simon: Build Y2 Simon\n\n8) kanzenryu: Build G1 Kanzenryu\n\n9) Simon: Discover Y1 Simon B3 B3\n\n10) kanzenryu: Discover G1 Kanzenryu B2 Foo\n\n11) Simon: Build Y2 Simon\n\n12) kanzenryu: Build G1 Foo\n\n13) Simon: Discover Y2 Simon G3 G3\n\n14) kanzenryu: Move Y1 Kanzenryu Foo\n\n15) Simon: Sacrifice G3 Simon\nBuild Y2 B3\nBuild Y3 Simon\nBuild Y3 B3\n\n16) kanzenryu: Move Y1 Foo B3\nCatastrophe B3 Y\n\n17) Simon: Trade Y3 G3 Simon\n\n18) kanzenryu: Trade G1 Y1 Foo\n\n19) Simon: Build G1 Simon\n\n20) kanzenryu: Move Y1 Foo G3\n\n21) Simon: Trade G1 R1 Simon\n\n22) kanzenryu: Build G1 Kanzenryu\n\n23) Simon: Move R1 Simon G3\n\n24) kanzenryu: Discover Y1 G3 G1 Ouch\n\n25) Simon: Build G2 Simon\n\n26) kanzenryu: Build G2 Foo\n\n27) Simon: Sacrifice G3 Simon\nBuild G2 Simon\nBuild G3 Simon\nBuild Y1 G3\n\n28) kanzenryu: Trade G2 R2 Foo\n\n29) Simon: Discover Y2 G3 R2 R2\n\n30) kanzenryu: Sacrifice G3 Kanzenryu\nBuild Y2 Ouch\nBuild G2 Foo\nBuild G3 Kanzenryu\n\n31) Simon: Sacrifice G3 Simon\nBuild Y3 Simon\nBuild Y3 G3\nBuild Y3 R2\n\n32) kanzenryu: Trade G1 R1 Kanzenryu\n\n33) Simon: Move Y3 G3 Foo\n\n34) kanzenryu: Sacrifice Y2 Ouch\nMove R2 Foo G3\nMove G2 Foo G3\n\n35) Simon: Sacrifice R1 G3\nAttack G1 Foo\n\n36) kanzenryu: Attack Y1 G3\n\n37) Simon: Sacrifice G2 Simon\nBuild G1 Simon\nBuild G2 Foo\n\n38) kanzenryu: Build Y2 G3\n\n39) Simon: Sacrifice Y2 R2\nMove G1 Simon G3\nMove G1 Foo G3\nCatastrophe G3 G\n\n40) kanzenryu: Build G1 Kanzenryu\n\n41) Simon: Build G1 Foo\n\n42) kanzenryu: Discover G1 Kanzenryu B2 Somewhere\n\n43) Simon: Build G2 Simon\n\n44) kanzenryu: Build G3 Somewhere\n\n45) Simon: Build G3 Foo\n\n46) kanzenryu: Trade G3 R3 Kanzenryu\n\n47) Simon: Trade G2 R2 Foo\n\n48) kanzenryu: Trade G1 Y1 Somewhere\n\n49) Simon: Sacrifice G2 Simon\nBuild R1 Foo\nBuild Y2 Foo\n\n50) kanzenryu: Build Y2 Somewhere\n\n\tSimon: The last build threatens mate. >_> If you would like to undo, feel free to do so. Or we can always play a fresh one. :)\n\tkanzenryu: I can see that it's all bad news for this game...\n\nHomeworlds Online (SDG# 28637)\nVariants: "Hard time"\nStarted: 2015.11.19, Ended: 2015.12.14\nParticipants: kanzenryu (S), Danielaurence (N)\nWinner: kanzenryu\n\n1) Danielaurence: Homeworld B2 Y1 G3\n\n2) kanzenryu: Homeworld B1 Y3 G3\n\tDanielaurence: Good luck! Have you played this before?\n\tkanzenryu: Hi, I've played about 10 games and lost them all. Fun, though.\n\n3) Danielaurence: Build G1 Danielaurence\n\tDanielaurence: I've lost all my games too so this should be interesting :) good luck!\n\n4) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: The pressure is on now ;-) It does seem like any small mistake early on can be ruthlessly exploited by a good player.\n\n5) Danielaurence: Trade G1 B1 Danielaurence\n\n6) kanzenryu: Trade G1 B1 Kanzenryu\n\tDanielaurence: Definitely. I'm not a very player yet, though, so you have less to fear from your early mistakes.\r\n\n\tDanielaurence: good player*\n\n7) Danielaurence: Discover B1 Danielaurence G3 Boreal\n\n8) kanzenryu: Discover B1 Kanzenryu G2 Out\n\n9) Danielaurence: Build B2 Boreal\n\n10) kanzenryu: Build G1 Kanzenryu\n\n11) Danielaurence: Trade B1 Y1 Boreal\n\n12) kanzenryu: Build G1 Kanzenryu\n\n13) Danielaurence: Build G1 Danielaurence\n\n14) kanzenryu: Discover G1 Kanzenryu Y2 Other\n\n15) Danielaurence: Build B1 Boreal\n\n16) kanzenryu: Build G2 Other\n\n17) Danielaurence: S G3 Danielaurence\nBuild G2 Danielaurence\nBuild G3 Danielaurence\nB B2 Boreal\n\n18) kanzenryu: Build B3 Out\n\tkanzenryu: Do you want to undo that? I can catastrophe in green in your home system.\n\tDanielaurence: No, that's okay. I don't really believe in undoing moves if I missed something, so iif I made a mistake, you should definitely take advantage of it!\n\tDanielaurence: I"m not totally sure you can get to my home system right now though. Is there some sneaky way you can get there that I'm missing?\n\tkanzenryu: Ha ha, sorry, I'm hallucinating a y2 from some other game.\n\n19) Danielaurence: T B2 R2 Boreal\n\n20) kanzenryu: Trade B1 R1 Out\n\n21) Danielaurence: Sacrifice G3 Danielaurence\nBuild G3 Danielaurence\nBuild Y1 Boreal\nBuild Y2 Boreal\n\n22) kanzenryu: Sacrifice G3 Kanzenryu\nBuild R1 Out\nBuild B1 Out\nBuild G3 Kanzenryu\n\n23) Danielaurence: Discover Y2 Boreal B2 Gate\n\n24) kanzenryu: Trade B3 Y3 Out\n\n25) Danielaurence: D G2 Danielaurence Y3 Sol\n\n26) kanzenryu: Build B3 Out\n\n27) Danielaurence: B Y2 Boreal\n\n28) kanzenryu: Move B3 Out Boreal\n\n29) Danielaurence: S Y2 Boreal\nM G1 Danielaurence Sol\nM G2 Sol Gate\n\n30) kanzenryu: Sacrifice R1 Out\nAttack R2 Boreal\n\n31) Danielaurence: Move G1 Sol Gate\n\n32) kanzenryu: Trade G1 R1 Kanzenryu\n\n33) Danielaurence: Move B2 Boreal Danielaurence\n\n34) kanzenryu: Build Y2 Out\n\n35) Danielaurence: Trade B2 R2 Danielaurence\n\n36) kanzenryu: Attack B1 Boreal\n\n37) Danielaurence: Build Y3 Gate\n\n38) kanzenryu: Build B2 Boreal\n\n39) Danielaurence: Move Y1 Boreal Gate\n\n40) kanzenryu: Sacrifice Y3 Out\nMove B1 Boreal Gate\nMove B2 Boreal Gate\nMove B3 Boreal Gate\nCatastrophe Gate B\n\n41) Danielaurence: Discover Y1 Boreal G2 Gate\n\n42) kanzenryu: Build G1 Kanzenryu\n\n43) Danielaurence: Build G1 Danielaurence\n\n44) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild B1 Out\nBuild B2 Out\n\n45) Danielaurence: B Y1 Gate\n\n46) kanzenryu: Move B1 Out Boreal\n\n47) Danielaurence: M Y1 Gate Kanzenryu\n\n48) kanzenryu: Attack Y1 Kanzenryu\n\n49) Danielaurence: Build Y2 Gate\n\n50) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild Y3 Out\nBuild R1 Out\n\n51) Danielaurence: Discover Y2 Gate B3 Warp\n\n52) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild B2 Boreal\nBuild B3 Boreal\n\n53) Danielaurence: Build Y3 Gate\n\tDanielaurence: Yikes,.... that's a lot of ships pointed my way!\n\n54) kanzenryu: Sacrifice Y3 Out\nMove B1 Boreal Danielaurence\nMove B2 Boreal Danielaurence\nMove B3 Boreal Danielaurence\nCatastrophe Danielaurence B\n\n55) Danielaurence: Sacrifice G3 Danielaurence\nBuild G3 Danielaurence\nBuild Y3 Warp\nPass\n\n56) kanzenryu: Discover Y1 Kanzenryu B2 Moon\n\n57) Danielaurence: Move Y3 Warp Out\n\n58) kanzenryu: Build R2 Out\n\n59) Danielaurence: Build R3 Danielaurence\n\tkanzenryu: This game really is interesting. I clearly overcommitted myself with that first attack. Now I'm struggling. Awesome stuff!\n\tDanielaurence: It is very interesting! I had a game against another opponent recently where I blew up half of their homeworld, but I didn't have the resources to finish the job, so they creamed me in return. I don't know if I can manage to hit you back as hard here, but it is definitely dangerous to attack without the ability to finish the job!\n\n60) kanzenryu: Sacrifice Y2 Out\nMove R1 Out Danielaurence\nMove R1 Out Danielaurence\nCatastrophe Danielaurence R\n\n61) Danielaurence: Trade Y2 B2 Warp\n\n62) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild Y2 Moon\nBuild R1 Boreal\n\n63) Danielaurence: Sacrifice Y1 Gate\nMove B2 Warp Danielaurence\n\n64) kanzenryu: Sacrifice Y2 Moon\nMove G1 Other Danielaurence\nMove G2 Other Danielaurence\nCatastrophe Danielaurence G\n\n65) Danielaurence: T B2 G2 Danielaurence\n\tkanzenryu: Hmmm, catastrophe didn't seem to happen. Trying again...\n\n66) kanzenryu: Sacrifice Y1 Moon\nMove R2 Boreal Danielaurence\n\n67) Danielaurence: M Y3 Gate Danielaurence\n\tDanielaurence: This game is intense :) \n\tkanzenryu: I confess to setting up my plastic pyramids a couple of moves ago and looking for about 30 minutes to find a way to proceed.\n\n68) kanzenryu: Attack G2 Danielaurence\n\tDanielaurence: Haha! Perhaps I should try that!\n\n69) Danielaurence: Move Y3 Out Kanzenryu\n\tDanielaurence: I think you have the upper hand now though\n\n70) kanzenryu: Attack Y3 Kanzenryu\n\tkanzenryu: All glory to the plastic pyramids\n\n71) Danielaurence: Pass\n\n72) kanzenryu: Sacrifice B2 Out\nTrade R2 Y2 Danielaurence\nTrade G2 Y2 Danielaurence\nCatastrophe Danielaurence Y\n\n\tDanielaurence: You got me. Good game!\n\tDanielaurence: I have a new account on here that I am moving to (I got tired of typing in Danielaurence all the time in this game), so I will challenge you again from my new one (Felix) if you would like to rematch!\n\tDanielaurence: I have a new account on here that I am moving to (I got tired of typing in Danielaurence all the time in this game), so I will challenge you again from my new one (Felix) if you would like to rematch!\n\tkanzenryu: Felix will be much shorter to type, thanks for the game, my first ever win.\n\tDanielaurence: Yes, it's an old alias of mine. And congrats! You definitely earned it!\n\nHomeworlds Online (SDG# 28671)\nVariants: "Hard time"\nStarted: 2015.11.22, Ended: 2015.12.12\nParticipants: Uglyfoot (S), kanzenryu (N)\nWinner: Uglyfoot\n\n1) kanzenryu: Homeworld Y1 B3 G3\n\n2) Uglyfoot: Homeworld B2 Y3 G3\n\tkanzenryu: I'm pretty bad at this game, too!\n\n3) kanzenryu: Build G1 Kanzenryu\n\tUglyfoot: Something always eludes me but maybe I'll get it this time...\n\n4) Uglyfoot: Build G1 Uglyfoot\n\n5) kanzenryu: Trade G1 Y1 Kanzenryu\n\n6) Uglyfoot: Discover G1 Uglyfoot B1 Bluette\n\n7) kanzenryu: Build G1 Kanzenryu\n\n8) Uglyfoot: Build G1 Uglyfoot\n\n9) kanzenryu: Discover G1 Kanzenryu Y2 Out\n\n10) Uglyfoot: Build G2 Bluette\n\n11) kanzenryu: Build G2 Out\n\n12) Uglyfoot: Trade G2 Y2 Bluette\n\n13) kanzenryu: Discover G2 Out Y1 Peep\n\n14) Uglyfoot: Trade G1 R1 Uglyfoot\n\n15) kanzenryu: Trade Y1 R1 Kanzenryu\n\n16) Uglyfoot: Build Y1 Bluette\n\n17) kanzenryu: Build R1 Kanzenryu\n\n18) Uglyfoot: Build Y2 Bluette\n\n19) kanzenryu: Build R2 Kanzenryu\n\n20) Uglyfoot: Discover Y2 Bluette R2 Kaboom\n\n21) kanzenryu: Move R1 Kanzenryu Out\n\n22) Uglyfoot: Build Y3 Bluette\n\n23) kanzenryu: Build G1 Peep\n\n24) Uglyfoot: Trade Y3 R3 Bluette\n\n25) kanzenryu: Discover G1 Out B1 Peep2\n\n26) Uglyfoot: Build G2 Bluette\n\n27) kanzenryu: Build G2 Peep2\n\n28) Uglyfoot: Move R3 Bluette Uglyfoot\n\n29) kanzenryu: Build G3 Kanzenryu\n\n30) Uglyfoot: Build Y3 Bluette\n\n31) kanzenryu: Trade G3 Y3 Kanzenryu\n\n32) Uglyfoot: Sacrifice Y3 Bluette\nMove Y1 Bluette Kaboom\nMove Y1 Kaboom Kanzenryu\nMove Y2 Kaboom Kanzenryu\nCatastrophe Kanzenryu Y\n\n33) kanzenryu: Build G3 Kanzenryu\n\n34) Uglyfoot: Move R1 Uglyfoot Bluette\n\n35) kanzenryu: Trade G1 Y1 Peep2\n\n36) Uglyfoot: Sacrifice Y2 Bluette\nMove G1 Bluette Kanzenryu\nMove G2 Bluette Kanzenryu\nCatastrophe Kanzenryu G\n\n\tkanzenryu: Two have one catastrophe in your home system may be considered a misfortune, but two looks like carelessness... ;-)\n\nHomeworlds Online (SDG# 28675)\nStarted: 2015.11.23, Ended: 2015.12.4\nParticipants: Danielaurence (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B2 Y3 G3\n\n2) Danielaurence: Homeworld G3 Y1 B3\n\n3) ts52: Build G1 Ts52\n\n4) Danielaurence: Build B1 Danielaurence\n\n5) ts52: Discover G1 Ts52 B1 Gonzo\n\n6) Danielaurence: Discover B1 Danielaurence G2 Gate\n\n7) ts52: Build G1 Ts52\n\n8) Danielaurence: B B1 Gate\n\n9) ts52: Build G1 Gonzo\n\n10) Danielaurence: Build B2 Danielaurence\n\n11) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G2 Ts52\nBuild G3 Ts52\n\n12) Danielaurence: Build B2 Gate\n\n13) ts52: Discover G2 Ts52 Y1 Zoe\n\n14) Danielaurence: Trade B3 G3 Danielaurence\n\n15) ts52: Trade G2 Y2 Gonzo\n\n16) Danielaurence: Trade B2 Y2 Gate\n\n17) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y1 Gonzo\n\n18) Danielaurence: Build B2 Danielaurence\n\n19) ts52: Trade G3 B3 Ts52\n\n20) Danielaurence:\nB B3 Gate\n\n21) ts52: Build G3 Ts52\n\n22) Danielaurence: T B3 R3 Gate\n\n23) ts52: Trade G3 R3 Ts52\n\n24) Danielaurence: Move R3 Gate Gonzo\n\n25) ts52: Move B3 Ts52 Zoe\n\n26) Danielaurence: Attack G2 Gonzo\n\n27) ts52: Build G3 Ts52\n\n28) Danielaurence: Attack Y2 Gonzo\n\n29) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gonzo\nBuild Y3 Gonzo\nCatastrophe Gonzo Yellow\n\n30) Danielaurence: Build B3 Danielaurence\n\n31) ts52: Sacrifice G3 Ts52\nBuild G3 Zoe\nBuild B3 Zoe\nBuild R1 Ts52\n\n32) Danielaurence: Sacrifice B2 Danielaurence\nTrade B3 Y3 Danielaurence\nTrade G2 Y2 Gonzo\n\n33) ts52: Trade B3 R3 Zoe\n\n34) Danielaurence: Sacrifice G3 Danielaurence\nBuild Y1 Gate\nBuild Y2 Gate\nBuild Y3 Gonzo\n\n35) ts52: Move R3 Zoe Gate\n\n36) Danielaurence: Sacrifice Y2 Gate\nMove B1 Gate Gonzo\nMove B1 Gate Gonzo\n\n37) ts52: Attack Y2 Gate\n\n38) Danielaurence: Sacrifice Y1 Gate\nDiscover B2 Danielaurence G2 Safe\n\n39) ts52: Sacrifice G3 Zoe\nBuild G3 Ts52\nBuild G3 Zoe\nBuild Y1 Gate\n\tDanielaurence: Nice move!\n\n40) Danielaurence: Move Y2 Gonzo Safe\n\n41) ts52: Move Y1 Gate Danielaurence\n\n42) Danielaurence: Sacrifice B1 Gonzo\nTrade Y3 B3 Danielaurence\n\n43) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Danielaurence\nBuild Y3 Gate\n\n44) Danielaurence: Attack G1 Gonzo\n\n45) ts52: Move Y2 Gate Danielaurence\nCatastrophe Danielaurence Yellow\n\tDanielaurence: Nice one. I'm learning, but that hurt!\r\n\n\n46) Danielaurence: Attack G1 Gonzo\n\n47) ts52: Sacrifice Y3 Gate\nMove G2 Zoe Danielaurence\nMove G3 Zoe Danielaurence\nMove G1 Ts52 Zoe\n\n48) Danielaurence: Sacrifice R3 Gonzo\nAttack G3 Danielaurence\nAttack G2 Danielaurence\nPass\n\n49) ts52: Move G1 Zoe Danielaurence\nCatastrophe Danielaurence Green\n\n\tts52: Thanks for the game!\n\tDanielaurence: Likewise. I think I have learned!\n\tts52: Always happy to play another. :)\n\nHomeworlds Online (SDG# 28624)\nVariants: "Hard time"\nStarted: 2015.11.23, Ended: 2015.11.28\nParticipants: endo (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\n2) endo: Homeworld B1 R2 G3\n\tSimon: More homeworlds! Have fun!\n\n3) Simon: Build G1 Simon\n\tendo: Glhf!\n\n4) endo: Build G1 Endo\n\n5) Simon: Trade G1 Y1 Simon\n\n6) endo: Trade G1 Y1 Endo\n\n7) Simon: Build G1 Simon\n\n8) endo: Build G1 Endo\n\n9) Simon: Trade G1 B1 Simon\n\n10) endo: Trade G1 B1 Endo\n\n11) Simon: Build B2 Simon\n\n12) endo: Build B2 Endo\n\n13) Simon: Discover B2 Simon G2 G2\n\n14) endo: Discover B1 Endo G3 Homotopy\n\n15) Simon: Build G1 Simon\n\n16) endo: Build Y1 Endo\n\n17) Simon: Build Y2 Simon\n\n18) endo: Move Y1 Endo Homotopy\n\n19) Simon: Move Y1 Simon G2\n\n20) endo: Build Y2 Homotopy\n\n21) Simon: Build Y2 Simon\n\n22) endo: Trade Y2 R2 Homotopy\n\n23) Simon: Trade Y2 R2 Simon\n\n24) endo: Build Y2 Homotopy\n\n25) Simon: Move R2 Simon G2\n\n26) endo: Discover Y2 Homotopy G2 Fibration\n\n27) Simon: Discover B1 Simon G2 G2a\n\n28) endo: Build R1 Homotopy\n\n29) Simon: Build B2 G2a\n\n30) endo: Move R1 Homotopy Fibration\n\n31) Simon: Build B3 G2\n\n32) endo: Build B3 Homotopy\n\n33) Simon: Sacrifice Y2 Simon\nMove B1 G2a Homotopy\nMove B2 G2a Homotopy\nCatastrophe Homotopy B\n\n34) endo: Sacrifice G3 Endo\nBuild Y2 Homotopy\nBuild Y2 Fibration\nBuild Y3 Endo\n\n35) Simon: Move B3 G2 Homotopy\n\n36) endo: Build Y3 Fibration\n\n37) Simon: Sacrifice R2 G2\nAttack R2 Homotopy\nAttack Y2 Homotopy\n\n38) endo: Build Y3 Homotopy\n\n39) Simon: Attack Y3 Homotopy\n\n40) endo: Move Y2 Fibration Homotopy\nCatastrophe Homotopy Y\n\n41) Simon: Build B1 G2\n\n42) endo: Build R1 Fibration\n\n43) Simon: Build R2 Homotopy\n\n44) endo: Discover R1 Fibration G3 Path\n\n45) Simon: Trade R2 Y2 Homotopy\n\n46) endo: Build R2 Fibration\n\n47) Simon: Build R3 Homotopy\n\n48) endo: Build R3 Path\n\n49) Simon: Move R3 Homotopy G2\n\n50) endo: Sacrifice B2 Endo\nTrade R2 B2 Fibration\nTrade R3 B3 Path\n\n51) Simon: Build R2 Homotopy\n\n52) endo: Build R3 Path\n\n53) Simon: Build R3 G2\n\n54) endo: Trade R3 Y3 Path\n\n55) Simon: Trade B2 Y2 G2\n\n56) endo: Trade Y1 G1 Endo\n\n57) Simon: Discover R3 G2 R3 R3\n\n58) endo: Sacrifice Y3 Path\nMove R1 Path Fibration\nMove R1 Fibration R3\nMove R1 Fibration R3\nCatastrophe R3 R\n\n59) Simon: Build R1 Homotopy\n\n60) endo: Trade Y3 R3 Fibration\n\n61) Simon: Move R1 Homotopy Endo\n\n62) endo: Build B1 Path\n\n63) Simon: Build B2 Homotopy\n\n64) endo: Build B2 Fibration\n\n65) Simon: Sacrifice Y2 G2\nMove R2 Homotopy Endo\nMove B2 Homotopy Endo\n\n66) endo: Sacrifice Y2 Fibration\nMove B1 Path G2\nMove B3 Path G2\n\n67) Simon: Attack B3 G2\n\n\tendo: Good game! I let you have all the medium and large red ships, not realizing how dangerous that could become... That said, I was in an uncomfortable position ever since my move 15, when I definitely had to build immediately to avoid the catastrophe, but missed the whole idea. Well played.\n\tSimon: gg! I didn't feel much ahead until discover r3 r3. But yeah, the game has developed smoothly even before.\n\nHomeworlds Online (SDG# 28620)\nVariants: "Hard time"\nStarted: 2015.11.24, Ended: 2015.12.10\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld B3 R1 G3\n\n2) wil: H Y3 B2 G3\n\n3) Simon: Build G1 Simon\n\n4) wil: B G1 Wil\n\n5) Simon: Trade G1 R1 Simon\n\n6) wil: T G1 R1 Wil\n\n7) Simon: Build R2 Simon\n\n8) wil: B R2 Wil\n\n9) Simon: Trade R2 Y2 Simon\n\twil: You must be west coast or Europe\n\tSimon: Yeah, Germany, with the weird sleeping habits. :-) Awake today since 3 a.m.\n\n10) wil: D R2 Wil Y1 Y1\n\n11) Simon: Discover R1 Simon B2 B2\n\n12) wil: M R2 Y1 B2\n\n13) Simon: Build Y1 Simon\n\n14) wil: A R1 B2\n\n15) Simon: Trade Y2 R2 Simon\n\twil: I couldn't make it till 3am...had to head to sleep...\n\n16) wil: T R2 Y2 B2\n\n17) Simon: Discover R2 Simon G2 G2\n\n18) wil: B R2 Wil\n\n19) Simon: Build Y1 Simon\n\n20) wil: D R1 Wil Y1 Y1\n\n21) Simon: Move Y1 Simon G2\n\n22) wil: D R1 Y1 Y3 Y3\n\n23) Simon: Build G1 Simon\n\n24) wil: S G3 Wil\nB R2 Y3\nB R3 B2\nB R3 Wil\n\n25) Simon: Build R3 G2\n\n26) wil: S Y2 B2\nM R2 Y3 G2\nM R1 Y3 G2\nC G2 R\n\n27) Simon: Build Y1 Simon\n\n28) wil: T R3 G3 Wil\n\n29) Simon: Build Y2 G2\n\n30) wil: T R3 Y3 B2\n\n31) Simon: Build Y2 Simon\n\n32) wil: B G1 Wil\n\n33) Simon: Trade Y1 B1 Simon\n\n34) wil: S G3 Wil\nB R1 B2\nB R2 B2\nB R2 Wil\n\n35) Simon: Discover B1 Simon G2 G2a\n\n36) wil: B R3 Wil\n\n37) Simon: Discover G1 Simon B2 B2a\n\n38) wil: D R2 Wil Y1 Y1\n\n39) Simon: Build G1 Simon\n\n40) wil: M R2 Y1 G2\n\n41) Simon: Sacrifice G3 Simon\nBuild G2 B2a\nBuild G3 B2a\nBuild G3 Simon\n\n42) wil: B R3 Wil\n\n43) Simon: Trade G3 R3 B2a\n\n44) wil: D R3 Wil Y1 Y1\n\n45) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y2 Simon\nBuild Y3 G2\n\n46) wil: B G3 Wil\n\n47) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2a\nBuild B1 G2a\n\tSimon: You have a wicked preference for the reds and aversion for the yellows.\n\n48) wil: M R3 Y1 G2a\n\n49) Simon: Discover Y2 G2 Y1 Y1\n\n50) wil: A B1 G2a\n\twil: I actually prefer fuel reserves\n\n51) Simon: Sacrifice Y1 G2\nMove B1 G2a Y1\n\n52) wil: S G3 Wil\nB Y1 B2\nB G3 Wil\nP\n\n53) Simon: Move Y2 Simon B2a\n\n54) wil: M R3 Wil Y1\n\n55) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild B1 Y1\nBuild B3 Y1\n\n56) wil: A B3 Y1\n\n57) Simon: Sacrifice Y2 Y1\nMove R3 B2a Y1\nMove R3 Y1 G2\n\n58) wil: T R2 Y2 Wil\n\twil: I thank you for the pretty blue ship... It looks so sell kept it is as if it camer right from the bank...so thoughtful of you.\n\n59) Simon: Attack R2 G2\n\n60) wil: S G3 Wil\nB G3 Wil\nB R2 Y1\nB B3 G2a\n\n61) Simon: Sacrifice Y2 Simon\nMove B1 Y1 G2\nMove B1 Y1 G2\n\n62) wil: M R2 Y1 Wil\n\twil: Fortress... So named because if you don't create some pawn stars before they are gone...accessed is severely limited..\n\n63) Simon: Sacrifice G1 B2a\nBuild Y2 G2\n\tSimon: Many things to do still before homeworld access becomes a problem!\n\n64) wil: D Y2 Wil G1 G1\n\n65) Simon: Move Y3 G2 G1\n\n66) wil: S Y2 G1\nM R2 B2 Simon\nM R1 B2 Simon\n\n\tSimon: gg\n\twil: A version of the doomsday machine...built and ready.\n\tSimon: Yeah. I considered sac y3 and cata y, but then you can trade for a y3 with no substantial delay.\n\nHomeworlds Online (SDG# 28688)\nVariants: "Hard time"\nStarted: 2015.11.24, Ended: 2015.12.11\nParticipants: dlwillson (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\tSimon: Hi, enjoy!\n\n2) dlwillson: H B3 R2 G3\n\n3) Simon: Build G1 Simon\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Simon: Trade G1 Y1 Simon\n\tdlwillson: You too! Thanks for challenging me and good luck!\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Simon: Build G1 Simon\n\n8) dlwillson: Build G1 Dlwillson\n\n9) Simon: Trade G1 R1 Simon\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) Simon: Build R2 Simon\n\n12) dlwillson: B R2 Dlwillson\n\n13) Simon: Discover R2 Simon B2 B2\n\n14) dlwillson: T R2 Y2 Dlwillson\n\n15) Simon: Sacrifice G3 Simon\nBuild R2 B2\nBuild R3 B2\nBuild R3 Simon\n\n16) dlwillson: Sacrifice Y2 Dlwillson\nDiscover R1 Dlwillson Y1 Sunny\nMove R1 Sunny B2\nCatastrophe B2 R\n\n17) Simon: Trade R3 G3 Simon\n\n18) dlwillson: B G1 Dlwillson\n\n19) Simon: Build R1 Simon\n\n20) dlwillson: T G3 R3 Dlwillson\n\n21) Simon: Discover R1 Simon B2 B2\n\n22) dlwillson: B R2 Dlwillson\n\n23) Simon: Sacrifice G3 Simon\nBuild R2 B2\nBuild R3 B2\nBuild R3 Simon\n\n24) dlwillson: D R2 Dlwillson G1 Forest\n\n25) Simon: Trade R2 Y2 B2\n\n26) dlwillson: B R2 Forest\n\n27) Simon: Trade R3 G3 Simon\n\n28) dlwillson: M Y1 Dlwillson Forest\n\n29) Simon: Build R3 Simon\n\n30) dlwillson: D R2 Forest Y2 Sol\n\n31) Simon: Move R3 Simon Sol\n\n32) dlwillson: T R3 G3 Dlwillson\n\tdlwillson: Sorry. Typo.\n\n33) Simon: Trade R1 G1 B2\n\tSimon: No problem with undo, it's no dexterity game :-)\n\n34) dlwillson: D R2 Sol Y1 Rigel\n\n35) Simon: Move R3 Sol Forest\n\tdlwillson: That one wasn't a typo, but I'm down two larges. You'll forgive me. :-)\n\n36) dlwillson: S Y1 Forest\nD R2 Forest Y2 Sol\n\n37) Simon: Build G2 Simon\n\n38) dlwillson: T G1 Y1 Dlwillson\n\n39) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y3 Simon\nBuild Y3 B2\n\n40) dlwillson: S G3 Dlwillson\nB Y3 Dlwillson\nB R1 Rigel\nB R3 Sol\n\n41) Simon: Move Y3 B2 Rigel\n\n42) dlwillson: T Y1 G1 Dlwillson\n\n43) Simon: Sacrifice R1 Simon\nAttack R2 Rigel\n\n44) dlwillson: B G2 Dlwillson\n\n45) Simon: Build R1 Forest\n\n46) dlwillson: D G1 Dlwillson B1 Sky\n\n47) Simon: Build Y1 B2\n\n48) dlwillson: Build G2 Sky\n\n49) Simon: Build G3 B2\n\n50) dlwillson: B G3 Dlwillson\n\n51) Simon: Attack R1 Rigel\n\n52) dlwillson: T G1 B1 Sky\n\n53) Simon: Move R3 B2 Sky\n\n54) dlwillson: S G2 Sky\nB B1 Sky\nB B2 Sky\nC Sky B\n\n55) Simon: Trade G1 B1 B2\n\n56) dlwillson: D G3 Dlwillson B1 Sky\n\n57) Simon: Move Y2 B2 Forest\n\n58) dlwillson: M R2 Sol Sky\n\n59) Simon: Build B1 B2\n\n\tdlwillson: Very well done! :-)\n\tSimon: Thanks for the game! Always happy to play a rematch.\n\nHomeworlds Online (SDG# 28653)\nVariants: "Hard time"\nStarted: 2015.11.24, Ended: 2015.11.30\nParticipants: Danielaurence (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\n2) Danielaurence: Homeworld B3 Y2 G3\n\tSimon: Hi, enjoy the game!\n\tDanielaurence: Hi there. Thanks, you too!\n\n3) Simon: Build G1 Simon\n\n4) Danielaurence: Build G1 Danielaurence\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Danielaurence: D G1 Danielaurence B1 Gate\n\n7) Simon: Build G1 Simon\n\n8) Danielaurence: B G1 Gate\n\n9) Simon: Build G2 Simon\n\n10) Danielaurence: Build G2 Gate\n\n11) Simon: Trade G2 B2 Simon\n\n12) Danielaurence: Build G2 Danielaurence\n\n13) Simon: Discover B2 Simon R2 R2\n\n14) Danielaurence: T G1 Y1 Gate\n\n15) Simon: Move G1 Simon R2\n\n16) Danielaurence: Discover G2 Gate B2 Door\n\n17) Simon: Build B1 R2\n\n18) Danielaurence: B G1 Door\n\n19) Simon: Trade B2 Y2 R2\n\n20) Danielaurence: Trade G2 R2 Danielaurence\n\n21) Simon: Build G2 Simon\n\n22) Danielaurence: B G2 Danielaurence\n\n23) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 R2\nBuild Y1 R2\n\n24) Danielaurence: B Y2 Gate\n\n25) Simon: Discover Y2 R2 R1 R1\n\n26) Danielaurence: S Y2 Gate\nM G1 Door Simon\nM G2 Door Simon\nCatastrophe Simon Green\n\n27) Simon: Sacrifice G3 R2\nBuild Y2 R1\nBuild Y3 Simon\nBuild Y3 R2\n\n28) Danielaurence: B Y3 Gate\n\n29) Simon: Trade Y3 G3 R2\n\n30) Danielaurence: T G3 Y3 Danielaurence\n\n31) Simon: Trade Y3 G3 Simon\n\n32) Danielaurence: Trade Y3 G3 Gate\n\n33) Simon: Sacrifice G3 R2\nBuild Y3 R2\nBuild Y3 Simon\nBuild B1 R2\n\n34) Danielaurence: Discover G3 Gate B2 Ice\n\n35) Simon: Build B2 R2\n\tDanielaurence: I think I'm pretty bad at this :)\n\tSimon: No problem -- there's no matchmaking system on this server other than "that person sounds like he won't bite my head off, so I'll accept their game offer". I'm happy to play no matter what happens. If you feel like you're learning something new, that's perfectly fine. :-) Always happy about rematches, too.\n\n36) Danielaurence: Build G1 Ice\n\tDanielaurence: Same here! I am having fun and I am learning, even when I get my butt handed to me, so I'm not complaining. I'll look forward to a rematch!\n\n37) Simon: Sacrifice Y3 Simon\nMove Y2 R1 Danielaurence\nMove Y2 R1 Danielaurence\nPass\nCatastrophe Danielaurence Y\n\n38) Danielaurence: Pass\n\n39) Simon: Sacrifice Y3 R2\nMove B1 R2 Danielaurence\nMove B1 R2 Danielaurence\nMove B2 R2 Danielaurence\nCatastrophe Danielaurence B\n\tDanielaurence: Nicely done!\n\tSimon: gg -- up for another game whenever you feel like it.\n\n\nHomeworlds Online (SDG# 28635)\nVariants: "Unrated"\nStarted: 2015.11.25, Ended: 2015.11.30\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\twil: Thx for the game!\n\n2) Felix: Homeworld R3 Y2 G3 *\n\twil: Feel free to ask any questions...\n\tFelix: Okay thanks! I have played a few games of this before offline but I am still learning the ins and outs.\n\n3) wil: B G1 Wil\n\twil: Dangerous opening...no blue...but.can be done\n\n4) Felix: Build G1 Felix\n\twil: Oops... I have a b1 you need.a b1 to move to...this game may be over fast...\n\tFelix: Oh... yeah, that could be bad. Oh well, here we go!\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Discover G1 Felix B1 Lasthope\n\n7) wil: B B2 Wil\n\n8) Felix: Build G1 Lasthope\n\n9) wil: D B2 Wil Y2 Y2\n\n10) Felix: B G1 Felix\n\n11) wil: S G3 Wil\nB B2 Y2\nB B2 Y2\nB B3 Wil\n\n12) Felix: Build G2 Lasthope\n\twil: If you wish to continue you may...but I will first be trading for g3s then reds, then whys...\n\n13) wil: T B3 G3 Wil\n\n14) Felix: Trade G1 Y1 Lasthope\n\n15) wil: B B3 Wil\n\n16) Felix: B Y1 Lasthope\n\n17) wil: T B3 R3 Wil\n\n18) Felix: T G1 R1 Lasthope\n\n19) wil: B B3 Wil\n\n20) Felix: D Y1 Lasthope G2 Newhope\n\n21) wil: D B2 Y2 G1 G1\n\n22) Felix: Build Y1 Newhope\n\n23) wil: S G3 Wil\nB B3 G1\nB B3 G1\nB R1 Wil\n\tFelix: Is the "Goldilocks" homeworld setup considered strongest? I have seen most of the top-rated players on here using it almost exclusively.\n\twil: It appeara to go banker, goldilocks, fortress...but I like trying fortress... If you are a starship commander, you should allow the lessor player to play banker...which leaves us playing goldilocks and fortress more often...it is decorum.... But once you win a few games...gloves are off!\n\n24) Felix: Build Y2 Newhope\n\tFelix: Oh, I see. Makes sense! And that's assuming I'll ever win a game :) Perhaps I shall try the banker next time and see if I can get a leg up.\n\n25) wil: M R3 Wil Newhope\n\twil: You understand the investment strategy right? It is what helps.\n\tFelix: I think I get the principle. Parking g1 ships at large stars and then cashing them in later?\n\n26) Felix: Sacrifice G2 Lasthope\nBuild Y3 Lasthope\nBuild Y3 Lasthope\n\twil: Exactly...\n\twil: I need to fill up my ship with fuel...it will soon be used for a long distance mission.\n\n27) wil: A Y2 Newhope\n\tFelix: I'll just make some more fuel for you, then. You're welcome to take what you need.\n\n28) Felix: Move Y3 Lasthope Y2\n\twil: That was kind of you...especially since it appears fossil fuels are at a premium...thankfully I think that is all that is required\n\twil: You have some options... But it is one move to mate as it stands\n\n29) wil: S Y2 Newhope\nM B3 G1 Felix\nM B3 G1 Felix\n\n30) Felix: Sacrifice Y3 Lasthope\nMove Y1 Newhope Wil\nMove Y1 Newhope Wil\nMove Y3 Y2 Wil\nCatastrophe Wil Yellow\n\twil: The ole u get 1 I get 2 gambit\n\n31) wil: S R3 Newhope\nA G3 Felix\nA G1 Felix\nP\n\tFelix: Ah yes, I know it well. And I counter with the ol' desperate last-ditch fuel explosion technique.\n\twil: Yes....we were so reliant on fossil fuels we had to leave our homeworld...we saw you had similar issues, reliant on fuel and violence in your stars...we've brought the power and ability to change that....Felix's dark side is no longer..\n\tFelix: I learned much. Thanks, and I look forward to a rematch!\n\n\nHomeworlds Online (SDG# 28695)\nVariants: "Hard time"\nStarted: 2015.11.25, Ended: 2015.12.17\nParticipants: Felix (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B3 G3\n\n2) Felix: H B3 G2 Y3\n\tSimon: Hi, enjoy the game!\n\tFelix: Thanks, you also!\n\n3) Simon: Build G1 Simon\n\n4) Felix: Build Y1 Felix\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Felix: T Y1 G1 Felix\n\n7) Simon: Build G1 Simon\n\n8) Felix: Discover G1 Felix B1 Fw1\n\n9) Simon: Trade G1 B1 Simon\n\n10) Felix: B G1 Fw1\n\n11) Simon: Discover B1 Simon G2 G2\n\n12) Felix: T G1 B1 Fw1\n\n13) Simon: Build B2 G2\n\n14) Felix: B B2 Fw1\n\n15) Simon: Sacrifice Y1 Simon\nMove B1 G2 Fw1\nCatastrophe Fw1 B\n\n16) Felix: B Y1 Felix\n\n17) Simon: Build G1 Simon\n\n18) Felix: Trade Y1 G1 Felix\n\n19) Simon: Build B1 G2\n\n20) Felix: Build G1 Felix\n\n21) Simon: Trade B2 Y2 G2\n\n22) Felix: Discover G1 Felix B1 Rappa\n\n23) Simon: Build Y1 G2\n\n24) Felix: Build G2 Rappa\n\n25) Simon: Sacrifice Y1 G2\nDiscover G1 Simon B2 B2\n\n26) Felix: Trade G2 Y2 Rappa\n\n27) Simon: Build G2 Simon\n\n28) Felix: Build G3 Rappa\n\n29) Simon: Trade G2 Y2 Simon\n\n30) Felix: T G1 B1 Felix\n\n31) Simon: Build B2 G2\n\n32) Felix: Discover B1 Felix G1 Ghost\n\n33) Simon: Build G2 Simon\n\n34) Felix: Trade G3 R3 Rappa\n\n35) Simon: Move B2 G2 Ghost\n\n36) Felix: Move R3 Rappa G2\n\n37) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2\nBuild B2 Ghost\n\n38) Felix: Attack B1 G2\n\n39) Simon: Trade B2 R2 Ghost\n\n40) Felix: Build G3 Rappa\n\n41) Simon: Trade G3 Y3 B2\n\n42) Felix: Attack Y2 G2\n\n43) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2\nBuild B2 Ghost\n\n44) Felix: Sacrifice G3 Rappa\nBuild G3 Rappa\nBuild B3 G2\nBuild R1 G2\n\n45) Simon: Trade G3 Y3 B2\n\n46) Felix: Sacrifice G3 Rappa\nBuild G3 Rappa\nBuild Y1 Felix\nBuild Y1 G2\n\n47) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2\nBuild Y1 Simon\n\n48) Felix: Move B1 G2 Ghost\nCatastrophe Ghost Blue\n\n49) Simon: Trade G3 R3 B2\n\n50) Felix: S G3 Rappa\nB G3 Rappa\nB B1 G2\nB B1 G2\n\n51) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2\nBuild R1 Ghost\n\n52) Felix: Sacrifice Y2 G2\nMove R1 G2 Rappa\nMove R1 Rappa Felix\n\n53) Simon: Move Y3 B2 Ghost\n\n54) Felix: Sacrifice G3 Rappa\nBuild G3 Rappa\nBuild Y2 G2\nBuild R2 Felix\n\n55) Simon: Build R2 B2\n\n56) Felix: Sacrifice Y2 G2\nMove B1 G2 Simon\nMove B1 G2 Simon\n\n57) Simon: Sacrifice G1 B2\nBuild Y2 Ghost\n\n58) Felix: Sacrifice G3 Rappa\nBuild B2 G2\nBuild B2 Simon\nBuild R3 G2\nCatastrophe Simon Blue\n\n59) Simon: Sacrifice Y3 B2\nMove Y3 Ghost Felix\nMove R1 Ghost Felix\nMove R2 Ghost Felix\nCatastrophe Felix R\n\n60) Felix: S R3 G2\nA Y3 Felix\nPass\nPass\n\tFelix: Nice move!\n\n61) Simon: Move Y2 Ghost Felix\nCatastrophe Felix Y\n\tSimon: Thanks, yeah, the game got rather tricky at once. gg\n\tFelix: Good game! Thanks for playing.\n\n\nHomeworlds Online (SDG# 28711)\nVariants: "Unrated"\nStarted: 2015.11.27, Ended: 2015.12.2\nParticipants: kanzenryu (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B3 R2 G3\n\tFelix: Thanks for the game! I'm still learning the strategies, but it's lots of fun! Hope you have fun\n\n2) kanzenryu: Homeworld Y1 B2 G3\n\n3) Felix: Build G1 Felix\n\tkanzenryu: Hi there! I'm also a relative beginner. Enjoy the game...\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) Felix: Trade G1 Y1 Felix\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) Felix: B Y2 Felix\n\n8) kanzenryu: Build Y2 Kanzenryu\n\n9) Felix: D Y2 Felix G1 Loop\n\n10) kanzenryu: Trade Y1 B1 Kanzenryu\n\n11) Felix: Build G1 Felix\n\n12) kanzenryu: Discover B1 Kanzenryu G3 Out\n\n13) Felix: Trade G1 B1 Felix\n\n14) kanzenryu: Build G1 Kanzenryu\n\n15) Felix: B G1 Felix\n\n16) kanzenryu: Build G2 Kanzenryu\n\n17) Felix: Move B1 Felix Loop\n\n18) kanzenryu: Discover G2 Kanzenryu Y3 About\n\n19) Felix: Build Y1 Loop\n\n20) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G2 Kanzenryu\nBuild G2 About\nBuild G3 Kanzenryu\n\n21) Felix: S G3 Felix\nB G3 Felix\nB Y2 Felix\nB Y3 Loop\n\n22) kanzenryu: Move Y2 Kanzenryu Out\n\n23) Felix: S Y3 Loop\nMove G1 Felix Loop\nM G1 Loop Out\nM G1 Out Kanzenryu\nCatastrophe Kanzenryu Green\n\tFelix: Good game! That was a lucky strike for me for sure. I'd love to play again some time!\n\tkanzenryu: Thanks for the game. I've joined the ladder now so I might be challenging you on that soon.\n\tFelix: Please do! I look forward to it :)\n\n\nHomeworlds Online (SDG# 28724)\nVariants: "Hard time"\nStarted: 2015.11.27, Ended: 2015.12.9\nParticipants: Felix (S), Ausmuh (N)\nWinner: Felix\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) Felix: Homeworld B3 Y2 G3\n\tFelix: Thanks for the game. Good luck!\n\n3) Ausmuh: Build B1 Ausmuh\n\n4) Felix: B G1 Felix\n\tAusmuh: Thanks! Have fun\n\n5) Ausmuh: Trade B1 Y1 Ausmuh\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Ausmuh: Build Y2 Ausmuh\n\n8) Felix: B Y2 Felix\n\n9) Ausmuh: Discover Y1 Ausmuh G2 Mw1\n\n10) Felix: D Y2 Felix G1 Fort\n\n\nHomeworlds Online (SDG# 28687)\nVariants: "Hard time"\nStarted: 2015.11.27, Ended: 2015.12.6\nParticipants: endo (S), kanzenryu (N)\nWinner: endo\n\n1) kanzenryu: Homeworld Y1 B2 G3\n\n2) endo: Homeworld B1 Y3 G3\n\tkanzenryu: Is there any way to rename your homeworld?\n\n3) kanzenryu: Build G1 Kanzenryu\n\tendo: I don't think there is.\n\n4) endo: Build G1 Endo\n\n5) kanzenryu: Trade G1 B1 Kanzenryu\n\n6) endo: Trade G1 B1 Endo\n\n7) kanzenryu: Build B2 Kanzenryu\n\n8) endo: Build B2 Endo\n\n9) kanzenryu: Discover B2 Kanzenryu G3 Out\n\n10) endo: Trade B2 Y2 Endo\n\n11) kanzenryu: Build G1 Kanzenryu\n\n12) endo: Build Y1 Endo\n\n13) kanzenryu: Trade G1 Y1 Kanzenryu\n\n14) endo: Discover Y1 Endo G2 Hamiltonian\n\n15) kanzenryu: Move Y1 Kanzenryu Out\n\n16) endo: Build Y2 Endo\n\n17) kanzenryu: Build G1 Kanzenryu\n\n18) endo: Discover Y2 Endo G2 Knapsack\n\n19) kanzenryu: Discover G1 Kanzenryu Y3 More\n\n20) endo: Move B1 Endo Hamiltonian\n\n21) kanzenryu: Build G1 Kanzenryu\n\n22) endo: Move Y2 Knapsack More\n\n23) kanzenryu: Build Y2 Out\n\n24) endo: Build Y3 Hamiltonian\n\n25) kanzenryu: Move Y1 Out Hamiltonian\n\n26) endo: Trade Y3 R3 Hamiltonian\n\n27) kanzenryu: Move Y1 Hamiltonian Endo\n\n28) endo: Sacrifice Y2 Endo\nMove R3 Hamiltonian Out\nMove R3 Out Kanzenryu\n\n\tkanzenryu: Of course...\n\nHomeworlds Online (SDG# 28718)\nVariants: "Hard time"\nStarted: 2015.11.29, Ended: 2015.12.9\nParticipants: Simon (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld R1 B3 G3\n\n2) Simon: Homeworld B1 R2 G3\n\tendo: Even more homeworlds! Have fun!\n\tSimon: Yes yes, have fun!\n\n3) endo: Build G1 Endo\n\n4) Simon: Build G1 Simon\n\n5) endo: Trade G1 B1 Endo\n\n6) Simon: Build G1 Simon\n\n7) endo: Build B1 Endo\n\n8) Simon: Trade G1 Y1 Simon\n\n9) endo: Build G1 Endo\n\n10) Simon: Trade G3 B3 Simon\n\n11) endo: Trade B1 Y1 Endo\n\n12) Simon: Build G1 Simon\n\n13) endo: Build G2 Endo\n\n14) Simon: Build G2 Simon\n\n15) endo: Discover G1 Endo B2 Alternating\n\n16) Simon: Discover G2 Simon B3 B3\n\n17) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G3 Endo\nBuild G3 Alternating\n\n18) Simon: Build G3 B3\n\n19) endo: Discover G2 Endo B2 Dihedral\n\n20) Simon: Sacrifice G3 B3\nBuild G3 B3\nBuild B1 Simon\nBuild Y1 Simon\n\n21) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild B2 Endo\nBuild Y2 Endo\n\n22) Simon: Move Y1 Simon B3\n\n23) endo: Sacrifice Y2 Endo\nMove G1 Alternating B3\nMove G2 Dihedral B3\nCatastrophe B3 G\n\n24) Simon: Move G1 Simon B3\n\n25) endo: Build Y2 Endo\n\n26) Simon: Build Y2 B3\n\n27) endo: Move Y1 Endo Alternating\n\n28) Simon: Discover B1 Simon G3 G3\n\n29) endo: Trade B1 R1 Endo\n\n30) Simon: Discover Y1 B3 G2 G2\n\n31) endo: Build R1 Endo\n\n32) Simon: Build Y2 Simon\n\n33) endo: Sacrifice G3 Alternating\nBuild Y3 Endo\nBuild Y3 Endo\nBuild Y3 Alternating\n\n34) Simon: Move Y1 G2 Endo\nCatastrophe Endo Y\n\n35) endo: Move Y3 Alternating B3\n\n36) Simon: Trade Y2 R2 Simon\n\n37) endo: Sacrifice R1 Endo\nAttack Y2 B3\n\n38) Simon: Trade B3 G3 Simon\n\n39) endo: Build R1 Endo\n\n40) Simon: Discover G1 Simon Y3 Y3\n\n41) endo: Sacrifice R1 Endo\nAttack G1 B3\n\n42) Simon: Move R2 Simon G3\n\n43) endo: Trade Y3 R3 B3\n\n44) Simon: Build G1 Simon\n\n45) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G2 B3\nBuild G3 Endo\n\n46) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 Simon\nBuild Y2 Simon\n\n47) endo: Sacrifice Y2 B3\nMove G1 B3 Simon\nMove G2 B3 Simon\nCatastrophe Simon G\n\n\tSimon: gg\n\tendo: Good game.\n\nHomeworlds Online (SDG# 28710)\nVariants: "Unrated"\nStarted: 2015.11.30, Ended: 2015.12.7\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) Felix: Homeworld B2 R1 G3\n\n3) wil: B G1 Wil\n\tFelix: Alright, let's try this investment strategy and see how she works....\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 R1 Wil\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: B R1 Wil\n\n8) Felix: Build Y1 Felix\n\twil: Rule of thumb...play follow the leader at the beginning...especially with guns.. \n\tFelix: Got it. Thanks for the tip.\n\n9) wil: B R2 Wil\n\n10) Felix: D Y1 Felix G3 Rubble\n\n11) wil: D R1 Wil B1 B1\n\n12) Felix: B Y1 Rubble\n\n13) wil: S G3 Wil\nB R2 B1\nB R2 B1\nB R3 Wil\n\n14) Felix: Sacrifice G3 Felix\nBuild Y2 Rubble\nBuild Y2 Felix\nBuild Y3 Felix\n\n15) wil: T R3 G3 Wil\n\twil: This red yellow game agin\n\n16) Felix: Trade Y3 G3 Felix\n\n17) wil: B R3 Wil\n\tFelix: Very warm colors indeed!\n\n18) Felix: Discover Y2 Rubble G1 Tilt\n\n19) wil: T R3 Y3 Wil\n\n20) Felix: Build Y3 Tilt\n\n21) wil: B R3 Wil\n\n22) Felix: Sacrifice Y3 Tilt\nMove Y1 Rubble Tilt\nMove Y2 Tilt Wil\nMove Y1 Tilt Wil\nCatastrophe Wil Yellow\n\n23) wil: T R3 Y3 Wil\n\n24) Felix: Trade Y1 B1 Felix\n\twil: While blowing up half a homeworld feels good...unless the plan is in place to take out the rest it is often trouble\n\n25) wil: B R3 Wil\n\tFelix: I'm still working on the rest of the plan :)\n\n26) Felix: Build B1 Felix\n\n27) wil: S Y3 Wil\nM G3 Wil Felix\nM R3 Wil Felix\nM R2 B1 Rubble\n\n28) Felix: S Y2 Felix\nPass\nPass\n\n29) wil: S R3 Felix\nA G3 Felix\nA B1 Felix\nA B1 Felix\n\n\twil: Gg\n\tFelix: You too. I have learned some things, I think.\n\twil: I think it takes a dozen gsmes or more to "get it" for the berage joe like me...and a mother couple dozen to feel competent... But after a couple hundred games I get slaughtered by the best...\n\tFelix: Well... I guess I'm on my way to playing hundreds of games ;) Thanks, and I"m happy to rematch any time.\n\twil: I am always up for a challenge... Endo is repeatedly kicking my butt.right now\r\n\r\n\n\nHomeworlds Online (SDG# 28731)\nStarted: 2015.11.30, Ended: 2015.12.15\nParticipants: kanzenryu (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) kanzenryu: Homeworld Y1 B2 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tkanzenryu: Still loving this game...\n\n4) kanzenryu: Build G1 Kanzenryu\n\tts52: That's good to hear. The more players the better!\n\tkanzenryu: I've joined the ladder. I'll be way down the bottom of it for a long time, I think.\n\n5) ts52: Discover G1 Ts52 B2 Grover\n\n6) kanzenryu: Discover G1 Kanzenryu B3 Out\n\tts52: Nice!\n\n7) ts52: Build G1 Ts52\n\tkanzenryu: Well I can't seem to convince anybody to play with the plastic pyramids\n\n8) kanzenryu: Trade G1 Y1 Out\n\tkanzenryu: This time I can see some problems in advance. But now all moves look bad...\n\n9) ts52: Trade G1 Y1 Grover\n\n10) kanzenryu: Build G1 Kanzenryu\n\tts52: What kind of games do you usually play? I can't get anyone to play with the pyramids much either, though I'm thinking of bringing them out at work again.\n\tkanzenryu: So far some IceTowers and Caldera. One game of Ice House, one of Zendo. I want to try RAMBots, Zagami and Gnostica.\n\n11) ts52: Move G1 Ts52 Grover\n\n12) kanzenryu: Move G1 Kanzenryu Out\n\tts52: Impressive. Gnostica is great, but Zark City is a really nice, lighter alternative.\n\tkanzenryu: Thanks, might try Zark City next\n\n13) ts52: Build Y2 Grover\n\n14) kanzenryu: Build Y2 Out\n\tkanzenryu: Have you played Icehouse or Zendo much?\n\n15) ts52: Trade Y2 R2 Grover\n\n16) kanzenryu: Trade Y1 R1 Out\n\tts52: I've played icehouse a few times. Even played in an IIT, but it's a tough one to get people to play. There was a time when I was playing Zendo at lunch almost every day. But I haven't played it in quite a while.\n\n17) ts52: Build R1 Grover\n\n18) kanzenryu: Build G1 Kanzenryu\n\n19) ts52: Build G2 Ts52\n\n20) kanzenryu: Build G2 Out\n\n21) ts52: Trade G2 Y2 Ts52\n\n22) kanzenryu: Discover G1 Out Y2 Peep\n\n23) ts52: Build G2 Ts52\n\n24) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G2 Out\nBuild G3 Kanzenryu\nBuild G3 Peep\n\n25) ts52: Discover G2 Ts52 B2 Gonzo\n\n26) kanzenryu: Build R1 Out\n\n27) ts52: Move Y2 Ts52 Gonzo\n\n28) kanzenryu: Trade G1 B1 Kanzenryu\n\n29) ts52: Trade R1 B1 Grover\n\n30) kanzenryu: Move G1 Peep Ts52\n\n31) ts52: Trade G3 R3 Ts52\n\n32) kanzenryu: Build G1 Kanzenryu\n\n33) ts52: Build G3 Grover\n\n34) kanzenryu: Discover B1 Kanzenryu Y3 Moon\n\n35) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild Y1 Grover\nBuild Y3 Gonzo\n\tts52: That's no moon.\n\n36) kanzenryu: Move B1 Moon Peep\n\n37) ts52: Discover B1 Grover Y3 Bigbird\n\tkanzenryu: It was a verb\n\n38) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild B3 Peep\nBuild R1 Out\n\tts52: :)\n\n39) ts52: Sacrifice G3 Grover\nBuild G3 Grover\nBuild B3 Bigbird\nBuild R2 Grover\n\n40) kanzenryu: Move R1 Out Peep\n\n41) ts52: Move G1 Grover Bigbird\n\n42) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R2 Out\nBuild R3 Peep\n\n43) ts52: Sacrifice Y3 Gonzo\nMove G2 Gonzo Bigbird\nMove G2 Bigbird Kanzenryu\nMove G1 Bigbird Kanzenryu\nCatastrophe Kanzenryu Green\n\tts52: Thanks for the game!\n\tkanzenryu: Thanks, good game\n\n\nHomeworlds Online (SDG# 28745)\nVariants: "Hard time"\nStarted: 2015.12.2, Ended: 2015.12.26\nParticipants: kanzenryu (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B2 G3\n\n2) kanzenryu: Homeworld B1 Y3 G3\n\tSimon: More homeworlds, more homeworlds, have fun!\n\n3) Simon: Build G1 Simon\n\tkanzenryu: Mo 'worlds!\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) Simon: Trade G1 B1 Simon\n\n6) kanzenryu: Trade G1 B1 Kanzenryu\n\n7) Simon: Build B2 Simon\n\n8) kanzenryu: Build B2 Kanzenryu\n\n9) Simon: Trade B2 Y2 Simon\n\n10) kanzenryu: Discover B2 Kanzenryu G2 Out\n\n11) Simon: Discover B1 Simon G3 G3\n\n12) kanzenryu: Build G1 Kanzenryu\n\n13) Simon: Build G1 Simon\n\n14) kanzenryu: Trade G1 Y1 Kanzenryu\n\n15) Simon: Trade G1 R1 Simon\n\n16) kanzenryu: Trade B1 R1 Kanzenryu\n\n17) Simon: Move R1 Simon G3\n\n18) kanzenryu: Move Y1 Kanzenryu Out\n\n19) Simon: Build R2 G3\n\n20) kanzenryu: Build G1 Kanzenryu\n\n21) Simon: Trade R2 Y2 G3\n\n22) kanzenryu: Build Y1 Out\n\n23) Simon: Build R2 G3\n\n24) kanzenryu: Build R2 Kanzenryu\n\n25) Simon: Discover R1 G3 G2 G2\n\n26) kanzenryu: Move R2 Kanzenryu Out\n\n27) Simon: Build Y1 G3\n\n28) kanzenryu: Discover Y1 Out B3 Peep\n\n29) Simon: Move Y2 G3 G2\n\n30) kanzenryu: Build B1 Out\n\n31) Simon: Sacrifice G3 Simon\nBuild Y2 G2\nBuild Y3 G3\nBuild Y3 Simon\n\n32) kanzenryu: Move R2 Out Peep\n\n33) Simon: Trade Y2 G2 Simon\n\n34) kanzenryu: Build Y2 Out\n\n35) Simon: Build G1 Simon\n\n36) kanzenryu: Move B1 Out Peep\n\n37) Simon: Discover Y1 G3 G1 G1\n\n38) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R2 Kanzenryu\nBuild R3 Peep\n\n39) Simon: Discover G2 Simon R3 R3\n\n40) kanzenryu: Discover B2 Out G3 Soon\n\n41) Simon: Build R3 G2\n\n42) kanzenryu: Build B2 Soon\n\n43) Simon: Build B3 G3\n\n44) kanzenryu: Move B1 Peep Simon\n\n45) Simon: Move B3 G3 Out\n\n46) kanzenryu: Sacrifice Y2 Out\nMove B2 Soon Simon\nMove B2 Soon Simon\nCatastrophe Simon B\n\n47) Simon: Sacrifice G2 R3\nBuild B1 Out\nBuild B2 Out\n\n48) kanzenryu: Discover R2 Kanzenryu Y2 Run\n\n49) Simon: Sacrifice Y3 G3\nMove B1 Out Kanzenryu\nMove B2 Out Kanzenryu\nMove B3 Out Kanzenryu\nCatastrophe Kanzenryu B\n\n50) kanzenryu: Build Y3 Out\n\n51) Simon: Sacrifice Y3 Simon\nMove Y1 G1 Kanzenryu\nMove Y2 G2 Kanzenryu\nMove Y2 G2 Kanzenryu\nCatastrophe Kanzenryu Y\n\tSimon: This game was considerably harder than any of our earlier games -- I believe made a few weak moves myself along the way, and don't have much left over by now. Never get discouraged, I feel you're getting the hang of it :)\n\tkanzenryu: I'm still enjoying it; thanks for the game.\n\n\nHomeworlds Online (SDG# 28634)\nVariants: "Hard time"\nStarted: 2015.12.4, Ended: 2015.12.7\nParticipants: SilentTitan (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n\nHomeworlds Online (SDG# 28751)\nVariants: "Unrated"\nStarted: 2015.12.4, Ended: 2015.12.10\nParticipants: Tamiel (S), Felix (N)\nWinner: Tamiel\n\n1) Felix: H B3 R2 G3\n\n2) Tamiel: Homeworld Y3 B1 G3\n\tFelix: Hi, thanks for the challenge! Have you played this before? Let me know if you have any questions.\n\n3) Felix: B G1 Felix\n\tTamiel: Thank you. This is my first game.\n\tFelix: Alright, good luck! I'm happy to help answer any questions you have about it\n\n4) Tamiel: Build G1 Tamiel\n\n5) Felix: T G1 Y1 Felix\n\n6) Tamiel: Build G1 Tamiel\n\n7) Felix: Build G1 Felix\n\n8) Tamiel: Discover G1 Tamiel B2 Gliesse1\n\n9) Felix: Discover G1 Felix B1 Gate\n\n10) Tamiel: Build G2 Gliesse1\n\n11) Felix: B G2 Gate\n\n12) Tamiel: Trade G2 Y2 Gliesse1\n\n13) Felix: Build G2 Felix\n\n14) Tamiel: Sacrifice G3 Tamiel\nBuild G2 Tamiel\nBuild G3 Tamiel\nBuild G3 Gliesse1\n\n15) Felix: Trade G2 Y2 Gate\n\n16) Tamiel: Trade G2 R2 Tamiel\n\n17) Felix: Trade G2 R2 Felix\n\n18) Tamiel: Move G1 Gliesse1 Gate\n\n19) Felix: Build G2 Felix\n\n20) Tamiel: Build G2 Gliesse1\n\n21) Felix: Discover G1 Gate B2 Door\n\n22) Tamiel: Move R2 Tamiel Door\n\n23) Felix: B G2 Door\n\n24) Tamiel: Attack G2N Door\n\n25) Felix: Sacrifice G3 Felix\nBuild G3 Door\nBuild Y1 Gate\nBuild Y1 Felix\n\n26) Tamiel: Attack G1N Door\n\n27) Felix: Sacrifice R2 Felix\nAttack R2 Door\nAttack G2 Door\n\n28) Tamiel: Sacrifice Y2 Gliesse1\nMove G1 Gate Door\nMove G3 Gliesse1 Gate\nCatastrophe Door G\n\n29) Felix: Trade Y1 B1 Gate\n\tFelix: Are you sure this is your first game? :)\n\n30) Tamiel: Trade G2 R2 Gliesse1\n\n31) Felix: B G1 Felix\n\tTamiel: beginner's luck :-)\n\n32) Tamiel: Trade G1 R1 Tamiel\n\n33) Felix: M G1 Felix Gate\n\n34) Tamiel: Sacrifice R2 Gliesse1\nAttack Y2N Gate\nAttack B1N Gate\n\n35) Felix: Sacrifice G2 Felix\nBuild G1 Gate\nBuild G1 Gate\nCatastrophe Gate Green\n\n36) Tamiel: Move Y2 Gate Felix\n\n37) Felix: Sacrifice Y1 Felix\nPass\n\n38) Tamiel: Sacrifice G3 Tamiel\nBuild Y1 Felix\nBuild Y1 Felix\nBuild Y2 Felix\nCatastrophe Felix Y\n\tFelix: Well done! I'd be happy to rematch any time.\n\tTamiel: Good game. Looking forward to the next one.\n\n\nHomeworlds Online (SDG# 28818)\nVariants: "Hard time"\nStarted: 2015.12.7, Ended: 2015.12.10\nParticipants: endo (S), wil (N)\nWinner: endo\n\n1) wil: H R2 B1 G3\n\n2) endo: Homeworld B1 G3 B3 *\n\n3) wil: B G1 Wil\n\n4) endo: Build B1 Endo\n\twil: Cool...I've played that game... Not so successfully..\n\n5) wil: T G1 Y1 Wil\n\tendo: I saw TwoShort crush Simon with this opening in a ladder match and got inspired... Oh, what kind of tourney did you have in mind? I'll gladly play in an online one, but might not make it to a physical one if it's in the US since I live in Europe.\n\n6) endo: Trade B3 Y3 Endo\n\twil: Investigating the online tourneys here..\n\twil: I may have played that backwards\n\twil: I may have played that backwards\n\n7) wil: B G1 Wil\n\n8) endo: Build B2 Endo\n\twil: Yeah.. I did\n\n9) wil: T G3 B3 Wil\n\n10) endo: Discover B1 Endo G2 Hod\n\twil: Yes...another short game\n\n11) wil: B B2 Wil\n\n12) endo: Sacrifice Y3 Endo\nDiscover B1 Hod R3 V_omega\nMove B1 V_omega Wil\nPass\nCatastrophe Wil B\n\n13) wil: B G1 Wil\n\twil: I wondered\n\twil: I wondered\n\n14) endo: Build B1 Endo\n\n15) wil: D G1 Wil B3 B3\n\n16) endo: Trade B1 R1 Endo\n\n17) wil: B G1 B3\n\twil: I dont think I stand a chance here..\n\n18) endo: Build B1 Endo\n\n19) wil: B G2 B3\n\tendo: Yeah, might be over soonish, given that I can simply build enough red at my homeworld and invade...\n\n20) endo: Trade B2 Y2 Endo\n\twil: Zackly\n\n21) wil: B G2 Wil\n\n22) endo: Build R1 Endo\n\n23) wil: T G2 Y2 B3\n\tendo: Yup, I believe the second catastrophe is unstoppable now...\n\n24) endo: Build R1 Endo\n\twil: You are correct\n\n25) wil: M Y1 Wil Endo\n\n26) endo: Attack Y1 Endo\n\n\twil: The sooner I can rechallenge and be abused agin!\n\nHomeworlds Online (SDG# 28846)\nVariants: "Hard time"\nStarted: 2015.12.9, Ended: 2016.1.7\nParticipants: Felix (S), sompm (N)\nWinner: Felix\n\n1) sompm: Homeworld Y3 B1 G3\n\n2) Felix: H B3 Y2 G3\n\tFelix: Thanks for the game. Good luck!\n\n3) sompm: Build G1 Sompm\n\tsompm: To you too! I'm still climbing through all of the inactives as well.\n\n4) Felix: B G1 Felix\n\tFelix: Yeah... It's hard to get anyone to accept around here!\n\n5) sompm: Discover G1 Sompm B2 Hoth\n\n6) Felix: Discover G1 Felix B1 Wampa\n\n7) sompm: Build G1 Hoth\n\n8) Felix: B G2 Wampa\n\n9) sompm: Build G2 Hoth\n\n10) Felix: T G1 Y1 Wampa\n\n11) sompm: Trade G2 Y2 Hoth\n\n12) Felix: Build G1 Felix\n\n13) sompm: Build G2 Sompm\n\n14) Felix: Sacrifice G3 Felix\nBuild G2 Wampa\nBuild G3 Felix\nBuild Y1 Wampa\n\n15) sompm: Sacrifice G3 Sompm\nBuild G3 Sompm\nBuild G3 Sompm\nBuild Y1 Hoth\n\n16) Felix: Discover Y1 Wampa B2 Gate\n\n\nHomeworlds Online (SDG# 28753)\nVariants: "Unrated"\nStarted: 2015.12.10, Ended: 2015.12.13\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y1 G3\n\n2) wil: H B3 Y2 G3\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 B1 Felix\n\n6) wil: T G1 Y1 Wil\n\n7) Felix: Trade B1 Y1 Felix\n\twil: Next trick...start with a pawn stack less than three... I just took over the early advantage..\n\n8) wil: B Y2 Wil\n\tFelix: Good tip. I see that now. I seem to have wasted a turn, but thanks for helping me learn!\n\twil: No worries... See how I did it after... Allowing you to experience the full effect if your error...I am so thoughtful! And modest\n\n9) Felix: Build Y2 Felix\n\n10) wil: D Y1 Wil G1 G1\n\tFelix: And cruel :)\n\n11) Felix: Discover Y1 Felix G2 Pickle\n\twil: There is no way I wouldn't allow you the full repercussions of your ways.\n\n12) wil: B Y3 G1\n\n13) Felix: Build Y3 Pickle\n\n14) wil: D Y1 G1 G2 G2\n\n15) Felix: Move Y3 Pickle G1\n\n16) wil: B Y3 G2\n\n17) Felix: T Y2 R2 Felix\n\n18) wil: B Y2 G1\n\n19) Felix: Move Y3 G1 Wil\n\n20) wil: M Y2 G1 Wil\nC Wil Y\n\tFelix: This is either stupid or brilliant, probably the first.\n\twil: Yeah..I was blinded\n\n21) Felix: Build Y2 Pickle\n\twil: Your red move was on target..our mutually agreed suicide...we'll see.\n\n22) wil: B G1 Wil\n\tFelix: Eh, it was fun anyway :)\n\n23) Felix: Sacrifice Y2 Pickle\nMove G3 Felix Pickle\nMove G3 Pickle Wil\n\n24) wil: M Y3 G1 Wil\n\n25) Felix: T G3 R3 Wil\n\twil: Yes it is fun...no two matches ever alike.\n\n26) wil: M Y3 G2 Felix\n\tFelix: I love that about this game. Also... I'm just a loose cannon right now.\n\twil: It is working\n\twil: I think you've won this\n\n27) Felix: Attack G3 Wil\n\n28) wil: T Y3 R3 Felix\n\tFelix: Perhaps... But I don't know if I have the skills to finish the job!\n\twil: I think you just did\n\n29) Felix: S R3 Wil\nA Y3 Wil\nA G1 Wil\nPass\n\tFelix: Good game! I doubt I'll be so lucky next time :)\n\twil: Well played\n\n\nHomeworlds Online (SDG# 28811)\nVariants: "Unrated"\nStarted: 2015.12.10, Ended: 2015.12.18\nParticipants: Tamiel (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) Tamiel: Homeworld Y1 B2 G3\n\n3) Felix: Build G1 Felix\n\n4) Tamiel: Build G1 Tamiel\n\tFelix: Good luck! I enjoy playing against you because the other players on here utterly destroy me, but I think you are a bit closer to my skill level, if still a bit better :)\n\n5) Felix: T G1 Y1 Felix\n\n6) Tamiel: Build G1 Tamiel\n\n7) Felix: Build Y1 Felix\n\tTamiel: I think I was probably lucky the last game. You started with a red star in your homesystem and from what I've read that's harder to play, at least for beginners.\n\tFelix: Yeah, that's what I have heard, too. I like trying different strategies to experience for myself what works and what doesn't, and why. I've also heard that starting with a small and medium home star (the banker) is usually a bit stronger :)\n\n8) Tamiel: Trade G3 Y3 Tamiel\n\tFelix: I am definitely still learning how to develop strategies in this. Hopefully you will learn some things too!\n\n9) Felix: Discover Y1 Felix G1 Pickle\n\n10) Tamiel: Discover G1 Tamiel B3 Gliesse1\n\n11) Felix: B Y2 Pickle\n\n12) Tamiel: Build G2 Gliesse1\n\n13) Felix: B G2 Felix\n\n14) Tamiel: Trade G2 Y2 Gliesse1\n\n15) Felix: Move Y2 Pickle Gliesse1\n\n16) Tamiel: Build Y3 Gliesse1\n\n17) Felix: Build Y3 Pickle\n\n18) Tamiel: Sacrifice Y3 Tamiel\nMove Y2 Gliesse1 Pickle\nMove Y3 Gliesse1 Pickle\nPass\nCatastrophe Pickle Y\n\n19) Felix: Move Y2 Gliesse1 Tamiel\n\tFelix: Woah. Bold move! But I think it leaves you pretty vulnerable because now you don't have a large ship, and I can come into your home system and take it over in a few moves, I think. Do you want to take it back?\n\tTamiel: No, I don't take back the move. Thank you. I was in a bad position and I think this move might give me some (not much) fighting chance. \n\n\tTamiel: And that's that. :-) You win. Good game. I'll start a new challenge sometime at the beginning of Jan; until then I'm not sure about the internet connection since I'll be traveling around. You are more than welcome to join that the challenge.\n\tFelix: Good game! I had fun. I am definitely happy to play again any time. I will look for you challenge in January!\n\nHomeworlds Online (SDG# 28799)\nStarted: 2015.12.10, Ended: 2015.12.21\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) Felix: Homeworld G3 Y2 B3\n\n3) ts52: Build G1 Ts52\n\n4) Felix: B B1 Felix\n\tFelix: Have fun!\n\n5) ts52: Trade G1 B1 Ts52\n\tts52: Thanks! You too.\n\n6) Felix: B B2 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Discover B2 Felix G1 Pickle\n\n9) ts52: Discover B2 Ts52 G2 Robin\n\n10) Felix: Build B2 Pickle\n\n11) ts52: Build B3 Robin\n\n12) Felix: Build B3 Pickle\n\n13) ts52: Trade B3 Y3 Robin\n\tFelix: I'm feeling blue.\n\n14) Felix: Trade B2 Y2 Pickle\n\n15) ts52: Build G1 Ts52\n\n16) Felix: T B3 R3 Felix\n\n17) ts52: Trade B1 R1 Ts52\n\n18) Felix: Trade B3 G3 Pickle\n\n19) ts52: Discover G1 Ts52 B2 Gonzo\n\n20) Felix: Build R1 Felix\n\n21) ts52: Build Y1 Robin\n\n22) Felix: Build Y1 Pickle\n\n23) ts52: Build G1 Ts52\n\n24) Felix: Build B1 Felix\n\n25) ts52: Build B3 Robin\n\n26) Felix: Build B3 Pickle\n\n27) ts52: Discover B3 Robin Y1 Bigbird\n\n28) Felix: Move B1 Felix Bigbird\n\tFelix: Do you like the muppets? :)\n\n29) ts52: Trade B3 R3 Bigbird\n\tts52: I do. Honestly I'm not sure how it started, but at one point I started naming my systems after sesame street characters and muppets, and I've just kept it up.\n\n30) Felix: Build B3 Felix\n\n31) ts52: Build B3 Robin\n\tFelix: Nice! I often struggle with a good naming system for my own stars :)\n\tFelix: They end up with very random names...\n\n32) Felix: S Y2 Pickle\nM B1 Bigbird Robin\nM B2 Pickle Robin\nCatastrophe Robin Blue\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G2 Gonzo\nBuild G3 Ts52\n\n34) Felix: Discover G3 Pickle B2 Ice\n\n35) ts52: Trade G2 Y2 Gonzo\n\n36) Felix: Build G2 Ice\n\n37) ts52: Discover Y3 Robin R1 Elmo\n\n38) Felix: Trade B3 Y3 Felix\n\n39) ts52: Trade G3 R3 Ts52\n\n40) Felix: S G3 Ice\nB B1 Felix\nB Y2 Pickle\nB G3 Ice\n\n41) ts52: Build G3 Gonzo\n\n42) Felix: Sacrifice G3 Ice\nBuild G3 Ice\nBuild B2 Felix\nBuild B3 Pickle\n\n43) ts52: Trade G3 B3 Gonzo\n\n44) Felix: M B3 Pickle Robin\n\n45) ts52: Build G3 Gonzo\n\n46) Felix: S R1 Felix\nA Y1 Robin\n\n47) ts52: Move B3 Gonzo Bigbird\n\n48) Felix: M Y1 Pickle Robin\n\n49) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild R1 Bigbird\nBuild R2 Bigbird\n\n50) Felix: Move Y1 Robin Ts52\n\n51) ts52: Attack Y1 Ts52\n\n52) Felix: S Y3 Felix\nM Y2 Pickle Robin\nM Y2 Robin Ts52\nM Y1 Robin Ts52\nCatastrophe Ts52 Yellow\n\n53) ts52: Sacrifice Y3 Elmo\nMove R1 Bigbird Felix\nMove R2 Bigbird Felix\nMove R3 Bigbird Felix\nCatastrophe Felix Red\n\n54) Felix: T B1 R1 Felix\n\n55) ts52: Sacrifice Y2 Gonzo\nMove G3 Gonzo Bigbird\nMove G3 Bigbird Felix\n\tFelix: I think I miscalculated my attack...\n\n56) Felix: Sacrifice G3 Ice\nBuild G3 Ice\nBuild R1 Felix\nBuild R2 Felix\n\n57) ts52: Sacrifice R3 Ts52\nAttack R1 Felix\nAttack R1 Felix\nAttack R2 Felix\n\tFelix: Yep... definitely miscalculated.\n\n58) Felix: T B2 R2 Felix\nCatastrophe Felix Red\n\tts52: It's never over 'till it's over.\n\n59) ts52: Sacrifice R1 Ts52\nAttack B1 Felix\n\tFelix: I think it's over. Well played! I thought I had you for a moment\n\tts52: And now it's over. ;) Thanks for the game!\n\tts52: I was starting to get a bit anxious. It was definitely close for a moment there.\n\n\nHomeworlds Online (SDG# 28794)\nVariants: "Hard time"\nStarted: 2015.12.10, Ended: 2015.12.19\nParticipants: SilentTitan (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) SilentTitan: Homeworld R1 B2 G3\n\n3) Felix: Build G1 Felix\n\tFelix: Thanks for playing. Good luck!\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Felix: Trade G1 R1 Felix\n\n6) SilentTitan: Trade G1 R1 Silenttitan\n\n7) Felix: B R2 Felix\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Felix: Build R2 Felix\n\n\nHomeworlds Online (SDG# 28689)\nVariants: "Hard time"\nStarted: 2015.12.11, Ended: 2016.1.13\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H B3 Y1 G3\n\twil: Gl\n\n2) Simon: Homeworld R1 B2 G3\n\tSimon: Have fun!\n\n3) wil: B G1 Wil\n\twil: If you insist...\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 B1 Wil\n\n6) Simon: Trade G1 B1 Simon\n\n7) wil: B G1 Wil\n\n8) Simon: Build G1 Simon\n\n9) wil: T G1 R1 Wil\n\n10) Simon: Trade G1 Y1 Simon\n\n11) wil: B R1 Wil\n\n12) Simon: Build Y1 Simon\n\n13) wil: B R2 Wil\n\n14) Simon: Discover Y1 Simon G3 G3\n\n15) wil: D R2 Wil Y2 Y2\n\n16) Simon: Build Y2 Simon\n\n17) wil: M R2 Y2 G3\n\twil: Lol what was I thinking\n\twil: Lol what was I thinking\n\twil: Now I remember\n\n18) Simon: Discover Y1 G3 B2 B2\n\n19) wil: B R2 Wil\n\n20) Simon: Trade Y2 R2 Simon\n\n21) wil: T R2 Y2 Wil\n\n22) Simon: Discover R2 Simon B3 B3\n\n23) wil: D R1 Wil B2 Betwo\n\n24) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y2 B2\nBuild Y3 Simon\n\n25) wil: M Y2 Wil B2\nC B2 Y\n\n26) Simon: Trade Y3 G3 Simon\n\n27) wil: S G3 Wil\nB R2 Wil\nB R3 Wil\nB R3 Betwo\n\n28) Simon: Sacrifice G3 Simon\nBuild R3 B3\nBuild Y1 Simon\nBuild Y2 Simon\n\n29) wil: T R2 Y2 Wil\n\twil: The tables can turn fast and furious\n\n30) Simon: Sacrifice Y2 Simon\nMove R3 B3 Simon\nDiscover Y1 Simon G3 G3a\n\n31) wil: T R3 G3 Betwo\n\n32) Simon: Build Y2 G3a\n\n33) wil: M Y2 Wil Betwo\n\n34) Simon: Discover Y2 G3a G2 G2\n\n35) wil: S G3 Betwo\nB B1 Wil\nB R2 G3\nB R3 Betwo\n\n36) Simon: Trade R3 G3 Simon\n\n37) wil: T R3 Y3 Betwo\n\n38) Simon: Sacrifice G3 Simon\nBuild Y2 G2\nBuild Y3 Simon\nBuild R3 B3\n\n39) wil: T Y2 G2 Betwo\n\n40) Simon: Trade R3 G3 B3\n\n41) wil: B R3 Betwo\n\n42) Simon: Build R3 B3\n\n43) wil: T R3 Y3 Betwo\n\n44) Simon: Move B1 Simon G3a\n\n45) wil: T B1 G1 Wil\n\n46) Simon: Build Y2 G3a\n\n47) wil: B R3 Betwo\n\n48) Simon: Move Y1 Simon B3\n\n49) wil: T R3 B3 Betwo\n\n50) Simon: Move R3 B3 G2\n\n51) wil: B R3 Betwo\n\n52) Simon: Sacrifice Y2 G3a\nMove Y1 G3a Betwo\nMove Y1 B3 Betwo\nCatastrophe Betwo Y\n\n53) wil: T R1 Y1 Betwo\n\n54) Simon: Build R1 G2\n\n55) wil: B Y1 Betwo\n\n56) Simon: Move Y2 G2 B3\n\n57) wil: M Y1 Betwo G3\n\n58) Simon: Sacrifice G3 B3\nBuild Y2 Simon\nBuild Y3 B3\nBuild Y3 G2\n\n59) wil: T R3 G3 Wil\n\n60) Simon: Build B1 G3a\n\n61) wil: D B1 Wil G2 Geetwo\n\n62) Simon: Sacrifice Y2 G2\nMove B1 G3a Betwo\nMove B1 G3a Betwo\nCatastrophe Betwo B\n\n63) wil: D G1 Wil Y2 Y2\n\n64) Simon: Trade Y2 G2 B3\n\twil: It is so over\n\n65) wil: B R3 Wil\n\tSimon: I feel like your opening is much stronger than mine all the time, but then you somehow lose grip on all the goodies >_>\n\n66) Simon: Build R3 B3\n\twil: I shoot from the hip and don't take enough consideration on moves...\n\n67) wil: T R3 G3 Wil\n\n68) Simon: Move R3 B3 Geetwo\n\n69) wil: B R3 Wil\n\n70) Simon: Attack B1 Geetwo\n\n71) wil: T G3 B3 Wil\n\n72) Simon: Build B1 Geetwo\n\n73) wil: M B3 Wil Y2\n\n74) Simon: Build B1 Geetwo\n\n75) wil: M R1 Wil G2\n\n76) Simon: Build Y1 B3\n\n77) wil: B Y2 G3\n\n78) Simon: Move G2 B3 Simon\n\n79) wil: M R2 G3 G2\nC G2 R\n\n80) Simon: Discover Y2 Simon R3 R3\n\n81) wil: B B2 Y2\n\n82) Simon: Sacrifice Y3 G2\nMove B1 Geetwo Wil\nMove B1 Geetwo Wil\nMove B1 Geetwo Wil\nCatastrophe Wil B\n\n83) wil: T B3 Y3 Y2\n\n84) Simon: Sacrifice Y3 Simon\nMove Y3 B3 Wil\nMove Y1 B3 Wil\nMove Y2 R3 Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 28868)\nVariants: "Hard time"\nStarted: 2015.12.12, Ended: 2015.12.15\nParticipants: endo (S), Simon (N)\nWinner: endo\n\n\nHomeworlds Online (SDG# 28872)\nVariants: "Hard time"\nStarted: 2015.12.12, Ended: 2016.1.31\nParticipants: MagicJohn (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R1 G3\n\n2) MagicJohn: Homeworld G1 B2 B3 *\n\tMagicJohn: I'm puzzled. I am trying to set up my homeworld move and the computer keeps telling me that there are no B3s left in the stash.... ??? Reason?\n\n3) ajo: Build G1 Ajo\n\n4) MagicJohn: Build B1 Magicjohn\n\tajo: Could you have been trying to do "homeworld b3 b3 b3"? That would do it. ;P I'm interested to see how you do with only two colors in your home system. I would think of that as a disadvantage... but we'll see. :)\n\tMagicJohn: I needed to leave a space between the "homeworld" directions and the "*" that the game requires to indicate that I knew I was only requesting two colors....\n\n5) ajo: Build G1 Ajo\n\n6) MagicJohn: Trade B1 Y1 Magicjohn\n\n7) ajo: Trade G3 Y3 Ajo\n\n8) MagicJohn: Build B1 Magicjohn\n\n9) ajo: Build G2 Ajo\n\n10) MagicJohn: Discover B1 Magicjohn G3 Outpost\n\n11) ajo: Discover G2 Ajo B2 Alpha\n\n12) MagicJohn: Build B1 Outpost\n\n13) ajo: Build G2 Alpha\n\n14) MagicJohn: Build B1 Magicjohn\n\n15) ajo: Trade G2 Y2 Alpha\n\n16) MagicJohn: Trade B3 R3 Magicjohn\n\n17) ajo: Build G2 Alpha\n\n18) MagicJohn: Build B2 Outpost\n\n19) ajo: Trade G2 R2 Alpha\n\n20) MagicJohn: Build B3 Magicjohn\n\n21) ajo: Build G2 Alpha\n\n22) MagicJohn: Trade B2 R2 Outpost\n\n23) ajo: Trade G2 B2 Alpha\n\n24) MagicJohn: Trade B3 G3 Magicjohn\n\n25) ajo: Discover B2 Alpha G3 Beta\n\n26) MagicJohn: Sacrifice Y1 Magicjohn\nDiscover B1 Outpost Y2 Toolies\n\n27) ajo: Build B3 Beta\n\n28) MagicJohn: Build B3 Outpost\n\n29) ajo: Trade B3 Y3 Beta\n\n30) MagicJohn: Sacrifice G3 Magicjohn\nBuild B3 Toolies\nBuild R1 Magicjohn\nBuild R1 Outpost\n\n31) ajo: Build R2 Alpha\n\n32) MagicJohn: Trade R1 Y1 Magicjohn\n\n33) ajo: Move R2 Alpha Beta\n\n34) MagicJohn: Build Y1 Magicjohn\n\n35) ajo: Build R1 Beta\n\n36) MagicJohn: Discover B1 Toolies Y1 Outback\n\n37) ajo: Build Y2 Beta\n\n38) MagicJohn: Trade R2 G2 Outpost\n\n39) ajo: Build Y3 Alpha\n\n\tMagicJohn: Sorry - wife is ill and my time priorities are there just now...\n\nHomeworlds Online (SDG# 28859)\nVariants: "Unrated"\nStarted: 2015.12.14, Ended: 2015.12.17\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) Felix: Homeworld G3 B2 Y3\n\twil: I'll try for 17 moves this time!\n\tFelix: Including my moves? :) What's the fastest you've ever won?\n\n3) wil: B G1 Wil\n\twil: One move is both sides moving... I've no clue...average games are 20-25...\n\twil: I think I've been beat in ten\n\n4) Felix: Build Y1 Felix\n\twil: You just kicked my butt in 15... I'm gonna last at least 17 with this go around\n\n5) wil: T G1 Y1 Wil\n\tFelix: I wouldn't say I kicked your butt. It was really close! Looking over the last game, I see where I think you could have turned the tables back on me on turn 12\n\tFelix: If you had traded your g3 for an r3 in your home system, I don't know if I could have overcome you, since I couldn't sacrifice my r2 at home. I may eventually have, but it would have been very tough.\n\tFelix: Good luck on 17 :) I'm just hoping I don't get beat in 10!\n\n6) Felix: Discover Y1 Felix G1 Olive\n\n7) wil: B Y2 Wil\n\n8) Felix: Build Y2 Olive\n\n9) wil: T Y1 R1 Wil\n\n10) Felix: Build Y1 Felix\n\n11) wil: D Y2 Wil G2 G2\n\n12) Felix: Trade Y1 R1 Felix\n\n13) wil: B G1 Wil\n\n14) Felix: Discover Y2 Olive B2 Grape\n\n15) wil: B G1 Wil\n\n16) Felix: Trade Y2 G2 Grape\n\n17) wil: D G1 Wil B2 B2\n\n18) Felix: M Y1 Olive Grape\n\n19) wil: T G1 B1 Wil\n\n20) Felix: Build G1 Grape\n\n21) wil: B B1 Wil\n\n22) Felix: Discover G1 Grape Y3 Banana\n\n23) wil: B G1 Wil\n\n24) Felix: Build G2 Grape\n\n25) wil: B G3 B2\n\n26) Felix: Build Y1 Grape\n\n27) wil: M B1 Wil G2\n\n28) Felix: Sacrifice G2 Grape\nBuild Y2 Grape\nBuild Y2 Felix\n\n29) wil: B Y3 G2\n\n30) Felix: Trade Y1 B1 Grape\n\n31) wil: M B1 Wil Grape\n\n32) Felix: Move B1 Grape Wil\n\n33) wil: A B1 Wil\n\n34) Felix: Build G2 Grape\n\twil: We thank you for the peace offering of the trade.ship... She is a little.small but quite nice.\n\n35) wil: S G3 Wil\nB G3 Wil\nB B3 Wil\nB B3 Grape\n\n36) Felix: Sacrifice Y2 Grape\nMove G2 Grape Wil\nMove G2 Grape Wil\nCatastrophe Wil Green\n\tFelix: ...uh oh.\n\tFelix: I think I'm learning that having green in your home system is a liability...\n\n37) wil: T B3 G3 Wil\n\twil: Yez, harder to create a factory\n\n38) Felix: Trade Y3 B3 Felix\n\twil: And I now have a queen factory so will be casually swooping up all the big guys\n\n39) wil: T B3 Y3 Grape\n\twil: Now that want nice\n\n40) Felix: Build G1 Banana\n\twil: Wasn't\n\n41) wil: B B3 G2\n\tFelix: I'm a fish out of water, flailing and gasping.\n\n42) Felix: Sacrifice R1 Felix\nAttack B1 Grape\n\n43) wil: S Y2 G2\nD G3 B2 R1 R1\nM G3 R1 Felix\n\n44) Felix: Sacrifice Y2 Felix\nPass\nPass\n\twil: Uh oh... Not a game for unarmed pacifists..\n\n45) wil: S R1 Wil\nA B3 Felix\n\twil: 23 moves...about average... I have gone over 40...but those were games I lost and just kept running and playing mosquito hoping for a mistake\n\n\nHomeworlds Online (SDG# 28878)\nVariants: "Unrated"\nStarted: 2015.12.14, Ended: 2015.12.30\nParticipants: kanzenryu (S), Felix (N)\nWinner: kanzenryu\n\n1) Felix: H B3 R2 G3\n\n2) kanzenryu: Homeworld B1 Y2 G3\n\n3) Felix: B G1 Felix\n\tkanzenryu: More fun ahoy!\n\n4) kanzenryu: Build G1 Kanzenryu\n\tFelix: Indeed! Here we go! Good luck to you, fleet commander!\n\n5) Felix: T G1 Y1 Felix\n\tkanzenryu: Fleet? What fleet? And certainly not near the Neutral Zone.\n\tFelix: Oh! Er.... I mean, of course I would never think of breaking the treaty! What are you even talking about? We are a peaceful people. Don't let this bright red war star fool you...\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) Felix: B G1 Felix\n\n8) kanzenryu: Build G1 Kanzenryu\n\n9) Felix: Discover G1 Felix B1 Ice\n\n10) kanzenryu: Discover Y1 Kanzenryu G3 Moon\n\n11) Felix: Build G1 Felix\n\n12) kanzenryu: Trade G1 B1 Kanzenryu\n\n13) Felix: B G1 Ice\n\n14) kanzenryu: Build G2 Kanzenryu\n\n15) Felix: Build G2 Ice\n\n16) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G2 Kanzenryu\nBuild G3 Kanzenryu\nBuild B2 Kanzenryu\n\n17) Felix: T G1 R1 Ice\n\n18) kanzenryu: Trade B2 R2 Kanzenryu\n\n19) Felix: Trade G1 Y1 Ice\n\n20) kanzenryu: Discover G2 Kanzenryu Y3 Party\n\n21) Felix: Build Y2 Ice\n\n22) kanzenryu: Move B1 Kanzenryu Party\n\n23) Felix: T Y2 B2 Ice\n\n24) kanzenryu: Build Y2 Moon\n\n25) Felix: B Y2 Felix\n\n26) kanzenryu: Build B2 Party\n\n27) Felix: Build Y3 Ice\n\n28) kanzenryu: Discover Y1 Moon G1 Soon\n\n29) Felix: Move Y1 Felix Soon\n\n30) kanzenryu: Build Y3 Moon\n\n31) Felix: B R1 Ice\n\n32) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G1 Party\nBuild R1 Kanzenryu\nBuild G3 Kanzenryu\n\n33) Felix: Move Y3 Ice Party\n\n34) kanzenryu: Sacrifice Y2 Moon\nMove B1 Party Ice\nMove B2 Party Ice\nCatastrophe Ice B\n\n35) Felix: Trade G1 R1 Felix\n\tkanzenryu: Party Ice\n\n36) kanzenryu: Discover G2 Party Y1 Brink\n\n37) Felix: Build Y2 Felix\n\n38) kanzenryu: Discover G1 Party B1 Peep\n\n39) Felix: Sacrifice R1 Felix\nAttack Y1 Soon\n\n40) kanzenryu: Move R1 Kanzenryu Moon\n\n41) Felix: T Y2 R2 Felix\n\n42) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G1 Brink\nBuild G2 Peep\nBuild G3 Kanzenryu\n\n43) Felix: B Y2 Felix\n\n44) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R1 Moon\nBuild R1 Kanzenryu\n\n45) Felix: M Y3 Party Peep\n\n46) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R3 Kanzenryu\nBuild Y3 Moon\n\n47) Felix: S Y2 Felix\nM Y1 Soon Moon\nM Y1 Soon Moon\nCatastrophe Moon Yellow\n\n48) kanzenryu: Discover R3 Kanzenryu Y3 More\n\tkanzenryu: Very easy to make a typo in this game...\n\n49) Felix: M R2 Felix Peep\n\tFelix: Indeed, indeed... Your factory is really giving you an edge in this one!\n\n50) kanzenryu: Sacrifice R1 Moon\nAttack R2 Peep\n\n51) Felix: Trade G3 R3 Felix\n\n52) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G1 Peep\nBuild G3 Brink\nBuild G3 Kanzenryu\n\n53) Felix: S R3 Felix\nA R2 Peep\nA G2 Peep\nA G1 Peep\n\n54) kanzenryu: Move G3 Brink Felix\n\n55) Felix: B Y1 Peep\n\n56) kanzenryu: Sacrifice R1 Kanzenryu\nAttack Y2 Felix\n\n\tFelix: Got me again. Good game!\n\tkanzenryu: If you don't mind I'd like to do a ladder challenge after this since every other person above me on the ladder declined.\n\tFelix: I'm game! I think I'm in a ladder challenge with someone else right now so challenge me when that's over. I will let you know.\n\nHomeworlds Online (SDG# 28728)\nVariants: "Hard time"\nStarted: 2015.12.15, Ended: 2015.12.17\nParticipants: endo (S), Felix (N)\nWinner: endo\n\n1) Felix: Homeworld G2 R1 B3\n\tFelix: Intermediate player here. I've reviewed some of your games and I'm impressed with your techniques! Hoping I can learn a thing or two by playing against you, and I hope I provide enough of a challenge for you to at least be entertained :) Have fun!\n\n2) endo: Homeworld Y1 B3 G3\n\n3) Felix: Build B1 Felix\n\n4) endo: Build G1 Endo\n\tendo: Hey, thanks :) I enjoy playing against all levels of Homeworlds players. If any questions come into your mind, don't be afraid to ask! Good luck, have fun!\n\n5) Felix: Trade B1 Y1 Felix\n\n6) endo: Trade G1 Y1 Endo\n\n7) Felix: Build Y2 Felix\n\n8) endo: Build Y2 Endo\n\n9) Felix: Build Y2 Felix\n\n10) endo: Discover Y1 Endo G2 Amc\n\n11) Felix: T Y1 G1 Felix\n\n12) endo: Sacrifice G3 Endo\nBuild Y1 Amc\nBuild Y3 Endo\nBuild Y3 Amc\n\n13) Felix: S Y2 Felix\nD Y2 Felix Y3 A1\nM Y2 A1 Amc\nCatastrophe Amc Yellow\n\n14) endo: Trade Y3 G3 Endo\n\n15) Felix: Build B1 Felix\n\n16) endo: Build G1 Endo\n\n17) Felix: Trade B1 Y1 Felix\n\n18) endo: Discover G1 Endo B2 Zorn\n\n19) Felix: Discover G1 Felix B3 Kress\n\n20) endo: Build G1 Endo\n\n21) Felix: Build B1 Felix\n\n22) endo: Build G2 Endo\n\n23) Felix: Trade B3 G3 Felix\n\n24) endo: Discover G2 Endo B2 Antichain\n\n25) Felix: Build G2 Kress\n\n26) endo: Build G3 Zorn\n\n27) Felix: Build Y1 Felix\n\n28) endo: Build Y2 Endo\n\n29) Felix: Sacrifice Y1 Felix\nDiscover G1 Kress Y2 Bannermene\n\n30) endo: Sacrifice Y2 Endo\nMove G3 Zorn Kress\nMove G3 Kress Felix\n\n31) Felix: Attack G3 Felix\n\n32) endo: Sacrifice Y2 Endo\nMove G1 Zorn Kress\nMove G1 Kress Felix\nCatastrophe Felix G\n\n33) Felix: Move G1 Bannermene Felix\n\n34) endo: Build G1 Antichain\n\tFelix: Yow! Nice going. I should have seen that coming.\n\n35) Felix: Build G2 Felix\n\n36) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild G3 Endo\nBuild G3 Antichain\n\tendo: The green situation was quite nasty in any case... Had you traded your G3, I would simply have built it and the larges would go 3-1 for me. You couldn't have moved it away either, because then I could invade with my extra large as usual.\r\n\r\nSituations like this are the reason I almost always play with a green ship. The problem with having your ship in some other color is not that you don't have a G3 (which you can obtain via trade), but that you DO have a green star, which will become a huge liability once you get the G3. Green is the color of the large you need in the early game. Once you get more larges, you can house the Y3's and R3's you'll then need at stars other than your homeworld, where your yellow or red half-star won't be a problem.\r\n\r\nI see a green ship is what you've been playing in all your previous games, I just thought I'd elaborate a bit on why it's important to do that :)\n\n37) Felix: Discover G1 Felix Y2 Obelisk\n\tFelix: Wow, thanks for the in-depth tip! That's really helpful, and I definitely get what you're talking about. I have noticed that players start with a green ship 90% of the time. When I play games like this, however, I often want to try to use less-used strategies and ideas. I think it's fun to "go against the grain" and do things differently. However, sometimes there's a very good reason nobody does things a certain way! And I can tell that having green in my home system is a big liability, so I'll avoid it in the future. Thanks very much for the tip. I have learned!\n\n38) endo: Trade G1 Y1 Endo\n\n39) Felix: Build Y2 Felix\n\n40) endo: Trade G3 R3 Antichain\n\n41) Felix: Move G2 Felix Obelisk\n\n42) endo: Trade G3 R3 Endo\n\n43) Felix: Build G1 Kress\n\n44) endo: Sacrifice Y1 Endo\nMove R3 Antichain Felix\n\n\tFelix: Good game! I learned some things :)\n\tendo: Thanks for the game, and good luck in your upcoming matches :)\n\nHomeworlds Online (SDG# 28892)\nVariants: "Hard time"\nStarted: 2015.12.15, Ended: 2015.12.19\nParticipants: endo (S), wil (N)\nWinner: endo\n\n1) wil: H Y2 B1 G3\n\twil: Stuck with the sparring partner again!\n\n2) endo: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\tendo: Hehe, have fun!\n\n4) endo: Build G1 Endo\n\n5) wil: T G1 Y1 Wil\n\n6) endo: Trade G1 Y1 Endo\n\n7) wil: B Y2 Wil\n\n8) endo: Build Y2 Endo\n\n9) wil: D Y1 Wil G3 G3\n\n10) endo: Discover Y1 Endo G2 Projection\n\n11) wil: B Y3 G3\n\n12) endo: Build Y3 Projection\n\n13) wil: D Y2 Wil Y3 Y3\n\n14) endo: Discover Y1 Projection B3 Injection\n\n15) wil: B G1 Wil\n\n16) endo: Build G1 Endo\n\n17) wil: T G1 R1 Wil\n\n18) endo: Trade G1 R1 Endo\n\n19) wil: B G1 Wil\n\n20) endo: Build G1 Endo\n\n21) wil: T G1 B1 Wil\n\n22) endo: Trade G1 B1 Endo\n\n23) wil: M B1 Wil G3\n\n24) endo: Move B1 Endo Projection\n\n25) wil: B B2 G3\n\n26) endo: Build B2 Projection\n\n27) wil: T B2 R2 G3\n\n28) endo: Trade B2 R2 Projection\n\n29) wil: B B2 G3\n\n30) endo: Build B2 Projection\n\n31) wil: T B2 R2 G3\n\n32) endo: Trade Y1 R1 Injection\n\n33) wil: D R2 G3 B2 B2\n\n34) endo: Sacrifice G3 Endo\nBuild R3 Endo\nBuild R3 Projection\nBuild R3 Injection\n\n35) wil: B G1 Wil\n\n36) endo: Trade R1 G1 Injection\n\n37) wil: M Y1 G3 B2\n\n38) endo: Trade Y2 G2 Endo\n\n39) wil: B B2 G3\n\n40) endo: Trade R3 G3 Projection\n\n41) wil: T B2 G2 G3\n\n42) endo: Discover G3 Projection B3 Terminal\n\n43) wil: S G2 G3\nB R1 B2\nB R3 G3\n\n44) endo: Build G1 Terminal\n\n45) wil: B B2 G3\n\n46) endo: Sacrifice Y3 Projection\nMove R3 Injection Wil\nMove G1 Injection Wil\nMove G1 Terminal Wil\nCatastrophe Wil G\n\n47) wil: S Y3 G3\nM R2 G3 Wil\nM R3 G3 Wil\nM B2 G3 Wil\nC Wil R\n\twil: Nice... Lol\n\twil: I was supposed to take out your reds last move! \n\n48) endo: Trade R1 Y1 Endo\n\twil: Ya got me again... \n\n\tendo: I do have a R2 outside my homeworld though... What you could have done was to deal with the catastrophe threat by trading or bringing in another large, which is why I probably should just have caused the catastrophe on my previous move with my G3, rather than using a move to get the G1. That would have created a situation where I have the only large.\n\twil: Hmmm thx...happy new year...and time for another try!\n\nHomeworlds Online (SDG# 28877)\nVariants: "Unrated"\nStarted: 2015.12.18, Ended: 2016.1.16\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\n2) Felix: H Y1 B2 G3\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: T G1 B1 Felix\n\n7) wil: B B2 Wil\n\n8) Felix: Build B2 Felix\n\n9) wil: T B1 Y1 Wil\n\n10) Felix: Trade B2 Y2 Felix\n\n11) wil: B G1 Wil\n\n12) Felix: Build G1 Felix\n\n13) wil: T G1 R1 Wil\n\n14) Felix: T G1 R1 Felix\n\n15) wil: B G1 Wil\n\n16) Felix: Build G1 Felix\n\n17) wil: D Y1 Wil G2 G2\n\n18) Felix: Discover Y2 Felix G3 Grass\n\n19) wil: D G1 Wil B2 B2\n\n20) Felix: Move Y2 Grass G2\n\n21) wil: D Y1 G2 G3 G3\n\n22) Felix: Discover G1 Felix B3 Ice\n\tFelix: I waved as I went by\n\n23) wil: B G1 Wil\n\n24) Felix: Build G2 Felix\n\n25) wil: B G2 B2\n\n26) Felix: B R1 Felix\n\n27) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R2 Wil\n\n28) Felix: S G3 Felix\nB G3 Felix\nB R2 Felix\nB Y1 G2\n\n29) wil: M R2 Wil B2\n\n30) Felix: D R1 Felix Y3 Sun\n\n31) wil: S G3 Wil\nB G3 Wil\nB R3 B2\nB Y2 G3\n\n32) Felix: M Y2 G2 Ice\n\n33) wil: T R3 Y3 B2\n\n34) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 G2\nBuild R3 Sun\n\n35) wil: S G3 Wil\nB G3 Wil\nB R3 B2\nB R3 Wil\n\n36) Felix: M B1 Felix Sun\n\n37) wil: M R3 Wil G2\n\n38) Felix: M Y2 G2 Wil\n\n39) wil: S R2 Wil\nA Y2 Wil\nA Y1 G2\n\n40) Felix: S G3 Felix\nB G3 Felix\nB B1 Sun\nPass\n\n41) wil: B R2 G2\n\n42) Felix: S Y2 Ice\nD B1 Sun Y2 Star\nM R3 Sun Star\n\n43) wil: M B2 Wil G2\n\n44) Felix: S G3 Felix\nB G3 Felix\nB B3 Sun\nB B3 Star\n\n45) wil: M R3 B2 Ice\n\n46) Felix: M R3 Star G3\n\n47) wil: S Y1 G3\nM Y2 G3 G2\n\n48) Felix: T R1 Y1 Sun\n\n49) wil: B R1 Wil\n\n50) Felix: M G2 Felix G3\n\n51) wil: M G2 B2 G3\n\n52) Felix: Sacrifice Y1 Sun\nMove G2 G3 Star\n\n53) wil: A G1 Ice\n\n54) Felix: Attack G2 G3\n\n55) wil: M G1 B2 G3\n\n56) Felix: Trade B1 Y1 Star\n\n57) wil: S Y2 G2\nM G1 Wil G2\nM G1 G2 G3\nC G3 G\n\n58) Felix: Trade B3 R3 Sun\n\n59) wil: B Y2 G2\n\n60) Felix: Build G1 Felix\n\n61) wil: T R3 G3 G2\n\n62) Felix: Sacrifice G1 Felix\nBuild R3 Sun\n\n63) wil: S Y2 G2\nM R2 G2 Sun\nM R2 B2 Sun\nC Sun R\n\n64) Felix: Move R2 Felix Sun\n\n65) wil: B Y2 G2\n\tFelix: I'm getting wrecked :)\n\n66) Felix: B G1 Felix\n\twil: I'm gonna try not to make a mistake and you are gonna try to find a chink in my armor...\n\n67) wil: T Y2 G2 G2\n\tFelix: That sums it up quite well!\n\n68) Felix: Sacrifice G3 Felix\nBuild G1 Star\nBuild G3 Felix\nBuild R2 Sun\n\n69) wil: S G2 G2\nB Y2 G2\nB R2 Ice\n\n70) Felix: Build R3 Felix\n\n71) wil: T G3 R3 G2\n\n72) Felix: D G3 Felix B3 Snow\n\n73) wil: T R3 G3 Ice\n\n74) Felix: B G2 Snow\n\n75) wil: B R3 Ice\n\n76) Felix: M Y1 Star Snow\n\twil: ....this is the end...\n\n77) wil: S Y3 B2\nM R3 Ice Felix\nM R2 Ice Felix\nM G3 Ice Felix\nC Felix R\n\n\tFelix: Well done!\n\twil: There werent any good ships left in the bank...might as well attack\n\twil: Googd game\n\nHomeworlds Online (SDG# 28862)\nVariants: "Hard time"\nStarted: 2015.12.21, Ended: 2015.12.24\nParticipants: Felix (S), SilentTitan (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 28933)\nVariants: "Hard time"\nStarted: 2015.12.21, Ended: 2015.12.28\nParticipants: endo (S), dlwillson (N)\nWinner: endo\n\n1) dlwillson: Homeworld Y3 B1 G3 Dlwillson\n\n2) endo: Homeworld Y1 B2 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) endo: Build G1 Endo\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) endo: Trade G1 B1 Endo\n\n7) dlwillson: B Y1 Dlwillson\n\n8) endo: Build B1 Endo\n\n9) dlwillson: D Y1 Dlwillson G2 Forest\n\n10) endo: Discover B1 Endo Y3 Foundation\n\n11) dlwillson: Build Y2 Dlwillson\n\n12) endo: Sacrifice G3 Endo\nBuild B2 Endo\nBuild B2 Foundation\nBuild B3 Foundation\n\n13) dlwillson: Discover Y1 Dlwillson G2 Stream\n\n14) endo: Discover B1 Endo Y3 Comprehension\n\n15) dlwillson: Build Y2 Dlwillson\n\n16) endo: Trade B3 G3 Foundation\n\n17) dlwillson: Build G1 Dlwillson\n\n18) endo: Sacrifice G3 Foundation\nBuild B3 Endo\nBuild B3 Foundation\nBuild B3 Comprehension\n\n19) dlwillson: B Y2 Forest\n\n20) endo: Trade B3 G3 Comprehension\n\n21) dlwillson: D Y2 Forest B3 Sky\n\n22) endo: Trade B3 R3 Endo\n\n23) dlwillson: T G3 B3 Dlwillson\n\n24) endo: Trade B1 G1 Foundation\n\n25) dlwillson: T Y2 R2 Dlwillson\n\n26) endo: Trade B2 Y2 Endo\n\n27) dlwillson: Discover G1 Dlwillson B2 Sea\n\n28) endo: Build G1 Comprehension\n\n29) dlwillson: Trade Y2 G2 Dlwillson\n\n30) endo: Sacrifice G3 Comprehension\nBuild G3 Foundation\nBuild G3 Foundation\nBuild G3 Comprehension\n\n31) dlwillson: S Y2 Sky\nM G1 Sea Foundation\nM Y1 Stream Comprehension\nC Foundation G\n\n32) endo: Sacrifice G3 Comprehension\nBuild B1 Comprehension\nBuild B2 Comprehension\nBuild B3 Foundation\n\n33) dlwillson: Sacrifice G2 Dlwillson\nBuild R1 Dlwillson\nBuild Y2 Comprehension\n\tdlwillson: Typo\n\n34) endo: Trade B2 Y2 Comprehension\nCatastrophe Comprehension Y\n\n35) dlwillson: Discover R2 Dlwillson B2 Sky\n\n36) endo: Discover B3 Foundation Y2 Collection\n\n37) dlwillson: Trade B3 G3 Dlwillson\n\tdlwillson: I need to improve my early game against you, so I am not playing out games where you have an insurmountable capital advantage...\n\n38) endo: Trade B3 G3 Foundation\n\tendo: I think you played much of our previous game accurately though... We were well into a somewhat complicated middlegame, when I finally gained any significant advantage with my economic trickery. Still, winning the game economically in the opening is my favorite strategy...\n\n39) dlwillson: Build Y1 Forest\n\n40) endo: Build B1 Foundation\n\n41) dlwillson: T R1 B1 Dlwillson\n\n42) endo: Sacrifice G3 Foundation\nBuild R1 Endo\nBuild B3 Foundation\nBuild B3 Collection\n\n43) dlwillson: M Y1 Forest Foundation\n\n44) endo: Move B3 Foundation Sky\n\n\tdlwillson: See you in a few weeks.\n\nHomeworlds Online (SDG# 28890)\nStarted: 2015.12.21, Ended: 2016.1.5\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) Felix: B G1 Felix\n\tFelix: Again! I must avenge my father :)\n\n4) ts52: Build G1 Ts52\n\tts52: :D Have a good game!\n\n5) Felix: T G1 Y1 Felix\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Felix: Build Y2 Felix\n\n8) ts52: Build Y2 Ts52\n\n9) Felix: D Y2 Felix G2 Grass\n\n10) ts52: Discover Y2 Ts52 G1 Robin\n\n11) Felix: D Y1 Felix B2 Ice\n\n12) ts52: Build G1 Ts52\n\n13) Felix: B Y2 Grass\n\n14) ts52: Build Y3 Robin\n\n15) Felix: M Y2 Grass Robin\n\n16) ts52: Discover Y3 Robin B2 Grover\n\n17) Felix: B Y3 Grass\n\n18) ts52: Trade Y1 R1 Ts52\n\n19) Felix: M Y3 Grass Robin\n\n20) ts52: Build Y1 Robin\nCatastrophe Robin Yellow\n\n21) Felix: B G1 Felix\n\n22) ts52: Move Y3 Grover Felix\n\n23) Felix: S G3 Felix\nB G1 Felix\nB Y1 Grass\nB Y2 Ice\n\n24) ts52: Trade Y3 R3 Felix\n\n\tFelix: Nice! Good game.\n\tts52: Thanks for the game. Happy to play another any tim.\n\nHomeworlds Online (SDG# 28841)\nVariants: "Unrated"\nStarted: 2015.12.30, Ended: 2016.1.17\nParticipants: Felix (S), kanzenryu (N)\nWinner: kanzenryu\n\n1) kanzenryu: Homeworld B1 Y3 G3\n\n2) Felix: H G3 B1 B3 *\n\tkanzenryu: Actually you are one spot up the ladder further than I can issue challenges\n\tFelix: Bummer! I look forward to your challenge. Soon...\n\n3) kanzenryu: Build G1 Kanzenryu\n\tFelix: I'm feeling crazy. Let's do this.\n\n4) Felix: B B1 Felix\n\tkanzenryu: I've played on of these before, and it was short and sharp.\n\tFelix: I've never done it. Should be fun!\n\n5) kanzenryu: Discover G1 Kanzenryu Y2 Mid\n\n6) Felix: T B1 Y1 Felix\n\n7) kanzenryu: Build G1 Mid\n\n8) Felix: B B1 Felix\n\n9) kanzenryu: Build G1 Kanzenryu\n\tFelix: I think I screwed that up...\n\n10) Felix: T B3 G3 Felix\n\n11) kanzenryu: Build G2 Mid\n\n12) Felix: T G3 R3 Felix\n\n13) kanzenryu: Trade G1 R1 Kanzenryu\n\n14) Felix: Move R3 Felix Mid\n\n15) kanzenryu: Move G2 Mid Felix\n\n16) Felix: B B2 Felix\n\n17) kanzenryu: Trade G2 B2 Felix\nCatastrophe Felix B\n\n18) Felix: Attack G1 Mid\n\tFelix: Yow. I somehow didn't see that coming. Thought you'd sacrifice your red instead.\n\tFelix: Nice going!\n\n19) kanzenryu: Move G1 Mid Felix\n\n20) Felix: S R3 Mid\nA G1 Felix\nPass\nPass\n\tkanzenryu: And planning more...\n\n21) kanzenryu: Build R1 Kanzenryu\n\n22) Felix: Build Y1 Felix\n\n23) kanzenryu: Move G3 Kanzenryu Mid\n\n24) Felix: B G1 Felix\n\n25) kanzenryu: Move G3 Mid Felix\nCatastrophe Felix G\n\tFelix: Good one again! I can't seem to get the edge on you :) Happy to rematch any time. I think I may have moved just out of your reach on the ladder though...\n\tkanzenryu: Trying to get a different game going on the ladder, but it's not happening yet...\n\n\nHomeworlds Online (SDG# 28919)\nVariants: "Unrated"\nStarted: 2015.12.30, Ended: 2016.1.29\nParticipants: wil (S), kanzenryu (N)\nWinner: wil\n\n1) kanzenryu: Homeworld R1 B2 G3\n\n2) wil: H Y3 B1 G3\n\twil: Good luck, and thanx for the game...\n\n3) kanzenryu: Build G1 Kanzenryu\n\n4) wil: B G1 Wil\n\tkanzenryu: Thanks for the game, I still love this one.\n\n5) kanzenryu: Trade G1 Y1 Kanzenryu\n\n6) wil: Trade G1 B1 Wil\n\n7) kanzenryu: Build Y1 Kanzenryu\n\n8) wil: B B1 Wil\n\n9) kanzenryu: Discover Y1 Kanzenryu G3 Out\n\n10) wil: D B1 Wil B2 B2\n\n11) kanzenryu: Build Y1 Out\n\n12) wil: B B2 Wil\n\n13) kanzenryu: Build Y2 Kanzenryu\n\n14) wil: D B1 Wil G2 G3\n\n15) kanzenryu: Build Y2 Out\n\n16) wil: S G3 Wil\nB B3 Wil\nB B3 G3\nB B3 B2\n\n17) kanzenryu: Build G1 Kanzenryu\n\n18) wil: T B3 Y3 G3\n\tkanzenryu: I'm facing the Blue Man Group\n\n19) kanzenryu: Discover Y2 Out G2 Along\n\twil: Tis a bmg queen factory.... I am about to take all the biggins\n\n20) wil: T B3 Y3 B2\n\n21) kanzenryu: Discover Y2 Kanzenryu B3 Bigblue\n\n22) wil: B B3 G3\n\n23) kanzenryu: Build Y2 Along\n\n24) wil: T B3 R3 G3\n\n25) kanzenryu: Trade G1 R1 Kanzenryu\n\n26) wil: B B3 G3\n\n27) kanzenryu: Move Y2 Along Wil\n\n28) wil: M R3 G3 Wil\n\n29) kanzenryu: Sacrifice Y2 Bigblue\nMove Y1 Out Along\nMove Y1 Along Wil\n\n30) wil: A Y2 Wil\n\n31) kanzenryu: Move Y2 Along Wil\nCatastrophe Wil Y\n\twil: Welcome fuel supply ships from far lands, is this a peace offering, so sweet of you!\n\tkanzenryu: Whoops, it's getting crowded in here\n\n32) wil: T B3 G3 Wil\n\twil: Oh it was a trap...you rolled fully loaded tankers into my homeworld??\n\n33) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: Not so much a trap as I can't think of anything else to do\n\n34) wil: T B3 R3 G3\n\n35) kanzenryu: Build G1 Kanzenryu\n\twil: I gotta admit....the view from your end must be a little scary...\n\n36) wil: B G1 Wil\n\tkanzenryu: Like most of my games...\n\n37) kanzenryu: Discover G1 Kanzenryu Y3 Blob\n\n38) wil: M R3 G3 Blob\n\n39) kanzenryu: Build G2 Blob\n\twil: This is the end...two moves to mate\n\n40) wil: S Y3 G3\nM R3 Blob Kanzenryu\nM Y3 B2 Blob\nM Y3 Blob Kanzenryu\n\tkanzenryu: I can't see how you can do it in only two moves... Should be educational.\n\twil: You are correct it's more than two moves but its inevitable\n\n\tkanzenryu: Ah, I didn't think of you attacking with different colours. Thanks for the game!\n\twil: It is the old you take one I'll take three ploy...used when one has larger attack ships...\n\nHomeworlds Online (SDG# 28891)\nVariants: "Hard time"\nStarted: 2015.12.30, Ended: 2016.1.27\nParticipants: kanzenryu (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld R1 B3 G3\n\n2) kanzenryu: Homeworld B1 Y2 G3\n\n3) endo: Build G1 Endo\n\tkanzenryu: Ready for more\n\n4) kanzenryu: Build G1 Kanzenryu\n\tendo: Good luck, have fun!\n\n5) endo: Trade G1 Y1 Endo\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) endo: Build G1 Endo\n\n8) kanzenryu: Discover Y1 Kanzenryu G3 Jeep\n\n9) endo: Trade G1 B1 Endo\n\n10) kanzenryu: Build G1 Kanzenryu\n\n11) endo: Build B1 Endo\n\n12) kanzenryu: Build G1 Kanzenryu\n\n13) endo: Discover B1 Endo Y2 Open\n\n14) kanzenryu: Discover G1 Kanzenryu B3 Bigblue\n\n15) endo: Build B2 Endo\n\n16) kanzenryu: Trade G1 R1 Kanzenryu\n\n17) endo: Trade B2 R2 Endo\n\n18) kanzenryu: Build G1 Kanzenryu\n\n19) endo: Build B2 Endo\n\n20) kanzenryu: Discover G1 Kanzenryu B3 Other\n\n21) endo: Discover B2 Endo G2 Dense\n\n22) kanzenryu: Build G1 Kanzenryu\n\n23) endo: Build G2 Endo\n\n24) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G2 Other\nBuild G3 Kanzenryu\nBuild R1 Kanzenryu\n\n25) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild B2 Open\nBuild B2 Open\n\n26) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R2 Kanzenryu\nBuild Y1 Jeep\n\n27) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y2 Endo\nBuild Y3 Endo\n\n28) kanzenryu: Discover R2 Kanzenryu Y3 Sun\n\n29) endo: Sacrifice Y2 Endo\nMove Y1 Endo Dense\nMove R2 Endo Open\n\n30) kanzenryu: Discover Y1 Jeep R2 Brink\n\n31) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y2 Endo\nBuild Y3 Dense\n\n32) kanzenryu: Sacrifice G2 Other\nBuild G2 Other\nBuild R3 Sun\n\n33) endo: Sacrifice G2 Endo\nBuild G2 Endo\nBuild R3 Open\n\n34) kanzenryu: Move G1 Kanzenryu Sun\n\n35) endo: Move R2 Open Jeep\n\n36) kanzenryu: Move Y1 Jeep Brink\n\n37) endo: Build R3 Jeep\n\n38) kanzenryu: Move R1 Kanzenryu Bigblue\n\n39) endo: Move Y3 Endo Brink\n\n\tkanzenryu: You've got me completely locked out. Thanks!\n\nHomeworlds Online (SDG# 28767)\nVariants: "Hard time"\nStarted: 2015.12.30, Ended: 2016.2.5\nParticipants: Simon (S), kanzenryu (N)\nWinner: Simon\n\n1) kanzenryu: Homeworld R1 B2 G3\n\n2) Simon: Homeworld B3 Y1 G3\n\n3) kanzenryu: Build G1 Kanzenryu\n\tSimon: Have fun, have fun!\n\n4) Simon: Build G1 Simon\n\tkanzenryu: That's why I play\n\n5) kanzenryu: Trade G1 Y1 Kanzenryu\n\n6) Simon: Trade G1 R1 Simon\n\n7) kanzenryu: Build Y1 Kanzenryu\n\n8) Simon: Build R1 Simon\n\n9) kanzenryu: Build Y2 Kanzenryu\n\n10) Simon: Discover R1 Simon B2 B2\n\n11) kanzenryu: Discover Y2 Kanzenryu G3 First\n\n12) Simon: Build R2 Simon\n\n13) kanzenryu: Build Y2 First\n\n14) Simon: Discover R2 Simon G2 G2\n\n15) kanzenryu: Discover Y2 First G2 Med\n\n16) Simon: Build R2 Simon\n\n17) kanzenryu: Trade Y1 B1 Kanzenryu\n\n18) Simon: Sacrifice G3 Simon\nBuild R2 G2\nBuild R3 Simon\nBuild R3 B2\n\n19) kanzenryu: Trade G3 R3 Kanzenryu\n\n20) Simon: Trade R3 G3 Simon\n\n21) kanzenryu: Trade B1 G1 Kanzenryu\n\n22) Simon: Build R3 Simon\n\tkanzenryu: I did not think that through...\n\n23) kanzenryu: Build Y1 Kanzenryu\n\tSimon: Hmm, countering monopolies can take several turns with specific order of moves.\n\n24) Simon: Trade R3 G3 B2\n\n25) kanzenryu: Build R3 Kanzenryu\n\n26) Simon: Build G1 B2\n\n27) kanzenryu: Move R3 Kanzenryu First\n\n28) Simon: Move R3 Simon Med\n\n29) kanzenryu: Discover Y2 Med G1 Back\n\n30) Simon: Build G2 Simon\n\n31) kanzenryu: Build Y2 First\n\n32) Simon: Trade G3 Y3 B2\n\n33) kanzenryu: Build Y3 Kanzenryu\n\n34) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y3 B2\nBuild G3 B2\n\n35) kanzenryu: Trade Y1 B1 Kanzenryu\n\n36) Simon: Discover Y3 B2 B3 B3\n\n37) kanzenryu: Move B1 Kanzenryu First\n\n38) Simon: Trade G1 B1 B2\n\n39) kanzenryu: Discover Y2 First B2 Up\n\n40) Simon: Sacrifice G3 Simon\nBuild G1 B2\nBuild G3 Simon\nBuild Y1 B2\n\n41) kanzenryu: Move Y2 Back Up\n\n42) Simon: Move R2 Simon Up\n\n43) kanzenryu: Sacrifice Y2 First\nMove Y2 Up Simon\nMove Y2 Up Simon\n\n44) Simon: Sacrifice G3 Simon\nBuild G1 B2\nBuild G3 Simon\nBuild Y2 B3\n\n45) kanzenryu: Sacrifice Y3 Kanzenryu\nMove Y1 Kanzenryu B3\nMove Y1 B3 G2\nMove Y1 G2 Simon\nCatastrophe Simon Y\n\n46) Simon: Discover B1 B2 Y3 Y3\n\tkanzenryu: Does it show that I have no ideas? ;-)\n\tSimon: It's not at all clear. I have more pieces, but must make two invasions now while I can't allow you to make even one.\n\n47) kanzenryu: Build B1 First\n\n48) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 B2\nBuild Y1 B3\n\n\tkanzenryu: I'm locked out of yellow... not good. Thanks for the game.\n\tSimon: gg\n\nHomeworlds Online (SDG# 28934)\nStarted: 2015.12.30, Ended: 2016.1.19\nParticipants: kanzenryu (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) kanzenryu: Homeworld Y1 B2 G3\n\n3) ts52: Build G1 Ts52\n\n4) kanzenryu: Build G1 Kanzenryu\n\n5) ts52: Trade G1 B1 Ts52\n\n6) kanzenryu: Trade G1 Y1 Kanzenryu\n\n7) ts52: Build B1 Ts52\n\n8) kanzenryu: Build G1 Kanzenryu\n\n9) ts52: Discover B1 Ts52 G2 Robin\n\n10) kanzenryu: Discover G1 Kanzenryu B3 Bigblue\n\n11) ts52: Build B2 Robin\n\n12) kanzenryu: Build G1 Bigblue\n\n13) ts52: Build B2 Ts52\n\n14) kanzenryu: Trade G1 Y1 Bigblue\n\n15) ts52: Build B3 Robin\n\n16) kanzenryu: Build Y2 Bigblue\n\n17) ts52: Trade B3 Y3 Robin\n\n18) kanzenryu: Trade Y2 R2 Bigblue\n\n19) ts52: Trade B2 R2 Robin\n\n20) kanzenryu: Build Y2 Bigblue\n\n21) ts52: Build B2 Robin\n\n22) kanzenryu: Discover Y1 Kanzenryu B3 Other\n\n23) ts52: Build B3 Robin\n\n24) kanzenryu: Build G1 Kanzenryu\n\n25) ts52: Discover B2 Robin Y3 Bigbird\n\n26) kanzenryu: Discover Y1 Bigblue G2 Peep\n\n27) ts52: Trade B3 G3 Robin\n\n\tkanzenryu: I can see I'm being crushed in this game... no real point in dragging it out. Thanks!\n\nHomeworlds Online (SDG# 28978)\nVariants: "Hard time"\nStarted: 2016.1.1, Ended: 2016.1.24\nParticipants: endo (S), wil (N)\nWinner: endo\n\n1) wil: H Y2 B1 G3\n\n2) endo: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\tendo: Happy new year, and GLHF\n\n4) endo: Build G1 Endo\n\n5) wil: T G1 Y1 Wil\n\n6) endo: Trade G1 Y1 Endo\n\n7) wil: B Y2 Wil\n\n8) endo: Build Y2 Endo\n\n9) wil: D Y1 Wil G3 G3\n\n10) endo: Discover Y1 Endo G2 Diamond\n\n11) wil: B Y3 G3\n\n12) endo: Build Y3 Diamond\n\n13) wil: D Y2 Wil Y3 Y3\n\n14) endo: Build G1 Endo\n\n15) wil: B G1 Wil\n\n16) endo: Trade G1 R1 Endo\n\n17) wil: T G1 R1 Wil\n\n18) endo: Build G1 Endo\n\n19) wil: B G1 Wil\n\n20) endo: Trade G1 B1 Endo\n\n21) wil: T G1 B1 Wil\n\n22) endo: Move B1 Endo Diamond\n\n23) wil: M B1 Wil G3\n\n24) endo: Build B2 Diamond\n\n25) wil: B B2 G3\n\n26) endo: Discover B1 Diamond G1 Club\n\n\twil: Oops\n\nHomeworlds Online (SDG# 29013)\nVariants: "Unrated"\nStarted: 2016.1.8, Ended: 2016.2.10\nParticipants: Tamiel (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B3 Y2 G3\n\n2) Tamiel: Homeworld Y1 B2 G3\n\n3) Felix: Build G1 Felix\n\n4) Tamiel: Build G1 Tamiel\n\tFelix: Welcome back. I hope you have a good game!\n\n5) Felix: Trade G1 Y1 Felix\n\tTamiel: Thank you, you too.\n\n6) Tamiel: Build G1 Tamiel\n\n7) Felix: B G1 Felix\n\n8) Tamiel: Discover G1 Tamiel Y3 Gliesse1\n\n9) Felix: D G1 Felix B1 Ice\n\tTamiel: I'll be away until Monday. I don't think I'll be able to make a move until then. Sorry for the delay.\n\tFelix: That's okay! I will wait a day or two for my move so that you have more time on your limit.\n\n10) Tamiel: Build G2 Gliesse1\n\n11) Felix: Build G2 Felix\n\tTamiel: Thank you.\n\n12) Tamiel: Sacrifice G3 Tamiel\nBuild G2 Gliesse1\nBuild G3 Tamiel\nBuild G3 Tamiel\n\n13) Felix: Trade G2 Y2 Felix\n\n14) Tamiel: Trade G3 Y3 Tamiel\n\tFelix: Good move! I thought at first that it was unwise but I see now that it works greatly in your favor!\n\n15) Felix: Build G2 Felix\n\tTamiel: I always keep my eyes open for possible sacrifices. Mostly as a defensive measure. \n\tFelix: Ah, but now I can sacrifice my Y2 in my homeworld and move my G1 from ice to your homeward and cause a catastrophe there. Do you want to take your move back and try something else?\n\tTamiel: I thought you cannot move g1 from ice because there is no yellow color there. I've reread the sacrifice rule and realized my mistake. I will take back the last move. Thank you for allowing it and sorry for my lapse of judgement regarding the rules of play.\n\n16) Tamiel: Move G2 Gliesse1 Ice\n\tFelix: That's okay! It does take a little while to learn all of the ins and outs of the rules. And I am still learning them myself! The sacrifice lets you move any ship in any of your systems.\n\n17) Felix: T G1 R1 Ice\n\n18) Tamiel: Move G2 Gliesse1 Ice\n\n19) Felix: M Y2 Felix Ice\n\n20) Tamiel: Sacrifice Y3 Tamiel\nMove G2 Ice Felix\nMove G2 Ice Felix\nPass\nCatastrophe Felix Green\n\n21) Felix: Trade Y1 G1 Felix\n\n22) Tamiel: Build G2 Tamiel\n\n23) Felix: Build G2 Felix\n\tFelix: Ouch! Nice move.\n\n24) Tamiel: Trade G2 B2 Tamiel\n\n25) Felix: Move G1 Felix Ice\n\n26) Tamiel: Build G2 Gliesse1\n\n27) Felix: Move G1 Ice Gliesse1\n\n28) Tamiel: Move B2 Tamiel Gliesse1\n\n29) Felix: Move G1 Gliesse1 Tamiel\n\n30) Tamiel: Trade G3 R3 Tamiel\n\n31) Felix: Discover G1 Tamiel B3 Rim\n\n32) Tamiel: Discover G1 Gliesse1 B1 Gliesse2\n\n33) Felix: Move Y2 Ice Gliesse1\n\n34) Tamiel: Build R1 Tamiel\n\n35) Felix: Move Y2 Gliesse1 Gliesse2\n\n36) Tamiel: Trade R3 G3 Tamiel\n\n37) Felix: Sacrifice R1 Ice\nAttack G1 Gliesse2\n\n38) Tamiel: Move R1 Tamiel Rim\n\n39) Felix: Build G2 Rim\n\n40) Tamiel: Attack G1N Rim\n\n41) Felix: Sacrifice Y2 Gliesse2\nMove G2 Rim Tamiel\nDiscover G1 Gliesse2 Y3 Brink\n\n42) Tamiel: Trade G3 R3 Tamiel\n\n43) Felix: Sacrifice G2 Tamiel\nBuild G2 Brink\nBuild G3 Felix\n\n44) Tamiel: Sacrifice G2 Gliesse1\nBuild G2 Rim\nBuild G3 Rim\n\n45) Felix: Build G3 Felix\n\n46) Tamiel: Move R3 Tamiel Brink\n\n47) Felix: Move G2 Brink Tamiel\n\n48) Tamiel: Trade G2 Y2 Rim\n\n49) Felix: S G2 Felix\nB G2 Tamiel\nB G2 Tamiel\nC Tamiel Green\n\n\tTamiel: Ooops, I made a mistake.\n\tFelix: That's unfortunate! I hate when I make them!\n\tFelix: Good game though! I'm happy to rematch any time.\n\nHomeworlds Online (SDG# 29006)\nStarted: 2016.1.8, Ended: 2016.1.21\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Felix: Homeworld B3 Y2 G3\n\tts52: Have a good game!\n\tFelix: Thanks, you too! I appreciate you accepting my challenges as you are helping me learn to be a better player!\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\tts52: Always happy to play more homeworlds. I need to work on convince my local friends to play so I can play more irl games.\n\tFelix: Same, haha. I can't even get my wife to play with me!\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\tts52: My wife has some deep aversion to pyramid games. Not really sure why. :(\n\n7) ts52: Build B2 Ts52\n\tFelix: Mine tolerates some of the simper games, but no homeworlds, sadly!\n\n8) Felix: Build B2 Felix\n\n9) ts52: Discover B2 Ts52 G2 Kermit\n\n10) Felix: Discover B2 Felix G1 Grape\n\n11) ts52: Build G1 Ts52\n\n12) Felix: Build B2 Grape\n\n13) ts52: Build B3 Kermit\n\n14) Felix: Build B3 Grape\n\n15) ts52: Trade B3 Y3 Kermit\n\n16) Felix: Trade B2 Y2 Grape\n\n17) ts52: Discover B1 Ts52 G2 Oscar\n\n18) Felix: Discover B1 Felix G1 Olive\n\n19) ts52: Build Y1 Kermit\n\n20) Felix: B Y1 Grape\n\n21) ts52: Trade Y1 R1 Kermit\n\n22) Felix: Trade Y1 R1 Grape\n\n23) ts52: Build Y1 Kermit\n\n24) Felix: Trade B1 Y1 Olive\n\n25) ts52: Build B1 Oscar\n\n26) Felix: Discover Y1 Olive R2 Apple\n\n27) ts52: Discover G1 Ts52 Y2 Bigbird\n\n28) Felix: Build G1 Felix\n\n29) ts52: Build G2 Ts52\n\n30) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Grape\nBuild Y3 Apple\n\n31) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Bigbird\nBuild B2 Kermit\n\n32) Felix: B R1 Grape\n\n33) ts52: Discover B2 Kermit R3 Elmo\n\n34) Felix: Move Y2 Grape Oscar\n\n35) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Kermit\nBuild R2 Kermit\n\n36) Felix: Move R1 Grape Felix\n\n37) ts52: Sacrifice B1 Oscar\nTrade G3 R3 Bigbird\n\n38) Felix: S G3 Felix\nB G3 Felix\nB R2 Felix\nB R3 Grape\n\n39) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Bigbird\nBuild B1 Elmo\n\n40) Felix: M Y2 Oscar Ts52\n\n41) ts52: Move Y3 Kermit Elmo\n\n42) Felix: M Y1 Apple Ts52\n\n43) ts52: Sacrifice Y1 Kermit\nDiscover R3 Bigbird Y1 Zoe\n\n44) Felix: Sacrifice Y3 Apple\nDiscover Y1 Grape R2 Apple\nMove Y1 Apple Ts52\nMove B3 Grape Kermit\n\n45) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild Y3 Elmo\nBuild R2 Zoe\n\n46) Felix: S R2 Felix\nA R2 Kermit\nA B3 Kermit\nCatastrophe Ts52 Yellow\n\tFelix: Crud. I forgot to catastrophe. Whoops.\n\tts52: You can undo and redo if you want. I'll give it a couple hours before I move. \n\tFelix: I already undid a mistake I made on this turn, and the system only allows one redo, I think. But that's okay. I will just press on! Thanks very much for offering.\n\n47) ts52: Move B1 Elmo Kermit\nCatastrophe Kermit Blue\n\tts52: Fair enough. It will be interesting to see how this plays out.\n\n48) Felix: M G3 Felix Ts52\n\tts52: Huh, I missed that one.\n\n49) ts52: Sacrifice Y3 Elmo\nMove Y3 Elmo Ts52\nMove G1 Bigbird Ts52\nMove R3 Zoe Felix\nCatastrophe Ts52 Green\n\n50) Felix: B R2 Felix\n\tFelix: Interesting indeed! I think I may have gotten you... Unless I'm overlooking something. And I likely am!\n\tts52: This certainly doesn't look good, but I may be able to at least forestall the inevitable another turn or two.\n\n51) ts52: Sacrifice R2 Zoe\nAttack R2 Felix\nAttack R1 Felix\n\tFelix: Oh dear. I think you managed to turn the tables back on me. I overextended and couldn't finish the job. Well done! I think I'm done for now\n\n\tFelix: Close one. Good game!\n\tts52: Very close. Thanks for the game. Well played!\n\nHomeworlds Online (SDG# 29032)\nVariants: "Hard time"\nStarted: 2016.1.12, Ended: 2016.3.5\nParticipants: Felix (S), Salmonax (N)\nWinner: Felix\n\n1) Salmonax: Homeworld B3 R2 G3\n\n2) Felix: Homeworld Y3 B1 G3\n\tFelix: Have a good game!\r\n\n\n3) Salmonax: Build G1 Salmonax\n\n4) Felix: Build G1 Felix\n\tSalmonax: You too\n\n5) Salmonax: Trade G1 Y1 Salmonax\n\n6) Felix: Trade G1 B1 Felix\n\n7) Salmonax: Build G1 Salmonax\n\n8) Felix: B B1 Felix\n\n9) Salmonax: Build Y1 Salmonax\n\n10) Felix: Discover B1 Felix G2 Grass\n\n11) Salmonax: Trade Y1 R1 Salmonax\n\n12) Felix: Build B2 Grass\n\n13) Salmonax: Discover G1 Salmonax Y1 Mars\n\n14) Felix: T B2 Y2 Grass\n\n15) Salmonax: Build G1 Mars\n\n16) Felix: Build B2 Grass\n\n17) Salmonax: Move G1 Mars Grass\n\n18) Felix: Trade B2 R2 Grass\n\n19) Salmonax: Sacrifice G3 Salmonax\nBuild G1 Grass\nBuild G2 Grass\nBuild G2 Mars\nCatastrophe Grass G\n\n20) Felix: B B1 Felix\n\n21) Salmonax: Move G1 Mars Salmonax\n\n22) Felix: D B1 Felix G2 Rim\n\tFelix: Woah. Bold move!\n\tSalmonax: Let's see how it goes. =)\n\n23) Salmonax: Move G2 Mars Rim\n\tFelix: Indeed! Should be interesting:)\n\n24) Felix: Sacrifice G3 Felix\nBuild B2 Rim\nBuild B2 Rim\nBuild B2 Felix\n\n25) Salmonax: Build G1 Rim\n\n26) Felix: Trade B2 R2 Felix\n\n27) Salmonax: Build G1 Rim\n\n28) Felix: Sacrifice B2 Rim\nTrade R2 G2 Felix\nTrade B1 R1 Felix\n\n29) Salmonax: Build G3 Salmonax\nCatastrophe Rim G\n\n30) Felix: Build G1 Felix\n\n31) Salmonax: Trade G1 B1 Salmonax\n\tFelix: Oh, that was clever! I was wondering why you didn't catastrophe. I should have...\n\n32) Felix: Trade G1 B1 Felix\n\tSalmonax: I wasn't sure that would work. =)\n\n33) Salmonax: Discover B1 Salmonax G1 Greenone\n\tFelix: I like unconventional strategies like that, and I will remember that one! Once, I intentionally blew up half of my own homeworld in order to immediately put some of my ships within one jump of my opponents homeworld. It ended up working against me, ultimately, but it did cause him react to the immediate threat :)\n\n34) Felix: B B2 Felix\n\n35) Salmonax: Build B2 Greenone\n\n36) Felix: D B1 Felix G2 Hope\n\n37) Salmonax: Build Y1 Salmonax\n\n38) Felix: Sacrifice G2 Felix\nBuild B2 Hope\nBuild B3 Felix\n\n39) Salmonax: Build B3 Greenone\n\n40) Felix: Sacrifice B2 Felix\nTrade B3 G3 Felix\nTrade B2 Y2 Hope\n\n41) Salmonax: Trade B3 R3 Greenone\n\n42) Felix: Build B2 Hope\n\n43) Salmonax: Move Y1 Salmonax Greenone\n\n44) Felix: Discover B2 Hope G1 Rim\n\n45) Salmonax: Move R3 Greenone Hope\n\n46) Felix: Move Y2 Hope Rim\n\n47) Salmonax: Attack B1 Hope\n\n48) Felix: Build Y1 Rim\n\n49) Salmonax: Move Y1 Salmonax Rim\n\n50) Felix: Build B2 Rim\n\n51) Salmonax: Build Y2 Rim\nCatastrophe Rim Yellow\n\n52) Felix: T B2 Y2 Rim\n\n53) Salmonax: Build B2 Hope\n\n54) Felix: B B3 Rim\n\n55) Salmonax: Build B3 Hope\n\n56) Felix: M B2 Rim Hope\nC Hope Blue\n\n57) Salmonax: Trade B2 R2 Greenone\n\n58) Felix: B G1 Felix\n\tSalmonax: Ah, I should have done that in greenone instead.\n\n59) Salmonax: Build G2 Salmonax\n\tFelix: Yeah, probably. I always overlook stuff like that!\n\n60) Felix: D G1 Felix B2 Ichor\n\n61) Salmonax: Discover B1 Greenone G2 Greentwo\n\n62) Felix: Build G3 Ichor\n\n63) Salmonax: Move R2 Greenone Ichor\n\n64) Felix: Sacrifice R1 Felix\nAttack R2 Ichor\n\n65) Salmonax: Sacrifice Y1 Greenone\nMove R3 Hope Felix\n\n66) Felix: Sacrifice R2 Ichor\nAttack R3 Felix\nPass\n\n67) Salmonax: Trade G2 Y2 Salmonax\n\n68) Felix: Trade G1 Y1 Ichor\n\tSalmonax: Man, I didn't see that R2 at all...\n\tSalmonax: Man, I didn't see that R2 at all...\n\tFelix: I thought you had me for a moment. That was scary!\n\n69) Salmonax: Build Y1 Salmonax\n\n70) Felix: Move G3 Ichor Rim\n\n71) Salmonax: Build B1 Greentwo\n\tFelix: Regardless of how this turns out, I've really enjoyed playing against you and I'd love to have a rematch, ladder or otherwise. I feel like our skill levels are pretty close\n\tFelix: Everyone else on here destroys me...\n\n72) Felix: Sacrifice Y2 Rim\nMove B3 Rim Salmonax\nMove G3 Rim Salmonax\n\tSalmonax: Yeah, this is pretty fun. =)\n\n73) Salmonax: Build B2 Greentwo\n\n74) Felix: S R3 Felix\nA G3 Salmonax\nA Y2 Salmonax\nA R1 Salmonax\n\tFelix: I think I may have you now.... unless I'm overlooking something.\n\tSalmonax: Not immediately, but I think so.\n\n75) Salmonax: Attack R1 Salmonax\n\n76) Felix: Trade G3 R3 Salmonax\n\n77) Salmonax: Sacrifice Y1 Salmonax\nMove B2 Greentwo Felix\n\n78) Felix: A R1 Salmonax\n\tSalmonax: GG\n\n\tFelix: You too! Very close and exciting. I'd love to have a rematch!\n\nHomeworlds Online (SDG# 28961)\nVariants: "Unrated"\nStarted: 2016.1.18, Ended: 2016.3.12\nParticipants: wil (S), Ottia (N)\nWinner: Ottia\n\n1) Ottia: Homeworld B2 G3 R3\n\n2) wil: H Y3 B1 G3\n\tOttia: Good morning again, Wil! It's my first game, I guarantee that here I won't be playing too quickly (grin), should I make any mistakes please let me know, I'll apologise and correct immediately\n\twil: Do I know you? \n\n3) Ottia: Build R1 Ottia\n\twil: First battle you have is G in your homeworld star...keeps you from a factory at home...not insurmountable... But troublesome\n\tOttia: If half a game of Blam! is knowing each other then we do, Sir. My pleasure. Now let's see what to do next (thanks for the advice, by the way!).\n\n4) wil: B G1 Wil\n\twil: Ah...okee... And no problem...I've played that...\n\n5) Ottia: Trade R1 Y1 Ottia\n\n6) wil: T G1 B1 Wil\n\tOttia: Goodness, you make it sound difficult HAHAHAHA... I'll add some egg yolk to my system.\n\n7) Ottia: Discover Y1 Ottia G1 Ashikawa\n\n8) wil: B B1 Wil\n\n9) Ottia: Build R1 Ottia\n\twil: Normally I would build whatever color you built to keep up...but their were only two pawns and two drones in the blue bank...which meant to me I could get to drones and queens in blue and hopefully swap for yellow queens....so I entered the race rather than matching....your moving out yourpawn means you can't build more yellow at home right away .. Which puts me another step closer to winning the race..\n\twil: This game does have a learning curve...but is amazing... I learned it by losing doEns of games watching the attacks come after me....and then trying them against others and learning the gambits\n\n10) wil: D B1 Wil R2 R2\n\tOttia: Well, now it's your turn to inflict lots of pain HAHAHAHA... I can imagine both that the game has got a long learning curve and that it's stunning once you get past it. I will have to practice a bit to get all the chains of moves you need to make to achieve mid- or long-term goals...\n\n11) Ottia: Trade R1 Y1 Ottia\n\n12) wil: B B2 Wil\n\tOttia: Alright, now I see resources for trading are scarce at least at the beginning ;)\n\twil: Yes early phase is building and trying to corner bigger oieecda or a monopoly\n\n13) Ottia: Build Y1 Ottia\n\n14) wil: D B2 Wil G2 G2\n\tOttia: What does oieecda mean? (if you pardon my question, I suppose you mean systems but being a novice I can never be sure...)\n\twil: Pyramids..,. One helluva typo\n\n15) Ottia: Build Y2 Ashikawa\n\n16) wil: S G3 Wil\nB B2 G2\nB B3 R2\nB B3 Wil\n\tOttia: Goodness me... was that the autocorrector? I can't quite follow all the hand displacements to touch-type that from "Pyramids"... interesting! HAHA, patterns! By the way, do you like games like Zendo and the sort?\n\twil: There is no telling how that happened... It is just me...\n\n17) Ottia: Trade R3 B3 Ottia\n\n18) wil: T B3 Y3 R2\n\tOttia: Some blue stuff for me still (I start fist pumping and shouting Tuco-style)...\n\n19) Ottia: Trade Y1 R1 Ottia\n\n20) wil: B B3 G2\n\n21) Ottia: Build R1 Ottia\n\n22) wil: S B2 G2\nT B3 R3 G2\nT B3 G3 Wil\n\n23) Ottia: Discover Y2 Ashikawa B2 Ojima\n\n24) wil: B B3 G2\n\n25) Ottia: Build Y1 Ashikawa\n\n26) wil: T B3 Y3 G2\n\n27) Ottia: Build Y2 Ottia\n\n28) wil: M R3 G2 Ashikawa\n\n29) Ottia: Move Y1 Ashikawa G2\n\n30) wil: A Y1 Ashikawa\n\n31) Ottia: Move Y2 Ottia Ashikawa\n\n\tOttia: I'm sorry that I terminate the game like this but it's not moving forward, you're obviously busy and I need to declutter. I'll be looking forward to our next games (you can always invite me when you have time again).\n\nHomeworlds Online (SDG# 29041)\nVariants: "Unrated"\nStarted: 2016.1.20, Ended: 2016.2.11\nParticipants: Felix (S), kanzenryu (N)\nWinner: Felix\n\n1) kanzenryu: Homeworld Y2 B3 G3\n\n2) Felix: Homeworld Y3 B1 G3\n\tkanzenryu: I'll try something different again\n\tFelix: The fortress, eh? I actually really like using that opening! It rarely works well for me, but I like it!\n\n3) kanzenryu: Build G1 Kanzenryu\n\n4) Felix: Build G1 Felix\n\n5) kanzenryu: Trade G1 B1 Kanzenryu\n\n6) Felix: T G1 B1 Felix\n\n7) kanzenryu: Build G1 Kanzenryu\n\n8) Felix: D B1 Felix G2 Grass\n\n9) kanzenryu: Discover B1 Kanzenryu G1 Out\n\n10) Felix: B B2 Grass\n\n11) kanzenryu: Build B2 Out\n\n12) Felix: Trade B1 R1 Grass\n\n13) kanzenryu: Trade B2 R2 Out\n\n14) Felix: B R1 Grass\n\n15) kanzenryu: Trade G1 Y1 Kanzenryu\n\n16) Felix: Trade R1 Y1 Grass\n\n17) kanzenryu: Build G1 Kanzenryu\n\n18) Felix: B G1 Felix\n\n19) kanzenryu: Discover G1 Kanzenryu B1 Beep\n\n20) Felix: Move B2 Grass Beep\n\n21) kanzenryu: Build B2 Out\n\n22) Felix: Sacrifice R1 Grass\nAttack G1 Beep\n\n23) kanzenryu: Build G2 Kanzenryu\n\n24) Felix: S G3 Felix\nB G2 Felix\nB G3 Felix\nB G3 Beep\n\n25) kanzenryu: Sacrifice G3 Kanzenryu\nBuild G3 Kanzenryu\nBuild R1 Out\nBuild R1 Out\n\n26) Felix: T G1 R1 Felix\n\n27) kanzenryu: Move Y1 Kanzenryu Out\n\n28) Felix: T G2 Y2 Felix\n\n29) kanzenryu: Move R2 Out Grass\n\n30) Felix: Move Y1 Grass Beep\n\n31) kanzenryu: Build R2 Out\n\n32) Felix: Build G1 Felix\n\n33) kanzenryu: Trade G2 R2 Kanzenryu\n\n34) Felix: Build R3 Felix\n\n35) kanzenryu: Sacrifice G3 Kanzenryu\nBuild R3 Kanzenryu\nBuild R3 Grass\nBuild Y1 Out\n\n36) Felix: Build G2 Beep\n\n37) kanzenryu: Sacrifice B2 Out\nTrade R3 G3 Kanzenryu\nTrade R3 Y3 Grass\n\n38) Felix: S G2 Beep\nB Y2 Felix\nB Y3 Beep\n\n39) kanzenryu: Build R3 Kanzenryu\n\n40) Felix: Trade G3 R3 Beep\n\n41) kanzenryu: Build G2 Kanzenryu\n\n42) Felix: Discover B2 Beep G2 Ichor\n\n43) kanzenryu: Move Y3 Grass Felix\nCatastrophe Felix Y\n\n44) Felix: Sacrifice Y3 Beep\nMove R3 Beep Kanzenryu\nMove R1 Felix Kanzenryu\nMove G1 Beep Kanzenryu\nCatastrophe Kanzenryu Red\n\tkanzenryu: I didn't have any other ideas\n\n45) kanzenryu: Sacrifice R1 Out\nAttack G1 Kanzenryu\n\tFelix: Not a bad plan! You've damaged my system greatly, but I think I may just pull through!\n\n46) Felix: Sacrifice Y1 Beep\nMove G1 Felix Kanzenryu\nCatastrophe Kanzenryu Green\n\tkanzenryu: Heh. I actually spent a couple of minutes looking for that kind of attack and didn't see it :-(\n\tFelix: Good game though! Rematch?\n\n\nHomeworlds Online (SDG# 29079)\nStarted: 2016.1.21, Ended: 2016.1.25\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld R3 B1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Discover G1 Ts52 B3 Gonzo\n\n7) Felix: Build B2 Felix\n\n8) ts52: Build G1 Ts52\n\n9) Felix: Trade B2 Y2 Felix\n\n10) ts52: Build G1 Gonzo\n\n11) Felix: Build G2 Felix\n\n12) ts52: Build G2 Gonzo\n\n13) Felix: Discover G2 Felix B2 Ice\n\n14) ts52: Trade G2 Y2 Gonzo\n\tts52: What's up? Did you click the 'call an admin' on purpose?\n\tFelix: Oh shoot! No, I didn't! That was an accident. What happens now?\n\tts52: No idea. I'll make my move as normal. You can try clicking 'cancel call'\n\n15) Felix: B G2 Felix\n\tFelix: Ah, didn't notice that. That seems to have done the trick!\n\n16) ts52: Discover G1 Gonzo B2 Grover\n\n17) Felix: S G3 Felix\nB G2 Ice\nB G3 Felix\nB B2 Felix\n\tts52: Yep, seems to be cancelled now. Not sure it would've done anything anyway.\n\n18) ts52: Build G3 Gonzo\n\n19) Felix: S G2 Ice\nB B3 Felix\nB Y1 Felix\n\n20) ts52: Trade G3 B3 Gonzo\n\n21) Felix: S G3 Felix\nB G2 Ice\nB G3 Ice\nB G3 Felix\nC Felix Blue\n\tFelix: I'm not sure this site implements the rules correctly. In the official rules from Andrew Looney, you can catastrophe at any point in your turn. I was going to catastrophe my own system and then sacrifice my y2 to move both my greens from my homeworld to yours, but the system won't let me do that\n\tFelix: It was a crazy idea and I really wish it would work :p \n\n22) ts52: Trade G3 R3 Ts52\n\n23) Felix: T G3 Y3 Ice\n\tts52: That is a very interesting play. I don't think I've ever seen anyone intentionally create a catastrophe in their homeworld\n\n24) ts52: Build G3 Grover\n\tFelix: I thought it would be a very unique form of attack, and it would have been effective if the rules were implemented differently! Now I know catastrophes must take place at the end of a turn...\n\n25) Felix: T G2 B2 Ice\n\n26) ts52: Sacrifice G3 Grover\nBuild G2 Ts52\nBuild G3 Grover\nBuild G3 Gonzo\n\n27) Felix: M B2 Ice Felix\n\n28) ts52: Sacrifice Y2 Gonzo\nMove G1 Ts52 Felix\nMove G1 Grover Felix\nCatastrophe Felix Green\n\n29) Felix: Build G1 Ice\n\n30) ts52: Trade G1 Y1 Gonzo\n\n31) Felix: Move Y3 Ice Felix\n\n32) ts52: Trade B3 Y3 Gonzo\n\n33) Felix: Sacrifice Y2 Felix\nDiscover G1 Ice B3 Slash\nMove G2 Ice Felix\n\n34) ts52: Sacrifice G3 Gonzo\nBuild R1 Ts52\nBuild R1 Ts52\nBuild G1 Grover\n\n35) Felix: Trade G1 R1 Slash\n\n36) ts52: Sacrifice Y3 Gonzo\nMove R3 Ts52 Felix\nMove R1 Ts52 Felix\nMove R1 Ts52 Felix\nCatastrophe Felix Red\n\n\tts52: Thanks for the game!\n\tFelix: You too! I left myself wide open after that failed attack by destroying my own homeworld. It was fun though! I'm always up for a rematch.\n\tts52: Yeah, it was an interesting gambit, but didn't work out for you. Always happy to play another game.\n\nHomeworlds Online (SDG# 28866)\nVariants: "Hard time"\nStarted: 2016.1.22, Ended: 2016.1.26\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y3 B2 G3\n\n2) wil: H R3 B1 G3\n\n3) Felix: B G1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: T G1 B1 Felix\n\n6) wil: T G1 B1 Wil\n\n7) Felix: B B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: Discover B2 Felix G1 Grass\n\n10) wil: T B1 Y1 Wil\n\n11) Felix: S G3 Felix\nB B1 Grass\nB B3 Grass\nB B3 Felix\n\n12) wil: B B3 Wil\n\n13) Felix: S B2 Grass\nT B3 Y3 Grass\nT B3 G3 Felix\n\n14) wil: D B2 Wil G2 G2\n\n15) Felix: B G1 Felix\n\n16) wil: D B3 Wil G2 Gee2\n\n17) Felix: T B1 R1 Felix\n\n18) wil: T B3 Y3 Gee2\n\n19) Felix: D G1 Felix B1 Ice\n\n20) wil: B G1 Wil\n\n21) Felix: B G2 Felix\n\n22) wil: D Y3 Gee2 G3 G3\n\n23) Felix: S G3 Felix\nB G2 Ice\nB G3 Felix\nB Y1 Grass\n\n24) wil: S G3 Wil\nB G3 Wil\nB Y1 G3\nB Y2 Wil\n\n25) Felix: M Y1 Grass G3\n\n26) wil: M Y3 G3 Ice\n\n27) Felix: S G3 Felix\nB G3 Felix\nB Y2 Grass\nB Y2 G3\n\n28) wil: T Y2 R2 Wil\n\n29) Felix: S G2 Ice\nB B2 Grass\nB R1 Felix\n\n30) wil: B B3 G2\n\n31) Felix: D B2 Grass G2 Plain\n\n32) wil: T B2 Y2 G2\n\n33) Felix: Sacrifice G3 Felix\nBuild B2 Grass\nBuild B3 Plain\nBuild G3 Felix\n\n34) wil: B B3 G2\n\n35) Felix: Sacrifice Y2 G3\nMove B1 Grass G2\nMove B2 Grass G2\nCatastrophe G2 Blue\n\n36) wil: M Y1 G3 Grass\n\n37) Felix: Sacrifice Y1 G3\nMove Y3 Grass G2\n\n38) wil: M Y1 Grass G2\n\tFelix: Sorry. Decided I wanted to sacrifice a different yellow.\n\twil: Undoing is not a sorry....it is a given in this game\n\n39) Felix: Sacrifice B3 Plain\nTrade Y3 R3 G2\nTrade B2 R2 Plain\nTrade R1 B1 Felix\n\tFelix: Oh okay. :) I thought it might be poor form to do so\n\n40) wil: D Y2 G2 R1 R2\n\twil: No...in a live game we use a turn token...your turn isn't over until you move the token...as when you do major moves with catastrophes and grows you may not like the repercussions, when you see the final layout...so you try multiple moves prior to moving the token...the board layout here is a mess...so it is easy to miss something...the issue is you are only allowed one redo...which is wrong for this game...it should be unlimited.... However... If one doesn't undo fast enough... And the other moves...oops! N fair game as well\n\n41) Felix: S Y2 Grass\nM R3 G2 Wil\nM R2 Plain Wil\nCatastrophe Wil Red\n\n42) wil: S Y2 R2\nM G3 Wil Felix\nM G1 Wil Felix\nC Felix G\n\n43) Felix: M R1 Felix Wil\n\n\tFelix: Hello. We are an investigation party sent to check out this small moon. What are you doing out here? Nothing illegal, I hope. We may have to board your vessel and check for contraband...\n\twil: Nice\n\nHomeworlds Online (SDG# 28962)\nVariants: "Hard time"\nStarted: 2016.1.22, Ended: 2016.1.25\nParticipants: endo (S), Felix (N)\nWinner: endo\n\n1) Felix: Homeworld Y3 B2 G3\n\n2) endo: Homeworld Y1 B3 G3\n\n3) Felix: B G1 Felix\n\tendo: Hi again, GLHF!\n\tFelix: Thanks! You too! I did NOT mean to click the call an admin button!\n\n4) endo: Build G1 Endo\n\n5) Felix: Discover G1 Felix B1 Ice\n\n6) endo: Trade G1 B1 Endo\n\tendo: I can't see the system message about calling an admin :) Perhaps it doesn't show up to other players...\n\n7) Felix: Build G1 Felix\n\n8) endo: Build B1 Endo\n\n9) Felix: Trade G1 Y1 Felix\n\n10) endo: Discover B1 Endo G2 Wellorder\n\tFelix: Hmm... I'm not sure. It sent me an email saying it had been clicked. I don't even know what it does, but I guess we're fine as long as nothing blows up :)\n\n11) Felix: B Y1 Felix\n\n12) endo: Build B2 Endo\n\n13) Felix: D Y1 Felix G1 Grass\n\n14) endo: Discover B2 Endo B2 Basis\n\n15) Felix: B Y2 Grass\n\n16) endo: Build B3 Wellorder\n\n17) Felix: D Y1 Grass B3 Molnak\n\n18) endo: Trade B3 Y3 Wellorder\n\n19) Felix: S G3 Felix\nB Y2 Molnak\nB Y2 Grass\nB Y3 Felix\n\n20) endo: Build B3 Wellorder\n\n21) Felix: T Y1 G1 Felix\n\n22) endo: Trade B3 R3 Wellorder\n\n23) Felix: Trade G1 R1 Ice\n\n24) endo: Build B3 Wellorder\n\n25) Felix: Trade Y3 G3 Felix\n\n26) endo: Build R1 Wellorder\n\n27) Felix: Move G1 Felix Ice\n\n28) endo: Move R3 Wellorder Grass\n\n29) Felix: Build G1 Ice\n\n30) endo: Sacrifice Y3 Wellorder\nMove B3 Wellorder Ice\nMove B3 Ice Felix\nMove R3 Grass Felix\n\n\tFelix: Well done! That was a slick move to end it. I have learned. Thanks for playing!\n\nHomeworlds Online (SDG# 29072)\nVariants: "Unrated"\nStarted: 2016.1.22, Ended: 2016.1.25\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H Y3 B1 G3 G3\n\n2) Felix: H G2 B1 B3 *\n\n3) wil: B G1 Wil\n\tFelix: I'm gonna try this and hope I don't botch it :)\n\n4) Felix: B B1 Felix\n\twil: Way scary....but love multiple games..\n\n5) wil: B G1 Wil\n\tFelix: So far I haven't succeeded at this strategy. Multiple games are great!\n\n6) Felix: T B3 Y3 Felix\n\n7) wil: D G1 Wil Y2 Y2\n\n8) Felix: B B2 Felix\n\n9) wil: B G1 Y2\n\n10) Felix: D B1 Felix G3 Plain\n\n11) wil: D G1 Y2 Y3 Y3\n\n12) Felix: Discover B2 Felix G3 Grass\n\n13) wil: B G2 Wil\n\n14) Felix: B B2 Grass\n\n15) wil: B G2 Y3\n\n16) Felix: B B2 Plain\n\n17) wil: T G3 B3 Wil\n\n18) Felix: B B3 Grass\n\n19) wil: B B3 Wil\n\n20) Felix: S B2 Grass\nT B3 G3 Grass\nT B2 Y2 Plain\n\n21) wil: M G1 Y2 Grass\n\n22) Felix: S Y2 Plain\nD B1 Plain B2 B2\nM B1 B2 Wil\nCatastrophe Wil Blue\n\n23) wil: S G2 Y3\nB G2 Grass\nB G3 Wil\nC Grass G\n\n24) Felix: B Y1 Felix\n\n25) wil: D G1 Wil B2 B2\n\n26) Felix: T Y3 R3 Felix\n\n27) wil: T G1 R1 B2\n\n28) Felix: B Y1 Felix\n\n29) wil: S G2 Wil\nB R1 B2\nB G1 Wil\n\twil: Shoveling or homeworlds....shoveling or homeworlds...HOMEWORRLDS!!!\n\n30) Felix: B Y1 Felix\n\twil: Ya got me on the run here\n\tFelix: Bahahaha. Good choice! We got a lot of snow too. \n\n31) wil: M G1 Wil B2\n\tFelix: I'm not quite sure how to finish the job yet though...\n\n32) Felix: D Y1 Felix G3 Grass\n\n33) wil: B G1 Wil\n\n34) Felix: B Y2 Grass\n\twil: Finishing is always tricky...even with a big advantage you have to be patient to administer it\n\n35) wil: B G2 B2\n\n36) Felix: Build Y2 Felix\n\n37) wil: T G2 Y2 B2\n\n38) Felix: Sacrifice Y2 Felix\nMove Y1 Felix Wil\nMove Y1 Felix Wil\n\n39) wil: M G3 Wil B2\n\twil: There ya go\n\n40) Felix: Sacrifice Y2 Grass\nMove Y1 Grass Felix\nMove Y1 Felix Wil\nCatastrophe Wil Yellow\n\twil: We've left our homeworld to form a new colony in hooes of finding more peaceful neighbors\n\twil: Freudian slip....we hope we find hooes too!\n\tFelix: Good luck on your quest to fine hooes! :) Since it's dangerous to leave this much fuel sitting in space without being monitored, I will go ahead and create a controlled fire to burn it all up. It's safer that way. I'm sure you understand. Bon voyage!\n\tFelix: Good game! The banker setup probably gave me an edge, but I sure had to work for it! I like having two at once with you. Care for a rematch?\n\twil: You may start as many games as you like...try different openings.. I enjoy playing this game...\n\twil: Look at my happy colony...they will survive..\n\n\nHomeworlds Online (SDG# 29118)\nVariants: "Hard time"\nStarted: 2016.1.24, Ended: 2016.3.9\nParticipants: endo (S), Simon (N)\nWinner: endo\n\n1) Simon: Homeworld R1 B3 G3\n\tSimon: I was away right after the previous challenge. Now trying to be more attentive. Have fun!\n\n2) endo: Homeworld B1 Y2 G3\n\n3) Simon: Build G1 Simon\n\tendo: Hehe, I seem to be winning a lot of ladder matches on time lately. Have a nice game!\n\n4) endo: Build G1 Endo\n\n5) Simon: Trade G1 Y1 Simon\n\n6) endo: Trade G1 Y1 Endo\n\n7) Simon: Build G1 Simon\n\n8) endo: Build G1 Endo\n\n9) Simon: Discover G1 Simon B2 B2\n\n10) endo: Trade G1 B1 Endo\n\n11) Simon: Build G1 B2\n\n12) endo: Build B1 Endo\n\n13) Simon: Build G1 Simon\n\n14) endo: Discover B1 Endo Y3 Sheaf\n\n15) Simon: Build G2 B2\n\n16) endo: Sacrifice G3 Endo\nBuild B2 Sheaf\nBuild B2 Sheaf\nBuild B3 Endo\n\n17) Simon: Trade G2 R2 B2\n\n18) endo: Trade B3 G3 Endo\n\n19) Simon: Sacrifice Y1 Simon\nMove R2 B2 Sheaf\n\n20) endo: Build B3 Endo\n\n21) Simon: Build G2 B2\n\n22) endo: Trade B3 R3 Endo\n\n23) Simon: Trade G2 Y2 B2\n\n24) endo: Build B3 Endo\n\n25) Simon: Discover G1 B2 B3 B3\n\n26) endo: Build R1 Endo\n\n27) Simon: Attack B2 Sheaf\n\n28) endo: Sacrifice R3 Endo\nAttack B2 Sheaf\nAttack R2 Sheaf\nPass\n\n29) Simon: Build G2 B3\n\n30) endo: Move R2 Sheaf B2\n\n31) Simon: Build G2 B2\n\n32) endo: Attack G2 B2\n\n33) Simon: Sacrifice G3 Simon\nBuild G2 B3\nBuild G3 Simon\nBuild G3 B2\n\n34) endo: Attack Y2 B2\n\n35) Simon: Trade G1 R1 B2\n\n36) endo: Attack R1 B2\n\n37) Simon: Trade G2 R2 B3\n\n38) endo: Sacrifice G3 Endo\nBuild G1 B2\nBuild G2 B2\nBuild R2 B2\nCatastrophe B2 G\n\n39) Simon: Build R3 B3\n\n40) endo: Sacrifice Y2 B2\nMove R1 B2 B3\nMove R2 B2 B3\nCatastrophe B3 R\n\n41) Simon: Trade G2 R2 B3\n\n42) endo: Trade B3 G3 Endo\n\n43) Simon: Trade G3 B3 Simon\n\n44) endo: Build R1 Endo\n\n45) Simon: Build G1 B3\n\n46) endo: Build G2 Endo\n\n47) Simon: Build G2 Simon\n\n48) endo: Discover G2 Endo G3 Stalk\n\n49) Simon: Trade G2 Y2 Simon\n\n50) endo: Build G2 Endo\n\n51) Simon: Build G2 Simon\n\n52) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild G3 Stalk\nBuild Y1 Endo\n\n53) Simon: Build Y1 Simon\n\n54) endo: Sacrifice Y1 Endo\nMove G3 Stalk B2\n\n55) Simon: Build R2 B3\n\n56) endo: Sacrifice G3 Endo\nBuild R3 Endo\nBuild R3 B2\nBuild R3 B2\n\n57) Simon: Build G3 Simon\n\n58) endo: Sacrifice G2 Stalk\nBuild G2 B2\nBuild G3 Endo\n\n59) Simon: Discover G2 Simon Y2 Y2\n\n60) endo: Sacrifice B2 Sheaf\nTrade R3 Y3 Endo\nTrade R3 Y3 B2\n\n61) Simon: Move B3 Simon Y2\n\n62) endo: Sacrifice Y3 Endo\nMove G2 B2 Simon\nMove G3 B2 Simon\nMove Y3 B2 Simon\nCatastrophe Simon G\n\n\tSimon: gg\n\nHomeworlds Online (SDG# 29103)\nVariants: "Hard time"\nStarted: 2016.1.25, Ended: 2016.1.27\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\n2) Felix: Homeworld B3 R2 G3\n\n3) wil: B G1 Wil\n\n4) Felix: B G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Trade G1 B1 Felix\n\n7) wil: B G1 Wil\n\n8) Felix: Build G1 Felix\n\n9) wil: T G1 R1 Wil\n\n10) Felix: Build B2 Felix\n\n11) wil: B B2 Wil\n\n12) Felix: Trade B2 Y2 Felix\n\n13) wil: D B1 Wil G2 G2\n\n14) Felix: Build B2 Felix\n\n15) wil: B B2 Wil\n\n16) Felix: Discover B1 Felix Y1 Rim\n\n17) wil: B B3 G2\n\n18) Felix: Build B3 Felix\n\n19) wil: T B2 Y2 Wil\n\n20) Felix: Move G1 Felix Rim\n\n21) wil: S Y2 Wil\nM B1 G2 Rim\nM B1 Rim Felix\nC Felix B\n\twil: Whenever anyone trades for a transport ship you should look to see why...\n\n22) Felix: Build B1 Rim\n\n23) wil: B R1 Wil\n\tFelix: Sage advice, given too late!\n\twil: Not for the next game... Ya gotta touch the stove, feel the pain...to cement the lesson...or I could tell you if you wish and let you change your move...would that be preferable?\n\n24) Felix: Build B2 Rim\n\tFelix: Nah, I like to learn from my mistakes!\n\n25) wil: T B3 Y3 G2\n\n26) Felix: Move B1 Rim Felix\n\n27) wil: B R1 Wil\n\n28) Felix: Sacrifice B2 Rim\nTrade Y2 R2 Felix\nTrade G3 R3 Felix\n\n29) wil: M R1 Wil Felix\nC Felix R\n\tFelix: More firepower is always good, right? :)\n\twil: Lol...\n\n\nHomeworlds Online (SDG# 29105)\nVariants: "Unrated"\nStarted: 2016.1.26, Ended: 2016.1.27\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld G3 B1 Y3\n\n2) wil: H Y3 B2 G3\n\n3) Felix: Build Y1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade Y1 B1 Felix\n\n6) wil: T G1 B1 Wil\n\n7) Felix: Build B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: Sacrifice Y3 Felix\nDiscover B1 Felix Y2 Y2\nDiscover B1 Y2 Y1 Y1\nMove B1 Y1 Wil\nCatastrophe Wil Blue\n\n10) wil: B G1 Wil\n\twil: Interesting risk...well see how it play oit\n\n11) Felix: B B1 Felix\n\n12) wil: D G1 Wil B2 B2\n\n13) Felix: T B2 Y2 Felix\n\tFelix: I hope it pays off, but I have my doubts.\n\n14) wil: B G1 Wil\n\n15) Felix: Build Y1 Felix\n\n16) wil: B G1 Wil\n\n17) Felix: Discover Y1 Felix G2 Gambit\n\n18) wil: M G1 Wil Gambit\n\n19) Felix: Build Y1 Gambit\n\n20) wil: B G2 Gambit\n\n21) Felix: Move Y1 Gambit Wil\n\n22) wil: S G3 Wil\nB G2 Gambit\nB G3 B2\nB G3 Wil\n\n23) Felix: Move Y1 Gambit Wil\nCatastrophe Gambit Green\n\n24) wil: T G3 R3 B2\n\n25) Felix: Discover Y2 Felix G2 Oust\n\twil: All dicey...move by move\n\twil: Tiptoe, thru the tulips..\n\n26) wil: M G3 Wil B2\n\tFelix: Haha. I know, the last handful of moves have been so tense! \n\twil: Very nice..\n\n27) Felix: Move Y2 Oust Wil\nCatastrophe Wil Yellow\n\twil: This system is too pollutes from uae of fossil fuels and refi ing waste from petroleum products... We are moving on to a clean one rather than take care of our own..you may have it...it is now a superfund site\n\tFelix: I suppose I will just stay and clean up this mess. Another controlled burn ought to do it. It's unfortunate you were unable to evacuate your small construction vessel, but the loss will benefit the greater good of the galaxy's stability.\n\tFelix: Frankly I'm surprised my risk paid off. I thought I was done for!\n\twil: This is where I wish we could backup.to move x and retry various endings...gg\n\twil: Good job cleaning up the mess.,.now the debris is propelling itself through the galaxy\n\n\nHomeworlds Online (SDG# 29120)\nVariants: "Hard time"\nStarted: 2016.1.27, Ended: 2016.2.4\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y3 B1 G3\n\n2) wil: H Y3 B2 G3\n\tFelix: More! More! I hope you don't mind so many games against me. Few people make moves on here as regularly as you do, and playing against you is definitely helping me improve!\n\twil: More games...more games...start as many as you like...as long as the choice is shoveling out car spaces or playing...I'll play\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\tFelix: Definitely the better choice :) I work on a computer all day for my job, so this gives me a nice little break now and then.\n\n5) Felix: Trade G1 B1 Felix\n\n6) wil: T G1 B1 Wil\n\n7) Felix: Build B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: D B1 Felix G2 Cintas\n\n10) wil: T B1 Y1 Wil\n\n11) Felix: Build G1 Felix\n\n12) wil: B Y1 Wil\n\n13) Felix: Trade G1 Y1 Felix\n\n14) wil: T Y1 R1 Wil\n\n15) Felix: Build G1 Felix\n\n16) wil: D B2 Wil G1 G1\n\n17) Felix: Trade B2 R2 Felix\n\n18) wil: B R1 Wil\n\n19) Felix: Discover G1 Felix B2 Efrit\n\n20) wil: M Y1 Wil G1\n\n21) Felix: Move R2 Felix Efrit\n\n22) wil: M B2 G1 Cintas\n\n23) Felix: B B1 Cintas\n\n24) wil: T B2 R2 Cintas\n\n25) Felix: Build G1 Felix\n\n26) wil: A B1 Cintas\n\n27) Felix: Build B2 Cintas\n\n28) wil: A B2 Cintas\n\n29) Felix: Build B3 Cintas\n\n30) wil: B G2 Wil\nC Cintas B\n\n31) Felix: S G3 Felix\nB G2 Efrit\nB G3 Efrit\nB G3 Felix\n\n32) wil: S G3 Wil\nB G3 Wil\nB Y1 G1\nB Y2 G1\n\n33) Felix: Trade G2 Y2 Efrit\n\n34) wil: S Y2 G1\nM Y1 G1 Cintas\nD Y1 G1 B2 B2\n\n35) Felix: Build Y2 Efrit\n\n36) wil: S G2 Wil\nB Y2 Cintas\nB Y3 B2\n\n37) Felix: Sacrifice Y2 Efrit\nMove G3 Efrit Felix\nMove G3 Felix Cintas\n\n38) wil: S Y2 Cintas\nM Y1 Cintas Felix\nM Y1 B2 Felix\nC Felix Y\n\n39) Felix: Trade G1 R1 Felix\n\n40) wil: D R1 Wil Y1 Y1\n\n41) Felix: Sacrifice R1 Felix\nAttack R2 Cintas\n\tFelix: Oops\n\n42) wil: B G1 Wil\n\n43) Felix: Build G1 Efrit\n\n44) wil: D G1 Wil Y1 Why1\n\n45) Felix: Move R2 Efrit Why1\n\n46) wil: B G2 Wil\n\n47) Felix: Attack G1 Why1\n\n48) wil: M Y3 B2 Why1\n\n49) Felix: Build G2 Why1\n\n50) wil: M G2 Wil Y1\n\n51) Felix: Move Y2 Efrit Why1\n\n52) wil: M Y3 Why1 Efrit\n\twil: Nice distraction\n\n53) Felix: Trade G1 Y1 Efrit\n\tFelix: I tried :)\n\n54) wil: S R1 Y1\nA G1 Efrit\n\twil: You did, and it was admirable, and I almost missed it.\n\n55) Felix: Sacrifice G2 Why1\nBuild Y2 Efrit\nBuild Y2 Efrit\nCatastrophe Efrit Yellow\n\n56) wil: B G1 Wil\n\n57) Felix: S G3 Cintas\nB G2 Felix\nB G3 Why1\nB Y1 Why1\n\n58) wil: T G3 Y3 Wil\n\n59) Felix: Trade G2 Y2 Felix\n\n60) wil: B R1 Wil\n\n61) Felix: Sacrifice Y2 Felix\nMove Y1 Why1 Wil\nMove Y2 Why1 Wil\nCatastrophe Wil Yellow\n\n62) wil: B G2 Wil\n\n63) Felix: M G3 Why1 Wil\n\tFelix: Ah, ah, ah, ah, stayin' alive, stayin' alive...\n\n64) wil: S G2 Y1\nB G2 Wil\nB G3 Efrit\nC Wil G\n\twil: I wish I was!\n\n65) Felix: M R2 Why1 Wil\n\n66) wil: S G1 Efrit\nB R1 Wil\nC Wil R\n\twil: Gg\n\n\tFelix: And you! I'm surprised I recovered after you took out half my homeworld\n\twil: It was my mistake... One should never take out half without a plan in place for the first other half....impatience is a problem with this one...\n\twil: Self destruction is not allowed in this game.. I do like finding gapsin the programming\n\tFelix: So you can self-destruct through a catastrophe?\n\twil: Not always... I don't know the criteria... I just know I periodically get away with it... But not always... I have also got away with evacuating or sacrificing...it is simply a slightly more satisfying end to a loss\n\tFelix: Yeah. You are the captain of your fate, and all :)\n\twil: That is disconcerting.... I miss blame...\n\nHomeworlds Online (SDG# 29135)\nVariants: "Unrated"\nStarted: 2016.1.27, Ended: 2016.2.1\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H G2 B1 R3\n\n2) Felix: Homeworld R3 G2 Y3 *\n\tFelix: Interesting open! I want to try a unique one too...\n\n3) wil: B R1 Wil\n\n4) Felix: Build Y1 Felix\n\n5) wil: T R1 B1 Wil\n\n6) Felix: Discover Y1 Felix G1 Petri\n\n7) wil: T B1 Y1 Wil\n\n8) Felix: Build Y1 Petri\n\n9) wil: B Y2 Wil\n\n10) Felix: B Y2 Felix\n\n11) wil: D Y1 Wil G3 G3\n\n12) Felix: Discover Y2 Felix B1 Algae\n\n13) wil: B Y2 Wil\n\n14) Felix: Move Y1 Petri G3\n\n15) wil: D Y2 Wil G3 Gee3\n\n16) Felix: Trade Y2 B2 Algae\n\n17) wil: B R1 Wil\n\n18) Felix: Sacrifice Y1 G3\nMove B2 Algae Felix\n\n19) wil: M Y1 G3 Petri\n\n20) Felix: D Y1 Petri G3 Dish\n\n21) wil: M R1 Wil Dish\n\n22) Felix: Build Y1 Felix\n\n23) wil: A Y1 Dish\n\n24) Felix: Trade Y1 R1 Felix\n\n25) wil: B R1 Wil\n\n26) Felix: Build B1 Felix\n\n27) wil: B R2 Wil\n\n28) Felix: M B2 Felix Petri\n\n29) wil: B R2 Dish\n\n30) Felix: Move R1 Felix Petri\n\n31) wil: S R1 Dish\nA R1 Petri\n\n32) Felix: Build B1 Felix\n\twil: Petri dish...one of my favorite unpublished pyramid games\n\n33) wil: M R2 Dish Petri\n\tFelix: I've never played it.\n\tFelix: But it's going to be a part of the upcoming Pyramid Arcade!\n\twil: Yez...\n\n34) Felix: Build B2 Felix\n\n35) wil: A B2 Petri\n\n36) Felix: D B2 Felix Y1 Out\n\n37) wil: M R2 Wil Dish\n\n38) Felix: Trade B1 G1 Felix\n\n39) wil: B Y2 Petri\n\n40) Felix: Discover G1 Felix B1 Apophis\n\n41) wil: B Y3 Wil\n\n42) Felix: Build G1 Apophis\n\n43) wil: B Y3 Dish\n\n44) Felix: Build G2 Apophis\n\n45) wil: M Y2 Gee3 Apophis\n\n46) Felix: Sacrifice G2 Apophis\nBuild B2 Out\nBuild B3 Felix\n\n47) wil: B B3 Petri\n\n48) Felix: Trade B3 R3 Felix\n\n49) wil: S Y2 Wil\nM R2 Petri Felix\nM R1 Petri Felix\nC Felix R\n\n\twil: There is trouble... Right here in river city\n\twil: If he grows a yellow I kill them all...if he grows a blue I kill them... If he does nothing..I'll win the game...imminent danger...\n\tFelix: Doesn't look good. I'm out of here!\n\nHomeworlds Online (SDG# 29086)\nVariants: "Unrated"\nStarted: 2016.1.29, Ended: 2016.2.4\nParticipants: Felix (S), random56 (N)\nWinner: Felix\n\n1) random56: Homeworld G3 B2 Y3\n\n2) Felix: Homeworld Y3 B1 G3\n\tFelix: Hey there. Good luck to you!\n\n3) random56: Build Y1 Random56\n\n4) Felix: B G1 Felix\n\n5) random56: Discover Y1 Random56 G1 Go39\n\n6) Felix: Discover G1 Felix B2 Rim\n\n7) random56: Build Y1 Go39\n\n8) Felix: Build G1 Felix\n\n9) random56: Build Y1 Go39\n\n10) Felix: Build G2 Rim\n\n11) random56: Move Y1 Go39 Rim\n\n12) Felix: Trade G2 R2 Rim\n\n13) random56: Build Y2 Random56\n\n14) Felix: A Y1 Rim\n\n15) random56: Trade Y2 R2 Random56\n\n16) Felix: B G2 Rim\n\n17) random56: Move R2 Random56 Go39\n\n18) Felix: B G2 Rim\n\n19) random56: Build Y2 Random56\n\n20) Felix: B Y2 Rim\n\n21) random56: Build R1 Go39\n\n22) Felix: Discover G2 Rim B1 Gate\n\n23) random56: Sacrifice Y2 Random56\nMove R2 Go39 Rim\nMove R2 Rim Gate\n\n24) Felix: S G3 Felix\nB G2 Rim\nB G3 Gate\nB G3 Felix\n\n25) random56: Attack G2 Gate\n\n26) Felix: S R2 Rim\nA R2 Gate\nA G2 Gate\n\n27) random56: Build Y2 Random56\n\n28) Felix: M Y1 Rim Gate\n\n29) random56: Move R1 Go39 Random56\n\n30) Felix: S G3 Felix\nB Y2 Rim\nB Y3 Gate\nB G3 Felix\n\n31) random56: Build R1 Random56\n\n32) Felix: S Y2 Rim\nM Y1 Gate Random56\nM Y3 Gate Random56\nC Random56 Yellow\n\n33) random56: Trade R1 Y1 Random56\n\n34) Felix: Sacrifice Y2 Rim\nMove G3 Gate Random56\nMove R2 Gate Random56\n\n35) random56: Build Y2 Random56\n\n36) Felix: Sacrifice R2 Random56\nAttack R1 Random56\nAttack Y2 Random56\n\n37) random56: Build Y2 Go39\n\tFelix: And I believe that's it. Good game. For next time, a good tip would be to try to not let me get all of one color (like green). If you get locked out of a particular color, it will make things very difficult for you. Cheers! And rematch me any time.\n\n38) Felix: Attack Y1 Random56\n\trandom56: Thanks for the tip, I really wanna get better. And good game. \n\tFelix: I'm not totally advanced myself, but I am happy to help you get better. Make sure you get all of the colors if possible. If you see that there is only one small of a particular color left, and you don't have that color yet, try to trade one of your smalls for it. That's a good general rule, but you shouldn't necessarily always do that, depending on the circumstances.\n\tFelix: As a beginner, it's also a good rule of thumb to always start with a large green ship. This allows you to set up what's called a "factory" which is what I have in my homeworld right now. Late in the game, you can sacrifice your G3, then rebuild it and build two other ships elsewhere. It's a great way to get an edge over your opponent.\n\tFelix: Also, using a small and medium for your homeworld is good as a beginner. This is called the "banker" setup and it allows you easier access to large stars that you can potentially trade in later for large ships. Finally, it's always a good idea to try to get a red ship whenever your opponent does. If he has a red ship and you do not, that means trouble!\n\n\nHomeworlds Online (SDG# 29153)\nVariants: "Unrated"\nStarted: 2016.1.31, Ended: 2017.3.15\nParticipants: wil (S), YsdkRichard (N)\nWinner: wil\n\n1) YsdkRichard: Homeworld G3 B2 R3\n\n2) wil: H Y3 B1 G3\n\n3) YsdkRichard: Build R1 Ysdkrichard\n\twil: An attack ship in my galaxy... This is a peaceful system....\n\tYsdkRichard: This is my first time playing lol\n\tYsdkRichard: This is my first time playing lol\n\tYsdkRichard: you should help me out with the commands lol. How do I know what the system name is?\n\tYsdkRichard: you should help me out with the commands lol. How do I know what the system name is?\n\n4) wil: B G1 Wil\n\tYsdkRichard: Oh yay I did it!\n\n5) YsdkRichard: Trade R1 Y1 Ysdkrichard\n\n6) wil: T G1 B1 Wil\n\n7) YsdkRichard: Build R1 Ysdkrichard\n\n8) wil: B B1 Wil\n\n9) YsdkRichard: Trade R1 G1 Ysdkrichard\n\twil: I am sorry....missed all your notes... First lesson....don't let the other guy monopolize any economy . \n\twil: I am sorry....missed all your notes... First lesson....don't let the other guy monopolize any economy . \n\twil: This is a great game ...lose about ten times and you'll begin to grasp it.\n\tYsdkRichard: okie thanks :)\n\n10) wil: D B1 Wil G2 G2\n\tKing: hi?\n\tKing: homeworld g3 b2 y3\n\twil: Howdy king...you'll have to start a new game to challenge\n\n\nHomeworlds Online (SDG# 29095)\nStarted: 2016.2.1, Ended: 2016.2.4\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y1 G3\n\tFelix: Hello again :) Good luck!\n\n2) ts52: Homeworld B2 Y3 G3\n\tts52: Greetings! :) Have a good game!\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 Y1 Felix\n\n6) ts52: Build G1 Ts52\n\n7) Felix: Build Y1 Felix\n\n8) ts52: Discover G1 Ts52 B1 Gonzo\n\n9) Felix: Trade Y1 B1 Felix\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) Felix: Build Y2 Felix\n\n12) ts52: Build Y2 Ts52\n\n13) Felix: Trade Y1 R1 Felix\n\n14) ts52: Trade Y1 R1 Ts52\n\n15) Felix: Discover B1 Felix G2 Rim\n\n16) ts52: Build G1 Gonzo\n\n17) Felix: Build B1 Rim\n\n18) ts52: Move Y2 Ts52 Gonzo\n\n19) Felix: Build B2 Rim\n\n20) ts52: Build Y1 Gonzo\n\n21) Felix: Trade B2 Y2 Rim\n\n22) ts52: Discover G1 Gonzo Y3 Bigbird\n\n23) Felix: Discover B1 Rim G3 Bank\n\n24) ts52: Build G1 Ts52\n\n25) Felix: Build G2 Felix\n\n26) ts52: Build G2 Gonzo\n\n27) Felix: S G3 Felix\nB G3 Felix\nB B2 Bank\nB B2 Rim\n\n28) ts52: Discover Y2 Gonzo R2 Elmo\n\n29) Felix: Sacrifice G2 Felix\nBuild B3 Bank\nBuild B3 Rim\n\n30) ts52: Sacrifice G2 Gonzo\nBuild Y1 Elmo\nBuild Y3 Gonzo\n\n31) Felix: Trade B3 R3 Rim\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Bigbird\nBuild G3 Ts52\n\n33) Felix: Sacrifice Y2 Felix\nMove B3 Bank Gonzo\nMove R3 Rim Gonzo\n\n34) ts52: Move Y3 Gonzo Bank\n\n35) Felix: Sacrifice G3 Felix\nBuild B3 Gonzo\nBuild R1 Gonzo\nBuild R2 Felix\n\n36) ts52: Sacrifice Y2 Elmo\nMove Y3 Bank Elmo\nMove Y3 Elmo Felix\n\n37) Felix: S Y2 Rim\nM B3 Gonzo Ts52\nM B3 Gonzo Ts52\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild G3 Gonzo\n\n39) Felix: Sacrifice R3 Gonzo\nAttack G3 Ts52\nAttack R2 Ts52\nAttack R1 Ts52\n\n40) ts52: Trade G3 R3 Gonzo\n\n41) Felix: Attack G1 Ts52\n\n\tFelix: Thank you! Great game. \n\tFelix: Up for a rematch? I always am.\n\tts52: Always up for a rematch!\n\nHomeworlds Online (SDG# 29197)\nVariants: "Unrated"\nStarted: 2016.2.1, Ended: 2016.2.8\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y1 G3\n\n2) wil: H Y2 B1 G3\n\twil: There e is\n\n3) Felix: Build G1 Felix\n\tFelix: Hehe.\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 B1 Felix\n\n6) wil: T G1 B1 Wil\n\n7) Felix: Build B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: Discover B2 Felix G2 Luno\n\n10) wil: T B2 Y2 Wil\n\n11) Felix: Build B2 Luno\n\n12) wil: B Y1 Wil\n\n13) Felix: Trade B2 Y2 Luno\n\n14) wil: D Y2 Wil G3 G3\n\n15) Felix: Build B2 Luno\n\n16) wil: T Y1 R1 Wil\n\n17) Felix: Trade B1 R1 Felix\n\n18) wil: M B1 Wil G3\n\n19) Felix: D B2 Luno Y3 Orbit\n\n20) wil: B G1 Wil\n\n21) Felix: Build G1 Felix\n\n22) wil: B Y1 G3\n\n23) Felix: Build Y1 Luno\n\n24) wil: T Y2 R2 G3\n\n25) Felix: Discover Y2 Luno G1 Brink\n\n26) wil: B G2 Wil\n\n27) Felix: S G3 Felix\nB G2 Felix\nB G3 Felix\nB Y2 Brink\n\n28) wil: S G3 Wil\nB G3 Wil\nB Y3 G3\nB B1 G3\n\n29) Felix: S G3 Felix\nB G3 Felix\nB Y3 Luno\nB B2 Orbit\n\n30) wil: S Y3 G3\nM G1 Wil Orbit\nM G1 Orbit Luno\nM G1 Luno Felix\nC Felix G\n\n31) Felix: Build B3 Luno\n\n32) wil: B Y3 G3\n\n33) Felix: Sacrifice Y2 Brink\nMove Y2 Brink G3\nMove Y1 Luno G3\nCatastrophe G3 Yellow\n\n34) wil: T B1 Y1 G3\n\twil: Why am I so blind sometimes?\n\n35) Felix: Move B3 Luno Felix\n\tFelix: I looked like easy prey :) I don't blame your eagerness!\n\n36) wil: B R1 Wil\n\n37) Felix: Trade B3 G3 Felix\n\n38) wil: D G2 Wil B3 B3\n\n39) Felix: Build R2 Felix\n\n40) wil: B G1 Wil\n\n41) Felix: Move Y3 Luno B3\n\n42) wil: B G1 B3\n\n43) Felix: Sacrifice R2 Felix\nAttack G2 B3\nAttack G1 B3\n\n44) wil: B R2 G3\n\n45) Felix: Sacrifice Y3 B3\nMove G1 B3 Wil\nMove G2 B3 Wil\nMove B2 Orbit Wil\nCatastrophe Wil Green\n\n\tFelix: Hullo. We noticed your system had an overabundance of construction technology, but your small and medium stars do not seem capable of supporting such growth. In order to help control your population and maintain stability in your sector, we had to remove some of your facilities from the area. I do hope you understand. We have left one of our conversion vessels in the area to aid in the clean up. They will also be inspecting your weaponry and potentially converting said weapons into dust. Still in the interest of maintaining stability and peace in your system. I do hope you understand and appreciate our neighborly interest.\n\twil: Uh..oh...\n\nHomeworlds Online (SDG# 28931)\nVariants: "Hard time"\nStarted: 2016.2.1, Ended: 2016.2.4\nParticipants: Felix (S), SilentTitan (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29180)\nVariants: "Unrated"\nStarted: 2016.2.4, Ended: 2016.2.7\nParticipants: random56 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) random56: Homeworld Y1 B2 G3\n\tFelix: Good luck and let me know if you have any questions!\n\n3) Felix: Build G1 Felix\n\n4) random56: Build G1 Random56\n\n5) Felix: Trade G1 B1 Felix\n\n6) random56: Build G1 Random56\n\n7) Felix: Build G1 Felix\n\n8) random56: Discover G1 Random56 B3 Zal\n\n9) Felix: Discover G1 Felix B1 Ichor\n\n10) random56: Trade G1 R1 Random56\n\n11) Felix: Trade B1 R1 Felix\n\n12) random56: Build G1 Zal\n\n13) Felix: Build G2 Felix\n\n14) random56: Build G2 Random56\n\n15) Felix: Trade G2 B2 Felix\n\n16) random56: Build G2 Random56\n\n17) Felix: Build G2 Ichor\n\n18) random56: Build G3 Zal\n\n19) Felix: Build B1 Felix\n\n20) random56: Trade G1 Y1 Zal\n\n21) Felix: Build G1 Felix\n\n22) random56: Sacrifice G3 Zal\nBuild G3 Zal\nBuild Y1 Zal\nBuild Y2 Zal\n\n23) Felix: Trade G2 Y2 Ichor\n\n24) random56: Trade G2 B2 Random56\n\n25) Felix: Build Y3 Ichor\n\n26) random56: Discover Y1 Zal G2 Hco3\n\n27) Felix: Discover Y2 Ichor G2 Maia\n\n28) random56: Build Y3 Hco3\n\n29) Felix: Build Y3 Maia\n\trandom56: if i have a red ship in a system and you do not can you use the red power too? \n\n30) random56: Sacrifice Y3 Hco3\nMove B2 Random56 Zal\nMove B2 Zal Ichor\nMove B2 Ichor Felix\nCatastrophe Felix B\n\tFelix: No, I cannot. I can only use the powers of the ships that I own, or of the star itself. However, I CAN sacrifice a red ship from a different system and use a non-red to attack. For instance, I could sacrifice my r1 in my homeworld and attack with another ship in another system using that sacrifice action. Make sense?\n\trandom56: yes\r\n\n\n31) Felix: Sacrifice Y2 Maia\nMove G1 Ichor Zal\nMove G1 Felix Zal\nCatastrophe Zal Green\n\n32) random56: Discover Y1 Hco3 G3 Pco2\n\tFelix: Hey, nice move.\n\n33) Felix: Move Y3 Maia Pco2\n\n34) random56: Build G1 Random56\n\n35) Felix: Sacrifice Y3 Ichor\nMove G3 Felix Pco2\nMove G3 Pco2 Random56\nMove Y3 Pco2 Random56\nCatastrophe Random56 Green\n\n36) random56: Move Y1 Zal Random56\n\n37) Felix: Trade Y3 R3 Random56\n\n38) random56: Build Y2 Pco2\n\trandom56: Sorry, I am afraid I have lost but I am still trying to see a solution \n\n39) Felix: Attack R1 Random56\n\n40) random56: Move Y1 Pco2 Random56\n\tFelix: I think I got you, but it was a very close game! And it's always good to look hard for a way out. Sometimes there is one even when it seems like there isn't.\n\n41) Felix: Trade R3 Y3 Random56\nCatastrophe Random56 Yellow\n\tFelix: Very close. Feel free to challenge me again!\n\trandom56: Thanks for the game, I will\n\n\nHomeworlds Online (SDG# 29085)\nVariants: "Hard time"\nStarted: 2016.2.4, Ended: 2016.2.9\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tFelix: You too!\n\n4) Felix: Build G1 Felix\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build G1 Ts52\n\n8) Felix: Build B1 Felix\n\n9) ts52: Trade G1 Y1 Ts52\n\n10) Felix: Trade B1 Y1 Felix\n\n11) ts52: Build Y2 Ts52\n\n12) Felix: Build Y2 Felix\n\n13) ts52: Move Y2 Ts52 Gonzo\n\n14) Felix: Discover Y2 Felix G2 Ichor\n\n15) ts52: Build G1 Ts52\n\n16) Felix: Build G1 Felix\n\n17) ts52: Build G2 Gonzo\n\n18) Felix: Move G1 Felix Ichor\n\n19) ts52: Trade G2 R2 Gonzo\n\n20) Felix: Trade Y1 R1 Felix\n\n21) ts52: Build G2 Gonzo\n\n22) Felix: B G2 Felix\n\n23) ts52: Discover G2 Gonzo Y2 Bigbird\n\n24) Felix: Sacrifice G2 Felix\nBuild G2 Ichor\nBuild G3 Felix\n\n25) ts52: Move G1 Gonzo Ichor\nCatastrophe Ichor G\n\n26) Felix: Move G3 Felix Bigbird\n\n27) ts52: Build G1 Bigbird\n\n28) Felix: Move G3 Bigbird Gonzo\n\n29) ts52: Move R2 Gonzo Bigbird\n\n30) Felix: S R1 Felix\nA Y2 Gonzo\n\n31) ts52: Discover G2 Bigbird B3 Grover\n\n32) Felix: B G1 Gonzo\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G2 Grover\nBuild G3 Ts52\n\n34) Felix: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y1 Gonzo\nBuild B1 Felix\n\n35) ts52: Move Y1 Ts52 Grover\n\n36) Felix: Sacrifice Y2 Gonzo\nMove G3 Gonzo Ts52\nMove G1 Gonzo Ts52\nCatastrophe Ts52 Green\n\tFelix: I think you may have missed that... Good game though!\n\tts52: Yep, totally missed it. Well played! Good game. Happy to play another any time.\n\n\nHomeworlds Online (SDG# 29236)\nVariants: "Unrated"\nStarted: 2016.2.7, Ended: 2016.3.1\nParticipants: Felix (S), random56 (N)\nWinner: Felix\n\n1) random56: Homeworld B1 Y2 G3\n\n2) Felix: H B3 G2 Y3\n\n3) random56: Build G1 Random56\n\n4) Felix: Build Y1 Felix\n\n5) random56: Build G1 Random56\n\n6) Felix: T Y1 G1 Felix\n\n7) random56: Discover G1 Random56 B3 A1c\n\n8) Felix: B G2 Felix\n\n9) random56: Sacrifice G3 Random56\nBuild G2 Random56\nBuild G3 A1c\nBuild G3 A1c\n\n10) Felix: Discover G2 Felix B1 Door\n\n11) random56: Trade G1 Y1 Random56\n\n12) Felix: Build Y1 Felix\n\n13) random56: Trade G1 Y1 A1c\n\n14) Felix: Move Y1 Felix Door\n\n15) random56: Sacrifice G3 A1c\nBuild G1 A1c\nBuild G1 A1c\nBuild G3 Random56\n\n16) Felix: Move G2 Door A1c\nCatastrophe A1c Green\n\n17) random56: Trade Y1 G1 A1c\n\n18) Felix: Build Y1 Felix\n\n19) random56: Build Y2 Random56\n\n20) Felix: M G1 Felix Door\n\n21) random56: Discover Y1 Random56 G3 Fio2\n\n22) Felix: Build Y2 Door\n\n23) random56: Sacrifice G3 Random56\nBuild Y3 Random56\nBuild Y3 Fio2\nBuild G1 A1c\n\n24) Felix: Build G2 Door\n\n25) random56: Discover Y2 Random56 G3 Aki\n\n26) Felix: Trade Y1 R1 Felix\n\n27) random56: Trade G2 R2 Random56\n\n28) Felix: Discover G2 Door B3 Gate\n\n29) random56: Build Y1 Aki\n\trandom56: I'm sorry it took me so long\n\n30) Felix: Build G2 Door\n\n31) random56: Build G3 A1c\n\tFelix: That's okay. Better late than never!\n\n32) Felix: Move G1 Door A1c\nCatastrophe A1c Green\n\n33) random56: Discover Y1 Aki G1 Help\n\n34) Felix: Move Y2 Door Gate\n\n35) random56: Move Y1 Fio2 Help\n\n36) Felix: Move Y1 Door Gate\n\n37) random56: Trade Y3 R3 Random56\n\n38) Felix: Trade Y1 R1 Gate\n\n39) random56: Build Y1 Help\n\n40) Felix: Move R1 Gate Random56\n\n\nHomeworlds Online (SDG# 29152)\nVariants: "Hard time"\nStarted: 2016.2.8, Ended: 2016.2.14\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H Y2 B1 G3\n\n2) Felix: Homeworld B1 G2 B3 *\n\n3) wil: B G1 Wil\n\n4) Felix: Build B1 Felix\n\n5) wil: B G1 Wil\n\tFelix: These should both be fast games...\n\n6) Felix: Trade B3 G3 Felix\n\n7) wil: T G1 R1 Wil\n\n8) Felix: Build B2 Felix\n\n9) wil: B R1 Wil\n\n10) Felix: Trade B2 R2 Felix\n\n11) wil: D R1 Wil B3 B3\n\twil: Lol.,I didn't notice short uni\n\twil: And I think I already list the other one\n\n12) Felix: Build B2 Felix\n\tFelix: Yeah, I was a bit obnoxious by starting to small universe games. *shrug* I like to change things up a bit sometimes. And you may not have lost the other! I am very prone to mistakes :)\n\n13) wil: B R1 Wil\n\n14) Felix: Build R2 Felix\n\n15) wil: B R2 Wil\n\n16) Felix: Build R3 Felix\n\n17) wil: S G1 Wil\nB R3 B3\n\n18) Felix: T R3 Y3 Felix\n\n19) wil: T R1 Y1 B3\n\n20) Felix: Discover B2 Felix G3 Nomans\n\n21) wil: T R2 B2 Wil\n\n22) Felix: Build B2 Nomans\n\n23) wil: B G1 Wil\n\n24) Felix: B B3 Felix\n\n25) wil: T R3 B3 B3\n\n26) Felix: T B3 Y3 Felix\n\n27) wil: M G1 Wil B3\n\n28) Felix: S Y3 Felix\nM B1 Felix B3\nM B2 Nomans Felix\nM B2 Felix B3\nC B3 Blue\n\n29) wil: D B2 Wil Y3 Y3\n\n30) Felix: Move G3 Felix Y3\n\n31) wil: D B2 Y3 Y2 Y2\n\n32) Felix: Discover Y3 Felix B3 Fulcrum\n\n33) wil: B G1 Wil\n\n34) Felix: Trade R2 Y2 Felix\n\n35) wil: T G1 Y1 Wil\n\n36) Felix: Sacrifice Y2 Felix\nMove Y3 Fulcrum Wil\nMove G3 Y3 Wil\n\n37) wil: A G3 Wil\n\n38) Felix: Build R1 Felix\n\n39) wil: A Y3 Wil\n\twil: I think you missed one step...\n\twil: Did I miss something or did you need just a tad more patience?\n\tFelix: Dang it. Nope, you didn't miss anything. I just messed up. I didn't account for not being able to sacrifice my r2 at home...\n\n40) Felix: T R2 Y2 Felix\n\twil: Yez....can't sacrifice control of your homeworld to kill me... Your team would not exist before the attack would occur.\n\n41) wil: M Y3 Wil Nomans\n\n42) Felix: B Y1 Felix\n\n43) wil: D Y1 Wil B3 B3\n\n44) Felix: T Y2 G2 Felix\n\n45) wil: T G3 R3 Wil\n\tFelix: Yep... I knew that, but I didn't look carefully enough for it. FAtal mistake!\n\n46) Felix: T B2 Y2 Nomans\n\n47) wil: S Y3 Nomans\nM G3 Wil B3\nM G3 B3 Felix\nP\n\twil: Yes these are the moments I wish we could say, Hey lets finish this game, buy back up to move 20 and play again.\n\n48) Felix: S Y2 Nomans\nM R1 Felix B3\nM R1 B3 Wil\nC Wil Red\n\tFelix: Yeah, same\n\n\tFelix: We both made mistakes I guess. Good game! Very intense!\n\nHomeworlds Online (SDG# 29217)\nVariants: "Unrated"\nStarted: 2016.2.8, Ended: 2016.2.14\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 Y1 G3 *\n\n2) wil: H G3 Y1 Y3 *\n\tFelix: I feel like trying some new things :)\n\twil: Oh boy...\n\n3) Felix: Build G1 Felix\n\n4) wil: B Y1 Wil\n\n5) Felix: Discover G1 Felix B2 Zimmer\n\n6) wil: M Y1 Wil Zimmer\n\n7) Felix: Trade G1 R1 Zimmer\n\n8) wil: D Y1 Zimmer G3 G3\n\n9) Felix: Build G1 Felix\n\n10) wil: B Y2 G3\n\n11) Felix: M G1 Felix Zimmer\n\n12) wil: M Y2 G3 Zimmer\n\n13) Felix: B R1 Zimmer\n\n14) wil: T Y2 R2 Zimmer\n\n15) Felix: Build R2 Zimmer\nCatastrophe Zimmer Red\n\n16) wil: B Y2 Wil\n\n17) Felix: Build G1 Zimmer\n\n18) wil: B Y2 G3\n\n19) Felix: B G1 Felix\n\n20) wil: M Y2 Wil Zimmer\n\n21) Felix: D G1 Felix B2 Duluth\n\n22) wil: T Y2 R2 Zimmer\n\n23) Felix: B G2 Duluth\n\n24) wil: A G1 Zimmer\n\n25) Felix: Build G2 Felix\n\n26) wil: A G1 Zimmer\n\n27) Felix: Discover G2 Felix B2 Alazar\n\n28) wil: M Y1 G3 Zimmer\n\n29) Felix: Trade G2 Y2 Duluth\n\tFelix: It doesn't look good for me!\n\twil: It does in the other game\n\n30) wil: B Y2 G3\n\n31) Felix: Build Y3 Duluth\n\n32) wil: B Y3 Zimmer\n\n33) Felix: B G2 Alazar\n\n34) wil: T Y3 B3 Zimmer\n\n35) Felix: M Y2 Duluth Wil\n\n36) wil: S Y2 G3\nM B3 Zimmer Wil\nM Y3 Wil Alazar\n\n37) Felix: S G2 Alazar\nB Y2 Wil\nB Y3 Wil\nC Wil Yellow\n\n38) wil: T G1 B1 Zimmer\n\n39) Felix: S G2 Alazar\nB G1 Duluth\nB G2 Felix\n\n40) wil: B G2 Zimmer\n\n41) Felix: S Y3 Duluth\nM G1 Duluth Wil\nM G1 Duluth Wil\nM G2 Felix Wil\nC Wil Green\n\n\twil: Sweet\n\tFelix: You have trained me well, Sensei!\n\nHomeworlds Online (SDG# 29216)\nStarted: 2016.2.10, Ended: 2016.2.24\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 Y1 Ts52\n\tFelix: And here we go again. Have fun!\n\tts52: Thanks! You too!\n\n6) Felix: T G1 Y1 Felix\n\n7) ts52: Build Y2 Ts52\n\n8) Felix: B Y2 Felix\n\n9) ts52: Discover Y1 Ts52 G1 Kermit\n\n10) Felix: T Y1 B1 Felix\n\n11) ts52: Build Y1 Ts52\n\n12) Felix: Discover Y2 Felix G2 Bereth\n\n13) ts52: Build G1 Ts52\n\n14) Felix: Build B1 Felix\n\n15) ts52: Trade Y1 B1 Ts52\n\n16) Felix: Move B1 Felix Bereth\n\n17) ts52: Move B1 Ts52 Kermit\n\n18) Felix: Trade B1 R1 Felix\n\n19) ts52: Trade G1 R1 Ts52\n\n20) Felix: Build G1 Felix\n\n21) ts52: Move Y2 Ts52 Kermit\n\n22) Felix: D G1 Felix B2 Jogrit\n\n23) ts52: Trade Y2 R2 Kermit\n\n24) Felix: Build G1 Felix\n\n25) ts52: Build G2 Ts52\n\n26) Felix: Sacrifice G3 Felix\nBuild G2 Jogrit\nBuild G3 Jogrit\nBuild G3 Felix\n\n27) ts52: Discover G2 Ts52 Y1 Bigbird\n\n28) Felix: Sacrifice G3 Jogrit\nBuild G3 Felix\nBuild Y2 Bereth\nBuild B1 Bereth\n\n29) ts52: Build Y2 Kermit\n\n30) Felix: Trade G3 Y3 Felix\n\n31) ts52: Build G3 Ts52\n\n32) Felix: S Y2 Bereth\nM G1 Jogrit Bigbird\nM G1 Bigbird Ts52\n\n33) ts52: Trade G3 R3 Ts52\n\n34) Felix: S G2 Jogrit\nB G2 Ts52\nB G3 Ts52\nC Ts52 Green\n\n35) ts52: Trade R1 G1 Ts52\n\n36) Felix: Discover G1 Felix Y2 Jigrit\n\n37) ts52: Build Y3 Kermit\n\n38) Felix: Move Y2 Bereth Kermit\nCatastrophe Kermit Yellow\n\n39) ts52: Build B2 Kermit\n\n40) Felix: Trade B1 Y1 Bereth\n\n41) ts52: Trade B2 Y2 Kermit\n\n42) Felix: Build G2 Felix\n\n43) ts52: Build G3 Ts52\n\n44) Felix: S G3 Felix\nB G3 Felix\nB Y2 Felix\nB Y3 Bereth\n\n45) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Bigbird\nBuild R1 Ts52\n\n46) Felix: M Y3 Bereth Kermit\n\n47) ts52: Move R2 Kermit Bereth\n\n48) Felix: M Y3 Felix Bereth\n\n49) ts52: Sacrifice Y2 Kermit\nMove R2 Bereth Bigbird\nDiscover B1 Kermit Y2 Zoe\n\n50) Felix: S G3 Felix\nB G3 Felix\nB B1 Bereth\nB R1 Felix\n\n51) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Zoe\nBuild R2 Bigbird\n\n52) Felix: M R1 Felix Bereth\n\n53) ts52: Move R2 Bigbird Jigrit\n\n54) Felix: Sacrifice G3 Felix\nBuild R2 Bereth\nBuild R3 Felix\nBuild G3 Jigrit\n\n55) ts52: Build R3 Bigbird\n\n56) Felix: Sacrifice R1 Felix\nAttack R2 Jigrit\n\tFelix: I thought I saw a better move, but then I decided it wasn't better, so I made the same move, haha.\n\tts52: Heh, no problem.\n\n57) ts52: Move R3 Bigbird Zoe\n\n58) Felix: Sacrifice Y2 Felix\nMove R1 Bereth Kermit\nMove G1 Jigrit Kermit\n\n59) ts52: Trade B2 Y2 Zoe\n\n60) Felix: Sacrifice Y3 Bereth\nMove R2 Jigrit Kermit\nMove R2 Kermit Ts52\nMove R1 Kermit Ts52\nCatastrophe Ts52 Red\n\n61) ts52: Trade G3 R3 Ts52\n\n62) Felix: Sacrifice G3 Jigrit\nBuild G3 Felix\nBuild Y2 Kermit\nBuild Y3 Bereth\n\n63) ts52: Sacrifice G3 Bigbird\nBuild G3 Ts52\nBuild G3 Bigbird\nBuild B2 Zoe\n\n64) Felix: Move G1 Kermit Ts52\n\n65) ts52: Discover G3 Ts52 R1 Elmo\n\n66) Felix: Sacrifice Y3 Kermit\nMove Y1 Bereth Kermit\nMove Y1 Kermit Zoe\nMove Y2 Kermit Zoe\nCatastrophe Zoe Yellow\n\n67) ts52: Attack G1 Ts52\n\n68) Felix: Sacrifice G3 Felix\nBuild G1 Felix\nBuild Y1 Bereth\nBuild G3 Felix\n\n69) ts52: Trade G1 B1 Ts52\n\n70) Felix: D B1 Bereth G1 Ocelot\n\n71) ts52: Move B1 Ts52 Bigbird\n\n72) Felix: M Y1 Bereth Ocelot\n\n73) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild B2 Bigbird\nBuild R1 Bigbird\n\n74) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Bereth\nBuild B3 Ocelot\n\n75) ts52: Trade B2 Y2 Bigbird\n\n76) Felix: Sacrifice G3 Felix\nBuild Y2 Ocelot\nBuild Y2 Ocelot\nBuild Y3 Bereth\n\n77) ts52: Sacrifice G3 Bigbird\nBuild G3 Ts52\nBuild G3 Bigbird\nBuild B2 Bigbird\n\n78) Felix: Sacrifice Y3 Bereth\nMove Y1 Ocelot Ts52\nMove Y2 Ocelot Ts52\nMove Y2 Ocelot Ts52\nCatastrophe Ts52 Yellow\n\n79) ts52: Move G3 Bigbird Bereth\n\n80) Felix: Sacrifice Y3 Bereth\nMove B3 Ocelot Ts52\nMove B1 Ocelot Ts52\nMove B1 Bereth Felix\n\n81) ts52: Sacrifice R3 Ts52\nAttack B3 Ts52\nAttack B1 Ts52\nAttack R2 Bereth\n\n82) Felix: Move B1 Felix Ts52\nCatastrophe Ts52 Blue\n\n\tFelix: Really close one! Great game. I had fun!\n\tts52: D'oh, I missed that one. Very good game! Thanks!\n\nHomeworlds Online (SDG# 28963)\nVariants: "Hard time"\nStarted: 2016.2.10, Ended: 2016.3.14\nParticipants: Felix (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B2 R1 G3\n\n2) Felix: H Y3 B2 G3\n\tSimon: Hi again, have fun :)\n\tFelix: Hello! Thanks, you too!\n\n3) Simon: Build G1 Simon\n\n4) Felix: B G1 Felix\n\n5) Simon: Trade G1 B1 Simon\n\n6) Felix: Trade G1 R1 Felix\n\n7) Simon: Build G1 Simon\n\n8) Felix: B R1 Felix\n\n9) Simon: Trade G3 R3 Simon\n\n10) Felix: T R1 B1 Felix\n\n11) Simon: Build R1 Simon\n\n12) Felix: Build R2 Felix\n\n13) Simon: Trade R3 Y3 Simon\n\n14) Felix: T R2 Y2 Felix\n\n15) Simon: Discover B1 Simon G3 G3\n\n16) Felix: Discover B1 Felix G1 Rim\n\n17) Simon: Build R2 Simon\n\n18) Felix: Build R2 Felix\n\n19) Simon: Move R2 Simon G3\n\n20) Felix: Discover R2 Felix Y1 Spawn\n\n21) Simon: Build Y1 Simon\n\n22) Felix: Sacrifice G3 Felix\nBuild R2 Felix\nBuild R3 Felix\nBuild R3 Spawn\n\n23) Simon: Build R3 G3\n\n24) Felix: T R3 G3 Felix\n\n25) Simon: Trade R2 Y2 G3\n\n26) Felix: Move R2 Felix Rim\n\n27) Simon: Build Y1 G3\n\n28) Felix: Move Y2 Felix Rim\n\n29) Simon: Discover R1 Simon B3 B3\n\n30) Felix: Build G1 Felix\n\n31) Simon: Build G2 Simon\n\n32) Felix: Move R2 Spawn B3\n\n33) Simon: Sacrifice G2 Simon\nBuild R2 G3\nBuild R3 B3\n\n34) Felix: Build Y2 Rim\n\n35) Simon: Discover Y1 G3 G2 G2\n\n36) Felix: Discover Y2 Rim Y3 Stow\n\n37) Simon: Sacrifice R1 B3\nAttack R2 B3\n\n38) Felix: Build R1 Rim\n\n39) Simon: Build G2 Simon\n\n40) Felix: Sacrifice Y2 Stow\nMove R1 Rim G3\nMove R2 Rim G3\nCatastrophe G3 Red\n\n41) Simon: Sacrifice G2 Simon\nBuild Y2 G2\nBuild Y3 G3\n\n42) Felix: Move R3 Spawn G2\n\n43) Simon: Sacrifice Y1 G2\nMove Y2 G2 B3\n\n44) Felix: Build Y1 Rim\n\n45) Simon: Build G2 Simon\n\n46) Felix: Discover G1 Felix B1 Cassa\n\n47) Simon: Move G2 Simon B3\n\n48) Felix: D Y2 Rim G3 Slit\n\n49) Simon: Build Y1 B3\n\n50) Felix: B G2 Felix\n\n51) Simon: Move R2 B3 Rim\n\n52) Felix: Move Y1 Rim Slit\n\n53) Simon: Attack B1 Rim\n\n54) Felix: M Y1 Slit Simon\n\n55) Simon: Discover Y1 Simon R3 R3\n\n56) Felix: D Y1 Simon B3 Slat\n\n57) Simon: Build B2 G3\n\n58) Felix: S Y1 Slat\nM R3 G2 Rim\n\n59) Simon: Build R1 Rim\n\n60) Felix: Attack B1 Rim\n\n61) Simon: Build R2 Rim\nCatastrophe Rim R\n\n62) Felix: Sacrifice G3 Felix\nBuild G2 Cassa\nBuild G3 Felix\nBuild B3 Rim\n\n63) Simon: Build Y1 Simon\n\n64) Felix: M Y2 Slit Rim\n\n65) Simon: Build G3 B3\n\n66) Felix: Move B3 Rim R3\n\n67) Simon: Discover Y1 R3 R1 R1\n\n68) Felix: S G3 Felix\nB G3 Felix\nB R2 Felix\nB B3 Rim\n\n69) Simon: Build R2 B3\n\n70) Felix: Move R2 Felix Rim\n\n71) Simon: Move G3 B3 R1\n\n72) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R2 Felix\nBuild R3 Rim\n\n73) Simon: Move G2 B3 R1\n\n74) Felix: Move R3 Rim B3\n\n75) Simon: Sacrifice R2 B3\nAttack R3 B3\nPass\n\n76) Felix: B R2 Rim\n\tFelix: Oh, nicely done!\n\n77) Simon: Move R3 B3 Cassa\n\n78) Felix: M B1 Rim R3\n\tSimon: hnn >_> the special defense against red\n\tFelix: Amazingly, I hadn't seen that defense used until now. It's obvious in retrospect. I have learned!\n\n79) Simon: Move Y3 G3 Cassa\n\n80) Felix: M B3 Rim G3\n\n81) Simon: Sacrifice Y3 Simon\nMove Y3 Cassa Felix\nMove G3 R1 Felix\nMove G2 R1 Felix\nCatastrophe Felix G\n\n82) Felix: Sacrifice Y2 Rim\nMove R2 Rim Felix\nMove R2 Rim Felix\n\n83) Simon: Pass\nCatastrophe Felix R\n\tFelix: Good game :)\n\tSimon: gg!\n\n\nHomeworlds Online (SDG# 29104)\nVariants: "Hard time"\nStarted: 2016.2.10, Ended: 2016.3.2\nParticipants: endo (S), Felix (N)\nWinner: endo\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) endo: Homeworld B1 Y3 G3\n\tFelix: Hello again! Still trying to sharpen my skills.... I hope you have fun!\n\n3) Felix: Build G1 Felix\n\tendo: Hey, sorry for the late response. I'm certainly up for another game of Homeworlds, as I'm not really overflowing with Homeworlds matches at the moment :) Amazons, on the other hand...\n\n4) endo: Build G1 Endo\n\tFelix: No problem! I need to play more Amazons. I tried it once and got trashed!\n\n5) Felix: T G1 B1 Felix\n\n6) endo: Trade G1 B1 Endo\n\n7) Felix: Build B2 Felix\n\n8) endo: Build B2 Endo\n\n9) Felix: Discover B2 Felix G1 Rim\n\n10) endo: Discover B1 Endo Y2 Site\n\n11) Felix: T B1 R1 Felix\n\n12) endo: Build B1 Endo\n\n13) Felix: Build R1 Felix\n\n14) endo: Discover B1 Endo G2 Topos\n\n15) Felix: Trade G3 Y3 Felix\n\tFelix: I see where this is going. I think I've already messed up pretty badly...\n\n16) endo: Build G1 Endo\n\n17) Felix: B B2 Rim\n\n18) endo: Build B3 Topos\n\tendo: Whoops... just realized you have a red sacrifice, so I can't do that just yet :)\r\n\r\nGetting the reds was dangerous. No reds were gone from the bank yet, and since medium blues are available, there was no way for you to control red (which would be very powerful if you could do it, hovewer). Getting into the red economy a bit later in the game creates threats your opponent needs to respond to (typically by getting red himself), but here you weren't in range (no yellow sacrifices, no yellow on your G1 star), so I could continue creating more blue build capacity for myself. Being able to build a lot of ships in a color in which the large ships are going to be exposed in the bank is the main goal of the early game (and usually very useful later as well). I strongly believe Homeworlds is a first-player win with optimal play (draws are rare, and I don't think getting to see your opponent's homeworld choice before making yours can win you the game). That means you have to be extremely careful to make the moves that make the greatest difference, since throwing away even one move effectively makes your opponent the one going first.\n\tendo: Oh, and another thing: By trading away the last ship of a color on a star you lose your build capacity in that color on that star. Even if you get a new color, that's inferior to trading away one of two (or three) ships of the same color on the same star. So, in general, you should first build, then trade (two moves used, two colors available on that star), rather than trading before building (two moves used, but only one color available). In this case, even though red is a better color to build at your homeworld (because of the blue star), I didn't have immediate catastrophe threats, so you shouldn't have given up the blue ship there just yet. Continuing this logic, discovering new stars when you are supposed to get in some new color is something to avoid. It uses up TWO moves - one for building the ship you discover with, and another for the discovery itself. After the discovery, you are forced to either make a trade that does not increase the number of your color accesses (counting the same color on different stars separately), or risk giving your opponent a monopoly. That didn't happen in this game (blue was the color being contested, so splitting your blues was definitely correct), but see the initial moves in my ongoing ladder game against Simon for an example: http://superdupergames.org/?page=archive_play&gid=29118\n\tFelix: Wow, thanks so much for the detailed tips! I appreciate the help a lot. :) I'll keep that in mind in future and maybe have a better shot!\n\n19) Felix: Trade B2 Y2 Rim\n\n20) endo: Trade B3 R3 Topos\n\n21) Felix: Trade R1 G1 Felix\n\n22) endo: Trade G1 Y1 Endo\n\n23) Felix: Build Y1 Felix\n\n24) endo: Move Y1 Endo Topos\n\n25) Felix: Trade Y3 G3 Felix\n\n26) endo: Move R3 Topos Rim\n\n27) Felix: Sacrifice Y2 Rim\nMove B2 Rim Site\nMove B2 Site Endo\n\n28) endo: Sacrifice R3 Rim\nAttack B2 Endo\nPass\nPass\n\n29) Felix: Discover G3 Felix Y1 Flow\n\n30) endo: Trade B2 R2 Endo\n\n31) Felix: Build Y2 Felix\n\n32) endo: Build Y3 Topos\n\n33) Felix: Discover Y2 Felix G1 Oust\n\n34) endo: Discover Y1 Topos Y3 Germ\n\n35) Felix: B R1 Felix\n\n36) endo: Build B2 Topos\n\n37) Felix: Move G3 Flow Felix\n\n38) endo: Sacrifice G3 Endo\nBuild B2 Site\nBuild B3 Endo\nBuild B3 Site\n\n\tFelix: I didn't do well at all. :) Time to keep practicing! Thanks for the tips and good game.\n\nHomeworlds Online (SDG# 29218)\nVariants: "Hard time"\nStarted: 2016.2.10, Ended: 2016.2.20\nParticipants: zmehaffey (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld R1 B2 G3\n\tzmehaffey: homeworld G3, B1\n\n2) zmehaffey: H Y3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) zmehaffey: B G1 Zmehaffey\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) zmehaffey: D G1 Zmehaffey B2 Hornet\n\n7) SilentTitan: Build Y1 Silenttitan\n\n\nHomeworlds Online (SDG# 29272)\nVariants: "Unrated"\nStarted: 2016.2.10, Ended: 2017.3.15\nParticipants: wil (S), zmehaffey (N)\nWinner: wil\n\n1) zmehaffey: Homeworld B3 Y2 G3\n\n2) wil: H B3 Y1 G3\n\twil: Ty 4 da game...gl\n\n3) zmehaffey: B G1 Zmehaffey\n\n4) wil: B G1 Wil\n\n5) zmehaffey: D G1 Zmehaffey Y1 Hornet\n\n6) wil: T G1 Y1 Wil\n\n7) zmehaffey: B G1 Hornet\n\n8) wil: B Y2 Wil\n\n9) zmehaffey: B G1 Zmehaffey\n\n10) wil: D Y1 Wil B2 B2\n\n11) zmehaffey: D G1 Hornet B2 Fig\n\n12) wil: S G3 Wil\nB Y2 B2\nB Y3 B2\nB Y3 Wil\n\n13) zmehaffey: B G2 Hornet\n\n14) wil: T Y3 G3 Wil\n\n\nHomeworlds Online (SDG# 29304)\nStarted: 2016.2.10, Ended: 2016.2.11\nParticipants: Felix (S), zmehaffey (N)\nWinner: zmehaffey\n\n1) zmehaffey: Homeworld B3 Y2 G3\n\n2) Felix: H R3 B1 G3\n\n3) zmehaffey: Build G1 Zmehaffey\n\n4) Felix: B G1 Felix\n\n5) zmehaffey: Trade G1 R1 Zmehaffey\n\n6) Felix: T G1 Y1 Felix\n\tFelix: Hey there sexy pants\n\n7) zmehaffey: Build G1 Zmehaffey\n\n8) Felix: B Y1 Felix\n\n9) zmehaffey: Discover G1 Zmehaffey B1 Brony\n\n10) Felix: D Y1 Felix G2 Butts\n\n11) zmehaffey: Build G1 Brony\n\n12) Felix: B Y1 Felix\n\n13) zmehaffey: B G1 Zmehaffey\n\n14) Felix: B G2 Felix\n\n15) zmehaffey: S G3 Zmehaffey\nB G2 Brony\nB G3 Zmehaffey\nB G3 Zmehaffey\n\n16) Felix: B Y2 Butts\n\n17) zmehaffey: T G2 Y2 Brony\n\n18) Felix: B Y3 Felix\n\n19) zmehaffey: D G3 Zmehaffey R1 Harlem\n\n20) Felix: T Y1 B1 Felix\n\n21) zmehaffey: S G3 Zmehaffey\nB G2 Harlem\nB G3 Zmehaffey\nB R1 Zmehaffey\n\n22) Felix: M B1 Felix Butts\n\tzmehaffey: I just seen your flattering sexy pants statement \n\n23) zmehaffey: M Y2 Brony Butts\n\tFelix: I meant every word :) and you are whipping my butt so far.\n\n24) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Butts\nBuild Y3 Felix\nCatastrophe Butts Yellow\n\tzmehaffey: I feel like this might have been a bad idea. I will have no life for the next two weeks... lol\n\tFelix: Good, good.... mwahaha. My evil plan is working. Just remember, all good things in moderation! You're only allowed to play it while you're not working or loving on your wife. I work on a computer all day, so I have an excuse to play all the time :)\n\n25) zmehaffey: T G1 Y1 Brony\n\n26) Felix: Trade Y3 R3 Felix\n\n27) zmehaffey: B Y1 Brony\n\n28) Felix: Move R3 Felix Butts\n\n29) zmehaffey: D Y1 Brony B3 Vince\n\n30) Felix: Move Y3 Felix Butts\n\n31) zmehaffey: B Y2 Brony\n\n32) Felix: Discover G2 Felix B2 Pony\n\n33) zmehaffey: B G1 Brony\n\n34) Felix: Move Y3 Butts Brony\n\n35) zmehaffey: S G3 Harlem\nB G3 Harlem\nB Y2 Brony\nB Y3 Vince\nC Brony Y\n\n36) Felix: Build B2 Butts\n\n37) zmehaffey: T Y3 R3 Vince\n\n38) Felix: Trade B2 Y2 Butts\n\n39) zmehaffey: S G3 Harlem\nB G3 Harlem\nB R2 Vince\nB Y1 Vince\n\n40) Felix: Sacrifice G3 Felix\nBuild G3 Pony\nBuild Y2 Butts\nBuild Y3 Felix\n\n41) zmehaffey: M R2 Vince Harlem\n\n42) Felix: Sacrifice G3 Pony\nBuild G3 Pony\nBuild B2 Butts\nBuild B2 Butts\n\n43) zmehaffey: M R3 Vince Pony\n\n44) Felix: Sacrifice R3 Butts\nAttack R3 Pony\nPass\nPass\n\n45) zmehaffey: M Y1 Vince Harlem\n\n46) Felix: Move Y2 Butts Brony\n\n47) zmehaffey: S G3 Harlem\nB G3 Harlem\nB Y3 Harlem\nB Y3 Vince\n\n48) Felix: Move B2 Butts Brony\n\n49) zmehaffey: T Y3 R3 Vince\n\n50) Felix: Trade B2 R2 Butts\n\n51) zmehaffey: M R3 Vince Butts\n\n52) Felix: Sacrifice R2 Butts\nAttack G1 Brony\nAttack G1 Brony\n\n53) zmehaffey: S R2 Harlem\nA B1S Butts\nA Y2S Butts\n\n54) Felix: Build Y3 Brony\n\n55) zmehaffey: S Y3 Harlem\nM Y2 Butts Felix\nM Y1 Vince Butts\nM Y1 Butts Felix\nC Felix Y\n\n\nHomeworlds Online (SDG# 29291)\nStarted: 2016.2.10, Ended: 2016.3.22\nParticipants: zmehaffey (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) zmehaffey: H G3 Y1 B3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tzmehaffey: You as well!\n\n4) zmehaffey: B B1 Zmehaffey\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) zmehaffey: B B1 Zmehaffey\n\n7) ts52: Build Y1 Ts52\n\n8) zmehaffey: D B1 Zmehaffey G2 Hornet\n\n9) ts52: Discover Y1 Ts52 G1 Kermit\n\n10) zmehaffey: B B1 Hornet\n\n11) ts52: Build Y2 Ts52\n\n12) zmehaffey: B B2 Zmehaffey\n\n13) ts52: Trade Y2 B2 Ts52\n\n14) zmehaffey: B B3 Hornet\n\n15) ts52: Build B3 Ts52\n\n16) zmehaffey: T B2 Y2 Zmehaffey\n\n17) ts52: Move B3 Ts52 Kermit\n\n18) zmehaffey: T B3 G3 Hornet\n\n19) ts52: Build Y2 Kermit\n\n\nHomeworlds Online (SDG# 29311)\nVariants: "Hard time"\nStarted: 2016.2.11, Ended: 2016.2.24\nParticipants: Felix (S), zmehaffey (N)\nWinner: Felix\n\n1) zmehaffey: H B2 Y1 G3\n\n2) Felix: H B1 Y3 G3\n\n3) zmehaffey: B G1 Zmehaffey\n\n4) Felix: Build G1 Felix\n\n5) zmehaffey: T G3 R3 Zmehaffey\n\n6) Felix: Trade G1 B1 Felix\n\n7) zmehaffey: B G1 Zmehaffey\n\n8) Felix: Build B1 Felix\n\n9) zmehaffey: D G1 Zmehaffey Y3 Hornet\n\n10) Felix: Discover B1 Felix G2 Turtle\n\n11) zmehaffey: B R1 Zmehaffey\n\n12) Felix: Build B2 Turtle\n\n13) zmehaffey: B G1 Hornet\n\n14) Felix: Build B2 Felix\n\n15) zmehaffey: B G2 Zmehaffey\n\n16) Felix: B B3 Turtle\n\n17) zmehaffey: T R3 B3 Zmehaffey\n\n18) Felix: T B2 Y2 Turtle\n\n19) zmehaffey: B G2 Hornet\n\n20) Felix: B G3 Felix\n\n21) zmehaffey: B G3 Zmehaffey\n\n22) Felix: D B1 Turtle R3 Rage\n\n23) zmehaffey: M G3 Zmehaffey Rage\n\n24) Felix: S G3 Felix\nB G3 Felix\nB B2 Rage\nB B3 Turtle\n\n25) zmehaffey: A B2 Rage\n\n26) Felix: T B3 R3 Turtle\n\n27) zmehaffey: S G3 Rage\nB G3 Zmehaffey\nB B3 Zmehaffey\nB R1 Zmehaffey\n\n28) Felix: S Y2 Turtle\nM B1 Rage Zmehaffey\nM R3 Turtle Hornet\nC Zmehaffey Blue\n\n29) zmehaffey: D G2 Hornet Y2 Killer\n\tFelix: Boom :)\n\n30) Felix: Trade B2 Y2 Felix\n\n31) zmehaffey: M G1 Zmehaffey Rage\n\n32) Felix: Attack G1 Hornet\n\n33) zmehaffey: S G3 Zmehaffey\nB G3 Zmehaffey\nB B1 Rage\nB R1 Zmehaffey\n\n34) Felix: S Y2 Felix\nM R3 Hornet Zmehaffey\nM G1 Hornet Zmehaffey\nC Zmehaffey Red\n\n35) zmehaffey: M G2 Zmehaffey Rage\n\tFelix: I have you now.\n\n36) Felix: S G3 Felix\nB G3 Zmehaffey\nB B2 Turtle\nPass\n\n\n\nHomeworlds Online (SDG# 29302)\nVariants: "Hard time"\nStarted: 2016.2.11, Ended: 2016.2.14\nParticipants: SilentTitan (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B3 Y2 G3\n\tFelix: Have fun!\n\n\nHomeworlds Online (SDG# 29320)\nStarted: 2016.2.12, Ended: 2016.4.28\nParticipants: Nupanick (S), nycavri (N)\nWinner: nycavri\n\n1) nycavri: Homeworld Y1 B2 G3\n\n2) Nupanick: Homeworld B1 G3 Y3\n\tnycavri: Let's see if I remember how to do this . . .\n\tnycavri: TaGG!\n\n3) nycavri: Build G1 Nycavri\n\tNupanick: Okay! Also, what's TaGG mean?\n\tnycavri: It's my toast, "To a Good Game!"\n\n4) Nupanick: Build Y1 Nupanick\n\n5) nycavri: D G1 Nycavri Y3 Deacon\n\n6) Nupanick: Trade Y1 R1 Nupanick\n\tNupanick: What's deacon mean?\n\n7) nycavri: B G1 Nycavri\n\tnycavri: My first 4 systems will be Deacon, May, Mercury and Taylor . . .\n\n8) Nupanick: Trade R1 G1 Nupanick\n\n9) nycavri: B G2 Deacon\n\tNupanick: Aw, hell, I can't believe I almost just got locked out of green.\n\tNupanick: Aw, hell, I can't believe I almost just got locked out of green.\n\tNupanick: Also, is that a reference to a band? Actors? I don't recognize the names.\n\tnycavri: It's the members of Queen . . .\n\tnycavri: It's the members of Queen . . .\n\n10) Nupanick: Discover G1 Nupanick Y2 Discworld\n\n11) nycavri: T G1 B1 Nycavri\n\n12) Nupanick: Build Y1 Nupanick\n\n13) nycavri: Move B1 Nycavri Deacon\n\n14) Nupanick: Discover G1 Discworld B3 Chalkzone\n\n15) nycavri: Trade G1 R1 Deacon\n\n16) Nupanick: Trade Y1 R1 Nupanick\n\n17) nycavri: Build G1 Deacon\n\n\tnycavri: *poke*\n\nHomeworlds Online (SDG# 29238)\nVariants: "Hard time"\nStarted: 2016.2.13, Ended: 2016.2.16\nParticipants: arcpollux (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B3 Y2 G3\n\n\tFelix: Hi there. Thanks for the game, and have fun! Have you played this before?\n\nHomeworlds Online (SDG# 29270)\nVariants: "Unrated"\nStarted: 2016.2.13, Ended: 2016.2.17\nParticipants: Felix (S), arcpollux (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29329)\nVariants: "Unrated"\nStarted: 2016.2.14, Ended: 2016.2.21\nParticipants: Felix (S), hunter547 (N)\nWinner: Felix\n\n\tFelix: Hi there. Have a good game! Need any tips?\n\nHomeworlds Online (SDG# 29269)\nVariants: "Hard time"\nStarted: 2016.2.14, Ended: 2016.2.29\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H Y3 B1 G3\n\n2) Felix: Homeworld B3 Y2 G3\n\n3) wil: B G1 Wil\n\tFelix: Here we go again. Have fun!\n\n4) Felix: B G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: T G1 B1 Felix\n\n7) wil: B B2 Wil\n\n8) Felix: B B2 Felix\n\n9) wil: T B1 R1 Wil\n\n10) Felix: Discover B1 Felix Y1 Spawn\n\n11) wil: D B2 Wil Y2 Y2\n\n12) Felix: Build B1 Felix\n\n13) wil: B R1 Wil\n\n14) Felix: Discover B2 Felix G1 Nascent\n\n15) wil: B G1 Wil\n\n16) Felix: Sacrifice G3 Felix\nBuild B2 Nascent\nBuild B3 Spawn\nBuild B3 Felix\n\n17) wil: B G1 Wil\n\tFelix: I used to be super hesitant to get rid of my green at home, but I saw Endo do this in one of his games (against you, I think!) and it seemed pretty effective...\n\n18) Felix: Sacrifice B2 Nascent\nTrade B1 R1 Spawn\nTrade B3 G3 Felix\n\n19) wil: B R2 Wil\n\n20) Felix: Sacrifice G3 Felix\nBuild B1 Nascent\nBuild B2 Spawn\nBuild B3 Felix\n\n21) wil: T R2 Y2 Wil\n\n22) Felix: Sacrifice B2 Nascent\nTrade B3 G3 Felix\nTrade B3 Y3 Spawn\n\n23) wil: M B2 Y2 Nascent\n\n24) Felix: Build G2 Felix\n\n25) wil: D G1 Wil Y2 Y2\n\n26) Felix: Sacrifice G3 Felix\nBuild B2 Spawn\nBuild B3 Spawn\nBuild B3 Nascent\n\n\nHomeworlds Online (SDG# 29336)\nVariants: "Hard time"\nStarted: 2016.2.14, Ended: 2016.2.29\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 Y1 G3\n\n2) Felix: Homeworld Y3 B1 G3\n\n3) wil: B G1 Wil\n\n4) Felix: B G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: T G1 B1 Felix\n\n7) wil: B B2 Wil\n\n8) Felix: B B2 Felix\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Felix: Trade B2 Y2 Felix\n\tFelix: Ah, I know this game... :)\r\n\n\n11) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\twil: Then that is the game we shall play\n\n12) Felix: Sacrifice Y2 Felix\nDiscover B1 Felix Y2 Out\nMove B1 Out Y3\nCatastrophe Y3 Blue\n\n13) wil: T B3 G3 Wil\n\n14) Felix: Build G1 Felix\n\n15) wil: B B1 Wil\n\n16) Felix: Trade G1 B1 Felix\n\tFelix: Rats. That gave you an edge. I should have changed by mg to a y3 instead earlier.\n\tFelix: g3*\n\n17) wil: T B1 Y1 Wil\n\n18) Felix: Build B1 Felix\n\n19) wil: B B2 Wil\n\n20) Felix: Discover B1 Felix Y2 Brisingr\n\n21) wil: D B2 Wil Y3 Y3\n\n22) Felix: Build G1 Felix\n\n23) wil: D B2 Y3 G2 G2\n\n24) Felix: Trade G3 Y3 Felix\n\n25) wil: B B3 G2\n\n26) Felix: Move B1 Felix G2\n\n27) wil: T B2 R2 G2\n\n28) Felix: Build B2 G2\n\n\tFelix: I know that feeling\r\n\n\tFelix: Aw man.... sorry this had to happen.\n\nHomeworlds Online (SDG# 29338)\nVariants: "Unrated"\nStarted: 2016.2.23, Ended: 2016.2.27\nParticipants: ugoggino (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\tFelix: Hi there, thanks for the game! Good luck. Have you played this before?\n\n2) ugoggino: Homeworld Y3 B2 G3\n\tugoggino: Hi, as you could guess... it's my first play. Thanks and good luck\n\n3) Felix: B G1 Felix\n\tFelix: Welcome! I am happy to give you tips or answer any questions you may have.\n\tFelix: The colors you chose to start with are good\n\n4) ugoggino: Build G1 Ugoggino\n\tugoggino: thank you, any advice is welcome\n\n5) Felix: Trade G1 B1 Felix\n\tFelix: Some general tips to get started with:\r\nStarting with a large green ship is a good idea, and having blue and yellow as your starting homeworld colors is also great. As a beginner, it's easiest to also start with small and medium homeworld pieces, as this allows you to access large pieces more quickly from the beginning.\n\tFelix: You typically don't need to bother with red at the beginning, but focus on building up your fleet of ships as fast as possible. Try to get the best ships you can without letting me get them. And diversify your colors as soon as possible, trying to rarely have three of the same color in a system if possible (and definitely never have four, because I could call catastrophe and blow them up!)\r\n\r\nIf your opponent gets a red ship, however, you should also try to get at least one as soon as possible so you aren't defenseless if they move in to attack.\n\tFelix: Also remember that if you sacrifice a ship for actions, you can use those actions in any system, so you don't necessarily have to have a red ship in a system, for instance, in order to attack. You could sacrifice your red elsewhere and still attack in a different system, so long as you had a ship there big enough to successfully attack. Make sense?\n\n6) ugoggino: Trade G1 Y1 Ugoggino\n\tFelix: If I think of other tips along the way, I'll let you know. Good luck!\n\n7) Felix: Build B1 Felix\n\n8) ugoggino: Build Y1 Ugoggino\n\n9) Felix: Discover B1 Felix G1 Rim\n\n10) ugoggino: Discover Y1 Ugoggino G1 Vega\n\n11) Felix: Build B1 Rim\n\n12) ugoggino: Build G1 Ugoggino\n\n13) Felix: Build B2 Felix\n\n14) ugoggino: Build G2 Ugoggino\n\n15) Felix: Discover B2 Felix Y1 Spark\n\n16) ugoggino: Trade G2 B2 Ugoggino\n\n17) Felix: Build G2 Felix\n\n18) ugoggino: Move B2 Ugoggino Vega\n\n19) Felix: Sacrifice G3 Felix\nBuild B3 Spark\nBuild B3 Rim\nBuild G2 Felix\n\n20) ugoggino: Sacrifice G3 Ugoggino\nBuild Y2 Vega\nBuild Y2 Vega\nBuild Y3 Ugoggino\n\n21) Felix: T B3 Y3 Rim\n\n22) ugoggino: Sacrifice Y3 Ugoggino\nMove Y1 Vega Felix\nMove Y2 Vega Felix\nMove Y2 Vega Felix\nCatastrophe Felix Y\n\n23) Felix: Trade B3 R3 Spark\n\n24) ugoggino: Build B3 Vega\n\n25) Felix: Move B2 Spark Ugoggino\n\tFelix: Good move to blow up half my system, but also dangerous. You now only have small ships in your home system, so it is vulnerable to attack. You should try to always have a large ship at home if possible.\n\n26) ugoggino: Sacrifice Y1 Ugoggino\nMove B3 Vega Felix\n\tugoggino: why didn't you move r3 to my homesystem? \n\n27) Felix: S R3 Spark\nA G1 Ugoggino\nPass\nPass\n\tFelix: I wanted to be able to sacrifice my red in order to capture all of your ships at once. You can sacrifice her read in another system and text chips and a different system. So if you had build another ship in your system, I could have sacrificed my large red and used my blue medium to attack all of your pieces at once\n\tFelix: Sorry, speech to text is not much good. I meant if you can sacrifice a red in one system and attack ships in a different system \n\tFelix: Like that. Not bad and good game!\n\tugoggino: thank you, I've got much to understand and learn\n\tFelix: No problem. It takes a few games to get a handle on the strategy, but I'm happy to help you learn! Feel free to challenge me as many times as you wish.\n\n\nHomeworlds Online (SDG# 29363)\nVariants: "Unrated"\nStarted: 2016.2.23, Ended: 2016.3.2\nParticipants: Felix (S), ugoggino (N)\nWinner: Felix\n\n1) ugoggino: Homeworld G3 B2 Y3\n\tugoggino: homeworld G3 B2 Y3\n\n2) Felix: H R1 B3 G3\n\n3) ugoggino: Build Y1 Ugoggino\n\n4) Felix: Build G1 Felix\n\n5) ugoggino: Trade Y1 G1 Ugoggino\n\tFelix: Starting with a yellow ship is slightly harder. Having a large green at the beginning gives you a lot more potential build power later if you sacrifice it. Having a large yellow has its advantages too, though, so it all comes down to how you like to play.\n\tFelix: Starting with a red, as I did, is pretty dangerous. But it can also have its advantages if used properly. It just makes things more difficult for me in the beginning game, because I have to trade for yellow before I can move anywhere.\n\n6) Felix: Trade G1 Y1 Felix\n\n7) ugoggino: Build G1 Ugoggino\n\n8) Felix: Build G1 Felix\n\n9) ugoggino: Discover G1 Ugoggino B1 Rigel\n\n10) Felix: Trade G1 B1 Felix\n\n11) ugoggino: Build Y1 Ugoggino\n\n12) Felix: Build B1 Felix\n\n13) ugoggino: Move Y1 Ugoggino Rigel\n\n14) Felix: Discover B1 Felix G2 Out\n\tFelix: It is dangerous to let your opponent get all of the smalls of a particular color before you yourself have any mediums, especially blue. In this case, I have all the small blues, and you can't trade for blue unless you first build a medium, or trade away your large yellow, which isn't ideal. In general, you don't want to let the opponent get a monopoly on any one color, but blue is especially dangerous since I can easily trade blues for other ships. If there is only one small of any color left, ad you don't have it yet, it's usually a good idea to try to get it.\n\n15) ugoggino: Build G1 Rigel\n\n16) Felix: Build B2 Out\n\n17) ugoggino: Build G2 Ugoggino\n\n18) Felix: B G2 Felix\n\n19) ugoggino: Build G3 Rigel\n\n20) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Felix\nBuild B3 Out\n\n21) ugoggino: Trade G3 B3 Rigel\n\tugoggino: Don't know what I can do... It's getting complex\n\n22) Felix: Trade B1 R1 Felix\n\tFelix: Getting a blue was smart, since I have so much in my home system, and you also don't want me to monopolize it. You want to try to cause a catastrophe in my home system if possible, but you also want some sort of plan to finish the job after you blow up half my homeworld. If you don't, you may leave yourself open to a counterattack. It does get pretty complex, but a few games will help you wrap your head around it!\n\n23) ugoggino: Sacrifice G2 Ugoggino\nBuild G2 Rigel\nBuild G3 Ugoggino\n\n24) Felix: T B1 Y1 Out\n\n25) ugoggino: Trade G1 R1 Rigel\n\n26) Felix: Discover G2 Felix Y2 Gate\n\n27) ugoggino: Discover G3 Ugoggino B1 Polar\n\n28) Felix: Build G1 Felix\n\n29) ugoggino: Sacrifice G2 Rigel\nBuild G2 Polar\nBuild Y2 Ugoggino\n\n30) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Out\nBuild Y3 Felix\n\n31) ugoggino: Sacrifice G3 Polar\nBuild G3 Polar\nBuild Y3 Rigel\nBuild R2 Rigel\n\n32) Felix: D Y1 Out B1 In\n\n33) ugoggino: Discover Y3 Rigel R2 Sirio\n\n34) Felix: Move R1 Felix Out\n\n35) ugoggino: Move R1 Rigel Ugoggino\n\n36) Felix: Move B3 Out In\n\n37) ugoggino: Sacrifice G3 Polar\nBuild G3 Polar\nBuild R2 Ugoggino\nBuild R3 Rigel\n\n38) Felix: M Y2 Out In\n\n39) ugoggino: Move R3 Rigel Gate\n\n40) Felix: Build R3 Out\n\n41) ugoggino: Attack G2 Gate\n\n42) Felix: Sacrifice Y3 Felix\nMove Y2 In Ugoggino\nMove Y1 In Ugoggino\nMove B3 In Ugoggino\nCatastrophe Ugoggino Yellow\n\n43) ugoggino: Pass\n\tFelix: By stripping away your large yellow ship with a catastrophe and moving my own large ship in at the same time, I have disabled your defenses, while having my own large red waiting to be sacrificed essentially guarantees I can capture any defenses you try to move in. I know it was tempting to capture my green ship in the gate system, but in this case, that was just a distraction, and I didn't need that ship anymore to put my plan into motion.\n\tFelix: It's definitely difficult to recognize maneuvers like this, and even harder to defend against them, but you have actually played very well in this game! You've got a great sense for the game, and I think you will get very good at it with practice.\n\tugoggino: good game, thanks\n\n44) Felix: Sacrifice R3 Out\nAttack R2 Ugoggino\nAttack R1 Ugoggino\nAttack G1 Ugoggino\n\tFelix: Happy to play again! Just challenge me.\n\n\nHomeworlds Online (SDG# 29362)\nVariants: "Unrated"\nStarted: 2016.2.29, Ended: 2016.3.8\nParticipants: Anshir (S), ugoggino (N)\nWinner: ugoggino\n\n1) ugoggino: Homeworld R1 B3 G3\n\tAnshir: Hi, first at all I want to say this is going to be my first play here, so I don't know how many mistakes I will make :) Please be patience with me XD\n\n2) Anshir: Homeworld B2 Y3 G3\n\tugoggino: hi, I'm new at this game too. so we can experitment.. ;) good luck\n\n3) ugoggino: Build G1 Ugoggino\n\n4) Anshir: Build G1 Anshir\n\n5) ugoggino: Trade G1 Y1 Ugoggino\n\n6) Anshir: Build G1 Anshir\n\n7) ugoggino: Build G1 Ugoggino\n\n8) Anshir: Discover G1 Anshir B1 Rigel\n\n9) ugoggino: Build G2 Ugoggino\n\n10) Anshir: Build G2 Rigel\n\n11) ugoggino: Discover G2 Ugoggino Y2 Alfa\n\n12) Anshir: Trade G2 Y2 Rigel\n\n13) ugoggino: Build Y1 Ugoggino\n\n14) Anshir: Sacrifice G3 Anshir\nBuild G2 Anshir\nBuild G2 Rigel\nBuild G3 Anshir\n\n15) ugoggino: Build G3 Alfa\n\n16) Anshir: Sacrifice Y2 Rigel\nMove G1 Rigel Alfa\nMove G2 Rigel Alfa\nCatastrophe Alfa G\n\n17) ugoggino: Trade G1 B1 Ugoggino\n\n18) Anshir: Trade G2 Y2 Anshir\n\n19) ugoggino: Build G1 Ugoggino\n\n20) Anshir: Trade G1 B1 Anshir\n\n21) ugoggino: Discover Y1 Ugoggino G2 Beta\n\n22) Anshir: Build G1 Anshir\n\n23) ugoggino: Move B1 Ugoggino Beta\n\n24) Anshir: Discover G1 Anshir R1 Antares\n\n25) ugoggino: Build Y1 Ugoggino\n\n26) Anshir: Build Y2 Anshir\n\n27) ugoggino: Build Y2 Beta\n\n28) Anshir: Move Y2 Anshir Antares\n\n29) ugoggino: Trade Y2 B2 Beta\n\n30) Anshir: Build G1 Antares\n\n31) ugoggino: Trade Y1 B1 Ugoggino\n\n32) Anshir: Build G2 Anshir\n\n33) ugoggino: Discover B1 Ugoggino Y2 Alfa\n\n34) Anshir: Sacrifice G3 Anshir\nBuild G2 Anshir\nBuild G3 Antares\nBuild G3 Anshir\n\n35) ugoggino: Sacrifice G3 Ugoggino\nBuild G3 Ugoggino\nBuild Y1 Beta\nBuild Y3 Ugoggino\n\n36) Anshir: Build Y3 Antares\n\n37) ugoggino: Sacrifice G3 Ugoggino\nBuild G3 Ugoggino\nBuild B2 Beta\nBuild B3 Alfa\n\n38) Anshir: Move B1 Anshir Antares\n\n39) ugoggino: Sacrifice Y1 Beta\nMove Y3 Ugoggino Beta\n\n40) Anshir: Trade G2 R2 Anshir\n\n41) ugoggino: Sacrifice B2 Beta\nTrade B1 R1 Alfa\nTrade B2 R2 Beta\n\n42) Anshir: Discover B1 Antares G2 Vega\n\n43) ugoggino: Sacrifice G3 Ugoggino\nBuild G3 Ugoggino\nBuild R2 Beta\nBuild Y1 Ugoggino\n\n44) Anshir: Sacrifice G3 Anshir\nBuild G3 Anshir\nBuild B1 Vega\nBuild B2 Vega\n\tAnshir: Sorry, I was out the weekend and today was...one of those days...however, difficult movement :D\n\n45) ugoggino: Sacrifice G3 Ugoggino\nBuild G3 Ugoggino\nBuild R3 Beta\nBuild R3 Alfa\n\n46) Anshir: Sacrifice Y3 Antares\nMove B1 Vega Ugoggino\nMove B1 Vega Ugoggino\nMove B2 Vega Ugoggino\nCatastrophe Ugoggino B\n\n47) ugoggino: Sacrifice Y3 Beta\nMove Y1 Ugoggino Anshir\nMove Y1 Ugoggino Anshir\nMove B3 Alfa Ugoggino\nCatastrophe Anshir Y\n\n48) Anshir: Sacrifice G3 Anshir\nBuild G2 Anshir\nBuild G3 Anshir\nBuild R3 Anshir\n\n49) ugoggino: Sacrifice G3 Ugoggino\nBuild B1 Ugoggino\nBuild B1 Ugoggino\nBuild G3 Ugoggino\n\n50) Anshir: Sacrifice Y2 Antares\nMove G2 Anshir Ugoggino\nMove G2 Anshir Ugoggino\nCatastrophe Ugoggino G\n\n51) ugoggino: Move Y1 Beta Ugoggino\n\n52) Anshir: Trade R3 Y3 Anshir\n\n53) ugoggino: Sacrifice B1 Beta\nTrade R3 Y3 Alfa\n\n54) Anshir: Sacrifice Y3 Anshir\nMove G3 Anshir Antares\nMove R2 Anshir Antares\nPass\n\tAnshir: I didn't see that :D well done\n\tugoggino: Very enjoiable match. I didn't imagine I could win untill I saw your attack with blue and a possibile counteroffensive just ready with yellow from my home system plus the monopoly of red pieces. \r\nThx\n\n\nHomeworlds Online (SDG# 29367)\nStarted: 2016.3.1, Ended: 2016.3.7\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld Y3 B2 G3\n\tFelix: Hello again :) Good luck and have fun!\n\n2) ts52: Homeworld B1 Y3 G3\n\tts52: Thanks. You too!\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: T G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build B2 Felix\n\n8) ts52: Discover B1 Ts52 G2 Kermit\n\n9) Felix: Discover B2 Felix G1 Range\n\n10) ts52: Build G1 Ts52\n\n11) Felix: Sacrifice G3 Felix\nBuild B2 Range\nBuild B3 Range\nBuild B3 Felix\n\n12) ts52: Build B3 Kermit\n\n13) Felix: Trade B3 Y3 Range\n\n14) ts52: Trade B1 Y1 Kermit\n\n15) Felix: Trade B3 G3 Felix\n\n16) ts52: Build Y1 Kermit\n\n17) Felix: D B2 Range Y2 Settlement\n\n18) ts52: Trade Y1 R1 Kermit\n\n19) Felix: Sacrifice G3 Felix\nBuild B1 Settlement\nBuild B3 Range\nBuild B3 Felix\n\n20) ts52: Discover B3 Kermit Y1 Bigbird\n\n21) Felix: Sacrifice B3 Range\nTrade B1 G1 Settlement\nTrade B2 G2 Range\nTrade B3 G3 Felix\n\n22) ts52: Discover G1 Ts52 Y2 Zoe\n\n23) Felix: Sacrifice G2 Range\nBuild G2 Settlement\nBuild G2 Settlement\n\n24) ts52: Trade G3 R3 Ts52\n\n25) Felix: Build G3 Felix\n\n26) ts52: Sacrifice G1 Zoe\nBuild R1 Ts52\n\n27) Felix: Trade G2 R2 Settlement\n\n28) ts52: Trade R1 G1 Ts52\n\n29) Felix: S Y3 Range\nM R2 Settlement Ts52\nM G2 Settlement Ts52\nM G1 Settlement Ts52\n\n30) ts52: Attack R2 Ts52\n\n31) Felix: T G2 R2 Ts52\n\n32) ts52: Sacrifice R2 Ts52\nAttack R2 Ts52\nAttack G1 Ts52\n\n33) Felix: T G3 R3 Felix\n\tFelix: Ah, dang. Definitely overlooked that!\n\n34) ts52: Sacrifice G1 Ts52\nBuild B1 Bigbird\n\n35) Felix: B G1 Felix\n\tts52: I almost missed it too.\n\n36) ts52: Trade B1 G1 Bigbird\n\n37) Felix: D G1 Felix B1 Stead\n\n38) ts52: Build B2 Bigbird\n\n39) Felix: B G2 Felix\n\n40) ts52: Trade B3 G3 Bigbird\n\n41) Felix: Sacrifice G3 Felix\nBuild G2 Stead\nBuild G3 Stead\nBuild G3 Felix\n\n42) ts52: Build B3 Bigbird\n\n43) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B3 Settlement\nBuild R1 Felix\n\n44) ts52: Trade B3 Y3 Bigbird\n\n45) Felix: Sacrifice B2 Settlement\nTrade G2 Y2 Stead\nTrade G2 Y2 Felix\n\n46) ts52: Build B2 Bigbird\n\n47) Felix: Sacrifice G3 Stead\nBuild Y1 Felix\nBuild G2 Stead\nBuild B3 Settlement\n\n48) ts52: Sacrifice Y3 Bigbird\nMove Y1 Kermit Bigbird\nMove Y1 Bigbird Felix\nMove B2 Bigbird Felix\nCatastrophe Felix Yellow\n\n49) Felix: Sacrifice Y2 Stead\nMove R3 Felix Ts52\nMove B1 Felix Ts52\n\n50) ts52: Sacrifice G3 Bigbird\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild B3 Felix\n\tFelix: Ooh. Nicely done. I anticipated (and even hoped for) the yellow catastrophe, but I didn't anticipate the one-two followup punch with blue.\n\n51) Felix: Sacrifice B3 Settlement\nTrade B1 R1 Ts52\nTrade G3 B3 Felix\nPass\nCatastrophe Ts52 Red\nCatastrophe Felix Blue\n\n\tts52: Thanks. It took me a bit to find it.\n\tFelix: Nice one! Very close. I made a fatal mistake in my earlier attack and you turned it back on me very well!\n\tts52: Absolutely. Another close game. Happy to play again, any time.\n\nHomeworlds Online (SDG# 29337)\nVariants: "Hard time"\nStarted: 2016.3.1, Ended: 2016.3.4\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y3 B2 G3\n\tFelix: Hope all is well! I hate that our other games timed out. Good luck and have fun!\n\n\tFelix: :(\n\nHomeworlds Online (SDG# 29313)\nVariants: "Hard time"\nStarted: 2016.3.1, Ended: 2016.3.11\nParticipants: SilentTitan (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\tFelix: Hello again. Good luck and have fun!\n\n2) SilentTitan: Homeworld B1 R2 G3\n\n3) Felix: Build G1 Felix\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) Felix: T G1 B1 Felix\n\n6) SilentTitan: Build G1 Silenttitan\n\n7) Felix: Build B1 Felix\n\n8) SilentTitan: Trade G3 B3 Silenttitan\n\n9) Felix: Discover B1 Felix Y1 Gora\n\n10) SilentTitan: Build B2 Silenttitan\n\n11) Felix: S G3 Felix\nB B2 Gora\nB B2 Gora\nB B3 Felix\n\n12) SilentTitan: Trade B3 Y3 Silenttitan\n\n13) Felix: Sacrifice B1 Gora\nTrade B3 G3 Felix\n\n\nHomeworlds Online (SDG# 29395)\nVariants: "Hard time"\nStarted: 2016.3.2, Ended: 2016.3.5\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29295)\nVariants: "Hard time"\nStarted: 2016.3.3, Ended: 2016.3.22\nParticipants: alexcobo (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y3 G3\n\n2) alexcobo: Homeworld G3 B2 Y3\n\n3) endo: Build G1 Endo\n\n4) alexcobo: Build Y1 Alexcobo\n\n5) endo: Build G1 Endo\n\n6) alexcobo: Build Y1 Alexcobo\n\n7) endo: Discover G1 Endo Y2 Pushout\n\n8) alexcobo: Trade Y1 B1 Alexcobo\n\n9) endo: Build G1 Pushout\n\n10) alexcobo: Build Y1 Alexcobo\n\n11) endo: Build G2 Pushout\n\n12) alexcobo: Discover Y1 Alexcobo B1 Noidea\n\n13) endo: Move G2 Pushout Noidea\n\n14) alexcobo: Build B2 Alexcobo\n\n15) endo: Sacrifice G3 Endo\nBuild G2 Endo\nBuild G2 Pushout\nBuild G3 Endo\n\n16) alexcobo: Trade Y3 G3 Alexcobo\n\n17) endo: Trade G3 Y3 Endo\n\n18) alexcobo: Trade B2 Y2 Alexcobo\n\n19) endo: Sacrifice Y3 Endo\nMove G1 Pushout Noidea\nMove G1 Noidea Alexcobo\nMove G2 Noidea Alexcobo\nCatastrophe Alexcobo G\n\n20) alexcobo: Trade Y2 G2 Alexcobo\n\n21) endo: Trade G2 R2 Endo\n\n22) alexcobo: Trade B1 R1 Alexcobo\n\n23) endo: Build R1 Endo\n\n24) alexcobo: Trade Y1 G1 Noidea\n\n25) endo: Trade R1 B1 Endo\n\n26) alexcobo: Build Y1 Alexcobo\n\n27) endo: Build B2 Endo\n\n28) alexcobo: Build G2 Alexcobo\n\n29) endo: Build G3 Endo\n\n30) alexcobo: Sacrifice G2 Alexcobo\nBuild G2 Noidea\nBuild G3 Alexcobo\n\n31) endo: Discover G1 Pushout B3 Terminal\n\n32) alexcobo: Trade G2 Y2 Noidea\n\n33) endo: Sacrifice G3 Endo\nBuild G2 Pushout\nBuild G3 Endo\nBuild G3 Terminal\n\n34) alexcobo: Sacrifice Y2 Noidea\nMove G1 Noidea Terminal\nMove G2 Alexcobo Terminal\nCatastrophe Terminal G\n\n35) endo: Trade G3 Y3 Endo\n\n36) alexcobo: Build G1 Alexcobo\n\n37) endo: Sacrifice Y3 Endo\nMove B1 Endo Alexcobo\nMove B2 Endo Alexcobo\nPass\n\n38) alexcobo: Attack B2 Alexcobo\n\n39) endo: Sacrifice G1 Endo\nBuild B1 Alexcobo\nCatastrophe Alexcobo B\n\n\nHomeworlds Online (SDG# 29409)\nVariants: "Hard time"\nStarted: 2016.3.6, Ended: 2016.3.11\nParticipants: Felix (S), ajo (N)\nWinner: Felix\n\n1) ajo: Homeworld G3 Y1 B3\n\n2) Felix: H B3 Y2 G3\n\tFelix: Thanks for accepting my challenge. Good luck!\n\n3) ajo: Build B1 Ajo\n\n4) Felix: Build G1 Felix\n\n5) ajo: Discover B1 Ajo B2 Alpha\n\n6) Felix: Trade G1 B1 Felix\n\n7) ajo: Trade B1 G1 Alpha\n\n8) Felix: Build G1 Felix\n\n9) ajo: Build B1 Ajo\n\n10) Felix: Discover G1 Felix B1 Out\n\n11) ajo: Build B2 Ajo\n\n12) Felix: B B2 Felix\n\n13) ajo: Trade B2 R2 Ajo\n\n14) Felix: T B1 Y1 Felix\n\n15) ajo: Move R2 Ajo Alpha\n\n16) Felix: B Y1 Felix\n\tFelix: Oops. Didn't mean to click that\n\n17) ajo: Build R1 Alpha\n\n18) Felix: M Y1 Felix Out\n\n19) ajo: Trade R2 Y2 Alpha\n\n20) Felix: T Y1 R1 Felix\n\n21) ajo: Trade B3 Y3 Ajo\n\n22) Felix: B G1 Felix\n\n23) ajo: Build G2 Alpha\n\n24) Felix: B G2 Out\n\n25) ajo: Trade G2 R2 Alpha\n\n26) Felix: Discover G2 Out B2 Jelwick\n\n27) ajo: Move R2 Alpha Out\n\n28) Felix:\nM G3 Felix Out\n\n29) ajo: Trade R2 G2 Out\n\n30) Felix: S G3 Out\nB G2 Out\nB G3 Felix\nB G3 Jelwick\n\n31) ajo: Sacrifice G2 Out\nBuild B1 Ajo\nBuild B3 Ajo\n\tajo: Ouch. Nicely done, I missed that.\n\n32) Felix: D B2 Felix Y1 Arthos\n\tFelix: Thanks! You had me scrambling with that red attack \n\n33) ajo: Sacrifice B1 Ajo\nTrade B3 R3 Ajo\n\n34) Felix: B Y2 Out\n\n35) ajo: Build Y3 Alpha\n\n36) Felix: M Y2 Out Jelwick\n\n37) ajo: Move Y3 Alpha Out\n\n38) Felix: S G2 Out\nB Y3 Jelwick\nB R1 Felix\n\n39) ajo: Move Y3 Ajo Alpha\n\n40) Felix: S Y2 Jelwick\nM G3 Jelwick Ajo\nM Y3 Jelwick Ajo\n\n41) ajo: Attack Y3 Ajo\n\n42) Felix: S R1 Felix\nA R3 Ajo\n\n43) ajo: Sacrifice R1 Alpha\nAttack R3 Ajo\n\n44) Felix: S R1 Felix\nA R3 Ajo\n\n45) ajo: Sacrifice Y3 Alpha\nMove G1 Alpha Out\nMove G1 Out Felix\nMove Y2 Alpha Ajo\n\tFelix: Back and forth...\n\tajo: Yeah, it's fruitless; you should just give up now. :)\n\n46) Felix: S R3 Ajo\nA Y2 Ajo\nA Y3 Ajo\nA B1 Ajo\n\tFelix: Never give up! Never surrender! :) great game. Very close. I'd love to rematch sometime!\n\n\nHomeworlds Online (SDG# 29419)\nStarted: 2016.3.7, Ended: 2016.3.8\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) Felix: Homeworld B3 Y1 G3\n\n3) ts52: Build G1 Ts52\n\n4) Felix: B G1 Felix\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Felix: T G1 Y1 Felix\n\n7) ts52: Build Y2 Ts52\n\n8) Felix: B Y2 Felix\n\n9) ts52: Discover Y1 Ts52 G1 Kermit\n\n10) Felix: D Y1 Felix G2 Sirius\n\n11) ts52: Build G1 Ts52\n\n12) Felix: Build G1 Felix\n\n13) ts52: Build G2 Ts52\n\n14) Felix: Build G2 Felix\n\n15) ts52: Discover G2 Ts52 B1 Gonzo\n\n16) Felix: Trade G1 B1 Felix\n\n17) ts52: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\n18) Felix: Discover G2 Felix B2 Brinstar\n\n19) ts52: Trade G1 R1 Ts52\n\n20) Felix: Build G1 Felix\n\n21) ts52: Sacrifice Y2 Ts52\nMove G3 Gonzo Brinstar\nMove G3 Brinstar Felix\n\n22) Felix: Trade G2 R2 Brinstar\n\n23) ts52: Sacrifice G3 Ts52\nBuild G2 Felix\nBuild G3 Ts52\nBuild Y2 Kermit\nCatastrophe Felix G\n\n24) Felix: Trade Y2 G2 Felix\n\tFelix: I knew I should have gotten a red when you did :)\n\n25) ts52: Move Y1 Kermit Sirius\n\tts52: Yeah, when your enemy get's a gun, you get a gun. - Old Homeworlds adage. :)\n\n26) Felix: Discover Y1 Sirius B1 Alpha\n\n27) ts52: Build Y2 Sirius\n\n28) Felix: Build B2 Felix\n\n29) ts52: Sacrifice G2 Gonzo\nBuild Y2 Sirius\nBuild Y3 Kermit\n\n30) Felix: Discover Y1 Alpha G2 Beta\n\n31) ts52: Sacrifice Y2 Sirius\nMove Y3 Kermit Brinstar\nMove Y3 Brinstar Felix\n\n32) Felix: Build G1 Felix\n\n33) ts52: Trade Y3 R3 Felix\n\n34) Felix: Build G3 Felix\n\n35) ts52: Attack G3 Felix\n\n36) Felix: Build G3 Felix\nCatastrophe Felix Green\n\tFelix: Very nicely done. That was fast!\n\n37) ts52: Trade R3 B3 Felix\nCatastrophe Felix B\n\n\tts52: Thanks. Definitely worth strongly considering getting a gun as soon as your opponent does.\n\tFelix: Definitely. That was a big mistake. I overlooked the fact that you could actually move a ship to my homeworld already, so I thought I could wait another turn before building one. I thought wrong :)\n\tts52: :) Still, an exellent game. Happy for a rematch any time.\n\nHomeworlds Online (SDG# 29413)\nVariants: "Hard time"\nStarted: 2016.3.7, Ended: 2016.3.17\nParticipants: Salmonax (S), Felix (N)\nWinner: Felix\n\n1) Felix: H R3 B2 G3\n\n2) Salmonax: Homeworld Y1 G3 B3\n\tFelix: Hello again :) have fun!\n\tSalmonax: You too!\n\n3) Felix: Build G1 Felix\n\n4) Salmonax: Build B1 Salmonax\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Salmonax: Trade B1 Y1 Salmonax\n\n7) Felix: Build Y2 Felix\n\n\tFelix: Aw :(\n\tSalmonax: Sorry about that, lost track of time\r\n\n\nHomeworlds Online (SDG# 29328)\nVariants: "Hard time"\nStarted: 2016.3.8, Ended: 2016.3.25\nParticipants: alexcobo (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) alexcobo: Homeworld B3 Y2 G3\n\tFelix: Hey there! First game?\n\tFelix: Nevermind. I see you've played a few! Have fun!\n\n3) Felix: Build G1 Felix\n\talexcobo: I played a few. Long time ago. :-)\r\nPlease, do not hold back. How would I ever get better otherwise?\n\n4) alexcobo: Build G1 Alexcobo\n\tFelix: Welcome back! I am certainly not the best player on here, so you don't have to worry about me holding back. I regularly get thrashed by other players, but doing so is also making me better :)\n\n5) Felix: Trade G1 Y1 Felix\n\n6) alexcobo: Build G1 Alexcobo\n\n7) Felix: Build Y1 Felix\n\n8) alexcobo: Discover G1 Alexcobo B1 Blueone\n\n9) Felix: Discover Y1 Felix G1 Cephas\n\n10) alexcobo: Build G2 Blueone\n\n11) Felix: B Y1 Felix\n\n12) alexcobo: Trade G2 Y2 Blueone\n\n13) Felix: Trade Y1 B1 Felix\n\n14) alexcobo: Build G2 Blueone\n\n15) Felix: Build B1 Felix\n\n16) alexcobo: Discover G2 Blueone R2 R2\n\n17) Felix: Move B1 Felix Cephas\n\n18) alexcobo: Build G2 Blueone\n\n19) Felix: B B2 Cephas\n\n20) alexcobo: Sacrifice G3 Alexcobo\nBuild G2 Alexcobo\nBuild G3 R2\nBuild G3 Alexcobo\n\n21) Felix: D B1 Cephas Y3 Ingot\n\n22) alexcobo: Trade G1 R1 Alexcobo\n\n23) Felix: T Y1 R1 Felix\n\n24) alexcobo: Build Y1 Blueone\n\n25) Felix: S G3 Felix\nB B2 Cephas\nB B2 Ingot\nB B3 Felix\n\n26) alexcobo: Sacrifice G3 R2\nBuild G1 R2\nBuild G3 R2\nBuild G3 Blueone\n\tFelix: Blue vs Green...\n\n27) Felix: T B2 R2 Cephas\n\tFelix: Hmm. Not having any green is a problem...\n\n28) alexcobo: Trade G2 B2 Blueone\n\n29) Felix: Sacrifice B1 Felix\nTrade B2 G2 Ingot\n\talexcobo: Here. Have one. :-)\n\n30) alexcobo: Sacrifice Y1 Blueone\nMove G3 R2 Ingot\n\tFelix: Why thank you, good sir. Too kind!\n\n31) Felix: Move B1 Ingot Blueone\n\n32) alexcobo: Trade G1 Y1 Blueone\n\n33) Felix: Sacrifice G2 Ingot\nBuild B1 Blueone\nBuild B2 Cephas\nCatastrophe Blueone Blue\n\n34) alexcobo: Sacrifice G3 Alexcobo\nBuild G1 R2\nBuild G2 Ingot\nBuild G3 Alexcobo\n\n35) Felix: T B3 G3 Felix\n\n36) alexcobo: Trade G2 B2 Alexcobo\n\n37) Felix: B G2 Felix\n\n38) alexcobo: Sacrifice B2 Alexcobo\nTrade G2 Y2 Ingot\nTrade G1 Y1 R2\n\n39) Felix: D G2 Felix B1 Rathe\n\n40) alexcobo: Sacrifice G2 R2\nBuild Y1 Ingot\nBuild Y3 R2\n\n41) Felix: Build Y3 Cephas\n\n\tFelix: Aw :(\n\talexcobo: I'm sorry about that.\n\tFelix: That's okay! I should have turned off the hard time setting. Want a rematch without that on so we don't have to worry about timing out?\n\nHomeworlds Online (SDG# 29432)\nStarted: 2016.3.8, Ended: 2016.3.11\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) Felix: Homeworld B3 Y2 G3\n\tFelix: Hope you don't get tired of the rematches! I work on a computer all day for my job, so this provides a much needed mind break from my work :)\n\n3) ts52: Build G1 Ts52\n\tts52: I don't mind at all. Also spend all day staring at a computer. ;)\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Build G1 Ts52\n\n10) Felix: Discover B2 Felix Y1 Braxus\n\n11) ts52: Discover B1 Ts52 Y2 Bigbird\n\n12) Felix: Build G1 Felix\n\n13) ts52: Trade B2 Y2 Ts52\n\n14) Felix: T G1 Y1 Felix\n\n15) ts52: Discover Y2 Ts52 G2 Kermit\n\n16) Felix: B G1 Felix\n\n17) ts52: Move G1 Ts52 Bigbird\n\n18) Felix: M G1 Felix Braxus\n\n19) ts52: Build B2 Bigbird\n\n20) Felix: B B2 Braxus\n\n21) ts52: Build Y1 Kermit\n\n22) Felix: D B2 Braxus G2 Omen\n\n23) ts52: Build Y3 Kermit\n\n24) Felix: Build B3 Omen\n\n25) ts52: Trade B2 R2 Bigbird\n\n26) Felix: Trade B2 R2 Omen\n\n27) ts52: Build R1 Bigbird\n\n28) Felix: Discover Y1 Felix G1 Brink\n\n29) ts52: Move Y3 Kermit Brink\n\n30) Felix: T B3 Y3 Omen\n\n31) ts52: Sacrifice R1 Bigbird\nAttack Y1 Brink\n\n32) Felix: Build R1 Omen\n\n33) ts52: Build B2 Bigbird\n\n34) Felix: Move B2 Braxus Kermit\n\n35) ts52: Move Y2 Kermit Braxus\n\n36) Felix: Sacrifice R1 Omen\nAttack Y1 Kermit\n\n37) ts52: Build R1 Bigbird\n\n38) Felix: Move G1 Braxus Kermit\n\n39) ts52: Move B1 Bigbird Brink\n\n40) Felix: Move G1 Kermit Ts52\n\n41) ts52: Sacrifice R1 Bigbird\nAttack G1 Ts52\n\n42) Felix: M B2 Kermit Ts52\n\n43) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild G3 Bigbird\n\n44) Felix: B R1 Omen\n\n45) ts52: Build R1 Bigbird\n\n46) Felix: Move B2 Ts52 Omen\n\n47) ts52: Move R2 Bigbird Brink\n\n48) Felix: Move Y1 Kermit Ts52\n\n49) ts52: Trade G3 R3 Ts52\n\n50) Felix: Sacrifice Y3 Omen\nMove R2 Omen Ts52\nMove R1 Omen Ts52\nMove B2 Omen Ts52\n\n51) ts52: Sacrifice R2 Brink\nAttack R2 Ts52\nAttack B2 Ts52\n\tts52: Hmmmm, I guess I didn't think that through enough.\n\n52) Felix: Attack G1 Ts52\n\tFelix: Or I'm just flailing in my death throes :)\n\n53) ts52: Sacrifice R2 Ts52\nAttack R1 Ts52\nAttack G1 Ts52\n\n54) Felix: Sacrifice G3 Felix\nBuild Y3 Ts52\nBuild B2 Felix\nBuild B3 Felix\n\tts52: Hmmmm, hadn't thought about it that way. ;)\n\n55) ts52: Attack Y3 Ts52\nCatastrophe Felix Blue\n\tFelix: That's what we call an attack falling flat on its face. I saw the way the game was going and thought it was worth a shot :) Well played!\n\tts52: Happens to the best of us. Thanks for the game! Another?\n\tFelix: Indeed! I'm always up for more. Challenge away.\n\n\nHomeworlds Online (SDG# 29428)\nVariants: "Hard time"\nStarted: 2016.3.11, Ended: 2016.4.8\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y3 B1 G3\n\tFelix: Oops. Looks like we're playing two at once. Sorry about that, my mistake. I don't mind playing two games though!\n\n2) ts52: Homeworld B2 Y3 G3\n\tts52: No worries. \n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: B B2 Felix\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) Felix: D B2 Felix Y2 Rim\n\n10) ts52: Build G1 Ts52\n\n11) Felix: Build G1 Felix\n\n12) ts52: Build G2 Ts52\n\n13) Felix: Move G1 Felix Rim\n\n14) ts52: Trade G2 Y2 Ts52\n\n15) Felix: Build G2 Rim\n\n16) ts52: Move Y2 Ts52 Kermit\n\n17) Felix: Build G2 Felix\n\n18) ts52: Discover G1 Ts52 Y1 Bigbird\n\n19) Felix: Discover G2 Rim G3 Bank\n\n20) ts52: Build G2 Ts52\n\n21) Felix: Discover G2 Felix Y2 Ram\n\n22) ts52: Move Y2 Kermit Bank\n\n23) Felix: Trade G1 R1 Rim\n\n24) ts52: Trade G2 R2 Ts52\n\n25) Felix: Sacrifice R1 Rim\nAttack Y2 Bank\n\n26) ts52: Build G1 Ts52\n\n27) Felix: Build G2 Felix\n\n28) ts52: Trade G1 Y1 Ts52\n\n29) Felix: Sacrifice G3 Felix\nBuild G1 Ram\nBuild G3 Felix\nBuild B2 Rim\n\n30) ts52: Build B3 Kermit\n\n31) Felix: Sacrifice G3 Felix\nBuild Y1 Bank\nBuild Y3 Bank\nBuild G3 Felix\n\n32) ts52: Move Y1 Ts52 Kermit\n\n33) Felix: S Y1 Bank\nD B2 Rim Y1 Rom\n\n34) ts52: Move B3 Kermit Ram\n\n35) Felix: T B1 R1 Felix\n\n36) ts52: Build R1 Ts52\n\n37) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R1 Felix\nBuild R2 Felix\n\n38) ts52: Sacrifice R2 Ts52\nAttack G2 Ram\nAttack G1 Ram\n\n39) Felix: Move Y2 Bank Kermit\n\n40) ts52: Sacrifice G2 Ram\nBuild B1 Ram\nBuild B3 Kermit\n\n41) Felix: Sacrifice R2 Felix\nAttack B1 Kermit\nAttack Y1 Kermit\n\n42) ts52: Trade B3 R3 Kermit\n\n43) Felix: Sacrifice Y2 Kermit\nDiscover Y1 Kermit Y2 Rum\nMove B1 Kermit Rum\n\n44) ts52: Trade B3 R3 Ram\n\n45) Felix: Sacrifice G3 Felix\nBuild B3 Rom\nBuild B3 Rim\nBuild B3 Rum\n\n46) ts52: Build R2 Ram\n\n47) Felix: Move B3 Rim Felix\n\n48) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R2 Kermit\nBuild R3 Ts52\n\n49) Felix: M R1 Felix Rim\n\n50) ts52: Trade R3 G3 Ram\n\n51) Felix: B R3 Felix\n\n52) ts52: Trade R3 G3 Ts52\n\n53) Felix: Sacrifice G2 Bank\nBuild G2 Felix\nBuild R3 Rim\n\n54) ts52: Build G2 Ts52\n\n55) Felix: M R3 Rim Bigbird\n\n56) ts52: Move G1 Bigbird Rum\n\n57) Felix: Move R1 Rim Kermit\nCatastrophe Kermit Red\n\n58) ts52: Build R1 Ram\n\n59) Felix: Sacrifice R1 Felix\nAttack G1 Rum\n\n60) ts52: Trade G3 R3 Ts52\n\n61) Felix: Sacrifice G2 Felix\nBuild R1 Bigbird\nBuild G1 Felix\n\n62) ts52: Sacrifice G3 Ram\nBuild G2 Ts52\nBuild G3 Ram\nBuild G3 Ts52\n\n63) Felix: S Y3 Bank\nM G1 Rum Bigbird\nM G1 Bigbird Ts52\nM R1 Bigbird Ts52\nC Ts52 Green\n\n64) ts52: Trade R3 Y3 Ts52\n\n65) Felix: Attack R1 Ts52\n\n66) ts52: Sacrifice R2 Ram\nAttack R1 Ts52\nAttack R1 Ts52\n\tFelix: You're gonna make me fight for this :)\n\n67) Felix: Sacrifice B2 Rim\nTrade B2 Y2 Rom\nTrade B1 G1 Rum\n\tts52: Yes, yes I am. ;)\n\n68) ts52: Build R2 Ram\n\n69) Felix: Sacrifice G2 Felix\nBuild G2 Felix\nBuild B1 Rom\n\n70) ts52: Build B2 Ram\n\n71) Felix: Move Y1 Rum Bigbird\n\n72) ts52: Move B1 Ram Felix\n\n73) Felix: Move Y1 Bigbird Ts52\n\n74) ts52: Trade Y3 G3 Ts52\n\n75) Felix: Sacrifice G2 Felix\nBuild G2 Felix\nBuild Y3 Ts52\n\n76) ts52: Attack Y3 Ts52\n\n77) Felix: Move Y2 Rom Ts52\nCatastrophe Ts52 Yellow\n\n78) ts52: Trade R1 Y1 Ts52\n\tFelix: I'm so nervous of messing up right now, haha.\n\n79) Felix: Sacrifice B3 Felix\nTrade R3 B3 Bigbird\nTrade B3 Y3 Rum\nPass\n\n80) ts52: Sacrifice G3 Ram\nBuild B2 Felix\nBuild B3 Felix\nBuild Y2 Ts52\nCatastrophe Felix Blue\n\tts52: :)\n\n81) Felix: S Y3 Rum\nM B3 Bigbird Ts52\nM B3 Rom Ts52\nM B1 Rom Ts52\nC Ts52 Blue\n\n\tFelix: Thanks! That was a fun one. Happy to go again!\n\tts52: Any time. Good game!\n\nHomeworlds Online (SDG# 29440)\nStarted: 2016.3.11, Ended: 2016.3.29\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld R2 B3 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\tts52: Trying something different. Interesting\n\n3) Felix: Build G1 Felix\n\tFelix: It's always good to change things up now and then!\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: B B2 Felix\n\n8) ts52: Build B2 Ts52\n\n9) Felix: T B2 Y2 Felix\n\n10) ts52: Discover B2 Ts52 G3 Kermit\n\n11) Felix: Build B2 Felix\n\n12) ts52: Build G1 Ts52\n\n13) Felix: Discover B2 Felix G1 Still\n\n14) ts52: Trade B1 Y1 Ts52\n\n15) Felix: Build G1 Felix\n\n16) ts52: Build G2 Ts52\n\n17) Felix: Build G2 Felix\n\n18) ts52: Discover G2 Ts52 B3 Gonzo\n\n19) Felix: Trade G1 R1 Felix\n\n20) ts52: Trade G1 R1 Ts52\n\n21) Felix: Discover G2 Felix B1 Estate\n\n22) ts52: Build G1 Ts52\n\n23) Felix: Build G1 Estate\n\n24) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y1 Ts52\n\n25) Felix: Trade G2 Y2 Estate\n\n26) ts52: Move Y1 Ts52 Kermit\n\n27) Felix: Build G2 Felix\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\n\n29) Felix: Sacrifice Y2 Estate\nMove B2 Still Kermit\nDiscover G1 Estate Y3 Fulcrum\n\n30) ts52: Sacrifice B2 Kermit\nTrade B3 R3 Kermit\nTrade G2 Y2 Gonzo\n\n31) Felix: Sacrifice G2 Felix\nBuild B1 Kermit\nBuild B2 Kermit\nCatastrophe Kermit Blue\n\n32) ts52: Sacrifice G3 Ts52\nBuild Y1 Kermit\nBuild Y3 Ts52\nBuild Y3 Gonzo\n\n33) Felix: Sacrifice G1 Fulcrum\nBuild Y3 Felix\n\n34) ts52: Trade Y3 G3 Ts52\n\n35) Felix: D Y2 Felix G1 Prescience\n\n36) ts52: Move R3 Kermit Prescience\n\n37) Felix: M Y2 Prescience Kermit\n\n38) ts52: Build Y3 Gonzo\n\n39) Felix: Discover Y2 Kermit B1 Sink\n\n40) ts52: Trade Y2 R2 Gonzo\n\n41) Felix: Build Y2 Felix\n\n42) ts52: Move Y3 Gonzo Prescience\n\n43) Felix: Discover Y2 Felix G1 Onus\n\n44) ts52: Trade R2 B2 Gonzo\n\n45) Felix: Build G2 Felix\n\tFelix: Well things are certainly stacked against me :)\n\n46) ts52: Move B2 Gonzo Prescience\n\n47) Felix: Move B1 Felix Onus\n\tts52: That may be true, but I think my end game is still pretty weak.\n\n48) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild B2 Prescience\n\tFelix: So is mine, haha\n\n49) Felix: Move R1 Felix Onus\n\n50) ts52: Trade G2 R2 Gonzo\n\n51) Felix: B B2 Onus\n\n52) ts52: Move B2 Prescience Kermit\n\n53) Felix: T B1 R1 Onus\n\n54) ts52: Sacrifice G2 Gonzo\nBuild B1 Kermit\nBuild B3 Prescience\n\n55) Felix: Move G2 Felix Sink\n\n56) ts52: Sacrifice Y3 Gonzo\nMove B3 Prescience Felix\nMove Y3 Prescience Felix\nMove Y1 Ts52 Gonzo\n\n57) Felix: S G2 Sink\nB Y3 Felix\nB G2 Felix\n\tFelix: Ah, nicely done!\n\n58) ts52: Sacrifice R3 Prescience\nAttack Y3 Felix\nAttack Y3 Felix\nAttack G3 Felix\n\n59) Felix: Move Y2 Sink Felix\nCatastrophe Felix Yellow\n\tts52: Thanks! GG!\n\n60) ts52: Attack G2 Felix\n\n\nHomeworlds Online (SDG# 29439)\nVariants: "Hard time"\nStarted: 2016.3.11, Ended: 2016.4.1\nParticipants: Felix (S), kanzenryu (N)\nWinner: Felix\n\n1) kanzenryu: Homeworld Y1 B2 G3\n\n2) Felix: H Y3 B2 G3\n\tkanzenryu: Haven't played for a while... have fun!\n\tFelix: You too!\n\n3) kanzenryu: Build G1 Kanzenryu\n\tkanzenryu: build g1 kanzeryu\n\n4) Felix: Build G1 Felix\n\n5) kanzenryu: Trade G1 B1 Kanzenryu\n\tkanzenryu: Typing in the wrong box... shows how long since I've played! Have you been following the AlphaGo games? Incredible stuff.\n\tFelix: Haha, I've done that plenty of times! And no! Never heard of them. What are they?\n\n6) Felix: Trade G1 Y1 Felix\n\tkanzenryu: It's a five game match of the game of Go between a new computer program and a to human player. It's pretty much the only game that humans are still better than computers. Until now. But the human did win game 4. Final game tomorrow. It's steamed live on YouTube. Search for AlphaGo.\n\tFelix: Woah, sounds pretty cool. I don't know much about Go. Wonder when they'll develop a computer to kick butt at Homeworlds :)\n\n7) kanzenryu: Build G1 Kanzenryu\n\n8) Felix: Build Y1 Felix\n\tkanzenryu: I attempted an AI for Homeworlds but it was pretty terrible. At times there are several thousand possible moves if you consider all the various sacrifice combinations, which makes it awkward for software.\n\tFelix: I can imagine. That's what makes it such a fun game to play though. So many possibilities!\n\n9) kanzenryu: Trade G3 Y3 Kanzenryu\n\n10) Felix: Discover Y1 Felix G1 Ripkin\n\n11) kanzenryu: Build Y2 Kanzenryu\n\n12) Felix: Build Y2 Ripkin\n\n13) kanzenryu: Discover Y2 Kanzenryu G3 Out\n\n14) Felix: Move Y1 Ripkin Out\n\n15) kanzenryu: Trade B1 R1 Kanzenryu\n\n16) Felix: Build Y2 Out\n\n17) kanzenryu: Build Y3 Out\nCatastrophe Out Y\n\n18) Felix: B G1 Felix\n\n19) kanzenryu: Build G2 Kanzenryu\n\n20) Felix: T G1 R1 Felix\n\n21) kanzenryu: Discover G2 Kanzenryu B3 Moon\n\n22) Felix: Trade Y1 B1 Felix\n\n23) kanzenryu: Build Y1 Kanzenryu\n\n24) Felix: Build Y1 Ripkin\n\n25) kanzenryu: Move Y1 Kanzenryu Moon\n\n26) Felix: Discover Y1 Ripkin G3 Foil\n\n27) kanzenryu: Discover G2 Moon B1 Peep\n\n28) Felix: Build Y2 Foil\n\n29) kanzenryu: Trade Y3 G3 Kanzenryu\n\n30) Felix: Build B1 Felix\n\n31) kanzenryu: Discover G1 Kanzenryu Y3 Also\n\n32) Felix: B Y2 Ripkin\n\n33) kanzenryu: Build G1 Kanzenryu\n\n34) Felix: Move Y2 Ripkin Moon\n\n35) kanzenryu: Move Y1 Moon Peep\n\n36) Felix: Build Y3 Ripkin\n\n\tkanzenryu: I think I can safely resign at this point. Thanks for the game.\n\nHomeworlds Online (SDG# 29438)\nVariants: "Hard time"\nStarted: 2016.3.11, Ended: 2016.3.15\nParticipants: Felix (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld G3 Y1 B3\n\n2) Felix: H R3 B2 G3\n\tajo: Here we go again. :)\n\tFelix: Indeed. I enjoy playing against you! Good luck and have fun!\n\n3) ajo: Build B1 Ajo\n\tajo: build b1\n\tajo: Ha. Wrong box.\n\n4) Felix: B G1 Felix\n\n5) ajo: Trade B1 G1 Ajo\n\n6) Felix: Trade G1 Y1 Felix\n\n7) ajo: Build G1 Ajo\n\n8) Felix: B Y1 Felix\n\n9) ajo: Discover G1 Ajo B2 Alpha\n\n10) Felix: Build Y2 Felix\n\n11) ajo: Build G1 Ajo\n\n12) Felix: Build G2 Felix\n\n13) ajo: Build G2 Alpha\n\n14) Felix: D G2 Felix B1 Rogue\n\n15) ajo: Trade G1 R1 Ajo\n\n16) Felix: Move Y1 Felix Rogue\n\n17) ajo: Trade G2 Y2 Alpha\n\n18) Felix: Trade Y1 R1 Felix\n\n19) ajo: Build B1 Ajo\n\n20) Felix: Build G1 Rogue\n\n21) ajo: Build G2 Alpha\n\n22) Felix: Discover G2 Rogue B2 Rebel\n\n23) ajo: Discover G1 Alpha Y1 Beta\n\n24) Felix: Build G2 Felix\n\n25) ajo: Build G3 Beta\n\n26) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Rogue\nBuild G3 Felix\n\n27) ajo: Sacrifice G3 Beta\nBuild G3 Beta\nBuild Y3 Alpha\nBuild R1 Ajo\n\n28) Felix: Sacrifice Y1 Rogue\nMove G2 Rebel Ajo\n\n29) ajo: Attack G2 Ajo\n\n30) Felix: Sacrifice Y2 Felix\nMove G1 Rogue Alpha\nMove G1 Alpha Ajo\nCatastrophe Ajo Green\n\n31) ajo: Sacrifice Y3 Alpha\nMove R1 Ajo Felix\nMove R1 Ajo Felix\nMove B1 Ajo Felix\nCatastrophe Felix Red\n\n32) Felix: Pass\n\tajo: :)\n\n33) ajo: Sacrifice G2 Alpha\nBuild B1 Felix\nBuild B2 Felix\nCatastrophe Felix Blue\n\tFelix: I took the bait! Very well done.\n\n\nHomeworlds Online (SDG# 29475)\nStarted: 2016.3.18, Ended: 2016.6.27\nParticipants: Felix (S), Salmonax (N)\nWinner: Felix\n\n1) Salmonax: Homeworld G1 Y2 B3\n\n2) Felix: Homeworld R3 B2 G3\n\n3) Salmonax: Build B1 Salmonax\n\n4) Felix: B G1 Felix\n\n5) Salmonax: Trade B1 G1 Salmonax\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Salmonax: Build G1 Salmonax\n\n8) Felix: B G2 Felix\n\n9) Salmonax: Discover G1 Salmonax B3 Bees\n\n10) Felix: B G2 Felix\n\n11) Salmonax: Build G2 Salmonax\n\n12) Felix: Discover G2 Felix B1 Echo\n\n13) Salmonax: Build G3 Bees\n\n14) Felix: Build G3 Echo\n\tSalmonax: That's a lot of green ships. =D\n\n15) Salmonax: Trade G2 R2 Salmonax\n\tFelix: Gosh, sure is! And another!\n\n16) Felix: Trade G3 Y3 Echo\n\n17) Salmonax: Trade G1 Y1 Bees\n\n18) Felix: Trade G2 R2 Felix\n\tFelix: And now it all goes away...\n\n19) Salmonax: Build G1 Bees\n\n20) Felix: Build G2 Felix\n\n21) Salmonax: Discover G1 Bees Y1 Wyeone\n\n22) Felix: Sacrifice G3 Felix\nBuild G2 Echo\nBuild G3 Echo\nBuild G3 Felix\n\n23) Salmonax: Move G3 Bees Echo\nCatastrophe Echo Green\n\n24) Felix: Move G2 Felix Echo\n\n25) Salmonax: Build G2 Wyeone\n\n26) Felix: B Y2 Echo\n\n27) Salmonax: Sacrifice G1 Wyeone\nBuild Y2 Bees\n\n28) Felix: Discover Y2 Echo G3 Pillow\n\n29) Salmonax: Move G2 Wyeone Bees\n\n30) Felix: S G3 Felix\nB Y1 Echo\nB Y3 Pillow\nB Y3 Felix\n\n31) Salmonax: Move Y2 Bees Echo\n\tFelix: Now the yellow is taking over!\n\tSalmonax: lol\n\n32) Felix: Trade Y1 B1 Echo\n\n33) Salmonax: Build Y1 Bees\n\n34) Felix: Trade Y1 G1 Felix\n\n35) Salmonax: Move Y1 Bees Echo\n\n36) Felix: Discover Y3 Echo G3 Crux\n\n37) Salmonax: Trade Y2 R2 Echo\n\n38) Felix: Sacrifice R2 Felix\nAttack R2 Echo\nAttack Y1 Echo\n\n39) Salmonax: Build G2 Bees\n\n40) Felix: Build G3 Echo\n\n41) Salmonax: Trade G2 Y2 Bees\n\n42) Felix: Sacrifice G3 Echo\nBuild G2 Felix\nBuild G3 Echo\nBuild Y1 Echo\n\tSalmonax: What a build-up. =D\n\n43) Salmonax: Build B1 Salmonax\n\tFelix: Indeed :O\n\n44) Felix: Move B1 Echo Pillow\n\n45) Salmonax: Trade G2 R2 Bees\n\tSalmonax: Man, I'm kinda stuck\n\n46) Felix: Build B2 Pillow\n\tFelix: I feel for you. It's hard to live without those large yellows!\n\n47) Salmonax: Trade B1 R1 Salmonax\n\n48) Felix: Discover G2 Echo B3 Slipstream\n\n49) Salmonax: Move R2 Salmonax Slipstream\n\n50) Felix: B G2 Echo\n\n51) Salmonax: Attack G2 Slipstream\n\n52) Felix: Move G3 Echo Bees\n\n53) Salmonax: Build R1 Salmonax\n\n54) Felix: Sacrifice R2 Echo\nAttack R2 Bees\nAttack Y2 Bees\n\n55) Salmonax: Discover Y1 Bees B1 Stars\n\n56) Felix: Sacrifice Y3 Pillow\nMove G3 Bees Salmonax\nMove G2 Echo Bees\nMove G2 Bees Salmonax\nCatastrophe Salmonax Green\n\n\nHomeworlds Online (SDG# 29303)\nVariants: "Unrated"\nStarted: 2016.3.23, Ended: 2016.3.26\nParticipants: Pheonixian (S), wil (N)\nWinner: Pheonixian\n\n\nHomeworlds Online (SDG# 29499)\nVariants: "Hard time"\nStarted: 2016.3.24, Ended: 2016.4.6\nParticipants: Simon (S), endo (N)\nWinner: endo\n\n1) endo: Homeworld B1 Y1 G3 *\n\n2) Simon: Homeworld B1 G2 B3 *\n\tendo: Gotta try a Gemini opening for a change... Despite all the animosity towards them, I believe this one should be powerful when going first.\n\n3) endo: Build G1 Endo\n\tSimon: hf! The b1 in first position is vulnerable for this, but haven't played it from this side yet.\n\n4) Simon: Build B1 Simon\n\tendo: I've played that opening against wil, who had a red half-star, and won, but I thought it's too slow if the first player uses yellow. Let's see...\n\n5) endo: Build G1 Endo\n\n6) Simon: Trade B3 Y3 Simon\n\n7) endo: Discover G1 Endo G2 Poset\n\n8) Simon: Build B2 Simon\n\n9) endo: Sacrifice G3 Endo\nBuild G1 Endo\nBuild G2 Poset\nBuild G3 Endo\n\n10) Simon: Discover B2 Simon G3 G3\n\n11) endo: Discover G1 Endo Y3 Filter\n\n12) Simon: Build B2 Simon\n\n13) endo: Build G3 Filter\n\n14) Simon: Build B2 G3\n\n15) endo: Trade G3 R3 Endo\n\n16) Simon: Build B3 G3\n\n17) endo: Move G3 Filter Simon\n\n\tSimon: gg, expected r3 endo-g3.\n\nHomeworlds Online (SDG# 29441)\nStarted: 2016.3.24, Ended: 2016.4.16\nParticipants: nycavri (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) nycavri: Homeworld G3 B1 Y3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tnycavri: TaGG!\n\n4) nycavri: Build Y1 Nycavri\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) nycavri: T Y1 G1 Nycavri\n\n7) ts52: Build G1 Ts52\n\n8) nycavri: B Y1 Nycavri\n\n9) ts52: Discover G1 Ts52 B1 Gonzo\n\n10) nycavri: D Y1 Nycavri G2 Deacon\n\n11) ts52: Move Y1 Ts52 Gonzo\n\n12) nycavri: T G1 R1 Nycavri\n\n13) ts52: Trade Y1 R1 Gonzo\n\n14) nycavri: Build Y1 Nycavri\n\n15) ts52: Build G1 Ts52\n\n16) nycavri: B Y1 Deacon\n\n17) ts52: Build G1 Gonzo\n\n18) nycavri: B Y2 Deacon\n\n19) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\n\n20) nycavri: B Y2 Nycavri\n\n21) ts52: Trade G3 Y3 Ts52\n\n22) nycavri: D Y2 Deacon B1 May\n\n23) ts52: Move Y3 Ts52 Gonzo\n\n24) nycavri: B Y2 Deacon\n\n25) ts52: Build G3 Ts52\n\n26) nycavri: Sacrifice Y2 Deacon\nM Y1 Deacon May\nM Y1 Deacon May\n\n27) ts52: Discover G2 Gonzo Y2 Bigbird\n\n28) nycavri: S Y3 Nycavri\nM Y2 May Ts52\nM Y1 May Ts52\nM Y1 May Ts52\nC Ts52 Y\n\n29) ts52: Move Y3 Gonzo Ts52\n\n30) nycavri: B Y1 Nycavri\n\n31) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild G3 Gonzo\n\n32) nycavri: D Y1 Nycavri B2 Mercury\n\n33) ts52: Move G3 Ts52 Nycavri\n\n34) nycavri: Discover Y1 Mercury B3 Taylor\n\n35) ts52: Sacrifice R1 Gonzo\nAttack R1 Nycavri\n\n36) nycavri: Move Y1 Taylor Ts52\n\n37) ts52: Attack Y2 Nycavri\n\n38) nycavri: B Y1 Nycavri\n\n39) ts52: Build Y2 Nycavri\nCatastrophe Nycavri Yellow\n\tts52: Thanks for the game!\n\tnycavri: Thank you, too.\n\n\nHomeworlds Online (SDG# 29506)\nVariants: "Hard time"\nStarted: 2016.3.26, Ended: 2016.4.2\nParticipants: mneme (S), Felix (N)\nWinner: mneme\n\n1) Felix: H B3 Y1 G3\n\tFelix: Thanks for accepting. Good luck! \n\n2) mneme: Homeworld B1 G2 Y3\n\n3) Felix: B G1 Felix\n\n4) mneme: Build Y1 Mneme\n\n5) Felix: Trade G1 Y1 Felix\n\n6) mneme: Trade Y1 B1 Mneme\n\n7) Felix: Build Y1 Felix\n\n8) mneme: Build B1 Mneme\n\n9) Felix: Discover Y1 Felix G2 Ramp\n\n10) mneme: Build Y2 Mneme\n\n11) Felix: Build Y2 Felix\n\n12) mneme: Discover Y2 Mneme G3 Sparta\n\n13) Felix: Trade Y2 B2 Felix\n\n14) mneme: Move B1 Mneme Sparta\n\n15) Felix: Build Y2 Felix\n\n16) mneme: Build Y2 Mneme\n\n17) Felix: Trade Y1 R1 Felix\n\n18) mneme: Trade Y2 R2 Mneme\n\n19) Felix: Move B2 Felix Ramp\n\n20) mneme: Discover B1 Mneme G3 Macc\n\n21) Felix: Build G1 Felix\n\n22) mneme: Build B2 Macc\n\n23) Felix: Build G1 Felix\n\n24) mneme: Build Y1 Sparta\n\n25) Felix: Discover G1 Felix B2 Stake\n\n26) mneme: Build B3 Sparta\n\n27) Felix: Build B3 Ramp\n\n28) mneme: Sacrifice Y2 Sparta\nMove B1 Sparta Ramp\nMove B1 Macc Ramp\nCatastrophe Ramp B\n\n29) Felix: Sacrifice G3 Felix\nBuild G1 Stake\nBuild G2 Stake\nBuild G3 Felix\n\n30) mneme: Build R1 Mneme\n\n31) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild R1 Felix\n\n32) mneme: Sacrifice Y3 Mneme\nMove Y1 Sparta Ramp\nMove Y1 Ramp Felix\nMove B3 Sparta Mneme\nCatastrophe Felix Y\n\n33) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Felix\nBuild Y1 Ramp\n\n34) mneme: Build B1 Mneme\n\n35) Felix: T R1 B1 Felix\n\n36) mneme: Trade B3 Y3 Mneme\n\n37) Felix: S B1 Felix\nT G3 Y3 Felix\n\n38) mneme: Build B1 Mneme\n\tmneme: Check.\n\n39) Felix: T G2 B2 Stake\n\n40) mneme: Sacrifice Y3 Mneme\nMove B1 Mneme Felix\nMove B1 Mneme Felix\nDiscover B2 Macc Y2 Checkmate\n\tFelix: Nicely done!\n\n\tmneme: The out, btw, was:\r\ns y3 felix\r\nm g1 stake macc\r\nm g1 stake macc\r\nm g2 stake macc\r\nc macc g\r\n\n\tFelix: Oh, I see it now. Probably wouldn't have made a difference. Good game!\n\tmneme: Thanks -- good game!\n\nHomeworlds Online (SDG# 29294)\nVariants: "Hard time"\nStarted: 2016.3.26, Ended: 2016.4.4\nParticipants: Simon (S), Pheonixian (N)\nWinner: Simon\n\n1) Pheonixian: Homeworld Y1 B2 G3\n\n2) Simon: Homeworld R1 B3 G3\n\tSimon: Hi, have fun!\n\n3) Pheonixian: Build G1 Pheonixian\n\n4) Simon: Build G1 Simon\n\tPheonixian: Hello, you too! This is my first game so we'll see how it goes but I think in any case I will enjoy it.\n\n5) Pheonixian: Discover G1 Pheonixian B3 Eris\n\tSimon: No problem -- fire away with questions about rules or this implementation. This implementation forbids catastrophe in the middle of a the turn, catastrophe can only occur at end of turn.\n\n6) Simon: Trade G1 Y1 Simon\n\tPheonixian: Okay good to know about catastrophes. Is that the standard rule that most people play? Also can one pass a turn or is the pass command only for passing extra sacrifice actions?\n\tSimon: Pass is to pass one action. You may pass all actions of your turn. I believe this impl has the end-of-turn-only catastrophe merely due to age. Any-time-during-turn catastrophe is the newer ruleset. I don't know what people play in real life, it's advisable to agree. :-)\n\tSimon: Turns without sacrifice have one action, which you may pass.\n\n7) Pheonixian: Build G1 Pheonixian\n\n8) Simon: Build Y1 Simon\n\tPheonixian: Thanks for the information.\n\n9) Pheonixian: Trade G1 B1 Pheonixian\n\n10) Simon: Build Y2 Simon\n\n11) Pheonixian: Build G1 Eris\n\n12) Simon: Trade Y2 B2 Simon\n\n13) Pheonixian: Build G1 Pheonixian\n\n14) Simon: Discover B2 Simon G2 G2\n\n15) Pheonixian: Sacrifice G3 Pheonixian\nBuild G2 Pheonixian\nBuild G2 Eris\nBuild G3 Pheonixian\n\n16) Simon: Build G3 Simon\n\n17) Pheonixian: Trade G2 Y2 Eris\n\n18) Simon: Move Y1 Simon G2\n\n19) Pheonixian: Discover G2 Pheonixian Y3 Sol\n\n20) Simon: Build Y2 G2\n\n21) Pheonixian: Sacrifice G3 Pheonixian\nBuild G2 Sol\nBuild G3 Pheonixian\nBuild B1 Pheonixian\n\n22) Simon: Sacrifice Y2 G2\nMove B2 G2 Eris\nMove B2 Eris Pheonixian\nCatastrophe Pheonixian B\n\n23) Pheonixian: Trade G1 B1 Eris\n\n24) Simon: Build Y2 G2\n\n25) Pheonixian: Sacrifice G3 Pheonixian\nBuild G1 Eris\nBuild B1 Eris\nBuild G3 Pheonixian\n\n26) Simon: Move Y1 G2 Pheonixian\n\n27) Pheonixian: Move B1 Eris Pheonixian\n\n28) Simon: Sacrifice G3 Simon\nBuild Y2 Pheonixian\nBuild Y3 Pheonixian\nPass\nCatastrophe Pheonixian Y\n\tSimon: It's rare to see no red ships at all. gg, always happy to rematch!\n\n\nHomeworlds Online (SDG# 29366)\nVariants: "Unrated"\nStarted: 2016.3.26, Ended: 2016.4.3\nParticipants: Pheonixian (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B3 Y2 G3\n\n2) Pheonixian: Homeworld B1 G2 Y3\n\tFelix: Thanks for the game! Have you played before?\n\n3) Felix: Build G1 Felix\n\tPheonixian: Thank you as well! This is my first game so I have a lot to learn. I'm looking forward to it.\n\tFelix: Welcome! I'm pretty familiar with the game, but I'm definitely not the best on here. I'm happy to answer any questions you have or provide tips along the way. Hope you have fun!\n\n4) Pheonixian: Build Y1 Pheonixian\n\n5) Felix: Trade G1 B1 Felix\n\tPheonixian: I hear the best on here are some of the best anywhere so certainly nothing wrong with not yet being ready to match them.\n\tFelix: Yeah. They crush me repeatedly, but the best way to improve is to play against good players and see what tactics they use against you!\n\n6) Pheonixian: Trade Y1 G1 Pheonixian\n\n7) Felix: Build B1 Felix\n\tPheonixian: Indeed so. One learns quite a bit more from playing better players than oneself than from playing worse players.\n\n8) Pheonixian: Build G1 Pheonixian\n\n9) Felix: Discover B1 Felix G1 Ramp\n\tFelix: Certainly! One tip... you notice that I got the last small blue, and now you are unable to trade for blue until you are able to make a medium ship. You COULD trade your large yellow away for a blue, but that wouldn't be particularly helpful because then you would lose the ability to build yellow. Since I have all the small blues, I have essentially blocked you from getting to blue until you are able to build medium ships. That's not the ideal situation for you. So, in the early game, when you see that there is only one small left of a color you don't yet have, it's wise to try to trade for it and not let your opponent block you out of that color. Make sense? I hope that helps.\n\n10) Pheonixian: Discover G1 Pheonixian B3 Ice\n\n11) Felix: Build B2 Ramp\n\tPheonixian: I see how that makes sense indeed. Thanks. I also noticed you took the last small green but avoided giving me the first new medium ship because I had nowhere available to build it.\n\tFelix: Exactly!\n\n12) Pheonixian: Build G2 Ice\n\n13) Felix: Trade B2 Y2 Ramp\n\n14) Pheonixian: Trade G2 B2 Ice\n\n15) Felix: Build B2 Ramp\n\n16) Pheonixian: Build G2 Pheonixian\n\n17) Felix: Trade B2 R2 Ramp\n\n18) Pheonixian: Trade B2 R2 Ice\n\n19) Felix: B B2 Ramp\n\tFelix: Smart thinking to get a red when your opponent does. \n\n20) Pheonixian: Trade G2 B2 Pheonixian\n\n21) Felix: Build G2 Felix\n\tPheonixian: Yes I've heard that as a basic rule of strategy when I was reading the little writing that there is on Homeworlds strategy. "The Weapon Rule: once your opponent has a weapon, you need a weapon." \r\nBut even without having already known that that it was clear you could move the R2 into ice, take the G1 and that would be a pretty weak position for me.\r\nI was going to build the G2 but then I realized it was the last one so I reconsidered the wisdom of giving you an easy large green.\n\n22) Pheonixian: Discover B2 Pheonixian G3 Kale\n\tFelix: Yeah, good call. It's always good to be aware of what your choice will allow your opponent to do. If it lets your opponent get something better than you, it may not be the wisest choice (although sometimes, you just have to bite the bullet and take a less-than-optimal choice)\n\tFelix: You seem to have a pretty solid grasp on the basic strategy. With a little practice, you'll be doing great\n\n23) Felix: Discover B2 Ramp G3 Scale\n\n24) Pheonixian: Build G2 Ice\n\tPheonixian: I think a solid grasp of basic strategy is a fair evaluation. I think I can generally tell approximately how strong a move is in the short term. I still feel a little bit lost in terms of longer-term strategy, questions like "what colors should I be prioritizing?" and "where is it good to put my ships" and "when is it time to be more threatening?". If I had to sum it up with one question I'd say I don't have a good idea of how the overall game plays out. I guess those types of questions are the first part of the deep strategy that makes Homeworlds a great game.\n\tFelix: I think you hit the nail on the head. When I started on here a few months ago, I also had a pretty good understanding of the mechanics and I could discern what seemed to be a strong move in the short term. It took me at least 10-20 games to begin to really see and understand the deeper strategy, and I'm still learning it. Formulating that long term strategy and positioning your ships in an effective way is crucial, but really difficult to pull off, especially against a good opponent.\n\tFelix: One tip I have discovered is that starting with blue/yellow in your homeworld and starting with a large green as your first ship seems to be the most effective opening setup. It can be really helpful in the mid-game to have a large green ship that you can either sacrifice for three build actions, or you can set up a "factory" in your homeworld. This is more difficult to pull off when you have green as one of your home stars, since green quickly becomes a crowded color in your home system. This also comes down to preference and play style, of course, but I have found that I have struggled a lot more when I have included green in my home system instead of as my starting ship.\n\tFelix: Red can be pretty much ignored in the early game, unless of course your opponent gets it. You want to focus on building up your other colors and spreading out as much as possible so you have a lot of build potential. I would say Blue is actually one of the most important colors to prioritize early on. This depends on what your opponent is doing, of course, but blue is a strong color because you can easily trade it for anything. You also want to be careful about trading away the last of any color in a system. If you trade the last of any color, you immediately lose the ability to build that color in that system. It's usually preferable to try to build a second blue, for instance, and then trade one of those blues for another color. Make sense?\n\tFelix: Lastly, regarding longer-term strategy (and color prioritization) you obviously need to factor in what colors are present in your opponent's homeworld. I have blue and yellow in mine, so you will probably want to focus on building up enough blue and yellow ships in locations close to my homeworld. Once you have enough to cause a catastrophe, you can work on figuring out a way to move them into my system. Alternatively, you could also try to bring in green to destroy most of my ships (and my biggest ones) and then bring in your own medium or large ship to try to capture my remaining ships. If I changed one of my greens to a red or some other color, though, that would make things trickier for you. It truly is a deep game...\n\n25) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Ramp\nBuild B3 Scale\n\tPheonixian: I was in fact noticing that exact problem. I wanted to build green but it was getting very crowded quickly in my homeworld, so having yellow/blue as the star and a green ship seems likely to be better. The yellow ship hasn't seemed particularly useful at the beginning of the game, whereas green would allow a powerful sacrifice it seems. \n\tPheonixian: When I first started blue seemed a bit underpowered as a ship option honestly but as we move through the game it seems better and better, so it seems you are right about that. \r\n\n\tPheonixian: The multiple options for victory conditions also seem to be an important part of the depth of this game. There's also a really neat effect it seems where ships build up more and more which pushes the game towards catastrophes and ultimately a conclusion. It seems an important part of a well-designed game is a force driving it naturally to a conclusion and Homeworlds definitely has that feeling.\n\n26) Pheonixian: Build Y1 Pheonixian\n\tFelix: Right. I recommend having no more than two of any color in a system if possible. If green is one of your homeworld stars, that makes it impossible to set up a factory... And you're right, the game does sort of drive itself to a conclusion in that way. I hadn't thought of it like that, but you're right!\n\n27) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Ramp\nBuild R1 Ramp\n\tFelix: And here you see an effective use of the factory, which results in me nearly monopolizing blue...\n\n28) Pheonixian: Discover Y1 Pheonixian R3 Warship\n\tPheonixian: Ouch. I planned to sac the g2 to take both blue pieces next turn but somehow completely blanked on the fact that you could just do that and prevent me. \r\nMuch to learn for me it seems.\n\tFelix: That's okay. Best way to learn is to make mistakes! I've made many. It's always a learning experience.\n\n29) Felix: Trade B3 Y3 Scale\n\n30) Pheonixian: Build B3 Kale\n\tPheonixian: Indeed, making mistakes has much potential to teach us.\r\nThis turn was kind of awkward I wasn't really sure what would be a good move. That might have been because I got myself into a bad spot and there wasn't a great move.\n\tFelix: Sometimes there just isn't a great move available and you have to do the best you can, or try to work toward a better move. It can be very difficult to see good moves in the midge when things are very complex. I often miss the ideal move myself.\n\n31) Felix: Move R2 Ramp Scale\n\n32) Pheonixian: Trade G1 R1 Pheonixian\n\tPheonixian: That makes sense. Considering one's options for the next turns can probably reduce the difficulty but not eliminate it. The middle game does seem to be the most complex part of the game.\n\n33) Felix: Move Y2 Ramp Warship\n\n34) Pheonixian: Discover Y1 Warship G1 Venus\n\n35) Felix: Build Y1 Scale\n\tFelix: Yeah, in my opinion, the mid game is the easiest place to lose track of things and make mistakes!\n\n36) Pheonixian: Sacrifice G2 Ice\nBuild Y2 Pheonixian\nBuild Y3 Venus\n\n37) Felix: Sacrifice Y3 Scale\nMove Y1 Scale Pheonixian\nMove Y2 Warship Pheonixian\nMove B2 Scale Pheonixian\nCatastrophe Pheonixian Yellow\n\tPheonixian: It makes sense, as this is the time when the most pieces are on the board and therefore the most options are available.\n\n38) Pheonixian: Sacrifice Y3 Venus\nMove R2 Ice Pheonixian\nMove B3 Kale Pheonixian\nMove G1 Ice Pheonixian\n\n39) Felix: S R2 Scale\nA R1 Pheonixian\nA R2 Pheonixian\n\n40) Pheonixian: Trade B3 R3 Pheonixian\n\n41) Felix: B R1 Pheonixian\nC Pheonixian Red\n\tPheonixian: Hm, I didn't see that when I build the yellow ship. This is a pretty bad place to be in it seems; though I don't think I lose instantly.\n\tFelix: It's so easy to overlook stuff like that when the game gets complex. I do it often! It doesn't look good for you, but you should be able to survive a bit longer and hope I make a mistake!\n\n42) Pheonixian: Trade B2 R2 Kale\n\tFelix: You always want to guard against losing control of red, though. I'm not sure there's much else you could have done though. I think you made the best move, given the scenario\n\n43) Felix: S R1 Ramp\nA G1 Pheonixian\n\n\tPheonixian: It looks pretty bad and I don't really see a way out from here honestly. I'll keep playing a bit but I don't see myself succeeding in the end.\n\tFelix: Hey, that's okay. Don't be discouraged. I think you played very well for a first time! You will definitely be a very solid player after a few games under your belt. I'm happy to rematch any time!\n\tPheonixian: I didn't expect to win my very first game against an experienced player, so I'm not discouraged I would say. I definitely have a much greater appreciation for the size of the learning curve of this game though :)\r\n\n\tFelix: It can be a bit overwhelming at times, but I'm happy to do what i can to give you pointers. If you want to rematch, I'm happy to play an even more casual game and just talk through it as we go.\n\nHomeworlds Online (SDG# 29514)\nVariants: "Hard time"\nStarted: 2016.3.27, Ended: 2016.4.9\nParticipants: goulo (S), Aristos (N)\nWinner: goulo\n\n1) Aristos: Homeworld B3 R2 G3\n\n2) goulo: Homeworld R2 B1 G3\n\tAristos: Hello. Good game.\n\n3) Aristos: Build G1 Aristos\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\n5) Aristos: Trade G3 Y3 Aristos\n\n6) goulo: Trade G3 Y3 Goulo\n\n7) Aristos: Build Y1 Aristos\n\n8) goulo: Build Y1 Goulo\n\n9) Aristos: Trade Y3 B3 Aristos\n\n10) goulo: Trade Y1 R1 Goulo\n\n11) Aristos: Build B1 Aristos\n\n12) goulo: Build Y1 Goulo\n\n13) Aristos: Discover B1 Aristos B1 Plum\n\n14) goulo: Trade Y3 B3 Goulo\n\n15) Aristos: Trade B1 G1 Plum\n\n16) goulo: Build G2 Goulo\n\n17) Aristos: Build G2 Plum\n\n18) goulo: Discover G2 Goulo Y3 Parnaso\n\n19) Aristos: Trade G1 Y1 Plum\n\n20) goulo: Build Y2 Goulo\n\n21) Aristos: Build Y2 Plum\n\n22) goulo: Move Y1 Goulo Parnaso\n\n23) Aristos: Discover Y1 Plum G3 Pear\n\n24) goulo: Sacrifice G2 Parnaso\nBuild Y2 Parnaso\nBuild Y3 Goulo\n\n25) Aristos: Build Y3 Aristos\n\tAristos: Sorry... mistyped g3 as g2. \n\n26) goulo: Move Y2 Parnaso Plum\n\n27) Aristos: Trade Y1 R1 Aristos\n\n28) goulo: Move Y2 Plum Pear\n\n29) Aristos: Build Y1 Pear\n\n30) goulo: Sacrifice R1 Goulo\nAttack Y1 Pear\n\n31) Aristos: Move Y2 Plum Pear\nCatastrophe Pear Yellow\n\n32) goulo: Build Y1 Goulo\n\n33) Aristos: Build Y1 Aristos\n\n34) goulo: Trade Y1 R1 Goulo\n\n35) Aristos: Move Y1 Aristos Plum\n\n36) goulo: Build B1 Goulo\n\n37) Aristos: Sacrifice G2 Plum\nBuild Y1 Plum\nBuild Y2 Aristos\n\n38) goulo: Move B1 Goulo Parnaso\n\n39) Aristos: Move Y1 Plum Parnaso\n\n40) goulo: Discover B1 Parnaso Y2 Hesse\n\n41) Aristos: Sacrifice R1 Aristos\nAttack Y1 Parnaso\n\n42) goulo: Discover Y2 Goulo G3 Kalevala\n\n43) Aristos: Build G1 Aristos\n\n44) goulo: Build G2 Goulo\n\n45) Aristos: Move G1 Aristos Plum\n\n46) goulo: Move G2 Goulo Parnaso\n\n47) Aristos: Move Y3 Aristos Plum\n\n48) goulo: Sacrifice R1 Goulo\nAttack Y1 Parnaso\n\n49) Aristos: Move Y1 Plum Parnaso\nCatastrophe Parnaso Yellow\n\n50) goulo: Build G2 Goulo\n\n51) Aristos: Build G2 Plum\n\n52) goulo: Sacrifice G1 Goulo\nBuild B2 Hesse\n\n53) Aristos: Trade Y2 R2 Aristos\n\n54) goulo: Discover B1 Hesse Y1 Parnaseto\n\n55) Aristos: Trade B3 G3 Aristos\n\n56) goulo: Trade B2 G2 Hesse\n\n57) Aristos: Move G2 Plum Hesse\n\n58) goulo: Discover G2 Hesse Y1 Flaveto\n\n59) Aristos: Sacrifice G3 Aristos\nBuild G1 Hesse\nBuild G3 Plum\nBuild G3 Aristos\n\n60) goulo: Sacrifice G2 Flaveto\nBuild B2 Parnaseto\nBuild B2 Parnaseto\n\n61) Aristos: Trade G3 B3 Plum\n\n62) goulo: Build Y1 Goulo\n\n63) Aristos: Move B3 Plum Kalevala\n\n64) goulo: Sacrifice Y2 Kalevala\nMove B1 Parnaseto Aristos\nMove B2 Parnaseto Aristos\n\n65) Aristos: Sacrifice G3 Aristos\nBuild G2 Plum\nBuild G3 Aristos\nBuild B2 Kalevala\n\n66) goulo: Attack R2 Aristos\n\tAristos: Wow. That would've been stupid. \n\n67) Aristos: Attack R2 Aristos\n\tgoulo: heh! :)\n\n68) goulo: Pass\n\tAristos: What's the rule on take backs? I.e. you attack my red ship, I attack right back. You attack again... deadlock. Which of us wins that scenario to break the cycle? \n\tAristos: Hm... found a citation where the official ruling is that such a game is a draw. I'll assume that's the case. You can either take a draw by attacking my red ship before you catastrophe or play for victory by catastrophe first. Either way, I'm going to leverage my green advantage while I have it. \n\n69) Aristos: Pass\n\tAristos: Ok, so now if you attack my red (or my green for that matter), I attack back. Stalemate. \n\n70) goulo: Pass\n\tgoulo: there seems to be a technical problem of SDG not providing a way to propose a draw in Homeworlds. Or am I blind and missing it somewhere?\n\tAristos: We have to both pass twice in a row. The problem with that is that if I pass, you press advantage. So the only way to a draw is to agree to it here and then actually execute on it. \n\n71) Aristos: Pass\n\tAristos: You can move your b2 into Aristos to break the cycle. \n\tgoulo: Oh, interesting, I didn't know we could both pass and that would let SDG recognize it's a draw. I'm content to agree to a draw if you are. So I officially propose doing that. OK? If you agree to a draw too, then let's both pass and finish it rather than capturing back and forth the rest of our lives. :)\n\tAristos: I agree.\n\n72) goulo: Pass\n\n\tAristos: I challenged. I'll resign so you can keep your seat. \n\tgoulo: Thanks, that's very gracious of you, since I think if we'd kept playing instead of trying to make SDG recognize a draw, you were winning. \n\tgoulo: Too bad Aaron isn't developing SDG any more. This game needs a "propose draw" option! :)\n\nHomeworlds Online (SDG# 29541)\nVariants: "Hard time"\nStarted: 2016.4.3, Ended: 2016.5.4\nParticipants: Felix (S), TeeTeeTee (N)\nWinner: TeeTeeTee\n\n1) TeeTeeTee: Homeworld B1 Y2 G3\n\tTeeTeeTee: Well, if you insist.\n\n2) Felix: Homeworld G3 B1 B3 *\n\tFelix: No one else will accept, either. Good luck!\n\tFelix: h g3 b1 b3*\n\n3) TeeTeeTee: Build G1 Teeteetee\n\n4) Felix: Build B1 Felix\n\n5) TeeTeeTee: Trade G3 B3 Teeteetee\n\n6) Felix: Trade B3 Y3 Felix\n\n7) TeeTeeTee: Build B2 Teeteetee\n\n8) Felix: Build B2 Felix\n\n9) TeeTeeTee: Trade B3 R3 Teeteetee\n\tFelix: Nice work dodging around that early blue advantage I was going for!\n\n10) Felix: Trade B1 G1 Felix\n\n11) TeeTeeTee: Build R1 Teeteetee\n\n12) Felix: Build Y1 Felix\n\n13) TeeTeeTee: Build G1 Teeteetee\n\n14) Felix: Build G2 Felix\n\n15) TeeTeeTee: Build G2 Teeteetee\n\n16) Felix: Discover G1 Felix B2 Stilt\n\n17) TeeTeeTee: Discover G1 Teeteetee Y3 Sunn\n\n18) Felix: Build G2 Stilt\n\n19) TeeTeeTee: Build G3 Sunn\n\n20) Felix: Build G3 Felix\n\n21) TeeTeeTee: Trade G2 Y2 Teeteetee\n\n22) Felix: Trade G2 R2 Felix\n\n23) TeeTeeTee: Sacrifice G3 Sunn\nBuild G2 Teeteetee\nBuild G2 Teeteetee\nBuild G3 Sunn\n\n24) Felix: Move Y1 Felix Stilt\n\n25) TeeTeeTee: Move B2 Teeteetee Sunn\n\n26) Felix: Move G1 Stilt Sunn\n\n27) TeeTeeTee: Sacrifice G3 Sunn\nBuild G3 Sunn\nBuild B1 Sunn\nBuild B3 Sunn\n\n28) Felix: Discover B2 Felix Y2 Stamp\n\n29) TeeTeeTee: Move B2 Sunn Stamp\n\n30) Felix: Sacrifice G3 Felix\nBuild G3 Stilt\nBuild R1 Felix\nBuild B3 Stamp\n\n31) TeeTeeTee: Sacrifice Y2 Teeteetee\nMove B1 Sunn Stamp\nMove G3 Sunn Stamp\nCatastrophe Stamp Blue\n\n32) Felix: Move G1 Sunn Teeteetee\nCatastrophe Teeteetee Green\n\n33) TeeTeeTee: Build B1 Sunn\n\n34) Felix: Trade G2 B2 Stilt\n\n35) TeeTeeTee: Move B1 Sunn Stamp\n\n36) Felix: Move R1 Felix Stilt\n\n37) TeeTeeTee: Sacrifice G3 Stamp\nBuild B2 Sunn\nBuild B3 Stamp\nBuild B3 Stamp\n\n38) Felix: Discover B2 Stilt G3 Stake\n\n39) TeeTeeTee: Move B3 Stamp Stake\n\n40) Felix: Build R1 Stilt\n\n41) TeeTeeTee: Trade B3 R3 Sunn\n\n42) Felix: Discover R1 Stilt Y3 Stall\n\n43) TeeTeeTee: Sacrifice R1 Teeteetee\nAttack B2 Stake\n\n44) Felix: Discover R1 Stilt B3 Stab\n\n45) TeeTeeTee: Trade B3 R3 Stake\n\n46) Felix: Discover G3 Stilt B3 Onus\n\n47) TeeTeeTee: Build G1 Sunn\n\n48) Felix: B G1 Onus\n\n49) TeeTeeTee: Move B3 Stamp Stall\n\n50) Felix: Build G2 Onus\n\n51) TeeTeeTee: Build G2 Sunn\n\n52) Felix: S G2 Onus\nB R1 Stab\nB R2 Stab\n\n53) TeeTeeTee: Move B3 Stall Teeteetee\n\n54) Felix: Sacrifice G3 Onus\nBuild Y1 Felix\nBuild Y1 Stilt\nBuild Y2 Stilt\n\n55) TeeTeeTee: Move R3 Sunn Stilt\n\n56) Felix: Sacrifice Y2 Stilt\nMove R2 Stab Stamp\nMove Y1 Stilt Stab\n\n57) TeeTeeTee: Attack Y1 Stilt\n\n58) Felix: A B1 Stamp\n\n59) TeeTeeTee: Move R3 Stilt Onus\n\n60) Felix: S G1 Onus\nB Y2 Stab\n\n61) TeeTeeTee: Trade R3 G3 Onus\n\n62) Felix: Trade R1 G1 Stab\n\n63) TeeTeeTee: Trade G1 R1 Sunn\n\n64) Felix: Move R2 Felix Stilt\n\n65) TeeTeeTee: Sacrifice G3 Onus\nBuild B3 Sunn\nBuild R2 Stake\nBuild R3 Sunn\n\n66) Felix: A Y1 Stilt\n\n67) TeeTeeTee: Move B3 Sunn Stamp\n\n68) Felix: M B1 Stamp Stall\n\n69) TeeTeeTee: Sacrifice R1 Sunn\nAttack R2 Stamp\n\n70) Felix: Build R1 Stab\n\n71) TeeTeeTee: Move B3 Stamp Stab\n\n72) Felix: Sacrifice Y2 Stab\nMove R1 Stab Teeteetee\nMove R1 Stab Teeteetee\n\n73) TeeTeeTee: Sacrifice R3 Teeteetee\nAttack Y1 Stab\nAttack G1 Stab\nAttack R1 Teeteetee\n\n74) Felix: Trade Y3 R3 Felix\n\n75) TeeTeeTee: Trade R3 Y3 Stake\n\n76) Felix: Build R3 Felix\n\n77) TeeTeeTee: Sacrifice Y3 Stake\nMove R2 Stake Stamp\nMove R2 Stamp Felix\nMove R2 Stamp Felix\nCatastrophe Felix Red\n\n78) Felix: Build Y2 Felix\n\n79) TeeTeeTee: Move B3 Stab Stilt\n\n80) Felix: Trade Y2 G2 Felix\n\n81) TeeTeeTee: Sacrifice Y1 Stab\nMove B3 Stilt Felix\n\n82) Felix: Sacrifice B1 Stall\nTrade R1 B1 Teeteetee\n\n83) TeeTeeTee: Sacrifice R3 Sunn\nAttack G2 Felix\nAttack Y1 Felix\nAttack B1 Teeteetee\n\tFelix: Nicely done. I think you will have me soon!\n\n\tFelix: Good game. Thanks for accepting my challenge!\n\tTeeTeeTee: Thanks for the game. Just out of curiosity, how come you decided to sacrifice your last large ship in the centre? It was a very valuable piece at that point. ( http://superdupergames.org/?page=archive_play&gid=29541&idx=53 )\n\tFelix: I did it to try to gain a monopoly on yellow, but in retrospect, that was an unwise decision. As you said, I couldn't maintain the monopoly, and I ended up getting destroyed by my lack of large ships.\n\nHomeworlds Online (SDG# 29496)\nVariants: "Unrated"\nStarted: 2016.4.8, Ended: 2016.4.15\nParticipants: wil (S), orangeblood (N)\nWinner: orangeblood\n\n1) orangeblood: Homeworld Y3 B2 G3\n\n\torangeblood: My first-ever Homeworlds game. No clue what to do, haha.\n\nHomeworlds Online (SDG# 29517)\nStarted: 2016.4.9, Ended: 2016.4.19\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Felix: H B1 Y3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tFelix: Likewise!\n\n4) Felix: B G1 Felix\n\tts52: I can't wait for PAX East! I know I'll be able to get in a few games of homeworlds in person!\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) Felix: Trade G1 B1 Felix\n\tFelix: Aw man, sounds awesome! I wish I could make it, but I won't be able to. I hope you have a great time! \n\n7) ts52: Build G1 Ts52\n\n8) Felix: Build B1 Felix\n\n9) ts52: Trade G1 Y1 Ts52\n\n10) Felix: Discover B1 Felix G2 Grip\n\n11) ts52: Build Y1 Ts52\n\n12) Felix: Build B2 Grip\n\n13) ts52: Move Y1 Ts52 Gonzo\n\n14) Felix: Trade B2 Y2 Grip\n\n15) ts52: Build Y2 Gonzo\n\n16) Felix: Build Y2 Grip\n\n17) ts52: Discover Y1 Ts52 G3 Kermit\n\n18) Felix: Move Y2 Grip Kermit\n\n19) ts52: Build Y3 Kermit\n\n20) Felix: Build Y3 Grip\n\n21) ts52: Move Y1 Kermit Grip\n\n22) Felix: Trade Y2 R2 Grip\n\n23) ts52: Trade Y2 R2 Gonzo\n\n24) Felix: M Y3 Grip Gonzo\n\n25) ts52: Discover R2 Gonzo Y2 Bigbird\n\n26) Felix: A Y1 Grip\n\n27) ts52: Move G1 Gonzo Bigbird\n\n28) Felix: B B2 Grip\n\n29) ts52: Build R1 Bigbird\n\n30) Felix: Move Y3 Gonzo Bigbird\n\n31) ts52: Sacrifice R1 Bigbird\nAttack Y2 Kermit\n\n32) Felix: Sacrifice R2 Grip\nAttack R2 Bigbird\nAttack G1 Bigbird\n\n33) ts52: Trade Y1 R1 Gonzo\n\n34) Felix: Discover B2 Grip R3 Surge\n\n35) ts52: Build G1 Ts52\n\n36) Felix: Sacrifice G3 Felix\nBuild B2 Felix\nBuild B3 Surge\nBuild B3 Surge\n\n37) ts52: Move G1 Ts52 Gonzo\n\n38) Felix: Sacrifice Y3 Bigbird\nMove B3 Surge Ts52\nMove B3 Surge Ts52\nDiscover G1 Bigbird Y3 Oster\n\n39) ts52: Sacrifice Y2 Kermit\nMove Y3 Kermit Bigbird\nMove Y3 Bigbird Felix\n\n40) Felix: Sacrifice R2 Bigbird\nAttack G3 Ts52\nPass\n\tFelix: Scared me to death to not have a large at home. I think maybe it paid off though?\n\tts52: Definitely a scary thought, but I think you have me.\n\n\tFelix: Looks like it! Great game. :)\n\tts52: Very good game.\n\nHomeworlds Online (SDG# 29400)\nVariants: "Hard time"\nStarted: 2016.4.14, Ended: 2016.4.17\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29396)\nVariants: "Hard time"\nStarted: 2016.4.14, Ended: 2016.4.17\nParticipants: Felix (S), SilentTitan (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29511)\nVariants: "Hard time"\nStarted: 2016.4.14, Ended: 2016.5.2\nParticipants: Simon (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 Y2 G3\n\n2) Simon: Homeworld B3 R1 G3\n\tFelix: Hi, good luck and have fun!\n\tSimon: You too, have fun!\n\n3) Felix: B G1 Felix\n\n4) Simon: Build G1 Simon\n\n5) Felix: T G1 B1 Felix\n\n6) Simon: Trade G1 B1 Simon\n\n7) Felix: B B2 Felix\n\n8) Simon: Build B2 Simon\n\n9) Felix: Discover B2 Felix G3 Rise\n\n10) Simon: Trade B2 Y2 Simon\n\n11) Felix: Build B2 Rise\n\n12) Simon: Build Y1 Simon\n\n13) Felix: Trade B2 Y2 Rise\n\n14) Simon: Discover Y2 Simon G2 G2\n\n15) Felix: Build B2 Rise\n\n16) Simon: Move B1 Simon G2\n\n17) Felix: Discover B2 Rise G2 Whorl\n\n18) Simon: Build Y1 G2\n\n19) Felix: B G1 Felix\n\n20) Simon: Trade Y1 R1 G2\n\n21) Felix: Trade G1 R1 Felix\n\n22) Simon: Build R2 G2\n\n23) Felix: Build B2 Rise\n\n24) Simon: Build B3 G2\n\n25) Felix: B B3 Whorl\n\n26) Simon: Trade B3 Y3 G2\n\n27) Felix: Trade B2 R2 Rise\n\n28) Simon: Build G1 Simon\n\n29) Felix: Build G1 Felix\n\n30) Simon: Discover Y2 G2 B3 B3\n\n31) Felix: Build B2 Rise\n\n32) Simon: Move R1 G2 B3\n\n33) Felix: Discover G1 Felix Y3 Opus\n\n34) Simon: Sacrifice G3 Simon\nBuild Y1 G2\nBuild Y1 B3\nBuild Y3 Simon\n\n35) Felix: Sacrifice G1 Opus\nBuild Y3 Rise\n\tFelix: I have seen the face of death, and it is yellow.\n\n36) Simon: Discover Y1 G2 R3 R3\n\n37) Felix: Build R2 Rise\n\tSimon: Hnn, the good y3s\n\n38) Simon: Build R3 G2\n\n39) Felix: Build R3 Felix\n\n40) Simon: Trade Y3 G3 Simon\n\n41) Felix: Discover R1 Felix Y3 Slipstream\n\n42) Simon: Move R3 G2 Slipstream\n\n43) Felix: Move R3 Felix B3\n\n44) Simon: Sacrifice Y2 B3\nDiscover Y1 B3 G1 G1\nMove R1 B3 G2\n\n45) Felix: Discover B2 Rise Y2 Codex\n\n46) Simon: Attack R1 Slipstream\n\n47) Felix: S Y2 Rise\nM B2 Whorl Simon\nM B3 Whorl Simon\n\n48) Simon: Attack B3 Simon\n\n49) Felix: M B2 Codex Simon\nC Simon Blue\n\n50) Simon: Sacrifice Y3 G2\nMove R1 G2 Rise\nMove R2 G2 Rise\nMove Y1 R3 Felix\nCatastrophe Rise R\n\n51) Felix: Trade B2 R2 Rise\n\n52) Simon: Build B2 G2\n\tSimon: Expensive defense x_X\n\tFelix: Definitely, but well done! I didn't realize you had a way out there...\n\n53) Felix: Build R1 Rise\n\n\tSimon: gg\n\tFelix: Likewise! Well fought!\n\nHomeworlds Online (SDG# 29518)\nVariants: "Unrated"\nStarted: 2016.4.15, Ended: 2016.4.26\nParticipants: Felix (S), orangeblood (N)\nWinner: orangeblood\n\n1) orangeblood: Homeworld Y3 B2 G3\n\n2) Felix: H G3 B2 Y3\n\torangeblood: Hi... first game, no idea what I'm doing! But I've heard a lot about it, and looking forward to learning.\n\tFelix: Hey there! Welcome! I'm glad you decided to jump in. It's and extremely fun game. I'd be happy to help you learn the ropes. I don't think I'm as scary as some of the other players on here, who are insanely good!\n\n3) orangeblood: Build G1 Orangeblood\n\tFelix: Let me know if you have any questions, and if I think of any tips along the way, I'll give em! Most importantly, have fun\n\n4) Felix: B Y1 Felix\n\torangeblood: Thanks for offer to help! First question: Why did you choose to build a a star system the same size as mine. Everything I've read indicates it's better not to... but I'm guessing the answer is that a more experienced player can take advantage of that. :)\n\tFelix: You know what? I actually didn't notice I built the same size until now! The fortress setup, which is what we both have, is usually considered weaker, and I usually pick it when playing against a new player. I didn't look closely enough at your setup and just made a mistake :) I actually did intend them to be different. This will make for a much faster and more close range game!\n\tFelix: Your choice of starting colors is really smart. I normally don't put green as one of my starting homeworld colors. A yellow/blue star with a green ship is the most effective from my experience. It all comes down to personal preference though!\n\n5) orangeblood: Trade G1 B1 Orangeblood\n\n6) Felix: T Y1 B1 Felix\n\torangeblood: I notice you trade for a blue ship early... why don't you start with a blue ship? Because you want to keep a large yellow at home?\n\torangeblood: (BTW, do you know about the Pyramid Arcade Kickstarter currently underway?)\n\tFelix: Usually I start with a large green, actually. It's one of the most useful colors to have a large early on because you can sacrifice it any time for three builds, and it can also allow you to set up a "factory" situation. I tend to trade for blue early on because it's usually one of the more contested colors in the game for some reason so it's good to try to get some of it early, especially if your opponent is also going for it.\n\tFelix: If there are only two small a of a particular color on the second turn, you usually want to trade your first small ship for that color to make sure you don't get locked out of it.\n\tFelix: And yes! I backed it! Looks awesome :)\n\n7) orangeblood: Build G1 Orangeblood\n\n8) Felix: Build Y1 Felix\n\torangeblood: The rules seem pretty easy to grasp... but i wont have much of a clue what to do until I've played a couple times. \n\torangeblood: I backed the Kickstarter also... even though I've not played any of the pyramid games. \n\n9) orangeblood: Trade G1 Y1 Orangeblood\n\tFelix: Yeah, this is one of those games where the basic rules are pretty simple, and the short-term strategy isn't too hard, but developing longer term strategies takes quite a few games to understand!\r\n\r\nI think you will find the pyramid arcade well worth your money. it includes so many games, and the ability to play many more!\n\n10) Felix: Trade Y1 G1 Felix\n\torangeblood: I've sort of been frozen for a couple of days trying to figure out what to do, so I've decided to just do some things and not worry about making mistakes in this first game. :)\n\tFelix: Yeah, don't worry about it! You will make a lot of mistakes in your first few games. I still make mistakes, and I've played 70 games now!\n\tFelix: Just do what seems best, and you will learn as you go when you see the consequences of your moves :) \n\n11) orangeblood: Discover B1 Orangeblood G1 Bevo\n\tFelix: Trading for a yellow was a pretty good idea. I'd recommend sending your yellow or blue ship out to a new planet soon. One thing to keep in mind, though, is that if you only have one of a color in a system, then moving that color to a new system will immediately lose you the ability to build that color in the old system. So if you move out your blue now, for instance, you will no longer be able to build blue in your homeworld. That isn't necessarily always a bad thing, especially since you have blue as one of your home stars, so you don't really want to build much blue there anyway and risk a catastrophe. But it's just a good tip to remember that if you build a second ship of a color first and THEN move a ship to discover new lands, you will have the ability to build that color in both systems.\n\n12) Felix: Discover G1 Felix B1 Opus\n\torangeblood: Thanks for all the great tips!\n\n13) orangeblood: Trade B1 R1 Bevo\n\n14) Felix: Build G1 Opus\n\torangeblood: Red hits the table! ;)\n\tFelix: Oh snap! It's getting real now!\n\n15) orangeblood: Build G2 Orangeblood\n\n16) Felix: Trade G1 R1 Opus\n\tFelix: It may have been an error on my part to allow you to build the first medium green like that. I didn't really have too much of a choice though. Nice job taking advantage of it!\n\n17) orangeblood: Move Y1 Orangeblood Bevo\n\n18) Felix: Build Y1 Felix\n\n19) orangeblood: Move R1 Bevo Felix\n\torangeblood: Do you know why when I try move to Felix, it tells me the system does not exist?\n\n20) Felix: Sacrifice R1 Opus\nAttack R1 Felix\n\torangeblood: Ah, I wasn't writing my own system first. \n\n21) orangeblood: Build Y1 Bevo\n\tFelix: Glad you figured it out! And here's a painful lesson to learn. It's possible to sacrifice a red in one system and attack a ship in a different system. That's how I was able to take over your small red just now, giving me the only red at this point. You should always look out for that possibility! But I don't think it has set you back too much.\n\torangeblood: Ah! Good thing to know. Now that you say it it makes sense. \n\n22) Felix: Move Y1 Felix Opus\n\n23) orangeblood: Build Y2 Bevo\n\n24) Felix: Build Y2 Opus\n\n25) orangeblood: Move Y2 Bevo Orangeblood\n\n26) Felix: Trade Y2 B2 Opus\n\torangeblood: I assume if you sacrifice to construct in another system... you must still have a ship in the system you're building in of the same color you want to construct?\n\tFelix: Yep. You are correct. You still have to have a ship in the target system of that color. This is crucial when you try to set up a "factory." You need to have a large green on your home system, plus another green. Then, when there are no greens left, or only larges left, you can sacrifice the large green, then immediately rebuild it in the same system, and you can also use two other build actions. It is difficult to set up but can be very effective when used properly.\n\n27) orangeblood: Trade Y2 R2 Orangeblood\n\n28) Felix: Build G1 Opus\n\n29) orangeblood: Trade G3 B3 Orangeblood\n\n30) Felix: Build Y2 Opus\n\n31) orangeblood: Build G2 Orangeblood\n\n32) Felix: Discover B1 Felix R1 Echo\n\n33) orangeblood: M G2 Orangeblood Bevo\n\n34) Felix: S Y2 Opus\nM B2 Opus Orangeblood\nM B1 Echo Orangeblood\nC Orangeblood Blue\n\n35) orangeblood: Move R2 Orangeblood Opus\n\torangeblood: Other than avoiding a catastrophe, what are the advantages of finding a second system like you did? (Unless that gives away what you're going to do, haha.)\n\tFelix: I don't mind giving away my plan at the moment :) the main benefit is just spreading your ships out so you can avoid a catastrophe and build more ships. It really limits how large your fleet can grow if you don't spread them out. In this case, however, I wanted to have two blue ships that are each one jump away from your system. It would have been too risky to put both blue ships in a blue system because you could have easily caused a catastrophe there and blown up the whole system\n\torangeblood: I think I know what your next move is. I'll tell you why if it turns out I'm right. :)\n\n36) Felix: B G2 Opus\n\tFelix: Were you right? :)\n\n37) orangeblood: Attack G2 Opus\n\torangeblood: Yes, and there’s a funny story behind it. I saw you’d answered my question, and just glanced over it without really absorbing what you said. Later I was checking out a video Andy Looney did about the “Bluebird Mistake."\r\nhttps://www.boardgamegeek.com/video/7488/homeworlds/strategy-lesson-and-bluebird-mistake\r\n\r\nWhich is pretty much what you did — sacrifice a ship to overload a color in the opponent’s home system. Then I went back and read your note more closely, and OF COURSE if you wanted to get two blue ships one jump away from my system, I figured that’s what you had in mind. :)\r\n\r\nNow I get to learn how hard it is to play with one star in my system… and to have no blue!\n\tFelix: Good catch! I made the bluebird mistake myself several times. The best way to learn is to experience it for yourself! Making mistakes is the best way to learn from them so I hope this is helping your improve your game :) it is also challenging to not have a large ship, so you have quite an uphill battle in front of you!\n\n38) Felix: Sacrifice Y3 Felix\nMove G1 Opus Orangeblood\nMove G1 Opus Orangeblood\nMove Y1 Opus Felix\n\tFelix: Here's another situation where the blue bird mistake is possible. Can you catch it and prevent it?\n\n39) orangeblood: Sacrifice R2 Opus\nAttack G1 Orangeblood\nAttack G1 Orangeblood\n\torangeblood: I guess this will temporarily help.\n\n40) Felix: Build Y2 Felix\n\tFelix: Yep, that will help. Good move!\n\n41) orangeblood: Sacrifice G2 Bevo\nBuild G2 Opus\nBuild G3 Opus\n\tFelix: And another good move. You repelled my attack very nicely, and I may be in trouble now!\n\n42) Felix: Move Y2 Felix Opus\n\n43) orangeblood: Trade G3 R3 Opus\n\n44) Felix: Discover Y2 Opus Y2 Hope\n\n45) orangeblood: S Y1 Bevo\nM R3 Opus Felix\n\n46) Felix: Build R1 Felix\n\n47) orangeblood: Attack Y1 Felix\n\n48) Felix: Build R1 Felix\n\n49) orangeblood: Move Y1 Bevo Felix\nCatastrophe Felix Red\n\torangeblood: Man, you've expertly guided me through a dozen learning processes this game. I have to stare at the screen for an hour figuring things out. :)\n\tFelix: I'm glad you're learning! I actually made quite a mistake myself in this game, and I think I'm about to lose. I hope it has taught you some things though! Would you be up for a rematch?\n\n\tFelix: There's two different ways you could finish me off right now. Do you see both?\n\torangeblood: I only saw the catastrophe... \n\torangeblood: Absolutely we'll do a rematch!\r\n\n\tFelix: The catastrophe was by far the more obvious, but you could also have sacrificed your R3 ship in my system and used your three attack actions to take over all three of my small reds with your small yellow. :) Rematch sounds good! If you want, you can just go accept my open challenge on the challenge list\n\tFelix: And nicely done! You played well.\n\torangeblood: Ah, yes. I had actually tried sacrificing the R3 before I had the yellow ship in there, but of course you can't sacrifice first if you have no other ship in the system. \r\n\r\nI'll start our new game later on tonight... thanks very much again for all your help!\n\torangeblood: And by the way, what mistake did you make other than taking it easy on a newbie?\n\tFelix: No problem! I'm looking forward to our next game.\n\nHomeworlds Online (SDG# 29608)\nStarted: 2016.4.17, Ended: 2016.4.17\nParticipants: doctorfedora (S), lowtiergrgl (N)\nWinner: doctorfedora\n\n1) lowtiergrgl: Homeworld Y1 G1 R3 *\n\n2) doctorfedora: Homeworld Y1 G3 B3\n\n3) lowtiergrgl: Discover R3 Lowtiergrgl Y2 Pooptown\n\n\nHomeworlds Online (SDG# 29606)\nVariants: "Hard time"\nStarted: 2016.4.17, Ended: 2016.10.4\nParticipants: MagicJohn (S), Grosseteste (N)\nWinner: MagicJohn\n\n1) Grosseteste: H Y3 B2 G3\n\n2) MagicJohn: Homeworld B2 G3 B3 *\n\tGrosseteste: Hello and thanks for the game, good luck!\n\n3) Grosseteste: B G1 Grosseteste\n\tMagicJohn: Live long and prosper!\n\n4) MagicJohn: Build B1 Magicjohn\n\n5) Grosseteste: T G1 B1 Grosseteste\n\n6) MagicJohn: Trade B1 Y1 Magicjohn\n\n7) Grosseteste: D B1 Grosseteste Y1 Charlie\n\n8) MagicJohn: Trade Y1 R1 Magicjohn\n\n9) Grosseteste: Build G1 Grosseteste\n\n10) MagicJohn: Build R1 Magicjohn\n\tGrosseteste: Congrats on getting one of your games picked for the Homeworlds demo game video! I enjoyed it.\n\tMagicJohn: Aaaah.... well.... hmmmm..... didn't know I had been given an opportunity to publicly humiliate myself.... Where can I find the game?\n\n11) Grosseteste: Trade G1 R1 Grosseteste\n\tGrosseteste: Part of the Kickstarter campaign for Pyramid Arcade, here is the Homeworlds video: https://www.youtube.com/watch?v=7l_IouG6mOA\r\nI only learned it was you when I followed the link in the description.\n\n12) MagicJohn: Trade R1 Y1 Magicjohn\n\n13) Grosseteste: B G1 Grosseteste\n\tMagicJohn: Thanks for the info.\n\n14) MagicJohn: Discover Y1 Magicjohn G1 Strawberry Fields\n\n15) Grosseteste: T G1 B1 Grosseteste\n\n16) MagicJohn: Trade B3 Y3 Magicjohn\n\n17) Grosseteste: M R1 Grosseteste Strawberry\n\tMagicJohn: This opening is becoming something of a learning experience...\n\n18) MagicJohn: Sacrifice R1 Magicjohn\nAttack R1 Strawberry\n\tGrosseteste: For you and me both, brother.\n\n19) Grosseteste: M B1 Charlie Magicjohn\n\tMagicJohn: I suspect that I will NOT create matching homeworld systems again (star sizes) without including a yellow star.\n\n20) MagicJohn: Sacrifice R1 Strawberry\nAttack B1 Magicjohn\n\n21) Grosseteste: Build G1 Grosseteste\n\n22) MagicJohn: Trade B1 R1 Magicjohn\n\n23) Grosseteste: T G1 R1 Grosseteste\n\n24) MagicJohn: Build Y1 Strawberry\n\n25) Grosseteste: B B1 Grosseteste\n\n26) MagicJohn: Build Y1 Magicjohn\n\n27) Grosseteste: Discover B1 Grosseteste G1 Lucy\n\n28) MagicJohn: Build Y2 Strawberry\n\tMagicJohn: Sorry about yet another time delay but Sara (wife) had a TIA and we spent the weekend and Monday in the hospital.\n\n29) Grosseteste: Sacrifice G3 Grosseteste\nBuild B1 Lucy\nBuild B2 Lucy\nBuild B3 Grosseteste\n\tGrosseteste: I would be in no position to complain. Hope she is feeling better and you can avoid another one.\n\n30) MagicJohn: Build Y2 Magicjohn\n\tMagicJohn: Thnx\n\n31) Grosseteste: T B3 G3 Grosseteste\n\n32) MagicJohn: Discover Y1 Strawberry G2 Walrus\n\n33) Grosseteste: Build B3 Grosseteste\n\n34) MagicJohn: Build Y2 Walrus\n\n35) Grosseteste: D B3 Grosseteste G1 Linus\n\n36) MagicJohn: Build Y3 Walrus\n\n37) Grosseteste: B B3 Grosseteste\n\n38) MagicJohn: Discover Y2 Walrus B3 Bluejway\n\n39) Grosseteste: T B3 R3 Grosseteste\n\n40) MagicJohn: Discover Y1 Strawberry B3 Revolution\n\n41) Grosseteste: Move R3 Grosseteste Strawberry\n\n42) MagicJohn: Move Y2 Strawberry Bluejway\n\n43) Grosseteste: Build G2 Grosseteste\n\n44) MagicJohn: Build R1 Magicjohn\n\n45) Grosseteste: S G3 Grosseteste\nB G2 Grosseteste\nB G3 Grosseteste\nB R2 Strawberry\n\n46) MagicJohn: Build R2 Magicjohn\n\n47) Grosseteste: Move G2 Grosseteste Lucy\n\n48) MagicJohn: Move R1 Magicjohn Strawberry\n\n49) Grosseteste: Sacrifice G3 Grosseteste\nBuild G3 Grosseteste\nBuild G3 Lucy\nBuild R2 Grosseteste\n\n50) MagicJohn: Build R3 Magicjohn\n\n51) Grosseteste: Build R3 Grosseteste\n\n52) MagicJohn: Move R1 Magicjohn Strawberry\nCatastrophe Strawberry Red\n\n53) Grosseteste: Discover R3 Grosseteste G1 Charlie\n\n54) MagicJohn: Build R1 Magicjohn\n\n55) Grosseteste: S G3 Grosseteste\nB G3 Grosseteste\nB R1 Charlie\nB R2 Grosseteste\n\n56) MagicJohn: Move R1 Magicjohn Charlie\n\n57) Grosseteste: Move R2 Grosseteste Lucy\n\n58) MagicJohn: Build R3 Magicjohn\n\n59) Grosseteste: Sacrifice G2 Grosseteste\nBuild G2 Grosseteste\nPass\n\n60) MagicJohn: Move R2 Magicjohn Charlie\nCatastrophe Charlie Red\n\n61) Grosseteste: Discover R1 Grosseteste R1 Rerun\n\n62) MagicJohn: Build R1 Magicjohn\n\n63) Grosseteste: Build G1 Grosseteste\n\n64) MagicJohn: Move R1 Magicjohn Rerun\n\n65) Grosseteste: Sacrifice G3 Grosseteste\nBuild G3 Grosseteste\nBuild R2 Rerun\nBuild R3 Grosseteste\nCatastrophe Rerun Red\n\n66) MagicJohn: Build R1 Magicjohn\n\n67) Grosseteste: M R2 Grosseteste Linus\n\n68) MagicJohn: Discover Y1 Magicjohn R1 Honeypie\n\n69) Grosseteste: S G3 Grosseteste\nB R1 Grosseteste\nB R2 Grosseteste\nB G3 Grosseteste\n\n70) MagicJohn: Move R1 Magicjohn Honeypie\n\n71) Grosseteste: Move R2 Grosseteste Honeypie\n\n72) MagicJohn: Move Y1 Honeypie Walrus\n\n73) Grosseteste: Attack R1 Honeypie\n\n74) MagicJohn: Move Y1 Walrus Revolution\n\n75) Grosseteste: Sacrifice G1 Grosseteste\nBuild G1 Grosseteste\n\n76) MagicJohn: Move Y3 Magicjohn Honeypie\n\n77) Grosseteste: Move R1 Grosseteste Honeypie\nCatastrophe Honeypie Red\n\n78) MagicJohn: Build Y3 Walrus\n\n79) Grosseteste: Sacrifice G3 Grosseteste\nBuild R1 Linus\nBuild R1 Grosseteste\nBuild G3 Grosseteste\n\n80) MagicJohn: Discover Y3 Walrus R1 Blackbird\n\n81) Grosseteste: B R2 Grosseteste\n\n82) MagicJohn: Move Y1 Walrus Bluejway\n\n\tDraw5PlayAll: If you want, I have some advice... but I need permission or else I break the Prime Directive.\n\tDraw5PlayAll: On the other hand, Grosseteste has very little time.\n\tGrosseteste: I've been thinking about this for several moves now. I don't see a way to force a trade for some yellow. I would like a draw, but I don't think the rules allow it. Incidentally, I may be posting this position in different places later to ask for advice on something we missed or to brainstorm a draw mechanic for the game (perhaps 3 consecutive catastrophes of the same color might be a draw?).\n\tGrosseteste: Just resigned so we can kibitz in earnest. So what are you thinking, Draw5PlayAll? How would you break the impasse?\n\tDraw5PlayAll: First off, there was an "Offer Draw" button. Second, the only way to draw by force is to give up your homeworld to destroy the other, e.g. sac the last yellow and move 3 blues in and destroy the second half.\r\n\r\nBelay my idea. I wanted to suggest a way for MJ to send 2 yellows in and then another next turn, keeping the Y3s. This fails since Grosseteste can use the Y3 star.\n\tMagicJohn: It was my thinking that if I exploded gross's yellow star that he could trade for the dead yellow then use his green/blue technologies to out-build me.\n\tDraw5PlayAll: Oh well. Congratulation on the ladder promotion!\n\tGrosseteste: Where is the offer draw button in Homeworlds?\n\tGrosseteste: My thought was the same. Also, good game MagicJohn!\n\tMagicJohn: Thanks for an interesting game.......We should have figured out some way of getting a draw......\n\tDraw5PlayAll: There are plenty of ways.\r\n1. Both Homeworlds are destroyed if someone sacs (or moves) their last ship there to destroy the opponent. Andy said this makes a draw.\r\n2. All blue and yellow is removed, and neither player can do anything useful with the green and red.\r\n3. Both players are fighting over a large ship, and they keep attacking forever. If either side backs off they either lose or have a bad position.\r\n4. A fortress like in this game; destroying one star gives the opponent the chance to kill both of yours.\r\n\r\nAnd there are likely many more. This game (and also Praetorian) should have the draw feature.\r\n\r\nI think I was thinking of Martian Chess which has a draw feature.\n\nHomeworlds Online (SDG# 29609)\nStarted: 2016.4.17, Ended: 2016.4.22\nParticipants: doctorfedora (S), lowtiergrgl (N)\nWinner: lowtiergrgl\n\n1) lowtiergrgl: Homeworld G1 Y1 R3 *\n\n2) doctorfedora: Homeworld R2 B1 G3\n\n3) lowtiergrgl: Build R1 Lowtiergrgl\n\n4) doctorfedora: Build G1 Doctorfedora\n\n5) lowtiergrgl: Build R1 Lowtiergrgl\n\n6) doctorfedora: Trade G1 Y1 Doctorfedora\n\n7) lowtiergrgl: Discover R1 Lowtiergrgl B3 Pooptown\n\n8) doctorfedora: Discover Y1 Doctorfedora G3 Sloam\n\n9) lowtiergrgl: Move R3 Lowtiergrgl Pooptown\n\n10) doctorfedora: Build Y1 Sloam\n\n11) lowtiergrgl: Build R1 Lowtiergrgl\n\n12) doctorfedora: Build Y2 Sloam\n\n13) lowtiergrgl: Build R2 Lowtiergrgl\n\n14) doctorfedora: Discover Y1 Sloam B2 Funkdunker\n\n15) lowtiergrgl: Move R1 Lowtiergrgl Sloam\n\n16) doctorfedora: Move Y1 Sloam Funkdunker\n\n17) lowtiergrgl: Build R2 Sloam\n\n18) doctorfedora: Move Y2 Sloam Funkdunker\n\n19) lowtiergrgl: Build R3 Lowtiergrgl\n\n20) doctorfedora: Trade Y1 G1 Funkdunker\n\n21) lowtiergrgl: Build R3 Sloam\n\n22) doctorfedora: Build Y1 Funkdunker\n\n23) lowtiergrgl: Trade R3 Y3 Pooptown\n\n24) doctorfedora: Build G1 Doctorfedora\n\tdoctorfedora: what am I even trying to do\n\tlowtiergrgl: It's a mystery kek\r\n\r\nI'm surprised how much pressure a green ship can put on from it's homeworld though. It seems like a much faster method of what I'm trying to do right now, kek\n\n25) lowtiergrgl: Sacrifice Y3 Pooptown\nMove R3 Sloam Doctorfedora\nMove R3 Lowtiergrgl Pooptown\nMove R3 Pooptown Doctorfedora\n\n26) doctorfedora: Trade G3 R3 Doctorfedora\nCatastrophe Doctorfedora Red\n\n27) lowtiergrgl: Move R2 Lowtiergrgl Pooptown\n\n28) doctorfedora: Build G2 Doctorfedora\n\n29) lowtiergrgl: Trade R2 Y2 Pooptown\n\tdoctorfedora: ohhhh this is not good\n\n30) doctorfedora: Trade Y2 R2 Funkdunker\n\n31) lowtiergrgl: Sacrifice Y2 Pooptown\nMove R2 Sloam Doctorfedora\nMove R1 Sloam Doctorfedora\n\n32) doctorfedora: Build G2 Doctorfedora\n\n33) lowtiergrgl: Trade R2 G2 Doctorfedora\nCatastrophe Doctorfedora Green\n\n\nHomeworlds Online (SDG# 29602)\nVariants: "Unrated"\nStarted: 2016.4.19, Ended: 2016.5.23\nParticipants: Felix (S), aRough1 (N)\nWinner: Felix\n\n1) aRough1: Homeworld R1 B2 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\tFelix: Hi there! Is this your first time playing the game? Got any questions? Hope you have fun!\n\n3) aRough1: Build G1 Arough1\n\taRough1: Yeah first timer! Getting used to word commands! Will do my best!\n\n4) Felix: Build G1 Felix\n\tFelix: Not a problem! I'm always happy to help new players get used to the game. The word command system is a bit clunky at first. One tip is that you don't have to type out the entire word. Just the first letter will suffice. So instead of typing "build g1 aRough1" you could type "b g1 aRough1" Make sense?\n\n5) aRough1: Trade G1 B1 Arough1\n\tFelix: If you have any questions, just let me know!\n\taRough1: Yeah! Cheers for the tip!\n\n6) Felix: Trade G1 B1 Felix\n\n7) aRough1: B G1 Arough1\n\n8) Felix: Build B1 Felix\n\n9) aRough1: Build B2 Arough1\n\n10) Felix: Discover B1 Felix G1 Semper\n\n11) aRough1: Trade B2 Y2 Arough1\n\n12) Felix: B B2 Semper\n\n13) aRough1: T G1 R1 Arough1\n\n14) Felix: Trade B2 R2 Semper\n\n15) aRough1: B B2 Arough1\n\n16) Felix: Build B2 Semper\n\n17) aRough1: Build B3 Arough1\n\n18) Felix: Build B3 Felix\n\tFelix: Ooh, you should be careful not to build four of any color in a system, like you've done with blue. I could call a catastrophe now and destroy all your blue. Do you want to take that move back and try something else?\n\n19) aRough1: Trade B3 R3 Arough1\n\tFelix: I'll give you a pass this time :) But not next time!\n\taRough1: Oh! Dammit! You shouldt go that easy on me!\n\n20) Felix: Trade B2 Y2 Semper\n\n21) aRough1: Discover Y2 Arough1 Y3 Bowie\n\tFelix: Oh don't worry. I won't go easy on you again. That was your one freebie :P\n\n22) Felix: Build Y1 Semper\n\n23) aRough1: Trade B1 Y1 Arough1\n\n24) Felix: Move B1 Felix Semper\n\n25) aRough1: M R1 Arough1 Bowie\n\n26) Felix: Build G1 Felix\n\n\nHomeworlds Online (SDG# 29501)\nStarted: 2016.4.19, Ended: 2016.5.3\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld R1 B2 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\tFelix: And here we go again :) Good luck!\n\n5) Felix: Trade G1 Y1 Felix\n\tts52: Indeed! Have a good game.\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build Y1 Felix\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) Felix: Build Y1 Felix\n\n10) ts52: Build B1 Kermit\n\n11) Felix: D Y1 Felix G3 Gorm\n\n12) ts52: Build G1 Ts52\n\n13) Felix: Build Y2 Felix\n\n14) ts52: Discover G1 Ts52 B1 Gonzo\n\n15) Felix: Build Y2 Gorm\n\n16) ts52: Build B2 Kermit\n\n17) Felix: Discover Y1 Felix B3 Fritz\n\tFelix: Uh oh...\n\n18) ts52: Trade B2 Y2 Kermit\n\tFelix: Blue vs. Yellow\n\tts52: Yeah, yellow is a bit more important than blue I'm afraid.\n\n19) Felix: Build Y3 Felix\n\tFelix: Definitely later on, but blue can be much more versatile in the early game, in my opinion. It's going to be close!\n\n20) ts52: Build Y3 Kermit\n\n21) Felix: Sacrifice Y2 Felix\nMove Y1 Gorm Kermit\nMove Y1 Fritz Kermit\nCatastrophe Kermit Yellow\n\n22) ts52: Build B2 Kermit\n\n23) Felix: Trade Y3 B3 Felix\n\n24) ts52: Trade B2 Y2 Kermit\n\n25) Felix: Move B3 Felix Gorm\n\n26) ts52: Build Y1 Kermit\n\n27) Felix: Build B2 Gorm\n\n28) ts52: Discover B1 Kermit G2 Oscar\n\n29) Felix: D B2 Gorm G1 Issol\n\n30) ts52: Build B3 Kermit\n\n31) Felix: Build B3 Issol\n\n32) ts52: Trade B3 R3 Kermit\n\n33) Felix: Trade B2 R2 Issol\n\n34) ts52: Build G2 Ts52\n\n35) Felix: Build G2 Felix\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B3 Oscar\n\tFelix: Nice maneuvering there on blue. I am still struggling to get a solid grasp on how to best manipulate the piece pool to my advantage.\n\tts52: Thanks, though this game is far from over.\n\n37) Felix: Discover B3 Gorm Y1 Opus\n\n38) ts52: Move Y2 Kermit Oscar\n\n39) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild Y3 Gorm\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y3 Oscar\nBuild R1 Kermit\n\n41) Felix: Move B3 Opus Gorm\n\n42) ts52: Discover Y3 Oscar R3 Elmo\n\n43) Felix: Sacrifice Y2 Felix\nMove Y3 Gorm Kermit\nMove B3 Gorm Kermit\n\n44) ts52: Move R3 Kermit Gorm\n\n45) Felix: Trade B3 R3 Kermit\n\n46) ts52: Build B3 Oscar\n\n47) Felix: Sacrifice Y2 Gorm\nMove B3 Issol Oscar\nPass\nCatastrophe Oscar Blue\n\n48) ts52: Move B2 Kermit Oscar\n\n49) Felix: Sacrifice R2 Issol\nAttack R1 Kermit\nAttack B1 Kermit\n\n50) ts52: Move Y1 Kermit Gorm\n\n51) Felix: Move R3 Kermit Oscar\n\n52) ts52: Sacrifice Y2 Oscar\nMove B2 Oscar Gorm\nMove G1 Gonzo Elmo\n\n53) Felix: T R1 G1 Kermit\n\n54) ts52: Trade G2 R2 Ts52\n\n55) Felix: Discover G1 Kermit B3 Opus\n\n56) ts52: Build G2 Ts52\n\n57) Felix: S G3 Felix\nB G3 Felix\nB B1 Kermit\nB Y1 Kermit\n\n58) ts52: Sacrifice G3 Ts52\nBuild Y2 Elmo\nBuild Y2 Gorm\nBuild G3 Ts52\n\n59) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild R1 Oscar\n\n60) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Gorm\nBuild R2 Ts52\n\n61) Felix: Discover B1 Kermit B3 Chuckle\n\tFelix: Things are about to start happening, I have a feeling :)\n\n62) ts52: Sacrifice Y2 Gorm\nMove R2 Ts52 Kermit\nMove R2 Kermit Opus\n\n63) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B1 Chuckle\nBuild B3 Kermit\n\n64) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gorm\nBuild R2 Opus\n\n65) Felix: Sacrifice Y1 Kermit\nDiscover B1 Chuckle Y1 Esper\n\n66) ts52: Attack G1 Opus\n\n67) Felix: Move B1 Kermit Ts52\n\n68) ts52: Sacrifice Y2 Elmo\nMove R1 Gorm Oscar\nMove R2 Opus Oscar\nCatastrophe Oscar Red\n\n69) Felix: Build Y2 Kermit\n\tFelix: Ooh nice. You've thrown a serious wrench in my works.\n\n70) ts52: Sacrifice Y2 Gorm\nMove R3 Gorm Felix\nMove Y3 Elmo Felix\n\tFelix: Oops. Hold on. Just saw a serious flaw in my new plan.\n\tts52: Darn.... :) No worries.\n\n71) Felix: Sacrifice Y3 Kermit\nMove B3 Kermit Ts52\nMove B1 Esper Ts52\nMove Y2 Kermit Ts52\nCatastrophe Ts52 Blue\n\tFelix: Sorry if I cut you off mid turn. I think you were about to destroy me :P\n\n72) ts52: Sacrifice R3 Felix\nAttack G3 Felix\nAttack G2 Felix\nAttack Y2 Felix\n\tts52: No worries. I _think_ I have you. But I've been wrong before.\n\n\tts52: Very good game though. That was a close one right to the end.\n\tFelix: Yeah that was definitely a nail biter there at the end. Very well fought!\n\tts52: I look forward to a rematch.\n\nHomeworlds Online (SDG# 31896)\nVariants: "Hard time"\nStarted: 2017.4.5, Ended: 2017.4.18\nParticipants: agentofchaos (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) agentofchaos: Homeworld B1 R2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n10) agentofchaos: Discover Y1 Agentofchaos G3 Dreadzone\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) agentofchaos: Build G2 Agentofchaos\n\n13) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B2\nBuild G2 B2\nBuild G3 Draw5playall\n\n14) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild Y1 Dreadzone\nBuild Y2 Dreadzone\n\n15) Draw5PlayAll: Trade G2 Y2 B2\n\n16) agentofchaos: Move Y1 Dreadzone Agentofchaos\n\n17) Draw5PlayAll: Sacrifice Y2 B2\nMove G1 B2 Dreadzone\nMove G1 Dreadzone Agentofchaos\nCatastrophe Agentofchaos Green\n\n\tagentofchaos: You got me, well played\n\nHomeworlds Online (SDG# 29629)\nVariants: "Unrated"\nStarted: 2016.4.19, Ended: 2016.4.22\nParticipants: kensho (S), slothbear (N)\nWinner: kensho\n\n1) slothbear: Homeworld B2 Y1 G3\n\n2) kensho: Homeworld G1 B2 Y3\n\n3) slothbear: Build G1 Slothbear\n\n4) kensho: Build Y1 Kensho\n\n5) slothbear: Discover G1 Slothbear G3 Katastrofo\n\n6) kensho: Trade Y1 G1 Kensho\n\n7) slothbear: Build G2 Slothbear\n\n8) kensho: Move G1 Kensho Katastrofo\n\n9) slothbear: Trade G2 Y2 Slothbear\n\n10) kensho: Build Y1 Kensho\n\n11) slothbear: Build G2 Slothbear\n\n12) kensho: Build Y1 Kensho\n\n13) slothbear: Trade Y2 B2 Slothbear\n\n14) kensho: Trade Y1 R1 Kensho\n\n15) slothbear: Move B2 Slothbear Katastrofo\n\n16) kensho: Move R1 Kensho Katastrofo\n\n17) slothbear: Move G3 Slothbear Katastrofo\n\n18) kensho: Move Y1 Kensho Katastrofo\n\n19) slothbear: Build B1 Katastrofo\n\n20) kensho: Build R1 Katastrofo\n\n21) slothbear: Trade B2 Y2 Katastrofo\n\n22) kensho: Build Y1 Katastrofo\n\n23) slothbear: Build Y2 Katastrofo\n\n24) kensho: Build Y2 Kensho\n\n25) slothbear: Build Y3 Katastrofo\n\n26) kensho: Trade Y2 B2 Kensho\n\n27) slothbear: Trade Y2 R2 Katastrofo\n\n28) kensho: Move B2 Kensho Katastrofo\n\n29) slothbear: Build G2 Slothbear\n\n30) kensho: Build Y2 Kensho\n\n31) slothbear: Move G2 Slothbear Katastrofo\n\n32) kensho: Move Y2 Kensho Katastrofo\n\n33) slothbear: Build G2 Slothbear\n\n34) kensho: Build Y2 Kensho\n\n35) slothbear: Sacrifice Y2 Katastrofo\nPass\nPass\n\n36) kensho: Trade Y2 R2 Kensho\n\n37) slothbear: Trade G2 Y2 Slothbear\n\n38) kensho: Pass\n\n\nHomeworlds Online (SDG# 29616)\nVariants: "Hard time"\nStarted: 2016.4.20, Ended: 2016.6.5\nParticipants: sompm (S), Salmonax (N)\nWinner: Salmonax\n\n1) Salmonax: Homeworld Y1 B2 G3\n\n2) sompm: Homeworld G3 B2 Y3\n\n3) Salmonax: Build G1 Salmonax\n\n4) sompm: Build Y1 Sompm\n\n5) Salmonax: Trade G1 Y1 Salmonax\n\n6) sompm: Build Y2 Sompm\n\n7) Salmonax: Trade Y1 R1 Salmonax\n\n8) sompm: Discover Y2 Sompm B1 Ted\n\n9) Salmonax: Build R1 Salmonax\n\n10) sompm: Trade Y2 G2 Ted\n\n11) Salmonax: Build G1 Salmonax\n\n12) sompm: Build G1 Ted\n\n13) Salmonax: Trade R1 Y1 Salmonax\n\n14) sompm: Build Y2 Sompm\n\n15) Salmonax: Trade G3 Y3 Salmonax\n\n16) sompm: Discover Y2 Sompm B1 Hdmi\n\n17) Salmonax: Discover Y1 Salmonax G3 Submarines\n\n18) sompm: Discover Y1 Sompm G1 Lox\n\n19) Salmonax: Move Y1 Submarines Lox\n\n20) sompm: Build G2 Ted\n\n21) Salmonax: Move Y1 Lox Sompm\n\n22) sompm: Build Y2 Lox\n\n23) Salmonax: Build Y2 Sompm\n\n24) sompm: Sacrifice G2 Ted\nBuild Y3 Hdmi\nBuild G2 Ted\n\n25) Salmonax: Build G2 Salmonax\n\n26) sompm: Trade Y2 R2 Hdmi\n\n27) Salmonax: Build Y2 Sompm\nCatastrophe Sompm Yellow\n\tSalmonax: gg\n\tsompm: Apparently I forgot I was in danger. Good game; thanks!\n\n\nHomeworlds Online (SDG# 29649)\nStarted: 2016.4.26, Ended: 2016.5.12\nParticipants: velgarath2 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y1 B3 G3\n\tFelix: Hola! Tenga un buen juego :) \n\n2) velgarath2: Homeworld G3 B2 Y3\n\n3) Felix: Build G1 Felix\n\n4) velgarath2: Build Y1 Velgarath2\n\tvelgarath2: Gracias! La verdad es que no tengo mucha idea de cómo se juega, pero haré lo que pueda :)\r\n\n\n5) Felix: Trade G1 Y1 Felix\n\tFelix: No hay problema. Estoy feliz de ayudarle a aprender , y responder a cualquier pregunta que tenga ! Además, español no es mi primera lengua , así que perdoname si es malo\n\n6) velgarath2: Build Y2 Velgarath2\n\n7) Felix: Build Y2 Felix\n\n8) velgarath2: Discover Y1 Velgarath2 G1 Alpha\n\n9) Felix: Discover Y2 Felix G2 Opus\n\n10) velgarath2: Trade Y2 B2 Velgarath2\n\n11) Felix: Build Y2 Felix\n\n12) velgarath2: Build Y2 Velgarath2\n\n13) Felix: Trade Y2 B2 Felix\n\n14) velgarath2: Build Y2 Alpha\n\n15) Felix: Build Y3 Opus\n\n16) velgarath2: Sacrifice Y2 Velgarath2\nMove Y1 Alpha Opus\nMove Y2 Alpha Opus\nCatastrophe Opus Y\n\n17) Felix: Build G1 Felix\n\tFelix: Very nice :)\n\n18) velgarath2: Build B1 Velgarath2\n\n19) Felix: Build G1 Felix\n\tvelgarath2: need to go....will resume tomorrow!\n\tFelix: Ok!\n\n20) velgarath2: Build Y1 Velgarath2\n\n21) Felix: Discover G1 Felix Y2 Out\n\n22) velgarath2: Build Y2 Velgarath2\n\n23) Felix: Build G1 Out\n\n24) velgarath2: Trade Y2 G2 Velgarath2\n\n25) Felix: Move B2 Felix Out\n\n26) velgarath2: Discover B2 Velgarath2 R1 Bravo\n\tvelgarath2: discover b2 velgarath2 r1 bravo\n\n27) Felix: Trade G1 R1 Felix\n\n28) velgarath2: Build Y2 Velgarath2\n\n29) Felix: Build B1 Out\n\n30) velgarath2: Discover Y2 Velgarath2 R1 Charly\n\n31) Felix: Trade B2 R2 Out\n\n32) velgarath2: Move G2 Velgarath2 Bravo\n\n33) Felix: Build R2 Felix\n\n34) velgarath2: Build Y2 Velgarath2\n\n35) Felix: Discover Y1 Felix G2 Opus\n\n36) velgarath2: Move Y2 Velgarath2 Bravo\n\n37) Felix: Build Y3 Opus\n\n38) velgarath2: Build Y3 Bravo\n\n39) Felix: Discover G1 Out B1 Rumple\n\n40) velgarath2: Trade Y3 R3 Velgarath2\n\n41) Felix: Discover G1 Out Y3 Bank\n\n42) velgarath2: Build B2 Bravo\n\tvelgarath2: ok...I think I did some things wrong. I misunderstood the firing rule and now I am going to be in trouble. Anyways.....let's continue and resist\n\n43) Felix: Move Y1 Opus Rumple\n\tFelix: That's ok. Making mistakes is the best way to learn! We will continue :)\n\n44) velgarath2: Move B1 Velgarath2 Charly\n\n45) Felix: Build G1 Felix\n\n46) velgarath2: Sacrifice B2 Bravo\nTrade Y3 R3 Bravo\nTrade Y2 G2 Charly\n\n47) Felix: Build G3 Rumple\n\n48) velgarath2: Move R3 Bravo Out\n\n49) Felix: Sacrifice G3 Rumple\nBuild G3 Rumple\nBuild R2 Out\nBuild R3 Out\nCatastrophe Out Red\n\n50) velgarath2: Build R2 Velgarath2\n\n51) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Opus\nBuild Y3 Rumple\n\tvelgarath2: wow! that was crazy. I certainly lack experience.\n\n52) velgarath2: Sacrifice G2 Bravo\nBuild B2 Charly\nBuild B3 Bravo\n\n53) Felix: Sacrifice G3 Felix\nBuild G2 Bank\nBuild G3 Felix\nBuild B3 Out\n\tFelix: You will learn! It is a very complex game. I had to play many games before I understood all the possibilities.\n\n54) velgarath2: Sacrifice Y2 Bravo\nMove B1 Charly Out\nMove B2 Bravo Out\nCatastrophe Out B\n\n55) Felix: Trade G1 B1 Rumple\n\n56) velgarath2: Build Y2 Velgarath2\n\tFelix: You can see that the "factory" is a very powerful thing.\n\tvelgarath2: indeed...wow!\n\n57) Felix: Build G1 Rumple\n\n58) velgarath2: Move Y2 Velgarath2 Bravo\n\n59) Felix: Move B1 Rumple Bank\n\n60) velgarath2: Build Y2 Velgarath2\n\n61) Felix: Discover G1 Bank B1 Ragg\n\n62) velgarath2: Trade B3 R3 Bravo\n\n63) Felix: Trade R2 B2 Felix\n\n64) velgarath2: Move R3 Bravo Bank\n\n65) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B3 Bank\nBuild B3 Bank\n\n66) velgarath2: Sacrifice R2 Velgarath2\nAttack B3 Bank\nAttack B3 Bank\n\n67) Felix: Sacrifice G1 Ragg\nBuild B1 Bank\nCatastrophe Bank Blue\n\n68) velgarath2: Attack G2 Bank\n\n69) Felix: T G1 B1 Rumple\n\n70) velgarath2: Build R2 Bank\n\n71) Felix: Move B2 Felix Opus\n\n72) velgarath2: Move Y1 Velgarath2 Charly\n\n73) Felix: Build R2 Felix\n\n74) velgarath2: Move Y2 Bravo Opus\n\n75) Felix: Move Y3 Opus Charly\n\n76) velgarath2: Sacrifice R2 Bank\nAttack Y2 Opus\nAttack B2 Opus\n\n77) Felix: Attack G2 Charly\n\n78) velgarath2: Sacrifice Y2 Velgarath2\nMove Y2 Opus Rumple\nMove Y2 Opus Rumple\nCatastrophe Rumple Y\n\n79) Felix: Sacrifice R2 Felix\nAttack Y1 Charly\nAttack B2 Charly\n\n80) velgarath2: Build R1 Bank\n\n81) Felix: Sacrifice G3 Felix\nBuild G1 Charly\nBuild G1 Rumple\nBuild G3 Felix\n\n82) velgarath2: Build R2 Bank\n\n83) Felix: Build B1 Charly\n\n84) velgarath2: Move R2 Bank Rumple\n\n85) Felix: Sacrifice R1 Felix\nAttack R2 Rumple\n\n86) velgarath2: Build B3 Opus\n\n87) Felix: Trade G3 Y3 Rumple\n\n88) velgarath2: Build G3 Bank\n\n89) Felix: Sacrifice Y3 Rumple\nMove B2 Charly Velgarath2\nMove B1 Charly Velgarath2\nMove B1 Rumple Velgarath2\nCatastrophe Velgarath2 Blue\n\n90) velgarath2: Sacrifice B2 Opus\nTrade B3 Y3 Opus\nTrade G2 Y2 Bank\n\n91) Felix: Sacrifice Y3 Charly\nMove G1 Charly Velgarath2\nMove G2 Charly Velgarath2\nMove G1 Rumple Velgarath2\nCatastrophe Velgarath2 Green\n\n\tFelix: Good game! You played very well! I would love to play again any time.\n\nHomeworlds Online (SDG# 29601)\nVariants: "Hard time"\nStarted: 2016.4.26, Ended: 2016.5.19\nParticipants: orangeblood (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y2 B3 G3\n\n2) orangeblood: Homeworld G1 B2 Y3\n\tFelix: Here we go again! Have fun :)\n\n3) Felix: Build G1 Felix\n\torangeblood: Well, let's see what happens. Enjoy!\n\n4) orangeblood: Build Y1 Orangeblood\n\tFelix: And you too!\n\n5) Felix: Trade G1 Y1 Felix\n\n6) orangeblood: Trade Y1 G1 Orangeblood\n\n7) Felix: Build G1 Felix\n\n8) orangeblood: Build G2 Orangeblood\n\n9) Felix: Discover G1 Felix B1 Opus\n\n10) orangeblood: Discover G1 Orangeblood B3 Bevo\n\n11) Felix: Build G2 Felix\n\n12) orangeblood: B Y1 Orangeblood\n\n13) Felix: Discover G2 Felix Y1 Opal\n\n14) orangeblood: Build Y2 Orangeblood\n\n15) Felix: Build G2 Felix\n\n16) orangeblood: Build G3 Bevo\n\n17) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Opus\nBuild Y2 Felix\n\n18) orangeblood: Move Y1 Orangeblood Bevo\n\n19) Felix: Trade Y1 R1 Felix\n\n20) orangeblood: Trade G3 R3 Bevo\n\n21) Felix: B G3 Opal\n\tFelix: Good thinking getting a weapon when I do...\n\n22) orangeblood: Build R1 Bevo\n\n23) Felix: Trade G1 B1 Opus\n\torangeblood: I read somewhere that's what you're supposed to do, so I did... haha. Now, this latest red build is more a lack of knowing what else to do.\n\n24) orangeblood: T R1 B1 Bevo\n\tFelix: It's a good rule of thumb to follow! You may want to try to diversify into blue soon.\n\n25) Felix: Sacrifice G3 Felix\nBuild G1 Opus\nBuild G3 Felix\nBuild R1 Felix\n\torangeblood: The problem with blue is the rule of thumb about taking the last piece of a size. Of course, if everyone followed those rules no one would be building. \n\tFelix: That's true. There's pros and cons to every action, and sometimes you have to violate a rule of thumb just to get a certain color. If you get locked out of the color, you will be in trouble. But in this case, it wasn't a bad move, because I can't build a blue at the moment anyway, or I would have three blues in the opus system and you could easily cause a catastrophe there.\n\n26) orangeblood: Move B1 Bevo Orangeblood\n\n27) Felix: Discover G2 Opal Y3 Brink\n\torangeblood: Sorry for the delay.\n\n28) orangeblood: Trade Y3 R3 Orangeblood\n\tFelix: \r\nno problem!\n\n29) Felix: Trade G1 Y1 Opus\n\n30) orangeblood: Build Y3 Orangeblood\n\n31) Felix: Build Y3 Opus\n\n32) orangeblood: M R3 Orangeblood Brink\n\n33) Felix: Move G2 Brink Orangeblood\n\torangeblood: Hi, just wanted to take a look at the neighborhood you're building!\n\tFelix: Eep! Don't look! \r\nIt's not finished!\n\n34) orangeblood: Build R1 Bevo\n\tFelix: I'll just have a look at your home!\n\n35) Felix: Build G1 Orangeblood\nCatastrophe Orangeblood Green\n\torangeblood: All are welcome, as long as they come in peace.\n\n36) orangeblood: Move Y2 Orangeblood Brink\n\n37) Felix: Trade G2 B2 Felix\n\torangeblood: Huh, I was blind to that one.\n\n38) orangeblood: Sacrifice Y2 Brink\nMove R3 Brink Opus\nMove R3 Bevo Opus\n\tFelix: I'm sneaky sneaky :)\n\n39) Felix: Sacrifice Y3 Opus\nMove B1 Opus Orangeblood\nMove B2 Felix Opus\nMove B2 Opus Orangeblood\nCatastrophe Orangeblood Blue\n\tFelix: Good maneuver with your large reds there. That would normally be an effective attack, but I was lucky enough to have an opening to finish you off before you could pull off your attack. Very well played! Would be happy to rematch any time!\n\torangeblood: Ah, well done. I'll hit you up for a rematch soon.\n\n\nHomeworlds Online (SDG# 29618)\nVariants: "Unrated"\nStarted: 2016.4.27, Ended: 2016.4.29\nParticipants: Steele (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) Steele: Homeworld G3 Y1 B3\n\tFelix: Welcome! First game? Have fun!\n\n3) Felix: Build G1 Felix\n\tSteele: Yeah, first game of homeworlds ever, but it looks like a cool game. It looks like I game I will quickly fall in love with.\n\tFelix: I'm sure you will! I fell in love with it myself last year and it is my favorite game of all time now. I hope you have fun. Let me know if you have any questions and I'd be happy to help you learn the ropes.\n\tFelix: But the best way to learn is to make mistakes, so I won't take it TOO easy on you :) Some of the other players on here are brutal! I'll try to give you tips along the way if I think of them.\n\n4) Steele: B B1 Steele\n\tFelix: One quick tip to start with: you don't have to type out the full word of the commands. You can just type "b b1 steele" instead of "build b1 Steele". Saves a bit of time!\n\n5) Felix: T G1 B1 Felix\n\tSteele: Good to know! Also good to know it won't let me make invalid moves (because the first two attempts weren't valid). :)\n\tFelix: Yeah! The system will only let you make valid moves, which is a great way to learn the rules \n\n6) Steele: Trade B3 G3 Steele\n\n7) Felix: B G1 Felix\n\n8) Steele: Build G1 Steele\n\n9) Felix: T G1 Y1 Felix\n\n10) Steele: Trade B1 Y1 Steele\n\n11) Felix: Build B1 Felix\n\n12) Steele: Discover G1 Steele B2 Alpha\n\n13) Felix: Discover B1 Felix G1 Orpheus\n\n14) Steele: B Y2 Steele\n\n15) Felix: Build Y2 Felix\n\tFelix: I recommend trying to get a blue ship in your home system. It can cause a real color clog if you don't, since you can't trade any of your colors for others. It may have been a mistake to trade your B3 ship away at the beginning without building another blue first. If you had built a small blue and THEN traded your large blue away, you would still have the capacity to build blue and to trade in your homeworld, but now you have a difficult situation in your home system...\n\n16) Steele: Build G1 Alpha\n\tSteele: Yeah, I noticed that as soon as I did it. Now I'm trying to use the blue star to fix it :)\n\n17) Felix: Move Y1 Felix Orpheus\n\n18) Steele: Build G2 Alpha\n\n19) Felix: Build Y3 Orpheus\n\tFelix: Yeah. It's going to cost you a few turns to fix things, though, and momentum is crucial at this point in the game!\n\n20) Steele: Move Y1 Steele Alpha\n\n21) Felix: Discover Y1 Orpheus G2 Mikal\n\n22) Steele: Trade G2 B2 Alpha\n\n23) Felix: Build Y3 Mikal\n\n24) Steele: Move B2 Alpha Steele\n\n25) Felix: Build B1 Orpheus\n\n26) Steele: Build G2 Steele\n\n27) Felix: Build G2 Felix\n\n28) Steele: Sacrifice G3 Steele\nBuild G3 Steele\nBuild Y3 Alpha\nBuild B2 Steele\n\n29) Felix: Move B1 Orpheus Mikal\n\tFelix: Now you're in better shape. Nice use of the factory!\n\n30) Steele: Discover Y2 Steele R2 Beta\n\tSteele: Thanks, I wasn't sure if I was doing that right - but I like the effect. Now to get myself out of this yellow catastrophe threat you have me in...\n\n31) Felix: B B3 Orpheus\n\n32) Steele: Discover Y2 Beta R1 Gamma\n\tFelix: Good catch. And watch out with all that green you've got at home too...\n\tSteele: Yep, not sure green was a good homeworld choice...\n\n33) Felix: Sacrifice Y3 Orpheus\nMove G2 Felix Orpheus\nMove G2 Orpheus Mikal\nMove G2 Mikal Steele\nCatastrophe Steele Green\n\n34) Steele: Sacrifice Y3 Alpha\nMove Y1 Alpha Gamma\nMove Y1 Gamma Felix\nMove Y2 Gamma Felix\nCatastrophe Felix Yellow\n\tFelix: Putting green in your Homeworld can definitely make things more difficult. The main problem is that it makes it hard to set up a factory there. Of course, it's always possible to try to set up a factory in another system instead. If you can accomplish that, it can actually be a good homeworld color to have because it forces your opponent to potentially use green as an invasion color, and it's usually a tricky color to invade with.\n\tFelix: On the whole, I think the most effective starting homeworld is blue and yellow with a large green ship. This comes down to preference, though. I know a player who always starts with blue and red, with a green ship, and he wins often. As a beginner, it will also help you to start with the "banker" homeworld (a small and medium star).\n\n35) Felix: Sacrifice Y3 Mikal\nMove B1 Mikal Steele\nMove B1 Felix Steele\nPass\nCatastrophe Steele Blue\n\tFelix: Now things might be a bit tricky for you :/ But not impossible to recover from!\n\n\tSteele: I was wondering if you could double move the same ship or not. Looks like you can - so I gave it a go too ;)\n\tFelix: Absolutely. You can even triple move a ship. Nice move! But it has also left you vulnerable to my own counterattack!\n\tFelix: Nicely played! I hope you learned some things. I have an open challenge on the challenges list so feel free to challenge me again and we'll have a rematch :)\n\tFelix: It can be really satisfying to destroy half of your opponent's homeworld, as you did to mine, but you also need to have a plan in place for finishing the job, or you may leave yourself vulnerable.\n\tSteele: Learned a ton and I will definitely be starting a rematch soon!\n\nHomeworlds Online (SDG# 29666)\nVariants: "Hard time"\nStarted: 2016.4.28, Ended: 2016.5.11\nParticipants: nycavri (S), Pheonixian (N)\nWinner: nycavri\n\n1) Pheonixian: Homeworld B1 R2 G3\n\n2) nycavri: Homeworld B2 Y3 G3\n\tnycavri: TaGG!\n\n3) Pheonixian: Build G1 Pheonixian\n\n4) nycavri: Build G1 Nycavri\n\tPheonixian: Have Fun!\r\n\n\n5) Pheonixian: Trade G1 Y1 Pheonixian\n\n6) nycavri: Trade G1 Y1 Nycavri\n\n7) Pheonixian: Build G1 Pheonixian\n\n8) nycavri: B G1 Nycavri\n\n9) Pheonixian: Trade G1 B1 Pheonixian\n\n10) nycavri: T G1 R1 Nycavri\n\n11) Pheonixian: Discover B1 Pheonixian G3 Garden\n\n12) nycavri: B G1 Nycavri\n\n13) Pheonixian: Build B1 Garden\n\n14) nycavri: D Y1 Nycavri G1 Taylor\n\n\nHomeworlds Online (SDG# 29665)\nVariants: "Unrated"\nStarted: 2016.4.30, Ended: 2016.4.30\nParticipants: Mister (S), Felix (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29644)\nVariants: "Unrated"\nStarted: 2016.4.30, Ended: 2016.4.30\nParticipants: nycavri (S), Mister (N)\nWinner: nycavri\n\n\nHomeworlds Online (SDG# 29663)\nStarted: 2016.4.30, Ended: 2016.4.30\nParticipants: Mister (S), Felix (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29570)\nVariants: "Unrated"\nStarted: 2016.4.30, Ended: 2017.3.15\nParticipants: Mister (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 29678)\nVariants: "Unrated"\nStarted: 2016.5.1, Ended: 2016.5.2\nParticipants: Steele (S), nycavri (N)\nWinner: nycavri\n\n\nHomeworlds Online (SDG# 29675)\nVariants: "Unrated"\nStarted: 2016.5.2, Ended: 2016.5.6\nParticipants: wil (S), Steele (N)\nWinner: Steele\n\n1) Steele: Homeworld R3 B2 G3\n\n\nHomeworlds Online (SDG# 29586)\nVariants: "Hard time"\nStarted: 2016.5.2, Ended: 2016.5.7\nParticipants: Felix (S), Simon (N)\nWinner: Felix\n\n\tSimon: Whoops -- I'm back from a trip this week. Will try to be more attentive.\n\tFelix: No problem!\n\nHomeworlds Online (SDG# 29619)\nStarted: 2016.5.2, Ended: 2016.5.17\nParticipants: benr (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B2 Y3 G3\n\tbenr: homeworld B1 Y2 G3\n\tts52: not your turn yet, that box is for comments/messages, the box will appear at the top if it's your turn. :) Have a good game!\n\n2) benr: Homeworld B1 Y2 G3\n\tbenr: Oh! Now I get it. Thanks. You too! :)\n\n3) ts52: Build G1 Ts52\n\n4) benr: Build G1 Benr\n\n5) ts52: Discover G1 Ts52 B1 Grover\n\n6) benr: Discover G1 Benr Y3 Kermit\n\n7) ts52: Build G1 Ts52\n\n8) benr: Build G2 Benr\n\n9) ts52: Trade G1 B1 Ts52\n\n10) benr: Trade G2 B2 Benr\n\n11) ts52: Discover B1 Ts52 G1 Oscar\n\n12) benr: Build G2 Benr\n\n13) ts52: Build G2 Ts52\n\n14) benr: Move B2 Benr Kermit\n\n15) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Grover\n\n16) benr: Move G2 Benr Kermit\n\n17) ts52: Trade G2 Y2 Ts52\n\n18) benr: Sacrifice G2 Kermit\nBuild G2 Kermit\nBuild G2 Benr\n\n19) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Oscar\nBuild B3 Oscar\n\n20) benr: Sacrifice G2 Kermit\nBuild G2 Benr\nBuild B3 Kermit\n\n21) ts52: Sacrifice Y2 Ts52\nMove G1 Grover Kermit\nMove G1 Kermit Benr\nCatastrophe Benr Green\n\n\tts52: Thanks for the game!\n\tbenr: Wow! Good move, good victory. You're welcome, thank you as well for a good game!\n\nHomeworlds Online (SDG# 29690)\nStarted: 2016.5.3, Ended: 2016.6.6\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\tFelix: And away we go.\n\tts52: :D\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build B2 Felix\n\n8) ts52: Build B2 Ts52\n\n9) Felix: Discover B2 Felix G1 Settlement\n\n10) ts52: Discover B2 Ts52 G2 Kermit\n\n11) Felix: Sacrifice G3 Felix\nBuild B2 Settlement\nBuild B3 Settlement\nBuild B3 Felix\n\n12) ts52: Build G1 Ts52\n\n13) Felix: Trade B1 G1 Felix\n\n14) ts52: Trade G1 Y1 Ts52\n\n15) Felix: Trade B3 Y3 Settlement\n\n16) ts52: Move Y1 Ts52 Kermit\n\n17) Felix: Build G1 Felix\n\n18) ts52: Build G2 Ts52\n\n19) Felix: Discover B2 Settlement G2 Village\n\n20) ts52: Discover G2 Ts52 Y2 Bigbird\n\n21) Felix: Build G3 Felix\n\n22) ts52: Discover G2 Bigbird Y1 Zoe\n\n23) Felix: Trade G1 R1 Felix\n\n24) ts52: Trade B1 R1 Ts52\n\n25) Felix: Move B3 Felix Zoe\n\n26) ts52: Discover G2 Zoe G3 Oscar\n\n27) Felix: Sacrifice G3 Felix\nBuild G1 Felix\nBuild G3 Felix\nBuild B1 Village\n\n28) ts52: Build Y1 Kermit\n\n29) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B1 Zoe\nBuild B3 Settlement\n\n30) ts52: Move Y1 Kermit Oscar\n\n31) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R1 Felix\nBuild Y2 Settlement\n\n32) ts52: Sacrifice G2 Oscar\nBuild Y2 Oscar\nBuild Y3 Kermit\n\n33) Felix: Discover B2 Settlement G2 Duchy\n\n34) ts52: Sacrifice Y2 Oscar\nMove Y1 Oscar Settlement\nMove Y1 Kermit Settlement\nCatastrophe Settlement Yellow\n\n35) Felix: Trade G1 Y1 Felix\n\tFelix: Ooh, nice one.\n\n36) ts52: Build R2 Ts52\n\n37) Felix: Move Y1 Felix Settlement\n\tts52: Thanks, but you already thwarted my plan. ;)\n\n38) ts52: Move R2 Ts52 Kermit\n\n39) Felix: Move R1 Felix Settlement\n\n40) ts52: Build Y1 Kermit\n\n41) Felix: Build Y2 Settlement\n\n42) ts52: Discover Y3 Kermit G3 Oscar\n\n43) Felix: Move Y1 Settlement Village\n\n44) ts52: Move Y3 Oscar Village\n\n45) Felix: Build Y2 Village\n\n46) ts52: Build Y3 Kermit\n\n47) Felix: Sacrifice Y2 Village\nMove B1 Village Ts52\nMove B2 Village Ts52\n\tFelix: Shoot. I'm not sure how I missed that.\n\n48) ts52: Build R2 Ts52\n\n49) Felix: Build Y2 Settlement\n\n50) ts52: S R2 Ts52\nA Y1 Village\nA B2 Ts52\n\n51) Felix: Move Y2 Settlement Duchy\n\n52) ts52: Move B2 Ts52 Village\n\n53) Felix: Sacrifice R1 Settlement\nAttack R1 Ts52\n\n54) ts52: Sacrifice R2 Kermit\nAttack R1 Ts52\nAttack B1 Ts52\n\n55) Felix: Move B2 Duchy Ts52\n\n56) ts52: Attack B2 Ts52\n\n57) Felix: Sacrifice Y2 Settlement\nMove B1 Zoe Duchy\nMove B1 Duchy Ts52\nCatastrophe Ts52 Blue\n\n58) ts52: B G1 Ts52\n\n59) Felix: D G1 Felix B1 Argyle\n\n60) ts52: Discover Y3 Kermit G3 Oscar\n\n61) Felix: Trade G3 R3 Felix\n\n62) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild B1 Village\n\n63) Felix: Sacrifice Y2 Duchy\nMove B3 Zoe Ts52\nMove B3 Settlement Ts52\n\n64) ts52: Sacrifice G3 Ts52\nBuild G1 Ts52\nBuild R1 Ts52\nBuild R2 Ts52\n\n65) Felix: Sacrifice R3 Felix\nAttack R1 Ts52\nAttack R1 Ts52\nAttack R2 Ts52\n\n66) ts52: Sacrifice Y3 Village\nMove Y3 Oscar Argyle\nMove Y3 Argyle Felix\nMove B1 Village Ts52\n\tFelix: Interesting defense! Divide and clog :)\n\n67) Felix: Sacrifice B3 Ts52\nTrade B3 Y3 Ts52\nTrade R2 Y2 Ts52\nTrade R1 Y1 Ts52\nCatastrophe Ts52 Yellow\n\tts52: I think I can drag it out another turn, but I suspect that's about it.\n\tFelix: I found a way to speed things up :) Great game!\n\tts52: Yep, that will do it. Very well played.\n\n\nHomeworlds Online (SDG# 29585)\nVariants: "Hard time"\nStarted: 2016.5.3, Ended: 2016.5.6\nParticipants: Felix (S), SilentTitan (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 29687)\nVariants: "Unrated"\nStarted: 2016.5.4, Ended: 2016.5.9\nParticipants: mcowper (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 R2 G3\n\tFelix: Welcome! First game?\n\n2) mcowper: Homeworld B2 Y1 G3\n\n3) Felix: Build G1 Felix\n\n4) mcowper: Build G1 Mcowper\n\n5) Felix: Trade G1 Y1 Felix\n\n6) mcowper: Discover G1 Mcowper G3 Alpha\n\n7) Felix: Build Y1 Felix\n\n8) mcowper: Build G1 Mcowper\n\n9) Felix: Build Y2 Felix\n\n10) mcowper: Discover G1 Mcowper Y3 Bravo\n\n11) Felix: Discover Y1 Felix G1 Out\n\n12) mcowper: Build G2 Mcowper\n\n13) Felix: Build G2 Felix\n\n14) mcowper: Build G2 Mcowper\n\n15) Felix: Build Y2 Out\n\n16) mcowper: Trade G2 B2 Mcowper\n\n17) Felix: Trade G2 B2 Felix\n\n18) mcowper: Sacrifice G3 Mcowper\nBuild G2 Bravo\nBuild G2 Mcowper\nBuild G3 Mcowper\n\n19) Felix: Build Y2 Felix\n\n20) mcowper: Sacrifice B2 Mcowper\nTrade G2 B2 Mcowper\nTrade G3 Y3 Mcowper\n\n21) Felix: Build Y3 Out\n\n22) mcowper: Move B2 Mcowper Alpha\n\n23) Felix: Discover Y1 Out G3 Brink\n\n24) mcowper: Build G2 Mcowper\n\n25) Felix: M B2 Felix Out\n\n26) mcowper: Trade G2 R2 Mcowper\n\n27) Felix: T Y2 R2 Out\n\n28) mcowper: Trade B2 Y2 Alpha\n\n29) Felix: Build G2 Felix\n\n30) mcowper: Trade R2 B2 Mcowper\n\n31) Felix: Sacrifice Y2 Felix\nMove Y3 Out Brink\nMove Y3 Brink Mcowper\n\n32) mcowper: Trade G2 R2 Mcowper\n\tFelix: Always be careful of not having a weapon when your opponent does. Very dangerous!\n\n33) Felix: Sacrifice R2 Out\nAttack Y3 Mcowper\nAttack R2 Mcowper\n\n\tmcowper: Thanks for the game.\n\tFelix: No problem! feel free to challenge me agin any time. I hope you had fun and have learned something\n\nHomeworlds Online (SDG# 29698)\nStarted: 2016.5.4, Ended: 2016.5.31\nParticipants: nycavri (S), zeder (N)\nWinner: nycavri\n\n1) zeder: Homeworld Y2 B1 G3\n\tnycavri: Hello again! Let's get you started on the steep learning curve. (I still very much play in the shallow end . . .)\n\tnycavri: TaGG!\n\tzeder: This one seems very rich!\r\n\n\tzeder: homeworld y2 b1 g3\n\n2) nycavri: Homeworld G3 B1 Y3\n\tzeder: wrong place! not an good start!\n\n3) zeder: Build G1 Zeder\n\n4) nycavri: Build Y1 Nycavri\n\n5) zeder: Trade G1 Y1 Zeder\n\n6) nycavri: T Y1 B1 Nycavri\n\n7) zeder: Build G1 Zeder\n\n8) nycavri: Build B2 Nycavri\n\n9) zeder: Build G1 Zeder\n\tzeder: I am feel uncomfortable already!\n\n10) nycavri: Trade B2 G2 Nycavri\n\n11) zeder: Discover G1 Zeder B3 Aaa\n\n12) nycavri: B B2 Nycavri\n\n13) zeder: Build Y1 Zeder\n\n14) nycavri: Discover B2 Nycavri G2 Taylor\n\n15) zeder: Discover Y1 Zeder B3 Bbb\n\n16) nycavri: Build B2 Taylor\n\n17) zeder: Move Y1 Zeder Aaa\n\n18) nycavri: D G2 Nycavri Y2 Mercury\n\n19) zeder: Trade G1 R1 Zeder\n\n20) nycavri: B B2 Taylor\n\n21) zeder: Build G1 Zeder\n\n22) nycavri: B B3 Nycavri\n\n23) zeder: Build R1 Zeder\n\n24) nycavri: T B2 Y2 Taylor\n\n25) zeder: Sacrifice G3 Zeder\nBuild G1 Aaa\nBuild G2 Aaa\nBuild G3 Zeder\n\n26) nycavri: B B2 Taylor\n\n\nHomeworlds Online (SDG# 29711)\nVariants: "Unrated"\nStarted: 2016.5.6, Ended: 2016.5.23\nParticipants: raptorial (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R3 B2 G3\n\tFelix: Welcome! First game? Let me know if you have any questions.\n\n\nHomeworlds Online (SDG# 29721)\nVariants: "Unrated"\nStarted: 2016.5.6, Ended: 2016.5.18\nParticipants: Steele (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R3 B2 G3\n\tSteele: We meet again :)\n\tFelix: Welcome back! Good luck and have fun :]\n\n2) Steele: Homeworld B3 R1 G3\n\n3) Felix: B G1 Felix\n\n4) Steele: B G1 Steele\n\n5) Felix: Trade G1 R1 Felix\n\n6) Steele: T G1 Y1 Steele\n\n7) Felix: Build G1 Felix\n\n8) Steele: B G1 Steele\n\n9) Felix: Trade G1 Y1 Felix\n\n10) Steele: Discover G1 Steele B2 Alpha\n\n11) Felix: Build G1 Felix\n\n12) Steele: Build G1 Steele\n\n13) Felix: Build G2 Felix\n\n14) Steele: Sacrifice G3 Steele\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Steele\n\n15) Felix: Discover G2 Felix Y1 Rim\n\tFelix: Nice!\n\n16) Steele: T G2 R2 Alpha\n\n17) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G3 Felix\nBuild G3 Rim\n\n18) Steele: B Y2 Steele\n\n19) Felix: Trade G1 B1 Felix\n\n20) Steele: M Y1 Steele Alpha\n\n21) Felix: Move B1 Felix Rim\n\n22) Steele: M R2 Alpha Rim\n\n23) Felix: Sacrifice R1 Felix\nAttack R2 Rim\n\n24) Steele: S Y2 Steele\nM G1 Alpha Rim\nM G2 Alpha Rim\nC Rim G\n\tSteele: Nice! Didn't see that coming :)\n\n25) Felix: Build Y2 Felix\n\tFelix: Thanks! it's so hard to anticipate everything in this game because there are so many possibilities! It truly is like chess in that regard.\n\n26) Steele: T Y1 G1 Alpha\n\n27) Felix: Move G2 Felix Rim\n\n28) Steele: B G1 Alpha\n\n29) Felix: Trade G2 Y2 Rim\n\n30) Steele: T G1 Y1 Alpha\n\n31) Felix: Build G1 Felix\n\n32) Steele: B Y2 Alpha\n\n33) Felix: Move G1 Felix Rim\n\n34) Steele: T Y1 R1 Alpha\n\n35) Felix: Build G2 Rim\n\n36) Steele: S G3 Steele\nB G2 Alpha\nB G2 Alpha\nB G3 Steele\nPass\n\n37) Felix: Build G3 Felix\n\n38) Steele: D G2 Alpha Y1 Beta\n\tSteele: Well that wasn't exactly what I was aiming to do :)\n\tFelix: Whoopsie :P\n\n39) Felix: Discover Y1 Felix B1 Opal\n\n40) Steele: B Y3 Alpha\n\n41) Felix: Sacrifice G3 Felix\nBuild Y3 Opal\nBuild Y3 Felix\nBuild G3 Felix\n\n42) Steele: S Y3 Alpha\nM G1 Alpha Beta\nM G2 Beta Felix\nM G1 Beta Felix\nC Felix G\n\n43) Felix: Trade Y3 G3 Felix\n\n44) Steele: Discover R1 Alpha Y1 Beta\n\n45) Felix: Build Y3 Felix\n\tFelix: Ooh, nice move!\n\n46) Steele: S G3 Steele\nB Y3 Alpha\nB R1 Beta\nB R2 Beta\nPass\n\tSteele: I'm trying to think longer term in my tactics. So many possibilities!!\n\n47) Felix: Build B1 Rim\n\tFelix: It's truly mind boggling sometimes!\n\n48) Steele: S Y3 Alpha\nM R1 Beta Felix\nM R1 Beta Felix\nM R2 Beta Felix\nC Felix R\n\n49) Felix: Move Y3 Felix Steele\n\tFelix: Ooh, be careful leaving your homeworld without a large like that. If I moved a large or medium ship in there now, you'd be done for!\n\tSteele: Good advice, yeah, I may be rushing this, but...\n\n50) Steele: S G2 Alpha\nB G1 Steele\nB G2 Steele\nPass\n\n51) Felix: Trade Y3 G3 Steele\nCatastrophe Steele Green\n\tFelix: You did rush a bit. I know that it feels really good to blow up half your opponent's world, but if you don't have a plan already in place to deal with the other half, you may leave yourself vulnerable to a quick counterattack, like I'm doing now.\n\n\tSteele: Yeah, I'm certainly on the defense now... \n\tFelix: Very good game. You got a bit overeager at the end and it left you vulnerable. I've had to learn that lesson many times. Patience can be more frustrating sometimes, but it usually pays to wait until you have a full plan. That said, sometimes doing something radical and unexpected can really pay off, so keep being creative! I'd love to rematch any time.\n\tSteele: So much to learn - a rematch is coming soon :)\n\nHomeworlds Online (SDG# 29726)\nVariants: "Hard time"\nStarted: 2016.5.6, Ended: 2016.5.10\nParticipants: Felix (S), goulo (N)\nWinner: Felix\n\n1) goulo: Homeworld R1 B2 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\tgoulo: hi, have fun!\n\tFelix: Thanks for accepting. Hope you have fun too!\n\n3) goulo: Build G1 Goulo\n\n4) Felix: Build G1 Felix\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Felix: Trade G1 B1 Felix\n\n7) goulo: Build G1 Goulo\n\n8) Felix: Build B1 Felix\n\n9) goulo: Build Y1 Goulo\n\n10) Felix: Discover B1 Felix G2 Opus\n\n11) goulo: Discover Y1 Goulo G3 Verdego\n\n12) Felix: Build B2 Opus\n\n13) goulo: Trade G3 B3 Goulo\n\n14) Felix: Trade B2 Y2 Opus\n\n15) goulo: Build G1 Goulo\n\n16) Felix: Build B2 Opus\n\n17) goulo: Discover G1 Goulo B3 Bluego\n\n18) Felix: Build B2 Felix\n\n19) goulo: Build Y1 Verdego\n\n20) Felix: Build B3 Opus\n\n21) goulo: Build Y2 Goulo\n\n22) Felix: Discover B2 Opus G3 Brink\n\n23) goulo: Discover Y1 Verdego G2 Verdo\n\n24) Felix: Build G1 Felix\n\n25) goulo: Build G2 Bluego\n\n26) Felix: Trade B1 R1 Felix\n\n27) goulo: Build Y2 Verdo\n\n28) Felix: Build Y3 Opus\n\n29) goulo: Build Y3 Verdego\n\n30) Felix: Sacrifice Y3 Opus\nMove B1 Opus Brink\nMove B2 Brink Goulo\nMove B1 Brink Goulo\nCatastrophe Goulo Blue\n\n31) goulo: Build G3 Goulo\n\n32) Felix: Sacrifice G3 Felix\nBuild Y3 Opus\nBuild G3 Felix\nBuild R1 Felix\n\n33) goulo: Discover Y1 Verdego B2 Bluo\n\n34) Felix: Move R1 Felix Opus\n\n35) goulo: Move Y1 Verdo Felix\n\n36) Felix: Sacrifice Y3 Opus\nMove R1 Opus Goulo\nMove R1 Felix Opus\nMove R1 Opus Goulo\n\n37) goulo: Sacrifice Y2 Goulo\nMove Y1 Bluo Felix\nMove Y2 Verdo Felix\nCatastrophe Felix Y\n\n38) Felix: Sacrifice G1 Felix\nBuild R2 Goulo\nCatastrophe Goulo Red\n\tgoulo: man, you outplayed me early with that blue lead, congrats and thanks.\n\tFelix: Good game! Thank you for playing. Would love to rematch any time!\n\n\nHomeworlds Online (SDG# 29686)\nVariants: "Unrated"\nStarted: 2016.5.9, Ended: 2016.5.12\nParticipants: mcowper (S), wil (N)\nWinner: mcowper\n\n\nHomeworlds Online (SDG# 29750)\nVariants: "Hard time"\nStarted: 2016.5.10, Ended: 2016.6.20\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 Y2 G3\n\tFelix: We meet on the battlefield at last. Good luck to you!\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: And to you! :)\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build B2 Felix\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) Felix: Discover B2 Felix G3 Raid\n\n10) ts52: Build G1 Ts52\n\n11) Felix: Build G1 Felix\n\n12) ts52: Build G2 Ts52\n\n13) Felix: Discover G1 Felix B3 Maraud\n\n14) ts52: Trade G2 Y2 Ts52\n\n15) Felix: Build G2 Felix\n\n16) ts52: Move Y2 Ts52 Kermit\n\n17) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G2 Maraud\nBuild G3 Felix\n\n18) ts52: Discover G1 Ts52 Y1 Bigbird\n\n19) Felix: Discover G2 Felix B3 Pillage\n\n20) ts52: Discover G1 Bigbird B3 Grover\n\n21) Felix: Trade G1 Y1 Maraud\n\n22) ts52: Build G1 Ts52\n\n23) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Raid\nBuild Y1 Maraud\n\n24) ts52: Sacrifice G1 Grover\nBuild B3 Kermit\n\n25) Felix: Trade B2 R2 Raid\n\n26) ts52: T G1 R1 Ts52\n\n27) Felix: Build B2 Raid\n\n28) ts52: Build R1 Ts52\n\n29) Felix: Trade B2 Y2 Raid\n\n30) ts52: Move R1 Ts52 Kermit\n\n31) Felix: Sacrifice G3 Felix\nBuild G1 Maraud\nBuild G1 Pillage\nBuild G3 Felix\n\n32) ts52: Trade B3 R3 Kermit\n\n33) Felix: Move Y1 Maraud Felix\n\n34) ts52: M R3 Kermit Maraud\n\n35) Felix: Sacrifice Y2 Raid\nMove G2 Maraud Kermit\nMove G2 Pillage Kermit\n\n36) ts52: A Y1 Maraud\n\n37) Felix: S G1 Maraud\nB G1 Kermit\nC Kermit Green\n\n38) ts52: Build G1 Ts52\n\n39) Felix: Sacrifice G3 Felix\nBuild B1 Raid\nBuild B2 Raid\nBuild B3 Felix\n\n40) ts52: Discover G1 Ts52 Y1 Bigbird\n\n41) Felix: Trade B3 G3 Felix\n\n42) ts52: Move G1 Bigbird Maraud\n\n43) Felix: Build B3 Felix\n\n44) ts52: Build R1 Maraud\n\n45) Felix: Trade B2 Y2 Raid\n\n46) ts52: Discover R3 Maraud Y2 Zoe\n\n47) Felix: Move B3 Felix Raid\n\n48) ts52: Move R3 Zoe Pillage\n\n49) Felix: Sacrifice G1 Pillage\nBuild B2 Felix\n\n50) ts52: Build G1 Ts52\n\n51) Felix: Trade B3 Y3 Raid\n\n52) ts52: Discover G1 Ts52 Y1 Zoe\n\n53) Felix: Build B3 Raid\n\n54) ts52: Build G1 Ts52\n\n55) Felix: Trade B3 Y3 Raid\n\n\tFelix: :(\n\tts52: Dammit! Got distracted and forgot about my SDG games again. Sorry Felix.\n\tFelix: That's okay. I just hate that you had to lose that way, and on a ladder game no less! I've already been challenged by someone else but I hope you'll challenge me again in future, and I'd love to just plat a non-ladder game in the meantime!\n\tDraw5PlayAll: And the ts52 system is now in the main grid... odd...\n\tts52: No worries, it's my own fault.\n\tDraw5PlayAll: Felix: you were clearly winning. How were you going to try to finish ts52 off?\r\nAll: Why do you suppose the ts52 system drifted into the middle of the field with all the other systems?\n\tts52: Draw5PlayAll: That's just what happens when someone loses. SDG no longer thinks ts52 is a homeworld, so it doesn't treat it special any more.\n\tts52: fwiw I Would've factoried g2 at zoe and maraud, probably.\n\tFelix: I didn't quite have a concrete finishing him off plan in place yet, but my plan was to just keep trying to dominate the blue market while continuing to rebuild that b3 and trade it, scooping up the rest of the larges and giving myself plenty of forces and options. I think I would have just positioned my blue and yellow ships and then sacrificed some y3s to move them into place and catastrophe his homeworld. Jury's out on whether it would work though. Ts52 has upset my plans before when I thought I was winning!\n\tts52: :)\n\nHomeworlds Online (SDG# 29725)\nVariants: "Unrated"\nStarted: 2016.5.15, Ended: 2016.5.26\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 R2 G3\n\tFelix: Welcome! First game? Hope you enjoy and let me know if you have any questions!\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\n3) Felix: Build G1 Felix\n\tDraw5PlayAll: Here's what I think is going to happen.\r\nWe each will build a G1 and then either build another green or trade for something (probably yellow).\n\tFelix: That sounds pretty accurate to me. The beginnings of games are usually pretty similar.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Hold it. How do I construct ships in the home world? Do I write `build G1 Draw5PlayAll` or `build G1 homeworld` or `build G1 S`?\n\n5) Felix: Trade G1 Y1 Felix\n\tDraw5PlayAll: Figured it out from the system message "North created a G1 ship in the Felix system".\n\tFelix: Glad you figured it out! You also don't have to write out the whole word for an action. You can just type "B G1 Draw5PlayAll" instead of "Build G1 ...."\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Despite several doubts we are going to attempt to build another small construction ship. As no enemies are in range of a suicide attack, we are safe for the time being.\r\n\r\n———\r\n\r\nI have a question. Suppose you have a green and a Y3 in your base while I have three greens. If you sac the Y3 to fly your green into my home and call catastrophe, who wins? Or is it a draw?\n\n7) Felix: Build G1 Felix\n\tFelix: Before we venture forth on a discovery mission, we would also like to increase the construction capacity of our system by building a new small construction ship.\r\n\r\n- - - - -\r\n\r\nI think in an offline game it would be considered a draw if that situation came up. If there are no ships left in MY homeworld at the end of my turn, I would also lose. The system here on SDG, however, doesn't allow you to fully abandon your homeworld like that. The move is impossible on here, so it couldn't happen that way. That's just how the game is programmed here.\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: By popular request, we have decided to implement warp drive on one of our small ships. Unfortunately we had to remove its construction capabilities to do so. We've been trying for years to fit two abilities into one ship but it is simply impossible.\n\n9) Felix: Trade G1 B1 Felix\n\n10) Draw5PlayAll: Discover G1 Draw5playall R3 Dangerzone\n\tFelix: My people, meanwhile, have been demanding that we expand our trade market, so we have retrofitted one of our construction vessels with trade technology. We hope to venture forth into the unknown soon in search of peaceful people with which to trade.\n\n11) Felix: Build B1 Felix\n\tDraw5PlayAll: A lone green ventured out into space and found a huge red planet. The people there had many weapons, but surprisingly the green was undetected in orbit. That's what I'm told at least.\n\tFelix: The people are pleased with the new trade regime and demand its further expansion. We complied by building yet another trade vessel. The technology powering our trade vessels is also found in the core of the larger of our two home planets, so we must send out one of our trade vessels soon to avoid any natural catastrophes occurring by overtaxing the planet's reactor.\n\n12) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: We got a little annoyed by your actions and decided to construct another ship, this time with warp drives from the beginning. We fear your later actions and are trying to access more planets to diversify and spread out our fleet.\r\n\r\nBe aware that if you upsize your movement vessels, we many launch suicide ships to destroy your warp drive.\n\n13) Felix: Discover B1 Felix G1 Littlewood\n\tDraw5PlayAll: Incidentally, I saw your 4P challenge. I'm a bit hesitant because that forces either two people to share a homeworld size (causing them to fight bitterly in LCS; not as bad in Sinister) or someone to choose a "Gemini" star (1-1, 2-2, or 3-3) which also creates bitter fighting. (I think a gemini is an awful choice for any battle.)\r\n\r\nI think they should add a 2v2 mode for four players. I've hypothesized about how this might work (the teams obviously should pick the same size stars). Not sure if partners should go sequentially (1,2 vs 3,4) or not (1,3 vs 2,4).\r\nHowever, I don't think this will happen any time soon because I'm not sure if teams are implemented at all.\n\n14) Draw5PlayAll: Build Y2 Draw5playall\n\tFelix: Despite the threatening message of suicide bombers received by an alien race somewhere to the south of us, we are sending out one of our small trade vessels in search of peaceful people with which to trade. The vessel is fragile and unprotected, but it has discovered a small and seemingly peaceful forest planet. We are dubbing this planet "LittleWood." The planet seems conducive to a construction facility, so we are installing a ship factory on the planet and soon hope to produce larger ships that will protect our small trade vessel. We hope that the suicide bomber threats are simply a ruse.\n\tFelix: (I hadn't thought of that problem in a 4p game but I believe you're right. I still think it could be fun to give it a try though! Would love to have you join in and see how it goes.\n\tDraw5PlayAll: We are risk-takers, and decided to upsize our ships in the warp drive industry. \r\nWe have also canceled the threat. There has been some slight amounts of radiation coming from the warp drives, and we fear it will be too much if we don't explore soon.\r\n\r\n--\r\nSo far, I dislike the map structuring. Specifically, the proximity from your base to DangerZone, despite both systems having a Large. I keep getting tempted to barge in to Little Wood, despite impossibility.\n\n15) Felix: Build B2 Littlewood\n\tDraw5PlayAll: We detected aliens from DangerZone and LittleWood are observing our actions. I hope they leave soon because this could get messy.\n\n16) Draw5PlayAll: Move Y1 Draw5playall Dangerzone\n\tFelix: Fearing attack from the nearby DangerZone system, our colony on LittleWood has decided to build a larger trade vessel to help protect the smaller. We do not wish a confrontation, as we are a peaceful trading people, so we are not equipping our vessels with weapons at the moment.\n\tFelix: (It does take some time to get one's head around the movement and layout on here. It's much easier to arrange things how you wish when playing on a table.)\n\tDraw5PlayAll: We decided to fly a Constellation-class ship into Danger Zone. With the earlier green ship we could potentially upsize our fleet.\n\n17) Felix: Build Y2 Felix\n\tFelix: The lack of warp capability in our LittleWood colony is worrisome, so we are creating a new warp vessel at home to send out to the colony.\n\n18) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\tDraw5PlayAll: Since your mission is peace, you clearly don't need to be involved in the red economy. Plus we want to diversify our fleet. Red seemed like a good option, just in case you changed your mind at some point.\n\n19) Felix: Move Y2 Felix Littlewood\n\tFelix: Our sensors indicate that the alien race to the south is developing weapons in its home system. This is troubling for a peaceful people such as ourselves. We may need to arm ourselves with a warship, purely for defensive reasons, of course. But first, we are sending our new warship out to the LittleWood colony so that the colony can evacuate if an attack should come from our southern neighbors.\n\n20) Draw5PlayAll: Discover R1 Draw5playall Y3 Biglemon\n\tDraw5PlayAll: Well, fine then. If you prefer, we are sending the weaponed ship to a new, more peaceful star known as the Big Lemon. Seems like a strange name for a star.\n\n21) Felix: Trade B1 R1 Littlewood\n\tDraw5PlayAll: The map got completely messed up. The large stars should be closer to me than they are to you.\n\tFelix: Since we now have a larger trade ship capable of carrying out our trade directives, we no longer need our smallest trade vessel, so we will be stripping out its trade facilities and replacing them with weapons. This is purely for defense, since the alien warship located at the Big Lemon is only one warp jump away from us.\n\n22) Draw5PlayAll: Build Y1 Dangerzone\n\tFelix: The map looks right to me, but it does sometimes get messed up. You just have to think of it more abstractly and less literally in terms of distance.\n\tDraw5PlayAll: Well, in this case, we're just going to build another yellow ship at Danger Zone.\n\n23) Felix: Build Y2 Littlewood\n\n24) Draw5PlayAll: Build Y3 Draw5playall\n\tFelix: We see the need to explore further in search of peaceful species with which to trade, so we are increasing our fleet with a new warp ship.\n\tDraw5PlayAll: Well, our Ambassador-class ships aren't enough. We are going to Galaxy-class. And it's being built right here in the base.\n\n25) Felix: Build Y3 Felix\n\tFelix: We have noticed that the resources required for building Galaxy-class warp ships have dropped to nearly nonexistent levels. We suspect the aliens to the south of us are also drawing on the same resources. We are going to build our own galaxy-class warp cruiser to make sure we have one before resources are fully depleted.\n\n26) Draw5PlayAll: Build G1 Dangerzone\n\tDraw5PlayAll: Ah, you've robbed us of the blue economy! Well then, we're going to a planet covered in ice, and sending a construction ship with the boost from the warp ships in Danger Zone. We have a way of transporting ships without sacrificing, so long as we have a yellow in the area.\n\tDraw5PlayAll: Slight change in plans. We decided we needed more resources and are just going to build another construction ship in the danger zone.\r\nOur star charts lost the planet in the process.\n\n27) Felix: Build B1 Littlewood\n\n28) Draw5PlayAll: Build G2 Dangerzone\n\tFelix: We are building a new trade vessel to send out on a contact mission of peace.\n\tDraw5PlayAll: Despite the potential for catastrophe, we have decided to build an Ambassador-class construction ship in the Danger Zone system. We are aware that you have the means to invade with your large green but you would be unwise to do so.\n\n29) Felix: Move B2 Littlewood Biglemon\n\n30) Draw5PlayAll: Discover G1 Dangerzone B2 Epsilonvi\n\tFelix: We have sent our liaison-class trade vessel on a mission of discovery and peace. A particularly large desert planet has shown up on our charts so we are beginning our search there. Hopefully the denizens of this big lemon are peaceful.\n\tDraw5PlayAll: Meanwhile our own people at Danger Zone realized the, well, danger.. They decided to flee off to a small watery planet, but the name is unknown....\n\n31) Felix: Sacrifice R1 Littlewood\nAttack R1 Biglemon\n\tDraw5PlayAll: As soon as we were within sensor range, aliens completely obliterated the planet and killed themselves in the act. A time warp sent us back to where we started.\n\tDraw5PlayAll: One of the crew was able to prevent the same mistake from occurring again. We instead ventured to a slightly larger planet Epsilon VI, again covered in water.\n\n32) Draw5PlayAll: Build G2 Epsilonvi\n\tFelix: We made contact with a small vessel at BigLemon. However, the small vessel appears to be armed with high powered lasers and warheads. We were expecting to open peaceful trade relations with this people, but they seem to be aggressive. We have no choice but to take over this vessel so that it does not harm us or our people. Purely defensive measures, you understand. Our defensive vessel in LittleWood is sending a warp-powered boarding crew to take the ship intact.\n\n33) Felix: Build G2 Felix\n\tFelix: Unfortunately, the amount of power required to send the warp-powered boarding vessel was too much for our defense ship's core to handle. The ship self-destructed in the process, but we were able to successfully take over the enemy vessel, so we are calling it even.\n\tDraw5PlayAll: Our small Constellation ship at Epsilon VI is lonely and we decided to build an Ambassador-class construction vessel on that planet.\n\n34) Draw5PlayAll: Trade G2 B2 Epsilonvi\n\n35) Felix: Sacrifice G3 Felix\nBuild B3 Biglemon\nBuild B3 Littlewood\nBuild G2 Felix\n\tFelix: We are short on construction ships, so we are building a new construction vessel in our home system.\n\tDraw5PlayAll: Despite the knowledge that you can send suicide ships to destroy me, we traded out the construction power of our Ambassador-class ship at Epsilon VI for trading power, using the planet of course.\r\n---\r\nYou have the possibility of sacrificing a medium yellow to bring two blues into Epsilon VI and call catastrophe. If you don't, we will begin actions you will not like.\n\n36) Draw5PlayAll: Build G3 Epsilonvi\n\n37) Felix: Discover G2 Felix R1 Lavaflow\n\tFelix: We have ignored your beckon to cause a catastrophe on Epsilon VI. We do not believe in such overt aggression as a suicide attack. Instead, we tried to send our biggest construction vessel out to LittleWood to begin construction operations there. However, something strange happened in transit and our ship entered a wormhole. When it came out the other side of the wormhole, it had been split into three ships, a medium construction ship and two large trade vessels! These ships showed up in random locations around our domain. We aren't sure what happened in the wormhole, but we are happy with the net gain to our fleet.\n\tDraw5PlayAll: We build a Galaxy-class construction vessel in Epsilon VI. Go on, blow us up. We dare you.\r\n\r\n--\r\n\r\nHa, just right after I got a blue, you removed the color from the stash. I need two turns in a row here!!\n\n38) Draw5PlayAll: Sacrifice Y1 Dangerzone\nMove G3 Epsilonvi Lavaflow\n\tDraw5PlayAll: I see us both left with a single medium red as our homeworlds.\r\nHere's what I see for you:\r\nYou run a ship into Little Wood and then sac a yellow to bomb our small blue star, leaving me with just a red. (There's a change you might sabotage my yellow economy, but I think that won't work.)\r\nMeanwhile I see multiple ways that I can get to YOUR homeworld and either call catastrophe or sabotage your Planetary Defense System (if you sac your only large there and I get a large inside, you can't attack me).\n\tFelix: Interesting prediction :) We shall see! It's generally a terrible idea to ever leave your homeworld without a large ship to defend it, so I will tell you that I am unlikely to sac my y3 any time soon...\n\n39) Felix: S G2 Lavaflow\nB R1 Biglemon\nB R2 Biglemon\n\tFelix: We were intending to send our medium construction vessel out to Big Lemon to establish a factory on that world, but the vessel became lost in transit and ended up stumbling upon a small planet covered in active volcanoes. We have dubbed this planet Lava Flow and may commence our construction operations here.\n\tDraw5PlayAll: Oh no. This is bad. This is really bad.\r\n\r\nThe large green from Epsilon VI heard about this lava planet and decided to go there. We used the engine from a yellow at DangerZone, but said engine broke down as soon as we reached Lava Flow.\n\n40) Draw5PlayAll: Sacrifice G2 Dangerzone\nBuild G2 Lavaflow\nBuild G2 Epsilonvi\n\n41) Felix: Build G3 Felix\n\tFelix: Our construction vessel on lava flow was startled by the appearance of a large and unknown ship. It lost control and careened into the planet, blowing itself up. The construction energy within the ship reacted with the planet, however, and created two new warships equipped with heat lasers. The reaction propelled these new ships back over to big lemon for some reason...\n\tDraw5PlayAll: I can't think of a good way to phrase this move in our... narrative...\n\n42) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G2 Lavaflow Felix\nMove G3 Lavaflow Felix\nCatastrophe Felix Green\n\tDraw5PlayAll: You know, the only reason I picked a 1-2 home world is for the Investment strategy, where I park a single green at a star and try to cash it in via a sacrifice. Result? I got *nearly* frozen out of blue.\n\tFelix: That's okay if you we don't narrate every move. it's fun though! And yeah... the banker strategy is a good one though! It's definitely the strongest homeworld set up and can be used very effectively, but I have found it difficult to actually pull off the "banker" move in games.\n\n43) Felix: Move R1 Biglemon Draw5playall\n\tDraw5PlayAll: We wanted to trade for a Galaxy-class attacking ship but the risk of invasion is just too great. We instead decided to run a suicide mission to hold back your green economy.\n\n44) Draw5PlayAll: Sacrifice G2 Epsilonvi\nBuild Y1 Draw5playall\nBuild Y2 Dangerzone\n\n45) Felix: Discover B1 Littlewood G3 Bigwood\n\tFelix: Despite our peaceful intentions, it seems the aliens to our south are a warlike species interested only in our destruction. We are sending out one of our small warships on a scouting mission to their homeworld to see if we can find a way to neutralize their weapons. Purely in self defense, of course.\n\tDraw5PlayAll: Not sure if there's anything I can do here. You rip away my red next move, then you can sac yellows to throw your blues at me and wipe out my homeworld. My only shot here is to...\n\n46) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove Y2 Dangerzone Littlewood\nMove Y1 Dangerzone Littlewood\nDiscover B2 Epsilonvi R1 Lavaflow\nCatastrophe Littlewood Yellow\n\tDraw5PlayAll: We have developed a "distant construction" device, and used it on our G2 in Epsilon VI, but it has a problem. It draws so much power that the ship self-destructs in the process.\n\tDraw5PlayAll: This game will be very close.\n\n47) Felix: Move R1 Biglemon Draw5playall\n\tFelix: Little did we know that the planet Little Wood was actually just a forest moon for a much larger forest planet. We're not very creative, so we're dubbing this planet Big Wood.\n\tDraw5PlayAll: There's only one thing I can really do at this point. Commence Brutal Destruction!!\n\n\tFelix: Our small warship needs backup in the alien home system. Soon, we will be able to neutralize all weapons, and then perhaps we can build peace between our peoples...\n\tDraw5PlayAll: Facing unavoidable doom, we had a last ditch effort to save our remaining crew. We piled everyone into our large green and used engines from the yellow to flee into space. We also poisoned the planets with lots of deadly gases and radiation (there were nobody there except us) so we leave nothing behind for the "peaceful" invaders in the direction of Polaris.\r\n\r\n——————————————\r\n\r\nGood game. I just needed two more moves, attack red and move it away. Sadly when I ransacked your yellow economy in the Little Wood system, you had the move advantage to destroy us. I had traps set if you sacrificed too early. But you managed to trap me in a corner.\r\n\r\nPerhaps we will meet again. In the meantime, so long, and thanks for all the fish. (Yes, we tried to raid your incoming red ships. We failed, but at least we got some fish.)\n\tFelix: Great game yourself! Very well played for a beginner. You will have a very solid grasp on the strategy with a few more games. I'd love to have a rematch any time! Enjoy that fish!\n\nHomeworlds Online (SDG# 29701)\nVariants: "Unrated"\nStarted: 2016.5.15, Ended: 2016.6.5\nParticipants: Draw5PlayAll (S), nycavri (N)\nWinner: nycavri\n\n1) nycavri: Homeworld Y1 B2 G3\n\tnycavri: TaGG!\n\n2) Draw5PlayAll: Homeworld B1 R3 G3\n\n3) nycavri: Build G1 Nycavri\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Interesting. You appear to have skilled explorers in your home world but you lack a planetary defense system. We are going to build another construction ship before taking on any adventurous actions.\n\n5) nycavri: T G1 Y1 Nycavri\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\tnycavri: We come in peace . . . ?\n\tDraw5PlayAll: We are risk-takers, and we build another construction ship in our system. There is no risk of a suicide bomber blowing up all our green.\n\n7) nycavri: D Y1 Nycavri B3 Deacon\n\tnycavri: Yet . . .\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: I take note of your actions and decide to implement warp drives in one of the small Constellation-class ships. As always, we have to remove the construction capabilities.\n\n9) nycavri: Build G1 Nycavri\n\n10) Draw5PlayAll: Build Y2 Draw5playall\n\tnycavri: Looks like you're all set to escalate / accelerate . . .\n\tDraw5PlayAll: Ah, but we have an Ambassador-class movement ship in our system. We hope to use it to explore strange new worlds.\n\n11) nycavri: S G1 Nycavri\nBuild Y2 Deacon\n\n12) Draw5PlayAll: Discover Y2 Draw5playall G2 Greenville\n\tnycavri: And you've stolen tempo . . .\n\tDraw5PlayAll: Well, in that case... We discovered a medium-sized planet covered in forest. The local aliens have construction facilities that we could use to our advantage. \n\n13) nycavri: T Y2 G2 Deacon\n\n14) Draw5PlayAll: Build Y2 Greenville\n\tnycavri: Not enjoying how loneyly my mothership is . . .\n\tDraw5PlayAll: We're building another Ambassador class ship with warp drives.\n\n15) nycavri: B G1 Nycavri\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: Hmmm... I could sac the G1 and build three times but I don't think I have enough influence. Instead we decided to build an Ambassador-class movement ship.\n\n17) nycavri: D Y1 Deacon G2 May\n\n18) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 Greenville\n\n19) nycavri: S G3 Nycavri\nB G3 Nycavri\nB Y3 May\nB G3 Deacon\n\tDraw5PlayAll: What's interesting is that even though I am in danger of an overpopulation (I have 3 of a color in two systems) but you can't get anything there to call.\n\n20) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n21) nycavri: T G3 Y3 Deacon\n\tDraw5PlayAll: Because of the threat of a disaster we decided to swap out our Constellation-class construction vessel for a trading vessel.\n\n22) Draw5PlayAll: Sacrifice Y2 Greenville\nDiscover Y1 Draw5playall R2 Firefly\nMove B1 Draw5playall Firefly\n\n23) nycavri: T G1 R1 Nycavri\n\tDraw5PlayAll: Oh, your forces are quite annoying!\n\n24) Draw5PlayAll: Move Y3 Greenville Deacon\n\n25) nycavri: B R1 Nycavri\n\tnycavri: Happy system!\n\n26) Draw5PlayAll: Trade Y3 R3 Deacon\n\n27) nycavri: S R1 Nycavri\nA R3 Deacon\n\n28) Draw5PlayAll: Discover B1 Firefly G3 Large-green\n\n29) nycavri: B R1 Nycavri\n\n30) Draw5PlayAll: Build B1 Large-green\n\n31) nycavri: S Y3 May\nMove R3 Deacon May\nM R3 May Large-green\nM R1 Nycavri Large-green\n\n32) Draw5PlayAll: Build Y2 Greenville\n\n33) nycavri: A B1 Large-green\n\n34) Draw5PlayAll: Discover Y2 Greenville B3 Bigocean\n\n35) nycavri: B Y3 May\n\tDraw5PlayAll: That was unexpected. *sigh* I guess I'll build an Ambassador-class ship in the Greenville system.\n\n36) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y3 Bigocean\n\n37) nycavri: B G1 Nycavri\n\n38) Draw5PlayAll: Sacrifice B1 Large-green\nTrade Y2 B2 Greenville\n\n39) nycavri: S G3 Nycavri\nB G1 Deacon\nB G1 Deacon\nB G3 Nycavri\n\n40) Draw5PlayAll: Move Y2 Draw5playall Greenville\n\n41) nycavri: B Y2 Deacon\n\n42) Draw5PlayAll: Discover Y2 Greenville R3 Dangerzone\n\tDraw5PlayAll: He was doomed anyway. Plus I get to have a stake in the blue economy\n\n43) nycavri: T G2 R2 Deacon\n\tnycavri: Factory is fully operational . . .\n\tDraw5PlayAll: This behavior will not be tolerated. Prepare for destruction on a planetary scale.\n\n44) Draw5PlayAll: Build G2 Draw5playall\n\n45) nycavri: S G3 Nycavri\nB G3 Nycavri\nB R1 Deacon\nB R2 Deacon\n\tDraw5PlayAll: Same effect, but now I have a stake in the blue economy.\n\n46) Draw5PlayAll: Build B1 Greenville\n\n47) nycavri: S Y2 Deacon\nDiscover R1 Deacon Y2 Mercury\nM R2 Deacon Mercury\n\n48) Draw5PlayAll: Move Y1 Firefly Dangerzone\n\n49) nycavri: S Y3 May\nMove R1 Large-green May\nM R1 Mercury Draw5playall\nM R2 Mercury Draw5playall\n\tDraw5PlayAll: I'm risking the so-called Bluebird Mistake in the hope of getting to build, trade, or move other ships soon.\n\n50) Draw5PlayAll: Sacrifice Y3 Bigocean\nMove Y2 Bigocean Nycavri\nMove Y2 Dangerzone Nycavri\nMove Y1 Dangerzone Nycavri\nCatastrophe Nycavri Yellow\n\n51) nycavri: S Y3 Deacon\nM G1 Nycavri Draw5playall\nM G3 Nycavri Draw5playall\nM R3 Large-green Nycavri\nC Draw5playall G\n\n\tDraw5PlayAll: We have successfully launched an invasion force to the base of those two mean attackers. Our long-range action technology used the Galaxy-class warp ship in BigOcean to move three suicide yellow ships into your homeworld. The energy from the ranged action system destroyed the four warp drive ships and your small yellow planet.\n\tnycavri: Thanks for the game, perhaps the favorite Homeworlds contest I have played. You mentioned Bluebird, then missed the fact that destroying my yellow world would give me direct access to your own Homeworld . . .\n\tDraw5PlayAll: Actually, I knew it too late. I was hoping you wouldn't realize it. I didn't have much else anyway. Oddly enough, your planned attack would NOT have connected our homeworlds.\n\tDraw5PlayAll: Interestingly enough, it moved my homeworld into the middle fray, as if it was simply another star system.\n\nHomeworlds Online (SDG# 29732)\nVariants: "Unrated"\nStarted: 2016.5.15, Ended: 2016.5.24\nParticipants: Draw5PlayAll (S), wil (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 29689)\nVariants: "Hard time"\nStarted: 2016.5.17, Ended: 2016.6.8\nParticipants: Simon (S), Felix (N)\nWinner: Simon\n\n1) Felix: Homeworld B1 Y3 G3\n\tFelix: Good luck and have fun :)\n\n2) Simon: Homeworld B2 R1 G3\n\tSimon: You too!\n\n3) Felix: Build G1 Felix\n\n4) Simon: Build G1 Simon\n\n5) Felix: Trade G1 B1 Felix\n\n6) Simon: Trade G1 B1 Simon\n\n7) Felix: Build B2 Felix\n\n8) Simon: Build G1 Simon\n\n9) Felix: Discover B2 Felix G2 Raven\n\n10) Simon: Trade G1 Y1 Simon\n\n11) Felix: Sacrifice G3 Felix\nBuild B2 Raven\nBuild B3 Raven\nBuild B3 Felix\n\n12) Simon: Build B3 Simon\n\n13) Felix: Trade B3 G3 Felix\n\n14) Simon: Trade B3 Y3 Simon\n\n15) Felix: Trade B2 Y2 Raven\n\n16) Simon: Discover Y3 Simon G3 G3\n\n17) Felix: Discover B2 Raven Y3 Albatross\n\n18) Simon: Move B1 Simon G3\n\n19) Felix: Build G1 Felix\n\n20) Simon: Build Y1 G3\n\n21) Felix: Discover B1 Felix Y2 Rim\n\n22) Simon: Trade Y1 R1 G3\n\n23) Felix: Trade G1 R1 Felix\n\n24) Simon: Build R2 G3\n\n25) Felix: Sacrifice G3 Felix\nBuild B2 Raven\nBuild B3 Albatross\nBuild B3 Rim\n\n26) Simon: Sacrifice Y3 G3\nMove G3 Simon Albatross\nMove G3 Albatross Raven\nMove G3 Raven Felix\n\n27) Felix: Sacrifice Y2 Raven\nMove B3 Raven Felix\nMove B3 Rim Felix\n\tFelix: I could have sworn I saw a way out of this before I made my last move. But now it's gone. I think I somehow thought I had a y3 available, which would have changed everything. I think I made a big mistake.Oops :)\n\n28) Simon: Sacrifice R2 G3\nAttack B3 Felix\nAttack B3 Felix\n\n29) Felix: Move B1 Rim Felix\nCatastrophe Felix Blue\n\tSimon: Flying in my y3 wouldn't have cut it either. If flying in the g3 didn't work, you'd have the huge advantage. :-)\n\tFelix: Oh... I thought *I* had a Y3. I anticipated you moving in the G3, and I was planning to move two of my ships back home and move one ship to your homeworld to take out your remaining small. Miscalculated. Well done!\n\n30) Simon: Sacrifice R1 G3\nAttack R1 Felix\n\tSimon: gg!\n\n\nHomeworlds Online (SDG# 29771)\nVariants: "Unrated"\nStarted: 2016.5.17, Ended: 2016.6.24\nParticipants: dijek (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y2 G3\n\tFelix: Hi! First game? Hope you have fun. Let me know if you have any questions.\n\n2) dijek: Homeworld G1 Y3 B3\n\tdijek: Yes, I thought this game looked interesting, although it seems fairly simple.\n\n3) Felix: Build G1 Felix\n\tdijek: Is there any limit to the number of systems, other than the size of the global stash?\n\tFelix: No limit. There can be as many as the global stash will allow!\n\n4) dijek: Build B1 Dijek\n\n5) Felix: Trade G1 B1 Felix\n\n6) dijek: Discover B1 Dijek R2 Galois\n\tFelix: The game seems fairly simple, but I assure you it is anything but. It becomes incredibly complex, and the strategy is very deep and takes many games to truly figure out. \n\tdijek: Yes, I only meant the rules seemed easy enough to understand. The strategy of easy to learn games is often quite fun and complex. :)\n\n7) Felix: Discover B1 Felix G1 Littlewood\n\tFelix: True! Yes, I think that's what makes a game great. Easy to understand rules, but depth of strategy. Hive is another favorite of mine for that reason.\n\n8) dijek: Build B1 Dijek\n\tdijek: I am not endangering Golois for next turn, I think, because although you could build a b2 in littlewood now, you could not yet move it.\n\tdijek: Oh, but you could attack even with the smallest ship size; it is greater than or equal to.\n\n9) Felix: Build B2 Littlewood\n\tFelix: Right. I can't move my ship there right now without a yellow. And even if I could move it there, I can't move and attack on the same turn, so you could just attack my ship as soon as it arrived. I would want to move a bigger ship into your system if I wanted to attack.\n\n10) dijek: Build B2 Dijek\n\tFelix: The early game is usually more focused on just building up your fleet as quickly as possible. Blue is a good color to go for at this point, as you can see I'm doing. And spreading your blue ships out to green planets is useful so you can keep building faster.\n\n11) Felix: Trade B1 Y1 Littlewood\n\n12) dijek: Discover B2 Dijek B2 Klein\n\n13) Felix: Build B1 Littlewood\n\n14) dijek: Trade B2 Y2 Klein\n\n15) Felix: Build Y1 Littlewood\n\n16) dijek: Build B2 Dijek\n\n17) Felix: D B1 Littlewood G2 Othlorien\n\n18) dijek: Move Y2 Klein Dijek\n\n19) Felix: B B2 Othlorien\n\n20) dijek: Move B2 Dijek Galois\n\n21) Felix: Build B3 Littlewood\n\n22) dijek: Build Y1 Dijek\n\n23) Felix: Trade B2 Y2 Othlorien\n\n24) dijek: Trade Y2 G2 Dijek\n\n25) Felix: Build G1 Felix\n\n26) dijek: Move G2 Dijek Galois\n\n27) Felix: Discover G1 Felix R1 Sapros\n\n28) dijek: Trade B3 G3 Dijek\n\n29) Felix: Build G2 Felix\n\n30) dijek: Build G3 Galois\n\n31) Felix: Build Y2 Othlorien\n\n32) dijek: Move Y1 Dijek Galois\n\n33) Felix: Sacrifice Y1 Littlewood\nMove G1 Sapros Othlorien\n\n34) dijek: Discover B2 Galois R1 Kowa\n\n35) Felix: Discover B2 Littlewood R2 Lavaflow\n\n36) dijek: Sacrifice G3 Galois\nBuild B2 Galois\nBuild B3 Kowa\nBuild G3 Galois\n\n37) Felix: Sacrifice G3 Felix\nBuild Y1 Othlorien\nBuild Y3 Littlewood\nBuild G3 Felix\n\n38) dijek: Build Y3 Galois\n\n39) Felix: Trade G2 R2 Felix\n\tFelix: Nice move!\n\n40) dijek: Sacrifice Y3 Galois\nMove Y1 Galois Kowa\nMove Y1 Kowa Othlorien\nPass\nCatastrophe Othlorien Yellow\n\tdijek: Oh no, you've got one of my stars...\n\tdijek: I can't stop it\n\n41) Felix: Sacrifice Y1 Littlewood\nMove G1 Othlorien Dijek\n\tFelix: I'm afraid I do :) Sorry...\n\tFelix: Except I can't get it yet.... if I did, it would leave me open to a counterattack by you that could take out all of my green and destroy me. So I must be patient...\n\n42) dijek: Trade G3 R3 Dijek\n\n43) Felix: Build G2 Dijek\n\tFelix: Ooh, nice one.\n\n44) dijek: Build R1 Dijek\n\tdijek: Are you supposed to be able to trigger a catastrophe during the middle of your turn? The rules here say the end, but those on the looney labs site say any time.\n\n45) Felix: Build G3 Dijek\nCatastrophe Dijek Green\n\tFelix: There's always been some confusion over that. You're right about the rule difference between here and Looney Labs. In my opinion, Looney Labs has the rules correct, and I play that way when I play real games, but yeah, unfortunately the implementation of the rules on here only allows you to catastrophe at the end of your turn. I wish it were different, as there have been opportunities where it could have been really handy!\n\n46) dijek: Trade R1 G1 Dijek\n\tdijek: I guess it would change the strategy, especially since it stops you from doing multiple catastrophes at once.\n\tdijek: I guess it would change the strategy, especially since it stops you from doing multiple catastrophes at once.\n\tdijek: Oh wow, this attack is really good\n\n47) Felix: Build G1 Felix\n\n48) dijek: Trade B1 Y1 Galois\n\tFelix: Thank you! Yeah, I hadn't thought about being able to do two catastrophes in one turn, but that would be awesome if you could pull it off!\n\n49) Felix: Sacrifice Y3 Littlewood\nMove G3 Felix Littlewood\nMove B3 Littlewood Dijek\nMove G3 Littlewood Dijek\n\n50) dijek: Attack B3 Dijek\n\n51) Felix: Sacrifice R2 Felix\nAttack R3 Dijek\nAttack B3 Dijek\n\n52) dijek: Sacrifice G3 Galois\nBuild G1 Dijek\nBuild B1 Dijek\nBuild G2 Galois\n\tFelix: I hope this works out.... scary stuff.\n\n53) Felix: Build G3 Dijek\nCatastrophe Dijek Green\n\n54) dijek: Trade B1 R1 Dijek\n\tdijek: So tense\n\tdijek: ugh I messed up\n\n55) Felix: Sacrifice R3 Dijek\nAttack B1 Dijek\nAttack R1 Dijek\nPass\n\n\tFelix: Good game! You played well and I hope you learned some stuff. Let's play again any time!\n\tdijek: Thank you! I had fun. I still think I'm a beginner, though.\n\tFelix: I got utterly destroyed the first 20 or so games I played on here, so don't be discouraged!\n\nHomeworlds Online (SDG# 29703)\nStarted: 2016.5.17, Ended: 2016.7.18\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: ts52\n\n1) Draw5PlayAll: Homeworld B2 R1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\tDraw5PlayAll: We have settled ourselves on a binary system with a blue and red star. Our large ship is geared for construction.\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tts52: :) Have a good game!\n\n4) ts52: Build G1 Ts52\n\tts52: Sorry about the delay.\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n6) ts52: Trade G1 R1 Ts52\n\tDraw5PlayAll: That was intentional, not a typo.\n\n7) Draw5PlayAll: Build R2 Draw5playall\n\tts52: How aggressive. Interesting.\n\n8) ts52: Build R2 Ts52\n\tDraw5PlayAll: That was a mistake. Hopefully everything is resolved.\n\n9) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\tts52: Things seem to be ok now. No worries. I'll try to keep up so I don't end up with negative time again. Thanks for being patient.\n\n10) ts52: Build G1 Ts52\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) ts52: Discover G1 Ts52 B1 Grover\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n14) ts52: B G1 Ts52\n\tDraw5PlayAll: I don't want to get frozen out of blue like I was in another game...\n\n15) Draw5PlayAll: Build Y1 Draw5playall\n\n16) ts52: T R2 Y2 Ts52\n\n17) Draw5PlayAll: Discover Y1 Draw5playall G3 Thirdgen\n\n18) ts52: Move Y2 Ts52 Grover\n\tDraw5PlayAll: ThirdGen is a pun: green three-pip => G3 => 3G => third generation\n\n19) Draw5PlayAll: Move R2 Draw5playall Thirdgen\n\tts52: :) I'm not sure how I started with muppets, but it's become a thing I think.\n\n20) ts52: Move R1 Ts52 Grover\n\tDraw5PlayAll: We received an order to create more warrior ships because aliens away from the direction of Polaris might potentially be hostile. In order to reduce the threat of civil war leading to catastrophe, we send the red to the ThirdGen planet to defend the Constellation ship there.\n\n21) Draw5PlayAll: Build B1 Draw5playall\n\tDraw5PlayAll: We are peacefully building another Constellation-class trading vessel in order to access more technologies.\n\n22) ts52: Build Y1 Grover\n\n23) Draw5PlayAll: Build Y2 Thirdgen\n\tts52: We are investing in new fusing drive technology to facilitate our exploratory nature.\n\tDraw5PlayAll: Interesting. I think I'll take the next Ambassador-class ship.\n\n24) ts52: Trade Y2 B2 Grover\n\n25) Draw5PlayAll: Move B1 Draw5playall Thirdgen\n\n26) ts52: Build Y2 Grover\n\tDraw5PlayAll: To reduce threats we have decided to transfer our small trading vessel over to our well-populated ThirdGen planet.\n\n27) Draw5PlayAll: Discover Y1 Thirdgen G1 Littleforest\n\n28) ts52: Discover B2 Grover G2 Oscar\n\n29) Draw5PlayAll: Build B3 Thirdgen\n\n30) ts52: Build B3 Oscar\n\n31) Draw5PlayAll: Trade B3 R3 Thirdgen\n\n32) ts52: Trade B3 Y3 Oscar\n\n33) Draw5PlayAll: Build B3 Thirdgen\n\n34) ts52: Build B3 Oscar\n\n35) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade B3 Y3 Thirdgen\n\n36) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n37) Draw5PlayAll: Build Y2 Littleforest\n\n38) ts52: Trade G2 R2 Grover\n\n39) Draw5PlayAll: Discover Y2 Thirdgen R1 Lavaflow\n\n40) ts52: Move B3 Oscar Lavaflow\n\n41) Draw5PlayAll: Sacrifice Y3 Thirdgen\nMove Y2 Lavaflow Ts52\nMove Y1 Littleforest Ts52\nMove Y2 Littleforest Ts52\nCatastrophe Ts52 Yellow\n\n42) ts52: Move Y2 Grover Ts52\n\n43) Draw5PlayAll: Trade R3 Y3 Thirdgen\n\tDraw5PlayAll: WARNING: You have only ONE COLOR AT YOUR HOMEWORLD!\n\n44) ts52: M R1 Grover Ts52\n\tts52: Thanks for the warning. Well done setting up the catastrophe.\n\n45) Draw5PlayAll: Build B1 Thirdgen\n\tDraw5PlayAll: South's ship Y2 was not sacrificed in the ts52 system. South did not move their R2 ship from Grover to ThirdGen. South did not move their R1 ship from Grover to ThirdGen. A catastrophe did not occur in the ThirdGen system. No attack (R) technology was lost.\n\n46) ts52: B B3 Oscar\n\n47) Draw5PlayAll: Move B1 Thirdgen Oscar\n\n48) ts52: Trade B3 R3 Oscar\n\n49) Draw5PlayAll: Build B3 Thirdgen\n\n50) ts52: Attack B1 Oscar\n\tDraw5PlayAll: I do not have time to plan this out. Will move later.\n\n51) Draw5PlayAll: Discover B3 Thirdgen G1 Port1\n\tDraw5PlayAll: In case you are wondering, the B1@oscar is mine, so the threat of sacrificing Y2@ts52 to explode my blues is gone.\n\n52) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild B3 Lavaflow\n\tts52: There's one solution to that problem. :)\n\n53) Draw5PlayAll: Trade B3 R3 Port1\n\tDraw5PlayAll: And there is a way to prevent you from doing that next move. True, I had access to ts52 from ThirdGen, but I had to evacuate. I chose the B1 because most of your fleet is at the wrong size\n\tDraw5PlayAll: Actually, no. I want a large there.\n\n54) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Oscar\nBuild R3 Grover\n\n55) Draw5PlayAll: Build B3 Thirdgen\n\tDraw5PlayAll: I thought I was winning!! Wow.\n\n56) ts52: Discover R3 Oscar Y3 Bigbird\n\tDraw5PlayAll: Trying this on for size...\n\tDraw5PlayAll: You can supernova the ThirdGen system, but it would cost you so much that it would not be worth it, and plus, you would lose your bind on the green economy\n\n57) Draw5PlayAll: Move B1 Thirdgen Lavaflow\n\n58) ts52: Sacrifice Y2 Ts52\nMove B3 Lavaflow Bigbird\nMove G2 Grover Bigbird\n\tDraw5PlayAll: You have WAY too many ships!!\n\n59) Draw5PlayAll: Build Y1 Thirdgen\n\n60) ts52: Attack B1 Lavaflow\n\n61) Draw5PlayAll: Build Y2 Draw5playall\n\n62) ts52: Build Y2 Grover\n\n63) Draw5PlayAll: Move Y1 Thirdgen Port1\n\n64) ts52: Move R2 Grover Bigbird\n\n65) Draw5PlayAll: Build Y2 Port1\n\n66) ts52: Move Y2 Grover Ts52\n\n67) Draw5PlayAll: Sac Y3 Thirdgen\nMove Y1 Port1 Bigbird\nMove Y1 Draw5playall Bigbird\nMove Y2 Port1 Bigbird\nCatastrophe Bigbird Yellow\n\n68) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild B3 Oscar\n\tDraw5PlayAll: There are zero ships in the global stash\n\n69) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: I do not know if this is worthwhile, but I am about to do a very interesting move\n\n70) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Oscar\nBuild R3 Grover\n\tDraw5PlayAll: Problem is, I lost too much yellow.\n\n71) Draw5PlayAll: Move Y1 Draw5playall Thirdgen\nPass\n\tts52: True enough. That may have hurt you more than it hurt me.\n\tDraw5PlayAll: Your factory. Ugh.\n\n72) ts52: Discover B3 Oscar Y3 Bigbird\n\n73) Draw5PlayAll: Move Y1 Thirdgen Port1\n\n74) ts52: Move R2 Oscar Bigbird\n\n75) Draw5PlayAll: Build Y1 Port1\n\tDraw5PlayAll: If we were on Hard Time, I would probably use the Page Admin just to freeze the timer...\n\n76) ts52: Discover R3 Grover Y3 Zoe\n\tts52: Thanks. Much appreciated. Just got back, making all my moves.\n\n77) Draw5PlayAll: Build Y2 Draw5playall\n\n78) ts52: Move R2 Oscar Bigbird\n\n\tDraw5PlayAll: You had the infamous Doomsday Machine, and there is no defense. Good game.\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 29784)\nStarted: 2016.5.19, Ended: 2016.6.1\nParticipants: Jaegernjos (S), doctorfedora (N)\nWinner: doctorfedora\n\n1) doctorfedora: Homeworld B1 G3 Y3\n\n2) Jaegernjos: Homeworld B3 G1 R3\n\tdoctorfedora: So feel free to ask if you have any questions about the rules. All commands can be abbreviated as just the first letter (e.g. I sent the command "h b1 g3 y3" for my homeworld instead of typing out "homeworld" as the command)\n\n3) doctorfedora: Build Y1 Doctorfedora\n\n4) Jaegernjos: B R1 Jaegernjos\n\n5) doctorfedora: Trade Y1 G1 Doctorfedora\n\n6) Jaegernjos: Trade R1 Y1 Jaegernjos\n\n7) doctorfedora: Discover G1 Doctorfedora G2 Middy\n\n8) Jaegernjos: Move R3 Jaegernjos Middy\n\n9) doctorfedora: Build Y1 Doctorfedora\n\n10) Jaegernjos: A G1 Middy\n\n11) doctorfedora: Trade Y3 R3 Doctorfedora\n\n12) Jaegernjos: B Y1 Jaegernjos\n\n13) doctorfedora: Build Y2 Doctorfedora\n\n14) Jaegernjos: Move Y1 Jaegernjos Middy\n\tJaegernjos: What is the command for discovering a new system? What do I put for the second system name?\n\n15) doctorfedora: Discover Y2 Doctorfedora B2 Sidey\n\n16) Jaegernjos: Build Y2 Jaegernjos\n\n17) doctorfedora: Move Y2 Sidey Jaegernjos\n\n18) Jaegernjos: Trade Y1 G1 Jaegernjos\n\n19) doctorfedora: Trade R3 G3 Doctorfedora\n\n20) Jaegernjos: Move R3 Middy Jaegernjos\n\tdoctorfedora: check\n\n21) doctorfedora: Discover Y2 Jaegernjos B2 Bluey\n\tdoctorfedora: wait, yeah, not-check after all, duh\n\n22) Jaegernjos: Discover G1 Middy Y1 Sideytoo\n\tJaegernjos: I'm just blindly moving things around; I still don't quite have a handle on this yet, lol. I'm starting to get a better understanding though, I think\n\n23) doctorfedora: Trade Y2 R2 Bluey\n\n24) Jaegernjos: Build G2 Sideytoo\n\n25) doctorfedora: Build Y2 Doctorfedora\n\n26) Jaegernjos: Move G2 Sideytoo Middy\n\n27) doctorfedora: Trade R2 G2 Bluey\n\n28) Jaegernjos: Trade G1 R1 Jaegernjos\n\n29) doctorfedora: T Y1 R1 Doctorfedora\n\n30) Jaegernjos: Move R1 Jaegernjos Middy\n\n31) doctorfedora: Build R1 Doctorfedora\n\n32) Jaegernjos: Build R2 Middy\n\n33) doctorfedora: Trade R1 Y1 Doctorfedora\n\n34) Jaegernjos: Build Y2 Middy\n\n35) doctorfedora: Move Y2 Doctorfedora Bluey\n\n36) Jaegernjos: Discover R2 Middy B1 Blueytoo\n\n37) doctorfedora: Sacrifice G2 Bluey\nBuild Y3 Bluey\nBuild Y3 Doctorfedora\n\n38) Jaegernjos: Sacrifice Y2 Jaegernjos\nMove Y2 Middy Doctorfedora\nMove Y1 Middy Doctorfedora\nCatastrophe Doctorfedora Y\n\n39) doctorfedora: Trade Y2 R2 Bluey\n\n40) Jaegernjos: Trade R2 Y2 Blueytoo\n\n41) doctorfedora: Sacrifice G3 Doctorfedora\nBuild R1 Bluey\nBuild R2 Bluey\nBuild R2 Doctorfedora\n\n42) Jaegernjos: Sacrifice Y2 Blueytoo\nMove R3 Jaegernjos Bluey\nMove G2 Middy Jaegernjos\nCatastrophe Bluey R\n\n43) doctorfedora: Move Y3 Bluey Jaegernjos\n\n44) Jaegernjos: Build R1 Middy\n\n45) doctorfedora: Sacrifice R2 Doctorfedora\nAttack G2 Jaegernjos\nPass\n\tdoctorfedora: Clever idea, but it's still checkmate, I believe.\n\n\tJaegernjos: Good game!\n\nHomeworlds Online (SDG# 29777)\nVariants: "Unrated, Sinister"\nStarted: 2016.5.19, Ended: 2016.6.13\nParticipants: Draw5PlayAll (S), Steele (N), Felix (E)\nWinner: Steele\n\n1) Steele: H B3 R1 G3\n\n2) Felix: Homeworld G3 Y2 B3\n\tFelix: So how does sinister work again? You have to try to destroy the player on your left?\n\n3) Draw5PlayAll: Homeworld B1 R2 G3 Invincible\n\tFelix: Have fun everyone :)\n\tDraw5PlayAll: Oh! My request was accepted and I get banker!\r\nFelix, THAT is a weird home world.\r\n\r\nSo I take it that:\r\nI must destroy Steele\r\nSteele must destroy Felix\r\nFelix must destroy me\r\n\r\nAnd we get 4 of each piece, how nice is that.\n\n4) Steele: B G1 Steele\n\n5) Felix: B B1 Felix\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: I suppose I should get my green going before I get frozen out of blue — knowing Felix, he'll probably do just that.\n\n7) Steele: T G1 Y1 Steele\n\n8) Felix: Discover B1 Felix G1 Colony\n\tFelix: Haha I'll do my best!\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: I want to do a GB home world with an R3 ship, as that gets me in the weapons economy from move one. Too bad I already picked for this game\n\n10) Steele: B Y1 Steele\n\n11) Felix: Build B1 Colony\n\tFelix: That's doable, but difficult. It's generally less useful to have weapons in the early game, and it can also cause problems to have green in your homeworld. It makes it more difficult to set up the "factory" in your homeworld. I chose green in my homeworld in this game to give myself a slight handicap since I have more experience than you two.\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) Steele: D Y1 Steele G2 Alpha\n\tDraw5PlayAll: So is the home-world that I have (ignoring the two Constellation ships) the optimal one? Or is it better to have yellow in your world so you can move from the start?\n\n14) Felix: Trade B1 Y1 Colony\n\tFelix: From my experience, the optimal starting homeworld is a small blue and medium yellow star, and a large green ship. It all comes down to preference though!\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) Steele: B Y2 Alpha\n\n17) Felix: Build B1 Colony\n\n18) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n19) Steele: Build Y1 Steele\n\n20) Felix: Trade B1 R1 Colony\n\n21) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n22) Steele: T Y1 R1 Steele\n\n23) Felix: Build R2 Colony\n\tDraw5PlayAll: No more blue freezing, Felix!\n\n24) Draw5PlayAll: Discover R1 Draw5playall G3 Bigwood\n\tFelix: That would be a lot harder to do with this many pieces in the pool!\n\n25) Steele: Discover Y1 Alpha G1 Beta\n\n26) Felix: Discover R2 Colony Y2 Ridgeline\n\tDraw5PlayAll: Sorry for stealing the planet name!\n\n27) Draw5PlayAll: Build R2 Bigwood\n\n28) Steele: S G3 Steele\nB Y1 Alpha\nB Y3 Steele\nB Y3 Beta\nPass\n\n29) Felix: Build Y3 Colony\n\n30) Draw5PlayAll: Build Y3 Draw5playall\n\n31) Steele: Trade Y1 B1 Steele\n\tDraw5PlayAll: Eek! The resources for creating movement ships are near nonexistent. We are forced to take the last share of that economy before it's too late and we freeze out of it.\n\n32) Felix: Build B2 Felix\n\n33) Draw5PlayAll: Move B1 Draw5playall Bigwood\n\tFelix: This got really hectic, really fast o.o\n\n34) Steele: M R1 Steele Alpha\n\tDraw5PlayAll: Our colony on Big Wood is in slight danger of catastrophe and so we are sending a Constellation-class trading vessel over to the planet.\n\n35) Felix: Move Y3 Colony Bigwood\n\tDraw5PlayAll: I did notice that all of us have *exactly* two large ships.\n\n36) Draw5PlayAll: Sacrifice B1 Bigwood\nTrade Y3 R3 Draw5playall\n\n37) Steele: M B1 Steele Alpha\n\n38) Felix: Sacrifice R2 Ridgeline\nAttack R2S Bigwood\nAttack R1S Bigwood\n\n39) Draw5PlayAll: Discover R3 Draw5playall G3 Inflation\n\tDraw5PlayAll: We couldn't let you have access to our precious ships in the BigWood system. And plus, we needed a Galaxy-class ship that had phasers. We decided to use our long-range action system to suicide the small blue.\n\n40) Steele: M B1 Alpha Beta\n\n41) Felix: Move Y3 Bigwood Alpha\n\tFelix: We are a warlike race, so I'm afraid it is in our nature to capture as many enemy ships as possible. It is just the way we are... please don't hold it against us! \n\n42) Draw5PlayAll: Build Y1 Draw5playall\n\n43) Steele: Build B1 Beta\n\n44) Felix: Sacrifice B1 Colony\nTrade Y3 B3 Alpha\n\tDraw5PlayAll: I was going to inflate my red economy, but I realized you could diplomatically send in small reds, one each, and explode my large and medium. Instead I'm interested in propulsion technology.\n\n45) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 Draw5playall\nCatastrophe Draw5playall Yellow\n\n46) Steele: Sacrifice Y2 Alpha\nMove B1 Beta Felix\nMove B1 Beta Felix\nCatastrophe Felix B\n\n\tDraw5PlayAll: Interestingly enough, my guy at Inflation did NOT disintegrate.\n\tFelix: Oh wow - definitely did not see that. Should have been more careful. It gets hectic with 3 players. Was fun though! Let's do it again some time. And well done Steele!\n\tSteele: You have taught me well :)\n\nHomeworlds Online (SDG# 29688)\nVariants: "Hard time"\nStarted: 2016.5.19, Ended: 2016.5.31\nParticipants: Steele (S), Felix (N)\nWinner: Steele\n\n1) Felix: Homeworld G3 B2 Y3\n\n2) Steele: H B3 R1 G3\n\tFelix: hello again. :) have fun!\n\n3) Felix: Build Y1 Felix\n\tSteele: Anything special I should know with the "hard time" variant?\n\tFelix: Oh. No, that just means that if you time out (don't make a move in 10 days or whatever the cap is) then the system will make you automatically surrender. I don't really like the setting and didn't realize I had it turned on!\n\n4) Steele: B G1 Steele\n\tSteele: Oh, no worries - I'll try not and make you wait 10 days between moves :)\n\n5) Felix: Trade Y1 G1 Felix\n\tFelix: Haha thanks :)\n\n6) Steele: T G1 Y1 Steele\n\n7) Felix: B Y1 Felix\n\n8) Steele: B G1 Steele\n\n9) Felix: D G1 Felix B1 Element\n\n10) Steele: B Y1 Steele\n\n11) Felix: Build Y2 Felix\n\n12) Steele: B Y2 Steele\n\n13) Felix: Move Y2 Felix Element\n\n14) Steele: S Y2 Steele\nD G1 Steele B2 Temp\nD G1 Temp B1 Alpha\nPass\n\n15) Felix: Build Y2 Element\n\n16) Steele: B G1 Alpha\n\tFelix: That was an interesting move. I've never seen someone jump directly to a star close to my homeworld like that. Most people build up their feet at a star closer to their own home first. I like your idea though!\n\n17) Felix: Build G2 Element\n\tSteele: Seeing what happens if I put you back on your heals a bit ;)\n\n18) Steele: D Y1 Steele G2 Beta\n\tFelix: I"m all for thinking out of the box and being unpredictable :)\n\n19) Felix: Discover G2 Element G3 Investment\n\n20) Steele: B Y2 Beta\n\n21) Felix: Discover Y2 Element B2 Rigor\n\n22) Steele: M Y1 Beta Alpha\n\n23) Felix: Build Y3 Element\n\n24) Steele: B Y3 Alpha\n\n25) Felix: Build G2 Element\n\n26) Steele: Sacrifice Y2 Beta\nMove Y1 Alpha Felix\nMove Y3 Alpha Felix\nCatastrophe Felix Y\n\n\tFelix: Wow. I did not see that at all. Very well done!!! \n\tSteele: My rush tactic worked this time, I don't expect it to work again in the future though... at least not against you :)\n\nHomeworlds Online (SDG# 29723)\nVariants: "Hard time"\nStarted: 2016.5.19, Ended: 2016.8.12\nParticipants: Felix (S), MagicJohn (W), sompm (N), dijek (E)\nWinner: Felix\n\n1) sompm: Homeworld Y1 G2 B3\n\n2) dijek: Homeworld Y3 B1 G3\n\n3) Felix: Homeworld R2 B3 G3\n\tFelix: No idea how well this will work, but have fun everyone!\n\n4) MagicJohn: Homeworld Y1 B3 G3\n\n5) sompm: Build B1 Sompm\n\tsompm: From what little experience I have; it will take us a while, but I think we knew that already. Good luck, all!\n\tsompm: From what little experience I have; it will take us a while, but I think we knew that already. Good luck, all!\n\tsompm: Hmm; that's not a new glitch.\n\n6) dijek: Build G1 Dijek\n\n7) Felix: B G1 Felix\n\tMagicJohn: Can't we all just get along?\n\tFelix: I don't mind a drawn out game. :)\n\n8) MagicJohn: Build G1 Magicjohn\n\n9) sompm: Trade B1 G1 Sompm\n\n10) dijek: Trade G1 B1 Dijek\n\n11) Felix: Trade G1 Y1 Felix\n\n12) MagicJohn: Trade G1 R1 Magicjohn\n\tFelix: We have detected aliens out there, so we are retrofitting one of our construction vessels with a warp drive. To do so, we are forced to remove the construction facilities aboard. We hope to explore the surrounding planets soon and see if any of these other life forms are peaceful.\n\tMagicJohn: Aliens?? Out there?? Where?? No Way!!! We believe/know that we are the center of the universe and all that dead space "out there" revolves around us. \n\n13) sompm: Build B1 Sompm\n\n14) dijek: Build B1 Dijek\n\tsompm: "Sir, the meat has discovered warp drive."\r\n"They WHAT? How do they control their ships?"\r\n"They build pistons and variable resistors and push them around with meat. Alternatively they use sensitive gold films and electromagnets to record and interpret their meat sounds."\r\n"Oh dear. We told everyone there was nobody here because they wouldn't believe our stories. Are we comfortable with the introduction of meat-based life forms to the galactic community?"\r\n"I'm not sure, sir, but we need to decide quickly or we're going to have an inefficient little Von Neumann meat farm on our hands."\n\n15) Felix: Build Y1 Felix\n\tMagicJohn: Com Officer: "Sir Magic, we have indeed intercepted communications from space, and there is some indication that there are multiple alien life forms in our sector. We must somehow protect ourselves from the alien presence and from a populace that may no longer accept our current line of dogmatic "Center of the Universe" BS. We must formulate a plan.."\r\n S.M.: "Contact Agent Orange."\n\tFelix: *Squishy meat sounds*\r\nTranslation: Sir, detecting the presence of weapons technology in a nearby sector. Suggest developing our own meat missiles to defend ourselves from threat.\n\n16) MagicJohn: Build G1 Magicjohn\n\n17) sompm: Discover B1 Sompm G3 Halc\n\tMagicJohn: Agent Orange: "Assemble the council. Advise immediate discontinuation of clandestine population control measures that limit Trog population.... May soon need cannon fodder."\n\n18) dijek: Build G1 Dijek\n\tsompm: Dateline: an untended base in an empty sector of the outer dark regions. Unregistered materialization that set the network abuzz, conspiracy theories gaining some footing today when a transformation pod made a system-leap, consuming relatively huge amounts of energy to get from one empty, worthless system to another supposedly empty, worthless system. Speculation abounds, some saying that an industry deep-scanner found an unexpected reserve of underground ice or helium atmosphere; aqueous water and resource scans had already ruled the sector out for physical exploration. Might this be good for the local economy, or will foreign exporters exploit the rim worlds again? Stay tuned to 15/3, your source for fourth-arm section-five local news. Up next: is exposure to too much cuteness bad for athletic performance? Find out after these messages.\n\n19) Felix: Trade Y1 B1 Felix\n\n20) MagicJohn: Build R1 Magicjohn\n\n21) sompm: Build B2 Sompm\n\n22) dijek: Trade B1 R1 Dijek\n\n23) Felix: Build Y1 Felix\n\n24) MagicJohn: Discover R1 Magicjohn Y2 Pie\n\n25) sompm: Build G1 Sompm\n\n26) dijek: Discover G1 Dijek Y2 Pi\n\n27) Felix: Trade Y1 R1 Felix\n\n28) MagicJohn: Discover R1 Pie Y3 Cookies\n\tMagicJohn: Sorry about yet another time delay but Sara (wife) had a TIA and we spent the weekend and Monday in the hospital.\n\n29) sompm: Trade B2 R2 Sompm\n\n30) dijek: Trade B1 Y1 Dijek\n\n31) Felix: Build G1 Felix\n\tFelix: No worries! I don't mind a delay. I'm so sorry you had to spend the weekend in the hospital! Everyone is okay, I hope?\n\n32) MagicJohn: Discover G1 Magicjohn Y2 Kaline\n\n33) sompm: Discover G1 Sompm Y3 Milk\n\n34) dijek: Build G2 Pi\n\n35) Felix: Discover G1 Felix B1 Ouster\n\n36) MagicJohn: Build G2 Kaline\n\n37) sompm: Build G2 Sompm\n\n38) dijek: Move G1 Pi Dijek\n\n39) Felix: Build B1 Felix\n\n40) MagicJohn: Build G2 Magicjohn\n\n41) sompm: Build G3 Milk\n\n42) dijek: Discover G2 Pi B3 Omicron\n\n43) Felix: Discover B1 Felix Y1 Chance\n\tsompm: Gah. Forgot I was south and saw my own ship as a catastrophe threat, than didn't see the sacrifice-build-build move available. Now is not the time of sleep cycle to be making important decisions.\n\tdijek: Sorry, I was away from the computer for a couple of days.\n\n44) MagicJohn: Trade G2 Y2 Magicjohn\n\n45) sompm: Sacrifice G2 Sompm\nBuild B2 Sompm\nBuild B2 Halc\n\n46) dijek: Build G2 Omicron\n\n47) Felix: Build G2 Ouster\n\n48) MagicJohn: Sacrifice G2 Kaline\nBuild R1 Cookies\nBuild G2 Kaline\n\n49) sompm: Trade B2 Y2 Halc\n\n50) dijek: Trade G2 B2 Omicron\n\n51) Felix: Build G2 Felix\n\n52) MagicJohn: Build R2 Magicjohn\n\n53) sompm: Sacrifice G3 Milk\nBuild G3 Milk\nBuild B2 Halc\nBuild Y2 Halc\n\n54) dijek: Build R2 Dijek\n\n55) Felix: Trade G2 Y2 Ouster\n\n56) MagicJohn: Discover G2 Kaline B3 Colavito\n\n57) sompm: Sacrifice G3 Milk\nBuild G2 Sompm\nBuild G3 Milk\nBuild Y3 Halc\n\n58) dijek: Discover Y1 Dijek B2 Krow\n\n59) Felix: Sacrifice G3 Felix\nBuild Y3 Ouster\nBuild G3 Felix\nBuild B2 Chance\n\n60) MagicJohn: Sacrifice Y2 Magicjohn\nMove G2 Colavito Sompm\nMove R1 Magicjohn Kaline\nCatastrophe Sompm Green\n\n61) sompm: Sacrifice Y2 Halc\nMove B3 Sompm Kaline\nMove G3 Milk Krow\n\n62) Felix: Move B2 Chance Cookies\n\n63) MagicJohn: Move G1 Kaline Dijek\n\tDraw5PlayAll: So many planets!\n\n64) sompm: Move B3 Kaline Dijek\n\tDraw5PlayAll: Wow! That was... weird. Now we have a bunch of sleeper ships that people will want to attack, sompm is left in a horrible shape, and not a single R3 exists on the board in any form at all.\r\n\r\nWow.\n\n65) Felix: Sacrifice G2 Felix\nBuild B3 Chance\nBuild G1 Felix\n\n66) MagicJohn: Build G2 Magicjohn\n\n67) sompm: Sacrifice R2 Sompm\nAttack G3E Dijek\nAttack R2E Dijek\n\tsompm: Eeyep. Y'all are welcome to keep me in this game for as long or as short as you want, I'll try to survive, but there's not much I can do right now that a well-placed R3 can't fix.\n\tDraw5PlayAll: [Comment withheld due to Prime Directive]\n\n68) Felix: Trade Y2 R2 Ouster\n\tDraw5PlayAll: [Comment with help due to Prime Directive]\n\tDraw5PlayAll: *withheld\n\n69) MagicJohn: Sacrifice G3 Magicjohn\nBuild R2 Kaline\nBuild R3 Magicjohn\nBuild G2 Magicjohn\n\n70) sompm: Sacrifice R2 Dijek\nAttack G1W Dijek\nAttack Y1E Krow\n\n71) Felix: Move B2 Cookies Sompm\n\n72) MagicJohn: Move R2 Kaline Halc\n\n73) sompm: Sacrifice Y2 Halc\nMove Y3 Halc Sompm\nMove B2 Halc Krow\n\tsompm: Don't mind me, just securing my ride home.\n\n74) Felix: Trade B2 Y2 Sompm\n\tDraw5PlayAll: [Comment withheld due to Prime Directive]\n\n75) MagicJohn: Sacrifice G2 Magicjohn\nBuild R2 Halc\nBuild R3 Kaline\n\n76) sompm: Sacrifice Y3 Sompm\nMove G3 Dijek Kaline\nDiscover B3 Dijek G2 Goodotglee8ebm\nMove B3 Goodotglee8ebm Sompm\n\n77) Felix: Sacrifice G3 Felix\nBuild R3 Ouster\nBuild R3 Felix\nBuild G2 Ouster\n\n78) MagicJohn: Attack G3N Kaline\n\tsompm: Bah. If I had one more yellow ship outside of my home planet I could prevent the build-catastrophe by running us out of yellow, but alas, it is not to be. Thanks for the game.\n\n79) sompm: Sacrifice G3 Krow\nBuild Y2 Krow\nBuild Y2 Krow\nBuild G2 Milk\n\tsompm: Heh.\n\n80) Felix: Sacrifice G2 Ouster\nBuild Y2 Ouster\nBuild Y3 Sompm\n\tFelix: Not yet, but soon...\n\n81) MagicJohn: Move R3 Kaline Omicron\n\n82) sompm: Trade B3 R3 Sompm\n\tsompm: No? Well, nuts to this death thing, then!\n\n83) Felix: S R2 Ouster\nA R3N Sompm\nA B2N Sompm\n\n84) Felix: Pass\n\n85) MagicJohn: Move R2 Magicjohn Krow\n\tDraw5PlayAll: July 21: "not a single R3 exists on the board in any form at all."\r\nNow: All of the five R3 tokens are ships.\r\n\r\nSO many planets!\n\n86) Felix: Move R3 Sompm Krow\n\tFelix: And there it is. Sorry mate!\n\n87) MagicJohn: Move R1 Cookies Krow\n\tFelix: Odd. The game gave me two turns in a row. Glitch?\n\tDraw5PlayAll: Eleven planets. This will be quite a conclusion. Go {[(USERNAME)]}!\n\n88) Felix: Sacrifice R3 Ouster\nAttack Y2N Krow\nAttack Y2N Krow\nAttack R2W Krow\n\n89) MagicJohn: Move R1 Cookies Krow\nCatastrophe Krow Red\n\n90) Felix: Sacrifice Y3 Ouster\nMove Y2 Krow Magicjohn\nMove Y2 Krow Magicjohn\nMove Y2 Sompm Krow\n\n91) MagicJohn: Trade R3 Y3 Omicron\n\n92) Felix: Move Y2 Krow Magicjohn\nCatastrophe Magicjohn Yellow\n\n93) MagicJohn: Sacrifice Y3 Omicron\nMove R2 Halc Sompm\nMove R2 Sompm Felix\nMove R2 Halc Krow\nCatastrophe Felix Red\n\n94) Felix: Sacrifice Y3 Sompm\nMove B2 Sompm Magicjohn\nMove B1 Chance Magicjohn\nMove B3 Chance Magicjohn\nCatastrophe Magicjohn Blue\n\n\tFelix: Good game!\n\tMagicJohn: Felix,\r\nSorry about the "spite check" but I had to whack you once before I joined Spock, Scotty and Bones in the great vortex in the sky. Good Game!\n\tDraw5PlayAll: What vortex? Where is Kirk?\n\tDraw5PlayAll: And what happened to all the R3s again?\n\tsompm: Thanks for the game, y'all!\n\tFelix: John,\r\nQuite understandable. I'd have done the same :)\n\tDraw5PlayAll: I believe this game was from when Felix said "Never tried a 4P game before. Who's up?" or something in the challenge description.\r\n\r\nWhat did you all think of the four-player setup?\n\tFelix: A bit chaotic, but I enjoyed it. Definitely entertaining, but perhaps less strategic.\n\tDraw5PlayAll: Well, in the two 4P games I have seen, someone has time forfeited.\n\tsompm: It felt like it needed a bit more active politics to make a whole lot of sense. Normally in a Homeworlds game I make quite certain to be immune to whatever my opponent could do in a single turn. With three adversaries, so much can change in one round, it's not worth considering every permutation. Also, if the rest of the group wanted you gone, they might very well be able to do so before you had a turn to safeguard against it. With a little more table-talk we might get alliances and betrayals and a little more ability to make "unsafe" moves without worry.\n\tMagicJohn: I agree with the Sommer. Communication should probably be limited to open comments (written in the game comment window)so all would have opportunities to "negotiate" and propose alternative scenarios. I considered a number of moves in the last game that would have relied on some "help" from the next player but did not feel right about leaving "hints" in the dialogue between plays. I would like to try a more political game. I suspect that anyone that cannot stand a little well-meant betrayal should take a pass but are any of you thick-skinned commanders up for another game?\n\tDraw5PlayAll: I wish we had a 2v2 mode where opposite seats are partners. You can do this unofficially but it is so easy to break the alliance.\n\tsompm: Ooh, I would play that. We would have to use house rules, run it as an unrated game so we can declare an alternate victory than SDG will recognize. Not sure if we would want to do SW/NE or NS/WE to allow or prevent teams getting two turns in a row.\n\tDraw5PlayAll: I said "opposite seats", implying that teams will not get two turns in a row.\r\n\r\nMagicJohn proposed a challenge for 4P which I entered, but I am not 100% sure about what he means by "politics". I do not want to debate about You-Know-Who and You-Know-As-Well.\r\n\r\nWe could even custom-implement Good/Evil rules as long as a fifth person monitors the game.\r\n\r\nPartners should choose identical homeworld configurations (e.g. both goldilocks, both banker, etc). This is so they can send resources to each other more easily.\r\n\r\nMain problem is that players 1 and 3 can gang up on player 4, and then after 4 dies, 2 is an easy target. Though maybe 2 could send extra resources and cause some catastrophes, so it evens out.\r\n\r\nBut it becomes nearly impossible to do the factory since you have TWO opponents who could each sac a Y2 and send a G1 to blow up the overpopulation.\n\tMagicJohn: Maybe the "rules" could be altered to forestall immediate attacks on #4. Maybe no invasions for X number of turns...\n\tDraw5PlayAll: P4 can simply not connect his homeworld to the opposition and then get help from 2 in stopping the attack.\r\n\r\n1,4 vs 2,3 seems fairer in this regard but then you have a team making 2 consecutive turns.\n\tMagicJohn: But after the first move both teams would move in consecutive turns..... might work?....\n\tDraw5PlayAll: So to recap:\r\n1,3 vs 2,4.\r\nAdvantages: team members do not get to make 2 consecutive turns.\r\nDisadvantages: player 4 is an easy target for attack.\r\n1,4 vs 2,3.\r\nAdvantages: Balances number of turns.\r\nDisadvantages: after the first move, teams get 2 turns in a row.\r\n\r\nHonestly, I think we should have a vote. I vote for 1,3 vs 2,4.\n\nHomeworlds Online (SDG# 29782)\nVariants: "Unrated"\nStarted: 2016.5.23, Ended: 2016.6.28\nParticipants: haymire (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 R2 G3\n\thaymire: Hello mate, this is my first game of Homeworlds, I will learn as I play.\n\thaymire: Hello mate, this is my first game of Homeworlds, I will learn as I play.\n\tFelix: Welcome! I hope you have fun. I hope you learn a lot too, and don't hesitate to ask me if you have any questions!\n\n2) haymire: Homeworld R3 B1 G3\n\thaymire: Having a bit of trouble with inputting my commands, errors keep popping up.\r\nI want my Homeworld to be R3, B1, with a ship G3. What do I need to type?\n\n3) Felix: Build G1 Felix\n\tFelix: Oops, sorry. It didn't notify me of your message so I didn't see it till now. Looks like you figured it out though! It can take bit of trial and error to figure out the command inputs. You can also just type the first letter of your command. So you could type "H R3 B1 G3" instead of "Homeworld R3 B1 G3." Same goes for other commands like build.\n\tFelix: Oops, sorry. It didn't notify me of your message so I didn't see it till now. Looks like you figured it out though! It can take bit of trial and error to figure out the command inputs. You can also just type the first letter of your command. So you could type "H R3 B1 G3" instead of "Homeworld R3 B1 G3." Same goes for other commands like build.\n\n4) haymire: Build G1 Haymire\n\n5) Felix: Trade G1 Y1 Felix\n\n6) haymire: Trade G1 Y1 Haymire\n\n7) Felix: Build G1 Felix\n\n8) haymire: Build G1 Haymire\n\n9) Felix: Trade G1 B1 Felix\n\n10) haymire: Discover G1 Haymire Y2 Mt Cheese\n\n11) Felix: Build B1 Felix\n\n12) haymire: Build G1 Haymire\n\tFelix: If there's only small left of a particular color that you don't have yet, it's best to try to trade for it if possible. Otherwise it becomes more difficult to get that color. For instance, I just took the last small blue, and you have no medium ships to trade for blue currently, so you either must wait until you have a medium, or you must trade your large for blue, neither of which is an ideal situation.\n\thaymire: Okay, I thought the build action was any colour of a ship or the star system its at.\n\n13) Felix: Discover B1 Felix G1 Orchid\n\tFelix: Ah, no. That's a mistake I made early on, too. You must actually control a ship of a color in order to build that color, I'm afraid.\n\n14) haymire: Build G2 Haymire\n\n15) Felix: Build B2 Orchid\n\n16) haymire: Trade G2 B2 Haymire\n\n17) Felix: Build G2 Felix\n\n18) haymire: Sacrifice G3 Haymire\nBuild G2 Mt\nBuild G2 Mt\nBuild G3 Haymire\n\n19) Felix: Build G3 Felix\n\n20) haymire: Trade G3 Y3 Haymire\n\n21) Felix: Trade G2 R2 Felix\n\n22) haymire: Move G2 Mt Orchid\n\n23) Felix: Move R2 Felix Orchid\n\n24) haymire: Sacrifice Y3 Haymire\nMove G2 Orchid Felix\nMove G2 Mt Orchid\nMove G2 Orchid Felix\nCatastrophe Felix Green\n\n25) Felix: Trade B2 Y2 Orchid\n\n26) haymire: Build G2 Haymire\n\n27) Felix: Move R2 Orchid Mt\n\tFelix: Woah. No more larges!\n\n28) haymire: Trade G2 R2 Haymire\n\n29) Felix: Attack G1 Mt\n\n30) haymire: Build G2 Haymire\n\n31) Felix: Build B2 Orchid\n\n32) haymire: Discover G1 Haymire Y2 Cheese\n\n33) Felix: Move B2 Orchid Mt\n\n34) haymire: Build G2 Cheese\n\n35) Felix: Build B2 Mt\n\n36) haymire: Sacrifice G2 Cheese\nBuild Y1 Haymire\nBuild Y3 Haymire\n\n37) Felix: Build Y3 Orchid\n\n38) haymire: Sacrifice Y3 Haymire\nMove Y1 Haymire Mt\nMove Y1 Haymire Mt\nMove G1 Cheese Orchid\n\n39) Felix: Sacrifice Y2 Orchid\nMove Y3 Orchid Mt\nMove Y3 Mt Haymire\n\n40) haymire: Sacrifice G1 Orchid\nBuild Y2 Mt\nCatastrophe Mt Yellow\n\n41) Felix: Build B2 Orchid\n\tFelix: Man, your play style is fun to play against :) Very loose and aggressive. Most players are super cautious and don't make sacrifices very often until late in the game. This is fun, but risky!\n\n42) haymire: Build G1 Haymire\n\n43) Felix: Trade B2 R2 Orchid\n\n44) haymire: Trade G1 Y1 Haymire\n\n45) Felix: Build B2 Orchid\n\n46) haymire: Discover R2 Haymire Y2 Moonhead\n\n47) Felix: Sacrifice R2 Orchid\nAttack G2 Haymire\nAttack B2 Haymire\n\n48) haymire: Move R2 Moonhead Haymire\n\n49) Felix: Attack R2 Haymire\n\n50) haymire: Trade Y1 G1 Haymire\n\n51) Felix: Attack G1 Haymire\n\n\tFelix: Good game! You had me worried for a minute. Very well played. I'd love to play again any time!\n\thaymire: 'ANNIHILATION OF ALL OPPOSITION' lol that's nice, it was only my first game. \r\nYeah that was fun, could do a re-match.\r\nAny advice for me to improve?\n\thaymire: 'ANNIHILATION OF ALL OPPOSITION' lol that's nice, it was only my first game. \r\nYeah that was fun, could do a re-match.\r\nAny advice for me to improve?\n\thaymire: Good game, well played\n\tFelix: Hmm... I'll try to provide tips as I think of them in our second game. Just try to diversify your colors as much as possible. Try not to get locked out of any color, and try not to have more than 2 of a color in any system, if possible, at least not for more than a turn and only if you know you'll be safe that turn. Also, it feels good to be aggressive and try to cause a catastrophe any time it's possible, but it can also leave you vulnerable to a counterattack, which is what happened here. Sometimes it's wiser to build up your forces first and wait to attack until you're sure you can finish the opponent off. Finally, you might have a bit more luck if you start with the "banker" formation for your home world. A small and medium of yellow and blue with a large green ship is generally considered the best starting set up for beginners.\n\nHomeworlds Online (SDG# 29797)\nStarted: 2016.5.26, Ended: 2016.9.6\nParticipants: Felix (S), zakmagnus (N)\nWinner: zakmagnus\n\n1) zakmagnus: Homeworld B3 G2 Y3\n\n2) Felix: Homeworld B1 G3 R3\n\tFelix: Welcome! First game?\n\n3) zakmagnus: Build Y1 Zakmagnus\n\n4) Felix: Build R1 Felix\n\n5) zakmagnus: Discover Y1 Zakmagnus Y1 Submarine\n\n6) Felix: Trade R1 Y1 Felix\n\n7) zakmagnus: Build Y2 Zakmagnus\n\n8) Felix: Build Y2 Felix\n\tzakmagnus: First online game.\n\tFelix: I hope you have fun. Let me know if you have any questions!\n\n9) zakmagnus: Trade Y2 R2 Zakmagnus\n\n10) Felix: Discover Y2 Felix G2 Rykan\n\n11) zakmagnus: Move R2 Zakmagnus Submarine\n\n12) Felix: Build R1 Felix\n\n13) zakmagnus: Build Y2 Zakmagnus\n\n14) Felix: Build Y2 Rykan\n\n15) zakmagnus: Trade Y2 R2 Zakmagnus\n\n16) Felix: Discover Y2 Rykan G1 Issichar\n\n17) zakmagnus: Discover Y1 Submarine G3 Lush\n\n18) Felix: Build Y2 Felix\n\n19) zakmagnus: Build Y3 Zakmagnus\n\n20) Felix: Build Y3 Issichar\n\n21) zakmagnus: Discover Y3 Zakmagnus B1 Bill\n\n22) Felix: Trade Y1 B1 Felix\n\n23) zakmagnus: Trade Y3 G3 Bill\n\n24) Felix: Build B2 Felix\n\n25) zakmagnus: Build G1 Bill\n\n26) Felix: Trade B2 G2 Felix\n\n27) zakmagnus: Move Y1 Lush Bill\n\n28) Felix: Discover G2 Felix B2 Still\n\n29) zakmagnus: Sacrifice G3 Bill\nBuild G1 Bill\nBuild G3 Bill\nBuild R1 Zakmagnus\n\n30) Felix: Build G3 Still\n\n31) zakmagnus: Sacrifice G3 Bill\nBuild G3 Bill\nBuild Y1 Zakmagnus\nBuild Y3 Bill\n\n32) Felix: Build B2 Felix\n\n33) zakmagnus: Sacrifice Y3 Bill\nMove G1 Bill Still\nMove G1 Bill Still\nDiscover R2 Submarine B3 Thumb\nCatastrophe Still Green\n\n34) Felix: Move B1 Felix Rykan\n\n35) zakmagnus: Build G1 Bill\n\tzakmagnus: build g1 bill\n\n36) Felix: Build B2 Rykan\n\tzakmagnus: Sorry for the delay.\n\tFelix: Not a problem!\n\n37) zakmagnus: Trade R2 G2 Thumb\n\n38) Felix: Build B2 Felix\n\n39) zakmagnus: Sacrifice G3 Bill\nBuild G1 Thumb\nBuild G3 Bill\nBuild G3 Bill\n\n40) Felix: Build B3 Rykan\n\n41) zakmagnus: Sacrifice G3 Bill\nBuild G3 Thumb\nBuild Y1 Bill\nBuild Y3 Bill\n\n42) Felix: Move Y2 Rykan Bill\nCatastrophe Bill Yellow\n\tFelix: Well we're overpowered :)\n\n43) zakmagnus: Move Y1 Zakmagnus Bill\n\n44) Felix: Build Y1 Felix\n\n45) zakmagnus: Sacrifice G3 Bill\nBuild G3 Bill\nBuild Y1 Zakmagnus\nBuild Y2 Bill\n\n46) Felix: Trade B3 Y3 Rykan\n\n47) zakmagnus: Move Y1 Bill Thumb\n\n48) Felix: Build B3 Rykan\n\n49) zakmagnus: Sacrifice Y2 Bill\nMove Y1 Thumb Issichar\nMove Y1 Zakmagnus Issichar\nCatastrophe Issichar Yellow\n\n50) Felix: Trade R1 G1 Felix\n\n51) zakmagnus: Trade G2 Y2 Thumb\n\n52) Felix: Discover Y2 Felix G2 Opus\n\n53) zakmagnus: Sacrifice G3 Bill\nBuild G3 Bill\nBuild Y1 Zakmagnus\nBuild Y1 Thumb\n\n54) Felix: Build Y2 Rykan\n\n55) zakmagnus: Sacrifice G3 Bill\nBuild G3 Bill\nBuild Y3 Zakmagnus\nBuild R1 Zakmagnus\n\n56) Felix: Sacrifice Y2 Rykan\nMove Y2 Opus Bill\nMove Y2 Bill Zakmagnus\nCatastrophe Zakmagnus Yellow\n\n57) zakmagnus: Sacrifice Y1 Thumb\nMove G3 Bill Zakmagnus\n\n58) Felix: Build R1 Felix\n\n59) zakmagnus: Trade R1 Y1 Zakmagnus\n\n60) Felix: D B2 Rykan Y1 Onyx\n\n61) zakmagnus: Sacrifice G3 Thumb\nBuild G2 Bill\nBuild G3 Thumb\nBuild Y2 Zakmagnus\n\n62) Felix: Move B3 Rykan Bill\n\n63) zakmagnus: Sacrifice G2 Bill\nBuild Y2 Thumb\nBuild Y3 Thumb\n\n64) Felix: Build Y3 Felix\n\n65) zakmagnus: Move G3 Thumb Onyx\n\n66) Felix: Move B2 Onyx Rykan\n\n67) zakmagnus: Sacrifice G1 Bill\nBuild G1 Onyx\n\n68) Felix: Discover G1 Felix R2 Ledge\n\n69) zakmagnus: Build G2 Thumb\n\n70) Felix: Move R1 Felix Rykan\n\n71) zakmagnus: Move R1 Zakmagnus Onyx\n\n72) Felix: Sacrifice Y1 Felix\nDiscover B2 Rykan Y1 Entry\n\n73) zakmagnus: Sacrifice G3 Onyx\nBuild G3 Onyx\nBuild R1 Zakmagnus\nBuild R2 Onyx\n\n74) Felix: Build R3 Rykan\n\n75) zakmagnus: Build R3 Zakmagnus\n\n76) Felix: Move B2 Entry Zakmagnus\n\n77) zakmagnus: Attack B2 Zakmagnus\n\tzakmagnus: This means war!\n\n78) Felix: Sacrifice Y3 Rykan\nMove B3 Bill Zakmagnus\nMove B1 Rykan Onyx\nMove B1 Onyx Zakmagnus\nCatastrophe Zakmagnus Blue\n\n79) zakmagnus: Move G3 Onyx Ledge\n\tFelix: Retaliation!\n\n80) Felix: Sacrifice G1 Ledge\nBuild Y1 Felix\n\n81) zakmagnus: Sacrifice Y2 Thumb\nMove Y2 Zakmagnus Felix\nMove Y1 Zakmagnus Felix\nCatastrophe Felix Yellow\n\n82) Felix: Trade B2 Y2 Felix\n\n83) zakmagnus: Sacrifice G3 Ledge\nBuild G1 Zakmagnus\nBuild G3 Onyx\nBuild Y1 Thumb\n\n84) Felix: Build R2 Felix\n\n85) zakmagnus: Sacrifice Y2 Thumb\nMove R1 Zakmagnus Felix\nMove R2 Zakmagnus Felix\nCatastrophe Felix Red\n\n86) Felix: Sacrifice Y2 Felix\nMove R3 Rykan Felix\nMove R1 Rykan Felix\n\n87) zakmagnus: Sacrifice Y3 Thumb\nMove R1 Onyx Zakmagnus\nMove R1 Zakmagnus Felix\nMove R3 Zakmagnus Felix\nCatastrophe Felix Red\n\n88) Felix: Build B1 Felix\n\tFelix: Ooh, nicely done.\n\n89) zakmagnus: Sacrifice Y1 Thumb\nMove G3 Zakmagnus Felix\n\n90) Felix: Build B1 Felix\n\n91) zakmagnus: Sacrifice G2 Thumb\nBuild G2 Felix\nBuild G2 Felix\nCatastrophe Felix Green\nCatastrophe Felix Blue\n\tFelix: Nice work and good game!\n\tzakmagnus: Good game. You've been a brutal opponent.\n\tFelix: Thanks! You definitely got me fair and square. I try to play well even against newer players so you can learn, and you definitely have improved.\n\tFelix: If love to rematch any time\n\n\nHomeworlds Online (SDG# 29776)\nVariants: "Hard time"\nStarted: 2016.5.28, Ended: 2016.6.23\nParticipants: Draw5PlayAll (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B2 R1 G3\n\n2) Draw5PlayAll: Homeworld B3 R2 G3\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n7) Simon: Build Y1 Simon\n\tDraw5PlayAll: These games are too predictable at the start. I'm going to try something different this time.\r\n\r\nAs we prepared for our expedition, an announcement from a parallel universe came in. The message, when decrypted, reads:\r\n"Learn your lesson: do not lose control of the traders economy. We failed at this and had to evacuate when an opposing alien race, whose leader was named Felix, destroyed our planet."\r\n\r\nWe're changing the Constellation ship to a trader ship for this reason.\n\n8) Draw5PlayAll: Build B1 Draw5playall\n\n9) Simon: Discover Y1 Simon G3 G3\n\tDraw5PlayAll: We have taken the risk of creating another Constellation-class trading vessel. We will need to diversify our economy before a disaster happens.\n\n10) Draw5PlayAll: Trade B1 Y1 Draw5playall\n\n11) Simon: Build Y2 G3\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\n13) Simon: Discover Y1 G3 B2 B2\n\n14) Draw5PlayAll: Discover Y2 Draw5playall G1 Constructbase\n\n15) Simon: Sacrifice G3 Simon\nBuild Y2 G3\nBuild Y3 B2\nBuild Y3 Simon\n\n16) Draw5PlayAll: Build Y3 Constructbase\n\n17) Simon: Trade Y1 G1 Simon\n\tDraw5PlayAll: Every ship you have is yellow. You should start trading them or else I will Bluebird Assault you.\n\n18) Draw5PlayAll: Move B1 Draw5playall Constructbase\n\n19) Simon: Trade Y1 R1 B2\n\n20) Draw5PlayAll: Trade Y3 R3 Constructbase\n\n21) Simon: Move Y2 G3 B2\n\tDraw5PlayAll: Yeah, I realized I don't need weapons. I think I'd rather own more trading vessels. I just don't like doing it at a homeworld containing blue.\n\n22) Draw5PlayAll: Build B1 Constructbase\n\n23) Simon: Trade Y2 G2 B2\n\n24) Draw5PlayAll: Build G1 Draw5playall\n\n25) Simon: Build G2 B2\n\n26) Draw5PlayAll: Build R1 Constructbase\n\n27) Simon: Build R2 B2\n\n28) Draw5PlayAll: Discover B1 Constructbase G3 Thegreen\n\n29) Simon: Move G2 B2 Thegreen\n\n30) Draw5PlayAll: Build B1 Constructbase\n\n31) Simon: Sacrifice R1 B2\nAttack B1 Thegreen\n\n32) Draw5PlayAll: Move G1 Draw5playall Constructbase\n\n33) Simon: Sacrifice Y2 G3\nMove G2 B2 Constructbase\nMove G2 Thegreen Constructbase\nCatastrophe Constructbase G\n\n34) Draw5PlayAll: Build Y1 Draw5playall\n\n35) Simon: Build B1 Thegreen\n\n36) Draw5PlayAll: Discover Y1 Draw5playall G1 Constructbase2\n\tDraw5PlayAll: What the... wow. That was a sweeping change.I think I'm going to attempt to cover the most important economy.\n\n37) Simon: Trade B1 Y1 Thegreen\n\tSimon: yeah >_> Other than for this, you had a rock-solid position.\n\n38) Draw5PlayAll: Build Y2 Constructbase2\n\n39) Simon: Build Y2 Thegreen\n\n40) Draw5PlayAll: Build G1 Draw5playall\n\n41) Simon: Build G2 Simon\n\tDraw5PlayAll: You're allowed to just demolish a ship, right? Sacrifice it and pass...\n\tSimon: Yeah. Everything is optional. You can pass the regular one action, or sac a ship and pass all actions.\n\n42) Draw5PlayAll: Discover Y2 Constructbase2 B3 Bigocean\n\n43) Simon: Sacrifice G2 Simon\nBuild Y2 Thegreen\nBuild Y3 B2\n\n44) Draw5PlayAll: Move Y1 Constructbase2 Thegreen\nCatastrophe Thegreen Yellow\n\n45) Simon: Trade Y3 G3 B2\n\n46) Draw5PlayAll: Discover G1 Draw5playall R1 Lavaflow\n\n47) Simon: Build R1 B2\n\tDraw5PlayAll: Revenge!!\n\n48) Draw5PlayAll: Trade Y2 G2 Bigocean\n\n49) Simon: Discover R2 B2 G1 G1\n\n50) Draw5PlayAll: Build G2 Bigocean\n\n51) Simon: Build G2 B2\n\n52) Draw5PlayAll: Trade G2 Y2 Bigocean\n\n53) Simon: Sacrifice G3 B2\nBuild R2 G1\nBuild R3 G1\nBuild R3 B2\n\n54) Draw5PlayAll: Build G2 Lavaflow\n\n55) Simon: Sacrifice Y3 Simon\nMove Y3 B2 G1\nMove Y3 G1 Draw5playall\nMove R3 G1 Draw5playall\n\n56) Draw5PlayAll: Attack R3N Draw5playall\n\n57) Simon: Sacrifice R3 B2\nAttack R3 Draw5playall\nAttack G3 Draw5playall\nAttack Y1 Draw5playall\n\n\tSimon: wil has called this you-take-one-I-take-three. Nonetheless, a solid opening. gg, always happy to rematch.\n\tDraw5PlayAll: I could have delayed defeat by moving my guys from LavaFlow into Draw5PlayAll but it was pointless.\r\n\r\nThis is my (I think) 4th 1v1 game I have finished, and my 4th loss.\n\tDraw5PlayAll: I wonder something.\r\nSuppose we were fighting and you had no other reds, and we kept going back and forth attacking the ships for eternity.\r\nI would likely rule the ship in question destroyed, and force one player to evacuate the star. Or let it be a draw. Of course, this requires both people to not have any better moves.\n\tSimon: The game lacks a ko rule, you can repeat positions as often as you want. I consider this a hole in the rules. The implementation here doesn't recognize repetition, we'd have to notify an admin.\r\n\r\nSurprisingly, I haven't had a game with repetition yet. They feel like they come up often, but happen rarely in practice.\r\n\r\nTeach the game to a friend in real life!\n\tDraw5PlayAll: Although if both players agreed they had nothing better then they could agree to a draw. It is no different from perpetual check in Earth Chess, except that Earth Chess has rules for that sort of thing.\n\nHomeworlds Online (SDG# 29836)\nVariants: "Unrated"\nStarted: 2016.5.29, Ended: 2016.6.17\nParticipants: Draw5PlayAll (S), Steele (N)\nWinner: Steele\n\n1) Steele: H B2 G1 Y3\n\n2) Draw5PlayAll: Homeworld R2 B3 G3\n\n3) Steele: B Y1 Steele\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Steele: B Y1 Steele\n\n6) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n7) Steele: Trade Y1 G1 Steele\n\tDraw5PlayAll: As we had no need for too much construction, we decided to trade the construction capabilities in our Constellation ship for more trading abilities.\n\n8) Draw5PlayAll: Build B1 Draw5playall\n\tDraw5PlayAll: Welp, I think I'm safe for now. I'm going to continue building Constellation-class trading vessels.\r\n\r\n--\r\n\r\nI have terminology for ships:\r\nSmall = Constellation class\r\nMedium = Ambassador class\r\nLarge = Galaxy class\n\n9) Steele: Discover Y1 Steele G3 Alpha\n\tSteele: I like it.\n\n10) Draw5PlayAll: Trade B1 R1 Draw5playall\n\n11) Steele: B Y1 Alpha\n\tDraw5PlayAll: We decided that it would be best to proceed to control all economies before embarking on a journey.\n\n12) Draw5PlayAll: Build R1 Draw5playall\n\n13) Steele: Trade G1 R1 Steele\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\n15) Steele: Build R2 Steele\n\n16) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n17) Steele: T R1 B1 Steele\n\n18) Draw5PlayAll: Build Y2 Draw5playall\n\n19) Steele: Move B1 Steele Alpha\n\n20) Draw5PlayAll: Discover B1 Draw5playall G1 Littlewood\n\n21) Steele: B Y2 Steele\n\n22) Draw5PlayAll: Build G2 Draw5playall\n\n23) Steele: T Y1 R1 Alpha\n\n24) Draw5PlayAll: Discover G2 Draw5playall B1 Traderpool\n\n25) Steele: B R1 Alpha\n\n26) Draw5PlayAll: Build G2 Traderpool\n\n27) Steele: Discover R1 Alpha Y1 Beta\n\n28) Draw5PlayAll: Build B2 Littlewood\n\n29) Steele: B R2 Alpha\n\tDraw5PlayAll: The next system I discover in this game will be called Fluxx, no matter what star it is.\n\n30) Draw5PlayAll: Move R1 Draw5playall Littlewood\n\n31) Steele: T R2 G2 Alpha\n\n32) Draw5PlayAll: Build R2 Littlewood\n\n33) Steele: B R3 Alpha\n\n34) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover R2 Littlewood G3 Fluxx\n\n35) Steele: Move G2 Alpha Beta\n\tDraw5PlayAll: I did that for a reason — not just to have one with that name.\n\n36) Draw5PlayAll: Build R3 Fluxx\n\n37) Steele: B R3 Beta\n\n38) Draw5PlayAll: Trade B2 Y2 Littlewood\n\n39) Steele: Move R3 Alpha Traderpool\n\tDraw5PlayAll: You CAN destroy my red home star in two moves... but you'd have to give up your LARGE yellow to do it.\n\tDraw5PlayAll: Oh, and your large RED! Is it really worth it?\r\n\r\nBy the way, I refuse to move in our me-you-Felix game because you're just going to win.\n\n40) Draw5PlayAll: Sacrifice Y2 Littlewood\nDiscover G2 Traderpool Y3 Port1\nDiscover G2 Traderpool Y3 Port2\n\tSteele: Nah - going for your red star doesn't really help just yet. Soon though :)\n\n41) Steele: B B2 Alpha\n\tDraw5PlayAll: No. You are not taking my Ambassador-class construction vessels from me!!\n\n42) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild G1 Port2\n\n43) Steele: Move B1 Alpha Beta\n\tDraw5PlayAll: Green Teleportation!\n\tSteele: Take your turn in the other game.\n\n44) Draw5PlayAll: Build Y1 Draw5playall\n\n45) Steele: Sacrifice G2 Beta\nBuild Y2 Alpha\nBuild B2 Beta\nPass\n\n46) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G1 Port2 Steele\nMove G2 Port2 Steele\n\n47) Steele: S Y2 Alpha\nM B2 Alpha Beta\nM B2 Beta Draw5playall\nPass\n\tDraw5PlayAll: Looks like I got the first strike\n\n48) Draw5PlayAll: Build G2 Steele\nCatastrophe Steele Green\n\n49) Steele: S Y2 Steele\nM B2 Beta Draw5playall\nM B1 Beta Draw5playall\nC Draw5playall B\n\tDraw5PlayAll: Since you made no effort to clear the attackers and they were green, they decided to build a new ship to cause the catastrophe.\r\n\r\nHowever, it appears that you will win by a one-move margin. The only way I could stop you is to hammer you with reds but I'd need 2-3 turns to do anything useful.\n\n50) Draw5PlayAll: Build Y2 Draw5playall\n\tSteele: Yeah - my green star had to be sacrificed in order to follow through with my original plan. Good game though!\n\n51) Steele: S Y3 Steele\nMove R1 Beta Draw5playall\nMove R3 Beta Draw5playall\nMove R3 Traderpool Draw5playall\nC Draw5playall R\n\tDraw5PlayAll: Good game! I somehow always end up moves behind my opponents. Like, if given just a few more moves, I could win.\n\n\nHomeworlds Online (SDG# 29834)\nVariants: "Hard time"\nStarted: 2016.5.31, Ended: 2016.6.21\nParticipants: Simon (S), zeder (N)\nWinner: Simon\n\n1) zeder: Homeworld G3 B1 Y3\n\n2) Simon: Homeworld B2 R1 G3\n\tSimon: Hi, have fun!\n\n3) zeder: Build Y1 Zeder\n\n4) Simon: Build G1 Simon\n\n5) zeder: Trade Y1 G1 Zeder\n\n6) Simon: Trade G1 B1 Simon\n\n7) zeder: Trade Y3 B3 Zeder\n\n8) Simon: Build G1 Simon\n\n9) zeder: Trade G1 Y1 Zeder\n\n10) Simon: Trade G1 Y1 Simon\n\n11) zeder: Build Y1 Zeder\n\tzeder: I am already feelings uncomfortable. :(\n\n12) Simon: Build Y2 Simon\n\n13) zeder: Build Y2 Zeder\n\tSimon: Slow openings are normal in non-yellow homeworlds\n\n14) Simon: Discover Y2 Simon G3 G3\n\tzeder: This game am so confusing!\n\n15) zeder: Trade Y1 G1 Zeder\n\n16) Simon: Move B1 Simon G3\n\n17) zeder: Discover Y1 Zeder G2 Aaa\n\n18) Simon: Build G1 Simon\n\n19) zeder: Trade G1 R1 Zeder\n\n20) Simon: Build B1 G3\n\n\nHomeworlds Online (SDG# 29809)\nVariants: "Unrated"\nStarted: 2016.6.1, Ended: 2016.7.6\nParticipants: Felix (S), AcetyleneLamp (N)\nWinner: Felix\n\n1) AcetyleneLamp: Homeworld B1 Y2 G3\n\tAcetyleneLamp: I can't get the names of the systems to show up.\n\n2) Felix: Homeworld B3 Y2 G3\n\tAcetyleneLamp: Nevermind\n\tFelix: It takes some figuring out. The language for submitting orders is a bit finicky, but just play around and you'll get it. Is this your first game? Hope you have fun and let me know if you have questions!\n\n3) AcetyleneLamp: Build G1 Acetylenelamp\n\tAcetyleneLamp: I attempted to play this before and asked for some help in figuring it out and I had to just give up because I never got a reply (The one time I attempted to play Zendo went similarly as well). I decided to give this another chance after watching the video about how to play Homeworlds that Looney Labs put on YouTube and that cleared up things a little.\n\n4) Felix: Build G1 Felix\n\tAcetyleneLamp: I'm hoping the new version of SDG that's in the works will have a less fiddly/confusing input system for games, I think that would improve this site a lot.\n\tFelix: I hope so too! And sorry you never got a response before. I'm happy to help you figure the game out, since it's really a great game! You're off to a great start with your choice of piece sizes and colors. In my opinion, the homeworld colors/sizes and the large green ship you have are the best starting combination.\n\tFelix: When you're entering orders, it helps to abbreviate the words. Rather than saying "built g1 felix" I just type "b g1 felix" and the system will take that. Each command can be shortened to its first letter like that. The names of systems must be typed out fully though.\n\n5) AcetyleneLamp: Trade G1 Y1 Acetylenelamp\n\n6) Felix: Trade G1 B1 Felix\n\n7) AcetyleneLamp: Discover Y1 Acetylenelamp R3 Giedi_prime\n\n8) Felix: Discover B1 Felix G1 Rygar\n\n9) AcetyleneLamp: Build G1 Acetylenelamp\n\n10) Felix: Build G1 Felix\n\n11) AcetyleneLamp: Move G1 Acetylenelamp Giedi_prime\n\n12) Felix: Build B1 Rygar\n\n13) AcetyleneLamp: Build G2 Acetylenelamp\n\n14) Felix: Build B2 Rygar\n\n15) AcetyleneLamp: Trade G2 R2 Acetylenelamp\n\n16) Felix: Trade B2 R2 Rygar\n\n17) AcetyleneLamp: Build R1 Acetylenelamp\n\n18) Felix: Build B2 Rygar\n\n19) AcetyleneLamp: Move R1 Acetylenelamp Giedi_prime\n\n20) Felix: Trade B2 Y2 Rygar\n\n21) AcetyleneLamp: Build G2 Acetylenelamp\n\n22) Felix: Build B2 Rygar\n\n23) AcetyleneLamp: Trade G2 B2 Acetylenelamp\n\n24) Felix: Discover B2 Rygar G3 Rappa\n\n25) AcetyleneLamp: Move R2 Acetylenelamp Rappa\n\n26) Felix: Sacrifice R2 Rygar\nAttack R2 Rappa\nPass\n\n27) AcetyleneLamp: Build B2 Acetylenelamp\n\n28) Felix: Build B3 Rappa\n\n29) AcetyleneLamp: Trade B2 R2 Acetylenelamp\n\n30) Felix: Trade B3 Y3 Rappa\n\n31) AcetyleneLamp: Discover Y1 Giedi_prime B2 Corneria\n\n32) Felix: Build B3 Rappa\n\n33) AcetyleneLamp: Build B3 Acetylenelamp\n\n34) Felix: Move B2 Rappa Acetylenelamp\nCatastrophe Acetylenelamp Blue\n\n35) AcetyleneLamp: Build G2 Acetylenelamp\n\n36) Felix: Build Y1 Rygar\n\tFelix: Oopsie. Watch out for that overpopulation threat!\n\tAcetyleneLamp: I'm confused as to how that happened, I thought it had to be four or more pieces of the same color in one system for a catastrophe.\n\tAcetyleneLamp: Oh, wait, you moved a blue ship in and caused it.\n\n37) AcetyleneLamp: Build G2 Giedi_prime\n\tFelix: Yeah. Any time you build three ships of the same color in a system, you should make sure that there's no way your opponent can get a fourth ship in there to cause a catastrophe.\n\n38) Felix: Build Y1 Rappa\n\n39) AcetyleneLamp: Move Y1 Corneria Giedi_prime\n\n40) Felix: Sacrifice Y3 Rappa\nMove Y1 Rappa Acetylenelamp\nMove Y2 Rygar Acetylenelamp\nMove Y1 Rygar Acetylenelamp\nCatastrophe Acetylenelamp Yellow\n\n\tFelix: Good game! I hope you had fun and learned some things. I'd be happy to rematch any time you want to!\n\nHomeworlds Online (SDG# 29863)\nStarted: 2016.6.6, Ended: 2016.6.21\nParticipants: Steele (S), ladybugsfly (N)\nWinner: Steele\n\n1) ladybugsfly: H R2 G1 B3\n\n2) Steele: Homeworld Y3 B2 G3\n\n3) ladybugsfly: B B1 Ladybugsfly\n\n4) Steele: Build G1 Steele\n\tladybugsfly: I won't admit how long it took me to realize my home system's name was my username. 0:-)\n\n5) ladybugsfly: Build B1 Ladybugsfly\n\tSteele: lol - I love you <3\n\n6) Steele: Build G1 Steele\n\n7) ladybugsfly: Trade B1 Y1 Ladybugsfly\n\n8) Steele: Discover G1 Steele Y1 Yourecute\n\n9) ladybugsfly: Discover B1 Ladybugsfly G3 Loveyoutoo\n\tladybugsfly: d b1 ladybugsfly g3 loveyoutoo\n\tladybugsfly: Haha, whoops! Wrong box.\n\n10) Steele: B G2 Yourecute\n\n11) ladybugsfly: Discover Y1 Ladybugsfly G3 Shouldbeworking\n\n12) Steele: Sacrifice G3 Steele\nBuild G2 Steele\nBuild G2 Yourecute\nBuild G3 Steele\nPass\n\n13) ladybugsfly: Build Y1 Shouldbeworking\n\n14) Steele: Discover G2 Yourecute Y3 Kisses\n\n15) ladybugsfly: Build Y2 Shouldbeworking\n\n16) Steele: T G1 B1 Steele\n\n17) ladybugsfly: Move Y1 Shouldbeworking Yourecute\n\n18) Steele: Trade B1 R1 Steele\n\n19) ladybugsfly: Sacrifice Y1 Yourecute\nDiscover B1 Loveyoutoo G1 Happy\n\n20) Steele: T G2 B2 Steele\n\n21) ladybugsfly: Build B1 Happy\n\n22) Steele: M B2 Steele Yourecute\n\n23) ladybugsfly: Build B1 Happy\n\n24) Steele: T G1 Y1 Yourecute\n\n25) ladybugsfly: Trade B1 R1 Happy\n\n26) Steele: B G1 Yourecute\n\n27) ladybugsfly: Move Y1 Shouldbeworking Yourecute\n\n28) Steele: D Y1 Yourecute G3 Nicetry\n\n29) ladybugsfly: Sacrifice R1 Happy\nAttack G1S Yourecute\nPass\n\n30) Steele: M B2 Yourecute Kisses\n\n31) ladybugsfly: Sacrifice Y2 Shouldbeworking\nMove B1 Happy Steele\nMove B1 Happy Steele\nPass\n\n32) Steele: Sacrifice G2 Kisses\nBuild Y2 Nicetry\nBuild R1 Steele\nPass\n\n33) ladybugsfly: Sacrifice G1 Yourecute\nBuild B1 Steele\nCatastrophe Steele B\n\n34) Steele: B R1 Steele\n\n35) ladybugsfly: Build B1 Ladybugsfly\n\n36) Steele: S Y2 Nicetry\nMove R1 Steele Ladybugsfly\nMove R1 Steele Ladybugsfly\nPass\n\n37) ladybugsfly: Discover Y1 Yourecute G2 Runforestrun\n\n38) Steele: S B2 Kisses\nT R1 B1 Ladybugsfly\nT R1 B1 Ladybugsfly\nC Ladybugsfly B\n\n\tSteele: Even though I'm going to destroy all your ships, just know I love you still and you are always welcome to ride around on my ships <3\n\nHomeworlds Online (SDG# 29870)\nVariants: "Hard time"\nStarted: 2016.6.8, Ended: 2016.8.7\nParticipants: sompm (S), Remneb (N)\nWinner: sompm\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) sompm: Homeworld Y3 B1 G3\n\n3) Remneb: Build G1 Remneb\n\n4) sompm: Build G1 Sompm\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) sompm: Trade G1 Y1 Sompm\n\n7) Remneb: Build G1 Remneb\n\n8) sompm: Discover Y1 Sompm G2 Fruitbat\n\n9) Remneb: Discover G1 Remneb Y3 Ninbo\n\n10) sompm: Build G1 Sompm\n\n11) Remneb: Discover G1 Ninbo Y2 Alba\n\n12) sompm: Trade G1 R1 Sompm\n\n13) Remneb: Build G1 Remneb\n\n14) sompm: Build R1 Sompm\n\n15) Remneb: Build Y1 Remneb\n\n16) sompm: Build Y2 Fruitbat\n\n17) Remneb: Discover Y1 Remneb G3 Mora\n\n18) sompm: Discover Y1 Fruitbat B3 Jesse\n\n19) Remneb: Sacrifice G3 Remneb\nBuild Y2 Mora\nBuild Y3 Remneb\nBuild G1 Remneb\n\n20) sompm:\nBuild G2 Sompm\n\n21) Remneb: Discover G1 Remneb Y3 Harum\n\n22) sompm: Discover G2 Sompm B2 Nodule\n\n23) Remneb: Discover Y2 Mora R2 Orion\n\n24) sompm: Move R1 Sompm Alba\n\n25) Remneb: Move G1 Alba Jesse\n\n26) sompm: Sacrifice R1 Alba\nAttack G1 Jesse\n\n27) Remneb: Build Y2 Mora\n\n28) sompm: Sacrifice G3 Sompm\nBuild G2 Nodule\nBuild G3 Jesse\nBuild R1 Sompm\n\n29) Remneb: Build G3 Harum\n\n30) sompm: Sacrifice Y2 Fruitbat\nMove G3 Jesse Orion\nMove G2 Nodule Harum\n\n31) Remneb: Sacrifice Y2 Orion\nMove G3 Harum Orion\nMove G3 Orion Sompm\n\n32) sompm: Sacrifice Y1 Jesse\nMove G3 Orion Sompm\n\n33) Remneb: Move G3 Sompm Nodule\n\n34) sompm: Build G2 Sompm\n\n35) Remneb: Trade G3 R3 Nodule\n\n36) sompm: Sacrifice G2 Nodule\nBuild G2 Harum\nBuild G3 Jesse\n\n37) Remneb: Sacrifice Y1 Mora\nMove R3 Nodule Harum\n\n38) sompm: Discover R1 Sompm Y2 Disco\n\n39) Remneb: Attack G2 Harum\n\n40) sompm: Sacrifice G2 Sompm\nBuild G2 Harum\nBuild R2 Disco\nCatastrophe Harum G\n\n41) Remneb: Build G1 Remneb\n\n42) sompm: Discover R2 Disco B3 Ranch\n\n43) Remneb: Move G1 Remneb Mora\n\n44) sompm: Build G2 Sompm\n\n45) Remneb: Build G2 Remneb\n\n46) sompm: Sacrifice G2 Sompm\nBuild G2 Sompm\nBuild R2 Ranch\n\n47) Remneb: Move G1 Remneb Harum\n\n48) sompm: Trade G1 Y1 Jesse\n\n49) Remneb: Build G1 Remneb\n\n50) sompm: Sacrifice G3 Sompm\nBuild G2 Jesse\nBuild Y1 Jesse\nBuild G3 Sompm\n\n51) Remneb: Build Y2 Mora\n\n52) sompm: Move R1 Disco Mora\n\n53) Remneb: Discover G1 Mora Y2 Zek\n\n54) sompm: Build R2 Mora\n\n55) Remneb: Sacrifice Y3 Remneb\nMove G1 Harum Zek\nMove G1 Zek Sompm\nMove G1 Zek Sompm\nCatastrophe Sompm G\n\n56) sompm: Sacrifice G2 Jesse\nBuild R3 Sompm\nBuild R3 Mora\n\n57) Remneb: Sacrifice Y2 Mora\nMove R3 Harum Remneb\nMove Y2 Mora Remneb\n\n58) sompm: Sacrifice Y1 Jesse\nMove R2 Mora Remneb\n\n59) Remneb: Trade R3 B3 Remneb\n\n60) sompm: Sacrifice R3 Mora\nAttack G2N Remneb\nAttack G1N Remneb\nAttack Y2N Remneb\n\n61) Remneb: Attack R2 Remneb\n\n62) sompm: Sacrifice Y2 Remneb\nMove R1 Mora Remneb\nMove R2 Ranch Remneb\nCatastrophe Remneb R\n\n63) Remneb: Trade B3 R3 Remneb\n\n64) sompm: Sacrifice G2 Remneb\nBuild G1 Remneb\nBuild Y1 Jesse\n\n65) Remneb: Attack G1 Remneb\n\n66) sompm: Build G1 Remneb\n\n67) Remneb: Attack G1 Remneb\n\n68) sompm: Build G2 Remneb\nCatastrophe Remneb G\n\n69) Remneb: Trade Y1 G1 Remneb\n\n70) sompm: Trade Y1 B1 Jesse\n\n71) Remneb: Build G1 Remneb\n\tsompm: This is definitely one of the more feel-bad moments in this game, but it's a one-step hop from you to me now and my home planet is not exactly diverse at the moment.\n\n72) sompm: Build B1 Jesse\n\tRemneb: It is a difficult part in the game. I really don't know what to do in my position.Try to survive is my only task here.\n\n73) Remneb: Trade G1 Y1 Remneb\n\tsompm: In other games, this would be the part where I really sit back and consider the possibilities in depth and try to really leverage my advantage as hard as possible. Unfortunately, my brain just can't seem to hold all the options at once to go any further than one or two turns deep. I'm pretty sure I have one of two or three primary paths to take and make sure that you don't counter them or sneak an attack while I'm winding up, but man do I not know what that should look like.\n\n74) sompm: Trade R2 B2 Ranch\n\n75) Remneb: Build G1 Remneb\n\n76) sompm: Trade R3 Y3 Sompm\n\n\tsompm: Whoops! That would have been a lethal typo. Anyhow, thanks for the game!\n\tRemneb: Thanks for the game.\n\nHomeworlds Online (SDG# 29769)\nStarted: 2016.6.10, Ended: 2016.6.10\nParticipants: Vilci (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 29884)\nVariants: "Hard time"\nStarted: 2016.6.12, Ended: 2016.7.19\nParticipants: endo (S), Simon (N)\nWinner: endo\n\n1) Simon: Homeworld B1 Y2 G3\n\tSimon: have fun!\n\n2) endo: Homeworld Y1 B3 G3\n\n3) Simon: Build G1 Simon\n\tendo: Glhf!\n\n4) endo: Build G1 Endo\n\n5) Simon: Trade G1 B1 Simon\n\n6) endo: Trade G1 Y1 Endo\n\n7) Simon: Build B1 Simon\n\n8) endo: Build Y1 Endo\n\n9) Simon: Discover B1 Simon G3 G3\n\n10) endo: Discover Y1 Endo Y2 Measure\n\n11) Simon: Build B2 Simon\n\n12) endo: Build Y2 Endo\n\n13) Simon: Discover B2 Simon Y3 Y3\n\n14) endo: Discover Y1 Endo G2 Topology\n\n15) Simon: Build B2 G3\n\n16) endo: Build Y3 Endo\n\n17) Simon: Sacrifice G3 Simon\nBuild B2 Y3\nBuild B3 Y3\nBuild B3 Simon\n\n18) endo: Trade Y3 R3 Endo\n\n19) Simon: Trade B3 R3 Y3\n\n20) endo: Sacrifice G3 Endo\nBuild Y3 Measure\nBuild Y3 Topology\nBuild R1 Endo\n\n21) Simon: Build B3 G3\n\n22) endo: Trade R3 G3 Endo\n\n23) Simon: Trade B3 G3 Simon\n\n24) endo: Discover Y3 Topology B3 Matroid\n\n25) Simon: Build G1 Simon\n\n26) endo: Build R1 Endo\n\n27) Simon: Trade B2 R2 G3\n\n28) endo: Move R1 Endo Measure\n\n29) Simon: Build B2 G3\n\n30) endo: Build R1 Endo\n\n31) Simon: Move G1 Simon Y3\n\n32) endo: Build G1 Endo\n\n33) Simon: Build G1 Simon\n\n34) endo: Discover R1 Endo R2 Manifold\n\n35) Simon: Build G2 Y3\n\n36) endo: Sacrifice G3 Endo\nBuild R2 Endo\nBuild R3 Endo\nBuild R3 Measure\n\n37) Simon: Move G2 Y3 Manifold\n\n38) endo: Discover Y1 Measure G3 Filter\n\n39) Simon: Build G2 Y3\n\n40) endo: Move Y3 Measure Filter\n\n41) Simon: Attack R1 Manifold\n\n42) endo: Move Y3 Filter Manifold\n\n43) Simon: Move G2 Y3 Topology\n\n44) endo: Sacrifice R2 Endo\nAttack G2 Manifold\nAttack R1 Manifold\n\n45) Simon: Sacrifice R2 G3\nAttack Y1 Topology\nPass\n\n46) endo: Move Y3 Matroid Simon\n\n\tSimon: gg\n\nHomeworlds Online (SDG# 29770)\nVariants: "Unrated"\nStarted: 2016.6.15, Ended: 2016.6.19\nParticipants: Skully (S), wil (N)\nWinner: Skully\n\n\tSkully: Well this sucked! Thanx alot will! \r\n\n\tSkully: Well this sucked! Thanx alot will! \r\n\n\nHomeworlds Online (SDG# 29902)\nStarted: 2016.6.19, Ended: 2016.11.11\nParticipants: Felix (S), Skully (N)\nWinner: Felix\n\n1) Skully: Homeworld Y3 G2 B3\n\n2) Felix: Homeworld R1 G3 Y3 *\n\n3) Skully: Build B1in Skully\n\tFelix: Hey there! First game? Hope you have fun and let me know if you have questions!\n\n4) Felix: Build Y1 Felix\n\tSkully: Oh hey. It actually is my first game. Hopefully i wont make it to easy for ya :) \n\tSkully: To be sure, the only way to get the bigger size ships is if there arent any smaller ones left, correct?\n\tFelix: Hey, no worries. I'm happy to help you learn the game, but I won't take it TOO easy on you. The best way to learn is to make mistakes against a better player. That's how I learned and am still learning!\r\n\r\nAnd yep, you're right. You cannot build a bigger ship until the smaller ones are all used up. You also can ONLY build a ship of a color you already own in that system. You cannot use the star's color(s) when doing this, but you can only use a ship color you already own. For instance, I can ONLY build yellow in my home system right now, not green or red until I trade for one of those colors (but I have no blue, so that will be tricky!)\n\n5) Skully: Trade B1 R1 Skully\n\n6) Felix: Discover Y1 Felix B2 Rim\n\tSkully: Ok great thanx for the clarafication. I would preffer if you didnt hold back at all hehe. \n\tFelix: Then I won't! :)\n\n7) Skully: Discover R1 Skully Y1 Evil\n\n8) Felix: Build Y1 Felix\n\n9) Skully: Build B1 Skully\n\n10) Felix: Move Y1 Felix Rim\n\n11) Skully: Move R1 Evil Rim\n\n12) Felix: Discover Y1 Rim G1 Escape\n\n13) Skully: Attack Y1 Rim\n\n14) Felix: Build Y1 Escape\n\n15) Skully: Trade B1 R1 Skully\n\tFelix: Man, I'm already in a dire position!\n\n16) Felix: Build Y2 Felix\n\tSkully: I dont think its too dire\n\n17) Skully: Build R2 Skully\n\n18) Felix: Move Y2 Felix Rim\n\n19) Skully: Move R2 Skully Escape\n\tFelix: I just need to try to get a blue ships somehow\r\n\n\tSkully: Haha yeah i know tryed to stop you but cant now. Well played. I had heard the majority of players use blue and red as thier stars. Or atleast have blue and red in the mix between ship and stars. I personally hate when people implament a metta, so i sat down and came up wit my combo to use against the Meta. To my suprise i find your combo, is this an experamentle game for you?\n\n20) Felix: Trade Y2 R2 Rim\n\tFelix: Interesting. Yes, some top players incorporate red and blue into their home stars. My preference is usually to use a yellow and blue star with a green starting ship. Yeah, this is a bit of an experimental game for me. I'd be happy to try another with my traditional starting colors, though!\n\n21) Skully: Attack Y1 Escape\n\n22) Felix: Attack R1 Rim\n\n23) Skully: Discover Y1 Rim G3 Factory\n\n24) Felix: Move Y1 Escape Rim\n\tSkully: I'd be happy to accept that challange once this match is over. Im glad to see that in my very first Home World match im playing against a non meta player. I have the feeling that we'll be playing against each other many times. :)\n\tFelix: Sounds good to me! I have a few games under my belt, so I know some things, but I am definitely not a meta player haha. I'd rather have fun than crush everyone around me :P\n\n25) Skully: Discover Y1 Escape R2 War\n\n26) Felix: Trade R1 B1 Rim\n\n27) Skully: Build R1 Skully\n\n28) Felix: Trade B1 G1 Rim\n\n29) Skully: Move Y1 War Escape\n\n30) Felix: Build Y2 Rim\n\n31) Skully: Move Y1 Factory Rim\n\n32) Felix: Trade Y1 B1 Rim\n\n33) Skully: Discover Y1 Rim B3 Eye\n\n34) Felix: Move B1 Rim Felix\n\n35) Skully: Trade Y1 G1 Eye\n\tFelix: Finally got a blue to my homeworld!\n\n36) Felix: Build G2 Rim\n\tSkully: Hehe yeah, cant say im happy for you :p\n\n37) Skully:\nBuild G2 Eye\n\n38) Felix: Discover G2 Rim B1 Scyther\n\n39) Skully: Trade G1 Y1 Eye\n\tSkully: pokemon? stuck on go huh? :D\n\n40) Felix: B G1 Scyther\n\tFelix: You caught me :p it's a real problem...\n\n41) Skully: Build G3 Eye\n\n42) Felix: Build G3 Rim\n\n43) Skully: Trade G3 R3 Eye\n\n44) Felix: Trade G1 Y1 Scyther\n\n45) Skully: Move R3 Eye Scyther\n\n46) Felix: S Y1 Scyther\nD G2 Scyther Y3 Ekans\n\n47) Skully: Sacrifice G2 Eye\nBuild R2 Scyther\nBuild R3 Escape\n\n48) Felix: Build R3 Rim\n\n49) Skully: Move Y1 Eye Scyther\n\n50) Felix: Discover G1 Rim B1 Oddish\n\n51) Skully: Build B2 Skully\n\n52) Felix: Build G1 Ekans\n\n53) Skully: Trade B2 Y2 Skully\n\n54) Felix: Sacrifice G3 Rim\nBuild G2 Oddish\nBuild G3 Oddish\nBuild G3 Ekans\n\n55) Skully: Sacrifice Y2 Skully\nMove R2 Scyther Rim\nMove R2 Escape Rim\nCatastrophe Rim R\n\n56) Felix: Trade G3 R3 Oddish\n\n57) Skully: Move R3 Scyther Ekans\n\n58) Felix: Sacrifice R3 Oddish\nAttack R3 Ekans\nPass\nPass\n\n59) Skully: Move R1 Skully Scyther\n\tSkully: Wow very well played. Didnt see that one.\n\n60) Felix: Build G3 Oddish\n\tFelix: Thank you! I learned the hard way about that move myself once upon a time. It's easy to overlook the ability to sacrifice a red and attack in another system. Definitely something to watch out for!\n\n61) Skully: Move R3 Escape Rim\n\n62) Felix: Move Y2 Rim Oddish\n\n63) Skully: Build B2 Skully\n\n64) Felix: Trade G3 B3 Oddish\n\n65) Skully: Trade B3 G3 Skully\n\n66) Felix: Sacrifice Y3 Felix\nMove G1 Oddish Skully\nMove G2 Oddish Skully\nMove B3 Oddish Skully\nCatastrophe Skully Green\n\n\tSkully: Hmmmm quite a bind you have me in. I thinck its safe to say I lost this one. GG. \n\tFelix: I think you're right. But really, great game! Very well done! You played well.\n\nHomeworlds Online (SDG# 29921)\nVariants: "Hard time"\nStarted: 2016.6.21, Ended: 2016.6.27\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld Y1 B2 G3\n\n2) dlwillson: H B3 R1 G3\n\tFelix: Hey, have fun and good luck!\n\tdlwillson: Sorry for fumbling your challenge! I wad clicking too quick and I missed the correct click. But, now we're playing! :-) You have fun, too, and thanks for the game!\r\n\n\tdlwillson: s/wad/was/\n\n3) Felix: Build G1 Felix\n\tFelix: No worries, Thanks for accepting the challenge!\r\n\n\n4) dlwillson: B G1 Dlwillson\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Felix: Build Y2 Felix\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Felix: Discover Y2 Felix G3 Opus\n\n10) dlwillson: D Y1 Dlwillson B2 Sky\n\n11) Felix: Trade Y1 B1 Felix\n\n12) dlwillson: B G1 Dlwillson\n\n13) Felix: Move B1 Felix Opus\n\n14) dlwillson: Move G1 Dlwillson Sky\n\n15) Felix: Build B1 Opus\n\n16) dlwillson: Build Y1 Sky\n\n17) Felix: Discover B1 Opus G2 Magnum\n\n18) dlwillson: D Y1 Sky Y3 Sol\n\n19) Felix: Build B1 Opus\n\n20) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sky\nBuild Y3 Dlwillson\nBuild Y3 Dlwillson\n\n21) Felix: B B2 Opus\n\n22) dlwillson: T Y3 R3 Dlwillson\n\n23) Felix: Build Y3 Opus\n\n24) dlwillson: Sacrifice Y3 Dlwillson\nMove R3 Dlwillson Sky\nMove R3 Sky Sol\nMove R3 Sol Felix\n\n25) Felix: Sacrifice Y3 Opus\nMove Y2 Opus Magnum\nMove Y2 Magnum Dlwillson\nMove B2 Opus Felix\n\tFelix: Well dang, that was fast. I definitely made a mistake last turn!\n\n26) dlwillson: A Y2 Dlwillson\n\n27) Felix: Build B3 Felix\n\tdlwillson: Took me that long to remember I could do that... :-)\n\n28) dlwillson: A G3 Felix\n\n29) Felix: Trade B1 R1 Opus\n\n30) dlwillson: S R3 Felix\nA B3 Felix\nA B2 Felix\nPass\n\tFelix: Well done! You knocked me out fast. I definitely messed up by not building a red when you did.\n\tdlwillson: Thanks for the game!\n\n\nHomeworlds Online (SDG# 29780)\nStarted: 2016.6.21, Ended: 2016.7.25\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: B B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: D B2 Ts52 G3 Kermit\n\n10) Felix: Trade B2 Y2 Felix\n\n11) ts52: Build G1 Ts52\n\n12) Felix: Discover B1 Felix G2 Grass\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) Felix: Build G1 Felix\n\n15) ts52: Build G1 Ts52\n\n16) Felix: Build Y1 Felix\n\n17) ts52: Move Y1 Ts52 Kermit\n\n18) Felix: Trade Y2 R2 Felix\n\n19) ts52: Trade G1 R1 Ts52\n\n20) Felix: Build Y2 Felix\n\n21) ts52: Build G1 Ts52\n\n22) Felix: Move Y2 Felix Grass\n\n23) ts52: Build Y2 Kermit\n\n24) Felix: Build Y2 Grass\n\n25) ts52: Discover Y2 Kermit G2 Oscar\n\n26) Felix: Discover Y2 Grass B3 Ocean\n\n27) ts52: Build Y3 Kermit\n\n28) Felix: Sacrifice G1 Felix\nBuild Y3 Ocean\n\n29) ts52: Build G1 Ts52\n\n30) Felix: Build G1 Felix\n\n31) ts52: Discover G1 Ts52 B3 Gonzo\n\n32) Felix: Trade Y2 G2 Ocean\n\tFelix: Hope you have fun camping!\n\n33) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Oscar\nBuild R1 Ts52\n\n34) Felix: Sacrifice G1 Felix\nBuild G1 Ocean\n\tts52: Thanks! We had a blast!\n\tFelix: My wife and I went camping with our 6-month-old infant a few weekends back and it was a blast too. Got rained on though!\n\n35) ts52: Move R1 Ts52 Gonzo\n\tts52: That\n\tts52: That's awesome! We started when my youngest was 3 or so, I don't think I'd be brave enough to try camping with a 6 month old. Well done!\n\n36) Felix: Move Y2 Grass Gonzo\n\tFelix: Thanks! It wasn't the easiest or most relaxing camping trip, but we made it work! She co-sleeps with my wife, so the two of them just slept in a hammock together. I was impressed they pulled it off!\n\tFelix: Next time we're going to try out this cool tent we got called a "Tentsile Connect" tree tent. It's a tent that you suspend from trees kind of like a hammock. Should be a bit more comfy than the ground, but we'll see.\n\n37) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Gonzo\nBuild R2 Gonzo\n\tts52: Let me know how it goes. We have a massive 160 sq ft tent for the 4 of us to sprawl out in, but I've been curious about the tree tents. Was looking at one only a month or so ago actually.\n\n38) Felix: Sacrifice Y3 Ocean\nMove G1 Ocean Ts52\nMove G2 Ocean Ts52\nMove Y2 Gonzo Ts52\nCatastrophe Ts52 Green\n\n39) ts52: Sacrifice Y2 Oscar\nMove R2 Gonzo Ts52\nMove G1 Gonzo Ts52\n\tFelix: Will do!\n\tts52: Well played sir, I did not see that coming.\n\n40) Felix: Sacrifice R2 Felix\nAttack R2 Ts52\nAttack B1 Ts52\n\tFelix: Thank you! I assumed you would move your Y3 ship back home after my move, so your move makes things more interesting...\n\n41) ts52: Sacrifice Y2 Oscar\nMove R1 Gonzo Ts52\nMove R1 Gonzo Ts52\nCatastrophe Ts52 Red\n\n42) Felix: Trade Y1 R1 Felix\n\tts52: Yeah, I couldn't let you get the catastrophe that easy. But this still isn't looking too good for me.\n\n43) ts52: Build G1 Ts52\n\n44) Felix: Build G1 Felix\n\n45) ts52: Trade Y3 R3 Kermit\n\n46) Felix: Sacrifice G3 Felix\nBuild B2 Ts52\nBuild B3 Ts52\nBuild Y1 Ts52\nCatastrophe Ts52 Blue\n\n47) ts52: Move R3 Kermit Ts52\n\tFelix: Very well thought! I think I may have you now though.\n\tFelix: fought*\n\tts52: Yeah, I don't see a way out of that. Good game.\n\n48) Felix: Sacrifice G1 Felix\nBuild Y2 Ts52\nCatastrophe Ts52 Yellow\n\n\tFelix: I almost gave you a way out by forgetting to catastrophe! Great game.\n\nHomeworlds Online (SDG# 29918)\nVariants: "Unrated"\nStarted: 2016.6.22, Ended: 2016.7.14\nParticipants: Kalimantan (S), Felix (N), Draw5PlayAll (E)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) Draw5PlayAll: Homeworld R1 B2 G3\n\tFelix: RAWR!!!!\n\n3) Kalimantan: Homeworld B3 R1 G3\n\tDraw5PlayAll: I was actually predicting a me-Felix-someone setup, where the someone was "likely Steele, unlikely ts52"...\n\n4) Felix: Build G1 Felix\n\tFelix: Interesting that everyone chose the same colors as me! Looks like we'll be fighting for yellow :P\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Well, I was doing what Andy Looney says his strategy is.\n\n6) Kalimantan: Build G1 Kalimantan\n\n7) Felix: Trade G1 Y1 Felix\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n9) Kalimantan: Trade G1 Y1 Kalimantan\n\tDraw5PlayAll: The beginnings are too predictable. I do not know if I should send out a Y1 or G1 or B1 to explore.\n\n10) Felix: B G1 Felix\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: The first few moves are typically the same, but the possibilities become endless pretty quickly :)\n\n12) Kalimantan: Discover Y1 Kalimantan G2 Dagoba\n\tDraw5PlayAll: Well, with a finite number of pieces and a finite number of possible positions....\n\n13) Felix: Trade G1 R1 Felix\n\n14) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n15) Kalimantan: Build Y1 Dagoba\n\n16) Felix: Build R1 Felix\n\n17) Draw5PlayAll: Con Y2 Draw5playall\n\n18) Kalimantan: Build Y2 Dagoba\n\n19) Felix: Discover R1 Felix G1 Rim\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) Kalimantan: Move Y2 Dagoba Kalimantan\n\tDraw5PlayAll: I think I will invest in the future.\n\n22) Felix: Build Y2 Felix\n\n23) Draw5PlayAll: Discover G1 Draw5playall B3 Traderpool\n\n24) Kalimantan: Build Y2 Kalimantan\n\tDraw5PlayAll: I see you two have been throwing your Y and R ships at green planets, while I send a green ship to a blue planet.\n\n25) Felix: Move Y1 Felix Rim\n\n26) Draw5PlayAll: Build G1 Traderpool\n\n27) Kalimantan: Trade Y2 R2 Kalimantan\n\tFelix: Different strokes for different folks :)\n\n28) Felix: Build R2 Rim\n\n29) Draw5PlayAll: Discover B1 Draw5playall G3 Heh\n\n30) Kalimantan: Move R2 Kalimantan Dagoba\n\n31) Felix: Move R2 Rim Heh\n\n32) Draw5PlayAll: Sacrifice B1 Heh\nTrade Y2 R2 Draw5playall\n\n33) Kalimantan: Move R2 Dagoba Rim\n\tFelix: *cue Jaws music* :)\n\n34) Felix: Build R3 Rim\n\tDraw5PlayAll: See, *THIS* is my problem. I get my development too slow and I end up behind the race for the large ships, particularly yellow.\n\tFelix: It can be hard to keep up, especially in a 3p game. But it's arguably more important to develop red when your opponents do. That way you at least will be less likely to lose ships.\n\n35) Draw5PlayAll: Trade G1 B1 Traderpool\n\n36) Kalimantan: Build R3 Rim\nCatastrophe Rim R\n\tDraw5PlayAll: I cannot resist!!\n\tDraw5PlayAll: Darn, I wanted to explode the reds at rim, but I cannot. Oh well, TraderPool needs support.\n\n37) Felix: Build Y2 Felix\n\n38) Draw5PlayAll: Build B1 Traderpool\n\n39) Kalimantan: Build G1 Kalimantan\n\n40) Felix: Trade Y2 B2 Felix\n\tDraw5PlayAll: This is safe because I have control of the blue economy.\n\n41) Draw5PlayAll: Trade B1 R1 Traderpool\n\n42) Kalimantan: Trade G3 R3 Kalimantan\n\tFelix: Not any more :)\n\n43) Felix: Build Y2 Felix\n\n44) Draw5PlayAll: Discover R2 Draw5playall Y3 Port\n\n45) Kalimantan: Build G1 Kalimantan\n\n46) Felix: Build G2 Felix\n\tDraw5PlayAll: I think I was playing ts52 or someone and I discovered two yellow stars as a plot to destroy the other guy's homeworld. I named them "Port1" and "Port2", so now "Port" is my name for any Y3 star system.\n\n47) Draw5PlayAll: Build G2 Traderpool\n\n48) Kalimantan: Trade G1 B1 Kalimantan\n\tFelix: Sounds like a plan. I shall name all my red ships "Port Destroyer" then ;)\n\n49) Felix: Discover Y2 Felix B1 Ice\n\tDraw5PlayAll: This game (With 3P) has a lot of diplomacy. If Felix got too strong, the other two players can agree to each send a ship of the same color into his homeworld, which prevents the need for sacrificing while still attacking the enemy.\r\n\r\nPerhaps that game was with Simon or nycavri...I do not think it was ts52.\n\n50) Draw5PlayAll: Trade G2 Y2 Traderpool\n\n51) Kalimantan: Move B1 Kalimantan Dagoba\n\n52) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Rim\nBuild Y3 Ice\n\tDraw5PlayAll: Next blue planet should be Icehouse...\n\n53) Draw5PlayAll: Build G1 Draw5playall\n\n54) Kalimantan: Sacrifice Y2 Kalimantan\nMove Y1 Dagoba Ice\nMove Y1 Dagoba Ice\nCatastrophe Ice Y\n\tFelix: That would be clever :) \n\n55) Felix: Sacrifice Y1 Rim\nMove R2 Heh Dagoba\n\n56) Draw5PlayAll: Build G2 Traderpool\n\n57) Kalimantan: Build G2 Kalimantan\n\tDraw5PlayAll: I wish I could sac my G1 and build the G2 before the G1 is returned to the stash\n\n58) Felix: Build G3 Felix\n\n59) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 Port\nBuild Y1 Traderpool\n\n60) Kalimantan: Build G3 Kalimantan\n\n61) Felix: Attack B1S Dagoba\n\tDraw5PlayAll: I really need to get some of my ships off of TraderPool before it goes supernova!\n\n62) Draw5PlayAll: Discover G2 Traderpool B2 Icehouse\n\tDraw5PlayAll: That is also a good move.\n\tDraw5PlayAll: I would not be surprised if Felix sacrificed his Y3@Felix to send his G2@Felix to Kalimantan, exploding your army. Which would only help me.\n\n63) Kalimantan: Trade G2 Y2 Kalimantan\n\n64) Felix: Build R3 Dagoba\n\tDraw5PlayAll: I tried to distance my ship from the evils that await in the direction of Polaris. It was a choice between sending a blue to a green system (which would not work) or a green to a blue system.\n\n65) Draw5PlayAll: D R2 Port Y1 Port5\n\n66) Kalimantan: Discover R3 Kalimantan Y2 Yarvin\n\n67) Felix: Trade R3 Y3 Dagoba\n\n68) Draw5PlayAll: Sac G3 Draw5playall\nBuild G2 Icehouse\nBuild G3 Draw5playall\nBuild R3 Port5\nPass\nPass\nPass\nPass\n\n69) Kalimantan: Discover R3 Yarvin Y1 Hoth\n\tFelix: About time to attack :)\n\n70) Felix: Discover G2 Felix B1 Flip\n\n71) Draw5PlayAll: Move B1 Traderpool Port5\n\tDraw5PlayAll: Well, I do not like this... But I have a plan.\n\n72) Kalimantan: Build G3 Kalimantan\n\n73) Felix: Sacrifice Y3 Felix\nMove G2 Flip Dagoba\nMove G2 Dagoba Kalimantan\nMove Y3 Dagoba Kalimantan\nCatastrophe Kalimantan Green\n\n74) Draw5PlayAll: Discover R1 Traderpool G1 Treehouse\n\n75) Kalimantan: Move R3 Hoth Felix\n\n76) Felix: Sacrifice R1 Felix\nAttack Y2S Kalimantan\n\tFelix: *spaceship noises*\n\tDraw5PlayAll: This only helps me.\n\n77) Draw5PlayAll: Sacrifice Y2 Traderpool\nMove R1 Treehouse Felix\nMove R2 Port5 Felix\nCatastrophe Felix R\n\tDraw5PlayAll: The thing about a 3P battle is that here Felix sacrificed many resources to bomb Kalimantan, meaning I will have an edge. However, the Kalimantan system is now like a second homeworld, because the star is intact.\r\n\r\nA quick pip count shows that I have 22 pips of ships while Felix has 17. Notice that he has more larges (but I can craft larges easily)...\r\n\r\nInteresting game.\n\n78) Felix: Build G1 Felix\n\tDraw5PlayAll: I wonder if anyone caught my reasons for the name Treehouse. Apart from being a green planet, of course.\n\n79) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Traderpool\nBuild G3 Draw5playall\nBuild B1 Port5\n\tFelix: Sorry about that, Kalimantan. That's just how it goes sometimes! And I'm guessing you named it because of the other looney pyramid game, Treehouse?\n\tKalimantan: Well gg. Let me know if you guys do a 3p again. I want in. Is 4p offered at sdg? Anyway 3p and up I definitely want to participate. Thanks for a grest game.\n\n80) Felix: Sacrifice Y3 Kalimantan\nMove G3 Felix Draw5playall\nMove G1 Felix Draw5playall\nMove B2 Felix Draw5playall\nCatastrophe Draw5playall Green\n\tDraw5PlayAll: Note to self. Be careful.\r\n\r\nI like the spite/revenge move that Kalimantan did.\n\tDraw5PlayAll: 4P is offered, but I do not like it because it creates sizing problems.\n\n81) Draw5PlayAll: Sacrifice G2 Icehouse\nBuild Y1 Draw5playall\nBuild Y2 Draw5playall\n\n82) Felix: Trade B2 Y2 Draw5playall\nCatastrophe Draw5playall Yellow\n\tDraw5PlayAll: I think when I built a G2, my mind assumed I had reinstated the factory...\n\n\tDraw5PlayAll: Hahaha you do not have enough red!!\n\tFelix: Who needs red? :)\n\tDraw5PlayAll: Do you think I had any way out? It did not look like it.\n\tDraw5PlayAll: Good game though.\n\tFelix: I didn't see any way out for you. The move you used was probably the best you could have used, but unlucky for you I had a blue ship so I could trade it for the color your had! Great game.\n\tDraw5PlayAll: Oh, I was predicting some freak move with sacrificing a large yellow and then taking over. You could have preserved my base, at the cost of Kalimantan's.\n\nHomeworlds Online (SDG# 29904)\nVariants: "Unrated"\nStarted: 2016.6.23, Ended: 2017.3.15\nParticipants: wil (S), Ben10 (N)\nWinner: wil\n\n1) Ben10: Homeworld Y3 B1 G3\n\n2) wil: Homeworld B2 Y1 G3\n\n\nHomeworlds Online (SDG# 29949)\nVariants: "No undo"\nStarted: 2016.6.24, Ended: 2016.6.24\nParticipants: tinlef (S), Dahgrow (N)\nWinner: Dahgrow\n\n\ttinlef: hi\n\ttinlef: i don't know what i'm doing\n\nHomeworlds Online (SDG# 29957)\nVariants: "Unrated"\nStarted: 2016.6.28, Ended: 2016.7.14\nParticipants: Felix (S), haymire (N)\nWinner: haymire\n\n1) haymire: Homeworld R3 B2 G3\n\n2) Felix: Homeworld G1 B3 R3\n\n3) haymire: Build G1 Haymire\n\n4) Felix: Build R1 Felix\n\thaymire: Last game, I just copied the colours of your home world for mine, the same this time as well. Cheers for the advice.\n\tFelix: Blue and red is not a bad combo either. I know several top players who always use that combo and do very well with it. It comes down to personal style, but I find yellow/blue to be the easiest to work with. Having a large green is really helpful early on because it gives you lots of build potential in the early game where it's important to build your fleet up quickly. You can potentially sac the g3 for 3 builds, or you can more easily set up a "factory" situation in your homeworld.\n\n5) haymire: Trade G1 Y1 Haymire\n\n6) Felix: Trade R1 Y1 Felix\n\n7) haymire: Build G1 Haymire\n\n8) Felix: Build Y1 Felix\n\n9) haymire: Build Y2 Haymire\n\n10) Felix: Trade Y1 G1 Felix\n\n11) haymire: Build G2 Haymire\n\n12) Felix: Discover G1 Felix B2 Rim\n\n13) haymire: Discover G2 Haymire R1 Blood\n\n14) Felix: Build G2 Rim\n\n15) haymire: Sacrifice G3 Haymire\nBuild G2 Blood\nBuild G3 Haymire\nBuild G3 Haymire\n\n16) Felix: Trade G2 Y2 Rim\n\n17) haymire: Discover G3 Haymire Y1 Cheeseball\n\tFelix: Nice move!\n\n18) Felix: Build Y2 Rim\n\n19) haymire: Trade Y1 B1 Haymire\n\n20) Felix: Trade Y2 B2 Rim\n\n21) haymire: Move B1 Haymire Blood\n\n22) Felix: Build R1 Felix\n\n23) haymire: Trade G2 Y2 Blood\n\n24) Felix: Trade R3 G3 Felix\n\n25) haymire: Build B1 Blood\n\n26) Felix: Build G2 Rim\n\tDraw5PlayAll: I am watching your actions from another sector of the galaxy. Your styles of defense intrigue me.\n\n27) haymire: Sacrifice G2 Blood\nBuild Y1 Haymire\nBuild Y3 Haymire\n\tFelix: *gasp* Who is this ethereal observer?\n\n28) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Rim\nBuild R1 Felix\n\n29) haymire: Sacrifice Y2 Haymire\nMove B1 Blood Rim\nMove B1 Blood Rim\nCatastrophe Rim Blue\n\n30) Felix: Discover Y1 Felix G2 Opus\n\tFelix: Oh, snap. Nice.\n\n31) haymire: Discover G3 Cheeseball B2 Aquatear\n\tDraw5PlayAll: Ah, we made the same mistake in another galaxy, and our immense fleet could not evacuate the supernova in time :(\n\n32) Felix: Move Y3 Felix Aquatear\n\n33) haymire: Sacrifice Y1 Haymire\nMove G3 Aquatear Felix\n\n34) Felix: Move Y3 Aquatear Felix\n\n35) haymire: Sacrifice G3 Haymire\nBuild G1 Felix\nBuild G2 Felix\nBuild G2 Haymire\nCatastrophe Felix Green\n\n36) Felix: Trade R1 G1 Felix\n\n37) haymire: Build Y1 Haymire\n\n38) Felix: Build G1 Felix\n\n39) haymire: Trade G1 B1 Haymire\n\n40) Felix: Trade G1 B1 Felix\n\n41) haymire: Discover B1 Haymire G1 Bogey\n\n42) Felix: Build Y1 Opus\n\n43) haymire: Trade Y1 B1 Haymire\n\n44) Felix: Move B1 Felix Opus\n\n45) haymire: Build G1 Haymire\n\n46) Felix: Build B2 Opus\n\n47) haymire: Move B1 Haymire Blood\n\n48) Felix: Trade Y1 R1 Opus\n\n49) haymire: Trade G2 B2 Haymire\n\n50) Felix: Discover B1 Opus Y1 Raggy\n\n51) haymire: Sacrifice Y3 Haymire\nMove B2 Haymire Bogey\nMove B2 Bogey Felix\nMove B1 Bogey Felix\n\tDraw5PlayAll: I think haymire is winning.\n\n52) Felix: Move B1 Raggy Felix\n\n53) haymire: Move B1 Blood Felix\nCatastrophe Felix Blue\n\tFelix: Very nicely done!\n\tDraw5PlayAll: Missed Catastrophe??\n\thaymire: Good game mate, thank you. I learnt from you.\n\tFelix: Glad you learned! Good game. I'd love to rematch any time!\n\n\nHomeworlds Online (SDG# 29989)\nVariants: "Hard time"\nStarted: 2016.7.2, Ended: 2016.8.6\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y1 G3\n\n2) Felix: Homeworld B1 Y2 G3\n\tdlwillson: Have fun!\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Thanks, you too!\n\n4) Felix: Build G1 Felix\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Felix: Trade G1 B1 Felix\n\n7) dlwillson: B B2 Dlwillson\n\n8) Felix: Build B2 Felix\n\n9) dlwillson: Trade B2 Y2 Dlwillson\n\n10) Felix: Trade B2 Y2 Felix\n\n11) dlwillson: Build B2 Dlwillson\n\tFelix: I feel a bit like a copycat right now.\n\n12) Felix: Build B2 Felix\n\n13) dlwillson: Trade B2 R2 Dlwillson\n\n14) Felix: Trade B2 R2 Felix\n\n15) dlwillson: B B2 Dlwillson\n\n16) Felix: Build B2 Felix\n\tdlwillson: It's the nature of it. You can copy for free, or break out at a cost. Copying is more correct, most of the time, in the early game, I think.\n\tdlwillson: But I am late to move out now... Losing momentum.\n\n17) dlwillson: D B1 Dlwillson G2 Field\n\n18) Felix: Discover B2 Felix G3 Dagobah\n\n19) dlwillson: Discover B2 Dlwillson G2 Forest\n\n20) Felix: Discover B1 Felix Y3 Tattooine\n\n21) dlwillson: Build Y1 Dlwillson\n\n22) Felix: Build Y1 Felix\n\n23) dlwillson: M Y1 Dlwillson Field\n\n24) Felix: Move Y1 Felix Dagobah\n\tDraw5PlayAll: I am always late and I never fail to lose momentum.\n\tdlwillson: Sorry for the delay. Interesting position. I'm going to set it up in plastic before I move.\n\tdlwillson: Bah. Too busy. I'll just move and hope for the best. :-)\n\n25) dlwillson: B Y3 Field\n\tdlwillson: Shoot. I thought I submitted that move this morning!\n\n26) Felix: Build Y3 Dagobah\n\tFelix: I think I had a plan for my last move, but now I can't remember it, haha\n\tDraw5PlayAll: That is what the notebook is for, haha\n\n27) dlwillson: Trade Y3 R3 Field\n\n28) Felix: Trade Y1 R1 Dagobah\n\n29) dlwillson: Build B2 Field\n\n30) Felix: Build B3 Dagobah\n\n31) dlwillson: B B3 Forest\n\n32) Felix: Sacrifice Y2 Felix\nMove B1 Tattooine Forest\nMove B2 Dagobah Forest\nCatastrophe Forest Blue\n\n33) dlwillson: D B2 Field Y3 Sol\n\n34) Felix: Build G1 Felix\n\n35) dlwillson: Discover Y2 Dlwillson B2 Sky\n\n36) Felix: Discover G1 Felix B3 Jade\n\n37) dlwillson: B G1 Dlwillson\n\n38) Felix: B G1 Felix\n\n39) dlwillson: Build R1 Dlwillson\n\n40) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G2 Jade\nBuild G3 Felix\n\n41) dlwillson: M R3 Field Jade\n\n42) Felix: Sacrifice G2 Jade\nBuild Y1 Dagobah\nBuild B1 Dagobah\n\n43) dlwillson: A G1 Jade\n\n44) Felix: Discover G2 Felix Y3 Escape\n\n45) dlwillson: S G3 Dlwillson\nB G2 Jade\nB G3 Dlwillson\nB Y2 Sky\n\n46) Felix: Trade G1 R1 Felix\n\n47) dlwillson: S G3 Dlwillson\nB G1 Jade\nB G3 Dlwillson\nB B2 Sol\n\n48) Felix: Move Y3 Dagobah Field\n\n49) dlwillson: M Y2 Sky Escape\n\n50) Felix: Sacrifice R2 Felix\nAttack Y2 Escape\nAttack Y1 Field\n\n51) dlwillson: Sacrifice Y2 Sky\nMove B2 Sol Felix\nMove B2 Sol Felix\n\n52) Felix: Sacrifice G2 Escape\nBuild Y2 Field\nBuild Y3 Dagobah\n\n53) dlwillson: S R1 Dlwillson\nA R1 Felix\n\n54) Felix: Trade B3 R3 Dagobah\n\tFelix: Huh. For some reason I thought you had no yellows left after my attack. That was a mistake!\n\n55) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB G3 Dlwillson\nB B2 Felix\n\n56) Felix: Sacrifice R1 Dagobah\nAttack B1 Field\n\tDraw5PlayAll: Red Teleportaion?!?\n\n57) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB R1 Felix\nB B3 Felix\n\n58) Felix: Move Y3 Field Dlwillson\nCatastrophe Felix Blue\n\n59) dlwillson: A Y3 Dlwillson\n\n60) Felix: Sacrifice Y2 Escape\nMove Y2 Field Dlwillson\nMove Y1 Field Dlwillson\nCatastrophe Dlwillson Yellow\n\n61) dlwillson: Trade G3 Y3 Dlwillson\n\n62) Felix: Move Y3 Dagobah Felix\n\n63) dlwillson: T G2 Y2 Jade\n\n64) Felix: B B1 Field\n\n65) dlwillson: M Y3 Dlwillson Felix\n\n66) Felix: S Y3 Felix\nM B1 Field Dlwillson\nM B1 Field Dlwillson\nD B1 Dagobah Y2 Soclose\n\n67) dlwillson: S G2 Dlwillson\nB Y1 Felix\nB Y1 Felix\nC Felix Y\n\tFelix: This is so tense :O\n\tDraw5PlayAll: Wow, it does look tense.\n\n\tFelix: Well played indeed. I was one move away. I knew I should have kept you locked out of yellow a bit longer!\n\tdlwillson: Excellent game :-)\n\nHomeworlds Online (SDG# 29970)\nVariants: "Unrated"\nStarted: 2016.7.4, Ended: 2016.7.4\nParticipants: jslimify (S), Felix (N)\nWinner: Felix\n\n\tjslimify: Gl\n\tjslimify: Gl\n\nHomeworlds Online (SDG# 29942)\nVariants: "Unrated"\nStarted: 2016.7.4, Ended: 2016.7.31\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld R1 B2 G3\n\n\nHomeworlds Online (SDG# 29956)\nStarted: 2016.7.6, Ended: 2016.7.26\nParticipants: Felix (S), Kalimantan (N)\nWinner: Felix\n\n1) Kalimantan: Homeworld Y3 G1 R3 *\n\n2) Felix: Homeworld R3 Y2 G3 *\n\tFelix: Have fun! :)\n\n3) Kalimantan: Build R1 Kalimantan\n\tFelix: A blueless intro...\n\n4) Felix: Build G1 Felix\n\n5) Kalimantan: Build R1 Kalimantan\n\n6) Felix: Build G1 Felix\n\n7) Kalimantan: Discover R1 Kalimantan B2 Dagoba\n\n8) Felix: Discover G1 Felix B1 Flip\n\n9) Kalimantan: Move R1 Kalimantan Dagoba\n\n10) Felix: Build G2 Flip\n\n11) Kalimantan: Trade R1 B1 Dagoba\n\n12) Felix: Trade G2 B2 Flip\n\n13) Kalimantan: Trade R1 Y1 Dagoba\n\n14) Felix: Build G2 Flip\n\n15) Kalimantan: Move B1 Dagoba Kalimantan\n\n16) Felix: Trade G2 Y2 Flip\n\n17) Kalimantan: Build R1 Kalimantan\n\n18) Felix: Move B2 Flip Felix\n\n19) Kalimantan: Move R1 Kalimantan Dagoba\n\n20) Felix: Build G2 Flip\n\tDraw5PlayAll: What is with this name "Dagoba"?\n\tFelix: @Draw5 - it's from Star Wars\n\n21) Kalimantan: Move R1 Dagoba Flip\n\tKalimantan: Lol. Yeah I'm butchering all the names I can remember from star wars systems. Like yarvin was supposed to be from yavin 4 but I misspelled it so now I just use yarvin all the time. I can't remember to many names of starsystems and star wars is pretty much the only exposure I've had to galactic warfare. \n\n22) Felix: Trade G2 R2 Flip\n\n23) Kalimantan: Attack G1 Flip\n\tFelix: You need to watch some Star Trek or Battlestar Galactica!\n\tKalimantan: Well I like startrek but I don't know of any memorable star systems. I was very young when I watched it. And I always saw as more about galactic exploration and diplomacy and not warfare. Battlestar galatica on the other I've just never actully watched it. I'm not sure why, maybe it was past my generation, I don't remember ever seeing on tv.\n\n24) Felix: Sacrifice R2 Flip\nAttack R1 Flip\nAttack G1 Flip\n\tFelix: Quite understandable :) I watched both those shows but i can't really remember any memorable system names either!\n\n25) Kalimantan: Build R1 Kalimantan\n\n26) Felix: Build G2 Flip\n\n27) Kalimantan: Trade R3 G3 Kalimantan\n\tDraw5PlayAll: But this game IS exploration, and diplomacy in a 3+ player game...\n\tKalimantan: It's time implement a monopoly breaking transaction y\n\n28) Felix: D G2 Flip B2 Flop\n\tFelix: Good thinking!\n\n29) Kalimantan: Sacrifice G3 Kalimantan\nBuild B1 Kalimantan\nBuild B3 Kalimantan\nBuild Y1 Dagoba\n\n30) Felix: Build B3 Felix\n\tFelix: Did you mean to pass? You can undo your move and do it again if you wish.\n\n31) Kalimantan: Trade B3 G3 Kalimantan\n\n32) Felix: Build B3 Felix\n\n33) Kalimantan: Sacrifice G3 Kalimantan\nBuild B3 Kalimantan\nBuild R1 Kalimantan\nBuild R2 Kalimantan\n\n34) Felix: Discover B3 Felix Y1 Flap\n\n35) Kalimantan: Move R2 Kalimantan Flop\n\n36) Felix: Sacrifice R1 Flip\nAttack R2 Flop\n\n37) Kalimantan: Move Y1 Dagoba Flip\n\n38) Felix: Move B3 Flap Flop\n\n39) Kalimantan: Sacrifice R1 Kalimantan\nAttack G1 Flip\n\n40) Felix: Sacrifice Y2 Flip\nMove B3 Flop Kalimantan\nMove R2 Flop Kalimantan\nCatastrophe Kalimantan Blue\n\n41) Kalimantan: Build R1 Kalimantan\n\n42) Felix: Sacrifice G1 Felix\nBuild R1 Kalimantan\nCatastrophe Kalimantan Red\n\tFelix: Watch out for that overpopulation threat! It's a killer. I know it was super tempting to attack my ship, but you left yourself open in your homeworld. \n\n\tKalimantan: Well I think I lost this match from the point where I made the g3, l thought it was a good move then but now in hindsight it seems like that's the precise moment I sealed my doom. And hey who knows, maybe I would've fared better if I kept the pass. But I think I saw the catastrophe coming but there was really nothing I can do to stop it I think, can't quite remember now that the ships r gone.\n\tFelix: Yeah, that G3 might have been a mistake. It's difficult to work with a G3 in your homeworld if you also have green as one of your home stars, too. That said, you played well, and I hope you learned some things! I'd be happy to rematch any time :)\n\tDraw5PlayAll: Felix, was the no-blue homeworld a handicap thing? Because I have always found that a blue star is helpful (I have not tried a blue ship, but I prefer green ships). It helps me diversify the local defense fleet without having to go to blue stars or worry about keeping blues at home.\n\tFelix: @Draw5 it's generally considered more difficult to not have any blue at all at the start of the game. Since we both did it, neither of us were handicapped!\n\nHomeworlds Online (SDG# 29930)\nStarted: 2016.7.6, Ended: 2016.8.8\nParticipants: ts52 (S), Kalimantan (N)\nWinner: ts52\n\n1) Kalimantan: Homeworld R3 G2 B3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Kalimantan: Build B1 Kalimantan\n\tts52: Sorry for the delay.\n\tKalimantan: It's okay\n\n4) ts52: Build G1 Ts52\n\n5) Kalimantan: Build B1 Kalimantan\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Kalimantan: Trade B1 Y1 Kalimantan\n\n8) ts52: Build G1 Ts52\n\n9) Kalimantan: Trade B1 G1 Kalimantan\n\n10) ts52: Discover G1 Ts52 B3 Gonzo\n\n11) Kalimantan: Build B1 Kalimantan\n\n12) ts52: Discover B1 Ts52 G3 Oscar\n\n13) Kalimantan: Trade B1 R1 Kalimantan\n\n14) ts52: Trade B1 R1 Oscar\n\n15) Kalimantan: Discover R1 Kalimantan G1 Dagoba\n\n16) ts52: Build G2 Ts52\n\n17) Kalimantan: Build G2 Kalimantan\n\n18) ts52: Build G3 Gonzo\n\n19) Kalimantan: Build B1 Kalimantan\n\n20) ts52: Trade G3 Y3 Gonzo\n\n21) Kalimantan: Move G2 Kalimantan Dagoba\n\n22) ts52: Build G3 Gonzo\n\n23) Kalimantan: Move Y1 Kalimantan Dagoba\n\n24) ts52: Trade G2 B2 Ts52\n\n25) Kalimantan: Trade G1 Y1 Kalimantan\n\n26) ts52: Sacrifice G3 Gonzo\nBuild G1 Ts52\nBuild G2 Ts52\nBuild G3 Gonzo\n\n27) Kalimantan: Build Y2 Kalimantan\n\n28) ts52: Discover G1 Ts52 Y3 Bigbird\n\n29) Kalimantan: Move R1 Dagoba Bigbird\n\n30) ts52: Sacrifice R1 Oscar\nAttack R1 Bigbird\n\n31) Kalimantan: Discover Y1 Dagoba G3 Yavin\n\n32) ts52: Move Y3 Gonzo Dagoba\n\n33) Kalimantan: Sacrifice G2 Dagoba\nBuild Y2 Yavin\nBuild Y2 Yavin\n\n34) ts52: Sacrifice G3 Gonzo\nBuild G2 Bigbird\nBuild G3 Gonzo\nBuild Y3 Dagoba\n\n35) Kalimantan: Sacrifice Y2 Kalimantan\nMove Y2 Yavin Ts52\nMove Y2 Yavin Ts52\n\n36) ts52: Trade G3 R3 Ts52\n\n37) Kalimantan: Build Y2 Yavin\n\n38) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\nBuild R1 Bigbird\n\n39) Kalimantan: Move Y1 Yavin Ts52\nCatastrophe Ts52 Y\n\n40) ts52: Sacrifice Y3 Dagoba\nMove G3 Gonzo Dagoba\nMove G3 Dagoba Kalimantan\nMove Y3 Dagoba Kalimantan\n\n41) Kalimantan: Attack G3S Kalimantan\n\n42) ts52: Sacrifice R3 Ts52\nAttack G3 Kalimantan\nAttack B3 Kalimantan\nAttack Y1 Kalimantan\n\n43) Kalimantan: Attack Y1 Kalimantan\n\n44) ts52: Sacrifice G3 Kalimantan\nBuild Y1 Kalimantan\nBuild Y1 Kalimantan\nBuild B1 Kalimantan\nCatastrophe Kalimantan Yellow\n\n45) Kalimantan: Attack B1S Kalimantan\n\n46) ts52: Build B1 Kalimantan\nCatastrophe Kalimantan Blue\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 29584)\nVariants: "Hard time"\nStarted: 2016.7.7, Ended: 2016.7.10\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B1 R2 G3\n\n\nHomeworlds Online (SDG# 30027)\nVariants: "Unrated"\nStarted: 2016.7.9, Ended: 2016.7.19\nParticipants: Draw5PlayAll (S), Kalimantan (N)\nWinner: Draw5PlayAll\n\n1) Kalimantan: Homeworld Y3 G2 R3 *\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\n3) Kalimantan: Build R1 Kalimantan\n\tDraw5PlayAll: We have geared up to start a new civilization with our best Galaxy-class construction vessel.\n\tKalimantan: And we have geared up to start a new empire with our Galaxy class war machine.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Kalimantan: Discover R1 Kalimantan Y1 Dagoba\n\tDraw5PlayAll: On the other hand, our empire is usually peaceful. We only attack in self-defense.\n\tKalimantan: Well I guess that means you wont be that peaceful this time around\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Kalimantan: Build R1 Kalimantan\n\tDraw5PlayAll: Well, we usually choose a Planeary Defense System because invaders often are less peaceful and we need protection. We have noticed, though, that it seems to only discourage attacks from reaching our base, instead of actually stopping those that happen.\n\tDraw5PlayAll: *Planetary\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) Kalimantan: Discover R1 Kalimantan B1 Yarvin Iv\n\n10) Draw5PlayAll: Build G1 Draw5playall\n\n11) Kalimantan: Trade R1 G1 Yarvin\n\n12) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n13) Kalimantan: Build G1 Yarvin\n\n14) Draw5PlayAll: Build R2 Draw5playall\n\n15) Kalimantan: Build R2 Kalimantan\n\n16) Draw5PlayAll: Discover R2 Draw5playall B3 Icehouse\n\n17) Kalimantan: Move R2 Kalimantan Yarvin\n\tDraw5PlayAll: When we sent out on our quest for new life and new civilizations, we found a large icy planet. A few members of our defense ship beamed down and found inhabitants playing the game Icehouse, which has spread in popularity around the Galaxy.\n\tKalimantan: Is that from the book?\n\n18) Draw5PlayAll: Move G1 Draw5playall Icehouse\n\tDraw5PlayAll: The captain of our Constellation-class construction vessel heard about a Martian Chess tournament and traveled over to have some R&R, as well as to begin to build outside our homeworld.\r\n\r\n--\r\n\r\nNo, I have not read The Empty City, so there is no way I could have taken that from the book.\n\n19) Kalimantan: Trade G1 Y1 Yarvin\n\tKalimantan: Oh ok. Lol.\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) Kalimantan: Build G2 Yarvin\n\n22) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Icehouse\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\n\n23) Kalimantan: Sacrifice G2 Yarvin\nBuild Y2 Yarvin\nBuild G2 Yarvin\n\n24) Draw5PlayAll: Move Y1 Draw5playall Icehouse\n\n25) Kalimantan: Discover Y1 Yarvin R3 Hoth\n\tDraw5PlayAll: The problem with using a G2 for the factory is that you really only get 1 growth. But that growth can be in places you have no greens...\n\tKalimantan: I thought I did something wrong.\n\n26) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Icehouse\nBuild Y3 Draw5playall\nPass\n\n27) Kalimantan: Sacrifice G2 Yarvin\nBuild R2 Dagoba\nBuild R3 Yarvin\n\tDraw5PlayAll: The other thing about a G2 factory is that you can use Green Teleportation. So if you had a green at Hoth, you could sac G2@Yarvin and build the G2 at Hoth, as well as getting another build.\r\n\r\nMy homeworld and the blue star are both kind of cramped.\n\n28) Draw5PlayAll: Discover G2 Icehouse B1 Icetraders\n\n29) Kalimantan: Build Y3 Yarvin\n\n30) Draw5PlayAll: Sac G3 Draw5playall\nBuild G2 Icetraders\nBuild G3 Draw5playall\nBuild G3 Icehouse\n\n31) Kalimantan: Move R1 Dagoba Hoth\n\tDraw5PlayAll: This will be close.\n\n32) Draw5PlayAll: Discover R1 Draw5playall G3 Builders\n\n33) Kalimantan: Move R3 Yarvin Builders\n\n34) Draw5PlayAll: Sacrifice Y1 Icehouse\nDiscover R1 Builders B1 Pluto\n\n35) Kalimantan: Move R2 Dagoba Builders\n\n36) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Icehouse\nBuild Y1 Icehouse\n\n37) Kalimantan: Sacrifice Y3 Yarvin\nMove R1 Hoth Draw5playall\nMove R2 Builders Draw5playall\nMove R3 Builders Draw5playall\n\n38) Draw5PlayAll: Move Y1 Icehouse Pluto\nCatastrophe Draw5playall Red\n\n39) Kalimantan: Build Y3 Yarvin\n\tDraw5PlayAll: Close close close!!!\n\n40) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R1 Icehouse\nBuild R1 Pluto\nPass\n\n41) Kalimantan: Build G3 Yarvin\n\n42) Draw5PlayAll: Sacrifice Y1 Icehouse\nDiscover R1 Icehouse Y1 Port4\n\n43) Kalimantan: Move Y3 Yarvin Kalimantan\n\tDraw5PlayAll: The icehouse system is too crowded so we decided to set up a new colony. We needed access to the trading economy so we decided on a planet with trained navigators.\n\n44) Draw5PlayAll: Move Y1 Pluto Kalimantan\n\tDraw5PlayAll: Insufficient.\n\n45) Kalimantan: Attack Y1S Kalimantan\n\n46) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y2 Icehouse Port4\nMove Y2 Port4 Kalimantan\nCatastrophe Kalimantan Yellow\n\n47) Kalimantan: Move Y2 Yarvin Kalimantan\n\tDraw5PlayAll: Well, you can mess me up and leave 1 ship in my homeworld.\n\n48) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G1 Icehouse Kalimantan\nMove G2 Icetraders Kalimantan\nMove G2 Icetraders Kalimantan\nCatastrophe Kalimantan Green\n\tDraw5PlayAll: Problem is, the icehouse and IceTraders both connected to your homeworld, allowing me to score my first EVER home worlds win on SDG.\r\n\r\nGood game, want to play again?\n\tKalimantan: Yeah sure\n\tDraw5PlayAll: Interestingly enough, none of us really took hold of the blue economy.\r\nIf you had three blue ships, I would have had to been much more careful.\r\n\r\nLooking for / making the challenge.\n\n\nHomeworlds Online (SDG# 30021)\nVariants: "Unrated"\nStarted: 2016.7.10, Ended: 2016.9.21\nParticipants: Ben10 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y2 B3 G3\n\n2) Ben10: Homeworld Y3 B1 G3\n\tFelix: Welcome! First game?\n\n3) Felix: Build G1 Felix\n\tBen10: Yeah, absolute first game, might take me a while to get into the swing of things!\n\tFelix: Not a problem. I'd be happy to help you figure things out. Let me know if you have any questions! And if I have tips along the way I'll try to give them\n\n4) Ben10: Build G1 Ben10\n\tBen10: Thanks, I'll let you know if I have any questions!\n\n5) Felix: Trade G1 B1 Felix\n\n6) Ben10: Build G1 Ben10\n\n7) Felix: Build B1 Felix\n\n8) Ben10: Trade G3 B3 Ben10\n\tFelix: Lesson 1: if there's only one small left of a color you don't yet have, it's wise to try and trade for it if possible. Otherwise your opponent may snap up all the smalls, like I just did with the blues, and then it becomes more difficult for you to trade for a blue ship, since you now have to get a medium before you can trade for blue. Make sense?\n\tBen10: Makes a lot of sense! Thanks\n\n9) Felix: Build G1 Felix\n\n10) Ben10: Build G2 Ben10\n\n11) Felix: Discover B1 Felix Y1 Station\n\n12) Ben10: Discover G1 Ben10 B2 Bampton\n\n13) Felix: Move G1 Felix Station\n\n14) Ben10: Move G2 Ben10 Bampton\n\n15) Felix: Build G2 Station\n\n16) Ben10: Trade G1 Y1 Bampton\n\n17) Felix: Trade G2 Y2 Station\n\n18) Ben10: Build B2 Ben10\n\n19) Felix: Build G1 Felix\n\n20) Ben10: Build G2 Bampton\n\n21) Felix: Build G2 Station\n\n22) Ben10: Move B2 Ben10 Bampton\n\n23) Felix: B G3 Felix\n\n24) Ben10: Build G3 Ben10\n\n25) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Felix\nBuild B3 Station\n\n26) Ben10: Discover B2 Bampton Y1 Oddington\n\n27) Felix: Trade B2 R2 Felix\n\n28) Ben10: Trade B2 R2 Oddington\n\n29) Felix: Discover G2 Station B2 Pulse\n\tFelix: Smart thinking getting a red when I do. You're playing very well so far!\n\n30) Ben10: Sacrifice G3 Ben10\nBuild G3 Ben10\nBuild R1 Oddington\nBuild Y2 Bampton\n\n31) Felix: Discover G3 Felix R1 Battleship\n\tBen10: Haha thank you for pretending ;) I feel very much on the defensive, trying to think offensively a few moves ahead is a bit tricky first time round!\n\tFelix: No, really. For a first game, you're avoiding many of the mistakes beginners make in their first game. You are keeping pace with my movements. You aren't overpopulating your systems with any one color. You got weapons when I did. Good stuff. It's very hard to develop long term strategies for your first several games, but it will come!\n\n32) Ben10: Sacrifice Y2 Bampton\nMove G3 Ben10 Pulse\nMove R1 Oddington Pulse\n\n33) Felix: Sacrifice G2 Pulse\nBuild G2 Station\nBuild B2 Felix\n\tBen10: Apologies for the delay, I've been away the last couple of weeks, normal service should be resumed henceforth.\n\n34) Ben10: Sacrifice G3 Pulse\nBuild G3 Ben10\nBuild R1 Pulse\nBuild Y2 Bampton\n\tFelix: Not a problem. Welcome back!\n\n35) Felix: Move Y2 Station Pulse\n\n\nHomeworlds Online (SDG# 30005)\nStarted: 2016.7.10, Ended: 2016.9.6\nParticipants: ts52 (S), njmickel (N)\nWinner: ts52\n\n1) njmickel: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) njmickel: Build G1 Njmickel\n\n4) ts52: Build G1 Ts52\n\n5) njmickel: Discover G1 Njmickel B2 Batmanville\n\n6) ts52: Discover G1 Ts52 B3 Gonzo\n\n7) njmickel: Trade G1 Y1 Batmanville\n\n8) ts52: Trade G1 Y1 Gonzo\n\n\nHomeworlds Online (SDG# 29847)\nVariants: "Hard time"\nStarted: 2016.7.10, Ended: 2016.7.21\nParticipants: Simon (S), njmickel (N)\nWinner: Simon\n\n1) njmickel: Homeworld B3 Y2 G3\n\n2) Simon: Homeworld G2 R1 B3\n\tSimon: Hi, have fun!\n\n3) njmickel: Build G1 Njmickel\n\n4) Simon: Build B1 Simon\n\tnjmickel: Good luck, have fun!\n\tnjmickel: Good luck, have fun!\n\n5) njmickel: Build G1 Njmickel\n\n6) Simon: Trade B1 Y1 Simon\n\n\nHomeworlds Online (SDG# 30048)\nVariants: "Unrated"\nStarted: 2016.7.11, Ended: 2016.7.11\nParticipants: GalateanGemmate (S), Mitotic (N)\nWinner: Mitotic\n\n1) Mitotic: Homeworld R1 G2 B3\n\n2) GalateanGemmate: Homeworld R3 B1 G3\n\tGalateanGemmate: R3 B1 G3\n\n3) Mitotic: Build B1 Mitotic\n\n4) GalateanGemmate: Build G1 Galateangemmate\n\tGalateanGemmate: build g1 galateangemmate\n\tMitotic: sup nerd\n\n5) Mitotic: Trade B1 Y1 Mitotic\n\tMitotic: saucy move, girl\n\n6) GalateanGemmate: Trade G1 B1 Galateangemmate\n\tMitotic: copycat <3\n\n7) Mitotic: Build Y1 Mitotic\n\n8) GalateanGemmate: Trade B1 Y1 Galateangemmate\n\tMitotic: I'll do what you say for now, <3\n\n9) Mitotic: Trade Y1 R1 Mitotic\n\n10) GalateanGemmate: Build Y1 Galateangemmate\n\n11) Mitotic: Trade B3 R3 Mitotic\n\n12) GalateanGemmate: Build G1 Galateangemmate\n\tMitotic: militarism, GO!\n\n13) Mitotic: Discover R1 Mitotic B3 Aegis\n\n14) GalateanGemmate: Build Y2 Galateangemmate\n\n15) Mitotic: Move Y1 Mitotic Aegis\n\tMitotic: As usual, militarism proves a bad idea\n\n16) GalateanGemmate: Trade Y1 B1 Galateangemmate\n\n17) Mitotic: Trade R1 B1 Aegis\n\n18) GalateanGemmate: Discover B1 Galateangemmate G2 Sofa\n\tMitotic: *squints suspiciously*\n\n19) Mitotic: Move B1 Aegis Mitotic\n\n20) GalateanGemmate: Build B2 Sofa\n\n21) Mitotic: Trade B1 G1 Mitotic\n\n22) GalateanGemmate: Move Y1 Galateangemmate Sofa\n\n\nHomeworlds Online (SDG# 30049)\nVariants: "Unrated"\nStarted: 2016.7.11, Ended: 2016.7.12\nParticipants: GalateanGemmate (S), Mitotic (N)\nWinner: GalateanGemmate\n\n1) Mitotic: Homeworld G2 B3 Y3\n\n2) GalateanGemmate: Homeworld G3 R1 B3\n\n3) Mitotic: Build Y1 Mitotic\n\n4) GalateanGemmate: Build B1 Galateangemmate\n\tMitotic: yeah!\n\n5) Mitotic: Trade Y1 G1 Mitotic\n\tMitotic: impressive\n\n6) GalateanGemmate: Build B1 Galateangemmate\n\n7) Mitotic: Build Y1 Mitotic\n\n8) GalateanGemmate: Trade B1 Y1 Galateangemmate\n\n9) Mitotic: Discover Y1 Mitotic Y1 Phlegm\n\n10) GalateanGemmate: Build Y2 Galateangemmate\n\n11) Mitotic: Build Y2 Mitotic\n\n12) GalateanGemmate: Trade Y1 G1 Galateangemmate\n\n13) Mitotic: Trade Y2 R2 Mitotic\n\tGalateanGemmate: hon hon hon\n\n14) GalateanGemmate: Discover G1 Galateangemmate B2 Black Bile\n\tMitotic: Note: ggg is TOO CUTE TO BE ALLOWED TO WIN\n\tMitotic: Note: ggg is TOO CUTE TO BE ALLOWED TO WIN\n\n15) Mitotic: Move R2 Mitotic Phlegm\n\n16) GalateanGemmate: Build G1 Black\n\n17) Mitotic: Move R2 Phlegm Black\n\n18) GalateanGemmate: Sacrifice Y2 Galateangemmate\nDiscover G1 Black B3 Cholera\nMove G1 Black Cholera\n\tMitotic: I've got a bad feeling about this scoob...\n\tMitotic: I've got a bad feeling about this scoob...\n\n19) Mitotic: Build G2 Mitotic\n\n20) GalateanGemmate: Trade B3 Y3 Galateangemmate\n\n21) Mitotic: Move Y1 Phlegm Black\n\n22) GalateanGemmate: Build Y1 Galateangemmate\n\tGalateanGemmate: note: prepare to be stomped by zylphia\n\n23) Mitotic: Discover Y1 Black Y1 Phlegm2\n\n24) GalateanGemmate: Build Y2 Galateangemmate\n\n25) Mitotic: Build Y2 Mitotic\n\n26) GalateanGemmate: Sacrifice Y2 Galateangemmate\nMove G1 Cholera Phlegm2\nMove G1 Phlegm2 Mitotic\nCatastrophe Mitotic Green\n\n27) Mitotic: Discover Y1 Phlegm2 G2 Uuugh\n\n28) GalateanGemmate: Trade Y1 R1 Galateangemmate\n\n29) Mitotic: Move Y2 Mitotic Black\n\n30) GalateanGemmate: Build G1 Cholera\n\n31) Mitotic: Move R2 Black Cholera\n\n32) GalateanGemmate: Move Y3 Galateangemmate Black\n\n33) Mitotic: Attack G1 Cholera\n\n34) GalateanGemmate: Sacrifice G1 Cholera\nBuild B1 Galateangemmate\n\n35) Mitotic: Build R1 Cholera\n\n36) GalateanGemmate: Trade Y3 R3 Black\n\n37) Mitotic: Move Y2 Black Cholera\n\n38) GalateanGemmate: Trade B1 Y1 Galateangemmate\n\n39) Mitotic: Build Y1 Cholera\n\n40) GalateanGemmate: Trade R3 G3 Black\n\n41) Mitotic: Discover Y1 Cholera R2 Ihunger\n\n42) GalateanGemmate: Build G1 Black\n\n43) Mitotic: Move R2 Cholera Uuugh\n\n44) GalateanGemmate: Build Y2 Galateangemmate\n\n45) Mitotic: Move R1 Cholera Uuugh\n\n46) GalateanGemmate: Trade R1 B1 Galateangemmate\n\n47) Mitotic: Trade Y3 B3 Mitotic\n\n48) GalateanGemmate: Trade G1 R1 Black\n\n49) Mitotic: Build G1 Cholera\n\n50) GalateanGemmate: Build R2 Black\n\n51) Mitotic: Trade B3 R3 Mitotic\n\n52) GalateanGemmate: Discover B1 Galateangemmate G2 Sanguinos\n\n53) Mitotic: Build R3 Uuugh\n\n54) GalateanGemmate: Sacrifice Y2 Galateangemmate\nMove R1 Black Cholera\nMove R1 Cholera Uuugh\nCatastrophe Uuugh Red\n\n55) Mitotic: Move G1 Cholera Uuugh\n\n56) GalateanGemmate: Build Y2 Galateangemmate\n\n57) Mitotic: Move Y1 Ihunger Mitotic\n\n58) GalateanGemmate: Trade Y2 B2 Galateangemmate\n\n59) Mitotic: Move G1 Uuugh Mitotic\n\n60) GalateanGemmate: Build Y2 Galateangemmate\n\n61) Mitotic: Build R1 Mitotic\n\tGalateanGemmate: oh! I see it's my turn again! forutunately I have ~9 more days\n\n62) GalateanGemmate: Build B1 Sanguinos\n\tGalateanGemmate: built a ship! take that!\n\tGalateanGemmate: wait actually don't take my ship! :O\n\n63) Mitotic: Build Y2 Mitotic\n\tMitotic: oh gosh what am I doing\n\n64) GalateanGemmate: Build B2 Sanguinos\n\tGalateanGemmate: my sinister plot is unfolding!\r\nit is to deprive you of blues!\n\n65) Mitotic: Move R3 Mitotic Sanguinos\n\tMitotic: *metal gear alert noise*\n\n66) GalateanGemmate: Sacrifice Y2 Galateangemmate\nMove B1 Sanguinos Mitotic\nMove B2 Sanguinos Mitotic\n\tGalateanGemmate: I love that noise! I have no idea how I know what it sounds like, but I love it!\n\n67) Mitotic: Attack B1 Mitotic\n\n68) GalateanGemmate: Sacrifice Y1 Galateangemmate\nMove B1 Sanguinos Mitotic\nCatastrophe Mitotic Blue\n\tMitotic: https://www.youtube.com/watch?v=2P5qbcRAXVk\n\tGalateanGemmate: :D\n\n\tGalateanGemmate: !\n\tMitotic: *sweats nervously*\n\nHomeworlds Online (SDG# 30051)\nVariants: "Unrated"\nStarted: 2016.7.11, Ended: 2016.7.11\nParticipants: Mitotic (S), GalateanGemmate (N)\nWinner: Mitotic\n\n\nHomeworlds Online (SDG# 30052)\nVariants: "Unrated"\nStarted: 2016.7.12, Ended: 2016.7.12\nParticipants: Draw5PlayAll (S), GalateanGemmate (N)\nWinner: Draw5PlayAll\n\n\tDraw5PlayAll: Whaaaaat?\n\tGalateanGemmate: ah - my apologies, I am new and just wanted to start a single game with my friend. And, apparently it ended up starting 3 games???\n\tDraw5PlayAll: Standing Challenges will renew themselves when accepted. If you want to play a specific user, you can create a challenge from the Games list, and select the user from "Challenge whom?"\n\tGalateanGemmate: ohhh thanks! that is very helpful!\n\nHomeworlds Online (SDG# 30058)\nVariants: "Unrated"\nStarted: 2016.7.12, Ended: 2016.7.12\nParticipants: Kalimantan (S), GalateanGemmate (N)\nWinner: Kalimantan\n\n\nHomeworlds Online (SDG# 30065)\nStarted: 2016.7.12, Ended: 2016.7.13\nParticipants: Mitotic (S), GalateanGemmate (N)\nWinner: GalateanGemmate\n\n1) GalateanGemmate: Homeworld B2 Y3 G3\n\tMitotic: Let's go GGG! I won't be bested this time!\n\n2) Mitotic: Homeworld Y2 G3 B3\n\tGalateanGemmate: yeah! let's do it!\n\n3) GalateanGemmate: Build G1 Galateangemmate\n\n4) Mitotic: Build B1 Mitotic\n\tGalateanGemmate: interesting\r\na mirror match-up\r\nour homeworlds will be v close to each other\r\n2 away instead of 4\n\tGalateanGemmate: 3*\n\n5) GalateanGemmate: Build G1 Galateangemmate\n\n6) Mitotic: Trade B1 G1 Mitotic\n\n7) GalateanGemmate: Trade G1 Y1 Galateangemmate\n\n8) Mitotic: Build B1 Mitotic\n\n9) GalateanGemmate: Trade G1 B1 Galateangemmate\n\n10) Mitotic: Trade B1 Y1 Mitotic\n\n11) GalateanGemmate: Discover B1 Galateangemmate G1 Phlegmnation\n\tGalateanGemmate: I didn't think I'd undone my move! whoops!\n\tMitotic: <3\n\n12) Mitotic: Build B1 Mitotic\n\n13) GalateanGemmate: Build B1 Phlegmnation\n\n14) Mitotic: Trade B3 R3 Mitotic\n\tMitotic: Whoops! I forgot to hit enter on the command I typed, that was dumb!\n\tMitotic: Nice name for that star. That's gonna be fun to type. :D\n\tGalateanGemmate: haha I'll bet!\n\n15) GalateanGemmate: Trade B1 R1 Phlegmnation\n\tGalateanGemmate: oh man that was hard to type! :O hoisted by my own petard!\n\n16) Mitotic: Build R1 Mitotic\n\n17) GalateanGemmate: Build R1 Phlegmnation\n\n18) Mitotic: Trade R1 B1 Mitotic\n\n19) GalateanGemmate: Build B2 Phlegmnation\n\n20) Mitotic: Move B1 Mitotic Phlegmnation\n\n21) GalateanGemmate: Trade B1 Y1 Phlegmnation\n\tMitotic: whoo! that was close! almost made a bad move there!\n\tGalateanGemmate: oh no! what was your bad move?\n\n22) Mitotic: Build B1 Phlegmnation\n\tMitotic: The move I undid. I move my r3 to phlegmnation and then you could have made another red ship and gotten rid of my 3 ship this early in the game.\r\nOn second thought, it wasn't *that* bad a move, but it was still kinda bad.\n\n23) GalateanGemmate: Build Y2 Phlegmnation\n\tGalateanGemmate: ah! I was planning for that, actually! that is why I made the red ship\n\n24) Mitotic: Build B2 Phlegmnation\nCatastrophe Phlegmnation Blue\n\n25) GalateanGemmate: Trade Y1 B1 Galateangemmate\n\n26) Mitotic: Build G1 Mitotic\n\n27) GalateanGemmate: Build G2 Galateangemmate\n\tMitotic: my first catastrophe! Granted, it didn't really help me that much, but still!\n\tGalateanGemmate: I'll have to trade my yellow ship in for a blue\n\tGalateanGemmate: but yeah you lost more ships than I\n\n28) Mitotic: Move G1 Mitotic Phlegmnation\n\n29) GalateanGemmate: Attack G1 Phlegmnation\n\n30) Mitotic: Build B1 Mitotic\n\n31) GalateanGemmate: Move B1 Galateangemmate Phlegmnation\n\n32) Mitotic: Move B1 Mitotic Phlegmnation\n\n33) GalateanGemmate: Attack B1 Phlegmnation\n\n34) Mitotic: Discover Y1 Mitotic Y1 Fasst\n\n35) GalateanGemmate: Sacrifice Y2 Phlegmnation\nMove R1 Phlegmnation Mitotic\nMove R1 Phlegmnation Mitotic\n\n36) Mitotic: Attack R1 Mitotic\n\n37) GalateanGemmate: Build R1 Mitotic\nCatastrophe Mitotic Red\n\tGalateanGemmate: lol nice name\n\n38) Mitotic: Build B2 Mitotic\n\n39) GalateanGemmate: Trade G3 R3 Galateangemmate\n\tMitotic: AHHHHHHHHHHHHHHHHHHHHH\n\n40) Mitotic: Trade B2 Y2 Mitotic\n\tMitotic: also thanks I was trying to think of something lewd to say but then I thought of fast and ass and I couldn't come up with anything else\n\tMitotic: oh no\n\tGalateanGemmate: LOL fast ass I love it &#9829;\n\n41) GalateanGemmate: Move G1 Phlegmnation Mitotic\n\tMitotic: my ass is losing pretty fast lol\n\tMitotic: &#9829; is that a heart?\n\tMitotic: D'aww it is \n\tGalateanGemmate: wow unicode support much? guess not :/\n\n42) Mitotic: Trade G1 R1 Mitotic\n\tMitotic: *swallows nervously*\n\n43) GalateanGemmate: Build Y2 Phlegmnation\n\n44) Mitotic: Attack G1 Mitotic\n\n45) GalateanGemmate: Move Y2 Phlegmnation Mitotic\n\n46) Mitotic: Trade Y2 R2 Mitotic\n\tGalateanGemmate: dang I forgot about how the attack mechanics work\r\nI was trying to defend against a really terrifying attack earlier on when you sent your blues after me\r\nbut then I realized you couldn't do it\r\nand now I was about to do the same thing\n\n47) GalateanGemmate: Sacrifice R3 Galateangemmate\nAttack R2 Mitotic\nAttack R1 Mitotic\nAttack B1 Mitotic\n\tMitotic: I just glanced at a strategy guide and one of the first things it said was to not copy the sizes of your opponents stars bc then you'll be too close and it is too hard to defend with only one buffer star in between unless I had some amazing strategy for blitzing you.\r\nWhich I don't\n\tGalateanGemmate: oh! btw here's a strategy link\r\nI think I read it a long time ago, before I even had the game\r\nhttp://icehousegames.org/wiki/index.php?title=Homeworlds_strategy\n\tGalateanGemmate: oh hey you found a strategy guide! probably the one I just gave you!\n\tGalateanGemmate: yeah I think it might just highlight the turn advantage player 1 gets\n\n48) Mitotic: Build G1 Mitotic\n\n49) GalateanGemmate: Sacrifice R2 Mitotic\nAttack G1 Mitotic\nAttack G1 Mitotic\n\tMitotic: yeah it is the same strategy guide I was looking at <3\n\n\tMitotic: I forgot how attacking works (and that the y2 you had made it so you could take my r2), but even if I had remembered, I wouldn't have realized that you could, or even would, do that. Good move!\n\tGalateanGemmate: thanks! the reason I figured it out is that I was *really* worried about you doing it earlier\n\tGalateanGemmate: oops! I didn't mean to make that a rated game!\n\tGalateanGemmate: I mean IDK if it matters\n\tGalateanGemmate: and yeah attacking is p confusing\n\tMitotic: GG GGG\n\tGalateanGemmate: yes! that was a good game! I think you're p close to beating me!\n\nHomeworlds Online (SDG# 30076)\nVariants: "Hard time"\nStarted: 2016.7.14, Ended: 2016.7.25\nParticipants: Draw5PlayAll (S), foksieloy (N)\nWinner: foksieloy\n\n1) foksieloy: Homeworld R1 B3 G3\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\tfoksieloy: Hi, good luck, have fun!\n\n3) foksieloy: Build G1 Foksieloy\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) foksieloy: Trade G1 B1 Foksieloy\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) foksieloy: Build G1 Foksieloy\n\n8) Draw5PlayAll: Build Y1 Draw5playall\n\n9) foksieloy: Trade G1 Y1 Foksieloy\n\n10) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n11) foksieloy: Build B2 Foksieloy\n\tDraw5PlayAll: I have played several games, but as of now I have never won. Though I might win in the future...\n\n12) Draw5PlayAll: Discover B1 Draw5playall G3 Builders\n\tfoksieloy: Well there is always a first time for everything. :)\n\n13) foksieloy: Discover B2 Foksieloy G2 Tibbers\n\n14) Draw5PlayAll: Build B2 Builders\n\n15) foksieloy: Build B2 Tibbers\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) foksieloy: Build B3 Foksieloy\n\n18) Draw5PlayAll: Trade B2 R2 Builders\n\n19) foksieloy: Trade B2 R2 Tibbers\n\n20) Draw5PlayAll: Discover G1 Draw5playall B3 Civilization\n\n21) foksieloy: Build B2 Tibbers\n\n22) Draw5PlayAll: Build B2 Builders\n\n23) foksieloy: Discover B3 Foksieloy Y2 Valor\n\n24) Draw5PlayAll: Build G1 Draw5playall\n\n25) foksieloy: Trade B2 G2 Tibbers\n\n26) Draw5PlayAll: Build G1 Civilization\n\n27) foksieloy: Build B2 Tibbers\n\n28) Draw5PlayAll: Trade B2 Y2 Builders\n\n29) foksieloy: Trade B2 Y2 Tibbers\n\n30) Draw5PlayAll: Trade G1 R1 Civilization\n\n31) foksieloy: Discover G2 Tibbers Y3 Gnar\n\n32) Draw5PlayAll: Build B2 Builders\n\n33) foksieloy: Build G1 Gnar\n\n34) Draw5PlayAll: Build G2 Civilization\n\n35) foksieloy: Sacrifice Y2 Tibbers\nMove G1 Gnar Draw5playall\nMove G2 Gnar Draw5playall\nCatastrophe Draw5playall Green\n\n36) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove G2 Civilization Draw5playall\n\n37) foksieloy: Discover B3 Valor Y3 Sion\n\tDraw5PlayAll: How... Did not see that coming!\n\n38) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild R1 Civilization\nBuild R3 Builders\n\tDraw5PlayAll: Homeworld Stability is quite useful!!\n\n\tfoksieloy: I usually play quite aggressive, so I always look for opportunities to sacrifice y2 and catastrophe a system with 2 in it.\n\tDraw5PlayAll: Weird, SDG did not stop me from losing.\n\tfoksieloy: I am quite sure it used to. Also, the y1 sacrifice you did used to be illegal, you can't leave your home system empty even during turn. Are they programming a new version?\r\n\r\nAnyway, I was 3 turns from winning. Move b3 to your system, trade to r3, win.\n\tDraw5PlayAll: You did not even really need to trade, as sacrificing an R2@Tibbers would have been sufficient no matter what I did.\r\n\r\nThe homeworlds rules at http://www.looneylabs.com/rules/homeworlds say:\r\n"Game Over: It's OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over. However, you are eliminated from the game if both stars in your Homeworld are destroyed, or if none of the ships at your Homeworld are yours."\r\n\r\nI interpreted the homeworlds as having "stability", so that instead of collapsing immediately, they take time to deteriorate, which can be stopped if you can get a ship there.\n\tfoksieloy: Ok, I was wrong about the ships at homeworld rule it seems. Anyway, Good game! If you want a rematch, or a non ranked game, just send me a shout.\n\nHomeworlds Online (SDG# 30024)\nVariants: "Hard time"\nStarted: 2016.7.14, Ended: 2016.7.17\nParticipants: foksieloy (S), wil (N)\nWinner: foksieloy\n\n\tfoksieloy: Hi, been a while! Good luck, have fun!\n\nHomeworlds Online (SDG# 30073)\nVariants: "Unrated"\nStarted: 2016.7.15, Ended: 2016.7.15\nParticipants: Felix (S), GalateanGemmate (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 30020)\nStarted: 2016.7.15, Ended: 2016.8.7\nParticipants: haymire (S), Felix (N)\nWinner: haymire\n\n1) Felix: Homeworld R1 B3 G3\n\thaymire: Hello again mate\n\tFelix: Hello! Good luck and have fun\n\n2) haymire: Homeworld Y3 B2 G3\n\n3) Felix: Build G1 Felix\n\thaymire: Let's try this set up\n\tFelix: That's a good one! My favorite color combo.\n\n4) haymire: Build G1 Haymire\n\n5) Felix: Trade G1 Y1 Felix\n\n6) haymire: Trade G1 Y1 Haymire\n\n7) Felix: B G1 Felix\n\n8) haymire: Build G1 Haymire\n\n9) Felix: Trade G1 B1 Felix\n\n10) haymire: Trade G1 B1 Haymire\n\n11) Felix: Build G1 Felix\n\n12) haymire: Build G1 Haymire\n\n13) Felix: Discover G1 Felix B2 Rim\n\n14) haymire: Trade G1 R1 Haymire\n\n15) Felix: Build G1 Felix\n\n16) haymire: Build G1 Haymire\n\n17) Felix: Build G2 Rim\n\n18) haymire: Discover G1 Haymire Y1 Fret\n\n19) Felix: Trade G2 Y2 Rim\n\n20) haymire: Build Y2 Haymire\n\n21) Felix: Build G2 Rim\n\n22) haymire: Build G2 Haymire\n\n23) Felix: Discover G2 Rim B1 Epic\n\n24) haymire: Discover G2 Haymire R1 Scar\n\n25) Felix: Sacrifice G3 Felix\nBuild G2 Rim\nBuild G3 Felix\nBuild G3 Epic\n\n26) haymire: Sacrifice Y2 Haymire\nMove B1 Haymire Fret\nMove Y1 Haymire Scar\n\n27) Felix: Build Y2 Rim\n\n28) haymire: Move B1 Fret Rim\n\n29) Felix: Sacrifice Y2 Rim\nMove Y2 Rim Epic\nMove G2 Rim Fret\n\n30) haymire: Build R2 Haymire\n\n31) Felix: Trade G2 R2 Epic\n\n32) haymire: Trade R2 B2 Haymire\n\n33) Felix: Build R2 Epic\n\n34) haymire: Sacrifice G3 Haymire\nBuild B3 Haymire\nBuild G2 Fret\nBuild G3 Scar\n\n35) Felix: Sacrifice R2 Epic\nAttack B1 Rim\nAttack G2 Fret\n\n36) haymire: Trade B2 Y2 Haymire\n\n37) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild Y3 Epic\n\n38) haymire: Sacrifice G3 Scar\nBuild G3 Scar\nBuild Y3 Scar\nBuild R2 Haymire\n\n39) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Felix\nBuild B3 Rim\n\n40) haymire: Sacrifice Y3 Scar\nMove B3 Haymire Fret\nMove B3 Fret Rim\nMove B3 Rim Felix\nCatastrophe Felix Blue\n\n41) Felix: M G3 Epic Haymire\n\thaymire: hmmm... maybe that wasn't the best idea\n\n42) haymire: Sacrifice G3 Scar\nBuild G3 Scar\nBuild Y3 Scar\nBuild R2 Haymire\n\tFelix: Haha yeah, maybe not!\n\tDraw5PlayAll: I generally get quite nervous when destroying half the homeworld causes a direct connection. Of course, sometimes this works in my favor.\n\thaymire: Didn't feel like I had much else I could do\n\n43) Felix: T B3 R3 Rim\n\n44) haymire: Sacrifice Y3 Scar\nMove R1 Haymire Felix\nMove R2 Haymire Felix\nMove R2 Haymire Felix\nCatastrophe Felix Red\n\thaymire: Good game mate, \n\tFelix: Likewise. Nice work laying the bait like that. I definitely overlooked that!\n\tDraw5PlayAll: Can you explain?\n\n\nHomeworlds Online (SDG# 30083)\nStarted: 2016.7.15, Ended: 2016.8.1\nParticipants: ladybugsfly (S), Steele (N)\nWinner: ladybugsfly\n\n1) Steele: H B2 G1 Y3\n\n2) ladybugsfly: Homeworld Y3 B1 G3\n\n3) Steele: B Y1 Steele\n\n4) ladybugsfly: Build G1 Ladybugsfly\n\n5) Steele: Trade Y1 G1 Steele\n\n6) ladybugsfly: Build G2 Ladybugsfly\n\n7) Steele: Build G2 Steele\n\n8) ladybugsfly: Trade G1 R1 Ladybugsfly\n\n9) Steele: B Y1 Steele\n\tladybugsfly: I absentmindedly typed p for pink instead of r for red. Glad it error-ed out and didn't make a move I wasn't expecting. 0:-)\n\n10) ladybugsfly: Discover G2 Ladybugsfly B2 Ravenclaw\n\n11) Steele: Discover G2 Steele Y3 Alpha\n\n12) ladybugsfly: Build G1 Ladybugsfly\n\n13) Steele: Discover G2 Alpha Y2 Beta\n\n14) ladybugsfly: Discover G1 Ladybugsfly Y2 Mystic\n\n15) Steele: Build G2 Beta\n\n16) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild G3 Mystic\nBuild G3 Mystic\nBuild G3 Ravenclaw\n\n17) Steele: Trade Y1 R1 Steele\n\n18) ladybugsfly: Move G3 Mystic Ladybugsfly\n\n19) Steele: Build Y1 Steele\n\n20) ladybugsfly: Sacrifice G2 Ravenclaw\nBuild R1 Ladybugsfly\nBuild R2 Ladybugsfly\n\n21) Steele: B G2 Steele\n\n22) ladybugsfly: Discover G1 Mystic Y3 Squirtle\n\n23) Steele: Move G1 Steele Squirtle\n\n24) ladybugsfly: Sacrifice R1 Ladybugsfly\nAttack G1 Squirtle\n\n25) Steele: M G2 Steele Squirtle\n\n26) ladybugsfly: Move G1 Squirtle Steele\n\n27) Steele: A G1 Steele\n\n28) ladybugsfly: Move G1 Squirtle Steele\n\n29) Steele: M G1 Steele Squirtle\n\n30) ladybugsfly: Sacrifice R2 Ladybugsfly\nAttack R1 Steele\nAttack Y1 Steele\n\n31) Steele: Trade Y3 R3 Steele\n\n32) ladybugsfly: Sacrifice G3 Ravenclaw\nBuild R1 Steele\nBuild R2 Steele\nCatastrophe Steele R\nPass\n\n\nHomeworlds Online (SDG# 30082)\nVariants: "Unrated"\nStarted: 2016.7.15, Ended: 2016.8.1\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) Felix: H B1 Y2 G3\n\tDraw5PlayAll: There has been analysis and 1-3 vs 1-2 is perfectly even, off by a margin that could be statistical error.\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: We shall see!\n\n4) Felix: Build G1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: Trade G1 B1 Felix\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Felix: Build B1 Felix\n\n9) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse\n\n10) Felix: Discover B1 Felix G3 Wild\n\n11) Draw5PlayAll: Build G1 Icehouse\n\n12) Felix: Build B2 Wild\n\n13) Draw5PlayAll: Trade G1 Y1 Icehouse\n\tFelix: We have decided that taking control of the blue resources in this system will be the most efficient way to expand our fleet.\n\n14) Felix: Trade B2 Y2 Wild\n\tDraw5PlayAll: Meanwhile, we have been meaning to expand out over the galaxy, and wish to create warp-capable ships. Interestingly enough, our favorite type of Fluxx card is the New Rule...\n\n15) Draw5PlayAll: Build G1 Draw5playall\n\n16) Felix: Build B2 Wild\n\n17) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n18) Felix: Trade B2 R2 Wild\n\n19) Draw5PlayAll: Build G1 Draw5playall\n\n20) Felix: Build B2 Wild\n\n21) Draw5PlayAll: Build Y1 Icehouse\n\n22) Felix: Discover B2 Wild G2 Erness\n\n23) Draw5PlayAll: Build Y2 Draw5playall\n\n24) Felix: Build Y3 Wild\n\n25) Draw5PlayAll: Move R1 Draw5playall Icehouse\n\n26) Felix: Move Y2 Wild Erness\n\n27) Draw5PlayAll: Build G1 Icehouse\n\tDraw5PlayAll: Why are the pieces arranged pseudo-randomly in a 5x5 grid?\n\n28) Felix: Build G2 Felix\n\tFelix: You mean why does the visual layout differ each time? Not sure. There must be some algorithm telling it how to lay out the grid depending on which systems are created first. And then the ships just spawn randomly in each block I suppose.\n\n29) Draw5PlayAll: Build G2 Icehouse\n\n30) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y3 Wild\nBuild Y3 Erness\n\tDraw5PlayAll: Like how wild is actually on my side while Icehouse and erness are on yours? I hope SDG2.0 puts them in a better position relating more to the connections.\n\tFelix: *shrug* I don't know how it works, really. I've just gotten kind of used to seeing the connections wherever they are, rather than needing them to be laid out in order. It may not make that much sense, but then again, we are in outer space :)\n\n31) Draw5PlayAll: Discover G1 Icehouse B3 Cool\n\n32) Felix: Sacrifice G3 Felix\nBuild B2 Wild\nBuild B3 Erness\nBuild G3 Felix\n\n33) Draw5PlayAll: Sacrifice G1 Icehouse\nBuild G1 Cool\n\tFelix: You let me get all the blue again :)\n\n34) Felix: Sacrifice Y2 Erness\nMove B3 Erness Draw5playall\nMove Y3 Erness Draw5playall\n\tDraw5PlayAll: Green teleportation\n\n35) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G1 Cool Felix\nMove G1 Cool Felix\nCatastrophe Felix Green\n\n36) Felix: Sacrifice R2 Wild\nAttack G3 Draw5playall\nAttack Y1 Draw5playall\n\tDraw5PlayAll: One...move...short...\r\n\r\nGood game!\n\n37) Draw5PlayAll: Sacrifice G2 Icehouse\nBuild G1 Draw5playall\nBuild G1 Draw5playall\n\tFelix: Pretty close! Good game. What was your plan to finish me off?\n\tDraw5PlayAll: Nothing. I just saw a trick to threaten your large, but...\r\n\r\nI could delay the game for 4 more moves but there is no point.\n\n38) Felix: Pass\nCatastrophe Draw5playall Green\n\tFelix: Good game! I hope you've learned some things :)\n\tDraw5PlayAll: That I need a red ship to match the number of larges my opponent can invade with?\n\n\nHomeworlds Online (SDG# 30096)\nVariants: "Unrated"\nStarted: 2016.7.19, Ended: 2016.8.7\nParticipants: Draw5PlayAll (S), Kalimantan (N)\nWinner: Draw5PlayAll\n\n1) Kalimantan: Homeworld Y3 B2 G3\n\n2) Draw5PlayAll: Homeworld B1 R3 G3\n\n3) Kalimantan: Build G1 Kalimantan\n\tDraw5PlayAll: Have you ever won a game of homeworlds?\n\tKalimantan: Nope never. My first game ever was the 3p with u and felix.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Oh, interesting. I had to lose seven games before winning that one...\r\n\r\n--\r\n\r\nWe have prepared the civilization vessels to peacefully explore the galaxy.\n\n5) Kalimantan: Discover G1 Kalimantan Y1 Fleeting\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Kalimantan: Discover G1 Fleeting B2 Dagoba\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) Kalimantan: Build G1 Dagoba\n\n10) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n11) Kalimantan: Trade G1 R1 Dagoba\n\n12) Draw5PlayAll: Discover B1 Draw5playall G2 Draw3play2\n\n13) Kalimantan: Build R1 Dagoba\n\n14) Draw5PlayAll: Build Y1 Draw5playall\n\n15) Kalimantan: Build R1 Dagoba\n\n16) Draw5PlayAll: Move Y1 Draw5playall Draw3play2\n\n17) Kalimantan: Build G1 Dagoba\n\n18) Draw5PlayAll: Build B1 Draw3play2\n\n19) Kalimantan: Trade G1 Y1 Dagoba\n\n20) Draw5PlayAll: Build Y2 Draw3play2\n\n21) Kalimantan: Build Y2 Dagoba\n\n22) Draw5PlayAll: Trade Y2 R2 Draw3play2\n\n23) Kalimantan: Sacrifice Y2 Dagoba\nMove R1 Dagoba Draw5playall\nMove R1 Dagoba Draw5playall\n\n24) Draw5PlayAll: Build B2 Draw3play2\n\n25) Kalimantan: Build R2 Dagoba\n\n26) Draw5PlayAll: Discover B2 Draw3play2 G1 Keeper\n\n27) Kalimantan: Build Y2 Dagoba\n\n28) Draw5PlayAll: Build B3 Keeper\n\n29) Kalimantan: Sacrifice G1 Dagoba\nBuild G1 Kalimantan\n\n30) Draw5PlayAll: Build B3 Keeper\n\n31) Kalimantan: Move R1 Dagoba Draw5playall\nCatastrophe Draw5playall R\n\n32) Draw5PlayAll: Build B3 Draw3play2\n\n33) Kalimantan: Move Y1 Dagoba Draw5playall\n\tDraw5PlayAll: You have no blue :P\n\n34) Draw5PlayAll: Move R2 Draw3play2 Draw5playall\n\n35) Kalimantan: Move Y1 Draw5playall Draw3play2\n\n36) Draw5PlayAll: Trade Y1 R1 Draw3play2\n\n37) Kalimantan: Sacrifice R2 Dagoba\nAttack R1 Draw3play2\nAttack B1 Draw3play2\n\n38) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack R1N Draw3play2\nAttack B1N Draw3play2\nPass\n\n39) Kalimantan: Move Y1 Draw3play2 Draw5playall\n\n40) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n41) Kalimantan: Move Y1 Draw5playall Dagoba\n\tDraw5PlayAll: Not sure what you are doing, but I do know our homeworlds are connected.\n\n42) Draw5PlayAll: Build R1 Draw5playall\n\n43) Kalimantan: Trade Y2 G2 Dagoba\n\n44) Draw5PlayAll: Build R2 Draw3play2\n\n45) Kalimantan: Sacrifice G3 Kalimantan\nBuild G1 Dagoba\nBuild G2 Dagoba\nBuild G3 Kalimantan\n\n46) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n47) Kalimantan: Trade G2 Y2 Dagoba\n\tDraw5PlayAll: Ugh, I let you have a factory... though I think I might be safe. For now.\n\tDraw5PlayAll: This is tenser than I thought. But I have a plan.\n\n48) Draw5PlayAll: Move G3 Draw5playall Kalimantan\n\n49) Kalimantan: Sacrifice Y2 Dagoba\nMove Y1 Dagoba Draw5playall\nMove Y1 Draw5playall Kalimantan\n\tDraw5PlayAll: How do you like the, uh, visitor?\r\n\r\nGood game.\n\tDraw5PlayAll: Well, I may have spoken too soon. If you see a way out, please let me know by making the move.\n\n50) Draw5PlayAll: Sacrifice R2 Draw3play2\nAttack G1 Kalimantan\nAttack G3 Kalimantan\n\n\tKalimantan: Well gg.\n\nHomeworlds Online (SDG# 30070)\nVariants: "Unrated"\nStarted: 2016.7.19, Ended: 2016.10.1\nParticipants: GalateanGemmate (S), Mitotic (N)\nWinner: GalateanGemmate\n\n1) Mitotic: Homeworld Y3 G2 B3\n\n2) GalateanGemmate: Homeworld R1 B2 G3\n\n3) Mitotic: Build B1 Mitotic\n\n4) GalateanGemmate: Build G1 Galateangemmate\n\n5) Mitotic: Trade B1 Y1 Mitotic\n\n6) GalateanGemmate: Build G1 Galateangemmate\n\n7) Mitotic: Build B1 Mitotic\n\n8) GalateanGemmate: Trade G1 B1 Galateangemmate\n\n9) Mitotic: Trade B1 G1 Mitotic\n\tGalateanGemmate: &#9829;\n\n10) GalateanGemmate: Trade G1 Y1 Galateangemmate\n\n11) Mitotic: Discover G1 Mitotic R1 Friendship\n\n12) GalateanGemmate: Build G1 Galateangemmate\n\n13) Mitotic: Build B1 Mitotic\n\tGalateanGemmate: that is a cute name!\n\n14) GalateanGemmate: Trade B1 R1 Galateangemmate\n\tMitotic: you know who else has a cute name?\r\nYou!\n\n15) Mitotic: Trade B1 G1 Mitotic\n\n16) GalateanGemmate: Build G2 Galateangemmate\n\n17) Mitotic: Build G2 Mitotic\n\n18) GalateanGemmate: Trade G2 B2 Galateangemmate\n\n19) Mitotic: Trade G2 R2 Mitotic\n\n20) GalateanGemmate: Discover B2 Galateangemmate G3 Laughter\n\n21) Mitotic: Move Y1 Mitotic Friendship\n\n22) GalateanGemmate: Build G2 Galateangemmate\n\n23) Mitotic: Build G2 Friendship\n\n24) GalateanGemmate: Trade G1 B1 Galateangemmate\n\n25) Mitotic: Build B1 Mitotic\n\n26) GalateanGemmate: Discover G2 Galateangemmate Y3 Moscow\n\n27) Mitotic: Move B1 Mitotic Friendship\n\n28) GalateanGemmate: Move R1 Galateangemmate Laughter\n\n29) Mitotic: Build R2 Mitotic\n\n30) GalateanGemmate: Trade B2 Y2 Laughter\n\n31) Mitotic: Move R2 Mitotic Friendship\n\n32) GalateanGemmate: Build G1 Moscow\n\n33) Mitotic: Move R2 Friendship Moscow\n\n34) GalateanGemmate: Sacrifice R1 Laughter\nAttack R2 Moscow\n\n35) Mitotic: Trade G1 R1 Mitotic\n\n36) GalateanGemmate: Build G1 Galateangemmate\n\n37) Mitotic: Move R1 Mitotic Friendship\n\n38) GalateanGemmate: Sacrifice G3 Galateangemmate\nBuild G3 Galateangemmate\nBuild G3 Galateangemmate\nBuild Y1 Laughter\n\n39) Mitotic: Move R1 Friendship Laughter\n\n40) GalateanGemmate: Discover G1 Galateangemmate B3 Fun\n\n41) Mitotic: Attack Y1 Laughter\n\n42) GalateanGemmate: Sacrifice G3 Galateangemmate\nBuild G3 Fun\nBuild R2 Moscow\nBuild R3 Moscow\n\n43) Mitotic: Move R1 Laughter Friendship\n\n44) GalateanGemmate: Move R2 Moscow Friendship\n\n45) Mitotic: Move R1 Friendship Moscow\n\n46) GalateanGemmate: Sacrifice R3 Moscow\nAttack G2 Friendship\nAttack G1 Friendship\nAttack Y1 Friendship\n\n47) Mitotic: Build B1 Mitotic\n\n48) GalateanGemmate: Sacrifice G3 Fun\nBuild G3 Fun\nBuild B2 Galateangemmate\nBuild Y2 Galateangemmate\n\n49) Mitotic: Build R3 Mitotic\n\n50) GalateanGemmate: Trade G3 Y3 Fun\n\n51) Mitotic: Trade R2 Y2 Mitotic\n\tGalateanGemmate: you can also great r3s\n\tGalateanGemmate: create*\n\n52) GalateanGemmate: Build G3 Fun\n\tGalateanGemmate: oh unless the reason you made the blue ship was so there's only one way in or out of your homeworld?\n\n53) Mitotic: Attack G1 Moscow\n\n54) GalateanGemmate: Move Y1 Galateangemmate Laughter\n\n55) Mitotic: Build R2 Moscow\n\tMitotic: rn I'm basically on the defensive until I can get another buffer system going\n\n56) GalateanGemmate: Sacrifice R2 Moscow\nAttack R2 Moscow\nAttack G1 Moscow\n\tGalateanGemmate: got it\n\n57) Mitotic: Attack G1 Moscow\n\n58) GalateanGemmate: Move B1 Galateangemmate Laughter\n\n59) Mitotic: Build R2 Moscow\n\n60) GalateanGemmate: Sacrifice R2 Moscow\nAttack R2 Moscow\nAttack R1 Moscow\n\n61) Mitotic: Move G1 Moscow Friendship\n\n62) GalateanGemmate: Move Y1 Laughter Friendship\n\n63) Mitotic: Build R2 Mitotic\n\tGalateanGemmate: phew! I just realized you could've sacrificed that medium yellow you have to blow up one of my stars\n\n64) GalateanGemmate: Sacrifice Y2 Laughter\nMove Y1 Friendship Mitotic\nMove Y1 Friendship Mitotic\nCatastrophe Mitotic Yellow\n\n\nHomeworlds Online (SDG# 30092)\nStarted: 2016.7.23, Ended: 2016.7.23\nParticipants: Ryzorrin (S), ts52 (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 30078)\nVariants: "Hard time"\nStarted: 2016.7.26, Ended: 2016.7.29\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 Y2 G3\n\tFelix: You back?\n\n\tDraw5PlayAll: This is why I will never do Standing Challenges again.\n\nHomeworlds Online (SDG# 30039)\nVariants: "Hard time"\nStarted: 2016.7.26, Ended: 2016.8.25\nParticipants: Felix (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B2 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\tSimon: Have fun!\n\tFelix: You too!\n\n3) Simon: Build G1 Simon\n\n4) Felix: Build G1 Felix\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Simon: Build Y2 Simon\n\n8) Felix: Build Y2 Felix\n\n9) Simon: Discover Y2 Simon G3 G3\n\n10) Felix: Trade Y2 R2 Felix\n\n11) Simon: Build Y2 G3\n\n12) Felix: Discover Y1 Felix G2 Rim\n\n13) Simon: Discover Y2 G3 B2 B2\n\n14) Felix: Build R1 Felix\n\n15) Simon: Build Y2 Simon\n\n16) Felix: Build Y3 Rim\n\n17) Simon: Build Y3 G3\n\n18) Felix: Discover Y1 Rim B3 Opus\n\n19) Simon: Sacrifice Y1 Simon\nMove Y3 G3 B2\n\n20) Felix: Build G1 Felix\n\n21) Simon: Trade Y2 R2 B2\n\n22) Felix: Trade G1 B1 Felix\n\n23) Simon: Sacrifice G3 Simon\nBuild Y1 G3\nBuild Y2 B2\nBuild Y3 Simon\n\n24) Felix: Move R1 Felix Rim\n\n25) Simon: Trade Y2 G2 B2\n\n26) Felix: Build G1 Felix\n\n27) Simon: Build Y2 B2\n\n28) Felix: Build R1 Rim\n\n29) Simon: Build G1 B2\n\n30) Felix: Discover G1 Felix B2 Ledge\n\n31) Simon: Trade G1 B1 B2\n\n32) Felix: Build G1 Ledge\n\n33) Simon: Move B1 B2 G3\n\n34) Felix: Move R1 Rim Opus\n\n35) Simon: Sacrifice G2 B2\nBuild B1 G3\nBuild B3 G3\n\n36) Felix: Discover Y3 Rim G3 Hangar\n\n37) Simon: Move Y2 Simon Opus\n\n38) Felix: Sacrifice G3 Felix\nBuild R2 Rim\nBuild R3 Opus\nBuild R3 Felix\n\n39) Simon: Sacrifice Y2 Opus\nMove B3 G3 Rim\nMove B1 G3 B2\n\n40) Felix: B R3 Rim\n\n41) Simon: Sacrifice Y1 G3\nMove B3 Rim Felix\n\n42) Felix: Attack B3 Felix\n\n43) Simon: Move B1 B2 Felix\nCatastrophe Felix B\n\n44) Felix: Sacrifice Y3 Hangar\nMove R3 Rim G3\nMove Y1 Opus Simon\nMove R1 Opus Simon\n\n45) Simon: Move Y2 G3 Felix\n\n46) Felix: Sacrifice R2 Rim\nAttack Y2 Felix\nAttack B1 G3\n\n47) Simon: Move Y3 B2 Felix\n\n48) Felix: Sacrifice Y2 Felix\nMove G1 Ledge Felix\nMove R3 Opus Simon\n\n49) Simon: Sacrifice R2 B2\nAttack R3 Felix\nAttack R3 Simon\n\n50) Felix: Sacrifice G1 Ledge\nBuild R2 Simon\nCatastrophe Simon Red\n\n51) Simon: Sacrifice R3 Felix\nAttack R2 Felix\nAttack G1 Felix\nAttack Y1 Simon\n\tFelix: Really nice move.\n\tDraw5PlayAll: This is sure to be an exciting conclusion. If R2N@B2 was sacrificed, Simon would only attack two of the three ships and thus Felix could blast the alien army...\n\n\tFelix: What I would have given to have a B2 during the last several moves...\n\tSimon: gg! Sharpest ending in a while, yes :)\n\tSimon: Always happy to rematch!\n\tDraw5PlayAll: Would you have given up your R3@g3 for a B2?\n\nHomeworlds Online (SDG# 30118)\nVariants: "Unrated"\nStarted: 2016.7.26, Ended: 2016.8.25\nParticipants: Kalimantan (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 R1 G3\n\n2) Kalimantan: Homeworld Y3 B2 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\tKalimantan: Thanks\n\n4) Kalimantan: Build G1 Kalimantan\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Kalimantan: Trade G1 R1 Kalimantan\n\n7) Felix: Build Y1 Felix\n\n8) Kalimantan: Discover R1 Kalimantan R1 Redplanet\n\n9) Felix: Build Y1 Felix\n\n10) Kalimantan: Build G1 Kalimantan\n\n11) Felix: Discover Y1 Felix G2 Rim\n\n12) Kalimantan: Build G1 Kalimantan\n\n13) Felix: Build Y2 Rim\n\n14) Kalimantan: Move G1 Kalimantan Redplanet\n\n15) Felix: Build Y2 Felix\n\n16) Kalimantan: Trade G3 Y3 Kalimantan\n\n17) Felix: D Y1 Rim G1 Arkos\n\n18) Kalimantan: Move Y3 Kalimantan Arkos\n\n19) Felix: Trade Y2 R2 Felix\n\n20) Kalimantan: Build R2 Redplanet\n\n21) Felix: Build Y2 Rim\n\n22) Kalimantan: Sacrifice R1 Redplanet\nAttack Y1N Arkos\n\n23) Felix: B G2 Felix\n\n24) Kalimantan: Build G2 Redplanet\n\tDraw5PlayAll: Interesting very interesting\n\n25) Felix: Sacrifice Y2 Rim\nMove Y2 Rim Arkos\nMove Y2 Arkos Kalimantan\n\n26) Kalimantan: Sacrifice G2 Redplanet\nBuild G2 Kalimantan\nBuild G2 Kalimantan\n\n27) Felix: Sacrifice R2 Felix\nAttack G2 Kalimantan\nAttack G2 Kalimantan\n\n28) Kalimantan: Move Y3 Arkos Kalimantan\n\n29) Felix: S G2 Felix\nB Y2 Kalimantan\nB G2 Kalimantan\nC Kalimantan Yellow\nC Kalimantan Green\n\n\tFelix: Good game! I didn't know it was possible to do a double catastrophe like that... \n\nHomeworlds Online (SDG# 30097)\nVariants: "Unrated, Sinister"\nStarted: 2016.7.27, Ended: 2016.11.23\nParticipants: Felix (S), Kalimantan (W), Skully (N), Draw5PlayAll (E)\nWinner: Felix\n\n1) Skully: Homeworld G3 Y2 B3\n\n2) Draw5PlayAll: Homeworld R3 B1 G3\n\n3) Felix: Homeworld G2 R3 B3\n\n4) Kalimantan: Homeworld G2 B1 Y3\n\n5) Skully: Build B1 Skully\n\tKalimantan: Hey what does it mean that the variant is sinister?\n\tDraw5PlayAll: Objective is to destroy the guy on your left.\r\nSkulls must destroy Draw5PlayAll (me)\r\nI must destroy Felix (annoyingly)\r\nFelix must destroy Kalimantan\r\nKali must destroy Skully\n\tDraw5PlayAll: If someone other than your right destroys you, the game continues without you. So if I was destroyed by Felix (say) then Skully's target becomes Felix.\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) Felix: Build B1 Felix\n\tDraw5PlayAll: There is a flaw though. If I am facing imminent doom from Skully, I might set up the conditions so that one of the other two players can call catastrophe and eliminate me, preventing Skully from winning.\n\n8) Kalimantan: Build Y1 Kalimantan\n\n9) Skully: Discover B1 Skully Y1 Evil\n\n10) Draw5PlayAll: Build G1 Draw5playall\nPass\nPass\nPass\nPass\nPass\nPass\nPass\n\n11) Felix: Trade B1 Y1 Felix\n\n12) Kalimantan: Build Y1 Kalimantan\n\n13) Skully: Trade B1 Y1 Evil\n\n14) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n15) Felix: Build Y2 Felix\n\n16) Kalimantan: Discover Y1 Kalimantan B3 Hell\n\tDraw5PlayAll: The Evil system is completely redundant!\n\n17) Skully: Build B1 Skully\n\tSkully: Redundent?? No... Evil?? Yesss! \n\n18) Draw5PlayAll: Build G1 Draw5playall\n\n19) Felix: T Y1 G1 Felix\n\tDraw5PlayAll: There really is no point to this conspiracy. If I really, really have to move out I can easily trade my G3 into a Y3 to give myself movement powers.\n\tSkully: Ah that is true. Id have to be just plane Sinister if that were part of my plan. ;)\n\n20) Kalimantan: Build Y1 Kalimantan\n\tFelix: I see what you did there :p\n\tDraw5PlayAll: *I'd *plain\r\n\r\nKali should be the one to break the conspiracy. After all, the more damage I do to Felix, the less Kali has to worry about Felix.\n\n21) Skully: Move B1 Skully Evil\n\n22) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n23) Felix: Build Y2 Felix\n\n24) Kalimantan: Discover Y1 Kalimantan G3 Paradise\n\n25) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n26) Felix: Discover Y2 Felix G1 Lykos\n\n27) Kalimantan: Trade Y1 G1 Kalimantan\n\n28) Draw5PlayAll: Discover B1 Draw5playall G2 Keeper\n\tDraw5PlayAll: Hahahaha\n\tSkully: Dam srry guys been having issues wit my internet srry guys\n\tFelix: No problem. Sorry you had to drop out!\n\n29) Felix: B B1 Felix\n\tDraw5PlayAll: Blame me. After all, normally I would give a 1-3 day allowance before forcing a resignation.\n\tDraw5PlayAll: Seriously??\n\tDraw5PlayAll: I will keep Kalimantan purely because I cannot fight Felix alone!\n\n30) Kalimantan: Move G1 Kalimantan Hell\n\n31) Draw5PlayAll: Build B2 Keeper\n\n32) Felix: Move B1 Felix Lykos\n\tDraw5PlayAll: Felix is not so nice...\n\n33) Kalimantan: Build G1 Hell\n\n34) Draw5PlayAll: Build G2 Draw5playall\n\tFelix: What does the vote thing mean?\r\n\n\n35) Felix: Build B2 Lykos\n\tDraw5PlayAll: System console.\n\n36) Kalimantan: Build G2 Hell\n\n37) Draw5PlayAll: Build G3 Draw5playall\n\tFelix: That doesn't help me :P\n\n38) Felix: Discover G1 Felix Y1 Pax\n\tDraw5PlayAll: Go to your user page. It should have a thing called system console.\n\n39) Kalimantan: Build Y2 Kalimantan\n\n40) Draw5PlayAll: Discover G2 Draw5playall B2 Icehouse\n\n41) Felix: Build G3 Pax\n\tDraw5PlayAll: Hmmmm....\n\tDraw5PlayAll: For a second I thought I had just made a huge mistake. But really, Felix just set it up on that move.\n\n42) Kalimantan: Trade G2 B2 Hell\n\n43) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Icehouse\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\n\n44) Felix: Sacrifice G3 Pax\nBuild G3 Pax\nBuild Y3 Lykos\nBuild Y3 Felix\n\n45) Felix: Trade Y2 R2 Lykos\n\n46) Draw5PlayAll: Move Y3 Draw5playall Keeper\n\tDraw5PlayAll: Funny how I went from frozen out of yellow to leading pip counts 17-14-11-5. Though that is in turn order so it might be 17-20-14 next time it comes to my turn.\n\n47) Felix: Sacrifice Y2 Felix\nMove Y3 Lykos Keeper\nMove G3 Pax Keeper\n\tDraw5PlayAll: I see a move for West. Sac your Y2@Kalimantan and move two greens at Hell into Pax, blowing up his factory. This move is completely optional.\n\tDraw5PlayAll: Time to resume the clocks.\n\tDraw5PlayAll: What I mean is, I have belayed the orders to assist our galactic neighbors in life support. In approximately 84 hours they will be dead.\n\n48) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover Y3 Keeper B3 B3\nMove G1 Draw5playall Keeper\n\n49) Felix: Sacrifice Y3 Felix\nMove Y3 Keeper Draw5playall\nMove G3 Keeper Draw5playall\nPass\n\n50) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Draw5playall\nBuild R1 Draw5playall\nBuild R1 Draw5playall\n\tFelix: Just us then, eh?\n\tDraw5PlayAll: 4P never seems to work. Someone ALWAYS seems to forfeit on time. :(\r\n\r\nMe vs you vs dragon has not had that happen yet though!\n\n51) Felix: Catastrophe Draw5playall Red\nPass\n\n\nHomeworlds Online (SDG# 30110)\nStarted: 2016.7.27, Ended: 2016.10.25\nParticipants: ts52 (S), Ryzorrin (N)\nWinner: ts52\n\n1) Ryzorrin: Homeworld B2 R1 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) Ryzorrin: Build G1 Ryzorrin\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\tRyzorrin: Thanks, you too. I only learned how to play this game over the weekend at Looney Con.\n\tts52: That's great! I was bummed I couldn't make it. Hopefully they'll do it again next year.\n\n5) Ryzorrin: Trade G1 Y1 Ryzorrin\n\n6) ts52: Build G1 Ts52\n\tRyzorrin: I hope so too! It was utterly fantastic.\n\n7) Ryzorrin: Build Y1 Ryzorrin\n\n8) ts52: Discover G1 Ts52 B1 Gonzo\n\n9) Ryzorrin: Trade Y1 B1 Ryzorrin\n\tRyzorrin: trade y1 b1 Ryzorrin\n\n10) ts52: Trade G1 Y1 Ts52\n\tDraw5PlayAll: A while back I *almost* typed my move into the chat box, but then I realized what happened. Huh.\n\n11) Ryzorrin: Build G1 Ryzorrin\n\tts52: Sorry for the delay.\r\n\n\tRyzorrin: No problem. I figured this game would take quite awhile.\n\n12) ts52: Move Y1 Ts52 Gonzo\n\n13) Ryzorrin: Discover G1 Ryzorrin B3 Click\n\tts52: Thanks for understanding. I'm afraid I'm going off grid again until Friday. But I'll be back online to make my move Friday night.\n\n14) ts52: Build G1 Ts52\n\n15) Ryzorrin: Build G2 Click\n\n16) ts52: Build G2 Gonzo\n\n17) Ryzorrin: Trade G2 Y2 Click\n\n18) ts52: Trade G2 B2 Gonzo\n\n19) Ryzorrin: Build G2 Click\n\n20) ts52: Build G2 Gonzo\n\n21) Ryzorrin: Trade G2 R2 Click\n\n22) ts52: Trade G1 R1 Ts52\n\n23) Ryzorrin: Build G1 Ryzorrin\n\n24) ts52: Build G2 Ts52\n\n25) Ryzorrin: Sacrifice G3 Ryzorrin\nBuild G2 Click\nBuild B1 Ryzorrin\nBuild G3 Ryzorrin\n\n26) ts52: Discover B2 Gonzo G3 Kermit\n\n27) Ryzorrin: Discover B1 Ryzorrin Y3 Knock\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Kermit\nBuild B3 Kermit\n\n29) Ryzorrin: Move B1 Ryzorrin Kermit\nCatastrophe Kermit B\n\n30) ts52: Discover G2 Gonzo G3 Kermit\n\n31) Ryzorrin: Move R2 Click Gonzo\n\n32) ts52: Discover G2 Ts52 Y1 Bigbird\n\n33) Ryzorrin: Attack Y1 Gonzo\n\n34) ts52: Sacrifice G2 Kermit\nBuild G2 Ts52\nBuild G3 Gonzo\n\n35) Ryzorrin: Sacrifice G3 Ryzorrin\nBuild G3 Ryzorrin\nBuild Y2 Gonzo\nBuild Y2 Click\n\n36) ts52: Sacrifice R1 Ts52\nAttack R2 Gonzo\n\n37) Ryzorrin: Build Y3 Ryzorrin\n\n38) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild R1 Gonzo\nBuild R1 Gonzo\n\n39) Ryzorrin: Sacrifice B1 Knock\nTrade Y2 R2 Gonzo\nCatastrophe Gonzo R\n\n40) ts52: T G1 R1 Gonzo\n\n41) Ryzorrin: Discover Y1 Gonzo R3 Tap\n\n42) ts52: Trade G3 Y3 Gonzo\n\tRyzorrin: discover y1 gonzo r3 Tap\n\tRyzorrin: Ah shoot I did that again.\n\n43) Ryzorrin: Discover G2 Click B1 Clap\n\n44) ts52: Sacrifice G3 Ts52\nBuild G1 Bigbird\nBuild G3 Ts52\nBuild Y2 Gonzo\n\tRyzorrin: g2 click discover b1 Clap\n\n45) Ryzorrin: Build G3 Clap\n\tDraw5PlayAll: I keep putting chat messages into the notebook. Of course I usually catch before I even finish.\n\tts52: Yeah, I'm not sure I see much point in the notebook.\n\n46) ts52: Trade G2 R2 Ts52\n\tDraw5PlayAll: Record ideas? Like you find this killer strategy idea and you want to not forget?\n\n47) Ryzorrin: Trade G3 R3 Clap\n\n48) ts52: Move Y3 Gonzo Tap\n\n49) Ryzorrin: Discover Y3 Ryzorrin B3 Thud\n\n50) ts52: Attack Y1 Tap\n\n51) Ryzorrin: Sacrifice G3 Ryzorrin\nBuild G2 Click\nBuild G3 Clap\nBuild G3 Ryzorrin\n\n52) ts52: Sacrifice G2 Bigbird\nBuild R1 Ts52\nBuild R2 Gonzo\n\n53) Ryzorrin: Move G1 Click Clap\n\n54) ts52: Trade R2 B2 Ts52\n\tDraw5PlayAll: Sounds vs Muppets.\n\n55) Ryzorrin: Sacrifice Y3 Thud\nMove G3 Clap Ts52\nMove G1 Clap Ts52\nMove G2 Clap Ts52\nCatastrophe Ts52 G\n\n56) ts52: Sacrifice Y2 Gonzo\nMove Y3 Tap Gonzo\nMove Y3 Gonzo Ts52\n\n57) Ryzorrin: Move G2 Click Clap\n\n58) ts52: Move B2 Ts52 Bigbird\n\n59) Ryzorrin: Trade Y2 G2 Click\n\n60) ts52: Build B1 Bigbird\n\n61) Ryzorrin: Build R2 Clap\n\n62) ts52: Build B3 Bigbird\n\n63) Ryzorrin: Trade R3 B3 Clap\n\n64) ts52: Move B3 Bigbird Tap\n\n65) Ryzorrin: Sacrifice Y2 Click\nMove R2 Clap Click\nMove R2 Click Bigbird\n\n66) ts52: Sacrifice R1 Gonzo\nAttack R2 Bigbird\n\n67) Ryzorrin: Sacrifice G3 Ryzorrin\nBuild G1 Click\nBuild G2 Clap\nBuild G3 Ryzorrin\n\n68) ts52: Build G3 Bigbird\n\n69) Ryzorrin: Sacrifice G3 Ryzorrin\nBuild G3 Clap\nBuild G3 Ryzorrin\nBuild Y2 Ryzorrin\n\n70) ts52: Move G1 Bigbird Tap\n\n71) Ryzorrin: Trade G3 R3 Clap\n\n72) ts52: Build G3 Tap\n\n73) Ryzorrin: Sacrifice G1 Ryzorrin\nBuild R1 Clap\n\n74) ts52: Sacrifice G3 Tap\nBuild G1 Bigbird\nBuild G3 Tap\nBuild Y2 Tap\n\n75) Ryzorrin: Trade G2 Y2 Clap\n\n76) ts52: Discover G3 Bigbird Y3 Zoe\n\n77) Ryzorrin: Trade G2 R2 Click\n\n78) ts52: Build R3 Bigbird\n\n79) Ryzorrin: Move R3 Clap Zoe\n\tDraw5PlayAll: These are diverse systems! IDIC.\n\n80) ts52: Sacrifice R1 Ts52\nAttack R3 Zoe\n\n81) Ryzorrin: Sacrifice Y2 Clap\nMove R1 Clap Ts52\nMove B3 Clap Ts52\n\tRyzorrin: Move r3 clap zoe\n\n82) ts52: Sacrifice R2 Bigbird\nAttack R1 Ts52\nAttack B3 Ts52\n\n83) Ryzorrin: Build G2 Clap\n\n84) ts52: Sacrifice Y3 Ts52\nMove B3 Tap Ryzorrin\nMove G3 Tap Ryzorrin\nMove G3 Zoe Ryzorrin\n\n85) Ryzorrin: Sacrifice R2 Click\nAttack B3 Ryzorrin\nAttack G3 Ryzorrin\n\n86) ts52: Sacrifice R3 Bigbird\nAttack G3 Ryzorrin\nAttack G3 Ryzorrin\nAttack B3 Ryzorrin\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 30116)\nVariants: "Hard time"\nStarted: 2016.7.27, Ended: 2016.7.30\nParticipants: wil (S), mxpf (N)\nWinner: mxpf\n\n1) mxpf: Homeworld G1 B2 Y3\n\n\tmxpf: Hi! This is my first time playing Homeworlds online...let's see how I do!\n\tDraw5PlayAll: I think you should challenge someone else. Wil has not responded in weeks.\r\n\r\nI am willing to play, just select Draw5PlayAll in the Challenge Whom field.\n\tmxpf: I KILLED IT!\n\tDraw5PlayAll: Uhhh... the user has not logged on for a month. It's anyone's guess if&when he will return.\n\tmxpf: I kid, I kid.\n\nHomeworlds Online (SDG# 30137)\nVariants: "Hard time"\nStarted: 2016.7.28, Ended: 2016.7.29\nParticipants: Draw5PlayAll (S), mxpf (N)\nWinner: Draw5PlayAll\n\n1) mxpf: Homeworld G1 B2 Y3\n\n2) Draw5PlayAll: Homeworld R1 B3 G3\n\tmxpf: Hi! Thanks for finding me in that other game. Good luck!\n\tmxpf: Hi! Thanks for finding me in that other game. Good luck!\n\tmxpf: Weird, not sure why that message double posted, haha\n\tDraw5PlayAll: Well, I chose the option to observe all Homeworlds games. Double posting is NOT a new bug.\n\n3) mxpf: Build Y1 Mxpf\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) mxpf: Trade Y3 B3 Mxpf\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) mxpf: Discover B3 Mxpf Y3 Mutaranebula\n\tDraw5PlayAll: We needed to obtain warp drives to pursue our peaceful quest for new life and new civilizations.\n\tmxpf: hahaha\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: !!!\n\n9) mxpf: Trade B3 G3 Mutaranebula\n\tmxpf: probably a bad move, I have no idea what I'm doing\n\n10) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse\n\tDraw5PlayAll: You are safe because I cannot access your home world yet.\r\nhttp://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy\n\n11) mxpf: Trade Y1 R1 Mxpf\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) mxpf: Build G2 Mutaranebula\n\n14) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Icehouse\nBuild G2 Draw5playall\nBuild G3 Draw5playall\n\n15) mxpf: Sacrifice G3 Mutaranebula\nBuild G3 Mutaranebula\nBuild G3 Mutaranebula\nBuild R1 Mxpf\n\tmxpf: Nice one!\n\n16) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove G1 Icehouse Mutaranebula\nCatastrophe Mutaranebula Green\n\n\tmxpf: Good game!\n\tDraw5PlayAll: Well, you always want to have a large in the homeworld... that was probably your mistake. (Unless you are going for THE winning kill and you are 100% sure you will succeed.)\r\nhttp://www.icehousegames.org/wiki/index.php?title=Homeworlds_strategy\n\tmxpf: Gotcha. Thanks!\n\nHomeworlds Online (SDG# 30117)\nVariants: "Hard time"\nStarted: 2016.7.29, Ended: 2016.8.13\nParticipants: mxpf (S), Simon (N)\nWinner: mxpf\n\n1) Simon: Homeworld R2 B1 G3\n\n2) mxpf: Homeworld Y1 G3 B3\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\tmxpf: You too!\n\n4) mxpf: Build B1 Mxpf\n\n5) Simon: Trade G1 B1 Simon\n\n6) mxpf: Build B2 Mxpf\n\n7) Simon: Build B2 Simon\n\n8) mxpf: Trade B1 Y1 Mxpf\n\tmxpf: I'm screwed already!! Haha\n\n9) Simon: Trade B2 Y2 Simon\n\n10) mxpf: Trade B2 R2 Mxpf\n\n11) Simon: Discover B1 Simon G3 G3\n\n12) mxpf: Discover R2 Mxpf Y2 Mutara\n\n13) Simon: Build G1 Simon\n\n14) mxpf: Move R2 Mutara G3\n\n15) Simon: Trade G1 R1 Simon\n\n16) mxpf: Attack B1 G3\n\n17) Simon: Move G3 Simon G3\n\n18) mxpf: Sacrifice Y1 Mxpf\nDiscover R2 G3 Y2 Ceres\n\n19) Simon: Move R1 Simon G3\n\n20) mxpf: Discover R2 Ceres B3 Luna\n\n21) Simon: Build G1 G3\n\n22) mxpf: Trade B1 G1 G3\nCatastrophe G3 G\n\n\tSimon: gg\n\tmxpf: U2!\n\nHomeworlds Online (SDG# 30135)\nStarted: 2016.8.2, Ended: 2016.8.17\nParticipants: mxpf (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B1 R3 G3\n\n2) mxpf: Homeworld B3 Y2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) mxpf: Build G1 Mxpf\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tmxpf: I'll try to last longer this time\n\n6) mxpf: Build G1 Mxpf\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) mxpf: Trade G1 B1 Mxpf\n\n9) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse\n\n10) mxpf: Discover G1 Mxpf G1 Arboria\n\n11) Draw5PlayAll: Build G2 Draw5playall\n\n12) mxpf: Sacrifice G1 Arboria\nBuild B1 Mxpf\n\n13) Draw5PlayAll: Build Y1 Draw5playall\n\n14) mxpf: Discover B1 Mxpf Y1 Amber\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) mxpf: Build B2 Mxpf\n\n17) Draw5PlayAll: Move Y2 Draw5playall Icehouse\n\n18) mxpf: Trade B2 Y2 Mxpf\n\n19) Draw5PlayAll: Build Y3 Icehouse\n\n20) mxpf: Sacrifice G3 Mxpf\nBuild B2 Amber\nBuild B2 Amber\nBuild B3 Mxpf\n\n21) Draw5PlayAll: Trade Y3 R3 Icehouse\n\n22) mxpf: Move B1 Amber Icehouse\n\n23) Draw5PlayAll: Sacrifice Y2 Icehouse\nMove R3 Icehouse Amber\nMove G1 Icehouse Amber\n\n24) mxpf: Trade B1 R1 Icehouse\n\n25) Draw5PlayAll: Attack B2S Amber\n\tmxpf: I think I'm in trouble...\n\n26) mxpf: Sacrifice B2 Amber\nTrade B3 R3 Mxpf\nTrade B1 G1 Mxpf\n\tDraw5PlayAll: Have it.\n\n27) Draw5PlayAll: Discover G2 Draw5playall B2 Action\n\n28) mxpf: Build Y2 Mxpf\n\n29) Draw5PlayAll: Build Y3 Draw5playall\n\n30) mxpf: Discover Y2 Mxpf G1 Scrofula\n\n31) Draw5PlayAll: Move Y1 Draw5playall Action\n\n32) mxpf: Build Y3 Scrofula\n\tmxpf: A size 3 ship can capture a size 3 ship, right?\n\tDraw5PlayAll: Yes, it can.\n\n33) Draw5PlayAll: Build Y3 Action\n\tmxpf: Hmm.\n\n34) mxpf: Build G2 Mxpf\n\tmxpf: What would you do if you were me right now? I mean, besides surrender\n\tDraw5PlayAll: Sacrifice that Y2@mxpf and bomb all my yellows... if it were your move!\n\n35) Draw5PlayAll: Build G2 Draw5playall\n\tmxpf: Haha!\n\n36) mxpf: Trade G1 R1 Mxpf\n\n37) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 Action\nBuild G3 Draw5playall\nBuild B1 Amber\n\tmxpf: There are a lot f pieces on the board. My head hurts\n\tDraw5PlayAll: You never moved.\n\tmxpf: I know, I know\n\tmxpf: I have 4 days to mull it over ;-)\n\n38) mxpf: Move Y3 Scrofula Action\n\n39) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Amber\nBuild B1 Amber\n\n40) mxpf: Sacrifice R3 Mxpf\nAttack Y3 Action\nAttack G2 Action\nAttack Y1 Action\n\n41) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove Y1 Draw5playall Action\nMove R3 Amber Mxpf\nMove G3 Amber Mxpf\n\n42) mxpf: Sacrifice Y2 Scrofula\nDiscover Y1 Action Y3 Argo\nMove Y3 Action Amber\n\n43) Draw5PlayAll: Sacrifice R3 Mxpf\nAttack R1S Mxpf\nAttack G2S Mxpf\nAttack Y2S Mxpf\n\n\tDraw5PlayAll: But then I just kill all your ships.\n\tDraw5PlayAll: Yeah, your big mistake was when you gave up your R3. You *always* need to keep a large at your homeworld unless you are 100% sure you are delivering the final blow (or you can get a large back in time).\r\n\r\nGood game!\n\tmxpf: Ah OK. I appreciate all the commentary, it's helping me learn!\n\nHomeworlds Online (SDG# 30141)\nVariants: "Hard time"\nStarted: 2016.8.2, Ended: 2016.8.24\nParticipants: Simon (S), mxpf (N)\nWinner: Simon\n\n1) mxpf: Homeworld Y3 G2 B3\n\tmxpf: Hi!\n\n2) Simon: Homeworld B3 Y1 G3\n\tSimon: Have fun :)\n\n3) mxpf: Build B1 Mxpf\n\n4) Simon: Build G1 Simon\n\n5) mxpf: Trade B1 G1 Mxpf\n\n6) Simon: Discover G1 Simon B2 B2\n\n7) mxpf: Build B1 Mxpf\n\n8) Simon: Build G1 Simon\n\n9) mxpf: Build G2 Mxpf\n\n10) Simon: Build G2 Simon\n\n11) mxpf: Discover G2 Mxpf Y1 Artax\n\n12) Simon: Build G3 B2\n\n13) mxpf: Build G3 Artax\n\n14) Simon: Trade G1 Y1 B2\n\n15) mxpf: Discover G2 Artax Y2 Amber\n\n16) Simon: Trade G1 R1 Simon\n\n17) mxpf: Sacrifice G3 Artax\nBuild G1 Amber\nBuild G1 Amber\nBuild G3 Mxpf\n\n18) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild Y1 B2\nBuild Y2 B2\n\n19) mxpf: Trade G3 Y3 Mxpf\n\n20) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 B2\nBuild R1 Simon\n\n21) mxpf: Sacrifice B1 Mxpf\nTrade G2 Y2 Amber\n\n22) Simon: Sacrifice Y2 B2\nMove G2 Simon Amber\nDiscover Y1 B2 R1 R1\n\n23) mxpf: Sacrifice Y3 Mxpf\nMove Y2 Amber Simon\nMove G1 Amber Simon\nMove G1 Amber Simon\n\n24) Simon: Attack Y2 Simon\n\n25) mxpf: Build G2 Simon\nCatastrophe Simon G\n\n26) Simon: Sacrifice G3 B2\nBuild Y2 B2\nBuild Y3 R1\nBuild Y3 Simon\n\n27) mxpf: Trade B3 R3 Mxpf\n\n28) Simon: Build G1 B2\n\n29) mxpf: Build R2 Mxpf\n\n30) Simon: Discover G3 B2 B1 B1\n\n31) mxpf: Build R2 Mxpf\n\n32) Simon: Build G1 B1\n\n\tmxpf: Good game! I learned a lot. Sorry I didn't put up much of a fight!\n\tSimon: gg! No need to feel sorry, always happy for a rematch.\n\tDraw5PlayAll: Time forfeit, or what?\n\tSimon: Not time. With the y monopoly, I can build for doomsday in absolute safety.\n\tmxpf: Time forfeit!? What do you take me for?? ;-)\n\nHomeworlds Online (SDG# 30167)\nStarted: 2016.8.2, Ended: 2016.8.11\nParticipants: Steele (S), ladybugsfly (N)\nWinner: ladybugsfly\n\n1) ladybugsfly: Homeworld Y3 G2 B3\n\n2) Steele: H B2 Y1 G3\n\n3) ladybugsfly: Build B1 Ladybugsfly\n\n4) Steele: B G1 Steele\n\n5) ladybugsfly: Trade B1 G1 Ladybugsfly\n\n6) Steele: B G1 Steele\n\n7) ladybugsfly: Build G2 Ladybugsfly\n\n8) Steele: D G1 Steele Y3 Alpha\n\n9) ladybugsfly: Trade G1 R1 Ladybugsfly\n\n10) Steele: S G3 Steele\nB G1 Alpha\nB G2 Alpha\nB G3 Steele\nPass\n\n11) ladybugsfly: Build G3 Ladybugsfly\n\n12) Steele: B G3 Steele\n\n13) ladybugsfly: Trade G3 Y3 Ladybugsfly\n\n14) Steele: D G1 Steele G3 Beta\n\n15) ladybugsfly: Sacrifice Y3 Ladybugsfly\nDiscover B3 Ladybugsfly R1 Good\nDiscover B3 Good R3 Morning\nMove B3 Morning Steele\n\n16) Steele: D G1 Alpha Y1 Gamma\n\n17) ladybugsfly: Sacrifice G2 Ladybugsfly\nBuild R1 Ladybugsfly\nBuild R1 Ladybugsfly\n\n18) Steele: Discover G1 Gamma B3 Omega\n\n19) ladybugsfly: Sacrifice R1 Ladybugsfly\nAttack G3 Steele\n\n20) Steele: Move G2 Alpha Steele\n\n21) ladybugsfly: Trade G3 R3 Steele\n\n22) Steele: Pass\n\tSteele: Good move...\n\n23) ladybugsfly: Sacrifice R3 Steele\nAttack G3 Steele\nAttack G2 Steele\nPass\n\tladybugsfly: <3\n\n\nHomeworlds Online (SDG# 30180)\nStarted: 2016.8.3, Ended: 2016.8.29\nParticipants: Babamots (S), RogueJedi234 (N)\nWinner: Babamots\n\n1) RogueJedi234: Homeworld B3 R2 G3\n\n2) Babamots: Homeworld G2 R1 B3\n\n3) RogueJedi234: Build G1 Roguejedi234\n\tBabamots: So is this a chat box?\n\n4) Babamots: Build B1 Babamots\n\n5) RogueJedi234: Build G1 Roguejedi234\n\n6) Babamots: Build B1 Babamots\n\n7) RogueJedi234: Trade G1 Y1 Roguejedi234\n\n8) Babamots: Trade B1 Y1 Babamots\n\n9) RogueJedi234: Discover G1 Roguejedi234 B1 Yavin4\n\n10) Babamots: Build B1 Babamots\n\n11) RogueJedi234: Build G1 Yavin4\n\n12) Babamots: Discover B1 Babamots G3 Cuellar\n\n13) RogueJedi234: Build G1 Roguejedi234\n\n14) Babamots: Build B2 Cuellar\n\n15) RogueJedi234: Build G2 Yavin4\n\n16) Babamots: Discover B1 Babamots G3 Galorndon\n\n17) RogueJedi234: Trade G2 R2 Yavin4\n\n18) Babamots: Trade B2 R2 Cuellar\n\n19) RogueJedi234: Discover G1 Roguejedi234 Y1 Tatooine\n\n20) Babamots: Build B2 Galorndon\n\n21) RogueJedi234: Build G2 Roguejedi234\n\n22) Babamots: Trade B2 G2 Galorndon\n\n23) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G3 Roguejedi234\nBuild Y2 Roguejedi234\nBuild R1 Yavin4\n\n24) Babamots: Build Y2 Babamots\n\n25) RogueJedi234: Move Y2 Roguejedi234 Tatooine\n\n26) Babamots: Sacrifice G2 Galorndon\nBuild B2 Galorndon\nBuild B2 Cuellar\n\n27) RogueJedi234: Discover Y2 Tatooine B3 Bespin\n\n28) Babamots: Trade B2 Y2 Cuellar\n\n29) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild Y3 Bespin\nBuild G2 Tatooine\nBuild G3 Roguejedi234\n\n30) Babamots: Sacrifice Y2 Babamots\nMove Y2 Cuellar Yavin4\nMove B2 Galorndon Yavin4\n\n31) RogueJedi234: Trade Y3 R3 Bespin\n\n32) Babamots: Sacrifice R2 Cuellar\nAttack R2N Yavin4\nAttack G1N Yavin4\n\n33) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G3 Roguejedi234\nBuild R1 Bespin\nBuild Y2 Bespin\n\n34) Babamots: Attack R1N Yavin4\n\n35) RogueJedi234: Sacrifice Y2 Bespin\nDiscover G2 Tatooine Y3 Hoth\nMove G1 Tatooine Hoth\n\n36) Babamots: Attack G1N Yavin4\n\n37) RogueJedi234: Trade G2 B2 Roguejedi234\n\n38) Babamots: Build B2 Cuellar\n\n39) RogueJedi234: Sacrifice G1 Hoth\nBuild Y1 Bespin\n\n40) Babamots: Trade B2 Y2 Cuellar\n\n41) RogueJedi234: Trade Y1 G1 Bespin\n\n42) Babamots: Discover B1 Cuellar Y1 Wolf359\n\n43) RogueJedi234: Move B2 Roguejedi234 Wolf359\n\n44) Babamots: Build Y3 Yavin4\n\n45) RogueJedi234: Sacrifice R1 Bespin\nAttack B1 Wolf359\n\n46) Babamots: Build Y3 Cuellar\n\n47) RogueJedi234: Trade B2 G2 Wolf359\n\n48) Babamots: Move Y3 Cuellar Wolf359\n\n49) RogueJedi234: Sacrifice Y2 Bespin\nMove B1 Wolf359 Bespin\nMove G2 Wolf359 Bespin\n\n50) Babamots: Build Y2 Cuellar\n\n51) RogueJedi234: Build R1 Bespin\n\n52) Babamots: Sacrifice Y3 Wolf359\nMove B1 Galorndon Yavin4\nMove B1 Yavin4 Bespin\nMove B2 Yavin4 Bespin\nCatastrophe Bespin B\n\n53) RogueJedi234: Build G1 Hoth\n\n54) Babamots: Trade Y2 B2 Yavin4\n\n55) RogueJedi234: Discover G2 Hoth Y1 Ossus\n\n56) Babamots: Sacrifice Y2 Cuellar\nMove G1 Yavin4 Roguejedi234\nMove G1 Yavin4 Roguejedi234\n\n57) RogueJedi234: Trade G3 B3 Roguejedi234\n\n58) Babamots: Sacrifice B2 Yavin4\nTrade G1 B1 Roguejedi234\nTrade G1 B1 Roguejedi234\nCatastrophe Roguejedi234 B\n\n59) RogueJedi234: Move G1 Hoth Babamots\n\n60) Babamots: Move Y3 Yavin4 Roguejedi234\n\n61) RogueJedi234: Sacrifice G2 Ossus\nBuild G1 Babamots\nBuild G1 Babamots\nCatastrophe Babamots Green\n\n62) Babamots: Attack Y1N Roguejedi234\n\n\nHomeworlds Online (SDG# 30216)\nVariants: "Hard time"\nStarted: 2016.8.7, Ended: 2016.10.24\nParticipants: endo (S), Felix (N)\nWinner: endo\n\n1) Felix: Homeworld Y1 B2 G3\n\n2) endo: Homeworld R1 B3 G3\n\n3) Felix: Build G1 Felix\n\tendo: Hi! Nice to see that you've made your way into the top 5 of the ladder. Enjoy the game!\n\tFelix: Thank you! I hope you have fun :)\n\n4) endo: Build G1 Endo\n\n5) Felix: Trade G1 R1 Felix\n\n6) endo: Trade G1 Y1 Endo\n\n7) Felix: Build R1 Felix\n\n8) endo: Build Y1 Endo\n\n9) Felix: Build R2 Felix\n\n10) endo: Discover Y1 Endo Y2 Norm\n\n11) Felix: Discover R1 Felix Y3 Rim\n\n12) endo: Sacrifice G3 Endo\nBuild Y2 Endo\nBuild Y2 Norm\nBuild Y3 Endo\n\n13) Felix: Build G1 Felix\n\n14) endo: Trade Y3 G3 Endo\n\n15) Felix: Sacrifice G3 Felix\nBuild R2 Rim\nBuild R2 Rim\nBuild R3 Felix\n\tFelix: I knew in my gut it was a mistake to go for red instead of yellow!\n\n16) endo: Build Y3 Endo\n\n17) Felix: Move R2 Rim Norm\n\n18) endo: Trade Y3 R3 Endo\n\n19) Felix: Attack Y2 Norm\n\n20) endo: Move Y1 Endo Norm\nCatastrophe Norm Y\n\n21) Felix: Trade R2 Y2 Felix\n\tendo: I did get an extra large, but you have a whole bunch of ships in compensation...\n\n22) endo: Build Y1 Endo\n\n23) Felix: Trade R3 G3 Felix\n\n24) endo: Discover Y1 Endo Y2 Metric\n\n25) Felix: Move R1 Rim Metric\n\n26) endo: Sacrifice G3 Endo\nBuild Y1 Endo\nBuild Y3 Endo\nBuild Y3 Metric\n\n27) Felix: Move R1 Metric Endo\n\n28) endo: Sacrifice R3 Endo\nAttack R1 Endo\nPass\nPass\n\n29) Felix: Discover Y2 Felix G3 Oligarchy\n\n30) endo: Move Y3 Metric Oligarchy\n\n31) Felix: Discover Y2 Oligarchy G2 Bastion\n\n32) endo: Trade Y1 B1 Endo\n\n33) Felix: Build Y1 Bastion\n\n34) endo: Trade Y2 G2 Endo\n\n35) Felix: Build R2 Felix\n\n36) endo: Discover R1 Endo G2 Uniformity\n\n37) Felix: Discover R2 Felix B3 Anarchy\n\n38) endo: Trade Y3 G3 Endo\n\n39) Felix: Move R2 Rim Uniformity\n\n40) endo: Sacrifice Y1 Metric\nMove R1 Uniformity Oligarchy\n\n41) Felix: Discover G1 Felix R3 Inflation\n\n42) endo: Build R2 Oligarchy\n\n43) Felix: Build R3 Uniformity\n\n44) endo: Sacrifice Y3 Oligarchy\nDiscover R2 Oligarchy Y2 Topology\nMove G2 Endo Uniformity\nDiscover G2 Uniformity R3 Product\n\n45) Felix: Sacrifice G1 Inflation\nBuild R3 Anarchy\n\n46) endo: Sacrifice G2 Product\nBuild R3 Topology\nBuild B1 Endo\n\n47) Felix: Trade R2 B2 Anarchy\n\n48) endo: Trade B1 Y1 Endo\n\n49) Felix: Build G1 Felix\n\n50) endo: Build Y2 Endo\n\n51) Felix: Move Y2 Bastion Anarchy\n\tDraw5PlayAll: Someone here likes to name the stars after forms of government\n\n52) endo: Move Y2 Endo Bastion\n\n53) Felix: Sacrifice G1 Felix\nBuild Y3 Anarchy\n\n54) endo: Build Y3 Endo\n\n55) Felix: Discover Y3 Anarchy G2 Incident\n\n56) endo: Build Y3 Bastion\n\n57) Felix: Move Y2 Anarchy Bastion\nCatastrophe Bastion Yellow\n\n58) endo: Build G1 Endo\n\n59) Felix: Build G1 Felix\n\n60) endo: Discover Y3 Endo G2 Manifold\n\n61) Felix: Build Y1 Incident\n\n62) endo: Sacrifice G3 Endo\nBuild Y2 Manifold\nBuild Y2 Manifold\nBuild Y3 Endo\n\n63) Felix: Sacrifice Y3 Incident\nMove Y1 Incident Anarchy\nMove Y1 Anarchy Manifold\nMove G1 Felix Anarchy\nCatastrophe Manifold Yellow\n\n64) endo: Build B1 Endo\n\n65) Felix: Build R2 Anarchy\n\n66) endo: Move B1 Endo Topology\n\n67) Felix: Trade R2 Y2 Anarchy\n\n68) endo: Trade R3 G3 Topology\n\n69) Felix: Move B2 Anarchy Uniformity\n\n70) endo: Discover B1 Endo Y2 Convex\n\n71) Felix: Build Y1 Anarchy\n\n72) endo: Discover Y1 Endo R2 Vector\n\n73) Felix: Sacrifice B2 Uniformity\nTrade R3 Y3 Uniformity\nTrade Y1 B1 Anarchy\n\n74) endo: Sacrifice G3 Topology\nBuild B2 Topology\nBuild R3 Topology\nBuild R3 Oligarchy\n\n75) Felix: Build G1 Felix\n\n76) endo: Sacrifice B2 Topology\nTrade R2 G2 Topology\nTrade R3 G3 Oligarchy\n\n77) Felix: Sacrifice G3 Felix\nBuild G2 Anarchy\nBuild G3 Felix\nBuild R2 Uniformity\n\n78) endo: Sacrifice G3 Oligarchy\nBuild G3 Endo\nBuild Y1 Endo\nBuild R3 Oligarchy\n\n79) Felix: Build Y3 Uniformity\n\n80) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild B2 Topology\nBuild B2 Topology\n\n81) Felix: Sacrifice Y3 Uniformity\nMove R2 Uniformity Endo\nMove R2 Uniformity Endo\nMove B1 Anarchy Topology\nCatastrophe Topology Blue\n\n82) endo: Sacrifice G3 Endo\nBuild G3 Endo\nBuild Y3 Vector\nPass\n\n83) Felix: Move R3 Anarchy Convex\n\n84) endo: Move B1 Convex Oligarchy\n\n85) Felix: Trade G2 B2 Anarchy\n\n86) endo: Attack R2 Endo\n\n87) Felix: Sacrifice Y3 Uniformity\nMove R3 Convex Endo\nCatastrophe Endo Red\nMove G1 Felix Endo\nDiscover G1 Anarchy Y2 Concave\n\n88) endo: Sacrifice Y3 Vector\nMove G3 Endo Felix\nMove R3 Oligarchy Felix\nMove Y1 Endo Vector\n\n89) Felix: Attack R3 Felix\n\tDraw5PlayAll: A fight broke out in the endo system! South's R2 ship was overtaken by North.\r\nA fight broke out in the endo system! North's R2 ship was overtaken by South.\r\nad infinitum...\r\n\r\nOr not.\n\n90) endo: Sacrifice R3 Topology\nAttack G3 Felix\nAttack R1 Felix\nAttack R3 Felix\n\n\tFelix: Ah. Well done! I missed that counterattack.\n\tendo: I've made a similar mistake versus Simon, and that wasn't when I was new :) See here: http://superdupergames.org/?page=archive_play&gid=28624&idx=56\r\nThanks for a long and difficult game. This was my longest game yet. I was afraid you had bested me halfway through the game when you gained those two larges. I somehow managed to equalize with yellow after some time.\n\tFelix: Thanks! I'll study that game and this one and hopefully learn to avoid it in future. This may have been my longest game as well. Definitely a difficult and interesting one. I also felt that advantage halfway through but I wasn't quite able to capitalize on it. You recovered really well. I look forward to our next game whenever that may be!\n\nHomeworlds Online (SDG# 30215)\nVariants: "Hard time"\nStarted: 2016.8.7, Ended: 2016.8.25\nParticipants: dlwillson (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R2 B1 G3\n\n2) dlwillson: H B3 R1 G3 Dlwillson\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\tdlwillson: Hi! You too!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Simon: Trade G1 Y1 Simon\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Simon: Build G1 Simon\n\n8) dlwillson: B G1 Dlwillson\n\n9) Simon: Trade G1 R1 Simon\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) Simon: Build R2 Simon\n\n12) dlwillson: B R2 Dlwillson\n\n13) Simon: Discover R2 Simon G3 G3\n\n14) dlwillson: T R1 B1 Dlwillson\n\n15) Simon: Build G1 Simon\n\n16) dlwillson: B B1 Dlwillson\n\n17) Simon: Discover R1 Simon B3 B3\n\n18) dlwillson: Discover B1 Dlwillson G2 Field\n\n19) Simon: Move G1 Simon B3\n\n20) dlwillson: B B2 Field\n\n21) Simon: Build R1 G3\n\n22) dlwillson: B R3 Dlwillson\n\n23) Simon: Build R3 B3\n\n24) dlwillson: Move R2 Dlwillson Field\n\n25) Simon: Build R3 G3\n\n26) dlwillson: S Y1 Dlwillson\nM R2 Field G3\nC G3 R\n\n27) Simon: Trade R1 Y1 B3\n\n28) dlwillson: T B2 Y2 Field\n\n29) Simon: Build Y1 B3\n\n30) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Dlwillson\nBuild B2 Field\nBuild R1 Dlwillson\n\n31) Simon: Move R3 B3 Field\n\n32) dlwillson: S Y2 Field\nM B2 Field B3\nDiscover R1 Dlwillson G2 Forest\n\n33) Simon: Attack B1 Field\n\tdlwillson: Why you gotta kick my ass so hard?\n\n34) dlwillson: T B2 R2 B3\n\tSimon: I was able to force your (sacrifice y1 dlwilson, move r2 into my 3 reds, cata red) with your only y1. That was expensive, maybe you must let me get away with the extra large, I'm not sure.\n\n35) Simon: Sacrifice Y1 B3\nMove B1 Field Dlwillson\nCatastrophe Dlwillson B\n\n36) dlwillson: T R2 B2 B3\n\n37) Simon: Sacrifice G3 Simon\nBuild Y1 Simon\nBuild Y2 Simon\nBuild R1 Field\n\tdlwillson: I actually missed that. Wow.\n\n38) dlwillson: S B2 B3\nT R3 G3 Dlwillson\nT R1 B1 Forest\n\n39) Simon: Sacrifice Y2 Simon\nMove R1 Field Dlwillson\nMove R3 Field Dlwillson\n\tdlwillson: Sorry for the delay. I've been teaching Linux Camp.\n\n40) dlwillson: Attack R3 Dlwillson\n\n41) Simon: Sacrifice G1 B3\nBuild R1 Dlwillson\nCatastrophe Dlwillson R\n\tdlwillson: GG TY :-)\n\tSimon: gg!\n\n\nHomeworlds Online (SDG# 30219)\nVariants: "Unrated"\nStarted: 2016.8.7, Ended: 2016.8.7\nParticipants: Rizzotto (S), DetectiveAzul (N)\nWinner: DetectiveAzul\n\n1) DetectiveAzul: Homeworld G2 B1 Y3\n\tDetectiveAzul: Hola chat\n\n2) Rizzotto: Homeworld G3 B2 R3\n\tDetectiveAzul: jajajajaja puti\n\tRizzotto: homeworld G3 B2 R3\n\n3) DetectiveAzul: Build Y1 Detectiveazul\n\tRizzotto: chocho\n\n4) Rizzotto: Build R1 Rizzotto\n\n5) DetectiveAzul: Build Y1 Detectiveazul\n\n6) Rizzotto: Trade R1 Y1 Rizzotto\n\n7) DetectiveAzul: Discover Y1 Detectiveazul G3 Yvolo\n\n8) Rizzotto: Build Y2 Rizzotto\n\n9) DetectiveAzul: Discover Y1 Detectiveazul G3 Yyovoledeel\n\n10) Rizzotto: Build Y2 Rizzotto\n\tDetectiveAzul: chocho los que me meto en la boca en edimburgo\n\n11) DetectiveAzul: Build Y2 Yvolo\n\tRizzotto: :3 \n\n12) Rizzotto: Trade Y2 R2 Rizzotto\n\tRizzotto: Hay alguien que va a recibir una felación nada más llegue a casa...~ \n\n13) DetectiveAzul: Build Y2 Yyovoledeel\n\n14) Rizzotto: Build R1 Rizzotto\n\n15) DetectiveAzul: Build Y3 Detectiveazul\n\n16) Rizzotto: Discover R2 Rizzotto G1 Elpan\n\tDetectiveAzul: 8===============================DO:\n\n17) DetectiveAzul: Build Y3 Detectiveazul\n\n18) Rizzotto: Move Y1 Rizzotto Elpan\n\tRizzotto: :3============8\n\tDetectiveAzul: Po voy a haserte una foto con mi pene en tu boca para los momentos de soledad en los fines de semana que tu trabajes, ea\n\n19) DetectiveAzul: Trade Y3 R3 Detectiveazul\n\tRizzotto: Hazla, si quieres. Pero pudiendo hacer un vídeo...\n\n20) Rizzotto: Build Y3 Rizzotto\n\tDetectiveAzul: Bueno, es que un vídeo en el móvil no va a ser muy bonito, pero por mí vale\n\tDetectiveAzul: Bueno, es que un vídeo en el móvil no va a ser muy bonito, pero por mí vale\n\n21) DetectiveAzul: Trade Y3 B3 Detectiveazul\n\tRizzotto: A ver, hasta que tengamos la gopro...De algo habrá que tirar. Te haces un POV casero. \n\n22) Rizzotto: Sacrifice Y2 Rizzotto\nMove R3 Rizzotto Elpan\nMove R3 Elpan Yvolo\n\tDetectiveAzul: Bueno, con el móvil se pueden hacer semipovs de cosas sin mucho movimiento. Con la gopro falsa ya podremos hacer acrobacias.\n\n23) DetectiveAzul: Sacrifice Y2 Yvolo\nMove R3 Detectiveazul Yvolo\nMove R3 Yvolo Elpan\n\tRizzotto: Bajar y subir los labios sobre tu pene no es mucho movimiento :3\n\n24) Rizzotto: Move R2 Elpan Yvolo\n\n25) DetectiveAzul: Sacrifice Y1 Yvolo\nMove Y2 Yyovoledeel Elpan\n\tDetectiveAzul: Pero antes me quito los pelitos, que no quedan bien en la cámara, ya lo he podido comprobar en los intentos fallidos de vídeos para mandarte\n\tRizzotto: A lo mejor a mí me gustaban los pelos. EL PORNO VINTAGE ERA CON PELOS. \n\n26) Rizzotto: Sacrifice Y1 Elpan\nMove R3 Yvolo Detectiveazul\n\tDetectiveAzul: RESPETA MI DECISIÓN A NO TENER PELOS Ò,Ó\n\tDetectiveAzul: Al final no te mando foto :#\n\tDetectiveAzul: Yo que iba a hacer eso de correrme en tu cara y luego darte besos para compartir fluidos...\n\n27) DetectiveAzul: Sacrifice R3 Elpan\nAttack R3S Detectiveazul\nPass\nPass\n\tRizzotto: .......Sin pelos, sin pelos. :3\n\n28) Rizzotto: Build Y1 Rizzotto\n\n29) DetectiveAzul: Build Y1 Yyovoledeel\n\n30) Rizzotto: Trade Y3 R3 Rizzotto\n\n31) DetectiveAzul: Build Y2 Elpan\n\n32) Rizzotto: Build Y2 Rizzotto\n\n33) DetectiveAzul: Build Y3 Detectiveazul\n\n34) Rizzotto: Trade R3 Y3 Rizzotto\n\n35) DetectiveAzul: Move Y2 Elpan Rizzotto\nCatastrophe Rizzotto Yellow\n\tRizzotto: y cuándo pensabas mandarme el vídeo?\n\n\nHomeworlds Online (SDG# 30188)\nStarted: 2016.8.7, Ended: 2016.9.17\nParticipants: Draw5PlayAll (S), RogueJedi234 (N)\nWinner: Draw5PlayAll\n\n1) RogueJedi234: Homeworld B3 R2 G3\n\n2) Draw5PlayAll: Homeworld B1 R3 G3\n\n3) RogueJedi234: Build G1 Roguejedi234\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) RogueJedi234: Trade G1 Y1 Roguejedi234\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) RogueJedi234: Build G1 Roguejedi234\n\n8) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n9) RogueJedi234: Build Y1 Roguejedi234\n\n10) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n11) RogueJedi234: Discover Y1 Roguejedi234 G1 Tatooine\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\n13) RogueJedi234: Build Y2 Tatooine\n\n14) Draw5PlayAll: Discover B1 Draw5playall G2 Earth\n\n15) RogueJedi234: Build Y2 Roguejedi234\n\tDraw5PlayAll: Are they star systems or planets? I have seen them called both of those nouns...\n\n16) Draw5PlayAll: Move Y1 Draw5playall Earth\n\tRogueJedi234: I believe the upright pyramids are referred to as star systems, but regardless of that I always draw my names from star wars planets. It just helps me keep track of things. Either that or greek letter designations.\n\n17) RogueJedi234: Sacrifice Y2 Tatooine\nDiscover G1 Roguejedi234 B1 Hoth\nMove Y1 Roguejedi234 Hoth\n\n18) Draw5PlayAll: Build B2 Earth\n\n19) RogueJedi234: Build G1 Hoth\n\n20) Draw5PlayAll: Build G2 Draw5playall\n\n21) RogueJedi234: Build G2 Roguejedi234\n\n22) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Earth\nBuild G3 Draw5playall\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\n\n23) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G3 Roguejedi234\nBuild Y3 Roguejedi234\nBuild Y3 Tatooine\n\n24) Draw5PlayAll: Trade Y3 R3 Earth\nPass Pass Pass\n\n25) RogueJedi234: Discover Y3 Tatooine B2 Endor\n\n26) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 Earth\nBuild R1 Earth\n\n27) RogueJedi234: Sacrifice Y2 Roguejedi234\nMove Y1 Hoth Earth\nMove Y1 Tatooine Earth\nCatastrophe Earth Yellow\n\n28) Draw5PlayAll: Discover G2 Draw5playall B2 Icehouse\n\n29) RogueJedi234: Trade G1 Y1 Hoth\n\n30) Draw5PlayAll: Build B3 Earth\n\n31) RogueJedi234: Build G1 Hoth\n\n32) Draw5PlayAll: Build Y1 Draw5playall\n\n33) RogueJedi234: Sacrifice Y3 Endor\nDiscover G1 Hoth B2 Alderaan\nMove Y1 Hoth Alderaan\nMove Y1 Alderaan Draw5playall\nCatastrophe Draw5playall Yellow\n\n34) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n35) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G1 Hoth\nBuild G3 Roguejedi234\nBuild G3 Alderaan\n\n36) Draw5PlayAll: Build G3 Icehouse\n\n37) RogueJedi234: Trade G3 R3 Alderaan\n\n38) Draw5PlayAll: Trade G2 Y2 Icehouse\n\n39) RogueJedi234: Trade G1 Y1 Hoth\n\n40) Draw5PlayAll: Move G3 Icehouse Draw5playall\n\n41) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G1 Hoth\nBuild G2 Alderaan\nBuild G3 Roguejedi234\n\n42) Draw5PlayAll: Build Y1 Draw5playall\n\n43) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild G3 Roguejedi234\nBuild G3 Hoth\nBuild R1 Alderaan\n\n44) Draw5PlayAll: Move G3 Draw5playall Icehouse\n\n45) RogueJedi234: Discover G1 Hoth Y2 Korriban\n\n46) Draw5PlayAll: Build Y1 Icehouse\n\n47) RogueJedi234: Trade G2 Y2 Alderaan\n\n48) Draw5PlayAll: Move G3 Icehouse Draw5playall\n\n49) RogueJedi234: Build G2 Korriban\n\n50) Draw5PlayAll: Sacrifice Y1 Icehouse\nDiscover B1 Earth Y3 Wolf359\n\n51) RogueJedi234: Build Y1 Alderaan\n\n52) Draw5PlayAll: Move Y1 Draw5playall Earth\n\n53) RogueJedi234: Discover G1 Korriban R1 Belkadan\n\n54) Draw5PlayAll: Move B2 Earth Belkadan\n\n55) RogueJedi234: Sacrifice Y3 Roguejedi234\nMove G3 Hoth Earth\nMove G1 Hoth Earth\nMove G1 Belkadan Earth\nCatastrophe Earth Green\n\n56) Draw5PlayAll: Trade Y2 G2 Icehouse\n\n57) RogueJedi234: Trade G2 Y2 Roguejedi234\n\n58) Draw5PlayAll: Sacrifice G2 Icehouse\nBuild B2 Wolf359\nBuild B3 Belkadan\n\tDraw5PlayAll: Just what I needed! Really.\n\n59) RogueJedi234: Build G1 Roguejedi234\n\n60) Draw5PlayAll: Trade B2 G2 Wolf359\n\tDraw5PlayAll: First I tried to build two B3s but forgot that I sacrificed the only ship at a B2 system, so I had to build the b2 before the B3s.\n\n61) RogueJedi234: Build R1 Alderaan\n\n62) Draw5PlayAll: Build B2 Wolf359\n\n63) RogueJedi234: Sacrifice Y2 Alderaan\nMove R3 Alderaan Draw5playall\nMove R1 Alderaan Draw5playall\n\n64) Draw5PlayAll: Attack R3 Draw5playall\n\n65) RogueJedi234: Sacrifice G3 Roguejedi234\nBuild R2 Draw5playall\nBuild R2 Alderaan\nBuild R3 Alderaan\nCatastrophe Draw5playall Red\n\n66) Draw5PlayAll: Trade B2 R2 Wolf359\n\n67) RogueJedi234: Move R3 Alderaan Wolf359\n\tDraw5PlayAll: I would have been more scared if you went to Wolf359 with that thing...\n\n68) Draw5PlayAll: Sac Y3 Draw5playall\nMove B3 Belkadan Roguejedi234\nMove B1 Wolf359 Belkadan\nMove R2 Wolf359 Draw5playall\n\n\tDraw5PlayAll: The really amazing thing is that no B1 ships exist for you to try and catastrophe my invader!\n\nHomeworlds Online (SDG# 30223)\nVariants: "Hard time"\nStarted: 2016.8.8, Ended: 2016.8.31\nParticipants: Draw5PlayAll (S), foksieloy (N)\nWinner: Draw5PlayAll\n\n1) foksieloy: Homeworld R3 B1 G3\n\n2) Draw5PlayAll: Homeworld R1 B2 G3\n\tfoksieloy: Hi, good luck, have fun!\n\n3) foksieloy: Build G1 Foksieloy\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) foksieloy: Trade G1 B1 Foksieloy\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) foksieloy: Build B1 Foksieloy\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) foksieloy: Trade B1 Y1 Foksieloy\n\n10) Draw5PlayAll: Discover G1 Draw5playall B3 Action\n\n11) foksieloy: Discover B1 Foksieloy G2 Tibbers\n\n12) Draw5PlayAll: Build G1 Action\n\n13) foksieloy: Build B1 Tibbers\n\n14) Draw5PlayAll: Trade G1 R1 Action\n\n15) foksieloy: Build B2 Tibbers\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) foksieloy: Trade B2 R2 Tibbers\n\n18) Draw5PlayAll: Build Y1 Draw5playall\n\n19) foksieloy: Build Y2 Foksieloy\n\n20) Draw5PlayAll: Build Y2 Draw5playall\n\n21) foksieloy: Build B2 Tibbers\n\n22) Draw5PlayAll: Move Y2 Draw5playall Action\n\n23) foksieloy: Trade B2 G2 Tibbers\n\n24) Draw5PlayAll: Build G1 Action\n\n25) foksieloy: Move Y2 Foksieloy Tibbers\n\n26) Draw5PlayAll: Sacrifice Y2 Action\nMove G1 Action Tibbers\nMove G1 Action Tibbers\nCatastrophe Tibbers Green\n\n27) foksieloy: Build Y2 Foksieloy\n\tDraw5PlayAll: You had two greens...\n\tfoksieloy: That's what I get for playing a turn at 6 am.\n\n28) Draw5PlayAll: Build Y2 Draw5playall\n\n29) foksieloy: Discover Y2 Foksieloy G2 Annie\n\n30) Draw5PlayAll: Move Y2 Draw5playall Action\n\n31) foksieloy: Build G1 Foksieloy\n\tfoksieloy: Damn missclick.\n\n32) Draw5PlayAll: Move G1 Draw5playall Action\n\n33) foksieloy: Trade G1 B1 Foksieloy\n\n34) Draw5PlayAll: Build G1 Draw5playall\n\n35) foksieloy: Move B1 Foksieloy Annie\n\n36) Draw5PlayAll: Build G1 Action\n\n37) foksieloy: Build G2 Foksieloy\n\n38) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild R1 Action\n\n39) foksieloy: Sacrifice G3 Foksieloy\nBuild G3 Foksieloy\nBuild Y2 Annie\nBuild Y3 Foksieloy\n\n40) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 Action\nBuild R2 Action\n\n41) foksieloy: Sacrifice Y3 Foksieloy\nMove G2 Foksieloy Annie\nDiscover G2 Annie Y3 Tibbers\nMove G2 Tibbers Draw5playall\nCatastrophe Draw5playall Green\n\n42) Draw5PlayAll: Move R2 Action Draw5playall\n\tDraw5PlayAll: The action system is crowded.\n\n43) foksieloy: Trade Y2 B2 Annie\n\tDraw5PlayAll: Oops... This time I can recover.\n\n44) Draw5PlayAll: Trade Y3 G3 Action\n\tDraw5PlayAll: Tibbers? What is that?\n\n45) foksieloy: Build Y2 Foksieloy\n\tfoksieloy: Annie and Tibbers https://s-media-cache-ak0.pinimg.com/736x/2d/89/2d/2d892d4cde04e7c4c34770207da65484.jpg\n\n46) Draw5PlayAll: Build Y3 Action\n\n47) foksieloy: Discover B2 Annie Y3 Tibbers\n\n48) Draw5PlayAll: Move G3 Action Draw5playall\n\n49) foksieloy: Discover B1 Annie G3 Gnar\n\n50) Draw5PlayAll: Build R2 Action\n\n51) foksieloy: Build B1 Gnar\n\n52) Draw5PlayAll: Move R2 Draw5playall Gnar\n\n53) foksieloy: Sacrifice Y2 Foksieloy\nMove B1 Gnar Draw5playall\nMove B1 Gnar Draw5playall\n\n54) Draw5PlayAll: Build R2 Gnar\n\n55) foksieloy: Move B2 Tibbers Draw5playall\nCatastrophe Draw5playall Blue\n\n56) Draw5PlayAll: Build R3 Gnar\n\n57) foksieloy: Build Y2 Annie\n\n58) Draw5PlayAll: Discover G1 Action B2 Icetraders\n\n59) foksieloy: Build Y3 Foksieloy\n\n60) Draw5PlayAll: Discover Y1 Draw5playall R3 Qo'nos\n\n61) foksieloy: Discover Y2 Annie B3 Teemo\n\n62) Draw5PlayAll: Build Y3 Draw5playall\n\n63) foksieloy: Trade Y1 B1 Foksieloy\n\n64) Draw5PlayAll: Trade Y2 B2 Action\n\n65) foksieloy: Move B1 Foksieloy Annie\n\n66) Draw5PlayAll: Discover B2 Action Y1 Hyperspace\n\n67) foksieloy: Build Y2 Annie\n\n68) Draw5PlayAll: Move Y1 Draw5playall Icetraders\n\n69) foksieloy: Build B1 Annie\n\n70) Draw5PlayAll: Move R2 Action Annie\n\n71) foksieloy: Sacrifice Y2 Annie\nMove B1 Annie Action\nMove B1 Annie Action\n\tfoksieloy: I can't say I had a lot of games where the stash is about to get empty. :)\n\n72) Draw5PlayAll: Move Y3 Action Icetraders\n\tDraw5PlayAll: I can't say I had a lot of games where I managed to completely dominate the red economy.\n\n73) foksieloy: Sacrifice Y2 Annie\nDiscover Y2 Teemo G2 Valor\nMove B1 Action Valor\n\n74) Draw5PlayAll: Move B2 Hyperspace Gnar\n\tDraw5PlayAll: Fine then. Blow up a bunch of 1-pointers. I don't care.\n\n75) foksieloy: Build B2 Valor\n\n76) Draw5PlayAll: Sacrifice Y1 Icetraders\nMove B2 Gnar Annie\n\n77) foksieloy: Move B2 Valor Qo'nos\n\n78) Draw5PlayAll: Build B3 Annie\n\n79) foksieloy: Build G1 Foksieloy\n\n80) Draw5PlayAll: Sacrifice Y3 Icetraders\nMove B3 Annie Foksieloy\nMove R3 Gnar Annie\nMove R3 Annie Foksieloy\nPass\n\tDraw5PlayAll: Thought so.\n\n81) foksieloy: Attack R3 Foksieloy\n\n82) Draw5PlayAll: Sacrifice R2 Annie\nAttack R3N Foksieloy\nAttack G3N Foksieloy\nPass\nPass\nPass\n\n\tfoksieloy: Ok, you have two r2, that is sufficient for you. GG!\n\tDraw5PlayAll: Checking ladder...\n\nHomeworlds Online (SDG# 30129)\nStarted: 2016.8.9, Ended: 2016.10.3\nParticipants: ts52 (S), Pheonixian (N)\nWinner: ts52\n\n1) Pheonixian: Homeworld B1 Y2 G3\n\n2) ts52: Homeworld Y1 B3 G3\n\n3) Pheonixian: Build G1 Pheonixian\n\tts52: Have a good game! FYI I'm' going off grid until Friday, but will be back online to make my move Friday night.\n\n4) ts52: Build G1 Ts52\n\tPheonixian: Okay, no problem. Have a good game!\n\n5) Pheonixian: Trade G1 B1 Pheonixian\n\n6) ts52: Build G1 Ts52\n\n7) Pheonixian: Build B1 Pheonixian\n\n8) ts52: Discover G1 Ts52 B2 Grover\n\n9) Pheonixian: Trade B1 Y1 Pheonixian\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) Pheonixian: Build Y2 Pheonixian\n\n12) ts52: Move Y1 Ts52 Grover\n\n13) Pheonixian: Discover Y2 Pheonixian G3 Eden\n\n14) ts52: Build G1 Ts52\n\n15) Pheonixian: Build B1 Pheonixian\n\n16) ts52: Trade G1 R1 Ts52\n\n17) Pheonixian: Move B1 Pheonixian Eden\n\n18) ts52: Build G1 Grover\n\n19) Pheonixian: Build B2 Eden\n\n20) ts52: Build R1 Ts52\n\n21) Pheonixian: Trade B1 R1 Eden\n\n22) ts52: Move R1 Ts52 Grover\n\n23) Pheonixian: Build B1 Eden\n\n24) ts52: Build R2 Grover\n\n25) Pheonixian: Build R2 Eden\n\n26) ts52: Discover G1 Grover Y3 Bigbird\n\n27) Pheonixian: Discover B2 Eden G2 Spinach\n\n28) ts52: M R1 Grover Bigbird\n\n29) Pheonixian: Build B2 Spinach\n\n30) ts52: Sacrifice G3 Ts52\nBuild R2 Grover\nBuild R3 Ts52\nBuild R3 Bigbird\n\n31) Pheonixian: Move R2 Eden Pheonixian\n\n32) ts52: Trade R3 G3 Ts52\n\n33) Pheonixian: Sacrifice G3 Pheonixian\nBuild B3 Eden\nBuild R3 Pheonixian\nBuild R3 Eden\n\n34) ts52: Move R3 Bigbird Spinach\n\n35) Pheonixian: Sacrifice Y2 Eden\nDiscover B2 Spinach G3 Avocado\nMove B2 Spinach Avocado\n\n36) ts52: Build Y2 Grover\n\n37) Pheonixian: Build B3 Eden\n\n38) ts52: Build Y2 Grover\n\n39) Pheonixian: Trade B3 Y3 Eden\n\n40) ts52: Build G1 Ts52\n\n41) Pheonixian: Build Y3 Eden\n\n42) ts52: Sacrifice Y1 Grover\nMove R3 Spinach Avocado\n\n43) Pheonixian: Sacrifice Y3 Eden\nDiscover B2 Avocado G2 Lemon\nMove B2 Avocado Lemon\nDiscover B1 Eden G2 Apple\n\n44) ts52: Move R2 Grover Bigbird\n\n45) Pheonixian: Discover R2 Pheonixian B3 Icetower\n\n46) ts52: Move Y2 Grover Avocado\n\n47) Pheonixian: Trade B2 G2 Lemon\n\n48) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Avocado\nBuild Y3 Grover\n\n49) Pheonixian: Move Y1 Pheonixian Eden\n\n50) ts52: Move Y3 Grover Icetower\n\n51) Pheonixian: Build B2 Apple\n\n52) ts52: Sacrifice R1 Bigbird\nAttack R2 Icetower\n\n53) Pheonixian: Sacrifice Y3 Eden\nMove B1 Apple Ts52\nMove B2 Apple Ts52\nMove B2 Lemon Ts52\nCatastrophe Ts52 Blue\n\n54) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild Y3 Icetower\n\n55) Pheonixian: Build B1 Eden\n\tBabamots: I've been enjoying your game! Instead of continuing to lurk, I thought I'd test whether observers really get to post comments.\n\tts52: Glad you're enjoying it. And yes, lurkers can comment!\n\n56) ts52: Trade G2 B2 Grover\n\tDraw5PlayAll: Very intense.. I like these ones where half the homeworld dies, yet said player has control.\r\n\r\n[Removed due to Prime Directive]\n\tBabamots: What does "Removed due to Prime Directive" mean? Was a comment censored somehow or is that what Draw5 actually typed? Maybe redaction due to interfering with the natural development of a "culture" (i.e. game)?\n\tts52: I'm pretty sure that's just Draw5PlayAll's sense of humor coming through. :)\n\n57) Pheonixian: Move B1 Eden Lemon\n\tPheonixian: Indeed, I'm pretty sure of that. It is amusing. \r\nThe game itself has been very interesting, thank you much for it, ts52. \n\n58) ts52: Move B2 Grover Bigbird\n\tts52: Agreed, this had been a very interesting game.\n\tDraw5PlayAll: Why the past tense? I see no immediate win for either side.\n\tts52: No, not over yet, I agree.\n\n59) Pheonixian: Build B2 Lemon\n\n60) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild B3 Bigbird\n\n61) Pheonixian: Move R1 Eden Lemon\n\n62) ts52: Sacrifice Y2 Grover\nMove B2 Bigbird Pheonixian\nMove B3 Bigbird Pheonixian\nCatastrophe Pheonixian Blue\n\n\tPheonixian: And I think that is game. I see no way to prevent destruction of the other half of my homeworld. Well played. \n\tts52: Thanks. Good game!\n\nHomeworlds Online (SDG# 30235)\nVariants: "Hard time"\nStarted: 2016.8.11, Ended: 2016.10.18\nParticipants: nycavri (S), Salmonax (N)\nWinner: nycavri\n\n1) Salmonax: Homeworld G1 R3 B3\n\n2) nycavri: Homeworld Y1 B2 G3\n\tSalmonax: Good luck, have fun\n\tnycavri: TaGG!\n\n3) Salmonax: Build B1 Salmonax\n\n4) nycavri: B G1 Nycavri\n\n5) Salmonax: Trade B1 G1 Salmonax\n\n6) nycavri: B G2 Nycavri\n\n7) Salmonax: Build G2 Salmonax\n\n8) nycavri: T G2 Y2 Nycavri\n\n9) Salmonax: Trade G2 Y2 Salmonax\n\n10) nycavri: B Y1 Nycavri\n\n11) Salmonax: Build G2 Salmonax\n\n12) nycavri: T Y1 B1 Nycavri\n\n13) Salmonax: Discover G1 Salmonax B2 Oats\n\n14) nycavri: Trade G1 R1 Nycavri\n\n15) Salmonax: Build Y1 Salmonax\n\n16) nycavri: B B1 Nycavri\n\n17) Salmonax: Build G1 Oats\n\n18) nycavri: Build G2 Nycavri\n\tSalmonax: Sorry for the delay\n\n19) Salmonax: Build G2 Oats\n\n20) nycavri: S Y2 Nycavri\nD G2 Nycavri Y3 Deacon\nDiscover G2 Deacon Y2 May\n\n21) Salmonax: Trade G1 R1 Oats\n\n22) nycavri: T B1 G1 Nycavri\n\n23) Salmonax: Build G3 Oats\n\n24) nycavri: S G3 Nycavri\nBuild G3 Nycavri\nB G3 May\nB B1 Nycavri\n\n25) Salmonax: Move Y1 Salmonax Oats\n\n26) nycavri: Sacrifice B1 Nycavri\nTrade G2 Y2 May\n\n27) Salmonax: Discover G2 Oats Y3 Pebble\n\n28) nycavri: Discover G1 Nycavri Y3 Mercury\n\n29) Salmonax: Sacrifice G2 Salmonax\nBuild Y1 Salmonax\nBuild Y3 Oats\n\n30) nycavri: Build G2 May\n\n31) Salmonax: Trade G3 R3 Oats\n\n32) nycavri: Move G2 May Salmonax\n\n\nHomeworlds Online (SDG# 30140)\nVariants: "Hard time"\nStarted: 2016.8.11, Ended: 2016.8.24\nParticipants: ladybugsfly (S), mxpf (N)\nWinner: ladybugsfly\n\n1) mxpf: Homeworld R3 B1 G3\n\n2) ladybugsfly: Homeworld G3 Y2 B3\n\tmxpf: Good luck! :-)\n\n3) mxpf: Build G1 Mxpf\n\tladybugsfly: You, too!\n\n4) ladybugsfly: Build B1 Ladybugsfly\n\n5) mxpf: Trade G3 B3 Mxpf\n\n6) ladybugsfly: Discover B1 Ladybugsfly Y1 Squirtle\n\n7) mxpf: Build G1 Mxpf\n\n8) ladybugsfly: Build B1 Ladybugsfly\n\n9) mxpf: Build B2 Mxpf\n\n10) ladybugsfly: Discover B1 Squirtle Y2 Wartortle\n\n11) mxpf: Trade B2 Y2 Mxpf\n\n12) ladybugsfly: Trade B1 G1 Wartortle\n\n13) mxpf: Trade G1 R1 Mxpf\n\n14) ladybugsfly: Build G1 Wartortle\n\n15) mxpf: Move Y2 Mxpf Wartortle\n\n16) ladybugsfly: Trade B3 R3 Ladybugsfly\n\n17) mxpf: Sacrifice R1 Mxpf\nAttack G1 Wartortle\n\n18) ladybugsfly: Build G2 Wartortle\n\n19) mxpf: Build G2 Mxpf\n\n20) ladybugsfly: Sacrifice G2 Wartortle\nBuild R1 Ladybugsfly\nBuild B1 Ladybugsfly\n\n21) mxpf: Build G2 Mxpf\n\n\tmxpf: Ah shoot, I screwed up, haha! Another?\n\tladybugsfly: Sure!\n\nHomeworlds Online (SDG# 30247)\nStarted: 2016.8.12, Ended: 2016.8.25\nParticipants: ladybugsfly (S), Steele (N)\nWinner: ladybugsfly\n\n1) Steele: H B3 G2 Y3\n\n2) ladybugsfly: Homeworld Y3 B1 G3\n\n3) Steele: B Y1 Steele\n\n4) ladybugsfly: Build G1 Ladybugsfly\n\n5) Steele: T Y1 G1 Steele\n\n6) ladybugsfly: Discover G1 Ladybugsfly B2 Diglett\n\n7) Steele: B Y1 Steele\n\n8) ladybugsfly: Trade G1 Y1 Diglett\n\n9) Steele: T Y1 R1 Steele\n\n10) ladybugsfly: Build G1 Ladybugsfly\n\n11) Steele: B Y1 Steele\n\n12) ladybugsfly: Move G1 Ladybugsfly Diglett\n\n13) Steele: D G1 Steele Y1 Alpha\n\n14) ladybugsfly: Build Y2 Diglett\n\n15) Steele: Build G1 Alpha\n\n16) ladybugsfly: Build G2 Ladybugsfly\n\n17) Steele: Discover G1 Alpha Y2 Beta\n\n18) ladybugsfly: Trade G2 R2 Ladybugsfly\n\n19) Steele: Build G2 Beta\n\n20) ladybugsfly: Discover Y2 Diglett R1 Dugtrio\n\n21) Steele: Discover G1 Alpha B2 Gamma\n\n22) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild Y1 Diglett\nBuild Y2 Diglett\nBuild Y3 Dugtrio\n\n23) Steele: Trade Y1 R1 Steele\n\n24) ladybugsfly: Sacrifice Y2 Diglett\nMove Y3 Dugtrio Steele\nMove Y2 Dugtrio Steele\n\n25) Steele: T Y3 G3 Steele\n\n26) ladybugsfly: Trade Y3 G3 Steele\n\n27) Steele: T G3 B3 Steele\n\n28) ladybugsfly: Trade G3 B3 Steele\n\n29) Steele: S B3 Steele\nT G1 R1 Beta\nT G2 R2 Beta\nT R1 Y1 Steele\nPass\n\n30) ladybugsfly: Move G1 Diglett Ladybugsfly\n\n31) Steele: B R1 Steele\n\n32) ladybugsfly: Build R2 Ladybugsfly\n\n33) Steele: B Y2 Steele\n\n34) ladybugsfly: T B3 R3 Steele\n\n35) Steele: B R3 Steele\nC Steele Red\n\n36) ladybugsfly: B Y3 Steele\nC Steele Y\n\n\nHomeworlds Online (SDG# 30119)\nStarted: 2016.8.12, Ended: 2016.8.12\nParticipants: Felix (S), Benjeski (N)\nWinner: Felix\n\n\tBenjeski: Sorry im a bit of a newb\r\n\n\nHomeworlds Online (SDG# 30227)\nStarted: 2016.8.12, Ended: 2016.8.12\nParticipants: Benjeski (S), ts52 (N)\nWinner: ts52\n\n\tBenjeski: Hey :D\n\nHomeworlds Online (SDG# 30134)\nVariants: "Hard time"\nStarted: 2016.8.12, Ended: 2016.8.15\nParticipants: wil (S), Benjeski (N)\nWinner: Benjeski\n\n1) Benjeski: Homeworld R3 G1 B3\n\n\nHomeworlds Online (SDG# 30173)\nVariants: "Hard time"\nStarted: 2016.8.12, Ended: 2016.8.24\nParticipants: Benjeski (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 B2 G3\n\tBenjeski: Hey :D \n\n2) Benjeski: Homeworld R3 G1 B3\n\tSimon: Hi, have fun!\n\n3) Simon: Build G1 Simon\n\n4) Benjeski: Build B1 Benjeski\n\n\n5) Simon: Build G1 Simon\n\tBenjeski: Sorry man its 1` in the morning where i live. see you in the morning\n\n6) Benjeski: Trade B1 Y1 Benjeski\n\n7) Simon: Trade G3 Y3 Simon\n\n8) Benjeski: Discover Y1 Benjeski G2 Sigma\n\n9) Simon: Discover G1 Simon B3 B3\n\n10) Benjeski: Build Y1 Sigma\n\n11) Simon: Build G2 B3\n\n\nHomeworlds Online (SDG# 30258)\nVariants: "Hard time"\nStarted: 2016.8.21, Ended: 2016.8.31\nParticipants: Draw5PlayAll (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\tSimon: Have fun :)\n\n3) Simon: Build G1 Simon\n\tDraw5PlayAll: I actually prefer a 1-3 more... Investment rarely works and it is super easy to throw an R2 at someone's investment.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) Simon: Build Y1 Simon\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n9) Simon: Build Y2 Simon\n\n10) Draw5PlayAll: Build Y2 Draw5playall\n\n11) Simon: Discover Y2 Simon B2 B2\n\tSimon: The 1-3 seems best to me, yeah. You can park ships at 2-pointers of the same color, to deplete the color for a monopoly.\n\n12) Draw5PlayAll: Discover G1 Draw5playall B3 Neptune\n\n13) Simon: Discover Y1 Simon Y2 Y2\n\tDraw5PlayAll: *planet\n\n14) Draw5PlayAll: Move Y1 Draw5playall Neptune\n\n15) Simon: Sacrifice G3 Simon\nBuild Y3 Simon\nBuild Y3 B2\nBuild Y3 Y2\n\n16) Draw5PlayAll: Move Y1 Neptune Y2\nCatastrophe Y2 Yellow\nPass\n\n17) Simon: Trade Y2 G2 B2\n\tDraw5PlayAll: That is not the way to monopolize yellow.\n\n18) Draw5PlayAll: Build G1 Neptune\n\n19) Simon: Build Y1 B2\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) Simon: Trade Y3 R3 B2\n\n22) Draw5PlayAll: Build G2 Neptune\n\n23) Simon: Move R3 B2 Neptune\n\n24) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover G2 Neptune B2 Action\nMove G1 Neptune Action\nPass Pass Pass\n\tDraw5PlayAll: Drats\n\n25) Simon: Attack G1 Neptune\n\n26) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n27) Simon: Build Y2 B2\n\n28) Draw5PlayAll: Build Y2 Draw5playall\n\n29) Simon: Move Y1 B2 Neptune\n\n30) Draw5PlayAll: Trade G2 B2 Action\n\n31) Simon: Trade Y1 B1 Simon\n\n32) Draw5PlayAll: Build G1 Draw5playall\n\n33) Simon: Build G2 B2\n\n34) Draw5PlayAll: Trade B2 R2 Action\n\n35) Simon: Discover G2 B2 Y3 Y3\n\n36) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n37) Simon: Build Y1 B2\n\n38) Draw5PlayAll: Discover B1 Draw5playall G3 Earth\n\n39) Simon: Build G1 Y3\n\n40) Draw5PlayAll: Build B2 Earth\n\n41) Simon: Move G1 Y3 Draw5playall\n\n42) Draw5PlayAll: Trade G3 B3 Draw5playall\n\n43) Simon: Build Y2 Neptune\n\n44) Draw5PlayAll: Attack G1 Draw5playall\n\n45) Simon: Sacrifice G2 Y3\nBuild Y3 Simon\nBuild Y3 B2\n\tDraw5PlayAll: I did not type "G1N", but it worked anyway.\n\n46) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 Draw5playall Neptune\nMove Y1 Neptune B2\nCatastrophe B2 Yellow\n\n47) Simon: Move Y3 Simon Action\n\n\tDraw5PlayAll: I really have nothing. One main problem is that I kept having to change the color of my initial large.\n\tSimon: gg still. Always happy to rematch!\n\nHomeworlds Online (SDG# 30293)\nVariants: "Hard time"\nStarted: 2016.8.24, Ended: 2016.9.16\nParticipants: zeder (S), mxpf (N)\nWinner: zeder\n\n1) mxpf: Homeworld B1 G3 Y3\n\n2) zeder: Homeworld Y2 B1 G3\n\tzeder: homeworld Y2 B1 G3 \n\n3) mxpf: Build Y1 Mxpf\n\n4) zeder: Build G1 Zeder\n\n5) mxpf: Trade Y1 G1 Mxpf\n\n6) zeder: Trade G1 Y1 Zeder\n\n7) mxpf: Build Y1 Mxpf\n\n8) zeder: Build G1 Zeder\n\n9) mxpf: Discover Y1 Mxpf G2 Monad\n\n10) zeder: Discover Y1 Zeder B3 Functor\n\n11) mxpf: Build Y1 Mxpf\n\n12) zeder: Sacrifice G1 Zeder\nBuild Y2 Functor\n\n13) mxpf: Trade Y1 R1 Mxpf\n\n14) zeder: Build G1 Zeder\n\n15) mxpf: Discover G1 Mxpf Y2 Dyad\n\tmxpf: I just realized you're my Morelli opponent on Little Golem!\n\tmxpf: trade y3 g3 mxpf\n\n16) zeder: Trade Y1 R1 Functor\n\n17) mxpf: Build Y1 Mxpf\n\tzeder: Small world!\n\tzeder: I am not feeling very happy about that Morelli game so far. :(\n\n18) zeder: Trade Y2 G2 Functor\n\n\nHomeworlds Online (SDG# 30303)\nVariants: "Hard time"\nStarted: 2016.8.24, Ended: 2016.9.8\nParticipants: ladybugsfly (S), mxpf (N)\nWinner: ladybugsfly\n\n1) mxpf: Homeworld Y1 G3 B3\n\n2) ladybugsfly: Homeworld B3 G2 Y3\n\tmxpf: I'll try to last longer this time!\n\n3) mxpf: Build B1 Mxpf\n\n4) ladybugsfly: Build Y1 Ladybugsfly\n\n5) mxpf: Build B1 Mxpf\n\n6) ladybugsfly: Trade Y1 B1 Ladybugsfly\n\n7) mxpf: Trade B1 R1 Mxpf\n\n8) ladybugsfly: B Y1 Ladybugsfly\n\n9) mxpf: Trade B1 Y1 Mxpf\n\n10) ladybugsfly: B Y2 Ladybugsfly\n\n11) mxpf: Build Y2 Mxpf\n\n12) ladybugsfly: Discover Y1 Ladybugsfly G1 Pikachu\n\n13) mxpf: Discover Y1 Mxpf B2 Cornholio\n\n14) ladybugsfly: B Y2 Pikachu\n\n15) mxpf: Move Y1 Cornholio Pikachu\n\n16) ladybugsfly: Sacrifice B1 Ladybugsfly\nTrade Y2 R2 Pikachu\n\tmxpf: Oh shoot. Almost built a y3 at my homeworld...but realized that you could sacrifice that y2 to trigger a catastrophe.\n\n17) mxpf: Move Y1 Pikachu Ladybugsfly\n\n18) ladybugsfly: Trade Y3 R3 Ladybugsfly\n\tladybugsfly: Almost catastrophied you with yellow two turns ago, but realized I'd leave my homeworld without a big ship. ;)\n\tDraw5PlayAll: This is a problem.\n\n19) mxpf: Discover Y1 Ladybugsfly G1 Abraham\n\tmxpf: Here, let me help you with removing that big ship!\n\n20) ladybugsfly: D R2 Pikachu Y2 Riachu\n\tmxpf: (just kidding)\n\n21) mxpf: Build Y3 Abraham\n\n22) ladybugsfly: Build Y3 Pikachu\n\n23) mxpf: Move Y3 Abraham Riachu\n\n24) ladybugsfly: Build Y3 Ladybugsfly\n\n25) mxpf: Sacrifice R1 Mxpf\nAttack R2 Riachu\n\n26) ladybugsfly: S Y2 Ladybugsfly\nM Y1 Pikachu Riachu\nM Y1 Riachu Mxpf\n\n27) mxpf: Trade Y2 R2 Mxpf\n\n28) ladybugsfly: Move Y1 Mxpf Riachu\n\n29) mxpf: Move Y3 Riachu Abraham\n\tmxpf: I'm guessing by your system names that you're a Go player? :-)\n\n30) ladybugsfly: M Y1 Riachu Abraham\n\tladybugsfly: You bet! Is your name Abraham?\n\tmxpf: Ha, actually reading a sci-fi book by Daniel Abraham right now.\n\n31) mxpf: Discover Y3 Abraham B2 Scopuli\n\n32) ladybugsfly: Build R1 Ladybugsfly\n\n33) mxpf: Build Y2 Abraham\n\n34) ladybugsfly: Build Y2 Abraham\nCatastrophe Abraham Y\n\n35) mxpf: Trade Y3 G3 Scopuli\n\n36) ladybugsfly: Build Y1 Pikachu\n\n37) mxpf: Build G1 Scopuli\n\n38) ladybugsfly: D Y1 Pikachu B2 Squirtle\n\n39) mxpf: Trade G3 Y3 Scopuli\n\tladybugsfly: Whoops! Forgot to abandon Abraham to the hyperspatial flux the firs time.\n\n40) ladybugsfly: Move Y3 Pikachu Squirtle\n\n41) mxpf: Trade R2 Y2 Mxpf\n\n42) ladybugsfly: M Y1 Squirtle Mxpf\n\n43) mxpf: Sacrifice Y2 Mxpf\nMove R2 Riachu Mxpf\nDiscover Y3 Scopuli R1 Caliban\n\n44) ladybugsfly: Build Y1 Mxpf\n\tmxpf: Easily the grossest name for a planet\n\n\tmxpf: Gg!'\n\tDraw5PlayAll: Huh? Was there a time forfeit?\n\nHomeworlds Online (SDG# 30297)\nVariants: "Hard time"\nStarted: 2016.8.25, Ended: 2016.8.28\nParticipants: sompm (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld Y1 B2 G3\n\n\nHomeworlds Online (SDG# 30291)\nVariants: "Hard time"\nStarted: 2016.8.25, Ended: 2016.9.12\nParticipants: Felix (S), Simon (N)\nWinner: Felix\n\n1) Simon: Homeworld R1 B3 G3\n\n2) Felix: H B1 R2 G3\n\tSimon: Have fun :)\n\tFelix: You too! Good luck :) hey, how do you set it up so that your open challenge automatically renews after someone accepts it? Make sense? I'm tired of having to set up new challenges each time...\n\tSimon: The feature is called Standing challenge, accessible from main navigation -> Challenges -> Manage standing challenges, near the top.\n\tDraw5PlayAll: Though personally I dislike it because if I go AFK unexpectedly for long periods of time, I can accumulate vast numbers of time forfeits. Just look at wil.\n\n3) Simon: Build G1 Simon\n\n4) Felix: Build G1 Felix\n\tFelix: Ah, that's it! Thanks for the tip mate.\n\n5) Simon: Trade G1 R1 Simon\n\n6) Felix: Trade G1 B1 Felix\n\n7) Simon: Build R1 Simon\n\n8) Felix: Build B1 Felix\n\n9) Simon: Build G1 Simon\n\n10) Felix: Build G1 Felix\n\n11) Simon: Trade G1 Y1 Simon\n\n12) Felix: Trade G1 Y1 Felix\n\n13) Simon: Discover R1 Simon R2 R2\n\n14) Felix: Discover B1 Felix R3 Carnagie\n\n15) Simon: Build R2 Simon\n\n16) Felix: Build G1 Felix\n\n17) Simon: Discover R1 Simon G2 G2\n\n18) Felix: Discover G1 Felix R3 Keepaway\n\n19) Simon: Build R3 G2\n\n20) Felix: Build B2 Felix\n\n21) Simon: Trade R2 B2 Simon\n\n22) Felix: Trade B2 R2 Felix\n\n23) Simon: Move B2 Simon G2\n\n24) Felix: Sacrifice G1 Keepaway\nBuild R3 Felix\n\n25) Simon: Trade R3 Y3 G2\n\n26) Felix: Discover R2 Felix R3 Pax\n\n27) Simon: Build B2 G2\n\n28) Felix: Build G1 Felix\n\n29) Simon: Trade B2 Y2 G2\n\n30) Felix: Move G3 Felix Carnagie\n\n31) Simon: Build B2 G2\n\n32) Felix: Build B2 Carnagie\n\n33) Simon: Discover B2 G2 G3 G3\n\n34) Felix: Trade B2 Y2 Carnagie\n\n35) Simon: Build B2 G3\n\n36) Felix: Build B3 Carnagie\n\n37) Simon: Sacrifice Y2 G2\nMove B2 G3 Felix\nMove B2 G3 Felix\nCatastrophe Felix B\n\n38) Felix: M B3 Carnagie Felix\n\n39) Simon: Move Y3 G2 Pax\n\n40) Felix: Sacrifice Y2 Carnagie\nMove R3 Felix Simon\nMove B3 Felix Simon\n\tDraw5PlayAll: Klingon invasion!\n\n\tFelix: *Closes eyes tightly and prays this will work*\n\tSimon: gg\n\tFelix: It was touch and go there at the end. Good game!\n\tSimon: "A catastrophe occurred in the Felix system. All conversion (B) technology was lost."\r\nThis would have made sense only if I could move the reds, then build 2 reds afterwards. But there would have been only 1 in the stash, that's wasn't a followup thread. :-)\n\tFelix: Yeah, it probably would have been wiser to try to capture one or more of my reds before connecting our systems with that catastrophe. It ended up working in my favor to have our systems connected like that...\n\tDraw5PlayAll: I hate connecting the systems and I prefer to trigger the one that will not cause a connection.\n\nHomeworlds Online (SDG# 30309)\nVariants: "Hard time"\nStarted: 2016.8.25, Ended: 2016.9.18\nParticipants: mxpf (S), Felix (N)\nWinner: Felix\n\n1) Felix: H R1 B3 G3\n\n2) mxpf: Homeworld Y2 G3 B3\n\n3) Felix: Build G1 Felix\n\tFelix: Hi, good luck and have fun!\n\n4) mxpf: Build B1 Mxpf\n\n5) Felix: Trade G1 Y1 Felix\n\n6) mxpf: Trade B1 R1 Mxpf\n\n7) Felix: Build Y1 Felix\n\n8) mxpf: Build R1 Mxpf\n\tmxpf: thanks! you too\n\n9) Felix: Build Y1 Felix\n\n10) mxpf: Build R2 Mxpf\n\n11) Felix: Discover Y1 Felix G2 Darrow\n\n12) mxpf: Trade R2 Y2 Mxpf\n\n13) Felix: Build Y2 Darrow\n\n14) mxpf: Discover Y2 Mxpf G1 Clarence\n\n15) Felix: Trade Y1 B1 Felix\n\n16) mxpf: Build R2 Mxpf\n\n17) Felix: Move B1 Felix Darrow\n\n18) mxpf: Move Y2 Clarence Darrow\n\n19) Felix: Sacrifice G3 Felix\nBuild Y1 Darrow\nBuild Y3 Felix\nBuild Y3 Felix\nCatastrophe Darrow Yellow\n\n20) mxpf: Discover R1 Mxpf Y1 Cleveland\n\n21) Felix: Trade Y3 G3 Felix\n\n22) mxpf: Trade B3 G3 Mxpf\n\n23) Felix: Build Y1 Felix\n\n24) mxpf: Sacrifice G3 Mxpf\nBuild R2 Cleveland\nBuild R2 Mxpf\nBuild R3 Cleveland\n\n25) Felix: Trade G3 R3 Felix\n\n26) mxpf: Discover R3 Cleveland Y2 Springfield\n\n27) Felix: M R3 Felix Darrow\n\n\tFelix: That's a shame!\n\tDraw5PlayAll: Both of you had a bluebird mistake.\n\tFelix: But he had no yellow, so mine was no mistake\n\tDraw5PlayAll: Was there a reason you neglected to sac Y3@Felix and move the red three steps to mxpf, winning instantly?\n\tFelix: Suspense? :)\n\nHomeworlds Online (SDG# 30319)\nVariants: "Hard time"\nStarted: 2016.8.26, Ended: 2016.9.27\nParticipants: Felix (S), ladybugsfly (N)\nWinner: Felix\n\n1) ladybugsfly: Homeworld Y3 G2 B3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) ladybugsfly: Build B1 Ladybugsfly\n\tFelix: Welcome! First game?\n\n4) Felix: Build G1 Felix\n\n5) ladybugsfly: Discover B1 Ladybugsfly G1 Squirtle\n\tladybugsfly: Nope, I've played in person a bit, but was just recently introduced to SuperDuper. :)\n\n6) Felix: Trade G1 Y1 Felix\n\tFelix: Excellent. Well have fun and good luck!\n\n7) ladybugsfly: Build B1 Ladybugsfly\n\n8) Felix: Build Y1 Felix\n\n9) ladybugsfly: Discover B1 Ladybugsfly G1 Wartortle\n\n10) Felix: Trade Y1 B1 Felix\n\n11) ladybugsfly: Build B2 Squirtle\n\n12) Felix: Build B2 Felix\n\n13) ladybugsfly: Build B2 Wartortle\n\n14) Felix: Trade B2 Y2 Felix\n\n15) ladybugsfly: Trade B2 Y2 Squirtle\n\n16) Felix: Discover B1 Felix G2 Rim\n\n17) ladybugsfly: Trade B1 R1 Wartortle\n\n18) Felix: Trade Y1 R1 Felix\n\n19) ladybugsfly: Build R2 Wartortle\n\n20) Felix: Move R1 Felix Rim\n\n21) ladybugsfly: B Y1 Squirtle\n\n22) Felix: Build R2 Rim\n\n23) ladybugsfly: Trade R1 Y1 Wartortle\n\n24) Felix: Trade R2 Y2 Rim\n\n25) ladybugsfly: Build B1 Ladybugsfly\n\n26) Felix: Build B2 Rim\n\n27) ladybugsfly: Trade B3 G3 Ladybugsfly\n\n28) Felix: Discover B2 Rim G1 Pax\n\n29) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild B2 Wartortle\nBuild B3 Squirtle\nBuild B3 Ladybugsfly\n\n30) Felix: Build G2 Felix\n\n31) ladybugsfly: Sacrifice Y2 Squirtle\nDiscover B3 Squirtle Y2 Blastoise\nMove Y1 Squirtle Blastoise\n\n32) Felix: Build G3 Felix\n\n33) ladybugsfly: Sacrifice B1 Squirtle\nTrade Y1 G1 Blastoise\n\n34) Felix: Sacrifice G2 Felix\nBuild B1 Pax\nBuild Y1 Rim\n\n35) ladybugsfly: Trade B1 R1 Ladybugsfly\n\n36) Felix: Sacrifice G3 Felix\nBuild Y1 Rim\nBuild Y3 Felix\nBuild Y3 Felix\n\n37) ladybugsfly: Sacrifice B2 Wartortle\nTrade B3 G3 Blastoise\nTrade B3 G3 Ladybugsfly\n\n38) Felix: Build G2 Felix\n\n39) ladybugsfly: Move G3 Blastoise Felix\n\n40) Felix: Attack G3 Felix\n\n41) ladybugsfly: Move G1 Blastoise Felix\nCatastrophe Felix G\n\n42) Felix: Trade B2 Y2 Pax\n\n43) ladybugsfly: Discover Y1 Wartortle G2 Pikachu\n\n44) Felix: Move Y2 Felix Pikachu\n\n45) ladybugsfly: Move Y1 Pikachu Wartortle\n\n46) Felix: Build B1 Pax\n\n47) ladybugsfly: Move Y1 Wartortle Rim\nCatastrophe Rim Y\n\n48) Felix: B R2 Rim\n\n49) ladybugsfly: Trade R2 Y2 Wartortle\n\n50) Felix: Trade R1 Y1 Rim\n\n51) ladybugsfly: Build Y1 Wartortle\n\n52) Felix: Trade Y3 G3 Felix\n\n53) ladybugsfly: Build R1 Ladybugsfly\n\n54) Felix: Build G1 Felix\n\n55) ladybugsfly: M R1 Ladybugsfly Wartortle\n\n56) Felix: Build G3 Felix\n\n57) ladybugsfly: Build R2 Wartortle\n\n58) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Pikachu\nBuild Y3 Rim\n\n59) ladybugsfly: Discover R1 Wartortle B2 Riachu\n\n60) Felix: Move Y3 Rim Wartortle\n\n61) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild R2 Wartortle\nBuild R3 Wartortle\nBuild R3 Ladybugsfly\n\n62) Felix: Move R2 Rim Wartortle\nCatastrophe Wartortle Red\n\n63) ladybugsfly: Move R3 Ladybugsfly Wartortle\n\n64) Felix: Move Y3 Wartortle Rim\n\n65) ladybugsfly: Move R3 Wartortle Rim\n\n66) Felix: Sacrifice Y3 Rim\nMove B1 Pax Ladybugsfly\nMove B1 Pax Ladybugsfly\nMove Y2 Pax Ladybugsfly\n\n67) ladybugsfly: S Y2 Wartortle\nM R3 Rim Wartortle\nM R3 Wartortle Ladybugsfly\n\n68) Felix: Sacrifice G3 Felix\nBuild Y2 Ladybugsfly\nBuild Y3 Ladybugsfly\nBuild B2 Ladybugsfly\nCatastrophe Ladybugsfly Yellow\n\n69) ladybugsfly: B B3 Wartortle\n\n70) Felix: Trade B2 R2 Ladybugsfly\n\n71) ladybugsfly: Attack R2 Ladybugsfly\n\n72) Felix: Trade G3 R3 Felix\n\n73) ladybugsfly: Sacrifice R2 Ladybugsfly\nAttack B1 Ladybugsfly\nAttack B1 Ladybugsfly\n\n74) Felix: B B2 Rim\n\n75) ladybugsfly: M B3 Wartortle Pikachu\n\n76) Felix: Build G1 Felix\n\n77) ladybugsfly: Build B3 Pikachu\n\n78) Felix: Build G3 Felix\n\n79) ladybugsfly: S R1 Riachu\nA Y2 Pikachu\n\n80) Felix: Sacrifice Y3 Felix\nMove G1 Felix Ladybugsfly\nMove G1 Felix Ladybugsfly\nMove G3 Felix Ladybugsfly\nCatastrophe Ladybugsfly Green\n\n\tFelix: Thanks, you too! You played very well!\n\tFelix: I'm happy to rematch any time.\n\nHomeworlds Online (SDG# 30316)\nVariants: "Hard time"\nStarted: 2016.8.26, Ended: 2016.9.9\nParticipants: mxpf (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) mxpf: Homeworld Y1 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) mxpf: Build G1 Mxpf\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) mxpf: Trade G1 Y1 Mxpf\n\n7) Draw5PlayAll: Build Y2 Draw5playall\n\n8) mxpf: Build Y2 Mxpf\n\n9) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n10) mxpf: Discover Y1 Mxpf B3 Bootstrap\n\n11) Draw5PlayAll: Discover B2 Draw5playall G2 Keeper\n\n12) mxpf: Discover Y2 Mxpf G3 Cyclades\n\tDraw5PlayAll: What made you choose bootstrap as your system name?\n\tmxpf: we were just kicking off a bootstrap project at work, it was on my mind\n\n13) Draw5PlayAll: Build Y2 Draw5playall\n\n14) mxpf: Build G1 Mxpf\n\tmxpf: Why do you ask? :-)\n\n15) Draw5PlayAll: Build B1 Keeper\n\n16) mxpf: Build Y2 Cyclades\n\n17) Draw5PlayAll: Move Y2 Draw5playall Keeper\n\n18) mxpf: Trade G1 R1 Mxpf\n\n19) Draw5PlayAll: Build Y3 Draw5playall\n\n20) mxpf: Move Y2 Cyclades Keeper\n\n21) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n22) mxpf: Sacrifice G3 Mxpf\nBuild Y1 Keeper\nBuild Y3 Bootstrap\nBuild Y3 Cyclades\n\n23) Draw5PlayAll: Sacrifice Y2 Keeper\nMove B2 Keeper Cyclades\nMove B2 Cyclades Mxpf\n\n24) mxpf: Move Y3 Bootstrap Mxpf\n\n25) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack R1 Mxpf\n\n26) mxpf: Trade Y3 R3 Mxpf\n\n27) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Mxpf\nBuild R2 Mxpf\nPass\nCatastrophe Mxpf Red\n\tDraw5PlayAll: Wrong choice!\n\n\nHomeworlds Online (SDG# 30320)\nStarted: 2016.8.27, Ended: 2016.9.7\nParticipants: Steele (S), ladybugsfly (N)\nWinner: Steele\n\n1) ladybugsfly: H Y2 B1 G3\n\n2) Steele: Homeworld G3 B2 Y3\n\n3) ladybugsfly: Build G1 Ladybugsfly\n\n4) Steele: Build Y1 Steele\n\n5) ladybugsfly: Discover G1 Ladybugsfly Y3 Snorlax\n\n6) Steele: Discover Y1 Steele G1 Alpha\n\n7) ladybugsfly: Build G1 Ladybugsfly\n\n8) Steele: B Y1 Steele\n\n9) ladybugsfly: Discover G1 Ladybugsfly Y3 Lapras\n\n10) Steele: Trade Y1 B1 Steele\n\n11) ladybugsfly: B G2 Ladybugsfly\n\n12) Steele: D B1 Steele Y1 Beta\n\n13) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild G2 Lapras\nBuild G2 Snorlax\nBuild G3 Ladybugsfly\n\n14) Steele: Build Y1 Steele\n\n15) ladybugsfly: T G2 Y2 Ladybugsfly\n\n16) Steele: B Y2 Alpha\n\n17) ladybugsfly: D G1 Snorlax B1 Squirtle\n\n18) Steele: Trade Y1 R1 Steele\n\n19) ladybugsfly: Trade G1 R1 Squirtle\n\n20) Steele: Trade B1 G1 Beta\n\n21) ladybugsfly: Discover G1 Lapras Y1 Eevee\n\n22) Steele: Build G2 Beta\n\n23) ladybugsfly: Build G3 Ladybugsfly\n\n24) Steele: Discover G2 Beta B3 Gamma\n\n25) ladybugsfly: Discover Y2 Ladybugsfly B3 Drowzee\n\n26) Steele: Sacrifice Y3 Steele\nMove G1 Beta Gamma\nMove G1 Gamma Ladybugsfly\nMove G2 Gamma Ladybugsfly\nCatastrophe Ladybugsfly G\n\n\nHomeworlds Online (SDG# 30318)\nVariants: "Unrated"\nStarted: 2016.8.29, Ended: 2016.9.27\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Here we go again :) Have fun\n\tDraw5PlayAll: A fortress.\n\n4) Felix: Build G1 Felix\n\tFelix: It's actually my favorite opening, but it's generally considered \r\nweaker, so I don't use it as often as I'd like.\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Felix: Build G1 Felix\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) Felix: Trade G1 R1 Felix\n\n11) Draw5PlayAll: Discover B1 Draw5playall G2 Keeper\n\n12) Felix: Build R1 Felix\n\n13) Draw5PlayAll: Build Y1 Draw5playall\n\n14) Felix: Build Y2 Felix\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) Felix: Discover Y1 Felix G1 Rim\n\n17) Draw5PlayAll: Move Y2 Draw5playall Keeper\n\n18) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Rim\nBuild R2 Felix\n\n19) Draw5PlayAll: Build Y3 Keeper\n\n20) Felix: Trade Y3 G3 Felix\n\n21) Draw5PlayAll: Trade Y3 R3 Keeper\n\n22) Felix: Build Y3 Felix\n\n23) Draw5PlayAll: Build Y3 Keeper\n\n24) Felix: T Y3 B3 Felix\n\n25) Draw5PlayAll: Build R2 Keeper\n\n26) Felix: Move R1 Felix Rim\n\n27) Draw5PlayAll: Discover Y3 Keeper B1 Action\n\n28) Felix: Sacrifice Y1 Rim\nDiscover Y2 Felix G1 Pax\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\n30) Felix: Build G2 Felix\n\n31) Draw5PlayAll: Move R2 Keeper Action\n\n32) Felix: Move B3 Felix Pax\n\n33) Draw5PlayAll: Discover G1 Draw5playall B2 Draw2useem\n\n34) Felix: Discover G2 Felix B1 Arakkis\n\n35) Draw5PlayAll: Build G2 Draw5playall\n\n36) Felix: Build G3 Arakkis\n\n37) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 Keeper\nBuild R3 Action\n\n38) Felix: Sacrifice G3 Arakkis\nBuild G3 Arakkis\nBuild R3 Rim\nBuild B2 Pax\n\n39) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Keeper\nBuild Y3 Action\n\n40) Felix: Move R3 Rim Draw2useem\n\tDraw5PlayAll: Too many ships, too small of an area. Perhaps I should sac a Y1 and develop a colony there?\n\n41) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover G1 Draw2useem Y1 Newrule\n\tFelix: There are quite a few ships out here... But I could always use more :)\n\n42) Felix: Sacrifice Y2 Pax\nDiscover G2 Arakkis Y2 Dune\nMove G3 Arakkis Dune\n\tDraw5PlayAll: Oh, so systems are sorted alphabetically.\n\n43) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild G2 Newrule\nBuild B1 Keeper\n\tFelix: Huh. That's new to me too.\n\n44) Felix: Move G3 Dune Newrule\n\tDraw5PlayAll: Weak factory, if you ask me. More for the green teleportation, but with an extra blue on the side.\n\n45) Draw5PlayAll: Discover G2 Newrule B2 Spacejackpot\n\tFelix: Clever move! I would have had you in the next two moves if you hadn't evacuated your green.\n\n46) Felix: Sacrifice R1 Felix\nAttack G1 Newrule\n\tDraw5PlayAll: Now I do that to you.\n\n47) Draw5PlayAll: Move R3 Action Dune\n\n48) Felix: Sacrifice G2 Dune\nBuild G2 Felix\nBuild R1 Draw2useem\n\n49) Draw5PlayAll: Move Y3 Action Spacejackpot\n\n50) Felix: Move G1 Newrule Draw2useem\n\n51) Draw5PlayAll: Sacrifice Y2 Keeper\nMove B1 Keeper Pax\nMove B1 Keeper Pax\nCatastrophe Pax B\nPass\nPass\nPass\n\n52) Felix: Sacrifice G3 Felix\nBuild G1 Draw2useem\nBuild G3 Felix\nBuild Y2 Rim\n\n53) Draw5PlayAll: Discover R3 Dune B1 Icetraders\n\tDraw5PlayAll: I needed to get some ships in the bank!!\n\n54) Felix: Move Y2 Rim Draw2useem\n\tFelix: It was getting pretty thin!\n\n55) Draw5PlayAll: Sacrifice G2 Spacejackpot\nBuild Y2 Action\nPass\n\tDraw5PlayAll: This only backfired...\n\n56) Felix: Build G2 Draw2useem\n\tDraw5PlayAll: Taking advantage of the fact that you have nowhere safe to build that yellow!\n\n57) Draw5PlayAll: Trade G3 B3 Draw5playall\n\tFelix: That's a great strategic technique, if you can tell that the opponent has nowhere safe to build, you can guarantee yourself the piece on your next move.\n\n58) Felix: Build G3 Newrule\n\tDraw5PlayAll: Green Teleportaion and trading in one move!\n\n59) Draw5PlayAll: Move Y3 Action Felix\n\n60) Felix: Attack Y3 Felix\n\tFelix: Good threat anticipation. But now you have no ability to build!\n\n61) Draw5PlayAll: Sacrifice Y3 Spacejackpot\nMove Y2 Action Felix\nMove Y1 Keeper Action\nMove Y1 Action Felix\nCatastrophe Felix Y\n\tDraw5PlayAll: GRRRR.\n\n62) Felix: Trade R1 B1 Draw2useem\n\n63) Draw5PlayAll: Trade R2 B2 Action\n\n64) Felix: T G2 B2 Felix\n\n65) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n66) Felix: Build Y1 Draw2useem\n\n67) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n68) Felix: Build Y1 Draw2useem\n\n69) Draw5PlayAll: Trade Y3 B3 Draw5playall\n\n70) Felix: Sacrifice Y3 Rim\nMove B1 Draw2useem Draw5playall\nMove B2 Felix Keeper\nMove B2 Keeper Draw5playall\nCatastrophe Draw5playall Blue\n\n71) Draw5PlayAll: Sacrifice B2 Action\nTrade R3 Y3 Keeper\nPass\n\n72) Felix: Sacrifice Y2 Draw2useem\nMove R3 Draw2useem Draw5playall\nMove R2 Felix Draw5playall\nCatastrophe Draw5playall Red\n\n\tDraw5PlayAll: Our planet has become inhospitable and we rigged the Auto-Destruct to explode the empty starship if it was not destroyed by our [CONFIDENTIAL INFORMATION NOT DISCLOSED]\n\tFelix: We are glad to hear that we helped solve your tribble problem. However, when our first aid vessels entered the sector they discovered that the small red star remaining was also infested with tribbles. Our medical ships are also equipped with nuclear warheads, so we went ahead and took care of the tribble trouble for you. Unfortunately, the extermination process also destroyed your remaining home planet. Sorry about that...\n\tDraw5PlayAll: We do not mind. Anyone still alive at the time of the first catastrophe was already in the Galaxy-class warp ship when the second hit. We need a new planet to settle on, but we can survive on the large ship for a few years.\r\n\r\nI wish the defense system was better, but every time they try to give me one, it repels our own ships during tests.\n\nHomeworlds Online (SDG# 30327)\nVariants: "Unrated, Hard time"\nStarted: 2016.8.31, Ended: 2016.9.29\nParticipants: MagicJohn (S), Felix (W), Draw5PlayAll (N), mxpf (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\tDraw5PlayAll: This is the political chatter game and NOT the team game.\n\n2) mxpf: Homeworld G2 B3 Y3\n\n3) MagicJohn: Homeworld Y1 B2 G3\n\n4) Felix: Homeworld R2 G3 B3\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) mxpf: Build Y1 Mxpf\n\n7) MagicJohn: Build G1 Magicjohn\n\tmxpf: So...what does everything think about Larreta's plan to urbanize Villa 31? I'm all for it, myself.\n\tmxpf: *everyone DANG THESE CHUBBY FINGERS\n\tDraw5PlayAll: Felix is clearly the best player in the group. Be careful before he denies each of us of a different economy and then proceeds to build every legal R3 not used as a star.\n\tMagicJohn: build g1 magicjohn\n\n8) MagicJohn: Trade G3 R3 Magicjohn\n\tDraw5PlayAll: I wonder if we should all target Felix though... After all, he can probably find ways of snagging all R3 ships and then implode our armies, dominating the battlefield.\r\n\r\nI think we should not do this. After all, it is too risky for the rest of us. What if someone has to consistently make the big sacs and send in 2s and 3s while others send 1s and 2s? An anti-Felix conspiracy, or any other player for that matter, would cause some game-theoretical issues.\r\n\r\nI have only one suggestion: Don't panic.\n\tDraw5PlayAll: Really though, if two people are going to cooperate to destroy a third, MAKE SURE that both people are giving up an equal amount. Otherwise the deal could flop: "Ha! Why don't you just lose those ships instead!" Or "Ha! I will not give up an R3 & Y3 for this!"\n\tMagicJohn: What I intended to initiate was a Homeworlds game where players would form alliances and negotiate actions that could influence the outcome of games. Perhaps my languaging (political chatter) was misleading...... Sorry if it was. Real-life political discussion was not my intent. Given what is now happening in the presidential race, I'm not at all sure rational discussion or discourse is even possible. The Villa 31 situation is well discussed at http://www.bubblear.com/how-viable-is-the-villa-31-urbanization-plan-a-shantytown-delegate-weighs-in/. Sounds like another country is having to deal with the gaps between ideas, proposals, promises, and implementation of legislation...... with a tad of corruption tossed in on the side. Good luck with that... \n\tDraw5PlayAll: Exactly the point of my last 2 posts\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tFelix: Oops. I didn't want that to happen! Sorry for timing out, everyone, but have fun!\n\tDraw5PlayAll: This game just got a LOT more interesting.\n\tDraw5PlayAll: When we sighted the sleeper ship, our planetary empire immediately passed laws that would support the education of highly intelligent members of our species, so that we could build the biggest ships faster and claim the sleeper.\n\n10) mxpf: Build Y1 Mxpf\n\tMagicJohn: Note to battleship commanders: Please initiate beautification project and paint ships an eye-catching tone of red. \n\n11) MagicJohn: Build R1 Magicjohn\n\tDraw5PlayAll: We are not interested in "looking nice". Instead we wish to peacefully explore the Galaxy.\n\tMagicJohn: First impressions are important....\n\tDraw5PlayAll: We disagree, especially when large-scale and important galactic success vs failure is at stake.\n\n12) Draw5PlayAll: Build Y1 Draw5playall\n\tmxpf: oh! Look at that! That sleeper is so close to our system! We must away to the stars, my people.\n\tDraw5PlayAll: So, how do you like the idea of each person throwing a B1 at the system and destroying the sleeper? After all, there is only a 1/3 chance you will get it.\n\tDraw5PlayAll: Plus the system is green so if someone bails, you just build another blue\n\tMagicJohn: We will consider your plan carefully..\n\n13) mxpf: Discover Y1 Mxpf B1 Monad\n\n14) MagicJohn: Trade R3 Y3 Magicjohn\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\tmxpf: Indeed, I am considering the pants off of that plan.\n\n16) MagicJohn: Build Y2 Magicjohn\n\n17) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\tFelix: Enjoy fighting over my corpse, folks!\n\tDraw5PlayAll: *ping*\n\tDraw5PlayAll: I have intercepted message from one of the crew on mxpf' ships.\r\n\r\nLife support systems are failing! We know you have the fix. Can you please assist?\r\n\r\nFascinating.\n\n18) MagicJohn: Discover Y2 Magicjohn G3 Kennedy\n\tMagicJohn: good grief.....\n\n19) Draw5PlayAll: Discover B2 Draw5playall G2 Keeper\n\tDraw5PlayAll: This game is pointless now\n\n20) MagicJohn: Build Y2 Kennedy\n\n21) Draw5PlayAll: Move Y1 Draw5playall Keeper\n\tMagicJohn: Well, there are still two races trying to take over the universe,,,,,\n\n22) MagicJohn: Move Y2 Kennedy Keeper\n\n23) Draw5PlayAll: Sacrifice Y1 Keeper\nDiscover B2 Keeper G1 Earth\n\n24) MagicJohn: Move Y2 Keeper Earth\n\tDraw5PlayAll: The whole intent of your game was ruined though. Now we have no diplomacy or making deals. But we still have 5 of every piece. This will make for a crowded Galaxy.\n\tMagicJohn: What do you want to do??\n\tDraw5PlayAll: Your move\n\n25) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove B2 Earth Mxpf\n\n26) MagicJohn: Build Y1 Earth\n\n27) Draw5PlayAll: Build B1 Mxpf\n\n28) MagicJohn: Build R1 Magicjohn\n\n29) Draw5PlayAll: Trade B2 R2 Mxpf\n\n\tMagicJohn: Sorry, 15 year old pup just died and our "pack" is taking some time off....\n\tDraw5PlayAll: This game was boring. We should do another with 4/4/10 time control\n\tDraw5PlayAll: I knew it was just a matter of.... time... before something like this would happen.\r\nI have a new challenge with a better time control and not using Hard Time.\n\nHomeworlds Online (SDG# 30357)\nVariants: "Hard time"\nStarted: 2016.9.2, Ended: 2016.11.4\nParticipants: Pheonixian (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3 Null\nPass\n\n2) Pheonixian: Homeworld B1 R2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) Pheonixian: Build G1 Pheonixian\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Pheonixian: Trade G1 Y1 Pheonixian\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Pheonixian: Build G1 Pheonixian\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) Pheonixian: Trade G1 R1 Pheonixian\n\n11) Draw5PlayAll: Discover B1 Draw5playall G2 Earth\n\n12) Pheonixian: Build G1 Pheonixian\n\n13) Draw5PlayAll: Build B1 Earth\n\n14) Pheonixian: Discover G1 Pheonixian B3 Apple\n\n15) Draw5PlayAll: Build B2 Earth\n\n16) Pheonixian: Build G1 Apple\n\n17) Draw5PlayAll: Trade B2 R2 Earth\n\n18) Pheonixian: Trade G1 R1 Apple\n\n19) Draw5PlayAll: Build B2 Earth\n\n20) Pheonixian: Build G1 Pheonixian\n\n21) Draw5PlayAll: Build G1 Draw5playall\n\n22) Pheonixian: Sac G3 Pheonixian\nBuild G2 Apple\nBuild G2 Apple\nBuild G3 Pheonixian\n\n23) Draw5PlayAll: Discover G1 Draw5playall B2 Icehouse\n\n24) Pheonixian: Build G3 Pheonixian\n\n25) Draw5PlayAll: Trade B2 Y2 Earth\n\n26) Pheonixian: Trade G3 B3 Pheonixian\n\n27) Draw5PlayAll: Build G3 Icehouse\n\n28) Pheonixian: Trade G2 B2 Apple\n\n29) Draw5PlayAll: Sacrifice G3 Icehouse\nBuild G2 Draw5playall\nBuild G3 Icehouse\nBuild Y1 Earth\n\n30) Pheonixian: Trade G2 Y2 Apple\n\n31) Draw5PlayAll: Build R2 Earth\n\n32) Pheonixian: Sacrifice G3 Pheonixian\nBuild G2 Apple\nBuild G3 Pheonixian\nBuild R3 Apple\n\n33) Draw5PlayAll: Sacrifice Y2 Earth\nMove B1 Earth Apple\nMove B1 Earth Apple\nCatastrophe Apple Blue\n\n34) Pheonixian: Build Y2 Pheonixian\n\n35) Draw5PlayAll: Sacrifice G3 Icehouse\nBuild Y2 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Earth\n\n36) Pheonixian: Discover G1 Pheonixian Y3 Sol\n\n37) Draw5PlayAll: Move Y2 Draw5playall Icehouse\n\tDraw5PlayAll: Wanted the Y3 at Earth\n\n38) Pheonixian: Build G1 Pheonixian\n\tDraw5PlayAll: Ah, this Investment thing.\n\n39) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Icehouse\nBuild G3 Draw5playall\nBuild Y3 Icehouse\n\tPheonixian: I'm not sure that's what I was going for, but it was where I ended up. \n\n40) Pheonixian: Build G3 Sol\n\n41) Draw5PlayAll: Trade G1 B1 Icehouse\n\n42) Pheonixian: Discover G3 Sol B2 Icecube\n\n43) Draw5PlayAll: Sacrifice B1 Icehouse\nTrade R2 B2 Earth\n\n44) Pheonixian: Build G1 Icecube\n\n45) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 Earth\nBuild R1 Earth\n\n46) Pheonixian: Trade G1 B1 Icecube\n\n47) Draw5PlayAll: Move B2 Earth Sol\n\n48) Pheonixian: Move B3 Pheonixian Sol\n\tDraw5PlayAll: Excuse me, I need access to Sol. This will only take a moment.\n\n49) Draw5PlayAll: Discover B2 Sol G1 G1\n\n50) Pheonixian: Move R1 Pheonixian Sol\n\tPheonixian: I'm afraid I simply cannot allow this. \n\n51) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B3 G1\nPass\n\n52) Pheonixian: Discover G1 Sol R2 Firebrand\n\n53) Draw5PlayAll: Move R1 Earth G1\n\n54) Pheonixian: Sacrifice G3 Pheonixian\nBuild G3 Pheonixian\nBuild R3 Sol\nPass\n\n55) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R3 Earth\nBuild R3 G1\nBuild G3 Draw5playall\n\n56) Pheonixian: Move R3 Sol Icecube\n\n57) Draw5PlayAll: Move G2 Draw5playall Firebrand\n\tDraw5PlayAll: You have a new chat message in the 4P game.\n\n58) Pheonixian: Move R1 Sol Icecube\n\n59) Draw5PlayAll: Sacrifice Y3 Earth\nMove B1 Earth Sol\nMove B1 Sol Icecube\nMove B2 G1 Icecube\nCatastrophe Icecube Blue\n\n60) Pheonixian: Discover G1 Pheonixian Y3 Emrakul\n\tDraw5PlayAll: I am sort of just shuffling my pieces around to improve my position. I think I have the advantage in a cat and mouse situation.\n\n61) Draw5PlayAll: Build G3 Icehouse\n\n62) Pheonixian: Discover Y1 Pheonixian R3 Fireball\n\tDraw5PlayAll: NEVER put a ship in a system of the same color if you care about that system!\n\n63) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R3 G1 Emrakul\n\n64) Pheonixian: Discover G1 Emrakul Y1 Venus\n\n65) Draw5PlayAll: S G3 Icehouse\nBuild G3 Icehouse\nBuild R1 Emrakul\nBuild B1 G1\n\n66) Pheonixian: Move G1 Venus Sol\n\n67) Draw5PlayAll: Move R2 Earth Fireball\n\n68) Pheonixian: Move B3 Sol Firebrand\n\n69) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R1 Emrakul Pheonixian\nMove R1 G1 Emrakul\n\n70) Pheonixian: Attack G2 Firebrand\n\n71) Draw5PlayAll: Sacrifice Y1 Earth\nMove B1 G1 Emrakul\n\n72) Pheonixian: Attack R1 Pheonixian\n\tDraw5PlayAll: Having the lone green scares me..\n\n73) Draw5PlayAll: Sacrifice Y2 Icehouse\nMove R1 Emrakul Pheonixian\nMove R2 Fireball Pheonixian\nCatastrophe Pheonixian Red\n\n74) Pheonixian: Build Y1 Pheonixian\n\tPheonixian: I realized what you were doing after your first move, but I don't think I have a way to prevent the catastrophe. \n\tDraw5PlayAll: Time was precisely what I needed!\n\n75) Draw5PlayAll: Move R3 Emrakul Pheonixian\n\tDraw5PlayAll: My fear of a screwup is high but I think I can defend.\n\tPheonixian: Okay you didn't do what I expected. I'm not sure if that's good or bad for me.\n\n\tDraw5PlayAll: To be honest I did not expect it to be this easy myself. Trading for an R2 would set me back several moves, forcing me to defend my homeworld.\n\nHomeworlds Online (SDG# 30367)\nStarted: 2016.9.4, Ended: 2016.10.3\nParticipants: Pheonixian (S), dragonlord (N)\nWinner: Pheonixian\n\n1) dragonlord: Homeworld G1 R2 B3\n\n2) Pheonixian: Homeworld B1 Y2 G3\n\n3) dragonlord: Build B1 Dragonlord\n\n4) Pheonixian: Build G1 Pheonixian\n\n5) dragonlord: Trade B1 G1 Dragonlord\n\n6) Pheonixian: Build G2 Pheonixian\n\n7) dragonlord: Build G2 Dragonlord\n\n8) Pheonixian: Trade G2 B2 Pheonixian\n\n9) dragonlord: Trade G2 Y2 Dragonlord\n\n10) Pheonixian: Build G2 Pheonixian\n\n11) dragonlord: Build G2 Dragonlord\n\n12) Pheonixian: Trade G2 Y2 Pheonixian\n\n13) dragonlord: Discover G2 Dragonlord Y3 Portals\n\n14) Pheonixian: Build B1 Pheonixian\n\n15) dragonlord: Build G2 Portals\n\n16) Pheonixian: Trade B2 R2 Pheonixian\n\n17) dragonlord: Build B1 Dragonlord\n\n18) Pheonixian: Build R1 Pheonixian\n\n19) dragonlord: Trade B1 R1 Dragonlord\n\n20) Pheonixian: Discover R2 Pheonixian G3 Peach\n\n21) dragonlord: Build B1 Dragonlord\n\n22) Pheonixian: Move G1 Pheonixian Peach\n\n23) dragonlord: Move B1 Dragonlord Portals\n\n24) Pheonixian: Build G2 Pheonixian\n\n25) dragonlord: Trade G2 B2 Portals\n\n26) Pheonixian: Move B1 Pheonixian Peach\n\n27) dragonlord: Build B2 Dragonlord\n\n28) Pheonixian: Build Y1 Pheonixian\n\n29) dragonlord: Trade B3 Y3 Dragonlord\n\n30) Pheonixian: Move Y2 Pheonixian Peach\n\n31) dragonlord: Discover G1 Dragonlord R3 Icehouse\n\n32) Pheonixian: Build R1 Pheonixian\n\n33) dragonlord: Build B2 Dragonlord\n\n34) Pheonixian: Sacrifice G3 Pheonixian\nBuild B3 Peach\nBuild G2 Peach\nBuild G3 Pheonixian\n\n35) dragonlord: Sacrifice Y2 Dragonlord\nMove G1 Icehouse Dragonlord\nMove G1 Dragonlord Peach\nCatastrophe Peach Green\n\n36) Pheonixian: Trade G2 Y2 Pheonixian\n\n37) dragonlord: Discover B2 Dragonlord G3 Garden\n\n38) Pheonixian: Discover R1 Pheonixian Y3 Sol\n\n39) dragonlord: Trade B2 R2 Dragonlord\n\n40) Pheonixian: Move R1 Sol Dragonlord\nCatastrophe Dragonlord Red\n\n41) dragonlord: Build Y1 Dragonlord\n\n42) Pheonixian: Discover Y2 Pheonixian G3 Terra\n\n43) dragonlord: Sacrifice B1 Portals\nTrade Y1 B1 Dragonlord\n\n44) Pheonixian: Build Y1 Terra\n\n45) dragonlord: Build B1 Dragonlord\n\n46) Pheonixian: Build G1 Pheonixian\n\n47) dragonlord: Trade Y3 R3 Dragonlord\n\n48) Pheonixian: Discover G1 Pheonixian R3 Dragon\n\n49) dragonlord: Trade B1 Y1 Dragonlord\n\n50) Pheonixian: Build G1 Pheonixian\n\n51) dragonlord: Build G2 Portals\n\n52) Pheonixian: Sacrifice G3 Pheonixian\nBuild R1 Pheonixian\nBuild G2 Dragon\nBuild G3 Pheonixian\n\n53) dragonlord: Build Y2 Dragonlord\n\n54) Pheonixian: Move Y1 Pheonixian Dragon\n\n55) dragonlord: Move Y2 Dragonlord Portals\n\n56) Pheonixian: Build Y3 Dragon\n\n57) dragonlord: Discover Y2 Portals R2 Jail\n\n58) Pheonixian: Discover G1 Pheonixian Y3 Lemon\n\n59) dragonlord: Build B1 Dragonlord\n\tPheonixian: Are you sure about that?\r\nIt lets me win.\n\n60) Pheonixian: Sacrifice Y3 Dragon\nMove G1 Dragon Dragonlord\nMove G2 Dragon Dragonlord\nMove G1 Lemon Dragonlord\nCatastrophe Dragonlord Green\n\n\nHomeworlds Online (SDG# 30315)\nVariants: "Hard time"\nStarted: 2016.9.9, Ended: 2016.9.23\nParticipants: Simon (S), ladybugsfly (N)\nWinner: Simon\n\n1) ladybugsfly: Homeworld Y3 G1 B3\n\n2) Simon: Homeworld B2 R1 G3\n\tSimon: Hi, have fun!\n\n3) ladybugsfly: Build B1 Ladybugsfly\n\n4) Simon: Build G1 Simon\n\tladybugsfly: You, too!\n\n5) ladybugsfly: Discover B1 Ladybugsfly Y2 Charmander\n\n6) Simon: Trade G3 Y3 Simon\n\n7) ladybugsfly: T B1 G1 Charmander\n\n8) Simon: Build G2 Simon\n\n9) ladybugsfly: B G2 Charmander\n\n10) Simon: Discover G2 Simon B3 B3\n\n11) ladybugsfly: D G1 Charmander Y3 Charmeleon\n\n12) Simon: Build Y1 Simon\n\n13) ladybugsfly: B B1 Ladybugsfly\n\n14) Simon: Move Y1 Simon B3\n\n15) ladybugsfly: T B3 G3 Ladybugsfly\n\n16) Simon: Build G2 Simon\n\n17) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild G3 Charmander\nBuild G3 Charmander\nBuild G3 Charmeleon\n\n18) Simon: Move G2 B3 Charmander\nCatastrophe Charmander G\n\n19) ladybugsfly: D G3 Charmeleon Y2 Charmander\n\n20) Simon: Move G2 Simon B3\n\n21) ladybugsfly: Build B1 Ladybugsfly\n\n22) Simon: Build G2 B3\n\n23) ladybugsfly: Trade B1 R1 Ladybugsfly\n\n24) Simon: Trade G2 R2 B3\n\n25) ladybugsfly: Build G2 Charmander\n\n26) Simon: Build G2 B3\n\n27) ladybugsfly: M G3 Charmander Ladybugsfly\n\n28) Simon: Build G3 Simon\n\n29) ladybugsfly: Trade G3 R3 Ladybugsfly\n\n30) Simon: Sacrifice G3 Simon\nBuild G3 Simon\nBuild G3 Simon\nBuild G3 B3\n\n31) ladybugsfly: Move G1 Charmeleon Simon\nCatastrophe Simon G\n\n32) Simon: Sacrifice G2 B3\nBuild Y1 Simon\nBuild Y1 B3\n\n33) ladybugsfly: B B1 Ladybugsfly\n\n34) Simon: Discover Y1 B3 G2 G2\n\n35) ladybugsfly: M R1 Ladybugsfly G2\n\n36) Simon: Sacrifice G3 B3\nBuild Y2 B3\nBuild Y2 G2\nBuild Y3 G2\n\tDraw5PlayAll: Simon, what do you do if you discover two identical systems?\n\tSimon: g2b and g3c :)\n\n37) ladybugsfly: A Y1 G2\n\n38) Simon: Sacrifice R2 B3\nAttack R1 G2\nAttack Y1 G2\n\n39) ladybugsfly: M B1 Ladybugsfly Charmander\n\n40) Simon: Build R1 G2\n\n41) ladybugsfly: B B1 Charmander\n\tDraw5PlayAll: Direct star names vs pocket monsters\n\n42) Simon: Build R2 G2\n\n43) ladybugsfly: T R3 G3 Ladybugsfly\n\n44) Simon: Move Y3 G2 Ladybugsfly\n\n45) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild B2 Charmander\nBuild B2 Ladybugsfly\nBuild B3 Ladybugsfly\n\tladybugsfly: Nice game\n\tladybugsfly: Nice game\n\n46) Simon: Sacrifice R2 G2\nAttack B3 Ladybugsfly\nAttack B2 Ladybugsfly\n\n47) ladybugsfly: Sacrifice B2 Charmander\nTrade B1 G1 Charmander\nTrade B1 G1 Charmander\n\tSimon: gg!\n\n48) Simon: Sacrifice R1 G2\nAttack B1 Ladybugsfly\n\n\nHomeworlds Online (SDG# 31871)\nStarted: 2017.4.4, Ended: 2017.8.14\nParticipants: gjimenez (S), velgarath2 (N)\nWinner: velgarath2\n\n1) velgarath2: Homeworld B2 Y3 G3\n\n2) gjimenez: Homeworld G1 Y2 R3 *\n\n3) velgarath2: Build G1 Velgarath2\n\n4) gjimenez: Build R1 Gjimenez\n\tgjimenez: build R gjimenez\n\tgjimenez: Joder, no funciona\n\tgjimenez: There are insufficient R pieces in the stash.\n\tDraw5PlayAll: You want:\r\nbuild R1 gjimenez\n\n5) velgarath2: Discover G1 Velgarath2 B1 Jagermeister\n\n\nHomeworlds Online (SDG# 30256)\nStarted: 2016.9.13, Ended: 2016.9.29\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Felix: Homeworld B1 R3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tFelix: Same to you :)\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Felix: Trade G1 Y1 Felix\n\n7) ts52: Build Y2 Ts52\n\n8) Felix: Build Y2 Felix\n\n9) ts52: Discover Y2 Ts52 G3 Kermit\n\n10) Felix: Discover Y1 Felix G2 Caladan\n\n11) ts52: Build G1 Ts52\n\n12) Felix: Build G1 Felix\n\n13) ts52: Trade G1 B1 Ts52\n\n14) Felix: Build Y2 Caladan\n\n15) ts52: Build Y3 Kermit\n\n16) Felix: Build Y3 Felix\n\n17) ts52: Move B1 Ts52 Kermit\n\n18) Felix: Trade Y3 B3 Felix\n\n19) ts52: Trade Y3 R3 Kermit\n\n20) Felix: Build Y3 Felix\n\tDraw5PlayAll: Star Wars planets vs muppets\n\tFelix: Wrong on Star Wars. Caladan comes from the book Dune by Frank Herbert :)\n\n21) ts52: Move R3 Kermit Caladan\n\n22) Felix: Sacrifice Y2 Caladan\nMove Y1 Caladan Kermit\nMove Y1 Kermit Ts52\n\n23) ts52: Trade Y1 R1 Ts52\n\n24) Felix: Sacrifice G3 Felix\nBuild Y1 Ts52\nBuild Y2 Ts52\nBuild G1 Felix\nCatastrophe Ts52 Yellow\n\n25) ts52: Build R1 Ts52\n\n26) Felix: Discover B3 Felix G2 Geidi_prime\n\n27) ts52: Trade R1 Y1 Ts52\n\n28) Felix: Trade G1 R1 Felix\n\n29) ts52: Build R1 Caladan\n\n30) Felix: Move R1 Felix Geidi_prime\n\n31) ts52: Build R2 Ts52\n\n32) Felix: Build R2 Geidi_prime\n\n33) ts52: Build Y1 Ts52\n\n34) Felix: Trade Y2 B2 Felix\n\n35) ts52: Build B1 Kermit\n\n36) Felix: Trade R2 Y2 Geidi_prime\n\n37) ts52: Build B2 Kermit\n\n38) Felix: Move B3 Geidi_prime Kermit\nCatastrophe Kermit Blue\n\n39) ts52: Build Y1 Ts52\n\n40) Felix: Build B1 Felix\n\n41) ts52: Move R1 Ts52 Felix\n\n42) Felix: Attack R1 Felix\n\n43) ts52: Sacrifice Y2 Kermit\nMove R1 Caladan Felix\nMove Y1 Ts52 Felix\n\n44) Felix: Move B1 Felix Geidi_prime\n\n45) ts52: Sacrifice G3 Ts52\nBuild Y2 Felix\nBuild Y2 Felix\nBuild R2 Felix\nCatastrophe Felix Red\nCatastrophe Felix Yellow\n\n46) Felix: Build B1 Felix\n\tFelix: Verrrrry nice defense.\n\n47) ts52: Sacrifice Y1 Ts52\nMove R3 Caladan Felix\n\tts52: Thanks. I explored several other options before finding that one.\n\n48) Felix: Sacrifice Y2 Geidi_prime\nMove B1 Felix Ts52\nMove B2 Felix Ts52\n\tFelix: It was effective on multiple fronts. I admit I thought I had you. Very nice playing and good game!\n\n49) ts52: Attack G1 Felix\n\tts52: It was definitely touch and go there for a while. Always tough to recover from catastrophes in your homeworld. Definitely a good game.\n\n\nHomeworlds Online (SDG# 30392)\nVariants: "Sinister"\nStarted: 2016.9.13, Ended: 2017.1.4\nParticipants: Pheonixian (S), Draw5PlayAll (W), Felix (N), dragonlord (E)\nWinner: Draw5PlayAll\n\n1) Felix: Homeworld R2 B3 G3\n\n2) dragonlord: Homeworld R1 B2 G3\n\tFelix: Here we go! Have fun all :)\n\n3) Pheonixian: Homeworld B1 R3 G3\n\tdragonlord: Good luck everyone\n\n4) Draw5PlayAll: Homeworld R2 B3 G3\n\tDraw5PlayAll: Exclamation mark!\n\n5) Felix: Build G1 Felix\n\tDraw5PlayAll: When did I join this game?\n\tFelix: Looks like it's going to be a battle over yellow!\n\n6) dragonlord: Build G1 Dragonlord\n\n7) Pheonixian: Build G1 Pheonixian\n\tDraw5PlayAll: We all can build one though.\n\tdragonlord: Please don't make anyone surrender.\n\tDraw5PlayAll: It never fails. Every time we try a 4P game, someone seems to die on time.\n\tDraw5PlayAll: If you do not like time forfeits, use at least 5/3/7 as the time control. 3/1/10 rarely works.\n\tDraw5PlayAll: If you do not like time forfeits, use at least 5/3/7 as the time control. 3/1/10 rarely works.\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: What??? When I actually wrote that, it showed up once.\n\n9) Felix: Trade G1 Y1 Felix\n\tFelix: Even if time runs out, just don't force a surrender. I think you can choose to or not to, unless hard time is activated.\n\n10) dragonlord: Trade G1 Y1 Dragonlord\n\n11) Pheonixian: Trade G1 Y1 Pheonixian\n\tDraw5PlayAll: Hard time by definition is the variant in which a time forfeit immediately surrenders you. Perhaps sis is good if you find that your opponent moved before you even got to eliminate them.\r\n\r\nAll ladder games are hard time and 3/3/10.\n\n12) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n13) Felix: Build G1 Felix\n\tDraw5PlayAll: Soon our paths will diverge.\n\n14) dragonlord: Build Y1 Dragonlord\n\n15) Pheonixian: Build Y2 Pheonixian\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) Felix: Build Y2 Felix\n\n18) dragonlord: Build G1 Dragonlord\n\n19) Pheonixian: Build Y2 Pheonixian\n\n20) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n21) Felix: Discover Y2 Felix G1 Caladan\n\tDraw5PlayAll: Captain's log, Stardate 47011.2: We have seen three other alien races are going along similar lines of action to our own. We have decided to attempt to diverge by attaining Ambassador-class trading capabilities.\n\n22) dragonlord: Discover G1 Dragonlord Y3 Terrace\n\tFelix: Venturing forth, commander! We don't know what's out there, but we aim to find out!\n\n23) Pheonixian: Build G1 Pheonixian\n\n24) Draw5PlayAll: Discover B2 Draw5playall G1 Keeper\n\n25) Felix: Build Y2 Felix\n\n26) dragonlord: Build G2 Dragonlord\n\n27) Pheonixian: Discover Y2 Pheonixian G2 Seraphim\n\tDraw5PlayAll: Admiral's Log, Stardate 47014.9: The aliens of the star system Phoenixian are experiencing life support problems. We are waiting until they either fix the problem or die trying.\n\n28) Draw5PlayAll: Build G2 Draw5playall\n\tPheonixian: The life support systems have been restored to proper condition. An unexpected surge in energy consumption was experienced in conjunction with a surge in industry, resulting in a failure of temperature regulation and a pipe bursting due to freezing of dihydrogen monoxide. Personnel loss occured. Steps to prevent failure of this manner in the future have been taken.\n\tDraw5PlayAll: Admiral's log, Supplemental: We are pursuing Ambassador-class construction vessels as we wait for more exciting action.\n\n29) Felix: Discover G1 Felix B1 Bazoik\n\n30) dragonlord: Build G2 Terrace\n\n31) Pheonixian: Trade Y1 B1 Pheonixian\n\tdragonlord: Farming is taken very seriously here in dragonlord. It is the key to civilization and food. Farmers are constantly being trained.\n\n32) Draw5PlayAll: Build B1 Keeper\n\n33) Felix: Build G2 Bazoik\n\n34) dragonlord: Trade G2 B2 Dragonlord\n\tFelix: Reek rik ark kram korpo rak rak rimmy rook krame korkra koori [Translation: Increasing build capacity to expand fleet. Detect carbon-based life-forms in the vicinity.]\n\n35) Pheonixian: Build Y1 Seraphim\n\n36) Draw5PlayAll: Discover G2 Draw5playall B1 B1\n\n\nPass\n\tdragonlord: Captain's log 111: Increasing life support to prevent situations such as the life support loss on Phoenixian and have more resource potential\n\tdragonlord: Captain's log 111: Increasing life support to prevent situations such as the life support loss on Phoenixian and have more resource potential\n\n37) Felix: Sacrifice Y2 Felix\nMove G2 Bazoik Draw5playall\nMove G1 Bazoik Draw5playall\n\tDraw5PlayAll: Admital's log star date 47019.4: We decided to branch out and found a small IceTraders star base on a water planet. We wonder why the IceTraders like blue so much...\n\n38) dragonlord: Move B2 Dragonlord Terrace\n\tFelix: &#1490;&#1463;&#1501; &#1502;&#1506;&#1489;&#1493;&#1491;&#1514;&#1493; &#1492;&#1497;&#1488; &#1493;&#1513;&#1500;&#1497;&#1513;&#1497;&#1514; &#1502;&#1506;&#1500; &#1492;&#1514;&#1492; &#1489;&#1506;&#1491; &#1492;&#1504;&#1493;&#1512;&#1488;&#1497;&#1501; &#1514;&#1468;&#1461;&#1513;&#1473;&#1461;&#1489; &#1500;&#1492;&#1497;&#1512;&#1488;&#1493;&#1514; &#1505;&#1500;&#1495; &#1497;&#1460;&#1492;&#1456;&#1497;&#1493;&#1468;. &#1493;&#1502;&#1506;&#1489;&#1493;&#1491;&#1514;&#1493; &#1489;&#1506;&#1512;&#1489;&#1493;&#1489;&#1497;&#1492; &#1506;&#1462;&#1513;&#1474;&#1456;&#1512;&#1461;&#1492; &#1493;&#1502;&#1508;&#1493;&#1514;&#1495;&#1497;&#1501; &#1497;&#1463;&#1495;&#1456;&#1491;&#1468;&#1464;&#1493; &#1505;&#1456;&#1512;&#1493;&#1468;&#1495;&#1464;&#1492;. &#1490;&#1500; &#1488;&#1507; &#1499;&#1512;&#1493;&#1514;&#1497;&#1501; &#1500;&#1490;&#1494;&#1512;&#1497;&#1501; &#1505;&#1490; &#1510;&#1491; &#1502;&#1513;&#1500;&#1502;&#1497;&#1501; &#1513;&#1473;&#1462;&#1492;&#1461;&#1501; &#1492;&#1501; &#1500;&#1456;&#1513;&#1473;&#1461;&#1501; &#1514;&#1492; &#1490;&#1497;&#1489;&#1493;&#1512;&#1497;. &#1488;&#1501; &#1489;&#1488;&#1495;&#1493;&#1494;&#1514;&#1497; &#1512;&#1498; &#1500;&#1497; &#1488;&#1497; &#1489;&#1468;&#1456;&#1508;&#1460;&#1497;&#1493; &#1500;&#1492;&#1514;&#1512;&#1488;&#1493;&#1514; &#1495;&#1503; &#1493;&#1492;&#1514;&#1502;&#1500;&#1488;&#1493; &#1499;&#1489;&#1512;&#1494;&#1497;&#1500;&#1497; &#1511;&#1500; &#1491;&#1501; &#1493;&#1488;&#1493;&#1499;&#1500;&#1497;&#1501; &#1490;&#1503;. &#1497;&#1513;. [TRANSLATION: Reactor explosion in home sector! Teleportation beams going haywire. Construction vessels teleported to unknown sector.]\n\n39) Pheonixian: Build G2 Pheonixian\n\tdragonlord: Captain's log 121: Increasing strength of Terrace. As said before, farming is taken very seriously on Dragonlord. All these wars cause so much starvation and we will keep everyone who fights for us fed, allies included.\n\n40) Draw5PlayAll: Trade G3 B3 Draw5playall\n\tDraw5PlayAll: Ah, these intruders again. The ones with this "peace" scandal. Oh, I remember the day when they claimed the destruction of a planet was an "accident". Any reasonable starship captain should know that having a concentration of technology creates an inevitable disaster!\r\n\r\nWe are considering the most efficient way to delete the intruders.\n\n41) Felix: Build G3 Felix\n\n42) dragonlord: Build G3 Dragonlord\n\n43) Pheonixian: Move B1 Pheonixian Seraphim\n\tFelix: Blip blip blip blip blip blip Blip blip blip blip blip blip bloop. [We seem to have lost contact with our construction vessels in the unknown sector. Building new and better construction vessels to replace them.]\n\tDraw5PlayAll: I should wait until these aliens fire Felix and appoint a new government. Sadly, I hear he is named "dictator for life and then some".\n\n44) Draw5PlayAll: Attack G2N Draw5playall\n\n45) Felix: Trade G1 B1 Draw5playall\n\n46) dragonlord: Discover G1 Terrace Y2 Solblast\n\tDraw5PlayAll: I vote we cause a G catastrophe.\n\tPheonixian: Where is it you are trying to cause this catastrophe?\n\tDraw5PlayAll: Ummm.. Uh... Felix or DragonLord's homeworld, obviously...\n\tdragonlord: I'll assist causing a catastrophe in Felix's homeworld.\n\n47) Pheonixian: Build B2 Seraphim\n\tFelix: Ah, but may I point out that it is now much easier to cause a blue catastrophe in Draw5's homeworld? Dragonlord, I believe you need to eliminate said world, isn't that right? You know what to do...\n\tDraw5PlayAll: GAAH!! If you do then I will abandon my homeworld and you will have to defeat Felix instead!\n\tDraw5PlayAll: Felix, you are actually talking to Phoenixian.. and so am I. Phoenixian can knock out my blue star and ship in one move, and is the one who needs to destroy me.\r\n\r\nHowever, if he decides to blow up my star and ship then I will resign the game and blast into hyperspace, leaving the remaining players. Then Phoenixian will have to destroy Felix instead. Muhahaha!\n\n48) Draw5PlayAll: Trade B3 R3 Draw5playall\n\n49) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Caladan\nBuild Y3 Felix\n\n50) dragonlord: Move G1 Solblast Pheonixian\nCatastrophe Pheonixian G\n\tDraw5PlayAll: Felix, if you rip apart my blue star then Phoenixian can have an easy attack... and you do not want him to win because then you lose.\n\tFelix: I thought whoever eliminated the player to their left just became the winner? In that case, Phoenixian will win if he destroys you. Not ideal...\n\tFelix: Hmm, but you have a point. Offense may not be the best defense after all.\n\tDraw5PlayAll: Well, if Phoenixian breaks down one of my stars then I will probably suicide so he does not get the win.\r\n\r\nThis variant is not broken but it seems like it is more last man standing than its intent.\n\n51) Pheonixian: Trade Y1 G1 Seraphim\n\tFelix: I don't think the system allows you to suicide, but perhaps it does.\n\tDraw5PlayAll: Even then, I could set up a catastrophe and then tell Felix or DragonLord to finish me off. And they would, unless they WANTED Phoenixian to win.\n\n52) Draw5PlayAll: Attack B1N Draw5playall\n\n53) Felix: Trade Y3 B3 Felix\n\n54) dragonlord: Discover G3 Dragonlord R3 Firebeam\n\n55) Pheonixian: Build Y1 Seraphim\n\n56) Draw5PlayAll: Build Y2 Draw5playall\n\n57) Felix: Sacrifice Y1 Felix\nDiscover Y3 Caladan B3 Bazoik\n\tdragonlord: With all the fights breaking out the council of Dragonlord has decided to attempt to pacify those fights but be prepared. If you're not alive you can't farm-Dragonlord Motto\n\n58) dragonlord: Build G1 Terrace\n\n59) Pheonixian: Trade B1 R1 Seraphim\n\tDraw5PlayAll: No, that was just some futile invaders we were clearing. They are of lesser intellect than most of their species...\n\n60) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B1 Keeper Felix\nMove B2 Keeper Felix\nCatastrophe Felix Blue\nPass\nPass\nPass\n\n61) Felix: Build Y1 Caladan\n\tdragonlord: Farming will always continue here on Dragonlord\n\n62) dragonlord: Trade G2 R2 Terrace\n\n63) Pheonixian: Build R1 Seraphim\n\n64) Draw5PlayAll: Build G1 B1\n\n65) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Felix\nBuild Y3 Bazoik\n\tdragonlord: Captain's log 323: Farmers can fight effectively. Giving are farming ships weapons to be ready. Fights are still breaking out and Dragonlord will be ready. If you're not alive, you can't farm- Dragonlord Motto\n\n66) dragonlord: Build B1 Terrace\n\n67) Pheonixian: Sacrifice G1 Seraphim\nBuild Y3 Pheonixian\n\n68) Draw5PlayAll: Move Y1 Draw5playall B1\n\n69) Felix: Move Y2 Felix Pheonixian\n\n70) dragonlord: Discover B1 Terrace R2 Firefarm\n\n71) Pheonixian: Move Y2 Pheonixian Firefarm\n\n72) Draw5PlayAll: Build G1 Draw5playall\n\n73) Felix: Sacrifice Y3 Bazoik\nMove Y1 Caladan Felix\nMove Y1 Felix Pheonixian\nMove Y2 Felix Pheonixian\nCatastrophe Pheonixian Yellow\n\n74) dragonlord: Build G1 Dragonlord\n\tdragonlord: New FireFarming(copyright) technology is being used: blow up stars and objects and use that energy to farm.\n\n75) Draw5PlayAll: Build Y1 B1\n\n76) Felix: Move Y3 Bazoik Firefarm\n\n77) dragonlord: Move Y1 Dragonlord Terrace\n\tFelix: Kaboom. Sorry Pheonixian. I couldn't let Dragonlord kill you and take the win!\n\tDraw5PlayAll: How could he?\n\n78) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n79) Felix: Attack B1E Firefarm\n\n80) dragonlord: Build G2 Firebeam\n\n81) Draw5PlayAll: Build Y2 Draw5playall\n\tdragonlord: Dragonlord is a proud supporter of economic diversity. To support this, terrace has been given ships of all kinds.\n\n82) Felix: Build Y3 Caladan\n\n83) dragonlord: Build Y3 Dragonlord\n\tDraw5PlayAll: Ahem!\n\tDraw5PlayAll: Please do not make me press the red button!\n\tDraw5PlayAll: At -7 days we are removing the dragons.\n\tDraw5PlayAll: That gives DragonLord 6 days.\n\tDraw5PlayAll: What happened??\n\tDraw5PlayAll: I really don't want ANOTHER time forfeit! Phoenix lost legitimately, dragon did not!\n\tDraw5PlayAll: This is the only way to get a message to our opponent.\n\n84) Draw5PlayAll: Discover Y2 Draw5playall B1 B1'\n\tDraw5PlayAll: YES!!!\n\n85) Felix: Sacrifice Y2 Caladan\nMove B1 Firefarm Caladan\nMove B1 Caladan Felix\n\n86) dragonlord: Build B1 Terrace\n\n87) Draw5PlayAll: Sacrifice G2 B1\nBuild G2 B1\nBuild Y2 B1'\n\n88) Felix: Trade Y3 G3 Felix\n\n89) dragonlord: Move B1 Terrace Dragonlord\n\n90) Draw5PlayAll: Build Y3 Draw5playall\n\n91) Felix: Attack Y2S Firefarm\n\n92) dragonlord: Move B1 Dragonlord Firebeam\n\tFelix: It looks grim for me!\n\n93) Draw5PlayAll: Move R3 Draw5playall B1\n\n94) Felix: Move Y3 Caladan Felix\n\n95) dragonlord: Build B2 Firebeam\n\n96) Draw5PlayAll: Build R1 B1\n\n97) Felix: B B2 Felix\n\n98) dragonlord: Discover Y1 Terrace G1 Farm\n\n99) Draw5PlayAll: Discover B1 Draw5playall R1 R1\n\n100) Felix: D B2 Felix G3 Safety\n\n101) dragonlord: Move Y1 Dragonlord Firebeam\n\n102) Draw5PlayAll: Sacrifice G2 B1\nBuild G2 B1\nBuild B3 R1\n\n103) Felix: Build B3 Safety\n\n104) dragonlord: Move B1 Firebeam Farm\n\n105) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R3 B1 Felix\nMove R1 B1 Felix\n\tDraw5PlayAll: I am pondering a plan which will remove Felix and let DragonLord take the win.\n\n106) Felix: Trade G3 R3 Felix\nCatastrophe Felix Red\n\n107) Draw5PlayAll: Pass\n\n108) dragonlord: Discover B2 Terrace R1 Anger\n\n109) Draw5PlayAll: Build G2 Draw5playall\n\n110) dragonlord: Move B2 Firebeam Anger\n\tDraw5PlayAll: Our people are watching the attack on their computer screens... and fake news about conspiracies and threats to our planet is swarming our communications!\n\tDraw5PlayAll: There is one too many red in the stash. I win. If Felix stacks, DragonLord can only discover three of them as stars, and if Felix discovers them then he loses ships as I get the first shot.\n\n111) Draw5PlayAll: Trade Y2 R2 B1'\n\tFelix: Huh. That probably wasn't supposed to work.\n\tFelix: But good luck to the both of ya :D\n\tDraw5PlayAll: You could simply have clicked "Resign" after confirming it.\n\tDraw5PlayAll: Was DragonLord just skipped?!?\n\n112) dragonlord: Sacrifice Y3 Dragonlord\nMove B1 Farm Draw5playall\nMove B2 Anger Draw5playall\nMove B2 Anger Draw5playall\nCatastrophe Draw5playall Blue\n\n113) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild Y2 B1'\nBuild R1 B1'\n\n114) dragonlord: Build R2 Terrace\n\tFelix: Would it give you the win if I clicked resign? I don't think I could resign after I was removed from the game...\n\tFelix: There seems to be a loophole in Sinister where suiciding is possible to deny someone else the win.\n\n115) Draw5PlayAll: Sacrifice Y2 B1'\nMove G1 B1 Safety\nMove G1 Safety Dragonlord\n\tDraw5PlayAll: Either way, DragonLord could have done the catastrophe. That is a loophole in Sinister, yes, and that is why I think Last Man Standing is better for 3-4 players.\n\n116) dragonlord: Trade G3 R3 Dragonlord\n\n117) Draw5PlayAll: Sacrifice G2 B1\nBuild Y2 Draw5playall\nBuild G2 Dragonlord\n\n118) dragonlord: Trade R3 Y3 Dragonlord\n\n119) Draw5PlayAll: Trade G2 Y2 Dragonlord\n\n120) dragonlord: Discover R2 Terrace B1 Ice\n\n121) Draw5PlayAll: Build Y3 Dragonlord\n\n122) dragonlord: Move Y3 Dragonlord Safety\n\n123) Draw5PlayAll: Attack G1E Dragonlord\n\n\tDraw5PlayAll: I thought I was lost! Good game.\n\nHomeworlds Online (SDG# 30331)\nVariants: "Unrated"\nStarted: 2016.9.14, Ended: 2016.10.12\nParticipants: Felix (S), zeder (N)\nWinner: Felix\n\n1) zeder: Homeworld G3 B1 Y3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) zeder: Build Y1 Zeder\n\tFelix: Welcome! First game?\n\tzeder: Not first, but maybe 3rd or 4th.\n\n4) Felix: Build G1 Felix\n\tFelix: Awesome. Well I hope you have fun and let me know if you have any questions\n\n5) zeder: Trade Y1 G1 Zeder\n\n6) Felix: Trade G1 Y1 Felix\n\tzeder: Thank you! I am very pondering why you chose to have no yellow?\n\n7) zeder: Build Y1 Zeder\n\tFelix: Sometimes I prefer to start without yellow and then trade for it on my second turn - as I have just done. It can be helpful to have red in my home system instead of yellow sometimes. it really depends on play style.\n\n8) Felix: Build G1 Felix\n\n9) zeder: Trade Y1 B1 Zeder\n\n10) Felix: Trade G1 B1 Felix\n\n11) zeder: Build B2 Zeder\n\n12) Felix: Discover B1 Felix G1 Rim\n\n13) zeder: Trade B1 Y1 Zeder\n\n14) Felix: Build B1 Rim\n\n15) zeder: Build B2 Zeder\n\n16) Felix: Trade B1 Y1 Rim\n\n17) zeder: Build Y2 Zeder\n\n18) Felix: Build Y2 Rim\n\n19) zeder: Trade Y1 R1 Zeder\n\n20) Felix: Trade Y1 R1 Rim\n\n21) zeder: Discover B2 Zeder G2 Flip\n\n22) Felix: Build Y1 Rim\n\n23) zeder: Trade B2 R2 Flip\n\n24) Felix: Discover Y1 Rim G2 Bazoik\n\n25) zeder: Move Y2 Zeder Flip\n\n26) Felix: Build G1 Felix\n\n27) zeder: Build G2 Zeder\n\n28) Felix: Discover G1 Felix B1 Ralston\n\n29) zeder: Trade G1 R1 Zeder\n\n30) Felix: Build G1 Felix\n\n31) zeder: Discover G2 Zeder Y2 Lips\n\n32) Felix: Sacrifice G3 Felix\nBuild G3 Ralston\nBuild G3 Felix\nBuild B2 Rim\n\n33) zeder: Move R1 Zeder Lips\n\n34) Felix: Sacrifice G3 Ralston\nBuild Y1 Rim\nBuild Y3 Bazoik\nBuild Y3 Felix\n\n35) zeder: Build G3 Lips\n\n36) Felix: Move B1 Rim Bazoik\n\n37) zeder: Move G3 Lips Rim\n\n38) Felix: Move B1 Bazoik Zeder\n\n39) zeder: Trade B2 R2 Zeder\n\n40) Felix: Sacrifice G3 Felix\nBuild B2 Zeder\nBuild B2 Zeder\nCatastrophe Zeder Blue\nBuild G3 Felix\n\n41) zeder: Sacrifice R1 Lips\nAttack R1 Rim\n\tzeder: OUCH!!\n\n42) Felix: Sacrifice Y2 Rim\nMove B2 Rim Bazoik\nDiscover Y1 Rim Y2 Arrakis\n\tFelix: Sorry :) You're about to wreak havoc on my ships in Rim, though!\n\n43) zeder: Sacrifice Y2 Flip\nMove G3 Rim Bazoik\nMove R1 Rim Bazoik\n\tDraw5PlayAll: Arrakis?\n\n44) Felix: Sacrifice Y3 Bazoik\nMove G1 Felix Ralston\nMove G1 Ralston Zeder\nMove G1 Ralston Zeder\n\tFelix: @Draw5 Read Dune. :)\n\n45) zeder: Attack G1 Zeder\n\tFelix: @Zeder You're making me quite nervous!\n\tzeder: Not sure why... that were an killer moves!\n\n46) Felix: Build G1 Zeder\nCatastrophe Zeder Green\n\tFelix: Well... I got nervous before that move, haha\n\tFelix: And I thought you might sacrifice your r2 to take over both of my G ships, which would have forced me to sac my Y3 at my home and move my g3 in to finish the job. That would only leave me a y1 at home, which would be scary, but I guess you'd actually be dead at that point, so...\n\tFelix: Great game! You played well and that was fun. I like your aggressive play style.\n\tzeder: I saw the y3 sacrifice so decided to take the move that I thoughts would let me live in case you didn't see it. :) thanks you for the game!\n\n\nHomeworlds Online (SDG# 30323)\nVariants: "Hard time"\nStarted: 2016.9.20, Ended: 2016.9.23\nParticipants: zeder (S), mxpf (N)\nWinner: zeder\n\n\nHomeworlds Online (SDG# 30440)\nVariants: "Hard time"\nStarted: 2016.9.20, Ended: 2016.9.23\nParticipants: Draw5PlayAll (S), mxpf (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 30447)\nVariants: "Unrated, Hard time"\nStarted: 2016.9.21, Ended: 2016.9.25\nParticipants: Draw5PlayAll (S), sompm (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 30408)\nStarted: 2016.9.29, Ended: 2016.10.18\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 Y3 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\tFelix: No time wasted between games :) Good luck!\n\tts52: :D Have a good game.\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build B2 Felix\n\n8) ts52: Discover B1 Ts52 G1 Robin\n\n9) Felix: Discover B2 Felix G2 Flemoid\n\n10) ts52: Build G1 Ts52\n\n11) Felix: Sacrifice G3 Felix\nBuild B2 Flemoid\nBuild B3 Flemoid\nBuild B3 Felix\n\n12) ts52: Build B3 Robin\n\n13) Felix: Trade B2 Y2 Flemoid\n\n14) ts52: Trade B3 Y3 Robin\n\n15) Felix: Trade B3 G3 Felix\n\n16) ts52: Build Y1 Robin\n\n17) Felix: T B2 R2 Flemoid\n\n18) ts52: Trade Y1 R1 Robin\n\n19) Felix: Build B2 Flemoid\n\n20) ts52: Build R1 Robin\n\n21) Felix: Trade B2 Y2 Flemoid\n\n22) ts52: Build B2 Robin\n\n23) Felix: Build B2 Flemoid\n\n24) ts52: Discover B2 Robin Y2 Bigbird\n\n25) Felix: Discover B2 Flemoid G1 Ralston\n\n26) ts52: Build B3 Robin\n\n27) Felix: Build B3 Ralston\n\n28) ts52: Build G2 Ts52\n\n29) Felix: Trade B2 G2 Ralston\n\n30) ts52: Trade G2 R2 Ts52\n\n31) Felix: Sacrifice G2 Ralston\nBuild G2 Felix\nBuild B2 Ralston\n\n32) ts52: Move G1 Ts52 Robin\n\n33) Felix: Move Y2 Flemoid Ralston\n\n34) ts52: Move G1 Robin Bigbird\n\n35) Felix: Build Y1 Ralston\n\n36) ts52: Build G2 Ts52\n\n37) Felix: Move B3 Ralston Bigbird\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild Y1 Robin\n\n39) Felix: Trade B3 R3 Bigbird\n\n40) ts52: Trade G3 B3 Ts52\n\n41) Felix: Move B2 Ralston Flemoid\n\n42) ts52: Move B2 Bigbird Felix\n\n43) Felix: Sacrifice Y2 Ralston\nMove B2 Flemoid Ralston\nMove B2 Ralston Ts52\n\n44) ts52: Move G1 Bigbird Felix\n\n45) Felix: S R2 Flemoid\nA G1 Felix\nA B2 Felix\n\n46) ts52: Sacrifice Y3 Robin\nMove B1 Robin Bigbird\nMove B1 Bigbird Felix\nDiscover G2 Ts52 Y1 Scooter\nCatastrophe Felix Blue\n\n47) Felix: Sacrifice G3 Felix\nBuild B1 Ts52\nBuild Y2 Flemoid\nBuild Y3 Ralston\nCatastrophe Ts52 Blue\n\n48) ts52: Move B3 Robin Felix\n\n49) Felix: Sacrifice Y3 Ralston\nMove Y1 Ralston Ts52\nMove Y2 Flemoid Ts52\nMove Y2 Flemoid Ts52\nCatastrophe Ts52 Yellow\n\tFelix: Good game! Very close there at the end!\n\tts52: Wow, very well done. I missed that at the end. Good game!\n\tFelix: Thank you. I stared at the game for a LONG time before I finally discovered the ability to build enough yellows for that final rush.\n\n\nHomeworlds Online (SDG# 30436)\nVariants: "Unrated, Sinister"\nStarted: 2016.9.29, Ended: 2016.12.5\nParticipants: Draw5PlayAll (S), Felix (N), sompm (E)\nWinner: Felix\n\n1) Felix: Homeworld B2 G3 R3\n\n2) sompm: Homeworld B1 Y2 G3\n\tsompm: Was this supposed to be the teams game?\n\n3) Draw5PlayAll: Homeworld R1 B3 G3\n\tDraw5PlayAll: No, since it is 3P not 4P\n\n4) Felix: Build R1 Felix\n\n5) sompm: Build G1 Sompm\n\tFelix: Just normal sinister, right?\n\tDraw5PlayAll: Correct\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) Felix: Trade R1 Y1 Felix\n\n8) sompm: Trade G1 Y1 Sompm\n\tFelix: You always end up having to eliminate me!\n\tDraw5PlayAll: That might have something to do with the order people join...\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n10) Felix: Build Y1 Felix\n\n11) sompm: Build Y2 Sompm\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\n13) Felix: Discover Y1 Felix G1 Flemoid\n\n14) sompm: Discover Y1 Sompm B3 Bombs\n\n15) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n16) Felix: Build Y2 Felix\n\n17) sompm: Build G1 Sompm\n\n18) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n19) Felix: Trade Y2 G2 Felix\n\n20) sompm: Build G1 Sompm\n\n21) Draw5PlayAll: Build Y2 Draw5playall\n\n22) Felix: S G2 Felix\nB Y2 Flemoid\nB Y3 Felix\n\n23) sompm: Sacrifice G3 Sompm\nBuild Y3 Bombs\nBuild Y3 Bombs\nBuild Y3 Sompm\n\n24) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Bad move, verrrrrry bad move\n\n25) Felix: Move Y1 Flemoid Bombs\nCatastrophe Bombs Yellow\n\tDraw5PlayAll: North's ship Y3 was sacrificed in the Felix system. North moved their Y1 ship from Femoid to bombs. North moved their Y1 ship from bombs to sompm. North moved their Y2 ship from Flemoid to bombs. A catastrophe occurred in the sompm system. All propulsion (Y) technology was lost. A catastrophe occurred in the bombs system. All propulsion (Y) technology was lost. The bombs system has been abandoned to the hyperspatial flux.\n\tDraw5PlayAll: Actually, Felix, if you want please leave a chat message and I will take back my G1 and blow bombs, letting you destroy the sompm homeworld yourself.\n\n26) sompm: Trade Y3 R3 Sompm\n\tFelix: Thanks for the offer, but I think I'd like to just proceed this way for now :)\n\tsompm: I knew part of that was getting blown, I was banking on the Sinister politics to keep me alive; seems to have panned out.\n\n27) Draw5PlayAll: Build G2 Draw5playall\n\n28) Felix: Trade Y3 G3 Felix\n\n29) sompm: Discover G1 Sompm B3 Bones\n\n30) Draw5PlayAll: Discover G2 Draw5playall B2 B2\n\n31) Felix: Discover G3 Felix B1 Wesgorix\n\n32) sompm: Build G2 Bones\n\n33) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B2\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\n\n34) Felix: Build G3 Wesgorix\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G2\nBuild B1 G2\n\n36) Felix: Sacrifice G3 Wesgorix\nBuild G3 Wesgorix\nBuild Y1 Flemoid\nBuild Y3 Felix\n\tDraw5PlayAll: I clicked "terminate game".\n\n37) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G2 B2 Wesgorix\nMove G2 B2 Wesgorix\nCatastrophe Wesgorix Green\n\tDraw5PlayAll: The game is ruined.\n\n38) Felix: Move R3 Felix Flemoid\n\n39) Draw5PlayAll: Discover Y1 Draw5playall B2 B2\n\n40) Felix: Move Y1 Flemoid Bones\n\n41) Draw5PlayAll: Build G2 Draw5playall\n\tDraw5PlayAll: I think the loss of the other players ruined the game.\n\n42) Felix: Build R1 Flemoid\n\tFelix: You're welcome to resign then ;)\n\n43) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 B2\n\n44) Felix: Build Y3 Flemoid\n\n45) Draw5PlayAll: Trade Y3 R3 B2\n\n46) Felix: Move R3 Flemoid Bones\n\n47) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y3 B2\n\n48) Felix: Attack G2E Bones\n\n49) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R3 B2 Bones\nMove R3 Bones Sompm\n\n50) Felix: Build R1 Bones\n\n51) Draw5PlayAll: Attack Y2E Sompm\n\n52) Felix: Move Y2 Flemoid G2\n\n53) Draw5PlayAll: Trade Y1 R1 B2\n\n54) Felix: Sacrifice R3 Bones\nAttack B1S G2\nAttack B1S G2\nAttack B2S G2\n\n55) Draw5PlayAll: Attack R3E Sompm\n\tDraw5PlayAll: Tricky!\n\n56) Felix: Build R2 Bones\n\tFelix: :) It's kinda fun to have so many assets lying around in space. Nice work getting to sompm's system first!\n\n57) Draw5PlayAll: Move R3 Sompm Bones\n\n58) Felix: Sacrifice Y2 G2\nDiscover R2 Bones Y2 Slipstream\nMove R1 Bones Slipstream\n\n59) Draw5PlayAll: Sacrifice Y2 Sompm\nMove R3 Sompm Bones\nMove R3 Bones Slipstream\n\n60) Felix: Sacrifice Y3 Flemoid\nMove R2 Slipstream Draw5playall\nMove R1 Slipstream Draw5playall\nDiscover R1 Flemoid Y2 Insert\n\n61) Draw5PlayAll: Trade R1 B1 B2\n\n62) Felix: Sacrifice Y3 Felix\nMove B1 G2 Draw5playall\nMove B1 G2 Draw5playall\nMove B2 G2 Draw5playall\nCatastrophe Draw5playall Blue\n\tDraw5PlayAll: Only move.\n\n63) Draw5PlayAll: Sacrifice Y3 B2\nMove R3 Bones Draw5playall\nMove R3 Draw5playall Felix\nPass R3 Felix\n\tDraw5PlayAll: No! I thought I had an amazing trap...\n\n64) Felix: Move R1 Insert Draw5playall\nCatastrophe Draw5playall Red\n\tFelix: What was your trap going to be?\n\n\tFelix: Oh, I see. That wouldn't have accomplished anything as long as my Y3 was still there, though\n\tFelix: Good game! A bit hectic with all those resources.\n\tDraw5PlayAll: As I said, the removal of sompm ruined it.\n\nHomeworlds Online (SDG# 30489)\nVariants: "Hard time"\nStarted: 2016.10.4, Ended: 2016.10.10\nParticipants: foksieloy (S), Subhan64 (N)\nWinner: foksieloy\n\n1) Subhan64: Homeworld B3 G2 Y3\n\tfoksieloy: Hi! good luck, have fun!\n\n2) foksieloy: Homeworld B1 R3 G3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) foksieloy: Build G1 Foksieloy\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) foksieloy: Trade G1 Y1 Foksieloy\n\n7) Subhan64: Build Y1 Subhan64\n\n8) foksieloy: Build G1 Foksieloy\n\n9) Subhan64: Discover G1 Subhan64 G1 Kermit\n\n10) foksieloy: Discover G1 Foksieloy B2 Tibbers\n\n11) Subhan64: Build G2 Kermit\n\n12) foksieloy: Build G2 Tibbers\n\n13) Subhan64: Trade Y1 B1 Subhan64\n\n14) foksieloy: Build G3 Foksieloy\n\n15) Subhan64: Sacrifice B1 Subhan64\nTrade G1 Y1 Kermit\n\n16) foksieloy: Trade G2 Y2 Tibbers\n\n17) Subhan64: Discover G2 Kermit G3 Scooter\n\n18) foksieloy: Discover G3 Foksieloy B2 Annie\n\n19) Subhan64: Move Y1 Kermit Annie\n\n20) foksieloy: Build G1 Annie\n\n21) Subhan64: Sacrifice Y1 Annie\nMove G2 Scooter Annie\n\n\n22) foksieloy: Trade G1 R1 Annie\n\n23) Subhan64: Build Y1 Subhan64\n\n24) foksieloy: Attack G2 Annie\n\n25) Subhan64: Trade Y1 R1 Subhan64\n\n26) foksieloy: Build Y1 Tibbers\n\n27) Subhan64: Discover R1 Subhan64 G1 Scooter\n\n28) foksieloy: Discover Y2 Tibbers G1 Fishbone\n\n29) Subhan64: Build Y1 Subhan64\n\n30) foksieloy: Sacrifice G3 Annie\nBuild G2 Tibbers\nBuild G3 Annie\nBuild G3 Foksieloy\n\n31) Subhan64: Build Y2 Subhan64\n\n32) foksieloy: Move Y2 Fishbone Subhan64\nCatastrophe Subhan64 Y\n\tSubhan64: good game, but I know when I'm licked!\n\tfoksieloy: Good game!\n\n\nHomeworlds Online (SDG# 30484)\nStarted: 2016.10.4, Ended: 2016.10.18\nParticipants: Draw5PlayAll (S), ladybugsfly (N)\nWinner: Draw5PlayAll\n\n1) ladybugsfly: Homeworld B3 Y2 G3\n\n2) Draw5PlayAll: Homeworld R3 B1 G3 *\n\n3) ladybugsfly: B G1 Ladybugsfly\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) ladybugsfly: Trade G1 R1 Ladybugsfly\n\tDraw5PlayAll: Does north seat always go first?\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) ladybugsfly: Build G1 Ladybugsfly\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) ladybugsfly: Discover G1 Ladybugsfly B1 Dumbledore\n\n10) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n11) ladybugsfly: B G1 Dumbledore\n\n12) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n13) ladybugsfly: T G1 Y1 Dumbledore\n\n14) Draw5PlayAll: Build B2 G2\n\n15) ladybugsfly: Build Y1 Dumbledore\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) ladybugsfly: D Y1 Dumbledore R2 Snape\n\n18) Draw5PlayAll: Build B2 G2\n\n19) ladybugsfly: S G3 Ladybugsfly\nB Y2 Dumbledore\nB Y3 Dumbledore\nB Y3 Snape\n\n20) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 Draw5playall Snape\nMove Y1 Snape Dumbledore\nCatastrophe Dumbledore Yellow\n\tDraw5PlayAll: This could get interesting.\n\n21) ladybugsfly: Move Y3 Snape Dumbledore\n\n22) Draw5PlayAll: Trade B2 R2 G2\n\n23) ladybugsfly: M G1 Dumbledore Snape\n\tDraw5PlayAll: "trade B2 R2 G2"... wow, did not expect that pattern\n\n24) Draw5PlayAll: Build G1 Draw5playall\n\n25) ladybugsfly: Build G1 Snape\n\n26) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n27) ladybugsfly: Build G1 Snape\n\n28) Draw5PlayAll: Trade B2 Y2 G2\n\n29) ladybugsfly: M Y3 Dumbledore Ladybugsfly\n\n30) Draw5PlayAll: Build B1 G2\n\n31) ladybugsfly: Discover G1 Snape Y1 Hagrid\n\n32) Draw5PlayAll: Build B2 G2\n\n33) ladybugsfly: Build G2 Snape\n\n34) Draw5PlayAll: Build Y2 Draw5playall\n\n35) ladybugsfly: B Y3 Snape\n\n36) Draw5PlayAll: Discover Y2 Draw5playall B2 B2\n\n37) ladybugsfly: Build G2 Hagrid\n\n38) Draw5PlayAll: Build Y3 G2\n\n39) ladybugsfly: Move G2 Hagrid Ladybugsfly\n\n40) Draw5PlayAll: Trade G3 B3 Draw5playall\n\tDraw5PlayAll: I cannot take the suspense.\n\n41) ladybugsfly: Build G3 Hagrid\n\tladybugsfly: Haha, I needed a one-two punch and wasn't going to move before I had it.\n\n42) Draw5PlayAll: Discover Y3 G2 B3 B3\n\n43) ladybugsfly: M G1 Hagrid B2\n\n44) Draw5PlayAll: Trade Y3 G3 B3\n\n45) ladybugsfly: Sacrifice G3 Hagrid\nBuild G3 B2\nBuild G3 Ladybugsfly\nBuild R1 Ladybugsfly\n\n46) Draw5PlayAll: Move Y2 B2 B3\n\n47) ladybugsfly: Sacrifice G3 B2\nBuild G3 B2\nBuild R1 Ladybugsfly\nBuild Y1 Ladybugsfly\n\n48) Draw5PlayAll: Build Y3 G2\n\n49) ladybugsfly: Trade G3 R3 B2\n\n50) Draw5PlayAll: Build G3 B3\n\n51) ladybugsfly: Sacrifice Y3 Snape\nDiscover G1 Snape R3 Lupin\nMove G1 Snape Lupin\nMove G2 Snape Lupin\n\n52) Draw5PlayAll: Sacrifice Y2 G2\nMove G3 B3 Snape\nMove G3 Snape Lupin\nCatastrophe Lupin Green\n\n53) ladybugsfly: Sacrifice Y3 Ladybugsfly\nDiscover R1 Ladybugsfly G1 Ginny\nMove R1 Ladybugsfly Ginny\nDiscover R1 Ginny Y2 Krum\n\tDraw5PlayAll: Keep in mind you had to lose a Y3 to move them to Lupin.\n\tladybugsfly: No judgement, you don't have to justify your moves.\n\n54) Draw5PlayAll: Sacrifice G3 B3\nBuild Y3 Draw5playall\nBuild Y3 B3\nBuild R2 G2\n\n55) ladybugsfly: Move Y1 Snape Ginny\n\n56) Draw5PlayAll: Trade B3 G3 Draw5playall\n\n57) ladybugsfly: Build R2 Ginny\n\n58) Draw5PlayAll: Move Y3 B3 Ginny\n\n59) ladybugsfly: M R2 Ginny B3\n\n60) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove Y3 Ginny Ladybugsfly\nMove Y2 B3 Ginny\nMove Y2 Ginny Ladybugsfly\nCatastrophe Ladybugsfly Yellow\n\n61) ladybugsfly: Move R1 Krum Draw5playall\n\tladybugsfly: Nice game! You had that one-two punch. ;)\n\n62) Draw5PlayAll: Sacrifice Y3 G2\nMove B2 G2 Ladybugsfly\nMove B1 G2 Ladybugsfly\nMove B1 G2 Ladybugsfly\nCatastrophe Ladybugsfly Blue\n\tDraw5PlayAll: This is why I get nervous every time I put a ship in a same-color star.\n\n\nHomeworlds Online (SDG# 30476)\nStarted: 2016.10.4, Ended: 2016.10.25\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: ts52\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) ts52: Build G1 Ts52\n\tts52: Have a good game!\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) ts52: Build G1 Ts52\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) ts52: Discover G1 Ts52 B1 Gonzo\n\n9) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n10) ts52: Build G1 Gonzo\n\n11) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n12) ts52: Build G2 Gonzo\n\n13) Draw5PlayAll: Build G2 Draw5playall\n\n14) ts52: Trade G2 Y2 Gonzo\n\tDraw5PlayAll: Factory engaging in 3.... 2.... 1...\n\n15) Draw5PlayAll: Build B1 G2\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\tts52: :)\n\n17) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\nBuild B2 G2\n\n18) ts52: Trade G3 R3 Gonzo\n\n19) Draw5PlayAll: Discover G2 Draw5playall B2 B2\n\tDraw5PlayAll: Fascinating. - Spock\n\n20) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild R1 Gonzo\n\tDraw5PlayAll: Going to yellow alert!!\n\n21) Draw5PlayAll: Trade B2 Y2 G2\n\n22) ts52: Trade G3 R3 Ts52\n\n23) Draw5PlayAll: Build G3 Draw5playall\n\n24) ts52: Move R3 Gonzo B2\n\n25) Draw5PlayAll: S G2 B2\nBuild Y1 Draw5playall\nBuild Y3 G2\n\n26) ts52: Sacrifice G3 Gonzo\nBuild G2 Ts52\nBuild G3 Gonzo\nBuild Y3 Gonzo\n\n27) Draw5PlayAll: Sacrifice Y2 G2\nMove G3 Draw5playall G2\nMove G3 G2 Gonzo\nCatastrophe Gonzo G\n\tDraw5PlayAll: Facing destruction or assimilation the crew aboard our Ambassador class starship decided to fire off the Long Range Construction Mechanism, which destroyed the ship but actually gave us a Galaxy-class wormhole generation ship! \n\n28) ts52: Move G2 Ts52 Gonzo\n\n29) Draw5PlayAll: Build B2 G2\n\tDraw5PlayAll: I had to :(\n\n30) ts52: Move Y2 Gonzo B2\n\tts52: fair enough\n\n31) Draw5PlayAll: Discover Y1 Draw5playall B2 B2'\n\n32) ts52: Sacrifice G2 Ts52\nBuild Y2 Gonzo\nBuild Y3 B2\n\n33) Draw5PlayAll: Move Y1 Draw5playall B2'\n\n34) ts52: Sacrifice Y2 Gonzo\nMove R3 B2 Draw5playall\nMove Y3 B2 Draw5playall\n\tDraw5PlayAll: DANG\n\n35) Draw5PlayAll: Move G3 Draw5playall G2\n\n\tDraw5PlayAll: I think the issue was the factories. You got all the good stuff and I just got some smalls and mediums. Once you allow a "sac G3, build a bunch of 2's and 3's" move you are toast unless you can counter it.\n\tts52: Factories are tough to defend against, but I think the issue this time was letting me get a monopoly on trade, which let me safely build up my large fleet. And also, not building up your own red supply as soon as I started. If you had even a medium red, you could've held me off for a while.\n\tDraw5PlayAll: Monopoly on trade? I had three blue ships and you never had more than one...\n\tts52: Sorry, conflating different games. \n\nHomeworlds Online (SDG# 30501)\nVariants: "Hard time"\nStarted: 2016.10.6, Ended: 2016.11.3\nParticipants: Grosseteste (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld Y3 B1 G3\n\n2) Grosseteste: H Y3 B2 G3\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) Grosseteste: Build G1 Grosseteste\n\n5) agentofchaos: Discover G1 Agentofchaos Y2 Skaros\n\n6) Grosseteste: Trade G1 B1 Grosseteste\n\n7) agentofchaos: Build G1 Agentofchaos\n\tGrosseteste: Thanks for the game, looking forward to it.\n\n8) Grosseteste: Build G1 Grosseteste\n\tagentofchaos: Thanks, looking forward to it too\n\n9) agentofchaos: Build G2 Agentofchaos\n\n10) Grosseteste: Build G2 Grosseteste\n\n11) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Skaros\nBuild G3 Skaros\nBuild G3 Agentofchaos\n\n12) Grosseteste: Trade G2 R2 Grosseteste\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) Grosseteste: Build G1 Grosseteste\n\n15) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild R1 Agentofchaos\nBuild G3 Agentofchaos\n\tGrosseteste: Nice one, I'm disappointed I didn't see that move.\n\tagentofchaos: I almost didn't see it either!\n\n16) Grosseteste: Discover G1 Grosseteste Y1 Charlie\n\n17) agentofchaos: Move G3 Skaros Charlie\n\n\tGrosseteste: Sorry about that, I haven't been able to give this the time I needed to. Maybe later on I can give you a game.\n\nHomeworlds Online (SDG# 30444)\nVariants: "Hard time"\nStarted: 2016.10.6, Ended: 2016.10.9\nParticipants: Subhan64 (S), mxpf (N)\nWinner: Subhan64\n\n\nHomeworlds Online (SDG# 30492)\nStarted: 2016.10.7, Ended: 2016.10.26\nParticipants: Subhan64 (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Subhan64: Homeworld B2 Y1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) Subhan64: Build G1 Subhan64\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Subhan64: Build G1 Subhan64\n\n7) ts52: Build B1 Ts52\n\n8) Subhan64: Trade G1 Y1 Subhan64\n\n9) ts52: Discover B1 Ts52 G2 Kermit\n\n10) Subhan64: Discover G1 Subhan64 G3 Scooter\n\n11) ts52: Build B2 Kermit\n\n12) Subhan64: Build G1 Subhan64\n\n13) ts52: Build B2 Ts52\n\n14) Subhan64: Trade G1 Y1 Subhan64\n\n15) ts52: Build B3 Kermit\n\n16) Subhan64: Move Y1 Subhan64 Scooter\n\n17) ts52: Trade B3 Y3 Kermit\n\n18) Subhan64: Build Y2 Scooter\n\n19) ts52: Build B3 Kermit\n\n20) Subhan64: Build Y2 Subhan64\n\n21) ts52: Trade B3 R3 Kermit\n\n22) Subhan64: Trade G3 B3 Subhan64\n\n23) ts52: Discover B2 Kermit G3 Oscar\n\n24) Subhan64: Move B3 Subhan64 Scooter\n\n25) ts52: Sacrifice Y3 Kermit\nMove R3 Kermit Oscar\nMove R3 Oscar Subhan64\nMove B2 Oscar Subhan64\n\n26) Subhan64: Sacrifice Y2 Scooter\nMove B3 Scooter Kermit\nMove B3 Kermit Ts52\nCatastrophe Ts52 B\n\n27) ts52: Sacrifice R3 Subhan64\nAttack Y2 Subhan64\nAttack Y1 Subhan64\nPass\n\tSubhan64: gg!\n\tSubhan64: gg!\n\tts52: Thanks for the game!\n\n\nHomeworlds Online (SDG# 30509)\nStarted: 2016.10.7, Ended: 2016.10.7\nParticipants: lordrefa (S), ladybugsfly (N)\nWinner: ladybugsfly\n\n1) ladybugsfly: Homeworld B3 G1 Y3\n\n2) lordrefa: Homeworld G2 Y3 R3 *\n\n3) ladybugsfly: Build Y1 Ladybugsfly\n\n4) lordrefa: Discover R3 Lordrefa G1 Superduper\n\tDraw5PlayAll: ???\n\n\nHomeworlds Online (SDG# 30510)\nStarted: 2016.10.7, Ended: 2016.10.11\nParticipants: lordrefa (S), ladybugsfly (N)\nWinner: ladybugsfly\n\n1) ladybugsfly: H B3 Y2 G3\n\n2) lordrefa: Homeworld B2 G1 Y3\n\n3) ladybugsfly: B G1 Ladybugsfly\n\n4) lordrefa: Build Y1 Lordrefa\n\n5) ladybugsfly: B G1 Ladybugsfly\n\n6) lordrefa: Discover Y1 Lordrefa B3 Poop\n\n7) ladybugsfly: Discover G1 Ladybugsfly Y1 Unicorn\n\n8) lordrefa: Build Y1 Lordrefa\n\n9) ladybugsfly: B G2 Unicorn\n\n10) lordrefa: Build Y2 Lordrefa\n\n11) ladybugsfly: Discover G2 Unicorn B3 Centaur\n\n12) lordrefa: Discover Y1 Poop Y2 Devilhorns\n\n13) ladybugsfly: Sacrifice G3 Ladybugsfly\nBuild G2 Unicorn\nBuild G2 Centaur\nBuild G3 Ladybugsfly\n\n14) lordrefa: Discover Y1 Devilhorns G3 Newname\n\n15) ladybugsfly: Trade G2 Y2 Centaur\n\n16) lordrefa: Move Y3 Lordrefa Centaur\n\n17) ladybugsfly: Build Y3 Centaur\n\n18) lordrefa: Trade Y3 R3 Centaur\n\n19) ladybugsfly: M Y3 Centaur Lordrefa\n\n20) lordrefa: Attack Y2 Centaur\n\n21) ladybugsfly: Build Y3 Lordrefa\nCatastrophe Lordrefa Y\n\n\nHomeworlds Online (SDG# 30475)\nStarted: 2016.10.10, Ended: 2016.10.30\nParticipants: Subhan64 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y2 B3 G3\n\n2) Subhan64: Homeworld Y2 B1 G3\n\tFelix: Welcome, and have fun! Have you played before?\n\n3) Felix: Build G1 Felix\n\tSubhan64: yes, but I always lose!\r\n\n\tDraw5PlayAll: I lost 7 times before winning once, and I still lose a lot.\n\tFelix: I had the same experience at first. It took me a good 10-15 games before I started winning. Stick with it!\n\n4) Subhan64: Build G1 Subhan64\n\n5) Felix: Trade G1 B1 Felix\n\n6) Subhan64: Build G1 Subhan64\n\n7) Felix: Build G1 Felix\n\n8) Subhan64: Trade G1 Y1 Subhan64\n\n9) Felix: Build B1 Felix\n\n10) Subhan64: Build Y1 Subhan64\n\n11) Felix: Trade B1 Y1 Felix\n\n12) Subhan64: Discover Y1 Subhan64 G3 Kermit\n\n13) Felix: Discover Y1 Felix G1 Flemoid\n\n14) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Subhan64\nBuild Y2 Kermit\n\nBuild Y3 Subhan64\n\n15) Felix: Build Y3 Flemoid\n\n16) Subhan64: Move Y1 Kermit Flemoid\n\n17) Felix: Move Y3 Flemoid Kermit\n\tFelix: Nice move!\n\n18) Subhan64: Move Y1 Subhan64 Kermit\n\n19) Felix: Sacrifice B1 Felix\nTrade Y3 R3 Kermit\n\n20) Subhan64: Sacrifice Y1 Kermit\nMove Y2 Kermit Flemoid\n\n21) Felix: Build Y1 Flemoid\nCatastrophe Flemoid Yellow\n\n22) Subhan64: Trade Y3 R3 Subhan64\n\n23) Felix: Trade G1 B1 Felix\n\n24) Subhan64: Build R1 Subhan64\n\n25) Felix: Build G1 Felix\n\n26) Subhan64: Trade G2 Y2 Subhan64\n\n27) Felix: Trade G1 Y1 Felix\n\n28) Subhan64: Trade R1 B1 Subhan64\n\n29) Felix: Discover B1 Felix G1 Ralston\n\n30) Subhan64: Build B2 Subhan64\n\n31) Felix: B B2 Ralston\n\n32) Subhan64: Trade B2 G2 Subhan64\n\n33) Felix: Trade B1 Y1 Ralston\n\n34) Subhan64: Discover G2 Subhan64 Y3 Tweety\n\n35) Felix: Sacrifice G3 Felix\nBuild Y1 Ralston\nBuild Y3 Ralston\nBuild Y3 Felix\n\n36) Subhan64: Move Y2 Subhan64 Tweety\n\n37) Felix: Move Y1 Ralston Tweety\n\n38) Subhan64: Build G1 Subhan64\n\n39) Felix: Move Y1 Ralston Tweety\nCatastrophe Tweety Yellow\n\n40) Subhan64: Trade G1 Y1 Subhan64\n\n41) Felix: Build Y1 Ralston\n\n42) Subhan64: Build G1 Subhan64\n\n43) Felix: Trade Y3 G3 Felix\n\n44) Subhan64: Build R1 Subhan64\n\n45) Felix: Move Y1 Ralston Kermit\n\n46) Subhan64: Discover G1 Subhan64 Y3 Daisy\n\n47) Felix: Build Y2 Kermit\n\n48) Subhan64: Move R3 Subhan64 Daisy\n\n49) Felix: Build Y3 Ralston\n\n50) Subhan64: Move R3 Daisy Ralston\n\n51) Felix: Sacrifice Y3 Ralston\nMove R3 Kermit Subhan64\nMove Y1 Kermit Subhan64\nMove Y3 Ralston Kermit\n\n52) Subhan64: Build R1 Subhan64\n\n53) Felix: Sacrifice Y3 Kermit\nMove Y2 Kermit Subhan64\nCatastrophe Subhan64 Yellow\nMove B2 Ralston Daisy\nMove B2 Daisy Subhan64\n\n\tFelix: Good game! I hope you learned some new tricks, and I'd love to rematch any time!\n\nHomeworlds Online (SDG# 30521)\nStarted: 2016.10.10, Ended: 2016.10.13\nParticipants: Subhan64 (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Subhan64: Homeworld G2 B1 Y3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) Subhan64: Build Y1 Subhan64\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Subhan64: Trade Y1 G1 Subhan64\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) Subhan64: Discover G1 Subhan64 Y3 Big Bird\n\n9) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n10) Subhan64: Build G1 Big\n\n11) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n12) Subhan64: Build Y1 Subhan64\n\n13) Draw5PlayAll: Build B1 G2\n\n14) Subhan64: Discover Y1 Subhan64 Y3 Banana\n\n15) Draw5PlayAll: Build B2 G2\n\n16) Subhan64: Build Y1 Subhan64\n\n17) Draw5PlayAll: Build Y2 Draw5playall\n\n18) Subhan64: Build Y2 Subhan64\n\n19) Draw5PlayAll: Trade B2 Y2 G2\n\n20) Subhan64: Trade Y2 B2 Subhan64\n\n21) Draw5PlayAll: Build B2 G2\n\n22) Subhan64: Sacrifice G1 Big\nBuild Y2 Banana\n\n23) Draw5PlayAll: Discover Y1 Draw5playall B2 B2\n\n24) Subhan64: Build B3 Subhan64\n\n25) Draw5PlayAll: Sacrifice Y2 G2\nMove B1 G2 Big\nMove B1 Big Subhan64\nCatastrophe Subhan64 Blue\n\tDraw5PlayAll: Incorrect.\n\n26) Subhan64: Pass\n\n27) Draw5PlayAll: Build Y2 Draw5playall\n\n\tDraw5PlayAll: ????\n\tDraw5PlayAll: Was that intentional? It certainly was NOT a time forfeit.\n\tSubhan64: bad move on my part :(\n\tDraw5PlayAll: Did you resign intentionally or not?\n\tDraw5PlayAll: And what about when you passed? Was that intentional?\n\tSubhan64: yep. once I loose a star there is little hope\r\n\n\tDraw5PlayAll: Good game. Another?\n\tSubhan64: sure, set up a challenge\n\tDraw5PlayAll: I think I have one, but...\n\nHomeworlds Online (SDG# 30506)\nVariants: "Hard time"\nStarted: 2016.10.12, Ended: 2016.10.15\nParticipants: mxpf (S), zeder (N)\nWinner: zeder\n\n1) zeder: Homeworld G2 B1 Y3\n\n\tDraw5PlayAll: Mxpf has not responded in 16 days. You might want to challenge someone else.\n\nHomeworlds Online (SDG# 31850)\nStarted: 2017.4.6, Ended: 2017.6.12\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n1) MobyNostromo: H G1 B2 Y3\n\tMobyNostromo: Have fun!\n\n2) wil: H B3 Y1 G3\n\twil: If you insist\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) wil: B G1 Wil\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) wil: B G1 Wil\n\n7) MobyNostromo: D Y1 Mobynostromo G3 Green\n\n8) wil: D G1 Wil Y2 Y2\n\n9) MobyNostromo: T Y1 B1 Mobynostromo\n\n10) wil: B G2 Wil\n\n11) MobyNostromo: B B1 Mobynostromo\n\n12) wil: B G2 Y2\n\n13) MobyNostromo: D B1 Mobynostromo R3 Red Giant\n\n14) wil: M G2 Y2 Red\n\n15) MobyNostromo: M Y3 Mobynostromo Red\n\n16) wil: S G3 Wil\nB G2 Y2\nB G3 Y2\nB G3 Wil\n\n17) MobyNostromo: A G2 Red\n\twil: Now this is different\n\twil: I see what I should a done\n\n18) wil: T G2 B2 Wil\n\n19) MobyNostromo: M G2 Red Y2\nCatastrophe Y2 G\n\n20) wil: D B2 Wil Y2 Y2\n\n21) MobyNostromo: T B1 R1 Mobynostromo\n\n22) wil: B G1 Wil\n\n23) MobyNostromo: B R1 Mobynostromo\n\n24) wil: D G1 Wil Y2 Why2\n\n25) MobyNostromo: T R1 Y1 Mobynostromo\n\n26) wil: B G2 Wil\n\n27) MobyNostromo: B Y2 Green\n\n28) wil: Discover G1 Why2 Y3 Y3\n\n29) MobyNostromo: B R1 Mobynostromo\n\n30) wil: T G2 Y2 Wil\n\n31) MobyNostromo: B Y3 Mobynostromo\n\n32) wil: T G1 R1 Wil\n\n33) MobyNostromo: T R1 G1 Mobynostromo\n\n34) wil: Discover Y2 Wil G2 G2\n\n35) MobyNostromo: B R1 Mobynostromo\n\n36) wil: S G1 Y3\nB Y3 G2\n\n37) MobyNostromo: S Y3 Red\nM Y1 Green G2\nM Y2 Green G2\nM B1 Red G2\nC G2 Y\n\n38) wil: B R2 Wil\n\n39) MobyNostromo: B R2 Mobynostromo\n\n40) wil: T R2 Y2 Wil\n\n41) MobyNostromo: D R2 Mobynostromo G3 Gammagreen\n\n42) wil: B R2 Wil\n\n43) MobyNostromo: M Y1 Mobynostromo Gammagreen\n\n44) wil: M R2 Wil Y2\n\n45) MobyNostromo: B B1 G2\n\n46) wil: S G3 Wil\nB R2 Wil\nB R3 Wil\nB R3 Y2\n\n47) MobyNostromo: B R3 Gammagreen\n\n48) wil: D R2 Wil Y2 Whytwo\n\n49) MobyNostromo: B G1 Mobynostromo\n\n50) wil: T R3 G3 Wil\n\n51) MobyNostromo: D G1 Mobynostromo R3 Redgiant\n\n52) wil: B G2 Wil\n\n53) MobyNostromo: B G2 Mobynostromo\n\n54) wil: T R3 G3 Y2\n\n55) MobyNostromo: D G1 Mobynostromo R3 Redragon\n\n56) wil: M B2 Y2 Redragon\n\n57) MobyNostromo: B B1 G2\n\n58) wil: A G1 Redragon\n\n59) MobyNostromo: S Y3 Mobynostromo\nM B1 G2 Wil\nM B1 G2 Wil\nM B1 G2 Wil\nC Wil B\n\n60) wil: D Y2 Wil B3 B3\n\n61) MobyNostromo: T R1 Y1 Mobynostromo\n\n62) wil: Sacrifice G3 Wil\nBuild G2 Redragon\nBuild G3 Wil\nBuild Y3 B3\n\n63) MobyNostromo: S G2 Mobynostromo\nB Y3 Mobynostromo\nB Y3 Gammagreen\n\n64) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild G3 Wil\nBuild R1 Y2\n\n65) MobyNostromo: M Y1 Mobynostromo Gammagreen\n\n66) wil: S Y3 B3\nM Y2 B3 Y2\nM Y2 Y2 Gammagreen\nM R1 Y2 Gammagreen\nC Gammagreen Y\n\n67) MobyNostromo: S Y3 Mobynostromo\nM R2 Gammagreen Mobynostromo\nM R3 Gammagreen Whytwo\nPass\n\n68) wil: D G3 Y2 Y3 Y3\n\n69) MobyNostromo: A R2 Whytwo\n\n70) wil: M G3 Y3 Mobynostromo\n\n71) MobyNostromo: S G1 Redgiant\nB R3 Mobynostromo\n\twil: You violated the always leave a big ship at home rule... Challenge anytime.\n\n72) wil: S R2 Y2\nA R3 Mobynostromo\nA R2 Mobynostromo\n\n73) MobyNostromo: M R3 Whytwo Gammagreen\n\n74) wil: B R2 Mobynostromo\nC Mobynostromo R\n\twil: Gg\n\tMobyNostromo: I'm still learning this one. Thanks for the game!\n\n\nHomeworlds Online (SDG# 30545)\nStarted: 2016.10.14, Ended: 2016.10.18\nParticipants: lordrefa (S), ladybugsfly (N)\nWinner: lordrefa\n\n1) ladybugsfly: Homeworld G3 B2 Y3\n\n2) lordrefa: Homeworld G3 B1 G3 *\n\n3) ladybugsfly: Build Y1 Ladybugsfly\n\n4) lordrefa: Build G1 Lordrefa\n\n5) ladybugsfly: Discover Y1 Ladybugsfly G1 Frodo\n\n6) lordrefa: Trade G1 Y1 Lordrefa\n\n7) ladybugsfly: Build Y1 Frodo\n\n8) lordrefa: Build Y2 Lordrefa\n\n9) ladybugsfly: Build Y2 Ladybugsfly\n\n10) lordrefa: Discover Y2 Lordrefa G2 Bilbo\n\n11) ladybugsfly: Trade Y2 B2 Ladybugsfly\n\n12) lordrefa: Build Y2 Bilbo\n\n13) ladybugsfly: Move B2 Ladybugsfly Frodo\n\n14) lordrefa: Build Y2 Lordrefa\n\n15) ladybugsfly: Build Y3 Ladybugsfly\n\n16) lordrefa: Move Y2 Bilbo Frodo\n\n17) ladybugsfly: Trade Y1 R1 Frodo\n\n18) lordrefa: Move Y2 Frodo Ladybugsfly\n\n19) ladybugsfly: Trade Y3 R3 Ladybugsfly\n\n20) lordrefa: Sacrifice G3 Lordrefa\nBuild Y1 Ladybugsfly\nBuild Y3 Ladybugsfly\nBuild Y3 Bilbo\nCatastrophe Ladybugsfly Yellow\n\n21) ladybugsfly: Build R1 Ladybugsfly\n\n22) lordrefa: Trade Y2 R2 Lordrefa\n\n23) ladybugsfly: Build B1 Frodo\n\n24) lordrefa: Move R2 Lordrefa Bilbo\n\n25) ladybugsfly: Discover B2 Frodo Y2 Gandalf\n\n26) lordrefa: Move R2 Bilbo Frodo\n\n27) ladybugsfly: Move B2 Gandalf Lordrefa\n\n28) lordrefa: Move Y3 Bilbo Lordrefa\n\n29) ladybugsfly: Discover B1 Frodo Y2 Gimli\n\n30) lordrefa: Attack R1 Frodo\n\n31) ladybugsfly: Build B1 Lordrefa\n\n32) lordrefa: Sacrifice Y2 Bilbo\nMove R1 Frodo Ladybugsfly\nMove R2 Frodo Ladybugsfly\nCatastrophe Ladybugsfly Red\n\n\nHomeworlds Online (SDG# 30546)\nStarted: 2016.10.15, Ended: 2016.11.22\nParticipants: Draw5PlayAll (S), Subhan64 (N)\nWinner: Draw5PlayAll\n\n1) Subhan64: Homeworld B3 G1 Y3\n\n2) Draw5PlayAll: Homeworld B1 R2 G3\n\n3) Subhan64: Build Y1 Subhan64\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Subhan64: Trade Y1 G1 Subhan64\n\n6) Draw5PlayAll: Build G2 Draw5playall\n\n7) Subhan64: Build G2 Subhan64\n\n8) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n9) Subhan64: Discover G2 Subhan64 Y2 Tweety\n\n10) Draw5PlayAll: Build G2 Draw5playall\n\n11) Subhan64: Build G2 Tweety\n\tDraw5PlayAll: I offer you the chance to make this game very interesting...\n\n12) Draw5PlayAll: Trade G2 B2 Draw5playall\n\tDraw5PlayAll: I consider that a declination.\n\n13) Subhan64: Discover G2 Tweety G3 Kermit\n\n14) Draw5PlayAll: Discover B2 Draw5playall G3 G3\n\n15) Subhan64: Build G2 Tweety\n\n16) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G3\nBuild Y1 Draw5playall\n\n17) Subhan64: Build Y1 Subhan64\n\tDraw5PlayAll: You can still blow up my greens if you want.\n\tSubhan64: not worth it\n\n18) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G3\nBuild Y1 Draw5playall\n\n19) Subhan64: Move G2 Tweety G3\n\n20) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n21) Subhan64: Trade G1 Y1 Subhan64\n\n22) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack G2N G3\n\n23) Subhan64: Move Y1 Subhan64 Tweety\n\n24) Draw5PlayAll: Trade G2 R2 G3\n\n25) Subhan64: Discover Y1 Subhan64 G2 Scooter\n\n26) Draw5PlayAll: Move G1 Draw5playall Kermit\n\n27) Subhan64: Sacrifice G2 Tweety\nBuild Y2 Scooter\nBuild Y3 Subhan64\n\n28) Draw5PlayAll: Move Y1 Draw5playall G3\n\n29) Subhan64: Discover Y1 Scooter Y3 Blah\n\n30) Draw5PlayAll: Build G1 Kermit\nCatastrophe Kermit G\n\n31) Subhan64: Trade Y3 G3 Subhan64\n\n32) Draw5PlayAll: Build Y3 G3\n\n33) Subhan64: Trade G3 B3 Subhan64\n\n34) Draw5PlayAll: Move B1 G3 Tweety\n\n35) Subhan64: Trade B3 R3 Subhan64\n\n36) Draw5PlayAll: Build R1 G3\n\n37) Subhan64: Sacrifice Y1 Tweety\nMove Y2 Scooter Blah\n\n38) Draw5PlayAll: Build Y1 Draw5playall\n\n39) Subhan64: Build R1 Subhan64\n\n40) Draw5PlayAll: Move Y1 Draw5playall Blah\nCatastrophe Blah Yellow\n\n41) Subhan64: Move R3 Subhan64 Tweety\n\n42) Draw5PlayAll: Discover B1 Tweety G1 G1\n\n43) Subhan64: Build Y1 Subhan64\n\n44) Draw5PlayAll: Build B2 G3\n\n45) Subhan64: Build R1 Subhan64\n\n46) Draw5PlayAll: Build B2 G1\n\n47) Subhan64: Move R3 Tweety G1\n\n48) Draw5PlayAll: Build B3 G1\n\n49) Subhan64: Attack B3 G1\n\n50) Draw5PlayAll: Build B3 G1\nCatastrophe G1 Blue\n\n51) Subhan64: Build R2 G1\n\n52) Draw5PlayAll: Build R3 G3\n\n53) Subhan64: Sacrifice Y1 Subhan64\nMove R2 G1 G3\nCatastrophe G3 R\n\n54) Draw5PlayAll: Build G1 Draw5playall\n\n55) Subhan64: Trade R1 Y1 Subhan64\n\n56) Draw5PlayAll: Build G2 Draw5playall\n\n57) Subhan64: Sacrifice Y1 Subhan64\nMove R3 G1 G3\n\n58) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover Y3 G3 G1 G1\nMove B2 G3 G1\n\n59) Subhan64: Attack Y1 G3\n\tDraw5PlayAll: Dang\n\n60) Draw5PlayAll: Sacrifice B2 G3\nTrade G1 R1 Draw5playall\nTrade B1 G1 G3\n\n61) Subhan64: Attack G1 G3\n\n62) Draw5PlayAll: Build Y1 G1\n\n63) Subhan64: Build R1 G3\n\n64) Draw5PlayAll: Build B1 G1\n\n65) Subhan64: Move R3 G3 Draw5playall\n\n66) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack R3 Draw5playall\n\n67) Subhan64: Build G2 G3\n\n68) Draw5PlayAll: S Y1 G1\nMove G2 Draw5playall G3\nCatastrophe G3 G\n\tDraw5PlayAll: Incorrect. I believe you were hoping I would do a straight attack?\n\n69) Subhan64: Build Y1 Subhan64\n\tSubhan64: that's what I was expecting, yes. I overlooked the sacrifice move\r\n\n\n70) Draw5PlayAll: Build G1 Draw5playall\n\n71) Subhan64: Build Y1 Subhan64\n\n72) Draw5PlayAll: Build Y1 G1\n\n73) Subhan64: Build R1 Subhan64\n\n74) Draw5PlayAll: Build G2 Draw5playall\n\n75) Subhan64: Discover Y1 Subhan64 Y2 Bb\n\n76) Draw5PlayAll: Sacrifice Y1 G1\nDiscover G2 Draw5playall B3 B3\n\n77) Subhan64: Build R1 Subhan64\n\n78) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B3\nBuild G2 B3\nBuild G3 Draw5playall\n\n79) Subhan64: Trade Y3 G3 Subhan64\n\n80) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 Draw5playall\n\n81) Subhan64: Build Y1 Subhan64\n\n82) Draw5PlayAll: Trade G2 Y2 B3\n\tDraw5PlayAll: Deliberately having an unstable base\n\n83) Subhan64: Trade Y1 B1 Subhan64\n\n84) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 B3\nBuild Y2 B3\nBuild Y3 G1\n\n85) Subhan64: Move Y1 Bb B3\nCatastrophe B3 Yellow\n\n86) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B3\nBuild B2 G1\nBuild G3 Draw5playall\n\n87) Subhan64: Discover B1 Subhan64 Y2 Bb\n\n88) Draw5PlayAll: Sacrifice B2 G1\nTrade R2 Y2 Draw5playall\nTrade G2 Y2 B3\n\n89) Subhan64: Build Y1 Subhan64\n\n\n90) Draw5PlayAll: Sacrifice Y3 G1\nMove G2 B3 Bb\nMove G2 B3 Bb\nMove G2 Bb Subhan64\n\n91) Subhan64: Attack G2 Subhan64\n\n92) Draw5PlayAll: Move G2 Bb Subhan64\nCatastrophe Subhan64 Green\n\n\tDraw5PlayAll: Good game\n\tSubhan64: gg\n\nHomeworlds Online (SDG# 30523)\nStarted: 2016.10.17, Ended: 2016.11.1\nParticipants: Felix (S), zeder (N)\nWinner: Felix\n\n1) zeder: Homeworld G3 B1 Y3\n\n2) Felix: Homeworld R2 G3 B3\n\tzeder: Hello again!\n\tFelix: Hello! I hope you have fun!\n\n3) zeder: Build Y1 Zeder\n\tDraw5PlayAll: I find the blue ship to be the most impractical starting choice, preferring a blue star instead.\n\n4) Felix: Build B1 Felix\n\tFelix: @Draw5 it can have its advantages, especially if the opponent choose a b1 in their homeworld. :)\n\n5) zeder: Trade Y1 G1 Zeder\n\n6) Felix: Build B1 Felix\n\n7) zeder: Trade Y3 B3 Zeder\n\n8) Felix: Trade B1 Y1 Felix\n\n9) zeder: Trade G1 Y1 Zeder\n\tzeder: I don't know if trading for b3 was good idea but i felt scared that i would not be ables to get blue soon\n\n10) Felix: Trade B1 G1 Felix\n\tFelix: It was probably the best move at the moment, because I WAS trying to lock you out of blue. I kind of forced you into that move but I think it will work out better for you to have the blue.\n\tFelix: Once you build another blue ship you could always trade back your b3 for something else.\n\n11) zeder: Build B1 Zeder\n\n12) Felix: Discover G1 Felix B1 Bazoik\n\tzeder: i am finding this game one of tempo... and trading back and forth loses me tempo. :(\n\tDraw5PlayAll: Imagine my plight when I have to keep trading my initial G3 to prevent attacks...\n\n13) zeder: Discover B1 Zeder G2 Groo\n\tFelix: Tempo is so hard to maintain at times. I'm not doing it too well this game either.\n\n14) Felix: Build B2 Felix\n\n15) zeder: Build B2 Groo\n\n16) Felix: Discover B2 Felix G1 Wastle\n\n17) zeder: Trade B1 R1 Groo\n\n18) Felix: Build B1 Wastle\n\n19) zeder: Trade B3 G3 Zeder\n\n20) Felix: Trade B2 Y2 Wastle\n\n21) zeder: Build B2 Groo\n\n22) Felix: Build B2 Felix\n\n23) zeder: Trade B2 Y2 Groo\n\n24) Felix: Trade B2 R2 Felix\n\n25) zeder: Build B2 Groo\n\n26) Felix: Build B2 Felix\n\n27) zeder: Trade B2 R2 Groo\n\n28) Felix: Build G1 Bazoik\n\n29) zeder: Move R2 Groo Bazoik\n\n30) Felix: Sacrifice G1 Bazoik\nBuild Y1 Wastle\n\n31) zeder: Sacrifice G3 Zeder\nBuild Y2 Groo\nBuild Y3 Zeder\nBuild B2 Groo\n\n32) Felix: Sacrifice G1 Bazoik\nBuild Y3 Felix\n\n33) zeder: Sacrifice Y3 Zeder\nMove R1 Groo Bazoik\nMove R1 Bazoik Felix\nMove R2 Bazoik Felix\nCatastrophe Felix R\n\n34) Felix: Sacrifice Y2 Wastle\nMove B3 Felix Groo\nMove B3 Groo Zeder\n\n35) zeder: Sacrifice Y2 Groo\nMove B2 Groo Zeder\nMove B2 Groo Zeder\nCatastrophe Zeder B\n\tFelix: Oh. Nice!\n\n36) Felix: Move Y1 Wastle Zeder\n\tzeder: difficult decisions\n\n37) zeder: Build Y2 Groo\n\tzeder: I am in big troubles!\n\tFelix: Yeah, I think you are, haha. But nice decision there. It saved you for the moment, but you don't have many ships to work with!\n\n38) Felix: Build Y2 Zeder\n\tzeder: maybe in 1 year I will be a challengings opponent. :)\n\n39) zeder: Move Y2 Groo Zeder\nCatastrophe Zeder Y\n\n\tFelix: Oh, I think you will be sooner than that. You have a great instinct for the game!\n\tzeder: Seppuku!\n\tzeder: Thank you again for the game!\n\tFelix: Nice suicide :) And no problem! Sorry if I was a bit tough on you. If you'd like to play again, I'm happy any time, and I can even try to coach you a bit if I see you making any mistakes.\n\nHomeworlds Online (SDG# 30557)\nVariants: "Hard time"\nStarted: 2016.10.19, Ended: 2016.10.28\nParticipants: foksieloy (S), Subhan64 (N)\nWinner: foksieloy\n\n1) Subhan64: Homeworld Y3 B1 G3\n\n2) foksieloy: Homeworld R2 B1 G3\n\n3) Subhan64: Build G1 Subhan64\n\n4) foksieloy: Build G1 Foksieloy\n\n5) Subhan64: Trade G1 Y1 Subhan64\n\n6) foksieloy: Trade G1 Y1 Foksieloy\n\n7) Subhan64: Build G1 Subhan64\n\tfoksieloy: Btw, hi, good luck and have fun! :)\n\tSubhan64: txx, u2!\n\n8) foksieloy: Build G1 Foksieloy\n\n9) Subhan64: Trade G1 B1 Subhan64\n\n10) foksieloy: Discover G1 Foksieloy Y3 Tibbers\n\n11) Subhan64: Build G1 Subhan64\n\n12) foksieloy: Build G1 Tibbers\n\n13) Subhan64: Build G2 Subhan64\n\n14) foksieloy: Build G2 Tibbers\n\n15) Subhan64: Discover G1 Subhan64 Y2 Tweety\n\n16) foksieloy: Discover G2 Tibbers B2 Annie\n\n17) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Tweety\nBuild G3 Subhan64\nBuild B2 Subhan64\n\n18) foksieloy: Build G3 Annie\n\n19) Subhan64: Sacrifice B1 Subhan64\nTrade G2 B2 Tweety\n\n20) foksieloy: Trade G3 R3 Annie\n\n21) Subhan64: Move B2 Subhan64 Tweety\n\n22) foksieloy: Sacrifice Y1 Foksieloy\nMove R3 Annie Subhan64\n\n23) Subhan64: Sacrifice B2 Tweety\nTrade Y1 R1 Subhan64\nTrade G2 R2 Subhan64\n\n24) foksieloy: Attack G3 Subhan64\n\n\tSubhan64: gg!\r\n\n\tfoksieloy: GG!\n\tSubhan64: gg thanks\n\nHomeworlds Online (SDG# 30555)\nStarted: 2016.10.19, Ended: 2016.10.25\nParticipants: lordrefa (S), ladybugsfly (N)\nWinner: ladybugsfly\n\n1) ladybugsfly: Homeworld Y3 G2 B3\n\n2) lordrefa: Homeworld B3 G1 Y3\n\n3) ladybugsfly: B B1 Ladybugsfly\n\n4) lordrefa: Build Y1 Lordrefa\n\n5) ladybugsfly: Build B1 Ladybugsfly\n\n6) lordrefa: Build Y1 Lordrefa\n\n7) ladybugsfly: Discover B1 Ladybugsfly G1 Peterpan\n\n8) lordrefa: Discover Y1 Lordrefa G2 Mrsmee\n\n9) ladybugsfly: T B1 Y1 Peterpan\n\n10) lordrefa: Build Y2 Mrsmee\n\n11) ladybugsfly: Build Y2 Peterpan\n\n12) lordrefa: Trade Y1 B1 Lordrefa\n\n13) ladybugsfly: Discover B1 Ladybugsfly G1 Hook\n\n14) lordrefa: Build Y1 Lordrefa\n\n15) ladybugsfly: Sacrifice Y1 Peterpan\nDiscover B1 Hook G2 Lostboys\n\n16) lordrefa: Move B1 Lordrefa Mrsmee\n\n17) ladybugsfly: B B1 Lostboys\n\n18) lordrefa: Build B2 Mrsmee\n\n19) ladybugsfly: Build B2 Ladybugsfly\n\n20) lordrefa: Move B1 Mrsmee Peterpan\n\n21) ladybugsfly: T B2 R2 Ladybugsfly\n\n22) lordrefa: Trade B1 R1 Peterpan\n\n23) ladybugsfly: Sacrifice Y2 Peterpan\nMove B1 Lostboys Lordrefa\nMove B1 Lostboys Lordrefa\n\n24) lordrefa: Build R1 Peterpan\n\n25) ladybugsfly: Build B1 Ladybugsfly\n\n26) lordrefa: Sacrifice R1 Peterpan\nAttack B1 Lordrefa\n\n27) ladybugsfly: Build B2 Lordrefa\nCatastrophe Lordrefa B\n\n28) lordrefa: Trade Y2 B2 Mrsmee\n\n29) ladybugsfly: Discover B1 Ladybugsfly Y1 Hook\n\n30) lordrefa: Move B2 Mrsmee Lordrefa\n\n31) ladybugsfly: Trade B1 G1 Hook\n\n32) lordrefa: Move B2 Mrsmee Hook\n\n33) ladybugsfly: Build G2 Hook\n\n34) lordrefa: Build R1 Peterpan\n\n35) ladybugsfly: Discover G2 Hook Y2 Wendy\n\n36) lordrefa: Move Y3 Lordrefa Wendy\n\n37) ladybugsfly: Sacrifice G2 Wendy\nBuild G2 Hook\nBuild B1 Ladybugsfly\n\n38) lordrefa: Sacrifice Y3 Wendy\nMove B2 Hook Ladybugsfly\nMove B2 Lordrefa Ladybugsfly\nMove R1 Peterpan Mrsmee\nCatastrophe Ladybugsfly Blue\n\n39) ladybugsfly: Build G3 Hook\n\n40) lordrefa: Build Y2 Lordrefa\n\n41) ladybugsfly: Discover G3 Hook Y3 Tigerlily\n\n42) lordrefa: Build Y2 Mrsmee\n\n43) ladybugsfly: Move G3 Tigerlily Lordrefa\n\n44) lordrefa: Build Y2 Mrsmee\n\n45) ladybugsfly: Sacrifice G2 Hook\nBuild G2 Lordrefa\nBuild G3 Lordrefa\nCatastrophe Lordrefa G\n\n\nHomeworlds Online (SDG# 30551)\nStarted: 2016.10.23, Ended: 2016.11.23\nParticipants: orangeblood (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n2) orangeblood: Homeworld B1 Y2 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\torangeblood: Hi! It's time to play again, because my Pyramid Arcade kickstarter should arrive this week (hopefully). I need to re-learn the game so I can more easily teach others. The only two games I've ever played are with you, and it's been awhile.\n\tFelix: Welcome back! I'm happy to help you brush up on your skills before your Arcade arrives. I didn't realize they were arriving so soon. I hope mine arrives this week as well!\n\n4) orangeblood: Build G1 Orangeblood\n\n5) Felix: Trade G1 Y1 Felix\n\torangeblood: Trying to follow the Kickstarter updates... it's not clear they have actually shipped U.S. orders yet. Someone said they might ship Thursday. Where do you live? I'm near D.C.\n\tFelix: I'm in NC. I think I remember them saying they should arrive by Nov 3 at the latest for US residents. Here's hoping it's sooner!\n\n6) orangeblood: Trade G1 B1 Orangeblood\n\n7) Felix: Build Y1 Felix\n\n8) orangeblood: Build G1 Orangeblood\n\n9) Felix: Discover Y1 Felix G2 Flemoid\n\n10) orangeblood: Discover G1 Orangeblood Y3 Wishbone\n\n11) Felix: Build G1 Felix\n\n12) orangeblood: Build G1 Orangeblood\n\n13) Felix: Discover G1 Felix B2 Ralston\n\n14) orangeblood: Build G2 Wishbone\n\n15) Felix: Build Y1 Felix\n\torangeblood: Still no game here in Virginia. Gak.\n\tFelix: Nor here. They just sent out an update saying most of them were shipped over the last few days, so hopefully this week!\n\n16) orangeblood: Discover G1 Orangeblood G3 Bevo\n\n17) Felix: Build G2 Felix\n\n18) orangeblood: Move B1 Orangeblood Wishbone\n\n19) Felix: Move Y1 Felix Ralston\n\n20) orangeblood: T G2 Y2 Wishbone\n\n21) Felix: Build G2 Ralston\n\n22) orangeblood: Move Y2 Wishbone Orangeblood\n\torangeblood: I got the game yesterday... it looks great!\n\tFelix: Same here! Loving it so far!\n\n23) Felix: Build Y2 Flemoid\n\tDraw5PlayAll: Was Homeworlds the first game you tried out?\n\n24) orangeblood: Move Y2 Orangeblood Bevo\n\torangeblood: Homeworlds is the only pyramid game I've ever played, and only here at SDG. I am going to play F2F with one of my co-workers this week, however. I need to learn some of the other games. :)\n\tDraw5PlayAll: Felix?\n\tFelix: @orangeblood There's some great games in there. I am really enjoying Petal Battle at the moment. Good luck getting people hooked on it!\r\n\r\n@Draw5 - no, my first play was Treehouse, and then IceDice. I didn't play homeworlds until I had a bigger set of pyramids.\n\n25) Felix: Build Y3 Ralston\n\n26) orangeblood: Build Y3 Bevo\n\torangeblood: Yeah I've been reading the rules... several I can't wait to try.\n\n27) Felix: Trade Y3 R3 Ralston\n\n28) orangeblood: Trade G3 R3 Orangeblood\n\n29) Felix: Build Y3 Ralston\n\n30) orangeblood: Sacrifice Y2 Bevo\nMove Y3 Bevo Orangeblood\nMove G1 Bevo Orangeblood\n\n31) Felix: Discover G2 Ralston B3 Bazoik\n\n32) orangeblood: Build G3 Wishbone\n\torangeblood: I'm just sort of flailing about, haha.\n\tFelix: Haha, no worries. It may have been a bad idea to trade away your G ship in your home system. It's better to try to build another G first before trading. That's a good rule of thumb for any color, really. Always better to build a second ship of any color and THEN trade that for a different ship. Otherwise you are losing one color ability to gain another, and it's not really a net gain.\n\n33) Felix: Build G3 Bazoik\n\n34) orangeblood: Build R1 Orangeblood\n\torangeblood: Makes sense!\r\n\r\nGot to play a 3-player World War 5 game today... and it was a lot of fun. More strategy than I thought.\n\tFelix: That's a game I'd like to see on SDG someday! I still haven't played yet.\n\n35) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild R1 Ralston\n\tDraw5PlayAll: While we are at it I would like to see Zark City here.\n\tDraw5PlayAll: And RAMbots.\n\n36) orangeblood: Discover Y3 Orangeblood B3 Santorini\n\torangeblood: Finally got to teach Homeworlds to a co-worker today... first f2f game ever. Lots of fun. Also tried Hijinks, which was way better than I thought it would be. Color Wheel, on the other hand... well, I'm not a big fan of puzzles. :)\n\torangeblood: Also, you may have noticed my attempt at the investment/banker strategy this game was.... suboptimal.\n\n37) Felix: Move Y1 Flemoid Bazoik\n\tFelix: My wife and I played hijinks and quite enjoyed it! Deceptively complex for such a seemingly simple game.\r\n\r\nAnd yeah... the investment/banking is tough to pull off! I have rarely done it successfully. Good attempt though!\n\n38) orangeblood: Move R1 Orangeblood Wishbone\n\n39) Felix: Move R3 Ralston Bazoik\n\n40) orangeblood: S G3 Wishbone\nBuild G3 Wishbone\nB R2 Wishbone\nB R2 Orangeblood\n\n41) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R2 Bazoik\nBuild R3 Ralston\n\n42) orangeblood: M Y3 Santorini Orangeblood\n\n43) Felix: Trade R3 B3 Bazoik\n\n44) orangeblood: Discover R3 Orangeblood R3 Red Cloud\n\n45) Felix: Move Y2 Flemoid Bazoik\n\n46) orangeblood: Sacrifice G3 Wishbone\nB G2 Orangeblood\nB G3 Wishbone\nB B1 Wishbone\n\torangeblood: I think you've got me pretty good.\n\torangeblood: We played a couple of 3-player Zark City games today... and it's really a good game. Great finishes.\n\tDraw5PlayAll: ZC and Rambots and Lunar Invaders deserve to be on sdg.\n\torangeblood: I haven't tried Lunar Invaders yet!\n\n47) Felix: Sacrifice Y3 Ralston\nMove Y1 Bazoik Orangeblood\nMove Y2 Bazoik Orangeblood\nCatastrophe Orangeblood Yellow\nMove B3 Bazoik Orangeblood\n\tFelix: I haven't played Zark City or Lunar Invaders yet but I'm excited to try them both!\n\n\tFelix: The coup de grace!\n\torangeblood: Huh. Somehow I overlooked your second yellow ship in bazoik.\n\torangeblood: Well played!\n\torangeblood: Anyway, mission accomplished for me to brush up on the rules. I've already taught Homeworlds to a friend with the PA set. Thanks again!\n\tFelix: Thank you! Well played yourself. Glad to help you brush up!\n\nHomeworlds Online (SDG# 30530)\nVariants: "Hard time"\nStarted: 2016.10.25, Ended: 2016.10.28\nParticipants: mxpf (S), Ryzorrin (N)\nWinner: Ryzorrin\n\n1) Ryzorrin: Homeworld R1 G2 B3\n\tRyzorrin: Hello!\r\n\n\n\nHomeworlds Online (SDG# 30584)\nVariants: "Hard time"\nStarted: 2016.10.29, Ended: 2016.11.3\nParticipants: dlwillson (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B2 G3\n\n\tFelix: Good luck and have fun!\n\tFelix: Oh dear :( I hate to win that way.\n\tdlwillson: Aw, shucks! I hate to lose that way! I must have missed the email.\n\tFelix: Sorry! I'm happy to rematch when the opportunity arises.\n\nHomeworlds Online (SDG# 30553)\nStarted: 2016.10.31, Ended: 2017.1.4\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Felix: Homeworld R1 B2 G3\n\tts52: Have a good game!\n\tFelix: Likewise! I always enjoy playing against you.\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\tts52: Indeed\n\n5) ts52: Discover G1 Ts52 B2 Gonzo\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build G1 Ts52\n\n8) Felix: Build B1 Felix\n\n9) ts52: Build G1 Ts52\n\n10) Felix: Build G2 Felix\n\n11) ts52: Build G2 Gonzo\n\n12) Felix: Trade G2 Y2 Felix\n\n13) ts52: Build G2 Gonzo\n\n14) Felix: Build G2 Felix\n\n15) ts52: Trade G2 Y2 Gonzo\n\n16) Felix: Discover G2 Felix B3 Rails\n\n17) ts52: Trade G1 R1 Ts52\n\n18) Felix: Trade B1 R1 Felix\n\n19) ts52: Trade G2 B2 Gonzo\n\n20) Felix: Build R2 Felix\n\n21) ts52: Build R2 Ts52\n\n22) Felix: Move R2 Felix Rails\n\n23) ts52: Move R2 Ts52 Gonzo\n\n24) Felix: Discover R1 Felix G3 Bazoik\n\n25) ts52: Sacrifice G3 Ts52\nBuild R2 Gonzo\nBuild R3 Gonzo\nBuild R3 Ts52\n\n26) Felix: Build R3 Rails\n\n27) ts52: Move R2 Gonzo Rails\n\n28) Felix: Sacrifice R2 Rails\nAttack R2 Rails\nPass\n\n29) ts52: Trade R3 G3 Ts52\n\n30) Felix: Trade R2 Y2 Rails\n\n31) ts52: Move R2 Gonzo Bazoik\n\n32) Felix: Build R2 Rails\n\n33) ts52: Attack R1 Bazoik\n\n34) Felix: Discover R2 Rails G2 Ruby\n\n35) ts52: Sacrifice G3 Ts52\nBuild G1 Gonzo\nBuild G2 Gonzo\nBuild G3 Ts52\n\n36) Felix: Move G2 Rails Gonzo\nCatastrophe Gonzo Green\n\n37) ts52: Move B2 Gonzo Bazoik\n\n38) Felix: Build G1 Felix\n\n39) ts52: Move G1 Ts52 Gonzo\n\n40) Felix: Move G1 Felix Rails\n\n41) ts52: Build Y1 Gonzo\n\n42) Felix: Build G1 Felix\n\n43) ts52: Build G2 Ts52\n\n44) Felix: Build Y1 Rails\n\n45) ts52: Move Y1 Gonzo Bazoik\n\n46) Felix: Move Y2 Rails Ruby\n\n47) ts52: Build B1 Bazoik\n\n48) Felix: Sacrifice G3 Felix\nBuild Y1 Rails\nBuild Y3 Ruby\nBuild Y3 Felix\n\n49) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\n\n50) Felix: Move G1 Rails Gonzo\nCatastrophe Gonzo Green\n\n51) ts52: Sacrifice G2 Ts52\nBuild R2 Ts52\nBuild R3 Gonzo\n\n52) Felix: Discover B1 Felix G3 Raptor\n\n53) ts52: Move R3 Gonzo Raptor\n\n54) Felix: Sacrifice Y1 Rails\nMove B1 Raptor Ruby\n\n55) ts52: Build Y1 Bazoik\n\n56) Felix: Build B3 Ruby\n\n57) ts52: Move B1 Bazoik Felix\n\n58) Felix: Move B3 Ruby Bazoik\n\tFelix: Ooh, that was sneaky. Very nice.\n\n59) ts52: Attack G1 Felix\n\tDraw5PlayAll: I fail to understand\n\tFelix: Moving his b1 to my homeworld made it so A) I have to deal with the threat of his b1 and B) he opened up the opportunity to build the remaining b3 himself. A great move.\n\tts52: Thanks! Although I hadn't considered your counter move. Now if I build the b3, you can immediately steal it from me.\n\n60) Felix: Sacrifice R2 Ruby\nAttack B1 Felix\nAttack G1 Felix\n\tFelix: And thank you! It took me a while to come up with that countermove, and I was soiling my pants there for a while first :)\n\n61) ts52: Build G1 Ts52\n\n62) Felix: Build B3 Ruby\n\n63) ts52: Sacrifice Y2 Gonzo\nMove Y1 Bazoik Felix\nMove Y1 Bazoik Felix\nCatastrophe Felix Yellow\n\n64) Felix: Sacrifice Y2 Ruby\nMove Y3 Ruby Rails\nMove Y3 Rails Felix\n\tFelix: Aw, man, how did I miss that?\n\n65) ts52: Trade R1 Y1 Bazoik\n\n66) Felix: Sacrifice R3 Rails\nAttack Y1 Bazoik\nAttack R2 Bazoik\nAttack B2 Bazoik\n\tts52: Probably because it wasn't the killing blow I'd hoped it would be when I started thinking about it several turns ago.\n\n67) ts52: Trade R2 Y2 Ts52\n\tFelix: Ah yes, I suppose that must be it :) It was a bold strike, but I think it might end up leaving you a bit worse off than before.\n\n68) Felix: Trade B3 Y3 Bazoik\n\tts52: I think you may be right. It cost all of my transport, and for what real gain? Oh well.\n\n69) ts52: Move Y2 Ts52 Gonzo\n\n70) Felix: Build B3 Bazoik\n\n71) ts52: Move G1 Ts52 Gonzo\n\n72) Felix: Trade B3 R3 Ruby\n\n73) ts52: Build G1 Ts52\n\n74) Felix: Build G2 Felix\n\n75) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y1 Gonzo\n\n76) Felix: Sacrifice G2 Felix\nBuild Y2 Felix\nBuild Y2 Rails\n\n77) ts52: Move Y2 Gonzo Raptor\n\n78) Felix: Build G2 Felix\n\n79) ts52: Move R3 Gonzo Rails\n\n80) Felix: Sacrifice Y1 Rails\nMove Y2 Rails Ruby\n\n81) ts52: Trade G3 B3 Ts52\n\n82) Felix: S Y3 Bazoik\nM B2 Bazoik Ruby\nM B1 Ruby Ts52\nM B2 Ruby Ts52\nC Ts52 Blue\n\n83) ts52: Sacrifice Y2 Raptor\nMove R3 Rails Ruby\nMove R3 Ruby Ts52\n\tts52: Sorry for running out of time, thanks for being patient.\n\n84) Felix: Sacrifice Y3 Felix\nMove Y2 Ruby Ts52\nMove Y1 Bazoik Gonzo\nMove Y1 Gonzo Ts52\n\n85) ts52: Sacrifice R3 Raptor\nAttack Y1 Ts52\nAttack Y2 Ts52\nPass\n\tFelix: No problem! I understand with the holidays, and I won't force someone to surrender as long as the system allows it!\n\tts52: Thanks!\n\tts52: Though I think you've got this one wrapped up.\n\n86) Felix: Move Y2 Felix Ts52\nCatastrophe Ts52 Yellow\n\tFelix: Yes, I suppose that's a bummer to come back from holiday just to suffer defeat, but good game, and I look forward to the next!\n\tts52: It was an excellent game. Always happy to play another.\n\n\nHomeworlds Online (SDG# 30579)\nVariants: "Hard time"\nStarted: 2016.11.1, Ended: 2016.11.4\nParticipants: mxpf (S), zeder (N)\nWinner: zeder\n\n1) zeder: Homeworld G3 B1 Y3\n\n\tDraw5PlayAll: Just so you know, MXPF has not signed on in over a month.\n\tzeder: Damnit! I forgot about this person! How do he keep creating games?!\n\tDraw5PlayAll: Standing Challenge. It is a feature where you can have a challenge create itself automatically. Too bad it leads to this situation.\r\n\r\nIt is similar to how you always get spectators who have not signed on in years. They chose the option to monitor all Homeworlds games.\n\tzeder: Thank you for this informations. I will remember this person next time.\n\tDraw5PlayAll: Withdraw the planetary regime plans -- our enemy's Life Support Systems are going to blow.\n\nHomeworlds Online (SDG# 30611)\nVariants: "Hard time"\nStarted: 2016.11.3, Ended: 2016.11.6\nParticipants: Subhan64 (S), mxpf (N)\nWinner: Subhan64\n\n\tDraw5PlayAll: Last I checked mxpf is inactive\n\nHomeworlds Online (SDG# 30647)\nVariants: "Hard time"\nStarted: 2016.11.5, Ended: 2016.11.8\nParticipants: Subhan64 (S), Pheonixian (N)\nWinner: Subhan64\n\n\nHomeworlds Online (SDG# 30571)\nStarted: 2016.11.7, Ended: 2017.1.8\nParticipants: agentofchaos (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\tFelix: Hey, hope you have fun!\n\n2) agentofchaos: Homeworld R1 B2 G3\n\tagentofchaos: Thanks, you too!\n\n3) Felix: Build G1 Felix\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Felix: Trade G1 Y1 Felix\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) Felix: Build Y1 Felix\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) Felix: Build Y2 Felix\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) Felix: Trade Y1 B1 Felix\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) Felix: Discover B1 Felix G1 Rim\n\n14) agentofchaos: Discover G1 Agentofchaos R3 Doombridge\n\n15) Felix: Build G2 Felix\n\n16) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Doombridge\nBuild G2 Agentofchaos\nBuild G3 Agentofchaos\n\n17) Felix: Discover G2 Felix B1 Opus\n\n18) agentofchaos: Trade G2 R2 Agentofchaos\n\n19) Felix: Build G2 Felix\n\n20) agentofchaos: Move Y1 Agentofchaos Doombridge\n\n21) Felix: Build G3 Opus\n\n22) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y1 Doombridge\nBuild R1 Agentofchaos\nBuild G3 Agentofchaos\n\n23) Felix: Move Y2 Felix Opus\n\n24) agentofchaos: Discover R2 Agentofchaos Y3 Yuggoth\n\n25) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Opus\nBuild Y3 Felix\n\n26) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y3 Agentofchaos\nBuild R1 Yuggoth\nBuild G3 Agentofchaos\n\n27) Felix: Trade G3 R3 Opus\n\n28) agentofchaos: Move G1 Doombridge Rim\n\n29) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Opus\nBuild R2 Opus\n\n30) agentofchaos: Sacrifice R1 Yuggoth\nAttack B1 Rim\n\n31) Felix: Move R3 Opus Doombridge\n\n32) agentofchaos: Sacrifice Y1 Doombridge Rim\nDiscover G2 Doombridge Y1 Agarzon\n\n33) Felix: Attack Y1 Doombridge\n\n34) agentofchaos: Move R1 Agentofchaos Doombridge\n\n35) Felix: Attack R1 Doombridge\n\tFelix: Your g2 has escaped a terrible fate! :P\n\tagentofchaos: for the time being anyway!\n\n36) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R2 Yuggoth Rim\nMove R2 Rim Doombridge\nCatastrophe Doombridge R\n\n37) Felix: Discover G2 Opus Y3 Edge\n\n38) agentofchaos: Trade B1 Y1 Rim\n\tFelix: Very nice!\n\n39) Felix: Build Y2 Opus\n\tagentofchaos: Thanks - a desperation move!\n\n40) agentofchaos: Trade G1 R1 Agentofchaos\n\n41) Felix: Sacrifice G3 Felix\nBuild G1 Opus\nBuild G3 Felix\nBuild R1 Opus\n\n42) agentofchaos: Discover G2 Agarzon B2 Ghost\n\n43) Felix: Move G2 Felix Rim\n\n44) agentofchaos: Discover G1 Rim B2 Lycan\n\n45) Felix: Sacrifice R1 Opus\nAttack Y1 Rim\n\n46) agentofchaos: Build Y1 Agentofchaos\n\n47) Felix: Move Y2 Opus Lycan\n\n48) agentofchaos: Sacrifice G1 Lycan\nBuild G1 Ghost\n\n49) Felix: Trade G1 B1 Opus\n\n50) agentofchaos: Build G1 Agentofchaos\n\n51) Felix: Sacrifice G2 Rim\nBuild G2 Felix\nBuild B1 Opus\n\n52) agentofchaos: Discover Y1 Agentofchaos B3 Shade\n\n53) Felix: Move B1 Opus Edge\n\n54) agentofchaos: Move R1 Agentofchaos Shade\n\n55) Felix: Build B3 Edge\n\n56) agentofchaos: Move R1 Shade Ghost\n\n57) Felix: Sacrifice Y3 Felix\nMove B3 Edge Agentofchaos\nMove G3 Opus Edge\nMove G3 Edge Agentofchaos\n\n\tagentofchaos: well played\n\tFelix: Thanks, you too! Good game!\n\nHomeworlds Online (SDG# 30597)\nStarted: 2016.11.7, Ended: 2017.1.21\nParticipants: ts52 (S), agentofchaos (N)\nWinner: ts52\n\n1) agentofchaos: Homeworld Y1 B2 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\tagentofchaos: Hi there, enjoy the game\n\n3) agentofchaos: Build G1 Agentofchaos\n\tts52: Thanks! You too!\n\n4) ts52: Build G1 Ts52\n\n5) agentofchaos: Discover G1 Agentofchaos Y3 Hymzoth\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) agentofchaos: Build G1 Agentofchaos\n\n8) ts52: Build G2 Ts52\n\n9) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Hymzoth\nBuild G2 Hymzoth\nBuild G3 Agentofchaos\n\n10) ts52: Build G3 Gonzo\n\n11) agentofchaos: Discover G2 Hymzoth B2 Abaddon\n\n12) ts52: Trade G1 Y1 Gonzo\n\n13) agentofchaos: Build G1 Hymzoth\n\n14) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Gonzo\nBuild Y2 Gonzo\n\n15) agentofchaos: Trade G2 Y2 Abaddon\n\n16) ts52: Trade G2 R2 Ts52\n\n17) agentofchaos: Trade G1 R1 Agentofchaos\n\n18) ts52: Discover Y2 Gonzo B3 Grover\n\n19) agentofchaos: Build R1 Agentofchaos\n\n20) ts52: Build G1 Gonzo\n\n21) agentofchaos: Sacrifice G2 Hymzoth\nBuild Y2 Abaddon\nBuild G2 Agentofchaos\n\n22) ts52: Sacrifice G1 Gonzo\nBuild Y3 Grover\n\n23) agentofchaos: Move G1 Hymzoth Abaddon\n\n24) ts52: Build G1 Gonzo\n\n25) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Abaddon\nBuild G2 Hymzoth\nBuild G3 Agentofchaos\n\n26) ts52: Trade Y3 R3 Grover\n\n27) agentofchaos: Trade G3 Y3 Agentofchaos\n\n28) ts52: Discover Y1 Gonzo G3 Kermit\n\n29) agentofchaos: Trade R1 B1 Agentofchaos\n\n30) ts52: Move G1 Gonzo Grover\n\n31) agentofchaos: Build B1 Agentofchaos\n\n32) ts52: Move R3 Grover Abaddon\n\n33) agentofchaos: Sacrifice Y2 Abaddon\nMove G1 Abaddon Ts52\nMove G2 Abaddon Ts52\n\n34) ts52: Attack G2 Ts52\n\n35) agentofchaos: Sacrifice Y2 Abaddon\nMove G1 Hymzoth Abaddon\nMove G1 Abaddon Ts52\nCatastrophe Ts52 G\n\n36) ts52: Move G3 Gonzo Ts52\n\n37) agentofchaos: Discover B1 Agentofchaos G3 Grimvale\n\n38) ts52: Build G1 Ts52\n\n39) agentofchaos: Build B3 Grimvale\n\n40) ts52: Sacrifice G3 Ts52\nBuild G1 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n41) agentofchaos: Build B3 Grimvale\n\n42) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Grover\nBuild Y2 Kermit\n\n43) agentofchaos: Build R1 Agentofchaos\n\n44) ts52: Move Y2 Grover Abaddon\n\n45) agentofchaos: Trade B3 R3 Grimvale\n\n46) ts52: Sacrifice Y2 Abaddon\nMove Y2 Grover Agentofchaos\nMove Y1 Kermit Agentofchaos\nCatastrophe Agentofchaos Y\n\n47) agentofchaos: Build B3 Agentofchaos\n\n48) ts52: Move Y1 Gonzo Grover\n\n49) agentofchaos: Trade B3 Y3 Agentofchaos\n\n50) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Grover\nBuild Y1 Kermit\n\n\tagentofchaos: good game, well played\n\tts52: Good game. Thanks. I look forward to our next one.\n\tDraw5PlayAll: Why resign?\n\nHomeworlds Online (SDG# 30623)\nVariants: "Hard time"\nStarted: 2016.11.7, Ended: 2016.11.10\nParticipants: agentofchaos (S), mxpf (N)\nWinner: agentofchaos\n\n\tDraw5PlayAll: Your opponent has not signed on in over a month!\n\nHomeworlds Online (SDG# 30658)\nStarted: 2016.11.7, Ended: 2017.2.8\nParticipants: GalateanGemmate (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\tGalateanGemmate: Hello! I might be a beginner? So far I've only played against people I've taught how to play, so I've no idea how good I am. Also, good luck!\n\tts52: No problem. I'm always happy to play with new players. Have a good game!\n\n2) GalateanGemmate: Homeworld B3 Y2 G3\n\n3) ts52: Build G1 Ts52\n\n4) GalateanGemmate: Build G1 Galateangemmate\n\n5) ts52: Trade G1 B1 Ts52\n\n6) GalateanGemmate: Trade G1 Y1 Galateangemmate\n\n7) ts52: Build B1 Ts52\n\n8) GalateanGemmate: Build G1 Galateangemmate\n\n9) ts52: Discover B1 Ts52 G2 Kermit\n\n10) GalateanGemmate: Trade G3 B3 Galateangemmate\n\n11) ts52: Build B2 Kermit\n\n12) GalateanGemmate: Build B2 Galateangemmate\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) GalateanGemmate: Discover B2 Galateangemmate G1 Greenmachine\n\n15) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B2 Kermit\nBuild B3 Ts52\n\n16) GalateanGemmate: Sacrifice Y1 Galateangemmate\nMove B2 Greenmachine Kermit\nCatastrophe Kermit Blue\n\n17) ts52: Trade B3 G3 Ts52\n\n18) GalateanGemmate: Build B1 Galateangemmate\n\n19) ts52: Build B2 Ts52\n\n20) GalateanGemmate: Discover B1 Galateangemmate G1 Morning\n\n21) ts52: Move B2 Ts52 Kermit\n\n22) GalateanGemmate: Build B2 Morning\n\n23) ts52: Build B2 Kermit\n\n24) GalateanGemmate: Trade B2 Y2 Morning\n\n25) ts52: Discover B1 Ts52 G2 Robin\n\n\nHomeworlds Online (SDG# 30672)\nStarted: 2016.11.8, Ended: 2016.11.11\nParticipants: Joe_Hill (S), ratpfink (N)\nWinner: ratpfink\n\n1) ratpfink: Homeworld G1 B3 Y3\n\n2) Joe_Hill: Homeworld B2 Y1 G3\n\n3) ratpfink: Build Y1 Ratpfink\n\n4) Joe_Hill: Build G1 Joe_hill\n\n5) ratpfink: Build Y1 Ratpfink\n\n6) Joe_Hill: Build G1 Joe_hill\n\n7) ratpfink: Trade Y3 G3 Ratpfink\n\n8) Joe_Hill: Trade G1 B1 Joe_hill\n\n9) ratpfink: Discover Y1 Ratpfink G2 Lexi\n\n10) Joe_Hill: Build G1 Joe_hill\n\n11) ratpfink: Build Y2 Lexi\n\tJoe_Hill: I still don't really understand how far away we from each other. \n\n12) Joe_Hill: Discover G1 Joe_hill Y3 Ta\n\n13) ratpfink: Trade Y1 B1 Ratpfink\n\tratpfink: You can move between systems of different types of stars. That's why my ship could move from ratpfink system to lexi system. It's a (1,3) to a 2\n\n14) Joe_Hill: Build G2 Ta\n\n15) ratpfink: Build G2 Ratpfink\n\n16) Joe_Hill: Build G3 Ta\n\n17) ratpfink: Sacrifice Y2 Lexi\nMove G2 Ratpfink Lexi\nMove G2 Lexi Ta\nCatastrophe Ta Green\n\n18) Joe_Hill: Build G1 Joe_hill\n\tJoe_Hill: strange\n\n19) ratpfink: Build G2 Ratpfink\n\n20) Joe_Hill: Discover G1 Joe_hill B3 Tab\n\tratpfink: That was fun!\n\tDraw5PlayAll: JoeHill (1,2) => any 3 => any 2 => ratpfink (1,3).\r\nAs of now a 1-system is not connected to either side.\n\tDraw5PlayAll: If you sac a Y3 (for 3 movements) you can send a ship from one homeworld to the other.\r\n\r\nAlso note if on earth of the stars gets blown up the connections are altered.\n\tJoe_Hill: Right, I understood all that, but thank you. I guess I was just incorrectly thinking of distance as linear instead of the way it is. \n\tJoe_Hill: Have to shake off the squares of the chess board.\n\tJoe_Hill: Mentally shake them off.\n\n21) ratpfink: Build G2 Ratpfink\n\n22) Joe_Hill: Trade G1 Y1 Tab\n\n23) ratpfink: Trade G3 Y3 Ratpfink\n\n24) Joe_Hill: Move G1 Joe_hill Tab\n\n25) ratpfink: Build Y2 Ratpfink\n\n26) Joe_Hill: Build Y2 Tab\n\n27) ratpfink: Trade Y3 R3 Ratpfink\n\n28) Joe_Hill: Discover Y1 Tab B2 Cab\n\n29) ratpfink: Move R3 Ratpfink Cab\n\n30) Joe_Hill: Trade Y2 R2 Tab\n\n31) ratpfink: Attack Y1 Cab\n\n32) Joe_Hill: Build B1 Joe_hill\n\tJoe_Hill: Not sure that was wise. TBH I don't know what the hell I'm doing.\n\n33) ratpfink: Sacrifice Y2 Ratpfink\nMove R3 Cab Tab\nMove R3 Tab Joe_hill\n\n34) Joe_Hill: Build B2 Joe_hill\n\n35) ratpfink: Attack B2 Joe_hill\nCatastrophe Joe_hill B\n\n\tJoe_Hill: oh for Christ's sake.\n\tJoe_Hill: I forgot about the star....\n\tJoe_Hill: Rematch?\n\nHomeworlds Online (SDG# 30663)\nVariants: "Unrated"\nStarted: 2016.11.9, Ended: 2017.1.13\nParticipants: zeder (S), agentofchaos (N)\nWinner: zeder\n\n1) agentofchaos: Homeworld B1 Y2 G3\n\n2) zeder: Homeworld R2 G3 B3\n\tagentofchaos: Hi, enjoy the game\n\n3) agentofchaos: Build G1 Agentofchaos\n\n4) zeder: Build B1 Zeder\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) zeder: Build B1 Zeder\n\n7) agentofchaos: Discover G1 Agentofchaos Y3 Xunzi\n\n8) zeder: Trade B3 G3 Zeder\n\n9) agentofchaos: Trade G1 Y1 Agentofchaos\n\n10) zeder: Build B2 Zeder\n\n11) agentofchaos: Build G1 Agentofchaos\n\n12) zeder: Trade B2 Y2 Zeder\n\n13) agentofchaos: Trade G3 B3 Agentofchaos\n\n14) zeder: Discover B1 Zeder G1 Flip\n\n15) agentofchaos: Build G2 Xunzi\n\n16) zeder: Build G2 Zeder\n\n17) agentofchaos: Build G2 Agentofchaos\n\n18) zeder: Move G2 Zeder Flip\n\n19) agentofchaos: Trade G2 Y2 Agentofchaos\n\n20) zeder: Build B2 Flip\n\n21) agentofchaos: Trade Y1 R1 Agentofchaos\n\n22) zeder: Build B2 Flip\n\n23) agentofchaos: Move G1 Xunzi Flip\n\n24) zeder: Trade G2 R2 Flip\n\n25) agentofchaos: Sacrifice G2 Xunzi\nBuild G2 Flip\nBuild G2 Flip\nCatastrophe Flip G\n\n26) zeder: Build G1 Zeder\n\n27) agentofchaos: Discover G1 Agentofchaos Y3 Solvol\n\tzeder: Reset button!\n\n28) zeder: Trade G1 Y1 Zeder\n\n29) agentofchaos: Trade B3 G3 Agentofchaos\n\tagentofchaos: I thought it was time for a little reset!\n\n30) zeder: Discover Y2 Zeder G1 Cribbage\n\n31) agentofchaos: Build G1 Agentofchaos\n\n32) zeder: Move B1 Zeder Cribbage\n\n33) agentofchaos: Build G2 Solvol\n\n34) zeder: Trade Y2 G2 Cribbage\n\n35) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Agentofchaos\nBuild G3 Agentofchaos\nBuild Y1 Agentofchaos\n\n36) zeder: Build Y1 Zeder\n\n37) agentofchaos: Trade Y1 B1 Agentofchaos\n\n38) zeder: Build B2 Cribbage\n\n39) agentofchaos: Sacrifice G3 Agentofchaos\nBuild B2 Agentofchaos\nBuild R1 Agentofchaos\nBuild G3 Agentofchaos\n\n40) zeder: Trade B2 Y2 Cribbage\n\n41) agentofchaos: Sacrifice Y2 Agentofchaos\nDiscover G2 Agentofchaos Y3 Abysshome\nMove B2 Agentofchaos Abysshome\n\n42) zeder: Build B2 Cribbage\n\n43) agentofchaos: Trade B2 Y2 Abysshome\n\n44) zeder: Sacrifice G2 Cribbage\nBuild Y1 Zeder\nBuild Y3 Cribbage\n\n45) agentofchaos: Build G2 Abysshome\n\n46) zeder: Discover B2 Cribbage R3 Mahjong\n\n47) agentofchaos: Move B1 Agentofchaos Solvol\n\n48) zeder: Build B2 Cribbage\n\n49) agentofchaos: Discover G2 Abysshome R1 Gloam\n\n50) zeder: Trade Y3 R3 Cribbage\n\n51) agentofchaos: Move Y2 Abysshome Gloam\n\n52) zeder: Build Y3 Cribbage\n\n53) agentofchaos: Move G1 Solvol Gloam\n\n54) zeder: Move R3 Cribbage Solvol\n\n55) agentofchaos: S Y2 Gloam\nMove G1 Gloam Zeder\nMove G2 Gloam Zeder\n\n56) zeder: Sacrifice B1 Cribbage\nTrade G3 R3 Zeder\n\n57) agentofchaos: Sacrifice G2 Solvol\nBuild G2 Zeder\nBuild G3 Abysshome\nCatastrophe Zeder G\n\n58) zeder: Build Y2 Cribbage\n\n59) agentofchaos: Sacrifice B1 Solvol\nTrade G2 B2 Abysshome\n\n60) zeder: Build B1 Cribbage\n\n61) agentofchaos: Move R1 Agentofchaos Abysshome\n\n62) zeder: Trade B2 G2 Cribbage\n\n63) agentofchaos: B R1 Abysshome\n\n64) zeder: Sacrifice B2 Mahjong\nTrade R3 G3 Zeder\nTrade Y3 R3 Cribbage\n\n65) agentofchaos: D R1 Agentofchaos Y3 Heartchasm\n\n66) zeder: Sacrifice Y2 Cribbage\nMove G3 Zeder Solvol\nMove G3 Solvol Agentofchaos\n\n67) agentofchaos: Sacrifice R1 Abysshome\nAttack G3 Agentofchaos\n\n68) zeder: Sacrifice Y2 Cribbage\nMove G2 Cribbage Solvol\nMove G2 Solvol Agentofchaos\nCatastrophe Agentofchaos G\n\n\tagentofchaos: well done, good game\n\tzeder: Thank you for this games!\n\nHomeworlds Online (SDG# 30657)\nStarted: 2016.11.9, Ended: 2017.1.16\nParticipants: Felix (S), zeder (N)\nWinner: Felix\n\n1) zeder: Homeworld R2 G3 B3\n\n2) Felix: Homeworld R1 Y3 G3 *\n\n3) zeder: Build B1 Zeder\n\tDraw5PlayAll: !!\n\n4) Felix: Build G1 Felix\n\n5) zeder: Trade B1 G1 Zeder\n\n6) Felix: Discover G1 Felix B2 Signal\n\n7) zeder: Build B1 Zeder\n\n8) Felix: Build G1 Signal\n\n9) zeder: Build G2 Zeder\n\n10) Felix: Build G2 Signal\n\n11) zeder: Trade G1 Y1 Zeder\n\n12) Felix: Trade G2 Y2 Signal\n\n13) zeder: Discover G2 Zeder Y1 Noise\n\n14) Felix: Trade G1 B1 Signal\n\n15) zeder: Trade B1 G1 Zeder\n\n16) Felix: Move B1 Signal Felix\n\n17) zeder: Build B1 Zeder\n\n18) Felix: Build G1 Felix\n\n19) zeder: Build G2 Noise\n\n20) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G3 Felix\nBuild G3 Signal\n\n21) zeder: Discover G2 Noise Y2 Drone\n\n22) Felix: Discover G2 Felix B2 Interference\n\n23) zeder: Trade G1 R1 Zeder\n\n24) Felix: Trade G3 R3 Signal\n\n25) zeder: Trade B3 G3 Zeder\n\n26) Felix: Build G1 Interference\n\n27) zeder: Build B1 Zeder\n\tzeder: I feel like am being chokes!\n\n28) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Felix\nBuild B3 Felix\n\tFelix: Sorry, I hope you can breathe soon! :)\n\n29) zeder: Sacrifice G3 Zeder\nBuild G3 Noise\nBuild B3 Zeder\nPass\n\n30) Felix: Discover B3 Felix Y2 Broadcast\n\n31) zeder: Move B1 Zeder Noise\n\n32) Felix: Build B3 Felix\n\n33) zeder: Sacrifice G3 Noise\nBuild Y1 Zeder\nBuild Y3 Zeder\nBuild G3 Noise\n\n34) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y3 Signal\nBuild R1 Signal\n\n35) zeder: Sacrifice Y1 Zeder\nMove R1 Zeder Noise\n\tzeder: I am never see this many ships in play at same time!\n\n36) Felix: Discover R3 Signal Y1 Edge\n\n37) zeder: Build R2 Noise\n\tFelix: It is quite a few! It becomes very difficult to keep track when there are this many.\n\n38) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R2 Signal\nBuild R3 Edge\n\n39) zeder: Move B3 Zeder Noise\n\n40) Felix: Move R3 Edge Interference\n\n41) zeder: Move B1 Noise Drone\n\n42) Felix: Move B2 Felix Signal\n\n43) zeder: Discover B1 Drone R3 Groo\n\n44) Felix: Move B3 Felix Drone\n\n45) zeder: Move B3 Noise Zeder\n\n46) Felix: Sacrifice R1 Signal\nAttack G2 Drone\n\n47) zeder: Sacrifice Y3 Zeder\nMove B1 Groo Signal\nMove B1 Zeder Noise\nMove B1 Noise Signal\nCatastrophe Signal B\n\n48) Felix: Build G1 Drone\n\n49) zeder: Sacrifice G3 Noise\nBuild Y2 Zeder\nBuild Y3 Zeder\nBuild G3 Noise\n\tFelix: Nice!\n\n50) Felix: Sacrifice G3 Felix\nBuild B1 Drone\nBuild R1 Edge\nBuild G3 Felix\n\tzeder: I had to simplify! :)\n\n51) zeder: Discover G2 Noise B2 Oline\n\n52) Felix: Trade G3 R3 Felix\n\n53) zeder: Move R1 Noise Oline\n\n54) Felix: Build G3 Felix\n\n55) zeder: Sacrifice Y3 Zeder\nMove R1 Oline Felix\nMove R2 Noise Drone\nMove R2 Drone Felix\nCatastrophe Felix R\n\n56) Felix: Sacrifice B3 Broadcast\nTrade R3 Y3 Interference\nTrade G2 Y2 Interference\nTrade B3 Y3 Drone\n\tFelix: Oh I say. Well done.\n\n57) zeder: Build G2 Oline\n\n58) Felix: Trade G3 R3 Felix\n\tDraw5PlayAll: DoY attack!\r\n\r\nRare to see a sac of a B2 or B3.\n\n59) zeder: Trade G2 R2 Oline\n\n60) Felix: Build R1 Felix\n\n61) zeder: Build R1 Oline\n\n62) Felix: Sacrifice Y2 Interference\nMove R1 Edge Oline\nMove R1 Felix Oline\nCatastrophe Oline Red\n\n63) zeder: Trade G2 R2 Oline\n\n64) Felix: Build Y2 Interference\n\n65) zeder: Move G3 Noise Oline\n\n66) Felix: Discover G2 Drone Y1 Rim\n\n67) zeder: Build R1 Oline\n\n68) Felix: Build G2 Interference\n\tFelix: Good defensive move!\n\n69) zeder: Build R1 Oline\n\n70) Felix: Sacrifice G2 Interference\nBuild B1 Drone\nBuild B2 Felix\n\n71) zeder: Sacrifice Y2 Zeder\nMove R1 Oline Felix\nMove R2 Oline Felix\n\n72) Felix: Sacrifice G2 Rim\nBuild B3 Drone\nBuild B3 Felix\n\n73) zeder: Attack B2 Felix\n\n74) Felix: Sacrifice R3 Felix\nAttack R2 Felix\nAttack R1 Felix\nAttack B2 Felix\n\n75) zeder: Build G2 Oline\n\n76) Felix: Sacrifice Y3 Interference\nMove B3 Drone Edge\nMove B3 Edge Zeder\nMove R3 Edge Zeder\n\n\tzeder: Sch***e!!! Thanks you for an great game!\n\tFelix: Good game, thanks for playing!\n\nHomeworlds Online (SDG# 30686)\nVariants: "Hard time"\nStarted: 2016.11.10, Ended: 2016.11.10\nParticipants: agentofchaos (S), Aristos (N)\nWinner: agentofchaos\n\n1) Aristos: Homeworld Y2 B3 G3\n\n2) agentofchaos: Homeworld Y1 B2 G3\n\n3) Aristos: Build G1 Aristos\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Aristos: Discover G1 Aristos B1 Spark\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Aristos: Build G1 Aristos\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) Aristos: Trade G3 Y3 Aristos\n\n\tAristos: Completely stupid on opening. My brain is still addled by election. Sorry to waste your time. \n\nHomeworlds Online (SDG# 30689)\nStarted: 2016.11.10, Ended: 2016.12.2\nParticipants: zeder (S), Joe_Hill (N)\nWinner: zeder\n\n1) Joe_Hill: Homeworld B3 Y1 G3\n\n2) zeder: Homeworld B2 G3 Y3\n\n3) Joe_Hill: Build G1 Joe_hill\n\tzeder: I am also beginner!\n\tJoe_Hill: Cool. This is only my second game.\n\n4) zeder: Build Y1 Zeder\n\n5) Joe_Hill: Build G1 Joe_hill\n\n6) zeder: Build Y1 Zeder\n\n7) Joe_Hill: Discover G1 Joe_hill B2 Car\n\n8) zeder: Discover Y1 Zeder B1 Doop\n\n9) Joe_Hill: Build G1 Car\n\n10) zeder: Trade Y3 G3 Zeder\n\n11) Joe_Hill: Build G2 Joe_hill\n\n12) zeder: Build G2 Zeder\n\n13) Joe_Hill: Trade G2 Y2 Joe_hill\n\n14) zeder: Move G2 Zeder Doop\n\n15) Joe_Hill: Build Y2 Joe_hill\n\n16) zeder: Trade G2 Y2 Doop\n\n17) Joe_Hill: Move Y2 Joe_hill Car\n\n18) zeder: Build Y3 Zeder\n\n19) Joe_Hill: Build Y3 Car\n\n20) zeder: Discover Y1 Doop G2 Gloop\n\n21) Joe_Hill: Trade Y3 R3 Car\n\n22) zeder: Trade Y1 R1 Zeder\n\n23) Joe_Hill: Move R3 Car Doop\n\n24) zeder: Sacrifice Y3 Zeder\nMove Y2 Doop Gloop\nMove Y1 Gloop Joe_hill\nMove Y2 Gloop Joe_hill\nCatastrophe Joe_hill Y\n\n25) Joe_Hill: Move Y2 Car Doop\n\n26) zeder: Build R1 Zeder\n\tJoe_Hill: ouch!\n\n27) Joe_Hill: Trade G1 Y1 Joe_hill\n\n28) zeder: Trade R1 Y1 Zeder\n\n29) Joe_Hill: Build G1 Joe_hill\n\n30) zeder: Build R1 Zeder\n\n31) Joe_Hill: Build G2 Car\n\n32) zeder: Discover R1 Zeder Y1 Mancala\n\n33) Joe_Hill: Trade G1 R1 Joe_hill\n\n34) zeder: Build R2 Zeder\n\n35) Joe_Hill: Trade G2 Y2 Car\n\n36) zeder: Move R2 Zeder Mancala\n\n37) Joe_Hill: Build R2 Joe_hill\n\n38) zeder: Trade R1 B1 Zeder\n\n39) Joe_Hill: Move R3 Doop Zeder\n\n40) zeder: Sacrifice R1 Mancala\nAttack R3 Zeder\n\n41) Joe_Hill: Move G1 Car Doop\n\n42) zeder: Move R3 Zeder Doop\n\n43) Joe_Hill: Build G1 Doop\n\tJoe_Hill: Shit. I didn't realize you could do that.\r\n\n\tzeder: I didn't think of it until I needed it and wow did I needs it!\n\tDraw5PlayAll: Hey. Don't curse.\n\n44) zeder: Attack Y2 Doop\n\n45) Joe_Hill: Sacrifice Y2 Car\nMove G1 Doop Zeder\nMove G1 Doop Zeder\nCatastrophe Zeder G\n\n46) zeder: Move R3 Doop Zeder\n\n47) Joe_Hill: Build G1 Car\n\n48) zeder: Move R2 Mancala Car\n\n49) Joe_Hill: Move R2 Joe_hill Doop\n\n50) zeder: Discover Y2 Doop R3 Bowie\n\n51) Joe_Hill: Trade G1 Y1 Car\n\n52) zeder: Attack G1 Car\n\n53) Joe_Hill: Move Y1 Car Doop\n\n54) zeder: Trade B1 G1 Zeder\n\n55) Joe_Hill: Build G1 Joe_hill\n\n56) zeder: Build G2 Car\n\n57) Joe_Hill: Move G1 Joe_hill Doop\n\n58) zeder: Build Y2 Zeder\n\n\nHomeworlds Online (SDG# 30697)\nStarted: 2016.11.11, Ended: 2016.11.21\nParticipants: ratpfink (S), Joe_Hill (N)\nWinner: ratpfink\n\n1) Joe_Hill: Homeworld G2 Y1 B3\n\n2) ratpfink: Homeworld G3 B2 Y3\n\n3) Joe_Hill: Build B1 Joe_hill\n\n4) ratpfink: Build Y1 Ratpfink\n\tJoe_Hill: I think green opening star might be less than optimal...\n\tratpfink: Yeah, not sure. If you have any red in your opening homeworld system SDG yells at you about it.\n\n5) Joe_Hill: Build B1 Joe_hill\n\tJoe_Hill: I saw that on the wiki. System message for Noobs. \r\n\n\n6) ratpfink: Build Y1 Ratpfink\n\n7) Joe_Hill: Trade B1 G1 Joe_hill\n\tDraw5PlayAll: ...I use red stars in absolutely every game and I never got a yell...\n\n8) ratpfink: Build Y2 Ratpfink\n\tJoe_Hill: Draw 5, in your homeworld?\n\n9) Joe_Hill: Build G1 Joe_hill\n\tDraw5PlayAll: Yes. Mostly because I like to have a defense system to repel attacks, as well as develop yellow ships without fear of them dying.\n\n10) ratpfink: Trade Y2 B2 Ratpfink\n\n11) Joe_Hill: Discover G1 Joe_hill Y3 Bat\n\n12) ratpfink: Discover Y1 Ratpfink B1 Rolo\n\n13) Joe_Hill: Build G1 Joe_hill\n\n14) ratpfink: Move Y3 Ratpfink Rolo\n\n15) Joe_Hill: Build G2 Bat\n\n16) ratpfink: Trade Y3 R3 Rolo\n\n17) Joe_Hill: Trade B3 R3 Joe_hill\n\n18) ratpfink: Move R3 Rolo Bat\n\n19) Joe_Hill: Move G2 Bat Rolo\n\n20) ratpfink: Attack G1 Bat\n\n21) Joe_Hill: Trade G1 R1 Joe_hill\n\n22) ratpfink: Build Y2 Ratpfink\n\n23) Joe_Hill: T G2 R2 Rolo\n\n24) ratpfink: Trade B2 R2 Ratpfink\n\n25) Joe_Hill: Attack Y1 Rolo\n\n26) ratpfink: Move R3 Bat Rolo\n\n27) Joe_Hill: Move R2 Rolo Bat\n\n28) ratpfink: Move G1 Bat Rolo\n\n29) Joe_Hill: Move G1 Joe_hill Bat\n\n30) ratpfink: Attack Y1 Rolo\n\n31) Joe_Hill: Move R3 Joe_hill Bat\n\n32) ratpfink: Build R1 Rolo\n\n33) Joe_Hill: Build G1 Bat\n\n34) ratpfink: Build Y2 Rolo\n\n35) Joe_Hill: Move G1 Bat Joe_hill\n\n36) ratpfink: Build G2 Rolo\n\n37) Joe_Hill: Build B1 Joe_hill\n\n38) ratpfink: Build Y2 Ratpfink\n\n39) Joe_Hill: M B1 Joe_hill Bat\n\tJoe_Hill: This shit is a mess Karl.\n\n40) ratpfink: Sacrifice Y2 Ratpfink\nMove G2 Rolo Bat\nMove G2 Bat Joe_hill\n\n41) Joe_Hill: Build B2 Joe_hill\n\tJoe_Hill: I can't move at all.\n\tJoe_Hill: I can move. Obviously. Just not the way I need to.\n\n42) ratpfink: Build G2 Joe_hill\nCatastrophe Joe_hill G\n\n43) Joe_Hill: Trade B2 G2 Joe_hill\n\n44) ratpfink: Sacrifice Y2 Rolo\nMove R3 Rolo Bat\nMove R3 Bat Joe_hill\n\n45) Joe_Hill: Move R2 Bat Joe_hill\n\tJoe_Hill: Sweet jesus\n\n46) ratpfink: Attack G2 Joe_hill\n\n47) Joe_Hill: Move R3 Bat Joe_hill\nCatastrophe Joe_hill R\n\n48) ratpfink: Sacrifice Y2 Ratpfink\nMove R1 Rolo Bat\nMove R1 Bat Joe_hill\n\n\tJoe_Hill: pffffft\n\nHomeworlds Online (SDG# 30696)\nStarted: 2016.11.11, Ended: 2016.11.13\nParticipants: Joe_Hill (S), ratpfink (N)\nWinner: Joe_Hill\n\n1) ratpfink: Homeworld R1 G2 B3\n\n2) Joe_Hill: Homeworld B2 Y1 G3\n\n3) ratpfink: Build B1 Ratpfink\n\n4) Joe_Hill: Build G1 Joe_hill\n\n5) ratpfink: Build B1 Ratpfink\n\n6) Joe_Hill: Build G1 Joe_hill\n\n7) ratpfink: Build B1 Ratpfink\n\n8) Joe_Hill: Build G1 Joe_hill\nCatastrophe Ratpfink B\n\n\tJoe_Hill: LOL. I don't have to be in system to call a catastrophe.\n\tDraw5PlayAll: What is weirder is that your own base had 4 greens and nothing else.\n\tJoe_Hill: I was about to trade for something else when I saw the potential to test the rule. \n\tratpfink: We just didn't understand the rules...\n\tJoe_Hill: He'll we still don't! Lol\n\tJoe_Hill: Hell. Cell phone autocorrect\n\nHomeworlds Online (SDG# 30680)\nStarted: 2016.11.11, Ended: 2016.12.30\nParticipants: Felix (S), agents17 (N)\nWinner: Felix\n\n1) agents17: Homeworld R2 B1 G3\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) agents17: Build G1 Agents17\n\tFelix: Hey, welcome! First game?\n\n4) Felix: Build B1 Felix\n\n5) agents17: Build G1 Agents17\n\tagents17: Indeed, anything I ought to know?\n\n6) Felix: Trade B3 Y3 Felix\n\tFelix: If I think of anything, I'll let you know! So far, you're looking good. Swapping for a yellow soon would be wise, and then moving some ships out to create space so you can try to build up your armada as quickly as possible. Try to diversify your colors as quickly as possible so you have a nice balance across multiple systems. I like to not have more than 2 of the same color in a system for more than a turn if I can help it.\n\n7) agents17: Trade G1 Y1 Agents17\n\tFelix: I did a sneaky maneuver here at the start to prevent you from getting any of the small blues, so you won't be able to trade for them until you get a medium ship, unless you wanted to trade away your g3, which is not really recommended.\n\n8) Felix: Build B2 Felix\n\tDraw5PlayAll: It could have backfired!!\n\n9) agents17: Discover G1 Agents17 B3 Alpha\n\n10) Felix: Trade B2 G2 Felix\n\tagents17: Thanks for the advice. Also, is Draw5playAll watching?\n\tFelix: You're welcome! Yeah, I think anyone who wants to can watch any of the games, and he seems to like to stalk on other players more than most :)\r\n\r\n@Draw5 - It could only have backfired if I made a mistake, but I've done this maneuver a few times and it usually works out!\n\n11) agents17: Build G1 Agents17\n\tDraw5PlayAll: I selected the option to watch every game of I think 3 different games. If there is a chat message sometimes I reply.\n\n12) Felix: Build B2 Felix\n\n13) agents17: Build G1 Alpha\n\n14) Felix: Trade B2 R2 Felix\n\n15) agents17: Discover G1 Agents17 B3 Beta\n\n16) Felix: Build B2 Felix\n\tFelix: Good work spreading out a lot of greens in various systems. This gives you potential to take over most of the green pieces, and the ability to trade them for others\n\n17) agents17: Build G2 Agents17\n\n18) Felix: Discover G2 Felix B2 Omega\n\n19) agents17: Discover G2 Agents17 B3 Gamma\n\n20) Felix: Build Y1 Felix\n\n21) agents17: Build Y1 Agents17\n\n22) Felix: Trade Y3 G3 Felix\n\tDraw5PlayAll: So many oceanic planets.\n\tFelix: Pretty smart, actually. agents17 soaked up all the blue larges before I could get them.\n\n23) agents17: Move Y1 Agents17 Alpha\n\n24) Felix: Build G2 Omega\n\n25) agents17: Build Y2 Alpha\n\n26) Felix: Move B2 Felix Omega\n\n27) agents17: Trade Y2 B2 Alpha\n\n28) Felix: Build Y2 Felix\n\n\nHomeworlds Online (SDG# 30715)\nStarted: 2016.11.14, Ended: 2016.11.21\nParticipants: ratpfink (S), Joe_Hill (N)\nWinner: ratpfink\n\n1) Joe_Hill: H B2 Y1 G3\n\n2) ratpfink: Homeworld R3 B2 G3\n\n3) Joe_Hill: Build G1 Joe_hill\n\n4) ratpfink: Build G1 Ratpfink\n\n5) Joe_Hill: Build G1 Joe_hill\n\n6) ratpfink: Build G2 Ratpfink\n\n7) Joe_Hill: T G1 B1 Joe_hill\n\n8) ratpfink: Trade G1 B1 Ratpfink\n\n9) Joe_Hill: Build B1 Joe_hill\n\n10) ratpfink: Build B2 Ratpfink\n\n11) Joe_Hill: Trade B1 Y1 Joe_hill\n\n12) ratpfink: Trade B2 Y2 Ratpfink\n\n13) Joe_Hill: Build Y1 Joe_hill\n\n14) ratpfink: Build Y2 Ratpfink\n\n15) Joe_Hill: Discover Y1 Joe_hill R3 Fat\n\n16) ratpfink: Discover Y2 Ratpfink G1 Eat\n\n17) Joe_Hill: Move G1 Joe_hill Fat\n\n18) ratpfink: Build Y2 Eat\n\n19) Joe_Hill: B Y3 Joe_hill\n\n20) ratpfink: Sacrifice Y2 Eat\nMove Y2 Eat Fat\nMove Y2 Fat Joe_hill\nCatastrophe Joe_hill Y\n\n21) Joe_Hill: Build G1 Joe_hill\n\n22) ratpfink: Trade G3 R3 Ratpfink\n\tratpfink: boom\n\tJoe_Hill: blergh\n\n23) Joe_Hill: Trade G1 Y1 Joe_hill\n\tJoe_Hill: This is the problem I have with online gaming. I tend to not pay as close of attention as I should. \n\n24) ratpfink: Discover R3 Ratpfink Y1 Deathstar\n\n25) Joe_Hill: B B1 Joe_hill\n\n26) ratpfink: Move R3 Deathstar Joe_hill\n\n27) Joe_Hill: Discover B1 Joe_hill Y1 Bad\n\n28) ratpfink: Attack G3 Joe_hill\n\tJoe_Hill: hmm. what now.\n\n29) Joe_Hill: Move B1 Joe_hill Bad\n\n30) ratpfink: Attack Y1 Joe_hill\n\n\nHomeworlds Online (SDG# 30290)\nVariants: "Hard time"\nStarted: 2016.11.18, Ended: 2017.1.2\nParticipants: Felix (S), agentofchaos (N), Draw5PlayAll (E)\nWinner: Draw5PlayAll\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n2) Draw5PlayAll: Homeworld R1 B3 G3\n\tagentofchaos: Enjoy the game, everyone\n\tDraw5PlayAll: ?\n\n3) Felix: Homeworld Y2 B3 G3\n\tFelix: Thanks! Have fun!\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Felix: Build G1 Felix\n\n7) agentofchaos: Trade G1 Y1 Agentofchaos\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n9) Felix: Trade G1 Y1 Felix\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) Felix: Build G1 Felix\n\n13) agentofchaos: Trade G1 B1 Agentofchaos\n\n14) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n15) Felix: Trade G1 B1 Felix\n\n16) agentofchaos: Build B2 Agentofchaos\n\n17) Draw5PlayAll: Build B2 Draw5playall\n\n18) Felix: Build B2 Felix\n\n19) agentofchaos: Build G1 Agentofchaos\n\tFelix: Trading assets seem to be in high demand, so we are investing as much as we can in them...\n\tDraw5PlayAll: This is 2/1/5 but some players have 5d:12h etc\n\n20) Draw5PlayAll: Trade B2 R2 Draw5playall\n\tagentofchaos: That is odd about the time\n\n21) Felix: Trade B2 R2 Felix\n\tFelix: I think it depends on how quickly you take your turn. You get time added each time you move but I think it took me a couple days to make a move so I have less time.\n\n22) agentofchaos: Trade B2 R2 Agentofchaos\n\n23) Draw5PlayAll: Build B2 Draw5playall\n\tDraw5PlayAll: Copycats...\n\n24) Felix: Discover B1 Felix G1 Grinch\n\n25) agentofchaos: Build B2 Agentofchaos\n\n26) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n27) Felix: Build B2 Grinch\n\n28) agentofchaos: Discover B2 Agentofchaos Y3 Oolon\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\n30) Felix: Trade B2 Y2 Grinch\n\n31) agentofchaos: Sacrifice G1 Agentofchaos\nBuild B2 Oolon\n\n32) Draw5PlayAll: Move R2 Draw5playall G2\n\n33) Felix: Build G1 Felix\n\n34) agentofchaos: Move R2 Agentofchaos Oolon\n\n35) Draw5PlayAll: Build R1 G2\n\n36) Felix: Build R1 Felix\n\n37) agentofchaos: Trade B2 G2 Oolon\n\n38) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n39) Felix: Move R1 Felix Grinch\n\n40) agentofchaos: Trade B1 R1 Agentofchaos\n\n41) Draw5PlayAll: Trade R1 Y1 G2\n\n42) Felix: Sacrifice G3 Felix\nBuild R1 Felix\nBuild R3 Felix\nBuild R3 Grinch\n\n43) agentofchaos: Sacrifice G2 Oolon\nBuild Y2 Agentofchaos\nBuild R3 Oolon\n\n44) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G2\nBuild R3 G2\nBuild Y3 Draw5playall\n\tDraw5PlayAll: This from some one who is not a "go with the crowd" type. (My next move)\n\n45) Felix: Trade R3 G3 Felix\n\n46) agentofchaos: Trade R2 G2 Oolon\n\n47) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n48) Felix: Build Y3 Grinch\n\n49) agentofchaos: Build B1 Oolon\n\n50) Draw5PlayAll: Build Y3 Draw5playall\n\n51) Felix: Move Y3 Grinch B2\n\n52) agentofchaos: Build Y3 Agentofchaos\n\n53) Draw5PlayAll: Discover Y1 G2 G1 G1\n\n54) Felix: Sacrifice R1 Felix\nAttack G1E B2\n\n55) agentofchaos: Discover Y3 Agentofchaos R3 Crashzone\n\n56) Draw5PlayAll: Build G2 Draw5playall\n\n57) Felix: Sacrifice G3 Felix\nBuild G2 B2\nBuild G3 Felix\nBuild G3 B2\n\n58) agentofchaos: Move G2 Oolon B2\nCatastrophe B2 G\n\n59) Draw5PlayAll: Discover G2 Draw5playall R2 R2\n\n60) Felix: Sacrifice Y2 Grinch\nMove R3 Grinch Oolon\nMove Y3 B2 Oolon\n\tDraw5PlayAll: Duj paw DeSDu' yuQmey SuvwI'.\n\n61) agentofchaos: Sacrifice Y2 Agentofchaos\nMove R3 Oolon Grinch\nMove B2 Oolon Grinch\n\tFelix: What is this black tongue we hear echoing across the cosmos?\n\tDraw5PlayAll: Hoch neH ghob SoH SoH!\n\n62) Draw5PlayAll: Build Y2 G1\n\n63) Felix: S R1 Grinch\nA B1N Oolon\n\n64) Draw5PlayAll: Sacrifice Y2 G2\nMove Y3 Draw5playall R2\nMove Y3 R2 Grinch\n\n65) Felix: Move Y3 Oolon Agentofchaos\n\tDraw5PlayAll: *AGAIN*???\n\n66) Draw5PlayAll: Sacrifice R2 G2\nAttack B1S Grinch\nAttack R3N Grinch\n\n67) Felix: Attack G3N Agentofchaos\n\tFelix: Bummer :/\n\n68) Draw5PlayAll: Build Y2 Draw5playall\n\n69) Felix: Move G3 Agentofchaos Crashzone\n\n70) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 G1 Felix\nMove Y2 G1 Felix\nCatastrophe Felix Yellow\n\n71) Felix: Sacrifice G1 Felix\nBuild B2 Oolon\n\n72) Draw5PlayAll: Move B1 Grinch Felix\n\n73) Felix: Attack B1E Felix\n\tFelix: Nice one!\n\tDraw5PlayAll: Nice try.\n\n74) Draw5PlayAll: Sacrifice Y3 Grinch\nMove B1 Draw5playall R2\nMove B1 R2 Felix\nMove B2 G2 Felix\nCatastrophe Felix Blue\n\n\tDraw5PlayAll: Good game! Even though aoc ruined it a bit...\n\tagentofchaos: Sorry about that, was very busy over the last few days and lost track of my time :(\n\nHomeworlds Online (SDG# 30712)\nStarted: 2016.11.18, Ended: 2016.11.29\nParticipants: agentofchaos (S), Joe_Hill (N)\nWinner: agentofchaos\n\n1) Joe_Hill: Homeworld B2 Y1 G3\n\n2) agentofchaos: Homeworld R1 B3 G3\n\n3) Joe_Hill: B G1 Joe_hill\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Joe_Hill: Trade G1 Y1 Joe_hill\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) Joe_Hill: B G1 Joe_hill\n\n8) agentofchaos: Build Y2 Agentofchaos\n\n9) Joe_Hill: B Y2 Joe_hill\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) Joe_Hill: D Y2 Joe_hill G3 Flat\n\n12) agentofchaos: Trade Y1 G1 Agentofchaos\n\n13) Joe_Hill: Trade G1 B1 Joe_hill\n\n14) agentofchaos: Discover Y2 Agentofchaos G2 Omegahedron\n\n15) Joe_Hill: Build G1 Joe_hill\n\n16) agentofchaos: Build Y1 Agentofchaos\n\n17) Joe_Hill: Build Y3 Flat\n\n18) agentofchaos: Build Y3 Omegahedron\n\n19) Joe_Hill: Move B1 Joe_hill Flat\n\n20) agentofchaos: Trade G1 B1 Agentofchaos\n\n21) Joe_Hill: Trade Y3 R3 Flat\n\n22) agentofchaos: Sacrifice B1 Agentofchaos\nTrade Y3 R3 Omegahedron\n\n23) Joe_Hill: Build Y3 Flat\n\n24) agentofchaos: Build Y3 Omegahedron\n\n25) Joe_Hill: Discover Y3 Flat B2 Stat\n\n26) agentofchaos: Discover Y3 Omegahedron R3 Satrap\n\n27) Joe_Hill: Move R3 Flat Stat\n\n28) agentofchaos: Build Y3 Omegahedron\n\n29) Joe_Hill: Move Y2 Flat Stat\n\n30) agentofchaos: Move Y2 Omegahedron Flat\n\n31) Joe_Hill: Move G1 Joe_hill Flat\n\n32) agentofchaos: Move R3 Omegahedron Flat\n\n33) Joe_Hill: Build G1 Joe_hill\n\n34) agentofchaos: Attack G1 Flat\n\n35) Joe_Hill: Trade G1 R1 Joe_hill\n\n36) agentofchaos: Attack B1 Flat\n\n37) Joe_Hill: Build G1 Joe_hill\n\n38) agentofchaos: Sacrifice Y2 Agentofchaos\nMove Y2 Flat Joe_hill\nMove Y3 Satrap Joe_hill\nCatastrophe Joe_hill Y\n\n39) Joe_Hill: Trade G3 R3 Joe_hill\n\n40) agentofchaos: Build B1 Flat\n\n41) Joe_Hill: Build G1 Joe_hill\n\n42) agentofchaos: Trade G1 B1 Flat\n\n\tJoe_Hill: Good game\n\nHomeworlds Online (SDG# 30700)\nStarted: 2016.11.20, Ended: 2016.12.22\nParticipants: dragon76n (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\tdragon76n: homeworld g2 b1 y3\n\tdragon76n: If this is the message area, hello! It's been nearly a year since I've been on this site, but I'm looking forward to playing some games on here again. \n\tDraw5PlayAll: That was the message area. The move area should be on the top left. If it is not, then it is not your turn.\n\n2) dragon76n: Homeworld G2 B1 Y3\n\tFelix: Hello! Welcome back! I'm happy to make your acquaintance and I hope you have fun :)\n\n3) Felix: Build G1 Felix\n\n4) dragon76n: B Y1 Dragon76n\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dragon76n: T Y1 G1 Dragon76n\n\n7) Felix: Build G1 Felix\n\n8) dragon76n: B Y1 Dragon76n\n\n9) Felix: Trade G1 B1 Felix\n\n10) dragon76n: B G1 Dragon76n\n\n11) Felix: Build G1 Felix\n\n12) dragon76n: Trade G1 B1 Dragon76n\n\n13) Felix: Discover B1 Felix G1 Grinch\n\n14) dragon76n: B G2 Dragon76n\n\n15) Felix: Build B2 Grinch\n\n16) dragon76n: D G1 Dragon76n R3 Redthr\n\n17) Felix: Trade B2 Y2 Grinch\n\n18) dragon76n: B B2 Dragon76n\n\n19) Felix: Build B2 Grinch\n\n20) dragon76n: T B1 R1 Dragon76n\n\n21) Felix: Trade B2 R2 Grinch\n\n22) dragon76n: Build G2 Redthr\n\n23) Felix: Discover G1 Felix B1 Ridge\n\n24) dragon76n: D B2 Dragon76n G3 Grethr\n\n25) Felix: Build G3 Ridge\n\n26) dragon76n: Move Y1 Dragon76n Redthr\n\n27) Felix: Sacrifice G3 Ridge\nBuild G3 Ridge\nBuild Y1 Grinch\nBuild R1 Grinch\n\n28) dragon76n: B Y2 Redthr\n\n29) Felix: Sacrifice Y1 Grinch\nMove G3 Ridge Grethr\n\n30) dragon76n: M G2 Redthr Ridge\n\n31) Felix: Sacrifice R1 Grinch\nAttack B2 Grethr\n\n32) dragon76n: Sacrifice G2 Dragon76n\nBuild G2 Redthr\nBuild R1 Dragon76n\n\n33) Felix: Sacrifice G3 Grethr\nBuild G3 Felix\nBuild B2 Grinch\nBuild B3 Grethr\n\n34) dragon76n: S R1 Dragon76n\nA G1 Ridge\n\n35) Felix: Trade G3 Y3 Felix\n\n36) dragon76n: B G3 Redthr\n\n37) Felix: Build B3 Grethr\n\n38) dragon76n: Discover G3 Redthr R1 Redone\n\n39) Felix: Build B3 Grinch\n\n40) dragon76n: Move G1 Redthr Redone\n\n41) Felix: Sacrifice Y2 Grinch\nMove B3 Grethr Dragon76n\nMove B3 Grethr Dragon76n\n\n42) dragon76n: S G3 Redone\nB G3 Redthr\nB R1 Dragon76n\nB R2 Dragon76n\n\n43) Felix: Sacrifice R2 Grinch\nAttack Y3 Dragon76n\nAttack R2 Dragon76n\n\n44) dragon76n: Sacrifice Y2 Redthr\nMove G1 Ridge Felix\nMove G2 Ridge Felix\n\n45) Felix: Sacrifice R2 Dragon76n\nAttack R1 Dragon76n\nAttack R1 Dragon76n\n\tFelix: I think that's about it. Good game! You played well and I hope I've been able to help you de-rust a bit and relearn some tricks. I'd love to rematch any time!\n\n\tdragon76n: Thanks for playing. I had fun. \n\nHomeworlds Online (SDG# 30746)\nVariants: "Hard time"\nStarted: 2016.11.21, Ended: 2017.2.28\nParticipants: Draw5PlayAll (S), Grosseteste (N)\nWinner: Draw5PlayAll\n\n1) Grosseteste: Homeworld Y1 B2 G3\n\n2) Draw5PlayAll: Homeworld B1 R3 G3\n\tGrosseteste: Looking forward to it, thanks for the challenge!\n\n3) Grosseteste: Build G1 Grosseteste\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Grosseteste: D G1 Grosseteste Y3 Charlie\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Grosseteste: Build G1 Grosseteste\n\n8) Draw5PlayAll: Build Y1 Draw5playall\n\n9) Grosseteste: Trade G1 B1 Grosseteste\n\n10) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n11) Grosseteste: Build B2 Grosseteste\n\tDraw5PlayAll: Hello, it is your turn.\n\n12) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n13) Grosseteste: T B2 Y2 Grosseteste\n\n14) Draw5PlayAll: Build B2 G2\n\n15) Grosseteste: Build G1 Grosseteste\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) Grosseteste: Build G2 Charlie\n\n18) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n19) Grosseteste: Build B3 Grosseteste\n\n20) Draw5PlayAll: Build G2 Draw5playall\n\n21) Grosseteste: B G3 Grosseteste\n\n22) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\nBuild Y2 Draw5playall\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\n\n23) Grosseteste: Sacrifice Y2 Grosseteste\nDiscover G3 Grosseteste Y3 Lucy\nDiscover B3 Grosseteste Y3 Schroeder\n\tDraw5PlayAll: this is so slow!!!\n\n24) Draw5PlayAll: Build B3 G2\n\tGrosseteste: Sorry, I usually move slowly, and it being this time of the year doesn't help.\n\n25) Grosseteste: Move B3 Schroeder G2\nCatastrophe G2 Blue\n\n26) Draw5PlayAll: Build G2 B2\n\tDraw5PlayAll: Oh, a green!\n\n27) Grosseteste: Build B1 Grosseteste\n\n28) Draw5PlayAll: Move Y1 Draw5playall B2\n\n29) Grosseteste: Sacrifice B1 Grosseteste\nTrade G2 Y2 Charlie\n\n30) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 B2\n\n31) Grosseteste: Discover Y2 Charlie R2 Rerun\n\n32) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n33) Grosseteste: Move B1 Grosseteste Charlie\n\n34) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n35) Grosseteste: Trade G1 B1 Grosseteste\n\n36) Draw5PlayAll: Build B3 G2\n\n37) Grosseteste: Build B3 Charlie\n\n38) Draw5PlayAll: Build Y2 B2\n\n39) Grosseteste: Move B1 Charlie Rerun\n\n40) Draw5PlayAll: Discover Y2 B2 B3 B3\n\n41) Grosseteste: Build G1 Charlie\n\n42) Draw5PlayAll: Trade G1 R1 B2\n\n43) Grosseteste: Trade G1 R1 Charlie\n\n44) Draw5PlayAll: Move Y1 Draw5playall G2\n\n45) Grosseteste: Sacrifice G3 Lucy\nBuild G1 Charlie\nBuild G1 Grosseteste\nBuild Y3 Rerun\n\n46) Draw5PlayAll: Move G2 B2 B3\n\n47) Grosseteste: Trade G1 R1 Grosseteste\n\n48) Draw5PlayAll: Build G1 Draw5playall\n\n49) Grosseteste: Move G1 Charlie Rerun\n\n50) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild R2 B2\n\n51) Grosseteste: Build G1 Grosseteste\n\n52) Draw5PlayAll: Discover B2 G2 G3 G3\n\n53) Grosseteste: Discover B1 Grosseteste R3 Lucy\n\n54) Draw5PlayAll: Move Y1 G2 G3\n\n55) Grosseteste: Sacrifice G3 Grosseteste\nBuild G2 Rerun\nBuild G3 Grosseteste\nBuild R2 Charlie\n\n56) Draw5PlayAll: Discover Y1 B2 R3 R3\n\n57) Grosseteste: S Y3 Rerun\nM Y2 Rerun Draw5playall\nM G2 Rerun Draw5playall\nM G1 Rerun Draw5playall\n\n58) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B3 G2 Draw5playall\nMove Y1 R3 Grosseteste\n\tDraw5PlayAll: If this fails, which it will, you have nothing to show.\n\n\tBabamots: I think he's got you, Gross. But I like the Peanuts systems!\n\tGrosseteste: I think it's likely too. But I want to take a look at it after my flu lifts. At the moment I can say I totally missed the possibility of the b3 moving to the homeworld.\n\tGrosseteste: OK, another look does not reveal a positive way forward for me, sorry to make you wait for it, good game!\n\tDraw5PlayAll: Good game.\n\nHomeworlds Online (SDG# 30744)\nStarted: 2016.11.21, Ended: 2017.1.23\nParticipants: dragon76n (S), zeder (N)\nWinner: dragon76n\n\n1) zeder: Homeworld G3 B2 Y3\n\n2) dragon76n: Homeworld B3 Y2 G3\n\n3) zeder: Build Y1 Zeder\n\n4) dragon76n: Build G1 Dragon76n\n\n5) zeder: Trade Y1 G1 Zeder\n\n6) dragon76n: T G1 Y1 Dragon76n\n\n7) zeder: Build G1 Zeder\n\n8) dragon76n: Build Y1 Dragon76n\n\n9) zeder: Discover G1 Zeder Y1 Poker\n\n10) dragon76n: T Y1 R1 Dragon76n\n\n11) zeder: Trade G1 R1 Zeder\n\n12) dragon76n: B G1 Dragon76n\n\n13) zeder: Trade R1 B1 Zeder\n\n14) dragon76n: Move R1 Dragon76n Poker\n\tdragon76n: m r1 dragon76n Poker\n\n15) zeder: Discover G1 Poker Y2 Gin\n\tdragon76n: Apparently I've mixed up my Message form with my Command form again... :D\n\n16) dragon76n: Trade G1 B1 Dragon76n\n\n17) zeder: Trade B1 R1 Zeder\n\n18) dragon76n: Build G1 Dragon76n\n\n19) zeder: Build Y1 Zeder\n\n20) dragon76n: M G1 Dragon76n Poker\n\n21) zeder: Build Y2 Zeder\n\n22) dragon76n: M Y1 Dragon76n Poker\n\n23) zeder: Move Y2 Zeder Poker\n\n24) dragon76n: M R1 Poker Gin\n\n25) zeder: Sacrifice R1 Zeder\nAttack R1 Gin\n\n26) dragon76n: Move Y1 Poker Zeder\n\n27) zeder: Trade Y1 R1 Zeder\n\n28) dragon76n: B Y1 Zeder\n\n29) zeder: Attack Y1 Zeder\n\n30) dragon76n: B Y3 Zeder\nC Zeder Yellow\n\n31) zeder: Build R1 Zeder\n\n32) dragon76n: Discover G1 Poker B2 Blutwo\n\n33) zeder: Build R2 Zeder\n\n34) dragon76n: B B1 Dragon76n\n\n35) zeder: Build R2 Gin\n\n36) dragon76n: T B1 Y1 Dragon76n\n\n37) zeder: Build R2 Gin\n\n38) dragon76n: T G3 R3 Dragon76n\n\n39) zeder: Discover R2 Gin Y1 Hearts\n\n40) dragon76n: Sacrifice G1 Blutwo\nBuild R3 Dragon76n\n\n41) zeder: Build R3 Gin\n\n42) dragon76n: Move R3 Dragon76n Poker\n\n43) zeder: Move Y2 Poker Zeder\n\n44) dragon76n: M R3 Poker Zeder\nC Zeder Red\n\tzeder: Oh no!\n\n45) zeder: Move R3 Gin Hearts\n\n46) dragon76n: T B1 G1 Dragon76n\n\n47) zeder: Build Y1 Zeder\n\n48) dragon76n: Discover Y1 Dragon76n G1 Greone\n\n49) zeder: Trade Y2 G2 Zeder\n\n50) dragon76n: Build Y2 Greone\n\n51) zeder: Move R2 Gin Greone\n\n52) dragon76n: Build Y3 Greone\n\n53) zeder: Move Y1 Zeder Greone\nCatastrophe Greone Y\n\n54) dragon76n: Build G2 Dragon76n\n\n55) zeder: Move G1 Gin Hearts\n\n56) dragon76n: Trade G2 Y2 Dragon76n\n\n57) zeder: Build G2 Hearts\n\n58) dragon76n: B Y1 Dragon76n\n\n59) zeder: Move R1 Gin Greone\n\n60) dragon76n: Discover Y2 Dragon76n R1 Redone\n\n61) zeder: Trade G2 Y2 Zeder\n\n62) dragon76n: Build G2 Dragon76n\n\n63) zeder: Move R3 Hearts Zeder\n\n64) dragon76n: Move G1 Dragon76n Redone\n\n65) zeder: Build R1 Hearts\n\n66) dragon76n: B G2 Redone\n\n67) zeder: Sacrifice Y2 Zeder\nMove R2 Greone Dragon76n\nMove R1 Greone Dragon76n\n\n68) dragon76n: Sacrifice R3 Dragon76n\nAttack R2 Dragon76n\nAttack R1 Dragon76n\nPass\n\n69) zeder: Build R2 Zeder\n\n70) dragon76n: D G2 Redone Y2 Yeltwo\n\n71) zeder: Trade R2 B2 Zeder\n\n72) dragon76n: Build G1 Dragon76n\n\n73) zeder: Discover G2 Hearts B2 Steak\n\n74) dragon76n: B Y1 Redone\n\n75) zeder: Build G3 Steak\n\n76) dragon76n: B G3 Redone\n\n77) zeder: Sacrifice G3 Steak\nBuild G3 Hearts\nBuild R2 Zeder\nBuild R3 Zeder\n\n78) dragon76n: Sacrifice Y2 Redone\nMove R1 Dragon76n Redone\nMove R1 Redone Zeder\nCatastrophe Zeder Red\n\n79) zeder: Move G3 Hearts Dragon76n\n\n80) dragon76n: M G1 Redone Dragon76n\nC Dragon76n Green\n\n\nHomeworlds Online (SDG# 30759)\nVariants: "Hard time"\nStarted: 2016.11.22, Ended: 2016.12.14\nParticipants: Subhan64 (S), Salmonax (N)\nWinner: Salmonax\n\n1) Salmonax: Homeworld G1 Y3 B3\n\n2) Subhan64: Homeworld Y2 G1 B3\n\n3) Salmonax: Build B1 Salmonax\n\n4) Subhan64: Build B1 Subhan64\n\tSalmonax: Good luck, have fun!\n\n5) Salmonax: Trade B1 G1 Salmonax\n\tSubhan64: thanks, u2\r\n\n\n6) Subhan64: Trade B3 G3 Subhan64\n\n7) Salmonax: Build G2 Salmonax\n\n8) Subhan64: Build G2 Subhan64\n\n9) Salmonax: Discover G2 Salmonax B2 Fiddle\n\n10) Subhan64: Discover G2 Subhan64 Y3 Bb\n\n11) Salmonax: Trade G1 R1 Salmonax\n\n12) Subhan64: Build G1 Subhan64\n\n13) Salmonax: Build B1 Salmonax\n\n14) Subhan64: Sacrifice G3 Subhan64\nBuild G2 Bb\nBuild G3 Subhan64\nBuild G3 Bb\n\n15) Salmonax: Build G3 Fiddle\n\n16) Subhan64: Discover G2 Bb B2 Cm\n\n17) Salmonax: Trade B3 Y3 Salmonax\n\n18) Subhan64: Sacrifice G1 Subhan64\nBuild G1 Cm\n\n19) Salmonax: Build Y1 Salmonax\n\n20) Subhan64: Trade G2 Y2 Cm\n\n21) Salmonax: Move Y1 Salmonax Fiddle\n\n22) Subhan64: Sacrifice G2 Bb\nBuild G2 Cm\nBuild G2 Cm\n\n23) Salmonax: Move G3 Fiddle Bb\n\n24) Subhan64: Move G1 Cm Salmonax\n\n25) Salmonax: Move G3 Bb Subhan64\n\n26) Subhan64: Trade G3 R3 Subhan64\n\n27) Salmonax: Sacrifice R1 Salmonax\nAttack R3 Subhan64\n\n28) Subhan64: Sacrifice Y2 Cm\nMove G2 Cm Salmonax\nMove G2 Cm Salmonax\nCatastrophe Salmonax Green\n\n29) Salmonax: Attack B1 Subhan64\n\n\tSalmonax: Gg\n\nHomeworlds Online (SDG# 30758)\nVariants: "Hard time"\nStarted: 2016.11.23, Ended: 2016.12.14\nParticipants: dlwillson (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B2 G3\n\n2) dlwillson: Homeworld B3 R2 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\tdlwillson: You too!\n\n4) dlwillson: B G1 Dlwillson\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Felix: Build G1 Felix\n\n8) dlwillson: B G1 Dlwillson\n\n9) Felix: Trade G1 R1 Felix\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) Felix: Build R2 Felix\n\n12) dlwillson: B R2 Dlwillson\n\n13) Felix: Discover R2 Felix G3 Gronch\n\n14) dlwillson: Discover R1 Dlwillson B1 Sky\n\n15) Felix: Build R3 Gronch\n\n16) dlwillson: B R3 Dlwillson\n\n17) Felix: Build R3 Felix\n\n18) dlwillson: T R2 Y2 Dlwillson\n\n19) Felix: Trade R3 Y3 Felix\n\n20) dlwillson: M Y1 Dlwillson Sky\n\n21) Felix: Move Y1 Felix Gronch\n\n22) dlwillson: B Y1 Dlwillson\n\n23) Felix: Build Y2 Felix\n\n24) dlwillson: Discover Y1 Dlwillson B1 Sea\n\n25) Felix: Move R3 Gronch Sky\n\n26) dlwillson: D Y1 Sky B3 Dabadee\n\n27) Felix: Attack R1 Sky\n\n28) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Dlwillson\nBuild Y3 Dabadee\nBuild Y3 Sea\n\n29) Felix: Sacrifice Y3 Felix\nMove R1 Sky Dlwillson\nMove R3 Sky Dlwillson\nCatastrophe Dlwillson Red\nMove Y2 Felix Dlwillson\n\n30) dlwillson: Sacrifice Y3 Dabadee\nMove Y1 Sea Dlwillson\nCatastrophe Dlwillson Y\nMove Y3 Sea Dlwillson\nMove Y1 Dabadee Felix\n\tdlwillson: Excellent play! Totally didn't see it coming!\n\tDraw5PlayAll: All just yellow ships at blue systems??\n\n31) Felix: Attack Y1 Felix\n\tdlwillson: Interesting... I'm not sure why that worked.\n\tFelix: I believe they changed the rules so that it's now possible to cause a catastrophe during a turn instead of only at the end. This more closely reflects the official rules, I think, and I like it, because it opens up more strategic opportunities.\r\n\r\nAMAZING defense. I thought there was no way out of my attack!\n\n32) dlwillson: T Y3 G3 Dlwillson\n\tFelix: I don't know if it will save you in the end, but it was an awesome play.\n\tDraw5PlayAll: One ship!!!\n\n33) Felix: Move G3 Felix Dlwillson\n\tdlwillson: I'm sure it won't save me, and I'm pretty sure it's not legal, with or without cats in the middle of the turn. The cat should have sent my homeworld back to the bank.\n\tFelix: Ah, yeah. You're right. You should have been eliminated immediately after that catastrophe and before you moved your other Y3 home, but if the system will accept it, I'm happy to play it out!\n\n34) dlwillson: B G1 Dlwillson\n\tFelix: And I think that will do it. Really great game. That was an exciting finish, and I look forward to our next rematch!\n\n35) Felix: Sacrifice R2 Gronch\nAttack G3 Dlwillson\nAttack G1 Dlwillson\n\tdlwillson: GG! See you in a week or so! :-)\n\tFelix: See you then! Or feel free to start up a non-ladder game with me any time :)\n\tDraw5PlayAll: The rules say you can temporarily abandon your homeworld at any time.\n\n\nHomeworlds Online (SDG# 30666)\nStarted: 2016.11.23, Ended: 2017.1.9\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) ts52: Homeworld Y2 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) ts52: Build G1 Ts52\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) ts52: Build G1 Ts52\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) ts52: Trade G1 B1 Ts52\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) ts52: Build G1 Ts52\n\n13) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n14) ts52: Discover G1 Ts52 R1 Elmo\n\n15) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n16) ts52: Move B1 Ts52 Elmo\n\n17) Draw5PlayAll: Trade G1 R1 B2\n\n18) ts52: Build G1 Ts52\n\n19) Draw5PlayAll: Build G1 Draw5playall\n\n20) ts52: Build G2 Elmo\n\n21) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild R2 B2\n\tDraw5PlayAll: Here come the factories!\n\n22) ts52: Trade G3 R3 Ts52\n\n23) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\nBuild Y2 Draw5playall\n\n24) ts52: Build G3 Ts52\n\n25) Draw5PlayAll: Move Y1 Draw5playall G2\n\n26) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\n\n27) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 G2\n\n28) ts52: Discover G3 Ts52 B1 Grover\n\n29) Draw5PlayAll: Discover Y2 Draw5playall B2 B2'\n\n30) ts52: Trade G3 Y3 Grover\n\n31) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y3 B2'\n\n32) ts52: Move Y1 Ts52 Elmo\n\n33) Draw5PlayAll: Move G2 Draw5playall B2'\n\n34) ts52: Move Y3 Grover B2\n\n35) Draw5PlayAll: Sacrifice Y2 B2'\nDiscover R2 B2 B1 B1\nMove Y3 B2' Elmo\n\tDraw5PlayAll: Two can't play at that game.\n\tDraw5PlayAll: *can\n\n36) ts52: Sacrifice R2 Ts52\nAttack R1 B2\nPass\n\tts52: Sorry for running out of time. thanks for being patient.\n\n37) Draw5PlayAll: Attack G2 Elmo\n\tDraw5PlayAll: Really! I thought you would not trade an R2 for an R1...\n\n38) ts52: Move G1 Elmo B2\n\n39) Draw5PlayAll: Attack Y1 Elmo\n\n40) ts52: Build R2 Ts52\n\n41) Draw5PlayAll: Attack B1 Elmo\n\n42) ts52: Move R3 Ts52 B1\n\tDraw5PlayAll: My attack seems slow.\n\n43) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R2 B1 B2'\n\n44) ts52: Build Y1 B2\n\n45) Draw5PlayAll: Build Y2 Draw5playall\n\n46) ts52: Move Y1 B2 B1\n\n47) Draw5PlayAll: Sacrifice G2 B2'\nBuild G1 Elmo\nBuild B2 Elmo\n\n48) ts52: Move R3 B1 B2'\n\tDraw5PlayAll: Five blue stars, man, are you kidding me?\n\n49) Draw5PlayAll: Sacrifice Y3 G2\nMove B1 Elmo Ts52\nMove B2 Elmo Ts52\nMove B1 G2 Elmo\n\tDraw5PlayAll: STALKER!\n\n50) ts52: Attack R2 B2'\n\tts52: :)\n\n51) Draw5PlayAll: Sacrifice Y3 Elmo\nMove B1 Elmo Ts52\nCatastrophe Ts52 Blue\nMove Y1 Elmo Ts52\nDiscover Y1 G2 B3 B3\n\tDraw5PlayAll: I see exactly what the problem is!!!\n\n52) ts52: Attack Y1 Ts52\n\tDraw5PlayAll: This is what you get for that behavior.\n\n53) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 B3 Ts52\nMove Y2 Draw5playall Ts52\nCatastrophe Ts52 Yellow\n\tDraw5PlayAll: My last move actually seemed to be a losing move.\n\tts52: Agreed, I think if you destroyed yellow instead of blue, it would've cost you the game. Instead....\n\tts52: Hmm, guess I didn't look at your undone move close enough. But you're definitely in a stronger position with the move you ended up going with.\n\n\tDraw5PlayAll: I blew up your greens and blues in the first case. Here I kept your greens and went after yellow.\n\tDraw5PlayAll: Good game! I suppose that brings my Homeworlds Number to 3...\n\tts52: Indeed, good game. Your Homeworlds Number?\n\tDraw5PlayAll: Andrew Looney's number is 1.\r\nIf you beat him, your number goes to 2.\r\nAnd in general, if you beat someone with number n (smaller than your own), yours is n-1.\r\n\r\nSince I think you beat Andy, yours is 2, and since I just beat you (albeit on SDG) that takes me to 3.\n\tts52: Ah, that makes sense... :)\n\nHomeworlds Online (SDG# 31884)\nVariants: "Hard time"\nStarted: 2017.4.6, Ended: 2017.4.17\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y1 B2 G3\n\n2) wil: H B3 Y2 G3\n\tFelix: Good luck!\n\twil: Back atcha\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 Y1 Felix\n\twil: Lol... Meant to go goldlilox not fortress\n\tFelix: Oops! Is there any way to walk it back now?\n\n6) wil: T G1 Y1 Wil\n\twil: Nah...it is what it is... I just chuckled when I saw it\n\n7) Felix: Build Y2 Felix\n\n8) wil: B Y2 Wil\n\n9) Felix: Discover Y1 Felix G3 Opus\n\n10) wil: D Y1 Wil G1 G1\n\n11) Felix: Build Y3 Opus\n\n12) wil: B Y3 G1\n\n13) Felix: Discover Y1 Opus G1 Magnum\n\n14) wil: D Y1 G1 Y3 Y3\n\n15) Felix: Trade Y2 R2 Felix\n\n16) wil: T Y2 R2 Wil\n\n17) Felix: Build Y2 Magnum\n\n18) wil: B Y2 G1\n\twil: On a bus, and then metro...these games might move..\n\n19) Felix: Build R1 Felix\n\tFelix: I'm at work on my computer, so I'll be semi-around all day, but I gotta get SOME work done :)\n\n20) wil: B R1 Wil\n\n21) Felix: Trade R1 B1 Felix\n\n22) wil: M R1 Wil G1\n\n23) Felix: Build B1 Felix\n\n24) wil: B R1 Wil\n\n25) Felix: Move B1 Felix Opus\n\n26) wil: T R1 B1 Wil\n\n27) Felix: Build B2 Opus\n\n28) wil: M B1 Wil G1\n\n29) Felix: Move B2 Opus Magnum\n\twil: Two more stops...then back to work for you!\n\n30) wil: B R1 G1\n\tFelix: Phew. Though I must say I do enjoy it when a game goes along quickly. It's a pain to try to remember my strategy every time I load up the game!\n\n31) Felix: Build G1 Felix\n\n32) wil: Build G2 Wil\n\n33) Felix: Move R2 Felix Y3\n\n34) wil: M Y1 Y3 Magnum\n\tDraw5PlayAll: Felix, if I thought is that bad use the notebook.\n\n35) Felix: Move R2 Y3 Magnum\n\n36) wil: D Y2 G1 Y3 Y3\n\n37) Felix: Build R1 Magnum\n\n38) wil: D R1 G1 G2 G2\n\n39) Felix: Move R2 Magnum Y3\n\n40) wil: S R1 G2\nA R2 Y3\n\n41) Felix: Attack Y1 Magnum\n\tFelix: Well dang. I didn't think that one through.\n\n42) wil: M Y2 Y3 Magnum\nC Magnum Y\n\n43) Felix: Discover G1 Felix B3 Safe\n\n44) wil: D G2 Wil Y1 Y1\n\n45) Felix: Build G2 Felix\n\n46) wil: B B2 G1\n\n47) Felix: Sacrifice G3 Felix\nBuild G2 Safe\nBuild G3 Felix\nBuild B3 Magnum\n\n48) wil: M Y3 G1 Safe\n\n49) Felix: Sacrifice G2 Safe\nBuild Y1 Opus\nBuild Y2 Opus\n\n50) wil: B G2 Wil\n\twil: Sweet, I was looking for a safe place\n\n51) Felix: Trade B2 Y2 Magnum\n\tFelix: Haha, there are no safe spaces over here in the U.S. now that the Trump Train is in town\n\n52) wil: Sacrifice G2 Y1\nBuild R1 G1\nBuild Y1 Safe\n\n53) Felix: Sacrifice G1 Safe\nBuild R2 Magnum\n\n54) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 Y3\nBuild R3 G1\n\n55) Felix: Trade Y3 G3 Opus\n\n56) wil: Move R2 Wil Magnum\n\n57) Felix: Sacrifice R1 Magnum\nAttack R2 Magnum\n\n58) wil: Move R2 Y3 Magnum\n\n59) Felix: Sacrifice R2 Magnum\nAttack R2 Magnum\nPass\n\n60) wil: Trade R3 Y3 Wil\n\n61) Felix: Sacrifice Y2 Opus\nMove R2 Magnum Y3\nMove R2 Y3 G1\nCatastrophe G1 Red\n\tFelix: I could do this all day :P\n\n62) wil: Trade B2 Y2 G1\n\twil: yeah it was week\r\n\n\n63) Felix: Sacrifice G2 Felix\nBuild B2 Magnum\nBuild B2 Opus\n\n64) wil: Build G1 Wil\n\n65) Felix: Build G2 Felix\n\n66) wil: Sacrifice G2 Wil\nBuild G2 Wil\nBuild R1 Y3\n\n67) Felix: Trade G3 R3 Opus\n\n68) wil: M R1 Y3 G1\n\n69) Felix: Move R3 Opus G1\n\n70) wil: S G2 Wil\nB R1 G1\nB R1 G1\nC G1 R\n\n71) Felix: Discover G2 Felix G3 Bank\n\n72) wil: B G2 Wil\n\n73) Felix: Build G2 Felix\n\n74) wil: M G2 Wil G1\n\n75) Felix: Discover G2 Felix R3 Factory\n\n76) wil: M G2 G1 Bank\n\n77) Felix: Build R1 Magnum\n\n78) wil: S G1 Wil\nB G1 Bank\nC Bank G\n\twil: I like to watch investments patiently until it looks like they are going to pay off\n\n79) Felix: Move B2 Opus G1\n\n80) wil: M Y2 G1 Opus\n\twil: Dang it, I really got in that one at the wrong time... I'm calling my broker...I got no green\n\n81) Felix: Move B2 Magnum Opus\n\tFelix: Haha, you need a new accountant!\n\twil: Noice!\n\n82) wil: D Y2 Opus G2 G2\n\n83) Felix: Move Y1 Opus G1\n\n84) wil: T Y1 G1 Safe\n\n85) Felix: Build Y1 Magnum\n\n86) wil: T Y3 G3 Wil\n\n87) Felix: Sacrifice G2 Factory\nBuild G2 Felix\nBuild Y3 G1\n\n88) wil: Build G2 Wil\n\n89) Felix: Sacrifice R1 Magnum\nAttack B1 G1\n\n90) wil: M R3 Y3 G2\n\n91) Felix: Move Y1 Magnum Wil\n\n92) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 G2\nBuild R1 G2\n\n93) Felix: Move Y1 G1 Wil\n\twil: yeah...this is the end..nice job\n\n94) wil: Move Y3 Safe Felix\n\n95) Felix: Sacrifice R2 Magnum\nAttack Y3 Felix\nPass\n\tFelix: Thanks! This was a good game. Very well fought!\n\n96) wil: Sacrifice Y3 G2\nMove G3 Wil Magnum\nMove G3 Magnum Opus\nMove G3 Opus Felix\n\tFelix: ...unless I mess up, of course.\n\n97) Felix: Sacrifice G2 Felix\nBuild Y3 Wil\nBuild G2 Felix\nCatastrophe Wil Yellow\n\n98) wil: Sacrifice R3 G2\nAttack G3 Felix\nAttack Y3 Felix\nAttack G2 Felix\n\twil: lol...just a good looking finale as rome crumbles\n\n99) Felix: Sacrifice Y3 G1\nMove B3 Magnum Wil\nMove B2 G1 Wil\nMove B1 G1 Wil\nCatastrophe Wil Blue\n\n\tFelix: I sure don't have much of a fleet left... good game! You nearly gave me a heart attack there at the very end. Well struggled.\n\twil: I was a beat behind...fun.\n\nHomeworlds Online (SDG# 30743)\nStarted: 2016.11.26, Ended: 2017.2.3\nParticipants: Mandrel (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) Mandrel: Homeworld R1 B2 G3\n\tFelix: Hi there! First game?\n\n3) Felix: Build G1 Felix\n\tMandrel: Hi! I've played quite a few games before, but not for a long while; this is my first in a couple of years or so, so am probably pretty rusty.\n\n4) Mandrel: Build G1 Mandrel\n\tFelix: No problem. I'm happy to help you de-rust. Hope you have fun!\n\n5) Felix: Trade G1 Y1 Felix\n\tMandrel: Thanks, you too!\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) Felix: Build G1 Felix\n\n8) Mandrel: Build G1 Mandrel\n\n9) Felix: Trade G1 B1 Felix\n\n10) Mandrel: Trade G1 B1 Mandrel\n\n11) Felix: Discover B1 Felix G1 Grinch\n\n12) Mandrel: Discover B1 Mandrel G3 Tooth\n\n13) Felix: Build G1 Felix\n\n14) Mandrel: Build G1 Mandrel\n\n15) Felix: Discover G1 Felix B1 Quozah\n\n16) Mandrel: Build G2 Mandrel\n\n17) Felix: Build G2 Felix\n\n18) Mandrel: Discover G1 Mandrel B3 Early\n\n19) Felix: Sacrifice G3 Felix\nBuild G2 Quozah\nBuild G3 Felix\nBuild B2 Grinch\n\n20) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild Y1 Mandrel\nBuild B2 Tooth\n\n21) Felix: T B2 Y2 Grinch\n\n22) Mandrel: Build Y2 Mandrel\n\n23) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Grinch\nBuild Y3 Felix\n\n24) Mandrel: Move Y1 Mandrel Tooth\n\n25) Felix: Move Y2 Grinch Early\n\n26) Mandrel: Build Y3 Tooth\n\n27) Felix: Build Y3 Grinch\n\n28) Mandrel: Trade Y1 R1 Mandrel\n\n29) Felix: Trade Y2 R2 Early\n\n30) Mandrel: Sacrifice G1 Early\nBuild Y1 Mandrel\n\n31) Felix: Build B2 Grinch\n\n32) Mandrel: Discover G2 Mandrel B3 Hole\n\n33) Felix: M Y2 Grinch Early\n\n34) Mandrel: Trade B2 R2 Tooth\n\n35) Felix: Sacrifice G3 Felix\nBuild G1 Quozah\nBuild G3 Felix\nBuild Y2 Early\n\n36) Mandrel: Build B2 Tooth\n\n37) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R1 Early\nPass\n\n38) Mandrel: Move R1 Mandrel Hole\n\n39) Felix: Sacrifice Y2 Early\nMove R2 Early Quozah\nMove G1 Quozah Early\n\n40) Mandrel: Build R3 Hole\n\n41) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R3 Early\nBuild R3 Quozah\n\n42) Mandrel: Move Y1 Mandrel Hole\n\n43) Felix: Sacrifice Y3 Felix\nMove R3 Quozah Early\nMove R3 Early Mandrel\nMove R3 Early Mandrel\n\n44) Mandrel: Sacrifice R2 Tooth\nAttack R3 Mandrel\nAttack R3 Mandrel\n\n45) Felix: Move R1 Early Mandrel\nCatastrophe Mandrel Red\n\n46) Mandrel: Move R3 Hole Quozah\n\n47) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R1 Quozah\nBuild R1 Quozah\nCatastrophe Quozah Red\n\tFelix: Huh. I somehow missed the fact that you had that r2...\n\n48) Mandrel: Discover B1 Tooth R1 Fall\n\tMandrel: I almost did as well, nearly sacrificed my r3 instead. Shouldn't think it'll matter in the end though..\n\n49) Felix: Move Y2 Early Fall\n\n50) Mandrel: Sacrifice Y3 Tooth\nMove B1 Fall Felix\nMove B2 Tooth Fall\nMove B2 Fall Felix\n\n51) Felix: Attack B2 Felix\n\n52) Mandrel: Attack Y1 Felix\n\n53) Felix: Sacrifice Y3 Grinch\nMove B1 Grinch Mandrel\nMove B2 Grinch Mandrel\nDiscover B2 Felix G1 Gambit\n\n54) Mandrel: Sacrifice G2 Hole\nBuild Y2 Felix\nBuild Y3 Felix\n\n55) Felix: Sacrifice Y2 Fall\nMove B2 Gambit Mandrel\nCatastrophe Mandrel Blue\nPass\n\tFelix: Way to put pressure on me like that. I think I might have pulled it off, but it was really close!\n\n\tMandrel: Thanks, but I think the writing has been on the wall for a while, you'd amassed a pretty serious material advantage. Good game!\n\tFelix: Great game! Looking forward to a rematch.\n\nHomeworlds Online (SDG# 30808)\nStarted: 2016.11.30, Ended: 2016.11.30\nParticipants: agentofchaos (S), randrews (N)\nWinner: agentofchaos\n\n1) randrews: Homeworld Y3 G1 B3\n\n2) agentofchaos: Homeworld B2 R1 G3\n\n3) randrews: Build B1 Randrews\n\tagentofchaos: Enjoy the game\n\n4) agentofchaos: Build G1 Agentofchaos\n\trandrews: You too!\n\n5) randrews: Build B1 Randrews\n\n6) agentofchaos: Trade G1 B1 Agentofchaos\n\n7) randrews: Discover B1 Randrews G2 Blah\n\n8) agentofchaos: Build B2 Agentofchaos\n\n9) randrews: Build B2 Blah\n\n10) agentofchaos: Trade B2 Y2 Agentofchaos\n\n11) randrews: Trade B1 G1 Blah\n\n12) agentofchaos: Discover B1 Agentofchaos G3 Kakrafoon\n\n13) randrews: Build B1 Randrews\n\n14) agentofchaos: Sacrifice Y2 Agentofchaos\nMove B1 Kakrafoon Blah\nMove B1 Blah Randrews\nCatastrophe Randrews B\n\tagentofchaos: I was getting ready in case you built another blue in your homeworld. Thanks for the game. \n\trandrews: Yeah, I'm not very good at Homeworlds. Good game!\n\tDraw5PlayAll: With time and practice you can improve.\n\n\nHomeworlds Online (SDG# 30817)\nVariants: "Hard time"\nStarted: 2016.12.6, Ended: 2017.1.1\nParticipants: agentofchaos (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3 Y2\n\n2) agentofchaos: Homeworld R2 B1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tagentofchaos: Enjoy the game\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) agentofchaos: Build G2 Agentofchaos\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: Failed...\n\n8) agentofchaos: Trade G1 Y1 Agentofchaos\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\tDraw5PlayAll: Not making the same mistake again.\n\n10) agentofchaos: Build G1 Agentofchaos\n\n11) Draw5PlayAll: Build B1 Draw5playall\n\n12) agentofchaos: Sacrifice G2 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y2 Agentofchaos\n\n13) Draw5PlayAll: Build Y2 Draw5playall\n\n14) agentofchaos: Discover Y2 Agentofchaos G3 Doomchasm\n\n15) Draw5PlayAll: Discover Y2 Draw5playall G2 G2\n\n16) agentofchaos: Build Y2 Agentofchaos\n\n17) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 G2\nPass\n\n18) agentofchaos: Build Y3 Doomchasm\n\n19) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade Y3 B3 G2\n\n20) agentofchaos: Trade Y1 B1 Agentofchaos\n\tDraw5PlayAll: If you build it, we will come... and blow it up in a spectacular explosion.\n\n21) Draw5PlayAll: Build B2 G2\n\tagentofchaos: puts a bit of a damper on the building industry then\n\n22) agentofchaos: Move B1 Agentofchaos Doomchasm\n\n23) Draw5PlayAll: Trade B2 R2 G2\n\n24) agentofchaos: Trade Y2 R2 Doomchasm\n\n25) Draw5PlayAll: Build B2 G2\n\n26) agentofchaos: Build B2 Doomchasm\n\n27) Draw5PlayAll: Trade B1 G1 Draw5playall\n\n28) agentofchaos: Trade B2 Y2 Doomchasm\n\n29) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n30) agentofchaos: Build B1 Doomchasm\n\n31) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n32) agentofchaos: Trade G1 R1 Agentofchaos\n\n33) Draw5PlayAll: Build G1 B2\n\n34) agentofchaos: Build G2 Agentofchaos\n\n35) Draw5PlayAll: Build Y1 Draw5playall\n\n36) agentofchaos: Move R2 Doomchasm B2\n\n37) Draw5PlayAll: Build G2 B2\n\n\tDraw5PlayAll: Resistance may be futile, but we would rather DIE than face your wrath!\n\nHomeworlds Online (SDG# 30446)\nVariants: "Unrated"\nStarted: 2016.12.10, Ended: 2016.12.10\nParticipants: Draw5PlayAll (S), Amuzet (N)\nWinner: Draw5PlayAll\n\n1) Amuzet: Homeworld B1 Y2 G3\n\n2) Draw5PlayAll: Home R1 B3 G3\n\tDraw5PlayAll: Good luck.\n\n3) Amuzet: Discover G3 Amuzet G3 A_zerl\n\tAmuzet: you to\n\n\tAmuzet: oh god, this is my first game! I forgot that would do that\n\tDraw5PlayAll: I just plain do not understand. A few weeks ago I wanted to resign by blowing my homeworld, and it blocked the move.\r\n\r\nRematch?\n\nHomeworlds Online (SDG# 30877)\nVariants: "Hard time"\nStarted: 2016.12.10, Ended: 2017.1.7\nParticipants: Aristos (S), MagicJohn (N)\nWinner: Aristos\n\n1) MagicJohn: Homeworld G1 B2 B3 *\n\tAristos: Having bought out, assimilated, or conquered the last opposing tribe on the planet, the leaders of the Aristos Empire turn their eyes skyward. "Are we alone? Might there be other worlds than this?"\n\tMagicJohn: An acolyte magician, while immersed in his meditations, experiences visions of past generations and a strangely physical plane of existance. He rises, bumping his head on an overhanging light source and staggers into a new world. Rubbing his head, he sees a diversity of life and is stunned by a cacophony society with its sights, sounds and...touch. As he watches in disbelief, he catches phrases of sound with timber he has never before experienced... "Momma told me not to come......." \n\n2) Aristos: Homeworld B3 Y2 G3\n\tDraw5PlayAll: Was this an accident?\n\n3) MagicJohn: Build B1 Magicjohn\n\tAristos: A night of celebration around the world as the starship shipyards complete construction of the first interstellar Aristos ship!\n\n4) Aristos: Build G1 Aristos\n\tMagicJohn: A ship appears over the acolyte's head and he wonders what strange magic he is witnessing...\n\n5) MagicJohn: Trade B1 Y1 Magicjohn\n\n6) Aristos: Discover G1 Aristos B1 Leaf\n\tMagicJohn: As the acolyte, MJ, raises his hand to shield his eyes the ship he is viewing changes configuration and speeds across the sky in a burst of speed. The crowd around him gasps. All look about in shock and awe. He hears melodious sounds wafting through the air asking "Do you believe in magic....?" \n\n7) MagicJohn: Build Y1 Magicjohn\n\tAristos: "And so we sail into the void." -- Parting words of Captain Zane on the first interstellar mission. \n\n8) Aristos: Build G1 Aristos\n\n9) MagicJohn: Discover Y1 Magicjohn R3 Awakening\n\tMagicJohn: MJ gazes at the ship and feels as if his own body is somehow connected to the machine. He refocuses his eyes and, to his astonishment, sees the landscape below. He imagines a distant planet, blinks, and..... \n\n10) Aristos: Build G2 Leaf\n\tMagicJohn: The captain of Galaxy Rider 347 Yellow begins to show signs of consternation with his navigation crew..\n\n11) MagicJohn: Build Y1 Magicjohn\n\tAristos: Deep space ship foundry established. Restlessness on homeworld about cost of space program soothed now that offworld resources can be used. Collapse of parliament averted. \n\n12) Aristos: Trade G2 Y2 Leaf\n\tMagicJohn: MJ claps hands and Galaxy Rider 348 appears overhead. Beings on the street look nervously about and begin to drift towards protected locations. The Captain of Galaxy Rider 347 contacts Siri..\n\n13) MagicJohn: Discover Y1 Awakening G2 Rebirth\n\tAristos: "Captain, the Senate Appropriations Committee wants to know why you wasted an entire year's budget on a new paint job."\r\n"For morale. I was sick of green."\r\n"That's hardly a good use of government funds."\r\n"Keep talking, boy, and I'll paint the bridge red..."\r\n"Yessir. I'll let the Committee know."\n\n14) Aristos: Sacrifice G3 Aristos\nBuild G2 Leaf\nBuild G2 Leaf\nBuild G3 Aristos\n\tMagicJohn: MJ blinks as he imagines a lush green world of exotic life. As the material world bends to his whim, he affects a serene smile. The captain of Galaxy Rider 348, not so much... \n\n15) MagicJohn: Move Y1 Rebirth Leaf\n\tAristos: "We don't know what happened. Some weird wave of energy came through. Every member of the crew swears they heard a voice say, 'I imagine a green world full of exotic life.' And suddenly, the ships were replicated. And the replicas held alternate versions of the crews! If we weren't beyond such superstition, I'd say it was magic!" -- First Mate (version 1) Yenith Iskander of Starship Zen, reporting on The Miracle At Leaf.\n\n16) Aristos: Trade G2 R2 Leaf\n\tMagicJohn: The captain of Galaxy rider 347 searches for a way home. Flying from one quadrant to the next, he finds 347 surrounded by a virtual Armada of alien ships. He addresses his crew, "Prepare to grin and wave". \n\n17) MagicJohn: Build Y2 Magicjohn\n\tAristos: "Combat stations! First contact protocol!"\r\n"What if they come in peace?"\r\n"That's great! We don't!"\n\n18) Aristos: Attack Y1 Leaf\n\n19) MagicJohn: Trade Y2 R2 Magicjohn\n\n20) Aristos: Sacrifice G3 Aristos\nBuild G2 Aristos\nBuild G2 Leaf\nBuild G3 Aristos\n\n21) MagicJohn: Trade B3 G3 Magicjohn\n\tAristos: Ping!\n\tDraw5PlayAll: I am not sure if I like how I can do that to other people's games.\n\tAristos: Draw5PlayAll: It is sometimes useful if an observer notices a rule not Implemented correctly. It does no harm to have an admin look in. It's not like you can force moves or anything. :-)\n\tMagicJohn: I have been playing so badly that I really have no good options. If someone wants to discuss the rules issue it's fine with me. I am trying to play on but it's pretty pointless. Too many brain-farts in one game......\n\n22) Aristos: Discover G2 Leaf Y3 Knock\n\n23) MagicJohn: Discover Y1 Magicjohn R3 No Hope\n\tAristos: I think Draw5 was just playing with the button. \n\tMagicJohn: One might think I've been doing something like that for most of this game.....\n\tDraw5PlayAll: In reality, I was using it as a ping, since it emails the players. It sometimes does not work if the person chose Private Messages instead of Email Notifications.\n\n24) Aristos: Sacrifice G3 Aristos\nBuild G3 Aristos\nBuild G3 Knock\nBuild R1 Leaf\n\n\tAristos: Market crashes on news that known supplies of rare element "green" have been exhausted! New sources urgently sought!\n\nHomeworlds Online (SDG# 30883)\nStarted: 2016.12.10, Ended: 2017.1.1\nParticipants: Simpsonsurge (S), Joe_Hill (N)\nWinner: Joe_Hill\n\n1) Joe_Hill: H Y3 B1 G3\n\tJoe_Hill: Hey Eric!\n\n2) Simpsonsurge: Homeworld R2 G3 B3\n\tSimpsonsurge: Hey! No idea what I'm doing!! Hahaha\n\n3) Joe_Hill: B G1 Joe_hill\n\tJoe_Hill: That makes two of us. This game is difficult. \n\n4) Simpsonsurge: Build B1 Simpsonsurge\n\n5) Joe_Hill: T G1 Y1 Joe_hill\n\tSimpsonsurge: It takes me 30 minutes to figure out the right command for what I want to do. But it looks like after a game or two it gets a lot easier. \n\tJoe_Hill: Yea. Each new game you have to learn all the weird new commands for each. In this game you can abbreviate, which helps. So build becomes b and trade t, etc.\n\n6) Simpsonsurge: T B1 G1 Simpsonsurge\n\n7) Joe_Hill: B G1 Joe_hill\n\tDraw5PlayAll: I use the "View All Moves" whenever possible, but *obviously* it is not for Homeworlds...\n\tJoe_Hill: Some games that works very well for. I agree.\n\tSimpsonsurge: That would be a great tool for a newbie. \n\n8) Simpsonsurge: Build B1 Simpsonsurge\n\tDraw5PlayAll: It could work for homeworlds if it used multiple select options, e.g. the left one says Move, Trade, Build, (no attack since it is impossible here) Sac, Catastrophe, pass?\n\n9) Joe_Hill: T G1 B1 Joe_hill\n\n10) Simpsonsurge: Trade B3 Y3 Simpsonsurge\n\n11) Joe_Hill: B G1 Joe_hill\n\n12) Simpsonsurge: Discover B1 Simpsonsurge Y1 Planetx\n\n13) Joe_Hill: Build G1 Joe_hill\n\n14) Simpsonsurge: B G2 Simpsonsurge\n\n15) Joe_Hill: D G1 Joe_hill Y2 Pan\n\n16) Simpsonsurge: M G1 Simpsonsurge Planetx\n\n17) Joe_Hill: M B1 Joe_hill Pan\n\n18) Simpsonsurge: B Y1 Simpsonsurge\n\n19) Joe_Hill: Build Y2 Joe_hill\n\n20) Simpsonsurge: M B1 Planetx Simpsonsurge\n\n21) Joe_Hill: Trade Y1 R1 Joe_hill\n\n22) Simpsonsurge: Trade Y3 B3 Simpsonsurge\n\n23) Joe_Hill: Build G2 Joe_hill\n\n24) Simpsonsurge: M B1 Simpsonsurge Planetx\n\n25) Joe_Hill: Trade G2 B2 Joe_hill\n\n26) Simpsonsurge: B G2 Simpsonsurge\n\n27) Joe_Hill: S Y2 Joe_hill\nM G1 Pan Planetx\nM G1 Planetx Simpsonsurge\nCatastrophe Simpsonsurge G\n\n28) Simpsonsurge: B G1 Planetx\n\n29) Joe_Hill: Move G1 Joe_hill Pan\n\n30) Simpsonsurge: M G1 Planetx Simpsonsurge\n\n31) Joe_Hill: Build G2 Pan\n\n32) Simpsonsurge: B G2 Planetx\n\n33) Joe_Hill: B G2 Joe_hill\n\n34) Simpsonsurge: T G2 R2 Planetx\n\n35) Joe_Hill: Trade G3 R3 Joe_hill\n\n36) Simpsonsurge: M R2 Planetx Pan\n\n37) Joe_Hill: M R3 Joe_hill Pan\n\n38) Simpsonsurge: M R2 Pan Joe_hill\n\n39) Joe_Hill: A R2 Joe_hill\n\n40) Simpsonsurge: B B2 Simpsonsurge\n\n41) Joe_Hill: M R3 Pan Planetx\n\n42) Simpsonsurge: T B2 R2 Simpsonsurge\n\tJoe_Hill: My blue or green 2 can attack you even though I only have a r1\n\tJoe_Hill: Or because I have an r1\n\n43) Joe_Hill: A B1 Planetx\n\n44) Simpsonsurge: M G1 Planetx Pan\n\n45) Joe_Hill: T G2 Y2 Pan\n\n46) Simpsonsurge: M R2 Simpsonsurge Planetx\n\n47) Joe_Hill: A R2 Planetx\n\n48) Simpsonsurge: B G2 Pan\n\n49) Joe_Hill: M G1 Pan Planetx\n\n50) Simpsonsurge: B G2 Simpsonsurge\n\n51) Joe_Hill: M R2 Joe_hill Pan\n\n52) Simpsonsurge: T G1 R1 Simpsonsurge\n\n53) Joe_Hill: Sacrifice Y2 Pan\nMove R3 Planetx Simpsonsurge\nMove R2 Planetx Simpsonsurge\nCatastrophe Simpsonsurge R\n\n\tJoe_Hill: good game Eric.\n\nHomeworlds Online (SDG# 30885)\nStarted: 2016.12.10, Ended: 2017.2.27\nParticipants: Amuzet (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) Amuzet: Homeworld Y1 G2 B3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: First game, right?\r\n\r\nMake sure you build a B1 before exploring. And it would be better to send the small itself out, because leaving your homeworld without a large ship can be dangerous.\n\n4) Amuzet: Build B1 Amuzet\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\tAmuzet: Oh you can only build ships of the same color!\n\tDraw5PlayAll: Yeah. If you wanted to build say reds, you first have to trade for it, unless you started with a red (you didn't) or attack one of mine (which is usually impractical).\n\n6) Amuzet: Discover B1 Amuzet B3 Berilium\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Amuzet: Build B1 Amuzet\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) Amuzet: Trade B3 R3 Amuzet\n\tAmuzet: Now I realize my mistake in sending a blue ship to a blue system.\n\n11) Draw5PlayAll: Build B2 Draw5playall\n\n12) Amuzet: Build B2 Amuzet\n\n13) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\tDraw5PlayAll: Trade B1 G1 Berilium\n\n14) Amuzet: Trade B1 G1 Berilium\n\n15) Draw5PlayAll: Build B1 G2\n\n16) Amuzet: Build G1 Berilium\n\n17) Draw5PlayAll: Trade B2 Y2 G2\n\n18) Amuzet: Trade G1 Y1 Berilium\n\n19) Draw5PlayAll: Build Y2 G2\n\n20) Amuzet: Build B2 Amuzet\n\n21) Draw5PlayAll: Build B2 Draw5playall\n\n22) Amuzet: Move B2 Amuzet Berilium\n\n23) Draw5PlayAll: Build B3 G2\n\n24) Amuzet: Discover B2 Berilium G1 Breilium\n\n25) Draw5PlayAll: Discover B2 Draw5playall G2 G2'\n\n26) Amuzet: Build G1 Berilium\n\n27) Draw5PlayAll: Build G3 Draw5playall\n\n28) Amuzet: Build G3 Berilium\n\n29) Draw5PlayAll: Trade Y2 R2 G2\n\n30) Amuzet: Sacrifice G1 Berilium\nBuild Y2 Berilium\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G2\nBuild Y3 Draw5playall\nBuild R1 G2\n\n32) Amuzet: Sacrifice Y2 Berilium\nDiscover G3 Berilium R2 Hola\nMove Y1 Berilium Hola\n\n33) Draw5PlayAll: Move Y3 Draw5playall G2'\n\n34) Amuzet: Sacrifice G3 Hola\nBuild G1 Berilium\nBuild G3 Berilium\nBuild Y2 Hola\n\n35) Draw5PlayAll: Build G3 Draw5playall\n\n36) Amuzet: Sacrifice B2 Amuzet\nTrade B2 R2 Breilium\nTrade G1 R1 Berilium\n\n37) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 G2'\nBuild R3 G2\n\n38) Amuzet: Sacrifice Y2 Hola\nMove G3 Berilium G2'\nMove R1 Berilium G2\nCatastrophe G2 Red\n\n39) Draw5PlayAll: Sacrifice Y2 G2\nMove Y3 G2' Berilium\nDiscover Y3 G2' R3 R3\n\tDraw5PlayAll: I know very well that you can bomb the reds.\n\n40) Amuzet: Sacrifice G3 G2'\nBuild Y2 Hola\nBuild B2 Amuzet\nBuild R1 Breilium\n\n41) Draw5PlayAll: Trade B1 R1 G2\n\n42) Amuzet: Trade B1 G1 Amuzet\n\n43) Draw5PlayAll: Build G3 Draw5playall\n\n44) Amuzet: Build G3 Berilium\n\n45) Draw5PlayAll: Sacrifice R1 G2\nAttack G3S Berilium\n\n46) Amuzet: Sacrifice Y2 Hola\nMove R2 Breilium G2\nMove Y1 Hola Breilium\n\n47) Draw5PlayAll: Move Y2 G2 Berilium\n\n48) Amuzet: Trade G1 B1 Berilium\n\n49) Draw5PlayAll: Trade Y2 R2 Berilium\n\n\tDraw5PlayAll: Hello \n\tDraw5PlayAll: Sadly, the empire appears to have faded away, and ours has ordered a cease fire. Their president is dead with no replacement and no one is DOING anything.\n\nHomeworlds Online (SDG# 30818)\nVariants: "Hard time"\nStarted: 2016.12.10, Ended: 2017.2.10\nParticipants: agentofchaos (S), Draw5PlayAll (N), Amuzet (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) Amuzet: Homeworld B1 R2 G3\n\n3) agentofchaos: Homeworld R3 B2 G3\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Amuzet: Build G1 Amuzet\n\n6) agentofchaos: Build G1 Agentofchaos\n\n7) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n8) Amuzet: Trade G1 Y1 Amuzet\n\n9) agentofchaos: Build G1 Agentofchaos\n\n10) Draw5PlayAll: Build B1 Draw5playall\n\n11) Amuzet: Build G1 Amuzet\n\n12) agentofchaos: Trade G1 B1 Agentofchaos\n\n13) Draw5PlayAll: Trade B1 Y1 Draw5playall\n\n14) Amuzet: Discover G1 Amuzet Y3 Alley\n\n15) agentofchaos: Trade G1 Y1 Agentofchaos\n\n16) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n17) Amuzet: Build G1 Alley\n\n18) agentofchaos: Discover Y1 Agentofchaos G1 Urizen\n\n19) Draw5PlayAll: Build B1 G2\n\n20) Amuzet: Build G1 Amuzet\n\n21) agentofchaos: Build G2 Agentofchaos\n\n22) Draw5PlayAll: Build G2 Draw5playall\n\n23) Amuzet: Sacrifice G3 Amuzet\nBuild G2 Alley\nBuild G3 Amuzet\nBuild G3 Amuzet\n\n24) agentofchaos: Build B2 Agentofchaos\n\tAmuzet: God it took me a day to figure out what I was doing wrong, thank god it doesn't let you sac a g1 to build 3 G ships! XD\n\n25) Draw5PlayAll: Build B2 G2\n\n26) Amuzet: Sacrifice G3 Amuzet\nBuild G3 Alley\nBuild Y1 Amuzet\nBuild Y2 Amuzet\nCatastrophe Alley Green\n\n27) agentofchaos: Build Y2 Urizen\n\tAmuzet: My plan worked!\n\tDraw5PlayAll: Why did you blow your own ships like that?\n\n28) Draw5PlayAll: Trade B2 Y2 G2\n\n29) Amuzet: Sacrifice Y2 Amuzet\nDiscover G1 Amuzet B3 Aloha\nMove Y1 Amuzet Aloha\n\n30) agentofchaos: Trade B2 R2 Agentofchaos\n\n31) Draw5PlayAll: Trade B1 R1 G2\n\n32) Amuzet: Build Y2 Aloha\n\n33) agentofchaos: Trade G3 Y3 Agentofchaos\n\n34) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G2\nBuild Y3 Draw5playall\nBuild G1 Draw5playall\n\n35) Amuzet: Sacrifice G3 Amuzet\nBuild Y3 Amuzet\nBuild G1 Aloha\nBuild G2 Aloha\n\n36) agentofchaos: Build Y3 Agentofchaos\n\n37) Draw5PlayAll: Discover G2 Draw5playall B2 B2\n\n38) Amuzet: Sacrifice Y2 Aloha\nMove G1 Aloha Amuzet\nMove G1 Aloha G2\n\n39) agentofchaos: Build G3 Agentofchaos\n\n40) Draw5PlayAll: Attack G1E G2\n\n41) Amuzet: Build Y2 Aloha\n\n42) agentofchaos: Move R2 Agentofchaos Urizen\n\n43) Draw5PlayAll: Build G3 B2\n\n44) agentofchaos: Move R2 Urizen G2\n\n45) Draw5PlayAll: Attack R2S G2\n\n46) agentofchaos: Trade G2 R2 Agentofchaos\n\n47) Draw5PlayAll: Sacrifice Y2 G2\nMove G3 B2 Aloha\nMove G3 Aloha Amuzet\n\n48) agentofchaos: Discover Y3 Agentofchaos R1 Cashzone\n\n49) Draw5PlayAll: Attack Y3E Amuzet\n\n50) agentofchaos: Build Y2 Agentofchaos\n\n51) Draw5PlayAll: Attack Y1E Amuzet\n\n52) agentofchaos: Build G2 Agentofchaos\n\n53) Draw5PlayAll: Build G3 Draw5playall\n\n\nHomeworlds Online (SDG# 30786)\nStarted: 2016.12.15, Ended: 2016.12.23\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\tDraw5PlayAll: Not sure what to do about phoenixian. I want the game to continue legitimately (killing him would make you win by force), but it has been three weeks.\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Hmm. Yeah. I think that's just the risk of 3P and 4P games and there's not much to be done about it. Best to stick to 2P games so stuff like that doesn't occur.\n\n4) Felix: Build G1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: That game is active again. I think it is even your turn.\n\n6) Felix: Trade G1 R1 Felix\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) Felix: Build R1 Felix\n\tDraw5PlayAll: If you freeze red, I will freeze yellow!\n\tFelix: Okay. Good luck :)\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) Felix: Build R2 Felix\n\n11) Draw5PlayAll: Discover Y1 Draw5playall G2 G2\n\n12) Felix: Trade R2 Y2 Felix\n\n13) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: Rats.\n\n14) Felix: Discover Y2 Felix G1 Rim\n\n15) Draw5PlayAll: Build Y3 G2\n\n16) Felix: Build Y3 Rim\n\n17) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n18) Felix: Move Y2 Rim G2\n\n19) Draw5PlayAll: Discover Y1 G2 B1 B1\n\tDraw5PlayAll: DaneHbogh yIta'?\n\n20) Felix: Build Y2 G2\n\tDraw5PlayAll: First ever: d Y1 G2 B1 B1\n\tFelix: You've gotten less creative with your planet names :P\n\n21) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack Y2 G2\nAttack Y2 G2\n\tDraw5PlayAll: I was never that creative anyway -- usually just reusing the same stuff. And when I had a new name, it wasn't that good, except Qo'noS which I rarely get to do anyway.\n\n22) Felix: Build Y3 Rim\n\n23) Draw5PlayAll: Move Y2 G2 B1\n\n24) Felix: Move Y3 Rim G2\n\tFelix: Why do you rarely get to use that?\n\tDraw5PlayAll: Reserved for red stars\n\n25) Draw5PlayAll: Sacrifice Y2 B1\nMove Y3 G2 B1\nMove Y1 Draw5playall G2\n\tFelix: Is that a real name from something? I use Bazoik all the time from Chex Quest and I use it for other colored planets even though Bazoik is red.\n\tDraw5PlayAll: Should I, or should I not...\n\n26) Felix: Move Y3 G2 B1\n\n27) Draw5PlayAll: Sacrifice Y3 B1\nMove Y1 B1 Felix\nMove Y1 G2 B1\nMove Y1 B1 Felix\n\tDraw5PlayAll: I hope this works.\n\n28) Felix: Sacrifice G3 Felix\nBuild Y2 B1\nBuild Y3 Rim\nBuild R2 Felix\n\n29) Draw5PlayAll: Discover Y2 G2 B1 B1'\n\tFelix: Interesting move. I hope the intrigue of mine matches it.\n\tDraw5PlayAll: Dang, it failed.\n\n30) Felix: Discover Y3 B1 G2 Oroset\n\n31) Draw5PlayAll: Trade Y2 R2 B1'\n\n32) Felix: Sacrifice R2 Felix\nAttack Y1 Felix\nAttack Y1 Felix\n\tDraw5PlayAll: South's ship Y3 was not sacrificed in the rim system. South did not move their Y3 ship from rim to Oroset. The rim system was not abandoned to the hyperspatial flux. South did not move their Y3 ship from Oroset to Draw5PlayAll. South did not move their Y3 ship from Oroset to Draw5PlayAll.\n\tDraw5PlayAll: I see no plans for you to get three 3-point ships in my homeworld any time soon.\n\n33) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R2 B1' Felix\n\n34) Felix: Sacrifice Y3 Rim\nDiscover Y2 B1 Y2 Implement\nMove Y3 Rim Felix\nDiscover Y1 Felix Y1 Outage\n\n35) Draw5PlayAll: Move R2 Felix Outage\n\tDraw5PlayAll: You might be lost. You cannot get a Y3 to your homeworld.\n\n36) Felix: D Y1 Outage B2 Brinks\n\tFelix: :)\n\n37) Draw5PlayAll: Build G1 Draw5playall\n\n38) Felix: B Y3 Oroset\n\tDraw5PlayAll: Thanks for the escape system!\n\n39) Draw5PlayAll: Move R2 Outage Brinks\n\n40) Felix: D Y1 Brinks Y1 Regret\n\n41) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild R2 Brinks\n\n42) Felix: Trade R1 G1 Felix\n\n\tFelix: You can't move at all!\n\tDraw5PlayAll: I k&#324;ow. There is no way to do anythîng.\n\nHomeworlds Online (SDG# 30953)\nVariants: "Hard time"\nStarted: 2016.12.17, Ended: 2017.1.3\nParticipants: Subhan64 (S), Remneb (N)\nWinner: Subhan64\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) Subhan64: Homeworld B3 G2 R3\n\n3) Remneb: Build G1 Remneb\n\n4) Subhan64: Build R1 Subhan64\n\n5) Remneb: Trade G1 R1 Remneb\n\n6) Subhan64: Build R2 Subhan64\n\n7) Remneb: Build G1 Remneb\n\n8) Subhan64: Trade R2 Y2 Subhan64\n\n9) Remneb: Trade G1 Y1 Remneb\n\n10) Subhan64: Build R2 Subhan64\n\n11) Remneb: Build R2 Remneb\n\n12) Subhan64: Build Y1 Subhan64\n\n13) Remneb: Discover R2 Remneb Y3 Rogue One\n\n14) Subhan64: Discover R1 Subhan64 G1 Kermit\n\n15) Remneb: Trade R1 G1 Remneb\n\n16) Subhan64: Trade Y2 B2 Subhan64\n\n17) Remneb: Move R2 Rogue Kermit\n\n18) Subhan64: Sacrifice Y1 Subhan64\nDiscover R1 Kermit Y3 Bb\n\n19) Remneb: Build Y1 Remneb\n\n20) Subhan64: Build B1 Subhan64\n\n21) Remneb: Discover Y1 Remneb Y3 Drone\n\n22) Subhan64: Trade B2 G2 Subhan64\n\n23) Remneb: Move G1 Remneb Drone\n\n24) Subhan64:\nBuild G1 Subhan64\n\n25) Remneb: Build G2 Remneb\n\n26) Subhan64: Trade G2 Y2 Subhan64\n\n27) Remneb: Build G2 Drone\n\n28) Subhan64: Build G3 Subhan64\n\n29) Remneb: Build G3 Remneb\n\n30) Subhan64: Sacrifice Y2 Subhan64\nMove G1 Subhan64 Kermit\nMove G1 Kermit Bb\n\n31) Remneb: Move Y1 Drone Kermit\n\n32) Subhan64: Move G1 Bb Remneb\nCatastrophe Remneb Green\n\n\tRemneb: Thanks for the game.\n\tSubhan64: Thanks!\r\n\n\nHomeworlds Online (SDG# 30427)\nStarted: 2016.12.18, Ended: 2017.1.28\nParticipants: Babamots (S), Draw5PlayAll (W), Felix (N), mi_spero (E)\nWinner: Babamots\n\n1) Felix: Homeworld R2 B3 G3\n\tmi_spero: Good luck and have fun! \n\tmi_spero: Hi, Draw5. :) Can teammates coordinate via pm?\n\tDraw5PlayAll: Hold on.\n\tDraw5PlayAll: (Apparently the times were rounded.)\r\n\r\nOk, so this is an unofficial team mode, So it is Felix & MiSpero vs Babamots and me.\r\n\r\nYes, PM communication is legal. However, we have a more pressing issue: Babamots has not signed in for the last seven weeks. I have a trick to try to spur action, but I do not know if it will work. If this fails, we can scrap this game and try to find a more active player.\n\tmi_spero: @Draw5PlayAll feel free to invite me if we're remaking.\n\tDraw5PlayAll: The call admin thing was designed to just do that, but nowadays Aaron is busy and we use it to send emails to all players in the game.\n\tDraw5PlayAll: Oh, and make sure we actually give Babamots a chance.\n\tmi_spero: Ok. And nice exploit with the call admin! It's always fun to figure out ways to use things in ways they weren't originally intended. :D\n\tBabamots: I'm not a great player, but I don't think I'll totally bore you either. I will have less time to play while I'm traveling for the holidays, but I won't time out.\n\tBabamots: I'm not a great player, but I don't think I'll totally bore you either. I will have less time to play while I'm traveling for the holidays, but I won't time out.\n\tBabamots: I'm not a great player, but I don't think I'll totally bore you either. I will have less time to play while I'm traveling for the holidays, but I won't time out.\n\tBabamots: I'm not a great player, but I don't think I'll totally bore you either. I will have less time to play while I'm traveling for the holidays, but I won't time out.\n\tBabamots: Thanks for letting me stay :-).\n\tFelix: Cool! Have fun all! MiSpero, feel free to message me so we can coordinate our plan of attack!\n\n2) mi_spero: Homeworld B2 Y1 G3\n\tmi_spero: @Felix, I think I'm with Draw5.\n\tDraw5PlayAll: I originally intended opposite sides to be teammates, so yes, MiSpero is with Felix.\n\tDraw5PlayAll: Belay that! I was looking at the clocks, not the positions. Yes, MiSpero *is* on my team.\n\tmi_spero: Ok; that makes sense. :D That would be how I would intuitively interpret it too.\n\tmi_spero: So its me and Felix vs Draw and Babamots. Gl hf!\n\n3) Babamots: Homeworld G3 Y1 B3\n\tDraw5PlayAll: No, Felix and Babamots are on a team. Felix is north and Babamots is south.\r\n\r\nI got confused by the clocks.\n\tmi_spero: Oh, ok.\n\tmi_spero: Well, now that's sorted out. :D\n\n4) Draw5PlayAll: Homeworld R1 B2 G3\n\n5) Felix: Build G1 Felix\n\n6) mi_spero: Build G1 Mi_spero\n\tFelix: Good luck!\n\n7) Babamots: Build B1 Babamots\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: I wish I knew if Felix and Babamots were planning anything through secret messages...\n\n9) Felix: Trade G1 Y1 Felix\n\tmi_spero: :D\n\tmi_spero: Well, I think it would be GTO to do so, therefore if we act as if they are and play in a maximally exploitative way, which will also be GTO, they can therefore not gain any advantage by deviating from the GTO which we assumed they were enacting. :D So we don't need to know. :D\n\n10) mi_spero: Discover G1 Mi_spero Y3 Tarci\n\n11) Babamots: Build B1 Babamots\n\tmi_spero: "tarci" ['tar-she] means: "x1 is a star/sun with stellar properties x2." in lojban.\n\tmi_spero: so "ta tarci lo pelxu" would mean "That star/sun has stellar property 'yellow'" or "That star is yellow".\n\tmi_spero: I think. lojban grammar is hard.\n\n12) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n13) Felix: Build G1 Felix\n\tDraw5PlayAll: vIH ma'eH!\n\tBabamots: Iä! Iä!\n\tmi_spero: test i I l L\n\tmi_spero: @Babamots Is that Na'vi?\n\tBabamots: That's the cheer of Cthulhu's worshippers.\n\n14) mi_spero: Build G1 Mi_spero\n\tFelix: I sprek engrish.\n\tDraw5PlayAll: We all seem to be speaking different languages. Literally.\n\tDraw5PlayAll: \n\tDraw5PlayAll: Well, more like writing or typing.\n\tmi_spero: go'i (literally repeats the last statement in the conversation)\n\tmi_spero: And pronounced "'Go-he". (It's lojban)\n\n15) Babamots: Trade B1 R1 Babamots\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) Felix: Trade G1 B1 Felix\n\tDraw5PlayAll: yo' weghbogh qach maH.\n\tmi_spero: I think I'm starting to get the hang of pronouncing the Klingon. Still don't know what it means, though.\n\tDraw5PlayAll: What property separates the SDG depictions of the R1, G2, B1, Y1, and Y3 ships from the others? \n\tmi_spero: what?\n\n18) mi_spero: Build G1 Tarci\n\n19) Babamots: Discover B1 Babamots G2 Ferenginar\n\tmi_spero: @Draw5PlayAll Ahh!! I get it! They have squares instead of dots?\n\n20) Draw5PlayAll: Discover G1 Draw5playall B3 B3\n\tDraw5PlayAll: Is that the Ferengi from Star Trek TNG?\n\n21) Felix: B B1 Felix\n\tDraw5PlayAll: ...keep forgetting I have a 1-2 when I have a 1-3 in every other active game (except one 2-3).\n\tBabamots: Ferenginar is in fact the Ferengi homeworld. It rains almost everywhere almost all the time.\n\n22) mi_spero: Trade G1 B1 Mi_spero\n\tBabamots: Happy holiday(s) everyone! Travel safe if that's what you're up to!\n\tmi_spero: Thanks. Sorry for the slow responses, we're in Wisconsin with family and I don't always have access to the Internet.\n\n23) Babamots: Build B1 Ferenginar\n\n24) Draw5PlayAll: Build G1 B3\n\n25) Felix: T B1 R1 Felix\n\n26) mi_spero: Build G1 Mi_spero\n\n27) Babamots: Trade B1 Y1 Ferenginar\n\n28) Draw5PlayAll: Build Y2 Draw5playall\n\n29) Felix: Build Y2 Felix\n\n30) mi_spero: Build G2 Tarci\n\n31) Babamots: Build Y2 Ferenginar\n\n32) Draw5PlayAll: Move Y2 Draw5playall B3\n\n33) Felix: Build G2 Felix\n\n34) mi_spero: Build G2 Mi_spero\n\n35) Babamots: Discover Y1 Ferenginar G3 Kesprytt\n\n36) Draw5PlayAll: Trade G1 R1 B3\n\n37) Felix: Discover G2 Felix B1 Threat\n\tDraw5PlayAll: Suq nuH.\r\n\r\nMiSpero please do not move until you get my message...\n\n38) mi_spero: Discover G2 Mi_spero B3 Bandulami_spero\n\n39) Babamots: Build B1 Ferenginar\n\tmi_spero: lookup bandu on vlasisku if you're curious about the name.\n\tmi_spero: I wanted to say "bandu zo'e la fileks", but there wasn't enough room.\n\tDraw5PlayAll: Another gimsu? I hope I spelled that correctly...\n\tDraw5PlayAll: One thing I hate about Klingon is how hard it is to get a noticeable ' sound without sounding too obvious.\n\n40) Draw5PlayAll: Build G1 Draw5playall\n\tmi_spero: In lojban the ' character makes the English h sound and the . makes the Klingon ' sound, while the x makes the Klingon GH sound.\n\tmi_spero: Gismu.\n\tDraw5PlayAll: Oh no. Lojban has that thing too?\n\n41) Felix: Sacrifice Y1 Felix\nMove G2 Threat Tarci\nCatastrophe Tarci Green\n\tmi_spero: @Draw5PlayAll yep. Glottal stop, velar fricative, the works. :D\n\tmi_spero: And it occurs pretty often. .i (glottal stop, i as in eel) denotes the beginning of a sentence. :D\n\n42) mi_spero: Build G1 Bandulami_spero\n\n43) Babamots: Move B1 Ferenginar Kesprytt\n\n44) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: Told you...\n\n45) Felix: Build Y2 Felix\n\tDraw5PlayAll: paw weghbogh Duj tugh!\n\n46) mi_spero: Trade G2 R2 Bandulami_spero\n\tmi_spero: Yeah, though to be fair, at that point I had to choose between risking my terciary star and my homeworld in green tech.\n\n47) Babamots: Build B1 Kesprytt\n\n48) Draw5PlayAll: Discover G1 Draw5playall B3 B3'\n\tDraw5PlayAll: MiSpero please... ugh. We need blue and red, but it is harder for me to get blue.\n\n49) Felix: Build G1 Felix\n\tmi_spero: Considerations like that are not even on my radar, sorry. I can kindof sortof handle that sort of thing in two player games, but I've messed it up in like every game I've played.\n\n50) mi_spero: Build G2 Bandulami_spero\n\n51) Babamots: Sacrifice Y2 Ferenginar\nMove B1 Kesprytt Mi_spero\nMove B1 Kesprytt Mi_spero\nCatastrophe Mi_spero B\n\n52) Draw5PlayAll: Build G2 Draw5playall\n\tBabamots: Sorry for the delay. Travel was crazy and I've been getting settled back in for a couple of days.\n\n53) Felix: Sacrifice Y2 Felix\nMove G1 Felix Mi_spero\nMove G3 Felix Mi_spero\nCatastrophe Mi_spero Green\n\tDraw5PlayAll: Oh no.\n\tDraw5PlayAll: Hmmm... counting on Felix not giving up his only large ship to destroy mi_spero.\n\n54) Babamots: Build Y1 Kesprytt\n\n55) Draw5PlayAll: Trade G2 B2 Draw5playall\n\tFelix: Shrug. Risky, but probably worth it! Sorry mi_spero! Go get him, Babamots!\n\n56) Felix: Trade R1 G1 Felix\n\tDraw5PlayAll: I think I will destroy Felix, but then Babamots wilL destroy my own homeworld.\n\n57) Babamots: Move Y1 Kesprytt Ferenginar\n\tBabamots: That would be kind of convenient since the system will only know that the game over when one player is left. If two allies were left, I guess we'd have to time it out or resign.\n\n58) Draw5PlayAll: Move B2 Draw5playall Kesprytt\n\n59) Felix: Build Y2 Felix\n\n60) Babamots: Build Y2 Kesprytt\n\n61) Draw5PlayAll: Sacrifice R1 B3\nAttack Y2S Kesprytt\n\n62) Felix: Discover Y2 Felix G1 Roam\n\tDraw5PlayAll: Eek.\n\n63) Babamots: Build Y2 Kesprytt\n\n64) Draw5PlayAll: Build Y3 Kesprytt\nCatastrophe Kesprytt Y\n\n65) Felix: Build Y1 Felix\n\n66) Babamots: Build Y2 Ferenginar\n\n67) Draw5PlayAll: Build G2 Draw5playall\n\n68) Felix: Discover Y2 Felix R1 Net\n\n69) Babamots: Move Y2 Ferenginar Bandulami_spero\n\n70) Draw5PlayAll: Build G2 B3\n\n71) Felix: Build Y2 Roam\n\n72) Babamots: Build Y3 Ferenginar\n\n73) Draw5PlayAll: Build Y3 B3\n\n74) Felix: Build Y3 Felix\n\tDraw5PlayAll: nooooooooooo\n\n75) Babamots: Sacrifice R1 Babamots\nAttack G2E Bandulami_spero\n\n76) Draw5PlayAll: Move Y1 Draw5playall B3'\n\n77) Felix: Move Y2 Roam B3\n\tFelix: Yay!\n\n78) Babamots: Move Y1 Ferenginar B3\nCatastrophe B3 Y\n\tBabamots: I kind of wanted to finish a game without getting a green ship, but that's probably not the best strategy.\n\n79) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n80) Felix: Build G2 Felix\n\n81) Babamots: Trade Y2 R2 Bandulami_spero\n\n82) Draw5PlayAll: Build G2 Draw5playall\n\tDraw5PlayAll: I just hate how seats are alphabetical, not random. It is annoying in Sinister and 2v2.\n\tFelix: You should suggest it for SDG 2.0\n\n83) Felix: Discover G1 Felix B1 Spindar\n\n84) Babamots: Attack G1E Bandulami_spero\n\tBabamots: Really? Seating isn't random? That's a major flaw, especially in sinister.\n\tmi_spero: ditto\n\n85) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 B3\nBuild B1 Kesprytt\n\n86) Felix: Sacrifice Y1 Felix\nMove G1 Spindar B3\nCatastrophe B3 Green\n\n87) Babamots: Attack R2E Bandulami_spero\n\n88) Draw5PlayAll: Build Y1 Draw5playall\n\n89) Felix: Sacrifice Y3 Felix\nMove G2 Felix Roam\nMove G2 Roam B3'\nMove G2 B3' Draw5playall\n\n90) Babamots: Sacrifice Y3 Ferenginar\nMove G1 Bandulami_spero Draw5playall\nCatastrophe Draw5playall G\nMove G2 Bandulami_spero Draw5playall\nMove R2 Bandulami_spero Draw5playall\n\n91) Babamots: Trade R2 Y2 Draw5playall\n\tDraw5PlayAll: I hate that my teammate got booted so early.\n\tFelix: "Give in to your hatred. It will only make you stronger." - Emperor Palpatine.\r\n\r\nSuch is the nature of 2v2. \n\n92) Babamots: Attack R2W Draw5playall\n\n\tDraw5PlayAll: Why did my R2 need to be overtaken?\n\tBabamots: I don't know. The system said it was my turn, so I took a turn. I had hoped I could just keep playing with no opponents and use up all the pieces.\n\tFelix: Good game all! Pleasure being your teammate Babamots!\n\nHomeworlds Online (SDG# 30958)\nStarted: 2016.12.18, Ended: 2017.3.2\nParticipants: MagicJohn (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld R1 B3 G3\n\n2) MagicJohn: Homeworld Y2 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) MagicJohn: Build G1 Magicjohn\n\tDraw5PlayAll: The fortress, a classic.\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) MagicJohn: Build G1 Magicjohn\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) MagicJohn: Discover G1 Magicjohn R1 Antagonist\n\n9) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n10) MagicJohn: Discover G1 Magicjohn Y1 Empire\n\n11) Draw5PlayAll: Build Y1 Draw5playall\n\n12) MagicJohn: Build G1 Magicjohn\n\n13) Draw5PlayAll: Build G2 Draw5playall\n\n14) MagicJohn: Build G2 Empire\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\n\n16) MagicJohn: Build G3 Antagonist\n\n17) Draw5PlayAll: Discover Y2 Draw5playall B2 B2\n\n18) MagicJohn: Trade G3 Y3 Magicjohn\n\n19) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n20) MagicJohn: Sacrifice G3 Antagonist\nBuild G2 Antagonist\nBuild G3 Magicjohn\nBuild G3 Magicjohn\n\n21) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 B2\n\n22) MagicJohn: Discover G3 Magicjohn B1 Colony3\n\n23) Draw5PlayAll: Trade Y3 R3 B2\n\n24) MagicJohn: Trade G1 R1 Magicjohn\n\n25) Draw5PlayAll: Move G2 Draw5playall B2\n\n26) MagicJohn: Build R2 Magicjohn\n\n27) Draw5PlayAll: Build Y3 B2\n\n28) MagicJohn: Discover G1 Empire Y3 Colony4\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Scared of green systems now!,\n\tDraw5PlayAll: Hello?\n\tMagicJohn: Sorry, wife health issues..... back in the game soon.....\n\n30) MagicJohn: Move R1 Magicjohn Empire\n\n31) Draw5PlayAll: Move Y3 B2 Antagonist\n\n32) MagicJohn: Sacrifice G3 Magicjohn\nBuild G3 Empire\nBuild R2 Magicjohn\nBuild R3 Empire\n\n33) Draw5PlayAll: Attack G2 Antagonist\n\n34) MagicJohn: Discover R3 Empire B2 Colony5\n\n35) Draw5PlayAll: Build R3 B2\n\n36) MagicJohn: Move R2 Magicjohn Empire\n\tDraw5PlayAll: Never saw colony1 or 2...\n\n37) Draw5PlayAll: Move Y1 Draw5playall B2\n\tMagicJohn: Sneaky bunch of aliens...\n\n38) MagicJohn: Move R1 Empire B2\n\n39) Draw5PlayAll: Discover R3 B2 B1 B1\n\n40) MagicJohn: Trade R2 B2 Magicjohn\n\n41) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B3 Draw5playall\nBuild R2 B1\n\n42) MagicJohn: Attack Y1 B2\n\tDraw5PlayAll: Risky to sweep the bank, but...\n\n43) Draw5PlayAll: Attack R1 B2\n\n44) MagicJohn: Move Y1 B2 Colony3\n\n45) Draw5PlayAll: Move Y2 Draw5playall B2\n\n46) MagicJohn: Move G3 Colony3 Magicjohn\n\n47) Draw5PlayAll: Move Y2 B2 B1\n\n48) MagicJohn: Move Y3 Magicjohn Colony3\n\n49) Draw5PlayAll: Attack G1 Antagonist\n\tDraw5PlayAll: In this situation, sacrifices and abandonments are questionable as the opponent just builds the ship...\n\n50) MagicJohn: Move Y1 Colony3 Colony5\n\n51) Draw5PlayAll: Sacrifice Y2 B2\nDiscover B3 Draw5playall Y2 Y2\nMove R2 Draw5playall Y2\n\n52) MagicJohn: Sacrifice G1 Colony4\nBuild Y3 Colony5\n\n53) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade G1 B1 Antagonist\n\n54) MagicJohn: Move B2 Magicjohn Empire\n\n55) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 Antagonist\nBuild G1 B2\nBuild G3 Draw5playall\n\tDraw5PlayAll: Blue Teleportation\n\n56) MagicJohn: Move R2 Empire Magicjohn\n\n57) Draw5PlayAll: Sacrifice Y2 B1\nMove G1 B2 Empire\nMove G2 B2 Empire\nCatastrophe Empire Green\n\n58) MagicJohn: Discover Y3 Colony5 G3 Colony6\n\n59) Draw5PlayAll: Build Y2 Antagonist\n\n60) MagicJohn: Move Y1 Colony5 Antagonist\n\n61) Draw5PlayAll: Sacrifice Y2 Antagonist\nMove G1 Draw5playall B2\nMove G1 B2 B1\n\n62) MagicJohn: Build Y2 Colony6\n\n63) Draw5PlayAll: Build G1 B1\n\n64) MagicJohn: Move Y1 Antagonist Colony5\n\n65) Draw5PlayAll: Build G2 B1\n\n66) MagicJohn: Pass\n\n67) Draw5PlayAll: Move G1 Antagonist Magicjohn\n\n68) MagicJohn: Attack G1 Magicjohn\n\tDraw5PlayAll: !\n\n69) Draw5PlayAll: Sacrifice Y3 Antagonist\nMove G1 B1 Magicjohn\nMove G1 B1 Magicjohn\nCatastrophe Magicjohn Green\nMove R3 B1 Magicjohn\n\n70) MagicJohn: Sacrifice Y3 Colony6\nMove Y3 Colony3 Magicjohn\nMove R3 Colony5 Empire\nMove R3 Empire Magicjohn\n\n71) Draw5PlayAll: Sacrifice R3 B2\nAttack R3 Magicjohn\nAttack Y3 Magicjohn\nAttack R2 Magicjohn\n\tDraw5PlayAll: Gotcha.\n\tMagicJohn: Yes, things have been a bit hopeless for several moves now. Well played.\n\tDraw5PlayAll: You neither move nor resign??\n\tMagicJohn: getting impatient are we??\n\n\nHomeworlds Online (SDG# 31009)\nVariants: "Hard time"\nStarted: 2016.12.23, Ended: 2017.1.3\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 R1 G3\n\n2) Felix: H B1 R3 G3\n\tdlwillson: Whoa! What happened?\n\tFelix: I hit the wrong button by mistake :( tiny phone screen\n\tFelix: I hit the wrong button by mistake :( tiny phone screen\n\tFelix: I hit the wrong button by mistake :( tiny phone screen\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Let's make this interesting :)\n\n4) Felix: Build G1 Felix\n\tdlwillson: B2 R2 would have been more interesting. :-)\n\tdlwillson: Also, I've done exactly that. Now, I zoom WAY in before I click accept. ;-)\n\tDraw5PlayAll: What "wrong button"?\n\tDraw5PlayAll: Oh wow, a competition for the #1 seed! Let the best galactic overlord win!\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Felix: T G1 Y1 Felix\n\tdlwillson: When challenged, "accept" and "decline" appear right next to each other.\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: B G1 Felix\n\n9) dlwillson: D G1 Dlwillson B2 Sky\n\n10) Felix: Trade G1 B1 Felix\n\n11) dlwillson: B G1 Dlwillson\n\n12) Felix: Build B1 Felix\n\n13) dlwillson: B G1 Sky\n\n14) Felix: Discover B1 Felix B2 Synchron\n\n15) dlwillson: B G2 Sky\n\n16) Felix: Build B2 Felix\n\n17) dlwillson: Trade G2 Y2 Sky\n\n18) Felix: Discover B2 Felix G2 Occo\n\n19) dlwillson: Sacrifice Y2 Sky\nDiscover G1 Sky B3 Sea\nDiscover G1 Sky B3 Bluesky\n\n20) Felix: Build B2 Occo\n\n21) dlwillson: Build G2 Bluesky\n\n22) Felix: Trade B2 R2 Occo\n\n23) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB G3 Dlwillson\nB G3 Bluesky\n\n24) Felix: Build B2 Occo\n\n25) dlwillson: T G2 R2 Bluesky\n\n26) Felix: Build G2 Felix\n\n27) dlwillson: M G2 Dlwillson Synchron\n\n28) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Felix\nBuild Y2 Felix\n\n29) dlwillson: Sacrifice G3 Bluesky\nBuild Y2 Dlwillson\nBuild R1 Bluesky\nBuild G3 Synchron\n\n30) Felix: Sacrifice Y1 Felix\nMove B1 Synchron Dlwillson\n\n31) dlwillson: A B1 Dlwillson\n\n32) Felix: Sacrifice Y2 Felix\nMove B2 Occo Dlwillson\nMove B2 Occo Dlwillson\nCatastrophe Dlwillson Blue\n\n33) dlwillson: S Y2 Dlwillson\nM G2 Synchron Felix\nM G3 Synchron Felix\nC Felix G\n\n34) Felix: Sacrifice Y1 Felix\nMove R2 Occo Sea\n\n35) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G2 Sea\nB G2 Dlwillson\n\tFelix: Wow, excellent reversal. I didn't anticipate that in the slightest.\n\n36) Felix: Sacrifice R2 Sea\nPass\nPass\n\n\tdlwillson: Good game, Felix! I enjoyed the interesting symmetry of the small universe. I may do that again, from 2nd seat.\n\tFelix: Likewise! Excellent game. I had fun and look forward to a rematch!\n\nHomeworlds Online (SDG# 30934)\nStarted: 2016.12.23, Ended: 2017.1.10\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: I think I will lose that other game. This time I am not going so extreme on the yellows.\n\n2) Felix: H Y2 B3 G3\n\tDraw5PlayAll: And if you want me to vary my start, do not let me go first and choose a 1-3 homeworld.\n\tFelix: It's up to you whether you vary your start! And whoever goes first is chosen randomly.\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: But why do you repeat the B3? Shouldn't you have flipped the colors of your stars?\n\n4) Felix: B G1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: Trade G1 Y1 Felix\n\tFelix: *Shrug* I'm not sure why it matters if I flip them or not :) There will just be fewer B3s available now.\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: For an extreme example see my game vs mi_spero who chose an R1 when that was already there.\n\n8) Felix: Build G1 Felix\n\tFelix: That can sometimes be used strategically to one's own advantage. I will often choose a b1 on purpose if my opponent starts with a b1. Combining that with a b3 starter can give one an effective boost into dominating blue.\n\n9) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\tDraw5PlayAll: So you start with a double blue??\n\n10) Felix: Trade G1 B1 Felix\n\tDraw5PlayAll: Basically I need to be sure I get every color and a good supply of them. G and Y are easy since I can have them in my HW without fear of a 4-boom.\n\tDraw5PlayAll: ...blowing up one of my stars, that is.\n\tFelix: Yep, start with a b1/g2 or b1/g3 homeworld and a b3 ship. It's unorthodox but it has worked very effectively. There's an epic game between wil and twoshort where twoshort used it to great effect. I'll see if I can find it.\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Ah, it was Endo, not TwoShort. Here it is: http://superdupergames.org/?page=archive_play&gid=28818&idx=0\r\n\r\nSimply divine.\n\n12) Felix: Build B1 Felix\n\tDraw5PlayAll: Interesting, but (1) I dislike green homeworld stars and (2) I only use B3 (not B1) stars unless I am going second.\r\n\r\nI like setting up the Factory in my homeworld, and then using yellow ships for extra defense.\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\tFelix: I agree with the green homeworld thing in general, but being unpredictable has its benefits :)\n\n14) Felix: Discover B1 Felix G1 Arrakis\n\n15) Draw5PlayAll: Build B2 Draw5playall\n\n16) Felix: Build B2 Arrakis\n\n17) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\n18) Felix: Trade B1 R1 Arrakis\n\n19) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n20) Felix: Move Y1 Felix Arrakis\n\n21) Draw5PlayAll: Move R2 Draw5playall B2\n\n22) Felix: Sacrifice G3 Felix\nBuild B1 Arrakis\nBuild B2 Arrakis\nBuild B3 Felix\n\n23) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: This is probably so dumb.\n\n24) Felix: Sacrifice B2 Arrakis\nTrade B2 Y2 Arrakis\nTrade B3 G3 Felix\n\tDraw5PlayAll: I need the yellows more anyway.\n\n25) Draw5PlayAll: Build G2 B2\n\tDraw5PlayAll: That looks good.\n\n26) Felix: Build G2 Felix\n\tFelix: Oh, I just made my move based on your first move. Hold on.\n\n27) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\n\n28) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Felix\nBuild B2 Arrakis\n\n29) Draw5PlayAll: Discover G2 Draw5playall R2 R2\n\tDraw5PlayAll: Now let me try.\n\n30) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Felix\nBuild B3 Arrakis\n\n31) Draw5PlayAll: Move B1 Draw5playall R2\n\n32) Felix: Discover B2 Arrakis R2 Bazoik\n\n33) Draw5PlayAll: Move Y1 Draw5playall R2\n\n34) Felix: Move Y1 Arrakis Bazoik\n\tDraw5PlayAll: Agh you got all the blue again! I should have sent the B1 first!\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 R2\nBuild G3 Draw5playall\n\tFelix: Yes, I think your first move was better back when you undid your move...\n\n36) Felix: Sacrifice B2 Felix\nTrade G3 Y3 Felix\nTrade B3 Y3 Arrakis\n\n37) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 R2\nBuild B2 R2\n\tDraw5PlayAll: I can do this though\n\tDraw5PlayAll: No!\n\tDraw5PlayAll: You only get one undo...\n\n38) Felix: Trade Y3 R3 Arrakis\n\tFelix: I ended up doing the same move anyway. And who says you only get one undo? You can undo every move one time.\n\n39) Draw5PlayAll: Build R1 B2\n\tDraw5PlayAll: 1. I meant one undo per turn, yeah.\r\n2. I need to snag those "sac G3 build all one color" things more often and maybe I won't lose vs you.\n\n40) Felix: Sacrifice G3 Felix\nBuild Y3 Bazoik\nBuild B3 Bazoik\nBuild G3 Felix\n\tFelix: You might not lose even as is. I got hung up for a long time on that move and I'm still not sure I made a good one.\n\n41) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R2 B2 Arrakis\nMove R1 B2 Arrakis\nCatastrophe Arrakis Red\n\tDraw5PlayAll: I did not like opening up the B3 but you could factory build both anyway.\n\n42) Felix: Trade B2 R2 Bazoik\n\n43) Draw5PlayAll: Trade G3 R3 R2\n\n44) Felix: Trade B1 R1 Arrakis\n\n45) Draw5PlayAll: Move R3 R2 Arrakis\n\n46) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R1 Arrakis\nBuild R3 Arrakis\nCatastrophe Arrakis Red\n\n47) Draw5PlayAll: Trade Y3 R3 R2\n\n48) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Felix\nBuild Y3 Arrakis\n\n49) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 R2\nBuild B1 R2\n\n50) Felix: S G3 Felix\nB G3 Felix\nB B2 Bazoik\nB R1 Bazoik\n\n51) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover R3 R2 Y1 Y1\n\n52) Felix: Sacrifice Y2 Felix\nMove R2 Bazoik Arrakis\nDiscover R2 Arrakis Y2 Dune\n\n53) Draw5PlayAll: Move G2 R2 Y1\n\n54) Felix: Move Y3 Arrakis B2\n\tDraw5PlayAll: This is probably resignable...\n\n55) Draw5PlayAll: Sacrifice G2 B2\nBuild G2 Y1\nBuild R1 Y1\n\tFelix: It could be interesting to play out, but it's up to you!\n\n56) Felix: Sacrifice Y2 Arrakis\nMove Y3 B2 Y1\nMove B3 Bazoik Y1\n\n\tFelix: I would have been interested to see how it played out, but I think I would have had you in the end so that was probably a good call. Good game though! It took me quite a large number of games to get a firm grasp on the "long game" and develop a winning fleet from turn 1. I'm not always good at it, but practice, practice, practice. Look forward to our rematch!\n\tDraw5PlayAll: I need something of every color, but I need to watch those "color bombs" where someone sacs a G3 and builds all blue or yellow. Yellow and red seem to be my weak points.\n\nHomeworlds Online (SDG# 30931)\nStarted: 2016.12.24, Ended: 2017.1.5\nParticipants: mi_spero (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3 *\n\n2) mi_spero: Homeworld R1 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tmi_spero: To match to come salute I you anon, \r\nFor further chance is naught at duel's end.\n\n4) mi_spero: Build G1 Mi_spero\n\tDraw5PlayAll: wo' not ghaH jey!\n\tDraw5PlayAll: ...wait, you picked EXACTLY the same homeworld as me.\n\tmi_spero: Draw5, the love I bear thee can afford, \r\nNo better term than this: thou art a villain. :D\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n6) mi_spero: Build G1 Mi_spero\n\tDraw5PlayAll: We have decided to take a share of the only small weaponry available in order to build Ambassador-class ships quickly.\r\n\r\n(Constellation = 1 Ambassador = 2 Galaxy = 3)\n\n7) Draw5PlayAll: Build R2 Draw5playall\n\tmi_spero: I underestimated the severity of this course of events when I chose my homeworld.\n\n8) mi_spero: Trade G1 Y1 Mi_spero\n\n9) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n10) mi_spero: Build Y1 Mi_spero\n\tDraw5PlayAll: I call that maneuver a "pump" for no real reason.\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) mi_spero: Trade G1 B1 Mi_spero\n\n13) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n14) mi_spero: Build G1 Mi_spero\n\n15) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n16) mi_spero: Discover B1 Mi_spero G2 Fanri\n\n17) Draw5PlayAll: Build R2 Draw5playall\n\n\tmi_spero: gg\n\tDraw5PlayAll: You resign way too soon.\n\tmi_spero: Really? I'm behind both in material, and by several tempi. In addition, you have a positional advantage, particularly in the area of blue as I will have to work very hard and waste multiple tempi bringing in blue without risking catastrophe.\n\nHomeworlds Online (SDG# 31027)\nVariants: "Hard time"\nStarted: 2016.12.24, Ended: 2017.1.11\nParticipants: Babamots (S), mi_spero (N)\nWinner: Babamots\n\n1) mi_spero: Homeworld B3 G1 Y3\n\tmi_spero: Good luck and have fun.\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) mi_spero: Build Y1 Mi_spero\n\n4) Babamots: Build G1 Babamots\n\n5) mi_spero: Trade Y1 R1 Mi_spero\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) mi_spero: Build Y1 Mi_spero\n\n8) Babamots: Build G1 Babamots\n\n9) mi_spero: Build R1 Mi_spero\n\n10) Babamots: Build G1 Babamots\n\n11) mi_spero: Build R2 Mi_spero\n\n12) Babamots: Discover G1 Babamots Y3 Wolf359\n\n13) mi_spero: Trade R2 G2 Mi_spero\n\n14) Babamots: Sacrifice G3 Babamots\nBuild G2 Wolf359\nBuild G2 Wolf359\nBuild G3 Babamots\n\n15) mi_spero: Build G3 Mi_spero\n\tBabamots: Not quite what I meant.\n\n16) Babamots: Discover G2 Wolf359 B2 Kronos\n\tDraw5PlayAll: Hmmm... Wolf359 is a real star system, but it could also be a Trek reference?\n\n17) mi_spero: Discover G2 Mi_spero B2 Tamaran\n\n18) Babamots: Sacrifice G3 Babamots\nBuild G3 Babamots\nBuild G3 Kronos\nBuild Y1 Babamots\n\tBabamots: I'll let you guess.\n\n19) mi_spero: Build R2 Mi_spero\n\n20) Babamots: Trade G2 R2 Kronos\n\tDraw5PlayAll: I used the correct form, Qo'noS, as a red star a while back since red = warriors.\n\n21) mi_spero: Move R2 Mi_spero Tamaran\n\tBabamots: I prefer to use the English spelling for consistency (I don't insist on saying "Deutschland" either).\n\n22) Babamots: Sacrifice G3 Babamots\nBuild G2 Kronos\nBuild Y2 Babamots\nBuild G3 Babamots\n\tmi_spero: Well, Deutschland makes more sense. I don't speak German, but it's more than a bit weird that the Germans speak Deutsch, the Dutch speak Nederlands (or something like that), and the Netherlands isn't even a country, it's a region. Some words obviously weren't borrowed into English by linguists.\n\tBabamots: I'm OK with calling Netherlands a country since its American municipalities are pretty minor. I always forget what the deal is with "Holland," though. I'm also stubborn enough to keep saying "Ivory Coast."\n\n23) mi_spero: Build Y2 Mi_spero\n\n24) Babamots: Discover Y1 Babamots B3 Wadi\n\n25) mi_spero: Trade Y1 B1 Mi_spero\n\n26) Babamots: Sacrifice G3 Babamots\nBuild Y1 Babamots\nBuild Y2 Wadi\nBuild G3 Babamots\n\n27) mi_spero: Move Y3 Mi_spero Tamaran\n\n28) Babamots: Sacrifice Y2 Babamots\nMove G3 Kronos Mi_spero\nMove G2 Kronos Mi_spero\nCatastrophe Mi_spero G\n\n\tBabamots: Sorry about the double whammy tonight with catastrophes in both games. I guess this Kronos was pretty warlike as well :-(.\n\tDraw5PlayAll: What is Wadi?\n\tBabamots: It's the home system of the game-loving people in the DS9 episode "Move Along Home."\n\tmi_spero: Ehh, to be expected given my skill at this game. :D\n\tmi_spero: gg\n\tBabamots: gg\n\nHomeworlds Online (SDG# 31016)\nStarted: 2016.12.27, Ended: 2017.2.9\nParticipants: dragon76n (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\tdragon76n: Hello.\n\tFelix: Hi again! Have fun!\n\n2) dragon76n: Homeworld B1 G2 Y3\n\n3) Felix: Build G1 Felix\n\n4) dragon76n: Build Y1 Dragon76n\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dragon76n: T Y1 B1 Dragon76n\n\n7) Felix: Trade Y1 B1 Felix\n\n8) dragon76n: Build B2 Dragon76n\n\tFelix: Doh! Silly mistake.\n\tdragon76n: I don't have a ton of experience with Homeworlds yet, but in the games I've played, I find myself getting trapped out of colors way too often. \n\n9) Felix: Build G1 Felix\n\tFelix: That happened a lot to me early on too. You've got a good start so far and almost locked me out of blue!\n\n10) dragon76n: Trade B2 G2 Dragon76n\n\n11) Felix: Trade G1 Y1 Felix\n\n12) dragon76n: Build B2 Dragon76n\n\n13) Felix: Discover B1 Felix G1 Out\n\n14) dragon76n: Discover B2 Dragon76n G3 Grethr\n\n15) Felix: Build B2 Out\n\n16) dragon76n: B Y1 Dragon76n\n\n17) Felix: Trade B2 Y2 Out\n\n18) dragon76n: Build B2 Grethr\n\n19) Felix: Build B2 Out\n\n20) dragon76n: Trade B2 R2 Grethr\n\n21) Felix: Trade B2 R2 Out\n\n22) dragon76n: Build B2 Grethr\n\n23) Felix: Build B2 Out\n\n24) dragon76n: Trade B2 Y2 Grethr\n\n25) Felix: D B2 Out G3 Rim\n\n26) dragon76n: Build Y1 Grethr\n\n27) Felix: Build G1 Felix\n\n28) dragon76n: T Y2 G2 Grethr\n\n29) Felix: Discover G1 Felix R1 Bazoik\n\n30) dragon76n: Move B2 Grethr Bazoik\n\n31) Felix: Sacrifice G1 Bazoik\nBuild G1 Felix\n\n32) dragon76n: S G2 Dragon76n\nB B2 Bazoik\nB B3 Bazoik\n\n33) Felix: Build B3 Rim\n\n34) dragon76n: S B2 Bazoik\nT B1 R1 Dragon76n\nT B2 Y2 Bazoik\n\n35) Felix: Trade B3 Y3 Rim\n\n36) dragon76n: Sacrifice G2 Grethr\nBuild Y2 Bazoik\nBuild Y3 Bazoik\n\n37) Felix: Move Y1 Felix Bazoik\nCatastrophe Bazoik Yellow\n\n38) dragon76n: Trade Y3 R3 Dragon76n\n\n39) Felix: Move R2 Out Rim\n\n40) dragon76n: B Y1 Grethr\n\n41) Felix: Build R1 Rim\n\n42) dragon76n: M Y1 Grethr Bazoik\n\n43) Felix: Sacrifice Y2 Out\nMove R1 Rim Dragon76n\nMove R2 Rim Dragon76n\nCatastrophe Dragon76n Red\n\n44) dragon76n: B Y2 Dragon76n\n\n45) Felix: Build Y2 Rim\n\n46) dragon76n: Trade Y1 G1 Dragon76n\n\n47) Felix: Trade Y2 R2 Rim\n\n48) dragon76n: S Y2 Dragon76n\nM B3 Bazoik Grethr\nM B3 Grethr Dragon76n\n\n49) Felix: Build B1 Rim\n\n50) dragon76n: T B3 R3 Dragon76n\n\n51) Felix: Build B2 Rim\n\n52) dragon76n: Build G2 Dragon76n\n\n53) Felix: Build Y1 Rim\n\n54) dragon76n: B Y2 Grethr\n\n55) Felix: Move Y3 Rim Out\n\n56) dragon76n: Sacrifice Y2 Grethr\nDiscover G2 Dragon76n Y3 Yelthr\nMove G1 Dragon76n Grethr\n\n57) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G3 Felix\nBuild Y2 Rim\n\n58) dragon76n: B Y2 Grethr\n\n59) Felix: Sacrifice Y1 Rim\nMove G2 Felix Bazoik\n\n60) dragon76n: D G1 Grethr Y1 Yelone\n\n61) Felix: Attack Y1 Bazoik\n\n62) dragon76n: M G1 Yelone Felix\n\n63) Felix: Trade G1 Y1 Felix\n\n64) dragon76n: Sacrifice G2 Yelthr\nBuild G1 Felix\nBuild G2 Felix\nCatastrophe Felix Green\n\n65) Felix: Sacrifice G2 Bazoik\nBuild Y2 Rim\nBuild Y3 Felix\n\n66) dragon76n: B Y3 Grethr\n\n67) Felix: Move Y1 Bazoik Grethr\nCatastrophe Grethr Yellow\n\n68) dragon76n: B R1 Dragon76n\n\n69) Felix: Trade Y3 G3 Felix\n\n70) dragon76n: Trade R1 Y1 Dragon76n\n\n71) Felix: Move B1 Rim Dragon76n\n\n72) dragon76n: B R1 Grethr\n\n73) Felix: Sacrifice Y2 Rim\nMove B2 Rim Dragon76n\nMove B2 Rim Dragon76n\nCatastrophe Dragon76n Blue\n\n74) dragon76n: B Y1 Dragon76n\n\n75) Felix: Build G1 Felix\n\n76) dragon76n: D Y1 Dragon76n B3 Bluthr\n\n77) Felix: Trade B1 G1 Out\n\n78) dragon76n: Build Y2 Dragon76n\n\n79) Felix: Sacrifice Y3 Out\nMove G1 Felix Out\nMove G1 Out Dragon76n\nMove G1 Out Dragon76n\n\n80) dragon76n: S R2 Grethr\nA G1 Dragon76n\nA G1 Dragon76n\n\n81) Felix: Sacrifice Y2 Rim\nDiscover G3 Felix B1 Step\nMove G3 Step Dragon76n\nCatastrophe Dragon76n Green\n\n\tFelix: Good game! That was fun. I'd be happy to rematch any time :)\n\nHomeworlds Online (SDG# 31050)\nVariants: "Sinister"\nStarted: 2016.12.29, Ended: 2017.2.28\nParticipants: Draw5PlayAll (S), zeder (N), mi_spero (E)\nWinner: Draw5PlayAll\n\n1) zeder: Homeworld B1 G2 Y3\n\n2) mi_spero: Homeworld G1 B3 Y3\n\n3) Draw5PlayAll: Homeworld B2 R1 G3\n\tmi_spero: Glhf\n\n4) zeder: Build Y1 Zeder\n\tDraw5PlayAll: Hold it, I want to be next to zeder.\n\n5) mi_spero: Build Y1 Mi_spero\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) zeder: Trade Y1 G1 Zeder\n\n8) mi_spero: Trade Y1 B1 Mi_spero\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n10) zeder: Build Y1 Zeder\n\n11) mi_spero: Build Y1 Mi_spero\n\tDraw5PlayAll: Hello! Is there a problem?\n\tDraw5PlayAll: The call admin button is really more of a "wake up players" button.\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) zeder: Discover G1 Zeder Y3 Turtles\n\n14) mi_spero: Build B1 Mi_spero\n\n15) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n16) zeder: Build G1 Turtles\n\n17) mi_spero: Discover B1 Mi_spero G2 Ichidai\n\n18) Draw5PlayAll: Build B2 Draw5playall\n\n19) zeder: Trade Y3 B3 Zeder\n\tmi_spero: I tried to use &#12300;&#19968;&#21488;&#12301; , but it wouldn't let me. :( That would have been pretty trollish, though. :D\n\tmi_spero: Lol. Even chat is glowering at me. :D\n\tmi_spero: It was just the kanji for one and the kanji for "machine counter".\n\tDraw5PlayAll: Is that star name a lojban word?\n\n20) mi_spero: Build B2 Ichidai\n\tmi_spero: nahh, it means "one machine (big ones, like cars)" in Japanese afaik. I'm still learning.\n\n21) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n22) zeder: Build B2 Zeder\n\n23) mi_spero: Trade B2 G2 Ichidai\n\n24) Draw5PlayAll: Move R2 Draw5playall Turtles\n\n25) zeder: Trade B3 R3 Zeder\n\n26) mi_spero: Build B2 Ichidai\n\n27) Draw5PlayAll: Attack G1N Turtles\n\n28) zeder: Move G1 Turtles Ichidai\n\n29) mi_spero: Trade B2 R2 Ichidai\n\n30) Draw5PlayAll: Move B1 Draw5playall Turtles\n\n31) zeder: Build G1 Ichidai\nCatastrophe Ichidai Green\n\tDraw5PlayAll: build G1 ichidai\r\ncatastrophe ichidai green\n\n32) mi_spero: Trade Y1 R1 Mi_spero\n\n33) Draw5PlayAll: Build B1 Turtles\n\n34) zeder: Discover B2 Zeder Y3 Foo\n\n35) mi_spero: Build Y1 Mi_spero\n\n36) Draw5PlayAll: Build G1 Draw5playall\n\n37) zeder: Build R1 Zeder\n\n38) mi_spero: Build B2 Mi_spero\n\n39) Draw5PlayAll: Build Y1 Draw5playall\n\n40) zeder: Build Y2 Zeder\n\n41) mi_spero: Trade B2 G2 Mi_spero\n\n42) Draw5PlayAll: Build Y2 Draw5playall\n\n\tDraw5PlayAll: I hate this.\n\tmi_spero: Draw5, can we invite zeder (or whomever to join your zendo game? It's not very fun with only one person. :()\n\tDraw5PlayAll: Zeder timed out. I will ask around.\n\nHomeworlds Online (SDG# 34099)\nVariants: "Unrated, Hard time"\nStarted: 2018.4.28, Ended: 2018.5.13\nParticipants: Babamots (S), wil (N)\nWinner: Babamots\n\n1) wil: Homeworld B2 Y1 G3\n\twil: Is this it? Do you think there is no way I can make a mistake now?\n\twil: I'm assuming if I win this will be our tourney game...and if I lose the tourney game it will just be a game.\n\n2) Babamots: Homeworld B3 G1 Y3\n\tBabamots: I didn't issue this challenge until I was positive you would win game #8. If you did happen to lose, then this game would just be for fun I suppose. Otherwise, I intend this to be game #9 of the bracket.\n\n3) wil: Build G1 Wil\n\twil: Perfect...makes sense...so if either win we have to win the game after...and if we win that...we are in a best out of three with Felix right?\n\twil: any who... good luck, have fun.. thx so much for facilitating this...it has been a blast.\n\n4) Babamots: Build Y1 Babamots\n\tBabamots: Sounds like you expected another game after this one. Winner of this game plays Felix in a best of three for the championship.\n\n5) wil: Build G1 Wil\n\twil: I do...don't I? if he beats either of us first round, we both have two losses...double elimination achieved. If either of us wins...we are now at one loss each and it goes into the final playoff??? He is only the only undefeated right?\n\n6) Babamots: Build Y1 Babamots\n\n7) wil: Discover G1 Wil Y3 Y3\n\tBabamots: The loser of this game is out. The winner of this game plays a best of three with Felix (in the bracket, they're labelled games #10-12). Even if Felix wins game #10, the best of three goes on. It's not strictly double elimination.\n\n8) Babamots: Discover Y1 Babamots B2 Betazed\n\n9) wil: Build G2 Wil\n\n10) Babamots: Build Y2 Babamots\n\n11) wil: Discover G1 Wil B3 B3\n\n12) Babamots: Trade Y2 G2 Babamots\n\n13) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 B3\nBuild G3 Wil\n\n14) Babamots: Build G3 Babamots\n\n15) wil: Trade G3 Y3 Wil\n\n16) Babamots: Sacrifice G2 Babamots\nBuild Y2 Betazed\nBuild Y2 Betazed\n\n17) wil: Sacrifice G3 B3\nBuild G2 Y3\nBuild G3 B3\nBuild G3 Wil\n\n18) Babamots: Build Y2 Babamots\n\n19) wil: Trade G1 R1 B3\n\tBabamots: I'm hoping you don't have enough yellow to expand effectively.\n\n20) Babamots: Trade Y2 R2 Babamots\n\twil: lol, I am hoping I do!\n\n21) wil: Discover G2 Y3 Y2 Y2\n\n22) Babamots: Move G3 Babamots Betazed\n\twil: I am so lousy about thinking about moves...I always plan on taking my time, considering options...and then when you play...I just make a knee jerk reaction!\r\n\n\tBabamots: I'm working on breaking that habit. I lose games when I pick moves at the bus stop.\n\n23) wil: Sacrifice G3 Wil\nBuild G1 B3\nBuild R1 B3\nBuild G3 Wil\n\n24) Babamots: Build R1 Babamots\n\n25) wil: Move Y3 Wil B3\n\n26) Babamots: Build R2 Babamots\n\n27) wil: Move R1 B3 Y2\n\twil: While I try to look long and hard at moves...and still knee jerk... I think often my knee jerks are right and paralysis analysis doesn't help me... What helps most is making the move and then looking at what I've done before I move the coin. If we are to ever have live games, chess clocks will be a thing...in order for brackets to be completed in a weekend.\n\tBabamots: Sorry for the delay; it's been a stressful week.\n\n28) Babamots: Trade R1 B1 Babamots\n\twil: things happen....talkin to Felix, he has a second baby due in a couple weeks...he will be swamped whoever he plays.\n\n29) wil: S G3 B3\nB G3 Y2\nB R1 Y2\nB R2 B3\n\tBabamots: I've gotten bored with always starting out with green ships, but my yellow experiment isn't working out well.\n\tBabamots: And I just haven't been very pleased with life in general for a while, so it's pretty hard to care about the game. You deserve to win more than I do.\n\n30) Babamots: Move R2 Babamots Betazed\n\twil: Sorry to hear that brother...\n\n31) wil: D R2 B3 B2 B2\n\twil: I thought you had some plan with the y opening, I know I've been beat by them, and also don't play them well.\n\twil: You've done us all a great service running these tourmanents\n\n32) Babamots: Build R3 Betazed\n\n33) wil: S G3 Wil\nB G3 Wil\nB R3 B3\nB R3 B2\n\n34) Babamots: Move R3 Betazed Y3\n\n35) wil: T R3 B3 B3\n\n36) Babamots: Sacrifice R2 Betazed\nAttack G2N Y3\nAttack G1N Y3\n\n37) wil: T G2 R2 Wil\n\n38) Babamots: Build R3 Babamots\n\twil: Lol, I didn't even look and saw what I left behind and after words figured I deserve what I get.\n\tBabamots: I made such huge mistakes in my games this tournament that I think I was overdue for my opponent to make a few :-P.\n\n39) wil: S G3 Y2\nB G2 Y2\nB G3 B3\nP\n\twil: Lol, bus stop moves\n\n40) Babamots: Sacrifice Y2 Betazed\nMove R2 Babamots Betazed\nMove Y3 Babamots Y2\n\n41) wil: S G2 Y2\nB G2 Wil\nB Y2 B3\n\n42) Babamots: Sacrifice Y3 Y2\nMove R3 Y3 Wil\nMove G2 Y3 Wil\nMove G1 Y3 Wil\nCatastrophe Wil G\n\twil: Yeah, that mistake cost me! I was working outside had come in and saw you moved and just played the planned move saved in notes and didn't even glance at what you had done...maximum silliness\n\n43) wil: S Y3 B3\nM G1 B3 Wil\nM B3 B3 Wil\nM R1 B3 Wil\n\twil: Intent to move the b3 in there to protect was lost on me too\n\n44) Babamots: Sacrifice R3 Babamots\nAttack B3N Wil\nAttack R2N Wil\nAttack G1N Wil\n\n45) wil: S Y2 B3\nM R3 B2 Babamots\nM G3 B3 B2\n\twil: Well, I deserve to lose this one.\n\n46) Babamots: Attack R1N Wil\n\tBabamots: It's miserable to lose a game to mistakes. I know exactly where you're at. I didn't handle my last loss well.\n\twil: This is a game of capitalizing on mistakes, the big and small...\n\twil: Good luck\n\n\tBabamots: Sorry for being moody earlier. Neither the game nor anything else seemed to be going right.\n\tBabamots: See you next time!\n\tDraw5PlayAll: So where's is this game in the tournament schedule?\n\twil: The semi final... Babamots goes in two a best of 3 with Felix... You were worried about it going on to long, I am said it is over and hope the next one takes a year and a half or more!\n\tBabamots: The tournament is going on 9 months, so I would call it pretty long. I would prefer to have more frequent, shorter tournaments in the future. I'll recommend a straight round-robin for next time. The bracket is very slow because some games have to wait for others to finish.\n\nHomeworlds Online (SDG# 30957)\nStarted: 2017.1.2, Ended: 2017.1.2\nParticipants: floydmasterson (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n\tDraw5PlayAll: What?\n\nHomeworlds Online (SDG# 31044)\nStarted: 2017.1.2, Ended: 2017.3.6\nParticipants: WindMillCobra (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\tFelix: Hi there! First game?\n\n2) WindMillCobra: Homeworld Y3 B2 G3\n\tWindMillCobra: Yes this is my First Game\n\tWindMillCobra: Yes this is my First Game\n\n3) Felix: Build G1 Felix\n\tFelix: Awesome! I'm happy to help you learn. Let me know if you have any questions, and if I think of tips, I'll let you know.\n\n4) WindMillCobra: Build G1 Windmillcobra\n\tFelix: You're off to a good start with the colors you picked for your homeworld and starting ship. Choosing the same size pieces as my homeworld will make the playing field be quite small and tight, however.\n\tWindMillCobra: Thanks a lot for your advice!\n\tWindMillCobra: I have played one game of homeworlds irl but I am still a beginner \n\n5) Felix: Trade G1 Y1 Felix\n\tWindMillCobra: Could you tell me what you think good starting size and color homeworlds are?\n\tFelix: I think as a beginner, the best starting size and color homeworld is to use small and medium stars in yellow and blue, with a large green ship as your starter. It doesn't matter too much which star is yellow and which is blue. Some people prefer to go with red and blue instead of yellow and blue, which is what I have done here, and it provides defense at home, but it makes it slower to move at first since there are no yellows. It comes down to preference, but as a beginner I think yellow and blue with a green ship is best.\n\n6) WindMillCobra: Trade G1 B1 Windmillcobra\n\tWindMillCobra: oh ok thanks!\n\n7) Felix: Build Y1 Felix\n\n8) WindMillCobra: Build B1 Windmillcobra\n\n9) Felix: Trade Y1 B1 Felix\n\n10) WindMillCobra: Trade B1 Y1 Windmillcobra\n\n11) Felix: Discover B1 Felix G1 Out\n\n12) WindMillCobra: Build Y1 Windmillcobra\n\n13) Felix: Build Y2 Felix\n\n14) WindMillCobra: Discover Y1 Windmillcobra G1 Star\n\n15) Felix: Move Y1 Felix Out\n\n16) WindMillCobra: Build Y2 Star\n\n17) Felix: B Y2 Out\n\n18) WindMillCobra: Move Y1 Windmillcobra Out\n\n19) Felix: Trade Y2 R2 Out\n\n\nHomeworlds Online (SDG# 31106)\nStarted: 2017.1.2, Ended: 2017.1.3\nParticipants: WindMillCobra (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\tFelix: Did you mean to start 2 games?\n\n\tWindMillCobra: No I didn't I am going to end this one\r\n\n\nHomeworlds Online (SDG# 31110)\nStarted: 2017.1.3, Ended: 2017.1.9\nParticipants: zeder (S), floydmasterson (N)\nWinner: zeder\n\n\nHomeworlds Online (SDG# 30932)\nStarted: 2017.1.3, Ended: 2017.3.8\nParticipants: WindMillCobra (S), mi_spero (N), Draw5PlayAll (E)\nWinner: Draw5PlayAll\n\n1) mi_spero: Homeworld B1 Y3 G3\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\n3) WindMillCobra: Homeworld Y2 B1 G3\n\n4) mi_spero: Build G1 Mi_spero\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) WindMillCobra: Build G1 Windmillcobra\n\n7) mi_spero: Trade G1 B1 Mi_spero\n\tmi_spero: hi everyone!\n\n8) Draw5PlayAll: Trade G1 B1 Draw5playall\n\tDraw5PlayAll: Quick!\n\n9) WindMillCobra: Trade G1 Y1 Windmillcobra\n\n10) mi_spero: Build B2 Mi_spero\n\n11) Draw5PlayAll: Build B2 Draw5playall\n\n12) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\tDraw5PlayAll: GRRR no yellow :(\n\tmi_spero: Anyone know where WindMillCobra\n\tmi_spero: is?\n\tDraw5PlayAll: Time to move on.\n\n13) mi_spero: Trade B1 R1 Mi_spero\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\n15) mi_spero: Build R1 Mi_spero\n\n16) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n17) mi_spero: Discover R1 Mi_spero G2 Lojpluka\n\n18) Draw5PlayAll: Build R2 Draw5playall\n\n19) mi_spero: Build R2 Lojpluka\n\tDraw5PlayAll: Obviously "loj" is logic and "pluka" is...\n\n20) Draw5PlayAll: Discover R2 Draw5playall G3 G3\n\tmi_spero: pluka: x1 (event/state) seems pleasant to/pleases x2 under conditions x3.\r\n\r\nSo lojpluka is when it's pleasing in a logical sort of way, however you want to interpret that.\n\n21) mi_spero: Move B2 Mi_spero Lojpluka\n\n22) Draw5PlayAll: Build R2 G3\n\n23) mi_spero: Trade R1 Y1 Lojpluka\n\n24) Draw5PlayAll: Move B1 Draw5playall G3\n\n25) mi_spero: Build R1 Mi_spero\n\n26) Draw5PlayAll: Trade R2 Y2 G3\n\n27) mi_spero: Discover R1 Mi_spero G2 Surreal Numbers\n\n28) Draw5PlayAll: Build R2 Draw5playall\n\n29) mi_spero: Build Y1 Lojpluka\n\n30) Draw5PlayAll: Trade R2 G2 Draw5playall\n\n31) mi_spero: Build R2 Surreal\n\n32) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 G3\nBuild R3 Draw5playall\nBuild G1 Draw5playall\n\n33) mi_spero: Build R3 Lojpluka\n\n34) Draw5PlayAll: Discover R1 Draw5playall Y3 Y3\n\n35) mi_spero: Build G1 Mi_spero\n\n36) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild R3 Y3\n\n37) mi_spero: Build R3 Mi_spero\n\n38) Draw5PlayAll: Move R3 Y3 Windmillcobra\n\n39) mi_spero: Build B1 Lojpluka\n\n40) Draw5PlayAll: Attack G3S Windmillcobra\n\tDraw5PlayAll: Have you ever seen this?\r\nhttp://superdupergames.org/?page=telegram\n\tmi_spero: yeah, never tried it.\n\n41) mi_spero: Trade Y1 G1 Lojpluka\n\n42) Draw5PlayAll: Move G3 Windmillcobra Y3\n\n43) mi_spero: Build Y1 Lojpluka\n\n44) Draw5PlayAll: Build B2 G3\n\n\tmi_spero: gg\n\tDraw5PlayAll: ???\n\tmi_spero: I have little idea how to play the early game, less idea how to play the mid game, and at this stage of the game am doing little better than moving at random. Given that, I see little reason to continue, assuming that for any G(H,n)=[(1v0)^~(1^0)] where G is the result (win or loss) of the Homeworlds game H at move n, G(H,n) approaches 0 or 1 for some sufficiently large n. In other words, iff there is always a winner. If there is not always a winner, it grows more complicated, but if there is a winner, then eventually you would have been said winner. So because I can surmise the end, there is no need to continue.\n\tDraw5PlayAll: Tip: Especially with more players, explore multiple systems. I like to send a green to a blue system and a blue to a green system to provide balance and kick start the development.\n\tDraw5PlayAll: Several no winner situations can arise. For instance, all blue and yellow could be wiped out.\n\nHomeworlds Online (SDG# 31109)\nStarted: 2017.1.3, Ended: 2017.1.7\nParticipants: floydmasterson (S), WindMillCobra (N)\nWinner: WindMillCobra\n\n1) WindMillCobra: Homeworld B1 Y2 G3\n\n\nHomeworlds Online (SDG# 34080)\nVariants: "Unrated"\nStarted: 2018.4.28, Ended: 2018.5.22\nParticipants: silversliver (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) silversliver: Homeworld B2 G1 R3\n\tFelix: Hi there! New to the game?\n\tsilversliver: Yeah, still learning\n\n3) Felix: Build G1 Felix\n\n4) silversliver: Build R1 Silversliver\n\tFelix: Well I hope you have fun! Let me know if you have any questions along the way\n\n5) Felix: Trade G1 Y1 Felix\n\n6) silversliver: Trade R1 G1 Silversliver\n\n7) Felix: Build Y1 Felix\n\n8) silversliver: Build R1 Silversliver\n\n9) Felix: Trade Y1 R1 Felix\n\n10) silversliver: Trade R1 Y1 Silversliver\n\n11) Felix: Build R1 Felix\n\n12) silversliver: Discover G1 Silversliver Y3 Sys1\n\n13) Felix: Discover R1 Felix G1 Out\n\n14) silversliver: Build G2 Sys1\n\n15) Felix: Build G2 Felix\n\n16) silversliver: Sacrifice G2 Sys1\nBuild G2 Sys1\nBuild R1 Silversliver\n\n17) Felix: D G2 Felix B1 Rim\n\n18) silversliver: Move G2 Sys1 Silversliver\n\n19) Felix: Build R2 Felix\n\n20) silversliver: Trade G2 Y2 Silversliver\n\n21) Felix: Move R2 Felix Rim\n\n22) silversliver: Build G2 Sys1\n\n23) Felix: Build G2 Felix\n\n24) silversliver: Sacrifice Y2 Silversliver\nMove R3 Silversliver Sys1\nMove R3 Sys1 Rim\n\n25) Felix: Sacrifice G2 Rim\nBuild R2 Out\nBuild R3 Felix\n\n26) silversliver: Build R3 Silversliver\n\n27) Felix: Discover G2 Felix B1 Opus\n\n28) silversliver: Sacrifice Y1 Silversliver\nMove R3 Rim Felix\nCatastrophe Felix Red\n\n29) Felix: B G2 Felix\n\tsilversliver: What a twist.\n\n30) silversliver: Trade R1 Y1 Silversliver\n\tFelix: Nice! Not sure how I missed that\n\n31) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Felix\nBuild G3 Opus\n\n32) silversliver: Move G1 Sys1 Opus\n\n33) Felix: Trade G3 B3 Felix\n\n34) silversliver: Build G3 Opus\nCatastrophe Opus Green\n\n35) Felix: Build B1 Felix\n\n36) silversliver: Build R1 Silversliver\n\n37) Felix: Move B1 Felix Out\n\n38) silversliver: Trade R1 B1 Silversliver\n\n39) Felix: Discover B3 Felix B2 Safety\n\n40) silversliver: Move B1 Silversliver Sys1\n\n41) Felix: B B2 Out\n\n42) silversliver: Build B3 Sys1\n\n43) Felix: Build Y1 Felix\n\n44) silversliver: Trade B3 R3 Sys1\n\n45) Felix: Move Y1 Felix Out\n\n46) silversliver: Move R3 Sys1 Out\n\n47) Felix: Build R1 Out\nCatastrophe Out Red\n\n48) silversliver: Build B3 Sys1\n\n49) Felix: Build Y2 Felix\n\n50) silversliver: Trade B3 R3 Sys1\n\n51) Felix: Discover B1 Out G3 Entry\n\n52) silversliver: Move R3 Sys1 Out\n\n53) Felix: Sacrifice Y1 Out\nDiscover B2 Out G3 Limbo\n\n54) silversliver: Build B3 Sys1\n\n55) Felix: Trade B3 Y3 Safety\n\n56) silversliver: Trade B1 Y1 Sys1\n\n57) Felix: Sacrifice G2 Felix\nBuild B1 Limbo\nBuild B3 Entry\n\n58) silversliver: Move B3 Sys1 Out\n\n59) Felix: Move Y1 Felix Rim\n\n60) silversliver: Build Y2 Silversliver\n\n61) Felix: Trade B3 Y3 Entry\n\n62) silversliver: Build B3 Out\n\n63) Felix: B G1 Felix\n\n64) silversliver: Sacrifice Y1 Sys1\nMove R3 Out Limbo\n\n65) Felix: Sacrifice Y2 Felix\nMove B2 Limbo Silversliver\nMove B1 Limbo Silversliver\n\n66) silversliver: Sacrifice Y2 Silversliver\nMove B3 Out Felix\nMove B3 Out Felix\n\n67) Felix: Sacrifice R2 Rim\nAttack B3 Felix\nAttack B3 Felix\n\n68) silversliver: Sacrifice Y1 Silversliver\nMove R3 Limbo Safety\n\n69) Felix: Move Y3 Safety Felix\n\n70) silversliver: Sacrifice G2 Sys1\nBuild R1 Safety\nBuild R1 Silversliver\n\n71) Felix: Sacrifice B3 Felix\nTrade B1 R1 Silversliver\nTrade B2 R2 Silversliver\nCatastrophe Silversliver Red\nPass\n\n\tFelix: Phew, good game! I thought you had me for a minute there. A very fun one :)\n\tsilversliver: gg\n\nHomeworlds Online (SDG# 31133)\nVariants: "Hard time"\nStarted: 2017.1.4, Ended: 2017.3.8\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Felix: Homeworld R2 B3 G3\n\tFelix: And we meet on the ladder again. Good luck and have fun!\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\tts52: Indeed, have a good game!\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Build G1 Ts52\n\n10) Felix: Trade B2 Y2 Felix\n\n11) ts52: Discover B2 Ts52 G2 Kermit\n\n12) Felix: Build B2 Felix\n\n13) ts52: Build B2 Kermit\n\n14) Felix: Discover B2 Felix G1 Opus\n\n15) ts52: Trade B2 Y2 Kermit\n\n16) Felix: Build Y1 Felix\n\n17) ts52: Build Y1 Kermit\n\n18) Felix: Build G1 Felix\n\n19) ts52: Trade Y2 R2 Kermit\n\n20) Felix: Trade G1 R1 Felix\n\n21) ts52: Build R1 Kermit\n\n22) Felix: Move Y2 Felix Opus\n\n23) ts52: Discover B1 Ts52 Y2 Bigbird\n\n24) Felix: Move R1 Felix Opus\n\n25) ts52: Move G1 Ts52 Bigbird\n\n26) Felix: Build R1 Opus\n\n27) ts52: Discover R2 Kermit Y1 Zoe\n\n28) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Opus\nBuild Y3 Felix\n\n29) ts52: Build G1 Ts52\n\n30) Felix: Trade Y3 G3 Felix\n\n31) ts52: Build Y3 Kermit\n\n32) Felix: Build G2 Felix\n\n33) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild R2 Zoe\n\n34) Felix: Sacrifice Y2 Felix\nDiscover R1 Opus Y2 Rim\nMove B1 Felix Opus\n\n35) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Kermit\nBuild G3 Bigbird\n\n36) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R3 Opus\nBuild R3 Rim\n\n37) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B3 Bigbird\n\n38) Felix: Move B2 Opus Rim\n\n39) ts52: Move G3 Bigbird Zoe\n\n40) Felix: Sacrifice G2 Felix\nBuild B3 Rim\nPass\n\tFelix: Quite the fleets we have amassed! \n\n41) ts52: Build G2 Zoe\n\tFelix: You've got me in a pickle.\n\tts52: Yeah, we've built to quite the awkward end game.\n\n42) Felix: Move B3 Rim Ts52\n\n43) ts52: Sacrifice R1 Kermit\nAttack B3 Ts52\n\n44) Felix: Sacrifice Y3 Opus\nMove B1 Opus Rim\nMove B1 Rim Ts52\nMove B2 Rim Ts52\nCatastrophe Ts52 Blue\n\n45) ts52: Move B2 Kermit Ts52\n\n46) Felix: Build Y3 Opus\n\n47) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Kermit\nBuild B1 Kermit\n\n48) Felix: Sacrifice Y2 Opus\nDiscover R3 Rim B1 Rom\nMove R1 Rim Rom\n\n49) ts52: Sacrifice Y1 Kermit\nDiscover R3 Kermit Y1 Scooter\n\n50) Felix: Build Y2 Opus\n\n51) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild B2 Kermit\n\n52) Felix: Sacrifice Y3 Opus\nMove Y2 Opus Kermit\nMove Y1 Felix Opus\nMove Y1 Opus Kermit\nCatastrophe Kermit Yellow\n\tFelix: Arg. So close!\n\n53) ts52: Trade B2 Y2 Kermit\n\n54) Felix: Trade R3 B3 Rom\n\n55) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild Y2 Kermit\n\n56) Felix: Trade B3 Y3 Rom\n\tFelix: .... Very nice move.\n\n57) ts52: Sacrifice G3 Zoe\nBuild G3 Zoe\nBuild R3 Kermit\nBuild B2 Bigbird\n\tFelix: I think you've got me in a pickle.\n\n\tFelix: No point drawing it out. Very nicely played!\n\tts52: Thanks. That was a good game. I still didn't have a complete plan for how to finish you off, but I agree that it was only a matter of time. I look forward to our next game.\n\nHomeworlds Online (SDG# 31135)\nVariants: "Hard time"\nStarted: 2017.1.4, Ended: 2017.2.2\nParticipants: agentofchaos (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 Y2 G3\n\n2) agentofchaos: Homeworld B1 R2 G3\n\n3) ajo: Build G1 Ajo\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) ajo: Discover G1 Ajo B1 Alpha\n\n6) agentofchaos: Trade G1 Y1 Agentofchaos\n\n7) ajo: Build G1 Alpha\n\n8) agentofchaos: Build Y1 Agentofchaos\n\n9) ajo: Trade G1 Y1 Alpha\n\n10) agentofchaos: Build Y2 Agentofchaos\n\n11) ajo: Build Y2 Alpha\n\n12) agentofchaos: Discover Y2 Agentofchaos G3 Pazuza\n\n13) ajo: Trade Y2 R2 Alpha\n\n14) agentofchaos: Trade Y1 R1 Agentofchaos\n\n15) ajo: Build G1 Ajo\n\n16) agentofchaos: Trade Y1 B1 Agentofchaos\n\n17) ajo: Build R1 Alpha\n\n18) agentofchaos: Build B2 Agentofchaos\n\n19) ajo: Trade R2 Y2 Alpha\n\n20) agentofchaos: Trade B1 Y1 Agentofchaos\n\n21) ajo: Build R1 Alpha\n\n22) agentofchaos: Move R1 Agentofchaos Pazuza\n\n23) ajo: Discover Y1 Alpha B3 Beta\n\n24) agentofchaos: Build R2 Pazuza\n\n25) ajo: Move R1 Alpha Ajo\n\n26) agentofchaos: Build B1 Agentofchaos\n\n27) ajo: Build R2 Ajo\n\n28) agentofchaos: M B2 Agentofchaos Pazuza\n\n29) ajo: Build R3 Alpha\n\n30) agentofchaos: Build Y1 Agentofchaos\n\n31) ajo: Sacrifice G1 Ajo\nBuild Y3 Beta\n\n32) agentofchaos: Build Y3 Pazuza\n\n33) ajo: Build Y3 Alpha\n\n34) agentofchaos: Build G1 Agentofchaos\n\n35) ajo: Move R3 Alpha Beta\n\n36) agentofchaos: Sacrifice Y2 Pazuza\nMove Y1 Agentofchaos Beta\nMove Y1 Agentofchaos Beta\nCatastrophe Beta Y\n\n37) ajo: Build R3 Alpha\n\n38) agentofchaos: Build Y1 Pazuza\n\n39) ajo: Move R3 Alpha Beta\n\n40) agentofchaos: Build R3 Pazuza\n\n41) ajo: Move R1 Alpha Pazuza\nCatastrophe Pazuza Red\n\n42) agentofchaos: Trade B2 R2 Pazuza\n\n43) ajo: Build G1 Ajo\n\n44) agentofchaos: Build B2 Agentofchaos\n\n45) ajo: Build G2 Alpha\n\n46) agentofchaos: Trade G1 Y1 Agentofchaos\n\n47) ajo: Trade G2 B2 Alpha\n\n48) agentofchaos: Move B2 Agentofchaos Pazuza\n\n49) ajo: Discover B2 Alpha G2 Midland\n\n50) agentofchaos: Build G1 Agentofchaos\n\n51) ajo: Move R1 Ajo Alpha\n\tajo: It is your move, btw. We were speeding along for a couple of days there...\n\n52) agentofchaos: Build R1 Pazuza\n\tagentofchaos: I have had a lot going on in the last week, so it has kept me preoccupied.\n\n53) ajo: Trade R3 Y3 Beta\n\n54) agentofchaos: Build B2 Pazuza\n\n55) ajo: Build B3 Midland\n\n56) agentofchaos: Discover B1 Agentofchaos R3 Mortzone\n\n57) ajo: Move G1 Alpha Beta\n\n58) agentofchaos: Trade B2 G2 Pazuza\n\n59) ajo: Sacrifice G3 Ajo\nBuild G2 Beta\nBuild G3 Ajo\nBuild R1 Ajo\n\n60) agentofchaos: Sacrifice G3 Agentofchaos\nBuild B2 Mortzone\nBuild Y1 Agentofchaos\nBuild G3 Agentofchaos\n\n61) ajo: Sacrifice Y3 Alpha\nMove Y3 Beta Agentofchaos\nMove G1 Beta Agentofchaos\nMove G2 Beta Agentofchaos\nCatastrophe Agentofchaos Green\n\n\tagentofchaos: well done\n\nHomeworlds Online (SDG# 31149)\nVariants: "Hard time"\nStarted: 2017.1.8, Ended: 2017.1.9\nParticipants: Aristos (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 G2 B3\n\n2) Aristos: Homeworld B3 Y1 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build B1 Goulo\n\tAristos: You as well. \n\n4) Aristos: Build G1 Aristos\n\n5) goulo: Build B1 Goulo\n\n6) Aristos: Trade G1 B1 Aristos\n\n7) goulo: Trade B1 Y1 Goulo\n\n8) Aristos: Build G1 Aristos\n\n9) goulo: Build Y1 Goulo\n\n10) Aristos: Trade G3 Y3 Aristos\n\tAristos: I should resign now. I'm two counts behind you already. I really wish I understood how this happens. \n\n11) goulo: Discover Y1 Goulo G1 Verdeto\n\n12) Aristos: Build Y2 Aristos\n\n13) goulo: Build Y2 Verdeto\n\n14) Aristos: Trade Y3 R3 Aristos\n\n15) goulo: Build Y2 Verdeto\n\n16) Aristos: Discover Y2 Aristos G2 Leaf\n\n17) goulo: Build Y3 Goulo\n\n18) Aristos: Build Y3 Leaf\n\n19) goulo: Sacrifice Y2 Verdeto\nMove Y1 Verdeto Leaf\nMove Y2 Verdeto Leaf\nCatastrophe Leaf Y\n\n\tAristos: Good game. \n\tgoulo: thanks!\n\nHomeworlds Online (SDG# 31130)\nStarted: 2017.1.8, Ended: 2017.3.22\nParticipants: Draw5PlayAll (S), ts52 (N)\nWinner: Draw5PlayAll\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) ts52: Build G1 Ts52\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) ts52: Build Y2 Ts52\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) ts52: Discover Y2 Ts52 G3 Kermit\n\n10) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n11) ts52: Build Y2 Ts52\n\n12) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\tDraw5PlayAll: Nanolog, star date 3206.3:\r\nOur systems have finally begun to settle on our form of government. The large blue planet contains all government offices and is filled with a highly intelligent populace. The red planet is filled with corruption and bad policies. We are looking for warp capable materials but alien empires continually take them before our fleet can.\r\n\r\n(55 words. I hope.)\n\n13) ts52: Trade Y1 B1 Ts52\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\n15) ts52: Build G1 Ts52\n\n16) Draw5PlayAll: Build B1 G2\n\n17) ts52: Move B1 Ts52 Kermit\n\n18) Draw5PlayAll: Move Y1 Draw5playall G2\n\n19) ts52: Discover G1 Ts52 B3 Gonzo\n\n20) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n21) ts52: Build G1 Ts52\n\n22) Draw5PlayAll: Trade B1 R1 G2\n\n23) ts52: Trade Y2 R2 Ts52\n\n24) Draw5PlayAll: Build R2 G2\n\n25) ts52: Build B1 Kermit\n\n26) Draw5PlayAll: Trade R2 Y2 G2\n\n27) ts52: Build R2 Ts52\n\n28) Draw5PlayAll: Build R2 G2\n\n29) ts52: Move R2 Ts52 Kermit\n\n30) Draw5PlayAll: Discover R1 G2 G1 G1\n\n31) ts52: Build R3 Ts52\n\n32) Draw5PlayAll: Build R3 G2\n\n33) ts52: Build R3 Kermit\n\n34) Draw5PlayAll: Move Y1 G2 Draw5playall\n\n35) ts52: Move R3 Ts52 Gonzo\n\n36) Draw5PlayAll: Build Y1 Draw5playall\n\n37) ts52: Build G2 Gonzo\n\n38) Draw5PlayAll: Build G2 Draw5playall\n\n39) ts52: Move R2 Kermit G1\n\n40) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 G2\n\n41) ts52: Build Y3 Kermit\n\n42) Draw5PlayAll: Discover Y1 Draw5playall B2 B2\n\tDraw5PlayAll: I wanted to sac the R1 and pass but you just build the R1 back.\n\tts52: True\n\n43) ts52: Discover G1 Ts52 Y3 Bigbird\n\n44) Draw5PlayAll: Move R2 G2 Bigbird\n\n45) ts52: Move Y3 Kermit G1\n\n46) Draw5PlayAll: Attack G1 Bigbird\n\n47) ts52: Attack R1 G1\n\n48) Draw5PlayAll: Discover Y1 B2 B3 B3\n\n49) ts52: Move Y3 G1 B3\n\n50) Draw5PlayAll: Discover Y1 B3 B1 B1\n\n51) ts52: Move B1 Kermit G1\n\n52) Draw5PlayAll: Build B2 G2\n\n53) ts52: Move Y3 B3 G1\n\n54) Draw5PlayAll: Discover Y2 G2 B3 B3\n\n55) ts52: Move R3 Kermit B1\n\n56) Draw5PlayAll: Move Y1 B1 G2\n\n57) ts52: Move Y2 Kermit B1\n\n58) Draw5PlayAll:\nSacrifice Y1 Draw5playall\nD R2 Bigbird Y1 Y1\n\n59) ts52: Move R3 B1 Bigbird\n\n60) Draw5PlayAll: Move G1 Bigbird Y1\n\tDraw5PlayAll: We both appear to be shuttling around randomly.\n\n61) ts52: Move Y2 B1 Gonzo\n\tts52: Endgame is tricky when you exhaust the bank.\n\n62) Draw5PlayAll: Move R2 Y1 Kermit\n\n63) ts52: Move Y3 G1 Kermit\n\n64) Draw5PlayAll: Attack B1 Kermit\n\n\tDraw5PlayAll: I offer a draw.\n\tts52: I accept. And since the system doesn't seem to allow it, I'll resign. Good game.\n\nHomeworlds Online (SDG# 31107)\nStarted: 2017.1.12, Ended: 2017.2.8\nParticipants: Felix (S), Ausmuh (N)\nWinner: Felix\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) Ausmuh: Build B1 Ausmuh\n\tFelix: Welcome and good luck!\n\tAusmuh: Thanks! you too! Just getting back to it after a year or so.\n\n4) Felix: Build G1 Felix\n\tFelix: Yeah I remember playing again you. Happy to help you de-rust!\n\n5) Ausmuh: Trade B1 G1 Ausmuh\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Ausmuh: Discover G1 Ausmuh Y2 Lemmy\n\n8) Felix: Build G1 Felix\n\n9) Ausmuh: Build B1 Ausmuh\n\n10) Felix: Trade G1 B1 Felix\n\n11) Ausmuh: Move B1 Ausmuh Lemmy\n\n12) Felix: Build Y1 Felix\n\n13) Ausmuh: Build B1 Ausmuh\n\n14) Felix: Build Y2 Felix\n\n15) Ausmuh: Trade B3 Y3 Ausmuh\n\n16) Felix: Discover Y1 Felix G1 Out\n\n17) Ausmuh: Build B2 Lemmy\n\n18) Felix: Build Y2 Out\n\n19) Ausmuh: Build B2 Ausmuh\n\n20) Felix: Move B1 Felix Out\n\n21) Ausmuh: Trade B2 R2 Lemmy\n\n22) Felix: Trade Y1 R1 Out\n\n23) Ausmuh: Discover G1 Lemmy Y3 Hmm\n\n24) Felix: Build G1 Felix\n\n25) Ausmuh: Build G2 Hmm\n\n26) Felix: Discover G1 Felix R1 Edge\n\n27) Ausmuh: Sacrifice G1 Hmm\nBuild B2 Lemmy\n\n28) Felix: Build B2 Out\n\n29) Ausmuh: Move B2 Lemmy Edge\n\n30) Felix: Discover B1 Out G2 Rim\n\n31) Ausmuh: Sacrifice G2 Hmm\nBuild B3 Edge\nBuild B3 Lemmy\n\n32) Felix: Move B2 Out Lemmy\n\n33) Ausmuh: Sacrifice B2 Edge\nTrade B3 Y3 Edge\nTrade B3 G3 Lemmy\n\n34) Felix: Sacrifice R1 Out\nAttack R2 Lemmy\n\n35) Ausmuh: Discover B1 Lemmy G1 Pasture\n\tAusmuh: Haha, great attack. I didn't pay attention to that one at all!\n\n36) Felix: Build B2 Rim\n\tFelix: Thank you! Yeah I've fallen victim to that type of attack many times. I always forget that people can attack even without a red in the actual system as long as they have one elsewhere!\n\n37) Ausmuh: Trade B2 R2 Ausmuh\n\n38) Felix: Sacrifice Y2 Felix\nMove B2 Lemmy Out\nMove R2 Lemmy Out\n\n39) Ausmuh: Move G3 Lemmy Out\n\n40) Felix: Sacrifice Y2 Out\nMove R2 Out Rim\nMove B2 Out Felix\n\n41) Ausmuh: Build B2 Pasture\n\tFelix: Man, you really have me on the run...\n\n42) Felix: Trade B1 Y1 Rim\n\tAusmuh: Almost, sort of. :) You getting that red two-pip from me really put a damper on my plan. Now comes the fun part... plan B! Later in the game is when it can be really difficult for me to see a clear cut plan.\n\n43) Ausmuh: Sacrifice Y3 Edge\nMove B1 Pasture Felix\nMove B2 Pasture Felix\nCatastrophe Felix Blue\nMove G3 Out Rim\n\n44) Felix: Move Y1 Rim Ausmuh\n\tFelix: Woah, nice move\n\n45) Ausmuh: Trade Y3 B3 Ausmuh\n\n46) Felix: Trade R2 G2 Rim\n\tAusmuh: Thanks, nice response!\n\n47) Ausmuh: Sacrifice B1 Ausmuh\nTrade G3 Y3 Rim\n\n48) Felix: Build Y2 Ausmuh\n\n49) Ausmuh: Sacrifice R2 Ausmuh\nAttack G2S Rim\nAttack B2S Rim\n\n50) Felix: Build Y2 Ausmuh\nCatastrophe Ausmuh Yellow\n\n51) Ausmuh: Build B1 Ausmuh\n\n52) Felix: Build Y1 Felix\n\n53) Ausmuh: Trade G2 Y2 Rim\n\n54) Felix: Sacrifice Y1 Felix\nMove G1 Edge Ausmuh\n\n55) Ausmuh: Sacrifice Y2 Rim\nMove Y3 Rim Ausmuh\nMove Y3 Ausmuh Felix\n\tAusmuh: Well done! \n\n56) Felix: Sacrifice G3 Felix\nBuild G1 Ausmuh\nBuild G1 Ausmuh\nCatastrophe Ausmuh Green\nBuild Y1 Felix\n\tFelix: Thank you, good game! I'm happy to rematch any time :)\n\tDraw5PlayAll: Has there ever in the history of Homeworlds been a game with complete anihillation of all stars and ships?\n\n\nHomeworlds Online (SDG# 31172)\nStarted: 2017.1.12, Ended: 2017.3.3\nParticipants: Felix (S), w00t (N)\nWinner: Felix\n\n1) w00t: Homeworld B3 Y1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) w00t: Build G1 W00t\n\tFelix: Hi there. First game or have you played before?\n\n4) Felix: Build G1 Felix\n\tw00t: Greetings. I've played homeworlds a lot more on a table top than here. Certainly not new to the game, but far from calling myself a master :)\n\tFelix: Cool, well sounds like you know what you're doing :) I'm no master either but I've played quite a few games on here. Good luck and have fun!\n\n5) w00t: Discover G1 W00t B2 Boop\n\n6) Felix: Trade G1 Y1 Felix\n\n7) w00t: Build G1 Boop\n\n8) Felix: Build Y1 Felix\n\n9) w00t: Build G1 W00t\n\n10) Felix: Build Y2 Felix\n\n11) w00t: Build G2 Boop\n\n12) Felix: Build G2 Felix\n\n13) w00t: Trade G2 Y2 Boop\n\n14) Felix: Discover G2 Felix B1 Out\n\n15) w00t: Discover G1 Boop R1 Bop\n\n16) Felix: Move Y1 Felix Out\n\n17) w00t: Build G2 Bop\n\n18) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y3 Felix\nBuild G2 Out\n\n19) w00t: Sacrifice G3 W00t\nBuild G3 W00t\nBuild G3 Boop\nBuild Y3 Boop\n\n20) Felix: Sacrifice Y2 Felix\nMove G2 Out Boop\nMove G2 Boop W00t\n\n21) w00t: Trade G1 R1 W00t\n\tw00t: I apologize for the delay... that was a mighty good move you made :)\n\tw00t: trade g1 r1 w00t\n\tw00t: lol... errr... wrong box :)\n\n22) Felix: Sacrifice G2 Out\nBuild G1 W00t\nBuild G2 W00t\nCatastrophe W00t Green\n\n23) w00t: Move G3 Boop W00t\n\tFelix: Thanks! We'll see if it works out!\n\n24) Felix: Trade Y3 G3 Felix\n\n25) w00t: Move Y3 Boop Bop\n\tFelix: Darn. I'm not sure it worked out!\n\n26) Felix: Discover Y1 Out G2 Vazoik\n\tw00t: It would have worked very well if I hadn't been a lucky s.o.b. with that g3 at another system :)\n\n27) w00t: Build G1 W00t\n\n28) Felix: Sacrifice G3 Felix\nBuild Y2 Vazoik\nBuild Y3 Out\nBuild Y3 Felix\n\n29) w00t: Move Y2 Boop Out\n\n30) Felix: Trade Y3 R3 Out\n\n31) w00t: Build Y3 Bop\n\n32) Felix: Trade Y3 G3 Felix\n\n33) w00t: Sacrifice G3 W00t\nBuild G2 Bop\nBuild G3 W00t\nBuild G3 Boop\n\n34) Felix: Build Y3 Felix\n\n35) w00t: Move Y2 Out Felix\n\n36) Felix: Trade Y3 R3 Felix\n\tw00t: Still no clue which one of us has any sort of upper hand... I am enjoying this game a whole lot! :)\n\n37) w00t: Sacrifice Y2 Felix\nMove G1 Bop Felix\nMove G2 Bop Felix\n\tFelix: I think you have the upper hand at the moment. You're playing quite well, and I'm having fun too!\n\n38) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y3 Felix\nBuild R1 Out\n\n39) w00t: Trade G2 R2 Felix\n\n40) Felix: Sacrifice R3 Felix\nAttack R2 Felix\nAttack G1 Felix\nPass\n\n41) w00t: Build R2 W00t\n\tw00t: wow!! I so did not expect you to sacrifice that piece :)\n\n42) Felix: Sacrifice Y2 Out\nMove Y2 Vazoik Bop\nMove Y1 Felix Bop\nCatastrophe Bop Yellow\n\n43) w00t: Move R2 W00t Vazoik\n\tFelix: I wasn't sure myself if I would until I did it! It was too much to resist getting two of your pieces.\n\n44) Felix: Move R3 Out Vazoik\n\n45) w00t: Sacrifice G2 Bop\nBuild R1 Vazoik\nBuild R3 Vazoik\nCatastrophe Vazoik Red\n\n46) Felix: Build G2 Felix\n\tw00t: Wow! This game has been an epic battle so far!\n\n47) w00t: Trade G1 Y1 Boop\n\tFelix: Indeed!\n\n48) Felix: Move G2 Felix Out\n\n49) w00t: Move G3 Boop Out\n\n50) Felix: Sacrifice Y2 Out\nMove G2 Out Boop\nMove R1 Out Boop\n\n51) w00t: Move Y1 Boop Out\n\n52) Felix: Build Y2 Felix\n\n53) w00t: Build Y2 Out\n\n54) Felix: Discover Y2 Felix B1 Rim\n\n55) w00t: Trade G1 B1 W00t\n\n56) Felix: Build Y2 Vazoik\n\n57) w00t: Sacrifice Y2 Out\nDiscover G3 Out Y3 Yoink1\nDiscover Y1 Out Y3 Yoink2\n\n58) Felix: Build Y2 Vazoik\n\n59) w00t: Move Y1 Yoink2 Vazoik\nCatastrophe Vazoik Yellow\n\n60) Felix: Build G1 Boop\n\n61) w00t: Trade G3 Y3 W00t\n\tFelix: So many explosions!\n\tw00t: it was the end of vazoik as we know it :)\n\n62) Felix: Trade G1 Y1 Boop\n\n63) w00t: Trade Y3 B3 W00t\n\n64) Felix: Build G1 Boop\n\tw00t: I'm hoping I've found a clever way to end that standoff :)\n\n65) w00t: Discover B1 W00t G2 Thbt\n\tFelix: We'll see!\n\n66) Felix: Trade G1 B1 Boop\n\n67) w00t: Trade B3 G3 W00t\n\n68) Felix: Build B2 Boop\n\n69) w00t: Move G3 Yoink1 Rim\n\n70) Felix: Sacrifice Y2 Rim\nMove B1 Boop W00t\nMove B2 Boop W00t\n\n71) w00t: Build B2 Thbt\n\n72) Felix: Sacrifice R1 Boop\nAttack R1 W00t\n\n73) w00t: Trade B2 R2 Thbt\n\n74) Felix: Sacrifice G2 Boop\nBuild B2 W00t\nBuild Y1 Boop\nCatastrophe W00t Blue\n\n75) w00t: Build R1 Thbt\n\n76) Felix: Sacrifice G1 Felix\nBuild Y2 Boop\n\n77) w00t: Sacrifice R1 Thbt\nAttack R1 W00t\n\n78) Felix: Sacrifice Y3 Felix\nMove Y2 Boop W00t\nMove Y1 Boop W00t\nMove Y1 Boop W00t\nCatastrophe W00t Yellow\n\tw00t: t'was a mighty fun game :) Thank you very much\n\tFelix: It was! Well played. I hope you had fun and learned some things. I'm happy to rematch any time.\n\n\nHomeworlds Online (SDG# 31173)\nVariants: "Hard time"\nStarted: 2017.1.13, Ended: 2017.1.22\nParticipants: Ausmuh (S), zeder (N)\nWinner: Ausmuh\n\n1) zeder: Homeworld Y2 B1 G3\n\n2) Ausmuh: Homeworld G3 Y1 B3\n\n3) zeder: Build G1 Zeder\n\tAusmuh: Hello, Have a fun game!\n\n4) Ausmuh: Build B1 Ausmuh\n\n5) zeder: Discover G1 Zeder Y3 Water\n\n6) Ausmuh: Build B1 Ausmuh\n\n7) zeder: Build G1 Zeder\n\n8) Ausmuh: Discover B1 Ausmuh G2 Gwar\n\n9) zeder: Trade G3 B3 Zeder\n\n10) Ausmuh: Build B2 Gwar\n\n11) zeder: Build B2 Zeder\n\n12) Ausmuh: Trade B2 Y2 Gwar\n\n13) zeder: Trade B2 R2 Zeder\n\n14) Ausmuh: Build B2 Gwar\n\n15) zeder: Build G1 Zeder\n\n16) Ausmuh: Trade B2 R2 Gwar\n\n17) zeder: Move R2 Zeder Water\n\n18) Ausmuh: Build B2 Gwar\n\n19) zeder: Build G2 Zeder\n\n20) Ausmuh: Trade B3 G3 Ausmuh\n\n21) zeder: Discover G1 Water Y2 Deaddog\n\n22) Ausmuh: Sacrifice G3 Ausmuh\nBuild B2 Ausmuh\nBuild B2 Gwar\nBuild B3 Ausmuh\n\n23) zeder: Build G2 Deaddog\n\n24) Ausmuh: Trade B3 Y3 Ausmuh\n\n25) zeder: Build G3 Deaddog\n\n26) Ausmuh: Build B3 Ausmuh\n\n27) zeder: Discover G2 Deaddog B3 Heap\n\n28) Ausmuh: Discover B2 Gwar G3 Lxsx\n\n\nHomeworlds Online (SDG# 31174)\nStarted: 2017.1.13, Ended: 2017.3.6\nParticipants: Felix (S), MobyNostromo (N)\nWinner: Felix\n\n1) MobyNostromo: Homeworld B1 G2 Y3\n\tMobyNostromo: Hi. This is my first time playing, and the wiki is down. Can you help me with the notation?\n\n2) Felix: Homeworld B2 R3 G3\n\tDraw5PlayAll: What do you need?\r\n\r\nAlso, change games/homeworlds to games:homeworlds in the wiki URL and that should work.\n\tMobyNostromo: Aha!! I found it. Thank you., and thank you for waiting for my move. I'm good, you can make your move.\n\tFelix: I guess Draw5 beat me to the advice. But I'm happy to help you with the notation and give you tips as we play. One cool thing to remember is that you don't have to type out the full word of the notation. "b g1 MobyNostromo" would work just as well as "build g1 MobyNostromo." Saves a bit of time!\n\n3) MobyNostromo: Build Y1 Mobynostromo\n\n4) Felix: Build G1 Felix\n\tMobyNostromo: Hi Felix. Thanks for the clarification. I'm very curious about this game, but I'm afraid I'm not going to give you a very good game.\n\tFelix: No problem! I'm always happy to help a beginner learn. It's a wonderful game so I hope you'll learn to love it. Don't worry about doing super wlel on your first game. It took me a solid 10-20 games to really start to wrap my head around the strategy of it.\n\n5) MobyNostromo: Build Y1 Mobynostromo\n\tMobyNostromo: Knowing the little I know of it, I think I'm going to like this one. I know I'm going to blow this game (and the next ten or twenty).\n\tMobyNostromo: And thanks for the help!!\n\tMobyNostromo: I'm not getting the proper codes. I wanted to discover a new system with my Y1. What should I right for the next move?\n\n6) Felix: Trade G1 Y1 Felix\n\tFelix: To discover a new system you would type "d y1 MobyNostromo" plus the size/color of the new system and the name of the new system. So if you wanted to discover a g3 with your y1 you would type "d y1 MobyNostromo g3 system1" for instance. But you can name it whatever you want.\r\n\r\nI hope that helps!\n\n7) MobyNostromo: Discover Y1 Mobynostromo G3 Alpha\n\n8) Felix: Build Y2 Felix\n\tMobyNostromo: It worked! Thanks!\n\n9) MobyNostromo: Build Y2 Alpha\n\n\n\n\n10) Felix: Discover Y2 Felix G1 Out\n\n11) MobyNostromo: Trade Y1 B1 Mobynostromo\n\n12) Felix: Build G1 Felix\n\n13) MobyNostromo: Move B1 Mobynostromo Alpha\n\n14) Felix: Trade G1 B1 Felix\n\n15) MobyNostromo: T Y2 R2 Alpha\n\n16) Felix: Build B2 Felix\n\n17) MobyNostromo: Discover R2 Alpha G1 In\n\n18) Felix: Trade B2 R2 Felix\n\n19) MobyNostromo: B B2 Alpha\n\n20) Felix: Move B1 Felix Out\n\n21) MobyNostromo: T B2 R2 Alpha\n\n22) Felix: Build B2 Out\n\n23) MobyNostromo: B B2 Alpha\n\n24) Felix: Discover B2 Out G3 Ridge\n\n25) MobyNostromo: B B3 Alpha\n\n26) Felix: Move B1 Out Alpha\nCatastrophe Alpha Blue\n\n27) MobyNostromo: M R2 Alpha Out\n\tMobyNostromo: I had a dire feeling something was in the works. Something "catastrophic."\n\n28) Felix: Sacrifice R2 Felix\nAttack R2 Out\nPass\n\tFelix: Hehehe, always gotta watch out for those catastrophes, but it can be very difficult to recognize the threats sometimes.\n\n29) MobyNostromo: B Y1 Alpha\n\tFelix: Also, watch out for the remote attack ability on a sacrifice, like I just did!\n\tMobyNostromo: I completely forgot about that. There's a lot to this game! I think I'm going to like this one at least a lot.\n\n30) Felix: Build Y2 Out\n\tFelix: It's my favorite game, even better than chess. The rules are simple but the possibilities are extremely complex!\n\n31) MobyNostromo: B Y2 Mobynostromo\n\tMobyNostromo: Though I know very little at this point, I can see it supplanting games like Chess.\n\n32) Felix: Build Y3 Felix\n\tDraw5PlayAll: I doubt the rules are simple... but the possibilities are very IDIC (infinite diversity in infinite combinations).\n\n33) MobyNostromo: T Y2 B2 Mobynostromo\n\tFelix: @Draw5 - I meant compared with chess. Only four piece types, one type of movement, one type of attack, etc. Pretty simple, really.\n\tDraw5PlayAll: Four piece types? I say 12 or 24!\n\tFelix: How do you figure? Different sizes, sure, but the same action types.\n\tMobyNostromo: It seems to me to encapsulate pretty elegant rules within so many possible outcomes, it can become an incredible brain-burner. Then again, my two cents at this point is worth about that much - two cents.\n\n34) Felix: Build B1 Ridge\n\n35) MobyNostromo: M B2 Mobynostromo Alpha\n\tDraw5PlayAll: Inflation...\n\tMobyNostromo: Ha, ha! Those are two expensive cents.\n\n36) Felix: Move Y2 Out Ridge\n\n37) MobyNostromo: B B1 Alpha\n\n38) Felix: Move B1 Ridge Out\n\n39) MobyNostromo: M B2 Alpha In\n\n40) Felix: Build B3 Ridge\n\n41) MobyNostromo: B B3 In\n\n42) Felix: Build B3 Out\n\n43) MobyNostromo: M Y1 Alpha In\n\n44) Felix: Build G1 Felix\n\n45) MobyNostromo: B Y2 Alpha\n\n46) Felix: Build Y3 Out\n\n47) MobyNostromo: T Y2 R2 Alpha\n\n48) Felix: Build Y2 Ridge\n\n49) MobyNostromo: B R1 Alpha\n\n50) Felix: Discover Y2 Out R3 Rim\n\n51) MobyNostromo: T B3 R3 In\n\n52) Felix: Sacrifice Y3 Felix\nMove Y2 Rim Mobynostromo\nMove Y2 Ridge Mobynostromo\nMove Y2 Ridge Mobynostromo\nCatastrophe Mobynostromo Yellow\n\tFelix: Good game and well fought! Hope you had fun!\n\tMobyNostromo: It was awesome. I want to keep playing this game and really learn it. Thank you for your patience.\n\tFelix: Well I'm happy to rematch any time.\n\n\nHomeworlds Online (SDG# 30502)\nStarted: 2017.1.14, Ended: 2017.2.12\nParticipants: dragonlord (S), w00t (N)\nWinner: w00t\n\n1) w00t: Homeworld R3 Y2 G3 *\n\n2) dragonlord: Homeworld G1 B2 Y3\n\n3) w00t: Build G1 W00t\n\n4) dragonlord: Build Y1 Dragonlord\n\n5) w00t: Discover G1 W00t B1 Boop\n\n6) dragonlord: Discover Y1 Dragonlord G3 Terrace\n\n7) w00t: Build G1 Boop\n\tdragonlord: \n\tdragonlord: \n\n8) dragonlord: Build Y1 Dragonlord\n\n9) w00t: Build G2 Boop\n\n10) dragonlord: Trade Y3 G3 Dragonlord\n\n11) w00t: Trade G2 Y2 Boop\n\n12) dragonlord: Build Y1 Terrace\n\n13) w00t: Build G2 W00t\n\n14) dragonlord: Discover Y1 Terrace B1 Iceland\n\n15) w00t: Discover G1 Boop B3 Bop\n\n16) dragonlord: Trade Y1 R1 Dragonlord\n\n17) w00t: Sacrifice G3 W00t\nBuild G2 Boop\nBuild G2 Bop\nBuild G3 W00t\n\n18) dragonlord: Build R1 Dragonlord\n\n19) w00t: Sacrifice Y2 Boop\nMove G1 Bop Dragonlord\nMove G2 Bop Dragonlord\nCatastrophe Dragonlord Green\n\n20) dragonlord: Trade R1 Y1 Dragonlord\n\n21) w00t: Trade G2 Y2 Boop\n\n22) dragonlord: Build Y2 Terrace\n\n23) w00t: Move Y2 Boop Dragonlord\n\n24) dragonlord: Discover Y1 Dragonlord G3 Farm\n\n25) w00t: Trade G1 R1 Boop\n\n\nHomeworlds Online (SDG# 31155)\nStarted: 2017.1.14, Ended: 2017.4.14\nParticipants: ts52 (S), w00t (N)\nWinner: ts52\n\n1) w00t: Homeworld G2 R1 B3\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) w00t: Build B1 W00t\n\n4) ts52: Build G1 Ts52\n\n5) w00t: Trade B1 Y1 W00t\n\n6) ts52: Trade G1 B1 Ts52\n\n7) w00t: Build Y1 W00t\n\n8) ts52: Build G1 Ts52\n\n9) w00t: Trade Y1 G1 W00t\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) w00t: Discover G1 W00t B3 Boop\n\n12) ts52: Build G1 Ts52\n\n13) w00t: Build Y1 W00t\n\n14) ts52: Build Y2 Ts52\n\n15) w00t: Build Y2 W00t\n\n16) ts52: Discover Y1 Ts52 G2 Kermit\n\n17) w00t: Move Y1 W00t Boop\n\n18) ts52: Move B1 Ts52 Kermit\n\n19) w00t: Discover Y1 W00t G3 Bop\n\n20) ts52: Discover G1 Ts52 B2 Grover\n\n21) w00t: Build G1 Boop\n\n22) ts52: Build G2 Grover\n\n23) w00t: Trade G1 R1 Boop\n\n24) ts52: Trade G2 R2 Grover\n\n25) w00t: Build G1 Boop\n\n26) ts52: Move Y2 Ts52 Grover\n\n27) w00t: Discover G1 Boop R2 Star\n\n28) ts52: Build R1 Grover\n\n29) w00t: Trade B3 G3 W00t\n\n30) ts52: Build G2 Ts52\n\n31) w00t: Sacrifice Y1 Boop\nMove G1 Star Ts52\n\n32) ts52: Trade G2 R2 Ts52\n\n33) w00t: Build G2 Ts52\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Grover\nBuild R2 Grover\nBuild R3 Ts52\n\n35) w00t: Sacrifice G2 Ts52\nBuild R3 Boop\nBuild G2 Boop\n\n36) ts52: Move R2 Grover Bop\n\n\tLaurie_Menke: Hi ts52... I just wanted to let you and w00t know that I'm making a list of games to ask Aaron to end due to abandonment. I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours. I hope that's the right thing to do. :)\n\tts52: Laurie, that's fine. In this case I can terminate the game, but since I've forgotten about my SDG games on more than one occasion, I have a tendency to let time lapse for up to a month before I do.\n\tLaurie_Menke: ts52, Aaron did his sweep but didn't take this one out, so I guess you'll have to do it yourself if you want to. :)\n\tts52: Thanks Laurie. I'll give it another week or so.\n\tLaurie_Menke: :)\n\nHomeworlds Online (SDG# 31180)\nStarted: 2017.1.16, Ended: 2017.1.22\nParticipants: w00t (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld B3 Y1 G3\n\tAusmuh: wait. what?\n\n\tDraw5PlayAll: What do you mean?\n\tAusmuh: I was just surprised to see w00t making standing challenges. It's been a while.\n\tAusmuh: Next time! :)\n\nHomeworlds Online (SDG# 31200)\nVariants: "Hard time"\nStarted: 2017.1.18, Ended: 2017.2.2\nParticipants: ausmuh (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n\tAusmuh: I have no place to enter commands from my screen. o.O Never ran into this problem before. :)\n\tBabamots: I had my loyalists on your planet sabotage your interstellar transmitter. It's war. You do what you gotta do. ;-)\n\tAusmuh: Haha, so that's what happened! Well done! I admit I never saw it coming.\n\tDraw5PlayAll: Who is playing this game?\n\tBabamots: It's Babamots and ausmuh.\n\tAusmuh: OK, well I can't take a move, but maybe if the time runs out you can at least move up a rung?\n\tBabamots: Well yeah, but that's not very fair to you. I can wait. Let's get someone to sort this out.\n\tBabamots: I'll trying emailing Aaron. If that fails, I'll try Facebook and SDG PM. So many ways to bug people!\n\tAusmuh: Haha, ok. Whatever is clever :)\n\tBabamots: Quick question: have you tried using a different browser?\n\tAusmuh: I have tried a couple different ones to no avail :( chrome, slim jet (chrome), edge. I'll have to try Firefox. I can take turns in my other games so I don't know if that's the problem.\n\tBabamots: I haven't got an email response yet, so I tried Aaron on Facebook today. If we never hear back, whaddaya say we play an unranked game and the loser resigns this one?\n\tAusmuh: I like it! Except I don't have a resign button either. Just the map. You'DE Welshman to start the clock, no bad feelings here. I'm still all for another game though :)\n\tAusmuh: *you're welcome. \r\n\r\nWow, autocorrect. Welshman....\n\tBabamots: But you can run out the clock, so we can still use this to update the ladder correctly. \n\tAusmuh: good point! :) \n\tBabamots: Aaron hasn't checked his Facebook messages yet. Oh well. I promise not to disable your communications array the next time we meet.\n\tAusmuh: Sounds good to me! The whole time this played out I couldn't help but think of SpaceBalls.\r\n\r\n"The radar appears to be..."\r\n"Jammed.... raspberry. There's only one man who would dare give me the raspberry! Babamots!!!"\n\tBabamots: Ausmuh. So at last we meet for the first time for the last time.\n\tBabamots: Looks like Aaron is active on the site. I should have sent him a PM first.\n\nHomeworlds Online (SDG# 31176)\nStarted: 2017.1.19, Ended: 2017.4.3\nParticipants: alexhouston (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\talexhouston: hi\r\n\n\n2) alexhouston: Homeworld G3 R2 B3\n\tFelix: Hello! First game?\n\n3) Felix: Build G1 Felix\n\talexhouston: Yeah first game on SDG, I recently got Pyramid Arcade and Homeworlds was easily my favorite on there. I'll admit I'm still probably a pretty novice player so you might not find me a huge challenge but I'm just trying to get better\n\talexhouston: Yeah first game on SDG, I recently got Pyramid Arcade and Homeworlds was easily my favorite on there. I'll admit I'm still probably a pretty novice player so you might not find me a huge challenge but I'm just trying to get better\n\tFelix: No problem! The best way to get better is to practice and play a lot. I'm no pro but I have played quite a few games on here so I hope I'm able to help you improve. Let me know if you have any questions and if I think of any tips I'll let you know!\n\n4) alexhouston: Build B1 Alexhouston\n\tFelix: I have found that starting with a green star in your homeworld generally makes the game a bit more difficult for a newer player The reason is that it makes it harder to set up a "factory" in your homeworld (A g3 and another green) without overcrowding it with green. Of course, you can always try and build that factory elsewhere, but it's a bit more difficult usually. It's also widely considered strongest to begin with a large green ship because this provides extra build power in the early game (It's possible to sacrifice the G3 to build 3 ships, one of which could be a large). That extra build potential can realy help build up one's fleet early on, and it's not always so easy to do that if you start with something like a B3 (though a b3 does give you an early edge in getting blue ships, which is good too)\n\n5) Felix: Trade G1 Y1 Felix\n\n6) alexhouston: Trade B1 Y1 Alexhouston\n\n7) Felix: Build G1 Felix\n\n8) alexhouston: Discover Y1 Alexhouston G1 Star\n\n9) Felix: Trade G1 B1 Felix\n\tFelix: Just as a general tip, it is sometimes wiser to build another ship of a particular color before you move your ship out. For instance, since you just moved your y1 to a new system, you lost the ability to use yellow in your homeworld, and to get it back you'll either have to move your y1 back there or build a b1 and then trade it for a y1, which will essentially cause you to waste a turn in the future. If you built another y1 first and THEN moved one of them out, then you'd retain the yellow ability in both systems. It's a good rule of thumb to build first and then move, but then again, there might be unique situations where you won't ALWAYS want to follow that rule.\n\n10) alexhouston: Build B1 Alexhouston\n\n11) Felix: Build G1 Felix\n\talexhouston: Thanks for the tips, that definitely makes sense.\r\n\n\tDraw5PlayAll: Building the Y1 would allow Felix to get a Y2.\n\n12) alexhouston: Build Y1 Star\n\n13) Felix: Trade G1 R1 Felix\n\n14) alexhouston: Move Y1 Star Alexhouston\n\n15) Felix: Build Y2 Felix\n\n16) alexhouston: Build Y2 Alexhouston\n\n17) Felix: Discover Y1 Felix G2 Rykas\n\n18) alexhouston: Move B1 Alexhouston Star\n\n19) Felix: Build Y2 Felix\n\n20) alexhouston: Build Y3 Star\n\n21) Felix: Build Y3 Rykas\n\n22) alexhouston: Discover Y3 Star B2 World\n\n23) Felix: Move Y1 Rykas Star\n\n24) alexhouston: Discover Y1 Alexhouston G1 Flash\n\n25) Felix: Build Y3 Rykas\n\n26) alexhouston: Move B1 Star World\n\n27) Felix: Move B1 Felix World\n\n28) alexhouston: Move Y1 Star Rykas\n\n29) Felix: Move Y3 Rykas Flash\n\n30) alexhouston: Trade Y2 R2 Alexhouston\n\n31) Felix: Trade Y2 B2 Felix\n\n32) alexhouston: Build Y2 Flash\n\n33) Felix: Move B2 Felix World\nCatastrophe World Blue\n\n34) alexhouston: Move Y1 Flash Alexhouston\n\n35) Felix: Move R1 Felix Rykas\n\n36) alexhouston: Move Y1 Rykas Star\n\n37) Felix: Build G1 Felix\n\n38) alexhouston: Trade R2 G2 Alexhouston\n\n39) Felix: Discover G1 Felix B2 Roam\n\n40) alexhouston: Trade Y1 B1 Alexhouston\n\n41) Felix: Build G2 Roam\n\n42) alexhouston: Trade G2 Y2 Alexhouston\n\n43) Felix: Build G2 Felix\n\n44) alexhouston: Trade B3 G3 Alexhouston\n\n45) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Rykas\nBuild Y3 Felix\n\n46) alexhouston: Build B1 Alexhouston\n\n47) Felix: Build R1 Rykas\n\n48) alexhouston: Sacrifice Y2 Alexhouston\nMove Y1 Star Rykas\nMove Y2 Flash Rykas\nCatastrophe Rykas Y\n\n49) Felix: Trade G2 Y2 Roam\n\n50) alexhouston: Trade B1 Y1 Alexhouston\n\n51) Felix: Build G2 Roam\n\n52) alexhouston: Build B1 Alexhouston\n\n53) Felix: Discover G1 Roam B1 Edge\n\n54) alexhouston: Trade G3 B3 Alexhouston\n\n55) Felix: Build G3 Edge\n\n56) alexhouston: Move B1 Alexhouston Star\n\n57) Felix: Sacrifice R1 Rykas\nAttack B1 Star\n\n58) alexhouston: Discover B1 Alexhouston R1 Run\n\n59) Felix: Build B2 Star\n\tFelix: Watch out for your opponents ability to attack remotely with a sacrifice!\n\talexhouston: yeah I just lost a different game because of that so I got to get better at noticing that for sure\n\n60) alexhouston: Build Y1 Alexhouston\n\n61) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Flash\nBuild Y3 Roam\n\n62) alexhouston: Move Y1 Alexhouston Run\n\n63) Felix: Build R2 Rykas\n\n64) alexhouston: Build B2 Alexhouston\n\n65) Felix: Sacrifice Y3 Roam\nMove B1 Star Alexhouston\nMove B2 Star Alexhouston\nCatastrophe Alexhouston Blue\nMove G3 Edge Alexhouston\n\n\tLaurie_Menke: Hi Felix... I just wanted to let you and alexhouston know that I'm making a list of games to ask Aaron to end due to abandonment. I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours. I hope that's the right thing to do. :)\n\tLaurie_Menke: Ooops! I'm sorry! I see now that the game is back on track. I won't have Aaron delete it. Sorry for the interruption!\n\tFelix: @Laurie_Menke Thanks for letting us know. It does seem that it was abandoned after all, so I went ahead and ended it!\n\tDraw5PlayAll: Evidently the deletion happened, as there are only 165 games in progress.\n\tLaurie_Menke: You're welcome, Felix! And yes, it has happened, Draw5PlayAll. Hopefully we can play with real people who are really here now instead of ghost people on ladders and long lists of timed out games. :)\n\nHomeworlds Online (SDG# 31227)\nVariants: "Hard time"\nStarted: 2017.1.22, Ended: 2017.1.24\nParticipants: alexhouston (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld B3 Y1 G3\n\n2) alexhouston: Homeworld R3 B2 G3\n\tAusmuh: Hello, have a fun game!\n\n3) Ausmuh: Build G1 Ausmuh\n\n4) alexhouston: Build G1 Alexhouston\n\n5) Ausmuh: Trade G1 B1 Ausmuh\n\n6) alexhouston: Trade G1 B1 Alexhouston\n\n7) Ausmuh: Build G1 Ausmuh\n\n8) alexhouston: Trade B1 Y1 Alexhouston\n\n9) Ausmuh: Discover B1 Ausmuh G2 Gwar\n\n10) alexhouston: Build G1 Alexhouston\n\n11) Ausmuh: Trade B1 Y1 Gwar\n\n12) alexhouston: Build Y2 Alexhouston\n\n13) Ausmuh: Build Y2 Gwar\n\n14) alexhouston: Discover Y1 Alexhouston B1 Outpost\n\n15) Ausmuh: Move Y2 Gwar Outpost\n\n16) alexhouston: Move Y1 Outpost Gwar\n\n17) Ausmuh: Trade Y2 G2 Outpost\n\n18) alexhouston: Build Y2 Gwar\n\n19) Ausmuh: Build Y2 Gwar\nCatastrophe Gwar Yellow\n\n20) alexhouston: Build Y1 Alexhouston\n\n21) Ausmuh: Build G1 Outpost\n\n22) alexhouston: Build G2 Alexhouston\n\n23) Ausmuh: Trade G2 Y2 Outpost\n\n24) alexhouston: Trade G2 B2 Alexhouston\n\n25) Ausmuh: Build G2 Outpost\n\n26) alexhouston: Move G1 Alexhouston Outpost\n\n27) Ausmuh: Trade G2 R2 Outpost\n\n28) alexhouston: Trade G1 Y1 Outpost\n\n29) Ausmuh: Attack Y1S Outpost\n\n30) alexhouston: Build B1 Alexhouston\n\n31) Ausmuh: Discover Y2 Outpost B3 Blucifer\n\n32) alexhouston: Trade G3 R3 Alexhouston\n\n33) Ausmuh: Build R1 Outpost\n\n34) alexhouston: Trade R3 G3 Alexhouston\n\n35) Ausmuh: Sacrifice Y2 Blucifer\nMove R2 Outpost Alexhouston\nMove R1 Outpost Alexhouston\n\n36) alexhouston: Attack R2N Alexhouston\n\n37) Ausmuh: Sacrifice G1 Outpost\nBuild R1 Alexhouston\nCatastrophe Alexhouston Red\n\n38) alexhouston: Move Y1 Alexhouston Outpost\n\n39) Ausmuh: Move G1 Ausmuh Alexhouston\n\n40) alexhouston: Build Y2 Alexhouston\n\n41) Ausmuh: Trade G1 B1 Alexhouston\nCatastrophe Alexhouston Blue\n\n\tAusmuh: Thanks for the game!\n\talexhouston: dang, thanks for playing. I'm super new to homeworlds as you can probably tell\n\tAusmuh: No worries! I'm not more then a novice myself. It takes a little getting used to. It's important to watch the planet connections after a catastrophe. Keep with it, that seems to be the real secret. :) Eventually the middle of the game will seem clearer. (Sometimes. I still get overwhelmed by all the choices in some games.)\n\nHomeworlds Online (SDG# 31243)\nStarted: 2017.1.24, Ended: 2017.6.19\nParticipants: w00t (S), Ausmuh (N)\nWinner: w00t\n\n1) Ausmuh: Homeworld G3 B1 Y3\n\n2) w00t: Homeworld B3 Y2 G3\n\n3) Ausmuh: Build Y1 Ausmuh\n\tw00t: It's been far too long since I played any homeworlds... I'm psyched you're still active on here to challenge :)\n\tAusmuh: Right! I was excited to see you here also! I'm so rusty. Back into the fire! I stole the 48 hour turn scheme from Star Realms (A card game you should still totally check out the app for, Kami and I still play and the online community is so active) And having to check in a little more often has made it easier to remember and more enjoyable. Or the game will just end. Either way, less time wasted.\n\n4) w00t: Build G1 W00t\n\n5) Ausmuh: Trade Y1 G1 Ausmuh\n\tw00t: Star Realms... I'll have to look into it......\n\n6) w00t: Discover G1 W00t B1 Illuminati\n\tAusmuh: Aye. But first... there are other star realms to destroy!\n\n7) Ausmuh: Discover G1 Ausmuh B2 Blucifer\n\n8) w00t: Build G1 Illuminati\n\n9) Ausmuh: Build G2 Blucifer\n\n10) w00t: Build G2 W00t\n\n11) Ausmuh: Trade G2 Y2 Blucifer\n\n12) w00t: Trade G1 Y1 Illuminati\n\n13) Ausmuh: Build Y1 Ausmuh\n\tw00t: sorry for the delay... crazy past few days here\n\n14) w00t: Trade G2 Y2 W00t\n\tAusmuh: No worries man! I'm pretty much on auto-pilot until I shake the dust off anyways. After about turn 5, I'm just kinda making moves to see what happens for now. Hopefully I remember some of the finer points later. :)\n\n15) Ausmuh: Trade Y1 R1 Ausmuh\n\n16) w00t: Build Y1 Illuminati\n\n17) Ausmuh: Discover Y2 Blucifer G1 Gwar\n\n18) w00t: Build G2 W00t\n\n19) Ausmuh: Move Y2 Gwar W00t\n\n20) w00t: Sacrifice Y2 W00t\nDiscover Y1 Illuminati G2 Yin\nDiscover Y1 Illuminati G2 Yan\n\tAusmuh: I'm much too curious to not make that move.\n\tw00t: I thought you would do that >:) I just hope my scheming was adequate...\n\tw00t: dammit... I thought illuminati was connected to your homeworld for some reason :\\\n\n21) Ausmuh: Sacrifice R1 Ausmuh\nAttack G2S W00t\n\n22) w00t: Trade G3 R3 W00t\n\tAusmuh: That's one reason I like the table better. The paths stay clearer. Still only played like 2 games tops IRL with other folk though. Sad.\n\tw00t: amen to that... sdg seems to put the star systems in awkward orders\n\n23) Ausmuh: Sacrifice G2 W00t\nBuild Y1 W00t\nBuild Y2 W00t\nCatastrophe W00t Yellow\n\tDraw5PlayAll: The systems are ordered alphabetically.\n\tw00t: huh... hadn't noticed that, but they sure are alphabetical... It'd be a nice touch if we could drag the tile that star system is into a preferred placement... but alas, I'm content just having online homeworlds! :)\n\tAusmuh: Good to know!! Thanks Draw5PlayAll!\n\n24) w00t: Move Y1 Yin Ausmuh\n\tDraw5PlayAll: So if you agree to name them purposefully, you might get the effect you want.\n\tw00t: AHHH!! I so knew that was gonna happen, but I couldn't find a way to stop it :'(\n\n25) Ausmuh: Build G1 Blucifer\n\tw00t: You ought to join that 4 man standing challenge that Draw5PlayAll issued... I joined another 4 man challenge, but one of the players is very not active, so we've been waiting like 3 days for him to move\n\n26) w00t: Build Y1 Ausmuh\n\tAusmuh: Non binary you say?? I could at least give it a whirl.\n\tDraw5PlayAll: Once a game starts you cannot join it, even if an existing player forfeits on time\n\tw00t: I was talking about the team one that's still waiting for two more players...\n\n27) Ausmuh: Trade Y3 R3 Ausmuh\n\n28) w00t: Sacrifice Y1 Ausmuh\nDiscover Y1 Ausmuh G2 Run_away\n\tAusmuh: Maybe we should join that 3 player sinister game.\r\n\r\nAlso, maybe you should stop trying to blow up all my ships. :)\n\tDraw5PlayAll: Yes, join the 3P.\r\n\r\nSays the only player who still has an intact homeworld...\n\n29) Ausmuh: Build R1 Ausmuh\n\tw00t: I'm down to join it... not sure how sinister works, but it sounds sinister... \n\n30) w00t: Build Y1 Run_away\n\tDraw5PlayAll: Sinister = destroy the player on your left to win. If anyone else causes their elimination, the game continues and your target changes.\n\n31) Ausmuh: Build G2 Blucifer\n\n32) w00t: Discover Y1 Run_away G3 O_o\n\n33) Ausmuh: Trade G2 Y2 Blucifer\n\n34) w00t: Build Y2 Yan\n\n35) Ausmuh: Trade G1 R1 Blucifer\n\n36) w00t: Move Y1 Yan W00t\n\n37) Ausmuh: Trade R3 Y3 Ausmuh\n\n38) w00t: Build G1 Illuminati\n\tw00t: I am so doomed :)\n\n39) Ausmuh: Trade G1 B1 Blucifer\n\tAusmuh: Haha you'd think that, but sometimes I have a very hard time putting together the endgame. I had Felix in a bad spot in our last game, but fumbled it all somewhere along the way! o.O\n\n40) w00t: Build Y2 Yan\n\tw00t: That happened to me recently on a game, too! I think it was even against Felix.... I had him in a tight corner, but wasn't watching his pieces and he catastrophe'd all my ships at my homeworld... clever guy :)\n\n41) Ausmuh: Trade Y3 G3 Ausmuh\n\n42) w00t: Build Y3 Run_away\n\n\tLaurie_Menke: Hi w00t... I just wanted to let you and Ausmuh know that I'm making a list of games to ask Aaron to end due to abandonment. I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours. I hope that's the right thing to do. :)\n\nHomeworlds Online (SDG# 31221)\nStarted: 2017.1.24, Ended: 2017.3.5\nParticipants: actilson (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) actilson: Homeworld B2 Y1 G3\n\n3) ts52: Build G1 Ts52\n\n4) actilson: Build G1 Actilson\n\n5) ts52: Trade G1 B1 Ts52\n\n6) actilson: Trade G1 B1 Actilson\n\n7) ts52: Build B2 Ts52\n\n8) actilson: Build G1 Actilson\n\n9) ts52: Build G1 Ts52\n\n10) actilson: Build B2 Actilson\n\n11) ts52: Discover B1 Ts52 G2 Kermit\n\n12) actilson: Discover B2 Actilson R3 Death\n\n13) ts52: Trade B2 Y2 Ts52\n\n14) actilson: Build B2 Actilson\n\n15) ts52: Build B3 Kermit\n\n16) actilson: Move B1 Actilson Death\n\n17) ts52: Build B3 Kermit\n\n18) actilson: Build B3 Actilson\n\n19) ts52: Trade B3 Y3 Kermit\n\n20) actilson: Move B3 Actilson Death\n\n21) ts52: Build B3 Kermit\n\n22) actilson: Trade B1 G1 Death\n\n23) ts52: Trade B3 R3 Kermit\n\n24) actilson: Build G2 Death\n\n25) ts52: Sacrifice Y2 Ts52\nMove R3 Kermit Death\nMove R3 Death Actilson\n\n26) actilson: Trade B2 R2 Actilson\n\n27) ts52: Attack R2 Actilson\n\n28) actilson: Trade B3 R3 Death\n\n29) ts52: Sacrifice R2 Actilson\nAttack G3 Actilson\nAttack G1 Actilson\n\n\tts52: Good game. Thanks!\n\nHomeworlds Online (SDG# 31254)\nVariants: "Unrated, Hard time"\nStarted: 2017.1.25, Ended: 2017.1.30\nParticipants: Ausmuh (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n2) Ausmuh: Homeworld G2 B1 Y3\n\n3) Babamots: Build G1 Babamots\n\n4) Ausmuh: Build Y1 Ausmuh\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) Ausmuh: Discover Y1 Ausmuh B3 Bluzebub\n\n7) Babamots: Build G1 Babamots\n\n8) Ausmuh: Trade Y1 G1 Bluzebub\n\n9) Babamots: Discover G1 Babamots B2 Zakdorn\n\n10) Ausmuh: Build G1 Bluzebub\n\n11) Babamots: Build G2 Babamots\n\n12) Ausmuh: Trade G1 Y1 Bluzebub\n\n13) Babamots: Discover G2 Babamots B2 Husnock\n\n14) Ausmuh: Build G1 Bluzebub\n\n15) Babamots: Build G2 Babamots\n\n16) Ausmuh: Trade G1 R1 Bluzebub\n\n17) Babamots: Sacrifice G3 Babamots\nBuild G1 Babamots\nBuild G3 Zakdorn\nBuild G3 Babamots\n\n18) Ausmuh: Build G3 Bluzebub\n\n19) Babamots: Trade G3 R3 Zakdorn\n\n20) Ausmuh: Discover G1 Bluzebub Y2 Mellow\n\n21) Babamots: Sacrifice G2 Babamots\nBuild G2 Zakdorn\nBuild G3 Husnock\n\n22) Ausmuh: Sacrifice G3 Bluzebub\nBuild Y1 Ausmuh\nBuild Y2 Bluzebub\nBuild G3 Mellow\n\n23) Babamots: Trade G3 Y3 Husnock\n\n24) Ausmuh: Sacrifice Y2 Bluzebub\nMove Y1 Bluzebub Husnock\nMove G1 Mellow Babamots\n\n25) Babamots: Attack G1S Babamots\n\n26) Ausmuh: Move G3 Mellow Babamots\nCatastrophe Babamots Green\n\n27) Babamots: Trade G2 Y2 Zakdorn\n\n28) Ausmuh: Trade R1 G1 Bluzebub\n\n29) Babamots: Sacrifice Y2 Zakdorn\nMove Y3 Husnock Bluzebub\nMove Y3 Bluzebub Ausmuh\n\tAusmuh: hmmm... perhaps I got a little too gung ho. :)\n\n30) Ausmuh: Move Y1 Husnock Babamots\n\tBabamots: It's tricky to know when you have enough to go for the throat. I had to look at the board a long time before I was sure I wasn't about to die.\n\tAusmuh: In for the kill. With that free R3 you have I don't see a way out of it. GG! Next time won't be so easy... hopefully. \n\n31) Babamots: Sacrifice R3 Zakdorn\nAttack Y3S Ausmuh\nAttack Y1S Ausmuh\nPass\nPass\nPass\n\tBabamots: GG! Until we meet again somewhere in the cosmos...\n\n\nHomeworlds Online (SDG# 31265)\nStarted: 2017.1.26, Ended: 2017.3.14\nParticipants: w00t (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld B2 Y1 G3\n\n2) w00t: Homeworld B3 R2 G3\n\tbhorner: It's been a while, good luck!\n\n3) bhorner: Build G1 Bhorner\n\n4) w00t: Build G1 W00t\n\n5) bhorner: Trade G1 Y1 Bhorner\n\tw00t: Many apologies for the delay... \n\tbhorner: No worries!\n\n6) w00t: Trade G1 Y1 W00t\n\n7) bhorner: Build Y2 Bhorner\n\n8) w00t: Build Y2 W00t\n\n9) bhorner: Trade Y2 R2 Bhorner\n\n10) w00t: Build Y2 W00t\n\n11) bhorner: Discover Y1 Bhorner G3 Plants\n\n12) w00t: Trade Y1 R1 W00t\n\n13) bhorner: Build G1 Bhorner\n\n14) w00t: Discover R1 W00t G1 Boop\n\n15) bhorner: Discover G1 Bhorner Y3 Big-bird\n\n16) w00t: Move Y2 W00t Boop\n\n17) bhorner: Build G1 Bhorner\n\n18) w00t: Build G2 W00t\n\n19) bhorner: Sacrifice G3 Bhorner\nBuild G2 Big-bird\nBuild G2 Big-bird\nBuild G3 Bhorner\n\n20) w00t: Build Y1 Boop\n\n21) bhorner: Discover G1 Bhorner Y3 Sunny\n\n22) w00t: Sacrifice G3 W00t\nBuild G3 W00t\nBuild Y2 W00t\nBuild Y3 W00t\n\n23) bhorner: Sac G1 Sunny\nBuild Y3 Plants\n\n24) w00t: Discover Y2 Boop R3 Rawr\n\n25) bhorner: Move G2 Big-bird Boop\n\n26) w00t: Sacrifice Y2 W00t\nDiscover Y1 Boop B3 Blue\nMove R1 Boop Blue\n\n27) bhorner: Move Y1 Plants Boop\n\n28) w00t: Discover G3 W00t R1 Another_bop\n\n29) bhorner: Discover G1 Big-bird Y2 Sticky-note\n\n30) w00t: Move Y2 W00t Another_bop\n\n31) bhorner: Sacrifice G2 Big-bird\nBuild Y3 Boop\nBuild R1 Bhorner\n\n32) w00t: Sacrifice Y2 Another_bop\nMove Y1 Blue Boop\nMove Y2 Rawr Boop\nCatastrophe Boop Yellow\n\n33) bhorner: Discover R1 Bhorner Y3 Big-bird\n\n34) w00t: Build Y1 W00t\n\n35) bhorner: Build Y1 Plants\n\n36) w00t: Move Y1 W00t Another_bop\n\n37) bhorner: Sacrifice G2 Boop\nBuild R2 Bhorner\nBuild R3 Big-bird\n\n38) w00t: Build Y2 Another_bop\n\n39) bhorner: Discover R1 Big-bird Y2 Stick-note\n\n40) w00t: Sacrifice G2 W00t\nBuild R3 Blue\nBuild G1 Another_bop\n\n41) bhorner: Build G1 Bhorner\n\n42) w00t: Move Y1 Another_bop Plants\n\n43) bhorner: Discover Y3 Plants B1 Grover\n\n44) w00t: Sacrifice R1 Blue\nAttack Y1 Plants\n\n45) bhorner: Build G2 Sticky-note\n\n46) w00t: Move G3 Another_bop Blue\n\n47) bhorner: Sacrifice G2 Sticky-note\nBuild R1 Big-bird\nBuild R3 Stick-note\n\n48) w00t: Build G2 Blue\n\n49) bhorner: Sacrifice Y3 Grover\nMove G1 Sticky-note Blue\nMove G1 Bhorner Blue\nCatastrophe Blue Green\nMove R2 Bhorner Plants\n\n50) w00t: Sacrifice Y2 Another_bop\nMove R3 Blue Another_bop\nMove R3 Another_bop Plants\n\tbhorner: I think it would be fun to test the system rendering, make an unrated game, where no one calls catastrophes, and put all pieces in a single system, just to see what it looks like. :)\n\tDraw5PlayAll: I am up for that.\n\tbhorner: Whoah, that threw me, you are someone other than w00t right? :)\n\tbhorner: I put in a challenge to you to try it.\n\n51) bhorner: Move R1 Stick-note Plants\n\n52) w00t: Discover R3 Plants B1 Bravelyrunaway\n\tw00t: lol... sly :)\n\n53) bhorner: Attack Y1 Plants\n\tbhorner: I couldn't believe you had turned that around on me, I was lucky to think of it rather than sly. :)\n\n54) w00t: Move Y1 Plants Bravelyrunaway\n\n55) bhorner: Build Y2 Plants\n\n56) w00t: Sacrifice G1 Another_bop\nBuild Y2 W00t\n\tDraw5PlayAll: Green chat messages are spectators and red ones are players.\n\n57) bhorner: Discover R3 Stick-note Y3 Snuffy\n\n58) w00t: Trade Y2 G2 W00t\n\n59) bhorner: Discover Y1 Plants R1 Spark\n\n60) w00t: Sacrifice G2 W00t\nBuild Y2 W00t\nBuild Y2 Bravelyrunaway\n\n61) bhorner: Build G1 Bhorner\n\n62) w00t: Trade Y1 G1 Bravelyrunaway\n\n63) bhorner: Sacrifice G1 Bhorner\nBuild Y1 Spark\n\n64) w00t: Trade Y2 G2 W00t\n\n65) bhorner: Build Y2 Plants\n\n66) w00t: Discover R3 Bravelyrunaway B3 Nothing2see\n\tw00t: This game is madness!! OMG such fun :D\r\nI'm pretty convinced you've got me in a tight tight corner right now, though\n\n67) bhorner: Move R2 Plants Bravelyrunaway\n\n68) w00t: Sacrifice Y2 Bravelyrunaway\nMove R3 Nothing2see Spark\nMove R3 Spark Plants\n\tbhorner: I like Homeworlds, I haven't really played it much outside a small group of friends. :) I've played here once in a while over the years, hopefully it sticks this time!\n\tw00t: I got introduced to Homeworlds on the tabletop through a buddy many moons ago... We've both since moved away, and just barely returned here not too long ago... I'm still dusting off my memory banks, but this game is so awesome that even if you're playing against someone who's "better" than you are, it's still going to be a fun game that anyone can win :D\n\n69) bhorner: Sacrifice Y2 Plants\nMove R2 Bravelyrunaway Plants\nDiscover R1 Big-bird Y2 Sticky-note\n\n70) w00t: Attack Y2 Plants\n\n71) bhorner: M R1 Sticky-note Plants\nCat Plants Red\n\n72) w00t: Build Y2 Plants\n\n73) bhorner: Build G1 Bhorner\n\n74) w00t: Build Y2 W00t\n\n75) bhorner: Discover Y1 Spark B3 Bubble\n\n76) w00t: Build G1 Bravelyrunaway\n\n77) bhorner: Build R1 Bhorner\n\n\nHomeworlds Online (SDG# 31283)\nVariants: "Hard time"\nStarted: 2017.1.29, Ended: 2017.2.9\nParticipants: bhorner (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\tAusmuh: hello, have a fun game!\n\n2) bhorner: Homeworld Y2 B1 G3\n\n3) Ausmuh: Build B1 Ausmuh\n\tbhorner: You too, hope I can hold my own, it's been a long time!\n\n4) bhorner: Build G1 Bhorner\n\tAusmuh: Same here. I'm only a couple games deep sense getting back into it. The one or two 48 hour games I've done so far have been really enjoyable. I have a hard time remembering my plans if it goes much longer then that before I get a turn.\n\n5) Ausmuh: Discover B1 Ausmuh G2 Gwar\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) Ausmuh: Build B1 Ausmuh\n\n8) bhorner: Build Y1 Bhorner\n\n9) Ausmuh: Build B2 Gwar\n\n10) bhorner: Discover Y1 Bhorner G3 Plant\n\n11) Ausmuh: Trade B2 Y2 Gwar\n\n12) bhorner: Build G1 Bhorner\n\n13) Ausmuh: Build B2 Gwar\n\n14) bhorner: Sac G3 Bhorner\nBuild Y2 Plant\nBuild Y3 Plant\nBuild Y3 Bhorner\n\n15) Ausmuh: Build Y3 Gwar\n\n16) bhorner: Sacrifice Y1 Bhorner\nMove Y1 Plant Gwar\n\n17) Ausmuh: Trade Y3 R3 Gwar\n\n18) bhorner: Trade G1 R1 Bhorner\n\n19) Ausmuh: Attack Y1S Gwar\n\n20) bhorner: Discover Y3 Plant G2 Small-plant\n\n21) Ausmuh: Trade B3 G3 Ausmuh\n\n\tbhorner: Dang it. Sorry about that.\n\tAusmuh: No worries! Maybe I should start making the 48 hour games non-rated. Next time! :) \n\nHomeworlds Online (SDG# 31298)\nStarted: 2017.1.31, Ended: 2017.2.15\nParticipants: w00t (S), alexhouston (N)\nWinner: w00t\n\n1) alexhouston: Homeworld Y2 B3 G3\n\n2) w00t: Homeworld G3 B1 Y3\n\n3) alexhouston: Build G1 Alexhouston\n\n4) w00t: Build Y1 W00t\n\n5) alexhouston: Build G1 Alexhouston\n\n6) w00t: Build Y1 W00t\n\n7) alexhouston: Discover G1 Alexhouston B1 Post\n\n8) w00t: Trade Y1 R1 W00t\n\n9) alexhouston: Trade G1 Y1 Alexhouston\n\n10) w00t: Discover Y1 W00t G2 Boop\n\n11) alexhouston: Build G1 Post\n\n12) w00t: Build R1 W00t\n\n13) alexhouston: Trade G1 R1 Post\n\n14) w00t: Move R1 W00t Boop\n\n15) alexhouston: Build R2 Post\n\n16) w00t: Build R2 Boop\n\n17) alexhouston: Build G1 Post\n\n18) w00t: Discover R2 Boop G3 Bop\n\n19) alexhouston: Move Y1 Alexhouston Post\n\n20) w00t: Trade R1 B1 W00t\n\n21) alexhouston: Move G1 Post Alexhouston\n\n22) w00t: Build B2 W00t\n\n23) alexhouston: Trade G3 B3 Alexhouston\n\n24) w00t: Move B2 W00t Boop\n\n25) alexhouston: Build B2 Alexhouston\n\n26) w00t: Discover B2 Boop Y1 Illuminati\n\n27) alexhouston: Move B2 Alexhouston Post\n\n28) w00t: Build Y2 W00t\n\n29) alexhouston: Move R2 Post Boop\n\n\n30) w00t: Sacrifice Y1 Boop\nDiscover R1 Boop G1 Run_away\n\n31) alexhouston: Build G2 Post\n\n32) w00t: Trade Y3 G3 W00t\n\n33) alexhouston: Build Y1 Post\n\n34) w00t: Build B2 W00t\n\n35) alexhouston: Build G2 Alexhouston\n\n36) w00t: Sacrifice B1 W00t\nTrade R1 B1 Run_away\n\n37) alexhouston: Trade B3 R3 Alexhouston\n\n38) w00t: Build B3 Run_away\n\n39) alexhouston: Move Y1 Post Boop\n\n40) w00t: Build B3 Run_away\n\n41) alexhouston: Move R2 Boop Illuminati\n\n42) w00t: Sacrifice B2 Illuminati\nTrade B3 R3 Run_away\nTrade B3 Y3 Run_away\n\n43) alexhouston: Sacrifice G2 Alexhouston\nBuild G2 Alexhouston\nBuild R1 Post\n\n44) w00t: Build R1 Run_away\n\n45) alexhouston: Sacrifice G2 Post\nBuild Y2 Post\nBuild Y3 Boop\n\n46) w00t: Sacrifice G3 W00t\nBuild R2 Run_away\nBuild R3 Bop\nBuild Y3 W00t\n\n47) alexhouston: Sacrifice Y2 Post\nMove R1 Post Boop\nMove R1 Boop Run_away\nCatastrophe Run_away Red\n\n48) w00t: Build Y2 Run_away\n\n49) alexhouston: Move B2 Post Boop\n\n50) w00t: Move Y2 Run_away Bop\n\n51) alexhouston: Move Y1 Boop W00t\n\n52) w00t: Trade Y3 R3 W00t\n\n53) alexhouston: Sacrifice G2 Alexhouston\nBuild G2 Alexhouston\nBuild Y3 Post\n\n54) w00t: Attack Y1 W00t\n\n55) alexhouston: Trade G2 B2 Alexhouston\n\n56) w00t: Build B3 Run_away\n\n57) alexhouston: Move B2 Alexhouston Illuminati\n\n58) w00t: Sacrifice B2 W00t\nTrade B1 R1 Run_away\nTrade R3 B3 Bop\n\n59) alexhouston: Build B1 Boop\n\n60) w00t: Move B3 Bop Illuminati\n\n61) alexhouston: Discover B2 Illuminati G2 Moon\n\n62) w00t: Sacrifice R1 Run_away\nAttack R2 Illuminati\n\n63) alexhouston: Sacrifice Y3 Boop\nMove B1 Boop W00t\nMove B2 Boop W00t\nMove B2 Moon W00t\nCatastrophe W00t B\n\n64) w00t: Sacrifice Y2 Bop\nMove Y3 Run_away Alexhouston\nMove B3 Run_away Alexhouston\n\n65) alexhouston: Attack Y3 Alexhouston\n\n66) w00t: Sacrifice R3 W00t\nAttack R3 Alexhouston\nAttack Y3 Alexhouston\nAttack G1 Alexhouston\n\n\tw00t: Thank you very much for the awesome game!! rematch any time :)\n\nHomeworlds Online (SDG# 30933)\nStarted: 2017.1.31, Ended: 2017.2.9\nParticipants: dragonlord (S), w00t (W), Draw5PlayAll (N), alexhouston (E)\nWinner: alexhouston\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: I believe this is just a last man standing. I have no idea how skilled any of the players are except dragon lord.\n\n2) alexhouston: Homeworld R3 B2 G3\n\tw00t: Honestly, I've only played binary homeworlds... I'm excited to see how this many players works out!\n\n3) dragonlord: Homeworld R3 G2 Y3 *\n\talexhouston: yeah my first time playing w 4 people\n\talexhouston: yeah my first time playing w 4 people\n\tDraw5PlayAll: So, we are going to have 2 players with the same homeworld star pattern. That, or someone chooses two same-sized stars.\r\n\r\nThen again, I am not sure what happens to dragonlord. He was inactive.\n\tDraw5PlayAll: Wait, so I am not sure how the turn order works. I think all uppercase names are first and then lowercase names, in alphabetical order. This is a flaw.\n\n4) w00t: Homeworld R2 Y1 G3 *\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) alexhouston: Build G1 Alexhouston\n\n7) w00t: Build G1 W00t\n\n8) alexhouston: Build G1 Alexhouston\n\n\nHomeworlds Online (SDG# 31305)\nVariants: "Unrated"\nStarted: 2017.1.31, Ended: 2017.2.6\nParticipants: w00t (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld B1 G2 Y3\n\n2) w00t: Homeworld R3 Y1 G3 *\n\n3) fogus: Build Y1 Fogus\n\n4) w00t: Build G1 W00t\n\n5) fogus: Build Y1 Fogus\n\n6) w00t: Discover G1 W00t B2 Boop\n\n7) fogus: Discover Y1 Fogus G3 Orcus\n\n8) w00t: Build G1 W00t\n\n9) fogus: Build Y2 Orcus\n\n10) w00t: Build G1 Boop\n\n11) fogus: Trade Y3 G3 Fogus\n\n12) w00t: Build G2 Boop\n\n13) fogus: Build G2 Fogus\n\n14) w00t: Trade G2 Y2 Boop\n\n15) fogus: Discover G2 Fogus Y3 Acererak\n\n16) w00t: Move G1 Boop Acererak\n\n17) fogus: Discover G2 Acererak R2 Meph\n\n18) w00t: Move G1 Acererak Fogus\n\n19) fogus: Trade G3 R3 Fogus\n\n20) w00t: Sacrifice G3 W00t\nBuild G2 Fogus\nBuild G3 Fogus\nBuild G3 W00t\nCatastrophe Fogus Green\n\n21) fogus: Build G1 Meph\n\n22) w00t: Build G2 Boop\n\tw00t: I'm not 100% certain I should be able to make that move.... Is it legal to not call my catastrophe until after I build my third g3, or is it mandatory for the catastrophe to occur before I continue building?\n\n23) fogus: Sacrifice Y2 Orcus\nMove G1 Meph W00t\nMove G2 Meph W00t\nCatastrophe W00t G\n\tfogus: It seems ok to me.... so to speak. :)\n\n\tDraw5PlayAll: You can call catastrophe at any time on your turn, and you need not wait.\r\n\r\nAlso, you could do (assuming 2 reds at system X) sac Y3, move R1 to X, move R1 to X, catastrophe, move R3 to X.\n\tw00t: I get all that, but if I was sitting across the table from an opponent the catastrophe would have been called as soon as I built that second green ship in the fogus system, so my last build would have been a g1 instead of the g3 I was able to build\n\tDraw5PlayAll: Sure. You can also do it later if you want.\n\tDraw5PlayAll: In fact, a while back the rule was you could *only* call catastrophe at the end... but now it is completely flexible.\r\n\r\nAnother situation: you need to access the enemy's homeworld but the ONLY way in is through a system with 3 of the color you want. You can breeze through it, as if the radiation levels were not present long enough...\n\tfogus: Thank you for the game. \n\tw00t: :o How did I miss that?\r\nThat was a very fun game! Rematch anytime :)\n\nHomeworlds Online (SDG# 31313)\nVariants: "Hard time"\nStarted: 2017.2.2, Ended: 2017.2.16\nParticipants: Draw5PlayAll (S), w00t (N)\nWinner: Draw5PlayAll\n\n1) w00t: Homeworld R3 B1 G3\n\n2) Draw5PlayAll: Homeworld B1 G2 B3 *\n\tw00t: There are no challenges because they keep getting accepted! I've been loving how active these homeworld games have been since I returned!\n\tDraw5PlayAll: Hmmm... never thought of that. I have seen many other dead games with no challenges, and stuff.\n\tDraw5PlayAll: I was about to type homeworld B3 R1 G3... realized you took the goldilocks\n\n3) w00t: Build G1 W00t\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\tw00t: I've never seen anyone start with so much blue... You've got lots of time to stabilize, so I'm sure you're not worried, but I'm intrigued by your start :) \n\n5) w00t: Trade G1 Y1 W00t\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) w00t: Build Y1 W00t\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) w00t: Discover Y1 W00t G2 Boop\n\n10) Draw5PlayAll: Discover B2 Draw5playall G3 G3\n\n11) w00t: Build Y1 Boop\n\n12) Draw5PlayAll: Build B2 G3\n\n13) w00t: Discover Y1 Boop B3 O_o\n\n14) Draw5PlayAll: Build B2 Draw5playall\n\n15) w00t: Discover Y1 Boop B3 Blue\n\n16) Draw5PlayAll: Build B3 G3\n\n17) w00t: Build Y2 W00t\n\n18) Draw5PlayAll: Trade B3 Y3 G3\n\n19) w00t: Sacrifice Y2 W00t\nDiscover Y1 W00t G2 Temp\nDiscover Y1 Temp B3 Yoink\n\n20) Draw5PlayAll: Build Y2 G3\n\tDraw5PlayAll: !!!\n\n21) w00t: Build G1 W00t\n\tDraw5PlayAll: Invasion crew, we have a new ission.\n\n22) Draw5PlayAll: Build Y2 Draw5playall\n\n23) w00t: Trade Y1 G1 Yoink\n\n24) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n25) w00t: Build G1 Yoink\n\n26) Draw5PlayAll: Trade B2 R2 G3\n\n27) w00t: Trade G1 Y1 Yoink\n\n28) Draw5PlayAll: Build R1 G3\n\n29) w00t: Build Y2 Yoink\n\tDraw5PlayAll: Your blues will fall to me.\n\n30) Draw5PlayAll: Build B2 G3\n\n31) w00t: Sacrifice G1 W00t\nBuild Y2 Blue\n\n32) Draw5PlayAll: Move Y3 Draw5playall O_o\n\n33) w00t: Build G1 Yoink\n\tDraw5PlayAll: Ha ha.\n\n34) Draw5PlayAll: Sacrifice Y2 G3\nMove G2 Draw5playall Blue\nMove Y3 G3 Draw5playall\n\tDraw5PlayAll: I guess I am just taunting you now.\n\n35) w00t: Sacrifice Y2 Blue\nMove Y1 Blue Draw5playall\nMove Y1 O_o Draw5playall\n\tw00t: You definitely have the upper hand in this game... I was trying too hard to keep you away from the b3's and just let you build an army o_O\n\n36) Draw5PlayAll: Trade Y3 R3 Draw5playall\n\tDraw5PlayAll: I considered sending the G3 to a Y3 but realized the sacrifice of a Y2 kept you from growing the Y3.\n\n37) w00t: Trade Y1 G1 Draw5playall\n\tw00t: I did want that y3\n\n38) Draw5PlayAll: Sacrifice G2 Blue\nBuild B3 G3\nBuild Y1 O_o\n\tDraw5PlayAll: You are getting away with nothing.\n\n39) w00t: Sacrifice Y2 Yoink\nMove G1 Yoink Draw5playall\nMove G1 Yoink Draw5playall\nCatastrophe Draw5playall Green\n\n40) Draw5PlayAll: Attack Y1N Draw5playall\n\tDraw5PlayAll: I got a B3, and you will never get that 4th blue ever!\n\n41) w00t: Build G1 W00t\n\tDraw5PlayAll: Fell right into my trap.\n\n42) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n43) w00t: Trade G1 Y1 W00t\n\n44) Draw5PlayAll: Sacrifice Y1 O_o\nD B3 G3 G2 G2\n\tw00t: right... trap... admittedly, your fleet is one to be feared; and now you are a single hop from my homeworld\n\n45) w00t: Build Y1 W00t\n\tDraw5PlayAll: No... I still need two moves. If you wanted distance you took out the right star.\n\n46) Draw5PlayAll: Sacrifice Y3 O_o\nMove R3 Draw5playall G2\nMove R3 G2 W00t\nMove B3 G2 W00t\n\tw00t: uhh.. right... that's what I was saying... like it'd take a y2 to hop once to a temporary star before you can reach mean... instead of two hops... I guess I just picture it differently :)\n\tw00t: *mine\n\n47) w00t: Trade G3 B3 W00t\n\n48) Draw5PlayAll: Sacrifice R3 W00t\nAttack B3 W00t\nAttack Y1 W00t\nAttack Y1 W00t\n\tDraw5PlayAll: I leaked a blue so this makes me slightly nervous...\n\tw00t: yeah... you've got the attack ability to back that up... I'm trying to come up with a clever solution :)\n\n\tw00t: I choose that move solely so I can say you didn't lock me out of blue the entire game :D\n\tw00t: Very fun game :) I'll post a new challenge if you're down for a rematch\n\tDraw5PlayAll: Too little, WAY too late. How many movies or other stories end where the guy gets his/her life wish or something right before dying?\r\n\r\nAnd I took your blue back anyway.\r\n\r\nI think the game would have been a lot more competitive had you traded for a B3 instead of discovering all those systems.\n\tw00t: I took a gamble, and it didn't pay off... >>shrug<< still fun to try different tactics\n\nHomeworlds Online (SDG# 31346)\nVariants: "Hard time"\nStarted: 2017.2.4, Ended: 2017.2.9\nParticipants: foksieloy (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n2) foksieloy: Homeworld B1 Y2 G3\n\n3) Babamots: Build G1 Babamots\n\tfoksieloy: Hi! Good luck, have fun!\n\tBabamots: Thanks! You too!\n\n4) foksieloy: Build G1 Foksieloy\n\tBabamots: And thanks for the game. I'm trying to figure out where I belong in the stack.\n\n5) Babamots: Trade G1 Y1 Babamots\n\tfoksieloy: Have you played often? With friends? Online?\n\tBabamots: I've only played a handful of times, mostly here on SDG.\n\n6) foksieloy: Trade G1 Y1 Foksieloy\n\tBabamots: I think the main trick to the game is patience to study a position carefully. Even Andy seems to lose by not recognizing when death is imminent.\n\n7) Babamots: Build G1 Babamots\n\n8) foksieloy: Build G1 Foksieloy\n\tfoksieloy: Manage the stash, that is the main thing. Deny colors. :)\n\n9) Babamots: Discover G1 Babamots B2 Iconia\n\n10) foksieloy: Discover G1 Foksieloy B3 Annie\n\n11) Babamots: Build G1 Babamots\n\n12) foksieloy: Build G2 Annie\n\n13) Babamots: Discover G1 Babamots B2 Vandros\n\n14) foksieloy: Trade G2 R2 Annie\n\tfoksieloy: trade g2 r2 annie\n\tfoksieloy: damn wrong window :D\n\n15) Babamots: Build G2 Babamots\n\n16) foksieloy: Build G2 Annie\n\tBabamots: Someone has been broadcasting your fleet's orders to the enemy. Maybe you've got a infiltrator?\n\n17) Babamots: Sacrifice G3 Babamots\nBuild G2 Iconia\nBuild G3 Vandros\nBuild G3 Babamots\n\tfoksieloy: Infiltrator taken care of, has been fired into the Annie star.\n\n18) foksieloy: Trade G2 Y2 Annie\n\n19) Babamots: Trade G1 R1 Iconia\n\n20) foksieloy: Discover G1 Annie B1 Tibbers\n\n21) Babamots: Trade G1 Y1 Vandros\n\n22) foksieloy: Build G1 Foksieloy\n\tBabamots: Oh, you moved to a small system, not a medium. I don't like my move so much anymore.\n\n23) Babamots: Discover G3 Vandros B3 Celtris\n\tBabamots: I don't remember if I've ever seen anyone move to a system that wasn't connected to any homeworld.\n\tDraw5PlayAll: One or two happened in the Homeworlds Demo Game, in the 25000s between ts52 and MagicJohn.\n\n24) foksieloy: Sacrifice G1 Foksieloy\nBuild Y2 Annie\n\tfoksieloy: Sorry for waiting, I was sure I posted my move this morning but seems internet wasn't cooperating with me.\n\n25) Babamots: Sacrifice G3 Babamots\nBuild Y3 Babamots\nBuild Y3 Vandros\nBuild G1 Celtris\n\n26) foksieloy: Discover Y1 Foksieloy Y3 Teemo\n\n27) Babamots: Sacrifice Y1 Babamots\nMove G3 Celtris Foksieloy\n\n28) foksieloy: Trade G3 R3 Foksieloy\n\tBabamots: I'm pretty sleepy, so I hope I haven't made a calculation error.\n\n29) Babamots: Sacrifice R1 Iconia\nAttack R3S Foksieloy\n\tBabamots: Shoot, I missed that little guy on Tibbers. Quite a nuisance.\n\tBabamots: Sorry about that. I'll have to come back to it in the morning.\n\n\tfoksieloy: GG\n\tBabamots: Good game. Thanks again!\n\nHomeworlds Online (SDG# 31314)\nVariants: "Sinister, Hard time"\nStarted: 2017.2.5, Ended: 2017.3.17\nParticipants: w00t (S), Draw5PlayAll (N), Ausmuh (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Ausmuh: Homeworld G3 Y2 B3\n\n3) w00t: Homeworld G2 B1 R3\n\tAusmuh: Should be interesting\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Ausmuh: Build B1 Ausmuh\n\n6) w00t: Build R1 W00t\n\tAusmuh: So the circle of carnage is ausmuh kills w00t kills Draw5PlayAll? (With me winning at the end of course.)\n\tDraw5PlayAll: The game ends once one of those three things happens. So if w00t gets me out, then w00t wins.\r\n\r\nThat being said, Sinister is broken in the sense that someone can simply resign (or if they want, make one move and then resign) when they are about to be defeated.\n\tAusmuh: Got ya. Thanks!\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Ausmuh: Trade B1 R1 Ausmuh\n\n9) w00t: Build R1 W00t\n\n10) Draw5PlayAll: Build G1 Draw5playall\n\n11) Ausmuh: Build B1 Ausmuh\n\n12) w00t: Trade R1 Y1 W00t\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n14) Ausmuh: Discover B1 Ausmuh G1 Zang\n\n15) w00t: Discover R1 W00t Y3 Unf\n\n16) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n17) Ausmuh: Trade B1 Y1 Zang\n\n18) w00t: Build R1 W00t\n\n19) Draw5PlayAll: Build G1 Draw5playall\n\n20) Ausmuh: Build B1 Ausmuh\n\n21) w00t: Build R2 W00t\n\n22) Draw5PlayAll: Build B1 G2\n\n\tDraw5PlayAll: Hi\n\nHomeworlds Online (SDG# 31333)\nStarted: 2017.2.6, Ended: 2017.3.2\nParticipants: fogus (S), w00t (N)\nWinner: fogus\n\n1) w00t: Homeworld R3 Y1 G3 *\n\tfogus: Hello again!\n\n2) fogus: Homeworld B2 G3 Y3\n\tw00t: \n\tw00t: huzzah! rematch! :D Good luck\n\n3) w00t: Build G1 W00t\n\n4) fogus: Build Y1 Fogus\n\n5) w00t: Discover G1 W00t B2 Star\n\n6) fogus: Build Y1 Fogus\n\n7) w00t: Build G1 W00t\n\n8) fogus: Trade Y3 G3 Fogus\n\n9) w00t: Build G1 W00t\n\n10) fogus: Build G2 Fogus\n\n11) w00t: Build G2 Star\n\n12) fogus: Trade G3 Y3 Fogus\n\n13) w00t: Discover G1 W00t B2 Otherstar\n\n14) fogus: Trade Y1 R1 Fogus\n\n15) w00t: Trade G2 Y2 Star\n\tw00t: hehe... I almost effed that up pretty good :)\n\tfogus: :)\n\n16) fogus: Discover G2 Fogus B1 Carp\n\n17) w00t: Build G2 Otherstar\n\n18) fogus: Sacrifice Y1 Fogus\nDiscover G2 Carp Y2 Pike\n\n19) w00t: Trade G1 B1 Otherstar\n\n20) fogus: Build G1 Pike\n\n21) w00t: Sacrifice B1 Otherstar\nTrade G1 B1 W00t\n\n22) fogus: Build Y1 Fogus\n\n23) w00t: Discover G1 Star Y1 Unf\n\n24) fogus: Build Y2 Fogus\n\n25) w00t: Sacrifice G2 Otherstar\nBuild Y3 Star\nBuild G1 Unf\n\n26) fogus: Move R1 Fogus Unf\n\n27) w00t: Sacrifice Y2 Star\nMove G1 Unf Fogus\nMove G1 Unf Fogus\n\n28) fogus: Sacrifice Y2 Fogus\nMove G2 Pike W00t\nMove G1 Pike W00t\n\n29) w00t: Trade G3 B3 W00t\n\tw00t: not sure why I haven't caused a catastrophe on your yellow ships... Not gonna take the move back because I legit didn't see that I could've done that until after I'd committed to this move\n\n30) fogus: Attack B1 W00t\n\n31) w00t: Attack G2 W00t\n\n32) fogus: Build B1 W00t\n\n33) w00t: Trade B3 R3 W00t\n\n34) fogus: Build G2 W00t\n\n35) w00t: Sacrifice G2 W00t\nBuild G2 Fogus\nBuild Y2 Star\nCatastrophe Fogus Green\n\n36) fogus: Trade G1 R1 W00t\n\n37) w00t: Move Y3 Star W00t\n\n38) fogus: Build R1 W00t\nCatastrophe W00t R\n\n39) w00t: Trade Y2 B2 Star\n\n40) fogus: Trade G2 Y2 W00t\n\tw00t: I am so doomed!! :)\n\n41) w00t: Sacrifice B2 Star\nTrade Y3 R3 W00t\nPass\n\n42) fogus: Move R1 Unf Fogus\n\n43) w00t: Attack Y2 W00t\n\n44) fogus: Trade B1 Y1 W00t\n\n45) w00t: Discover Y2 W00t G3 Doom\n\n46) fogus: Move Y1 Fogus W00t\n\n47) w00t: Attack Y1 W00t\n\n48) fogus: Move Y3 Fogus W00t\nCatastrophe W00t Y\n\n\tw00t: apologies for the delay at the end there... thank you for the mighty fun game :D\n\tDraw5PlayAll: Four pieces remain in play. That is destruction.\n\nHomeworlds Online (SDG# 31386)\nStarted: 2017.2.8, Ended: 2017.4.14\nParticipants: alexhouston (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) alexhouston: Homeworld R3 B2 G3\n\n3) ts52: Build G1 Ts52\n\tts52: Sorry for the undo. I try not to take a s/m homeworld with people I haven't played often, and just forgot. Have a good game.\n\n4) alexhouston: Build G1 Alexhouston\n\n5) ts52: Trade G1 B1 Ts52\n\n6) alexhouston: Build G1 Alexhouston\n\n7) ts52: Build B1 Ts52\n\n8) alexhouston: Trade G1 Y1 Alexhouston\n\n9) ts52: Build G1 Ts52\n\n10) alexhouston: Build Y1 Alexhouston\n\n11) ts52: Discover B1 Ts52 G2 Kermit\n\n12) alexhouston: Discover Y1 Alexhouston R1 Boop\n\n13) ts52: Build B2 Kermit\n\n14) alexhouston: Move G1 Alexhouston Boop\n\n15) ts52: Build B2 Ts52\n\n16) alexhouston: Build Y1 Boop\n\n17) ts52: Build B3 Kermit\n\n18) alexhouston: Move Y1 Boop Kermit\n\n19) ts52: Trade B3 R3 Kermit\n\n\nHomeworlds Online (SDG# 31390)\nStarted: 2017.2.9, Ended: 2017.5.24\nParticipants: w00t (S), alexhouston (W), dragonlord (N), Draw5PlayAll (E)\nWinner: Draw5PlayAll\n\n1) dragonlord: Homeworld R1 G2 Y3 *\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) w00t: Homeworld G3 Y2 B3\n\n4) alexhouston: Homeworld R3 B2 G3\n\n5) dragonlord: Build Y1 Dragonlord\n\tw00t: hehe... didn't mean to do banker\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) w00t: Build B1 W00t\n\n8) alexhouston: Build G1 Alexhouston\n\n9) dragonlord: Discover Y1 Dragonlord B3 Icerealm\n\n10) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n11) w00t: Trade B1 Y1 W00t\n\n12) alexhouston: Trade G1 Y1 Alexhouston\n\n13) dragonlord: Trade Y1 B1 Icerealm\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\n15) w00t: Build B1 W00t\n\n16) alexhouston: Build Y1 Alexhouston\n\n17) dragonlord: Build Y1 Dragonlord\n\n18) Draw5PlayAll: Build Y2 Draw5playall\n\n19) w00t: Build Y2 W00t\n\n20) alexhouston: Build Y2 Alexhouston\n\n21) dragonlord: Move Y1 Dragonlord Icerealm\n\n22) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n23) w00t: Discover Y1 W00t R1 Doom\n\talexhouston: my bad on the undo, just redid the original move\n\n24) alexhouston: Discover Y1 Alexhouston B1 Post\n\n25) dragonlord: Move B1 Icerealm Dragonlord\n\tDraw5PlayAll: W00t, you can cripple Alex Houston... sac the Y2 and move your Y1 into his homeworld!\n\tw00t: that cripples me just a much as it doe him o_O\n\n26) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: Argh, well then go and do your business normally.\n\n27) w00t: Trade B1 R1 W00t\n\n28) alexhouston: Build G1 Alexhouston\n\n29) dragonlord: Build B1 Dragonlord\n\n30) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n31) w00t: Trade Y2 G2 W00t\n\n32) alexhouston: Build G1 Alexhouston\n\n33) dragonlord: Trade B1 G1 Dragonlord\n\n34) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: Not this again!\n\n35) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\tDraw5PlayAll: What time is it? Time for your empire to cease to exist.\n\n36) dragonlord: Move G1 Dragonlord Icerealm\n\n37) Draw5PlayAll: Move Y1 Draw5playall G2\n\tDraw5PlayAll: w00t is inactive...\n\tDraw5PlayAll: Next time I start a 4P game I will include only Felix, ts52, and NYC Avri.\n\tdragonlord: He has 8 days left on his time\n\tDraw5PlayAll: And was last active two weeks ago.\n\tLaurie_Menke: Hi everyone... I just wanted to let you know that I'm making a list of games to ask Aaron to end due to abandonment. I know you are all fairly currently active on SDG, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours. I hope that's the right thing to do. :)\n\tdragonlord: Please don't add this to the list of abandoned games.\n\tDraw5PlayAll: Yeah, we can just boot the one player and continue.\n\tDraw5PlayAll: So that explains how come I got about 10 monitored Homeworlds game with a new chat message.\r\n\r\nDid you use an automated script to write those comments?\n\tLaurie_Menke: OK... you got it! :) Have fun! :) (And no, Draw5PlayAll... I just copied and pasted, but changed the names.)\n\n38) dragonlord: Build Y2 Icerealm\n\tDraw5PlayAll: He's dead, Jim...\n\tdragonlord: should we force alexhouston to resign?\n\tDraw5PlayAll: Give him... nah, I will do the honors.\n\n39) Draw5PlayAll: Build B1 G2\n\n40) dragonlord: Trade Y1 R1 Icerealm\n\tDraw5PlayAll: gives you four days\n\tdragonlord: explain the vote please?\n\n41) Draw5PlayAll: Move Y1 G2 Doom\n\tDraw5PlayAll: Just read the wiki...\n\n42) dragonlord: Build R2 Icerealm\n\n43) Draw5PlayAll: Attack Y1S Doom\n\n44) dragonlord: Move R2 Icerealm G2\n\n45) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack R2N G2\nPass\n\n46) dragonlord: Build R2 Icerealm\n\n47) Draw5PlayAll: Move Y1 Doom Alexhouston\n\n\tDraw5PlayAll: ???\n\nHomeworlds Online (SDG# 31366)\nVariants: "Unrated"\nStarted: 2017.2.11, Ended: 2017.2.22\nParticipants: Draw5PlayAll (S), fogus (N)\nWinner: Draw5PlayAll\n\n1) fogus: Homeworld B1 Y2 G3\n\n2) Draw5PlayAll: Homeworld B1 G2 B3 *\n\n3) fogus: Build G1 Fogus\n\tDraw5PlayAll: We have successfully landed in a system. The small blue planet bears striking resemblance to our enemy's...\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) fogus: Trade G3 B3 Fogus\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) fogus: Discover B3 Fogus Y3 Whynot\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) fogus: Build G1 Fogus\n\tDraw5PlayAll: Do it! Do it! Do it!\n\n10) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n11) fogus: Build G1 Fogus\n\n12) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove R2 Draw5playall Whynot\nMove R2 Whynot Fogus\nPass\n\tDraw5PlayAll: This will be over soon.\n\n13) fogus: Trade G1 R1 Fogus\n\n14) Draw5PlayAll: Attack R1 Fogus\n\n15) fogus: Trade G1 R1 Fogus\n\n16) Draw5PlayAll: Sacrifice R2 Fogus\nAttack R1N Fogus\nAttack G1N Fogus\n\tDraw5PlayAll: Good game.\n\tfogus: You're being kind. But it was fun to find out (the hard way) the downside of leaving a HW without a large. :) Thanks for the game.\n\n\nHomeworlds Online (SDG# 31334)\nStarted: 2017.2.16, Ended: 2017.3.27\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Draw5PlayAll\n\n1) Felix: Homeworld B1 R3 G3\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\n3) Felix: Build G1 Felix\n\tFelix: Good luck and have fun!\n\tDraw5PlayAll: Are you laying a trap?\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\tFelix: No? Are you?\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\tDraw5PlayAll: I thought you were the one who actually told me about this strategy.\n\n7) Felix: Build Y1 Felix\n\tFelix: Oh, I did, haha. But I didn't know you were going to use it. I'm not laying a trap :P\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) Felix: Discover Y1 Felix G2 Out\n\n10) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n11) Felix: Build Y1 Out\n\n12) Draw5PlayAll: Build B2 Draw5playall\n\n13) Felix: Build Y2 Felix\n\n14) Draw5PlayAll: Move R2 Draw5playall Out\n\n15) Felix: Move Y1 Out Draw5playall\n\n16) Draw5PlayAll: Trade Y3 R3 Draw5playall\n\n17) Felix: Sacrifice G3 Felix\nBuild Y2 Draw5playall\nBuild Y2 Out\nBuild Y3 Felix\n\n18) Draw5PlayAll: Attack Y2N Out\n\n19) Felix: Trade Y3 G3 Felix\n\n20) Draw5PlayAll: Sacrifice R2 Out\nAttack Y1 Out\nAttack Y2 Draw5playall\n\n21) Felix: Build Y3 Draw5playall\n\n22) Draw5PlayAll: Attack Y3 Draw5playall\n\tDraw5PlayAll: I would have traded the Y2 for a B2 and blown half my system...\n\tDraw5PlayAll: Well, your system, Since in this hypothetical universe you have the blue dominance.\n\tFelix: If I had done so, you could have destroyed me since I only had yellow at home.\n\n23) Felix: Build Y3 Draw5playall\nCatastrophe Draw5playall Yellow\n\tDraw5PlayAll: Really?\n\n24) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\n25) Felix: Trade Y2 B2 Felix\n\n26) Draw5PlayAll: Build B2 Draw5playall\n\tFelix: Really really.\n\n27) Felix: Build G1 Felix\n\tDraw5PlayAll: I have more ships\n\n28) Draw5PlayAll: Move B2 Draw5playall Out\n\n29) Felix: Trade G1 R1 Felix\n\n30) Draw5PlayAll: Build R1 Draw5playall\n\n31) Felix: Discover B2 Felix G2 Rim\n\n32) Draw5PlayAll: Move R1 Draw5playall Out\n\n33) Felix: Build G1 Felix\n\n34) Draw5PlayAll: Build R1 Out\n\n35) Felix: Move R1 Felix Rim\n\n36) Draw5PlayAll: Build R2 Draw5playall\n\n37) Felix: Build R2 Rim\n\n38) Draw5PlayAll: Build R2 Out\n\n39) Felix: Trade R2 Y2 Rim\n\n40) Draw5PlayAll: Move R1 Out Felix\n\n41) Felix: Build R2 Rim\n\n42) Draw5PlayAll: Trade R2 G2 Draw5playall\n\n43) Felix: Move R1 Rim Draw5playall\n\n44) Draw5PlayAll: Attack R1 Draw5playall\n\n45) Felix: Build R2 Rim\n\n46) Draw5PlayAll: Sac Y2 Draw5playall\nMove R1 Felix Rim\nMove R1 Draw5playall Rim\nCatastrophe Rim Red\n\n47) Felix: Build B2 Rim\n\tDraw5PlayAll: In case you forgot about my little guy... now you will not.\n\n48) Draw5PlayAll: Build B3 Out\n\n49) Felix: Move B2 Rim Draw5playall\n\tFelix: I did not forget!\n\n50) Draw5PlayAll: Trade B1 R1 Draw5playall\n\tDraw5PlayAll: It seems like we looped.\n\n51) Felix: Build B1 Rim\n\n52) Draw5PlayAll: Attack B2 Draw5playall\n\n53) Felix: Sacrifice Y2 Rim\nMove B1 Rim Draw5playall\nMove B2 Rim Draw5playall\nCatastrophe Draw5playall Blue\n\n54) Draw5PlayAll: Sacrifice Y1 Out\nD R3 Draw5playall Y2 Y2\n\n55) Felix: Trade G1 R1 Felix\n\n56) Draw5PlayAll: Sacrifice Y2 Out\nMove R3 Y2 Felix\nMove B3 Out Felix\n\tFelix: Crud. I meant to build that b1 in your homeworld. Should have been more careful.\n\n57) Felix: Attack B3 Felix\n\n58) Draw5PlayAll: Sacrifice R2 Out\nAttack G3 Felix\nAttack B3 Felix\n\n\tDraw5PlayAll: I noticed how my homeworld looked and wondered... have there been any games where both sides were reduced to only green and red and could not do anything of value?\n\tFelix: The opportunity didn't present itself until after you moved your R3 out. Had I built the b1 in your homeworld, I needn't have sacked my y2, so I could have used it to move my G3 directly to your home. You could have done nothing to stop me from building another green and finishing off your homeworld.\n\tDraw5PlayAll: Oh, in that case I simply would not have moved the R3.\n\tFelix: If you had seen the danger :)\n\tDraw5PlayAll: Well, I was nervous about moving the R3 anyway, and even feared you could do something to win, but then I realized you could not. Especially considering that G2 in there...\n\tDraw5PlayAll: I think that was the first time I ever won against you.\n\tFelix: Yes, well done! You've improved quite a bit. Looking forward to a rematch.\n\nHomeworlds Online (SDG# 31445)\nVariants: "Hard time"\nStarted: 2017.2.17, Ended: 2017.2.20\nParticipants: Salmonax (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 31400)\nStarted: 2017.2.17, Ended: 2017.3.12\nParticipants: Draw5PlayAll (S), Ddrowan (N)\nWinner: Draw5PlayAll\n\n1) Ddrowan: Homeworld G3 Y1 B3\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\n3) Ddrowan: Build B1 Ddrowan\n\tDdrowan: Hey, I'm new to the site and I'm having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?\n\tDdrowan: Hey, I'm new to the site and I'm having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?\n\tDdrowan: Hey, I'm new to the site and I'm having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?\n\tDdrowan: Hey, I'm new to the site and I'm having trouble figuring out how to enter the system for the build ability...what would my homeworld system look like in text?\n\tDdrowan: Woah sorry about that...system malfunction \n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: I think you figured it out. Your homeworld name is your username and everything else is the name you give it when you discover it.\n\n5) Ddrowan: Discover B1 Ddrowan G2 Hercules\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Ddrowan: Build B1 Hercules\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) Ddrowan: Trade B1 Y1 Hercules\n\n10) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n11) Ddrowan: Trade B1 R1 Hercules\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\n13) Ddrowan: Build Y2 Hercules\n\n14) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n15) Ddrowan: Build R1 Hercules\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) Ddrowan: Discover R1 Hercules Y3 Cerillion\n\n18) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n19) Ddrowan: Trade B3 G3 Ddrowan\n\n20) Draw5PlayAll: Move R2 Draw5playall Cerillion\n\tDraw5PlayAll: You just froze yourself out of blue...\n\n21) Ddrowan: Discover Y1 Hercules B1 Redemption\n\tDdrowan: Dang, you're right...this is my first game against an actual person so I apologize, I'm stil learning a bit...I'm willing to play it out if you want\n\n22) Draw5PlayAll: Attack R1 Cerillion\n\tDraw5PlayAll: See, now you trade the Y1 into a B1 and get back in the economy.\r\n\r\nIf you need, you can sac the B1 and trade something else into blue later.\n\n23) Ddrowan: Trade Y1 B1 Redemption\n\n24) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade R2 B2 Cerillion\n\tDdrowan: Thanks, I'm glad that my play did work the way I had thought it would\n\n25) Ddrowan: Build R2 Hercules\n\n26) Draw5PlayAll: Build G1 Draw5playall\n\n\nHomeworlds Online (SDG# 31447)\nStarted: 2017.2.18, Ended: 2017.3.6\nParticipants: Ddrowan (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n\tFelix: Hello, have fun!\n\nHomeworlds Online (SDG# 31455)\nStarted: 2017.2.18, Ended: 2017.3.6\nParticipants: Felix (S), Ddrowan (N)\nWinner: Felix\n\n1) Ddrowan: Homeworld B3 Y1 G3\n\n2) Felix: Homeworld R1 B2 G3\n\n3) Ddrowan: Build G1 Ddrowan\n\n4) Felix: Build G1 Felix\n\n\nHomeworlds Online (SDG# 31456)\nStarted: 2017.2.18, Ended: 2017.3.15\nParticipants: Ausmuh (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n2) Ausmuh: Homeworld B2 R1 G3\n\n3) Felix: Build G1 Felix\n\tFelix: Good luck and have fun :)\n\n4) Ausmuh: Build G1 Ausmuh\n\tAusmuh: Thanks you too!\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Ausmuh: Trade G1 Y1 Ausmuh\n\n7) Felix: Build G1 Felix\n\n\nHomeworlds Online (SDG# 31467)\nStarted: 2017.2.18, Ended: 2017.5.9\nParticipants: fogus (S), SoaringPilot (N)\nWinner: fogus\n\n1) SoaringPilot: Homeworld R3 B2 G3\n\n2) fogus: Homeworld B1 G2 Y3\n\n3) SoaringPilot: Build G1 Soaringpilot\n\n4) fogus: Build Y1 Fogus\n\tSoaringPilot: So given this is a learning game, and we've both established our homeworlds, may I ask why you built it that way?\n\tSoaringPilot: PM if you prefer, since apparently there's an audience :-o \n\n5) SoaringPilot: Trade G1 Y1 Soaringpilot\n\tfogus: I built that way for two reasons: to keep you far away (based on connections) and because I've been playing around with the Y3 opening recently. It hasn't worked well for me so far I'll admit. :)\n\tSoaringPilot: haha fair enough :)\n\n6) fogus: Trade Y1 G1 Fogus\n\n7) SoaringPilot: Build Y1 Soaringpilot\n\n8) fogus: Trade G1 B1 Fogus\n\tSoaringPilot: I'm not entirely sure what to do in the early game because there's nothing to react to. So, make a bunch of ships, and make them at a safe distance from the homeworld.\n\n9) SoaringPilot: Discover Y1 Soaringpilot G1 Wolf359\n\tfogus: Opening "theory" is definitely not my strong suit. I try to look out for problems getting shut out of certain colors mostly and also try to keep a mix of colors in play. It's a delicate balance I've found.\n\tSoaringPilot: Oh this was dumb. I didn't need to make a second yellow ship in my home system. I could have made any colour and still been able to move out of the system because of the other yellow ship. Ugh. Oh well.\n\n10) fogus: Build B1 Fogus\n\n11) SoaringPilot: Build G1 Soaringpilot\n\tfogus: That's is not too bad because you currently have a lead in yellow and I'm hesitant to make another Y1 because that would let you get into the Y2s first.\n\tSoaringPilot: Oh that's diabolical. I can't build blue ships right now so you're completely safe to build the last small one.\n\n12) fogus: Discover B1 Fogus G3 Plop\n\n13) SoaringPilot: Trade G1 R1 Soaringpilot\n\tfogus: I could, but I have to get into a safe system to build which gives you a moment to react to my blue rush.\n\tSoaringPilot: Yeah that was a juicy-looking Bluebird situation if only I had a blue ship :P\n\n14) fogus: Build B2 Plop\n\tSoaringPilot: Oh that's a cool thing with a green star and a blue ship. Green lets you build more things, blue lets you trade them. I'll have to keep that in mind in future games. I suppose you could also do it with a blue star and a green ship.\n\n15) SoaringPilot: Move R1 Soaringpilot Wolf359\n\tfogus: I like the potential of my opening system, but I haven't quite figured it out yet. \n\n16) fogus: Trade B2 R2 Plop\n\tSoaringPilot: Yeah it seems very flexible. Mine is mainly about defence.\n\n17) SoaringPilot: Build R1 Wolf359\n\n18) fogus: Build B2 Plop\n\tSoaringPilot: Let's hope gathering the fleet at Wolf 359 works better here than it did in Star Trek.\n\n19) SoaringPilot: Build G1 Soaringpilot\n\tfogus: I don't think I saw that one. :(\n\tSoaringPilot: The episode is Best of Both Worlds (Part 1 and 2) when Capt. Picard gets captured by the Borg.\n\tSoaringPilot: The number of blue ships you have does not make be feel good at all.\n\n20) fogus: Build B2 Fogus\n\n21) SoaringPilot: Move G1 Soaringpilot Wolf359\n\tfogus: Right, this is a blue rush. The only way to avoid a shut out is to trade for a blue. This'll keep me from getting them all.\n\tSoaringPilot: Oh that's what you meant earlier. OK.\r\nI thought about trading earlier, when you snagged the last blue and I realized what a pickle I was in. But I'd have to trade my green large. And then I'll have to choose between making myself vulnerable to a catastrophe at home, and not having a Large at home. Ugh.\n\tSoaringPilot: *the last small blue, I mean\n\tfogus: It's a tight spot for sure. Try to think through the moves if you trade for a large blue. Keep in mind that I can't build one in my home world.\n\n22) fogus: Build B3 Plop\n\tSoaringPilot: Sorry for dropping off the face of the earth there. I've been travelling for work. This month is super busy.\n\tfogus: No rush on my end. Glad you're back.\n\n23) SoaringPilot: Discover G1 Wolf359 B3 Komarr\n\n24) fogus: Discover B1 Fogus B3 Boo\n\n25) SoaringPilot: Build G1 Komarr\n\n26) fogus: Trade B2 G2 Plop\n\n27) SoaringPilot: Build G2 Soaringpilot\n\tSoaringPilot: Ugggghhh of course I have no medium ships to swap for that blue\n\n28) fogus: Sacrifice B2 Fogus\nTrade B3 Y3 Plop\nTrade Y3 G3 Fogus\n\n29) SoaringPilot: Trade G2 B2 Soaringpilot\n\tSoaringPilot: well that's not what i thought would happen\n\n30) fogus: Move R2 Plop Wolf359\n\tfogus: I didn't want to get shut out of green. :)\n\n31) SoaringPilot: Move Y1 Wolf359 Komarr\n\tSoaringPilot: AUGH!\n\n32) fogus: Attack R1 Wolf359\n\tSoaringPilot: This seems potentially catastrophic.\n\n\nHomeworlds Online (SDG# 31469)\nVariants: "Hard time"\nStarted: 2017.2.19, Ended: 2017.6.11\nParticipants: TwoShort (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) TwoShort: Homeworld R1 B2 G3\n\tdlwillson: You're back! What happened? Where have you been? When did you come back? How's life?\n\tdlwillson: You ub... Gonna take your turn?\n\n3) dlwillson: Build G1 Dlwillson\n\tTwoShort: Short answer is life got complicated and I felt bad that I was timing out a lot. Which, fair warning, might happen again. But I'll do my best.\n\n4) TwoShort: Build G1 Twoshort\n\tdlwillson: Life gets that way sometimes. Take another turn and you'll have 4 days in the bank. Whether that makes you more or less likely to time out... I can't guess. SilentTitan and I are thinking of BGG con or Origins this year...\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) TwoShort: Trade G1 Y1 Twoshort\n\n7) dlwillson: B R1 Dlwillson\n\n8) TwoShort: Build Y1 Twoshort\n\n9) dlwillson: B R2 Dlwillson\n\n10) TwoShort: Build Y2 Twoshort\n\n11) dlwillson: T R2 Y2 Dlwillson\n\n12) TwoShort: Discover Y1 Twoshort G3 Grogar\n\n13) dlwillson: Discover Y2 Dlwillson G2 Field\n\n14) TwoShort: Trade Y2 R2 Twoshort\n\n15) dlwillson: Build Y2 Field\n\n16) TwoShort: Build Y2 Grogar\n\n17) dlwillson: Discover Y2 Field Y3 Golden-sun\n\n18) TwoShort: Sacrifice G3 Twoshort\nBuild Y3 Grogar\nBuild Y3 Twoshort\nBuild R2 Twoshort\n\n19) dlwillson: Move Y2 Field Grogar\nCatastrophe Grogar Y\n\n20) TwoShort: Trade R2 G2 Twoshort\n\n21) dlwillson: D R1 Dlwillson B2 Sky\n\n22) TwoShort: Discover R2 Twoshort G3 Grogar\n\n23) dlwillson: B R2 Dlwillson\n\n24) TwoShort: Move Y1 Twoshort Grogar\n\n25) dlwillson: D R1 Dlwillson Y2 Sol\n\n26) TwoShort: Build Y1 Twoshort\n\n27) dlwillson: Sacrifice G3 Dlwillson\nB R2 Sol\nB R3 Sky\nB R3 Dlwillson\n\n28) TwoShort: Sacrifice G2 Twoshort\nBuild Y2 Grogar\nBuild Y3 Grogar\n\tdlwillson: I'm going on a cruise, so I may not be able to take turns for the next week.\n\tTwoShort: Ha Ha! now is my chance to make an uncharacteristically prompt move and get you to time out! (Kidding...) enjoy the cruise. :) \n\n29) dlwillson: D R2 Sol G3 Field\n\n30) TwoShort: Trade Y3 G3 Twoshort\n\tdlwillson: Back from the cruise. It was nice.\n\tDraw5PlayAll: Red vs yellow again...\n\tdlwillson: It happens often. I'm surprised that SilentTitan quit that game. I don't think he knew how well he was doing. This game is less simple in that I have access to some yellow, just not a lot.\n\tDraw5PlayAll: The winner will be blue.\n\tdlwillson: Think so? I agree.\n\n31) dlwillson: T R3 Y3 Sky\n\tTwoShort: blue strategic key \r\nyet tactical details reign \r\ngrowth begins all plans\n\tTwoShort: My past experience is that if I comment on games in progress it looks stupid 2 turns later; but if it's a haiku, maybe I can claim syllable counting clouded expression of my strategic insight :) \n\n32) TwoShort: Build R3 Grogar\n\n33) dlwillson: M Y3 Sky Grogar\nC Grogar Y\n\n34) TwoShort: Build Y1 Twoshort\n\n35) dlwillson: B R3 Field\n\n36) TwoShort: Move Y1 Twoshort Grogar\n\n37) dlwillson: S Y2 Golden-sun\nM R1 Sky Grogar\nM R1 Sol Grogar\nC Grogar R\n\n38) TwoShort: Build Y2 Twoshort\n\n39) dlwillson: T R2 G2 Dlwillson\n\n40) TwoShort: Build Y2 Grogar\n\tdlwillson: Sorry for the long delay\n\n41) dlwillson: Build R1 Dlwillson\n\n42) TwoShort: Trade Y2 R2 Twoshort\n\n43) dlwillson: Trade R1 B1 Dlwillson\n\n44) TwoShort: Build Y2 Twoshort\n\n45) dlwillson: Sacrifice B1 Dlwillson\nTrade R2 B2 Field\n\n46) TwoShort: Discover Y1 Twoshort B3 Bluestar\n\n47) dlwillson: Build R1 Field\n\n48) TwoShort: Sacrifice G3 Twoshort\nBuild Y2 Bluestar\nBuild Y3 Bluestar\nBuild Y3 Twoshort\n\n49) dlwillson: T R3 Y3 Field\n\n50) TwoShort: Trade Y1 B1 Bluestar\n\n51) dlwillson: Build R1 Field\n\n52) TwoShort: Sacrifice Y2 Grogar\nDiscover B1 Bluestar Y2 Yolonda\nMove R2 Twoshort Grogar\n\n53) dlwillson: Discover R1 Field Y1 Sol\n\n54) TwoShort: Build R2 Grogar\n\n55) dlwillson: B R2 Dlwillson\n\n56) TwoShort: Move R2 Grogar Yolonda\n\n57) dlwillson: Trade R3 G3 Dlwillson\n\n58) TwoShort: Build R3 Grogar\n\n59) dlwillson: B R3 Field\n\n60) TwoShort: Discover R2 Grogar B2 Borbor\n\n61) dlwillson: S G2 Dlwillson\nB R3 Sol\nB G1 Dlwillson\n\tdlwillson: Been playing this game for three months today. :-)\n\n62) TwoShort: Trade R2 G2 Borbor\n\n63) dlwillson: M Y3 Field Borbor\n\n64) TwoShort: Sacrifice G2 Borbor\nBuild B1 Yolonda\nBuild B1 Yolonda\n\n65) dlwillson: M R3 Sol Yolonda\n\tdlwillson: I hate it when you surprise me! :-)\n\tTwoShort: My perspective differs :)\n\tTwoShort: (i.e. I'm really glad that was a surprise; I was scared you had a plan for it. now scared you'll make one...)\n\n66) TwoShort: Sacrifice Y3 Bluestar\nMove B1 Yolonda Dlwillson\nMove B1 Yolonda Dlwillson\nMove B1 Yolonda Dlwillson\nCatastrophe Dlwillson Blue\n\n67) dlwillson: Trade R3 Y3 Field\n\n\nHomeworlds Online (SDG# 31466)\nStarted: 2017.2.20, Ended: 2017.4.11\nParticipants: Felix (S), Takvorian (N)\nWinner: Felix\n\n1) Takvorian: Hom B1 R2 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\tTakvorian: Hi, \r\nGreetings from Berlin, Germany. Have fun!\r\n\n\n3) Takvorian: B G1 Takvorian\n\tFelix: Greetings from North Carolina, USA. :) You have fun too!\n\n4) Felix: Build G1 Felix\n\n5) Takvorian: T G1 B1 Takvorian\n\n6) Felix: Trade G1 B1 Felix\n\n7) Takvorian: B B2 Takvorian\n\n8) Felix: Build B2 Felix\n\n9) Takvorian: T B1 Y1 Takvorian\n\n10) Felix: Trade B2 R2 Felix\n\n11) Takvorian: B Y1 Takvorian\n\n12) Felix: Build R1 Felix\n\n13) Takvorian: T Y1 R1 Takvorian\n\n14) Felix: Trade R2 Y2 Felix\n\n15) Takvorian: B G1 Takvorian\n\n16) Felix: Build G1 Felix\n\n17) Takvorian: D B2 Takvorian G3 Britz\n\n18) Felix: Discover G1 Felix B2 Out\n\n19) Takvorian: T G1 B1 Takvorian\n\n20) Felix: Discover B1 Felix G2 Opus\n\n21) Takvorian: B G1 Takvorian\n\n22) Felix: Build G1 Felix\n\n23) Takvorian: D G1 Takvorian B3 Rixdorf\n\n24) Felix: Sacrifice G3 Felix\nBuild G2 Out\nBuild G2 Felix\nBuild G3 Felix\n\n25) Takvorian: Tr B2 Y2 Britz\n\n26) Felix: Build B2 Opus\n\n27) Takvorian: S Y2 Britz\nM G1 Rixdorf Opus\nM G1 Opus Felix\nC Felix G\n\n28) Felix: Trade B2 Y2 Opus\n\tFelix: Oops. I'm not sure how I missed that!\n\n\nHomeworlds Online (SDG# 31477)\nVariants: "Hard time"\nStarted: 2017.2.20, Ended: 2017.6.23\nParticipants: Mandrel (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld Y2 B1 G3\n\n2) Mandrel: Homeworld R1 B3 G3\n\n3) bhorner: Build G1 Bhorner\n\tMandrel: Have a good game.\n\tbhorner: You too!\n\n4) Mandrel: Build G1 Mandrel\n\n5) bhorner: Trade G1 B1 Bhorner\n\n6) Mandrel: Trade G1 B1 Mandrel\n\n7) bhorner: Discover B1 Bhorner G3 Stpat\n\n8) Mandrel: Build B2 Mandrel\n\n9) bhorner: Build B2 Stpat\n\n10) Mandrel: Trade B1 Y1 Mandrel\n\n11) bhorner: Trade B1 Y1 Stpat\n\n12) Mandrel: Discover B2 Mandrel G2 Adjustment\n\n13) bhorner: B G1 Bhorner\n\n14) Mandrel: Build B1 Adjustment\n\n15) bhorner: B G1 Bhorner\n\n16) Mandrel: T B2 Y2 Adjustment\n\n17) bhorner: Trade G1 R1 Bhorner\n\tbhorner: Just curious, are you trying to win by making me forget about the game?\n\n18) Mandrel: B Y1 Adjustment\n\n19) bhorner: D G1 Bhorner Y3 Big-bird\n\tMandrel: Apologies, don't always have time to over as frequently asked I'd like\n\n20) Mandrel: Trade Y2 R2 Adjustment\n\tbhorner: I understand. My track record is that I end up not making it back in time and lose on time. Trying to be better about that. A 15 move game could potentially take 300 days to complete, that's some endurance!\n\tDraw5PlayAll: 20 days per move?!?\n\tbhorner: 10 days per person right? If you count a move in the game history as both players taking a turn. That's how chess counts move I think.\n\tDraw5PlayAll: But still, 10 days per move is unusual. Most SDG time controls are stricter\n\tbhorner: I think this is a standard ladder challenge, maybe I had an opportunity, but missed where I could change the time controls.\n\tDraw5PlayAll: Clocks are fixed at 3/3/10\n\tbhorner: Ah, so we've each just stacked up 10 days of time?\n\tbhorner: Ok, looked it up, I guess a 15 move game should take less than 90 days.\n\n21) bhorner: B Y2 Stpat\n\n22) Mandrel: Build Y2 Adjustment\n\n23) bhorner: D Y2 Stpat G2 Xmas\n\n24) Mandrel: Build Y3 Mandrel\n\n25) bhorner: B Y3 Xmas\n\n26) Mandrel: Discover Y1 Adjustment B3 Boltzmann\n\n27) bhorner: D Y2 Xmas R1 Spark\n\n28) Mandrel: Build B1 Adjustment\n\n29) bhorner: S G1 Big-bird\nB Y3 Stpat\n\tbhorner: It really seems like you must stop in quite often in order to cut it so close to the deadline each time.\n\n30) Mandrel: Build R2 Adjustment\n\n31) bhorner: D Y1 Stpat G2 Envy\n\n32) Mandrel: Move R2 Adjustment Boltzmann\n\n33) bhorner: S Y3 Xmas\nM Y2 Spark Envy\nM Y1 Envy Mandrel\nM Y2 Envy Mandrel\nCatastrophe Mandrel Yellow\n\tbhorner: \n\n34) Mandrel: Build Y1 Adjustment\n\n35) bhorner: Build B2 Stpat\n\n36) Mandrel: Build G1 Mandrel\n\n37) bhorner: Discover B2 Stpat Y2 Tweety\n\n38) Mandrel: Build Y1 Adjustment\n\n39) bhorner: Discover B2 Tweety Y3 Big-bird\n\n40) Mandrel: Discover Y1 Adjustment B3 Bubbles\n\n41) bhorner: Build B2 Stpat\n\n42) Mandrel: Trade B1 G1 Adjustment\n\n43) bhorner: Trade B2 R2 Stpat\n\n44) Mandrel: Move G1 Adjustment Boltzmann\n\n45) bhorner: Build Y2 Stpat\n\n46) Mandrel: Build Y3 Boltzmann\n\n47) bhorner: Discover Y3 Stpat B2 Grover\n\tbhorner: I almost forgot about the game. :)\n\n48) Mandrel: Discover Y1 Adjustment R3 Hard\n\n49) bhorner: Trade B2 G2 Big-bird\n\n50) Mandrel: S G3 Mandrel\nB G1 Boltzmann\nB G2 Boltzmann\nB G3 Mandrel\n\n51) bhorner: Sacrifice Y3 Grover\nMove G3 Bhorner Big-bird\nMove G3 Big-bird Adjustment\nMove G3 Adjustment Mandrel\n\n52) Mandrel: Sacrifice Y3 Boltzmann\nMove G1 Boltzmann Adjustment\nMove G1 Adjustment Mandrel\nMove Y2 Adjustment Mandrel\nCatastrophe Mandrel G\n\n53) bhorner: Build Y3 Stpat\n\n54) Mandrel: Move R2 Boltzmann Bhorner\n\n55) bhorner: M Y3 Stpat Bhorner\n\n56) Mandrel: Sacrifice G2 Boltzmann\nBuild R1 Bhorner\nBuild R3 Adjustment\n\n57) bhorner: Build Y3 Stpat\n\n58) Mandrel: Attack R1 Bhorner\n\n59) bhorner: Sacrifice Y2 Stpat\nMove Y3 Stpat Adjustment\nMove Y3 Adjustment Mandrel\n\n60) Mandrel: T R2 Y2 Bhorner\n\n61) bhorner: Sacrifice R2 Stpat\nAttack Y2 Mandrel\nPass\n\n\tMandrel: Good game\n\tMandrel: Good game\n\tbhorner: Good game\n\tDraw5PlayAll: The feature was offering a draw, or alternatively to declare that if both players eliminate each other it is a draw.\n\tbhorner: Both players couldn't eliminate each other right? One of them would be the last to act.\n\nHomeworlds Online (SDG# 31448)\nStarted: 2017.2.20, Ended: 2020.9.1\nParticipants: w00t (S), Takvorian (N)\nWinner: Takvorian\n\n1) Takvorian: Ho R2 B1 G3\n\n2) w00t: Homeworld Y3 G1 B3\n\tTakvorian: Hi,\r\nGreetings from Berlin, Germany. Have fun!\n\n3) Takvorian: B G1 Takvorian\n\tw00t: Exciting! My first international game (that I'm aware of) \r\nGood luck!\n\n4) w00t: Build B1 W00t\n\tTakvorian: Don't expect too much from your first international game ;)\r\nI played around 5 games of Homeworlds before, the last in May 2015...\r\nBy the way, where are you located?\n\n5) Takvorian: T G1 B1 Takvorian\n\tw00t: I've played lots and lots of homeworlds on the tabletop, but only completed a handful of games on SDG... Still very far from calling myself any good at the game, I just love the strategy!\r\n\r\nI'm from Colorado... In the Mid-Western US tucked against the Rocky Mountain chain\n\tTakvorian: Cool! I've never been there yet, but I like the mountains. I often made vacations in the Bavarian Alps.\r\n\r\nI never played Homeworlds in the "physical" life, although I have more than enough pyramids at home. Because I am such a newbie I am probably quite bad at explaining the game ;)\r\n\n\n6) w00t: Build B2 W00t\n\n7) Takvorian: B B2 Takvorian\n\n8) w00t: Discover B2 W00t G2 Blep\n\n9) Takvorian: Tr B1 Y1 Takvorian\n\n10) w00t: Build B1 Blep\n\n11) Takvorian: B G1 Takvorian\n\n12) w00t: Trade B1 Y1 Blep\n\tTakvorian: By the way, if you see me making a big blunder, it would be great if you can tell me about, so that I can learn a thing or two :)\n\n13) Takvorian: D B2 Takvorian G3 Britz\n\n14) w00t: Build B1 Blep\n\n15) Takvorian: B G1 Takvorian\n\n16) w00t: Discover B2 Blep G3 Thbt\n\n17) Takvorian: D G1 Takvorian B3 Wedding\n\n18) w00t: Trade B2 G2 Thbt\n\n19) Takvorian: B G2 Wedding\n\n20) w00t: Build B2 Blep\n\n21) Takvorian: S G3 Takvorian\nB G3 Takvorian\nB Y1 Takvorian\nB Y2 Takvorian\n\n22) w00t: Trade B1 R1 W00t\n\n23) Takvorian: T Y1 R1 Takvorian\n\n\tLaurie_Menke: Hi Takvorian... I just wanted to let you and w00t know that I'm making a list of games to ask Aaron to end due to abandonment. I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours. I hope that's the right thing to do. :)\n\nHomeworlds Online (SDG# 31476)\nVariants: "Unrated"\nStarted: 2017.2.20, Ended: 2017.3.19\nParticipants: Draw5PlayAll (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld Y1 B1 G3 *\n\n2) Draw5PlayAll: Homeworld B3 Y3 G3 *\n\tbhorner: Here we go. Planning on repeated sacs of g3, to speed it up, we should help each other keep the. Available in the bank. Also, probably won't want to do this again, so I made small small to get all the biggest into a single system elsewhere... Maybe we should do it in one our homes? You could go big big to make it more crowded. :)\n\tDraw5PlayAll: Homeworld systems accept up to 16 ships and peripherals accept 24. We should first pile everything into the homeworlds and then try the peripheral systems.\n\n3) bhorner: Build G1 Bhorner\n\tbhorner: How did you find out about the limits? Those aren't part of the game... just this implementation? Is the code open source or something?\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: http://wiki.superdupergames.org/games:homeworlds\n\n5) bhorner: Build G1 Bhorner\n\tDraw5PlayAll: Also, for extra fun, let us at the end try to make us both lose at once.\n\tbhorner: Yes, and also at some point try for a catastrophe of all pieces of a single color. (Or 2 in one turn even...?)\n\n6) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G2 Draw5playall\nBuild G2 Draw5playall\n\n7) bhorner: Trade G1 Y1 Bhorner\n\n8) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n9) bhorner: Sacrifice G3 Bhorner\nBuild G1 Bhorner\nBuild G2 Bhorner\nBuild G3 Bhorner\n\tbhorner: Can't win... No way to get you a g3 on your next turn.\n\n10) Draw5PlayAll: Build G3 Draw5playall\n\n11) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y1 Bhorner\nBuild Y2 Bhorner\n\n12) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Draw5playall\nBuild R1 Draw5playall\nBuild G3 Draw5playall\n\n13) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y2 Bhorner\nBuild Y2 Bhorner\n\n14) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Draw5playall\nBuild R1 Draw5playall\n\n15) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y3 Bhorner\nBuild Y3 Bhorner\n\n16) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n17) bhorner: Trade G1 B1 Bhorner\n\tbhorner: lol, this is the kind of thing I wanted to see. :)\n\tbhorner: You have a Christmas homeworld!\n\n18) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Draw5playall\nBuild B2 Draw5playall\nBuild G1 Draw5playall\n\n19) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild B2 Bhorner\nBuild B2 Bhorner\n\n20) Draw5PlayAll: Move G2 Draw5playall Bhorner\n\n21) bhorner: Sac G3 Bhorner\nB G3 Bhorner\nB B3 Bhorner\nB B3 Bhorner\n\n22) Draw5PlayAll: Catastrophe Draw5playall R\nPass\n\n23) bhorner: Sac Y3 Bhorner\nM G3 Bhorner Draw5playall\nM Y3 Bhorner Draw5playall\nM B3 Bhorner Draw5playall\n\tbhorner: They're filling the border, that's probably not random.\n\tbhorner: OK, 16 for the outer ring, and it must be 8 for an inner ring. We should put all the bugs in yours sincerely you have big big.\n\tDraw5PlayAll: "The ship could not be moved" when I tried to invade your homeworld.\n\tDraw5PlayAll: Please move one blue into my homeworld, unless you want to try to do something else.\r\n\r\nI believe that homeworld systems reserve the inner 9 squares of the 5x5 grid for the stars. It seems like they could use less space, especially after 1 star dies, but then again the highest amount of ships that could "safely" enter a system is 11 (3 of each color, but one is the star.) \n\n24) Draw5PlayAll: Pass\nPass\nPass\nPass\nPass\n\tDraw5PlayAll: I intend to end this game with both homeworld systems destroyed.\n\tbhorner: That sounds like a good idea, but first, I'd like to fill your homeworld with bigs, and then mediums until it's full, and see what happens when no more will fit. Then I'd like to do the same with a non-homeworld... are you on board with that?\n\tDraw5PlayAll: Sure, let us flood a peripheral system. Call it something nice and simple.\n\tDraw5PlayAll: I noticed that the positions of the stars keep changing. Sometimes they are diagonal, sometimes orthogonal...\n\n25) bhorner:\nBuild G3 Draw5playall\n\n26) Draw5PlayAll: Pass\n\tbhorner: I missed some of your comments before my last move, that's what I get for playing on my phone. I also noticed the stars orientation changing. I bet that when a single star is left, the inner ring of 8 can also be filled, like a non-homeworld.\n\n27) bhorner: Trade G3 R3 Draw5playall\n\n28) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n29) bhorner: Build Y3 Draw5playall\n\tDraw5PlayAll: Tell me f you want me to do anything.\n\n30) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 Draw5playall\nBuild G3 Draw5playall\nBuild R1 Draw5playall\n\n31) bhorner: Build G3 Draw5playall\n\tbhorner: If you want to help me fill your homeworld with all the bugs, that would make it go faster, then we can flood a secondary system (I vote small system). I was just thinking, I don't think both players can die at once, it would be against the rules to call the killing catastrophe on yourself...\n\tDraw5PlayAll: I saw a white ship for a second... probably a blur of the Y2 and B2.\n\n32) Draw5PlayAll: Build R1 Draw5playall\n\tDraw5PlayAll: I vote medium.\n\tbhorner: Hm, an impasse... Just kidding, I don't really care. :)\n\n33) bhorner: Sacrifice B2 Bhorner\nTrade Y3 R3 Draw5playall\nTrade G3 R3 Draw5playall\n\n34) Draw5PlayAll: Discover G1 Draw5playall R2 R2\n\n35) bhorner: Build Y3 Draw5playall\n\tbhorner: We'll need 2 more spots open for all the bigs soon.\n\n36) Draw5PlayAll: Attack Y3 Draw5playall\n\n37) bhorner: Move B3 Bhorner Draw5playall\n\tbhorner: If you'd like to take one (or both) of the y3's to have sacrifice power to move faster, feel free to go for it.\n\n38) Draw5PlayAll: Build G3!!! R2\n\n39) bhorner: Sac Y2 Bhorner\nMove B3 Draw5playall R2\nMove Y1 Bhorner R2\n\tDraw5PlayAll: Cannot make new ships in the system.\n\n40) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G1 Draw5playall R2\nMove B2 Draw5playall R2\nMove R1 Draw5playall R2\n\tbhorner: Right, one of the smaller pieces needs to move out first.\n\n41) bhorner: Attack G3 R2\n\tbhorner: I've give you a yellow to capture, and moved a big in to take the green, and move both back, you can choose. Trying to minimize the number of moves it takes...\n\n42) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G314159265358979 R2\nBuild B2$ R2\nBuild R2! R2\n\n43) bhorner: A G3 R2\n\tDraw5PlayAll: I wonder what w00t thinks of this...\n\n44) Draw5PlayAll: Attack Y1 R2\n\tbhorner: This game in general? :) I don't know, would W00t think it's a waste of time?\n\n45) bhorner: Sac G3 R2\nB G3 Draw5playall\nB Y2 Bhorner\nB Y3 Draw5playall\n\tbhorner: Dude...\n\n46) Draw5PlayAll: Build R2 R2\n\tbhorner: If you're not into this anymore, just let me know.\n\n47) bhorner: Sac Y2 Bhorner\nM B3 R2 Draw5playall\nM G3 R2 Draw5playall\n\tDraw5PlayAll: Pile everything into the R2 and then I want to collapse the entire economy, leaving absolutely nothing.\n\tbhorner: Haven't got all the bugs to your homeworld yet, here has been a little counterproductive stuff...\n\n48) Draw5PlayAll: Build Y2 R2\n\n49) bhorner: Sac Y3 Draw5playall\nM Y3 Draw5playall R2\nM G3 Draw5playall R2\nM B3 Draw5playall R2\n\n\n50) Draw5PlayAll: Build Y3 R2\n\tbhorner: Woohoo! Made it!\n\tDraw5PlayAll: ??\n\n51) bhorner: Sac Y3 R2\nM R3 Draw5playall R2\nM R3 Draw5playall R2\nM R3 Draw5playall R2\n\n52) Draw5PlayAll: Build Y3 R2\n\n53) bhorner: Sac Y2 Bhorner\nM B3 Draw5playall R2\nM G3 Draw5playall R2\n\n54) Draw5PlayAll: Build Y2... R2\n\tbhorner: Since we can't kill both players at once, I vote we kill as many pips at once as possible in a single turn. This would mean filling the r2 system with all the bigs, then all the mediums, then smalls for whatever room is left. I assume this would leave at least 4 of each color there. Then in one turn you could call catastrophes on all 4 colors in a single system (I guess for full glory, you'd want to save the color of the system itself for last).\n\tDraw5PlayAll: I want to try to kill both at once.\n\n55) bhorner: Sac Y2 Bhorner\nM B2 Bhorner R2\nM G3 Draw5playall R2\n\tbhorner: Ok, good luck. Let me know if you need any help. I'll fill up r2 until you say different.\n\n56) Draw5PlayAll: Move G2 Bhorner R2\n\n57) bhorner: Move G2 Bhorner R2\n\n58) Draw5PlayAll: Move G2 Draw5playall R2\n\tbhorner: That's lookin' pretty sweet.\n\n59) bhorner: Pass\n\n60) Draw5PlayAll: Sacrifice Y3 R2\nMove Y3 R2 Draw5playall\nMove B2 R2 Draw5playall\nMove B2 R2 Draw5playall\n\n61) bhorner: Move G1 Bhorner R2\n\n62) Draw5PlayAll: Sacrifice Y2 R2\nMove R1 Draw5playall R2\nMove R1 Draw5playall R2\n\tbhorner: You could:\r\ns g1 r2\r\nb y2 r2\r\n\r\nBut I'm not really worried about it. How do you want to do the catastrophes? 4 y and 4 b in both home systems?\n\n63) bhorner: S G3 R2\nB Y2 Bhorner\nB Y2 Bhorner\nB Y3 Bhorner\n\tDraw5PlayAll: I want to abandon mine while blowing up yours\n\tbhorner: Abandon as in move your final ship out?\n\n64) Draw5PlayAll: Pass\n\n65) bhorner: Pass\n\n66) Draw5PlayAll: Pass\n\n67) bhorner: Pass\n\n68) Draw5PlayAll: Catastrophe Bhorner Y\nPass\n\tDraw5PlayAll: Unfortunately all attempts to get a draw resulted in "illegal modulus zero" perl error...\n\tDraw5PlayAll: Try passing repeatedly, and see if the system gives a draw.\n\tbhorner: Now thats funny, the mod error. :)\n\n69) bhorner: Cat Draw5playall B\nPass\n\n70) Draw5PlayAll: Move G1 R2 Draw5playall\nCatastrophe R2 Red\n\n71) bhorner: Trade B1 G1 Bhorner\n\tDraw5PlayAll: Idk\n\n72) Draw5PlayAll: Build G1 Draw5playall\n\n73) bhorner: B G2 Bhorner\n\tbhorner: I got what I wanted... If you just want something else extreme,.. I could resign, for the maximal anti-climax. :)\n\n74) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G1 Draw5playall Bhorner\nMove G1 Draw5playall Bhorner\nPass\n\n\tDraw5PlayAll: It let me lose as long as I did not eliminate you.\n\tbhorner: Oh, nice. That's actually against the rules but I imagine it doesn't come up in standard play much. :). That was interesting, thanks!\n\tDraw5PlayAll: It is within the rules to annihilate both players (creating a tie) but not to self-destruct. On SDG it is the opposite!\n\tbhorner: "You are never allowed to take an action or trigger a catastrophe that causes you to own no ships in your Homeworld at the end of \r\nyour turn."\n\tbhorner: That's from the 2nd to last paragraph of this:\r\nhttp://superdupergames.org/rules/homeworlds.pdf\n\tDraw5PlayAll: ...but Andy said you can cause a tie, in some BoardGameGeek page. The Homeworlds rules are sort of messed up, with at least 4 different sources (Playing with Pyramids, your link, Pyramid Arcade, and SDG's rules from ginohn.com)\n\tDraw5PlayAll: Wait, your link was SDG's / John Cooper's. I meant www.looneylabs.com/rules/homeworlds\n\tbhorner: Oh no, pyramid arcade is yet different? I just got that, and have all the print (and electronic) versions I'm aware of.\n\tDraw5PlayAll: Well, I know Arcade has more content... not sure if there is any functional difference.\n\nHomeworlds Online (SDG# 31478)\nVariants: "Hard time"\nStarted: 2017.2.21, Ended: 2017.3.9\nParticipants: ajo (S), SilentTitan (N)\nWinner: ajo\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) ajo: Homeworld B3 Y2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) ajo: Build G1 Ajo\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) ajo: Trade G1 R1 Ajo\n\n7) SilentTitan: Build Y1 Silenttitan\n\n8) ajo: Build R1 Ajo\n\n9) SilentTitan: Discover Y1 Silenttitan B3 Sol\n\n10) ajo: Build R2 Ajo\n\n11) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y1 Sol\nBuild Y2 Sol\nBuild Y2 Silenttitan\n\n12) ajo: Discover R2 Ajo B1 Alpha\n\n13) SilentTitan: Discover Y2 Sol G1 Soul\n\n14) ajo: Build R2 Ajo\n\n15) SilentTitan: Build Y3 Soul\n\n16) ajo: Discover R1 Ajo B1 Beta\n\n17) SilentTitan: Discover Y3 Soul G3 Sole\n\n18) ajo: Sacrifice G3 Ajo\nBuild R2 Beta\nBuild R3 Alpha\nBuild R3 Ajo\n\n\tajo: So which team is going to win? Red or yellow?\n\tDraw5PlayAll: Blue.\n\tSilentTitan: Red I made too many mistakes. Good game\n\tajo: For the record, I didn't expect that. I think I was barely winning.\n\tDraw5PlayAll: By the way I said "blue" because I expected both sides to do lots of trading for other colors...\n\nHomeworlds Online (SDG# 31479)\nStarted: 2017.2.21, Ended: 2019.10.22\nParticipants: MobyNostromo (S), w00t (N)\nWinner: MobyNostromo\n\n1) w00t: Homeworld G3 B2 R3\n\n2) MobyNostromo: H Y3 G2 B3\n\tw00t: Greetings! Good luck :)\n\tMobyNostromo: Hello!! I'm going to need the good luck: I'm new at this. Regardless, I hope you have fun.\n\n3) w00t: Build R1 W00t\n\tw00t: I'd call myself seasoned... I've played a lot of tabletop homeworlds, and I've been having a blast returning here... \r\n\r\nIf you've got any questions at all, I'm happy to help a new player learn and develop \n\n4) MobyNostromo: B B1 Mobynostromo\n\tMobyNostromo: Thank you. I may take you up on it.\n\n5) w00t: Trade R1 B1 W00t\n\n6) MobyNostromo: T B1 Y1 Mobynostromo\n\n7) w00t: Build B1 W00t\n\n8) MobyNostromo: B B1 Mobynostromo\n\n9) w00t: Trade B1 Y1 W00t\n\n10) MobyNostromo: B Y1 Mobynostromo\n\n11) w00t: Build Y2 W00t\n\n12) MobyNostromo: T Y1 G1 Mobynostromo\n\n\tLaurie_Menke: Hi MobyNostromo... I just wanted to let you and w00t know that I'm making a list of games to ask Aaron to end due to abandonment. I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours. I hope that's the right thing to do. :)\n\tMobyNostromo: Thank you for asking. Sure, go ahead and cancel this one.\n\tLaurie_Menke: Hi MobyNostromo, Aaron already did his sweep, but didn't take this one out because he wasn't sure if you wanted it. He may still do it now, but I'm not sure.\n\tDraw5PlayAll: I guess what you could do is click the "Terminate Game (unrated)" option.\n\nHomeworlds Online (SDG# 31465)\nVariants: "Unrated, Hard time"\nStarted: 2017.2.22, Ended: 2017.2.27\nParticipants: Ausmuh (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 Y1 G3\n\n2) Ausmuh: Homeworld G3 Y2 B3\n\tBabamots: It is I, the sabotaging Welshman :-).\n\n3) Babamots: Build G1 Babamots\n\n4) Ausmuh: Build B1 Ausmuh\n\n5) Babamots: Discover G1 Babamots B2 Ferenginar\n\n\tBabamots: Sorry. I guess you don't have time at the moment. Maybe later. See ya!\n\nHomeworlds Online (SDG# 31516)\nVariants: "Unrated"\nStarted: 2017.2.23, Ended: 2017.7.25\nParticipants: w00t (S), shoejitsu (N)\nWinner: shoejitsu\n\n1) shoejitsu: Homeworld B3 G1 Y3\n\tw00t: Greetings! Happy to help a new player learn if you have any questions\n\n2) w00t: Homeworld B3 R2 G3\n\tshoejitsu: hey! thanks so much, this is actually my first game ever so its gonna be a lil rocky :P\n\n3) shoejitsu: Build Y1 Shoejitsu\n\tshoejitsu: How do I build in my homeworld? Im not sure what to refer to my homeworld as when building...\n\n4) w00t: Build G1 W00t\n\tshoejitsu: nevermind!\n\tw00t: like that :)\n\n5) shoejitsu: Discover Y1 Shoejitsu G2 Casio\n\n6) w00t: Trade G1 Y1 W00t\n\n7) shoejitsu: Build Y1 Shoejitsu\n\tshoejitsu: hmm. so i guess I can't really build an attack fleet until i discover a system with a red star? guess I kinda jumped the gun on the casio system\n\n8) w00t: Build Y2 W00t\n\tshoejitsu: how am i doin :P\n\tw00t: still opening moves... so far so good :)\n\n9) shoejitsu: Trade Y1 G1 Shoejitsu\n\n10) w00t: Discover Y1 W00t R1 Rawr\n\n11) shoejitsu: Trade G1 R1 Shoejitsu\n\n\tshoejitsu: you still there??\n\tLaurie_Menke: Hi shoejitsu... I just wanted to let you and w00t know that I'm making a list of games to ask Aaron to end due to abandonment. I know you are both currently active on SDG right now, but this game seems abandoned, so I am going to include it on the list unless one of you says not to in the next 24 hours. I hope that's the right thing to do. :)\n\nHomeworlds Online (SDG# 31523)\nVariants: "Hard time"\nStarted: 2017.2.24, Ended: 2017.5.6\nParticipants: Babamots (S), mneme (N)\nWinner: Babamots\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Babamots: Homeworld R1 B3 G3\n\n3) mneme: Build G1 Mneme\n\n4) Babamots: Build G1 Babamots\n\n5) mneme: Trade G1 R1 Mneme\n\tmneme: Argh. I am getting no notifications at all. So if I lose because of that...well, I do. :(\n\n6) Babamots: Trade G1 Y1 Babamots\n\tBabamots: For what it's worth, I seldom go a whole day without making a move. If you move at the same time every day, I'll usually have played before you get back.\n\n7) mneme: Build R2 Mneme\n\tmneme: Fair enough. But I'd -really- like to just get the email; I got the notification of the challenge, so I have -no- idea why the per-move emails aren't happening. :(\n\n8) Babamots: Build Y1 Babamots\n\tBabamots: Maybe it's because I had my loyalists on your planet sabotage your interstellar transmitter. Bwahaha!\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) Babamots: Discover Y1 Babamots G2 Betazed\n\n11) mneme: Build R2 Mneme\n\n12) Babamots: Build Y1 Betazed\n\n13) mneme: Build Y2 Mneme\n\tBabamots: I've never really worried about how the homeworld stars affect the stash and how that should affect which color I pursue. I've learned something this game.\n\n14) Babamots: Sacrifice G3 Babamots\nBuild Y2 Betazed\nBuild Y3 Babamots\nBuild Y3 Babamots\n\n15) mneme: Discover Y2 Mneme B3 Euterpe\n\n16) Babamots: Sacrifice Y1 Betazed\nDiscover Y3 Babamots B2 Galorndon\n\n17) mneme: Move R2 Mneme Euterpe\n\tBabamots: Sorry to be slow. The site was down last night from the moment I got my notification until I went to bed.\n\tmneme: LOL. I hadn't noticed. :)\r\n\n\n18) Babamots: Trade Y3 G3 Babamots\n\tDraw5PlayAll: Galorndon??\n\tBabamots: Welcome to Galorndon Core: where no good deed goes unpunished.\n\n19) mneme: Move R2 Euterpe Betazed\n\tDraw5PlayAll: Trek reference? If so, which series (TOS, TNG, DS9, VOY, ...)? Please no spoilers.\n\tBabamots: Galorndon Core is from TNG season 3: "The Enemy." Are you watching Star Trek? And if so, which series?\n\n20) Babamots: Discover Y2 Betazed B1 Iconia\n\n21) mneme: Attack Y1 Betazed\n\n22) Babamots: Trade Y2 R2 Iconia\n\n23) mneme: Build R2 Betazed\n\n24) Babamots: Build G1 Babamots\n\n25) mneme: Trade R1 B1 Mneme\n\n26) Babamots: Move G1 Babamots Galorndon\n\tDraw5PlayAll: Iconia?\n\tBabamots: In Star Trek, the Iconians were an ancient race that built passages between planets, like on Stargate.\n\n27) mneme: Build G1 Mneme\n\n28) Babamots: Build G1 Babamots\n\tmneme: b g1 mneme \n\tBabamots: I suspect you meant to type into the Move Box. It would be a shame for you to time out since I think you'll beat me.\n\n29) mneme: Discover R2 Betazed Y1 Jumper\n\n30) Babamots: Build G2 Galorndon\n\tmneme: true. I got it eventually; was wondering why it was not updating. :)\n\tmneme: You did get the first extra large. That's a bit deal, but I do have some other advantages.\n\n31) mneme: Sacrifice G3 Mneme\nBuild Y2 Euterpe\nBuild Y3 Betazed\nBuild Y3 Mneme\n\n32) Babamots: Trade G1 R1 Galorndon\n\n33) mneme: Build R3 Betazed\n\n34) Babamots: Sacrifice G2 Galorndon\nBuild R3 Galorndon\nBuild R3 Iconia\n\tBabamots: I think I lost when I didn't have red to keep you from taking Betazed.\n\tmneme: Red and yellow are super-important, it's true. This is very much a game where you only have to be one move ahead to crush someone, if you can leverage it properly and not make too many mistakes.\n\tmneme: But I think you could have come back from that if you found a way to leverage your extra large before I caught up; it's why I needed to keep up the pressure.\r\n\n\n35) mneme: Sacrifice B1 Mneme\nTrade R2 B2 Betazed\n\tmneme: still, I can't stop you from getting a large red, so...we'll see.\n\n36) Babamots: Move R3 Galorndon Euterpe\n\n37) mneme: Sacrifice Y2 Euterpe\nDiscover Y2 Euterpe G2 Caliope\nDiscover Y3 Betazed G3 Polyhymnia\n\n38) Babamots: Move G1 Babamots Galorndon\n\n39) mneme: Build R2 Betazed\n\n40) Babamots: Build Y2 Galorndon\n\n41) mneme: Build B1 Betazed\n\n42) Babamots: Sacrifice Y2 Galorndon\nDiscover R1 Galorndon B3 Vidiia\nDiscover G1 Galorndon B1 Ktaris\n\n43) mneme: Discover R2 Jumper Y2 Erato\n\n44) Babamots: Build G1 Babamots\n\n45) mneme: Sacrifice Y2 Mneme\nMove R2 Betazed Iconia\nMove R2 Erato Iconia\nCatastrophe Iconia R\n\tBabamots: Sorry for the undo. I mistyped and then took a while to decide whether to bother to redo it.\n\tmneme: no worries, I undo all the time.\n\n46) Babamots: Sacrifice G3 Babamots\nBuild G2 Ktaris\nBuild G3 Babamots\nBuild R2 Euterpe\n\n47) mneme: Build G3 Mneme\n\n48) Babamots: Trade R2 Y2 Euterpe\n\n49) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild B1 Betazed\nBuild R2 Betazed\n\n50) Babamots: Sacrifice Y3 Galorndon\nMove G1 Ktaris Betazed\nMove G2 Ktaris Betazed\nMove G1 Babamots Betazed\nCatastrophe Betazed G\n\n51) mneme: Build Y1 Polyhymnia\n\n52) Babamots: Trade Y2 G2 Euterpe\n\n53) mneme: Trade G1 B1 Mneme\n\tBabamots: Well, that simplified a lot.\n\tmneme: Yeah, I was wondering if you'd do that.\r\n\n\n54) Babamots: Build R2 Euterpe\n\tBabamots: I was unhappy that destroying that fleet gave you a g3, but I eventually decided that it was worth it.\n\tBabamots: I'm working on a couple of deadlines right now, but I'll move again when I've got time to study this properly.\n\tmneme: No worries.\n\n55) mneme: Sacrifice B1 Mneme\nTrade Y3 R3 Polyhymnia\n\n56) Babamots: Trade R2 Y2 Euterpe\n\n57) mneme: Build R2 Polyhymnia\n\n58) Babamots: Build R2 Euterpe\n\n59) mneme: Build G1 Mneme\n\n60) Babamots: Discover R2 Euterpe B1 Mab-bu\n\n61) mneme: Discover G1 Mneme Y3 Erato\n\n62) Babamots: Build R2 Euterpe\n\n63) mneme: Build G1 Mneme\n\n64) Babamots: Build G1 Babamots\n\n65) mneme: Trade G1 B1 Mneme\n\n66) Babamots: Trade R3 Y3 Euterpe\n\n67) mneme: Sacrifice B1 Mneme\nTrade R2 B2 Polyhymnia\n\n68) Babamots: Sacrifice G2 Euterpe\nBuild R2 Mab-bu\nBuild R3 Vidiia\n\n69) mneme: Build R3 Polyhymnia\n\n70) Babamots: Sacrifice Y2 Euterpe\nMove R2 Mab-bu Polyhymnia\nMove R2 Mab-bu Polyhymnia\nCatastrophe Polyhymnia R\n\n71) mneme: Build G1 Mneme\n\n72) Babamots: Trade R2 G2 Euterpe\n\n73) mneme: Sacrifice G3 Mneme\nBuild G2 Mneme\nBuild G3 Erato\nBuild B1 Polyhymnia\n\tBabamots: Well, I'm feeling a lot more secure than I was a month and a half ago. Are you still not getting notifications?\n\tDraw5PlayAll: What are Vidiia, K t a r i s, and any others I missed?\n\tBabamots: Ktaris (from Voyager) is the homeworld of a couple of minor Star Trek characters (Etana Jol and the father of Naomi Wildman). Vidiia (from Voyager) is the homeworld of the Vidiians, who are basically space zombies. They're all infected with a plague that makes their organs shut down, so they harvest organs from other races. Mab-Bu IV is a gas giant with a (barely) habitable moon. The Next Generation crew found disembodied souls there that were not friendly.\n\tBabamots: Oh, and Betazed is where telepathic Betazoids are from (including Deanna Troi's family).\n\tmneme: Well, I found where in the spamtrap they're ending up, but no, I think they're still getting blocked there.\r\n\n\n74) Babamots: Sacrifice G3 Babamots\nBuild Y1 Babamots\nBuild Y2 Euterpe\nBuild G3 Babamots\n\tmneme: And I should hope so; you've been very sucessful at denial and cornering, and I've been a little too cautious overall.\n\n75) mneme: Trade B2 R2 Polyhymnia\n\n76) Babamots: Sacrifice Y1 Babamots\nMove R3 Vidiia Caliope\n\n77) mneme: Move Y2 Caliope Vidiia\n\n78) Babamots: Sacrifice G3 Babamots\nBuild R2 Caliope\nBuild Y1 Babamots\nBuild G3 Babamots\n\n79) mneme: Sacrifice R2 Polyhymnia\nAttack R1 Vidiia\nPass\n\n80) Babamots: Sacrifice Y1 Babamots\nMove R3 Caliope Polyhymnia\n\n81) mneme: Sacrifice Y1 Polyhymnia\nDiscover B1 Polyhymnia Y2 Melpomne\n\n82) Babamots: Sacrifice Y2 Euterpe\nMove Y3 Euterpe Mneme\nMove R3 Polyhymnia Mneme\n\n83) mneme: Sacrifice G3 Erato\nBuild G3 Erato\nBuild R2 Vidiia\nBuild Y1 Mneme\n\n84) Babamots: Sacrifice R2 Caliope\nAttack Y3N Mneme\nAttack G2N Mneme\n\n\tmneme: Good game!\n\tmneme: Hmph. It wouldn't let me resign by catastrophe. For the best for new players, I suppose.\n\tBabamots: By double catastrophe, no less. Good game!\n\nHomeworlds Online (SDG# 31473)\nVariants: "Hard time"\nStarted: 2017.2.25, Ended: 2017.2.27\nParticipants: Draw5PlayAll (S), Ausmuh (N)\nWinner: Draw5PlayAll\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n\tDraw5PlayAll: Uhhhh...?\n\nHomeworlds Online (SDG# 31531)\nVariants: "Hard time"\nStarted: 2017.2.26, Ended: 2017.3.31\nParticipants: Takvorian (S), Aghmarck (N)\nWinner: Aghmarck\n\n1) Aghmarck: Homeworld Y1 B3 G3\n\n2) Takvorian: H B1 Y2 G3\n\tAghmarck: GL, HF!\n\n3) Aghmarck: B G1 Aghmarck\n\tTakvorian: Have fun!\r\nSorry for challenging you repeatedly, but it's quite hard to get a game when you enter the ladder at the bottom ;)\n\tAghmarck: Oh no need for apologies! It's overdue to pick this game again. Thanks for nagging me back!\n\tAghmarck: Oh no need for apologies! It's overdue to pick this game again. Thanks for nagging me back!\n\n4) Takvorian: B G1 Takvorian\n\n5) Aghmarck: Trade G1 B1 Aghmarck\n\tTakvorian: By the way, I am from Berlin, Germany. Where are you from?\n\tAghmarck: Heredia, Costa Rica\n\n6) Takvorian: T G1 B1 Takvorian\n\n7) Aghmarck: Build B2 Aghmarck\n\n8) Takvorian: B B2 Takvorian\n\n9) Aghmarck: T B1 Y1 Aghmarck\n\n10) Takvorian: T B2 Y2 Takvorian\n\n11) Aghmarck: B G1 Aghmarck\n\n12) Takvorian: B G1 Takvorian\n\n13) Aghmarck: D G1 Aghmarck B2 B2\n\n14) Takvorian: D B1 Takvorian G3 Britz\n\n15) Aghmarck: B G1 Aghmarck\n\n16) Takvorian: B G2 Takvorian\n\n17) Aghmarck: S G3 Aghmarck\nB G2 Aghmarck\nB G2 B2\nB G3 Aghmarck\n\n18) Takvorian: T G1 R1 Takvorian\n\n19) Aghmarck: T G1 R1 Aghmarck\n\n20) Takvorian: M Y2 Takvorian Britz\n\n21) Aghmarck: T G2 Y2 B2\n\n22) Takvorian: T G2 B2 Takvorian\n\n23) Aghmarck: Build G1 B2\n\n24) Takvorian: B B1 Britz\n\n25) Aghmarck: Discover B2 Aghmarck G2 G2\n\n26) Takvorian: T B1 R1 Britz\n\n27) Aghmarck: Build R2 Aghmarck\n\n\nHomeworlds Online (SDG# 31503)\nStarted: 2017.2.27, Ended: 2017.4.6\nParticipants: MobyNostromo (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) MobyNostromo:\nH G3 Y2 B3\n\tDraw5PlayAll: I am just doing this as a test to see if it will forfeit me for having no homeworld\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\tMobyNostromo: I think it worked.\n\n4) MobyNostromo: B B1 Mobynostromo\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) MobyNostromo: B B1 Mobynostromo\n\n7) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n8) MobyNostromo: T B1 Y1 Mobynostromo\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\n10) MobyNostromo: T B1 G1 Mobynostromo\n\n11) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n12) MobyNostromo: B Y1 Mobynostromo\n\n13) Draw5PlayAll: Build Y2 Draw5playall\n\n14) MobyNostromo: D Y1 Mobynostromo B1 Blue\n\n15) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n16) MobyNostromo: B Y2 Mobynostromo\n\n17) Draw5PlayAll: Move Y1 Draw5playall G2\n\n18) MobyNostromo: M G1 Mobynostromo Blue\n\n19) Draw5PlayAll: Build Y3 G2\n\n20) MobyNostromo: B Y3 Blue\n\n21) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 G2 Blue\nMove Y1 Blue Mobynostromo\nCatastrophe Mobynostromo Y\n\n22) MobyNostromo: T Y3 R3 Blue\n\n23) Draw5PlayAll: Build G1 Draw5playall\n\n24) MobyNostromo: M R3 Blue G2\n\n25) Draw5PlayAll: Move Y3 G2 Blue\n\n26) MobyNostromo: A B1 G2\n\n27) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n28) MobyNostromo: S Y1 Blue\nM R3 G2 Blue\n\n29) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack R3 Blue\n\n30) MobyNostromo: T B3 G3 Mobynostromo\n\n31) Draw5PlayAll: Attack G1 Blue\n\n32) MobyNostromo: B B1 G2\n\n33) Draw5PlayAll: Build G1 Draw5playall\n\n34) MobyNostromo: T B1 Y1 G2\n\n35) Draw5PlayAll: Sacrifice Y3 Blue\nMove G1 Blue Mobynostromo\nMove G1 Draw5playall G2\nMove G1 G2 Mobynostromo\nCatastrophe Mobynostromo Green\n\n\nHomeworlds Online (SDG# 31546)\nStarted: 2017.3.2, Ended: 2017.5.7\nParticipants: MobyNostromo (S), panglott (N)\nWinner: panglott\n\n1) panglott: Homeworld G2 R1 B3\n\n2) MobyNostromo: H G3 Y2 B3\n\n3) panglott: Build B1 Panglott\n\tMobyNostromo: Have fun!\n\n4) MobyNostromo: B B1 Mobynostromo\n\n5) panglott: Trade B1 Y1 Panglott\n\n6) MobyNostromo: B B1 Mobynostromo\n\n7) panglott: Build Y1 Panglott\n\n8) MobyNostromo: T B1 Y1 Mobynostromo\n\n9) panglott: Build Y2 Panglott\n\n10) MobyNostromo: T B1 G1 Mobynostromo\n\n11) panglott: Discover Y2 Panglott B3 Arcturus\n\n12) MobyNostromo: B Y2 Mobynostromo\n\n13) panglott: Build Y3 Panglott\n\n14) MobyNostromo: T Y2 R2 Mobynostromo\n\n15) panglott: Sacrifice Y2 Arcturus\nDiscover Y1 Panglott B3 Arcturus\nMove Y1 Panglott Arcturus\n\n16) MobyNostromo: D Y1 Mobynostromo G1 Green\n\n17) panglott: Build Y2 Panglott\n\n18) MobyNostromo: M R2 Mobynostromo Green\n\n19) panglott: Trade Y1 R1 Arcturus\n\n20) MobyNostromo: B R1 Green\n\n21) panglott: Move Y3 Panglott Arcturus\n\n22) MobyNostromo: B B1 Mobynostromo\n\n23) panglott: Trade Y1 G1 Arcturus\n\n24) MobyNostromo: M R2 Green Arcturus\n\n25) panglott: Attack R2 Arcturus\n\n26) MobyNostromo: B R2 Green\n\n27) panglott: Build G2 Arcturus\n\n28) MobyNostromo: B G2 Mobynostromo\n\n29) panglott: Sacrifice Y2 Panglott\nMove G1 Arcturus Green\nMove G1 Green Mobynostromo\nCatastrophe Mobynostromo G\n\n30) MobyNostromo: T B3 R3 Mobynostromo\n\n31) panglott: Build B1 Panglott\n\n32) MobyNostromo: T B1 G1 Mobynostromo\n\n33) panglott: Trade B1 G1 Panglott\n\n34) MobyNostromo: D G1 Mobynostromo B3 Blue\n\n35) panglott: Build R2 Arcturus\n\n36) MobyNostromo: M R1 Green Arcturus\nC Arcturus Red\n\n37) panglott: Trade G1 R1 Panglott\n\n38) MobyNostromo: B G1 Blue\n\n39) panglott: Build Y1 Arcturus\n\n40) MobyNostromo: T G1 Y1 Blue\n\n41) panglott: Move Y3 Arcturus Panglott\n\n42) MobyNostromo: B Y2 Blue\n\n43) panglott: Build Y2 Arcturus\n\n44) MobyNostromo: B Y3 Green\n\n45) panglott: Sacrifice Y2 Arcturus\nMove Y3 Panglott Blue\nMove R1 Panglott Blue\n\n46) MobyNostromo: D Y2 Blue G2 G2\n\n47) panglott: Move Y3 Blue Panglott\n\n48) MobyNostromo: B Y2 Blue\n\n49) panglott: Attack Y1 Blue\n\n50) MobyNostromo: B Y3 G2\n\n51) panglott: Attack G1 Blue\n\n52) MobyNostromo: M R2 Green Blue\n\n53) panglott: Move R1 Blue Panglott\n\n54) MobyNostromo: A G1 Blue\n\n55) panglott: Build G1 Arcturus\n\n56) MobyNostromo: B G3 Blue\n\n57) panglott: Build G3 Arcturus\n\n58) MobyNostromo: M G1 Blue Mobynostromo\n\n59) panglott: Trade G1 R1 Arcturus\n\n60) MobyNostromo: B R2 Mobynostromo\n\n61) panglott: Sacrifice G3 Arcturus\nBuild G1 Arcturus\nBuild R2 Arcturus\nBuild G3 Arcturus\n\n62) MobyNostromo: M G1 Mobynostromo Arcturus\nC Arcturus G\n\n63) panglott: Sacrifice Y3 Panglott\nMove R1 Arcturus Mobynostromo\nMove R2 Arcturus Mobynostromo\nPass\nCatastrophe Mobynostromo Red\n\n\nHomeworlds Online (SDG# 31557)\nVariants: "Hard time"\nStarted: 2017.3.3, Ended: 2017.3.21\nParticipants: Aristos (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\tDraw5PlayAll: ?\n\n2) Aristos: Homeworld B3 R2 G3\n\n3) Draw5PlayAll: Homeworld B1 R3 G3\n\tAristos: Hello. Your move.\n\tAristos: Why did you pass? \n\n4) Aristos: Build G1 Aristos\n\n5) Draw5PlayAll: Build G1! Draw5playall\n\n6) Aristos: Trade G3 Y3 Aristos\n\tDraw5PlayAll: That could be weird.\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Aristos: Build Y1 Aristos\n\n9) Draw5PlayAll: Build G1* Draw5playall\n\n10) Aristos: Discover Y1 Aristos G1 Mold\n\tAristos: What is a "G1*" ship? Why does your ship have an asterisk next to it? I've never seen that in the notation. \n\n11) Draw5PlayAll: Build G2097152 Draw5playall\n\tDraw5PlayAll: We shall see. I built a "G1!" ship, and it seems to function as a normal G1...\n\n12) Aristos: Build G2 Aristos\n\tDraw5PlayAll: Hmmm... I should try sacrificing that thing and seeing if I can grow the whole bank...\n\n13) Draw5PlayAll: Trade G2 B2 Draw5playall\n\n14) Aristos: Discover G1 Aristos B1 Plum\n\n15) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\tAristos: Weird that the system doesn't filter the extra letters. Guess they never thought someone would try that. :-) \n\n16) Aristos: Build Y1 Aristos\n\n17) Draw5PlayAll: Build Y2 Draw5playall\n\n18) Aristos: Build Y2 Mold\n\n19) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n20) Aristos: Trade Y1 R1 Aristos\n\n21) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n22) Aristos: Build G1 Aristos\n\n23) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B2 G2\nBuild B2 G2\nBuild B3 Draw5playall\n\n24) Aristos: Build G2 Plum\n\n25) Draw5PlayAll: Trade B3 G3 Draw5playall\n\n\tDraw5PlayAll: ??\n\nHomeworlds Online (SDG# 31596)\nVariants: "Hard time"\nStarted: 2017.3.3, Ended: 2017.3.14\nParticipants: fogus (S), panglott (N)\nWinner: fogus\n\n1) panglott: Homeworld B3 G2 Y3\n\n2) fogus: Homeworld Y2 B1 G3\n\n3) panglott: Build Y1 Panglott\n\n4) fogus: Build G1 Fogus\n\n5) panglott: Build Y1 Panglott\n\n6) fogus: Build G1 Fogus\n\n7) panglott: Discover Y1 Panglott B1 Deneb\n\n8) fogus: Discover G1 Fogus B3 Boo\n\n9) panglott: Move Y1 Panglott Deneb\n\n10) fogus: Build G1 Fogus\n\n11) panglott: Build Y1 Panglott\n\n12) fogus: Sacrifice G3 Fogus\nBuild G2 Boo\nBuild G2 Boo\nBuild G3 Fogus\n\n13) panglott: Build Y2 Panglott\n\n14) fogus: Trade G2 Y2 Boo\n\n15) panglott: Move Y2 Panglott Deneb\n\n16) fogus: Trade G3 Y3 Fogus\n\n17) panglott: Build Y3 Panglott\n\n18) fogus: Sacrifice Y3 Fogus\nDiscover Y2 Boo R1 Boingboing\nMove Y2 Boingboing Panglott\nPass\nCatastrophe Panglott Y\n\tfogus: Happy to play again if you'd like. Send a challenge my way if you're interested.\n\n\nHomeworlds Online (SDG# 31583)\nStarted: 2017.3.4, Ended: 2017.3.15\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n1) MobyNostromo: H G3 Y2 B3\n\twil: This is a great game...takes a while to learn....ask any question Long the way.\n\tMobyNostromo: Thank you. I'll do my best to make this game interesting for you.\n\n2) wil: H B2 Y1 G3\n\twil: Is it your first game? Do you want me to point out anything?\n\n3) MobyNostromo: B B1 Mobynostromo\n\tMobyNostromo: Not really my first game because I'm in the process of playing three other ones, but I have yet to finish any. I think I'm getting the general hang of it, so go ahead and destroy me - it might be the best way I learn.\n\n4) wil: B G1 Wil\n\twil: It is...watching different attacks come at you is perfect... I shy away from using G3 as a star...keeps you from getting a factory there.\n\n5) MobyNostromo: T B1 Y1 Mobynostromo\n\tMobyNostromo: What's a factory?\n\n6) wil: T G1 Y1 Wil\n\twil: When you sacrifice a piece you get to use the power of the piece anywhere in the galaxy....when the green bank is empty, and I have a g3 and g1 I can sack my g3 for 3 grows, grow the g3 Right back and still have two more grows for any color anywhere in the galaxy that I have those.colors whether I have a green in that star system or not.\n\n7) MobyNostromo: B Y2 Mobynostromo\n\tMobyNostromo: Now I understand. I like the idea behind that, like loopholes (or wormholes) in the rules that nurture different strategies. It's definitely something to keep in mind during my next setup.\n\n8) wil: B Y2 Wil\n\twil: You have pyramid arcade?\n\n9) MobyNostromo: T Y2 G2 Mobynostromo\n\tMobyNostromo: Yes. Do you?\n\n10) wil: D Y1 Wil B3 B3\n\twil: Yes, read the pages on strategies...they are incredibly valuable.\n\n11) MobyNostromo: B Y2 Mobynostromo\n\n12) wil: Sacrifice Y2 Wil\nDiscover Y1 B3 R1 R1\nMove Y1 R1 Mobynostromo\nCatastrophe Mobynostromo Y\n\tMobyNostromo: Will do.\n\n13) MobyNostromo: T G2 Y2 Mobynostromo\n\n14) wil: B G1 Wil\n\twil: I wasn't going to do it, I was, I wasn't and then I said I should... I learned all I know by making all the mistakes.\n\tMobyNostromo: WOW! I think I gave some studying to do.\n\n15) MobyNostromo: B B1 Mobynostromo\n\n16) wil: T G3 R3 Wil\n\tDraw5PlayAll: !\n\n17) MobyNostromo: B Y1 Mobynostromo\n\n18) wil: M R3 Wil Mobynostromo\n\n19) MobyNostromo: D B3 Mobynostromo G1 Green\n\n20) wil: A Y2 Mobynostromo\n\n21) MobyNostromo: T B3 R3 Green\n\n22) wil: S R3 Mobynostromo\nA Y1 Mobynostromo\nA B1 Mobynostromo\nP\n\n\twil: Challenge any time\n\tMobyNostromo: Thanks, I will after I study this a bit more.\n\twil: meh...playing and losing is the study (was for me anyway..) I lost by the dozens, seeing the various attacks coming at me, then trying against others, then learning the counters...\r\n\n\nHomeworlds Online (SDG# 31610)\nVariants: "Hard time"\nStarted: 2017.3.4, Ended: 2017.3.7\nParticipants: w00t (S), wil (N)\nWinner: wil\n\n1) wil: H B3 R1 G3\n\n\twil: Good luck... \n\tDraw5PlayAll: You are back!!\n\twil: Phooey\n\nHomeworlds Online (SDG# 31654)\nVariants: "Hard time"\nStarted: 2017.3.9, Ended: 2017.3.12\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3 Wil\n\twil: Back for a visit!\n\n\tts52: D'oh! Sorry about that. I should've declined the challenge before heading to PAX this weekend. Please challenge me again.\n\nHomeworlds Online (SDG# 31657)\nVariants: "Hard time"\nStarted: 2017.3.11, Ended: 2017.5.7\nParticipants: Subhan64 (S), Grosseteste (N)\nWinner: Subhan64\n\n1) Grosseteste: H B2 R1 G3\n\n2) Subhan64: Homeworld G3 B2 Y3\n\n3) Grosseteste: B G1 Grosseteste\n\n4) Subhan64: Build Y1 Subhan64\n\n5) Grosseteste: T G1 Y1 Grosseteste\n\n6) Subhan64: Trade Y1 G1 Subhan64\n\n7) Grosseteste: B G1 Grosseteste\n\n8) Subhan64: Build Y1 Subhan64\n\n9) Grosseteste: Trade G1 B1 Grosseteste\n\n10) Subhan64: Build G1 Subhan64\n\n11) Grosseteste: Build B1 Grosseteste\n\n12) Subhan64: Trade G1 B1 Subhan64\n\n13) Grosseteste: D B1 Grosseteste G3 Patty\n\n14) Subhan64: Discover B1 Subhan64 G1 Kermit\n\n15) Grosseteste: Build Y1 Grosseteste\n\n16) Subhan64: Build Y2 Subhan64\n\n17) Grosseteste: Move Y1 Grosseteste Patty\n\n18) Subhan64: Trade B1 G1 Kermit\n\n\tGrosseteste: Sorry I wasn't more attentive, good luck further up the ladder!\n\nHomeworlds Online (SDG# 31618)\nStarted: 2017.3.13, Ended: 2017.5.10\nParticipants: ts52 (S), Personman (N)\nWinner: ts52\n\n1) Personman: Homeworld R1 B3 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: :) Have a good game!\n\n3) Personman: Build G1 Personman\n\n4) ts52: Build G1 Ts52\n\tPersonman: you too!\n\n5) Personman: Trade G1 Y1 Personman\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Personman: Build G1 Personman\n\n8) ts52: Build G1 Ts52\n\n9) Personman: Trade G1 B1 Personman\n\n10) ts52: Trade G1 B1 Ts52\n\n11) Personman: Build G1 Personman\n\n12) ts52: Discover B1 Ts52 G1 Robin\n\n13) Personman: Discover B1 Personman G2 Kestrel\n\n14) ts52: Move Y1 Ts52 Robin\n\n15) Personman: Discover G1 Personman B2 Lark\n\n16) ts52: Build B1 Robin\n\n17) Personman: Trade B1 R1 Kestrel\n\n18) ts52: Trade B1 R1 Robin\n\n19) Personman: Build R2 Kestrel\n\n20) ts52: Build R2 Robin\n\n21) Personman: Move Y1 Personman Kestrel\n\n22) ts52: Trade R2 B2 Robin\n\n23) Personman: Build G1 Personman\n\n24) ts52: Build G2 Ts52\n\n25) Personman: Sacrifice G3 Personman\nBuild G2 Lark\nBuild G3 Lark\nBuild G3 Personman\n\n26) ts52: Discover B1 Robin Y2 Bigbird\n\n27) Personman: Sacrifice Y1 Kestrel\nMove G3 Lark Robin\n\n28) ts52: Move R1 Robin Bigbird\n\n29) Personman: Sacrifice R2 Kestrel\nAttack B2 Robin\nAttack Y1 Robin\n\n30) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Bigbird\nBuild B1 Bigbird\n\n31) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild R2 Kestrel\nBuild Y1 Robin\n\n32) ts52: Discover R1 Bigbird Y3 Zoe\n\n33) Personman: Trade G1 Y1 Lark\n\n34) ts52: Trade B1 G1 Bigbird\n\tts52: Apparently I'm no longer getting notification emails from SDG. I'll try to remember to check once a day, but if you notice me lagging, feel free to nugde me at tim.seiger@gmail.com.\n\n35) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild Y2 Lark\nBuild Y2 Lark\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Zoe\nBuild R3 Bigbird\n\n37) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild Y3 Robin\nBuild B1 Robin\n\n38) ts52: Move G2 Ts52 Robin\n\n39) Personman: Sacrifice Y3 Robin\nMove G3 Robin Zoe\nMove Y1 Robin Ts52\nMove Y1 Robin Ts52\n\n40) ts52: Sacrifice R3 Bigbird\nAttack B2 Robin\nAttack B1 Robin\nAttack Y1 Ts52\n\tts52: Well that doesn't look good. ;)\n\n41) Personman: Sacrifice Y2 Lark\nMove Y1 Lark Robin\nMove Y1 Robin Ts52\nCatastrophe Ts52 Y\n\n42) ts52: Move R2 Zoe Ts52\n\n43) Personman: Sacrifice R1 Kestrel\nAttack R1 Zoe\n\n44) ts52: Trade B1 Y1 Robin\n\n45) Personman: Move G3 Zoe Bigbird\n\tts52: Made it with hours to spare. ;)\r\n\n\tPersonman: You just know i was hovering over that "force ts52 to resign" button :D\n\tPersonman: btw, can you remind me of the exact rules for that variant your friend invented, with the central white stars that are an additional win condition? My housemate and I want to try it out.\n\n46) ts52: Move R2 Bigbird Zoe\n\n47) Personman: Sacrifice R1 Zoe\nAttack B1 Bigbird\n\tts52: Hmmm, good question. IIRC, you use black and white colors to build 3 binary systems, one of each size combination. Then there is an additional win condition of controlling 2/3 of those systems. I believe controlling meant having the only ships in it.\n\n48) ts52: Move G1 Bigbird Zoe\n\n49) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild B1 Bigbird\nBuild Y1 Lark\n\n50) ts52: Build R1 Ts52\n\n51) Personman: Trade Y1 R1 Lark\n\n52) ts52: Sacrifice G2 Robin\nBuild R3 Ts52\nBuild R3 Zoe\n\n53) Personman: Sacrifice G3 Personman\nBuild G2 Lark\nBuild G3 Personman\nBuild R3 Lark\n\n54) ts52: Trade R2 Y2 Ts52\n\n55) Personman: Discover B1 Bigbird Y1 Littlebird\n\n56) ts52: Move G1 Zoe Ts52\n\n57) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild B1 Littlebird\nBuild B3 Littlebird\n\n58) ts52: Sacrifice Y2 Ts52\nMove G3 Ts52 Personman\nMove G1 Ts52 Personman\nCatastrophe Personman Green\n\n\tts52: Good game! Happy to play again any time.\n\tPersonman: oh my gosh, i completely missed it. well done. will challenge again!\n\nHomeworlds Online (SDG# 31612)\nStarted: 2017.3.13, Ended: 2017.4.6\nParticipants: w00t (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n\nHomeworlds Online (SDG# 31611)\nVariants: "Unrated, Hard time"\nStarted: 2017.3.13, Ended: 2017.3.15\nParticipants: wil (S), RedMerlin (N)\nWinner: wil\n\n1) RedMerlin: Homeworld Y2 B1 G3\n\n2) wil: H R3 B2 G3\n\n3) RedMerlin: Build G1 Redmerlin\n\n4) wil: B G1 Wil\n\tRedMerlin: Oh oops, I accidentally joined two games against you... Should I concede one or would you like to play 2 games?\n\n5) RedMerlin: Trade G1 B1 Redmerlin\n\n6) wil: T G1 B1 Wil\n\n7) RedMerlin: Discover B1 Redmerlin G3 A3\n\n8) wil: B B2 Wil\n\n9) RedMerlin: Build G1 Redmerlin\n\n10) wil: T B1 Y1 Wil\n\n11) RedMerlin: Build G1 Redmerlin\n\n12) wil: B Y1 Wil\n\n13) RedMerlin: Trade G1 Y1 Redmerlin\n\n14) wil: D Y1 Wil G1 G1\n\n15) RedMerlin: Build Y2 Redmerlin\n\twil: If you have the arcade, read the strategies..\n\tRedMerlin: Why? Don't take the last piece of a size?\n\n16) wil: B Y2 G1\n\twil: There is a lot, factories, teleportation, investments..\n\tRedMerlin: Oh yeah I know, I have read that, I set up an early investment in the other game...\n\n17) RedMerlin: Move Y2 Redmerlin A3\n\n18) wil: S G3 Wil\nB Y3 Wil\nB Y3 Wil\nB Y3 G1\n\n19) RedMerlin: Discover G1 Redmerlin B3 B3\n\n20) wil: M Y2 G1 B3\n\tRedMerlin: Arg! I could have moved my small yellow forward and caused a catastrophe!\n\n21) RedMerlin: Move Y1 Redmerlin A3\n\n22) wil: S B2 Wil\nT Y3 R3 G1\nT Y3 G3 Wil\n\twil: Yes when I saw that you didn't move it forward, I figured I'd try this.\n\tRedMerlin: Yeah, if I had moved that one forward I could have sacrificed my 2 to send my 1 two jumps forward...\n\n23) RedMerlin: Trade Y2 R2 A3\n\n24) wil: S G3 Wil\nB Y2 B3\nB Y3 Wil\nB Y3 G1\n\twil: Now you've put your two yellows in yye same star system, keeping you from being able to grow a yello\n\tRedMerlin: Oh... Yeah...\n\n25) RedMerlin: Build G1 Redmerlin\n\tRedMerlin: I feel like I'm already very dead...\n\twil: It is all about losing at the beginning, seeing how attacks and end of game moves play out.\n\twil: It is all about losing at the beginning, seeing how attacks and end of game moves play out.\n\twil: It is all about losing at the beginning, seeing how attacks and end of game moves play out.\n\n26) wil: M Y3 G1 A3\n\n27) RedMerlin: Sacrifice G3 Redmerlin\nBuild G2 Redmerlin\nBuild B1 A3\nBuild B2 A3\n\n28) wil: S R3 G1\nA G1 B3\nA B2 A3\nA R2 A3\n\n29) RedMerlin: Discover Y1 A3 R1 C1\n\n30) wil: M Y3 A3 Redmerlin\n\twil: Yes not owning any big ships has shortened your days... Although I should have just sent my big fuel ship in\n\tRedMerlin: Oh...\n\n31) RedMerlin: Trade G1 R1 Redmerlin\n\n32) wil: S R2 A3\nA G2 Redmerlin\nA R1 Redmerlin\n\n\twil: The oilagarchy has won, domination of the galaxy via fuel\n\twil: Challenge me anytime... \n\nHomeworlds Online (SDG# 31675)\nVariants: "Unrated, Hard time"\nStarted: 2017.3.13, Ended: 2017.3.13\nParticipants: RedMerlin (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\n2) RedMerlin: Homeworld Y1 B2 G3\n\n3) wil: B G1 Wil\n\n4) RedMerlin: Build G1 Redmerlin\n\n5) wil: T G1 B1 Wil\n\tRedMerlin: Oh oops, I accidentally joined two games against you... Should I concede one or would you like to play 2 games?\n\twil: Two is fine...\n\n6) RedMerlin: Discover G1 Redmerlin Y3 Al\n\tRedMerlin: Cool ok\n\n7) wil: B B1 Wil\n\n8) RedMerlin: Build G1 Redmerlin\n\n9) wil: D B1 Wil G2 G2\n\n10) RedMerlin: Discover G1 Redmerlin B3 B3\n\n11) wil: S G3 Wil\nB B2 G2\nB B2 G2\nB B3 Wil\n\n12) RedMerlin: Trade G3 B3 Redmerlin\n\n13) wil: S B2 G2\nT B2 Y2 G2\nT B3 G3 Wil\n\n\tRedMerlin: Sorry, this was my first game and I'm crap at it...\n\twil: No worries... You'll lose 90% of your first games.. This was an example of getting frozen out of an economy.\n\nHomeworlds Online (SDG# 31678)\nVariants: "Unrated"\nStarted: 2017.3.14, Ended: 2017.3.20\nParticipants: fogus (S), RedMerlin (N)\nWinner: fogus\n\n1) RedMerlin: Homeworld Y1 B2 G3\n\n2) fogus: Homeworld G3 B2 Y3\n\n3) RedMerlin: Build G1 Redmerlin\n\n4) fogus: Build Y1 Fogus\n\n5) RedMerlin: Discover G1 Redmerlin Y3 Y3\n\n6) fogus: Trade Y1 G1 Fogus\n\n7) RedMerlin: Build G1 Redmerlin\n\n8) fogus: Build G2 Fogus\n\n9) RedMerlin: Build G2 Redmerlin\n\n10) fogus: Sacrifice Y3 Fogus\nDiscover G1 Fogus Y1 Bounce\nMove G1 Bounce Y3\nMove G1 Y3 Redmerlin\nCatastrophe Redmerlin G\n\n\nHomeworlds Online (SDG# 31676)\nVariants: "Unrated, Hard time"\nStarted: 2017.3.14, Ended: 2017.3.28\nParticipants: wil (S), bhorner (N)\nWinner: wil\n\n1) bhorner: Homeworld B2 Y1 G3\n\n2) wil: H R3 B1 G3\n\n3) bhorner: B G1 Bhorner\n\n4) wil: B G1 Wil\n\n5) bhorner: D G1 Bhorner B3 Blip\n\n6) wil: T G1 Y1 Wil\n\n7) bhorner: Trade G1 Y1 Blip\n\n8) wil: B Y2 Wil\n\tbhorner: That was quick.\n\n9) bhorner: Build G1 Bhorner\n\n10) wil: B Y2 Wil\n\n11) bhorner: Sac G1 Bhorner\nB Y2 Blip\n\n12) wil: D Y2 Wil G2 G2\n\n13) bhorner: M Y1 Blip G2\n\n14) wil: T Y2 R2 Wil\n\n15) bhorner: Trade Y2 R2 Blip\n\twil: Oh, I missed a good move there...sack g3 build all the y3s catastrophe, and I would be one ahead with the ability to build...dang it.\n\tbhorner: You can take it back. :)\n\twil: Lol... No go ahead..\n\n16) wil: B Y2 Wil\n\n17) bhorner: Build G1 Bhorner\n\n18) wil: D Y1 Wil G2 Geetoo\n\n19) bhorner: Discover G1 Bhorner Y3 Doh\n\n20) wil: S G3 Wil\nB Y2 G2\nB Y3 Geetoo\nB Y3 Wil\n\n21) bhorner: D Y1 G2 R1 Spark\n\n22) wil: T Y2 G2 Wil\n\n23) bhorner: B G1 Bhorner\n\n24) wil: M Y3 Geetoo Blip\n\tbhorner: Sorry for the delay, no choices look particularly good, and I've only gotten to look at the game for 5 minutes at a time.\n\n25) bhorner: T G1 R1 Bhorner\n\twil: If you have a set if pyramids, it is handy to set up the game when it gets complicated...but you are in trouble here..\n\tbhorner: I have lots. :). I just got the pyramid arcade too. :). I thought you would win, but hoped to learn something. Seems like it's not over yet though. :)\n\n26) wil: M Y2 G2 Doh\n\twil: Oh no, this is a game of mistakes..and capitalizing in them..I have plenty of time to blow it.\n\n27) bhorner: D G1 Doh Y2 Tri\n\n28) wil: B R1 Wil\n\n29) bhorner: S Y1 Spark\nM R2 Blip Tri\n\n30) wil: M R2 Wil Geetoo\n\n31) bhorner: B G1 Bhorner\n\n32) wil: B Y1 G2\n\tbhorner: Guess I could have done that a lot sooner. I've been tired the last couple days, keep thinking I'll come up with something awesome tomorrow. :)\n\twil: Lol\n\n33) bhorner: M R1 Bhorner Doh\n\n34) wil: M Y3 Blip Tri\n\n35) bhorner: S G3 Bhorner\nB R1 Tri\nB R2 Tri\nB R3 Doh\n\n36) wil: B R3 Geetoo\n\n37) bhorner: M R2 Tri Wil\n\n38) wil: S Y3 Tri\nM R3 Geetoo Doh\nM R3 Doh Bhorner\nM Y2 Doh Bhorner\n\n39) bhorner: M R1 Tri Wil\nCat Wil R\n\n40) wil: A G1 Bhorner\n\twil: You left g1 home alone..\n\tbhorner: Did I have some better move? You could just have moved in your y3 last move instead of building r3. :). My only hope was boldness and flustering you (which I didn't actually count on). Now I will take the pretend 2nd place and pound of flesh of half your homeworld. :). gg\n\n\tbhorner: I think I said something you didn't do... But the result is the same. :)\n\twil: What... That old place? We found this lovely new star with growth potential... It appears abandoned...just a few indigenous we can easily enslave.\n\twil: Feel free to challenge anytime... I like paying\n\nHomeworlds Online (SDG# 31683)\nVariants: "Unrated, Hard time"\nStarted: 2017.3.15, Ended: 2017.3.17\nParticipants: wil (S), RedMerlin (N)\nWinner: wil\n\n1) RedMerlin: Homeworld Y1 B2 G3\n\n2) wil: H R3 B1 G3\n\tRedMerlin: Hi I'm back\n\n3) RedMerlin: Build G1 Redmerlin\n\twil: Lol, good luck!\n\twil: Just tell me how much info you would like.. And if you want me to give you a chance to take back moves I see as terrible...or only report after the fact.\n\n4) wil: B G1 Wil\n\tRedMerlin: Haha thanks, I'll probably need it... And I think reporting after the fact is helpful enough, unless it's like a game losing mistake\n\n5) RedMerlin: Trade G1 B1 Redmerlin\n\twil: I'll do my best to shorten the curve and reduce the number if times you touch the stove... (Unless it contains s valuable lesson)\n\tRedMerlin: Thanks so much!\n\n6) wil: T G1 B1 Wil\n\tRedMerlin: Did it matter if I traded for a blue or a yellow there? And if so, which was the better option (taking into account only having 2 B2s and 3 Y3s)?\n\tRedMerlin: Y2s*\n\twil: I think the b1 is correct, shortest way to 3s\n\n7) RedMerlin: Build B2 Redmerlin\n\n8) wil: B B2 Wil\n\n9) RedMerlin: Discover B1 Redmerlin G3 G3\n\n10) wil: T B2 Y2 Wil\n\n11) RedMerlin: Build G1 Redmerlin\n\n12) wil: Build Y1 Wil\n\n13) RedMerlin: Trade G1 Y1 Redmerlin\n\n14) wil: B Y2 Wil\n\n15) RedMerlin: Build G1 Redmerlin\n\tRedMerlin: I know it gives you access to medium yellows but I don't want to have 0 yellow ships if you take that last one...\n\n16) wil: T Y2 R2 Wil\n\n17) RedMerlin: Trade B2 R2 Redmerlin\n\twil: Exactly right... Onen thing to keep in mind when this happens is knowing you have a 2 you can trade some time as well...you only get outrun when you don't have the same size\n\twil: All those things are what you weigh to find the best move.\n\n18) wil: Build Y2 Wil\n\n19) RedMerlin: Move R2 Redmerlin G3\n\n20) wil: D Y2 Wil G2 G2\n\n21) RedMerlin: Build B2 G3\n\n22) wil: S G3 Wil\nB Y2 G2\nB Y3 G2\nB Y3 Wil\n\n23) RedMerlin: Move Y1 Redmerlin G3\n\n24) wil: M Y3 G2 G3\n\n25) RedMerlin: Build Y3 G3\n\n26) wil: S R2 Wil\nA Y3 G3\nA R2 G3\n\twil: This looks like a lovely solar system... I like what you've done with the place.. So many pretty colors..\n\n\twil: IMA just gonna re arrange the furniture a little...\n\tRedMerlin: That sounds very ominous...\n\twil: Crap... I should a let you change that move...sorry... Next game.\n\twil: But that is how a red sacrifice works...\n\tRedMerlin: Ohhhhh.....\r\n\n\tRedMerlin: I had completely forgotten you could sacrifice reds for attacks in other places...\n\twil: Yez...everything sacrifices... And next move was in!\n\tRedMerlin: Yep\n\nHomeworlds Online (SDG# 31697)\nVariants: "Unrated"\nStarted: 2017.3.17, Ended: 2017.3.25\nParticipants: Personman (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) Personman: Homeworld B1 Y2 G3\n\n3) wil: B G1 Wil\n\n4) Personman: Build G1 Personman\n\n5) wil: T G1 Y1 Wil\n\n6) Personman: Trade G1 B1 Personman\n\n7) wil: B Y1 Wil\n\n8) Personman: Build G1 Personman\n\n9) wil: D Y1 Wil B2 B2\n\n10) Personman: Trade G1 R1 Personman\n\n11) wil: B Y2 Wil\n\n12) Personman: Build G1 Personman\n\n13) wil: D Y1 Wil G2 G2\n\n14) Personman: Discover B1 Personman G3 G3\n\n15) wil: S G3 Wil\nB Y2 B2\nB Y3 B2\nB Y3 Wil\n\n16) Personman: Trade G3 Y3 Personman\n\n17) wil: T Y3 G3 Wil\n\n18) Personman: Build G1 Personman\n\n19) wil: T Y1 R1 B2\n\n20) Personman: Build B1 G3\n\n21) wil: T Y2 R2 Wil\n\n22) Personman: Trade B1 Y1 G3\n\n23) wil: M Y2 B2 G3\n\n24) Personman: Sacrifice Y1 G3\nMove B1 G3 Personman\n\n25) wil: B Y1 G2\n\n26) Personman: Build B1 Personman\n\n27) wil: B Y2 G3\n\n28) Personman: Discover B1 Personman Y3 Y3\n\n29) wil: B G1 Wil\n\n30) Personman: Build B2 Personman\n\n31) wil: T Y3 B3 B2\n\n32) Personman: Move B2 Personman Y3\n\n33) wil: B Y3 G2\n\n34) Personman: Build G2 Personman\n\n35) wil: S B3 B2\nT Y3 B3 G2\nT Y2 B2 G3\nT Y1 R1 G2\n\n36) Personman: Sacrifice G1 Personman\nBuild B3 Y3\n\n37) wil: M B3 G2 Y3\nC Y3 B\n\n38) Personman: Build R2 Personman\n\n39) wil: S G3 Wil\nB R2 G2\nB R3 B2\nB R3 Wil\n\n40) Personman: Discover G2 Personman Y3 Y3\n\n41) wil: B R3 G2\n\twil: The map of the galaxy can change fast\n\n42) Personman: Build G1 Personman\n\n43) wil: M R3 G2 Y3\n\n44) Personman: Discover G2 Y3 Y2 Y2\n\n45) wil: T R3 G3 Wil\n\n46) Personman: Build G2 Y2\n\twil: Not to my star!\n\n47) wil: S G3 Wil\nB Y1 G3\nB Y3 G2\nB R3 Wil\n\n48) Personman: Move G2 Y2 Wil\n\n49) wil: B G3 Wil\n\n50) Personman: Build G3 Y2\n\n51) wil: S Y2 G3\nM G1 Wil Y2\nM G3 Wil Y2\nC Y2 G\n\n52) Personman: Discover G2 Wil B2 B2a\n\n53) wil: S B2 G3\nT R3 G3 Y3\nT R3 G3 Wil\n\n54) Personman: Trade G2 Y2 B2a\n\n55) wil: S G3 Y3\nB Y2 G3\nB Y3 G2\nB R3 Wil\n\n56) Personman: Discover R1 Personman G3 G3a\n\n57) wil: T R1 B1 B2\n\n58) Personman: Build R1 Personman\n\n59) wil: S Y1 G2\nM R3 B2 G3a\n\n60) Personman: Build R3 G3a\n\n61) wil: A R3 G3a\n\n62) Personman: Move R1 Personman G3a\nCatastrophe G3a R\n\n63) wil: M R1 G2 G3\n\n64) Personman: Sacrifice G1 Personman\nBuild Y1 B2a\n\twil: Can't let you have that queen\n\twil: Was a valid response thou\n\n65) wil: S B1 B2\nT Y1 B1 G3\n\n66) Personman: Build G1 Personman\n\n67) wil: B Y1 G3\n\n68) Personman: Trade Y2 G2 B2a\n\n69) wil: B B2 G3\n\n70) Personman: Discover B1 Personman G3 G3a\n\n71) wil: M R3 Wil B2a\n\twil: Dooms day machine almost complete\n\n72) Personman: Sacrifice G2 B2a\nBuild B2 G3a\nBuild B3 G3a\n\n73) wil: S Y2 G3\nM B1 G3 G2\nM B1 G2 G3a\nC G3a B\n\twil: Doomsday machine ready ready to lunch\n\n74) Personman: Discover Y1 B2a G3 G3a\n\n75) wil: B Y2 G3\n\n76) Personman: Trade Y3 B3 Personman\n\n77) wil: B B1 G3\n\n78) Personman: Build Y2 G3a\n\n79) wil: B Y3 G3\n\twil: I should have just stuck to the plan\n\n80) Personman: Sacrifice Y2 G3a\nMove Y1 G3a B2a\nMove Y1 B2a G3\nCatastrophe G3 Y\n\n81) wil: Sacrifice Y3 G2\nMove B2 G3 Personman\nMove B1 G3 Personman\nDiscover R3 B2a Y3 Y3\nCatastrophe Personman B\n\n\twil: I didn't want to blow up your entire civilization anyway...some of them must be useful for our future colonies...\n\tDraw5PlayAll: I wish SDG supported star abbreviations. Then opponents could simply use "Draw5" and I can type the first three letters of their name. Of course, then UserGuy5713 discovers a star and calls it UserGuy5714....\n\tDraw5PlayAll: I like the direct names when it makes it easy to know that yes I want to go to a G2 star system and I do not have to remember if it was "out" or "Kermit" or "dagobah" or "treehouse"... the view for entering comments shows little of the actual battle on my screen.\n\tPersonman: gg! that opening with the yellows was quite something. i can't believe i clung to life for so long :)\n\twil: thanx for the game...challenge anytime..I like playing\n\nHomeworlds Online (SDG# 31716)\nVariants: "Unrated"\nStarted: 2017.3.17, Ended: 2017.4.1\nParticipants: RedMerlin (S), wil (N)\nWinner: wil\n\n1) wil: H B3 R1 G3\n\n2) RedMerlin: Homeworld Y1 B2 G3\n\n3) wil: B G1 Wil\n\n4) RedMerlin: Build G1 Redmerlin\n\n5) wil: T G1 Y1 Wil\n\n6) RedMerlin: Trade G1 Y1 Redmerlin\n\twil: The building phase...\n\tDraw5PlayAll: Less diverse than chess...\n\n7) wil: B Y2 Wil\n\n8) RedMerlin: Build Y2 Redmerlin\n\n9) wil: B Y2 Wil\n\n10) RedMerlin: Discover Y1 Redmerlin B3 B3\n\n11) wil: T Y1 R1 Wil\n\n12) RedMerlin: Build G1 Redmerlin\n\n13) wil: B R1 Wil\n\n14) RedMerlin: Trade Y2 R2 Redmerlin\n\n15) wil: D Y2 Wil B2 B2\n\n16) RedMerlin: Build R2 Redmerlin\n\n17) wil: M R1 Wil B2\n\n18) RedMerlin: Trade G1 B1 Redmerlin\n\n19) wil: S G3 Wil\nB R2 B2\nB R3 B2\nB R3 Wil\n\n20) RedMerlin: Trade R2 Y2 Redmerlin\n\n21) wil: M R3 B2 B3\n\n22) RedMerlin: Sacrifice Y1 B3\nPass\n\n23) wil: T R3 G3 Wil\n\tRedMerlin: Quick! Scuttle the ship!\n\tRedMerlin: You will never take us alive!\n\n24) RedMerlin: Build G1 Redmerlin\n\n25) wil: S G3 Wil\nB R2 B2\nB R3 B3\nB R3 Wil\n\n26) RedMerlin: Build G1 Redmerlin\n\twil: The royal armada is ready to visit!\n\tRedMerlin: Crapppp.....\n\n27) wil: T R1 G1 B2\n\tRedMerlin: I don't even know what else I can do right now...!\n\twil: You will be well taken care if under the new regime.\n\n28) RedMerlin: Discover G1 Redmerlin Y3 Y3\n\tRedMerlin: Sure...\n\n29) wil: M R2 B2 Y3\n\n30) RedMerlin: Build G2 Redmerlin\n\n31) wil: A G1 Y3\n\twil: A g1 y3\n\n32) RedMerlin: Build R1 Redmerlin\n\n33) wil: Move G1 Y3 Redmerlin\nCatastrophe Redmerlin G\n\n34) RedMerlin: Trade R1 G1 Redmerlin\n\tRedMerlin: Welp... \n\n35) wil: S Y2 B2\nM R3 B3 Redmerlin\nM G1 B2 B3\n\twil: only way to learn that one is the hardway...any time you get three in a system...look around...and then don't let it last long \n\n36) RedMerlin: Pass\n\tRedMerlin: Yep...\n\n37) wil: S R3 Wil\nA G1 Redmerlin\nA R2 Redmerlin\nA B1 Redmerlin\n\n38) RedMerlin: Pass\n\twil: Your people will be well taken care of...if those yellow bellies want to run away...so be it\n\tRedMerlin: Awe! "You may not cause your own elmination. You must ensure you control at least one ship in your home system at the end of your turn."\n\n39) wil: A Y2 Redmerlin\n\twil: Well then, welcome to the revolution\n\n\nHomeworlds Online (SDG# 31669)\nStarted: 2017.3.18, Ended: 2017.4.23\nParticipants: Personman (S), Laurie_Menke (N)\nWinner: Personman\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi Personman! It was good to meet you at PAX East! :)\n\n2) Personman: Homeworld Y1 B2 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) Personman: Build G1 Personman\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) Personman: Trade G1 R1 Personman\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) Personman: Build G1 Personman\n\n9) Laurie_Menke: Discover G1 Laurie_menke Y2 Yeller\n\n10) Personman: Trade G1 Y1 Personman\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) Personman: Build Y1 Personman\n\n13) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n14) Personman: Discover Y1 Personman G3 Grainy\n\n15) Laurie_Menke: Build Y2 Laurie_menke\n\n16) Personman: Build Y2 Grainy\n\n17) Laurie_Menke: Discover Y2 Laurie_menke G2 Green\n\n18) Personman: Build Y3 Personman\n\tLaurie_Menke: Oops... sorry... gotta back up....\n\n19) Laurie_Menke: Sacrifice G1 Yeller\nBuild Y2 Green\n\n20) Personman: Trade Y3 R3 Personman\n\n21) Laurie_Menke: Discover Y2 Green G1 Lime\n\n22) Personman: Trade Y1 B1 Personman\n\n23) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\n24) Personman: Build G1 Personman\n\n25) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y1 Lime\nBuild Y3 Green\nBuild G2 Laurie_menke\n\n26) Personman: Move Y2 Grainy Green\n\n27) Laurie_Menke: Move Y3 Green Grainy\n\n28) Personman: Sacrifice R1 Personman\nAttack Y2 Green\n\n29) Laurie_Menke: Discover Y1 Lime G3 Forest\n\n30) Personman: Build G2 Personman\n\n31) Laurie_Menke: Build Y3 Forest\n\n32) Personman: Trade G1 B1 Personman\n\n33) Laurie_Menke: Trade G2 B2 Laurie_menke\n\n34) Personman: Move B1 Personman Grainy\n\n35) Laurie_Menke: Build G1 Laurie_menke\n\n36) Personman: Build R1 Personman\n\n37) Laurie_Menke: Build G2 Laurie_menke\n\n38) Personman: Discover R1 Personman B3 Blimp\n\n39) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack B1 Grainy\n\n40) Personman: Sacrifice R1 Blimp\nAttack B1 Grainy\n\n41) Laurie_Menke: Trade G2 R2 Laurie_menke\n\n42) Personman: Discover Y1 Grainy G2 Gurney\n\n43) Laurie_Menke: Move Y2 Lime Gurney\n\n44) Personman: Discover Y1 Gurney G1 Grumpy\n\n45) Laurie_Menke: Move B2 Laurie_menke Gurney\n\n46) Personman: Build R1 Personman\n\n47) Laurie_Menke: Move B2 Gurney Forest\n\n48) Personman: Discover Y2 Green B3 Blur\n\n49) Laurie_Menke: Build B2 Forest\n\n50) Personman: Move R3 Personman Blur\n\n51) Laurie_Menke: Build R1 Laurie_menke\n\n52) Personman: Sacrifice G3 Personman\nBuild G3 Personman\nBuild R1 Personman\nBuild R2 Blur\n\n53) Laurie_Menke: Move R1 Laurie_menke Gurney\n\n54) Personman: Sacrifice Y2 Green\nMove R3 Blur Gurney\nMove R3 Gurney Laurie_menke\n\n55) Laurie_Menke: Build R2 Laurie_menke\n\n56) Personman: Sacrifice R2 Blur\nAttack G1 Laurie_menke\nAttack G1 Laurie_menke\n\n57) Laurie_Menke: Move Y2 Gurney Laurie_menke\n\n58) Personman: Attack R2 Laurie_menke\n\n59) Laurie_Menke: Sacrifice R2 Laurie_menke\nAttack R2 Laurie_menke\nAttack G1 Laurie_menke\n\n60) Personman: Attack R2 Laurie_menke\n\tLaurie_Menke: This is not looking good...\n\n61) Laurie_Menke: Sacrifice Y3 Grainy\nMove Y1 Forest Personman\nMove B2 Forest Personman\nMove B2 Forest Personman\nCatastrophe Personman B\n\n62) Personman: Sacrifice R2 Laurie_menke\nAttack Y2 Laurie_menke\nAttack G1 Laurie_menke\n\n\tLaurie_Menke: At least I went down fighting. :) Congratulations! Well played! Thanks for the fun! Challenge me to anything anytime!\n\tPersonman: Good game, and thanks! I'll definitely take you up on that :)\n\nHomeworlds Online (SDG# 31315)\nVariants: "Unrated"\nStarted: 2017.3.18, Ended: 2017.5.8\nParticipants: wil (S), Draw5PlayAll (W), Laurie_Menke (N), w00t (E)\nWinner: wil\n\n1) Laurie_Menke: Homeworld B3 Y1 G3\n\tLaurie_Menke: Hi Everyone! Just checking... if I understand correctly, if either Draw5PlayAll or I win, it's a win for our team, and the same goes for w00t and wil. Yes? Anything else I need to understand? It's been a looooong time since I played a 4-player game!\n\n2) wil: H R3 G2 B3\n\tDraw5PlayAll: Yes, I think so. However, if w00t does not show up to play, then we have to make it a regular no teams 3P game.\r\n\r\nI hate it when games start without me knowing... especially since I did not even get the notice that there was a chat message!\n\tLaurie_Menke: Huh... that's weird about you not getting notified. Sorry!\n\tLaurie_Menke: Hmmm... it does look like w00t is AWOL. Shall we give up on this game?\n\tDraw5PlayAll: AWOL??\r\n\r\nJust force a surrender and play it as a standard 3P game with extra pieces.\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tDraw5PlayAll: On second thought, perhaps we should annul this and issue another challenge.\n\tDraw5PlayAll: I added another challenge. I put Felix in it since I needed someone else to challenge (and he came to mind first), and making it open causes the game to start a month after the challenge is issued.\n\tDraw5PlayAll: If you two want to duel it out, fine.\n\tLaurie_Menke: Your choice, wil!\n\twil: Wow... We will never empty this bank and no way to ever freeze anyone out of an economy!! What a challenge?\n\n4) wil: Build B1 Wil\n\tDraw5PlayAll: Just discover 4 systems...\n\tLaurie_Menke: Yeah, I hadn't thought about that... probably not worth playing. Agreed? Should I terminate?\n\n5) Laurie_Menke: Discover G1 Laurie_menke Y2 Bank\n\twil: can't terminate an experiment\n\n6) wil: Build B1 Wil\n\tDraw5PlayAll: Wil, I issued a new teams challenge and you are the only one not to respond... why?\n\tLaurie_Menke: LOL... then we shall experiment away! :)\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) wil: T B1 R1 Wil\n\n9) Laurie_Menke: Discover G1 Laurie_menke B2 Blue\n\n10) wil: B B1 Wil\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) wil: T B1 Y1 Wil\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\n14) wil: Trade B1 G1 Wil\n\n15) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n16) wil: D G1 Wil Y1 Y1\n\n17) Laurie_Menke: Build R1 Laurie_menke\n\n18) wil: B Y1 Wil\n\n19) Laurie_Menke: Trade G1 Y1 Blue\n\n20) wil: Build Y2 Wil\n\n21) Laurie_Menke: Discover Y1 Blue G1 Green\n\tLaurie_Menke: Oh, man... did I almost do that again... with this many pieces!?! I will NOT let you freeze me out of an economy... I will not let you freeze me out of an economy... (my new mantra). ;)\n\n22) wil: M Y2 Wil Green\n\twil: should always be...\n\n23) Laurie_Menke: Build Y2 Green\n\n24) wil: B Y2 Green\n\n25) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n26) wil: Build Y2 Wil\nCatastrophe Green Y\n\n27) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\tLaurie_Menke: LOL!\n\n28) wil: D Y1 Wil G1 G1\n\n29) Laurie_Menke: Discover Y1 Laurie_menke G2 G2\n\twil: I'll teach you not to take advantage of blatant mistakes\r\n\n\tLaurie_Menke: Dang it... I actually WANTED you to do that, but now I can't remember why. ::sigh::\n\n30) wil: B Y2 Wil\n\n31) Laurie_Menke: Build Y2 G2\n\tDraw5PlayAll: What?\n\tLaurie_Menke: What's the problem?\n\twil: Idk.. Fat fingers?\n\tLaurie_Menke: LOL!\n\n32) wil: B Y2 G1\n\n33) Laurie_Menke: Sacrifice Y2 G2\nMove Y1 G2 G1\nMove Y1 G1 Wil\nCatastrophe Wil Y\n\n34) wil: Build Y1 G1\n\n35) Laurie_Menke: Trade B1 Y1 Laurie_menke\n\n36) wil: B B1 Wil\n\n37) Laurie_Menke: Discover Y1 Laurie_menke G2 G2\n\n38) wil: S B1 Wil\nT Y1 B1 G1\n\n39) Laurie_Menke: Build G1 Laurie_menke\n\n40) wil: B B1 G1\n\n41) Laurie_Menke: Build R1 Laurie_menke\n\n42) wil: Build R1 Wil\n\n43) Laurie_Menke: Move R1 Laurie_menke Bank\n\n44) wil: M Y2 G1 Bank\n\n45) Laurie_Menke: Move R1 Bank Y1\n\n46) wil: S R1 Wil\nA R1N Y1\n\n47) Laurie_Menke: Discover G1 Bank R1 R1\n\n48) wil: M Y2 Bank R1\n\n49) Laurie_Menke: Build Y1 G2\n\tLaurie_Menke: Grrrr... ;)\n\n50) wil: A G1N R1\n\twil: It wasn't a donation?\r\n\n\n51) Laurie_Menke: Discover Y1 G2 R1 Red\n\twil: It appears the bank is empty...and despite Tue hostel looking environment, I think I see welcoming life.\n\n52) wil: B Y2 G1\n\n53) Laurie_Menke: Build Y2 G2\n\n54) wil: B Y2 R1\n\n55) Laurie_Menke: Move Y2 G2 Y1\n\n56) wil: D R1 Y1 B2 B2\n\n57) Laurie_Menke: Build R2 Laurie_menke\n\n58) wil: S G1 Y1\nB R2 B2\n\n59) Laurie_Menke: Move R2 Laurie_menke G2\n\n60) wil: M Y2 R1 B2\n\n61) Laurie_Menke: Build R2 G2\n\n62) wil: D Y1 G1 G2 Geetoo\n\n63) Laurie_Menke: Move R2 G2 Y1\n\n64) wil: T R2 G2 B2\n\n65) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild R2 Y1\n\n66) wil: Sacrifice Y1 Geetoo\nMove R1 Wil G1\n\n67) Laurie_Menke: Sacrifice Y2 Y1\nMove R2 Y1 Wil\nMove R2 Y1 Wil\n\n68) wil: B R2 G1\n\n69) Laurie_Menke: Build R2 Wil\nCatastrophe Wil R\n\n70) wil: B R2 B2\n\n71) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: I am probably counting my chickens waaaayyyy too soon, but I think I may have you! That'd be a first!\n\tDraw5PlayAll: How do you plan to get the green?\n\n72) wil: B G1 B2\n\tLaurie_Menke: For me to know and you to find out! ;)\n\n73) Laurie_Menke: Move G1 Laurie_menke B2\n\tDraw5PlayAll: My question was rhetorical.\n\n74) wil: A G1N B2\n\tLaurie_Menke: :)\n\n75) Laurie_Menke: Build G1 Laurie_menke\n\n76) wil: S Y2 R1\nM G1 B2 Laurie_menke\nM G1 B2 Laurie_menke\nC Laurie_menke G\n\n77) Laurie_Menke: Move Y1 Red Wil\n\n78) wil: M G2 B2 Laurie_menke\n\n79) Laurie_Menke: Build Y1 Wil\n\n80) wil: S R2 G1\nA R1N Laurie_menke\nA Y1N Wil\n\twil: You had me and let me go\n\twil: I think that is it.\n\tLaurie_Menke: Awww, man! I hate when I do stupid things. ::sigh::\n\tLaurie_Menke: Well played, as always, wil! Congrats on the win! :D\n\n\nHomeworlds Online (SDG# 31701)\nVariants: "Unrated, Hard time"\nStarted: 2017.3.19, Ended: 2017.3.26\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) wil: H B3 Y1 G3\n\tDraw5PlayAll: I found a loophole... I think...\n\twil: What...you want me to pass? Like second seat do ya?\n\n3) Draw5PlayAll: Homeworld B2 R1 G3\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\twil: Ah, the emporers favorite opening\n\n6) wil: T G1 R1 Wil\n\tDraw5PlayAll: I thought he was indifferent about B1+R2 and R1+B2 unless one of the stars was already taken.\n\twil: Yez, br banker\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) wil: B R1 Wil\n\tDraw5PlayAll: Well, the loophole is that I can never lose by just repeatedly passing over and over... I think...\n\twil: Start another game, test your theory\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: Two can play at that game.\n\n10) wil: D R1 Wil R2 R2\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) wil: S G3 Wil\nB R2 R2\nB R2 Wil\nB R3 Wil\n\n13) Draw5PlayAll: Trade G3 R3 Draw5playall\n\n14) wil: T R3 G3 Wil\n\n15) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n16) wil: T R2 Y2 Wil\n\n17) Draw5PlayAll: Build Y2 Draw5playall\n\n18) wil: M Y2 Wil R2\n\n19) Draw5PlayAll: D Y2 Draw5playall G3 G3\n\n20) wil: D R2 R2 Y3 Y3\n\n21) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 G3\n\n22) wil: S G3 Wil\nB Y3 R2\nB R2 R2\nB R3 Wil\n\n23) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n24) wil: T R3 G3 Wil\n\n25) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade Y3 R3 G3\n\n26) wil: Sacrifice Y3 R2\nMove R1 R2 Y3\nMove R1 Y3 Draw5playall\nMove R2 Y3 Draw5playall\nCatastrophe Draw5playall R\n\n27) Draw5PlayAll: Move R3 G3 Draw5playall\n\n28) wil: Build G1 Wil\n\tDraw5PlayAll: Thought so\n\n29) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\tDraw5PlayAll: As the empire is in ruins we are working on a planet sized white flag though we are not ready to use it.\n\n30) wil: T G1 B1 Wil\n\twil: I really am liking the renovations, we are planning on coming over for a visit.\n\n31) Draw5PlayAll: Build R1 Draw5playall\n\twil: There was a valid reason to blast a wormhole..\n\n32) wil: B G1 Wil\n\twil: And he almost lost it due to lack of thought!\n\n33) Draw5PlayAll: Build G1 Draw5playall\n\n34) wil: B G2 Wil\n\n35) Draw5PlayAll: Sac Y2 G3\nMove G1 Draw5playall Wil\nCatastrophe Wil Green\nMove R3 Draw5playall Wil\n\n36) wil: M R2 R2 Wil\n\tDraw5PlayAll: There was a long period of time (at least eight months) when you never logged on to SDG at all... why, and what made now your time to come back?\n\twil: I just got busy.. Or lazy.. But I've told a lit if people with arcade that this is the best place to learn homeworlds... Come here and play a lot,.lose repeatedly and learn attacks and.counters withe every loss\n\twil: I thought I should be here...\n\n37) Draw5PlayAll: Attack R2 Wil\n\n38) wil: T B1 R1 Wil\nC Wil R\n\tDraw5PlayAll: Never resign!\n\twil: Nice!\n\n\twil: We warped into a new galaxy unknown to this format... Good capitalization of my errors!!!\n\tDraw5PlayAll: I wonder what would happen if you could make a move action and go to a single star, then we start again with that as your homeworld...\n\twil: no...when you lose your homeworld you lose all control of your ships throughout the galaxy, they are reliant on the constant signal from home...\n\nHomeworlds Online (SDG# 31717)\nVariants: "Unrated"\nStarted: 2017.3.19, Ended: 2017.3.27\nParticipants: wil (S), Laurie_Menke (N)\nWinner: wil\n\n1) Laurie_Menke: Homeworld B2 R1 G3\n\tLaurie_Menke: Hi wil! :) You wanna beat me at a game of Homeworlds?\n\n2) wil: H Y3 B1 G3\n\twil: If you insist.\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: :)\n\n4) wil: B G1 Wil\n\tLaurie_Menke: I doubt I have much choice... but I'll do my best!\n\tLaurie_Menke: I doubt I have much choice... but I'll do my best!\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) wil: T G1 B1 Wil\n\n7) Laurie_Menke: Build Y1 Laurie_menke\n\twil: Andy hates this move.\n\tLaurie_Menke: Why? Because you didn't make a happy system?\n\tLaurie_Menke: Or maybe because you're forcing me to either trade and give you the b2 or not trade and be edged out of the economy?\n\tLaurie_Menke: Well, two can play that game! ;)\n\n8) wil: B B1 Wil\n\n9) Laurie_Menke: Build G1 Laurie_menke\n\twil: Unless I am wrong...you are a step ahead to the twos, but a step behind to the threes.. That is this game\n\tLaurie_Menke: I have no idea what you just said... LOL!\n\n10) wil: D B1 Wil R2 R2\n\tLaurie_Menke: Please explain more and I will read it in the morning... I'm off to bed. G'night, wil! :)\n\n11) Laurie_Menke: Discover G1 Laurie_menke Y3 C3po\n\n12) wil: B B2 Wil\n\n13) Laurie_Menke: Discover Y1 Laurie_menke R3 D2\n\n14) wil: D B1 Wil Y2 Y2\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) wil: S G3 Wil\nB B2 R2\nB B3 Y2\nB B3 Wil\n\n17) Laurie_Menke: Trade G3 B3 Laurie_menke\n\n18) wil: S B2 R2\nT B3 G3 Wil\nT B3 Y3 Y2\n\n19) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: You suck. ;) ;) ;)\n\n20) wil: S G3 Wil\nB B2 R2\nB B3 Y2\nB B3 Wil\n\n21) Laurie_Menke: Build G2 C3po\n\twil: I love queen factories\n\tLaurie_Menke: I have never seen one before, but having now experienced it... I didn't love it so much! ;)\n\n22) wil: S B2 R2\nT B3 G3 Y2\nT B3 G3 Wil\n\n23) Laurie_Menke: Trade B3 G3 Laurie_menke\n\tLaurie_Menke: OK, so I concede that you will win this eventually... would you rather play it out or have me end it?\n\tLaurie_Menke: Heading to bed for now... let me know which you prefer. Sweet dreams!\n\tLaurie_Menke: So do you want me to Resign or keep playing this one?\n\tLaurie_Menke: Maybe you're not seeing these messages because it's not your turn...\n\n24) wil: B G2 Wil\n\n25) Laurie_Menke: Move Y1 Laurie_menke D2\n\n26) wil: S G3 Wil\nB G2 Y2\nB G3 Wil\nB B2 R2\n\n27) Laurie_Menke: Sacrifice Y1 D2\nMove G1 Laurie_menke D2\n\twil: Whatever you'd like... I just like to play...\n\n28) wil: S G3 Wil\nB B3 Wil\nB B3 R2\nB B3 Y2\n\n29) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n30) wil: T B3 R3 Y2\n\n31) Laurie_Menke: Build Y1 D2\n\n32) wil: M R3 Y2 D2\n\n33) Laurie_Menke: Discover G2 C3po Y2 Y2too\n\n34) wil: A G1 D2\n\n35) Laurie_Menke: Discover Y1 D2 Y2 Y2three\n\n36) wil: M G3 Y2 C3po\n\n37) Laurie_Menke: Move G2 Y2too Wil\n\n38) wil: T B3 R3 Wil\n\n39) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G1 Wil\nBuild R1 Laurie_menke\nBuild Y1 Y2three\n\n40) wil: S Y3 Y2\nM R3 Wil Y2\nM R3 Y2 D2\nM R3 D2 Laurie_menke\nC Laurie_menke R\n\tLaurie_Menke: Thanks for the fun, wil! :)\n\n\nHomeworlds Online (SDG# 31799)\nVariants: "Hard time"\nStarted: 2017.3.24, Ended: 2017.3.27\nParticipants: goulo (S), Draw5PlayAll (N)\nWinner: goulo\n\n1) Draw5PlayAll: Pass\n\n2) goulo: Homeworld R3 B2 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) goulo: Build G1 Goulo\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\n10) goulo: Build Y1 Goulo\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) goulo: Build Y2 Goulo\n\n13) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n14) goulo: Discover Y1 Goulo G1 Verdeto\n\n15) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n16) goulo: Build G2 Goulo\n\n17) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n18) goulo: Discover G1 Goulo Y1 Flaveto\n\n19) Draw5PlayAll: Build G2 Draw5playall\n\n20) goulo: Sacrifice G3 Goulo\nBuild G3 Flaveto\nBuild G3 Goulo\nBuild Y2 Goulo\n\n21) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G2\n\n22) goulo: Sacrifice G2 Goulo\nBuild Y3 Verdeto\nBuild Y3 Verdeto\n\n23) Draw5PlayAll: Move Y2 Draw5playall G2\n\n24) goulo: Move Y3 Verdeto B2\n\n25) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n26) goulo: Trade Y2 R2 Goulo\n\n27) Draw5PlayAll: Build G2 Draw5playall\n\n28) goulo: Sacrifice G3 Flaveto\nBuild G2 Flaveto\nBuild G3 Goulo\nBuild Y2 B2\n\n29) Draw5PlayAll: Discover R2 Draw5playall B2 B2a\n\n30) goulo: Move Y3 Verdeto B2a\n\n31) Draw5PlayAll: Discover Y3 Draw5playall R2 R2\n\n32) goulo: Sacrifice R2 Goulo\nAttack R2 B2a\nAttack G1 B2\n\n33) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n34) goulo: Sacrifice G3 Goulo\nBuild R1 B2a\nBuild G2 B2\nBuild G3 Goulo\n\n35) Draw5PlayAll: Build B1 G2\n\n36) goulo: Trade G1 R1 B2\n\n37) Draw5PlayAll: Discover B1 G2 G1 G1\n\n38) goulo: Sacrifice Y3 B2\nMove R1 B2 Draw5playall\nMove R1 B2a Draw5playall\nMove Y3 B2a Draw5playall\nCatastrophe Draw5playall R\n\n\tDraw5PlayAll: Good game\n\tgoulo: thanks for the game!\n\nHomeworlds Online (SDG# 31747)\nVariants: "Unrated"\nStarted: 2017.3.25, Ended: 2017.3.26\nParticipants: Draw5PlayAll (S), Laurie_Menke (N)\nWinner: Draw5PlayAll\n\n1) Laurie_Menke: Homeworld Y1 B3 G3\n\tLaurie_Menke: Have a good time! :)\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) Laurie_Menke: Build R2 Laurie_menke\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n11) Laurie_Menke: Discover R2 Laurie_menke G2 Green\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) Laurie_Menke: Sacrifice Y3 Laurie_menke\nDiscover R2 Green Y3 Temporary\nMove R2 Temporary Draw5playall\nCatastrophe Draw5playall R\nPass\n\n14) Draw5PlayAll: Move Y2 Draw5playall Laurie_menke\n\tLaurie_Menke: That was probably stupid, but it was exciting! ;)\n\n15) Laurie_Menke: Trade R1 G1 Laurie_menke\n\n16) Draw5PlayAll: Trade Y2 R2 Laurie_menke\n\n17) Laurie_Menke: Build G1 Laurie_menke\n\n18) Draw5PlayAll: Attack G1 Laurie_menke\n\n19) Laurie_Menke: Build G1 Laurie_menke\n\n\tLaurie_Menke: Alright, so I tanked that game stupidly. Sorry. If you'd like to try again, feel free to challenge me. Congrats on the win! :)\n\tDraw5PlayAll: Oh I see, you resigned while I tried to call catastrophe.\n\tLaurie_Menke: Sorry... didn't mean to confuse you!\n\nHomeworlds Online (SDG# 31609)\nStarted: 2017.3.26, Ended: 2017.3.30\nParticipants: Ottia (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H G1 Y2 B3\n\tOttia: Hiya Rey! I still haven't got tons of time to play anything but I thought we could at least get one single game going, especially one with such a learning curve...\r\n\r\n...fatherhood is fantastic. I need more time to elaborate on it properly...\n\tMobyNostromo: Hey Antonio! I'm glad you're enjoying being a father. I'm finally teaching my daughter Spanish; she is doing very well in English and Korean but knows very little Spanish. She's slowly picking up individual words. With all the languages you know, your child will easily become a polyglot!\n\n2) Ottia: Homeworld G3 B2 Y3\n\tMobyNostromo: I forgot: have you played this game before? I'm almost brand new.\n\n3) MobyNostromo: B B1 Mobynostromo\n\tOttia: I played it once aaaaages ago. It seems like a deep, rewarding game... one of those you can play your whole lifetime. I would like to learn to play it properly - since you had an open invitation and we already have a way of "cracking games open" together it was quite an easy decision...\r\n\r\n...that said, I barely remember a thing about it.\n\tOttia: As far as Melissa's languages are concerned, we will try at first to raise her bilingual (EN, ES)... German will come afterwards and then whatever she wants to learn; we could help her in French and Italian but if she wants to start with something else, then welcome... the more the merrier! For years and years Eleanor (my wife) and I have had the temptation to start learning Japanese but never quite found the time for it...\n\tDraw5PlayAll: You do realize the chat and games are public, right?\n\tMobyNostromo: Nice!! I was not kidding when I used the word, polyglot, and now I know there was no exaggeration on my part. I used to know a little Japanese, but it's mostly gone. Fascinating to learn a language that has no ties whatsoever to your own.\r\n\n\tMobyNostromo: Let's crack this game open!!\n\n\tOttia: Thanks to Draw5PlayAll to point that out. I'm fine with everyone reading what I've written so far but I'll definitely follow your advice and move the conversation elsewhere. For the time being, I'll start another game.\n\tOttia: (for pointing that out, I mean... little sleep, slow brain)\n\nHomeworlds Online (SDG# 31782)\nStarted: 2017.3.27, Ended: 2017.5.16\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) Felix: Homeworld B2 R3 G3\n\n3) ts52: Build G1 Ts52\n\n4) Felix: Build G1 Felix\n\tts52: Sorry for the delay. Thanks for being patient.\n\tFelix: No problem! I've never been one to be impatient about turns on here.\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Discover B2 Ts52 G2 Kermit\n\n10) Felix: Trade B2 Y2 Felix\n\n11) ts52: Build G1 Ts52\n\n12) Felix: Build G1 Felix\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) Felix: Discover B1 Felix G1 Out\n\tts52: Apparently I'm no longer getting notification emails from SDG. I'll try to remember to check once a day, but if you notice me lagging, feel free to nugde me at tim.seiger@gmail.com.\n\tFelix: Yeah, they're making some changes to the system, I think.\r\n\r\nWill do!\n\n15) ts52: Move Y1 Ts52 Kermit\n\tts52: That would explain things.\n\n16) Felix: Build Y1 Felix\n\tFelix: I believe the developer is working on a "2.0" version of the website, as well.\n\n17) ts52: Move B1 Ts52 Kermit\n\n18) Felix: Discover G1 Felix R1 Rot\n\n19) ts52: Trade B1 R1 Kermit\n\n20) Felix: Trade Y1 R1 Felix\n\n21) ts52: Build R2 Kermit\n\n22) Felix: Build R2 Felix\n\n23) ts52: Move R2 Kermit Out\n\n24) Felix: Trade R2 B2 Felix\n\n25) ts52: Attack B1 Out\n\n26) Felix: Build Y1 Felix\n\n27) ts52: Build B1 Out\n\n28) Felix: Move B2 Felix Rot\n\n29) ts52: Build B3 Out\n\n30) Felix: Build B3 Rot\n\n31) ts52: Build B3 Kermit\n\n32) Felix: Trade B3 Y3 Rot\n\tts52: Phew. Just made it under the wire. Sorry for not checking in at all last week.\n\tFelix: Welcome back! I hope your vacation was lovely.\n\tFelix: No worries if you can't make it. I don't think Hard Time is turned on, is it? I won't force end the game unless the system does it for me.\n\n33) ts52: Trade B3 Y3 Out\n\n34) Felix: Build B3 Rot\n\tts52: It was, thanks. Hectic, but lovely. \n\n35) ts52: Build B3 Out\n\n36) Felix: Sacrifice Y2 Felix\nMove B2 Rot Kermit\nMove B2 Kermit Out\nCatastrophe Out Blue\n\n37) ts52: Build R2 Out\n\n38) Felix: Discover R1 Felix G1 G1\n\n39) ts52: Build G2 Ts52\n\n40) Felix: Build G2 Felix\n\n41) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Out\nBuild R3 Kermit\n\n42) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Rot\nBuild R3 G1\n\n43) ts52: Move R3 Kermit Ts52\n\n44) Felix: Sacrifice G3 Rot\nBuild G3 Rot\nBuild Y1 Rot\nBuild B1 Rot\n\n45) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild Y2 Out\n\n46) Felix: Discover B3 Rot Y2 Ritz\n\n47) ts52: Move B2 Kermit Out\n\n48) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B1 Ritz\nBuild B2 Rot\n\n49) ts52: Build B3 Out\n\n50) Felix: Move G1 Rot Ritz\n\n51) ts52: Sacrifice Y1 Kermit\nDiscover B3 Kermit Y1 Bigbird\n\n52) Felix: Sacrifice G2 Felix\nBuild G2 Ritz\nPass\n\n53) ts52: Move B2 Out Felix\n\tFelix: You'll have me shortly :)\n\n54) Felix: Sacrifice Y3 Rot\nMove R1 G1 Ritz\nMove R1 Ritz Out\nMove G1 Ritz Ts52\nCatastrophe Out Red\n\tts52: I think so. But I try to never count on it.\n\n55) ts52: Sacrifice G3 Ts52\nBuild R1 Kermit\nBuild R2 Kermit\nBuild Y3 Kermit\n\tFelix: Desperate times...\n\n56) Felix: Build G3 Ts52\n\n57) ts52: Attack G3 Ts52\n\tFelix: Nicely done!\n\n58) Felix: Sacrifice G2 Ritz\nBuild G2 Ts52\nBuild R2 G1\nCatastrophe Ts52 Green\n\n59) ts52: Move R2 Kermit Bigbird\n\n60) Felix: Move G3 Rot Kermit\n\n61) ts52: Sacrifice Y2 Kermit\nMove R1 Kermit Out\nDiscover R1 Kermit G1 Robin\n\n62) Felix: Sacrifice R2 G1\nAttack Y3 Kermit\nAttack B2 Felix\n\n63) ts52: Sacrifice Y2 Out\nMove B3 Out Felix\nMove B3 Bigbird Felix\nCatastrophe Felix Blue\n\n64) Felix: Sacrifice G3 Felix\nPass\nPass\nPass\n\n65) ts52: Sacrifice Y3 Out\nMove R1 Out Felix\nMove R1 Robin Felix\nMove R2 Bigbird Felix\nCatastrophe Felix Red\n\tFelix: You've got me again. nicely done!\n\tts52: Thanks. That was a good game. I look forward to our next! :)\n\n\nHomeworlds Online (SDG# 31821)\nStarted: 2017.3.27, Ended: 2017.4.19\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Two B3 stars? I will have the last one.\n\n4) Felix: Build G1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tFelix: Good luck with that :P\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Felix: Build G1 Felix\n\n9) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n10) Felix: Discover G1 Felix B1 Lanayru\n\tDraw5PlayAll: "Engage."\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) Felix: Build G2 Felix\n\n13) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B2\nBuild G2 Draw5playall\nBuild G3 Draw5playall\n\n14) Felix: Build G3 Lanayru\n\n15) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n16) Felix: Trade G1 Y1 Lanayru\n\n17) Draw5PlayAll: Move Y1 Draw5playall B2\n\n18) Felix: Trade G2 R2 Felix\n\n19) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 B2\n\n20) Felix: Build Y3 Lanayru\n\n21) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n22) Felix: Build R1 Felix\n\n23) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n24) Felix: Trade Y1 B1 Lanayru\n\n25) Draw5PlayAll: Trade Y1 R1 B2\n\n26) Felix: Move R2 Felix Lanayru\n\n27) Draw5PlayAll: Discover R2 Draw5playall Y2 Y2\n\n28) Felix: Build G1 Lanayru\n\n29) Draw5PlayAll: Sacrifice G2 B2\nBuild R2 B2\nBuild R3 Y2\n\n30) Felix: Build R3 Lanayru\n\n31) Draw5PlayAll: Trade R2 Y2 B2\n\n32) Felix: Discover R3 Lanayru B2 Ridge\n\n33) Draw5PlayAll: Build G2 B2\n\n34) Felix: Build G2 Felix\n\n35) Draw5PlayAll: Build Y1 Draw5playall\n\n36) Felix: Move G3 Lanayru Ridge\n\n37) Draw5PlayAll: Sacrifice B2 Draw5playall\nTrade R3 B3 Y2\nTrade G2 B2 B2\n\n38) Felix: Discover B1 Lanayru G2 Steamer\n\n39) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild B1 Y2\n\n40) Felix: Sacrifice G3 Felix\nBuild R2 Lanayru\nBuild R3 Ridge\nBuild R3 Felix\n\n41) Draw5PlayAll: Move R1 B2 Draw5playall\n\tDraw5PlayAll: This bluebird potential is risky.\n\n42) Felix: Build Y1 Lanayru\n\tFelix: Risky risky!\n\tDraw5PlayAll: Ironically, this seems to be the only move.\n\n43) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n44) Felix: Discover G1 Lanayru Y3 Y3\n\tFelix: Way to recognize and defend.\n\tDraw5PlayAll: But... how did you get ALL the R3s?\n\n45) Draw5PlayAll: Move R2 Y2 Y3\n\n46) Felix: Sacrifice G1 Y3\nBuild G1 Ridge\n\tFelix: Same way you got all the B3s ;)\n\tDraw5PlayAll: No, one of the B3s is in your home and one is in mine.\n\n47) Draw5PlayAll: Move R2 Y3 B2\n\tFelix: I know. You got all the available B3s.\n\tFelix: By which I mean the one :)\n\n48) Felix: Move R2 Lanayru Steamer\n\n49) Draw5PlayAll: Build Y3 Draw5playall\n\n50) Felix: S Y3 Lanayru\nM R2 Steamer Draw5playall\nM R3 Ridge Draw5playall\nM G3 Ridge Draw5playall\nC Draw5playall Red\n\n\tFelix: Prepare to meet thy doom.\n\tDraw5PlayAll: I see.\n\tFelix: Good game and well played! I had to really think hard there at the end.\n\tDraw5PlayAll: Where did I go wrong? Large pieces? R3s?\n\nHomeworlds Online (SDG# 31613)\nVariants: "Hard time"\nStarted: 2017.3.29, Ended: 2017.4.1\nParticipants: wil (S), Felix (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 31816)\nStarted: 2017.3.30, Ended: 2017.9.21\nParticipants: Ottia (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B2 G1 Y3\n\n2) Ottia: Homeworld G1 Y2 B3\n\tMobyNostromo: Hello again. I too wasn't thinking about our conversation being open. It's so natural to chat here without having to email or go on BGG. Thanks for sharing, regardless. \n\n3) MobyNostromo: B Y1 Mobynostromo\n\tMobyNostromo: Let's talk at BGG or by email! Pick the one you like.\n\n4) Ottia: Build B1 Ottia\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Ottia: Trade B1 Y1 Ottia\n\n7) MobyNostromo: D Y1 Mobynostromo Y3 Yellow Giant\n\n8) Ottia: Discover Y1 Ottia R3 Blackgarlic\n\tMobyNostromo: I'll respond to your BGG message soon; I've been a little crazy myself.\r\n\n\n9) MobyNostromo: D Y1 Mobynostromo G3 Green Beans\n\n10) Ottia: Build B1 Ottia\n\n11) MobyNostromo: B Y2 Mobynostromo\n\n12) Ottia: Move B1 Ottia Blackgarlic\n\n13) MobyNostromo: T Y2 G2 Mobynostromo\n\n14) Ottia: Build B1 Ottia\n\n15) MobyNostromo: B G1 Mobynostromo\n\n16) Ottia: Trade B3 Y3 Ottia\n\n17) MobyNostromo: D G1 Mobynostromo R3 Gazpacho\n\n18) Ottia: Discover Y3 Ottia G3 Rawginger\n\n19) MobyNostromo: B G2 Mobynostromo\n\n20) Ottia: Build Y2 Rawginger\n\n21) MobyNostromo: M G2 Mobynostromo Yellow\n\n22) Ottia: Build B1 Ottia\n\n23) MobyNostromo: B G2 Yellow\n\n24) Ottia: Discover Y2 Rawginger Y2 Galiamelon\n\n25) MobyNostromo: B G3 Gazpacho\n\n26) Ottia: Move B1 Ottia Rawginger\n\n27) MobyNostromo: D G2 Yellow R1 Kimchi\n\n28) Ottia: Discover B1 Rawginger R1 Tulsitea\n\n29) MobyNostromo: T G2 B2 Mobynostromo\n\n30) Ottia: Build B2 Ottia\n\n31) MobyNostromo: D B2 Mobynostromo R3 Redbeans\n\n32) Ottia: Trade B2 G2 Ottia\n\n33) MobyNostromo: M Y1 Yellow Kimchi\n\n34) Ottia: Build B2 Ottia\n\n35) MobyNostromo: S G2 Yellow\nB Y3 Mobynostromo\nBuild G2 Kimchi\n\n36) Ottia: Move B1 Ottia Rawginger\n\n37) MobyNostromo: S Y3 Mobynostromo\nM G2 Kimchi Gazpacho\nM G2 Gazpacho Ottia\nM G1 Gazpacho Ottia\nC Ottia G\n\n\tOttia: Hiya Rey! I'm sorry to cancel things so abruptly but I can't find the time to play while taking proper care of the household and of work. I'm happy to stay in touch on BGG - I will reply to your message very soon, I'm very thankful for it. Sorry again - I hope I can play again soon.\n\tMobyNostromo: No problem, buddy. I understand. I was there in a similar place.\n\nHomeworlds Online (SDG# 31841)\nVariants: "Unrated"\nStarted: 2017.4.1, Ended: 2017.6.3\nParticipants: wil (S), Laurie_Menke (W), Draw5PlayAll (N), Felix (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Felix: Homeworld R2 B1 G3\n\tDraw5PlayAll: All right, good luck -- not just in the usual sense but that this time the game gets played.\r\n\r\nThe teams appear to have worked out as such: Felix and wil are on one team, me and Laurie on the other. If either member of the team wins then it is a win for both.\n\n3) wil: Homeworld Y2 B1 G3\n\twil: Laurie and I\n\twil: Not a change of teams...it is just that I never get to correct others English! (And am probably wrong anyway\n\twil: But team strategy...interesting...\r\n\n\twil: Current actual concern with teams...the setup looks like I am going to be south?? So ES plays two moves, the WN plays to moves?\n\twil: Should make for lots of catastrophes...\n\twil: My homeworld choice is dependent on who my partner is at this point...it looks like I should be with d5pA\n\twil: I am playing just to ping the board... If I am not felix's partner I'd like to change this move.\n\twil: I am willing to play side by side if that is how it works...just to see if it will be as awful as I suspect.\n\n4) Laurie_Menke: Homeworld Y3 B2 G3\n\tDraw5PlayAll: I believe I stated that we were doing 1+4 vs 2+3, to mitigate the first turn advantage.\n\tDraw5PlayAll: Therefore according to that rule wil is teamed up with Felix.\n\tLaurie_Menke: OK... so all that said, I'm going to go ahead and play. But I do see wil's point. It'll be interesting to see how this turns out! Have fun, everyone!\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Felix: Build G1 Felix\n\tDraw5PlayAll: And really, 1+3 vs 2+4 has the same flaw... often 2 can do nothing to stop 1+3 from killing 4.\n\tLaurie_Menke: Yeah, I can see that, too.\n\tFelix: Yeah, this should be interesting...\n\n7) wil: B G1 Wil\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\twil: So...no table talk? At all? Or no table talk in private messages only within the game for all to see?\n\tDraw5PlayAll: Private messages are fine\n\tLaurie_Menke: Interesting...\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: I have received none so far.\n\n10) Felix: Build G2 Felix\n\n11) wil: T G1 B1 Wil\n\twil: Team Strategy on fleek eh?\n\n12) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n13) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n14) Felix: Trade G1 B1 Felix\n\n15) wil: B B2 Wil\n\n16) Laurie_Menke: Build B2 Laurie_menke\n\twil: So to declarify a loop hole in the rules...if my partner knocks me out... I win.\n\tDraw5PlayAll: No, you win by being the last survivor. So your partner has to knock both opponents, as well as you, out for your statement to work.\n\tFelix: @wil Hahaha, our team strategy is SO on fleek!\n\twil: err...scuse me sir...d5pA... you made the rules.. \r\n\r\n "If either member of the team wins then it is a win for both."\n\tDraw5PlayAll: This is not a Sinister match... normally in a 4P game you win by being the LAST survivor... not just by killing 1 empire.\n\n17) Draw5PlayAll: Trade G1 R1 Draw5playall\n\twil: I gotcha... I'm just a binary guy... I think I may have seen one entire game of four player.. jumped in due to the partner thang\n\n18) Felix: Build B2 Felix\n\n19) wil: Discover B2 Wil Y3 Whynot\n\n20) Laurie_Menke: Discover B2 Laurie_menke G1 Metoo\n\n21) Draw5PlayAll: Build Y1 Draw5playall\n\n22) Felix: Trade G2 Y2 Felix\n\n23) wil: B G1 Wil\n\n24) Laurie_Menke: Build G1 Laurie_menke\n\n25) Draw5PlayAll: Discover Y1 Draw5playall G2 G2\n\n26) Felix: Discover B2 Felix Y3 Latetotheparty\n\n27) wil: S G3 Wil\nB B2 Whynot\nB B3 Whynot\nB B3 Wil\n\n28) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild B3 Laurie_menke\nBuild B3 Metoo\nBuild G1 Laurie_menke\n\n29) Draw5PlayAll: Build Y1 Draw5playall\n\n30) Felix: Sacrifice Y2 Felix\nMove B2 Latetotheparty Metoo\nMove B2 Metoo Laurie_menke\nCatastrophe Laurie_menke Blue\n\tDraw5PlayAll: Hey, I wanted a blue system!\n\n31) wil: T B3 R3 Whynot\n\tLaurie_Menke: Sorry... you'll get your chance, I'm sure.\n\n32) Laurie_Menke: Trade B2 Y2 Metoo\n\tFelix: Taking one for the team here, wil!\n\n33) Draw5PlayAll: Build Y1 Draw5playall\n\n34) Felix: Build G1 Felix\n\tLaurie_Menke: Alas... I screwed up, but couldn't undo it, so hoped that you wouldn't see it. But you did. :/ Sorry, Draw5PlayAll!\n\n35) wil: T B1 R1 Wil\n\n36) Laurie_Menke: Move B3 Metoo Laurie_menke\n\n37) Draw5PlayAll: Build G2 Draw5playall\n\n38) Felix: Trade G1 Y1 Felix\n\n39) wil: M B2 Whynot G2\n\n40) Laurie_Menke: Build Y2 Metoo\n\n41) Draw5PlayAll: Discover Y1 Draw5playall G2 G2a\n\n42) Felix: Trade B1 R1 Felix\n\n43) wil: S R1 Wil\nA Y1N G2\n\n44) Laurie_Menke: Build B1 Laurie_menke\n\n45) Draw5PlayAll: Build Y2 G2a\n\n46) Felix: Build Y2 Felix\n\n47) wil: Build Y3 G2\n\n48) Laurie_Menke: Sacrifice Y2 Metoo\nMove B3 Laurie_menke Wil\nMove B1 Laurie_menke Wil\nCatastrophe Wil B\n\n49) Draw5PlayAll: Discover Y1 G2a B3 B3\n\n50) Felix: Move Y2 Felix B3\n\tLaurie_Menke: Well, this is a bit of a suicide mission, but we're takin' you down, wil! ;) I'll take care of the blue, and the Draw5PlayAll has a bunch of ways to finish you off in another couple turns. :)\n\n51) wil: M R3 Whynot Wil\n\n52) Laurie_Menke: Move Y2 Metoo Wil\n\n53) Draw5PlayAll: Sacrifice Y2 G2a\nMove Y1 Draw5playall Wil\nMove Y1 B3 Wil\nCatastrophe Wil Yellow\n\tFelix: Uh oh...\n\n54) Felix: Sacrifice Y2 B3\nMove G3 Felix Whynot\nMove G3 Whynot G2\n\tLaurie_Menke: D5PA... notice that you are directly connected to wil now...\n\n55) Laurie_Menke: Discover G1 Laurie_menke B2 B2\n\n56) Draw5PlayAll: Move G2 Draw5playall G2\n\n57) Felix: Sacrifice G3 G2\nBuild R1 Felix\nBuild Y1 Felix\nBuild Y1 Felix\n\tLaurie_Menke: Bye wil. :( Well done Draw5PlayAll! :)\n\tLaurie_Menke: Interesting... wil's pieces weren't removed...\n\n58) Laurie_Menke: Trade G1 R1 B2\n\tDraw5PlayAll: Laurie... I have an idea, please consider undoing that move and instead going to the G2 system\n\tDraw5PlayAll: If you do then I can send in MY green, and blow up Felix's only large.\n\tLaurie_Menke: OK, I undid just to have time to check with folks. That's a great idea, Draw5PlayAll... sorry I didn't see it! Felix and wil... would you rather I play my original move and take the game closer to its close, or would you rather have the challenge of our team playing its best option and seeing what happens next?\n\tDraw5PlayAll: I think they are a little biased... they want Felix not to lose like this!\n\tLaurie_Menke: Agreed, and he should win (or at least have a better chance at it) since I made a stupid mistake. What I'm asking is whether they would prefer to keep the game going by having me undo, or continue the game as it is (and most likely, but not definitely, win).\n\tLaurie_Menke: Well, since neither have answered, I think I will leave the move as it was. It was a bad mistake, and I apologize, Draw5PlayAll. But I don't feel right backing up on a multi-player game without the other players' consent.\n\n59) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack B2S G2\n\n60) Felix: Trade Y1 G1 Felix\n\tFelix: I would have been fine with it if you took back the move, but I didn't see this message until now!\n\n61) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: ::sigh:: Oh well. It's just a game! Sorry for messing up so much!\n\n62) Draw5PlayAll: Trade G2 R2 G2\n\tLaurie_Menke: Actually, I still think we're going to win this thing, Draw5PlayAll. :) Whatever you do, don't give up your G3 & G2. They're going to be the keys to winning.\n\n63) Felix: Build G1 Felix\n\tDraw5PlayAll: How much time do I have to raid before I need moves?\n\n64) Laurie_Menke: Move G1 Laurie_menke B2\n\tLaurie_Menke: I don't know... it's always best to be as efficient as possible in Homeworlds.\n\n65) Draw5PlayAll: Attack Y1S G2\n\n66) Felix: Discover R1 Felix G3 G3\n\n67) Laurie_Menke: Trade G1 Y1 B2\n\n68) Draw5PlayAll: Build Y2 Draw5playall\n\n69) Felix: Move Y1 Felix G3\n\n70) Laurie_Menke: Move R1 B2 Laurie_menke\n\n71) Draw5PlayAll: Sacrifice Y2 Draw5playall\nD B2 G2 Y3 Y3\nMove B2 Y3 Felix\n\n72) Felix: Build Y2 Felix\n\n73) Laurie_Menke: Build R1 Laurie_menke\n\n74) Draw5PlayAll: Attack Y2E Felix\n\tDraw5PlayAll: Now or never, use it or lose it..,\n\n75) Felix: Pass\n\n76) Laurie_Menke: Move R1 Laurie_menke Felix\n\n77) Draw5PlayAll: Attack G1E Felix\n\n78) Felix: Build Y2 Felix\n\n79) Laurie_Menke: Move R1 Laurie_menke Felix\nCatastrophe Felix Red\n\tFelix: Huh. Just wanted to see if you could do that.\n\tDraw5PlayAll: But why?\n\n80) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 Felix\nBuild Y2 Felix\nBuild G1 Felix\nCatastrophe Felix Green\nCatastrophe Felix Yellow\n\n\nHomeworlds Online (SDG# 31842)\nVariants: "Hard time"\nStarted: 2017.4.3, Ended: 2017.4.11\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tFelix: Hey, it's been a while since you were active. Best of luck!\n\twil: have fun!\n\n3) Felix: Build G1 Felix\n\n4) wil: Build G1 Wil\n\n5) Felix: Trade G1 B1 Felix\n\n6) wil: Trade G1 B1 Wil\n\n7) Felix: Build B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: Trade B2 Y2 Felix\n\n10) wil: Trade B1 R1 Wil\n\n11) Felix: Build Y1 Felix\n\n12) wil: Build R1 Wil\n\n13) Felix: Build Y1 Felix\n\n14) wil: Build R2 Wil\n\n15) Felix: Trade Y2 R2 Felix\n\n16) wil: D R1 Wil B2 B2\n\n17) Felix: Discover Y1 Felix B3 Rim\n\n18) wil: D R2 Wil Y2 Y2\n\n19) Felix: Build G1 Felix\n\n20) wil: M R2 Y2 Rim\n\n21) Felix: Move G3 Felix Rim\n\n22) wil: S G3 Wil\nB R2 Wil\nB R3 Wil\nB R3 B2\n\n23) Felix: Build R3 Felix\n\n24) wil: T R2 Y2 Wil\n\n25) Felix: Sacrifice R2 Felix\nAttack R2 Rim\nPass\n\n26) wil: T R1 G1 Wil\n\n27) Felix: Build Y1 Rim\n\n28) wil: T R3 G3 B2\n\n29) Felix: Build Y2 Felix\n\n30) wil: M Y2 Wil B2\n\n31) Felix: Discover Y1 Rim G2 Range\n\n32) wil: B R1 Wil\n\twil: B r1 wil\n\n33) Felix: Sacrifice G3 Rim\nBuild Y2 Range\nBuild Y3 Rim\nBuild Y3 Felix\n\twil: First gotta place order in right box, then you have to type correctly\n\tFelix: hahaha\n\n34) wil: B R2 B2\n\n35) Felix: Discover B1 Felix G3 Rhino\n\n36) wil: M R2 B2 Rhino\n\n37) Felix: Move Y3 Felix Rhino\n\n38) wil: D B2 Wil G2 G2\n\twil: I'm gonna make good moves in the ladder game\n\twil: I'm gonna make good moves in the ladder game\n\twil: And sayanara to oroductivity\n\n39) Felix: Sacrifice R2 Rim\nAttack R2 Rhino\nPass\n\n40) wil: B R2 B2\n\tFelix: Sayonara, indeed. And don't worry - I've been really letting my strategy in this game slip. I tend to rush my moves lately.\n\twil: I eagerly await your mistakes\n\n41) Felix: Build B1 Rhino\n\n42) wil: D R2 B2 B3 B3\n\n43) Felix: Build B3 Rhino\n\tFelix: Well, nice move!\n\n44) wil: B G1 B2\n\n45) Felix: Sacrifice Y2 Felix\nMove B1 Rhino Range\nDiscover Y1 Rim Y2 Ricket\n\twil: I had a good walk...\n\n46) wil: Sacrifice G3 B2\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 B2\n\twil: nice job!\n\n47) Felix: Sacrifice Y3 Rhino\nMove Y1 Range Wil\nMove Y2 Range Wil\nMove Y1 Ricket Wil\n\twil: I suppose a distraction won't work.\r\n\n\tFelix: A distraction? Where?!\n\n48) wil: S G3 Wil\nB G3 Wil\nB Y2 B2\nB Y3 B2\nC Wil Y\n\n49) Felix: Sacrifice Y3 Rim\nMove B1 Range Wil\nMove B1 Rhino Wil\nMove B3 Rhino Wil\nCatastrophe Wil Blue\n\tFelix: Ah, it worked! I totally messed up and then totally forgot to catastrophe.\n\tFelix: That's what I get for being overeager.\n\tDraw5PlayAll: At least wil cannot prevent it next turn.\n\n\twil: Doomsday machine...Exactly how I lost to Andy last night.. Nice \n\tFelix: Good game though! Did you play against Andy Looney last night? Cool!\n\tFelix: I'd love to get the chance to play against him.\n\twil: Ya gotta catch him...and get that medal!\n\tFelix: How did you play him? In person, or on here?\n\twil: I met Andy before I met homeworlds... we play regularly, friend and neighbor.\n\twil: He, like most of us, get driven crazy by the format of the ships in the blocks and the orientation of the blocks in relation to connection between star systems..\n\twil: and since he is now giving away medals for beating him, I suspect he won't be playing the medal competition games online even if an improved system is built....but who knows...\n\tFelix: Ah, very cool that you are friends and neighbors! I have played far more games on here than with actual pyramids, so I've gotten used to the format, but I definitely prefer the real deal!\n\tDraw5PlayAll: Yeah, I am not sure if there is an easy way to make the formatting better... the blocks and the 5x5 grids are just so much easier to code...\n\twil: I have friends playing with the virtual reality, might be we will be able to play live games moving pieces around space.\n\tDraw5PlayAll: That seems a bit of a stretch. But tell me when I can say "Computer, freeze program!" and have it work.\n\tDraw5PlayAll: And about the format... I got my Homeworlds start from here... I have played fewer than a dozen IRL games. \n\nHomeworlds Online (SDG# 31902)\nStarted: 2017.5.5, Ended: 2017.5.6\nParticipants: lockedlake (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 Y2 G3\n\n\nHomeworlds Online (SDG# 31966)\nStarted: 2017.5.5, Ended: 2017.5.6\nParticipants: ts52 (S), lockedlake (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 31970)\nStarted: 2017.5.6, Ended: 2017.5.22\nParticipants: panglott (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) panglott: Homeworld B3 G1 Y3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) panglott: Build Y1 Panglott\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) panglott: Trade Y3 G3 Panglott\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) panglott: Build Y1 Panglott\n\n9) Draw5PlayAll: Build Y2 Draw5playall\n\n10) panglott: Build G1 Panglott\n\n11) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover G1 Draw5playall Y2 Y2\nMove G1 Y2 Panglott\nCatastrophe Panglott Green\n\n12) panglott: Trade Y1 G1 Panglott\n\tDraw5PlayAll: Take that! And that! And...\n\tpanglott: Hoo boy.\n\n13) Draw5PlayAll: Build G1 Draw5playall\n\n14) panglott: Build G1 Panglott\n\n15) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n16) panglott: Discover G1 Panglott Y1 Ulzad\n\n17) Draw5PlayAll: Build Y2 Draw5playall\n\n18) panglott: Build Y2 Panglott\n\n19) Draw5PlayAll: Discover Y2 Draw5playall G2 G2\n\n20) panglott: Trade Y2 B2 Panglott\n\tDraw5PlayAll: This is way harder than I expected.\n\n21) Draw5PlayAll: Move R1 Draw5playall G2\n\n22) panglott: Build Y2 Panglott\n\n23) Draw5PlayAll: Build R1 G2\n\n24) panglott: Move Y2 Panglott Ulzad\n\n25) Draw5PlayAll: Move Y2 G2 Panglott\n\n26) panglott: Trade B2 R2 Panglott\n\n27) Draw5PlayAll: Sac R1 G2\nAttack R2 Panglott\n\n28) panglott: Build Y2 Ulzad\n\n29) Draw5PlayAll: Sacrifice R2 Panglott\nAttack G1 Panglott\nAttack Y1 Panglott\n\tpanglott: Thanks for the game ;)\n\tDraw5PlayAll: Yeah, I kept thinking you would get a large and make the fight a lot harder...\r\n\r\nI did not realize my rating was already 1750.\n\n\nHomeworlds Online (SDG# 32141)\nVariants: "Hard time"\nStarted: 2017.5.7, Ended: 2017.5.10\nParticipants: goulo (S), mneme (N)\nWinner: goulo\n\n\nHomeworlds Online (SDG# 32149)\nVariants: "Hard time"\nStarted: 2017.5.9, Ended: 2017.5.12\nParticipants: Subhan64 (S), Aristos (N)\nWinner: Aristos\n\n1) Aristos: Homeworld B3 R2 G3\n\n\tAristos: Ping! (Because some times I've observed that superdupergames doesn't send emails for the first move.)\n\nHomeworlds Online (SDG# 32120)\nStarted: 2017.5.10, Ended: 2017.11.7\nParticipants: MobyNostromo (S), Joe_Hill (N)\nWinner: MobyNostromo\n\n1) Joe_Hill: Homeworld B2 R1 G3\n\tJoe_Hill: Hiya!\n\tJoe_Hill: It's been a while since I played this. Very interested in this game, but it has a steep learning curve.\n\tJoe_Hill: The amount of spectators always cracks me up...\n\n2) MobyNostromo: H G1 B2 Y3\n\tMobyNostromo: Yeah, I was noticing - it brings the game all the way down to the bottom of the page. :)\n\n3) Joe_Hill: Build G1 Joe_hill\n\tJoe_Hill: Probably more than half of them haven't even been on the site in years...\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Joe_Hill: Trade G1 Y1 Joe_hill\n\n6) MobyNostromo: T Y1 G1 Mobynostromo\n\n7) Joe_Hill: Build G1 Joe_hill\n\n8) MobyNostromo: B G2 Mobynostromo\n\n9) Joe_Hill: Build G2 Joe_hill\n\n10) MobyNostromo: D G2 Mobynostromo R3 Redgiant\n\n11) Joe_Hill: Discover G2 Joe_hill Y3 Pan\n\n12) MobyNostromo: D G1 Mobynostromo Y3 Yellowtriad\n\n13) Joe_Hill: Build G2 Pan\n\n14) MobyNostromo: B G3 Redgiant\n\n15) Joe_Hill: Trade G1 B1 Joe_hill\n\n16) MobyNostromo: B G1 Yellowtriad\n\n17) Joe_Hill: Move B1 Joe_hill Pan\n\n18) MobyNostromo: Build Y1 Mobynostromo\n\n19) Joe_Hill: Trade G2 R2 Pan\n\n20) MobyNostromo: D Y1 Mobynostromo G3 Earth\n\n21) Joe_Hill: Move R2 Pan Mobynostromo\n\n22) MobyNostromo: T Y3 R3 Mobynostromo\n\n23) Joe_Hill: Build G2 Pan\n\n24) MobyNostromo: M G1 Yellowtriad Mobynostromo\n\tJoe_Hill: well that's annoying.\n\tMobyNostromo: Oh boy.\n\tJoe_Hill: I basically concede that piece. WAsted move. Bummer!\r\n\n\n25) Joe_Hill: Trade G2 Y2 Pan\n\n26) MobyNostromo: A R2 Mobynostromo\n\tMobyNostromo: I know your frustration.\n\n27) Joe_Hill: Build G2 Pan\n\n28) MobyNostromo: Trade G1 Y1 Mobynostromo\n\n29) Joe_Hill: Trade G2 R2 Pan\n\n30) MobyNostromo: Build Y2 Mobynostromo\n\n31) Joe_Hill: Build G1 Joe_hill\n\n32) MobyNostromo: B G2 Yellowtriad\n\tJoe_Hill: I wish I had more opportunities to play this game face to face. I feel like I would have a better understanding of it.\n\tMobyNostromo: I know. That is also my life with just about every game I play - not enough face to face. This game in particular could slip you a sneaky one because there is just so much growing on the board.\n\tDraw5PlayAll: I have taught a few people... and I always win... never encountered anyone who already knew the game!\n\n33) Joe_Hill: Trade G3 R3 Joe_hill\n\n34) MobyNostromo: D Y2 Mobynostromo Y3 Bigbird\n\n35) Joe_Hill: Build Y2 Joe_hill\n\n36) MobyNostromo: D G2 Yellowtriad R2 D2\n\n37) Joe_Hill: Build R1 Pan\n\n38) MobyNostromo: M R3 Mobynostromo Pan\n\n39) Joe_Hill: Trade B1 R1 Pan\nCatastrophe Pan Red\n\n40) MobyNostromo: S G1 Yellowtriad\nB Y3 Mobynostromo\n\n41) Joe_Hill: Build G1 Pan\n\n42) MobyNostromo: B R1 Mobynostromo\n\n43) Joe_Hill: Trade Y1 B1 Joe_hill\n\n44) MobyNostromo: B Y1 Earth\n\n45) Joe_Hill: Move B1 Joe_hill Pan\n\n46) MobyNostromo: D Y1 Earth R2 Maul\n\n47) Joe_Hill: T G1 R1 Pan\n\n48) MobyNostromo: S Y2 Bigbird\nM Y1 Maul Pan\nM Y1 Mobynostromo Pan\nC Pan Y\n\n49) Joe_Hill: Build R1 Joe_hill\n\n50) MobyNostromo: S Y3 Mobynostromo\nM R2 Mobynostromo Earth\nM R2 Earth Joe_hill\nM Y1 Earth Mobynostromo\nC Joe_hill R\n\tJoe_Hill: damn...\n\n51) Joe_Hill: Build G1 Joe_hill\n\n52) MobyNostromo: Sacrifice G3 Redgiant\nBuild G2 D2\nBuild G3 D2\nBuild G3 Redgiant\n\n53) Joe_Hill: Trade G1 R1 Joe_hill\n\n54) MobyNostromo: B Y1 Mobynostromo\n\n55) Joe_Hill: Build G1 Joe_hill\n\n56) MobyNostromo: M Y1 Mobynostromo Redgiant\n\n57) Joe_Hill: Trade G1 Y1 Joe_hill\n\n58) MobyNostromo: B Y2 Mobynostromo\n\n59) Joe_Hill: Build G1 Joe_hill\n\n60) MobyNostromo: M G3 Redgiant Mobynostromo\n\n61) Joe_Hill: Discover G1 Joe_hill R1 Bill\n\n62) MobyNostromo: T G3 R3 Mobynostromo\n\n63) Joe_Hill: Build G3 Bill\n\n64) MobyNostromo: S G3 D2\nB G3 Redgiant\nB Y2 Redgiant\nB Y3 Mobynostromo\n\n65) Joe_Hill: Sacrifice Y2 Joe_hill\nMove Y1 Joe_hill Redgiant\nMove Y1 Redgiant Mobynostromo\nCatastrophe Mobynostromo Y\n\n66) MobyNostromo: S Y2 Redgiant\nM R3 Mobynostromo Redgiant\nM R3 Redgiant Joe_hill\n\n67) Joe_Hill: Build R2 Joe_hill\n\n68) MobyNostromo: A R2 Joe_hill\n\tJoe_Hill: i'm doomed.\n\n69) Joe_Hill: Build R2 Joe_hill\nCatastrophe Joe_hill R\n\n70) MobyNostromo: B R1 Mobynostromo\n\n71) Joe_Hill: B G3 Joe_hill\n\tMobyNostromo: See! You still have a chance!\n\n72) MobyNostromo: M G2 Redgiant Joe_hill\n\tJoe_Hill: Start fresh. Why not!\n\n73) Joe_Hill: T G3 R3 Joe_hill\n\n74) MobyNostromo: B G3 Redgiant\n\n75) Joe_Hill: B R2 Joe_hill\n\n76) MobyNostromo: T R1 Y1 Mobynostromo\n\n77) Joe_Hill: Attack G2 Joe_hill\n\n78) MobyNostromo: B Y1 Mobynostromo\n\n79) Joe_Hill: Trade R2 Y2 Joe_hill\n\tDraw5PlayAll: Close\n\tJoe_Hill: it's been an interesting game so far.\n\tMobyNostromo: Yes. Lots of ups and downs.\n\n80) MobyNostromo: M G3 Redgiant Mobynostromo\n\n81) Joe_Hill: Build Y2 Joe_hill\n\n82) MobyNostromo: T Y1 B1 Mobynostromo\n\n83) Joe_Hill: Trade G2 B2 Joe_hill\n\n84) MobyNostromo: M B1 Mobynostromo Redgiant\n\n85) Joe_Hill: Move Y2 Joe_hill Bill\n\n86) MobyNostromo: T G3 B3 Redgiant\n\n87) Joe_Hill: Move B2 Joe_hill Bill\n\n88) MobyNostromo: D B1 Redgiant Y1 Solar\n\n89) Joe_Hill: Build Y2 Joe_hill\n\n90) MobyNostromo: B Y3 Mobynostromo\n\n91) Joe_Hill: Discover G1 Bill Y3 Phil\n\n92) MobyNostromo: T Y1 B1 Redgiant\n\n93) Joe_Hill: Sacrifice Y2 Joe_hill\nMove G3 Bill Phil\nMove G3 Phil Mobynostromo\n\n94) MobyNostromo: S Y3 Mobynostromo\nM B1 Redgiant Joe_hill\nM B3 Redgiant Joe_hill\nM B1 Solar Joe_hill\nC Joe_hill B\n\tJoe_Hill: damn\n\tJoe_Hill: i think you got me.\n\n\tMobyNostromo: Thanks for the game, Joe. That was really exciting!\n\tJoe_Hill: yea, very good game. Thanks Moby\n\nHomeworlds Online (SDG# 32031)\nVariants: "Unrated"\nStarted: 2017.5.10, Ended: 2017.8.8\nParticipants: wil (S), Personman (N)\nWinner: wil\n\n1) Personman: Homeworld B3 Y1 G3\n\n2) wil: H B3 Y2 G3\n\n3) Personman: Build G1 Personman\n\n4) wil: B G1 Wil\n\n5) Personman: Trade G1 Y1 Personman\n\n6) wil: T G1 Y1 Wil\n\n7) Personman: Build Y2 Personman\n\n8) wil: B Y2 Wil\n\n9) Personman: Trade Y2 B2 Personman\n\n10) wil: D Y1 Wil G1 G1\n\n11) Personman: Build Y2 Personman\n\n12) wil: B Y3 G1\n\n13) Personman: Discover Y2 Personman G2 G2\n\n14) wil: M Y1 G1 G2\n\n15) Personman: Build G1 Personman\n\n16) wil: B Y3 G1\n\n17) Personman: Build Y3 G2\n\twil: Looks like you took. A little hiatus from this game...\n\n18) wil: M Y3 G1 G2\nC G2 Y\n\n19) Personman: Build B1 Personman\n\n20) wil: B Y1 G1\n\n21) Personman: Trade B1 R1 Personman\n\n22) wil: B Y2 G1\n\n23) Personman: Discover Y1 Personman G2 G2\n\n24) wil: B Y3 Wil\n\n25) Personman: Move Y1 G2 G1\nCatastrophe G1 Y\n\n26) wil: Discover Y2 Wil B1 B1\n\n27) Personman: Discover B2 Personman G2 G2\n\n28) wil: B G1 Wil\n\n29) Personman: Build B1 G2\n\n30) wil: T G1 B1 Wil\n\n31) Personman: Trade B1 Y1 G2\n\n32) wil: B G1 Wil\n\n33) Personman: Build R1 Personman\n\n34) wil: T G1 R1 Wil\n\n35) Personman: Trade R1 Y1 Personman\n\n36) wil: B G1 Wil\n\n37) Personman: Build Y2 Personman\n\n38) wil: D Y3 Wil G1 G1\n\n39) Personman: Trade Y1 B1 Personman\n\n40) wil: Move Y3 G1 G2\n\n41) Personman: Build B2 G2\n\n42) wil: D B1 Wil G1 G1\n\n43) Personman: Trade B2 G2 G2\n\n44) wil: B G2 Wil\n\n45) Personman: Build G3 Personman\n\n46) wil: S Y3 G2\nM G2 Wil B1\nM G2 B1 G2\nM G2 G2 Personman\nC Personman G\n\n\nHomeworlds Online (SDG# 32121)\nStarted: 2017.5.10, Ended: 2017.7.5\nParticipants: ts52 (S), Personman (N)\nWinner: ts52\n\n1) Personman: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Personman: Build G1 Personman\n\n4) ts52: Build G1 Ts52\n\n5) Personman: Trade G1 Y1 Personman\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Personman: Build Y2 Personman\n\n8) ts52: Build Y2 Ts52\n\n9) Personman: Trade Y2 B2 Personman\n\n10) ts52: Trade Y2 B2 Ts52\n\n11) Personman: Build Y2 Personman\n\n12) ts52: Build Y2 Ts52\n\n13) Personman: Discover Y2 Personman G2 G2\n\n14) ts52: Discover Y1 Ts52 G1 Kermit\n\n15) Personman: Build G1 Personman\n\n16) ts52: Move B2 Ts52 Kermit\n\n17) Personman: Trade G1 R1 Personman\n\n18) ts52: Trade Y2 R2 Ts52\n\n19) Personman: Build Y2 Personman\n\n20) ts52: Build Y2 Kermit\n\n21) Personman: Build Y3 G2\n\n22) ts52: Sacrifice Y2 Kermit\nMove Y1 Kermit G2\nMove Y1 G2 Personman\nCatastrophe Personman Yellow\n\tts52: I may regret this, but I can't resist\n\n23) Personman: Build G1 Personman\n\n24) ts52: Build B1 Kermit\n\n25) Personman: Move Y3 G2 Kermit\n\n26) ts52: Build G1 Ts52\n\n27) Personman: Build R1 Personman\n\n28) ts52: Discover G1 Ts52 Y1 Bigbird\n\n29) Personman: Sacrifice R1 Personman\nAttack B2 Kermit\n\n30) ts52: Build B1 Kermit\n\n31) Personman: Trade B2 R2 Kermit\n\n32) ts52: Build B1 Kermit\n\n33) Personman: Build B2 Personman\n\n34) ts52: Trade B1 Y1 Kermit\n\n35) Personman: Attack Y1 Kermit\n\n36) ts52: Build B1 Kermit\n\n37) Personman: Attack B1 Kermit\n\n38) ts52: Sacrifice B1 Kermit\nTrade G1 B1 Bigbird\n\n39) Personman: Attack B1 Kermit\n\n40) ts52: Move B1 Bigbird Personman\nCatastrophe Personman Blue\n\tts52: Good game sir. I look forward to our next.\n\n\nHomeworlds Online (SDG# 32153)\nVariants: "Hard time"\nStarted: 2017.5.11, Ended: 2017.5.15\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H Y2 B1 G3 Wil\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) wil: B G1 Wil\n\tFelix: I've never been able to get this opening to work successfully, but here goes.\n\twil: I have, love the attempts at a second start freeze out\n\n4) Felix: Build B1 Felix\n\n5) wil: B G1 Wil\n\n6) Felix: Trade B3 Y3 Felix\n\twil: The question is always...do I put.an end to it by trading for a b3? I think I can still catch up\n\n7) wil: D G1 Wil Y3 Y3\n\tFelix: That's the question! Let's experiment, shall we? I'd be interested to know if there's a reliable way to defeat the strategy.\n\tDraw5PlayAll: Inform me.\n\n8) Felix: Build B2 Felix\n\twil: The b3 trade like you just did with yellow would get me there....but I think my heading to g2s may even freeze you out of Gs unless you give up on a b freeze\n\n9) wil: B G1 Y3\n\tFelix: Hmm, true. I have the option of gunning for a complete blue freez-out, but that gives you the opportunity to make most of the green, and even then, I think you could get to one of the blues before I manage to get them all... I guess the main benefit of my start is that it gives me earlier access to 2-pip ships\n\n10) Felix: Discover B2 Felix B2 Range\n\n11) wil: T G3 B3 Wil\n\twil: Nixe\n\n12) Felix: Build B2 Felix\n\n13) wil: B B3 Wil\n\n14) Felix: Sacrifice Y3 Felix\nMove B2 Range Y3\nMove B2 Y3 Wil\nCatastrophe Wil Blue\nMove B2 Felix Wil\n\twil: No two games alike\n\n15) wil: B G2 Wil\n\tFelix: Indeed. It's why I love this game! The game Hive by Gen42 games has a similar phenomenon.\n\twil: Nice\n\n16) Felix: Trade B2 R2 Wil\n\n17) wil: B G2 Wil\n\n18) Felix: Attack G2 Wil\n\n19) wil: B G2 Wil\n\n20) Felix: Sacrifice R2 Wil\nPass\nPass\nCatastrophe Wil Green\n\twil: Ending in silliness\n\twil: Thx for the slaughter\n\tFelix: Silliness is fun. Thanks for allowing me to finally win with that odd blue opening!\n\twil: Letting you?!?!! \n\tDraw5PlayAll: I am just now trying it against ts52. I wonder what happens if the opponent picks a G1 or Y1 and you do a similar trick? (G1 = homeworld B2 G1 G3; Y1 = G2 Y1 Y3.)\r\n\r\nI think the green one would be more successful and yellow less, since they started with a yellow star anyway.\n\tFelix: @wil Trying to be gracious here ;)\r\n\r\n@draw5 Both of those would be less effective. The green is less effective because most opponents open with a green ship, so they will have access to green anyway and it doesn't really provide an advantage. The yellow version would be far too slow because you don't have any blue in your system so trading would be a pain.\n\twil: I've done the no blue...having to go out to a blue star to create... But this is always a nice balance.... The second player can take these risks some times.\n\tDraw5PlayAll: @Felix No, I was meaning what if they choose, e.g. G1B2 stars and Y3 ship. Or similarly Y1B2 stars and G3 ship.\n\n\nHomeworlds Online (SDG# 32017)\nVariants: "Unrated, Hard time"\nStarted: 2017.5.12, Ended: 2017.5.15\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: H B1 R2 G3\n\n2) dlwillson: H Y3 B2 G3\n\n3) wil: B G1 Wil\n\tdlwillson: Hi Wil! Good to play Homeworlds with you, again!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) wil: T G1 B1 Wil\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) wil: B B2 Wil\n\n8) dlwillson: Build B2 Dlwillson\n\n9) wil: T B1 Y1 Wil\n\n10) dlwillson: D B1 Dlwillson G1 Forest\n\n11) wil: B Y1 Wil\n\n12) dlwillson: B G1 Dlwillson\n\n13) wil: B Y1 Wil\n\n14) dlwillson: Sacrifice G3 Dlwillson\nB B1 Forest\nB B3 Forest\nB B3 Dlwillson\n\n15) wil: Build B3 Wil\n\n16) dlwillson: T B3 Y3 Forest\n\twil: lol....missed a bunch of opportunity there I did...wow\n\n17) wil: T B3 G3 Wil\n\tdlwillson: We're you going for blue control or yellow control?\n\tdlwillson: *Were\n\n18) dlwillson: B B3 Forest\n\twil: Going foR? I still just mostly take advantage of opportunity\n\twil: Going foR? I still just mostly take advantage of opportunity\n\n19) wil: Discover B2 Wil G3 G3\n\n20) dlwillson: T B1 R1 Forest\n\n21) wil: T Y1 R1 Wil\n\n22) dlwillson: B R1 Forest\n\n23) wil: B R2 Wil\n\n24) dlwillson: S Y3 Forest\nD R1 Forest Y3 Golden\nM B3 Forest Golden\nM R1 Golden Wil\nC Wil R\n\n25) wil: T Y1 B1 Wil\n\n26) dlwillson: T B3 Y3 Dlwillson\n\n27) wil: M B1 Wil Dlwillson\n\n28) dlwillson: S Y3 Dlwillson\nM B2 Dlwillson Wil\nM B1 Forest Golden\nM B3 Golden Wil\n\n29) wil: S G3 Wil\nB B3 Dlwillson\nB B3 Dlwillson\nP\nC Dlwillson B\n\n30) dlwillson: M B1 Golden Wil\nC Wil B\n\twil: There it doesn't look like a slaughter...but wish in saw that earliee\n\tdlwillson: Good game, Wil!\n\tdlwillson: Not much left of the board, is there?\n\twil: I think as rougue survivors of both worlds my barbarians have an advantage...we have more people and can adapt... You won WWV but how will you survive?\n\tdlwillson: :-)\r\n\r\nWould you like to play again? If so, I'll pick up your challenge again.\n\twil: Shore....anytime!!\n\n\nHomeworlds Online (SDG# 32162)\nStarted: 2017.5.12, Ended: 2017.6.1\nParticipants: Draw5PlayAll (S), ts52 (N)\nWinner: Draw5PlayAll\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\tDraw5PlayAll: I am so going to do it.\n\n3) ts52: Build G1 Ts52\n\tts52: Oh boy, here we go!\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) ts52: Discover G1 Ts52 B2 Gonzo\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) ts52: Build G1 Ts52\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) ts52: Build G1 Ts52\n\n10) Draw5PlayAll: Move B2 Draw5playall Gonzo\n\n11) ts52: Trade G1 Y1 Gonzo\n\n12) Draw5PlayAll: Build B2 Draw5playall\n\n13) ts52: Discover G1 Ts52 Y2 Bigbird\n\n14) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n15) ts52: Build G1 Bigbird\n\n16) Draw5PlayAll: Build B3 G2\n\n17) ts52: Build G2 Ts52\n\n18) Draw5PlayAll: Trade B3 R3 G2\n\n19) ts52: Trade G3 R3 Ts52\n\n20) Draw5PlayAll: Build B3 G2\n\n21) ts52: Trade G2 R2 Ts52\n\n22) Draw5PlayAll: Build R1 G2\n\n23) ts52: Build G2 Ts52\n\n24) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove R1 G2 Ts52\nMove R3 G2 Ts52\nCatastrophe Ts52 Red\nMove B3 G2 Ts52\n\n25) ts52: Move G1 Bigbird Draw5playall\n\n26) Draw5PlayAll: Trade B2 R2 Gonzo\n\n27) ts52: Move Y1 Gonzo Ts52\n\tts52: Yeah, that about does it. Maybe I should play more 'small universe' games.\n\n28) Draw5PlayAll: Sacrifice R2 Gonzo\nAttack G2 Ts52\nAttack Y1 Ts52\n\n29) ts52: Trade G1 R1 Draw5playall\n\tDraw5PlayAll: I think this is the correct way.\n\tDraw5PlayAll: This is actually not trivial. I have to play accurately or else you strike first.\n\tts52: Indeed.\n\n30) Draw5PlayAll: Sacrifice B2 G2\nTrade Y1 G1 Ts52\nTrade B3 G3 Ts52\nCatastrophe Ts52 Green\n\tts52: I don't think I had a way out of it, but just realized that move hands it to you. Well played.\n\tDraw5PlayAll: I am surprised my rating is nearly 1800! Good game.\n\n\nHomeworlds Online (SDG# 32176)\nVariants: "Hard time"\nStarted: 2017.5.14, Ended: 2017.6.4\nParticipants: MagicJohn (S), Subhan64 (N)\nWinner: MagicJohn\n\n1) Subhan64: Homeworld B1 Y2 G3\n\n2) MagicJohn: Homeworld Y2 B1 G3\n\n3) Subhan64: Build G1 Subhan64\n\tMagicJohn: Should make for a wide-open game......\n\tMagicJohn: Should make for a wide-open game......\n\tMagicJohn: Should make for a wide-open game......\n\tDraw5PlayAll: Should make for an epic fight over blue and possibly yellow...\n\n4) MagicJohn: Build G1 Magicjohn\n\n5) Subhan64: Trade G1 B1 Subhan64\n\n6) MagicJohn: Trade G1 Y1 Magicjohn\n\n7) Subhan64: Build G1 Subhan64\n\n8) MagicJohn: Build G1 Magicjohn\n\n\tMagicJohn: ?????\n\nHomeworlds Online (SDG# 32192)\nVariants: "Unrated, Hard time"\nStarted: 2017.5.16, Ended: 2017.5.25\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H B3 Y1 G3\n\n2) Felix: Homeworld B1 R2 G3\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Good luck and have fun :)\n\n4) Felix: Build G1 Felix\n\tdlwillson: You too! It's good to play Homeworlds with you again.\n\tFelix: Likewise! You've always been an enjoyable (and challenging) opponent\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) Felix: Trade G1 B1 Felix\n\n7) dlwillson: B B2 Dlwillson\n\n8) Felix: Build B2 Felix\n\n9) dlwillson: D B1 Dlwillson Y2 Golden\n\n10) Felix: Trade B1 Y1 Felix\n\n11) dlwillson: Build B1 Dlwillson\n\n12) Felix: Build Y1 Felix\n\n13) dlwillson: Discover B1 Dlwillson G2 Forest\n\n14) Felix: Discover Y1 Felix B3 Lapiz\n\n15) dlwillson: Build G1 Dlwillson\n\tdlwillson: Excellent move! I'll have to think.\r\nFastest SDG Homeworlds game, ever! :-)\n\n16) Felix: Sacrifice G3 Felix\nBuild Y2 Lapiz\nBuild Y2 Felix\nBuild Y3 Felix\n\n17) dlwillson: Build B2 Dlwillson\n\tFelix: Thanks! Then of course I took a long time to try to think of another excellent move :P This might be a bad idea...\n\n18) Felix: Discover B2 Felix G3 Nicetry\n\tdlwillson: Let's see what you do if I dare you...\n\n19) dlwillson: T B2 R2 Dlwillson\n\tFelix: I'm sorely tempted! But I think you would just move your G3 into my system immediately after and use my red star to overcome my ships before I could replace my Y3 with another large...\n\n20) Felix: Trade Y3 G3 Felix\n\tdlwillson: That's just exactly what I would've done!\n\n21) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Forest\nBuild B3 Golden\nBuild G1 Dlwillson\n\n22) Felix: Trade Y2 R2 Lapiz\n\n23) dlwillson: Trade B2 Y2 Forest\n\n24) Felix: Move Y2 Felix Nicetry\n\n25) dlwillson: Build Y3 Forest\n\tFelix: I just want all those nice pretty Y3s so badly...\n\n26) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Lapiz\nBuild B2 Nicetry\n\n27) dlwillson: Sacrifice Y2 Forest\nMove Y3 Forest Dlwillson\nMove B3 Golden Nicetry\n\tdlwillson: one for me and two for you and that, I think, will have to do\n\n28) Felix: Sacrifice Y2 Nicetry\nMove B2 Nicetry Golden\nMove B2 Nicetry Forest\n\tFelix: That will do I suppose!\n\n29) dlwillson: M B1 Golden Nicetry\n\n30) Felix: Move B2 Golden Dlwillson\n\tFelix: Scatter! Scatter!\n\n31) dlwillson: S B2 Dlwillson\nT Y3 R3 Dlwillson\nT B3 Y3 Nicetry\n\n32) Felix: Sacrifice B2 Dlwillson\nTrade Y3 G3 Felix\nTrade Y1 R1 Lapiz\n\n33) dlwillson: Build B2 Nicetry\n\n34) Felix: Move R2 Lapiz Forest\n\tFelix: Great move! I knew that attack was doomed to fail.\n\n35) dlwillson: D B1 Nicetry G2 Field\n\tdlwillson: Good game so far! Fun and fast!\n\tdlwillson: That was a really good attack. It cost me a lot to escape.\n\n36) Felix: Attack B1 Forest\n\tFelix: Thank you. I do like to keep the pressure on whenever possible, because I have found that if I let it become a resource management game (that is, a game dominated mostly by fleet building and denying pieces to the opponent), I usually lose. My hope is that pressuring the opponent to make rash decisions (or even better, choose between 2 potential threats) and hopefully make a mistake :)\n\tFelix: This has definitely been a fun one!\n\tDraw5PlayAll: "My hope is that pressuring the opponent to make rash decisions... and hopefully make a mistake" is awkwardly written.\n\n37) dlwillson: Build B2 Nicetry\n\tFelix: "My hope is that pressuring the opponent to make rash decisions will cause him or her to make a mistake."\n\tFelix: "My hope is that pressuring the opponent to make rash decisions will cause him or her to make a mistake."\n\n38) Felix: Trade B1 R1 Forest\n\n39) dlwillson: Move Y3 Nicetry Forest\n\tdlwillson: Homeworlds and Creative Writing. Awesome. :-)\n\n40) Felix: Sacrifice Y3 Lapiz\nMove R2 Forest Dlwillson\nMove R1 Forest Dlwillson\nMove B2 Forest Dlwillson\nCatastrophe Dlwillson Red\n\n41) dlwillson: Build B1 Nicetry\n\n42) Felix: Sacrifice G3 Felix\nBuild B3 Dlwillson\nBuild Y1 Felix\nBuild Y2 Felix\n\n43) dlwillson: S Y3 Forest\nM B2 Nicetry Field\nM B1 Field Dlwillson\nC Dlwillson B\nM B2 Field Dlwillson\n\tdlwillson: I think you're one short of a win, but I guess we'll see.\n\n44) Felix: Trade Y2 G2 Felix\n\tFelix: I think you're right, but it will be fun either way :)\r\n\n\tFelix: Hold on, I just thought of something. Let me make sure I want to do that :P\n\n45) dlwillson: B B1 Dlwillson\n\tFelix: Heck, let's try something even more fun...\n\n46) Felix: Build Y2 Felix\n\tdlwillson: I may have been mistaken. :-)\n\n47) dlwillson: Trade G1 R1 Dlwillson\n\n48) Felix: Move Y1 Felix Lapiz\n\tFelix: That's not at all what I expected (and secretly hoped) you'd do! And sorry to keep undoing. That time I typed in the wrong color!\n\tFelix: And nice use of the catastrophe during the turn instead of at the end. I'm so glad they opened up that feature, since it adds so much strategic depth. I often secretly hope that my opponent doesn't realize it's an option ;)\n\n49) dlwillson: B B2 Dlwillson\n\n50) Felix: Discover Y1 Felix B3 Soak\n\n51) dlwillson: B B3 Nicetry\n\tdlwillson: There's another thing that's a surprise. Home systems can be completely abandoned mid-turn without returning to the bank. You still have to be back by the end of the turn, though.\n\tdlwillson: I didn't do that this game, obviously. I did it in another game.\n\n52) Felix: Build G1 Felix\n\tdlwillson: Sorry about that. I suddenly realized I'd put myself in checkmate.\n\tFelix: Oh, interesting! I knew that was possible in the real game rules, but I didn't know it was implemented on here. I haven't had a situation yet where that's necessary, but I can see how it could be in a pinch. Thanks for the tip ;)\n\tFelix: And I honestly never have a problem with undoing if you catch yourself and want to change it before I make my next move \n\tFelix: Although in this case I would have preferred you to make the mistake :P\n\n53) dlwillson: T B3 Y3 Nicetry\n\n54) Felix: Sacrifice Y2 Felix\nMove Y1 Soak Dlwillson\nMove Y1 Lapiz Dlwillson\n\n55) dlwillson: M Y3 Nicetry Felix\n\tdlwillson: It seems like a bug to me. Where do you see it in the real rules?\n\tFelix: There's a line about it in the Andy Looney rules and also in the version on John Cooper's website.\r\n\r\nLooney rules: " It's OK to temporarily abandon your Homeworld as long as you have a ship there again by the time your turn is over."\r\n\r\nCooper rules: "You may temporarily abandon your Homeworld during your turn, as long as you own at least one ship in it at the end of your turn."\n\n56) Felix: Sacrifice G1 Felix\nBuild Y2 Dlwillson\nCatastrophe Dlwillson Yellow\n\tdlwillson: Huh. I've seen that rule, but I just now realized that I've been assuming that someone else needs to have a ship in the system to hold it down.\n\n\tFelix: Thank you! I was scared you'd notice the threat and trade for an R2 during one of the last few turns. That was a very fun and interesting game, especially when we both had zero large ships. I look forward to the next!\n\tdlwillson: Meanwhile I was scared you'd get a blue and go bowling.\n\tFelix: There were several ways I could have kept you on the wrong footing, I suppose. As ill conceived as my earlier attack was, it all worked out in the end :) I honestly hadn't planned beyond the initial attack.\n\nHomeworlds Online (SDG# 32171)\nStarted: 2017.5.16, Ended: 2017.6.21\nParticipants: ts52 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 R3 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\tFelix: Here we go again. Good luck!\n\tts52: Excellent! Good luck to you too!\n\n3) Felix: Build G1 Felix\n\tFelix: Thanks, I'll need it. You've been playing very well lately!\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 B1 Felix\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Felix: Build B2 Felix\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) Felix: Trade B1 Y1 Felix\n\n10) ts52: Build B1 Kermit\n\n11) Felix: D B2 Felix G2 Grassland\n\n12) ts52: Build G1 Ts52\n\n13) Felix: Build Y1 Felix\n\n14) ts52: Trade B1 Y1 Kermit\n\n15) Felix: Move Y1 Felix Grassland\n\n16) ts52: Build Y2 Kermit\n\n17) Felix: Build Y2 Grassland\n\n18) ts52: Build B1 Kermit\n\n19) Felix: Move Y1 Grassland Kermit\n\n20) ts52: Trade Y1 R1 Kermit\n\n21) Felix: Sacrifice G3 Felix\nBuild Y1 Kermit\nBuild Y2 Grassland\nBuild Y3 Felix\n\n22) ts52: Discover Y2 Kermit G2 Robin\n\n23) Felix: Build Y3 Grassland\n\n24) ts52: Attack Y1 Kermit\n\n25) Felix: Trade Y2 R2 Grassland\n\n26) ts52: Build Y2 Kermit\n\n27) Felix: Move Y2 Grassland Kermit\nCatastrophe Kermit Yellow\n\n28) ts52: Trade B1 Y1 Kermit\n\n29) Felix: Trade Y3 G3 Felix\n\n30) ts52: Build B1 Kermit\n\n31) Felix: Build B2 Grassland\n\n32) ts52: Move B1 Kermit Robin\n\n33) Felix: Move B2 Grassland Kermit\n\n34) ts52: Build B3 Kermit\n\n35) Felix: Build B3 Kermit\nCatastrophe Kermit Blue\n\n36) ts52: Build B1 Robin\n\n37) Felix: Move B2 Grassland Kermit\n\n38) ts52: Move R1 Kermit Ts52\n\n39) Felix: Build B2 Kermit\n\n40) ts52: Move B1 Robin Kermit\n\n41) Felix: Trade B2 R2 Kermit\n\n42) ts52: Build B2 Kermit\n\n43) Felix: Build B3 Kermit\nCatastrophe Kermit Blue\n\n44) ts52: Build R1 Ts52\n\n45) Felix: A Y1 Kermit\n\n46) ts52: Discover R1 Ts52 B1 Gonzo\n\n47) Felix: B Y1 Kermit\n\n48) ts52: Build B2 Robin\n\n49) Felix: Sacrifice G3 Felix\nBuild Y2 Grassland\nBuild Y2 Grassland\nBuild Y3 Felix\n\n50) ts52: Build B2 Robin\n\n51) Felix: Move Y3 Grassland Gonzo\n\n52) ts52: Trade B2 R2 Robin\n\n53) Felix: Move Y3 Gonzo Robin\n\n54) ts52: Build B2 Robin\n\n55) Felix: Sacrifice R2 Grassland\nAttack R2 Robin\nAttack Y2 Robin\n\n56) ts52: Sacrifice R1 Gonzo\nAttack R2 Robin\n\n57) Felix: Sacrifice R2 Kermit\nAttack R2 Robin\nAttack B2 Robin\n\n58) ts52: Sacrifice R1 Ts52\nAttack R2 Robin\n\n59) Felix: Trade Y3 R3 Robin\n\n60) ts52: Build R1 Robin\n\tFelix: That was an interesting little back-and-forth... I hope this works out.\n\n61) Felix: S R3 Robin\nA R2 Robin\nA R1 Robin\nA B2 Robin\n\n62) ts52: Build B1 Robin\nCatastrophe Robin Blue\n\tts52: Yeah, this isn't going to end well for me.\n\n63) Felix: B Y3 Kermit\n\n64) ts52: Trade G1 R1 Ts52\n\tFelix: Yeah... I dare say you're in a bit of trouble now. It has been a few games since i've managed to get a leg up on you, so I'll take it!\n\tFelix: Yeah... I dare say you're in a bit of trouble now. It has been a few games since i've managed to get a leg up on you, so I'll take it!\n\n65) Felix: T Y3 G3 Felix\n\tts52: Well played. We can play it out if you like, or I can resign and we can start another.\n\n66) ts52: Build G1 Ts52\n\tFelix: It's totally up to you. I'm fine either way. I've been known to make some silly mistakes when I have the upper hand, but there is an air of inevitability about this one, I think. I'd love to rematch!\n\n67) Felix: Build Y3 Robin\n\tts52: Yeah, I don't think it'll take you too long to wipe me out, but maybe you'll make a mistake. ;)\n\n68) ts52: Build R1 Ts52\n\n69) Felix: Discover Y3 Robin B1 Waterworld\n\n70) ts52: Build R2 Ts52\n\n71) Felix: Sacrifice Y3 Waterworld\nMove R1 Robin Kermit\nMove R1 Kermit Ts52\nCatastrophe Ts52 Red\nMove Y3 Kermit Ts52\n\n72) ts52: Trade G3 R3 Ts52\n\n73) Felix: S R2 Robin\nA G1 Ts52\nA R3 Ts52\n\tts52: Congrats. Good game.\n\tFelix: Thank you. You too!\n\n\nHomeworlds Online (SDG# 32169)\nVariants: "Unrated, Hard time"\nStarted: 2017.5.16, Ended: 2017.5.28\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 R3 G3\n\n2) wil: H G2 B1 B3 *\n\tFelix: Here we go! I'll give you the opportunity to open with a blue rush, should you wish to do so. I'm curious what options are open for defending against it.\n\twil: I'll play, I like this. \n\twil: Frankly I think the issue is when do you turn your g3 to blue...\n\twil: Frankly I think the issue is when do you turn your g3 to blue...\n\twil: Frankly I think the issue is when do you turn your g3 to blue...\n\n3) Felix: Build G1 Felix\n\n4) wil: B B1 Wil\n\tFelix: Right.... I think some experimentation is in order. It probably would have been smarter for me to use a y3 instead of an r3, so I can diversify more quickly.\n\n5) Felix: Trade G3 B3 Felix\n\n6) wil: T B3 Y3 Wil\n\tFelix: Oh why not?\n\n7) Felix: Build B2 Felix\n\twil: Could be this is Ynot?\n\n8) wil: B B2 Wil\n\n9) Felix: Trade B3 Y3 Felix\n\n10) wil: T B1 R1 Wil\n\tFelix: Y, don't mind if I do\n\n11) Felix: Build G1 Felix\n\n\tFelix: So, I'm not sure you benefited much from that opening this time around. I think trading for that B3 on the second turn might be the best way to counteract that blue rush attack.\n\tDraw5PlayAll: Then P2 sacs the Y3 and throws a B1 at the homeworld.\n\twil: D5pà... You are peanutting.... Members of the peanut gallery are allowed to watch and discuss.things amongst themselves but not make comments which can affect the outcome of a game.\n\tFelix: Rats!\n\tDraw5PlayAll: Uh oh, I think he hibernated again.\n\twil: Went camping....acting like a kid...back n recovering...\n\twil: Another day\n\nHomeworlds Online (SDG# 32197)\nVariants: "Unrated, Hard time"\nStarted: 2017.5.16, Ended: 2017.5.27\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Pass\n\tdlwillson: Hi Wil! I feel like I should take a small handicap. What do you think?\n\n2) wil: H Y2 B1 G3\n\twil: I like getting wooped! You play how you wish to make it interesting for you... No worries either way here. \n\n3) dlwillson: Homeworld R3 B2 G3\n\n4) wil: B G1 Wil\n\tdlwillson: I like to win some and lose some. I'll look at our game history and see if you've beaten me recently. If you have, I won't take a handicap. If you haven't, I'll skip a turn or two.\n\tdlwillson: You have! In fact, you beat me three times in a row, and it looks like you have beaten me more than I've beaten you. No handicap needed here. Game on! :-)\n\twil: Now I want one! \n\n5) dlwillson: Build G1 Dlwillson\n\tdlwillson: If I win two more back-to-back, maybe. :-)\n\n6) wil: Trade G1 B1 Wil\n\n7) dlwillson: T G1 B1 Dlwillson\n\n8) wil: Build B2 Wil\n\n9) dlwillson: B B2 Dlwillson\n\n10) wil: Discover B2 Wil Y3 Y3\n\n11) dlwillson: T B2 Y2 Dlwillson\n\n12) wil: B G1 Wil\n\n13) dlwillson: D B1 Dlwillson G1 Forest\n\n14) wil: D B1 Wil Y3 Why3\n\n15) dlwillson: Build Y1 Dlwillson\n\n16) wil: Trade G1 R1 Wil\n\n17) dlwillson: Build B2 Forest\n\n18) wil: Build R1 Wil\n\n19) dlwillson: S Y1 Dlwillson\nD B1 Forest G3 Field\n\n\tdlwillson: Bummer!\n\twil: My bad..left n went camping...\n\nHomeworlds Online (SDG# 31952)\nVariants: "Hard time"\nStarted: 2017.5.18, Ended: 2017.5.21\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n\nHomeworlds Online (SDG# 31969)\nStarted: 2017.5.19, Ended: 2017.5.19\nParticipants: Felix (S), icalvinist (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 32230)\nVariants: "Hard time"\nStarted: 2017.5.22, Ended: 2017.5.25\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n\nHomeworlds Online (SDG# 32245)\nStarted: 2017.5.25, Ended: 2017.6.1\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Good luck and have fun!\n\n4) Felix: Build G1 Felix\n\tDraw5PlayAll: I sense this will be a race for one economy and you then sac your G3 to overwhelm me.\n\tFelix: Hmm, what makes you think that? Based on our homeworlds, we might be focusing on different economies.\n\n5) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n6) Felix: Trade G1 B1 Felix\n\n7) Draw5PlayAll: Build B2 Draw5playall\n\n8) Felix: Discover B1 Felix G2 Out\n\tDraw5PlayAll: However, we both have 1-3...\n\n9) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\n10) Felix: B B2 Out\n\n11) Draw5PlayAll: Build Y1 Draw5playall\n\n12) Felix: Trade B2 Y2 Out\n\n13) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n14) Felix: Build B2 Out\n\n15) Draw5PlayAll: Build B2 G2\n\n16) Felix: T B2 R2 Out\n\n17) Draw5PlayAll: Trade B2 R2 G2\n\n18) Felix: Build G1 Felix\n\n19) Draw5PlayAll: Build G1 Draw5playall\n\n20) Felix: Build B2 Out\n\n21) Draw5PlayAll: Build B2 G2\n\n22) Felix: Trade B2 Y2 Out\n\n23) Draw5PlayAll: Build R1 G2\n\n24) Felix: Build B2 Out\n\n25) Draw5PlayAll: Trade R1 Y1 G2\n\n26) Felix: Trade B2 G2 Out\n\n27) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n28) Felix: Build B2 Out\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\n30) Felix: Move G2 Out Draw5playall\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 B2\nBuild R1 G2\n\n32) Felix: Sacrifice G1 Felix\nBuild G1 Draw5playall\nCatastrophe Draw5playall Green\n\n33) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove G3 B2 Draw5playall\n\tDraw5PlayAll: I figured I might want the extra red.\n\n34) Felix: Discover B1 Out B3 Rumpus_room\n\tFelix: Might come in handy :)\n\tDraw5PlayAll: Oh, how I so want to attack you...\n\n35) Draw5PlayAll: Trade B1 Y1 G2\n\tFelix: I thought you might. I had to think it through very carefully to make sure that was a relatively safe move...\n\n36) Felix: T B1 G1 Rumpus_room\n\n37) Draw5PlayAll: Move Y1 G2 Rumpus_room\n\n38) Felix: S Y2 Out\nM G1 Rumpus_room Out\nD G1 Out Y3 Cheese\n\n39) Draw5PlayAll: Build B1 G2\n\n40) Felix: Build G1 Felix\n\n41) Draw5PlayAll: Build G2 B2\n\n42) Felix: Build G3 Cheese\n\n43) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G1 B2 Felix\nMove G2 B2 Felix\nCatastrophe Felix Green\n\n\tDraw5PlayAll: Good game. I never expected that you would actually fall for the trap... I thought you would trade for an R1 (which makes my intent, getting the G3, impossible for the moment).\r\n\r\nI would have been terrified if I had that bluebird homeworld for so long. \n\tFelix: Well done. I definitely overlooked that. Rookie mistake! One of the drawbacks of these longer turn-based games vs real-time games is the ease of overlooking threats when coming back for a new turn.\n\nHomeworlds Online (SDG# 32246)\nVariants: "Unrated"\nStarted: 2017.5.25, Ended: 2017.6.3\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R3 B2 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Let's make this interesting :)\n\tDraw5PlayAll: R3B2G3 would have been more interesting.\n\n4) Felix: Build G1 Felix\n\tFelix: @Draw5 That's a subjective statement, I dare say.\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) Felix: Trade G1 Y1 Felix\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: B G1 Felix\n\n9) dlwillson: D G1 Dlwillson Y1 Sol\n\n10) Felix: Build Y2 Felix\n\n11) dlwillson: B G1 Sol\n\n12) Felix: Move G1 Felix Sol\n\n13) dlwillson: B G2 Dlwillson\n\n14) Felix: B G2 Felix\n\n15) dlwillson: M G1 Sol Felix\n\n16) Felix: Sacrifice G2 Felix\nBuild G2 Sol\nBuild Y2 Felix\n\n17) dlwillson: S G3 Dlwillson\nB G2 Sol\nB G3 Felix\nB G3 Dlwillson\nC Sol G\n\n18) Felix: Build G1 Felix\nCatastrophe Felix Green\n\n19) dlwillson: B Y1 Dlwillson\n\tFelix: Dang it, nice one :)\n\tdlwillson: I think you responded wrong. I think you should've attack my big green, forcing me to do the cat, so you'd have the lead.\n\tdlwillson: And thank you, I was pretty proud of the assault. :-)\n\tdlwillson: Hmm... Maybe not. If I do the cat, I might get an extra ship out of it.\n\n20) Felix: T Y2 G2 Felix\n\tFelix: Either way, I think you would have an edge, but I'd rather be in control of what happens ;)\n\n21) dlwillson: B Y2 Dlwillson\n\n22) Felix: Build G1 Felix\n\n23) dlwillson: D Y1 Dlwillson B1 Sky\n\n24) Felix: Discover Y1 Felix B1 Oriole\n\n25) dlwillson: M Y2 Dlwillson Oriole\n\n26) Felix: Sacrifice G2 Felix\nBuild Y2 Oriole\nBuild Y3 Felix\n\n27) dlwillson: S G2 Dlwillson\nB Y3 Oriole\nB Y3 Sky\nC Oriole Y\n\n28) Felix: Build G1 Felix\n\n29) dlwillson: Sacrifice Y3 Sky\nMove Y1 Dlwillson Sky\nMove Y1 Sky Felix\nMove Y1 Sky Felix\nCatastrophe Felix Y\n\n30) Felix: Trade G1 Y1 Felix\n\tFelix: .... Oh.\n\n31) dlwillson: Build G1 Dlwillson\n\n32) Felix: Build G1 Felix\n\tDraw5PlayAll: This has been a weird game. No real developments and Felix is without a large for the second time with no other star systems.\n\n33) dlwillson: B G2 Dlwillson\n\tFelix: I have nothing but hobbits.\n\n34) Felix: Build G2 Felix\n\n35) dlwillson: T G3 Y3 Dlwillson\n\n36) Felix: Discover G1 Felix B1 Hope\n\n37) dlwillson: B Y1 Dlwillson\n\n38) Felix: Discover G1 Felix B1 Saveme\n\n39) dlwillson: Move Y3 Dlwillson Saveme\n\n40) Felix: Build G2 Hope\n\tdlwillson: Don't worry buddy! I'll save you!\n\n41) dlwillson: Sacrifice G2 Dlwillson\nBuild Y1 Saveme\nBuild Y2 Dlwillson\n\n42) Felix: Build G2 Saveme\n\n43) dlwillson: Build G3 Dlwillson\n\tFelix: I don't want YOUR help! Sending distress signals across the\r\n cosmos...\n\n44) Felix: Build G3 Felix\n\tdlwillson: LOL! But ... but, I'm right *here*! I can help you!\n\n45) dlwillson: Trade Y3 R3 Saveme\n\tFelix: Like the last time you "helped" me with your happy yellow ships? No thanks ;)\n\n46) Felix: Sacrifice G2 Hope\nBuild G2 Saveme\nBuild G3 Hope\n\tdlwillson: I think my last turn may have been a mistake. I think I shoulda swapped to red a turn or two ago... This game is hard.\n\n47) dlwillson: Attack G2 Saveme\n\n48) Felix: Trade G3 R3 Hope\n\n49) dlwillson: Trade G2 R2 Saveme\n\tFelix: Definitely tricky! I thought for sure I was a goner a while back. I think you also failed to capitalize on an opportunity to move your large into my homeworld before I could get one. But yeah, trading for a red sooner would have expedited that attack...\n\n50) Felix: Sacrifice G3 Felix\nBuild G2 Saveme\nBuild G3 Hope\nBuild G3 Felix\n\tdlwillson: I didn't move in, because you always had the ability to stop me with a catastrophe. It would have been expensive to you, so I suppose I should have, anyway.\n\n51) dlwillson: Move G1 Dlwillson Saveme\nCatastrophe Saveme G\n\tFelix: It was a tricky situation, and I'd say I got very lucky!\n\n52) Felix: Trade G3 Y3 Hope\n\n53) dlwillson: Build G1 Dlwillson\n\n54) Felix: Build Y2 Hope\n\n55) dlwillson: Sacrifice Y2 Dlwillson\nMove R2 Saveme Dlwillson\nMove G1 Dlwillson Saveme\n\n56) Felix: Build R1 Hope\n\n57) dlwillson: B G1 Saveme\n\n58) Felix: S G3 Felix\nB G2 Hope\nB G2 Hope\nB G3 Felix\n\n59) dlwillson: M G1 Saveme Felix\n\n60) Felix: Trade G2 R2 Felix\n\n61) dlwillson: B G2 Felix\n\n62) Felix: Sacrifice Y3 Hope\nMove G1 Hope Dlwillson\nMove G2 Hope Dlwillson\nMove G2 Hope Dlwillson\nCatastrophe Dlwillson Green\n\n63) dlwillson: B G1 Felix\nC Felix G\n\n64) Felix: Trade Y1 G1 Felix\n\n65) dlwillson: Trade R3 B3 Saveme\n\tFelix: This is an interesting stand off...\n\n66) Felix: Move R3 Hope Felix\n\tdlwillson: I was debating between that and building an r1.\n\tdlwillson: I'm still not sure which is the better move. If this were a ladder match, I'd have set up the plastic and played out the various moves.\n\tFelix: Yeah, I usually play while I'm at work, so I don't have the chance to break out the plastic! I do a lot of mental gymnastics though. Sometimes I write it out on paper to try to visualize it!\n\n67) dlwillson: B B1 Saveme\n\tdlwillson: You should do what SilentTitan, my brother-in-law, does; take your 'mids to work and teach everyone Homeworlds. :-)\n\n68) Felix: Trade R3 Y3 Felix\n\n69) dlwillson: M B3 Saveme Dlwillson\n\tFelix: I could! And interesting... I didn't know you and SilentTitan were related. He's an excellent player as well. Which one of you got the other one into Pyramids?\n\tdlwillson: I started it. Many years ago, I saw Brian Trotter playing WW5 and fell in love with the pyramids, though not with WW5.\n\n70) Felix: Move R2 Felix Saveme\n\n71) dlwillson: Sacrifice Y1 Saveme\nMove B1 Saveme Dlwillson\n\tFelix: Yeah, I'm not such a fan of WW5 either. I was introduced via martian chess, which is a pretty decent game, but nothing like Homeworlds.\n\n72) Felix: Attack G1 Saveme\n\n73) dlwillson: D R2 Dlwillson Y1 Golden\n\n74) Felix: Build Y1 Felix\n\n75) dlwillson: T B3 G3 Dlwillson\n\n76) Felix: Build G1 Saveme\n\n77) dlwillson: B Y2 Dlwillson\n\n78) Felix: Trade Y3 G3 Felix\n\n79) dlwillson: Build B2 Dlwillson\n\n80) Felix: Sacrifice G3 Felix\nBuild Y2 Hope\nBuild Y3 Felix\nBuild G2 Saveme\n\n81) dlwillson: M B2 Dlwillson Golden\n\n82) Felix: Trade G2 B2 Saveme\n\n83) dlwillson: D Y1 Dlwillson R1 Mars\n\n84) Felix: Move Y1 Felix Saveme\n\n85) dlwillson: Sacrifice G3 Dlwillson\nBuild Y3 Dlwillson\nBuild Y3 Mars\nBuild B3 Golden\n\n86) Felix: S Y3 Felix\nM Y2 Hope Dlwillson\nM Y1 Saveme Dlwillson\nM B2 Saveme Dlwillson\nC Dlwillson Yellow\n\n87) dlwillson: M Y3 Mars Dlwillson\n\n88) Felix: Sacrifice G1 Saveme\nBuild B3 Dlwillson\n\n89) dlwillson: M B3 Golden Felix\nC Dlwillson B\n\tFelix: That's about what I figured. Worth a shot though!\n\n90) Felix: Sacrifice Y2 Hope\nMove R1 Hope Dlwillson\nMove R2 Saveme Dlwillson\n\tdlwillson: I gotta admit; I'm surprised. I thought you had me.\n\n91) dlwillson: A G1 Felix\n\tFelix: And I thought you had me quite a while back. It was a foolish attack, to be honest, and left me wide open. I could have played the safe game, but sometimes that's just no fun :P\n\tdlwillson: Another very fun game. Thanks Felix.\n\n\nHomeworlds Online (SDG# 32161)\nVariants: "Unrated"\nStarted: 2017.5.25, Ended: 2017.8.8\nParticipants: kato830 (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y3 G3\n\n2) kato830: Homeworld G3 B1 Y3\n\twil: Good luck\n\n3) wil: B G1 Wil\n\tkato830: Good luck! This is my first game and I'm excited to play!\r\n\n\twil: Read the rules? Have arcade? This is a tricky one.\n\n4) kato830: Build Y1 Kato830\n\tkato830: Yes, I've read the rules. I've been meaning to play it for the past couple of years but haven't convinced my friends to play it. I don't have arcade but I have accumulated more pyramids than I need for any game.\n\n5) wil: T G1 B1 Wil\n\n6) kato830: Discover Y1 Kato830 G2 Pangea\n\n7) wil: B B1 Wil\n\n8) kato830: Build Y1 Kato830\n\twil: So the beginning is often follow the leader... You don't want anyone to freeze you out of any commodity... And ya just gave me blue...sort of. \r\n\n\twil: So the beginning is often follow the leader... You don't want anyone to freeze you out of any commodity... And ya just gave me blue...sort of. \r\n\n\twil: So the beginning is often follow the leader... You don't want anyone to freeze you out of any commodity... And ya just gave me blue...sort of. \r\n\n\tkato830: I was under the impression that you shouldn't take the last of the smallest size. So now I can start grabbing the g2's. But i see what you're saying. I think. \n\tkato830: I meant b2's\n\tkato830: Oh I mis-remembered the rules. I see. \n\n9) wil: D B1 Wil G1 G1\n\twil: Yes while taking the last of 1s or 2s gives the other access to the next rank..not getting in on a color is trouble..\n\n10) kato830: Trade Y1 G1 Kato830\n\n11) wil: B B2 Wil\n\n12) kato830: Trade Y3 B3 Kato830\n\n13) wil: T B2 Y2 Wil\n\n14) kato830: Build B2 Kato830\n\twil: My counter is to mitigate that not allowing you to grow\n\n15) wil: S Y2 Wil\nM B1 G1 Pangea\nM B1 Pangea Kato830\nC Kato830 B\n\n16) kato830: Build Y1 Pangea\n\n17) wil: Discover B1 Wil Y1 Y1\n\n18) kato830: Move Y1 Pangea Kato830\n\n19) wil: B G1 Wil\n\n20) kato830: Build Y2 Kato830\n\n21) wil: M G1 Wil Y1\n\n22) kato830: Build Y2 Pangea\n\n23) wil: Build G1 Wil\n\n24) kato830: Move G1 Kato830 Pangea\n\n25) wil: Build G2 Y1\n\n\nHomeworlds Online (SDG# 32133)\nStarted: 2017.5.26, Ended: 2017.6.21\nParticipants: panglott (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) panglott: Homeworld G2 B1 Y3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) panglott: Build Y1 Panglott\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) panglott: Build Y1 Panglott\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) panglott: Trade Y1 B1 Panglott\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) panglott: Build Y1 Panglott\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) panglott: Discover Y1 Panglott B3 Macon\n\n13) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n14) panglott: Build Y2 Panglott\n\n15) Draw5PlayAll: Move Y1 Draw5playall G2\n\n16) panglott: Move Y2 Panglott Macon\n\n17) Draw5PlayAll: Build B2 G2\n\n18) panglott: Trade Y1 G1 Macon\n\n19) Draw5PlayAll: Build B2 G2\n\n20) panglott: Build B2 Panglott\n\n21) Draw5PlayAll: Trade B2 R2 G2\n\n22) panglott: Trade Y3 R3 Panglott\n\n23) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B1 G2 Macon\nMove B1 Macon Panglott\nCatastrophe Panglott Blue\n\n24) panglott: Sacrifice Y2 Macon\nMove R3 Panglott Macon\nMove R3 Macon G2\n\n25) Draw5PlayAll: Build R1 G2\n\n26) panglott: Attack R2 G2\n\n27) Draw5PlayAll: Build R1 G2\nCatastrophe G2 Red\n\n28) panglott: Build Y1 Panglott\n\n29) Draw5PlayAll: Build Y2 G2\n\n30) panglott: Move Y1 Panglott Macon\n\n31) Draw5PlayAll: Trade Y1 R1 G2\n\n32) panglott: Build G1 Macon\n\n33) Draw5PlayAll: Move Y2 G2 Macon\n\n34) panglott: Build Y1 Panglott\n\n35) Draw5PlayAll: Sacrifice R1 G2\nAttack Y1S Macon\n\n36) panglott: Trade G1 R1 Macon\n\n37) Draw5PlayAll: Trade Y2 R2 Macon\n\n38) panglott: Discover Y1 Panglott B3 London\n\n39) Draw5PlayAll: Sacrifice R2 Macon\nAttack G1 Macon\nAttack R1 Macon\n\n40) panglott: Trade Y1 G1 London\n\n41) Draw5PlayAll: Move G1 Macon Panglott\n\n42) panglott: Build G1 London\n\n43) Draw5PlayAll: Build G2 Panglott\n\n44) panglott: Build G3 London\n\n45) Draw5PlayAll: Build G3 Panglott\nCatastrophe Panglott Green\n\tpanglott: Thanks for the game ;)\n\tDraw5PlayAll: Hey, you finally got a large.\n\n\nHomeworlds Online (SDG# 32282)\nVariants: "Hard time"\nStarted: 2017.5.31, Ended: 2017.6.14\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H Y3 B2 G3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 R1 Wil\n\n6) Felix: Trade G1 R1 Felix\n\n7) wil: B R2 Wil\n\n8) Felix: Build R2 Felix\n\n9) wil: B R2 Wil\n\n10) Felix: T R1 Y1 Felix\n\n11) wil: D R2 Wil Y1 Y1\n\n12) Felix: Build Y1 Felix\n\n13) wil: D R2 Y1 Y2 Y2\n\n14) Felix: Move G3 Felix Y2\n\n15) wil: D R2 Y2 Y3 Y3\n\twil: Lol\n\n16) Felix: Build G1 Y2\n\n17) wil: T R2 Y2 Wil\n\n18) Felix: M G3 Y2 Felix\n\n19) wil: M R2 Y3 Y2\n\n20) Felix: Move G1 Y2 Felix\n\n21) wil: B R1 Wil\n\n22) Felix: Discover Y1 Felix B2 B2\n\n23) wil: D R1 Wil G1 G1\n\n24) Felix: Discover R2 Felix B2 B2b\n\n25) wil: B G1 Wil\n\n26) Felix: Move G1 Felix B2b\n\n27) wil: B G2 Wil\n\n28) Felix: Build G2 Felix\n\n29) wil: B Y1 Wil\n\n30) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G3 Felix\nBuild G3 B2b\n\n31) wil: S G3 Wil\nB G3 Wil\nB R2 G1\nB R3 Y2\n\n32) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 B2\nBuild Y3 Felix\n\n33) wil: M Y1 Wil G1\n\twil: Nice\n\twil: Nice\n\n34) Felix: Sacrifice Y2 Felix\nMove G1 B2b G1\nMove G1 G1 Wil\n\twil: Might be resigning soon\n\n35) wil: S G2 Wil\nB R3 Wil\nB R3 G1\n\tFelix: Thanks! I didn't realize quite how good my last move was until after the fact.\n\twil: Wanna finish your move? \n\twil: I don't feel right taking advantage of an sdg issue\n\tDraw5PlayAll: Then just call the catastrophe yourself.\n\twil: Lol...we can play our own game...upto Felix...if he don't wanna replay it, I'll take the offering. \n\twil: Lol...we can play our own game...upto Felix...if he don't wanna replay it, I'll take the offering. \n\twil: Note, I opened this game to take s look since it looked like Felix had replied. In general, when in a game I prefer discussing the game with my opponent, not the peanut gallery. While I am not fully versed as to the proper decorum, it is my preference.\n\n36) Felix: Sacrifice G2 Felix\nBuild G2 Wil\nBuild G2 B2b\nCatastrophe Wil Green\n\tFelix: Oh, sorry for not seeing this. I tend to only come to the games when it's my turn so I usually don't see messages when it's not my turn. It was actually intentional to not call the catastrophe. All part of my plan... I think :) Is your move the one you actually want to make?\n\tFelix: And then he realized it wasn't a very good idea after all.\n\n37) wil: T R1 G1 Wil\n\tFelix: I must have been thinking that waiting to do the catastrophe would give me a chance to grab that G3, but that was a really stupid idea hahaha. Big mistake. You're welcome for the offering! Take it with my best wishes.\n\tDraw5PlayAll: Question mark?\r\n\r\nAlso, I like how you guys are using my naming conventions now.\n\tFelix: You didn't invent the convention, Draw5. Wil's been using it since before you were a gleam in the SDG registration page's eye.\n\twil: Sure...although I'd like to know why you wouldn't want to catastrophe! (I have no issues losing games, look at my record, I like playing and leaning and experimenting)\n\n38) Felix: Trade G2 Y2 B2b\n\twil: Lol, yes d5 I was given some grief when I started... It stemmed from attempting to play blind...most didn't like it. Folks that imitated I would start naming g3 systems y2...then they quit complaining... But welcome to the cult young padwan\n\tFelix: My hope was that you would do something OTHER than sacrificing your G2, so that on my next turn I could build the last g3 and THEN do the catastrophe. In retrospect, it was an awful idea that would never have worked. Whoops!\n\n39) wil: B G1 Wil\n\n40) Felix: Build R1 B2b\n\n41) wil: D R3 Y2 B1 B1\n\n42) Felix: Move R1 B2b G1\nCatastrophe G1 Red\n\n43) wil: B R1 Wil\n\n44) Felix: Move R2 B2b G1\n\n45) wil: D Y1 G1 G2 G2\n\n46) Felix: Build G2 B2b\n\n47) wil: D Y1 G2 G3 G3\n\n48) Felix: Sacrifice G3 B2b\nBuild G2 Felix\nBuild G3 Felix\nBuild G3 B2b\n\n49) wil: Move G1 Wil B1\n\n50) Felix: S G2 Felix\nPass\nB R1 G1\n\n51) wil: B G2 Wil\n\n52) Felix: Move Y1 B2 G1\n\n53) wil: S G2 Wil\nB R2 B1\nB R3 Y2\n\n54) Felix: Trade G3 B3 B2b\n\n55) wil: M R2 Y2 G1\n\n56) Felix: S R1 G1\nA R2 G1\n\n57) wil: T R3 B3 Wil\n\twil: Nice\n\n58) Felix: M B3 B2b G1\n\n59) wil: B G2 Wil\n\tFelix: Thanks! That was a near thing.\n\n60) Felix: S G3 Felix\nB B1 G1\nB G3 B2b\nB G3 Felix\n\n61) wil: M B3 Wil B1\n\n62) Felix: M B3 G1 Wil\n\n63) wil: T G1 B1 Wil\n\tFelix: Interesting. Suicide?\n\twil: I guess... \n\twil: Brain fart\n\twil: Oh well...heehee\n\n64) Felix: Sacrifice R2 G1\nAttack Y2 Wil\nAttack G2 Wil\n\twil: No chance of recovery from that I believe\n\n65) wil: S Y1 G3\nM B3 B1 Wil\nC Wil B\n\tFelix: I don't think so. Oh well! I think I had a working plan of victory either way... it just would have taken longer. But nothing is a given in this game.\n\n66) Felix: Sacrifice R2 G1\nAttack R1 Wil\nPass\n\twil: Gg\n\tFelix: You too! A very fun one, and definitely a nailbiter after I made that one mistake.\n\twil: I am always happy to increase your ratings and decrease mine so I can be a surprise.\n\n\nHomeworlds Online (SDG# 32289)\nVariants: "Hard time"\nStarted: 2017.6.2, Ended: 2017.6.9\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: Odd, I did not think I would get a rematch this soon.\n\n2) Felix: Homeworld Y2 B2 G3 *\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Haha, why ever not? You're a worthy opponent and have climbed the ranks quite quicklY!\n\tDraw5PlayAll: Uh oh\n\n4) Felix: Build G1 Felix\n\tDraw5PlayAll: Also, I prefer 8/5/11 hard time because it gives leeway but I do not have to worry about forgetting to time someone out.\r\n\r\nHowever for 3+ players I usually keep the time control and drop Hard Time.\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: Trade G1 R1 Felix\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) Felix: B R1 Felix\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) Felix: Build R2 Felix\n\n11) Draw5PlayAll: Discover Y1 Draw5playall G2 G2\n\n12) Felix: Trade R2 Y2 Felix\n\n13) Draw5PlayAll: Build Y2 G2\n\n14) Felix: Discover Y2 Felix G3 Out\n\n15) Draw5PlayAll: Build Y3 Draw5playall\n\n16) Felix: Build Y3 Out\n\n17) Draw5PlayAll: Trade Y3 R3 Draw5playall\n\n18) Felix: Move Y2 Out G2\n\n19) Draw5PlayAll: Sacrifice Y1 G2\nMove R3 Draw5playall G2\n\n20) Felix: Build Y1 G2\n\n21) Draw5PlayAll: Build R2 G2\n\n22) Felix: Build Y3 Out\n\n23) Draw5PlayAll: Sacrifice R2 G2\nAttack Y2 G2\nAttack Y1 G2\n\n24) Felix: Discover Y3 Out G2 In\n\n25) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n26) Felix: Trade R1 B1 Felix\n\n27) Draw5PlayAll: Discover Y2 G2 B3 B3\n\n28) Felix: Build G1 Felix\n\n29) Draw5PlayAll: Trade Y2 B2 B3\n\n30) Felix: Move B1 Felix Out\n\n31) Draw5PlayAll: Move Y1 G2 B3\n\n32) Felix: B B1 Out\n\n33) Draw5PlayAll: Move B2 B3 G2\n\n34) Felix: Move B1 Out In\n\tDraw5PlayAll: So G2 = Altair, out = Betelgeuse, in = Caster, B3 = Denham (?)\n\n35) Draw5PlayAll: Trade B1 Y1 Draw5playall\n\n36) Felix: Build B1 In\n\tFelix: I have no idea what you're talking about\n\tDraw5PlayAll: Did I spell the names right?\n\n37) Draw5PlayAll: Move Y1 B3 Felix\n\tDraw5PlayAll: South's ship Y3 was not sacrificed in the in system. South did not move their G3 ship from Felix to Draw5PlayAll. South did not move their G1 ship from Felix to Draw5PlayAll. South did not move their Y3 ship from out to Felix. A catastrophe did not occur in the Draw5PlayAll system. No construction (G) technology was lost.\n\n38) Felix: Attack Y1 Felix\n\n39) Draw5PlayAll: Sacrifice Y2 G2\nMove Y1 Draw5playall Felix\nMove Y1 Draw5playall Felix\nCatastrophe Felix Yellow\n\n40) Felix: Build G1 Felix\n\n41) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n42) Felix: Sacrifice G3 Felix\nBuild Y1 In\nBuild Y1 In\nBuild R1 Felix\n\n43) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\tFelix: Good attack, but leaving yourself without mobility may have been unwise.\n\n44) Felix: Build G1 Felix\n\tDraw5PlayAll: What did you say?\n\n45) Draw5PlayAll: Trade G3 R3 Draw5playall\n\tFelix: I believe I said it would be unwise to leave yourself without any construction ability.\n\n46) Felix: Sacrifice Y3 Out\nMove R1 Felix Draw5playall\nMove R1 Felix Draw5playall\nCatastrophe Draw5playall Red\nMove Y3 In Draw5playall\n\tDraw5PlayAll: I think you have me cornered.\n\tDraw5PlayAll: I think my mess up was allowing you two Y3s.\n\n\tFelix: Good game though. I honestly didn't think I'd have a shot with a duplicate-star homeworld. According to most of what I've read, it's supposed to be suicide.\n\tDraw5PlayAll: When I made that earlier comment (G2 = Altair, etc) I was referring to the system the Homeworlds Theater videos use... but I would hope this game does not end up on the video... or really any of mine, even those that I won.\n\tFelix: Ah, I see. I've never heard of Homeworlds Theater. Why wouldn't you wanna be on it?\n\tDraw5PlayAll: http://new.wunderland.com/2017/06/05/homeworlds-theater/\n\nHomeworlds Online (SDG# 32258)\nStarted: 2017.6.2, Ended: 2017.6.16\nParticipants: Felix (S), panglott (N)\nWinner: Felix\n\n1) panglott: Homeworld B3 Y1 G3\n\n2) Felix: H B2 Y3 G3\n\n3) panglott: Build G1 Panglott\n\n4) Felix: Build G1 Felix\n\tFelix: Good luck and have fun!\n\n5) panglott: Discover G1 Panglott B2 Tallahassee\n\n6) Felix: Trade G1 Y1 Felix\n\n7) panglott: Build G1 Tallahassee\n\n8) Felix: Build Y1 Felix\n\n9) panglott: Build G1 Panglott\n\n10) Felix: Discover Y1 Felix B1 Out\n\n11) panglott: Build G2 Tallahassee\n\n12) Felix: Build G2 Felix\n\n13) panglott: Trade G1 R1 Panglott\n\n14) Felix: B Y2 Felix\n\n15) panglott: Trade G2 Y2 Tallahassee\n\n16) Felix: Discover Y1 Felix B1 Gumdrop\n\n17) panglott: Move G1 Tallahassee Gumdrop\n\n18) Felix: Sacrifice G3 Felix\nBuild Y2 Gumdrop\nBuild Y3 Out\nBuild Y3 Felix\n\n19) panglott: Discover Y2 Tallahassee G1 Cairo\n\n20) Felix: T Y2 R2 Felix\n\n21) panglott: Build G2 Panglott\n\n22) Felix: T Y2 R2 Gumdrop\n\n23) panglott: Sacrifice G3 Panglott\nBuild G2 Tallahassee\nBuild G3 Gumdrop\nBuild G3 Panglott\n\n24) Felix: Build G3 Felix\n\n25) panglott: Trade G3 R3 Gumdrop\n\n26) Felix: S G2 Felix\nB R1 Gumdrop\nB R1 Gumdrop\nC Gumdrop Red\n\n27) panglott: Sacrifice G3 Panglott\nBuild Y2 Cairo\nBuild G2 Tallahassee\nBuild G3 Panglott\n\n28) Felix: B G3 Felix\n\n29) panglott: Trade G2 Y2 Tallahassee\n\n30) Felix: B R1 Felix\n\n31) panglott: Sacrifice Y2 Tallahassee\nMove Y2 Cairo Felix\nMove Y2 Cairo Felix\nCatastrophe Felix Y\n\n32) Felix: Sacrifice Y3 Out\nMove G3 Felix Panglott\nMove G3 Felix Panglott\nCatastrophe Panglott Green\nMove R2 Felix Panglott\n\n33) panglott: Trade G2 Y2 Tallahassee\n\n34) Felix: Attack R1 Panglott\n\n\tpanglott: Thanks for the game ;)\n\tFelix: Thank you too! It was a fun finish. Good game\n\nHomeworlds Online (SDG# 32159)\nStarted: 2017.6.4, Ended: 2020.3.31\nParticipants: SubatomicAura (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) SubatomicAura: Homeworld R3 B1 G3\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) SubatomicAura: Build G1 Subatomicaura\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n\nHomeworlds Online (SDG# 32251)\nVariants: "Unrated"\nStarted: 2017.6.4, Ended: 2017.7.17\nParticipants: SubatomicAura (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B2 G3\n\n2) SubatomicAura: Homeworld Y1 B3 G3\n\n3) wil: B G1 Wil\n\n4) SubatomicAura: Build G1 Subatomicaura\n\n5) wil: T G1 Y1 Wil\n\n6) SubatomicAura: Build G1 Subatomicaura\n\n7) wil: B Y1 Wil\n\n8) SubatomicAura: Discover G1 Subatomicaura R2 Alpha\n\twil: One thing one should watch for is a freeze out from any economy....the early game is often copycat to insure that doesn't occur\n\n9) wil: D Y1 Wil G1 G1\n\n10) SubatomicAura: Build G2 Subatomicaura\n\n11) wil: S G3 Wil\nB Y2 Wil\nB Y2 G1\nB Y2 G1\n\n12) SubatomicAura: Trade G2 B2 Subatomicaura\n\n13) wil: M Y2 G1 Alpha\n\n14) SubatomicAura: Trade B2 R2 Subatomicaura\n\n15) wil: A G1 Alpha\n\n16) SubatomicAura: Build R1 Subatomicaura\n\n17) wil: B Y3 Alpha\n\n18) SubatomicAura: Trade G1 B1 Subatomicaura\n\n19) wil: B Y3 G1\n\n\nHomeworlds Online (SDG# 32300)\nVariants: "Unrated"\nStarted: 2017.6.4, Ended: 2017.7.17\nParticipants: SubatomicAura (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B1 G3\n\n2) SubatomicAura: Homeworld R2 B1 G3\n\n3) wil: B G1 Wil\n\n4) SubatomicAura: Build G1 Subatomicaura\n\n5) wil: T G1 B1 Wil\n\twil: Was atomicaura already taken?\n\n6) SubatomicAura: Trade G1 Y1 Subatomicaura\n\n7) wil: B B2 Wil\n\n8) SubatomicAura: Build Y1 Subatomicaura\n\n9) wil: D B2 Wil Y2 Y2\n\n10) SubatomicAura: Build G1 Subatomicaura\n\n11) wil: S G3 Wil\nB B2 Y2\nB B2 Y2\nB B3 Wil\n\n12) SubatomicAura: Build G1 Subatomicaura\n\n13) wil: D B2 Y2 G3 G3\n\n14) SubatomicAura: Move G1 Subatomicaura G3\n\n15) wil: B B3 G3\n\n16) SubatomicAura: Build Y1 Subatomicaura\n\n17) wil: S B2 Y2\nT B3 G3 Wil\nT B3 R3 G3\n\n18) SubatomicAura: Discover Y1 Subatomicaura B3 B3\n\n19) wil: A G1 G3\n\n\nHomeworlds Online (SDG# 32299)\nStarted: 2017.6.4, Ended: 2017.6.7\nParticipants: dlwillson (S), MobyNostromo (N)\nWinner: dlwillson\n\n\nHomeworlds Online (SDG# 32199)\nVariants: "Unrated, Hard time"\nStarted: 2017.6.4, Ended: 2017.6.13\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y1 G3\n\n2) wil: H G2 Y1 Y3 *\n\n3) dlwillson: Build G1 Dlwillson\n\twil: This game has an asterisk at the start\n\tdlwillson: Huh... I wonder why... I don't see one.\n\n4) wil: B Y1 Wil\n\twil: I had to place an asterisk for not using a blue and for having two of one color in my hw\n\n5) dlwillson: Trade G3 Y3 Dlwillson\n\n6) wil: D Y1 Wil G3 G3\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: B Y2 G3\n\twil: Lol, this is getting real bad real fast...\n\n9) dlwillson: D Y2 Dlwillson G2 Field\n\n10) wil: M Y1 G3 Field\n\n11) dlwillson: Build G1 Dlwillson\n\n12) wil: B Y2 Field\n\n13) dlwillson: Build Y3 Field\nCatastrophe Field Y\n\n14) wil: B Y1 G3\n\n15) dlwillson: Build G1 Dlwillson\n\twil: Thought that would be tempting\n\twil: It is weird....using a non blue instafreeze causes a turmoil between the non blue opening (need to get blue now) and the freezout need to maintain the freeze... Well that and my shoot from.the hip not thinking ways\n\n16) wil: B Y2 Wil\n\tdlwillson: Yeah, that's interesting. I think you have got a slight advantage, though.\n\twil: I feel much better after the catastrophe\n\n17) dlwillson: D G1 Dlwillson B2 Sea\n\n18) wil: D Y2 Wil B3 B3\n\n19) dlwillson: B G2 Sea\n\n20) wil: B Y2 Wil\n\n21) dlwillson: Discover G1 Dlwillson G2 Forest\n\n22) wil: M Y3 Wil B3\n\n23) dlwillson: B G3 Sea\n\n24) wil: T Y3 G3 B3\n\n25) dlwillson: T G2 R2 Sea\n\n26) wil: M G3 B3 Wil\n\twil: Yeah...oops\n\n27) dlwillson: Sacrifice Y3 Dlwillson\nMove G3 Sea B3\nMove G3 B3 Wil\nDiscover G1 Forest Y3 Golden\n\n28) wil: B G2 Wil\nC Wil G\n\n29) dlwillson: B G2 Dlwillson\n\twil: They went willingly to save the kingdom...what troopers\n\n30) wil: B Y3 G3\n\n31) dlwillson: Build G2 Sea\n\tDraw5PlayAll: \n\tDraw5PlayAll: !?\n\n32) wil: S Y2 G3\nM Y3 G3 Sea\nM Y3 Sea Dlwillson\n\n33) dlwillson: T G1 R1 Dlwillson\n\n34) wil: T Y2 R2 B3\n\n35) dlwillson: Sacrifice G2 Sea\nBuild G1 Dlwillson\nBuild R1 Dlwillson\n\n36) wil: B Y2 G3\n\n37) dlwillson: Trade G2 Y2 Dlwillson\n\twil: Wotta game\n\n38) wil: B Y3 G3\n\tdlwillson: :-)\n\n39) dlwillson: B G2 Golden\n\n40) wil: M Y3 G3 Sea\n\n41) dlwillson: M G2 Golden Wil\n\n42) wil: S R2 B3\nA G2 Wil\nA R2 Sea\n\n43) dlwillson: B G2 Dlwillson\n\tdlwillson: B g2 dlwillson\n\n44) wil: S R2 Sea\nA Y2 Dlwillson\nA G2 Dlwillson\n\tdlwillson: I haven't done that in a while... :-)\n\n45) dlwillson: B G2 Sea\n\n46) wil: Trade Y2 R2 Dlwillson\n\n47) dlwillson: Build G3 Golden\n\n48) wil: S R2 Dlwillson\nA R1 Dlwillson\nA R1 Dlwillson\n\n49) dlwillson: T G2 R2 Sea\n\n50) wil: A G1 Dlwillson\n\twil: I didn't play that well, but the instafreeze was powerful enough to overcome...gg\n\tdlwillson: good game :-)\n\n\nHomeworlds Online (SDG# 32225)\nStarted: 2017.6.4, Ended: 2017.6.14\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\n3) dlwillson: Build G1 Dlwillson\n\tFelix: Here we go again. Have fun!\n\tdlwillson: Yay! You too!\n\n4) Felix: Build G1 Felix\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) Felix: Trade G1 Y1 Felix\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) Felix: Build Y2 Felix\n\n9) dlwillson: D Y1 Dlwillson G2 Forest\n\n10) Felix: Sacrifice Y1 Felix\nDiscover Y2 Felix G1 Endor\n\n11) dlwillson: B G1 Dlwillson\n\n12) Felix: Build G1 Felix\n\n13) dlwillson: D G1 Dlwillson B2 Sea\n\n14) Felix: Trade G1 R1 Felix\n\n15) dlwillson: Trade Y2 R2 Dlwillson\n\n16) Felix: Build R1 Felix\n\n17) dlwillson: Move R2 Dlwillson Forest\n\n18) Felix: Move R1 Felix Endor\n\n19) dlwillson: B G1 Dlwillson\n\tdlwillson: Darn it, Felix!\n\n20) Felix: Build G2 Felix\n\tFelix: Haha, but I don't think I'm doing very well! You're about to get most of the greens, I think.\n\n21) dlwillson: S G3 Dlwillson\nB G2 Dlwillson\nB G3 Dlwillson\nB G3 Sea\n\n22) Felix: Discover G2 Felix Y1 Tattooine\n\n23) dlwillson: Trade G2 R2 Dlwillson\n\n24) Felix: Build G2 Felix\n\n25) dlwillson: T G3 Y3 Sea\n\n26) Felix: Build G3 Tattooine\n\n27) dlwillson: S G3 Dlwillson\nB Y2 Sea\nB Y3 Forest\nB G3 Dlwillson\n\n28) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y3 Endor\nBuild R1 Felix\n\n29) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Forest\nBuild R3 Dlwillson\nBuild G3 Dlwillson\n\n30) Felix: Build R3 Endor\n\tFelix: well that escalated quickly!\n\n31) dlwillson: Move R2 Dlwillson Sea\n\tdlwillson: Factories! Factories everywhere!\n\tdlwillson: I'm really not sure what to do with all this capital...\n\n32) Felix: Trade R1 B1 Felix\n\tdlwillson: Oh, I know! I'll try to make more!\n\n33) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Dlwillson\nBuild R3 Sea\nBuild G3 Dlwillson\n\tFelix: Greed will get you nowhere! It's all about smart exchanges ;)\n\n34) Felix: Build B1 Felix\n\n35) dlwillson: Discover G1 Sea B1 Sky\n\n36) Felix: Move G2 Felix Sky\n\n37) dlwillson: Move R3 Sea Sky\n\tdlwillson: I'm so used to playing against bankers...\n\n38) Felix: M B1 Felix Tattooine\n\tFelix: Yeah... I do play it sometimes, but I've never been as effective as I could be at using that strategy. Plus it's less satisfying somehow to win with that setup since it's generally considered stronger.\n\tDraw5PlayAll: But I just send a spare R2 to your investment and scare it off! Why is it stronger than a 1-3? If I get small greens on 2-point stars, I can still move to large stars.\n\n39) dlwillson: Trade Y2 B2 Sea\n\n40) Felix: Move B1 Felix Endor\n\tFelix: @draw5 - it still gives the player a much greater control over the supply. Large pieces can be absorbed and kept from the opponent in a pinch. And small pieces tend to run out faster, limiting the ability of someone with a fortress to move out.\n\n41) dlwillson: M B2 Sea Sky\n\tdlwillson: @draw5: You are uniquely positioned to understand the importance of being a banker: http://superdupergames.org/main.html?page=play_homeworlds&num=32303\n\n42) Felix: Sacrifice G2 Sky\nBuild B2 Endor\nBuild B3 Tattooine\n\n43) dlwillson: S G3 Dlwillson\nB Y2 Sea\nB G2 Sky\nB G3 Dlwillson\n\n44) Felix: Sacrifice Y2 Endor\nDiscover B2 Endor Y2 Entry\nMove B1 Tattooine Entry\n\n45) dlwillson: M R3 Dlwillson Entry\n\tdlwillson: The bank is empty!\n\tFelix: The pieces are all laid out. Now if only I had a dang medium star to use as an entry point to your homeworld!\n\n46) Felix: Sacrifice Y3 Endor\nMove B2 Entry Sky\nMove B1 Entry Sky\nCatastrophe Sky Blue\nDiscover B1 Endor Y3 Precious\n\tFelix: I guess this will have to do...\n\n47) dlwillson: Build R3 Dlwillson\n\tFelix: Sorry, just wanted to adjust that ever so slightly.\n\n48) Felix: Build B1 Tattooine\n\tdlwillson: Abandon hope, ye who entry here.\n\n49) dlwillson: Trade R1 B1 Dlwillson\n\tFelix: Excellent move. You force me into a costly maneuver!\n\tFelix: That solves my medium star problem though ;)\n\n50) Felix: Discover B3 Tattooine G2 Seafoam\n\tdlwillson: Expensive maybe, but I think it was profitable for you.\n\n51) dlwillson: M B1 Dlwillson Entry\n\n52) Felix: S G2 Tattooine\nB B2 Seafoam\nB B2 Tattooine\n\n53) dlwillson: D Y1 Forest G1 Field\n\n54) Felix: S B1 Precious\nT B3 Y3 Seafoam\n\n55) dlwillson: S G3 Dlwillson\nB R1 Entry\nB G2 Dlwillson\nB G3 Dlwillson\n\n56) Felix: S G3 Tattooine\nB G3 Felix\nB B1 Seafoam\nB B3 Seafoam\n\n57) dlwillson: Sacrifice Y2 Sea\nMove B1 Entry Field\nMove B1 Field Seafoam\nCatastrophe Seafoam B\n\n58) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Seafoam\nBuild B1 Tattooine\n\n59) dlwillson: Move G1 Dlwillson Seafoam\n\n60) Felix: D B1 Tattooine B2 Absorption\n\n61) dlwillson: Sacrifice Y1 Field\nDiscover G1 Seafoam B1 Sky\n\n62) Felix: Trade B1 G1 Tattooine\n\n63) dlwillson: Sacrifice Y3 Sea\nMove G3 Dlwillson Absorption\nMove G3 Absorption Endor\nMove G3 Endor Felix\n\n64) Felix: Sacrifice Y2 Seafoam\nMove G1 Tattooine Felix\nCatastrophe Felix Green\nMove R3 Endor Felix\n\n65) dlwillson: Move R3 Entry Tattooine\n\tFelix: That was a nice move!\n\n66) Felix: Move B2 Tattooine Felix\n\n67) dlwillson: M R2 Forest Sky\n\tFelix: OUCH. Really nice. I didn't see that coming.\n\tdlwillson: I've been wanting to do that since you got the second big green, but I couldn't set it up right until then. Unfortunately, it was about as expensive for me as it was for you.\n\n68) Felix: Trade R1 G1 Felix\n\n69) dlwillson: B G3 Sky\n\tFelix: True. This has been a pretty epic game thus far.\n\tDraw5PlayAll: 8 planets.\n\n70) Felix: Build G3 Felix\n\n71) dlwillson: Trade G3 Y3 Sky\n\n72) Felix: S G3 Felix\nB B1 Absorption\nB B3 Felix\nB G3 Felix\n\n73) dlwillson: Build G3 Sky\n\n74) Felix: Build Y1 Seafoam\n\tdlwillson: I was supposed to have won by now... >:-|\n\n75) dlwillson: M Y3 Sky Absorption\n\tFelix: And I was supposed to lose by now! \n\n76) Felix: S Y3 Seafoam\nM B2 Felix Tattooine\nM B2 Tattooine Absorption\nC Absorption Blue\nM B3 Felix Endor\n\tdlwillson: That's kinda what I mean. You're not cooperating.\n\n77) dlwillson: Sacrifice G3 Sky\nBuild R1 Dlwillson\nBuild G3 Sky\nBuild G3 Dlwillson\n\n78) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Seafoam\nBuild Y3 Seafoam\n\n79) dlwillson: Build Y3 Forest\n\tFelix: Yeah...\r\nSorry about that old chap. I'm afraid I tend to kick and squirm. But I think you have me in the wrong footing now.\n\tdlwillson: LOL! I read that in the voice of Mr. B, The Gentleman Rhymer.\n\tdlwillson: I suddenly became terribly afraid you were going to blow up Sky, and completely end my little game, so I started diversifying.\n\n80) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B1 Endor\nBuild B1 Endor\n\n81) dlwillson: Sacrifice Y3 Forest\nMove G3 Sky Felix\nMove G1 Sky Felix\nMove R3 Tattooine Felix\nCatastrophe Felix G\n\tFelix: Haha, I'm not familiar with Mr. B, but I'll look him up.\r\n\r\nI honestly should have threatened Sky more, but the great eye of Sauron was turned elsewhere, so to speak.\n\n82) Felix: Sacrifice Y3 Seafoam\nMove R1 Endor Felix\nMove B3 Endor Felix\nMove B1 Endor Felix\n\n83) dlwillson: Sacrifice R3 Dlwillson\nAttack R3 Felix\nAttack B3 Felix\nAttack R1 Felix\n\tFelix: I present you with a choice: Eliminate all the yellow ships and draw this game out even further.... or don't. :P\n\n84) Felix: Sacrifice B1 Endor\nTrade B1 B1 Felix\n\tFelix: Hey, that works too.\n\tdlwillson: No sense dragging it out further... :-)\n\n85) dlwillson: Sacrifice R3 Felix\nAttack B1 Felix\nPass\nPass\n\tFelix: I didn't notice that threat. Very nicely done! \n\n\tFelix: Haha, I didn't know you could trade for the same color. That's funny.\n\tdlwillson: Thanks!\n\tdlwillson: I meant "Thanks!" to "nicely done"\n\tdlwillson: Excellent game! Now, to focus on work for a few hours!\n\tFelix: Yes, great game and well played. I thought I was a goner several times before you closed the deal. I have some work to do too, and then I should gather all of my wits for the epic ladder battle.\n\tdlwillson: o/\\o\n\nHomeworlds Online (SDG# 32290)\nStarted: 2017.6.4, Ended: 2017.6.12\nParticipants: panglott (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) panglott: Homeworld Y3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) panglott: Build G1 Panglott\n\tdlwillson: Have fun!\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) panglott: Discover G1 Panglott B1 Versailles\n\n7) dlwillson: B Y1 Dlwillson\n\n8) panglott: Build G1 Versailles\n\n9) dlwillson: D Y1 Dlwillson B2 Sea\n\n10) panglott: Build G1 Panglott\n\n11) dlwillson: Build G2 Dlwillson\n\n12) panglott: Discover G1 Panglott B1 Allegheny\n\n13) dlwillson: S G3 Dlwillson\nB Y2 Dlwillson\nB Y2 Sea\nB Y2 Sea\n\n14) panglott: Build G2 Panglott\n\n15) dlwillson: Discover Y1 Dlwillson B2 Sky\n\n16) panglott: Sacrifice G3 Panglott\nBuild G2 Versailles\nBuild G3 Allegheny\nBuild G3 Panglott\n\tdlwillson: I like your system names. Are they based on some predictive model, like mine are?\n\tpanglott: I was trying to use real star names for a while, but it was easier to think of evocative American small towns. Versailles is a small town in Kentucky, not too far from the Allegheny Mountains ;) \n\n17) dlwillson: Build G3 Dlwillson\n\n18) panglott: Trade G3 Y3 Allegheny\n\tpanglott: But they say it "vur-sales"\n\n19) dlwillson: Move G2 Dlwillson Sky\n\tdlwillson: That's excellent. Are you Kentuckian?\n\tdlwillson: Mine are 'field' and 'forest' for green, 'sky' and 'sea' for blue, 'sol' and 'golden' for yellow, and I almost never create red systems, but when I do, they have weird names. Basically, anything but 'mars' will do.\n\tpanglott: That's neat. I guess you don't often need more than 2\n\tpanglott: Yea, in Louisville. \n\n20) panglott: Trade G1 R1 Versailles\n\n21) dlwillson: B Y3 Sky\n\n22) panglott: Sacrifice G3 Panglott\nBuild G1 Allegheny\nBuild G3 Allegheny\nBuild G3 Panglott\n\n23) dlwillson: Move G2 Sky Allegheny\nCatastrophe Allegheny G\n\n24) panglott: Move Y3 Allegheny Sea\n\n25) dlwillson: D Y2 Sea G1 Field\n\n26) panglott: Trade Y3 R3 Sea\n\n27) dlwillson: S Y2 Sea\nM Y1 Sea Field\nM Y1 Field Panglott\n\n28) panglott: Trade G2 Y2 Versailles\n\n29) dlwillson: Trade Y2 R2 Dlwillson\n\n30) panglott: Move G1 Versailles Sea\n\n31) dlwillson: T Y1 G1 Panglott\n\n32) panglott: Trade G2 R2 Panglott\n\n33) dlwillson: B G2 Panglott\n\n34) panglott: Move G3 Panglott Versailles\n\n35) dlwillson: Sacrifice R2 Dlwillson\nAttack R2 Panglott\nPass\n\n\tdlwillson: Good game! Thank you!\n\nHomeworlds Online (SDG# 32303)\nVariants: "Unrated, Hard time"\nStarted: 2017.6.5, Ended: 2017.6.18\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: Draw5PlayAll\n\n1) dlwillson: Homeworld B3 Y1 G3\n\tDraw5PlayAll: You really asked for a 1/1/3 time control?\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\tdlwillson: Yes. I strongly prefer fast games. I figure a day is plenty of time, typically, and three days is plenty of time to get in a good think, if the other guy has submitted a particularly clever and/or surprising turn.\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Yeah, just that some people cannot get on SDG every single day. I have noticed that the clock here is less of a measure of thinking time and more a measure of patience. With just one hour you could have a decent think but most of the hours are spent doing other things,\n\tdlwillson: Are you saying that you think the timing is too fast?\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\tDraw5PlayAll: I am commenting o it.\n\n7) dlwillson: Build R2 Dlwillson\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) dlwillson: Discover R1 Dlwillson R2 Gambit\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n11) dlwillson: S G3 Dlwillson\nB R2 Gambit\nB R3 Dlwillson\nB R3 Dlwillson\n\n12) Draw5PlayAll: Discover R1 Draw5playall G3 G3\n\n13) dlwillson: T R2 Y2 Dlwillson\n\n14) Draw5PlayAll: Build Y1 Draw5playall\n\n15) dlwillson: Sacrifice Y2 Dlwillson\nMove R2 Gambit G3\nDiscover R1 Gambit G3 Field\n\n16) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n17) dlwillson: Attack R1 G3\n\n18) Draw5PlayAll: Move B2 Draw5playall Field\n\n19) dlwillson: Discover R3 Dlwillson Y2 Sol\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) dlwillson: Move R3 Sol Field\n\n22) Draw5PlayAll: Sacrifice Y1 Draw5playall\nD B2 Field G1 G1\n\n23) dlwillson: Sacrifice R1 G3\nPass\n\n24) Draw5PlayAll: Build B1 G1\n\n25) dlwillson: S R2 G3\nPass\nPass\n\tdlwillson: Nice! I had no idea...\n\n26) Draw5PlayAll: Trade B1 Y1 G1\n\n27) dlwillson: T R3 G3 Dlwillson\n\n28) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: Rats, I just realized I could have held you even longer...\n\n29) dlwillson: Build G1 Dlwillson\n\tdlwillson: Right. :-)\n\tDraw5PlayAll: Actually, you would have been absolutely powerless to do anything. Ugh.\n\n30) Draw5PlayAll: Build Y2 G1\n\n31) dlwillson: T G1 B1 Dlwillson\n\n32) Draw5PlayAll: Discover Y1 G1 Y2 Y2\n\tDraw5PlayAll: My only hope.\n\n33) dlwillson: S B1 Dlwillson\nT R3 B3 Field\n\n34) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G1\nBuild Y3 Draw5playall\nBuild Y3 G1\n\tDraw5PlayAll: I might not be so losing after all.\n\n35) dlwillson: B B1 Field\n\n36) Draw5PlayAll: Trade Y2 R2 G1\n\tDraw5PlayAll: I expected you to trade for a Y3.\n\n37) dlwillson: T B3 Y3 Field\n\tdlwillson: Yeah, well... I like to surprise when I can. Let's see what happens!\n\n38) Draw5PlayAll: Trade Y3 B3 Draw5playall\n\n39) dlwillson: B B1 Field\n\n40) Draw5PlayAll: Trade B3 G3 Draw5playall\n\n41) dlwillson: M B1 Field Y2\n\n42) Draw5PlayAll: Discover Y1 Y2 B3 B3\n\n43) dlwillson: B G1 Dlwillson\n\n44) Draw5PlayAll: Build G1 Draw5playall\n\n45) dlwillson: T G1 R1 Dlwillson\n\n46) Draw5PlayAll: Move G1 Draw5playall B3\n\n47) dlwillson: D B1 Y2 Y3 Golden\n\n48) Draw5PlayAll: Build Y2 Draw5playall\n\n49) dlwillson: Build Y2 Field\n\n50) Draw5PlayAll: Build R2 G1\n\n51) dlwillson: Build R2 Field\n\n52) Draw5PlayAll: Move R2 G1 Golden\n\n53) dlwillson: D B1 Golden G2 Forest\n\n54) Draw5PlayAll: Build R3 G1\n\n55) dlwillson: Move R2 Field Forest\n\n56) Draw5PlayAll: Move R3 G1 B3\n\n57) dlwillson: Build R3 Forest\n\n58) Draw5PlayAll: Build R3 G1\n\n59) dlwillson: Sacrifice Y2 Field\nMove R1 Field G1\nMove R2 Forest G1\nCatastrophe G1 R\n\n60) Draw5PlayAll: Build Y2 B3\n\n61) dlwillson: B B1 Field\n\n62) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Thanks for the Y2!\n\tdlwillson: I think you're beating me!\n\tdlwillson: Nice job!\n\tDraw5PlayAll: You forgot to move.\n\n63) dlwillson: Move B1 Field Draw5playall\n\tdlwillson: Right you are! There you go, sir!\n\n64) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B3\nBuild G2 B3\nBuild G3 Draw5playall\n\n65) dlwillson: Build B2 Field\n\n66) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B3 G1\nBuild G3 Draw5playall\nBuild R1 Golden\n\tDraw5PlayAll: You are being very annoying. It will take skill to withstand this storm.\n\n67) dlwillson: Trade B2 R2 Field\n\n68) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Golden\nBuild R3 B3\nBuild G3 Draw5playall\n\n69) dlwillson: B B2 Field\n\n70) Draw5PlayAll: Attack B1 Draw5playall\n\tDraw5PlayAll: The first time I tried it told me I had 1 unused action because I forgot to build the G3 back. Thanks, system!\n\n71) dlwillson: M B2 Field Draw5playall\n\n72) Draw5PlayAll: Move B1 Draw5playall Golden\n\n73) dlwillson: M B1 Field Draw5playall\n\n74) Draw5PlayAll: Attack B2 Draw5playall\n\tDraw5PlayAll: You have two turns to blow my blue star to stellar dust before you run out of blue.\n\n75) dlwillson: Sacrifice Y3 Field\nMove B1 Forest Field\nMove B1 Field Draw5playall\nCatastrophe Draw5playall B\nDiscover R3 Forest Y3 Solar\n\tdlwillson: Yep. I know.\n\n76) Draw5PlayAll: Discover B3 G1 G2 G2\n\n77) dlwillson: M R3 Solar G2\n\n78) Draw5PlayAll: Sacrifice R1 Golden\nAttack R3 G2\n\tDraw5PlayAll: Nice attempt but I doubt you can continue with just 4 ships.\n\n79) dlwillson: B R1 Dlwillson\n\n80) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 G1\nBuild B1 G2\n\tDraw5PlayAll: 3 now.\n\n81) dlwillson: T R1 B1 Dlwillson\n\n82) Draw5PlayAll: Sacrifice Y3 G1\nMove B1 G2 Dlwillson\nMove B3 G2 Dlwillson\nCatastrophe Dlwillson B\nMove Y1 Draw5playall G2\n\tDraw5PlayAll: At this point my win is likely guaranteed. Tell me if you have any way to resist:\r\nFirst I discover one of the B2s and put three yellows (from B3, G1, or my homeworld) there. Then I put three blues on G2. At this point I have a doomsday machine and you cannot block it.\r\nThe only catch is that if you obtain a blue, I may need to sac a Y2 to create another system for the blues, but I think you otherwise cannot resist.\n\n83) dlwillson: B R1 Dlwillson\n\tDraw5PlayAll: I just realized I can accelerate the process this way.\n\n84) Draw5PlayAll: Sacrifice Y3 G1\nMove Y2 B3 Dlwillson\nMove Y1 B3 Dlwillson\nMove Y1 G2 Dlwillson\nCatastrophe Dlwillson Yellow\n\n\tDraw5PlayAll: Good game. I wish it had been a ladder game.\n\tdlwillson: You'd be #1 now, if it had! :-)\n\tDraw5PlayAll: That is what I meant. At least I have some self efficacy in that, assuming nothing major changes, I know I have beaten the #1 seat at least once. (I have also beat Felix but not on the ladder.)\n\nHomeworlds Online (SDG# 32198)\nStarted: 2017.6.8, Ended: 2017.7.21\nParticipants: Draw5PlayAll (S), ts52 (N)\nWinner: Draw5PlayAll\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) ts52: Build Y2 Ts52\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n11) ts52: Build Y2 Kermit\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\tDraw5PlayAll: Sadly I can do little to avoid you getting way too much yellow.\n\n13) ts52: Build Y3 Ts52\n\n14) Draw5PlayAll: Discover Y1 Draw5playall G2 G2\n\n15) ts52: Trade Y2 B2 Ts52\n\n16) Draw5PlayAll: Move B2 Draw5playall G2\n\n17) ts52: Move B2 Ts52 Kermit\n\n18) Draw5PlayAll: Build B1 G2\n\n19) ts52: Build G1 Ts52\n\tDraw5PlayAll: We are attempting to diversify, that is all.\n\n20) Draw5PlayAll: Trade B1 R1 G2\n\n21) ts52: Trade G1 R1 Ts52\n\tDraw5PlayAll: A purely defensive resource designed to deter invasions coming from Kermit.\n\n22) Draw5PlayAll: Build R2 G2\n\tts52: I'm afraid you leave us no choice but to begin researching our own defense capabilities.\n\n23) ts52: Build R2 Ts52\n\tDraw5PlayAll: That was well-intentioned. You see, on the red planet we have a race of emotional, reactionary, and aggressive aliens that have a voice in our government and sometimes try to make decisions... like take over innocent "enemy" bases. The way I see it, they are not an enemy until they initiate conflict.\n\n24) Draw5PlayAll: Build Y2 Draw5playall\n\n25) ts52: Discover Y2 Kermit G2 Robin\n\n26) Draw5PlayAll: Build Y3 G2\n\n27) ts52: Build Y3 Robin\n\n28) Draw5PlayAll: Build G1 Draw5playall\n\n29) ts52: Discover Y3 Ts52 B3 Gonzo\n\n30) Draw5PlayAll: Discover R1 G2 G1 G1\n\n31) ts52: Move R2 Ts52 Kermit\n\n32) Draw5PlayAll: Discover Y1 G2 G1 G1b\n\n33) ts52: Move Y3 Robin G1\n\n34) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G2\n\n35) ts52: Build B1 Kermit\n\n36) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 G1\nBuild R3 G2\nBuild G3 Draw5playall\n\n37) ts52: Sacrifice R2 Kermit\nAttack R2 G1\nAttack R1 G1\n\n38) Draw5PlayAll: Move R3 G2 Kermit\n\n39) ts52: Move B2 Kermit Robin\n\n40) Draw5PlayAll: Attack B1 Kermit\n\n41) ts52: Move Y1 Kermit Robin\n\n42) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B1 G2\nBuild B3 Kermit\n\n43) ts52: Move R1 G1 Robin\n\n44) Draw5PlayAll: Discover B1 G2 R3 R3\n\n45) ts52: Build R2 G1\n\n46) Draw5PlayAll: Build R3 G2\n\n47) ts52: Move R2 G1 Gonzo\n\n48) Draw5PlayAll: Move B1 G2 R3\n\tDraw5PlayAll: I wish there was a position analyzer for Homeworlds like there is for Chess... after the game I would like to see if this position was winning for me, if you really should blow my homeworld greens to shreds, etc...\n\tts52: Agreed. I think you're pretty overwhelmingly in a better position. But I've been sorely tempted to obliterate all the green in your homeworld. Sadly it would leave me a bit too vulnerable.\n\n49) ts52: Move R2 G1 R3\n\n50) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B1 R3 Ts52\nMove B1 R3 Ts52\n\n51) ts52: Move Y3 G1 R3\n\n52) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y2 G2\n\n53) ts52: Sacrifice R2 R3\nAttack B1 Ts52\nAttack B1 Ts52\n\n54) Draw5PlayAll: Sacrifice Y2 G2\nMove B1 Kermit Ts52\nMove Y1 G1b Kermit\nCatastrophe Ts52 Blue\n\n55) ts52: Build Y2 Robin\n\n56) Draw5PlayAll: Move Y1 Kermit Robin\nCatastrophe Robin Yellow\n\n57) ts52: Build G1 Ts52\n\n58) Draw5PlayAll: Build Y1 G2\n\n59) ts52: Move G1 Ts52 Gonzo\n\n60) Draw5PlayAll: Move Y1 G2 Kermit\n\n61) ts52: Build Y1 Gonzo\n\n62) Draw5PlayAll: Build Y2 Kermit\n\n63) ts52: Build Y2 Gonzo\n\n64) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 Kermit Ts52\nMove Y2 Kermit Ts52\n\n\tDraw5PlayAll: In order to preserve your home planet you must agree to these terms and conditions. Please read these carefully, particularly section 15.1 about how exactly you are to indicate unconditional surrender, section 48.9 regarding intelligence tests and improved treatment for those who pass, and section 72.8 regarding conversion of your starships.\r\n\r\nFailure to accept the terms will result in a supernova of your home star.\r\n\r\n***** TERMS AND CONDITIONS *****\r\nThe chief officer of The Galactic Empire of TS52 ("You") hereby agree to accept surrender of all starships and other space-travel related items (the "Fleet") effective immediately, including but not limited to all defensive systems at the Homeworld of TS52, the star systems Gonzo, Robin, and R3, and... [page 1 of 47]\n\tts52: :) I fully accept your terms of surrender. Excellent game. \n\nHomeworlds Online (SDG# 32354)\nVariants: "Hard time"\nStarted: 2017.6.11, Ended: 2017.6.14\nParticipants: Subhan64 (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld B1 R2 G3\n\n\nHomeworlds Online (SDG# 32338)\nStarted: 2017.6.11, Ended: 2017.8.1\nParticipants: ts52 (S), icalvinist (N)\nWinner: icalvinist\n\n1) icalvinist: Homeworld B3 Y1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) icalvinist: Build G1 Icalvinist\n\n4) ts52: Build G1 Ts52\n\n5) icalvinist: Trade G1 Y1 Icalvinist\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) icalvinist: Build Y2 Icalvinist\n\n8) ts52: Build Y2 Ts52\n\n9) icalvinist: Build G1 Icalvinist\n\n10) ts52: Discover Y1 Ts52 B1 Gonzo\n\n11) icalvinist: Discover Y1 Icalvinist B2 Loki\n\n12) ts52: Build G1 Ts52\n\n13) icalvinist: Trade G1 B1 Icalvinist\n\n14) ts52: Trade G1 B1 Ts52\n\n15) icalvinist: Build G1 Icalvinist\n\n16) ts52: Discover B1 Ts52 G1 Kermit\n\n17) icalvinist: Move G1 Icalvinist Loki\n\n18) ts52: Move Y2 Ts52 Kermit\n\n19) icalvinist: Move G1 Loki Gonzo\n\n20) ts52: Trade Y1 R1 Gonzo\n\n21) icalvinist: Sacrifice Y1 Loki\nMove G1 Gonzo Ts52\n\n22) ts52: Sacrifice R1 Gonzo\nAttack G1 Ts52\n\n23) icalvinist: Discover B1 Icalvinist Y2 Odin\n\n24) ts52: Discover G1 Ts52 B1 Gonzo\n\n25) icalvinist: Build G1 Icalvinist\n\n26) ts52: Build G2 Ts52\n\n27) icalvinist: Move G1 Icalvinist Odin\n\n28) ts52: Build B2 Kermit\n\n29) icalvinist: Build G2 Odin\n\n30) ts52: Build Y1 Kermit\n\n31) icalvinist: Trade G1 R1 Odin\n\n32) ts52: Trade B1 R1 Kermit\n\n33) icalvinist: Move G2 Odin Gonzo\n\n34) ts52: Trade G2 R2 Ts52\n\n35) icalvinist: Sacrifice R1 Odin\nAttack G1 Gonzo\n\n36) ts52: Build R1 Kermit\n\n37) icalvinist: Trade G1 Y1 Gonzo\n\n38) ts52: Discover Y2 Kermit G2 Robin\n\n39) icalvinist: Build Y3 Gonzo\n\n40) ts52: Build Y3 Kermit\n\n41) icalvinist: Build G1 Icalvinist\n\n42) ts52: Discover Y3 Kermit R2 Elmo\n\n43) icalvinist: Trade Y1 R1 Gonzo\n\n44) ts52: Build G1 Ts52\n\n45) icalvinist: Sacrifice G3 Icalvinist\nBuild G2 Gonzo\nBuild R2 Gonzo\nBuild G3 Icalvinist\n\n46) ts52: Discover G1 Ts52 Y1 Bigbird\n\n47) icalvinist: Discover R1 Gonzo G3 Loki\n\n48) ts52: Build R3 Ts52\n\n49) icalvinist: Sacrifice G3 Icalvinist\nBuild G3 Icalvinist\nBuild R3 Gonzo\nBuild R3 Loki\n\n50) ts52: Move R3 Ts52 Bigbird\n\n51) icalvinist: Sacrifice B1 Odin\nTrade G2 Y2 Gonzo\n\n52) ts52: Build G2 Ts52\n\n53) icalvinist: Move Y2 Gonzo Loki\n\n54) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Kermit\nBuild B1 Kermit\n\n55) icalvinist: Move R3 Loki Kermit\n\n56) ts52: Move B2 Kermit Robin\n\n57) icalvinist: Sacrifice R3 Gonzo\nAttack R1 Kermit\nAttack R1 Kermit\nAttack Y1 Kermit\n\n58) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Bigbird\nBuild B2 Robin\n\n59) icalvinist: Move R1 Kermit Loki\n\n60) ts52: Build B3 Robin\n\n61) icalvinist: Sacrifice G1 Icalvinist\nBuild G1 Gonzo\n\n62) ts52: Sacrifice B1 Kermit\nTrade R3 B3 Bigbird\n\n63) icalvinist: Sacrifice Y2 Icalvinist\nMove G2 Gonzo Ts52\nMove G1 Gonzo Ts52\nCatastrophe Ts52 Green\n\n64) ts52: Move B3 Bigbird Ts52\n\n65) icalvinist: Attack B1 Kermit\n\n66) ts52: Sacrifice Y3 Elmo\nMove B2 Robin Icalvinist\nMove B2 Robin Icalvinist\nMove B3 Robin Icalvinist\nCatastrophe Icalvinist Blue\n\n67) icalvinist: Build Y2 Kermit\n\n68) ts52: Build Y3 Robin\n\n69) icalvinist: Build B1 Kermit\n\n70) ts52: Trade B3 G3 Ts52\n\n71) icalvinist: Build B2 Kermit\n\n72) ts52: Build G1 Ts52\n\n73) icalvinist: Sacrifice Y2 Loki\nMove Y3 Gonzo Ts52\nMove Y1 Kermit Ts52\n\n74) ts52: Sacrifice R2 Ts52\nAttack Y3 Ts52\nAttack Y1 Ts52\n\n75) icalvinist: Move Y2 Kermit Ts52\nCatastrophe Ts52 Y\n\n76) ts52: Move Y2 Robin Icalvinist\n\n77) icalvinist: Sacrifice R1 Loki\nAttack Y2 Icalvinist\n\n78) ts52: Build Y1 Robin\n\n79) icalvinist: Trade R3 Y3 Kermit\n\n80) ts52: Move Y1 Robin Icalvinist\n\n81) icalvinist: Sacrifice Y3 Kermit\nMove B2 Kermit Ts52\nMove B1 Kermit Ts52\nMove B1 Kermit Ts52\nCatastrophe Ts52 B\n\n\tts52: I look forward to a rematch! \n\nHomeworlds Online (SDG# 32381)\nVariants: "Hard time"\nStarted: 2017.6.14, Ended: 2017.6.18\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 R1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\tdlwillson: Yay! Another game with Felix!\r\nI think I'm going to go blue/red in serious games, from now on. It just seems slightly more useful under various conditions.\n\tFelix: Hooray! I always enjoy our games, and this one is high stakes, so even better! I'm honestly still torn over whether I prefer red/blue or yellow/blue.... I flip back and forth a lot on which is better. Red/blue is probably better for defensive play and slowly amassing a powerful fleet, while yellow/blue may be a bit better at quickly expanding and diversifying and even attacking with some little jabs early on. Hmm... now I must decide.\n\n3) dlwillson: Build G1 Dlwillson\n\tFelix: And there you have it. I think blue/red might be a bit stronger as a fortress, while yellow/blue is stronger as a banker.\n\tdlwillson: Hm... That might be a good summary. But, I think of banker as a defensive position. I think goldilocks is the most aggressive.\n\n4) Felix: Build G1 Felix\n\tFelix: Interesting! I was under the impression that the fortress was a bit stronger in defensive play, since it generally requires you to go through small stars to get to my system, and small stars tend to run out in the endgame, whereas larges are typically available in the endgame, so there are more options for attacking a banker. I agree with you that Goldy might be the most aggressive though\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\tFelix: I thought about attempting a 2-2 homeworld to make this a very tight and interesting game, but I'm not sure I'm brave enough to attempt that in a ladder game.\n\n6) Felix: Trade G1 Y1 Felix\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: Build G1 Felix\n\n9) dlwillson: D G1 Dlwillson B2 Sea\n\n10) Felix: T G1 R1 Felix\n\n11) dlwillson: T G1 R1 Sea\n\n12) Felix: Build R2 Felix\n\n13) dlwillson: Build G1 Dlwillson\n\n14) Felix: Discover R2 Felix Y1 Rhombus\n\n15) dlwillson: Build Y2 Dlwillson\n\n16) Felix: Build Y2 Felix\n\n17) dlwillson: Discover Y1 Dlwillson Y2 Golden\n\n18) Felix: Move R2 Rhombus Sea\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Golden\nBuild Y3 Dlwillson\nBuild R2 Sea\n\tFelix: Great move. You've given me a thinker early on in this game.\n\n20) Felix: S G3 Felix\nB R3 Felix\nB R3 Sea\nPass\n\tFelix: There, that makes a bit more sense\n\n21) dlwillson: Sacrifice Y2 Dlwillson\nDiscover R1 Sea G1 Forest\nMove R1 Forest Felix\nCatastrophe Felix R\n\tdlwillson: I don't know if that's the *best* move I could have made, but I'm pretty sure it's the most irritating move I can make. :-)\n\n22) Felix: Sacrifice Y1 Felix\nMove R2 Sea Felix\n\tFelix: And at the end of the day, isnt that what matters?:p\n\tdlwillson: I see you're irritating me back... :-)\r\n\r\nDecisions, decisions...\n\tdlwillson: I see you're irritating me back... :-)\r\n\r\nDecisions, decisions...\n\n23) dlwillson: Sacrifice Y1 Golden\nMove R2 Sea Dlwillson\n\tdlwillson: I could not resist; it was too tempting. Spring your evil trap...\n\n24) Felix: T R3 Y3 Sea\n\tFelix: Hmm, I'm not so sure my evil trap is so evil after all. This isn't going at all how I hoped!\n\n25) dlwillson: Build R1 Dlwillson\n\n26) Felix: M Y3 Sea Felix\n\n27) dlwillson: Build Y1 Dlwillson\n\n28) Felix: T Y2 G2 Felix\n\tFelix: How did this all go so horribly wrong?\n\n29) dlwillson: Move R1 Dlwillson Golden\n\n30) Felix: B G1 Felix\n\n31) dlwillson: Discover Y1 Golden B1 Sea\n\n32) Felix: T G1 B1 Felix\n\tFelix: I think my biggest mistake was not playing the catastrophe in red a few turns back.\n\n33) dlwillson: Build G1 Dlwillson\n\n34) Felix: B B1 Felix\n\n35) dlwillson: T R2 B2 Dlwillson\n\n36) Felix: Discover B1 Felix B2 Trapezoid\n\n37) dlwillson: Move B2 Dlwillson Trapezoid\n\n38) Felix: Sacrifice G2 Felix\nBuild B2 Trapezoid\nBuild B3 Felix\nCatastrophe Trapezoid Blue\n\n39) dlwillson: Trade G1 B1 Dlwillson\n\n40) Felix: Discover B1 Felix G2 Quadrilat\n\tFelix: Fool me once...\n\n41) dlwillson: Discover B1 Dlwillson G2 Field\n\tdlwillson: I was expecting you to attack my system, but I suppose keeping a big blue is a better move. You're very hard to finish off.\n\n42) Felix: Build B2 Quadrilat\n\tFelix: I do try to be a thorn in one's side :) Can't make it too easy now. This is the ladder!\n\n43) dlwillson: B B2 Field\n\n44) Felix: Move B3 Felix Field\n\n45) dlwillson: Build B2 Field\nCatastrophe Field B\n\n46) Felix: Build B1 Quadrilat\n\n47) dlwillson: Discover Y1 Dlwillson G2 Field\n\n48) Felix: Trade B2 Y2 Quadrilat\n\n49) dlwillson: Build Y1 Field\n\n50) Felix: Build B2 Quadrilat\n\n51) dlwillson: Build Y2 Dlwillson\n\n52) Felix: Build Y3 Quadrilat\n\n53) dlwillson: D Y2 Dlwillson B2 Sky\n\n54) Felix: Discover B2 Quadrilat G1 Square\n\tFelix: Am I being annoying yet? :P I'm flirting with death on all sides here!\n\tdlwillson: Yes, very... Still thinking...\n\n55) dlwillson: D R1 Golden G1 Forest\n\n56) Felix: B B2 Quadrilat\n\n57) dlwillson: M Y2 Sky Sea\n\n58) Felix: Trade B2 R2 Quadrilat\n\n59) dlwillson: T Y2 G2 Sea\n\n60) Felix: B B2 Quadrilat\n\n61) dlwillson: B G3 Sea\n\n62) Felix: B R1 Quadrilat\n\n63) dlwillson: S Y3 Dlwillson\nM Y1 Sea Quadrilat\nM Y1 Field Sea\nM Y1 Sea Quadrilat\nC Quadrilat Y\n\n64) Felix: B B2 Square\n\tFelix: Phew, had to bust out the physical pyramids for that move. My brain is breaking.\n\n65) dlwillson: Sacrifice G3 Sea\nBuild G3 Dlwillson\nBuild G3 Sea\nBuild G3 Sea\n\tdlwillson: Doomsday machines on the horizon... Desperate times. Desperate measures.\n\n66) Felix: B B3 Square\n\n67) dlwillson: Sacrifice G3 Sea\nBuild R2 Forest\nBuild R3 Forest\nBuild G3 Dlwillson\n\n68) Felix: S B2 Square\nT B3 Y3 Square\nT B2 Y2 Quadrilat\n\tFelix: You didn't at all do what I expected and hoped when you catastrophed yellow. Great move.\n\n69) dlwillson: Sacrifice Y1 Field\nMove R3 Forest Quadrilat\n\tdlwillson: I didn't set up the plastic, but by my guess, if I hadn't done that, the game would have been over in two or three turns. Hopefully, it will take longer now.\n\n70) Felix: S Y2 Quadrilat\nM R2 Quadrilat Dlwillson\nM Y3 Square Quadrilat\n\n71) dlwillson: S R2 Forest\nA Y3 Quadrilat\nA R2 Dlwillson\n\n72) Felix: S B1 Quadrilat\nT B1 Y1 Quadrilat\n\tFelix: It will indeed. But I really can't tell if it will go your way or my way at this point! I am managing to hold on... and I hope that last moves puts you in a bit of a fix!\n\tDraw5PlayAll: I still have not been defeated legitimately in OTB Homeworlds. I think that says more about the nature of this game and its very low acknowledgement, even among gamers.\n\n73) dlwillson: T G3 B3 Sea\n\tdlwillson: What is OTB Homeworlds?\n\tFelix: Wait, wait... I wanna take that back! Haha, ugh. I can't believe I made such a rookie blunder at this crucial point. I totally overlooked that you could attack in two places, thinking you"d have to give up the r3 to dodge the green catastrophe at home.\n\n\tdlwillson: Yeah, I figured something like that, so I waited an hour for you to realize and take it back. 2 or 3 more turns.\n\tdlwillson: 6 more turns. 3 each.\n\tFelix: We could play it out, but I'll just save you the time and trouble. Good game! And no need to wait for me to realize mistakes. Just take advantage of them! And.... "I'll be baaaaaaaaaack!"\n\tdlwillson: Great! I look forward to it!\r\n\r\nDraw5: What is OTB Homeworlds?\n\tDraw5PlayAll: Over the board, I.e. face to face\n\tFelix: Same here! Our games are always a blast, even if I'm really kicking myself for how I played in this one.\r\n\r\nDraw5: it might also speak to how experience your Face-to-face opponents are :p\n\tDraw5PlayAll: \n\tDraw5PlayAll: \n\tDraw5PlayAll: \r\n\r\n \n\nHomeworlds Online (SDG# 32307)\nVariants: "Unrated, Hard time"\nStarted: 2017.6.15, Ended: 2017.6.20\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: Homeworld Y2 B1 G3\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) wil: Build G1 Wil\n\tFelix: Oh, why not?\n\twil: lol, goin for the instafreeze\n\n4) Felix: Build B1 Felix\n\n5) wil: Build G1 Wil\n\tFelix: Perhaps. Though I'm not sure if I want to go that route or just get an early medium and diversify.\n\n6) Felix: T B3 Y3 Felix\n\n7) wil: Discover G1 Wil Y3 Y3\n\n8) Felix: B B2 Felix\n\n9) wil: Build G1 Y3\n\n10) Felix: T B2 G2 Felix\n\n11) wil: Discover G1 Y3 Y2 Y2\n\n12) Felix: B B2 Felix\n\n13) wil: Sacrifice G3 Wil\nBuild G2 Wil\nBuild G2 Y3\nBuild G3 Y2\n\n14) Felix: T B2 R2 Felix\n\twil: experimentation\n\n15) wil: Trade G2 R2 Wil\n\tFelix: Interesting experiment! I like it. \n\n16) Felix: D G2 Felix B2 Rim\n\n17) wil: Sacrifice G3 Y2\nBuild G2 Wil\nBuild G3 Wil\nBuild G3 Y2\n\n18) Felix: B B2 Felix\n\n19) wil: Sacrifice G3 Y2\nBuild G3 Y2\nBuild R1 Wil\nBuild R1 Wil\n\n20) Felix: M R2 Felix Rim\n\n21) wil: T R2 B2 Wil\n\n22) Felix: T B2 Y2 Felix\n\n23) wil: M R1 Wil Y3\n\n24) Felix: S Y2 Felix\nM G2 Rim Y3\nM G2 Y3 Wil\nC Wil Green\n\n25) wil: B G1 Y2\n\n26) Felix: B Y1 Felix\n\n27) wil: D G1 Y2 Y3 Why3\n\n28) Felix: B B2 Felix\n\n29) wil: S G3 Y2\nB G2 Y2\nB G2 Y3\nB G3 Why3\n\n30) Felix: Move B1 Felix Rim\n\n31) wil: M B2 Wil Y3\n\n32) Felix: B B3 Felix\n\n33) wil: Move G3 Why3 Wil\n\n34) Felix: S B1 Rim\nT B3 G3 Felix\n\n35) wil: Trade G2 Y2 Y3\n\n36) Felix: M G3 Felix Rim\n\n37) wil: B G2 Wil\n\n38) Felix: M Y1 Felix Rim\n\n39) wil: S G3 Wil\nBuild G3 Wil\nBuild B1 Y3\nBuild B3 Y3\n\n40) Felix: B Y1 Rim\n\n41) wil: Move B2 Y3 Y2\n\n42) Felix: M Y1 Rim Y3\n\n43) wil: S Y2 Y3\nD B3 Y3 R2 R2\nM G1 Y3 R2\n\n44) Felix: M G3 Rim Y3\n\n45) wil: S G3 Wil\nB G3 Wil\nB B3 R2\nB B3 Y2\n\n46) Felix: Sacrifice R2 Rim\nAttack R1 Y3\nAttack G2 Y3\n\n47) wil: T G1 Y1 R2\n\n48) Felix: Move G3 Y3 Wil\n\twil: Lol, I got greedy.... I should have sacked the g2 and played your plan and grew 2 yellows\n\n49) wil: S G2 Y2\nB G1 Wil\nB Y2 R2\nC Wil G\n\n50) Felix: A B1 Y3\n\n51) wil: Move B3 R2 Y3\n\tFelix: Except perhaps that wasn't my plan... :P\n\twil: It wasn't your plan to blow up my y3? And if I blew up my y3 after your g3 was in there would that not have affected you negatively??\n\n52) Felix: Discover B2 Felix G2 Reggio\n\n53) wil: Sacrifice B2 Y2\nTrade B3 G3 R2\nTrade B3 R3 Y3\n\twil: I forgot to catastrophe\n\n54) Felix: Sacrifice G2 Y3\nBuild B2 Y3\nBuild B3 Reggio\n\tFelix: You know, they say hindsight is 20/20...\r\n\r\nI didn't reckon on you getting that y2 for some reason...\n\n55) wil: Sacrifice Y2 R2\nMove G3 R2 Felix\nMove B3 Y2 Felix\n\twil: it took me a while to figure out how to get it after plan A was foiled.\n\n56) Felix: Sacrifice B3 Reggio\nTrade Y1 R1 Y3\nTrade B2 R2 Y3\nTrade B2 R2 Reggio\nCatastrophe Y3 Red\n\n57) wil: Sacrifice G3 Felix\nBuild B2 Felix\nBuild B2 Felix\nBuild R1 Wil\n\twil: a little squanking was in order\n\n58) Felix: Sacrifice Y3 Felix\nMove R2 Reggio Y3\nMove R2 Y3 Wil\nMove Y1 Rim Felix\nCatastrophe Felix Blue\n\tFelix: These desperate times though.\n\n59) wil: Sacrifice G1 Y2\nBuild R1 Wil\nCatastrophe Wil R\n\twil: My lowly little defense team has been highly concerned for a long time about being left behind with such responsiblity post that last big invasion and catastrophe... he is pleased that the ole, you take one I'll take two has been initiated and prays dearly for its success.\r\n\n\n\tFelix: I guess it actually doesn't matter to much if you did or if I do it. Wow, this has been a fascinating game!\n\twil: no kidding fun stuff and lol...I didn't want to catastrophe...i had some kind of plan for if you didn't do it to me...\r\n\n\twil: and yeah...i love experimenting...every game is different but some can turn bizarre\n\twil: That is an awesome end board...all pawns!!\n\tFelix: Awesome indeed! How did you manage to end yourself? The system usually won't let me do that.\n\twil: I been buckin the system my whole life.\n\tFelix: This could be an interesting game for homeworlds theater...\n\tDraw5PlayAll: I think you guys should start using Altair, Betelgeuse, Caster (?), etc as your star names if you are considering trying to get your games on that show. I am not trying for that so I use my own name convention.\n\twil: The names are changed for the show... Converted from whatever is used.\r\n.there are two in editing and six chosen and in the pipeline now... \n\twil: And I appreciate you using my convention.. Are you also using why3, rtoo, gee1, bwon etc when stars duplicate?\n\tDraw5PlayAll: I used to use e.g. B3' and G2'' (that is two ' characters) but I switched to B3b and G2c.\n\tFelix: I'm glad there are so many shows in production! I'd also like to submit this recent game I played against ts52 (#32480). It's relatively short, but one of the most fascinating games I've played in a while. It ended with me only have a small red in my possession!\r\n\r\nhttp://superdupergames.org/?page=archive_play&gid=32480\n\tDraw5PlayAll: "Two in editing and six chosen and in the pipeline" huh? What does this mean and where are you getting it from?\n\nHomeworlds Online (SDG# 32398)\nVariants: "Unrated, Hard time"\nStarted: 2017.6.15, Ended: 2017.6.16\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: H Y1 B3 G3\n\n2) Draw5PlayAll: Homeworld G3 Y1 Y3 *\n\tFelix: Hello again. Have fun!\n\tDraw5PlayAll: Are we playing 2 games at once or am I remembering things wrong?\n\n3) Felix: B G1 Felix\n\tDraw5PlayAll: If I do not then I have to play an unfamiliar setup against a stronger player with a tempo less. I think we should make this interesting.\n\tFelix: I'm up for interesting and fun, and casual. I think you're quickly getting very skilled at this though and wouldn't necessarily consider myself a stronger player. As far as I know we just have this one game going right now\n\n4) Draw5PlayAll: Build Y1 Draw5playall\n\n5) Felix: T G3 Y3 Felix\n\n6) Draw5PlayAll: Discover Y1 Draw5playall B2 B2\n\n7) Felix: Build G1 Felix\n\tDraw5PlayAll: *access denied*\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) Felix: Build G1 Felix\n\tDraw5PlayAll: The annoying thing is that I have to get blue quickly.\n\n10) Draw5PlayAll: Move Y2 Draw5playall B2\n\n11) Felix: Trade G1 B1 Felix\n\n12) Draw5PlayAll: Build Y2 Draw5playall\n\tFelix: Yeah.... starting without blue is a really stiff handicap. That's why trying to do the insta-freeze start like you did is really only effective when done with blue.\n\n13) Felix: Discover Y3 Felix G2 Roam\n\tDraw5PlayAll: Or green... if someone picks a G1 star you can do G1 B2 G3 and be in the blue economy via your star.\n\tFelix: That's true, but most people start with a large green ship, so there's not really any point in trying to freeze out green\n\n14) Draw5PlayAll: Move Y2 Draw5playall Roam\n\tFelix: Wait... that's a bad idea.\n\n15) Felix: Move Y3 Roam Draw5playall\n\n\tFelix: It was an interesting experiment though. And hey, now we know!\n\tDraw5PlayAll: Aww, it did not let me blow up your yellow star. Rematch?\n\tFelix: Sure! I'm always up for a rematch. Interesting game!\n\nHomeworlds Online (SDG# 32399)\nStarted: 2017.6.16, Ended: 2017.7.12\nParticipants: SilentTitan (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y2 B3 G3\n\n2) SilentTitan: Homeworld R1 B3 G3\n\n3) Felix: B G1 Felix\n\n4) SilentTitan: Build G1 Silenttitan\n\tFelix: Hello again. Hope you have fun!\n\tSilentTitan: Hello same back at ya\n\n5) Felix: T G1 R1 Felix\n\n6) SilentTitan: Trade G3 R3 Silenttitan\n\n7) Felix: B G1 Felix\n\n8) SilentTitan: Build G1 Silenttitan\n\n9) Felix: Discover G1 Felix B1 Ender\n\n10) SilentTitan: Trade G1 Y1 Silenttitan\n\n11) Felix: Build G1 Ender\n\n12) SilentTitan: Build G2 Silenttitan\n\n13) Felix: Build G2 Felix\n\n14) SilentTitan: Discover G2 Silenttitan Y2 Sol\n\tFelix: I'll be camping tonight until Saturday morning, so my apologies for not moving until then!\n\n15) Felix: T G1 Y1 Ender\n\n16) SilentTitan: Build Y1 Silenttitan\n\n17) Felix: Build Y2 Ender\n\n18) SilentTitan: Discover Y1 Silenttitan B2 Soul\n\n19) Felix: M Y1 Ender Soul\n\n20) SilentTitan: Sacrifice G2 Sol\nBuild Y2 Soul\nBuild Y3 Silenttitan\n\n21) Felix: S G2 Felix\nB Y3 Ender\nB Y3 Soul\n\n22) SilentTitan: Discover Y3 Silenttitan G2 Sole\nCatastrophe Soul Yellow\n\n23) Felix: Discover Y2 Ender G2 Game\n\n24) SilentTitan: Discover Y3 Sole G1 Soul\n\n25) Felix: B Y1 Game\n\n26) SilentTitan: Build G2 Silenttitan\n\n27) Felix: B G2 Ender\n\n28) SilentTitan: Discover G1 Silenttitan B2 Solaris\n\n29) Felix: T G1 B1 Ender\n\n30) SilentTitan: Build G1 Silenttitan\n\n31) Felix: Build G3 Ender\n\n32) SilentTitan: Build G3 Solaris\n\n33) Felix: Trade G3 Y3 Ender\n\n34) SilentTitan: Trade G1 B1 Silenttitan\n\n35) Felix: Move B1 Ender Game\n\n36) SilentTitan: Build Y1 Silenttitan\n\n37) Felix: Build B2 Game\n\n38) SilentTitan: Move Y3 Soul Game\n\n39) Felix: Sacrifice Y2 Game\nMove B1 Game Silenttitan\nMove B2 Game Silenttitan\nCatastrophe Silenttitan Blue\n\n40) SilentTitan: Discover Y3 Game G1 Sol\n\n41) Felix: Build R1 Felix\n\n\tSilentTitan: Good game thaks\n\tFelix: Likewise! I enjoyed it. Thanks for playing!\n\nHomeworlds Online (SDG# 32413)\nVariants: "Unrated, Hard time"\nStarted: 2017.6.17, Ended: 2017.7.10\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B2 Y3 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) Felix: B G1 Felix\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Felix: T G1 R1 Felix\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) Felix: B R2 Felix\n\tDraw5PlayAll: Sometimes I have thought about a blue-less variant where you start with 3 ships, one of each size. It certainly eases the opening.\n\tFelix: That would be interesting, but would also probably increase the first player advantage rather greatly. I suppose you could alternate choices, but that's essentially what you do in the first few rounds, anyway. It may unnecessarily complicate the initial setup rather than lettting it happen organically through play, even if the first few moves are usually a bit dru\n\tFelix: Dry, that is.\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) Felix: B R2 Felix\n\tDraw5PlayAll: I sometimes wonder if I would be better off taking (say) the yellow economy while you grab red, and then trading into red once I break the medium barrier.\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\tFelix: That's often the question! Which path is better? I'm still figuring it out myself...\n\n11) Felix: D R2 Felix G1 Gingham\n\n12) Draw5PlayAll: Build Y1 Draw5playall\n\n13) Felix: T R2 Y2 Felix\n\n14) Draw5PlayAll: Discover Y2 Draw5playall G2 G2\n\n15) Felix: M Y2 Felix Gingham\n\n16) Draw5PlayAll: Move R1 Draw5playall G2\n\n17) Felix: B R2 Gingham\n\n18) Draw5PlayAll: Build Y1 G2\n\n19) Felix: S Y2 Gingham\nM R2 Gingham G2\nM R2 Gingham G2\n\n20) Draw5PlayAll: Build R2 G2\nCatastrophe G2 Red\n\n21) Felix: B R1 Felix\n\tDraw5PlayAll: [Begin Narration]\r\n\r\nWe were shocked to find that once again the aliens from the planet Felix have pursued hostile action. Noticing dangerous radiation buildup from the presence of three red ships in the same star system, we decided on a bold plan: build a fourth red ship and trigger a radiation catastrophe. It appears the plan has worked, as all enemy ships are destroyed and we now control our colony system again.\n\n22) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Plan thwarted. Begin rebuilding of primary weapon systems.\n\n23) Felix: B R2 Felix\n\tDraw5PlayAll: We are attempting to regroup as the attack left us with zero weaponry other than our red star.\n\n24) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n25) Felix: D R2 Felix Y1 Aegis\n\n26) Draw5PlayAll: Sacrifice B1 Draw5playall\nTrade Y2 R2 G2\n\n27) Felix: Discover R1 Felix B1 Stash\n\tDraw5PlayAll: Sensing the possibility of a hostile "visitor" we have dropped our plans with the blue economy and instead we have gained a weapon.\n\n28) Draw5PlayAll: Build Y2 G2\n\tFelix: There's only one solution to the opponent having weapons.... MORE WEAPONS!\n\tDraw5PlayAll: I see in your log that you captured the Klingons long ago. We are more interested in wormhole technology.\n\n29) Felix: Sacrifice G3 Felix\nBuild R2 Aegis\nBuild R3 Stash\nBuild R3 Felix\n\n30) Draw5PlayAll: Build R3 G2\n\tFelix: Ah, but our newly acquired Klingon warships have just returned from hyperspace...\n\tDraw5PlayAll: Red alert!\n\n31) Felix: T R3 G3 Felix\n\n32) Draw5PlayAll: Build Y2 Draw5playall\n\n33) Felix: Trade R3 Y3 Stash\n\n34) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n35) Felix: Sacrifice G3 Felix\nBuild R3 Stash\nBuild R3 Felix\nBuild Y2 Stash\n\tDraw5PlayAll: I am a little bit concerned about your empire's rapid growth and colonization.\n\n36) Draw5PlayAll: Move B2 Draw5playall G2\n\tFelix: Conquest is our prime directive. Your concerns do not concern us.\n\tFelix: I'll be camping tonight until Saturday morning, so my apologies for not moving until then!\n\n37) Felix: S Y3 Stash\nM R1 Stash G2\nM R2 Aegis G2\nC G2 Red\nM R3 Stash G2\n\n38) Draw5PlayAll: Sacrifice Y2 G2\nDiscover Y1 G2 G1 G1\nMove B2 G2 G1\n\tDraw5PlayAll: Grrrr\n\n39) Felix: M R3 Felix G1\n\n40) Draw5PlayAll: Sacrifice Y1 G1\nMove B2 G1 Felix\n\tFelix: Just for fun :)\n\n41) Felix: M R2 Aegis Felix\n\n42) Draw5PlayAll: Discover B2 Felix G1 G1b\n\n43) Felix: M Y2 Stash G2\n\n44) Draw5PlayAll: Build Y1 Draw5playall\n\tFelix: The system says you are away. Yet you are here.\n\n45) Felix: Move R3 G2 G1b\n\n46) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover B2 G1b G3 G3\n\n47) Felix: Move Y2 G2 G3\n\tDraw5PlayAll: You are unable to catch me as I have a wormhole factory that can dodge any intruders.\n\n48) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover B2 G3 Y2 Y2\n\tFelix: But you will run out of wormholes eventually... and then my warships will feed on your cold blue corpse. :)\n\n49) Felix: M Y2 G3 Y2\n\n50) Draw5PlayAll: Discover B2 Y2 Y3 Y3\n\tFelix: Round and round the mulberry bush... interesting that all the stars in the game are ones you created.\n\n51) Felix: Move Y2 Y2 G1b\n\tDraw5PlayAll: You are unable to keep this up forever, or else we get a dr... wait, SDG does not allow draws of any form. I wonder if I can hijack the POST request for a Martian Chess draw offer.\n\tDraw5PlayAll: Okay, so I tried just now to copy the form element from a Martian Chess game and then change what was required... and nothing happened.\n\n52) Draw5PlayAll: Build G1 Draw5playall\n\n53) Felix: Trade R2 G2 Felix\n\n54) Draw5PlayAll: Build G2 Draw5playall\n\n55) Felix: B G2 Felix\n\n56) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n57) Felix: D G2 Felix B1 Bazoik\n\n58) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n59) Felix: B R2 G1b\n\n60) Draw5PlayAll: Build G1 Draw5playall\n\n61) Felix: B G2 Bazoik\n\n62) Draw5PlayAll: Discover G1 Draw5playall Y2 Y2\n\n63) Felix: B G3 Felix\n\n64) Draw5PlayAll: Build G3 Draw5playall\n\n65) Felix: T G3 Y3 Felix\n\n66) Draw5PlayAll: Build G3 Y2\n\n67) Felix: D R2 G1b B2 Calypso\n\n68) Draw5PlayAll: Move R1 Draw5playall Y2\n\n69) Felix: S Y2 G1b\nM G2 Bazoik Calypso\nM G2 Calypso Draw5playall\n\n70) Draw5PlayAll: Trade G3 B3 Draw5playall\n\n71) Felix: B G3 Bazoik\n\n72) Draw5PlayAll: Attack G2 Draw5playall\n\n73) Felix: S G3 Bazoik\nB G3 Bazoik\nB Y1 Felix\nB R2 Calypso\n\tDraw5PlayAll: Wow. I actually have a fighting chance now!\n\n74) Draw5PlayAll: Sacrifice B2 Y3\nTrade G3 R3 Y2\nTrade R1 Y1 Y2\n\tDraw5PlayAll: Homeworld One may have to capitulate. The moment you have to sac a B2, something is wrong.\n\n75) Felix: Move Y1 Felix G1\n\n76) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Y2\nBuild R1 Y2\n\tFelix: Usually, yeah :P\n\tDraw5PlayAll: That changed a lot!\n\n77) Felix: Trade G3 Y3 Bazoik\n\n78) Draw5PlayAll: Discover Y1 Y2 B1 B1\n\tFelix: Now it gets interesting!\n\n79) Felix: Build G3 Bazoik\n\n80) Draw5PlayAll: Sacrifice G3 Y2\nBuild G3 Y2\nBuild Y1 Draw5playall\nBuild Y2 B1\n\n81) Felix: Sacrifice Y3 Felix\nMove R3 G1b Y2\nMove R3 G1 Y2\nCatastrophe Y2 Red\nMove R2 Calypso B1\n\n82) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n83) Felix: Sacrifice G3 Bazoik\nBuild R1 Calypso\nBuild R3 B1\nBuild R3 Felix\n\n84) Draw5PlayAll: Sacrifice Y2 B1\nDiscover Y1 B1 G2 G2\nMove R2 Draw5playall G2\n\n85) Felix: Sacrifice G2 Bazoik\nBuild Y2 G1\nBuild Y3 Bazoik\n\n86) Draw5PlayAll: Build R3 G2\n\n87) Felix: Sacrifice Y2 G1\nMove R2 Calypso Draw5playall\nMove R1 Calypso Draw5playall\n\n88) Draw5PlayAll: Move R2 G2 G1\n\n89) Felix: Sacrifice Y1 G1\nDiscover R2 B1 Y2 Insert_coin\n\n90) Draw5PlayAll: Discover G3 Y2 Y1 Y1\n\n91) Felix: Trade R3 B3 B1\n\n92) Draw5PlayAll: Sacrifice G1 Y2\nBuild Y2 G2\n\n93) Felix: Sacrifice B3 B1\nTrade R1 B1 Draw5playall\nTrade R2 B2 Draw5playall\nPass\nCatastrophe Draw5playall Blue\n\n94) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 G2 Bazoik\nMove Y2 G2 Bazoik\nCatastrophe Bazoik Yellow\n\tDraw5PlayAll: Nice move! You got me, I think.\n\n95) Felix: T R3 Y3 Felix\n\tDraw5PlayAll: Well, I can fight on I guess...\n\n96) Draw5PlayAll: Build Y1 Draw5playall\n\n97) Felix: B R1 Felix\n\n98) Draw5PlayAll: Move Y1 Draw5playall Felix\n\n99) Felix: S Y3 Felix\nM R2 Insert_coin Draw5playall\nM R1 Felix Draw5playall\nM R1 Felix Draw5playall\nC Draw5playall Red\n\tFelix: Thank you! It was a good game. I didn't expect you to draw it out longer by catastropheing my two large yellows, so that was a good move. Well played! I've enjoyed seeing you get better. Maybe I'll face you in the ladder soon!\n\tDraw5PlayAll: My plan is to get to #1 by waiting until you are off of there. But you will very likely kick me off.\n\tFelix: Currently wil is number one. There are plenty of other strong players you need to worry about more than me!\n\tDraw5PlayAll: Yeah, I think I have a good shot at beating wil, but sadly I am challenging dlwillson and he will likely kill me with the red economy.\n\n\nHomeworlds Online (SDG# 32301)\nVariants: "Unrated"\nStarted: 2017.6.18, Ended: 2017.7.17\nParticipants: wil (S), PBCrunch (N)\nWinner: wil\n\n1) PBCrunch: Homeworld Y3 B2 G3\n\n2) wil: H Y2 B1 G3\n\n3) PBCrunch: Build G1 Pbcrunch\n\n4) wil: B G1 Wil\n\n\nHomeworlds Online (SDG# 32428)\nVariants: "Hard time"\nStarted: 2017.6.18, Ended: 2017.6.21\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) wil: Homeworld G2 Y1 Y3 *\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: B Y1 Wil\n\n5) dlwillson: T G3 Y3 Dlwillson\n\n6) wil: Discover Y1 Wil B3 B3\n\n7) dlwillson: B Y2 Dlwillson\n\twil: this experiment is not going to end well\n\n8) wil: Trade Y1 B1 B3\n\tdlwillson: If I were doing the experiment, I'd have built a y2. As it is, you can't shoot me now.\n\twil: I could not...catastrophe\n\n9) dlwillson: T Y3 G3 Dlwillson\n\twil: It was a bad plan, poorly executed\n\tdlwillson: Huh. You're right. Good point.\n\n10) wil: B Y1 Wil\n\twil: Wow, I expected you to come right in and end the game!\n\n11) dlwillson: B Y2 Dlwillson\n\n12) wil: Discover Y1 Wil G3 G3\n\tdlwillson: Huh. I guess I could've. You have no red or blue.\n\n13) dlwillson: S Y2 Dlwillson\nD Y2 Dlwillson B2 Sea\nM G1 Dlwillson Sea\n\n14) wil: B Y2 G3\n\n15) dlwillson: B Y2 Sea\n\n16) wil: D Y1 G3 G2 G2\n\n17) dlwillson: M Y2 Sea B3\n\n18) wil: Build Y3 G2\n\n19) dlwillson: Build Y3 Sea\n\n20) wil: Sacrifice B1 B3\nTrade Y3 R3 G2\n\n21) dlwillson: Sacrifice Y3 Sea\nMove Y2 Sea B3\nMove Y2 B3 Wil\nMove Y2 B3 Wil\nCatastrophe Wil Y\n\tdlwillson: Good game! Thank you! Weird, though, with all the yellow and green. I could not take proper advantage of all the things you couldn't do until several turns in.\n\n\nHomeworlds Online (SDG# 32315)\nVariants: "Unrated, Hard time"\nStarted: 2017.6.18, Ended: 2017.6.20\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H B3 Y1 G3 Dlwillson\n\n2) Felix: H B2 R3 G3\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Have fun again! \n\n4) Felix: B G1 Felix\n\tdlwillson: You too!\n\n5) dlwillson: T G1 R1 Dlwillson\n\tFelix: I'm out to prove that I can only win in games that don't really matter ;)\n\tdlwillson: You very nearly beat me in that game!\n\n6) Felix: T G1 Y1 Felix\n\tFelix: It was definitely closer than I expected! I thought I was an instant goner after losing the first half of my system. Every game with you has been a nail biter lately :)\n\n7) dlwillson: B G1 Dlwillson\n\tdlwillson: If I hadn't had the cat y *and* been popping green battleships at a critical moment, you'd have win. If you hadn't botched the response to my attack, we'd still be in that game.\n\n8) Felix: B Y1 Felix\n\tFelix: It's true, but you live and you learn! You played extremely well and fended off my attack perfectly. I kept thinking I had all your possible responses covered and you kept surprising me\n\n9) dlwillson: T G3 Y3 Dlwillson\n\n10) Felix: B Y2 Felix\n\n11) dlwillson: B Y2 Dlwillson\n\n12) Felix: D Y1 Felix G1 Borgus\n\n13) dlwillson: D Y2 Dlwillson B2 Sea\n\n14) Felix: Discover Y1 Felix B1 Ender\n\n15) dlwillson: T Y3 B3 Dlwillson\n\n16) Felix: S G3 Felix\nB Y2 Borgus\nB Y3 Ender\nB Y3 Felix\n\n17) dlwillson: S G1 Dlwillson\nB Y3 Sea\n\n18) Felix: Sacrifice Y2 Borgus\nMove Y1 Borgus Sea\nMove Y1 Ender Sea\nCatastrophe Sea Yellow\n\n19) dlwillson: Trade B3 G3 Dlwillson\n\n20) Felix: Trade Y3 G3 Felix\n\tdlwillson: Hm. I don't think I'll be recovering from that, but I suppose we'll see. Nice sequence.\n\n21) dlwillson: B R1 Dlwillson\n\tFelix: Thanks! I've been making a lot of silly mistakes in my games lately though, so you never know.\n\n22) Felix: Build Y1 Felix\n\n23) dlwillson: T R1 Y1 Dlwillson\n\n24) Felix: Sacrifice G3 Felix\nBuild Y2 Ender\nBuild Y2 Ender\nBuild Y3 Felix\n\tFelix: But as Gollum would say, "We've a ways to go yet, precious."\n\n25) dlwillson: D Y1 Dlwillson G2 Field\n\tdlwillson: Here we go again! :-)\n\n26) Felix: Move Y2 Ender Field\n\n27) dlwillson: Discover Y1 Field G1 Forest\n\tFelix: I'll try not to repeat myself :P\n\n28) Felix: Move Y1 Felix Forest\n\n29) dlwillson: Build R1 Dlwillson\n\n30) Felix: Build Y3 Field\n\n31) dlwillson: Sacrifice R1 Dlwillson\nAttack Y1 Forest\n\n32) Felix: Trade Y2 R2 Felix\n\n33) dlwillson: Move Y1 Forest Field\n\n34) Felix: Move Y2 Field Forest\n\tdlwillson: s r; a y1\r\nb y2\r\ns y2; c y # three yellow battleships, very neat\n\n35) dlwillson: Discover Y1 Forest Y2 Solar\n\tFelix: The dance of the yellows...\n\tdlwillson: I guess I could drive the y1 in, rather than build the y2... No, that's not any better. Hmm...\n\tdlwillson: Or you could do that, and change the choices... Hm... I think I'm going to have to setup some plastic and have a think. I see lots of bad choices and need to figure out which one is least bad.\n\tFelix: No problem. Take your time! I'm glad to have created a conundrum for you :) You consistently surprise me with the clever ways you wriggle out of what I think are foolproof traps though.\n\n36) Felix: T Y3 G3 Ender\n\n37) dlwillson: Discover Y1 Field Y3 Golden\n\n38) Felix: M Y2 Forest Felix\n\n39) dlwillson: B G1 Dlwillson\n\n40) Felix: Sacrifice Y3 Felix\nMove G3 Ender Field\nMove Y3 Field Dlwillson\nMove G3 Field Dlwillson\n\n41) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Dlwillson\nBuild Y3 Golden\nBuild R1 Dlwillson\n\n42) Felix: Sacrifice R2 Felix\nAttack R1 Dlwillson\nAttack R1 Dlwillson\n\tdlwillson: Nice! I've been expecting something along that line. Let me see if I can find an escape route.\n\n43) dlwillson: Sacrifice Y3 Golden\nMove Y1 Golden Solar\nMove Y1 Solar Dlwillson\nMove Y1 Solar Dlwillson\nCatastrophe Dlwillson Y\n\tdlwillson: I really can't, but maybe I can stave off the inevitable for a move or two.\n\n44) Felix: B G1 Dlwillson\nC Dlwillson Green\n\tFelix: Yep, I think I've got your number now. This was an interesting game. Quite the yellow struggle!\n\n\tdlwillson: Another excellent game. Well done.\n\tFelix: Good game as always! I'll see you on the ladder soon probably :)\n\nHomeworlds Online (SDG# 32351)\nVariants: "Hard time"\nStarted: 2017.6.19, Ended: 2017.6.20\nParticipants: Ausmuh (S), Felix (N)\nWinner: Felix\n\n1) Felix: Pass\n\n2) Ausmuh: Homeworld G3 R1 B3\n\tFelix: Hello again! I wanted to see if the system would just let me pass my first turn since I actually tend to prefer going second. It does! If you'd also rather go second, though, just pass again and I'll take my turn first.\n\tAusmuh: Hey, groovy! No worries here, I've thought about that myself. It seems Pyramid Arcade has encouraged some interesting thoughts for Homeworlds. I saw the thread at BGG a player exploring same sized homeworlds as an option too.\r\n\r\nThis is the only game I'm starting this time so I shouldn't overwhelm myself! GL;HF\n\n3) Felix: Homeworld R2 B2 G3 *\n\n4) Ausmuh: Build B1 Ausmuh\n\tFelix: That player on BGG was actually me! Haha, thanks for reminding me that I want to experiment with it more!\n\tAusmuh: That's awesome! I really think there is something there and it's just uncharted territory. I look forward to seeing that chapter develop.\n\n5) Felix: Build G1 Felix\n\n6) Ausmuh: Build B1 Ausmuh\n\n7) Felix: Trade G1 B1 Felix\n\n8) Ausmuh: Trade B1 Y1 Ausmuh\n\n9) Felix: Build G1 Felix\n\n10) Ausmuh: Trade B1 G1 Ausmuh\n\n11) Felix: T G1 Y1 Felix\n\n12) Ausmuh: Discover G1 Ausmuh B2 Zog\n\n13) Felix: B G1 Felix\n\n14) Ausmuh: Build B1 Ausmuh\n\n15) Felix: Trade G1 R1 Felix\n\n16) Ausmuh: Build G1 Zog\n\n17) Felix: B R1 Felix\n\n18) Ausmuh: Trade G1 Y1 Zog\n\n19) Felix: Build Y2 Felix\n\n20) Ausmuh: Build Y2 Zog\n\n21) Felix: Sacrifice Y2 Felix\nMove R1 Felix Ausmuh\nMove R1 Felix Ausmuh\n\n22) Ausmuh: Attack R1N Ausmuh\n\tFelix: Not positive if this will work out... but here goes!\n\tAusmuh: I was wishing I could attack both of those when they came. :) Stressful being connected like this. I like it!\n\n23) Felix: Build R2 Ausmuh\nCatastrophe Ausmuh Red\n\n24) Ausmuh: Trade B1 R1 Ausmuh\n\tFelix: It definitely changes the tone of the whole game and makes it much more intense rather than being a slow, more casual build in the beginning like most games!\n\n25) Felix: Build Y2 Felix\n\n26) Ausmuh: Discover Y2 Zog G1 Alt\n\n27) Felix: Build G1 Felix\n\n28) Ausmuh: Build G2 Zog\n\tAusmuh: My green might face the same fate! I could really use a R2 to quell this uprising.\n\n29) Felix: Sacrifice Y2 Felix\nMove G3 Felix Ausmuh\nMove G1 Felix Ausmuh\n\tAusmuh: If I move a y2 in to apply pressure, you simply attack it. It doesn't seem like I could take your ships faster then you could blow up my green. Hmmm\n\n30) Ausmuh: Attack G3N Ausmuh\n\tFelix: Yeah, I think I'll be able to blow up your star first!\r\nThis has been a strange game, but pretty fun! If you want to have a rematch, we can play a more normal game that isn't so tight.\n\tAusmuh: All's fair in love and war. :) I don't mind losing to small universes. I dig the unexplored. But I will accept your standing challenge again for sure.\r\n\r\nI liked your clever thinking on passing the first turn and I think small universes have a place in the game. Also curious about identical homeworlds too.\n\n31) Felix: Build G2 Ausmuh\nCatastrophe Ausmuh Green\n\tFelix: Very fun little game! Thanks for playing. I do think there are untapped possibilities when it comes to intentionally creating a tiny universe with same size stars, but I haven't really figured them out yet. I think the game is balanced enough that it won't have a HUGE impact on the strategy, but I do love finding those little nuances to this game that make a difference!\r\n\r\nI look forward to our rematch. I just set up an unrated standing challenge if you want to play without putting your rating on the line every time.\n\n\nHomeworlds Online (SDG# 32443)\nVariants: "Hard time"\nStarted: 2017.6.20, Ended: 2017.6.26\nParticipants: Felix (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) Felix: H G2 R3 B3\n\tAusmuh: Just saw your message after I accepted. I'm not too worried about my rating at the moment but I appreciate the thought. Have fun. Don't feel obligated to play 'standard' if you don't want to. It's all good to me. Have fun!\n\n3) Ausmuh: Build B1 Ausmuh\n\tFelix: Yeah, I'm not too worried about ratings either. If my sense of self worth is determined by an arbitrary number on an online game website, I have bigger problems to worry about :p and I usually start with a large green shit, so this is fairly non-standard for me. We'll see how it plays out! Have a good game! \n\n4) Felix: Build B1 Felix\n\tFelix: Oh, I'm so sorry. I just noticed the typo in my last comment, hahaha. I meant SHIP!!!\n\n5) Ausmuh: Discover B1 Ausmuh G2 Zog\n\tAusmuh: Haha no worries! I had a good laugh :D\n\n6) Felix: Trade B1 Y1 Felix\n\n7) Ausmuh: Trade B1 Y1 Zog\n\n8) Felix: Build Y2 Felix\n\n9) Ausmuh: Build Y2 Zog\n\n10) Felix: Trade Y2 R2 Felix\n\n11) Ausmuh: Build B1 Ausmuh\n\n12) Felix: Build Y2 Felix\n\n13) Ausmuh: Sacrifice B1 Ausmuh\nTrade Y1 R1 Zog\n\n14) Felix: Build B1 Felix\n\n15) Ausmuh: Build B1 Ausmuh\n\n16) Felix: Build R1 Felix\n\n17) Ausmuh: Build Y1 Zog\n\n18) Felix: Build R1 Felix\nCatastrophe Felix Red\n\n19) Ausmuh: Trade B3 R3 Ausmuh\n\tFelix: This is a fun (and probably stupid) way to attack :)\n\n20) Felix: Trade B1 R1 Felix\n\tAusmuh: That's clever, in the right situation it may be quite the problem for me. Hope this isn't one!\n\n21) Ausmuh: Build B1 Ausmuh\n\tDraw5PlayAll: About Felix's second comment: that is one of the thing I most hate about curse words: a lot of them are one letter away from perfectly honest and acceptable words. \n\tFelix: I'll be camping tonight until Saturday morning, so my apologies for not moving until then!\n\tAusmuh: Enjoy!\n\n22) Felix: D Y1 Felix G1 Brovurst\n\n23) Ausmuh: Move B1 Ausmuh Zog\n\n24) Felix: B Y2 Brovurst\n\n25) Ausmuh: Discover Y1 Zog G1 Bog\n\n26) Felix: Build Y3 Felix\n\tAusmuh: Welcome back! Now... what was my secret plan again??\n\n27) Ausmuh: Build Y3 Bog\n\tFelix: Thank you! And don't worry... I've forgotten my secret plan too!\n\n28) Felix: Sacrifice Y2 Brovurst\nMove Y3 Felix Ausmuh\nMove B3 Felix Ausmuh\n\n29) Ausmuh: Attack Y3S Ausmuh\n\tFelix: Ah, yes, that's what it was. I hope this works!\n\tAusmuh: Ah! Maybe, I think you might need an r2 here.\r\n\r\nI'll take a 3pip\r\nYou take my R3\r\nI sac to take R3\r\nYou sac to take R3\r\n\r\nWait a minute...... Here we go!\n\n30) Felix: Move B3 Ausmuh Felix\n\tAusmuh: This is a interesting situation. I will be putting this one down in plastic to stare at some time. :)\n\n31) Ausmuh: Trade B1 G1 Ausmuh\n\tFelix: Wait a second. That didn't work at all :P Retreat! Retreat!\n\n32) Felix: B Y2 Felix\n\tAusmuh: Ugh. Hindsight is 20/20.\r\n\r\nToo bad for me that I can't just move in my yellows. Homeworlds can be quite delicate. Hopefully I don't waste my newly acquired advantage.\n\n33) Ausmuh: Build G2 Ausmuh\n\tFelix: Indeed. Looking at a situation before you move and after the move can be totally different animals. I do have a very steep hill to climb up now… But anything can happen! :-) \n\n34) Felix: D Y2 Felix G3 Florist\n\n35) Ausmuh: Sacrifice Y2 Zog\nMove G1 Ausmuh Felix\nMove G2 Ausmuh Felix\n\n36) Felix: D R1 Felix G3 Hosget\n\n37) Ausmuh: Sacrifice Y3 Bog\nDiscover R1 Zog B3 Log\nMove B1 Zog Ausmuh\nMove Y1 Bog Log\n\tFelix: Walking a knife's edge!\n\tAusmuh: Haha, so good!\r\nI would have traded for an R2 but this seems to work! How in the hell can I get the 4th green! :)\n\n38) Felix: S B3 Felix\nT Y2 G2 Florist\nT R1 G1 Hosget\nPass\n\tFelix: If I had traded for an hour or two, you could've just built that last green right away and finished off my star. As it is, I think I only delayed the inevitable a turn. Good play! \n\n39) Ausmuh: Sacrifice R3 Ausmuh\nAttack Y2S Felix\nPass\nPass\n\tFelix: I'm game! Very well played. \n\tFelix: Good game* \n\tAusmuh: Thanks, good game! The self destruct didn't work out this time but still a clever thought! \n\tFelix: I like to try to think outside the box sometimes. Sometimes it pays off.... sometimes it doesn't!\n\n\nHomeworlds Online (SDG# 32306)\nStarted: 2017.6.20, Ended: 2017.8.26\nParticipants: MobyNostromo (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) MobyNostromo: H G1 B2 Y3\n\n3) Draw5PlayAll: Homeworld G1 B2 G3 *\n\n4) MobyNostromo: Build Y1 Mobynostromo\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) MobyNostromo: D Y1 Mobynostromo Y3 Tweety\n\n7) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n8) MobyNostromo: Build Y1 Mobynostromo\n\n9) Draw5PlayAll: Build G2 Draw5playall\n\n10) MobyNostromo: T Y3 G3 Mobynostromo\n\n11) Draw5PlayAll: Discover G1 Draw5playall Y3 Y3\n\n12) MobyNostromo: T G3 R3 Mobynostromo\n\n13) Draw5PlayAll: Build G2 Draw5playall\n\n14) MobyNostromo: Build Y1 Mobynostromo\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) MobyNostromo: D Y1 Mobynostromo G3 Krypton\n\n17) Draw5PlayAll: Build G2 Y3\n\n18) MobyNostromo: B Y2 Mobynostromo\n\n19) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n20) MobyNostromo: B R1 Mobynostromo\n\n21) Draw5PlayAll: Discover G2 Draw5playall B3 B3\n\n22) MobyNostromo: M R1 Mobynostromo Y3\n\n23) Draw5PlayAll: Build R1 Draw5playall\n\n24) MobyNostromo: A G1 Y3\n\n25) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack G1 Y3\nAttack R1S Y3\n\n26) MobyNostromo: B R1 Mobynostromo\n\n27) Draw5PlayAll: Build G3 B3\n\n28) MobyNostromo: M R1 Mobynostromo Krypton\n\n29) Draw5PlayAll: Sacrifice G3 B3\nBuild G3 B3\nBuild G3 Y3\nBuild R2 Draw5playall\n\n30) MobyNostromo: Build Y2 Krypton\n\n31) Draw5PlayAll: Build R2 Y3\n\n32) MobyNostromo: M Y1 Tweety Mobynostromo\n\n33) Draw5PlayAll: Trade G3 B3 B3\n\n34) MobyNostromo: B R2 Krypton\n\n35) Draw5PlayAll: Sacrifice G3 Y3\nBuild G3 Y3\nBuild G3 B3\nBuild B1 B3\n\n36) MobyNostromo: M Y1 Mobynostromo Y3\n\n37) Draw5PlayAll: Discover G3 Y3 B1 B1\n\n38) MobyNostromo: S Y2 Krypton\nM Y1 Mobynostromo Y3\nM Y2 Mobynostromo Y3\nC Y3 Y\n\n39) Draw5PlayAll: Sac G3 B3\nBuild G1 B1\nBuild G2 B1\nBuild G3 B3\n\n40) MobyNostromo: B Y1 Krypton\n\n41) Draw5PlayAll: Trade R1 B1 Draw5playall\n\tDraw5PlayAll: That hurt you more than it hurt me, and you STILL have no green!\n\tMobyNostromo: Yeah, but it was fun to do. Fun is good - you should try it sometime.\n\n42) MobyNostromo: B R1 Mobynostromo\n\n43) Draw5PlayAll: Discover B1 Draw5playall R3 R3\n\n44) MobyNostromo: T R1 Y1 Mobynostromo\n\n45) Draw5PlayAll: Trade G3 Y3 B1\n\n46) MobyNostromo: T R3 G3 Mobynostromo\n\n47) Draw5PlayAll: Sacrifice Y3 B1\nMove G3 B3 Mobynostromo\nMove G2 B3 Mobynostromo\nMove B1 B3 Mobynostromo\nCatastrophe Mobynostromo Green\n\n48) MobyNostromo: T Y1 R1 Mobynostromo\n\n49) Draw5PlayAll: Sacrifice G2 B1\nBuild B2 Mobynostromo\nBuild B3 Mobynostromo\nCatastrophe Mobynostromo Blue\n\n\tDraw5PlayAll: Good try... the instafreeze is powerful.\n\tMobyNostromo: Cool. I'm still learning, so I have this incredible journey with this game. I'm actually quickly falling in love with Homeworlds. It is an amazing game with so many possibilities. I guess I'm at that stage in discovering a game where I'm enrapt in wonder at everything all around me. Homeworlds is just awesome!!\n\nHomeworlds Online (SDG# 32479)\nVariants: "Hard time"\nStarted: 2017.6.21, Ended: 2017.6.28\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Felix: H R2 B3 G3\n\n3) wil: Build G1 Wil\n\tFelix: Looks like you got to me before I had a chance to challenge dlwillson :) good luck and have fun! I hope this one is as interesting as our last bout.\n\n4) Felix: B G1 Felix\n\twil: oops...\n\n5) wil: Trade G1 Y1 Wil\n\tDraw5PlayAll: Felix, you COULD have dropped to position 6 and then challenged dlwillson again.\n\tFelix: And run from a fight? Never, sir! Not when a captain's honor is on the line!\n\n6) Felix: T G1 Y1 Felix\n\n7) wil: B Y2 Wil\n\tFelix: I'll be camping tonight until Saturday morning, so my apologies for not moving until then!\n\twil: No worries....have fun...make some.jiffy pop! I got over 40 days under the stars last year....on 15 so far this year.\n\n8) Felix: B Y2 Felix\n\n9) wil: D Y1 Wil G3 G3\n\tFelix: Oh, I do love jiffy pop! Didn't get any this time though. We used to go camping a lot, but it has been a little bit trickier with a baby and a puppy.\n\n10) Felix: D Y1 Felix G1 Rumpus\n\n11) wil: D Y2 Wil B3 B3\n\n12) Felix: B Y2 Rumpus\n\n13) wil: B Y3 G3\n\n14) Felix: M Y1 Rumpus G3\n\n15) wil: D Y3 G3 G1 G1\n\n16) Felix: B Y3 Rumpus\n\n17) wil: B Y3 G1\n\n18) Felix: T Y2 R2 Felix\n\n19) wil: T Y2 R2 B3\n\n20) Felix: Move Y3 Rumpus B3\n\n21) wil: S Y1 G3\nM R2 B3 G1\n\n22) Felix: Move Y3 B3 G1\n\n23) wil: S Y3 G1\nD Y3 G1 G2 G2\nM R2 G1 G2\nP\n\n24) Felix: Build Y1 G1\n\twil: Taking the little ones camping is great stuff... \n\tFelix: For sure. It's loads of fun, especially now that our daughter is old enough to actually know what's going on around her :P\n\n25) wil: B G1 Wil\n\n26) Felix: Build Y2 G3\n\twil: My kids are 24..but when they were preteen they became great campers...they set up tents, the kitchen, cooked, cleaned, packed the containers and car...I didn't even have to say anything, they were super efficient.\r\n\n\twil: My kids are 24..but when they were preteen they became great campers...they set up tents, the kitchen, cooked, cleaned, packed the containers and car...I didn't even have to say anything, they were super efficient.\r\n\n\tFelix: Ah, your kids aren't much younger than me! I'm 26. Didn't realize I was competing against an older and wiser fellow :) My strategies shall now change accordingly.\n\n27) wil: D G1 Wil Y3 Y3\n\n28) Felix: B Y2 Rumpus\n\n29) wil: B R1 G2\n\n30) Felix: Build G2 Felix\n\n31) wil: B G2 Wil\n\n32) Felix: Build R1 Felix\n\n33) wil: D R1 G2 B1 B1\n\n34) Felix: Trade R1 B1 Felix\n\n35) wil: B R1 G2\n\n36) Felix: Move Y1 G1 Felix\n\n37) wil: M R1 G2 Rumpus\n\n38) Felix: Sacrifice Y2 Rumpus\nMove B1 Felix G1\nMove R2 Felix G1\n\n39) wil: S G3 Wil\nB G3 Wil\nB R1 B1\nB R3 Rumpus\n\n40) Felix: Sacrifice G3 Felix\nBuild R3 G1\nBuild Y2 G1\nBuild G3 Felix\n\twil: Lol, you are playing a 60 year old...that slept outside over 40 days last year, from minus 7 at standing rock to 102 at burning man...\n\twil: I didn't have my kids till I was 36...\n\n41) wil: A Y2 Rumpus\n\tFelix: I'm impressed! That's quite a temperature range. My impression was that this type of nerdy game generally appealed to a younger demographic, but I'm glad it has a broader appeal than I realized! How did you get into the game? You said you're friends with Andy Looney, right?\r\n\r\nMy dad was 55 when I was born... he's nearly 82 now. He started having kids around 38, I believe, so he beat you by a couple years!\n\n42) Felix: Move R3 G1 Y3\n\n43) wil: B R3 G2\n\twil: This is chess but better... It will take time to catch on.... My daughter bought zendo when she was in third grade...nearly a decade later I was playing poker with john, korey and Andy....with the same pyramids as chips...and I learned the rest of the story.\n\n44) Felix: Sacrifice G3 Felix\nBuild B1 G1\nBuild B2 G1\nBuild G3 Felix\n\n45) wil: M R3 G2 G3\n\tFelix: I agree. It will catch on, and I hope soon, since It's hard to find anyone willing to play outside of this website. I still haven't played much Zendo, but have enjoyed what I played! It's very cool that you have been along since the early days of the system.\n\n46) Felix: Sacrifice Y3 G1\nMove Y1 G3 Wil\nMove Y2 G3 Wil\nDiscover Y2 G1 Y3 Keepaway\n\n47) wil: M Y3 G2 G1\n\n48) Felix: S R2 G1\nA G2 Wil\nA G1 Y3\n\twil: I have the same problem here as I do with chess .... I should take longer to look but I don't last four moves had lots of choices ... and I still shoot from the hip\n\n49) wil: S R3 G3\nA G2 Wil\nA Y2 Wil\nA Y1 Wil\n\tFelix: No worries... I will do the same :)\n\tdlwillson: If either of you are in Colorado, I'll drive for a game.\n\twil: How much would the 1st place prize have to be to get people to fly to a tourney.....hmmm\n\n50) Felix: Move Y2 Keepaway Wil\nCatastrophe Wil Yellow\n\tFelix: I'd love to se Colorado, dlwillson. I'm in North Carolina, however :/ I'd love to do a tourney of some kind. I wondered if it was feasible to do one online. This game really needs to be implemented somewhere like BoardGameArena, which has a realtime system.\n\n51) wil: S R3 Rumpus\nA B2 G1\nA B1 G1\nA B1 G1\n\twil: You two have any good games examples for he theater? Classic bluebirds, or doomsdays, or freezeouts ....or just darn interesting games? Kudos to submitting ones you lost by stupid mistakes.\n\tdlwillson: I'll pay $128 to be in a competitive tournament.\n\n52) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Y3\nBuild Y1 Felix\n\tdlwillson: The crushing defeat I just got from Draw5 is pretty interesting. Also, the small game Felix and I played was pretty interesting.\n\tFelix: The game I just lost to Ausmuh was fairly interesting. I did some really stupid (but unique) things, such as intentionally blowing up part of my homeworld in order to threaten a catastrophe in his. Didn't work out, but made for some interesting moments. I seem to recall that you and I had a pretty long and fascinating game not long ago too, Wil.\n\tFelix: Let's see... Game #32289 with Draw5PlayAll was pretty fascinating, since I managed to squeak out a win with an usual 2-2 homeworld star. If you're looking for a freezout... I managed a pretty decent yellow freeze against ts52 in game #32171. And my recent ladder defeat to dlwillson was pretty fascinating with me barely hanging onto half of a my homeworld while desperately trying to keep the blue out of his hands. That one may not be a good candidate though, because I resigned instead of playing it out.\n\n53) wil: T G3 Y3 Wil\n\n54) Felix: Move G1 Y3 Wil\n\tFelix: Or this game for a good example of a doomsday machine :) I was so focused on trying to get what I needed, I utterly failed to notice you setting up a nice apocalypse for me!\n\n55) wil: S Y3 G1\nM B2 G1 Felix\nM B1 G1 Felix\nM B1 G1 Felix\nC Felix B\n\n56) Felix: S G2 Felix\nB G1 Wil\nB G2 Wil\n\twil: Lol, I was quietly amassing whikst you were attacking and losing all those yellow you had accumulated...\n\twil: Still a squeaker...\n\n57) wil: S Y3 Wil\nM R1 Rumpus Felix\nM R1 B1 Felix\nM R1 B1 Felix\nC Felix R\n\tFelix: Indeed. Not my most situationally aware game ever. Well done and congratulations! \n\tFelix: I have no idea why I didn't catastrophe on my last turn. That would have dragged things out a bit longer I suppose.\n\tFelix: Though only a turn or two at most, I think.\n\twil: Lol yup, ids had to sack my y2 to get the r2 home which would have really looked like a bad ending with your r3 in my hw!\n\n\nHomeworlds Online (SDG# 32504)\nVariants: "Hard time"\nStarted: 2017.6.23, Ended: 2017.7.22\nParticipants: Aristos (S), Subhan64 (N)\nWinner: Aristos\n\n1) Subhan64: Homeworld B3 Y2 G3\n\n2) Aristos: Homeworld G2 Y1 B3\n\n3) Subhan64: Build G1 Subhan64\n\n\n\n4) Aristos: Build B1 Aristos\n\n5) Subhan64: Build G1 Subhan64\n\n6) Aristos: Trade B1 G1 Aristos\n\n7) Subhan64: Trade G1 Y1 Subhan64\n\n8) Aristos: Discover G1 Aristos Y3 Submarine\n\n9) Subhan64: Discover G1 Subhan64 Y1 Kermit\n\n10) Aristos: Build B1 Aristos\n\n11) Subhan64: Build G1 Kermit\n\tAristos: Ping!\n\tDraw5PlayAll: Oops, sorry!\n\n12) Aristos: Build G2 Submarine\n\n13) Subhan64: Build Y2 Subhan64\n\n14) Aristos: Move G1 Submarine Kermit\n\n15) Subhan64: Move G1 Kermit Submarine\n\n16) Aristos: Trade B1 R1 Aristos\n\n\nHomeworlds Online (SDG# 32480)\nStarted: 2017.6.26, Ended: 2017.7.7\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\tts52: Have a good game.\n\n3) ts52: Build G1 Ts52\n\tFelix: Likewise! I always enjoy our games.\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: T G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Trade B2 Y2 Ts52\n\n10) Felix: Trade B1 Y1 Felix\n\n11) ts52: Discover B1 Ts52 G2 Kermit\n\n12) Felix: Build Y1 Felix\n\n13) ts52: Build G1 Ts52\n\n14) Felix: Discover Y1 Felix G1 Florist\n\n15) ts52: Move Y2 Ts52 Kermit\n\n16) Felix: Build Y1 Florist\n\n17) ts52: Build Y2 Kermit\n\n18) Felix: Move Y1 Florist Kermit\n\n19) ts52: Trade Y2 R2 Kermit\n\n20) Felix: Move Y1 Kermit Ts52\n\n21) ts52: Trade G1 R1 Ts52\n\n22) Felix: Sacrifice G3 Felix\nBuild Y2 Ts52\nBuild Y2 Ts52\nBuild Y3 Felix\nCatastrophe Ts52 Yellow\n\n23) ts52: Build G1 Ts52\n\tts52: Oh well done. That was very well done.\n\n24) Felix: Trade Y1 G1 Felix\n\n25) ts52: Trade G1 Y1 Ts52\n\tFelix: Thank you kindly, sir!\n\n26) Felix: Build G1 Felix\n\n27) ts52: Move R2 Kermit Florist\n\n28) Felix: D Y1 Florist G2 Forest\n\n29) ts52: Build R1 Ts52\n\n30) Felix: Trade G1 R1 Felix\n\n31) ts52: Sacrifice Y2 Kermit\nMove R1 Ts52 Felix\nMove R1 Ts52 Felix\nCatastrophe Felix Red\n\n32) Felix: Sacrifice B2 Felix\nTrade G1 R1 Felix\nTrade Y1 B1 Forest\n\tFelix: Oh, excellent. Not sure how I overlooked that!\n\n33) ts52: Sacrifice Y1 Ts52\nMove R2 Florist Forest\n\n34) Felix: Move R1 Felix Kermit\n\tts52: I've been trying to decide when the right time was to pull that trigger. We'll see if I made the right call or not.\n\n35) ts52: Attack B1 Forest\n\tFelix: I think the timing will work out for you, especially with that last move of yours, which was also good! I thought I could get the blue edge on you. I might still, but it will be tricky\n\n36) Felix: Attack B1 Kermit\n\tts52: Thanks. We'll see if it's enough to turn the tide in my favor.\n\n37) ts52: Build B2 Forest\n\tFelix: I think it will be, unless you make a mistake. You're a step ahead at the moment.\n\n38) Felix: Build B2 Kermit\n\n39) ts52: Trade R2 Y2 Forest\n\n40) Felix: Trade B2 G2 Kermit\n\n41) ts52: Build B2 Forest\n\n42) Felix: Sacrifice Y3 Felix\nMove R1 Kermit Felix\nMove B1 Kermit Ts52\nMove G2 Kermit Ts52\n\n43) ts52: Move B2 Forest Felix\n\tFelix: Phew... I think I managed to just nip out of that one. Talk about escaping with your hair singed!\n\tts52: Oh wow, nice move. Very well done.\n\n44) Felix: S G2 Ts52\nB B2 Ts52\nB B3 Ts52\nC Ts52 Blue\n\tts52: I did not see _that_ coming.\n\tFelix: It took me quite a lot of brain power to come up with that as a possible move. I thought for sure I was a goner. It was you trading away that red that gave me the opening. Great game!\n\tts52: Very well played. I look forward to our next.\n\tts52: I figured I could get a little extra tempo by trading the red instead of the blue. That'll teach me. :)\n\tFelix: In any other situation, I think that would have been a great idea. But losing any attack power left you open to that little construction trick. I can't say there's much left of my fleet though! I've never had a game end with only one small left in my possession. Super fascinating game all around.\n\tts52: Definitely one for the books. :)\n\n\nHomeworlds Online (SDG# 32434)\nVariants: "Unrated, Hard time"\nStarted: 2017.6.26, Ended: 2017.6.29\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld Y2 B3 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\tdlwillson: Done camping?\n\tFelix: Hope you don't mind the consistent matches against me. I enjoy our bouts too much to resist. :P\n\tFelix: Yep! And it was extremely wet. I taught someone from our church how to play Homeworlds though, so that was a good way to beat the drizzle.\n\n3) Felix: Build G1 Felix\n\n4) dlwillson: Build G1 Dlwillson\n\tdlwillson: Mind? Of course not! I enjoy them thoroughly.\n\n5) Felix: Trade G1 B1 Felix\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) Felix: Build B2 Felix\n\n8) dlwillson: Build B2 Dlwillson\n\n9) Felix: D B2 Felix Y1 Cypher\n\n10) dlwillson: Trade B2 Y2 Dlwillson\n\n11) Felix: B B2 Felix\n\n12) dlwillson: Discover B1 Dlwillson G2 Field\n\n13) Felix: D B1 Felix G1 Forest\n\n14) dlwillson: Move Y2 Dlwillson Field\n\n15) Felix: T B2 Y2 Felix\n\n16) dlwillson: Build B2 Field\n\n17) Felix: D B2 Cypher G2 Kringo\n\n18) dlwillson: M B2 Field Forest\n\n19) Felix: T B1 Y1 Forest\n\n20) dlwillson: B B1 Forest\n\n21) Felix: M Y1 Forest Kringo\n\n22) dlwillson: T B1 Y1 Forest\n\n23) Felix: T Y2 R2 Felix\n\n24) dlwillson: T B2 R2 Forest\n\n25) Felix: Build R1 Felix\n\n26) dlwillson: B G1 Dlwillson\n\n27) Felix: Build G1 Felix\n\n28) dlwillson: Trade G1 R1 Dlwillson\n\n29) Felix: Trade R2 Y2 Felix\n\n30) dlwillson: Build Y1 Forest\n\n31) Felix: Build Y3 Kringo\n\n32) dlwillson: B Y3 Field\n\tFelix: I am just not happy with any of my choices in this game!\n\n33) Felix: D Y2 Felix G1 Sublime\n\tdlwillson: I'm trying hard to offer you unattractive alternatives.\n\n34) dlwillson: Sacrifice Y2 Field\nMove Y1 Forest Kringo\nMove Y1 Forest Kringo\nCatastrophe Kringo Y\n\tFelix: The ugliest.\n\n35) Felix: Discover G1 Felix B1 Ringersoll\n\tdlwillson: That was more than I wanted to pay...\n\tFelix: And yet... also more than I wanted to lose!\n\n36) dlwillson: Build B2 Field\n\n37) Felix: Build Y1 Sublime\n\n38) dlwillson: Move B1 Field Forest\n\n39) Felix: Move Y1 Sublime Kringo\n\n40) dlwillson: Build Y1 Field\n\n41) Felix: Build Y1 Kringo\n\n42) dlwillson: M Y1 Field Forest\n\n43) Felix: Move Y1 Kringo Ringersoll\n\n44) dlwillson: Build R1 Forest\n\n45) Felix: Build G2 Felix\n\n46) dlwillson: Build G3 Dlwillson\n\n47) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Kringo\nBuild Y3 Ringersoll\n\tdlwillson: Nice!\n\n48) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Field\nBuild B3 Forest\nBuild G3 Dlwillson\n\tFelix: Thank you! I finally made one decision I'm pleased with :P\n\n49) Felix: S G3 Felix\nB G3 Felix\nBuild R2 Felix\nB B3 Kringo\n\n50) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Dlwillson\nBuild R3 Dlwillson\nBuild G3 Dlwillson\n\n51) Felix: M R2 Felix Ringersoll\n\tdlwillson: Gosh, we sure like to empty the bank; don't we. Oh hey! My poor reds are within range! Oh noes!\n\n52) dlwillson: M B2 Field Sublime\n\tFelix: Nice try... but you can't bait me that easily :p\n\n53) Felix: Sacrifice R1 Felix\nAttack B2 Sublime\n\n54) dlwillson: M B3 Forest Felix\n\tFelix: So many choices.... it's hard to turn down those juicy R3s!\n\n55) Felix: Sacrifice R2 Ringersoll\nAttack B3 Felix\nPass\n\tdlwillson: Boo! Blue!\n\n56) dlwillson: Sacrifice Y3 Field\nMove R3 Dlwillson Kringo\nMove R3 Kringo Sublime\nMove R3 Sublime Felix\n\tFelix: Very nice move! I knew it was a bad idea to sac that r1 on my last turn. I have lots of options now, but they all end in misery for me, I think.\n\n57) Felix: Sacrifice B3 Kringo\nTrade B3 R3 Felix\nTrade G3 R3 Felix\nTrade B2 R2 Sublime\n\tdlwillson: I think it's a downhill walk from here.\n\tdlwillson: And thank you! Your sac of the home red was a pleasant surprise! I do wish I had some reserve jumps, though. If I have to move ships around, I'm screwed.\n\n58) dlwillson: Sacrifice R2 Dlwillson\nAttack R3 Felix\nAttack G2 Felix\n\tFelix: *cue desperate flailing*\n\n59) Felix: Sacrifice Y2 Kringo\nMove R2 Sublime Felix\nCatastrophe Felix Red\nMove Y3 Ringersoll Felix\n\n60) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Felix\nBuild R1 Forest\nBuild R2 Dlwillson\n\n61) Felix: Sacrifice Y3 Felix\nMove Y1 Ringersoll Felix\nMove G1 Ringersoll Felix\nMove Y2 Sublime Felix\n\n62) dlwillson: Sacrifice R2 Forest\nAttack Y2 Felix\nAttack Y1 Felix\n\tFelix: *desperate flailing continues*\n\n63) Felix: Build G1 Felix\n\tdlwillson: The downhill walk is strewn with rocks.\n\n64) dlwillson: Build Y2 Felix\nCatastrophe Felix G\nCatastrophe Felix Y\n\tFelix: *flailing subsides, a low gurgle is heard, and then silence*\n\tdlwillson: Good game as always!\n\tFelix: Likewise! Very intense.\n\n\nHomeworlds Online (SDG# 32361)\nStarted: 2017.6.26, Ended: 2017.7.11\nParticipants: panglott (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld G3 Y1 B3\n\n2) panglott: Homeworld B3 Y2 G3\n\n3) Ausmuh: Build B1 Ausmuh\n\n4) panglott: Build G1 Panglott\n\n5) Ausmuh: Trade B1 G1 Ausmuh\n\n6) panglott: Trade G1 Y1 Panglott\n\n7) Ausmuh: Build B1 Ausmuh\n\n8) panglott: Discover Y1 Panglott G1 Trantor\n\n9) Ausmuh: Discover B1 Ausmuh G2 Zog\n\n10) panglott: Build G1 Panglott\n\n11) Ausmuh: Build G2 Ausmuh\n\n12) panglott: Move G1 Panglott Trantor\n\n13) Ausmuh: Discover G1 Ausmuh Y2 Zwarp\n\n14) panglott: Build G2 Panglott\n\n15) Ausmuh: Build G3 Ausmuh\n\n16) panglott: Sacrifice G3 Panglott\nBuild G3 Panglott\nBuild Y1 Trantor\nBuild Y2 Trantor\n\n17) Ausmuh: Trade G3 Y3 Ausmuh\n\n18) panglott: Move Y1 Trantor Zog\n\n19) Ausmuh: Trade B3 R3 Ausmuh\n\n20) panglott: Sacrifice G3 Panglott\nBuild G3 Panglott\nBuild G3 Trantor\nBuild Y3 Trantor\n\n21) Ausmuh: Sacrifice Y3 Ausmuh\nMove R3 Ausmuh Zwarp\nMove R3 Zwarp Trantor\nMove R3 Trantor Panglott\n\n22) panglott: Trade G3 R3 Panglott\n\n23) Ausmuh: Attack R3S Panglott\n\n24) panglott: Sacrifice Y3 Trantor\nMove G1 Trantor Zog\nMove G1 Zog Ausmuh\nMove G3 Trantor Zog\n\n25) Ausmuh: Attack G2S Panglott\n\tpanglott: Thanks for the game ;)\n\tAusmuh: Thanks, you too! \n\n\nHomeworlds Online (SDG# 32457)\nVariants: "Unrated"\nStarted: 2017.6.27, Ended: 2017.7.3\nParticipants: Felix (S), Ausmuh (N)\nWinner: Felix\n\n1) Ausmuh: Homeworld G3 Y2 B3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) Ausmuh: Build B1 Ausmuh\n\tFelix: Hello again! Have a good game :)\n\tAusmuh: Thanks, you too!\n\n4) Felix: Build G1 Felix\n\n5) Ausmuh: Trade B1 R1 Ausmuh\n\n6) Felix: Trade G1 R1 Felix\n\n7) Ausmuh: Build R2 Ausmuh\n\n8) Felix: Build R2 Felix\n\n9) Ausmuh: Discover R2 Ausmuh B1 Zed\n\tAusmuh: You are braver then I! I am always gun shy to take the last 1-pip. I also get locked out of color often that way. \n\n10) Felix: Trade R2 Y2 Felix\n\tFelix: Yeah... sometimes you have to! In this case, if I had traded for the y1 instead of the r1 on my second turn, you could have easily locked me out of red. Not a good situation to be in!\n\n11) Ausmuh: Build R2 Ausmuh\n\n12) Felix: Discover R1 Felix G2 Troid\n\n13) Ausmuh: Trade R2 G2 Zed Ausmuh\n\n14) Felix: Build R2 Troid\n\n15) Ausmuh: Build G1 Zed\n\n16) Felix: Build Y1 Felix\n\n17) Ausmuh: Trade G2 Y2 Zed\n\n18) Felix: Move Y1 Felix Troid\n\n19) Ausmuh: Move R1 Ausmuh Zed\n\n20) Felix: Discover R2 Troid B1 Mega\n\n21) Ausmuh: Build B1 Ausmuh\n\n22) Felix: Build Y1 Troid\n\tAusmuh: That was a tough turn. Still not completely happy with my choice. Those 3 pips are looking ripe for you!\n\n23) Ausmuh: Move Y2 Zed Troid\n\tFelix: Maybe! The fruit is just out of reach though. It's tricky to get to them without allowing you to get to them too :P\n\n24) Felix: Sacrifice G3 Felix\nBuild Y1 Troid\nBuild Y3 Felix\nBuild Y3 Felix\nCatastrophe Troid Yellow\n\n25) Ausmuh: Build B2 Ausmuh\n\tFelix: That was an interesting maneuver. I think I like it :)\n\tAusmuh: Well, I cruised right into that one!\n\n26) Felix: Trade Y3 G3 Felix\n\n27) Ausmuh: Discover B2 Ausmuh G1 Zog\n\n28) Felix: Sacrifice G3 Felix\nBuild R2 Mega\nBuild R3 Troid\nBuild R3 Mega\n\n29) Ausmuh: Build R3 Zed\n\n30) Felix: Trade R3 G3 Mega\n\tAusmuh: Eesh. That's awesome.\n\tFelix: Haha, lots of weapons! I'm a bit nervous leaving only one color in my homeworld though...\n\n31) Ausmuh: Trade B2 Y2 Zog\n\n32) Felix: Trade Y3 G3 Felix\n\n33) Ausmuh: Trade R1 Y1 Zed\n\n34) Felix: Build Y1 Felix\n\n35) Ausmuh: Trade R2 G2 Ausmuh\n\n36) Felix: Move Y1 Felix Troid\n\n37) Ausmuh: Sacrifice Y1 Zed\nDiscover Y2 Zog B2 Aaa\n\n38) Felix: Build Y1 Troid\n\n39) Ausmuh: Build R1 Zed\n\n40) Felix: M Y1 Troid Mega\n\n41) Ausmuh: Trade R3 Y3 Zed\n\n42) Felix: S G3 Felix\nB Y1 Mega\nB Y3 Troid\nB Y3 Felix\n\n43) Ausmuh: Build R2 Zed\n\n44) Felix: S Y3 Troid\nM R1 Troid Zed\nM R3 Troid Zed\nC Zed Red\nM G3 Mega Ausmuh\n\tAusmuh: Impending DooM!!!\r\n\r\nNot sure I see a way out of this one as it sits.\n\n45) Ausmuh: Build G1 Ausmuh\nCatastrophe Ausmuh Green\n\tFelix: It doesn't look great for you... but you might get out of this yet!\n\tAusmuh: Beautiful red catastrophe. :) That hurts!\n\n46) Felix: Move Y1 Troid Zed\n\n47) Ausmuh: Trade B1 R1 Ausmuh\n\tFelix: Thank you! It was a costly move, though. \n\tAusmuh: oh wow, i think you could have moved your 3 pip in from your HW to lock in the win. I would have been lacking the attack to defend. Maybe I'm wrong but I'll take it! :)\n\n48) Felix: Sacrifice Y3 Felix\nMove Y1 Mega Ausmuh\nMove Y1 Mega Ausmuh\nMove Y1 Zed Ausmuh\nCatastrophe Ausmuh Yellow\n\tFelix: That would have been one pathway to get there! ;) It would have taken two moves for me either way, I think, but catastrophes are always more fun. Great game!\n\tAusmuh: Good game! You're right, catastrophes are sweet! See you on the next one!\n\n\nHomeworlds Online (SDG# 32556)\nVariants: "Hard time"\nStarted: 2017.6.28, Ended: 2017.7.1\nParticipants: dlwillson (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n2) dlwillson: Homeworld Y3 B2 G3\n\tFelix: Here we go again! I suppose I'll take the Goldilocks for once, and see how it works for me :) I've been trying to really coerce the fortress into a viable competitive choice, but it really does seem to have its drawbacks.\n\tDraw5PlayAll: What about B2 R1?\n\n3) Felix: B G1 Felix\n\n4) dlwillson: Build G1 Dlwillson\n\tFelix: I wouldn't have minded if you had wanted to go banker, for the record :P\n\n5) Felix: Trade G1 Y1 Felix\n\tdlwillson: I never go banker, for the record. :-)\n\tFelix: Fair enough! :)\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Felix: B G1 Felix\n\tFelix: So do you really believe the banker provides an unfair advantage? Or do you just not like to play it?\r\n\n\n8) dlwillson: B G1 Dlwillson\n\tdlwillson: I don't think it gives an unfair advantage. I don't think it's as much a banker as it is a blocker. It's convenient to be able to block a big by discovering it. I think that's easy, but cashing it in... That's hard.\r\n\r\nBut, I think folks have the impression that it gives an advantage, so I don't play it.\n\n9) Felix: Trade G1 R1 Felix\n\tFelix: I agree. I think in capable hands, all three setups can be equally good... but each one does have particular different strengths and weaknesses. It just depends on whether you'd like to be able to easily manipulate the supply of smalls, mediums, or larges.\r\n\r\nBut yeah, there is a certain stigma associated with it, so I try to avoid it too.\n\n10) dlwillson: T G1 R1 Dlwillson\n\n11) Felix: Build R2 Felix\n\n12) dlwillson: B R2 Dlwillson\n\n13) Felix: Discover R2 Felix B2 Orcrist\n\n14) dlwillson: Discover Y1 Dlwillson G1 Field\n\tdlwillson: Gotta think about this one.\n\n15) Felix: Sacrifice G3 Felix\nBuild R2 Orcrist\nBuild R3 Orcrist\nBuild R3 Felix\n\tdlwillson: Not sure I liked any of my options there...\n\tFelix: As a wise man once told me.... I tried to present you with only the most unappealing of options :)\n\n16) dlwillson: Build R3 Dlwillson\n\tFelix: And so the emptying of the bank begins...\n\n17) Felix: Trade R2 Y2 Orcrist\n\n18) dlwillson: Move R3 Dlwillson Field\n\n19) Felix: Trade R3 G3 Orcrist\n\n20) dlwillson: Trade R2 Y2 Dlwillson\n\n21) Felix: Trade R3 G3 Felix\n\n22) dlwillson: Build R2 Dlwillson\n\n23) Felix: B Y1 Orcrist\n\n24) dlwillson: D R2 Dlwillson B1 Sea\n\n25) Felix: D Y1 Orcrist B1 Glamdring\n\n26) dlwillson: M Y2 Dlwillson Glamdring\n\n27) Felix: Sacrifice G3 Felix\nBuild Y2 Glamdring\nBuild Y3 Orcrist\nBuild Y3 Felix\n\n28) dlwillson: S R1 Dlwillson\nAttack Y2 Glamdring\n\n29) Felix: Move Y2 Orcrist Glamdring\nCatastrophe Glamdring Yellow\n\n30) dlwillson: B G1 Dlwillson\n\n31) Felix: Build G1 Orcrist\n\tdlwillson: Hmm... You're doing very well at offering our choices!\n\tdlwillson: Hmm... You're doing very well at offering poor choices!\n\n32) dlwillson: Trade G1 B1 Dlwillson\n\tFelix: Well, I learned how to do that in our most recent game where you offered me only the lowest-quality choices ;)\n\n33) Felix: Build G1 Orcrist\n\n34) dlwillson: Trade R2 G2 Sea\n\n35) Felix: M G3 Orcrist Sea\n\tdlwillson: Is it getting cold in here? I feel a sudden chill...\n\n36) dlwillson: Sacrifice G2 Sea\nBuild B1 Dlwillson\nBuild Y1 Field\n\tFelix: I'm just feeling green with envy :p\n\n37) Felix: B G2 Sea\n\n38) dlwillson: M B1 Dlwillson Field\n\tDraw5PlayAll: Are you trying to reference the blue and green abilities?\n\n39) Felix: Sacrifice Y1 Felix\nMove G3 Sea Dlwillson\n\tdlwillson: I'm not. I was misreading the board. I thought I was losing worse than I am.\n\n\tFelix: I was just making a bad pun because I had just built a green ship.\n\tdlwillson: Oh, poo.\n\tFelix: I believe you did something similar to this to me in our last game! I hope it pays off... but I have had my most confident of moves totally overturned by your sneakery before.\n\tdlwillson: Not this time. You've got me. I can resign here or we can walk down the hill. Well done!\n\tdlwillson: I'm so used to Goldilocks... I thought Orcrist was in *my* orbit.\n\tFelix: Whatever you'd like to do! I always enjoy playing it out (when I'm winning!) but I understand if you'd just like to resign.\n\tFelix: And thank you! I just got lucky by throwing off your goldilocks game. :)\n\tdlwillson: I prefer to resign as soon as the end is inevitable, assuming perfect play on both sides. I think it is more interesting for people reading the game later and allows the players to move on to non-determined scenarios.\r\n\r\nIt's always a pleasure. Welcome to #1!\n\tdlwillson: Let me correct part of that. Not assuming "perfect play", assuming the quality of play thus far demonstrated. So, I don't resign if there's a fair chance the other fellow might fumble the ball.\n\tFelix: Sometimes when losing I play it out in hopes of the opponent making a game-changing mistake, but I do resign when it's completely inevitable, and it's too much to hope for certain opponents (like yourself) to make mistakes after a certain point!\r\n\r\nAnd thank you very much! I don't think I'd be so fortunate if certain juggernauts like endo or TwoShort were still active, but I'll bask in the glory while I can and try not to accidentally reject a challenge on my tiny iPhone screen this time ;)\n\nHomeworlds Online (SDG# 32569)\nVariants: "Hard time"\nStarted: 2017.6.30, Ended: 2017.7.5\nParticipants: ajo (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) ajo: Homeworld B2 Y3 G3\n\twil: Let's do this! Have fun\n\n3) wil: Build G1 Wil\n\tajo: You too. :)\n\n4) ajo: Build G1 Ajo\n\n5) wil: Trade G1 Y1 Wil\n\n6) ajo: Discover G1 Ajo B1 Alpha\n\n7) wil: Build Y1 Wil\n\n8) ajo: Build G1 Ajo\n\twil: Didja just give me a slight advantage?\n\n9) wil: Build Y1 Wil\n\tajo: I wasn't planning to; I guess we'll see in a minute.\n\n10) ajo: Build G1 Ajo\n\n11) wil: Discover Y1 Wil Y3 Y3\n\twil: it is gonna be crazy\n\n12) ajo: Build G2 Alpha\n\twil: I am always incapable of thinking ahead..\n\n13) wil: D Y1 Wil G3 G3\n\n14) ajo: Trade G2 Y2 Alpha\n\n15) wil: S G3 Wil\nB Y2 G3\nB Y2 Wil\nB Y3 Wil\n\n16) ajo: Trade G3 R3 Ajo\n\n17) wil: Trade Y2 G2 Wil\n\n18) ajo: Build G2 Ajo\n\n19) wil: B Y2 Wil\n\n20) ajo: Discover Y2 Alpha G3 Beta\n\n21) wil: T Y1 R1 Wil\n\n22) ajo: Sacrifice G2 Ajo\nBuild G2 Alpha\nBuild Y1 Beta\n\n23) wil: T Y3 G3 Wil\n\n24) ajo: Trade G2 R2 Alpha\n\n25) wil: Build Y3 Wil\n\n26) ajo: Move Y1 Beta Wil\n\n27) wil: Trade Y3 B3 Wil\n\tajo: I see we're doing this. :)\n\n28) ajo: Build Y3 Beta\n\n29) wil: Attack Y1 Wil\n\n30) ajo: Move Y3 Beta Alpha\n\n31) wil: Move G2 Wil Y3\n\n32) ajo: Build G2 Alpha\n\n33) wil: Build G2 Wil\n\n34) ajo: Move G1 Alpha Beta\n\twil: Yeah...I blew my advantage..\n\n35) wil: D Y1 Y3 B1 B1\n\n36) ajo: Build R1 Alpha\n\n37) wil: S G2 Y3\nB B1 Wil\nB Y3 B1\n\n38) ajo: Build R2 Ajo\n\n39) wil: M R1 Wil G3\n\n40) ajo: Move R1 Alpha Beta\n\n41) wil: T B3 R3 Wil\n\n42) ajo: Build R2 Beta\n\n43) wil: Build R3 G3\n\n44) ajo: Sacrifice Y2 Beta\nMove R1 Beta Wil\nMove R2 Beta Wil\nCatastrophe Wil Red\n\tajo: *hums the theme to "Jaws"*\n\n45) wil: Build B2 Wil\n\n46) ajo: Build G2 Alpha\n\n47) wil: S Y2 Wil\nM B2 Wil G3\nM R1 G3 B1\n\n48) ajo: Sacrifice Y3 Alpha\nMove G2 Alpha Wil\nMove G1 Beta Wil\nMove R2 Alpha Wil\nCatastrophe Wil Green\n\n49) wil: M Y3 B1 Wil\n\tajo: That looks like the classic Bluebird mistake. :)\n\n50) ajo: Attack B1 Wil\n\n51) wil: Sacrifice R3 G3\nAttack B1 Wil\nAttack R2 Wil\nPass\n\twil: In my choices of outcomes...the best I saw was you going in...and I'd still have two queens and opportunity to grow..\n\tajo: Oho. I didn't see that.\n\n52) ajo: Move R2 Ajo B1\n\tajo: Make that "one queen".\n\n53) wil: Sacrifice Y1 B1\nMove R1 B1 G3\n\twil: true...and I may have missed the opportunity to lose it had you not reminded me!!\n\n54) ajo: Sacrifice G2 Alpha\nBuild R1 B1\nBuild R1 Ajo\n\tajo: Seems like you survived. Bah.\n\n55) wil: Build B1 G3\n\twil: It appears to still be looking good for our team.. that shark was all teeth and no bite.. and now is chum\n\twil: better than a phoenix from the ashes the blue queen machine is about to start building...\n\n56) ajo: Trade R2 G2 B1\n\n57) wil: B B3 G3\n\n58) ajo: Build R2 B1\n\n59) wil: M B3 G3 B1\n\n60) ajo: Sacrifice G2 B1\nBuild R2 B1\nBuild R3 B1\nCatastrophe B1 Red\n\n61) wil: B B3 G3\n\twil: I can't hardly hear you humming that jaws theme anymore...it doesn't bother me...crank it up\n\tajo: Nuts. Well, I think I'm going to lose now.\n\n62) ajo: Discover R1 Ajo R1 Gamma\n\n63) wil: M B3 G3 Gamma\n\twil: Well you just had some kind of insurrection with your lead attack and building force... They all seem to have gone awol\n\twil: Well you just had some kind of insurrection with your lead attack and building force... They all seem to have gone awol\n\n64) ajo: Build R2 Ajo\n\tajo: That Y3 that I overlooked was really disastrous for my invasion plans.\n\n65) wil: B B3 G3\n\twil: I will have all the queens but one, muahahahah\n\n66) ajo: Trade R2 Y2 Ajo\n\n67) wil: S Y2 G3\nM B3 Gamma Ajo\nM B3 B1 Ajo\n\n68) ajo: Trade G1 B1 Ajo\nCatastrophe Ajo Blue\n\n69) wil: S Y3 Wil\nM Y1 Wil Ajo\nM Y1 G3 Wil\nM Y1 Wil Ajo\nC Ajo Y\n\twil: Well fought...\n\n\tajo: Yep, I think that's game.\n\tajo: Good game!\n\nHomeworlds Online (SDG# 32534)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.1, Ended: 2017.7.19\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y2 B3 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) dlwillson: B G1 Dlwillson\n\n6) Draw5PlayAll: Build G2 Draw5playall\n\n7) dlwillson: D G1 Dlwillson B1 Sea\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) Draw5PlayAll: Build G1 Draw5playall\n\n11) dlwillson: Build G1 Dlwillson\n\n12) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n13) dlwillson: Build R2 Dlwillson\n\n14) Draw5PlayAll: Discover G2 Draw5playall B2 B2\n\n15) dlwillson: D R1 Dlwillson Y1 Golden\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Dlwillson\nBuild R2 Golden\nBuild R3 Golden\n\n18) Draw5PlayAll: Build R3 Draw5playall\n\n19) dlwillson: Build R3 Dlwillson\n\n20) Draw5PlayAll: Trade R3 Y3 Draw5playall\n\n21) dlwillson: T R3 Y3 Dlwillson\n\n22) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n23) dlwillson: M R2 Golden G2\n\n24) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B2\nBuild G3 Draw5playall\nBuild R3 G2\n\n25) dlwillson: B G3 Dlwillson\n\n26) Draw5PlayAll: Sacrifice R1 G2\nAttack R2N G2\n\n27) dlwillson: Build G3 Sea\n\n28) Draw5PlayAll: Move Y3 Draw5playall B2\n\n29) dlwillson: T G3 Y3 Sea\n\n30) Draw5PlayAll: Trade G2 Y2 B2\n\n31) dlwillson: M R2 Dlwillson Sea\n\n32) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n33) dlwillson: Sacrifice Y3 Dlwillson\nMove R1 Golden G2\nMove R2 Sea G2\nCatastrophe G2 R\nMove Y3 Sea B2\n\n34) Draw5PlayAll: Sacrifice Y2 B2\nDiscover Y3 B2 R3 R3\nMove G2 B2 R3\n\n35) dlwillson: Build G1 Dlwillson\n\n36) Draw5PlayAll: Build G2 Draw5playall\n\n37) dlwillson: Move G1 Dlwillson Golden\n\tDraw5PlayAll: Quit tempting me!\n\n38) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n39) dlwillson: B G2 Golden\n\tdlwillson: OK, but I reserve the right to tempt you again, later.\n\n40) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n41) dlwillson: M G2 Golden B2\n\n42) Draw5PlayAll: Build Y1 R3\n\n43) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 B2\nBuild G3 Sea\nBuild G3 Dlwillson\n\n44) Draw5PlayAll: Build B1 Draw5playall\n\n45) dlwillson: T G3 Y3 Sea\n\n46) Draw5PlayAll: Build G3 R3\n\n47) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB Y1 Sea\nB Y2 B2\n\n48) Draw5PlayAll: Move B1 Draw5playall B2\n\n49) dlwillson: S Y2 B2\nM G2 B2 R3\nM G1 Sea R3\nCatastrophe R3 G\n\n50) Draw5PlayAll: Build Y2 Draw5playall\n\n51) dlwillson: Sacrifice Y3 Sea\nMove Y3 B2 Draw5playall\nMove R3 Golden B2\nMove R3 B2 Draw5playall\n\n52) Draw5PlayAll: Attack R3 Draw5playall\n\n53) dlwillson: Sacrifice R2 Dlwillson\nAttack R3 Draw5playall\nAttack G3 Draw5playall\n\tdlwillson: /me verifies that this is *not* the ladder match\r\n/me attack wildly, hollering, "YEEHAA!"\n\tdlwillson: /me verifies that this is *not* the ladder match\r\n/me attacks wildly, hollering, "YEEHAA!"\n\tDraw5PlayAll: Your attack wins no matter what.\n\n\nHomeworlds Online (SDG# 32601)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.1, Ended: 2017.7.3\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H Y2 B3 G3 Dlwillson\n\n2) Felix: H B1 R1 G3 *\n\tdlwillson: GLHF!\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Likewise! And I apologize in advance. This could be a weird game...\n\n4) Felix: B G1 Felix\n\n5) dlwillson: B G1 Dlwillson\n\tDraw5PlayAll: Thankfully they are not on the ladder... never make experiments on the ladders.\n\n6) Felix: T G1 Y1 Felix\n\n7) dlwillson: D G1 Dlwillson B1 Sea\n\n8) Felix: B Y1 Felix\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) Felix: B Y1 Felix\n\n11) dlwillson: B G1 Dlwillson\n\n12) Felix: Discover Y1 Felix G2 Graves\n\n13) dlwillson: D G1 Dlwillson G1 Field\n\n14) Felix: Discover Y1 Felix G3 Yards\n\n15) dlwillson: B G2 Sea\n\n16) Felix: Build G2 Felix\n\n17) dlwillson: T G2 Y2 Sea\n\n18) Felix: Sacrifice G3 Felix\nBuild Y2 Graves\nBuild Y3 Yards\nBuild Y3 Felix\n\n19) dlwillson: B Y3 Sea\n\n20) Felix: Sacrifice Y2 Graves\nMove Y1 Graves Sea\nMove Y1 Yards Sea\nCatastrophe Sea Yellow\n\n21) dlwillson: B G2 Dlwillson\n\n22) Felix: Build G2 Felix\n\n23) dlwillson: Trade G2 Y2 Dlwillson\n\n24) Felix: Sacrifice Y3 Yards\nMove G2 Felix Dlwillson\nMove G2 Felix Dlwillson\nMove Y1 Felix Dlwillson\n\n25) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G3 Sea\nB R1 Dlwillson\n\n26) Felix: Build Y1 Dlwillson\nCatastrophe Dlwillson Yellow\n\tFelix: What fun is life without a little risk?\n\n27) dlwillson: Trade G3 Y3 Sea\n\n28) Felix: T G2 B2 Dlwillson\n\tdlwillson: Better. Not good, but better.\n\n29) dlwillson: Sacrifice Y3 Sea\nMove G1 Field Dlwillson\nMove G1 Sea Dlwillson\nMove G2 Sea Dlwillson\nCatastrophe Dlwillson G\n\tFelix: It's all or nothing time here. I'm not recovering from this attack if it fails!\n\n30) Felix: T B2 R2 Dlwillson\n\n31) dlwillson: Trade R1 G1 Dlwillson\n\n32) Felix: A R1 Dlwillson\n\tdlwillson: This was an interesting game. I might like to try these starting positions again sometime.\n\n33) dlwillson: Build G1 Dlwillson\n\n34) Felix: Sacrifice R2 Dlwillson\nAttack G1 Dlwillson\nAttack G1 Dlwillson\n\n\nHomeworlds Online (SDG# 32397)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.1, Ended: 2017.7.5\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 Y1 G3\n\n2) Felix: H B3 R3 G3 *\n\n3) wil: B G1 Wil\n\tDraw5PlayAll: !\n\twil: Nimby\n\n4) Felix: B G1 Felix\n\tFelix: Nimby?\n\n5) wil: Trade G1 R1 Wil\n\n6) Felix: T G1 Y1 Felix\n\n7) wil: Build R1 Wil\n\n8) Felix: B Y1 Felix\n\n9) wil: Build R1 Wil\n\n10) Felix: B Y2 Felix\n\n11) wil: D R1 Wil G3 G3\n\n12) Felix: Discover Y1 Felix B1 Surplus\n\n13) wil: B R2 Wil\n\n14) Felix: Sacrifice G3 Felix\nBuild Y2 Surplus\nBuild Y2 Surplus\nBuild Y3 Felix\n\n15) wil: D R2 Wil Y3 Y3\n\n16) Felix: Trade Y3 G3 Felix\n\n17) wil: B R2 Wil\n\n18) Felix: Build Y3 Felix\n\n19) wil: D R2 Wil B3 B3\n\n20) Felix: Trade Y3 R3 Felix\n\n21) wil: M R1 Wil Felix\n\n22) Felix: Move R3 Felix Surplus\n\n23) wil: B R2 G3\n\n24) Felix: D Y1 Felix G2 Opix\n\n25) wil: Build R3 Wil\n\n26) Felix: B Y3 Felix\n\n27) wil: Trade R3 Y3 Wil\n\twil: Not\r\nIn\r\nMy\r\nBack\r\nYard\n\n28) Felix: S Y1 Surplus\nM Y3 Felix Wil\n\tFelix: Ah, I see. But you are the one invading my yard with your pesky little red fly!\n\n29) wil: A Y3 Wil\n\n30) Felix: M Y2 Felix Wil\nC Wil Yellow\n\n31) wil: B R3 Wil\n\n32) Felix: T Y2 G2 Surplus\n\tFelix: Oops. No reason I should have sacked that y1 last turn\n\n33) wil: T R2 Y2 B3\n\n34) Felix: Build R2 Surplus\n\n35) wil: S Y2 B3\nM R1 G3 Surplus\nM R1 Wil Surplus\nC Surplus R\n\n36) Felix: Attack R1 Felix\n\n37) wil: B G1 Wil\n\twil: We had a surplus of small attack ships...we moved them to the surplus system...we did...idk why they are now in the bank\n\n38) Felix: B G1 Felix\n\n39) wil: T G1 Y1 Wil\n\n40) Felix: T G1 B1 Felix\n\n41) wil: M R3 Wil Surplus\n\n42) Felix: Move Y2 Surplus Felix\n\n43) wil: A G2 Surplus\n\twil: Wonder if anything is at the thrift store\n\n44) Felix: Build B1 Felix\n\tFelix: Just one green in stock I'm afraid\n\twil: Just my size.\n\n45) wil: B G1 Wil\n\n46) Felix: Discover B1 Felix G1 Ribald\n\n47) wil: M R2 Y3 Ribald\n\n48) Felix: Build B2 Felix\n\n49) wil: T G2 Y2 Surplus\n\n50) Felix: S Y1 Opix\nM B1 Ribald Wil\n\n51) wil: S Y2 Surplus\nM G3 Wil Felix\nM R3 Surplus Felix\n\n52) Felix: Sacrifice Y2 Felix\nMove B1 Felix Wil\nMove B2 Felix Wil\nCatastrophe Wil Blue\n\tFelix: Capturing that blue would have made my job substantially more difficult, I think.\n\twil: Lol...just steps away\n\n\tFelix: Very, very close. Good game!\n\nHomeworlds Online (SDG# 32218)\nVariants: "Hard time"\nStarted: 2017.7.3, Ended: 2017.7.12\nParticipants: belenar (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) belenar: Homeworld R2 B1 G3\n\n3) wil: Build G1 Wil\n\n4) belenar: Build G1 Belenar\n\n5) wil: T G1 B1 Wil\n\n6) belenar: Trade G1 Y1 Belenar\n\n7) wil: B B1 Wil\n\n\nHomeworlds Online (SDG# 32458)\nVariants: "Hard time"\nStarted: 2017.7.3, Ended: 2017.7.13\nParticipants: belenar (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) belenar: Homeworld R3 B1 G3\n\tFelix: Hello there :) Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\n4) belenar: Build G1 Belenar\n\n5) Felix: Trade G1 B1 Felix\n\n6) belenar: Trade G3 Y3 Belenar\n\n7) Felix: B B1 Felix\n\n8) belenar: Build G1 Belenar\n\n9) Felix: T B1 Y1 Felix\n\n\nHomeworlds Online (SDG# 32608)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.3, Ended: 2017.7.13\nParticipants: Ausmuh (S), dlwillson (N)\nWinner: Ausmuh\n\n1) dlwillson: H B2 Y3 G3\n\tAusmuh: Hello, Have a fun game! I like the shorter hard time trigger.\n\n2) Ausmuh: Homeworld B3 Y1 G3\n\tdlwillson: Glad you like it! Good luck and have fun!\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Ausmuh: Build G1 Ausmuh\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) Ausmuh: Trade G1 B1 Ausmuh\n\n7) dlwillson: B R1 Dlwillson\n\n8) Ausmuh: Build B1 Ausmuh\n\n9) dlwillson: Trade R1 B1 Dlwillson\n\n10) Ausmuh: Discover B1 Ausmuh G2 Zog\n\n11) dlwillson: Discover B1 Dlwillson G1 Field\n\n12) Ausmuh: Build B2 Ausmuh\n\n13) dlwillson: Build R1 Dlwillson\n\n14) Ausmuh: Trade B2 R2 Ausmuh\n\n15) dlwillson: Build G1 Dlwillson\n\n16) Ausmuh: Build B2 Zog\n\n17) dlwillson: Move R1 Dlwillson Field\n\n18) Ausmuh: Trade B2 Y2 Zog\n\n19) dlwillson: B B2 Field\n\n20) Ausmuh: Sacrifice G3 Ausmuh\nBuild B2 Zog\nBuild B3 Zog\nBuild B3 Ausmuh\n\n21) dlwillson: Trade B2 Y2 Field\n\n22) Ausmuh: Sacrifice B2 Zog\nTrade B3 G3 Ausmuh\nTrade B3 Y3 Zog\n\n23) dlwillson: Build B2 Field\n\n24) Ausmuh: Build G1 Ausmuh\n\n25) dlwillson: T B2 G2 Field\n\n26) Ausmuh: Discover Y3 Zog Y1 Almost\n\n27) dlwillson: Discover G2 Field B2 Sky\n\n28) Ausmuh: Trade B1 Y1 Ausmuh\n\n29) dlwillson: B G2 Sky\n\tAusmuh: Two undos of shame!! Sorry about that!\n\n30) Ausmuh: Sacrifice G3 Ausmuh\nBuild Y2 Zog\nBuild Y3 Almost\nBuild G3 Ausmuh\n\n31) dlwillson: D G1 Dlwillson B1 Sea\n\n32) Ausmuh: Move B1 Zog Almost\n\n33) dlwillson: S G2 Sky\nB G2 Dlwillson\nB G3 Sky\n\n34) Ausmuh: Sacrifice G3 Ausmuh\nBuild B2 Almost\nBuild B3 Almost\nBuild G3 Ausmuh\n\n35) dlwillson: Build B3 Field\n\n36) Ausmuh: Sacrifice Y2 Zog\nMove Y3 Almost Dlwillson\nMove B3 Almost Dlwillson\n\tdlwillson: Undo is fine. If it weren't, I'd have turned it off. :-)\n\n37) dlwillson: A B3 Dlwillson\n\tDraw5PlayAll: (System "almost") Show-off!\n\n38) Ausmuh: Sacrifice R2 Ausmuh\nAttack G3N Dlwillson\nAttack B3N Dlwillson\n\n39) dlwillson: Move B3 Field Dlwillson\n\n40) Ausmuh: Trade Y3 R3 Almost\n\n41) dlwillson: Sacrifice G3 Sky\nBuild Y2 Field\nBuild Y3 Field\nBuild G3 Dlwillson\n\n42) Ausmuh: Sacrifice R3 Almost\nAttack B3N Dlwillson\nAttack G3N Dlwillson\nAttack R1N Dlwillson\n\n43) dlwillson: Sacrifice R1 Field\nAttack R1 Dlwillson\n\n44) Ausmuh: Sacrifice B2 Almost\nTrade G3 R3 Ausmuh\nTrade Y2 R2 Zog\n\n\tdlwillson: Good game! Well played!\n\tAusmuh: Thanks, you too! I look forward to the next one.\n\nHomeworlds Online (SDG# 32637)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.3, Ended: 2017.7.5\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld B1 R1 G3 *\n\n2) dlwillson: Homeworld Y3 B2 G3\n\tDraw5PlayAll: Aha! Taking a small universe with the first move your own!\r\n(That sentence got messed up but yeah)\n\n3) Felix: Build G1 Felix\n\n4) dlwillson: Build G1 Dlwillson\n\tFelix: I wonder how the dynamic of this position will change since I'm going first instead of second.\n\tdlwillson: You'll have a slightly stronger advantage?\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dlwillson: T G1 R1 Dlwillson\n\tFelix: I wonder. Do you really think the 1-1 star has an advantage? I suppose it's like the banker in that in can block or invest in larges, and like goldilocks in that it can aggressively take mediums. That certainly seems like an advantage over the fortress. But we shall see!\n\tFelix: I'd be fascinated to see how a game with both players using 1-1 (or 2-2 or 3-3) stars would play out.\n\n7) Felix: Build Y1 Felix\n\tdlwillson: I should've started blue and red. Oh well.\n\n8) dlwillson: Build R1 Dlwillson\n\n9) Felix: B Y1 Felix\n\n10) dlwillson: Build R2 Dlwillson\n\n11) Felix: Discover Y1 Felix G2 Opus\n\n12) dlwillson: T R2 Y2 Dlwillson\n\n13) Felix: Move Y1 Felix Dlwillson\n\n14) dlwillson: S Y2 Dlwillson\nM R1 Dlwillson Felix\nM R1 Felix Opus\n\n15) Felix: Build Y2 Felix\n\n16) dlwillson: A Y1 Opus\n\n17) Felix: M Y1 Felix Dlwillson\n\n18) dlwillson: B R2 Dlwillson\n\n19) Felix: Build Y2 Felix\n\n20) dlwillson: Build Y2 Opus\n\n21) Felix: Move Y2 Felix Dlwillson\nCatastrophe Dlwillson Yellow\n\n22) dlwillson: Trade R1 Y1 Dlwillson\n\n23) Felix: Build G1 Felix\n\n24) dlwillson: Build G1 Dlwillson\n\n25) Felix: Trade G1 B1 Felix\n\n26) dlwillson: Sacrifice Y2 Opus\nMove G3 Dlwillson Felix\nMove G1 Dlwillson Felix\n\n27) Felix: Build G1 Felix\nCatastrophe Felix Green\n\n28) dlwillson: Build Y1 Opus\n\n29) Felix: Trade B1 G1 Felix\n\tFelix: Great move!\n\n30) dlwillson: Build Y2 Opus\n\n31) Felix: Build G1 Felix\n\tdlwillson: Hm. What was great about creating that y1? My own genius seems to have eluded me...\n\tFelix: I meant the move before that :P\n\n32) dlwillson: Move Y1 Opus Felix\n\n33) Felix: Trade Y2 R2 Felix\n\n34) dlwillson: Trade Y1 R1 Felix\n\n\tFelix: Well done! I guess I didn't have such a strong advantage after all :)\n\nHomeworlds Online (SDG# 32459)\nStarted: 2017.7.4, Ended: 2017.9.30\nParticipants: MobyNostromo (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld B3 Y1 G3\n\n2) MobyNostromo: H Y1 B2 G3\n\n3) dragon76n: Build G1 Dragon76n\n\n4) MobyNostromo: B G1 Mobynostromo\n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) MobyNostromo: B G1 Mobynostromo\n\n7) dragon76n: Build Y2 Dragon76n\n\n8) MobyNostromo: D G1 Mobynostromo Y3 Bigbird\n\n9) dragon76n: Discover Y1 Dragon76n B2 Blutwo\n\n10) MobyNostromo: D G1 Mobynostromo Y3 Tweety\n\n11) dragon76n: Build G1 Dragon76n\n\n12) MobyNostromo: B G2 Mobynostromo\n\n13) dragon76n: Sacrifice G3 Dragon76n\nBuild Y2 Blutwo\nBuild Y2 Blutwo\nBuild Y3 Dragon76n\n\n14) MobyNostromo: D G2 Mobynostromo R3 Hotstuff\n\n15) dragon76n: T Y2 G2 Blutwo\n\n16) MobyNostromo: B G2 Mobynostromo\n\n17) dragon76n: B G3 Blutwo\n\n18) MobyNostromo: T G2 Y2 Mobynostromo\n\n19) dragon76n: M G3 Blutwo Hotstuff\n\n20) MobyNostromo: S G2 Hotstuff\nB G2 Tweety\nB G2 Bigbird\n\n21) dragon76n: Build G3 Dragon76n\n\n22) MobyNostromo: T G3 R3 Mobynostromo\n\n23) dragon76n: Trade Y1 R1 Blutwo\n\n24) MobyNostromo: Discover G1 Bigbird B2 Grover\n\n25) dragon76n: Sacrifice G3 Dragon76n\nBuild G3 Dragon76n\nBuild Y1 Blutwo\nBuild G3 Blutwo\n\n26) MobyNostromo: D Y2 Mobynostromo R3 Maximillian\n\n27) dragon76n: M G3 Blutwo Maximillian\n\n28) MobyNostromo: M Y2 Maximillian Grover\n\n29) dragon76n: Move Y3 Dragon76n Grover\n\n30) MobyNostromo: Move G1 Tweety Mobynostromo\n\n31) dragon76n: Sacrifice R1 Blutwo\nAttack Y2 Grover\n\n32) MobyNostromo: B R1 Mobynostromo\n\n33) dragon76n: Trade Y2 R2 Grover\n\n34) MobyNostromo: T R1 B1 Mobynostromo\n\n35) dragon76n: Sacrifice G3 Hotstuff\nBuild Y2 Grover\nBuild G3 Blutwo\nBuild R1 Grover\n\n36) MobyNostromo: B B1 Mobynostromo\n\n37) dragon76n: A G1 Grover\n\n38) MobyNostromo: M B1 Mobynostromo Tweety\n\n39) dragon76n: Move G3 Blutwo Bigbird\n\n40) MobyNostromo: S G2 Tweety\nB B1 Tweety\nB B3 Tweety\n\n41) dragon76n: Sacrifice R1 Grover\nAttack G2 Bigbird\n\n42) MobyNostromo: Build G2 Mobynostromo\n\n43) dragon76n: S Y2 Blutwo\nM G2 Blutwo Maximillian\nM Y1 Blutwo Maximillian\n\n44) MobyNostromo: T G2 Y2 Mobynostromo\n\n45) dragon76n: T Y2 B2 Grover\n\n46) MobyNostromo: S Y2 Mobynostromo\nM B1 Tweety Grover\nM B1 Tweety Grover\nC Grover B\n\n47) dragon76n: S G3 Maximillian\nB Y2 Dragon76n\nB Y2 Maximillian\nB Y3 Maximillian\n\n48) MobyNostromo: B G1 Mobynostromo\n\n49) dragon76n: T Y2 B2 Dragon76n\n\n50) MobyNostromo: M G1 Mobynostromo Tweety\n\n51) dragon76n: D B2 Dragon76n Y2 Yeltwo\n\n52) MobyNostromo: B R1 Mobynostromo\n\n53) dragon76n: Move B2 Yeltwo Maximillian\n\n54) MobyNostromo: B R1 Mobynostromo\n\n55) dragon76n: Trade Y2 R2 Maximillian\n\n56) MobyNostromo: D R1 Mobynostromo G3 Miracle\n\n57) dragon76n: Discover G2 Bigbird R1 Redone\n\n58) MobyNostromo: B G2 Mobynostromo\n\n59) dragon76n: Sacrifice G3 Dragon76n\nBuild B1 Maximillian\nBuild Y2 Maximillian\nBuild G3 Dragon76n\n\n60) MobyNostromo: M B3 Tweety Redone\n\n61) dragon76n: Sacrifice Y1 Maximillian\nMove G2 Redone Tweety\n\n62) MobyNostromo: T G2 Y2 Mobynostromo\n\n63) dragon76n: Sacrifice Y2 Maximillian\nMove B2 Maximillian Mobynostromo\nMove B1 Maximillian Mobynostromo\nCatastrophe Mobynostromo Blue\n\n64) MobyNostromo: B G2 Tweety\n\n65) dragon76n: S G3 Dragon76n\nB G3 Dragon76n\nB Y1 Maximillian\nB Y2 Dragon76n\n\n66) MobyNostromo: S G2 Tweety\nB G2 Tweety\nB B1 Redone\n\n67) dragon76n: Sacrifice Y2 Dragon76n\nMove Y1 Maximillian Mobynostromo\nMove Y3 Maximillian Mobynostromo\nCatastrophe Mobynostromo Yellow\n\n\tdragon76n: Good Game. Thanks for playing.\n\tMobyNostromo: It was fun!\n\nHomeworlds Online (SDG# 32547)\nVariants: "Unrated"\nStarted: 2017.7.4, Ended: 2017.7.7\nParticipants: JunodaJuniper (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n\tFelix: Hello! Good luck and have fun. First game?\n\nHomeworlds Online (SDG# 32646)\nVariants: "Unrated"\nStarted: 2017.7.4, Ended: 2017.7.7\nParticipants: JunodaJuniper (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n\nHomeworlds Online (SDG# 32654)\nVariants: "Hard time"\nStarted: 2017.7.5, Ended: 2017.7.8\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) Felix: Homeworld B1 R3 G3\n\n3) wil: B G1 Wil\n\tFelix: Good luck :)\n\n4) Felix: B G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: Build B1 Wil\n\n8) Felix: Build Y1 Felix\n\n9) wil: Trade B1 Y1 Wil\n\n10) Felix: Discover Y1 Felix Y2 Gold\n\n11) wil: Build B1 Wil\n\n12) Felix: Build Y2 Felix\n\n13) wil: D B1 Wil Y3 Y3\n\tFelix: You didn't fall for it :(\n\n14) Felix: D Y1 Gold B3 Horcrux\n\n15) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n16) Felix: S G3 Felix\nB Y2 Horcrux\nB Y2 Horcrux\nB Y3 Felix\n\n17) wil: M Y1 Wil Horcrux\nC Horcrux Y\n\n18) Felix: Trade Y1 G1 Felix\n\twil: Oops, I didn't see what I was supposed to fall for.\n\tFelix: Hmm... well I somehow missed the fact that horcruz was adjacent to your homeworld. Oops.\n\n19) wil: D B1 Y3 G2 G2\n\n20) Felix: Trade Y3 B3 Felix\n\twil: I was confused as to why you moved forward...outlr interface is partially to blame....when things get dicey I set up a physical game to watch\n\n21) wil: B B3 G2\n\tFelix: Yeah... this isn't going so well.\n\n22) Felix: Discover B3 Felix G2 Gremlin\n\twil: I think I am going to have to make some big mistakes to lose this match. But the good news is.... I am more than capable of that! \n\n23) wil: T B3 Y3 Wil\n\n24) Felix: Build Y1 Felix\n\n25) wil: T B3 Y3 G2\n\tFelix: I haven't seen any yet... bring on the mistakes!\n\n26) Felix: Build G1 Felix\n\n27) wil: T B2 R2 Y3\n\n28) Felix: Build G1 Felix\n\twil: You are making me work...why not just roll over?\n\n29) wil: T Y3 G3 Wil\n\n30) Felix: Discover G1 Felix G2 Kremlin\n\tFelix: I can't make it too easy for you to be number 1! I must prepare you for the dangers that lie ahead.\n\n31) wil: M R2 Y3 Kremlin\n\twil: Heck, I been kicked off the mountain top before...that doesn't bother me...\n\tDraw5PlayAll: I am not disinterested in the outcome of this...\n\n32) Felix: Build G3 Felix\n\tFelix: I ain't skeered.\n\n33) wil: B G3 Wil\n\twil: A star designed for reds\n\n34) Felix: Trade G3 R3 Felix\n\n35) wil: Trade G3 Y3 Wil\n\n36) Felix: Discover G1 Felix B2 Frost\n\n37) wil: B G3 Wil\n\n38) Felix: Build B3 Gremlin\n\tFelix: Ah, ah, ah, ah, stayin' alive, stayin' alive...\n\n39) wil: S G3 Wil\nB G3 Wil\nB R1 Kremlin\nB B3 G2\n\n40) Felix: B G3 Felix\n\n41) wil: Sacrifice Y3 G2\nMove B3 G2 Felix\nMove R2 Kremlin Felix\nMove R1 Kremlin Felix\nCatastrophe Felix R\n\n42) Felix: T G3 R3 Felix\n\n43) wil: S Y3 Wil\nM G3 Wil Y3\nM B2 Y3 Felix\nM B1 G2 Felix\nC Felix B\n\n\tFelix: I knew communism would fail. Well played!\n\twil: I should a been able to shorten your misery.\n\tFelix: I did discover a fountain of hope somewhere in there. Alas. Congrats!\n\nHomeworlds Online (SDG# 32661)\nVariants: "Hard time"\nStarted: 2017.7.5, Ended: 2017.8.4\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 R2 G3\n\tdlwillson: GLHF!\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) dlwillson: B G1 Dlwillson\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n11) dlwillson: B R2 Dlwillson\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) dlwillson: Discover R1 Dlwillson B1 Sea\n\n14) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n15) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Sea\nBuild R3 Sea\nBuild R3 Dlwillson\n\n16) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R1 G2 Sea\nCatastrophe Sea Red\n\tFelix: Warships.... warships everywhere!\n\n17) dlwillson: T R3 G3 Dlwillson\n\tDraw5PlayAll: But sir, I fail to understand why someone would spend so much energy building warships if they would just be reduced to rubble the next day.\n\n18) Draw5PlayAll: Build G1 Draw5playall\n\tdlwillson: I think it puts me a click or two ahead, but maybe not...\n\n19) dlwillson: B Y1 Dlwillson\n\n20) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n21) dlwillson: B Y2 Dlwillson\n\n22) Draw5PlayAll: Build Y2 Draw5playall\n\n23) dlwillson: D Y1 Dlwillson B1 Sea\n\n24) Draw5PlayAll: Discover Y1 Draw5playall G2 G2\n\n25) dlwillson: Discover Y1 Dlwillson G1 Field\n\n26) Draw5PlayAll: Move R2 Draw5playall G2\n\n27) dlwillson: M R2 Dlwillson Field\n\n28) Draw5PlayAll: Build R1 G2\n\n29) dlwillson: D R2 Field Y3 Solar\n\n30) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G2\nBuild Y3 Draw5playall\nPass\n\n31) dlwillson: Build Y3 Field\n\n32) Draw5PlayAll: Move R1 G2 Sea\n\n33) dlwillson: D Y1 Sea G2 Forest\n\n34) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n35) dlwillson: Move R2 Solar Sea\n\n36) Draw5PlayAll: Build R1 G2\n\n37) dlwillson: Attack R1 Sea\n\n38) Draw5PlayAll: Discover R1 G2 B1 B1\n\n39) dlwillson: B Y2 Forest\n\n40) Draw5PlayAll: Build R3 G2\n\n41) dlwillson: Sacrifice Y2 Forest\nMove R1 Sea G2\nMove R2 Sea G2\nCatastrophe G2 R\n\n42) Draw5PlayAll: Discover Y1 G2 G1 G1\n\n43) dlwillson: Sacrifice Y3 Field\nMove Y1 Field Forest\nMove Y1 Forest Draw5playall\nMove Y1 Forest Draw5playall\n\n44) Draw5PlayAll: Attack Y1 Draw5playall\n\n45) dlwillson: S G3 Dlwillson\nB Y2 Draw5playall\nB Y3 Dlwillson\nPass\nC Draw5playall Y\n\n46) Draw5PlayAll: Build Y1 G1\n\n47) dlwillson: T Y2 G2 Dlwillson\n\tdlwillson: Typo, sorry\n\tDraw5PlayAll: I did not see the build Y3 coming\n\n48) Draw5PlayAll: Build G1 Draw5playall\n\n49) dlwillson: B G1 Dlwillson\n\n50) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n51) dlwillson: M Y3 Dlwillson B1\n\n52) Draw5PlayAll: Build Y2 G2\n\n53) dlwillson: T G2 Y2 Dlwillson\n\n54) Draw5PlayAll: Build Y3 Draw5playall\n\n55) dlwillson: B Y3 Dlwillson\n\n56) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\tDraw5PlayAll: This has been quite a "back and forth" game.\n\n57) dlwillson: T Y3 G3 Dlwillson\n\n58) Draw5PlayAll: Discover Y1 G1 B2 B2\n\tdlwillson: Yeah. My attack's effects didn't last long enough. :-)\n\n59) dlwillson: Trade Y3 R3 B1\n\n60) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild R2 B1\nBuild R2 B1\nCatastrophe B1 Red\n\n61) dlwillson: B G1 Dlwillson\n\tDraw5PlayAll: Here we go again.\n\n62) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n63) dlwillson: D G1 Dlwillson B1 Sea\n\tdlwillson: I think you've got me. I didn't have quite enough momentum to finish you off while you didn't have a big, and now I'm way behind economically. We'll see.\n\n64) Draw5PlayAll: Move Y2 G2 Draw5playall\n\n65) dlwillson: B G2 Sea\n\n66) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 G1\nBuild Y3 Draw5playall\nBuild Y3 B2\n\n67) dlwillson: B Y3 Dlwillson\n\n68) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 G1 Dlwillson\nMove Y1 G1 Dlwillson\nCatastrophe Dlwillson Y\n\n69) dlwillson: S G3 Dlwillson\nB G1 Sea\nB G2 Dlwillson\nB G3 Dlwillson\n\n70) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n71) dlwillson: Trade G2 Y2 Dlwillson\n\tDraw5PlayAll: That may come back to haunt me.\n\n72) Draw5PlayAll: Build Y1 G2\n\tdlwillson: Probably not, but maybe. You have a massive material advantage, at present.\n\n73) dlwillson: T G2 Y2 Sea\n\tDraw5PlayAll: But you can just keep factory building... unless...\n\n74) Draw5PlayAll: Move Y1 G2 Draw5playall\n\n75) dlwillson: Discover G1 Sea B2 Sky\n\n76) Draw5PlayAll: Discover Y1 B2 G3 G3\n\n77) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G2 Sky\nB G3 Dlwillson\n\n78) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 B2\nBuild Y3 G3\nBuild Y3 Draw5playall\n\n79) dlwillson: B G3 Sky\n\n80) Draw5PlayAll: Move Y3 G3 Sky\n\n81) dlwillson: T G2 B2 Sky\n\n82) Draw5PlayAll: Sacrifice R1 Draw5playall\nAttack B2 Sky\n\n83) dlwillson: Trade G3 R3 Sky\n\n84) Draw5PlayAll: Sacrifice Y2 G2\nMove Y3 Sky Sea\nDiscover B2 Sky G3 G3b\n\n85) dlwillson: B Y2 Dlwillson\n\n86) Draw5PlayAll: Trade Y3 R3 Sea\n\n87) dlwillson: S Y2 Dlwillson\nD G2 Sea Y3 Solar\nD Y2 Sea G2 Forest\n\n88) Draw5PlayAll: Build Y2 G3\n\n89) dlwillson: S G2 Solar\nB Y3 Dlwillson\nB G2 Sky\n\n90) Draw5PlayAll: Build B1 G3b\n\n91) dlwillson: D Y2 Dlwillson R1 Mars\n\n92) Draw5PlayAll: Move Y3 B2 G3b\n\tdlwillson: Short term investments!\n\n93) dlwillson: Sacrifice Y3 Dlwillson\nMove Y2 Mars Forest\nMove Y2 Forest Draw5playall\nMove Y2 Forest Draw5playall\nCatastrophe Draw5playall Y\n\n\tdlwillson: GGTY!\r\nAndy did a video about what he calls the Bluebird Mistake: https://www.youtube.com/watch?v=081STRjOFMw\n\tDraw5PlayAll: HUH???\n\tDraw5PlayAll: I did not realize how much yellow you had and it was hard to trade away without giving you other opportunities.\n\nHomeworlds Online (SDG# 32647)\nVariants: "Unrated"\nStarted: 2017.7.8, Ended: 2017.7.21\nParticipants: Felix (S), Ausmuh (N)\nWinner: Ausmuh\n\n1) Ausmuh: Homeworld B3 Y2 G3\n\n2) Felix: H Y1 G3 B3\n\tAusmuh: Have fun!\n\n3) Ausmuh: Build G1 Ausmuh\n\tFelix: Thanks! Likewise!\n\n4) Felix: Build B1 Felix\n\n5) Ausmuh: Trade G1 Y1 Ausmuh\n\n6) Felix: Trade B1 Y1 Felix\n\n7) Ausmuh: Build Y2 Ausmuh\n\n8) Felix: Build Y2 Felix\n\n9) Ausmuh: D Y2 Ausmuh G1 Zzz\n\n10) Felix: Discover Y1 Felix G2 Emerald\n\n11) Ausmuh: Trade Y1 R1 Ausmuh\n\tFelix: Quit making me copy you ;)\n\n12) Felix: Build B1 Felix\n\tAusmuh: Hehe, guess I'll switch it up a bit. This universe didn't mess around when it came to space travel! \n\n13) Ausmuh: Build G1 Ausmuh\n\n14) Felix: Trade B1 R1 Felix\n\tFelix: No sir... it's one mobile universe!\n\n15) Ausmuh: Discover R1 Ausmuh G1 Znutar\n\n16) Felix: Build B1 Felix\n\n17) Ausmuh: Trade G1 B1 Ausmuh\n\n18) Felix: Trade B1 G1 Felix\n\n19) Ausmuh: Build G2 Ausmuh\n\n20) Felix: Discover G1 Felix B2 Azure\n\n21) Ausmuh: Move Y2 Zzz Azure\n\n22) Felix: Build G1 Azure\n\n23) Ausmuh: Sacrifice R1 Znutar\nAttack G1S Azure\n\n24) Felix: Build Y1 Emerald\n\n25) Ausmuh: Build Y3 Azure\n\n26) Felix: Build Y3 Emerald\n\tAusmuh: I live!\n\tAusmuh: I live!\n\tAusmuh: I'm so excited about it I had to double post. -_-'\n\n27) Ausmuh: Trade Y3 R3 Azure\n\tFelix: Haha, welcome back!\n\n28) Felix: Discover Y3 Emerald G1 Esmerelda\n\n29) Ausmuh: Sacrifice G3 Ausmuh\nBuild G2 Azure\nBuild G3 Ausmuh\nBuild Y3 Azure\n\n30) Felix: Build Y3 Esmerelda\n\n31) Ausmuh: Trade G2 R2 Ausmuh\n\n32) Felix: Sacrifice Y1 Emerald\nDiscover G1 Azure B1 Sapphire\n\n33) Ausmuh: Sacrifice Y2 Azure\nMove Y3 Azure Felix\nMove R3 Azure Felix\n\n34) Felix: Attack R3 Felix\n\tFelix: Great move! I think you have me.\n\n35) Ausmuh: Sacrifice R2 Ausmuh\nAttack R3S Felix\nAttack B3S Felix\n\n36) Felix: Sacrifice R1 Felix\nPass\n\tAusmuh: Thanks. I think so too. GG! That's about the only way I really know how to end a game. If my opp. doesn't have a 2-pip red and I can sneak 2 large ships in it's a good day. :)\r\n\r\nCatastrophe planning on the other hand.. what a mess I can make of that!\n\n37) Ausmuh: Attack Y2S Felix\n\tFelix: It's a great way to win. I usually guard against it, but I just missed it this time! Very well played and well earned victory.\n\tAusmuh: Thanks for the game! See you next time!\n\n\nHomeworlds Online (SDG# 32692)\nStarted: 2017.7.10, Ended: 2017.7.20\nParticipants: velgarath2 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R3 G2 B3\n\tFelix: Greetings! I have a few games under my belt, but I'd be happy to help you learn the ropes. Let me know if you have any questions, and I'll try to offer some helpful advice if I think of it\n\n2) velgarath2: Homeworld B1 Y2 G3\n\n3) Felix: B B1 Felix\n\tvelgarath2: Thank you! Let's see what happens \n\n4) velgarath2: Build G1 Velgarath2\n\n5) Felix: Trade B1 Y1 Felix\n\n6) velgarath2: Discover G1 Velgarath2 B3 Krypton\n\n7) Felix: Build B1 Felix\n\n8) velgarath2: Build G1 Velgarath2\n\n9) Felix: Trade B1 G1 Felix\n\n10) velgarath2: Build G2 Krypton\n\n11) Felix: Discover G1 Felix B1 Vergois\n\n12) velgarath2: Trade G1 Y1 Krypton\n\n13) Felix: Build B1 Felix\n\n14) velgarath2: Move G2 Krypton Vergois\n\n15) Felix: Build B2 Felix\n\n16) velgarath2: Trade G2 B2 Vergois\n\n17) Felix: Trade B2 R2 Felix\n\n18) velgarath2: Trade B2 R2 Vergois\n\n19) Felix: Build B2 Felix\n\n20) velgarath2: Attack G1 Vergois\n\n21) Felix: Discover B2 Felix G1 Outward\n\n22) velgarath2: Sacrifice G3 Velgarath2\nBuild G2 Vergois\nBuild G2 Vergois\nBuild G3 Velgarath2\n\n23) Felix: Trade B3 G3 Felix\n\n24) velgarath2: Build G3 Velgarath2\n\n25) Felix: Sacrifice G3 Felix\nBuild B2 Outward\nBuild B2 Felix\nBuild B3 Felix\n\tFelix: Nice move!\n\tvelgarath2: Thank you! Homeworlds is really tricky and challenging. But very cool!\n\n26) velgarath2: Trade G3 B3 Velgarath2\n\n27) Felix: Trade B3 G3 Felix\n\n28) velgarath2: Sacrifice G3 Velgarath2\nBuild B3 Velgarath2\nBuild G3 Velgarath2\nBuild R1 Vergois\n\tFelix: Yes indeed. There are a lot of things to think about, and it can get a bit overwhelming sometimes!\n\n29) Felix: Trade B2 Y2 Outward\n\n30) velgarath2: Trade G2 Y2 Vergois\n\n31) Felix: Sacrifice G3 Felix\nBuild Y1 Outward\nBuild B2 Outward\nBuild Y3 Felix\n\n32) velgarath2: Sacrifice B3 Velgarath2\nTrade Y1 R1 Krypton\nTrade B3 Y3 Velgarath2\nTrade G1 R1 Velgarath2\n\n33) Felix: Move R2 Felix Outward\n\n34) velgarath2: Move R1 Vergois Felix\n\n35) Felix: Attack R1 Felix\n\n36) velgarath2: Sacrifice Y3 Velgarath2\nMove R1 Krypton Vergois\nMove R1 Vergois Felix\nMove R2 Vergois Felix\nCatastrophe Felix Red\n\n37) Felix: Build B3 Felix\n\n38) velgarath2: Build G1 Vergois\n\n39) Felix: Move B3 Felix Vergois\n\n40) velgarath2: Move G1 Vergois Felix\n\n41) Felix: Sacrifice R2 Outward\nAttack G1 Felix\nAttack Y2 Vergois\n\tFelix: Nice one!\n\n42) velgarath2: Trade G1 Y1 Vergois\n\n43) Felix: Trade B2 R2 Felix\n\n44) velgarath2: Build G1 Velgarath2\n\n45) Felix: Sacrifice R2 Felix\nAttack G2 Vergois\nAttack Y1 Vergois\n\n46) velgarath2: Discover G1 Velgarath2 Y3 Alpha\n\n47) Felix: Sacrifice Y3 Felix\nDiscover G1 Felix G3 Rauros\nDiscover Y1 Vergois G2 Saria\nDiscover B3 Vergois G3 Darunia\n\tvelgarath2: That was a NICE move!!\n\n48) velgarath2: Build R1 Velgarath2\n\n49) Felix: Build Y3 Felix\n\tFelix: Thanks! But I'm not sure it will save me in the end.\n\n50) velgarath2: Discover R1 Velgarath2 Y3 Bravo\n\n51) Felix: Trade Y3 R3 Felix\n\n52) velgarath2: Build R1 Velgarath2\n\tDraw5PlayAll: At this point http://superdupergames.org/?page=archive_play&gid=32692&idx=37 I thought Felix was doomed. I am not sure now.\n\n53) Felix: Build Y3 Felix\n\n54) velgarath2: Move R1 Bravo Saria\n\n55) Felix: Move Y1 Saria Rauros\n\n56) velgarath2: Build R2 Saria\n\tvelgarath2: OMG....this is getting really ugly\n\n57) Felix: Build Y3 Vergois\n\n58) velgarath2: Build R2 Velgarath2\n\tFelix: I'm barely hanging on!\n\n59) Felix: Build B2 Darunia\n\n60) velgarath2: Move R2 Velgarath2 Rauros\n\n61) Felix: Move R3 Felix Rauros\n\n62) velgarath2: Sacrifice R2 Saria\nAttack G1 Rauros\nAttack Y1 Rauros\n\n63) Felix: Attack R2 Rauros\n\n64) velgarath2: Move Y1 Rauros Velgarath2\n\n65) Felix: Attack G1 Rauros\n\n66) velgarath2: Build R2 Saria\n\n67) Felix: Build B3 Darunia\n\n68) velgarath2: Sacrifice G1 Alpha\nBuild Y3 Velgarath2\n\n69) Felix: Sacrifice Y2 Vergois\nMove Y1 Outward Rauros\nMove Y1 Rauros Velgarath2\nCatastrophe Velgarath2 Yellow\n\n70) velgarath2: Build G1 Velgarath2\n\n71) Felix: Sacrifice Y3 Vergois\nMove B3 Darunia Velgarath2\nMove B3 Darunia Velgarath2\nMove B2 Darunia Velgarath2\nCatastrophe Velgarath2 Blue\n\n\tFelix: Good game! I hope you had fun and learned some things.\n\tvelgarath2: That was really a very nice game. Thank you for playing with me! \n\nHomeworlds Online (SDG# 32698)\nStarted: 2017.7.10, Ended: 2017.9.23\nParticipants: ratpfink (S), Joe_Hill (N)\nWinner: Joe_Hill\n\n1) Joe_Hill: Homeworld B2 R1 G3\n\n2) ratpfink: Homeworld Y2 B1 G3\n\n3) Joe_Hill: Build G1 Joe_hill\n\n4) ratpfink: Build G1 Ratpfink\n\n5) Joe_Hill: Trade G1 Y1 Joe_hill\n\n6) ratpfink: Discover G1 Ratpfink Y3 Cat\n\n7) Joe_Hill: Build G1 Joe_hill\n\n8) ratpfink: Build G1 Cat\n\n9) Joe_Hill: Discover G1 Joe_hill B3 Verge\n\n10) ratpfink: Build G2 Ratpfink\n\n\n11) Joe_Hill: Build G2 Verge\n\n12) ratpfink: Trade G2 R2 Ratpfink\n\n13) Joe_Hill: Trade G2 R2 Verge\n\n14) ratpfink: Build G2 Ratpfink\n\n15) Joe_Hill: Build G2 Verge\n\n16) ratpfink: Trade G2 Y2 Ratpfink\n\n17) Joe_Hill: Build Y1 Joe_hill\n\n18) ratpfink: Build Y1 Ratpfink\n\n19) Joe_Hill: Move Y1 Joe_hill Verge\n\n20) ratpfink: Move Y1 Ratpfink Cat\n\n21) Joe_Hill: Discover G1 Verge Y2 Merge\n\n22) ratpfink: Build G2 Ratpfink\n\n23) Joe_Hill: Build G2 Merge\n\n24) ratpfink: Build R1 Ratpfink\n\n25) Joe_Hill: Build Y3 Verge\n\n26) ratpfink: Sacrifice Y2 Ratpfink\nMove G1 Cat Merge\nMove G1 Cat Merge\nCatastrophe Merge G\n\n27) Joe_Hill: Trade Y3 R3 Verge\n\n28) ratpfink: Move R1 Ratpfink Verge\n\n29) Joe_Hill: Move R3 Verge Joe_hill\n\n30) ratpfink: Attack Y1 Verge\n\n31) Joe_Hill: Attack R1 Verge\n\n32) ratpfink: Discover Y1 Verge R1 Bat\n\n33) Joe_Hill: Build G1 Verge\n\n34) ratpfink: Build R2 Ratpfink\n\n35) Joe_Hill: Trade G3 Y3 Joe_hill\n\n36) ratpfink: Trade G2 B2 Ratpfink\n\n37) Joe_Hill: Trade G2 Y2 Verge\n\n38) ratpfink: Move R2 Ratpfink Cat\n\n39) Joe_Hill: Move R2 Verge Bat\n\n40) ratpfink: Discover Y1 Bat G2 Worm\n\n41) Joe_Hill: Build R3 Verge\n\n42) ratpfink: Build R3 Ratpfink\n\n43) Joe_Hill: Move R3 Joe_hill Cat\n\n44) ratpfink: Move R2 Cat Joe_hill\n\n45) Joe_Hill: Attack R2 Joe_hill\n\n46) ratpfink: Move Y1 Worm Cat\n\n47) Joe_Hill: T Y1 G1 Joe_hill\n\n48) ratpfink: Build G1 Ratpfink\n\n49) Joe_Hill: Move R1 Verge Ratpfink\n\n50) ratpfink: Sacrifice G1 Ratpfink\nBuild Y1 Cat\nCatastrophe Cat Y\n\n51) Joe_Hill: Build Y1 Joe_hill\n\n52) ratpfink: Discover R2 Ratpfink Y3 Wampa\n\n53) Joe_Hill: Build R3 Verge\n\n54) ratpfink: Attack R1 Ratpfink\n\n55) Joe_Hill: Sacrifice Y2 Verge\nMove R3 Verge Ratpfink\nMove R3 Verge Ratpfink\nCatastrophe Ratpfink Red\n\n56) ratpfink: Trade B2 Y2 Ratpfink\n\n57) Joe_Hill: Move Y1 Joe_hill Verge\n\n58) ratpfink: Build G1 Ratpfink\n\n59) Joe_Hill: Build G2 Verge\n\n60) ratpfink: Move G1 Ratpfink Wampa\n\n61) Joe_Hill: Trade G1 R1 Verge\n\n62) ratpfink: Build R3 Wampa\n\n63) Joe_Hill: Build R3 Verge\n\n64) ratpfink: Trade G3 R3 Ratpfink\n\n65) Joe_Hill: Build Y1 Verge\n\n66) ratpfink: Build G1 Wampa\n\n67) Joe_Hill: Move Y1 Verge Bat\n\n68) ratpfink: Sacrifice Y2 Ratpfink\nMove R3 Wampa Joe_hill\nMove R2 Wampa Joe_hill\nCatastrophe Joe_hill R\n\n69) Joe_Hill: Build G2 Joe_hill\n\n70) ratpfink: Move G1 Wampa Ratpfink\n\n71) Joe_Hill: M R2 Bat Wampa\n\n72) ratpfink: Move G1 Wampa Joe_hill\n\n73) Joe_Hill: Trade G1 R1 Joe_hill\n\n74) ratpfink: Build G1 Joe_hill\n\n75) Joe_Hill: Move R2 Wampa Joe_hill\n\n76) ratpfink: Build G2 Joe_hill\n\n77) Joe_Hill: Move Y1 Bat Joe_hill\nCatastrophe Joe_hill G\n\tratpfink: build g2 Joe_Hill\n\n78) ratpfink: Build R1 Ratpfink\n\n79) Joe_Hill: Trade Y1 G1 Joe_hill\n\n80) ratpfink: Discover R1 Ratpfink G3 Clown\n\n81) Joe_Hill: Build R2 Verge\n\n82) ratpfink: Build G1 Ratpfink\n\n83) Joe_Hill: Build G2 Joe_hill\n\n84) ratpfink: Discover G1 Ratpfink G3 Down\n\n85) Joe_Hill: Move R2 Joe_hill Down\n\n86) ratpfink: Sacrifice G1 Down\nBuild R2 Ratpfink\n\n87) Joe_Hill: S Y3 Joe_hill\nM R1 Verge Ratpfink\nM R2 Verge Ratpfink\nPass\nC Ratpfink R\n\n\nHomeworlds Online (SDG# 32619)\nVariants: "Hard time"\nStarted: 2017.7.10, Ended: 2017.7.26\nParticipants: Draw5PlayAll (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Draw5PlayAll: Homeworld B1 R3 G3\n\n3) wil: Build G1 Wil\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\twil: lol...so don't use any of your games in the tv shows eh? Not even if we change the names to protect the guilty?\n\n5) wil: Trade G1 B1 Wil\n\tDraw5PlayAll: TV??\n\twil: looney tv\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\twil: HWtv...having conversations continue in closed games is a pain...need to move them to current games.\n\n7) wil: Build B1 Wil\n\n8) Draw5PlayAll: Build R1 Draw5playall\n\twil: a race huh?\n\n9) wil: B G1 Wil\n\n10) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n11) wil: T G1 Y1 Wil\n\n12) Draw5PlayAll: Build R1 Draw5playall\n\n13) wil: D B1 Wil Y3 Y3\n\n14) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n15) wil: B B2 Wil\n\n16) Draw5PlayAll: Build R2 G2\n\n17) wil: D B1 Wil Y3 Why3\n\n18) Draw5PlayAll: Move Y1 Draw5playall G2\n\n19) wil: S G3 Wil\nB B2 Why3\nB B3 Y3\nB B3 Wil\n\n20) Draw5PlayAll: Move R2 G2 Why3\n\n21) wil: S B2 Why3\nT B3 G3 Wil\nT B3 R3 Y3\n\n22) Draw5PlayAll: Attack B1 Why3\n\n23) wil: Discover B2 Wil Y3 Ythree\n\n24) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 G2\nBuild R2 Why3\nBuild R3 Draw5playall\n\n25) wil: S G3 Wil\nB B2 Y3\nB B3 Ythree\nB B3 Y3\n\n26) Draw5PlayAll: Trade R2 G2 Why3\n\n27) wil: S B2 Y3\nT B3 G3 Y3\nT B2 R2 Ythree\n\n28) Draw5PlayAll: Move R2 Why3 Wil\n\n29) wil: M G3 Y3 Wil\n\n30) Draw5PlayAll: Trade R1 G1 Draw5playall\n\n31) wil: A R2 Wil\n\n32) Draw5PlayAll: Build R1 Draw5playall\n\n33) wil: T R2 B2 Wil\n\twil: Thank you for the donation of your warship, we may convert it for use in more peaceful missions\n\n34) Draw5PlayAll: Build B2 Why3\n\tDraw5PlayAll: My plan would have worked if there were more reds in the bank!\n\twil: Lol... The dog would have caught the cat if he didn't stop.at the fire hydrant...\r\n\n\twil: When planning a dinner or a battle...checking resources should happen before you light the fire...\n\n35) wil: Sacrifice G3 Wil\nBuild R2 Y3\nBuild B3 Y3\nBuild B3 Ythree\n\twil: Another contemplation at that stage is...don't take.out half the star unless you have a plan to take out the other half... Ya gotta watch access as the universe changes more worm holes open up.\n\n36) Draw5PlayAll: Move B1 Why3 Wil\n\n37) wil: M R2 Y3 Wil\n\n38) Draw5PlayAll: Move B2 Why3 Wil\nCatastrophe Wil Blue\n\n39) wil: Move B3 Y3 Wil\n\n40) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n41) wil: Move B3 Ythree G2\n\n42) Draw5PlayAll: Move R2 G2 Why3\n\n43) wil: S R2 Wil\nA R1 G2\nA Y1 G2\n\n44) Draw5PlayAll: Build Y2 Draw5playall\n\n45) wil: M B3 G2 Why3\n\n46) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover R2 Why3 Y2 Y2\nDiscover G2 Why3 Y2 Y2b\n\n47) wil: Build Y2 G2\n\n48) Draw5PlayAll: Sacrifice G2 Y2b\nBuild Y2 Draw5playall\nBuild R1 Y2\n\tDraw5PlayAll: This reminds me of the game Realm. Particularly the Dispersal plays.\n\n49) wil: B R2 G2\n\n50) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n51) wil: Trade B3 R3 Why3\n\n52) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n53) wil: M R2 Ythree B2\n\twil: I don't know the game realm...and dispersal? like catastrophes?\r\n\n\n54) Draw5PlayAll: Sacrifice G1 B2\nBuild G1 Draw5playall\n\n55) wil: T B3 G3 Ythree\n\n56) Draw5PlayAll: Discover G1 Draw5playall B2 B2b\n\tDraw5PlayAll: Really? I put my smallest explorer on an innocent system, and you have to scare it off?\n\n57) wil: S G3 Ythree\nB B1 Y3\nB B2 Y3\nB Y3 Wil\n\twil: We received a transmission, the ship wished to defect... You should know you just brought a traitor back home.\n\tDraw5PlayAll: I decommissioned the captain after a court martial. Now the ship is run by loyal members only.\n\n58) Draw5PlayAll: Build G1 B2b\n\n59) wil: M R3 Y3 B2b\n\n60) Draw5PlayAll: Build G1 Draw5playall\n\n61) wil: A G1 B2b\n\twil: Is this a better time for a visit?\n\n62) Draw5PlayAll: Build G2 B2b\n\n63) wil: Trade B2 G2 Y3\n\n64) Draw5PlayAll: Discover G1 Draw5playall B2 B2c\n\n65) wil: Sacrifice G2 Y3\nBuild B3 Wil\nBuild B3 Y3\n\n66) Draw5PlayAll: Build G2 B2c\n\n67) wil: Sacrifice Y2 G2\nMove R1 G2 Draw5playall\nMove R2 B2 Draw5playall\n\n68) Draw5PlayAll: Build G3 Draw5playall\n\n69) wil: M R2 G2 Draw5playall\nC Draw5playall R\n\twil: been dawdling too long, time to move in...\n\twil: I was working towards building the doomsday machine, but it appears the modified version will work fine.\n\twil: but we like what you've done with the place...we just have a little remodeling planned.\n\n70) Draw5PlayAll: Trade G2 R2 B2c\n\n71) wil: S Y3 Wil\nM B1 Y3 Draw5playall\nM B1 Y3 Draw5playall\nM B3 Y3 Draw5playall\nC Draw5playall B\n\n\twil: I surely could have done that more efficiently... Gg\n\nHomeworlds Online (SDG# 32625)\nVariants: "Hard time"\nStarted: 2017.7.10, Ended: 2017.7.17\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 R1 Wil\n\n6) Felix: Trade G1 R1 Felix\n\twil: Lez playz\n\n7) wil: B R2 Wil\n\n8) Felix: Build R2 Felix\n\n9) wil: T R1 Y1 Wil\n\n10) Felix: Trade R2 Y2 Felix\n\n11) wil: Build Y1 Wil\n\n12) Felix: Build G1 Felix\n\n13) wil: D Y1 Wil G3 G3\n\n14) Felix: Trade G1 B1 Felix\n\n15) wil: B Y1 G3\n\n16) Felix: Discover Y2 Felix G1 Piece\n\n17) wil: S G3 Wil\nB Y2 G3\nB Y3 Wil\nB Y3 Wil\n\n18) Felix: Build Y3 Piece\n\n19) wil: S Y2 G3\nM Y1 G3 Piece\nM Y1 G3 Piece\nC Piece Y\n\n20) Felix: Build B1 Felix\n\tFelix: Niiiiice\n\n21) wil: T Y3 G3 Wil\n\n22) Felix: Discover B1 Felix G1 Preston\n\twil: Yeah, two worthwhile sacrifices.\n\n23) wil: B Y1 Wil\n\n24) Felix: Build B1 Preston\n\n25) wil: D Y3 Wil G3 G3\n\n26) Felix: Trade B1 Y1 Preston\n\n27) wil: D Y1 Wil B3 B3\n\n28) Felix: Build B1 Preston\n\n29) wil: S G3 Wil\nB Y2 G3\nB Y2 B3\nB Y3 Wil\n\n30) Felix: Discover B1 Preston Y3 Brink\n\twil: Deja vu\n\n31) wil: M Y2 G3 Preston\n\n32) Felix: Sacrifice G3 Felix\nBuild B2 Brink\nBuild B2 Brink\nBuild B3 Felix\n\n33) wil: S R2 Wil\nA Y1 Preston\nA B1 Preston\n\n34) Felix: Sacrifice B1 Brink\nTrade B3 G3 Felix\n\twil: Deja blue\n\n35) wil: T Y3 G3 Wil\n\tFelix: And no yellows left for me!\n\n36) Felix: Trade B2 G2 Brink\n\n37) wil: B Y3 Preston\n\n38) Felix: Move B2 Brink Preston\n\n39) wil: T Y3 R3 Preston\n\n\tFelix: Not much point playing this out. Well played!\n\twil: Idk how many times I've won (or lost) on both sides of this situation due to the leader missing something or making a bad move and capitalizing.... I almost always hang out..\n\twil: Idk how many times I've won (or lost) on both sides of this situation due to the leader missing something or making a bad move and capitalizing.... I almost always hang out..\n\twil: But it can get confusing with a number of.games with the same player...\n\nHomeworlds Online (SDG# 32640)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.10, Ended: 2017.7.15\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B1 R3 G3\n\n2) wil: H Y2 B2 G3 *\n\n3) dlwillson: B G1 Dlwillson\n\twil: The microverse\n\twil: And instafreeze with ts52\n\n4) wil: B G1 Wil\n\tdlwillson: What do you mean?\n\twil: I just got into these two games playing the strange second responses...\n\twil: I just got into these two games playing the strange second responses...\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\twil: Unconventional.... Currently\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) wil: B Y2 Wil\n\n9) dlwillson: Move Y1 Dlwillson Wil\nCatastrophe Wil Y\n\n10) wil: B G1 Wil\n\n11) dlwillson: Build G1 Dlwillson\n\twil: Lol...forgot what was going on between games\n\tdlwillson: I was going to call it out, but then I realized that *you* set up the micro-verse. :-)\n\n12) wil: T G3 R3 Wil\n\n13) dlwillson: Trade G1 R1 Dlwillson\n\twil: Oh no worries... I enjoy losing to my own stupid mistakes... I am working at convincing myself that someday I'll quit making them.\n\n14) wil: B G1 Wil\n\n15) dlwillson: B G1 Dlwillson\n\n16) wil: T G1 Y1 Wil\n\n17) dlwillson: T G1 B1 Dlwillson\n\n18) wil: B G1 Wil\n\n19) dlwillson: B B1 Dlwillson\n\n20) wil: Discover G1 Wil B3 B3\n\n21) dlwillson: D B1 Dlwillson G2 Field\n\twil: yeah this one is over\n\n22) wil: B G1 Wil\n\tdlwillson: It's going to take a few more moves to get it done, though.\n\n23) dlwillson: S G3 Dlwillson\nB B2 Field\nB B2 Field\nB B3 Dlwillson\n\n24) wil: B G2 B3\n\n25) dlwillson: M B1 Dlwillson Wil\n\twil: Just wanna watch my world collapse\n\n26) wil: Attack B1 Wil\n\n27) dlwillson: M B3 Dlwillson Wil\n\n28) wil: A B3 Wil\n\n29) dlwillson: T B2 Y2 Field\n\twil: What am I missing?\n\twil: Did you just slip?\n\tdlwillson: LOL! Yes!\n\n30) wil: M B3 Wil Dlwillson\n\twil: Lol...that will still work.\n\twil: Or maybe it won't.\n\n\tdlwillson: Hahaha! Good game! Sheesh!\r\n/me slaps his forehead\n\twil: Yes, you let me free!\n\nHomeworlds Online (SDG# 32642)\nStarted: 2017.7.10, Ended: 2017.9.22\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) wil: H Y3 B2 G3\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) wil: B G1 Wil\n\n5) MobyNostromo: T Y1 G1 Mobynostromo\n\n6) wil: T G1 B1 Wil\n\n7) MobyNostromo: B G1 Mobynostromo\n\n8) wil: B B1 Wil\n\n9) MobyNostromo: D G1 Mobynostromo Y3 Azo\n\n10) wil: D B1 Wil Y1 Y1\n\n11) MobyNostromo: B G1 Mobynostromo\n\n12) wil: S G3 Wil\nB B2 Y1\nB B2 Y1\nB B3 Wil\n\n13) MobyNostromo: B G2 Azo\n\n14) wil: S B2 Y1\nT B2 R2 Y1\nT B3 G3 Wil\n\n15) MobyNostromo: D G2 Azo B2 Thalo\n\n16) wil: S G3 Wil\nB B2 Y1\nB B3 Y1\nB B3 Wil\n\n17) MobyNostromo: B Y1 Mobynostromo\n\n18) wil: Move B3 Y1 Azo\n\n19) MobyNostromo: Trade G1 R1 Mobynostromo\n\n20) wil: T B3 G3 Wil\n\n21) MobyNostromo: B G1 Thalo\n\n22) wil: S G3 Wil\nB B3 Wil\nB B3 Azo\nB R1 Y1\n\n23) MobyNostromo: B G2 Azo\n\n24) wil: S B2 Y1\nT B3 G3 Wil\nT B3 R3 Azo\n\n25) MobyNostromo: D G2 Azo Y2 Nickel\n\n26) wil: S G3 Wil\nB B2 Azo\nB B3 Y1\nB B3 Wil\n\n27) MobyNostromo: B G3 Nickel\n\n28) wil: S B2 Azo\nT B3 G3 Wil\nT B3 G3 Y1\n\n29) MobyNostromo: T G2 B2 Thalo\n\n30) wil: A G1 Azo\n\n31) MobyNostromo: D Y1 Mobynostromo B3 Cobalt\n\n32) wil: S G3 Y1\nB B3 Azo\nB G2 Azo\nB G3 Wil\n\n33) MobyNostromo: B Y1 Mobynostromo\n\n34) wil: Trade G2 Y2 Azo\n\n35) MobyNostromo: S Y3 Mobynostromo\nM Y1 Cobalt Thalo\nM Y1 Thalo Azo\nM Y1 Mobynostromo Azo\nC Azo Y\n\n36) wil: S G3 Wil\nB B3 Y1\nB B3 Wil\nB B3 Y1\n\n37) MobyNostromo: S G3 Nickel\nB G1 Nickel\nB G2 Thalo\nB G3 Mobynostromo\n\n38) wil: B G3 Wil\n\n39) MobyNostromo: T G2 Y2 Thalo\n\n40) wil: S B3 Wil\nT G3 R3 Wil\nT B3 G3 Y1\nT B3 Y3 Y1\n\n41) MobyNostromo: D B2 Thalo Y1 Arylide\n\n42) wil: B B3 Y1\n\n43) MobyNostromo: Trade G1 Y1 Mobynostromo\n\n44) wil: B B3 Y1\n\n45) MobyNostromo: B Y2 Mobynostromo\n\n46) wil: M B3 Y1 Thalo\n\n47) MobyNostromo: D Y1 Mobynostromo Y3 Oxide\n\n48) wil: B B3 Y1\n\n49) MobyNostromo: S Y2 Mobynostromo\nM Y1 Oxide Y1\nM Y2 Thalo Y1\nC Y1 Y\n\n50) wil: B R1 Wil\n\n51) MobyNostromo: T G1 Y1 Thalo\n\n52) wil: S R1 Wil\nA Y1 Thalo\n\n53) MobyNostromo: B R1 Mobynostromo\n\n54) wil: M B3 Thalo Arylide\n\n55) MobyNostromo: T R1 Y1 Mobynostromo\n\n56) wil: B R1 Wil\n\n57) MobyNostromo: B Y2 Mobynostromo\n\n58) wil: S R1 Wil\nA B2 Arylide\n\n59) MobyNostromo: B R1 Mobynostromo\n\n60) wil: D B2 Arylide G3 G3\n\n61) MobyNostromo: D R1 Mobynostromo Y3 Vanadate\n\n62) wil: T B2 Y2 G3\n\n63) MobyNostromo: T Y1 B1 Mobynostromo\n\n64) wil: B G1 Wil\n\n65) MobyNostromo: M B1 Mobynostromo Vanadate\n\n66) wil: M B3 Arylide G3\n\n67) MobyNostromo: T R1 G1 Vanadate\n\n68) wil: D B1 Wil Y1 Y1\n\n69) MobyNostromo: B B2 Vanadate\n\n70) wil: B B3 G3\n\n71) MobyNostromo: S G3 Mobynostromo\nB G2 Vanadate\nB G3 Vanadate\nB R1 Mobynostromo\n\n72) wil: S G3 Wil\nB G3 Wil\nB B3 Y1\nB R1 Wil\n\n73) MobyNostromo: M G3 Vanadate Mobynostromo\n\n74) wil: Sacrifice G3 Wil\nBuild Y1 Thalo\nBuild Y3 G3\nBuild G3 Wil\n\n75) MobyNostromo: M R1 Mobynostromo Vanadate\n\n76) wil: S Y2 G3\nM Y3 G3 Mobynostromo\nM B3 G3 Mobynostromo\n\n77) MobyNostromo: A Y3 Mobynostromo\n\n78) wil: S R3 Wil\nA G3 Mobynostromo\nA Y3 Mobynostromo\nA Y2 Mobynostromo\n\n79) MobyNostromo: T B2 R2 Vanadate\n\n80) wil: S R1 Wil\nA R1 Mobynostromo\n\n\twil: It was a hostile takeover...we evidently like your world better than our own\n\tMobyNostromo: It seems that way...\n\nHomeworlds Online (SDG# 32657)\nStarted: 2017.7.10, Ended: 2017.7.21\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n2) wil: H G2 B1 B3 *\n\n3) ts52: Build G1 Ts52\n\twil: The instafreeze\n\twil: And microverse with dlwillson\n\n4) wil: Build B1 Wil\n\tts52: interesting, sorry for the delay\n\twil: no worries\r\n\n\n5) ts52: Build G1 Ts52\n\n6) wil: T B3 Y3 Wil\n\n7) ts52: Discover G1 Ts52 B2 Grover\n\twil: How was camping?\n\n8) wil: B B2 Wil\n\tts52: Not the greatest. Kind of cold, and damp, and the lake was closed to swimming because of bacteria :( Still had fun though. \n\n9) ts52: Build G1 Grover\n\n10) wil: D B1 Wil G3 G3\n\n11) ts52: Build G2 Ts52\n\n12) wil: B B2 G3\n\n13) ts52: Build G2 Grover\n\twil: Last trip I went on 20% of the campground got noro....I was unscathed, but the horror stories! Last year I was over a month in tents..wunderful\n\tts52: Glad you managed to escape unscathed. We only get to take 2 short camping trips a year, but we make the most of them.\n\n14) wil: B B3 Wil\n\n15) ts52: Trade G3 Y3 Ts52\n\n16) wil: T B3 G3 Wil\n\twil: You go camping to the same place or different parks? Car camping, RVing, or backpackin?\n\n17) ts52: Build G3 Ts52\n\tts52: So far we always go the same place, but they've had so many problems with cyanobacteria, we may have to find some new places. Basically car camping, but the place we go you have to haul your gear away from the parking area, so you don't hear cars coming and going from your site. We have a '10 person' tent for the 4 of us. :D\n\n18) wil: S G3 Wil\nB B3 Wil\nB B3 G3\nB Y1 Wil\n\twil: Tents and inflatable boats, you.always divide by two for the real number... \n\n19) ts52: Trade G3 B3 Ts52\n\twil: This is the deal now...the kids get.their own bedrooms...\n\tts52: Yeah, always divide by 2. Haven't gotten into inflatable boats yet, but I can see it would be the same. How old are your kids?\n\n20) wil: S B2 G3\nT B3 G3 G3\nT B3 G3 Wil\n\twil: https://o7fe62guj6g73vlj30xpogpm-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/MIH0774And8more-hdr2233-Edit-1024x684.jpg\n\twil: https://o7fe62guj6g73vlj30xpogpm-wpengine.netdna-ssl.com/wp-content/uploads/2016/08/MIH0774And8more-hdr2233-Edit-1024x684.jpg\n\twil: Lol,.mine just turned 24...awesome campers...by the time they were in middle.school... All I did was drive up. And then tell them I was gonna go pay, when I got.back the tent and kitchen was set up...\n\n21) ts52: Discover G2 Ts52 Y2 Bigbird\n\tts52: That's awesome. Great picture too. Mine are 9 and 11, so not quite ready to set up without me yet.\n\tts52: Also, nice play with the double trade.\n\n22) wil: Sacrifice G3 G3\nBuild B2 Wil\nBuild B3 G3\nBuild B3 G3\n\twil: lol...that is not my tent!! that is what happens when you jump back and forth between devices...that was the temple 2016 burning man...I was camped there for 12 days last year...\n\n23) ts52: Build G3 Ts52\n\twil: This one, three tents attach to a central.popup. and there is an internal tent.for.that too...https://www.amazon.com/gp/aw/d/B01IT4SVIG/ref=mp_s_a_1_9?ie=UTF8&qid=1500407761&sr=8-9&pi=AC_SX236_SY340_FMwebp_QL65&keywords=ozark+trail+canopy+tent\n\tDraw5PlayAll: All of wills ships are aligned on the left in my view.\n\tts52: That looks like a pretty cool setup.\n\n24) wil: Trade B3 R3 G3\n\twil: I first saw it camping in NC near tennesee in a rainforest...I chuckled...those flys aren't going to help...it rained/poured every day for at least an hour..sometimes 8..sometimes all day... over two weeks and not a problem...so I bought my own...roll out a tarp and oriental rug and we is glamping\n\n25) ts52: Trade G3 R3 Ts52\n\n26) wil: Build B3 G3\n\n27) ts52: Build G3 Ts52\n\n28) wil: S Y1 Wil\nM R3 G3 Grover\n\tts52: That's pretty awesome. I'll have to keep it in mind when my current tent finally falls apart.\n\n29) ts52: Sacrifice Y3 Ts52\nMove B3 Ts52 Grover\nMove B3 Grover G3\nMove B3 G3 Wil\nCatastrophe Wil Blue\n\tDraw5PlayAll: ts52's homeworld fleet... especially if he moves the g1 out.\n\twil: he may just do that to catastrophe the greens I am about to accumulate...\n\n30) wil: A G2 Grover\n\n31) ts52: Move G1 Ts52 Wil\n\n32) wil: S B3 G3\nT G3 R3 Wil\nT B3 G3 G3\nT B1 Y1 G3\n\n33) ts52: Sacrifice G1 Grover\nBuild G1 Wil\n\n34) wil: Sacrifice Y3 Wil\nMove R3 Wil Ts52\nMove R3 Grover Ts52\nMove G3 G3 Wil\nCatastrophe Wil G\n\twil: blunders r us! good game... I like to lose these and save my luck for the ladder!!\n\twil: Keeps my points down so folks missunderstimate me..\n\tts52: Indeed, good game! I look forward to our next one.\n\n\nHomeworlds Online (SDG# 32713)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.11, Ended: 2017.7.20\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R2 B2 G3 *\n\n2) Felix: Homeworld Y2 B3 G3\n\tdlwillson: Strange that the engine forces confirmation for this, while being completely indifferent to forgone catastrophes.\n\tFelix: Odd indeed. I like the experimentation! You've presented me with a very interesting choice...\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Felix: Build G1 Felix\n\tdlwillson: I wonder if b1 r1 would be strong or weak, in the end? I wonder if a yellow or blue starting ship would work well. Yellow seems like it would, but then you'd *have* to have a green star. Yuck. I'm not sure *why* it's yuck, but yuck.\n\tFelix: I do like the idea of starting with blue or yellow, but I can't stand having a green star! It just feels like a lot of toil to try and set up a factory. I do it sometimes to handicap myself against new players; but I really don't like it. I thought about using a 1-1 against this, but I kind of want to see how the 2-2 works against a fortress.\n\tFelix: In theory, 2-2 may be the strongest starting position, since it lets you block larges and move out to smalls if necessary. But it also forces a small or micro universe, which certainly has quirks. It's a totally different game when there isn't time to build up your fleet.\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Felix: Trade G1 Y1 Felix\n\tdlwillson: Could build the factory in another system. It's slower, but it could work.\n\tDraw5PlayAll: But if you go FIRST with the 2-2 then you have a tempo more. I like the blue-red stars since I can safely build yellow ships in the homeworld, and with a yellow star that gets risky. Colonies are hard to come by so I like to keep yellows at home.\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) Felix: Build Y2 Felix\n\n9) dlwillson: D Y1 Dlwillson B1 Sea\n\n10) Felix: Discover Y1 Felix G1 Out\n\n11) dlwillson: B G1 Dlwillson\n\n12) Felix: Build G1 Felix\n\n13) dlwillson: Discover G1 Dlwillson Y3 Solar\n\n14) Felix: Discover G1 Felix B1 Oat\n\n15) dlwillson: B G2 Dlwillson\n\n16) Felix: Build G2 Felix\n\n17) dlwillson: Build G2 Solar\n\n18) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Oat\nBuild Y2 Out\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild Y3 Sea\nBuild Y3 Dlwillson\n\n20) Felix: Sacrifice Y2 Felix\nMove G1 Oat Dlwillson\nMove G3 Oat Dlwillson\n\n21) dlwillson: Discover Y1 Dlwillson B1 Sky\nCatastrophe Dlwillson G\n\tFelix: Oh boy. This is ill conceived.\n\tDraw5PlayAll: Unusual move.\n\n22) Felix: Discover Y1 Out B3 Aegis\n\tdlwillson: I'm not sure ... what was supposed to happen?\n\tFelix: Oh, pretty much what just happened. I just thought it would be fun to force you to do the catastrophe instead. I just meant that attacking this soon is ill conceived.\n\n23) dlwillson: M G1 Solar Dlwillson\n\n24) Felix: Move Y1 Aegis Dlwillson\n\n25) dlwillson: Attack Y1 Dlwillson\n\n26) Felix: Build Y2 Out\n\n27) dlwillson: T Y1 G1 Sea\n\n28) Felix: Move Y2 Out Dlwillson\n\n29) dlwillson: Sacrifice Y3 Sea\nMove G2 Solar Sea\nMove G2 Sea Felix\nMove G1 Sea Felix\nCatastrophe Felix G\n\tdlwillson: Sneak, sneak, sneak... KABOOOOM!!!\n\tFelix: Wow, nicely done. I wasn't expecting that. Rookie mistake! I have not been on my game over the last few weeks. Not enough coffee? Well played!\n\n\nHomeworlds Online (SDG# 32719)\nVariants: "Unrated"\nStarted: 2017.7.11, Ended: 2017.7.21\nParticipants: Jaybones (S), Eraelan (N)\nWinner: Jaybones\n\n1) Eraelan: Homeworld B3 G2 Y3\n\tJaybones: Hi there :) I'm completely new to Homeworlds too! Excited to finally get a game in. Good luck!\n\n2) Jaybones: Homeworld R3 B1 G3\n\tEraelan: I'm looking forward to playing! Good luck to you as well!\n\n3) Eraelan: Build Y1 Eraelan\n\n4) Jaybones: Build G1 Jaybones\n\tEraelan: Boy...getting a hang of these commands certainly takes some time.\n\n5) Eraelan: Discover Y3 Eraelan G1 Callup\n\n6) Jaybones: Build G1 Jaybones\n\n7) Eraelan: Build Y1 Eraelan\n\tJaybones: Tell me about it! Haha getting there... I think?!\n\n8) Jaybones: Trade G1 Y1 Jaybones\n\n9) Eraelan: Move Y1 Eraelan Callup\n\n10) Jaybones: Discover Y1 Jaybones G2 Melon\n\n11) Eraelan: Build Y2 Eraelan\n\n12) Jaybones: Build Y2 Melon\n\n13) Eraelan: Trade Y1 B1 Eraelan\n\n14) Jaybones: Build G1 Jaybones\n\n15) Eraelan: Build Y1 Callup\n\n16) Jaybones: Move Y1 Melon Callup\nCatastrophe Callup Y\n\n17) Eraelan: Build Y1 Eraelan\n\tEraelan: Well...that's unfortunate.\n\n18) Jaybones: Trade G1 Y1 Jaybones\n\n19) Eraelan: Discover B1 Eraelan G1 Color\n\tJaybones: I couldn't resist my first ever catastrophe opportunity sorry!\n\tEraelan: Haha, no worries. Had it been me I probably would have done the same.\n\n20) Jaybones: Discover G1 Jaybones Y2 Banana\n\n21) Eraelan: Build B1 Color\n\n22) Jaybones: Discover G1 Banana G1 Apple\n\tJaybones: Discover G1 Banana g1 Apple\n\n23) Eraelan: Build B2 Color\n\tJaybones: Ha! Wrong text box, still getting used to this site!\n\n24) Jaybones: Build G2 Jaybones\n\tEraelan: Haha, I know the feeling! \n\n25) Eraelan: Trade B2 R2 Color\n\n26) Jaybones: Sacrifice G3 Jaybones\nBuild G3 Jaybones\nBuild G3 Apple\nBuild G3 Jaybones\n\n27) Eraelan: Build B2 Color\n\tEraelan: Nice job controlling the Green!\n\n28) Jaybones: Trade G3 R3 Jaybones\n\n29) Eraelan: Build Y1 Eraelan\n\tJaybones: Cheers, I'm amazed at how much there is to take in in this game and the possibilities available. Feel like my brain is about to fall out of my head!\n\n30) Jaybones: Sacrifice G3 Jaybones\nBuild G3 Jaybones\nBuild Y2 Jaybones\nBuild Y3 Melon\n\tEraelan: I know! I feel like I'm just pulling levers and hoping for the best at this point. Haha. \n\n31) Eraelan: Build R1 Color\n\n32) Jaybones: Sacrifice Y2 Melon\nMove Y3 Melon Apple\nMove Y3 Apple Eraelan\nCatastrophe Eraelan Yellow\n\tJaybones: Whew, thank you the game! Great fun and learned a lot! \n\tJaybones: Thank you for the game*!\n\n\nHomeworlds Online (SDG# 32728)\nVariants: "Hard time"\nStarted: 2017.7.12, Ended: 2017.7.18\nParticipants: foksieloy (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\tfoksieloy: good luck, have fun\n\n2) foksieloy: Homeworld B1 R3 G3\n\n3) bhorner: Build G1 Bhorner\n\n4) foksieloy: Build G1 Foksieloy\n\tbhorner: Yes, good luck to you too. :)\n\n5) bhorner: Trade G1 B1 Bhorner\n\n6) foksieloy: Trade G1 Y1 Foksieloy\n\n7) bhorner: Build B2 Bhorner\n\n8) foksieloy: Build Y1 Foksieloy\n\n9) bhorner: Trade B2 Y2 Bhorner\n\n10) foksieloy: Discover Y1 Foksieloy G2 Tibbers\n\n11) bhorner: Build B2 Bhorner\n\n12) foksieloy: Build Y1 Foksieloy\n\n13) bhorner: Build Y2 Bhorner\n\n14) foksieloy: Discover Y1 Foksieloy G2 Annie\n\n15) bhorner: Discover Y2 Bhorner G3 Xmas\n\n16) foksieloy: Build G1 Foksieloy\n\n17) bhorner: Move B2 Bhorner Xmas\n\n18) foksieloy: Discover Y1 Annie B3 Valor\n\n19) bhorner: Build B2 Bhorner\n\n20) foksieloy: Sacrifice G1 Foksieloy\nBuild Y2 Valor\n\n21) bhorner: Build Y3 Xmas\n\n22) foksieloy: Trade Y2 B2 Valor\n\n23) bhorner: Discover B2 Bhorner Y3 Big-bird\n\n24) foksieloy: Build Y2 Tibbers\n\n25) bhorner: Build Y3 Bhorner\n\n26) foksieloy: Trade Y1 G1 Valor\n\n27) bhorner: Build B3 Xmas\n\n28) foksieloy: Build G1 Valor\n\n29) bhorner: Trade B3 R3 Xmas\n\n30) foksieloy: Sacrifice Y1 Foksieloy\nMove B2 Valor Tibbers\n\n31) bhorner: Move R3 Xmas Tibbers\n\n32) foksieloy: Sacrifice Y2 Tibbers\nMove G1 Valor Bhorner\nMove G1 Valor Bhorner\n\n33) bhorner: Sacrifice Y2 Bhorner\nMove G3 Bhorner Xmas\nDiscover G3 Xmas Y2 Little-bird\n\n34) foksieloy: Move B2 Tibbers Big-bird\n\n35) bhorner: Move Y3 Xmas Little-bird\n\n36) foksieloy: Move B2 Big-bird Bhorner\n\tbhorner: I'm not certain, but I think everything can be blamed on the little blue in your homeworld, which matched mine.\n\tfoksieloy: Yea, basically I just woke up and thought I was the first player. :)\n\n37) bhorner: Sacrifice Y2 Xmas\nMove Y3 Little-bird Foksieloy\nMove G3 Little-bird Foksieloy\n\tbhorner: Ah!\n\n38) foksieloy: Build B3 Bhorner\nCatastrophe Bhorner Blue\n\n39) bhorner: Sacrifice R3 Tibbers\nAttack G3 Foksieloy\nPass\nPass\n\tfoksieloy: The last hurrah. GG!\n\tbhorner: GG. :)\n\n\nHomeworlds Online (SDG# 32727)\nVariants: "Unrated"\nStarted: 2017.7.13, Ended: 2017.10.13\nParticipants: Ausmuh (S), AcetyleneLamp (N)\nWinner: AcetyleneLamp\n\n1) AcetyleneLamp: Homeworld B2 G1 Y3\n\n2) Ausmuh: Homeworld G3 R2 B3\n\n3) AcetyleneLamp: Build Y1 Acetylenelamp\n\tAusmuh: Hello, have a fun game!\n\n4) Ausmuh: Build B1 Ausmuh\n\n5) AcetyleneLamp: Discover Y1 Acetylenelamp R3 Corneria\n\n6) Ausmuh: Build B1 Ausmuh\n\n7) AcetyleneLamp: Build Y1 Acetylenelamp\n\tAusmuh: Usually at the beginning of the game it's building and trading. I'm not totally sure you needed to move to a red planet. I'm two moves away from that planet and I don't have any move myself so me attacking you is not a threat. Just a thought. If Draw5 is watching, maybe they'd like to give a pointer or two also.\n\tDraw5PlayAll: I am watching. I usually prefer to start with green as the ship instead of the star. I consider green and yellow to be important colors and I like the chance to have them in my homeworld without fear of a catastrophe of my stars.\r\n\r\nAt Corneria, you have no ability to build or trade. However that system CAN be useful if you manage to get a green there.\n\tAcetyleneLamp: Thanks for the advice. I don't really know what I'm doing, as you may have guessed.\n\tDraw5PlayAll: Ausmuh undid their last move and has not made a new one.\r\n\r\nAcetylene, you should probably build another Y1 and then trade it for a green. And for future reference you may want to look at this game: http://superdupergames.org/main.html?page=archive_play&gid=32306 (in progress as of now). My opponent played with a G1 star and has since gotten no green ships at all.\n\tAusmuh: Thanks and sorry!! \r\n\r\nBusy at work but I'm back!\r\n\r\nIt's ok to not know what you're doing yet. We can cruise around space getting our bearings.\r\n\r\nNormally I'd trade My small blue for a small yellow. That way when you build... It would have to be a small yellow too. Then I'd get to grab a medium first. If you follow that.\r\n\r\nInstead I'll just take another blue. You definitely want to get some build to Corneria soon.\r\n\r\nLet me know if you're having trouble following!\n\n8) Ausmuh: Trade B1 Y1 Ausmuh\n\n9) AcetyleneLamp: Trade Y1 G1 Acetylenelamp\n\n10) Ausmuh: Discover B1 Ausmuh G1 Zog\n\n11) AcetyleneLamp: Move G1 Acetylenelamp Corneria\n\n12) Ausmuh: Build Y1 Ausmuh\n\n13) AcetyleneLamp: Build Y2 Acetylenelamp\n\n14) Ausmuh: Move Y1 Ausmuh Zog\n\tAusmuh: Nice. Now you have a little outpost (Corneria). To be connected to my homeworld you will need to move out from a 3-pip planet to a 1-pip planet. You're also spread out a little so acquiring new ships will be easier without being afraid of Catastrophe.\r\n\r\nWe have also opened up 2-pips in the bank. Collecting a 2-pip ship or two can be quite useful.\r\n\r\nAs it stands, no one has build an attack ship. You usually don't need to collect attack, but if your opponent arms themselves, you will want to do the same. \r\n\r\nThis is where the game can get overwhelming sometimes so don't hesitate to ask questions and always take what I say with a grain of salt - there are many better players then me. :)\n\n15) AcetyleneLamp: Trade Y2 R2 Acetylenelamp\n\tDraw5PlayAll: Also I am disinterested in the result and Ausmuh is not.\n\n16) Ausmuh: Build Y2 Zog\n\tAusmuh: ?\n\n17) AcetyleneLamp: Build Y2 Acetylenelamp\n\tDraw5PlayAll: I am disinterested as to the result of this game. Therefore I can offer neutral advice. Ausmuh is playing the game and thus may be biased.\n\n18) Ausmuh: Discover Y1 Zog G3 Alfred\n\n19) AcetyleneLamp: Trade Y2 B2 Acetylenelamp\n\n20) Ausmuh: Build Y2 Alfred\n\n21) AcetyleneLamp: Move B2 Acetylenelamp Corneria\n\n22) Ausmuh: Discover Y1 Alfred B1 Zawg\n\n23) AcetyleneLamp: Trade Y1 R1 Corneria\n\n24) Ausmuh: Trade Y2 R2 Zog\n\n25) AcetyleneLamp: Build Y1 Acetylenelamp\n\n26) Ausmuh: Trade B3 G3 Ausmuh\n\n27) AcetyleneLamp: Move Y1 Acetylenelamp Corneria\n\n28) Ausmuh: Build Y2 Alfred\n\n29) AcetyleneLamp: Move R2 Acetylenelamp Corneria\n\n30) Ausmuh: Move Y2 Alfred Zog\n\n31) AcetyleneLamp: Move R2 Corneria Zawg\n\n32) Ausmuh: Sacrifice G3 Ausmuh\nBuild Y2 Alfred\nBuild Y3 Ausmuh\nBuild Y3 Zawg\n\tAcetyleneLamp: Was afraid my red pieces at Corneria were going to get catastrophed, after I made my last move, I check the rules again and saw that four pieces (either stars or ships) of the same color are enough for a catastrophe, I initially thought it was just ships.\n\n33) AcetyleneLamp: Attack Y1 Zawg\n\n\nHomeworlds Online (SDG# 32739)\nVariants: "Hard time"\nStarted: 2017.7.14, Ended: 2017.7.27\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) Felix: Homeworld B1 R3 G3\n\twil: Here we go again\n\n3) wil: B G1 Wil\n\tFelix: Dun dun duuuuun\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Trade G1 R1 Felix\n\n7) wil: B G1 Wil\n\n8) Felix: Build R1 Felix\n\tdlwillson: Felix: Are you on Facebook? Ausmuh started a group for Homeworlds and the Looney started a group for Starship Captains.\n\tFelix: I'm barely on Facebook. I have an account I share with my wife solely for the sake of membership in groups like that. My name on there is J.D. Sellers and I am in the Starship Captains group already. I'll look for the homeworlds one!\n\n9) wil: T G1 Y1 Wil\n\n10) Felix: Trade R1 Y1 Felix\n\n11) wil: B B1 Wil\n\n12) Felix: Build R1 Felix\n\n13) wil: D B1 Wil R3 R3\n\n14) Felix: Discover R1 Felix G2 Rauros\n\n15) wil: B G1 Wil\n\n16) Felix: Build R2 Felix\n\n17) wil: S G3 Wil\nB B2 R3\nB B2 R3\nB B3 Wil\n\n18) Felix: Discover R2 Felix Y2 Tail\n\n19) wil: T B3 R3 Wil\n\n20) Felix: Build G1 Felix\n\n21) wil: B B3 Wil\n\n22) Felix: Trade G3 B3 Felix\n\n23) wil: D B3 Wil G3 G3\n\n24) Felix: Build B3 Felix\n\n25) wil: T B2 G2 R3\n\n26) Felix: Move B3 Felix Rauros\n\twil: Nice move, somebody wasn't thinking.\n\n27) wil: B B2 R3\n\tFelix: Thanks! I was hoping for a lucky break. Choosing the red path at the beginning was a poor decision.\n\n28) Felix: Build R2 Rauros\n\n29) wil: Trade B2 Y2 R3\n\twil: Capitalizing in any mistake is as big a part as not making them is..\n\n30) Felix: Trade R2 Y2 Rauros\n\tFelix: Unless you cancel yourself out by capitalizing on a mistake and then making mistakes yourself, as I'm likely to do now :P\n\n31) wil: Build B2 G3\n\twil: I can only hope...I hung on to a sure loss to dlwillson....and he made a blunder which completely turned the game around.\n\n32) Felix: Trade B3 G3 Felix\n\n33) wil: Build B3 R3\n\n34) Felix: Sacrifice G3 Felix\nBuild Y1 Rauros\nBuild Y3 Felix\nBuild Y3 Felix\n\n35) wil: Build Y3 R3\n\n36) Felix: Build R2 Rauros\n\n37) wil: S Y3 R3\nM B3 R3 Tail\nM Y2 R3 Tail\nM Y2 Tail Felix\nC Felix Y\n\tdlwillson: Yeah! <grumble, mumble>\n\n38) Felix: Move B3 Rauros Felix\n\twil: Oops\n\n39) wil: Trade B2 R2 G3\n\n40) Felix: Move Y2 Rauros Felix\n\tFelix: Oops indeed\n\n41) wil: B B2 G3\n\n42) Felix: Build Y1 Rauros\n\n43) wil: Trade B3 Y3 G3\n\n44) Felix: Discover Y1 Rauros Y3 Gold\n\n45) wil: Sacrifice G2 R3\nBuild Y2 Wil\nBuild Y3 G3\n\n46) Felix: Move Y1 Gold Wil\n\n47) wil: Trade B3 Y3 Tail\n\n48) Felix: Sacrifice R2 Tail\nAttack G1 Wil\nAttack B1 Wil\n\n49) wil: A B1 Wil\n\n50) Felix: Sacrifice Y1 Wil\nDiscover R2 Rauros G3 Edge\n\n51) wil: M Y3 Tail Edge\n\n52) Felix: Sacrifice Y1 Rauros\nMove R2 Edge Wil\n\n53) wil: S R2 G3\nA R2 Wil\nA G1 Wil\n\n54) Felix: Sacrifice Y2 Felix\nMove R1 Rauros Edge\nMove R1 Edge Wil\nCatastrophe Wil Red\n\n55) wil: B B3 G3\n\n56) Felix: Build G1 Felix\n\twil: Nice!\n\n57) wil: D B2 G3 Y2 Y2\n\n58) Felix: Trade B3 R3 Felix\n\tFelix: Thanks! It was a desperate measure, and I doubt it will save me in the end!\n\n59) wil: S Y3 G3\nM Y3 G3 Wil\nM B1 Wil Felix\nM B2 Y2 Felix\n\n60) Felix: Trade G1 Y1 Felix\n\n61) wil: Trade Y2 R2 Wil\n\n62) Felix: Sacrifice R1 Felix\nAttack B1 Felix\n\n63) wil: Sacrifice G1 Wil\nBuild B3 Felix\nCatastrophe Felix B\n\n64) Felix: Build Y1 Felix\n\n65) wil: Trade Y3 G3 Wil\n\n66) Felix: Build Y2 Felix\n\n67) wil: M Y1 Wil Felix\nC Felix Y\n\n\tFelix: No ability to move or trade? Looks like it's curtains for me. Well played!\n\tDraw5PlayAll: Imagine if both empires ended up like that...\n\twil: Gg....\n\nHomeworlds Online (SDG# 32726)\nVariants: "Hard time"\nStarted: 2017.7.14, Ended: 2017.8.17\nParticipants: SilentTitan (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) SilentTitan: Homeworld B1 R2 G3\n\tts52: Have a good game!\n\tSilentTitan: Thanks you too. \n\n3) ts52: Build G1 Ts52\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) ts52: Trade G1 B1 Ts52\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) ts52: Build B1 Ts52\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) ts52: Discover B1 Ts52 G1 Kermit\n\n10) SilentTitan: Discover Y1 Silenttitan G3 Sol\n\n11) ts52: Build B2 Kermit\n\n12) SilentTitan: Build Y1 Sol\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) SilentTitan: Build G1 Silenttitan\n\n15) ts52: Build B2 Kermit\n\n16) SilentTitan: Discover Y1 Sol G1 Soul\n\n17) ts52: Build B2 Ts52\n\n18) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Soul\nBuild Y3 Silenttitan\n\n19) ts52: Build Y3 Kermit\n\n20) SilentTitan: Sacrifice Y2 Soul\nMove Y1 Sol Kermit\nMove Y2 Sol Kermit\nCatastrophe Kermit Yellow\n\n21) ts52: Build B3 Kermit\n\n22) SilentTitan: Build G2 Silenttitan\n\n23) ts52: Trade B3 Y3 Kermit\n\n\tSilentTitan: Good game\n\tts52: Thanks for the game.\n\nHomeworlds Online (SDG# 32741)\nVariants: "Sinister"\nStarted: 2017.7.14, Ended: 2017.9.6\nParticipants: Nupanick (S), Laroka (N), neverendingvoid88 (E)\nWinner: Nupanick\n\n1) Laroka: Homeworld B3 Y1 G3\n\tneverendingvoid88: homeworld b2 r1 g1\n\n2) neverendingvoid88: Homeworld B2 Y1 G3\n\n3) Nupanick: Homeworld G2 B3 R3\n\tLaroka: boobs\r\n\n\tLaroka: boobs\r\n\n\tneverendingvoid88: Hit that bitch with the uwu\n\n4) Laroka: Build G1 Laroka\n\tLaroka: uwu baby\r\n\n\tNupanick: gdi roxy\n\n5) neverendingvoid88: Build G1 Neverendingvoid88\n\tneverendingvoid88: XD Yes Johhhhhn?\n\tLaroka: it's your turn\r\n\n\n6) Nupanick: Build R1 Nupanick\n\n7) Laroka: Discover G1 Laroka Y2 Milkyway\n\tneverendingvoid88: Well yeah but I feel like Nupa was gonna say something else.\n\n8) neverendingvoid88: Build G1 Neverendingvoid88\n\tNupanick: nah, just being a derp.\n\n9) Nupanick: Trade R1 G1 Nupanick\n\tneverendingvoid88: okii\n\n10) Laroka: Build G2 Laroka\n\tNupanick: hi i would like a green too thx\n\n11) neverendingvoid88: Trade G1 Y1 Neverendingvoid88\n\n12) Nupanick: Build R1 Nupanick\n\n13) Laroka: Trade G3 R3 Laroka\n\n14) neverendingvoid88: Discover Y1 Neverendingvoid88 R3 Uwu\n\n15) Nupanick: Trade R1 Y1 Nupanick\n\tneverendingvoid88: So uuuuuh\n\tLaroka: hmm?\r\n\n\n16) Laroka: Build R1 Laroka\n\tLaroka: build b1 Laroka\n\n17) neverendingvoid88: Move G1 Neverendingvoid88 Uwu\n\n18) Nupanick: Build Y2 Nupanick\n\tneverendingvoid88: Okay finally, I'm back in.\n\n19) Laroka: Trade R1 B1 Laroka\n\n20) neverendingvoid88: Build G1 Neverendingvoid88\n\tneverendingvoid88: How do I get more days back?? D;\n\n21) Nupanick: Build G2 Nupanick\n\tDraw5PlayAll: After every move you get some number of days back. I cannot see the time control.\r\n\r\nBe alert and move promptly after Laroka moves.\n\tneverendingvoid88: Thanks bot~\n\n22) Laroka: Build G2 Milkyway\n\n23) neverendingvoid88: Trade G1 B1 Neverendingvoid88\n\tDraw5PlayAll: Bot?\n\tneverendingvoid88: Oh, not a bot. Sorry, thought you were for a moment.\n\n24) Nupanick: Discover G2 Nupanick B1 Prospit\n\n25) Laroka: Build R1 Laroka\n\tNupanick: Finally, I get to name a star :3\n\n26) neverendingvoid88: Build G1 Neverendingvoid88\n\tneverendingvoid88: And you named it Prospit, yes\n\n27) Nupanick: Build G3 Prospit\n\n28) Laroka: Build R1 Laroka\n\n29) neverendingvoid88: Move B1 Neverendingvoid88 Uwu\n\n30) Nupanick: Move Y2 Nupanick Prospit\n\n31) Laroka: Build G3 Laroka\n\n32) neverendingvoid88: Build Y2 Uwu\n\n33) Nupanick: Sacrifice G3 Prospit\nBuild G3 Prospit\nBuild Y2 Nupanick\nBuild Y3 Prospit\n\tneverendingvoid88: From -5 to 18 hours, eyyy\n\n34) Laroka: Trade G3 Y3 Laroka\n\tNupanick: Awww ye, I pulled off the Factory combo :3\n\n35) neverendingvoid88: Trade Y1 R1 Uwu\n\tneverendingvoid88: Aw geez, I missed the 2 days by...a lot. Dx\n\n36) Nupanick: Discover Y3 Prospit B2 Lowas\n\tneverendingvoid88: Turn~\n\n37) Laroka: Build G3 Milkyway\n\tNupanick: * does the windy thing *\n\n38) neverendingvoid88: Move G1 Uwu Milkyway\n\n39) Nupanick: Trade G2 B2 Prospit\nCatastrophe Milkyway Green\n\tNupanick: Void, did you mean to call catastrophe on Laroka there? If so, you need to explicitly state that at the end of your move -- it's technically optional to trigger it.\n\n40) Laroka: Build Y1 Laroka\n\tNupanick: Got it for ya :p\n\tneverendingvoid88: Oh, okay, I thought it was auto-initiated. I guess that's what catastrophe means then. xP\r\nBut yeah, that's what I was going for.\n\tneverendingvoid88: Oh, okay, I thought it was auto-initiated. I guess that's what catastrophe means then. xP\r\nBut yeah, that's what I was going for.\n\tneverendingvoid88: IT LIVES\n\n41) neverendingvoid88: Build G1 Neverendingvoid88\n\n42) Nupanick: Move Y3 Lowas Laroka\nCatastrophe Laroka Yellow\n\n43) Laroka: Trade R3 Y3 Laroka\n\n\tNupanick: Dammit, Void! I didn't want to attack yet, but if I hadn't done that, Laroka would have killed you and won the game before me D:\r\n\r\nI hope you're happy, I technically saved your skin :p\n\tNupanick: I guess my other option was to take out Void myself, turning this into a 1v1 game, but that'd be lame. Void, pls diversify your home fleet colors kthx.\n\tNupanick: I guess my other option was to take out Void myself, turning this into a 1v1 game, but that'd be lame. Void, pls diversify your home fleet colors kthx.\n\tneverendingvoid88: ...I WAS PLANNING ON DOING THAT. Dx Yeah yeah, I'm working on it.\n\n44) neverendingvoid88: Trade G1 B1 Neverendingvoid88\n\n45) Nupanick: Discover B2 Prospit G2 Derse\n\tneverendingvoid88: Turn\n\n46) Laroka: Build G1 Laroka\n\n47) neverendingvoid88: Move Y2 Uwu Neverendingvoid88\n\n48) Nupanick: Build B2 Derse\n\n49) Laroka: Discover B1 Laroka G1 Welp\n\tNupanick: cough cough reminder that if I blow up laroka's star I win\n\tneverendingvoid88: Laro, you maaaay wanna notate that.\n\n50) neverendingvoid88: Move G1 Neverendingvoid88 Uwu\n\tneverendingvoid88: Nice name\n\n51) Nupanick: Sacrifice Y2 Nupanick\nMove B2 Derse Laroka\nMove B2 Derse Laroka\n\n52) Laroka: Trade G2 R2 Laroka\n\tNupanick: I think that's game~\n\tLaroka: gg\r\n\n\n53) neverendingvoid88: Trade G1 Y1 Uwu\n\tDraw5PlayAll: Remind me after the game and I will share something about this point.\n\tneverendingvoid88: ....DAMNIT\n\n54) Nupanick: Sacrifice G3 Prospit\nBuild B2 Laroka\nBuild B3 Laroka\nPass\nCatastrophe Laroka Blue\n\tNupanick: Woo!\n\tNupanick: Draw5PlayAll, what was your feedback?\n\tDraw5PlayAll: Laroka could have set up a catastrophe and left it for NEV to trigger. This would at least prevent Nupanick from winning immediately.\n\tDraw5PlayAll: Also, are you guys beginners or just people who have not played much on SDG? This is the only game I am aware of that bears your names, and I set the option to monitor all Homeworlds games.\n\tneverendingvoid88: A combo of the two for myself and Laroka. Nupa's the vet in this game.\n\n\nHomeworlds Online (SDG# 32609)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.15, Ended: 2017.7.19\nParticipants: AzorAhai (S), wil (N)\nWinner: wil\n\n1) wil: H Y3 B2 G3\n\n\nHomeworlds Online (SDG# 32624)\nVariants: "Hard time"\nStarted: 2017.7.15, Ended: 2017.7.19\nParticipants: AzorAhai (S), wil (N)\nWinner: wil\n\n1) wil: H B3 R1 G3\n\n\nHomeworlds Online (SDG# 32718)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.15, Ended: 2017.7.17\nParticipants: AzorAhai (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 R1 G3\n\n\nHomeworlds Online (SDG# 32750)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.15, Ended: 2017.7.16\nParticipants: AzorAhai (S), dlwillson (N)\nWinner: AzorAhai\n\n\tDraw5PlayAll: HUH??\n\tdlwillson: AzorAhai had started two of the same game with me.\n\nHomeworlds Online (SDG# 32764)\nVariants: "Hard time"\nStarted: 2017.7.19, Ended: 2017.8.23\nParticipants: bhorner (S), Salmonax (N)\nWinner: bhorner\n\n1) Salmonax: Homeworld Y1 B3 G3\n\n2) bhorner: Homeworld R2 B1 G3\n\n3) Salmonax: Build G1 Salmonax\n\n4) bhorner: B G1 Bhorner\n\n5) Salmonax: Discover G1 Salmonax B2 Bluetwoth\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) Salmonax: Build G1 Salmonax\n\n8) bhorner: B B1 Bhorner\n\n9) Salmonax: Trade G1 Y1 Salmonax\n\n10) bhorner: T B1 Y1 Bhorner\n\n11) Salmonax: Build Y2 Salmonax\n\n12) bhorner: Build Y2 Bhorner\n\n13) Salmonax: Move Y1 Salmonax Bluetwoth\n\n14) bhorner: D Y2 Bhorner G3 Xmas\n\n15) Salmonax: Move Y2 Salmonax Bluetwoth\n\n16) bhorner: Build B1 Bhorner\n\n17) Salmonax: Build G1 Salmonax\n\n18) bhorner: Move B1 Bhorner Xmas\n\n19) Salmonax: Trade Y1 R1 Bluetwoth\n\n20) bhorner: Trade B1 R1 Xmas\n\n\tbhorner: Doh!\n\nHomeworlds Online (SDG# 32749)\nVariants: "Hard time"\nStarted: 2017.7.20, Ended: 2017.7.25\nParticipants: wil (S), visitor338 (N)\nWinner: wil\n\n1) visitor338: Pass\n\n2) wil: H Y3 B1 G3\n\n\nHomeworlds Online (SDG# 32758)\nVariants: "Unrated"\nStarted: 2017.7.21, Ended: 2017.8.1\nParticipants: elrac (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B3 Y1 G3\n\telrac: Hi. This is my first game on here.\n\n2) elrac: Homeworld R3 B2 G3\n\twil: First game of homeworlds? Or just first game on SDG and you picked one of the best?\r\n\n\telrac: Essentially both. I've played homeworlds once with my wife, but it was pretty much just a learning game.\n\n3) wil: Build G1 Wil\n\n4) elrac: Build G1 Elrac\n\twil: The first 50 are learning games....\n\n5) wil: T G1 Y1 Wil\n\twil: The star formations here are problematic... when it gets going it is often good to set up a set at home to observe..\n\n6) elrac: Build G1 Elrac\n\telrac: thanks for the tip, I'll keep it in mind\n\n7) wil: B Y1 Wil\n\twil: Beginning of the game is slow, best follow the leader to prevent missing out on economy\n\n8) elrac: Trade G3 Y3 Elrac\n\n9) wil: T Y1 R1 Wil\n\twil: Ya didn't follow the leader... You'll need to swap your big green for a y3 sometime.to move\n\telrac: I know, that was my plan for this turn\r\n\n\n10) elrac: Trade G1 B1 Elrac\n\twil: Okee doke\n\n11) wil: B R1 Wil\n\n12) elrac: Trade B1 R1 Elrac\n\n13) wil: T R1 B1 Wil\n\telrac: hmm, interesting, fine, I didn't want that blue one anyway\r\n\n\n14) elrac: Build G1 Elrac\n\twil: Lol...\n\n15) wil: B B1 Wil\n\n16) elrac: Trade G1 B1 Elrac\n\n17) wil: Discover B1 Wil Y2 Y2\n\n18) elrac: Discover B1 Elrac G1 Alpha\n\n19) wil: Discover B1 Wil G2 G2\n\telrac: You aren't kidding that it starts out slow. You have to get one of each color ship at the start or you're in trouble.\n\twil: yup! don't let anyone freeze you out of any economy as you are building...you are one lonely ship at a binary star trying to take over the galaxy\n\n20) elrac: Build B2 Alpha\n\n21) wil: Build B2 G2\n\n22) elrac: Trade B2 Y2 Alpha\n\n23) wil: Trade B2 Y2 G2\n\n24) elrac: Build B2 Alpha\n\twil: You know about catastrophe right\n\telrac: yeah, I do, and I see that you have 3 blues + the blue in my star. But I don't see a way for you to get them to my system.\n\n25) wil: D Y1 Wil G2 Gee2\n\n26) elrac: Trade B2 R2 Alpha\n\twil: I can't, couldn't, but was just checking..\n\n27) wil: B B2 G2\n\n28) elrac: Move R2 Alpha G2\n\n29) wil: Sacrifice R1 Wil\nAttack R2 G2\n\n30) elrac: Build B2 Alpha\n\n31) wil: Discover B1 G2 G1 G1\n\n32) elrac: Discover B2 Alpha R2 Beta\n\twil: You are so generous to offer me a trade of my small fighter to an attack cruiser. Thank you for the nice new ship, it appears you have maintained it well. We have sold the crew to a garment manufacturer in Alpha if you want them back.\n\n33) wil: B B3 G1\n\telrac: fair, I didn't see that move.\n\twil: learning attacks and sacrifices are tricky...but now you know!!\n\n34) elrac: Build B3 Alpha\n\n35) wil: T B3 Y3 G1\n\n36) elrac: Trade B3 R3 Alpha\n\n37) wil: B B3 G1\n\n38) elrac: Build B3 Alpha\n\n39) wil: Sacrifice Y2 G2\nMove B2 G2 Alpha\nMove B1 Y2 Alpha\nCatastrophe Alpha B\n\n40) elrac: Build G2 Elrac\n\n41) wil: Sacrifice Y1 Gee2\nMove R2 G2 Wil\n\n42) elrac: Sacrifice G2 Elrac\nBuild G2 Elrac\nBuild B1 Beta\n\n43) wil: B Y1 G1\n\n44) elrac: Trade B2 Y2 Beta\n\telrac: that one I did see coming, I just didn't know if you would think it was worth it\n\twil: it may not have been\n\twil: Yeah...it was a big mistake!\n\n45) wil: B G2 Wil\n\n46) elrac: Sacrifice G2 Elrac\nBuild Y1 Beta\nBuild G2 Elrac\n\n47) wil: Discover B3 G1 Y3 Y3\n\n48) elrac: Build Y2 Elrac\n\n49) wil: Build R1 Wil\n\n50) elrac: Discover Y2 Alpha B2 Gamma\n\n51) wil: Discover Y1 G1 B2 B2\n\n52) elrac: Move Y1 Beta Wil\n\n53) wil: Attack Y1 Wil\n\n54) elrac: Sacrifice Y2 Elrac\nMove Y2 Beta Wil\nMove Y2 Gamma Wil\nCatastrophe Wil Y\n\n55) wil: B B1 G1\n\n56) elrac: Build R1 Alpha\n\n57) wil: T G2 Y2 Wil\n\n58) elrac: Sacrifice B1 Beta\nTrade R3 B3 Alpha\n\n59) wil: M R2 Wil G1\n\n60) elrac: Discover G1 Elrac Y1 Delta\n\n61) wil: Build G2 Wil\n\n62) elrac: Discover G2 Elrac B1 Epsilon\n\n63) wil: M B3 Y3 Epsilon\n\n64) elrac: Build B2 Alpha\n\n65) wil: S R1 Wil\nA G2 Epsilon\n\n66) elrac: Build G2 Delta\n\n67) wil: S G3 Wil\nB G3 Wil\nB G3 Epsilon\nB G3 Epsilon\n\n68) elrac: Discover G1 Delta Y3 Eta\n\n69) wil: T B3 R3 Epsilon\n\n70) elrac: Discover R1 Elrac Y1 Zeta\n\n71) wil: S Y2 Wil\nM G3 Epsilon Elrac\nM G3 Epsilon Elrac\n\n72) elrac: Sacrifice Y3 Elrac\nMove G1 Eta Delta\nMove G1 Delta Elrac\nMove G2 Delta Elrac\nCatastrophe Elrac Green\n\n\twil: Cause my guns are bigger than your guns\n\twil: Gg\n\telrac: I'm surprised it would let me kill myself\n\telrac: GG\n\telrac: Hmm, I wonder what would have happened if I had caused that catastrophe in your system instead.\n\twil: Lol......you would a won !\n\twil: No lost, no mutual destruction\n\telrac: If I had done that I should have lost, since the game should end when I sacrificed the y3 in elrac, but I wonder how the site would have handled that.\r\n\r\nActually, reading the rules, "You are never allowed to take an action or trigger a catastrophe that causes you to own no ships in your Homeworld at the end of \r\nyour turn. You may temporarily abandon your Homeworld during your turn, as long as you own at least one ship in it at the end of \r\nyour turn." I don't think it would have been a legal move, but neither was the move I made.\n\telrac: I may send that as a question to Loony Labs.\n\telrac: Ah, found that question here https://boardgamegeek.com/thread/991015/what-if-both-homeworlds-destroyed-end-turn-win-los\r\nit would have been a tie.\n\telrac: either way, GG\n\twil: first time I won a hw game by intimidation!\n\nHomeworlds Online (SDG# 32682)\nVariants: "Unrated"\nStarted: 2017.7.22, Ended: 2017.8.23\nParticipants: Felix (S), Gui (N)\nWinner: Felix\n\n1) Gui: Homeworld B1 Y3 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) Gui: Build G1 Gui\n\tFelix: Hello! Have fun. First game?\n\n4) Felix: Build G1 Felix\n\tGui: yep\n\n5) Gui: Discover G1 Gui Y2 Betacenturi\n\tFelix: Awesome. Good luck and let me know if you have any questions.\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Gui: Build G1 Gui\n\n8) Felix: Build Y1 Felix\n\n9) Gui: Trade G1 B1 Gui\n\n10) Felix: Build Y1 Felix\n\n\nHomeworlds Online (SDG# 32715)\nStarted: 2017.7.23, Ended: 2017.8.15\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H B3 R1 G3\n\twil: So you get to determine our style.of.play this time..\n\n2) ts52: Homeworld G2 B1 R3\n\tts52: Hmmmmm, I'm tempted to try something unusual just for fun....\n\n3) wil: B G1 Wil\n\n4) ts52: Build R1 Ts52\n\n5) wil: T G1 R1 Wil\n\n6) ts52: Build R2 Ts52\n\n7) wil: B R2 Wil\n\n8) ts52: Trade R2 Y2 Ts52\n\n9) wil: Trade R2 Y2 Wil\n\n10) ts52: Build R2 Ts52\n\twil: follow the leader..\n\n11) wil: Build R2 Wil\n\n12) ts52: Discover R2 Ts52 G3 Kermit\n\n13) wil: Trade R1 B1 Wil\n\n14) ts52: Trade R1 B1 Ts52\n\n15) wil: Build B2 Wil\n\n16) ts52: Build B2 Ts52\n\n17) wil: Trade B2 G2 Wil\n\n18) ts52: Move B1 Ts52 Kermit\n\n19) wil: Discover B1 Wil G2 G2\n\n20) ts52: Build B2 Kermit\n\n21) wil: B B2 G2\n\n22) ts52: Trade B2 Y2 Kermit\n\n23) wil: T B1 Y1 G2\n\n24) ts52: Build Y1 Kermit\n\n25) wil: Build B1 G2\n\n26) ts52: Discover B2 Ts52 G3 Robin\n\n27) wil: D B2 G2 Y3 Y3\n\n28) ts52: Move R2 Kermit G2\n\n29) wil: B Y1 G2\n\n30) ts52: Attack B1 G2\n\n31) wil: B Y3 Wil\n\n32) ts52: Build Y3 Ts52\n\n33) wil: B G1 Wil\n\n34) ts52: Attack Y1 G2\n\n35) wil: Move G3 Wil G2\n\n36) ts52: Move R2 G2 Kermit\n\n37) wil: M R2 Wil G2\n\n38) ts52: Move Y1 G2 Robin\n\n39) wil: A B1 G2\n\n40) ts52: Move Y3 Ts52 Robin\n\n41) wil: B G1 G2\n\n42) ts52: Build R1 Kermit\n\n43) wil: S G3 G2\nB G1 Wil\nB G3 G2\nB R1 G2\n\n44) ts52: Build R2 Ts52\n\twil: When am I ever gonna see a game I recognize? They are all so different!\n\tts52: That's kind of the beauty of homeworlds.\n\tts52: Though I don't think trying something different is going to pay off this game. :)\n\n45) wil: D R1 G2 B3 B3\n\n46) ts52: Discover R1 Kermit B2 Gonzo\n\n47) wil: S G3 G2\nB G3 G2\nB R3 B3\nB B3 Y3\n\n48) ts52: Build R3 Kermit\n\n49) wil: M G1 G2 B3\n\n50) ts52: Move R2 Kermit Gonzo\n\n51) wil: S Y3 Wil\nM R3 B3 Ts52\nM R1 B3 Ts52\nM B3 Y3 Ts52\nC Ts52 R\n\n52) ts52: Sacrifice Y3 Robin\nMove B1 Kermit Ts52\nMove B2 Robin Ts52\nMove R3 Kermit Ts52\nCatastrophe Ts52 Blue\n\tts52: Wow. Although I didn't like my chances, I totally didn't see that coming.\n\n53) wil: Sacrifice Y2 Wil\nMove G1 Wil Ts52\nMove G1 Wil Ts52\n\n54) ts52: Move R3 Ts52 Wil\n\twil: I didn't think I was ever gonna get it setup.\n\twil: the bank was empty just a bit ago...musta been a gov't bailout...\n\n55) wil: S Y1 G2\nM G1 B3 Ts52\nC Ts52 G\n\twil: Looks ominous\n\tts52: Excellent game, as usual. Thanks!\n\twil: I slipped thru\n\n\nHomeworlds Online (SDG# 32751)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.23, Ended: 2017.7.27\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R2 B3 G3\n\n2) wil: H Y3 B1 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: B G1 Wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: T G1 B1 Wil\n\n7) dlwillson: B G1 Dlwillson\n\n8) wil: B B1 Wil\n\n9) dlwillson: T G3 B3 Dlwillson\n\n10) wil: T B1 R1 Wil\n\n11) dlwillson: B Y1 Dlwillson\n\n12) wil: B R1 Wil\n\n13) dlwillson: T Y1 R1 Dlwillson\n\n14) wil: T R1 Y1 Wil\n\n15) dlwillson: Build G1 Dlwillson\n\n16) wil: D B1 Wil Y2 Y2\n\n17) dlwillson: Discover G1 Dlwillson B1 Sea\n\n18) wil: Build G1 Wil\n\n19) dlwillson: Build G2 Dlwillson\n\n20) wil: Sacrifice G1 Wil\nBuild B2 Y2\n\n21) dlwillson: B B2 Dlwillson\n\n22) wil: Trade B2 G2 Y2\n\n23) dlwillson: Discover B2 Dlwillson G1 Field\n\n24) wil: Build G2 Wil\n\n25) dlwillson: S G2 Dlwillson\nB G2 Sea\nB G3 Dlwillson\n\n26) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB G3 Y2\n\n27) dlwillson: T G2 Y2 Sea\n\n28) wil: B B2 Y2 Y2\n\n29) dlwillson: S G3 Dlwillson\nB G2 Sea\nB Y1 Sea\nB G3 Dlwillson\n\n30) wil: T G3 Y3 Wil\n\n31) dlwillson: S Y2 Sea\nD Y1 Sea B2 Sky\nM Y1 Sky Wil\nC Wil Y\n\n32) wil: Sacrifice G3 Y2\nB G3 Y2\nB G3 Wil\nB R2 Wil\n\n33) dlwillson: M R1 Dlwillson Wil\nC Wil R\n\n34) wil: T G2 R2 Y2\n\n35) dlwillson: S G3 Dlwillson\nB B2 Dlwillson\nB B3 Field\nB G2 Sea\n\n36) wil: B G3 Y2\n\n37) dlwillson: Trade B3 Y3 Field\n\n38) wil: T G3 Y3 Wil\n\tdlwillson: Goodness, Wil! We never talked at all this game! What's going on around here?\n\n39) dlwillson: S Y3 Field\nD B2 Field Y3 Solar\nM B2 Dlwillson Wil\nM B3 Dlwillson Wil\n\n40) wil: T Y3 B3 Wil\nC Wil B\n\n\tdlwillson: That used to be illegal!\n\tDraw5PlayAll: It is very inconsistent.\n\twil: I've been doing it for years...it is all about the leaving!! Not against Andy's rules...he often takes off with a ship to safety abaonding his homeworlds in an ark moment when there is impending unavoidable doom. Me, I prefer a scorched solar system approach leaving a better civilization elsewhere.\n\twil: Gg\n\tdlwillson: GGTY\n\nHomeworlds Online (SDG# 32778)\nVariants: "Unrated"\nStarted: 2017.7.25, Ended: 2017.7.25\nParticipants: wil (S), shoejitsu (N)\nWinner: wil\n\n1) shoejitsu: Homeworld G2 B3 Y3\n\n2) wil: H Y2 B1 G3\n\tshoejitsu: good luck, have fun!\n\twil: If you insist!\n\n3) shoejitsu: Discover Y3 Shoejitsu G1 Titan\n\tshoejitsu: hah... interesting\n\twil: oops\n\tDraw5PlayAll: The game is very inconsistent about when it forbids homeworld abandonment.\n\n\nHomeworlds Online (SDG# 32814)\nVariants: "Unrated"\nStarted: 2017.7.25, Ended: 2017.8.21\nParticipants: ts52 (S), shoejitsu (N)\nWinner: ts52\n\n1) shoejitsu: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: Welcome! Feel free to ask questions here, and let me know how much advice you'd like me to give. Unfortunately there is no notification for comments, so if you want to ask a question, do so, then make and undo a move so I'll get an email about it. :) Have a great game!\n\n3) shoejitsu: Build G1 Shoejitsu\n\tshoejitsu: thanks for the help! I was trying to find this in the rule book but i dont think it's ever touched upon. What's the general purpose of the colors that make up the homeworld if they don't count as stars? This has messed me up so many times, since i assume that they count as stars and therefore i can build.\n\n4) ts52: Build G1 Ts52\n\tts52: They do count as stars. You can use the powers of all the colors in your homeworld, but only one per turn. So currently either of us can build (as you just did) or trade or move/discover.\n\n5) shoejitsu: Build G1 Shoejitsu\n\tshoejitsu: weird... i must have mistyped my command when i tried to build in one of my other games. I had a b3 g2 homeworld with a y3 ship and it would not let me build a g1 on the second turn\n\tts52: Ah, that doesn't quite work. You can use the power of a green star (homeworld or not) to build in that system, but you can only build the smallest available ship it a color that matches a ship you control in that system. So in your case you could only build the smallest available yellow ship.\n\tshoejitsu: ohhhh... got it. very important detail i missed XD\n\n6) ts52: Build G2 Ts52\n\n7) shoejitsu: Discover G1 Shoejitsu B1 Titan\n\tts52: Very important detail, but a fairly common one. We should have a FAQ or Common Mistakes or something like that.\n\n8) ts52: Trade G1 B1 Ts52\n\tDraw5PlayAll: Why do you both have a fortress (2-3)?\n\tshoejitsu: dunno, i made mine first :P\n\tts52: Oh, whoops. I totally screwed up and stuck us in a tiny universe. My bad. \n\n9) shoejitsu: Trade G1 Y1 Shoejitsu\n\tshoejitsu: yeah, i guess that alright since ive never played a tiny universe\n\n10) ts52: Discover G2 Ts52 B1 Grover\n\tshoejitsu: starting to understand how you can force the economy to allow you to build bigger pieces like you did. was unsure how you were able to build that g2 until i went back in the logs and counted the stash haha\n\tts52: Good. Sorry about the tiny universe. But you'll soon see why it's generally considered a bad idea.\n\n11) shoejitsu: Build G1 Titan\n\tshoejitsu: oh yeah ive already started to see it haha\n\n12) ts52: Build B2 Ts52\n\n13) shoejitsu: Trade G1 Y1 Titan\n\n14) ts52: Discover B2 Ts52 G1 Kermit\n\n15) shoejitsu: Build G1 Titan\n\tshoejitsu: So is it a general rule of thumb to alway discover a new star system with a blue and a green peice in it? Its kind of seeming like yellow and red should be saved for building and trading transactions... and that makes buying smartly pretty challenging haha\n\n16) ts52: Build G2 Ts52\n\tDraw5PlayAll: Placing a green at a blue system or a blue at a green system lets you quickly expand and gather all of the technologies. I used to attempt to do both but in my recent games I can usually only fit one of those in (I tend to lose the green or blue economy).\n\n17) shoejitsu: Discover G1 Titan B2 Gaea\n\tts52: Generally speaking green and blue are pretty important in the opening, growth and discovery part of the game. Yellow and Red are more important in the mid and end game.\n\n18) ts52: Build B3 Kermit\n\n19) shoejitsu: Build Y1 Titan\n\tshoejitsu: well i just realized i have no blue ships :D\n\n20) ts52: Trade B3 Y3 Kermit\n\tts52: Yeah, I've frozen you out of the blue economy, for now at least.\n\n21) shoejitsu: Trade Y1 R1 Titan\n\n22) ts52: Build B3 Kermit\n\n23) shoejitsu: Move R1 Titan Ts52\n\tts52: I'm breaking a pretty standard homeworlds adage here, that is 'when your enemy get's a gun, you get a gun'. But I think I can afford to wait.\n\n24) ts52: Trade G2 R2 Ts52\n\n25) shoejitsu: Attack B1 Ts52\n\tshoejitsu: Yeah i was surprised you didnt draw right away but clearly you have an upper hand to assist you \n\n26) ts52: Sacrifice R2 Ts52\nAttack R1 Ts52\nAttack B1 Ts52\n\n27) shoejitsu: Build G2 Shoejitsu\n\tshoejitsu: oy\n\n28) ts52: Build B3 Kermit\n\tshoejitsu: i may or may not have had a sudden realization involving the construct functionality...\n\tDraw5PlayAll: Care to share it?\n\n29) shoejitsu: Trade G2 R2 Shoejitsu\n\n30) ts52: Trade B3 Y3 Kermit\n\tshoejitsu: Only that delaying building due to worrying about the enemy's ability to build larger pieces will only effect me negatively at this point in the game. It seems like I just need any pieces right now, regardless of whether or not the enemy controls a majority of the stronger ones\n\n31) shoejitsu: Build G2 Titan\n\tts52: Indeed. Although it can be important to limit your opponents ability to get larger ships in play, you always have to way that against what it costs you to do so.\n\n32) ts52: Build B3 Kermit\n\n33) shoejitsu: Move Y1 Shoejitsu Titan\n\tshoejitsu: how do you list multiple moves, like after a sacrifice? Im not sure what a carriage return is...\n\n34) ts52: Trade B3 R3 Kermit\n\tDraw5PlayAll: Just press return. It will look like this:\r\nsacrifice Y3 Altair\r\nmove B1 Altair Electra\r\nmove B2 Altair Electra\r\nmove B1 Caster Electra\r\ncatastrophe Electra blue\n\tshoejitsu: thank you. I just realized what i was trying to do was not possible, thats why it was telling me i have no more moves... this game is looking pretty over at this point\n\tshoejitsu: confused why i cant do this:\r\n\r\nsacrifice g2 titan\r\nmove y1 shoejitsu kermit\r\nbuild y1 kermit\r\ncatastrophe kermit yellow\r\n\r\ni thought if i could use the stars power even if i dont control the system? its telling me i have no more actions but it seems right to me?\n\n35) shoejitsu: Move Y1 Titan Gaea\n\tshoejitsu: ah shoot now i cant undo my move again.... ughhh\r\n\n\tshoejitsu: now i know only one undo per turn i suppose\n\tts52: When you sacrifice, you can only use the power of the sacrificed ship. So sacrificing a green means you can only build. It lets you sacrifice a large or medium piece to get 3 or 2 actions, but they all have to be the action of the piece sacrificed. Hopefully that makes sense.\n\n36) ts52: Build B3 Kermit\n\tshoejitsu: that makes total sense, thanks\n\tshoejitsu: couldnt you have move all you blue ships in to my homeworld by sacrificing a y3 and calling catastrophe then?\n\n37) shoejitsu: Move Y1 Titan Gaea\n\tts52: Yes, I could have. But I'm going for a slightly longer play.\n\n38) ts52: Sacrifice Y3 Kermit\nMove B3 Kermit Shoejitsu\nMove Y3 Kermit Shoejitsu\nMove B3 Kermit Shoejitsu\n\n39) shoejitsu: Trade G3 R3 Shoejitsu\n\n40) ts52: Sacrifice R3 Kermit\nAttack R3 Shoejitsu\nAttack R2 Shoejitsu\nPass\n\n\tts52: Thanks for the game! I look forward to the next one.\n\tshoejitsu: good game, thanks for the help\n\nHomeworlds Online (SDG# 32829)\nStarted: 2017.7.27, Ended: 2017.8.1\nParticipants: equinox (S), ratpfink (N)\nWinner: ratpfink\n\n1) ratpfink: Homeworld G2 B1 Y3\n\n2) equinox: Homeworld Y3 B2 G3\n\n3) ratpfink: Build Y1 Ratpfink\n\n4) equinox: Build G1 Equinox\n\n5) ratpfink: Build Y1 Ratpfink\n\n6) equinox: Trade G1 Y1 Equinox\n\n7) ratpfink: Trade Y1 G1 Ratpfink\n\n8) equinox: Build Y1 Equinox\n\n9) ratpfink: Sacrifice Y3 Ratpfink\nDiscover Y1 Ratpfink R3 Wampa\nDiscover Y1 Wampa R1 Lexi\nMove Y1 Lexi Equinox\nCatastrophe Equinox Y\n\n\nHomeworlds Online (SDG# 32801)\nVariants: "Unrated, Hard time"\nStarted: 2017.7.28, Ended: 2017.8.3\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B2 Y3 G3\n\tdlwillson: Hi Wil!\n\n2) wil: H Y2 B1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\twil: Hi wil-lson\n\n4) wil: B G1 Wil\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) wil: T G1 B1 Wil\n\n7) dlwillson: Build B2 Dlwillson\n\n8) wil: B B2 Wil\n\n9) dlwillson: D B1 Dlwillson G1 Field\n\n10) wil: T B1 R1 Wil\n\n11) dlwillson: S G3 Dlwillson\nB B1 Field\nB B3 Field\nB B3 Dlwillson\n\n12) wil: B B3 Wil\n\n13) dlwillson: T B3 G3 Dlwillson\n\n14) wil: T B2 Y2 Wil\n\n15) dlwillson: T B3 Y3 Field\n\n16) wil: Discover B3 Wil G3 G3\n\n17) dlwillson: Trade B2 R2 Dlwillson\n\n18) wil: B B2 G3\n\n19) dlwillson: D B1 Field G2 Forest\n\twil: Discussion during games varies..\n\n20) wil: T B3 Y3 G3\n\tdlwillson: Yeah. Sometimes, we just play. But I'm glad we play. It's good to play.\n\n21) dlwillson: B G1 Dlwillson\n\n22) wil: B G1 Wil\n\twil: Since I lose s significant number of games...my goal is to lose those outside The ladder and win those within..\n\n23) dlwillson: Discover G1 Dlwillson Y1 Solar\n\n24) wil: B R1 Wil\n\n25) dlwillson: B G2 Dlwillson\n\n26) wil: Build Y1 G3\n\n27) dlwillson: S G3 Dlwillson\nB G2 Solar\nB B2 Field\nB G3 Dlwillson\n\n28) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB B3 G3\n\n29) dlwillson: T B2 R2 Field\n\twil: I just had 6 moves to make....luv the confusion of multiple he games\n\n30) wil: S Y2 Wil\nM R1 Wil G3\nM B2 G3 Forest\n\n31) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Field\nBuild R3 Dlwillson\nBuild G3 Solar\n\n32) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Forest\nBuild B3 G3\n\n33) dlwillson: S Y3 Field\nM G1 Solar G3\nM G2 Solar G3\nM G3 Solar G3\nC G3 G\n\n34) wil: T B2 Y2 Forest\n\tdlwillson: I <3 supernova! I'm not sure whether that was a good trade, but it sure was satisfying.\n\twil: Lol....I should a looked for that\n\n35) dlwillson: S G2 Dlwillson\nB B2 Forest\nB B3 Field\n\n36) wil: S R1 Wil\nA B2 Forest\n\n37) dlwillson: B B3 Forest\nC Forest B\n\twil: I am going to need you to make some collaossal mistake....whenever you are ready...I'll wait.\n\n38) wil: B R1 Wil\n\tdlwillson: I'll work on it. Actually, I've been playing my hardest just to keep up! I think the supernova may have finally given me a little edge.\n\n39) dlwillson: T B3 Y3 Field\n\twil: It left you with more ships and 2-1 queens...a little edge...\n\n40) wil: D R1 Wil Y3 Y3\n\n41) dlwillson: T R3 G3 Dlwillson\n\n42) wil: T G1 B1 Wil\n\n43) dlwillson: Discover R2 Field B3 Sky\n\n44) wil: Build G1 Wil\n\n45) dlwillson: Build B2 Field\n\n46) wil: Move B1 Wil Y3\n\n47) dlwillson: T B2 G2 Field\n\n48) wil: Sacrifice G1 Wil\nBuild B2 Y3\n\n49) dlwillson: M G2 Field Sky\n\n50) wil: D B1 Y3 G1 G1\n\n51) dlwillson: B G1 Dlwillson\n\n52) wil: B G2 Wil\n\n53) dlwillson: B G3 Sky\n\n54) wil: S G3 Wil\nB G3 Wil\nB B2 Y3\nB B3 G1\n\n55) dlwillson: Build B3 Field\n\n56) wil: Trade B3 R3 G1\n\n57) dlwillson: S Y3 Field\nM G3 Sky Wil\nM G2 Sky Wil\nC Wil G\nM R2 Sky Wil\n\n58) wil: Sacrifice Y2 Forest\nMove R1 Y3 Wil\nMove B2 Y3 Wil\n\twil: nice!\n\n59) dlwillson: A B2 Wil\n\twil: good game, I blew it...funny why I thought about thinking of doing it to you, didn't dawn on me that the red would come in with it...\n\n\tdlwillson: Good game. I think that supernova was the turning point. Pretty even to there.\n\twil: Yeah it was\n\tdlwillson: Thanks for the game!\n\nHomeworlds Online (SDG# 32712)\nVariants: "Hard time"\nStarted: 2017.7.28, Ended: 2017.8.7\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) wil: B G1 Wil\n\tFelix: Good luck and have fun!\n\twil: You know I do..\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 R1 Wil\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: B R1 Wil\n\n8) Felix: Build Y1 Felix\n\twil: I think I am a step behind...but math is hard.\n\n9) wil: D R1 Wil G3 G3\n\tFelix: I'm not so sure myself. The path to larges is smaller with red, but I can get to mediums faster with yellow...\n\n10) Felix: Trade Y1 R1 Felix\n\n11) wil: B R2 Wil\n\n12) Felix: Discover R1 Felix G1 Rim\n\twil: Ah....we don't get to find out!\n\n13) wil: T R1 Y1 Wil\n\tFelix: I debated it, but being left without a weapon is too scary.\n\n14) Felix: Build Y2 Felix\n\n15) wil: B Y2 Wil\n\n16) Felix: Move Y1 Felix Rim\n\n17) wil: M Y1 Wil G3\n\n18) Felix: Build G1 Felix\n\n19) wil: B R1 Wil\n\n20) Felix: Build R2 Rim\n\n21) wil: B R3 G3\n\n22) Felix: Discover R1 Rim B3 Rom\n\n23) wil: M R3 G3 Rim\n\n24) Felix: Sacrifice G1 Felix\nBuild R3 Rom\n\n25) wil: Build R3 G3\n\n26) Felix: Trade R3 Y3 Rom\n\n27) wil: Sacrifice R2 Wil\nAttack R2 Rim\nAttack Y1 Rim\n\n28) Felix: Build G1 Felix\n\n29) wil: Build Y2 Rim\n\n30) Felix: Build Y3 Felix\n\n31) wil: B Y3 G3\n\tFelix: This didn't work out so well for me.\n\n32) Felix: Trade Y3 R3 Felix\n\n33) wil: T Y2 B2 Wil\n\n34) Felix: Sacrifice G3 Felix\nBuild Y2 Rom\nBuild Y3 Felix\nBuild R2 Rom\n\n35) wil: Sacrifice Y3 G3\nMove R1 G3 Rim\nMove R1 Rim Felix\nMove R2 Rim Felix\nCatastrophe Felix R\n\n36) Felix: Trade Y3 G3 Rom\n\tDraw5PlayAll: Why is blue so ignored in high level play? Is it too easy to focus on red and yellow, or are too many stars blue?\n\twil: Blue is rarely ignored by me...I utilize it.whenever I can...but...the early game can define mid game...are we racing, building, blocking...this game became a race...only two colors participate in races...until one sees an advantage (or desperation) opportunity to switch\n\twil: Oh, you said high level...nevermind\n\tDraw5PlayAll: Consider: out of the 15 ships on the board, only one (7%) is blue. Yet of the 6 stars on the field, three are blue.\r\n\r\nActually, before the previous move there were even more yellows and reds... NO BLUES!\n\tDraw5PlayAll: And I think this is high level play because you two are first and second on the ladder, even though this is not a ladder game.\n\n37) wil: B Y3 G3\n\twil: We are only one and two because the best are either resting on their laurels or otherwise not in the game.\n\n38) Felix: Build Y3 Rom\n\n39) wil: D Y1 G3 G2 G2\n\tFelix: What Wil said. I've never stood a chance against the likes of endo, TwoShort, or TeeTeeTee.\n\twil: Or broccoli commander\n\n40) Felix: Build G1 Rom\n\n41) wil: S Y3 G3\nM Y1 Rim Felix\nM Y1 G2 Felix\nM R3 Rim Felix\nC Felix Y\n\tFelix: I've never played Broccoli, actually\n\n42) Felix: Sacrifice Y3 Rom\nPass\nPass\nPass\n\twil: Wishing the distraction would have effected the ladder game instead.\n\n43) wil: A G1 Felix\n\tFelix: Nice! Just came back from a long weekend and I am not playing carefully enough.\n\twil: Thank you for that! Hope you ha fun!\n\twil: But what was that? You should have sacked the y3 and moved everything in...so it would look like you almost had it!\n\tFelix: I always have fun :) And I was just having fun by passing 3 moves. If I can't win, I don't care about the end board appearances!\n\n\nHomeworlds Online (SDG# 32795)\nVariants: "Hard time"\nStarted: 2017.7.28, Ended: 2017.8.17\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) wil: H B2 R2 G3 *\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\twil: Let's see how this goes...\n\tDraw5PlayAll: Copycat!\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\twil: Probably for less than ten moves but we'll see\n\n6) wil: T G1 Y1 Wil\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) wil: B G1 Wil\n\tDraw5PlayAll: Now, do I go to a 1-point star to try to freeze you out or a 3 point star to keep my options open?\n\n9) Draw5PlayAll: Trade G1 R1 Draw5playall\n\twil: Appears I am not even smart enough to understand your question\n\tDraw5PlayAll: There appears to be nothing to freeze you out of.\n\n10) wil: T G1 R1 Wil\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) wil: B G1 Wil\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n14) wil: T G1 B1 Wil\n\n15) Draw5PlayAll: Discover B1 Draw5playall G1 G1\n\n16) wil: Build G1 Wil\n\n17) Draw5PlayAll: Build G1 Draw5playall\n\n18) wil: B G2 Wil\n\n19) Draw5PlayAll: Build G2 Draw5playall\n\n20) wil: Trade G2 Y2 Wil\n\n21) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n22) wil: D G1 Wil Y3 Y3\n\n23) Draw5PlayAll: Discover G1 Draw5playall B3 B3\n\twil: If you become a copycat does that mean I got one step ahead?\n\n24) wil: D Y1 Wil G3 G3\n\n25) Draw5PlayAll: Build B1 G1\n\n26) wil: B Y1 G3\n\n27) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B1 G1 Wil\nMove B1 G1 Wil\nCatastrophe Wil Blue\n\n28) wil: B Y2 Wil\n\n29) Draw5PlayAll: Build Y2 Draw5playall\n\n30) wil: M Y1 G3 Draw5playall\n\n31) Draw5PlayAll: Move Y1 Draw5playall G3\n\n32) wil: Discover Y2 Wil G1 G1\n\n33) Draw5PlayAll: Build Y3 G3\n\n34) wil: Move Y1 Draw5playall G3\nCatastrophe G3 Y\n\n35) Draw5PlayAll: Build G2 Draw5playall\n\n36) wil: M R1 Wil Y3\n\n37) Draw5PlayAll: Move R1 Draw5playall B3\n\n38) wil: B G2 Y3\n\n39) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n40) wil: B G2 Y3\n\n41) Draw5PlayAll: Discover R2 Draw5playall Y1 Y1\n\n42) wil: M Y2 G1 B3\n\n43) Draw5PlayAll: Build R1 B3\n\n44) wil: B R3 Y3\n\n45) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R1 B3 Wil\nMove R1 B3 Wil\n\n46) wil: Sacrifice Y2 Wil\nMove G3 Wil Y1\nMove R1 Y3 Wil\nCatastrophe Wil R\n\n\twil: nice game.\n\twil: We have abandoned our homeworld with per our scorched earth scenario...taken our ark moment to establish a new base...and rule the galaxy in the next game.\n\twil: never played one of these...it was interesting\n\tDraw5PlayAll: I hate seeing that a game ended not from my own actions... it seems like it will end up a loss.\n\twil: Lol, your own actions ended the game...my resignation is the same as a win... As is an.ark.moment\r\n\n\nHomeworlds Online (SDG# 32800)\nStarted: 2017.7.28, Ended: 2017.9.29\nParticipants: Ausmuh (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3\n\n2) Ausmuh: Homeworld G3 Y1 B3\n\n3) ts52: Build G1 Ts52\n\n4) Ausmuh: Build B1 Ausmuh\n\n5) ts52: Build G1 Ts52\n\n6) Ausmuh: Trade B1 G1 Ausmuh\n\n7) ts52: Discover G1 Ts52 B1 Grover\n\n8) Ausmuh: Discover G1 Ausmuh Y2 Zing\n\n9) ts52: Build G2 Grover\n\n10) Ausmuh: Build B1 Ausmuh\n\n11) ts52: Trade G1 Y1 Grover\n\n12) Ausmuh: Build B1 Ausmuh\n\n13) ts52: Build Y1 Grover\n\n14) Ausmuh: Discover B1 Ausmuh G2 Zork\n\n15) ts52: Build Y2 Grover\n\n16) Ausmuh: Trade B3 Y3 Ausmuh\n\n17) ts52: Discover Y1 Grover G2 Kermit\n\n18) Ausmuh: Build B2 Zork\n\n19) ts52: Build Y2 Kermit\n\n\nHomeworlds Online (SDG# 32864)\nVariants: "Hard time"\nStarted: 2017.8.1, Ended: 2017.8.15\nParticipants: wil (S), Felix (N)\nWinner: wil\n\n1) Felix: Homeworld B1 R3 G3\n\n2) wil: H G2 B1 B3 *\n\n3) Felix: Build G1 Felix\n\n4) wil: B B1 Wil\n\n5) Felix: Trade G3 B3 Felix\n\n6) wil: Trade B3 Y3 Wil\n\n7) Felix: Build B2 Felix\n\twil: I believe that to be the only response...immediate change...one or two moves later and it is trouble..\n\tFelix: I think you may be right... but we'll see if it costs me in the long run!\n\n8) wil: Build B2 Wil\n\twil: In my trials it is the only move....too moves later and you'll never get a blue and I create a queen factory... (or you lose half your homeworld trying)\n\n9) Felix: Trade B3 Y3 Felix\n\n10) wil: D B2 Wil G3 G3\n\n11) Felix: Discover B2 Felix G2 Rem\n\n12) wil: B Y1 Wil\n\n13) Felix: Build Y1 Felix\n\n14) wil: Trade Y1 G1 Wil\n\n15) Felix: Move Y1 Felix Rem\n\n16) wil: T G1 R1 Wil\n\n17) Felix: Build G1 Felix\n\n18) wil: B R1 Wil\n\n19) Felix: Build G1 Felix\n\n20) wil: B Y1 Wil\n\n21) Felix: Discover G1 Felix B2 Ram\n\n22) wil: B B3 G3\n\n23) Felix: Build B3 Rem\n\n24) wil: T B3 Y3 G3\n\n25) Felix: Move B2 Rem G3\n\n26) wil: T B2 R2 G3\n\n27) Felix: Build G2 Ram\n\n28) wil: A B2 G3\n\n29) Felix: Build G3 Felix\n\n30) wil: D B1 Wil G3 Gee3\n\n31) Felix: Trade G1 R1 Felix\n\n32) wil: T R1 G1 Wil\n\n33) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Rem\nBuild Y2 Felix\n\n34) wil: B Y2 G3\n\n35) Felix: Build B2 Rem\n\n36) wil: B B3 G3\n\n37) Felix: Move B2 Rem Gee3\n\n38) wil: B B3 Gee3\n\n39) Felix: Move R1 Felix Ram\n\n40) wil: M B3 G3 Ram\n\n41) Felix: Sacrifice Y3 Felix\nMove G1 Ram Gee3\nMove G1 Gee3 Wil\nDiscover G2 Ram Y3 Rom\n\n42) wil: M G1 Wil G3\n\n43) Felix: Sacrifice G1 Felix\nBuild G1 Wil\n\n44) wil: Trade Y1 R1 Wil\n\n45) Felix: Sacrifice G2 Rom\nBuild G2 Wil\nCatastrophe Wil Green\nBuild G1 Felix\n\n46) wil: Sacrifice R2 G3\nAttack B2 Gee3\nAttack R1 Ram\n\n47) Felix: Move B3 Rem Gee3\nCatastrophe Gee3 Blue\n\n48) wil: M R1 Wil Rem\n\n49) Felix: Sacrifice Y1 Rem\nMove Y1 Rem G3\n\n50) wil: T Y2 R2 G3\n\n51) Felix: Trade G1 B1 Felix\n\n52) wil: A Y1 G3\n\tFelix: Meh. I'm not happy with this situation :P\n\n53) Felix: Discover B1 Felix G2 Somata\n\n54) wil: M B2 G3 Somata\n\tFelix: May as well speed along the inevitable.\n\n55) Felix: Build B2 Somata\n\n56) wil: S R2 G3\nA B1 Somata\nA B2 Somata\n\n57) Felix: Build G1 Felix\n\n58) wil: B R2 Rem\n\n59) Felix: Sacrifice Y2 Felix\nMove G1 Felix Somata\nMove G1 Somata G3\n\twil: Ur slowing me down!\n\n60) wil: S Y3 G3\nM R1 Rem Felix\nM R2 Rem Felix\nM R1 Ram Felix\n\n61) Felix: Build G1 G3\nCatastrophe G3 Green\nCatastrophe Felix Red\n\twil: Doomsday machine locked and loaded\n\n62) wil: S Y3 Wil\nM B3 Ram Felix\nM B2 Somata Felix\nM B2 Somata Felix\nC Felix B\n\n\tFelix: It's not often I get to call two catastrophes on one turn. Good game!\n\twil: Hey... I was a gonna do that!\n\twil: Wots somata u...\n\nHomeworlds Online (SDG# 32876)\nStarted: 2017.8.4, Ended: 2017.8.24\nParticipants: MobyNostromo (S), Helix (N)\nWinner: MobyNostromo\n\n1) Helix: Pass\n\n2) MobyNostromo: H B1 G2 Y3\n\tHelix: Hi. I'm trying this games which looks very complicated.\n\tMobyNostromo: Yes. This one is a very complicated one, but it seems to have the depth of Chess or Go. I've played this about ten times now, and I am now starting to feel the incredible possibilities. You're not going to understand it this time or maybe the next couple of times, but you will soon find a strategy you might want to use, and then the game will slowly start to make sense. Be patient.\n\n3) Helix: Pass\n\tHelix: Could you show me an example of first move (how to write it)?\n\tDraw5PlayAll: The homeworld move is: homeworld [star] [star] [ship] e.g. homeworld B3 R1 G3.\r\nWhen it comes time to build your second ship, use:\r\nbuild G1 Helix\r\n(Or B1, Y1, or R1... the same color as your initial ship.)\n\tDraw5PlayAll: Oh, and there should not be a period in the homeworld command.\n\n4) MobyNostromo: B Y1 Mobynostromo\n\tHelix: Sorry, I saw your answers after I moved.\n\n5) Helix: Homeworld B3 R1 G3\n\n6) MobyNostromo: B Y1 Mobynostromo\n\tHelix: Thanks to Draw5PlayAll\n\tMobyNostromo: Me too. Thanks to Draw5PlayAll.\n\n\nHomeworlds Online (SDG# 32786)\nVariants: "Unrated"\nStarted: 2017.8.4, Ended: 2017.8.23\nParticipants: DazelHirae (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\tDazelHirae: hi\n\tFelix: Hello! First game?\n\n\nHomeworlds Online (SDG# 32841)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.8, Ended: 2017.8.23\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y2 G3\n\n2) wil: Homeworld B2 Y1 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: B G1 Wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: Trade G1 Y1 Wil\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) wil: B Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G1 Field\n\n10) wil: D Y1 Wil G3 G3\n\n11) dlwillson: B Y3 Field\n\n12) wil: B Y3 G3\n\n13) dlwillson: Discover Y3 Field B3 Sky\n\n14) wil: Discover Y2 Wil Y3 Y3\n\n15) dlwillson: D Y2 Dlwillson B1 Sea\n\n16) wil: B G1 Wil\n\n17) dlwillson: Trade Y2 G2 Sea\n\n18) wil: T G1 R1 Wil\n\n19) dlwillson: B G1 Dlwillson\n\n20) wil: Move Y3 G3 Sea\n\n21) dlwillson: T G1 R1 Dlwillson\n\n22) wil: B R1 Wil\n\n23) dlwillson: S Y1 Field\nM G2 Sea Sky\n\n24) wil: B R2 Wil\n\n25) dlwillson: B R2 Dlwillson\n\n26) wil: T R1 B1 Wil\n\n27) dlwillson: T R1 B1 Dlwillson\n\n28) wil: M B1 Wil G3\n\n29) dlwillson: B G1 Sky\n\n30) wil: B B2 G3\n\n31) dlwillson: B G1 Sky\n\n32) wil: S B2 G3\nT R2 G2 Wil\nT G3 R3 Wil\n\n33) dlwillson: Trade G2 B2 Sky\n\n34) wil: Build B2 G3\n\n35) dlwillson: Discover B2 Sky G1 Field\n\n36) wil: Move B1 G3 Field\n\n37) dlwillson: Build B3 Field\n\n38) wil: Move B2 G3 Field\nCatastrophe Field B\n\n39) dlwillson: B B1 Dlwillson\n\n40) wil: Build G1 Wil\n\n41) dlwillson: T G1 R1 Sky\n\n42) wil: T G2 B2 Wil\n\n43) dlwillson: D B1 Dlwillson G1 Field\n\n44) wil: B G2 Wil\n\n45) dlwillson: B G2 Dlwillson\n\n46) wil: M B2 Wil G3\n\n47) dlwillson: Discover B1 Dlwillson Y1 Golden\n\n48) wil: Discover G2 Wil B3 B3\n\n49) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sky\nBuild G3 Dlwillson\nBuild Y2 Sky\n\n50) wil: B G3 B3\n\n51) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Sky\nBuild B2 Golden\nBuild G3 Dlwillson\n\n52) wil: M R1 Wil G3\n\tdlwillson: Damn your perfect move! You foiled my plan!\n\n53) dlwillson: Sacrifice Y2 Sky\nMove G2 Sky Wil\nMove R1 Sky Wil\n\tdlwillson: I have a new plan! It's not as good as the old plan...\n\n54) wil: Attack R1 Wil\n\twil: Will it be easier to foil?\n\n55) dlwillson: S G2 Dlwillson\nB G2 Wil\nB R2 Sky\n\tdlwillson: probably :-(\n\tdlwillson: <grin> I hope not!\n\n56) wil: S Y3 Sea\nM R1 Wil Y3\nM G2 B3 Wil\nC Wil G\nM G3 B3 Wil\n\n57) dlwillson: M R2 Sky Golden\n\n58) wil: D R1 Y3 G1 G1\n\tdlwillson: Hm. There was more to that idea, but I've forgotten what it was...\n\n59) dlwillson: S G3 Dlwillson\nB R2 Sky\nB R3 Golden\nB R3 Dlwillson\n\twil: Thats wot notes are for\n\twil: Oh my nice move\n\n60) wil: T G3 Y3 Wil\n\tdlwillson: Wow!\n\twil: I had no other choice did I? You were headed in!\n\twil: I really like your early second level aggression...it has put mW in hurt from the beginning...\n\twil: I really like your early second level aggression...it has put mW in hurt from the beginning...\n\twil: It isn't like I got myself outta hot water, but I did think it rather nice move.\n\n61) dlwillson: S B2 Golden\nT R3 G3 Dlwillson\nT R3 G3 Golden\n\n62) wil: B R3 G1\n\n63) dlwillson: B R3 Golden\n\n64) wil: M R1 G3 Golden\n\n65) dlwillson: S G3 Golden\nB G2 Dlwillson\nB G2 Sky\nB G2 Sky\n\n66) wil: S Y2 Y3\nM R1 G1 Sky\nM R1 Sky Golden\nC Golden R\n\n67) dlwillson: S G3 Dlwillson\nB Y2 Sky\nB G3 Dlwillson\nB G3 Dlwillson\n\n68) wil: B B1 G3\n\n69) dlwillson: M Y3 Sky Wil\n\n70) wil: A Y3 Wil\n\n71) dlwillson: Move Y2 Sky Wil\nCatastrophe Wil Y\n\n72) wil: T B1 R1 G3\n\n73) dlwillson: T G3 Y3 Dlwillson\n\n74) wil: B B1 G3\n\n75) dlwillson: T G2 B2 Sky\n\n76) wil: S Y1 G3\nM R3 Wil Field\n\twil: I will do my best to take advantage of a colossal mistake should you feel the urge.\n\n\tdlwillson: I don't think I have enough time left to make a mistake.\n\tdlwillson: Or we, rather.\n\twil: When your top soldiers flee to another island...\n\tdlwillson: Good game, Wil! Thank you!\n\nHomeworlds Online (SDG# 32910)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.10, Ended: 2017.8.28\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld B2 R3 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\tFelix: Hello again :) Have fun!\n\tdlwillson: Hi Felix! GLHF!\n\n3) Felix: B G1 Felix\n\n4) dlwillson: B G1 Dlwillson\n\n5) Felix: Trade G1 Y1 Felix\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Felix: Build G1 Felix\n\n8) dlwillson: B G1 Dlwillson\n\n9) Felix: Trade G1 R1 Felix\n\n10) dlwillson: Trade G1 R1 Dlwillson\n\n11) Felix: Build R2 Felix\n\n12) dlwillson: Build R2 Dlwillson\n\n13) Felix: Discover R1 Felix B1 Gronch\n\n14) dlwillson: Trade R2 Y2 Dlwillson\n\n15) Felix: Discover R2 Felix Y1 Splinch\n\n16) dlwillson: Build Y2 Dlwillson\n\n17) Felix: Build Y2 Felix\n\n18) dlwillson: D Y2 Dlwillson B2 Sea\n\n19) Felix: Move Y1 Felix Gronch\n\n20) dlwillson: D Y1 Dlwillson G2 Field\n\n21) Felix: Build Y3 Felix\n\n22) dlwillson: B Y3 Field\n\n23) Felix: Sacrifice G3 Felix\nBuild Y3 Gronch\nBuild R2 Gronch\nBuild R2 Splinch\n\n24) dlwillson: S Y2 Sea\nM Y3 Field Gronch\nM Y3 Gronch Felix\n\n25) Felix: Move R2 Splinch Felix\n\n26) dlwillson: A Y3 Felix\n\tFelix: Woah, nice move. I didn't see that one coming.\n\n27) Felix: Move Y1 Gronch Felix\nCatastrophe Felix Yellow\n\tdlwillson: I think you're going to come out ahead... Boo...\n\n28) dlwillson: M R1 Dlwillson Field\n\tFelix: Still a heavy blow!\n\tFelix: Hey, you should join the tournament Babamots is running. Check it out in the Facebook group! \n\n29) Felix: Trade R1 G1 Gronch\n\n30) dlwillson: B Y1 Field\n\n31) Felix: Move Y3 Gronch Felix\n\n32) dlwillson: Discover Y1 Field B1 Sky\n\n33) Felix: Trade R2 G2 Felix\n\n34) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Field\nBuild Y2 Sky\nBuild Y3 Dlwillson\n\n35) Felix: Build G1 Gronch\n\n36) dlwillson: Build Y3 Field\n\tFelix: Very nice move!\n\tdlwillson: I'm going to skip the tournament. 2/2/7 is just too slow. The tournament will still be running in six months, and at that rate, it doesn't add much value over the regular ladder. Have fun, though.\n\tdlwillson: I was thinking it would be as close to live as possible, with timings of hours, rather than days. :-(\n\n37) Felix: Build G1 Felix\n\tdlwillson: And finally, about the move, thanks very much!\n\tFelix: I'd prefer that myself, but since I am frequently playing games on here at a slow pace every day anyway, it didn't sound so bad to me. I'd really love to have a faster paced tourney one day though!\n\n38) dlwillson: Move Y3 Field Gronch\n\n39) Felix: Sacrifice R2 Gronch\nPass\nPass\n\n40) dlwillson: Trade Y3 R3 Gronch\n\n41) Felix: Build G2 Gronch\n\n42) dlwillson: Attack G2 Gronch\n\n43) Felix: Sacrifice G2 Felix\nBuild G2 Gronch\nBuild G3 Felix\nCatastrophe Gronch Green\n\n44) dlwillson: B Y3 Field\n\n45) Felix: Move G3 Felix Sky\n\n46) dlwillson: Sacrifice Y2 Sky\nMove Y3 Field Splinch\nMove Y1 Field Gronch\n\tdlwillson: Ooh. Good move! Now, I have to think!\n\n47) Felix: Trade G3 R3 Sky\n\tdlwillson: OK, that's the best I could come up with from my unfavorable choices.\n\tFelix: Pretty good response! I'm still in a bad situation without any more yellow.\n\n48) dlwillson: S Y1 Sky\nM Y2 Field Gronch\n\n49) Felix: Move R2 Splinch Field\n\n50) dlwillson: Trade Y3 G3 Dlwillson\n\n51) Felix: A R1 Field\n\n52) dlwillson: S G3 Dlwillson\nB Y1 Dlwillson\nB Y2 Splinch\nB Y3 Dlwillson\n\n53) Felix: Build G1 Felix\n\n54) dlwillson: S Y3 Dlwillson\nM Y2 Splinch Felix\nM Y2 Gronch Felix\nM Y1 Gronch Felix\nC Felix Y\n\n55) Felix: T G1 Y1 Felix\n\n56) dlwillson: M Y3 Splinch Felix\n\tFelix: And that's a wrap! Well played\n\n57) Felix: Sacrifice Y1 Felix\nMove R3 Sky Felix\n\tdlwillson: TY! Playing with you and Wil has improved me.\n\n58) dlwillson: S R3 Gronch\nA G1 Felix\nAttack R3 Felix\nPass\n\tFelix: Playing against both of you has helped me improve as well! Not enough for this game, but I'll have you next time ;)\n\tdlwillson: Thanks again! Good game as always!\n\tFelix: Congrats! Thanks for playing. Always fun :) You've been a beast lately. Great playing!\n\n\nHomeworlds Online (SDG# 32881)\nStarted: 2017.8.11, Ended: 2017.9.10\nParticipants: Amnykon (S), MobyNostromo (N)\nWinner: Amnykon\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Amnykon: Homeworld B3 Y2 G3\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) Amnykon: Build G1 Amnykon\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Amnykon: Build G1 Amnykon\n\n7) MobyNostromo: T Y1 G1 Mobynostromo\n\n8) Amnykon: Trade G1 Y1 Amnykon\n\n9) MobyNostromo: B G1 Mobynostromo\n\n10) Amnykon: Discover G1 Amnykon Y1 Far\n\n11) MobyNostromo: D G1 Mobynostromo G3 Chromium\n\n12) Amnykon: Build G2 Amnykon\n\n13) MobyNostromo: D G1 Mobynostromo Y3 Azo\n\n14) Amnykon: Sacrifice G3 Amnykon\nBuild G2 Far\nBuild G3 Far\nBuild G3 Amnykon\n\n15) MobyNostromo: M G1 Azo Far\nC Far G\n\n16) Amnykon: Discover G2 Amnykon Y1 Far\n\n17) MobyNostromo: Build Y2 Mobynostromo\n\n18) Amnykon: Build G1 Amnykon\n\n19) MobyNostromo: Trade Y1 B1 Mobynostromo\n\n20) Amnykon: Sacrifice G3 Amnykon\nBuild G1 Far\nBuild G2 Far\nBuild G3 Amnykon\n\n21) MobyNostromo: S Y2 Mobynostromo\nM G1 Chromium Far\nD B1 Mobynostromo Y3 Oxide\nC Far G\n\n22) Amnykon: Discover G1 Amnykon Y1 Ye\n\n23) MobyNostromo: B Y1 Mobynostromo\n\n24) Amnykon: Discover Y1 Amnykon G1 Green\n\n25) MobyNostromo: B Y2 Mobynostromo\n\n26) Amnykon: Build G1 Amnykon\n\n27) MobyNostromo: T Y2 G2 Mobynostromo\n\n28) Amnykon: Sacrifice G3 Amnykon\nBuild G2 Ye\nBuild G3 Amnykon\nBuild Y2 Green\n\n29) MobyNostromo: T Y1 B1 Mobynostromo\n\n30) Amnykon: Discover G1 Ye Y3 Yyy\n\n31) MobyNostromo: M G2 Mobynostromo Oxide\n\n32) Amnykon: Sacrifice G3 Amnykon\nBuild G3 Amnykon\nBuild G3 Yyy\nBuild G3 Yyy\n\tMobyNostromo: I didn't resign our other game!!\n\n\tAmnykon: A) you only had 3 small ships. I would have clearly won\r\nB) I think the 10 day time limit is exstream. If you reach that, it would seem that you abandoned the game,which is a forfeit. If you said you were leaving town or something, it would be another story.\n\tMobyNostromo: A) You didn't give ten days; you barely let 24 hours pass by before you claimed your win.\r\nB) Real life gets in the way of these things; if you can't let the fun roll without having to claim your "victory," then the next time you want to play this, lose my number.\r\nC) Here's a real resignation.\n\nHomeworlds Online (SDG# 32937)\nStarted: 2017.8.11, Ended: 2017.9.7\nParticipants: MobyNostromo (S), Amnykon (N)\nWinner: Amnykon\n\n1) Amnykon: Homeworld B1 Y2 G3\n\n2) MobyNostromo: H B2 G1 Y3\n\n3) Amnykon: Build G1 Amnykon\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Amnykon: Build G1 Amnykon\n\n6) MobyNostromo: B Y1 Mobynostromo\n\n7) Amnykon: Discover G1 Amnykon B3 Blue\n\n8) MobyNostromo: T Y1 R1 Mobynostromo\n\n9) Amnykon: Build G2 Amnykon\n\n10) MobyNostromo: M R1 Mobynostromo Blue\n\n11) Amnykon: Sacrifice G3 Amnykon\nBuild G2 Blue\nBuild G2 Blue\nBuild G3 Amnykon\n\n12) MobyNostromo: A G1 Blue\n\n13) Amnykon: Trade G2 R2 Amnykon\n\n14) MobyNostromo: T R1 Y1 Blue\n\n15) Amnykon: Sacrifice R2 Amnykon\nAttack Y1 Blue\nAttack G1 Blue\n\n16) MobyNostromo: M Y1 Mobynostromo Blue\n\n17) Amnykon: Discover G1 Blue G2 Green\n\n18) MobyNostromo: B Y1 Mobynostromo\n\n19) Amnykon: Sacrifice G3 Amnykon\nBuild G3 Amnykon\nBuild G3 Blue\nBuild G3 Green\n\n20) MobyNostromo: T Y1 R1 Mobynostromo\n\n21) Amnykon: Trade G2 R2 Blue\n\n22) MobyNostromo: M Y1 Blue Amnykon\n\n23) Amnykon: Sacrifice G3 Green\nBuild G2 Green\nBuild G3 Blue\nBuild R1 Blue\n\n24) MobyNostromo: B R1 Mobynostromo\n\n25) Amnykon: Sacrifice G3 Amnykon\nBuild G3 Amnykon\nBuild Y1 Blue\nBuild Y2 Blue\n\n26) MobyNostromo: D R1 Mobynostromo Y3 Bismuth\n\n27) Amnykon: Sacrifice Y2 Blue\nMove Y1 Blue Mobynostromo\nMove Y1 Blue Mobynostromo\n\n28) MobyNostromo: A Y1 Mobynostromo\n\n29) Amnykon: Sacrifice G3 Amnykon\nBuild G3 Amnykon\nBuild Y2 Mobynostromo\nBuild R2 Blue\nCatastrophe Mobynostromo Yellow\n\n\nHomeworlds Online (SDG# 32938)\nStarted: 2017.8.12, Ended: 2017.9.29\nParticipants: MobyNostromo (S), orangeblood (N)\nWinner: orangeblood\n\n1) orangeblood: Homeworld Y1 B2 G3\n\n2) MobyNostromo: H B1 G2 Y3\n\torangeblood: Greetings! I'm still learning this game, but I love it so far.\n\n3) orangeblood: Build G1 Orangeblood\n\tMobyNostromo: Me too. Let's have fun!\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) orangeblood: Trade G1 B1 Orangeblood\n\n6) MobyNostromo: T Y1 G1 Mobynostromo\n\n7) orangeblood: Build G1 Orangeblood\n\n8) MobyNostromo: Build Y1 Mobynostromo\n\n9) orangeblood: Discover G1 Orangeblood B3 Pollux\n\n10) MobyNostromo: T Y1 B1 Mobynostromo\n\n11) orangeblood: B B2 Orangeblood\n\n12) MobyNostromo: B B2 Mobynostromo\n\n13) orangeblood: Trade B2 Y2 Orangeblood\n\n14) MobyNostromo: D G1 Mobynostromo Y3 Azo\n\n15) orangeblood: Sacrifice Y2 Orangeblood\nMove B1 Orangeblood Azo\nMove B1 Azo Mobynostromo\nCatastrophe Mobynostromo Blue\n\n16) MobyNostromo: B Y1 Mobynostromo\n\n17) orangeblood: Trade G1 Y1 Pollux\n\n18) MobyNostromo: M Y1 Mobynostromo Pollux\n\n19) orangeblood: Build G1 Orangeblood\n\n20) MobyNostromo: B Y2 Mobynostromo\n\n21) orangeblood: Trade G1 R1 Orangeblood\n\n22) MobyNostromo: T Y1 R1 Pollux\n\n23) orangeblood: Sacrifice R1 Orangeblood\nAttack R1 Pollux\n\n24) MobyNostromo: M Y2 Mobynostromo Pollux\n\n25) orangeblood: Build G1 Orangeblood\n\n26) MobyNostromo: T Y2 B2 Pollux\n\n27) orangeblood: Move Y1 Pollux Mobynostromo\n\n28) MobyNostromo: B Y1 Mobynostromo\n\n29) orangeblood: Build Y2 Mobynostromo\nCatastrophe Mobynostromo Yellow\n\torangeblood: Thanks for the game!\n\tMobyNostromo: Thanks!!\n\n\nHomeworlds Online (SDG# 32844)\nStarted: 2017.8.13, Ended: 2017.8.17\nParticipants: ts52 (S), Amnykon (N)\nWinner: Amnykon\n\n1) Amnykon: Homeworld Y2 B1 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) Amnykon: Build G1 Amnykon\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) Amnykon: Discover G1 Amnykon B3 Blue\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) Amnykon: Build G1 Amnykon\n\n8) ts52: Build G2 Ts52\n\n9) Amnykon: Trade G1 Y1 Amnykon\n\n10) ts52: Trade G2 Y2 Ts52\n\n11) Amnykon: Build G1 Amnykon\n\n12) ts52: Build G2 Ts52\n\n13) Amnykon: Sacrifice G3 Amnykon\nBuild G2 Blue\nBuild G2 Blue\nBuild G3 Amnykon\n\n14) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild Y1 Ts52\n\n15) Amnykon: Trade G2 Y2 Blue\n\n16) ts52: Move Y1 Ts52 Gonzo\n\n17) Amnykon: Discover G2 Blue B2 Mba\n\n18) ts52: Discover Y2 Ts52 G2 Kermit\n\n19) Amnykon: Trade Y1 B1 Amnykon\n\n20) ts52: Trade G1 R1 Gonzo\n\n21) Amnykon: Trade G1 R1 Amnykon\n\n22) ts52: Build Y1 Gonzo\n\n23) Amnykon: Sacrifice G3 Amnykon\nBuild G1 Blue\nBuild G1 Blue\nBuild G3 Mba\n\n24) ts52: Sacrifice Y2 Kermit\nMove G3 Gonzo Blue\nMove G3 Blue Amnykon\n\n25) Amnykon: Sacrifice Y2 Blue\nMove G3 Mba Ts52\nMove G2 Mba Ts52\nCatastrophe Ts52 G\n\tts52: Very well done! I did not see that coming. Good game!\n\tAmnykon: Gg\r\nI was hopping abandoning my home world and building 3 green on another system was not a mistake\r\n\r\nI had to try something. You managed the stock well. If I built something, you would boule better. \n\n\nHomeworlds Online (SDG# 32774)\nVariants: "Hard time"\nStarted: 2017.8.13, Ended: 2017.8.22\nParticipants: wil (S), semicolon (N)\nWinner: wil\n\n1) semicolon: Homeworld R2 B1 G3\n\n2) wil: H B3 Y1 G3\n\twil: Wrlcome to SDG... How familiar are you with the game?\n\n3) semicolon: Build G1 Semicolon\n\tsemicolon: Familiar with the game, new to SDG. Didn't look at the ladder until after I accepted the game though; probably going to lose!\n\n4) wil: B G1 Wil\n\twil: Lol, losing is the way to learn...\n\n5) semicolon: Trade G1 Y1 Semicolon\n\n6) wil: T G1 Y1 Wil\n\n7) semicolon: B G1 Semicolon\n\twil: And don't worry about the ladder, I don't deserve to be at the top.\n\n8) wil: B Y2 Wil\n\n9) semicolon: B Y2 Semicolon\n\n10) wil: T Y1 B1 Wil\n\n11) semicolon: D G1 Semicolon Y3 Y3\n\n12) wil: B B1 Wil\n\n13) semicolon: B G1 Y3\n\n14) wil: Discover B1 Wil Y2 Y2\n\n15) semicolon: B G1 Semicolon\n\n16) wil: Build B2 Wil\n\n17) semicolon: T Y2 B2 Semicolon\n\n18) wil: Discover B1 Wil Y2 Why2\n\n19) semicolon: D B2 Semicolon G3 G3\n\n20) wil: S G3 Wil\nB B2 Why2\nB B3 Y2\nB B3 Wil\n\n21) semicolon: D G1 Y3 R2 R2\n\n22) wil: S B2 Why2\nT B3 R3 Y2\nT B3 G3 Wil\n\n23) semicolon: B G2 Semicolon\n\n24) wil: S G3 Wil\nB B2 Y2\nB B3 Why2\nB B3 Wil\n\n25) semicolon: T B2 G2 G3\n\n26) wil: M B3 Why2 G3\n\n27) semicolon: S G3 Semicolon\nB G2 Y3\nB G3 R2\nB G3 Semicolon\n\n28) wil: M B2 Y2 Y3\n\n29) semicolon: B Y1 Semicolon\n\n30) wil: Sacrifice R3 Y2\nAttack G2 G3\nAttack G2 Y3\nAttack G1 Y3\n\n31) semicolon: T G3 Y3 Semicolon\n\n32) wil: T B3 Y3 G3\n\n33) semicolon: S Y3 Semicolon\nM G1 Semicolon Y3\nM G1 R2 Y3\nC Y3 G\nM G3 R2 Y3\n\n34) wil: B Y3 G3\n\tsemicolon: and I think that's game\n\tsemicolon: Well played :) I'll have to try again some time\n\n35) semicolon: M G3 Y3 Semicolon\n\n36) wil: S G2 G3\nB B2 Y3\nB B3 Y3\n\tsemicolon: Could you not have sacrificed Y2, moved Y3 to my Homeworld and start capturing everything?\n\twil: Unless I missed something you would have grown a y3 and blown them all up.\r\n\n\n37) semicolon: M G2 Semicolon Y3\n\n38) wil: S B2 Y3\nT B3 R3 Y3\nT B3 G3 Wil\n\n39) semicolon: M G2 Y3 Why2\n\n40) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B3 Y3\nBuild B3 Wil\n\n41) semicolon: B G1 Why2\n\twil: now my route to the end is secure.\n\n42) wil: S Y3 G3\nM B1 Y2 G3\nM Y3 G3 Semicolon\nM B3 Y3 Semicolon\n\n\tsemicolon: Good game :)\n\twil: This is a game (like most) of refraining from really bad moves and capitalizing on the mistakes of others. \n\nHomeworlds Online (SDG# 32886)\nVariants: "Unrated"\nStarted: 2017.8.13, Ended: 2017.9.20\nParticipants: Felix (S), orangeblood (N)\nWinner: Felix\n\n1) orangeblood: Homeworld Y1 B2 G3\n\n2) Felix: Homeworld R2 B3 G3\n\torangeblood: Hi again... I've finally made my way through a backlog of games on Little Golem, and I'm ready to get back into HW.\n\tFelix: Excellent! Welcome back. I hope you have fun :)\n\n3) orangeblood: Build G1 Orangeblood\n\n4) Felix: Build G1 Felix\n\n5) orangeblood: Trade G1 Y1 Orangeblood\n\n6) Felix: Trade G1 Y1 Felix\n\n7) orangeblood: Build Y2 Orangeblood\n\n8) Felix: Build Y2 Felix\n\n9) orangeblood: Build G1 Orangeblood\n\n10) Felix: Discover Y1 Felix B1 Point\n\n11) orangeblood: Discover Y1 Orangeblood G3 Arcturus\n\n12) Felix: Build G1 Felix\n\n13) orangeblood: Discover G1 Orangeblood B3 Antares\n\tFelix: I want so badly to sacrifice my g3 for a bunch of yellows, but then you could just catastrophe them!\n\torangeblood: Do you mean because you could grab two large ones in the process?\n\n14) Felix: Move G1 Felix Point\n\tFelix: I wouldn't really gain anything. I'd just end up trading my g3 for a y3, basically.\n\n15) orangeblood: Trade Y2 R2 Orangeblood\n\n16) Felix: Build Y2 Point\n\torangeblood: Gotcha. I was just trying to understand the basics of what you meant, but had to think about it for awhile.\n\n17) orangeblood: T G1 B1 Antares\n\tFelix: No worries. I'm not sure I fully understood it myself :)\n\n18) Felix: Trade Y2 R2 Point\n\n19) orangeblood: Move R2 Orangeblood Antares\n\n20) Felix: Build Y2 Point\n\n21) orangeblood: Build G1 Orangeblood\n\n22) Felix: Sacrifice G3 Felix\nBuild Y2 Point\nBuild Y3 Felix\nBuild Y3 Felix\n\n23) orangeblood: M Y1 Arcturus Point\nCatastrophe Point Yellow\n\n24) Felix: Move Y3 Felix Point\n\torangeblood: I feel you were baiting me into that, but we'll see what happens... :)\n\n25) orangeblood: Trade B1 Y1 Antares\n\tFelix: Somewhat :) It's usually worth it to take a catastrophe if it will leave your opponent without a particular color temporarily... especially if that color is yellow\n\n26) Felix: Trade Y3 G3 Felix\n\n27) orangeblood: Move G1 Orangeblood Antares\n\n28) Felix: Move Y3 Point Antares\n\n29) orangeblood: Build Y1 Antares\n\n30) Felix: Sacrifice Y3 Antares\nMove G1 Point Antares\nMove G1 Antares Orangeblood\nMove R2 Point Antares\n\n31) orangeblood: Sacrifice R2 Antares\nAttack G1 Orangeblood\nPass\n\tFelix: Fantastic move. You put me in a tight spot, but hopefully this will work :)\n\n32) Felix: A G1 Antares\n\torangeblood: Any fantastic moves are just a result of me lashing out with my back to the wall, haha. Your move was great. I can't believe how deep this game is.\n\n33) orangeblood: Move Y1 Antares Orangeblood\n\n34) Felix: Attack Y1 Antares\n\n35) orangeblood: Trade G1 R1 Orangeblood\n\tFelix: It's so deep! I've been playing for a while now and am constantly surprised.\n\n36) Felix: Build Y2 Antares\n\n37) orangeblood: D Y1 Orangeblood G3 Altair\n\n38) Felix: T Y1 B1 Antares\n\n39) orangeblood: Build G1 Orangeblood\n\n40) Felix: Build G1 Antares\n\n41) orangeblood: Move G1 Orangeblood Altair\n\n42) Felix: B G2 Antares\n\n43) orangeblood: Build G2 Altair\n\n44) Felix: Sacrifice Y2 Antares\nMove G1 Antares Orangeblood\nMove G1 Orangeblood Altair\nCatastrophe Altair Green\n\n45) orangeblood: Build R1 Orangeblood\n\n46) Felix: Trade G1 Y1 Antares\n\n47) orangeblood: Trade R1 B1 Orangeblood\n\torangeblood: It was my intention to try the "banker" strategy in this game. Do you have any tips on how to actually get to the point where I could even try it? haha...\n\tFelix: I'm not so good at that strategy myself. Basically you just want to move g1s or g2s out to large stars that you want to keep away from me, but you can't really cash those in until that color is down to only larges. So if you moved a g1 to a y3, for instance, then if all the y1s and y2s were depleted you could sac that g1 to build the y3 (but only if you had a yellow ship elsewhere where you could build it.) It's not an easy strategy and sometimes requires more effort than it's worth, in my opinion.\n\n48) Felix: Build Y1 Antares\n\n49) orangeblood: Build R1 Orangeblood\n\torangeblood: I'll have to try something else next time. ;)\n\n50) Felix: B Y2 Felix\n\n\torangeblood: I'm out of ideas... thanks for the game!\n\tFelix: Good game! Thanks for playing :)\n\nHomeworlds Online (SDG# 32842)\nVariants: "Hard time"\nStarted: 2017.8.14, Ended: 2017.8.23\nParticipants: velgarath2 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\tvelgarath2: Hi Felix!\r\nLet's play another one. I will try new things on this game!\r\nThanks for playing\n\tFelix: Hello again! I'm happy to play again. I hope you have fun :)\n\n2) velgarath2: Homeworld Y3 G1 B3\n\n3) Felix: Build G1 Felix\n\n4) velgarath2: Build B1 Velgarath2\n\n5) Felix: Trade G1 Y1 Felix\n\n6) velgarath2: Build B1 Velgarath2\n\n7) Felix: Build Y1 Felix\n\n8) velgarath2: Trade B1 Y1 Velgarath2\n\n9) Felix: Build Y2 Felix\n\n10) velgarath2: Build Y2 Velgarath2\n\n11) Felix: Discover Y1 Felix B1 Point\n\n12) velgarath2: Trade Y1 R1 Velgarath2\n\n13) Felix: Discover Y1 Felix Y1 C3x\n\n14) velgarath2: Discover Y2 Velgarath2 G2 Eden\n\n15) Felix: Sacrifice G3 Felix\nBuild Y2 C3x\nBuild Y3 Felix\nBuild Y3 Point\n\n16) velgarath2: Move Y2 Eden C3x\nCatastrophe C3x Y\n\n17) Felix: Trade Y3 G3 Felix\n\n18) velgarath2: Trade B3 G3 Velgarath2\n\n19) Felix: Trade Y3 G3 Point\n\n20) velgarath2: Build B1 Velgarath2\n\n21) Felix: Build Y1 Felix\n\n22) velgarath2: Discover B1 Velgarath2 G2 Somewhere\n\n23) Felix: Discover Y1 Felix Y1 Tinop\n\n24) velgarath2: Sacrifice G3 Velgarath2\nBuild B2 Somewhere\nBuild B2 Somewhere\nBuild B3 Velgarath2\n\n25) Felix: Build Y2 Felix\n\n26) velgarath2: Build B3 Velgarath2\n\tFelix: Good move!\n\n27) Felix: Sacrifice G3 Felix\nBuild Y2 Tinop\nBuild Y3 Point\nBuild Y3 Felix\n\n28) velgarath2: Trade B3 G3 Velgarath2\n\tvelgarath2: That was also a good move!\n\n29) Felix: Trade Y3 R3 Point\n\n30) velgarath2: Trade B3 Y3 Velgarath2\n\n31) Felix: Move R3 Point Somewhere\n\n32) velgarath2: Build B3 Velgarath2\n\n33) Felix: Attack B2 Somewhere\n\n34) velgarath2: Sacrifice G3 Velgarath2\nBuild B3 Velgarath2\nBuild B3 Somewhere\nBuild R1 Velgarath2\nCatastrophe Somewhere Blue\n\n35) Felix: Trade Y3 G3 Felix\n\n36) velgarath2: Discover Y3 Velgarath2 G2 Greenland\n\tFelix: Interesting move! I like it\n\n37) Felix: Build Y3 Point\n\n38) velgarath2: Trade B3 G3 Velgarath2\n\n39) Felix: Move Y3 Point Somewhere\n\n40) velgarath2: Move R1 Velgarath2 Greenland\n\n41) Felix: Trade Y2 R2 Felix\n\n42) velgarath2: Build Y2 Greenland\n\n43) Felix: Discover G3 Point B2 Ocean\n\n44) velgarath2: Move Y2 Greenland Tinop\nCatastrophe Tinop Yellow\n\n45) Felix: Sacrifice Y2 Felix\nMove G3 Ocean Velgarath2\nMove Y3 Somewhere Velgarath2\n\n46) velgarath2: Attack Y3 Velgarath2\n\n47) Felix: S R3 Somewhere\nA B3 Velgarath2\nA Y3 Velgarath2\nA G3 Velgarath2\n\tvelgarath2: wow! This looks ugly!\n\n48) velgarath2: Move Y3 Greenland Velgarath2\n\n49) Felix: Sacrifice G3 Velgarath2\nBuild G1 Velgarath2\nBuild G1 Velgarath2\nBuild Y1 Velgarath2\nCatastrophe Velgarath2 Yellow\nCatastrophe Velgarath2 Green\n\tFelix: I'm afraid it does! Only being able to attack once can be very dangerous if the opponent can attack twice or three times\n\n\tFelix: Good game! Exciting finish :)\n\tvelgarath2: Thank you! A good learning experience. Lessons learned!\n\nHomeworlds Online (SDG# 32953)\nStarted: 2017.8.14, Ended: 2017.10.6\nParticipants: velgarath2 (S), maka (N)\nWinner: velgarath2\n\n1) maka: Homeworld G3 Y1 B3\n\n2) velgarath2: Homeworld Y2 B3 G3\n\n3) maka: Build B1 Maka\n\n4) velgarath2: Build G1 Velgarath2\n\n5) maka: Trade B1 R1 Maka\n\n6) velgarath2: Trade G1 R1 Velgarath2\n\n7) maka: Build B1 Maka\n\n8) velgarath2: Build G1 Velgarath2\n\n9) maka: Trade B1 G1 Maka\n\n10) velgarath2: Trade G1 Y1 Velgarath2\n\n11) maka: Discover G1 Maka B2 Loko\n\n12) velgarath2: Build G1 Velgarath2\n\n13) maka: Build B1 Maka\n\n14) velgarath2: Discover G1 Velgarath2 Y1 Katapum\n\n15) maka: Build B1 Maka\n\n16) velgarath2: Build Y2 Velgarath2\n\n17) maka: Trade B3 Y3 Maka\n\n18) velgarath2: Trade Y2 B2 Velgarath2\n\n19) maka: Build Y2 Maka\n\n20) velgarath2: Discover Y1 Velgarath2 G1 Ultima\n\n21) maka: Trade Y3 R3 Maka\n\n22) velgarath2: Build G2 Velgarath2\n\n23) maka: Move Y2 Maka Loko\n\n24) velgarath2: Build G2 Katapum\n\n25) maka: Move R3 Maka Loko\n\n26) velgarath2: Build Y2 Ultima\n\tmaka: Perdona por ir tan lento. Pero esta vez voy a intentar que no se me vaya la olla y terminemos el juego :)\n\tmaka: Tu llegaste a jugar al attangle aquí no? Recuerdo que me gustaba mucho. Podríamos echar una tb jeje\n\n27) maka: Build Y3 Loko\n\n28) velgarath2: Trade G3 Y3 Velgarath2\n\n29) maka: Sacrifice Y2 Loko\nMove Y3 Loko Katapum\nMove R3 Loko Katapum\n\n30) velgarath2: Sacrifice Y2 Ultima\nMove G2 Katapum Loko\nMove G2 Loko Maka\n\n31) maka: Attack G1 Katapum\n\n32) velgarath2: Sacrifice R1 Velgarath2\nAttack R1 Maka\n\tmaka: otras! me la has jugado bien :D\n\tvelgarath2: Bueno....la cosa tampoco esta muy tranquila para mi. No me gusta nada esa nave roja amenazante...\n\n33) maka: Sacrifice Y3 Katapum\nMove R3 Katapum Loko\nMove R3 Loko Maka\nPass\n\n34) velgarath2: Build G2 Maka\n\n35) maka: Attack G2 Maka\n\n36) velgarath2: Build G3 Maka\nCatastrophe Maka Green\n\n37) maka: Attack R1 Maka\n\tmaka: bueno... muy bueno... me has pillado totalmente\r\n\n\tmaka: se me da fatal este juego :D\r\n\n\n38) velgarath2: Build G2 Velgarath2\n\n39) maka: Build G2 Loko\n\n40) velgarath2: Trade G2 R2 Velgarath2\n\n41) maka: Build G2 Loko\n\n42) velgarath2: Build G3 Velgarath2\n\n43) maka: Trade G2 R2 Loko\n\n44) velgarath2: Build Y2 Ultima\n\n45) maka: Trade G2 Y2 Loko\n\n46) velgarath2: Build Y3 Velgarath2\n\n47) maka: Build Y3 Loko\n\n48) velgarath2: Move Y3 Velgarath2 Maka\n\n49) maka: Attack Y3 Maka\n\tmaka: perdona que tarde tanto... tengo mogollón de lío estos días y se ma va la olla... \n\n50) velgarath2: Move Y3 Velgarath2 Maka\n\n51) maka: Move Y3 Maka Velgarath2\n\n52) velgarath2: Sacrifice R2 Velgarath2\nAttack R3 Maka\nAttack R1 Maka\n\n\tmaka: ostras... no recordaba que se pudiera hacer eso... pues nada... ya me tienes :) \n\tvelgarath2: buena partida maka!\n\nHomeworlds Online (SDG# 32952)\nStarted: 2017.8.14, Ended: 2017.11.13\nParticipants: velgarath2 (S), fogus (N)\nWinner: fogus\n\n1) fogus: Homeworld Y1 B2 G3\n\n2) velgarath2: Homeworld R3 B2 G3\n\tvelgarath2: Thank you for playing!\n\n3) fogus: Build G1 Fogus\n\n4) velgarath2: Build G1 Velgarath2\n\n5) fogus: Trade G1 Y1 Fogus\n\n6) velgarath2: Trade G1 Y1 Velgarath2\n\n7) fogus: Discover Y1 Fogus G3 Cribbage\n\n8) velgarath2: Build Y2 Velgarath2\n\n9) fogus: Build Y2 Cribbage\n\n10) velgarath2: Discover Y2 Velgarath2 G1 Hyperspace\n\n11) fogus: Build G1 Fogus\n\n12) velgarath2: Build Y2 Hyperspace\n\n\n13) fogus: Discover G1 Fogus Y3 Gops\n\n14) velgarath2: Build Y3 Velgarath2\n\n15) fogus: Discover Y1 Cribbage G1 Gin\n\n16) velgarath2: Discover Y2 Hyperspace Y3 Casiopea\n\n17) fogus: Build G2 Fogus\n\n18) velgarath2: Build G2 Velgarath2\n\n19) fogus: Build G2 Gops\n\n20) velgarath2: Trade G2 R2 Velgarath2\n\n21) fogus: Build G2 Gops\n\n22) velgarath2: Move R2 Velgarath2 Gin\n\n23) fogus: Move Y1 Gin Velgarath2\n\n24) velgarath2: Move Y1 Velgarath2 Gin\n\n25) fogus: Discover Y1 Velgarath2 B1 Hearts\n\n26) velgarath2: Move R2 Gin Gops\n\n27) fogus: Trade Y1 R1 Hearts\n\n28) velgarath2: Move R2 Gops Hearts\n\n29) fogus: Build Y1 Cribbage\n\n\nHomeworlds Online (SDG# 32959)\nVariants: "Hard time"\nStarted: 2017.8.15, Ended: 2017.8.28\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: H B3 Y2 G3\n\twil: Time to get knocked off my perch\n\n2) dlwillson: H Y3 B1 G3\n\tdlwillson: I hope so! Good luck and have fun!\n\n3) wil: B G1 Wil\n\n4) dlwillson: B G1 Dlwillson\n\n5) wil: T G1 B1 Wil\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) wil: Build B2 Wil\n\n8) dlwillson: B B2 Dlwillson\n\n9) wil: T B2 G2 Wil\n\n10) dlwillson: Build G1 Dlwillson\n\n11) wil: B B2 Wil\n\n12) dlwillson: Discover B1 Dlwillson G2 Field\n\n13) wil: T B2 R2 Wil\n\n14) dlwillson: Trade G1 R1 Dlwillson\n\n15) wil: Trade G2 Y2 Wil\n\n16) dlwillson: B B2 Dlwillson\n\n17) wil: D B1 Wil G1 G1\n\n18) dlwillson: D B2 Dlwillson Y2 Golden\n\n19) wil: B Y1 Wil\n\n20) dlwillson: M B2 Golden G1\n\n21) wil: B B2 G1\n\twil: I really like that move\n\n22) dlwillson: B B3 Field\n\n23) wil: S Y2 Wil\nM B1 G1 Field\nM B2 G1 Field\nC Field B\n\n24) dlwillson: B B1 G1\n\n25) wil: B Y1 Wil\n\n26) dlwillson: T B2 Y2 G1\n\n27) wil: M Y1 Wil G1\n\n28) dlwillson: Build R1 Dlwillson\n\n29) wil: B Y1 G1\n\n30) dlwillson: T B1 R1 G1\n\n31) wil: B R2 Wil\n\n32) dlwillson: B R2 G1\n\n33) wil: M R2 Wil G1\n\n34) dlwillson: A R2 G1\n\tdlwillson: Interesting build-up!\n\n35) wil: Build R3 Wil\n\n36) dlwillson: Sacrifice Y2 G1\nMove R1 G1 Wil\nMove R2 G1 Wil\nCatastrophe Wil R\n\twil: you in the tourney?\n\n37) wil: B Y2 Wil\n\tdlwillson: I have been teaching SFS Linux Camp for the last 4 days. I haven't had time to read up on it. Link?\n\twil: Homeworlds tournament starting\r\n\r\nJust trying to make sure everyone knows...\r\n\r\nhttps://docs.google.com/document/d/1hkxl9Mw2XAv4-efyG_hURgV9lx11vendySVaKzZvg6U/edit?usp=sharing\n\twil: Does that mean you can tell me.how to clean out my boot and make my computer work faster?\n\n38) dlwillson: A Y1 G1\n\n39) wil: M Y1 Wil G1\n\tdlwillson: Yes, but only if you're running Linux. I don't do Windows or Mac.\n\n40) dlwillson: Sacrifice R2 G1\nAttack Y1 G1\nAttack Y1 G1\n\twil: Yeah, it...it Linux.... I think illegal to run if.you don't know what you are.doing..\n\n41) wil: T Y2 R2 Wil\n\tdlwillson: Then yes, I can help you clean up your boot and speed up your system.\r\n\r\nWant to have the conversation here or in email? Either way, run `df -hT` and return the output to me and: Do you have a spinning disc or a solid-state drive? And, run `top -bn1 | head -n 20` and return the output of that.\n\tdlwillson: I'm going to skip the tournament. 2/2/7 is just too slow. The tournament will still be running in six months, and at that rate, it doesn't add much value over the regular ladder. Have fun, though.\n\twil: Let's email...theallyns@gmail.com\n\twil: Lol somebody wasn't thinking\n\n42) dlwillson: Discover Y1 G1 G2 Field\n\tdlwillson: Why didn't you build first, then trade?\n\tdlwillson: Oh, wait, I think I see. I think I could have locked you out of red.\n\n43) wil: B R1 Wil\n\tdlwillson: Email sent from DLWillson@TheGeek.NU. Check your junk if you don't see it.\n\twil: I saw it, didn't get to it today..thx innadvance for the help.\n\n44) dlwillson: M R1 Dlwillson Field\n\twil: This has not gone well... IMA gonna return you to the hot seat.\n\n45) wil: M R2 Wil G1\n\tdlwillson: Yeah. Things are looking pretty good for South right now.\n\n46) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y2 Field\nB Y3 G1\n\n47) wil: B R2 Wil\n\n48) dlwillson: S R1 Field\nA R2 G1\n\n49) wil: D R2 Wil G1 Gone\n\n50) dlwillson: M Y2 Field Dlwillson\n\n51) wil: B R1 Gone\n\n52) dlwillson: B Y3 Field\n\n53) wil: B G1 Wil\n\n54) dlwillson: Sacrifice B2 Dlwillson\nTrade Y3 G3 Field\nTrade Y3 G3 G1\n\n55) wil: T G1 B1 Wil\n\n56) dlwillson: Sacrifice G3 Field\nBuild G1 G1\nBuild Y3 G1\nBuild Y3 Field\n\n57) wil: B B1 Wil\n\n58) dlwillson: Sacrifice Y3 Field\nMove G1 G1 Wil\nMove G3 G1 Wil\nMove Y1 G1 Wil\n\n59) wil: M G3 Wil G1\n\n60) dlwillson: T G3 B3 Wil\nC Wil B\n\n61) wil: S R2 Gone\nA Y3 G1\nA R2 G1\n\n62) dlwillson: S Y2 Field\nM Y2 Dlwillson Wil\nM Y1 G1 Wil\nC Wil Y\n\twil: Congrats\n\tdlwillson: Thanks and good game, Wil!\n\n\nHomeworlds Online (SDG# 32813)\nVariants: "Unrated"\nStarted: 2017.8.16, Ended: 2017.8.30\nParticipants: twermund (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) twermund: Homeworld B2 Y1 G3\n\twil: New to the game?\n\n3) wil: B G1 Wil\n\ttwermund: Yup, first game\n\n4) twermund: Build G1 Twermund\n\twil: Do you have pyramids\n\ttwermund: Yup, just got my first full set last week. I got Treehouse and two pyramid stashes.\n\n5) wil: T G1 Y1 Wil\n\twil: Cool...this format is often tough to see actual relationships, sometimes worth creating your own physical set to review\n\n6) twermund: Trade G1 Y1 Twermund\n\twil: The beginning of the game is follow the leader...insuring you don't get frozen out of any economy (color/ability)\n\n7) wil: Build Y2 Wil\n\ttwermund: I've watched a little bit of Homeworlds Theater on youtube so I have a rough idea of how the game works, I'm just excited to get into more complicated games to play with my pyramids\n\n8) twermund: Trade Y1 B1 Twermund\n\twil: Read the rules? Understand attacks and catastrophes, end game scenarios?\n\twil: Pyramid Arcade has a few more.strategy games...but this is the best....turned a life long chess fan around.\n\n9) wil: B G1 Wil\n\ttwermund: I've read them a few times out of the Pyramid Arcade rulebook, I just figured I would try a game and lose to learn more about the game :D\n\n10) twermund: Build B1 Twermund\n\twil: Warning... You jumped back out of yellow!\n\twil: Look at how many I lost to learn!!\n\n11) wil: T G1 B1 Wil\n\n12) twermund: Trade B1 Y1 Twermund\n\n13) wil: D Y1 Wil G1 G1\n\n14) twermund: Build G1 Twermund\n\n15) wil: B Y2 G1\n\n16) twermund: Build B1 Twermund\n\tDraw5PlayAll: It took me seven games before I won my first...\n\n17) wil: B Y3 Wil\n\n18) twermund: Build Y3 Twermund\n\n19) wil: S Y2 Wil\nD Y1 G1 R3 R3\nM Y1 R3 Twermund\nC Twermund Y\n\n20) twermund: Trade G1 R1 Twermund\n\twil: It was a little early to catastrophe, but something you should always watch out for.\n\ttwermund: haha, I was trying to get my blues ready for the same thing\n\ttwermund: haha, I was trying to get my blues ready for the same thing\n\n21) wil: B B2 Wil\n\n22) twermund: Trade B1 Y1 Twermund\n\twil: That focus on a gambit must not take younaway from looking around. My Y's have been in play for that ever since I moved the little in forward and left a y2 at home..\n\ttwermund: Is there any rational move left for me at this point?\n\n23) wil: B G1 Wil\n\n24) twermund: Move R1 Twermund G1\n\n25) wil: T B2 R2 Wil\n\n26) twermund: Build R1 G1\n\twil: Are you wishing to donate a ship to me? So nice...\n\n27) wil: S R2 Wil\nA R1 G1\nA R1 G1\n\n28) twermund: Build B1 Twermund\n\twil: That is what an attack looks like....thank you for the nice new ships.... Sacrificing a 2 pip ship gives me the power of 2 attacks anywhere in the galaxy\r\n\n\n\twil: Well that will end it...do you want to play another?\n\ttwermund: Yeah, that sounds good. I'll research my moves this time :D\n\ttwermund: Yeah, that sounds good. I'll research my moves this time :D\n\twil: Did you see the end move?\n\ttwermund: Nope, what was it?\n\ttwermund: oh! move the blue in and catastrophe\n\twil: Yes...any time someone changes to yellow or has yellows you really need to count potential moves...I just lost another game to that reality\n\nHomeworlds Online (SDG# 32974)\nVariants: "Hard time"\nStarted: 2017.8.18, Ended: 2017.11.13\nParticipants: Joe_Hill (S), Mandrel (N)\nWinner: Mandrel\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) Joe_Hill: Homeworld Y1 B2 G3\n\tMandrel: Have a good game\n\tJoe_Hill: Hi Mandrel, I'm pretty new to this game, looking to learn.\n\n3) Mandrel: Build G1 Mandrel\n\n4) Joe_Hill: Build G1 Joe_hill\n\tMandrel: Cool! I've played a bunch but not really for a while so am pretty rusty, but feel free to ask any questions if you want\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) Joe_Hill: Trade G1 Y1 Joe_hill\n\n7) Mandrel: Build Y2 Mandrel\n\n8) Joe_Hill: Build G1 Joe_hill\n\n9) Mandrel: Discover Y1 Mandrel G3 Peer\n\n10) Joe_Hill: Trade G3 R3 Joe_hill\n\n11) Mandrel: Build Y2 Peer\n\n12) Joe_Hill: Trade Y1 B1 Joe_hill\n\n13) Mandrel: B G1 Mandrel\n\n14) Joe_Hill: Build G1 Joe_hill\n\n15) Mandrel: T G1 B1 Mandrel\n\n16) Joe_Hill: Discover G1 Joe_hill Y3 Tab\n\n17) Mandrel: M B1 Mandrel Peer\n\n18) Joe_Hill: Move B1 Joe_hill Tab\n\n19) Mandrel: B Y1 Mandrel\n\n20) Joe_Hill: Build G1 Tab\n\n21) Mandrel: B G2 Mandrel\n\n22) Joe_Hill: Build G2 Joe_hill\n\n23) Mandrel: Trade Y2 R2 Mandrel\n\n24) Joe_Hill: Trade G1 R1 Tab\n\n25) Mandrel: Move R2 Mandrel Tab\n\n26) Joe_Hill: Move R1 Tab Joe_hill\n\n27) Mandrel: Attack G1 Tab\n\n28) Joe_Hill: Discover B1 Tab Y2 Hab\n\n29) Mandrel: Build Y2 Mandrel\n\n30) Joe_Hill: Move G2 Joe_hill Peer\n\n31) Mandrel: Build Y3 Peer\n\n\nHomeworlds Online (SDG# 32976)\nVariants: "Hard time"\nStarted: 2017.8.18, Ended: 2017.10.11\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: ts52\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tts52: Have a good game!\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) ts52: Build G1 Ts52\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) ts52: Build G1 Ts52\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) ts52: Trade G1 B1 Ts52\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) ts52: Discover B1 Ts52 G1 Kermit\n\n13) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n14) ts52: Move Y1 Ts52 Kermit\n\n15) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n16) ts52: Build G1 Ts52\n\n17) Draw5PlayAll: Build R1 Draw5playall\n\n18) ts52: Discover G1 Ts52 B1 Gonzo\n\n19) Draw5PlayAll: Build B2 G2\n\n20) ts52: B B2 Kermit\n\n21) Draw5PlayAll: Move R1 Draw5playall G2\n\n22) ts52: Trade B2 R2 Kermit\n\n23) Draw5PlayAll: Build G1 Draw5playall\n\n24) ts52: Build G2 Ts52\n\n25) Draw5PlayAll: Move Y1 Draw5playall G2\n\n26) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild G3 Gonzo\n\n27) Draw5PlayAll: Trade B2 Y2 G2\n\n28) ts52: T G2 Y2 Gonzo\n\n29) Draw5PlayAll: Move Y1 G2 Draw5playall\n\n30) ts52: Discover G1 Gonzo Y2 Bigbird\n\n31) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R2 Kermit\n\n33) Draw5PlayAll: Move R1 Draw5playall B2\n\n34) ts52: Move R2 Kermit B2\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 B2\nBuild Y1 G2\nBuild Y3 Draw5playall\n\n36) ts52: Build Y3 Gonzo\n\n37) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove G1 B2 Draw5playall\n\n38) ts52: Sacrifice G3 Gonzo\nBuild G3 Bigbird\nBuild R2 B2\nBuild R3 Kermit\n\n39) Draw5PlayAll: Sacrifice G3 B2\nBuild R3 B2\nBuild R3 G2\nBuild G3 Draw5playall\nCatastrophe B2 Red\n\n40) ts52: Trade G3 R3 Ts52\n\n41) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B2 G2\nBuild Y1 Draw5playall\n\n42) ts52: Build G3 Gonzo\n\tDraw5PlayAll: What is gonzo?\n\tts52: Gonzo the great! He's one of the Muppets. A Jim Henson character.\n\n43) Draw5PlayAll: Discover B1 G2 R1 R1\n\n44) ts52: Discover Y3 Gonzo R2 Elmo\n\tDraw5PlayAll: A lone peacemaker sets up camp at an unfamiliar place, ready for the burst of energy from home to terraform the planet.\n\n45) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B2 G2\nBuild B3 R1\n\n46) ts52: Sacrifice G3 Gonzo\nBuild B3 Kermit\nBuild G3 Gonzo\nBuild R2 Ts52\n\n47) Draw5PlayAll: Sacrifice Y1 G2\nDiscover B2 G2 Y1 Y1\n\n48) ts52: Move G2 Gonzo Elmo\n\n49) Draw5PlayAll: Move B2 Y1 Ts52\n\n50) ts52: Build Y1 Elmo\n\n51) Draw5PlayAll: Move Y1 Draw5playall G2\n\n52) ts52: Move B1 Kermit Bigbird\n\n53) Draw5PlayAll: Move Y1 G2 R1\n\n54) ts52: Attack B2 Ts52\n\n55) Draw5PlayAll: Move B3 R1 Ts52\n\n56) ts52: Attack B3 Ts52\n\n57) Draw5PlayAll: Move B1 R1 Ts52\nCatastrophe Ts52 Blue\n\n58) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild B1 Bigbird\nBuild B2 Bigbird\n\n59) Draw5PlayAll: Sacrifice Y2 G2\nMove R1 G2 Ts52\nMove R3 G2 Ts52\nCatastrophe Ts52 Red\n\n60) ts52: Move R3 Kermit Ts52\n\n61) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 R1\nBuild G3 Draw5playall\nPass\n\n62) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild R1 Kermit\nBuild R2 Ts52\n\n63) Draw5PlayAll: Trade G3 R3 Draw5playall\n\n64) ts52: Sacrifice G3 Bigbird\nBuild G3 Bigbird\nBuild G3 Elmo\nBuild R3 Kermit\n\n\tDraw5PlayAll: I knew it was bad to blow your B2 star without a plan to take out the Y3, but I had no choice really. I was just hoping that maybe you would mess up and I _would_ get a shot at your Y3.\n\tts52: :) Yeah, it's always risky blowing up half a homeworld before you have a plan for the other half. Good game!\n\tDraw5PlayAll: Was there anything else I could have done?\n\tts52: Not sure. At some point I need to spend time studying homeworlds end games.\n\nHomeworlds Online (SDG# 32996)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.22, Ended: 2017.9.6\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld Y3 B2 G3\n\tts52: Have a good game!\n\n2) Felix: Homeworld B1 R3 G3\n\n3) ts52: Build G1 Ts52\n\tFelix: Thanks, you too! This one is for the Homeworlds tournament on Facebook :) Good luck!\n\tts52: I see you send all your challenges at once. I screwed up my first one (forgot to make it unrated and the note about the tournament) d'oh!\n\n4) Felix: Build G1 Felix\n\tFelix: No worries. It will all be pretty laid back, I think :) I may have bitten off more than I can chew by challenging everyone at once, though... it's hard to focus on good strategy when I have 10 moves to make in 10 different games!\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Discover B2 Ts52 G1 Kermit\n\n10) Felix: Trade B2 Y2 Felix\n\n11) ts52: Build G1 Ts52\n\tFelix: I don't like the looks of this!\n\n12) Felix: Discover B1 Felix G2 Opus\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) Felix: Build Y1 Felix\n\n15) ts52: Build G1 Ts52\n\n16) Felix: Move Y2 Felix Opus\n\n17) ts52: Move Y1 Ts52 Kermit\n\n18) Felix: Build Y1 Opus\n\n19) ts52: Build Y2 Kermit\n\n20) Felix: Move Y1 Opus Kermit\n\n21) ts52: Trade Y1 R1 Kermit\n\n22) Felix: Build Y1 Kermit\n\n23) ts52: Build R1 Kermit\n\n24) Felix: S G3 Felix\nB Y2 Kermit\nB Y3 Opus\nB Y3 Felix\nC Kermit Yellow\n\n25) ts52: Trade R1 Y1 Kermit\n\n26) Felix: Trade Y3 R3 Opus\n\n27) ts52: Build G1 Ts52\n\n28) Felix: Move R3 Opus Kermit\n\n29) ts52: Build R1 Kermit\n\n30) Felix: Attack B2 Kermit\n\n31) ts52: Build R1 Kermit\nCatastrophe Kermit Red\n\n32) Felix: Build B2 Kermit\n\tFelix: Nice move!\n\n33) ts52: Discover G1 Ts52 Y1 Bigbird\n\tts52: Still hurts though. Well played.\n\n34) Felix: Trade B2 R2 Kermit\n\n35) ts52: T G1 R1 Ts52\n\n36) Felix: Attack Y1 Kermit\n\n37) ts52: Build G1 Ts52\n\n38) Felix: Trade Y3 G3 Felix\n\n39) ts52: Build G2 Bigbird\n\n40) Felix: Build Y2 Kermit\n\n41) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild G3 Ts52\n\n42) Felix: Sacrifice G3 Felix\nBuild Y2 Kermit\nBuild Y3 Opus\nBuild Y3 Felix\n\n43) ts52: Trade G3 R3 Ts52\n\n44) Felix: Build B2 Kermit\n\tFelix: Yellow versus green. In most lockouts like this, I'd rather control yellow than any other color, but we'll see how this shakes out!\n\tts52: You may be right. But at the very least, it's an interesting game. :)\n\n45) ts52: Move R3 Ts52 Kermit\n\n46) Felix: Sacrifice Y2 Kermit\nMove B2 Kermit Ts52\nMove B2 Kermit Ts52\nCatastrophe Ts52 Blue\n\n47) ts52: Attack Y2 Kermit\n\tts52: d'oh. saw it coming just a bit too late. this will be interesting....\n\n48) Felix: S Y3 Felix\nM Y3 Opus Ts52\nM Y2 Opus Ts52\nM Y1 Kermit Ts52\nC Ts52 Yellow\n\tFelix: I think I've made my calculations correctly.... fingers crossed!\n\n\tts52: I suspect you have. Well played.\n\tFelix: Thank you! That was a very fun and interesting one.\n\tts52: It was definitely fun and interesting. Well done.\n\nHomeworlds Online (SDG# 32994)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.22, Ended: 2017.9.6\nParticipants: Babamots (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\tBabamots: Thanks for getting so many challenges going! You'll fill out the game start form?\n\n2) Babamots: Homeworld B2 R1 G3\n\tFelix: No prob; thanks for organizing this! Yep, I just filled it out :)\n\n3) Felix: Build G1 Felix\n\n4) Babamots: Build G1 Babamots\n\n5) Felix: T G1 Y1 Felix\n\n6) Babamots: Build G1 Babamots\n\n7) Felix: Build Y1 Felix\n\n8) Babamots: Trade G1 Y1 Babamots\n\n9) Felix: Discover Y1 Felix G1 Bazoik\n\n10) Babamots: Build Y2 Babamots\n\tBabamots: Well, I don't like it but I'm not sure that I have anything better.\n\n11) Felix: Sacrifice G3 Felix\nBuild Y2 Bazoik\nBuild Y2 Felix\nBuild Y3 Felix\n\tFelix: It's definitely better than being locked out of yellow! But don't worry. You're not at too much of a disadvantage at the moment, I don't think. Just one step behind on the yellow economy.\n\n12) Babamots: Discover Y1 Babamots B3 Cardassia\n\n13) Felix: Sacrifice Y1 Felix\nMove Y2 Bazoik Cardassia\n\n14) Babamots: Sacrifice G3 Babamots\nBuild Y1 Cardassia\nBuild Y3 Cardassia\nBuild Y3 Babamots\nCatastrophe Cardassia Y\n\n15) Felix: Trade Y3 G3 Felix\n\tFelix: Ooh, that was clever. Nice move!\n\n16) Babamots: Build G1 Babamots\n\tBabamots: Thanks! I rather liked it.\n\n17) Felix: Build Y1 Bazoik\n\n18) Babamots: Discover G1 Babamots B3 Cardassia\n\n19) Felix: Move Y1 Bazoik Cardassia\n\n20) Babamots: Trade Y3 G3 Babamots\n\n21) Felix: Build Y1 Bazoik\n\n22) Babamots: Move Y2 Babamots Cardassia\n\n23) Felix: Sacrifice G3 Felix\nBuild Y2 Cardassia\nBuild Y3 Felix\nBuild Y3 Felix\n\n24) Babamots: Trade Y2 R2 Cardassia\n\tBabamots: I'm not sure why I thought moving my yellow out was such a good idea since that's exactly what I expected you to do.\n\n25) Felix: Sacrifice Y2 Cardassia\nMove Y3 Felix Bazoik\nMove Y3 Bazoik Cardassia\n\tFelix: Haha, good move in response though!\n\n26) Babamots: Attack Y1N Cardassia\n\n27) Felix: Trade Y2 R2 Felix\n\n28) Babamots: Sacrifice Y1 Cardassia\nMove R2 Cardassia Bazoik\n\n29) Felix: S Y1 Bazoik\nD Y1 Bazoik G3 Flemoid\n\n30) Babamots: Build G2 Babamots\n\n31) Felix: Sacrifice R2 Felix\nAttack G1 Cardassia\nPass\n\n32) Babamots: Trade G2 Y2 Babamots\n\n33) Felix: Build G2 Cardassia\n\n34) Babamots: Discover G1 Babamots B3 Ferenginar\n\tBabamots: I think I have a serious problem.\n\n35) Felix: Trade G1 R1 Cardassia\n\n36) Babamots: Build G1 Babamots\n\tFelix: Maybe! But I'm not in the clear yet.\n\tBabamots: Anything I can build you can build bigger. I can't build anything bigger than yoooooou...\n\n37) Felix: Build G2 Cardassia\n\n38) Babamots: Sacrifice G3 Babamots\nBuild G2 Ferenginar\nBuild G3 Ferenginar\nBuild G3 Babamots\n\tFelix: Hahahaha\n\n39) Felix: Move G2 Cardassia Babamots\n\n40) Babamots: Trade G1 B1 Babamots\n\n41) Felix: Sacrifice G2 Cardassia\nBuild G1 Babamots\nBuild G2 Babamots\nCatastrophe Babamots Green\n\n42) Babamots: Sacrifice Y2 Babamots\nMove G3 Ferenginar Babamots\nMove G1 Ferenginar Bazoik\n\tFelix: The ol' "warp and build." One of my favorite techniques! It's looking grim for the brave soldiers of Babamots. Best get that G3 home, stat! :)\n\tBabamots: Didn't think about the sacrifice! Never seen that one before. At least I saved the little guy.\n\n43) Felix: Move Y3 Cardassia Bazoik\n\n44) Babamots: Sacrifice G2 Ferenginar\nBuild G1 Bazoik\nBuild G2 Bazoik\nCatastrophe Bazoik G\n\n45) Felix: Build Y1 Flemoid\n\tBabamots: Nearly equalized :-).\n\tBabamots: Really, I should have let you sacrifice your r1 to take my r2 before doing that, but I was worried you would notice your peril and run away.\n\tBabamots: Suffice to say, I really enjoyed that move.\n\n46) Babamots: Build G1 Babamots\n\tFelix: That was a good move! We are pretty balanced out now...\n\n47) Felix: Trade Y3 G3 Felix\n\n48) Babamots: Trade G1 Y1 Babamots\n\n49) Felix: Discover Y1 Flemoid G1 Raggar\n\n50) Babamots: Build Y2 Babamots\n\n51) Felix: Build Y2 Raggar\n\n52) Babamots: Discover Y1 Babamots B3 Galorndon\n\n53) Felix: M Y2 Raggar Felix\n\n54) Babamots: Trade B1 R1 Babamots\n\n55) Felix: S G3 Felix\nB Y2 Flemoid\nB Y3 Raggar\nB Y3 Felix\n\n56) Babamots: Build Y3 Babamots\n\n57) Felix: Sacrifice Y2 Felix\nMove Y1 Flemoid Babamots\nMove Y2 Flemoid Babamots\nCatastrophe Babamots Yellow\n\n58) Babamots: Build G1 Babamots\n\n59) Felix: Move Y1 Raggar Felix\n\n60) Babamots: Build G1 Babamots\n\tBabamots: Aaaand I'm back to hoping you'll make a mistake.\n\n61) Felix: Trade Y3 G3 Felix\n\n62) Babamots: Trade G1 Y1 Babamots\n\tFelix: It's definitely possible! I've been known to make many :)\n\n63) Felix: Build Y2 Raggar\n\n64) Babamots: Build Y2 Babamots\n\n65) Felix: Move Y2 Raggar Cardassia\n\n66) Babamots: Discover G1 Babamots Y3 Vulcan\n\n67) Felix: Sacrifice G3 Felix\nBuild Y2 Cardassia\nBuild Y3 Felix\nBuild R2 Cardassia\n\n68) Babamots: Move R1 Babamots Vulcan\n\n69) Felix: Trade Y1 G1 Felix\n\n70) Babamots: Build R2 Vulcan\n\n71) Felix: Build G2 Felix\n\n72) Babamots: Build G2 Babamots\n\n73) Felix: Trade Y2 G2 Cardassia\n\n74) Babamots: Sacrifice G3 Babamots\nBuild G3 Vulcan\nBuild G3 Babamots\nBuild Y1 Galorndon\n\n75) Felix: B G3 Cardassia\n\n76) Babamots: Move G2 Babamots Cardassia\n\n77) Felix: Sacrifice Y2 Cardassia\nMove G3 Cardassia Babamots\nMove G2 Cardassia Babamots\n\n78) Babamots: Sacrifice R2 Vulcan\nAttack G3N Babamots\nAttack G2N Babamots\n\tFelix: Good move!\n\tBabamots: We'll see. It got a reaction anyway.\n\n79) Felix: Sacrifice Y3 Raggar\nDiscover G1 Felix G1 Raggar\nMove G1 Raggar Cardassia\nMove G1 Cardassia Babamots\nCatastrophe Babamots Green\n\n80) Babamots: Sacrifice R1 Vulcan\nAttack R2N Cardassia\n\tFelix: It sure did. And it hurt me quite a bit, too! But hopefully it hurt you slightly worse :)\n\tBabamots: I like this situation a little better than before my move, mostly since we're now even on large ships.\n\n81) Felix: Build Y2 Felix\n\n82) Babamots: Attack R1N Cardassia\n\tFelix: Yeah, I think I am actually worse off at the moment after you got my r2.\r\n\r\nIn an unrelated note, I finished my first game against wil and filled out the game end form, but it looks like the tournament table didn't update but still says the game is in progress. There was no place to enter the game number on the game end form. Is it something you just manually update, or do I need to do something else?\n\n83) Felix: Discover Y2 Felix G1 Glorfindel\n\tBabamots: The tournament table only looks the player names from the finish form. The table should be showing the winner. I'll investigate.\n\n84) Babamots: Trade Y1 G1 Babamots\n\tBabamots: Found the problem. Each form submission created a new row on the spreadsheet, and references to the top row were automatically changed to refer to the next row down (to the old empty cell). It's fixed now.\n\n85) Felix: B Y1 Glorfindel\n\n86) Babamots: Sacrifice Y2 Babamots\nMove Y1 Galorndon Glorfindel\nMove Y1 Galorndon Glorfindel\nCatastrophe Glorfindel Y\n\n87) Felix: Build G1 Felix\n\n88) Babamots: Move G3 Vulcan Babamots\n\tFelix: Man, nice one again. I can't get the edge I need on you!\n\n89) Felix: Discover G2 Felix B1 Glimdark\n\n90) Babamots: Discover G1 Vulcan B1 Betazed\n\n91) Felix: Build Y1 Felix\n\n92) Babamots: Trade R1 Y1 Cardassia\n\n93) Felix: Trade Y1 R1 Felix\n\n94) Babamots: Discover R2 Cardassia B1 Iconia\n\n95) Felix: Build Y1 Felix\n\n96) Babamots: Move Y1 Cardassia Iconia\n\n97) Felix: Move Y1 Felix Glimdark\n\n98) Babamots: Discover Y1 Iconia G3 Brekka\n\n99) Felix: Discover G2 Glimdark Y3 Rimworld\n\n100) Babamots: Sacrifice G3 Babamots\nBuild G2 Cardassia\nBuild G3 Babamots\nBuild G3 Betazed\n\n101) Felix: Move G1 Felix Glimdark\n\n102) Babamots: Trade G1 R1 Betazed\n\n103) Felix: S Y3 Felix\nM G1 Glimdark Rimworld\nM G1 Rimworld Babamots\nM G2 Rimworld Babamots\nC Babamots Green\n\tFelix: Good game! That was a fun one. You put up a heck of a fight with all those unexpected aggressive catastrophes on me. I like that aggressive play... loads of fun. Thanks for playing and setting up this tourney!\n\tBabamots: Looks like I missed something. I'll have to go back and see what happened.\n\tBabamots: Yeach, standard Bluebird. I was really looking forward to beating you. Maybe next time.\n\tFelix: You gave me a run for my money, for sure. Excellent play! I'm sure we'll meet again in the bracket, and you may take me down when it really counts!\n\tBabamots: I'm kicking myself pretty hard because I got up in material and then just got sloppy. Good luck in your other games! I hope I can make it into the bracket to face you again!\n\n\nHomeworlds Online (SDG# 32998)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.22, Ended: 2017.11.4\nParticipants: Felix (S), jeep (N)\nWinner: jeep\n\n1) jeep: H R2 B3 G3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) jeep: B G1 Jeep\n\tFelix: Hey, good luck and have fun :)\n\tjeep: Thanks! You too.\n\n4) Felix: Build G1 Felix\n\n5) jeep: T G1 Y1 Jeep\n\n6) Felix: Trade G1 R1 Felix\n\n7) jeep: Build Y1 Jeep\n\n8) Felix: Trade R1 Y1 Felix\n\n9) jeep: Build Y2 Jeep\n\tFelix: Oops. I made a mistake!\n\n10) Felix: B Y2 Felix\n\tjeep: :( That sucks. Not a tech error, I hope.\n\n11) jeep: Discover Y1 Jeep G1 Aaa\n\n12) Felix: Discover Y1 Felix B2 Rim\n\tFelix: Not at all, just a user error ;)\n\tFelix: I should have traded for yellow at the start, not red!\n\n13) jeep: Discover Y1 Jeep B1 Bbb\n\n14) Felix: Build G1 Felix\n\n15) jeep: Trade Y1 G1 Bbb\n\n16) Felix: Move G1 Felix Rim\n\tjeep: I expect that I will be playing slowly through the holiday.\n\n17) jeep: Build G2 Jeep\n\n18) Felix: B G2 Felix\n\n19) jeep: Sacrifice G3 Jeep\nBuild G2 Bbb\nBuild G3 Bbb\nBuild G3 Jeep\n\n20) Felix: Move G1 Rim Bbb\nCatastrophe Bbb Green\n\n21) jeep: Build G1 Jeep\n\n22) Felix: M G2 Felix Rim\n\n23) jeep: Discover G2 Jeep Y1 Shot\n\n24) Felix: Build G1 Felix\n\tFelix: Late response, but not a problem! Did you have a nice holiday?\n\n25) jeep: Sacrifice G3 Jeep\nBuild G2 Shot\nBuild G3 Jeep\nBuild G3 Shot\n\n26) Felix: M G2 Rim Shot\nC Shot Green\n\tjeep: It was pretty good. There has to be a better move than this, but it's the best I found.\n\n27) jeep: Build G2 Jeep\n\tFelix: It sort of just makes us break even ha\n\tjeep: Yeah, just a reset. I didn't see a way to do better.\n\n28) Felix: Move G1 Felix Rim\n\n29) jeep: Discover G2 Jeep B1 Wheel\n\n30) Felix: Build G2 Felix\n\n31) jeep: Trade G1 R1 Jeep\n\n32) Felix: Trade G2 R2 Felix\n\n33) jeep: Discover Y1 Aaa G2 Stage\n\n34) Felix: Build Y1 Rim\n\n35) jeep: Build G1 Jeep\n\n36) Felix: D Y1 Rim B1 Soap\n\n37) jeep: Build Y2 Stage\n\n38) Felix: Sacrifice G3 Felix\nBuild Y3 Soap\nBuild Y3 Rim\nBuild Y3 Felix\n\n39) jeep: Sacrifice Y2 Jeep\nMove Y1 Stage Felix\nMove Y2 Stage Felix\nCatastrophe Felix Yellow\n\n40) Felix: Move Y3 Rim Felix\n\tjeep: I clearly missed that. :(\n\n41) jeep: Build G1 Wheel\n\tFelix: Huh.... so did I!\n\tjeep: You still game out ahead...\n\n42) Felix: Build G2 Rim\n\n43) jeep: Trade G2 Y2 Wheel\n\n44) Felix: Move G1 Rim Soap\n\n45) jeep: Trade G1 Y1 Jeep\n\n46) Felix: T Y1 R1 Soap\n\n47) jeep: Move R1 Jeep Wheel\n\n48) Felix: T R2 G2 Felix\n\n49) jeep: Build R2 Wheel\n\n50) Felix: Build R2 Soap\n\n51) jeep: Trade R2 B2 Wheel\n\n52) Felix: Move R2 Soap Rim\n\n53) jeep: Build B1 Wheel\n\n54) Felix: Build R2 Soap\n\n55) jeep: Discover B1 Wheel Y2 Box\n\tjeep: Yeah, this has been a losing battle for a while... I don't know if there is a way to recover...\n\n56) Felix: Move R2 Soap Box\n\n57) jeep: Build R3 Wheel\n\tFelix: Never give up! I've made really dumb mistakes when I've been in better positions than this.\n\n58) Felix: Attack B1 Box\n\n59) jeep: Discover G1 Wheel R3 Derby\n\n60) Felix: Build R3 Soap\n\n61) jeep: Move R3 Wheel Rim\n\n62) Felix: Discover R2 Rim Y1 Rom\n\n63) jeep: Attack Y1 Rim\n\n64) Felix: Sacrifice G2 Rim\nBuild Y2 Soap\nBuild B2 Box\n\n65) jeep: Discover B2 Wheel B3 Hat\n\n66) Felix: Build Y3 Felix\n\n67) jeep: Sacrifice G1 Derby\nBuild R3 Rim\n\n68) Felix: Sacrifice Y2 Soap\nMove R1 Soap Rim\nMove R2 Rom Rim\nCatastrophe Rim Red\n\n69) jeep: Trade B2 R2 Hat\n\tjeep: Ugh, now I remember why I discarded that play the first time I looked at the game.\n\n70) Felix: Move R3 Soap Hat\n\tFelix: It could be a lot worse! You're really doing quite well defensively. I can't get the edge I need to attack.\n\n71) jeep: Sacrifice Y1 Rim\nDiscover R2 Hat Y2 Mover\n\n72) Felix: Sacrifice G2 Felix\nBuild R1 Hat\nBuild R3 Box\n\n73) jeep: Build G1 Jeep\n\n74) Felix: Move R3 Box Soap\n\n75) jeep: Sacrifice G1 Jeep\nBuild R3 Wheel\n\n76) Felix: Discover B2 Box G1 Slip\n\n77) jeep: Move R3 Wheel Box\n\tjeep: I will be withdrawing from the tournament for personal reasons. I would like to continue this game if you are willing.\n\n\tFelix: Sure thing! I always love to finish a game.\n\tFelix: Oops. Looks like I let time get away from me! Sorry.\n\nHomeworlds Online (SDG# 33001)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.22, Ended: 2017.10.4\nParticipants: Grosseteste (S), jeep (N)\nWinner: jeep\n\n1) jeep: H B3 R2 G3\n\n2) Grosseteste: Homeworld Y3 B1 G3\n\n3) jeep: B G1 Jeep\n\n4) Grosseteste: B G1 Grosseteste\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Grosseteste: T G1 B1 Grosseteste\n\n7) jeep: B Y1 Jeep\n\n8) Grosseteste: Build B1 Grosseteste\n\n9) jeep: Build Y1 Jeep\n\n10) Grosseteste: Discover B1 Grosseteste G2 Charlie\n\n11) jeep: Discover Y1 Jeep G1 Brown\n\n12) Grosseteste: Build B2 Grosseteste\n\n13) jeep: Build Y2 Brown\n\n14) Grosseteste: T B1 R1 Grosseteste\n\n15) jeep: Discover Y2 Brown B3 Snoopy\n\n16) Grosseteste: Build B1 Charlie\n\n17) jeep: Build G1 Jeep\n\n18) Grosseteste: Build B2 Charlie\n\n19) jeep: Build Y2 Brown\n\n20) Grosseteste: T B2 Y2 Charlie\n\tjeep: I expect to be playing slowly through the holiday.\n\n21) jeep: Sacrifice G3 Jeep\nBuild Y3 Jeep\nBuild Y3 Snoopy\nBuild G1 Jeep\n\tGrosseteste: No worries, I've got stuff going on myself\n\n22) Grosseteste: Move Y2 Charlie Brown\n\n23) jeep: Move Y1 Jeep Brown\nCatastrophe Brown Yellow\n\n24) Grosseteste: B B2 Charlie\n\n25) jeep: Trade Y3 B3 Snoopy\n\n26) Grosseteste: S B2 Grosseteste\nT B1 Y1 Charlie\nT B2 Y2 Charlie\n\n27) jeep: Discover G1 Jeep Y1 Bravo\n\n28) Grosseteste: D Y1 Charlie G3 Rerun\n\n29) jeep: Discover G1 Bravo Y3 First\n\n30) Grosseteste: Build B1 Charlie\n\n31) jeep: Build G1 First\n\n32) Grosseteste: S Y2 Charlie\nM B1 Charlie Snoopy\nM B1 Charlie Snoopy\nC Snoopy Blue\n\n33) jeep: Discover G1 First B2 Prequel\n\n34) Grosseteste: B G2 Grosseteste\n\n35) jeep: Build G2 Prequel\n\n36) Grosseteste: Trade G2 Y2 Grosseteste\n\n37) jeep: Trade G2 Y2 Prequel\n\n\nHomeworlds Online (SDG# 32993)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.22, Ended: 2017.8.31\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 Y1 G3\n\twil: This a round Robin game?\n\n2) Felix: Homeworld R2 B3 G3\n\tFelix: Yes indeed! Good luck and have fun :)\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\twil: You as well, this should be interesting.\n\n5) wil: Trade G1 B1 Wil\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: T B1 Y1 Wil\n\n8) Felix: Build Y2 Felix\n\twil: Such a nice start I got off to!\n\n9) wil: B Y2 Wil\n\tFelix: Better to get your mistakes out early than in the late game!\n\n10) Felix: Discover Y1 Felix B1 Out\n\twil: That makes sense, not.\n\n11) wil: D Y1 Wil G3 G3\n\n12) Felix: Build G1 Felix\n\n13) wil: B G1 Wil\n\tDraw5PlayAll: So this is that tournament where you play 7 rounds followed by a double elimination? I think it will be at least 18 months and maybe 2 years before it is over. And the ladder is already annoying enough!\n\twil: Seriously? Just cause you don't wanna play you wanna annoy us during our game? Comment all you want on games you are involved in...but I am formally asking younto refrain from butting in and commenting on my games you are not involved in. Is this too much to ask?\n\twil: Your intrusions in my games like this fits the definition of annoying.\n\n14) Felix: Trade G1 B1 Felix\n\n15) wil: D G1 Wil Y3 Y3\n\tFelix: @Draw5 and even if it does take that long, that just means victory will be all the sweeter.\n\n16) Felix: Build B1 Felix\n\n17) wil: T Y2 B2 Wil\n\n18) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y2 Felix\nBuild Y3 Felix\n\twil: Lol, absolutely agree Felix... Why would I care his long it takes... My goal here is to play games... While scoring well in a tourney or being on top of the ladder provides some ego gratification.... The real goal is to simply play games!!\n\n19) wil: B Y3 G3\n\n20) Felix: Sacrifice Y2 Felix\nMove Y2 Out G3\nMove Y1 Out G3\nCatastrophe G3 Yellow\n\n21) wil: Build G1 Wil\n\n22) Felix: Trade Y3 G3 Felix\n\tFelix: Forgot to catastrophe\n\twil: no worries...the back up button is like moving the coin...first you need to see the repercussions of your move...\n\n23) wil: T G1 Y1 Wil\n\n24) Felix: Discover B1 Felix G1 R2\n\n25) wil: M B2 Wil Y3\n\n26) Felix: Build Y1 Felix\n\n27) wil: B Y2 Wil\n\n28) Felix: Move Y1 Felix R2\n\n29) wil: D Y1 Wil G3 G3\n\n30) Felix: Build Y2 R2\n\n31) wil: B Y3 G3\n\n32) Felix: B Y3 Felix\n\n33) wil: B G1 Wil\n\n34) Felix: S Y2 Felix\nM Y1 R2 G3\nM B1 R2 G3\n\n35) wil: D Y3 G3 B1 B1\n\n36) Felix: S Y2 R2\nM Y1 G3 Wil\nM B1 G3 Wil\n\n37) wil: T Y2 R2 Wil\n\n38) Felix: S G3 Felix\nB B2 Wil\nB B3 Wil\nB Y2 Wil\nC Wil Blue\n\n39) wil: S B2 Y3\nP\nT R2 Y2 Wil\nC Wil Y\n\twil: Nice!\n\n\tFelix: Thanks! I've been hoping for the opportunity to try that for a few turns, but you kept fouling my plans.\n\twil: Nice game.... That was great\n\tFelix: Indeed, a very fun one! I'll hopefully see you in the bracket round, whenever that finally comes about :)\n\nHomeworlds Online (SDG# 33002)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.23, Ended: 2017.9.15\nParticipants: Grosseteste (S), shoejitsu (N)\nWinner: Grosseteste\n\n1) shoejitsu: Homeworld G2 R1 B3\n\n2) Grosseteste: Homeworld B1 Y3 G3\n\n3) shoejitsu: Build B1 Shoejitsu\n\tGrosseteste: Very interesting starting setup, good luck!\n\n4) Grosseteste: Build G1 Grosseteste\n\n5) shoejitsu: Build B1 Shoejitsu\n\tshoejitsu: hah yep. good luck and have fun!\n\n6) Grosseteste: B G1 Grosseteste\n\n7) shoejitsu: Trade B1 G1 Shoejitsu\n\n8) Grosseteste: Discover G1 Grosseteste B2 Charlie\n\n9) shoejitsu: Build G2 Shoejitsu\n\n10) Grosseteste: S G3 Grosseteste\nB G2 Charlie\nB G3 Charlie\nB G3 Grosseteste\n\n11) shoejitsu: Sacrifice G2 Shoejitsu\nBuild B1 Shoejitsu\nBuild G2 Shoejitsu\n\n12) Grosseteste: Trade G3 Y3 Charlie\n\n13) shoejitsu: Trade B1 Y1 Shoejitsu\n\n14) Grosseteste: S Y3 Charlie\nD G1 Charlie R3 Lucy\nM G1 Lucy Shoejitsu\nD G1 Grosseteste B2 Rerun\nC Shoejitsu Green\n\n15) shoejitsu: Trade B1 G1 Shoejitsu\n\tshoejitsu: ouch... nice move\n\n16) Grosseteste: B G1 Grosseteste\n\n17) shoejitsu: Discover G1 Shoejitsu R3 Indigo\n\n18) Grosseteste: Build G2 Rerun\n\n19) shoejitsu: Build G2 Indigo\n\n20) Grosseteste: S G3 Grosseteste\nB G3 Grosseteste\nB G3 Grosseteste\nB G3 Charlie\n\n21) shoejitsu: Move Y1 Shoejitsu Indigo\n\n22) Grosseteste: T G3 B3 Grosseteste\n\n23) shoejitsu: Trade B3 G3 Shoejitsu\n\n24) Grosseteste: T G3 Y3 Grosseteste\n\n25) shoejitsu: Move G2 Indigo Charlie\n\n26) Grosseteste: S Y3 Grosseteste\nM G1 Rerun Shoejitsu\nM G2 Rerun Shoejitsu\nM G2 Charlie Shoejitsu\nCatastrophe Shoejitsu Green\n\tshoejitsu: idk dude\n\tGrosseteste: Thanks for the game!\n\tshoejitsu: thanks and good luck!\n\n\nHomeworlds Online (SDG# 32997)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.23, Ended: 2017.9.12\nParticipants: Felix (S), shoejitsu (N)\nWinner: Felix\n\n1) shoejitsu: Homeworld G3 Y2 B3\n\n2) Felix: H R1 B3 G3\n\n3) shoejitsu: Build B1 Shoejitsu\n\n4) Felix: Build G1 Felix\n\tFelix: Have a good game!\n\n5) shoejitsu: Build B1 Shoejitsu\n\tshoejitsu: have fun!\n\n6) Felix: Trade G1 B1 Felix\n\n7) shoejitsu: Trade B1 G1 Shoejitsu\n\n8) Felix: Build G1 Felix\n\n9) shoejitsu: Discover G1 Shoejitsu B1 Prime\n\n10) Felix: T G1 Y1 Felix\n\n11) shoejitsu: Build B2 Shoejitsu\n\n12) Felix: Build B2 Felix\n\n13) shoejitsu: Move B1 Shoejitsu Prime\n\n14) Felix: Discover B1 Felix G2 Out\n\n15) shoejitsu: Build G1 Prime\n\n16) Felix: Sacrifice G3 Felix\nBuild B2 Out\nBuild B3 Felix\nBuild Y1 Felix\n\n17) shoejitsu: Trade G1 Y1 Prime\n\n18) Felix: Trade B2 Y2 Out\n\n19) shoejitsu: Discover B1 Prime Y2 Dot\n\n20) Felix: Trade B2 G2 Felix\n\n21) shoejitsu: Build G1 Prime\n\n22) Felix: Sacrifice Y2 Out\nMove B1 Out Prime\nMove B1 Prime Shoejitsu\n\n23) shoejitsu: Trade B3 R3 Shoejitsu\n\n24) Felix: Build B2 Shoejitsu\n\n25) shoejitsu: Trade B2 G2 Shoejitsu\n\n26) Felix: Trade B1 G1 Shoejitsu\n\n27) shoejitsu: Attack G1S Shoejitsu\n\n28) Felix: T B2 G2 Shoejitsu\nC Shoejitsu Green\n\n29) shoejitsu: Move G1 Prime Dot\n\n30) Felix: Discover Y1 Felix G2 Out\n\n31) shoejitsu: Build Y2 Prime\n\n32) Felix: Sacrifice G2 Felix\nBuild Y3 Felix\nBuild Y3 Out\n\n33) shoejitsu: Trade G1 B1 Dot\n\n34) Felix: Move Y1 Felix Shoejitsu\n\n35) shoejitsu: Sacrifice Y2 Prime\nMove B1 Dot Felix\nMove B1 Dot Felix\nCatastrophe Felix Blue\n\n36) Felix: Discover Y1 Out R1 In\n\n37) shoejitsu: Build Y2 Prime\n\n38) Felix: Build Y2 Out\n\n39) shoejitsu: Attack Y1 Shoejitsu\n\tFelix: It's gonna be close!\n\tshoejitsu: my nails are already chewed down to the stubs... XD\n\n40) Felix: Sacrifice Y3 Out\nMove Y2 Out In\nMove Y1 In Shoejitsu\nMove Y2 In Shoejitsu\nCatastrophe Shoejitsu Yellow\n\n\tshoejitsu: yep... i noticed your move a bit too late. great game felix!\n\tFelix: Good game! Very fun, with a tense ending :)\n\nHomeworlds Online (SDG# 32995)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.23, Ended: 2017.9.11\nParticipants: fogus (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) fogus: Homeworld Y1 B2 G3\n\tFelix: Hey fogus! Good luck and have fun :)\n\n3) Felix: Build G1 Felix\n\tfogus: thanks, you too!\n\n4) fogus: Build G1 Fogus\n\n5) Felix: Trade G1 Y1 Felix\n\n6) fogus: Build G1 Fogus\n\n7) Felix: Build Y1 Felix\n\n8) fogus: Trade G3 Y3 Fogus\n\n9) Felix: Discover Y1 Felix B1 Out\n\n10) fogus: Build Y2 Fogus\n\n11) Felix: Build Y2 Felix\n\n12) fogus: Discover Y2 Fogus G3 Cribbage\n\n13) Felix: Discover Y1 Felix G1 Opus\n\n14) fogus: Build G2 Fogus\n\n15) Felix: Sacrifice G3 Felix\nBuild Y2 Opus\nBuild Y3 Out\nBuild Y3 Felix\n\n16) fogus: Move Y2 Cribbage Out\n\n17) Felix: D Y1 Out R3 Brink\n\n\tFelix: That's a shame! Do you want to rematch, or just take the loss?\n\nHomeworlds Online (SDG# 32999)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.23, Ended: 2017.9.9\nParticipants: Babamots (S), fogus (N)\nWinner: Babamots\n\n1) fogus: Homeworld Y1 B2 G3\n\n2) Babamots: Homeworld B3 R1 G3\n\n3) fogus: Build G1 Fogus\n\n4) Babamots: Build G1 Babamots\n\n5) fogus: Trade G3 R3 Fogus\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) fogus: Build G1 Fogus\n\n8) Babamots: Build Y1 Babamots\n\n9) fogus: Trade R3 Y3 Fogus\n\n10) Babamots: Discover Y1 Babamots G2 Romulus\n\n11) fogus: Build Y2 Fogus\n\n12) Babamots: Build Y2 Romulus\n\n13) fogus: Discover Y2 Fogus G3 Piquet\n\n14) Babamots: Discover Y1 Romulus B3 Iconia\n\n15) fogus: Trade G1 B1 Fogus\n\n16) Babamots: Sacrifice G3 Babamots\nBuild Y2 Romulus\nBuild Y3 Babamots\nBuild Y3 Iconia\n\n\nHomeworlds Online (SDG# 33011)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.23, Ended: 2017.9.21\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld Y2 B1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\twil: tourney game?\n\tts52: Yes. At least that was my intent.\n\n3) wil: B G1 Wil\n\twil: So there is some challenge page you as the initiator fill out eh?\n\n4) ts52: Build G1 Ts52\n\twil: Good luck!\n\tts52: There is. I filled out the form (as the challenger I'm supposed to) here: https://docs.google.com/forms/d/e/1FAIpQLSdk1Fe7kzk_3jtdslPS2npk2O9aPUxnJY2mps6se-J8s8k0Ew/viewform?usp=sf_link \n\n5) wil: T G1 B1 Wil\n\tts52: Good luck to you too.\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: B B2 Wil\n\n8) ts52: Discover B1 Ts52 G1 Kermit\n\n9) wil: D B2 Wil G3 G3\n\n10) ts52: Build G1 Ts52\n\n11) wil: B G1 Wil\n\n12) ts52: Build G2 Ts52\n\n13) wil: B G2 Wil\n\n14) ts52: Trade G2 Y2 Ts52\n\n15) wil: D G2 Wil Y3 Y3\n\n16) ts52: Build G2 Ts52\n\n17) wil: D B1 Wil Y3 Why3\n\n18) ts52: Discover G1 Ts52 Y1 Bigbird\n\n19) wil: T G1 R1 Wil\n\n20) ts52: Trade G2 R2 Ts52\n\n21) wil: B R1 Wil\n\n22) ts52: Move Y2 Ts52 Kermit\n\n23) wil: T R1 Y1 Wil\n\n24) ts52: B G1 Ts52\n\n25) wil: M Y1 Wil G3\n\n26) ts52: B G2 Bigbird\n\n27) wil: B G2 Wil\n\n28) ts52: Build R1 Ts52\n\n29) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB R2 Wil\n\n30) ts52: Move R1 Ts52 Kermit\n\n31) wil: T R2 Y2 Wil\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\nBuild R2 Kermit\n\n33) wil: M R1 Wil G3\n\n34) ts52: Move R2 Kermit Why3\n\n35) wil: S G3 Wil\nB G3 Wil\nB B2 G3\nB B3 Why3\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Kermit\nBuild B3 Kermit\n\n37) wil: M B1 Why3 Kermit\nC Kermit B\n\n38) ts52: Trade G1 B1 Ts52\n\n39) wil: D B2 G3 G1 G1\n\n40) ts52: Move B1 Ts52 Bigbird\n\n41) wil: S R1 G3\nA R2 Why3\n\n42) ts52: Move G1 Bigbird Ts52\n\n43) wil: M B3 Why3 Bigbird\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Bigbird\nBuild B3 Bigbird\nCatastrophe Bigbird Blue\n\n45) wil: S G3 Wil\nB B1 G1\nB B1 G3\nB G3 Wil\n\n46) ts52: Build R1 Ts52\n\n47) wil: S G3 Wil\nB G3 Wil\nB B3 G3\nB B3 G1\n\n48) ts52: Move R1 Ts52 Bigbird\n\n49) wil: S B2 G3\nT B3 R3 G1\nT B3 R3 G3\n\n50) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Bigbird\nBuild R3 Kermit\n\n51) wil: S G2 Y3\nB Y3 G3\nB B2 G1\n\n52) ts52: Discover Y2 Kermit B3 Gonzo\n\n53) wil:\nB B3 G3\n\n54) ts52: Move G2 Bigbird Gonzo\n\n55) wil: S Y1 G3\nM R3 G1 Gonzo\n\n56) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild Y1 Gonzo\nBuild G3 Ts52\n\n57) wil: A Y2 Gonzo\n\twil: Dang it....all power, no clear path to closure\n\n58) ts52: M G2 Gonzo Wil\n\n59) wil: S R3 G3\nA G2 Wil\nA Y1 Gonzo\nA G2 Gonzo\n\n60) ts52: Build R3 Ts52\n\n61) wil: M G2 Wil Why3\n\n62) ts52: Move R3 Kermit Why3\n\n63) wil: S Y2 Gonzo\nM G2 Why3 Kermit\nM R2 Why3 Kermit\n\n64) ts52: Move R3 Ts52 Kermit\n\n65) wil: S Y2 Wil\nM R1 Wil Why3\nM R1 Why3 Kermit\nC Kermit R\n\n66) ts52: Move R3 Why3 G1\n\n67) wil: B B3 G3\n\n68) ts52: Attack B2 G1\n\n69) wil: M B1 G3 G1\nC G1 B\n\n70) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild R1 G1\n\n71) wil: S G2 Kermit\nB Y2 G3\nB Y3 Gonzo\n\n72) ts52: Build R1 Ts52\n\n73) wil: S Y2 G3\nM B3 G3 Bigbird\nM B3 G3 Kermit\n\n74) ts52: Sacrifice Y2 Kermit\nDiscover R2 Bigbird B2 Grover\nMove R1 Bigbird Grover\n\n75) wil: B R2 Gonzo\n\n76) ts52: Move Y1 Kermit Grover\n\n77) wil: B Y2 G3\n\n78) ts52: Trade R2 G2 Grover\n\n79) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B1 Bigbird\nBuild B1 Kermit\n\n80) ts52: Build Y2 Grover\n\twil: I cannot.recall specifically avoiding creating the factory for so long in a game\r\n\n\n81) wil: Sacrifice Y3 G3\nMove Y1 Gonzo Kermit\nMove Y2 G3 Kermit\nMove R2 Gonzo Wil\n\n82) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild Y3 Grover\n\n83) wil: Move Y1 Kermit Grover\nCatastrophe Grover Y\n\n84) ts52: Trade G3 Y3 Grover\n\n85) wil: S G3 Wil\nB G3 Wil\nB G3 Gonzo\nB B2 Bigbird\n\n86) ts52: Build Y1 Grover\n\n87) wil: S G3 Wil\nB Y1 Gonzo\nB Y2 Kermit\nB G3 Wil\n\n88) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R3 Grover\n\n89) wil: M B1 Bigbird Ts52\n\n90) ts52: Move Y3 Grover Kermit\n\n91) wil: S Y2 Kermit\nM Y2 Kermit Ts52\nM B3 Kermit Ts52\n\n92) ts52: Attack Y2 Ts52\n\n93) wil: S R3 Gonzo\nA G3 Ts52\nA R2 Ts52\nA R2 Ts52\n\n94) ts52: Sacrifice Y3 Kermit\nMove R1 G1 Ts52\nMove G2 Grover Kermit\nMove G2 Kermit Ts52\nCatastrophe Ts52 Red\n\twil: Folly or not.. I am committed\n\n95) wil: S Y3 Gonzo\nM B2 Bigbird Ts52\nC Ts52 B\nM G2 Wil Ts52\nC Ts52 G\nM B3 Bigbird Ts52\n\tts52: Interesting. I didn't expect the slow kill.\n\n96) ts52: Sacrifice Y2 Ts52\nMove R3 Grover Ts52\nMove R3 G1 Ts52\n\twil: It was sort of a wishbone offense... I didn't have enough for the full frontal attack\n\tts52: Wow. Well played. I was so focused on loosing by catastrophe, I failed to take raw capture into account.\n\n97) wil: S R2 Wil\nA R3 Ts52\nA R3 Ts52\n\n\twil: IRL you always have been able ... Aaron fixed this a few (6?) Months ago or so...\n\twil: He left in the no destroying yourself to prevent accidents...even thou IRL ark moments are a thing\n\twil: Now the question is is your move (doesn't change this game) acceptable...is pulling out the y3 abandoning your hw? Or is the action instantaneous?\n\twil: Quite the game! \n\tts52: Indeed. Thanks for the game! I look forward to a re-match.\n\tts52: And yes, you can abandon your homeworld during your turn, so long as you end your turn with a ship in your homeworld, you're good.\n\nHomeworlds Online (SDG# 32987)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.23, Ended: 2017.9.1\nParticipants: eliscinsky (S), Remneb (N)\nWinner: Remneb\n\n1) Remneb: Homeworld R1 B2 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\n3) Remneb: Build G1 Remneb\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Remneb: Build G1 Remneb\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) Remneb: Trade G1 R1 Remneb\n\n10) eliscinsky: Discover Y1 Eliscinsky R3 Proto\n\n11) Remneb: Build R2 Remneb\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) Remneb: Trade R2 Y2 Remneb\n\n14) eliscinsky: Trade G1 Y1 Eliscinsky\n\n15) Remneb: Build G1 Remneb\n\n16) eliscinsky: Build G1 Eliscinsky\n\n17) Remneb: Sacrifice Y2 Remneb\nMove G1 Remneb Proto\nMove G1 Proto Eliscinsky\nCatastrophe Eliscinsky G\n\n18) eliscinsky: Trade Y1 G1 Eliscinsky\n\n19) Remneb: Build R2 Remneb\n\teliscinsky: @Remneb nice move, got me on that on!\n\tRemneb: :)\r\n\n\n20) eliscinsky: Build G1 Eliscinsky\n\n21) Remneb: Discover R2 Remneb Y3 Trump\n\n22) eliscinsky: Trade G1 B1 Eliscinsky\n\n23) Remneb: Move R2 Trump Eliscinsky\n\n24) eliscinsky: Build G1 Eliscinsky\n\n25) Remneb: Attack G1 Eliscinsky\n\n26) eliscinsky: Build G1 Eliscinsky\n\n27) Remneb: Attack G1 Eliscinsky\n\n28) eliscinsky: Build G2 Eliscinsky\n\n29) Remneb: Catastrophe Eliscinsky G\nAttack B1 Eliscinsky\n\tRemneb: Thanks for the game.\n\teliscinsky: It was fun, a real learning experience for me.\n\tRemneb: It take time and many games to understand all parts of that game.\n\n\nHomeworlds Online (SDG# 33006)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.23, Ended: 2017.9.10\nParticipants: Remneb (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) Remneb: Homeworld B2 R1 G3\n\tFelix: Hey, good luck and have fun :)\n\n3) Felix: Build G1 Felix\n\tRemneb: Thanks. Have a good game !\n\n4) Remneb: Build G1 Remneb\n\n5) Felix: Trade G1 R1 Felix\n\n6) Remneb: Trade G1 R1 Remneb\n\n7) Felix: Build R2 Felix\n\n8) Remneb: Build G1 Remneb\n\n9) Felix: Trade R2 Y2 Felix\n\n10) Remneb: Trade G1 Y1 Remneb\n\n11) Felix: B R2 Felix\n\n12) Remneb: Build R2 Remneb\n\n13) Felix: Discover R2 Felix G1 Out\n\n14) Remneb: Discover R2 Remneb Y3 Wotan\n\n15) Felix: Build R3 Felix\n\n16) Remneb: Discover R1 Remneb G3 Gort\n\n17) Felix: Build R3 Out\n\n18) Remneb: Build R3 Gort\n\n19) Felix: Build Y1 Felix\n\n20) Remneb: Build G1 Remneb\n\n21) Felix: Move Y1 Felix Out\n\n22) Remneb: Move Y1 Remneb Gort\n\n23) Felix: T R1 B1 Felix\n\n24) Remneb: Trade G1 Y1 Remneb\n\n25) Felix: Move B1 Felix Out\n\n26) Remneb: Build Y2 Remneb\n\n27) Felix: Trade R3 Y3 Out\n\n28) Remneb: Move Y1 Remneb Gort\n\n29) Felix: B B1 Out\n\n30) Remneb: Discover Y1 Gort G1 Orel\n\n31) Felix: M R3 Felix Orel\n\n32) Remneb: Discover Y1 Orel G2 Proton\n\n33) Felix: Discover B1 Out Y3 In\n\n34) Remneb: Build Y2 Gort\n\n35) Felix: Build G1 Felix\n\n36) Remneb: Build G2 Remneb\n\n37) Felix: Build B1 Out\n\n38) Remneb: Sacrifice Y2 Remneb\nMove Y1 Proton Out\nMove Y1 Gort Out\nCatastrophe Out Y\n\tFelix: So many ships and systems!\n\tFelix: So many ships and systems!\n\n39) Felix: Trade B1 Y1 Out\n\tRemneb: Yes...i don't realy know what to do !\r\n\n\n40) Remneb: Trade G2 Y2 Remneb\n\n41) Felix: Discover G1 Felix B1 Ent\n\n42) Remneb: Build G2 Remneb\n\n43) Felix: Build G2 Felix\n\n44) Remneb: Move G2 Remneb Gort\n\n45) Felix: Sacrifice G3 Felix\nBuild G2 Ent\nBuild G3 Felix\nBuild B2 In\n\n46) Remneb: Discover G2 Gort Y1 Mud\n\n47) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Felix\nBuild Y3 Out\n\n48) Remneb: Move R3 Gort Ent\n\n49) Felix: S G2 Ent\nB B2 In\nB B3 Out\n\n50) Remneb: Attack G1 Ent\n\n51) Felix: Sacrifice Y1 Out\nMove R3 Orel Gort\n\n52) Remneb: Sacrifice Y2 Gort\nMove G1 Ent Felix\nMove G2 Mud Felix\nCatastrophe Felix G\n\n53) Felix: Move B3 Out Felix\n\n54) Remneb: Sacrifice Y2 Remneb\nMove R3 Ent In\nDiscover R1 Gort Y1 Pawn\n\n55) Felix: Sacrifice Y3 Out\nMove B1 In Remneb\nMove B2 In Remneb\nMove B2 In Remneb\nCatastrophe Remneb Blue\n\n56) Remneb: Move R3 In Remneb\n\n57) Felix: Sacrifice Y2 Felix\nMove R3 Gort Remneb\nDiscover R2 Out Y2 In\n\n\tRemneb: Well done. Thanks for the game.\n\tFelix: Thank you! Great game!\n\nHomeworlds Online (SDG# 33018)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.24, Ended: 2017.9.9\nParticipants: Babamots (S), bhorner (N)\nWinner: Babamots\n\n1) bhorner: Homeworld B2 R1 G3\n\tBabamots: Thanks for joining the tournament! Good luck!\n\n2) Babamots: Homeworld Y3 B1 G3\n\tbhorner: Thanks for organizing, good luck to you too! First goal is to win more games than the bottom 4. :)\n\n3) bhorner: B G1 Bhorner\n\n4) Babamots: Build G1 Babamots\n\n5) bhorner: Trade G1 Y1 Bhorner\n\n6) Babamots: Discover G1 Babamots B2 Bajor\n\n7) bhorner: Build G1 Bhorner\n\n8) Babamots: Build G1 Babamots\n\n9) bhorner: B G2 Bhorner\n\n10) Babamots: Sacrifice G3 Babamots\nBuild G2 Bajor\nBuild G2 Bajor\nBuild G3 Babamots\n\n11) bhorner: Discover G2 Bhorner G3 Xmas\n\n12) Babamots: Trade G2 Y2 Bajor\n\n13) bhorner: Discover G1 Bhorner B3 Grover\n\n14) Babamots: Trade G1 R1 Bajor\n\n15) bhorner: Trade G1 R1 Grover\n\n16) Babamots: Move G2 Bajor Grover\n\n17) bhorner: Build Y1 Bhorner\n\n18) Babamots: Sacrifice R1 Bajor\nAttack R1N Grover\n\tbhorner: It seems like it's not going well, it doesn't seem like that should be possible this early!\n\tbhorner: Do you know openings? Are you kind of "on book" at this point in the game? (I don't know what the larger culture of this game is like. :) )\n\tBabamots: I don't know that there's anything standard after the first for moves or so while you obviously have to build and diversify. I'm afraid it was a mistake to leave the medium and large greens so available earlier. That's what let me surge ahead. \n\n19) bhorner: Build G1 Bhorner\n\tbhorner: Yes, I see. I thought that you wouldn't be able to go ahead because you would be forced to let me go ahead further... but I was wrong. :)\n\n20) Babamots: Sacrifice G3 Babamots\nBuild G1 Grover\nBuild G2 Babamots\nBuild G3 Babamots\n\n21) bhorner: Discover G1 Bhorner B3 Berry\n\n22) Babamots: Trade G1 Y1 Grover\n\n23) bhorner: Discover Y1 Bhorner Y3 Big_bird\n\n24) Babamots: Sacrifice G2 Babamots\nBuild G1 Grover\nBuild Y2 Grover\n\n25) bhorner: Trade G1 R1 Berry\n\n26) Babamots: Build R2 Grover\n\tbhorner: ug\n\n27) bhorner: B Y2 Bhorner\n\n28) Babamots: Sacrifice G1 Grover\nBuild Y3 Bajor\n\n29) bhorner: Build G1 Bhorner\n\n30) Babamots: Move Y3 Bajor Xmas\n\n31) bhorner: Sacrifice G3 Bhorner\nBuild G1 Xmas\nBuild G2 Xmas\nBuild G3 Bhorner\nCatastrophe Xmas Green\n\n32) Babamots: Sacrifice G1 Babamots\nBuild Y3 Bajor\n\n33) bhorner: Move Y1 Bhorner Berry\n\tbhorner: It was still kind of satisfying. :)\n\n34) Babamots: Move Y2 Bajor Berry\n\n35) bhorner: Discover R1 Berry G2 Go\n\n36) Babamots: Sacrifice R1 Grover\nAttack Y1N Berry\n\n37) bhorner: Discover G1 Bhorner B3 Blue\n\n38) Babamots: Trade Y2 G2 Berry\n\n39) bhorner: Build G1 Blue\n\n40) Babamots: Build Y2 Berry\n\n41) bhorner: Discover Y1 Big_bird B2 Pebble\n\n42) Babamots: Sacrifice G2 Berry\nBuild G1 Babamots\nBuild Y3 Bajor\n\n43) bhorner: Move Y1 Pebble Blue\n\n44) Babamots: Move Y3 Bajor Blue\n\n45) bhorner: Move G1 Blue Go\n\n46) Babamots: Sacrifice R2 Grover\nAttack Y1N Blue\nAttack G1N Blue\n\n47) bhorner: Sacrifice Y2 Bhorner\nMove G1 Go Babamots\nMove R1 Go Babamots\n\n48) Babamots: Move Y3 Bajor Babamots\n\n49) bhorner: Build R1 Babamots\n\n50) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G2 Babamots\nBuild G3 Grover\nCatastrophe Babamots G\n\n51) bhorner: T R1 G1 Babamots\n\n52) Babamots: Sacrifice Y3 Blue\nMove G1 Blue Bhorner\nMove G2 Grover Bhorner\nMove G3 Grover Bhorner\nCatastrophe Bhorner G\n\tBabamots: Thanks for the game! The ending seemed kind of weird. I think you issued the challenge, so would you like to fill the game-finish form?\n\tbhorner: Weird? I was just continually losing ground, so tried something desperate, completely exhausting my resources. :) It might have worked if you were easily rattled. I'll fill out the form, never done that yet. :). Thank you for the game as well. The beginning stung, another thing I will have to keep in mind!\n\n\nHomeworlds Online (SDG# 33005)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.24, Ended: 2017.9.24\nParticipants: eliscinsky (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: B G1 Felix\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Felix: T G1 R1 Felix\n\n6) eliscinsky: Build G1 Eliscinsky\n\n7) Felix: Build R1 Felix\n\n8) eliscinsky: Trade G1 Y1 Eliscinsky\n\n9) Felix: Trade R1 Y1 Felix\n\n10) eliscinsky: Trade G1 R1 Eliscinsky\n\n11) Felix: Build R2 Felix\n\n12) eliscinsky: Discover Y1 Eliscinsky Y3 Proto\n\n13) Felix: Discover R2 Felix B1 Zoan\n\n14) eliscinsky: Build G1 Eliscinsky\n\n15) Felix: S G3 Felix\nB R2 Zoan\nB R3 Zoan\nB R3 Felix\n\n16) eliscinsky: Trade G1 Y1 Eliscinsky\n\n17) Felix: T R3 G3 Felix\n\n18) eliscinsky: Build G1 Eliscinsky\n\n19) Felix: Trade R3 Y3 Zoan\n\n20) eliscinsky: Build Y2 Eliscinsky\n\n21) Felix: Move R2 Zoan Proto\n\n22) eliscinsky: Move Y2 Eliscinsky Proto\n\n23) Felix: Attack Y2 Proto\n\n24) eliscinsky: Move Y1 Eliscinsky Proto\nCatastrophe Proto Y\n\n25) Felix: B G1 Felix\n\n26) eliscinsky: Trade G1 Y1 Eliscinsky\n\n27) Felix: Trade G1 B1 Felix\n\n28) eliscinsky: Build G1 Eliscinsky\n\n29) Felix: Build B1 Felix\n\n30) eliscinsky: Build Y1 Eliscinsky\n\n31) Felix: Build Y2 Felix\n\n32) eliscinsky: Build Y2 Eliscinsky\n\n33) Felix: D Y1 Felix G1 Opus\n\n34) eliscinsky: Trade Y2 B2 Eliscinsky\n\n35) Felix: Sacrifice G3 Felix\nBuild Y2 Opus\nBuild Y2 Zoan\nBuild Y3 Felix\n\n36) eliscinsky: Discover Y1 Eliscinsky R3 Alpha\n\n37) Felix: Sacrifice Y1 Opus\nMove Y2 Opus Alpha\n\n38) eliscinsky: Move B2 Eliscinsky Alpha\n\n39) Felix: Attack B2 Alpha\n\n40) eliscinsky: Build R2 Eliscinsky\n\n41) Felix: S Y2 Zoan\nM R2 Zoan Alpha\nM R2 Alpha Eliscinsky\nC Eliscinsky Red\n\n42) eliscinsky: Build G1 Eliscinsky\n\n43) Felix: Sacrifice Y2 Alpha\nDiscover B1 Felix G1 Out\nMove B1 Felix Out\n\n44) eliscinsky: Trade G1 R1 Eliscinsky\n\n45) Felix: Sacrifice Y3 Zoan\nMove B1 Out Eliscinsky\nMove B1 Out Eliscinsky\nMove B2 Alpha Eliscinsky\nCatastrophe Eliscinsky Blue\n\n\tFelix: Good game! Thanks for playing :)\n\teliscinsky: Was fun while it lasted.\r\nI'm really learning good stuff.\r\n:)\n\tFelix: That's the main thing! if you've learned something, then it was a good game!\n\nHomeworlds Online (SDG# 33025)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.25, Ended: 2017.10.13\nParticipants: bhorner (S), shoejitsu (N)\nWinner: bhorner\n\n1) shoejitsu: Homeworld G3 R1 B3\n\n2) bhorner: Homeworld R2 B1 G3\n\tshoejitsu: good luck and have fun!\n\n3) shoejitsu: Build B1 Shoejitsu\n\tbhorner: Thanks, same to you. :)\n\n4) bhorner: Build G1 Bhorner\n\n5) shoejitsu: Trade B1 G1 Shoejitsu\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) shoejitsu: Build B1 Shoejitsu\n\n8) bhorner: Build Y1 Bhorner\n\n9) shoejitsu: Trade B1 Y1 Shoejitsu\n\n10) bhorner: Build Y2 Bhorner\n\n11) shoejitsu: Build G1 Shoejitsu\n\n12) bhorner: Discover Y2 Bhorner G3 Xmas\n\n13) shoejitsu: Discover G1 Shoejitsu B2 Bruno\n\n14) bhorner: Build Y2 Xmas\n\n15) shoejitsu: Build Y2 Shoejitsu\n\n16) bhorner: Build Y3 Bhorner\n\n17) shoejitsu: Move Y1 Shoejitsu Bruno\n\n18) bhorner: Sacrifice Y1 Bhorner\nDiscover Y3 Bhorner B3 Grover\n\n19) shoejitsu: Build B1 Shoejitsu\n\n20) bhorner: Discover Y2 Xmas R2 Fire\n\n21) shoejitsu: Build G1 Bruno\n\n22) bhorner: Sacrifice G3 Bhorner\nBuild Y1 Grover\nBuild Y3 Bhorner\nBuild Y3 Fire\n\n23) shoejitsu: Build G2 Bruno\n\n24) bhorner: Trade Y1 R1 Bhorner\n\n25) shoejitsu: Build Y1 Shoejitsu\n\n26) bhorner: M Y3 Grover Bruno\n\n27) shoejitsu: Trade G1 R1 Bruno\n\n28) bhorner: Sacrifice R1 Bhorner\nAttack R1 Bruno\n\n29) shoejitsu: Move G2 Bruno Grover\n\n30) bhorner: Attack G1 Bruno\n\n31) shoejitsu: Move Y1 Bruno Xmas\n\n32) bhorner: Sacrifice R1 Bruno\nAttack Y1 Xmas\n\n33) shoejitsu: Trade B1 R1 Shoejitsu\n\n34) bhorner: M Y1 Grover Bhorner\n\n35) shoejitsu: Discover R1 Shoejitsu G2 Dance\n\n36) bhorner: Trade Y3 G3 Bhorner\n\n37) shoejitsu: Move Y1 Shoejitsu Dance\n\n38) bhorner: Build Y3 Bhorner\n\n39) shoejitsu: Build R1 Dance\n\n40) bhorner: T Y1 B1 Bhorner\n\n41) shoejitsu: Build G1 Grover\n\n42) bhorner: Trade Y3 R3 Bruno\n\n43) shoejitsu: Trade G1 Y1 Grover\n\n44) bhorner: Trade Y3 R3 Bhorner\n\n45) shoejitsu: Sacrifice G2 Grover\nBuild Y3 Grover\nBuild R2 Dance\n\n46) bhorner: B R3 Bruno\n\n47) shoejitsu: Move R1 Dance Grover\n\n48) bhorner: Sacrifice Y2 Xmas\nMove R3 Bruno Xmas\nMove R3 Xmas Dance\n\n49) shoejitsu: Sacrifice Y3 Grover\nMove R1 Grover Bhorner\nMove R2 Dance Grover\nMove R2 Grover Bhorner\nCatastrophe Bhorner Red\n\n50) bhorner: S Y2 Fire\nM R3 Dance Shoejitsu\nM Y3 Fire Shoejitsu\n\n51) shoejitsu: Attack R3 Shoejitsu\n\n52) bhorner: Sacrifice R3 Bruno\nAttack R3 Shoejitsu\nAttack B3 Shoejitsu\nAttack Y2 Shoejitsu\n\n53) shoejitsu: Build G1 Shoejitsu\n\n54) bhorner: T Y2 G2 Shoejitsu\nC Shoejitsu Green\n\n\nHomeworlds Online (SDG# 33008)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.25, Ended: 2017.9.27\nParticipants: fogus (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld G2 Y1 B3\n\tBabamots: Oops. How did we end up with two games? Let's make the other game the one for the tournament. We can play this one later for fun.\n\n2) fogus: Homeworld B2 Y3 G3\n\n3) Babamots: Build B1 Babamots\n\n4) fogus: Build G1 Fogus\n\tBabamots: I've never tried starting with a blue ship before, so this might be interesting.\n\n5) Babamots: Discover B1 Babamots G3 Betazed\n\n6) fogus: Trade G1 B1 Fogus\n\n7) Babamots: Build B1 Betazed\n\n8) fogus: Build B2 Fogus\n\n9) Babamots: Build B2 Babamots\n\n10) fogus: Discover B1 Fogus Y1 Cribbage\n\n11) Babamots: Build B3 Babamots\n\n\nHomeworlds Online (SDG# 33024)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.25, Ended: 2017.8.28\nParticipants: fogus (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: H R2 B1 G3\n\n\tbhorner: Hey fogus, this was for Babamots' tournament... I hate win from a time out when you never moved, do you want to start another game?\n\nHomeworlds Online (SDG# 33045)\nVariants: "Hard time"\nStarted: 2017.8.27, Ended: 2017.10.4\nParticipants: Aristos (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\tAristos: Well met.\n\tbhorner: Hello there. :)\n\n2) Aristos: Homeworld G3 B2 Y3\n\n3) bhorner: Build G1 Bhorner\n\n4) Aristos: Build Y1 Aristos\n\n5) bhorner: Trade G1 Y1 Bhorner\n\n6) Aristos: Trade Y1 G1 Aristos\n\n7) bhorner: Build G1 Bhorner\n\n8) Aristos: Build Y1 Aristos\n\n9) bhorner: T G1 B1 Bhorner\n\n10) Aristos: Discover Y1 Aristos G1 Seedling\n\n11) bhorner: Build B1 Bhorner\n\n12) Aristos: Build Y1 Aristos\n\n13) bhorner: B Y2 Bhorner\n\n14) Aristos: Build Y2 Seedling\n\n15) bhorner: Discover B1 Bhorner G3 Xmas\n\n16) Aristos: Move Y2 Seedling Xmas\n\n17) bhorner: Build B2 Bhorner\n\n18) Aristos: Build Y2 Seedling\n\n19) bhorner: Trade Y1 R1 Bhorner\n\n20) Aristos: Trade Y1 R1 Aristos\n\n21) bhorner: T B1 G1 Xmas\n\n22) Aristos: Build Y1 Aristos\n\n23) bhorner: Build G2 Xmas\n\n24) Aristos: Sacrifice Y2 Xmas\nMove G1 Aristos Seedling\nMove G1 Seedling Xmas\nCatastrophe Xmas Green\n\n25) bhorner: Discover B2 Bhorner G3 Xmas\n\n26) Aristos: Build R1 Aristos\n\n27) bhorner: Build R2 Bhorner\n\n28) Aristos: Move R1 Aristos Seedling\n\n29) bhorner: Move R2 Bhorner Xmas\n\n30) Aristos: Build R2 Seedling\n\n31) bhorner: B R3 Xmas\n\n32) Aristos: Build R3 Aristos\n\n33) bhorner: Trade R2 Y2 Xmas\n\n34) Aristos: Build R2 Seedling\n\n35) bhorner: S Y2 Bhorner\nM R1 Bhorner Xmas\nM R1 Xmas Seedling\nC Seedling Red\n\n36) Aristos: Move R3 Aristos Seedling\n\n37) bhorner: B B1 Xmas\n\n38) Aristos: Build R1 Seedling\n\n39) bhorner: Build G1 Bhorner\n\n40) Aristos: Trade Y1 G1 Aristos\n\n41) bhorner: Discover B1 Xmas B2 Way\n\n42) Aristos: Build G2 Aristos\n\n43) bhorner: S G3 Bhorner\nB B3 Bhorner\nB B3 Xmas\nB B3 Way\n\n44) Aristos: Discover R1 Seedling G3 Art\n\tAristos: You win I think. I can't see any way out of this box short of a mistake on your part. \n\tAristos: You win I think. I can't see any way out of this box short of a mistake on your part. \n\n45) bhorner: S Y2 Xmas\nD B1 Way Y1 Flare\nM B2 Xmas Flare\n\tbhorner: Weird, I think I have a lot to learn about this game. I hadn't even considered things from your perspective, and didn't realize if I had you in a box. I was just trying to gain material advantage.\n\n46) Aristos: Sacrifice Y2 Seedling\nMove R3 Seedling Way\nMove R3 Way Flare\n\n47) bhorner: Sacrifice B3 Xmas\nTrade B1 R1 Flare\nTrade B2 R2 Flare\nTrade B3 Y3 Bhorner\n\n48) Aristos: Sacrifice G2 Aristos\nBuild R2 Art\nBuild R3 Aristos\n\n49) bhorner: Move R2 Flare Way\n\n50) Aristos: Attack R1 Flare\n\tAristos: I see a glimmer of hope in my greater maneuverability. You have no yellow to use to run away or to press your attack quickly. Going to be tough, but *maybe* I can pull something together. \n\tAristos: By the way, I tend to use the "move, undo, move" sequence a lot in the end game. I don't have physical pieces to move around, and frequently I use it to visualize alternative boards. I undo pretty quick (just grab a screenshot) so you won't be stuck thinking there's a move for you. If I move and I'm not going to undo, I'll leave you a message. \n\tbhorner: Ok, well... my time starts running when you've moved, so I may not wait for a message to make my move, but I won't be trying to pounce on you in between experiments or anything. How about if I see that you moved at least a half hour ago, I'll feel free to move? Also, I didn't know that you could continue undo-ing, I thought I could only do it once, and then after I remade the move, undo was no longer available, interesting that you can do it repeatedly.\n\n51) bhorner: Build B1 Bhorner\n\n52) Aristos: Move R1 Flare Art\n\tbhorner: Yeah, I just tried it, it appears that I can't undo again.\n\tAristos: Only one undo per move, and if I undo, it rolls back your time. That's why I do it fast -- move, grab screenshot, undo. :-)\n\n53) bhorner: M B1 Bhorner Xmas\n\n54) Aristos: Build Y1 Aristos\n\n55) bhorner: Build B2 Xmas\n\n56) Aristos: Sacrifice Y3 Aristos\nMove R1 Art Bhorner\nMove R1 Art Bhorner\nMove R2 Art Bhorner\nCatastrophe Bhorner Red\n\n57) bhorner: B B3 Bhorner\n\n58) Aristos: Discover Y1 Seedling B3 Arch\n\n59) bhorner: Build G1 Bhorner\n\n60) Aristos: Build Y2 Aristos\n\n61) bhorner: M G1 Bhorner Aristos\n\n62) Aristos: Attack G1 Aristos\n\n63) bhorner: M G1 Bhorner Aristos\nC Aristos Green\n\n64) Aristos: Trade Y1 G1 Aristos\n\n65) bhorner: S Y3 Bhorner\nM B1 Bhorner Aristos\nM B1 Xmas Aristos\nM B2 Xmas Aristos\nC Aristos Blue\n\n\tbhorner: That was a good game! At first I thought I had you, but then the yellow situation raised it's head, and I was losing... A roller coaster!\n\tAristos: Well played.\n\nHomeworlds Online (SDG# 32949)\nVariants: "Hard time"\nStarted: 2017.8.27, Ended: 2017.9.23\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: wil\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) wil: H R2 B2 G3 *\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) wil: B G1 Wil\n\tDraw5PlayAll: You know this lost for you last time...\n\twil: Lol, losing is what benefits learning....I rarely learn anything by winning a game.\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) wil: T G1 Y1 Wil\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) wil: B G1 Wil\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) wil: T G1 B1 Wil\n\n11) Draw5PlayAll: Discover B1 Draw5playall G1 G1\n\n12) wil: D B1 Wil G3 G3\n\n13) Draw5PlayAll: Build G1 Draw5playall\n\n14) wil: B G1 Wil\n\n15) Draw5PlayAll: Build G2 Draw5playall\n\n16) wil: T G1 R1 Wil\n\n17) Draw5PlayAll: Discover G2 Draw5playall Y1 Y1\n\n18) wil: B Y2 Wil\n\n19) Draw5PlayAll: Build Y2 Draw5playall\n\n20) wil: M Y2 Wil G1\n\n21) Draw5PlayAll: Discover Y1 Draw5playall G1 G1b\n\n22) wil: B R1 Wil\n\n23) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n24) wil: S R1 Wil\nA B1 G1\n\n25) Draw5PlayAll: Build G1 Draw5playall\n\n26) wil: M R1 Wil G1\n\n27) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Y1\nBuild G2 Y1\nBuild G3 Draw5playall\n\n28) wil: B B1 G1\n\n29) Draw5PlayAll: Discover G2 Y1 B3 B3\n\n30) wil: B B2 G3\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G1b\nBuild Y3 Draw5playall\nBuild G3 Draw5playall\n\n32) wil: B Y3 G1\n\n33) Draw5PlayAll: Move Y1 G1b B3\n\n34) wil: B R1 G1\n\n35) Draw5PlayAll: Move R1 Draw5playall B3\n\n36) wil: B Y3 Wil\n\n37) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 B3 Wil\nMove Y2 G1b Wil\nCatastrophe Wil Y\n\n38) wil: Move Y3 G1 Wil\n\n39) Draw5PlayAll: Build Y1 Draw5playall\n\n40) wil: Build B3 G3\n\n41) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G1 B3\nBuild G3 Draw5playall\nBuild R2 B3\n\n42) wil: T B3 R3 G3\n\twil: almost...almost had me there...\n\n43) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove R1 B3 G1\n\n44) wil: B R3 G3\n\twil: So feels like I am about to make a critical error.\n\n45) Draw5PlayAll: Attack R1 G1\n\n46) wil: Sacrifice R3 G3\nAttack R1 G1\nAttack R1 G1\nPass\n\twil: Dang little mosquitos\n\n47) Draw5PlayAll: Build R3 B3\n\n48) wil: M R1 G1 Draw5playall\n\n49) Draw5PlayAll: Trade R3 Y3 B3\n\tDraw5PlayAll: Almost put that in the chat...\n\n50) wil: Sacrifice Y3 Wil\nMove R3 G3 Wil\nMove R1 G1 Draw5playall\nMove R1 G1 Draw5playall\nCatastrophe Draw5playall R\n\twil: I do that all the time..and no delete!!\n\n51) Draw5PlayAll: Sacrifice Y3 B3\nMove R2 B3 Wil\nMove G2 Y1 Wil\nMove G1 B3 Wil\n\n52) wil: T R3 Y3 Wil\n\n53) Draw5PlayAll: Trade G2 Y2 Wil\n\tDraw5PlayAll: Throwing all but the kitchen sink at you.\n\n54) wil: S Y3 Wil\nM B1 G3 Draw5playall\nM B1 G1 Draw5playall\nM B1 G1 Draw5playall\nC Draw5playall B\n\n\twil: Welcome visitors...\n\tDraw5PlayAll: I thought you had bluebirded me. Should have blown your red instead\n\nHomeworlds Online (SDG# 32973)\nVariants: "Unrated"\nStarted: 2017.8.27, Ended: 2017.9.9\nParticipants: willeth (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld Y2 G3 Y3 *\n\n\tDraw5PlayAll: All right, I have chosen to start with no blue as a handicap. Usually I go for B3+R1 stars and a G3 ship.\r\n\r\n\n\nHomeworlds Online (SDG# 33065)\nVariants: "Hard time"\nStarted: 2017.8.28, Ended: 2017.9.1\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H Y3 B2 G3\n\tdlwillson: Well hello! Long time, no see! :-)\n\n2) Felix: Homeworld R1 B3 G3\n\tFelix: Hahaha, that timing worked out well. Congrats on hitting the top again! You've been playing really well lately; but I am to change that ;) Have fun.\n\tFelix: aim to*\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: You took my fortress... sad day! I'm so used to playing fortress now, I'm not always sure what to do with myself as a Goldilocks. I briefly debated playing a 1-1... but I don't want to be that obnoxious in a ladder game :P\n\tdlwillson: I wouldn't have minded. It's just a game. The greatest game in the world! Of Off all time! But still, just a game. :-)\n\tdlwillson: s/Of Off/Of/\n\n4) Felix: Build G1 Felix\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\tFelix: Good to know for next time! And agreed. The best game in the UNIVERSE! Wishing it would catch on more.\n\n6) Felix: Trade G1 R1 Felix\n\n7) dlwillson: Build R2 Dlwillson\n\n8) Felix: Build R2 Felix\n\twil: (apologizing in advance for the intrusion) \r\nIn plotting how to make homeworlds as ubiquitous as chess... Can we come up with a better way than kidnapping the top chess players of each metropolitan area and locking them in a room with a bunch of pyramids?\n\tdlwillson: I like that idea! :-)\n\n9) dlwillson: B R2 Dlwillson\n\tFelix: I'm in favor ;)\n\tdlwillson: More seriously, a live tournament with an entry fee and prizes would be fun, and I think it might make people curious. I also keep thinking that it's time for Looney Labs to make a Homeworlds box set.\n\n10) Felix: Trade R2 Y2 Felix\n\n11) dlwillson: Discover R1 Dlwillson Y1 Golden\n\tdlwillson: I just checked and tight-timings are possible in SDG. I put up a challenge of 1h/1h/1 as a test. It seems to have worked. I'm thinking that it should be 1/1h/1, though.\n\n12) Felix: Discover R1 Felix G2 Forstep\n\tFelix: Interesting! I wonder if you could do something even tighter in theory? 5 minutes each side, with a maximum of 10? If you had your opponent on a skype or phone call, it could move very quickly.\n\n13) dlwillson: Discover R1 Golden B2 Sky\n\n14) Felix: Build Y1 Felix\n\n15) dlwillson: D R2 Dlwillson B1 Sea\n\tdlwillson: We should try it. Try m for minute, and challenge me.\n\n16) Felix: Move Y1 Felix Forstep\n\tFelix: Done. I'm at work though, so I don't think I'll be able to play it out.\n\tFelix: No good. Looks like it doesn't take minutes, only hours, per this documentation: http://superdupergames.wikidot.com/howto:clocks\n\tdlwillson: Oh! It takes 0 as an increment!\n\n17) dlwillson: Build G1 Dlwillson\n\tFelix: So the best you could do would be to set one hour for the game, and have a 0 increment?\n\n18) Felix: Sacrifice G3 Felix\nBuild R2 Forstep\nBuild R3 Forstep\nBuild Y1 Forstep\n\n19) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Sea\nBuild R3 Dlwillson\nBuild G1 Dlwillson\n\tdlwillson: Yes. That would be perfect, I think.\n\tFelix: We'll have to schedule one sometime! My schedule is pretty packed now though. Hard to set aside a solid hour for game time with a puppy, a baby, and two jobs :P\n\n20) Felix: Move R3 Forstep Felix\n\n21) dlwillson: Move G1 Dlwillson Sea\n\tdlwillson: Your burst was excellently surprising!\n\tdlwillson: Let's try that fast game. If it works, we can recommend it to Bamabots for the next tournament.\n\n22) Felix: D R2 Forstep Y1 Ichor\n\tFelix: It was probably a dumb move, in retrospect. But it's nice to be unpredictable :) And yes, I'll let you know when we can try that.\n\n23) dlwillson: T R2 Y2 Sea\n\n24) Felix: T R3 G3 Felix\n\n25) dlwillson: T R3 G3 Dlwillson\n\n26) Felix: D Y1 Forstep B1 Inglass\n\n27) dlwillson: M R3 Sea Forstep\n\n28) Felix: Sacrifice G3 Felix\nBuild Y2 Inglass\nBuild Y3 Felix\nBuild Y3 Felix\n\n29) dlwillson: S R2 Dlwillson\nA R1 Forstep\nA Y1 Forstep\n\n30) Felix: Trade Y2 G2 Felix\n\tdlwillson: Stop surprising me!\n\n31) dlwillson: B Y2 Forstep\n\tFelix: No :)\n\n32) Felix: Discover Y3 Felix G2 Doge\n\n33) dlwillson: Move R3 Forstep Sea\n\n34) Felix: Trade Y1 G1 Inglass\n\n35) dlwillson: T G3 R3 Dlwillson\n\n36) Felix: Build G3 Felix\n\n37) dlwillson: B G3 Sea\n\n38) Felix: S G3 Felix\nB G3 Felix\nB G3 Inglass\nB Y1 Inglass\n\n39) dlwillson: S G3 Sea\nB R2 Dlwillson\nB R2 Sea\nB R3 Forstep\n\n40) Felix: Trade G1 B1 Inglass\n\n41) dlwillson: T R3 G3 Sea\n\n42) Felix: Sacrifice G2 Felix\nBuild R3 Ichor\nBuild B2 Inglass\n\n43) dlwillson: T R1 G1 Sky\n\n44) Felix: Trade Y1 R1 Inglass\n\n45) dlwillson: Sacrifice G3 Sea\nBuild G2 Sea\nBuild G3 Sky\nBuild Y1 Sea\n\tdlwillson: You're playing really well this game. I think my time at the top of the ladder may be shorter than I'd intended.\n\n46) Felix: Sacrifice Y3 Doge\nMove R1 Inglass Dlwillson\nMove R2 Ichor Dlwillson\nMove G3 Inglass Dlwillson\nCatastrophe Dlwillson Red\n\tFelix: Thank you! I've had a losing streak for a while, so I hope I can break that. And I know the feeling... The last time I was on top, I played very poorly and lost my first game. Not that you're playing poorly! I just hope I'm playing better ;)\n\n\tFelix: There. That's slightly smarter, I think.\n\tdlwillson: "Darn! That's the end!" https://www.youtube.com/watch?v=MT6cxlW6ym8\n\tdlwillson: Good game! Excellently played!\n\tFelix: Thank you! Likewise. I'm sure my reign of terror will be brought to an end by you or Wil before long :P\n\tdlwillson: Ah, absolutely! >;-)\n\nHomeworlds Online (SDG# 32943)\nStarted: 2017.8.30, Ended: 2017.10.13\nParticipants: ts52 (S), redsang (N)\nWinner: ts52\n\n1) redsang: Homeworld B2 R1 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) redsang: Build G1 Redsang\n\tts52: Have a good game!\n\n4) ts52: B G1 Ts52\n\n5) redsang: Trade G1 Y1 Redsang\n\n6) ts52: T G1 R1 Ts52\n\n7) redsang: Build G1 Redsang\n\n8) ts52: Build R1 Ts52\n\n9) redsang: Trade G1 B1 Redsang\n\n10) ts52: Build R2 Ts52\n\n11) redsang: Discover B1 Redsang Y3 Portobello\n\n12) ts52: Discover R1 Ts52 G2 Kermit\n\n13) redsang: Build G1 Redsang\n\n14) ts52: Build G1 Ts52\n\n15) redsang: Build Y1 Redsang\n\n16) ts52: Trade R2 Y2 Ts52\n\n17) redsang: Move Y1 Redsang Portobello\n\n18) ts52: Build R2 Kermit\n\n19) redsang: Discover Y1 Portobello R2 Fili\n\tredsang: Sorry for the delay.\n\n20) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\nBuild R3 Ts52\n\n21) redsang: Build Y1 Redsang\n\n22) ts52: Move Y2 Ts52 Kermit\n\n23) redsang: Trade Y1 B1 Redsang\n\n24) ts52: Trade R3 B3 Ts52\n\n25) redsang: Discover B1 Redsang R3 Ali\n\n26) ts52: Build R3 Ts52\n\n27) redsang: Build G1 Redsang\n\n28) ts52: Move R2 Kermit Ali\n\n29) redsang: Build G2 Redsang\n\n30) ts52: Catastrophe Redsang Green\nSacrifice Y2 Kermit\nMove R2 Ali Redsang\nMove R2 Kermit Ali\n\n31) redsang: Trade Y1 G1 Redsang\n\n32) ts52: Attack G1 Redsang\n\tts52: Thanks for the game!\n\tredsang: Thank you.\n\n\nHomeworlds Online (SDG# 32965)\nVariants: "Unrated"\nStarted: 2017.8.30, Ended: 2017.8.31\nParticipants: wil (S), twermund (N)\nWinner: wil\n\n1) twermund: Homeworld B3 G1 Y3\n\n2) wil: H B3 Y2 G3\n\n3) twermund: Discover Y3 Twermund G2 Ice\n\ttwermund: oh. woops\n\twil: Ya abandoned your homeworld?\n\ttwermund: Yup, just a rookie loss :)\n\twil: Lol..live n learn!\n\n\nHomeworlds Online (SDG# 33082)\nVariants: "Unrated, Hard time"\nStarted: 2017.8.31, Ended: 2017.9.25\nParticipants: Felix (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld B2 R1 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\tbhorner: Have fun. :)\n\tFelix: Thanks, you too! :)\n\n3) bhorner: B G1 Bhorner\n\n4) Felix: Build G1 Felix\n\n5) bhorner: T G1 Y1 Bhorner\n\n6) Felix: Trade G1 B1 Felix\n\n7) bhorner: Build Y1 Bhorner\n\n8) Felix: Build B1 Felix\n\n9) bhorner: Build Y1 Bhorner\n\n10) Felix: Discover B1 Felix G2 Out\n\tbhorner: What an interesting race. I hope I've blunted your advantage!\n\n11) bhorner: Discover Y1 Bhorner G3 Xmas\n\tFelix: We shall see! :)\n\n12) Felix: Sacrifice G3 Felix\nBuild B2 Out\nBuild B2 Out\nBuild B3 Felix\n\n13) bhorner: Build Y2 Bhorner\n\n14) Felix: Trade B3 G3 Felix\n\tbhorner: I guess not... That seems like a very risky move you made, but I can see how to make you pay for it, so maybe not.\n\n15) bhorner: Build Y2 Xmas\n\tFelix: As long as I control blue, it's not too risky :)\n\n16) Felix: T B2 Y2 Out\n\n17) bhorner: Trade Y2 B2 Bhorner\n\n18) Felix: B B3 Felix\n\n19) bhorner: Move B2 Bhorner Xmas\n\n20) Felix: Trade B1 R1 Felix\n\n21) bhorner: Discover Y1 Bhorner R3 Turmoil\n\n22) Felix: Move B2 Out Turmoil\n\n23) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Xmas\nBuild Y3 Turmoil\nBuild Y3 Bhorner\n\n24) Felix: Attack Y1 Turmoil\n\n25) bhorner: Trade Y2 R2 Xmas\n\n26) Felix: M Y1 Turmoil Bhorner\n\tFelix: Good move!\n\tbhorner: Whew, when I saw that there was a chat message, I thought you might be apologizing for killing me or something. :)\n\n27) bhorner: Attack Y1 Bhorner\n\n28) Felix: Build Y2 Out\n\n29) bhorner: T Y1 G1 Bhorner\n\n30) Felix: Discover Y2 Out G3 In\n\n31) bhorner: A B2 Turmoil\n\n32) Felix: Build Y1 In\n\n33) bhorner: Move Y1 Bhorner In\n\n34) Felix: Sacrifice Y2 In\nMove B3 Felix Out\nMove B3 Out Xmas\n\n35) bhorner: D R2 Xmas G2 Run\n\n36) Felix: Build Y2 Out\n\n37) bhorner: Move B2 Xmas Out\n\n38) Felix: S R1 Felix\nA B2 Out\n\n39) bhorner: Sacrifice Y2 Xmas\nMove Y3 Turmoil Out\nMove Y3 Out Felix\n\tFelix: Good move, by the way! When you moved your y1 to In, that is.\n\n40) Felix: Sacrifice Y2 Out\nMove Y2 Out Felix\nMove B2 Out Felix\n\n41) bhorner: S R2 Run\nA G3 Felix\nA B2 Felix\n\n42) Felix: Trade Y2 R2 Felix\n\n43) bhorner: T Y3 R3 Bhorner\n\tFelix: I say, very well done! I normally play with a red in my home star, so I'm not used to this sort of attack happening and let my guard down. Way to capitalize :)\n\tbhorner: Ok. I thought it must just have been a slip. I've joined a very small group in winning my first round game against you. :). Thanks!\n\tbhorner: Well... Assuming it happens.\n\n44) Felix: Attack B2 Felix\n\tbhorner: The yellow overpopulation made me nervous, but I think I'm good.\n\n45) bhorner: S R3 Bhorner\nA B2 Felix\nA R2 Felix\nPass\n\tFelix: I think you are! Very well played.\n\n\tFelix: Good game and well done!\n\tbhorner: Thanks. :). I hope I get to face to again! Good game to you too!\n\nHomeworlds Online (SDG# 33085)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.1, Ended: 2017.9.11\nParticipants: mneme (S), Felix (N)\nWinner: mneme\n\n1) Felix: Homeworld B2 R3 G3\n\n2) mneme: Homeworld R1 G3 B3\n\tFelix: Hello! Good luck and have fun :)\n\n3) Felix: Build G1 Felix\n\tmneme: Hey -- you too!\n\n4) mneme: Build B1 Mneme\n\n5) Felix: Trade G1 R1 Felix\n\n6) mneme: Trade B1 R1 Mneme\n\n7) Felix: Build R2 Felix\n\n8) mneme: Build R2 Mneme\n\n9) Felix: T R2 Y2 Felix\n\n10) mneme: Trade R2 Y2 Mneme\n\n11) Felix: Build R2 Felix\n\n12) mneme: Build R2 Mneme\n\n13) Felix: Trade R2 Y2 Felix\n\n14) mneme: Discover R2 Mneme G2 Cleo\n\n15) Felix: Discover R1 Felix G1 Parsnip\n\n16) mneme: Build B1 Mneme\n\n17) Felix: Move Y2 Felix Parsnip\n\n18) mneme: Build B1 Mneme\n\n19) Felix: Build R2 Parsnip\n\n20) mneme: Move B1 Mneme Cleo\n\n21) Felix: Discover R2 Parsnip G2 Cuke\n\n22) mneme: Build B1 Mneme\n\n23) Felix: Build Y1 Parsnip\n\n24) mneme: Trade B3 G3 Mneme\n\n25) Felix: Build R2 Cuke\n\n26) mneme: Discover R1 Mneme B2 Refuge\n\n27) Felix: Build R3 Parsnip\n\n28) mneme: Sacrifice G3 Mneme\nBuild R3 Cleo\nBuild B2 Cleo\nBuild B3 Mneme\n\n29) Felix: Move R3 Parsnip Refuge\n\n30) mneme: Sacrifice B1 Cleo\nTrade R1 B1 Refuge\n\n31) Felix: Attack B1 Refuge\n\n32) mneme: Sacrifice Y2 Mneme\nMove B1 Mneme Refuge\nMove B1 Mneme Refuge\nCatastrophe Refuge B\n\n33) Felix: B G1 Felix\n\n34) mneme: Trade R2 Y2 Cleo\n\n35) Felix: Trade G1 B1 Felix\n\n36) mneme: Build B1 Mneme\n\n37) Felix: Move B1 Felix Parsnip\n\n38) mneme: Trade B3 Y3 Mneme\n\n39) Felix: Build B1 Parsnip\n\n40) mneme: Build B2 Cleo\n\n41) Felix: Move B1 Parsnip Cuke\n\n42) mneme: Trade B2 G2 Cleo\n\n43) Felix: M Y1 Parsnip Cuke\n\n44) mneme: Build G1 Cleo\n\n45) Felix: Build G1 Felix\n\n46) mneme: Discover G2 Cleo Y3 Euterpe\n\n47) Felix: Sacrifice G3 Felix\nBuild Y1 Cuke\nBuild Y1 Cuke\nBuild Y3 Felix\n\n48) mneme: Build G3 Euterpe\n\n49) Felix: Build G3 Felix\n\n50) mneme: Discover G2 Euterpe R2 Erato\n\n51) Felix: Move Y1 Cuke Mneme\n\n52) mneme: Sacrifice G3 Euterpe\nBuild Y3 Cleo\nBuild G3 Erato\nBuild B2 Mneme\n\n53) Felix: Sacrifice Y2 Felix\nMove Y1 Cuke Mneme\nMove Y1 Cuke Mneme\nCatastrophe Mneme Yellow\n\n54) mneme: Trade B2 Y2 Mneme\n\n55) Felix: S Y3 Felix\nM G3 Felix Parsnip\nM G3 Parsnip Cuke\nM G3 Cuke Mneme\n\n56) mneme: Sacrifice Y3 Cleo\nMove G2 Erato Mneme\nMove G3 Erato Parsnip\nMove G3 Parsnip Felix\n\n57) Felix: Sacrifice R2 Cuke\nAttack Y2 Mneme\nAttack G2 Mneme\n\n58) mneme: Attack G1 Felix\n\n\tFelix: Yeah, I knew that attack would backfire, but it just seemed too fun to not try it :) Good game and way to capitalize on my blunder correctly!\n\tmneme: Good game and -very- challenging opposition until that blunder!\n\tFelix: Very good game! To be honest, I underestimated you a bit, since I've played very few games against you. I shan't do so again :)\n\tFelix: Underestimate you, that is.\n\tmneme: Heh. I -do- have a championship; it's probably not that wise, although like anyone I make mistakes. And excellent; it's good to be taken seriously. \n\tmneme: http://www.wunderland.com/LooneyLabs/Origins/2011/gallery.html\n\tFelix: Nice! When was this championship? I didn't realize there had been real ones already. Were there a lot of participants? I thought it was a bit too tricky to get enough Homeworlds players in the same room :P\n\tmneme: This was in 2011 -- back when Looney Labs was still running "The Big Experiment" events at Origins. I don't remember how many players we had for the Binary Homeworlds tournament--not that many, compared to, say, the fluxx tournament, but at least 8 or 10 (maybe more; this was a while ago).\n\tmneme: On the other hand, one of the participants was Andy Looney himself (there were some other strong players, but the finals was me and Andy). \r\n\r\nFortunately or unfortunately, the player who scares me -most- isn't in this tournament (that being TwoShort; I've only beaten him once!)\n\tFelix: Ah, cool! Endo is another player I have trouble with who doesn't seem to be active anymore. Shame. I'd like to keep cutting my teeth on the better players!\n\tmneme: It's definately (for all of us) the way to improve! Sometimes stressful, though!\n\tmneme: I also, BTW, ended up being one of John Cooper's two advisors in an exhibition match at Looneycon 1 (Will, IIRC, was one of Andy's advisors on the other side). Pretty fun game, though a touch short:\r\n\r\nhttp://looneylabs.ning.com/profiles/blog/show?id=6320919%3ABlogPost%3A110703&commentId=6320919%3AComment%3A110521&xg_source=activity\r\n\r\nI always forget the ning forurms exist, alas.\n\tFelix: Very interesting! Thanks for the link. I enjoyed following along with the game :)\n\tDraw5PlayAll: Do the other two have SDG accounts?\n\tmneme: Wil's SDG account is Wil; he's in the tournament and solid. Andy does, in fact, have a SDG account, though I don't remember the last time I saw him play here. \n\tDraw5PlayAll: Wait, so it was mneme + JohnCooper + ?? vs wil + Andy + ??.\r\nDo the two ??s have SDG accounts?\n\tmneme: Ah, that was the version of the question I was dreading; I'm not sure. You can ask Joshua D on ning, since I know you've responded to him there; I don't think I'm accquainted (other than that game) with the third player on Andy's side.\n\tmneme: And functionally, of course, it was Andy vs John -- the other four players were strategic advisors/helpers, but Andy and Coop made the final call if there needed to be one.\n\nHomeworlds Online (SDG# 33086)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.1, Ended: 2017.9.6\nParticipants: mneme (S), Babamots (N)\nWinner: mneme\n\n1) Babamots: Homeworld B2 Y1 G3\n\tBabamots: How's it going! I've filled the "start game" form, so we're official. Good luck!\n\n2) mneme: Homeworld G3 B1 Y3\n\tmneme: Great -- have fun and do your best!\n\n3) Babamots: Build G1 Babamots\n\n4) mneme: Build Y1 Mneme\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) mneme: Build Y2 Mneme\n\n7) Babamots: Discover Y1 Babamots G3 Gaia\n\n8) mneme: Discover Y1 Mneme G2 Flavor\n\n9) Babamots: Build Y2 Gaia\n\n10) mneme: Trade Y2 G2 Mneme\n\n11) Babamots: Build G1 Babamots\n\n12) mneme: Build Y2 Flavor\n\n13) Babamots: Trade G1 R1 Babamots\n\n14) mneme: Discover Y1 Flavor B3 Touch\n\n15) Babamots: Move Y2 Gaia Flavor\n\n16) mneme: Discover Y2 Flavor Y3 Waystation\n\n17) Babamots: Move Y2 Flavor Mneme\n\n18) mneme: Sacrifice G2 Mneme\nBuild Y2 Waystation\nBuild Y3 Touch\n\n19) Babamots: Discover Y1 Gaia B2 Pakled\n\tBabamots: Oh yeah. Well, maybe that will teach me not to play while I'm distracted :-P\n\tmneme: :) \n\n20) mneme: Trade Y1 G1 Touch\n\n21) Babamots: Move Y1 Pakled Waystation\nCatastrophe Waystation Y\n\n22) mneme: Trade Y3 R3 Mneme\n\n23) Babamots: Discover Y2 Mneme G2 Vulcan\n\n24) mneme: Build Y1 Touch\n\n25) Babamots: Build G1 Babamots\n\n26) mneme: Build G1 Touch\n\n27) Babamots: Move G1 Babamots Touch\n\n28) mneme: Discover G1 Touch Y2 Scent\n\n29) Babamots: Sacrifice R1 Babamots\nAttack Y1S Touch\n\n30) mneme: Build R1 Mneme\n\n31) Babamots: Trade G3 R3 Babamots\n\n32) mneme: Sacrifice R1 Mneme\nAttack Y1 Touch\n\n33) Babamots: Discover Y2 Vulcan B3 Romulus\n\n34) mneme: Trade Y3 R3 Touch\n\tmneme: s r1 mneme \r\na y1 touch\n\n35) Babamots: Trade Y2 G2 Romulus\n\tmneme: oops.\n\n36) mneme: Attack G1 Touch\n\n37) Babamots: Build G2 Romulus\n\n38) mneme: Build G2 Touch\n\n39) Babamots: Trade G2 Y2 Romulus\n\n40) mneme: Trade G2 Y2 Touch\n\n41) Babamots: Build G2 Romulus\n\n42) mneme: Build G2 Touch\n\n43) Babamots: Discover G2 Romulus B2 Kesprytt\n\n44) mneme: Sacrifice G2 Touch\nBuild R1 Touch\nBuild R1 Touch\n\n\tBabamots: I don't think we need to play the rest of this out, do you? Would you like the satisfaction of crushing me, or do you mind if I resign?\n\tDraw5PlayAll: Kesprytt??\n\tDraw5PlayAll: Pakled? Gaia? Heck, is Babamots a Trek reference?\n\tBabamots: Babamots is not a Trek reference, but all my system names are.\n\tmneme: I'm fine with a resignation here; it's not quite a 2 turn kill, but best case, you're left without any larges or red.\n\tBabamots: That's one win for you! No wins for me in this tournament yet. Too many mistakes.\n\tmneme: Good luck! Worst case, it will be a learning experience!\n\tmneme: Thanks for the game!\n\tBabamots: I think I can do better from here out. Good luck on your other games!\n\tmneme: You too!\n\nHomeworlds Online (SDG# 33089)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.1, Ended: 2017.9.10\nParticipants: Remneb (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\tmneme: Hey there -- I'll fill out the form; have fun!\n\n2) Remneb: Homeworld B3 R2 G3\n\tRemneb: Have a good game too !\n\n3) mneme: Build G1 Mneme\n\n4) Remneb: Build G1 Remneb\n\n5) mneme: Trade G1 R1 Mneme\n\n6) Remneb: Trade G1 R1 Remneb\n\n7) mneme: Build R2 Mneme\n\n8) Remneb: Build G1 Remneb\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) Remneb: Trade G1 Y1 Remneb\n\n11) mneme: Build R2 Mneme\n\n12) Remneb: Discover R1 Remneb Y1 Lod\n\n13) mneme: Discover R2 Mneme Y3 Alpha\n\n14) Remneb: Build G1 Remneb\n\n15) mneme: Build G1 Mneme\n\n16) Remneb: Sacrifice G1 Remneb\nBuild R2 Lod\n\n17) mneme: Build R3 Mneme\n\n18) Remneb: Discover R1 Lod Y3 Thor\n\n19) mneme: Trade R1 B1 Mneme\n\n20) Remneb: Build G1 Remneb\n\n21) mneme: Discover R3 Mneme B3 Beta\n\n22) Remneb: Discover G1 Remneb Y1 Rob\n\n23) mneme: Build Y2 Mneme\n\n24) Remneb: Build Y2 Remneb\n\n25) mneme: Build Y3 Mneme\n\n26) Remneb: Discover Y1 Remneb G1 Rem\n\tmneme: Letting me grow a y3 for free was a blunder, but since it's a tournament game, I'll take it. \n\n27) mneme: Move Y2 Mneme Beta\n\tRemneb: I was aware of it.\n\tmneme: I assumed you were, but thanks.\n\n28) Remneb: Build G2 Remneb\n\n29) mneme: Move G3 Mneme Thor\n\n30) Remneb: Discover R1 Thor B1 Dove\n\n31) mneme: Build G2 Thor\n\n32) Remneb: Move G2 Remneb Rob\n\n33) mneme: Sacrifice G3 Thor\nBuild G2 Mneme\nBuild G3 Mneme\nBuild G3 Thor\n\n34) Remneb: Sacrifice Y2 Remneb\nMove G1 Rob Beta\nMove G1 Beta Mneme\nCatastrophe Mneme G\n\n35) mneme: Move G3 Thor Dove\n\n36) Remneb: Build Y2 Rem\n\n37) mneme: Sacrifice R2 Alpha\nAttack R1 Dove\nPass\n\n38) Remneb: Move Y2 Rem Remneb\n\n39) mneme: Trade Y2 G2 Mneme\n\n40) Remneb: Build G1 Remneb\n\n41) mneme: Sacrifice G2 Mneme\nBuild Y2 Mneme\nBuild Y3 Beta\n\n\tRemneb: I try to do the same and the program told me that the rule was to choose a small yellow firts !\n\tmneme: If you sacrifice your g2 at Rob, the pieces ather (y1, g2) go back to the bank before you start doing grow actions--so you end up not being able to reach the y3. This was why I set up the grow in the first place--with your only g2 on a lone y1 system, you didn't have time to reach it first.\r\n\r\nI'd try to play out some endgames were I you, rather than resigning when it seems hopeless. The endgame is probably the toughest part of the game, and many, many games turn on an endgame being bungled resulting in a game turning around.\r\n\r\nObviously, if I had an unblockable lethal, it's different, but with your having r2s, that wasn't going to happen quickly unless I could trigger a catastrophe in your home system.\n\nHomeworlds Online (SDG# 33091)\nVariants: "Hard time"\nStarted: 2017.9.1, Ended: 2017.9.7\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 R1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\twil: Good luck\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 Y1 Wil\n\tFelix: You as well!\n\n6) Felix: T G1 R1 Felix\n\n7) wil: B Y1 Wil\n\n8) Felix: Build R1 Felix\n\n9) wil: D Y1 Wil B3 B3\n\tFelix: A race it is :)\n\twil: Now that was you that played my fav obstinate move!\n\n10) Felix: Discover R1 Felix B1 Y3\n\n11) wil: B Y1 Wil\n\tFelix: That was a deceptively difficult decision!\n\n12) Felix: Build R2 Felix\n\twil: This'll be fun if I can't attack and you can't move\n\n13) wil: D Y1 Wil Y3 Why3\n\tFelix: I'd rather be able to move...\n\n14) Felix: Sacrifice G3 Felix\nBuild R2 Y3\nBuild R2 Felix\nBuild R3 Y3\n\n15) wil: S G3 Wil\nB Y2 Why3\nB Y2 B3\nB Y3 Wil\n\n16) Felix: Trade R3 Y3 Y3\n\n17) wil: T Y1 G1 B3\n\n18) Felix: Move R2 Y3 B3\n\n19) wil: T Y3 G3 Wil\n\n20) Felix: Sacrifice R2 Felix\nAttack Y2 B3\nAttack G1 B3\n\n21) wil: B G1 Wil\n\n22) Felix: Build G1 B3\n\twil: I've blown this game.... Can you please make a horrendously bad move for me to capitalize on?\n\n23) wil: D G1 Wil B3 Bee3\n\tFelix: No promises ;)\n\twil: Not asking for promises...just do what you can.\n\twil: Not asking for promises...just do what you can.\n\n24) Felix: Move R1 Y3 Bee3\n\n25) wil: B G2 Bee3\n\n26) Felix: Attack G1 Bee3\n\n27) wil: T G2 R2 Bee3\n\n28) Felix: Build R3 Bee3\n\n29) wil: B G2 Wil\n\n30) Felix: Sacrifice Y3 Y3\nMove G1 B3 Wil\nMove G1 Bee3 Wil\nMove R3 Bee3 Wil\nCatastrophe Wil Green\n\n31) wil: S Y2 Why3\nM R2 Bee3 Wil\nM Y1 Why3 Wil\n\n32) Felix: Sacrifice R2 B3\nAttack R2 Wil\nAttack Y1 Wil\n\twil: Somewhere about now would be great for.that catastrophic mistake.\n\n\tFelix: Oops. I don't know if that was it. Sorry, I tried ;)\n\twil: It wouldnt let me do anything silly... Good gsme.\n\nHomeworlds Online (SDG# 33090)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.1, Ended: 2017.9.13\nParticipants: ts52 (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) ts52: H Y3 B1 G3\n\n3) mneme: Build G1 Mneme\n\n4) ts52: Build G1 Ts52\n\n5) mneme: Trade G1 R1 Mneme\n\tts52: Have a good game! Is this a tournament game?\n\n6) ts52: Trade G1 R1 Ts52\n\tmneme: You too--and yes!\n\n7) mneme: Build R2 Mneme\n\n8) ts52: Build R2 Ts52\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) ts52: Build G1 Ts52\n\n11) mneme: Build R2 Mneme\n\n12) ts52: Discover R2 Ts52 G2 Kermit\n\n13) mneme: Discover R1 Mneme Y3 Cleo\n\n14) ts52: Build G1 Ts52\n\n15) mneme: Build Y1 Mneme\n\n16) ts52: Trade G1 B1 Ts52\n\n17) mneme: Discover Y1 Mneme R3 Euterpe\n\n18) ts52: Build B1 Ts52\n\tmneme: Incidentally, I'm not at all sure what Aaron's doing with the sorting on this site.\r\n\r\nHomeworlds sorting is -simple-. Top row is always player 0. Bottom row is player 1. 2nd row is stuff that's (until things start getting blown up) 1 away from player 1; 4th row is stuff that's 1 away from player 2. And then anything that deviates from this (or pretty much anything, in a small universe situation) goes further in the middle than that, or ideally offsides.\r\n\r\nI'm not really sure what the logic here is, but at least to me it's exactly opposite from what I described -- cleo, then euterpe, then kermit.\n\n19) mneme: Sacrifice G3 Mneme\nBuild R2 Cleo\nBuild R3 Cleo\nBuild R3 Mneme\n\tts52: The sorting works the way I expect it to for a little while, but eventually starts to break down. But at the start it always shows your homeworld on the bottom row. Adjacent systems to your homeworld one row up. Your opponents homeworld at the top (the enemies gate is always up?) and adjacent systems to their homeworld one row down. \n\tmneme: That's what I'd expect, yes. But even with four worlds, I see your homeworld, then cleo and euterpe, then kermit, and finally my homeworld. It may depend on what side you're sitting.\n\n20) ts52: Move B1 Ts52 Kermit\n\n21) mneme: Trade R2 B2 Mneme\n\n22) ts52: Build R2 Kermit\n\n23) mneme: Sacrifice B2 Mneme\nTrade R2 B2 Cleo\nTrade R3 G3 Cleo\n\n24) ts52: Trade G1 Y1 Ts52\n\n25) mneme: Build G1 Cleo\n\n26) ts52: Move Y1 Ts52 Kermit\n\n27) mneme: Trade B2 G2 Cleo\n\n28) ts52: Build B2 Kermit\n\n29) mneme: Sacrifice G2 Cleo\nBuild R2 Mneme\nBuild R3 Cleo\n\n30) ts52: Trade B2 Y2 Kermit\n\n31) mneme: Trade R2 G2 Mneme\n\n32) ts52: D R2 Kermit Y3 Bigbird\n\n33) mneme: Move G3 Cleo Kermit\n\n34) ts52: Sacrifice Y2 Kermit\nMove B1 Kermit Bigbird\nMove R2 Kermit Bigbird\n\n35) mneme: Move R3 Mneme Bigbird\n\n36) ts52: Build G1 Ts52\n\n37) mneme: Sacrifice R3 Cleo\nAttack R2 Bigbird\nAttack R2 Bigbird\nAttack Y1 Kermit\n\n38) ts52: Discover R1 Ts52 Y2 Zoe\n\n39) mneme: Attack B1 Bigbird\n\n40) ts52: Move G1 Ts52 Zoe\n\n41) mneme: Move G3 Kermit Ts52\n\n42) ts52: Sacrifice R1 Zoe\nAttack G3 Ts52\n\n43) mneme: Sacrifice Y2 Mneme\nMove R3 Bigbird Kermit\nMove R3 Kermit Ts52\n\tmneme: Good game.\n\n44) ts52: Trade G3 R3 Ts52\n\n45) mneme: Sacrifice R2 Bigbird\nAttack R3 Ts52\nAttack G3 Ts52\n\tmneme: nah, what the hell, it's the most fun endgame.\n\n46) ts52: Sacrifice G1 Zoe\nBuild B2 Ts52\n\tts52: Good game. Well played.\n\n47) mneme: Trade R3 B3 Ts52\nCatastrophe Ts52 B\n\tmneme: You too!\r\n\r\nI'd have probably done the catastrophe -- though of course the squeeze is that you can't do both.\n\n\tmneme: True. On the other hand, if you're going to go out, might as well do it with a bang.\r\n\r\nI'm doing ok. Enough that I'm resenting having to do it again inthe double elimination game--it's likely that the only game I lose (if any) is against wil.\n\nHomeworlds Online (SDG# 33094)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.2, Ended: 2017.9.14\nParticipants: shoejitsu (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\tBabamots: I'm filling out the game start form. Good luck!\n\n2) shoejitsu: Homeworld B3 R1 G3\n\tshoejitsu: have fun!\n\n3) Babamots: Build G1 Babamots\n\n4) shoejitsu: Build G1 Shoejitsu\n\n5) Babamots: Discover G1 Babamots Y3 Betazed\n\n6) shoejitsu: Trade G1 B1 Shoejitsu\n\n7) Babamots: Build G1 Babamots\n\n8) shoejitsu: Build G1 Shoejitsu\n\n9) Babamots: Build G2 Betazed\n\n10) shoejitsu: Build G2 Shoejitsu\n\n11) Babamots: Discover G1 Betazed Y2 Galorndon\n\n12) shoejitsu: Trade G1 Y1 Shoejitsu\n\n13) Babamots: Sacrifice G3 Babamots\nBuild G1 Betazed\nBuild G2 Galorndon\nBuild G3 Babamots\n\n14) shoejitsu: Move G2 Shoejitsu Galorndon\n\n15) Babamots: Sacrifice G2 Betazed\nBuild G2 Galorndon\nBuild G3 Betazed\nCatastrophe Galorndon G\n\n16) shoejitsu: Discover B1 Shoejitsu G2 Xed\n\n17) Babamots: Discover G3 Betazed B2 Ferenginar\n\n18) shoejitsu: Build B1 Xed\n\n19) Babamots: Build G1 Ferenginar\n\n20) shoejitsu: Build B2 Xed\n\n21) Babamots: Trade G3 R3 Ferenginar\n\n22) shoejitsu: Build Y1 Shoejitsu\n\n23) Babamots: Build G2 Betazed\n\n24) shoejitsu: Trade B2 G2 Xed\n\n25) Babamots: Sacrifice G3 Babamots\nBuild G3 Babamots\nBuild G3 Ferenginar\nBuild R1 Ferenginar\n\n26) shoejitsu: Move Y1 Shoejitsu Xed\n\n27) Babamots: Move G1 Betazed Xed\n\n28) shoejitsu: Trade G2 R2 Xed\n\n29) Babamots: Sacrifice G2 Betazed\nBuild G2 Xed\nBuild G2 Xed\nCatastrophe Xed G\n\n30) shoejitsu: Trade G3 R3 Shoejitsu\n\n31) Babamots: Build G1 Ferenginar\n\n\tshoejitsu: ugh... well this is a mess\n\tshoejitsu: good game\n\tBabamots: Sorry it was a rough one for you :(.\r\nI'll fill out the game-finish form.\r\nThanks for playing, and good luck on the rest of games! \n\tshoejitsu: good luck to you!\n\nHomeworlds Online (SDG# 33079)\nStarted: 2017.9.2, Ended: 2017.12.5\nParticipants: Draw5PlayAll (S), ts52 (N)\nWinner: ts52\n\n1) ts52: H Y3 B1 G3\n\n2) Draw5PlayAll: Homeworld B1 G2 B3 *\n\n3) ts52: Build G1 Ts52\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\tts52: going for the fast shut out, eh?\n\n5) ts52: Build G1 Ts52\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) ts52: Discover G1 Ts52 B2 Gonzo\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) ts52: B G1 Ts52\n\n10) Draw5PlayAll: Discover B1 Draw5playall G3 G3\n\n11) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G2 Gonzo\nBuild G3 Ts52\n\n12) Draw5PlayAll: Build B2 G3\n\n13) ts52: Trade G2 Y2 Gonzo\n\n14) Draw5PlayAll: Build B3 Draw5playall\n\n15) ts52: Trade G3 B3 Ts52\n\n16) Draw5PlayAll: Build B3 G3\n\n17) ts52: Build G2 Gonzo\n\n18) Draw5PlayAll: Trade B3 Y3 G3\n\n19) ts52: Build G3 Ts52\n\n20) Draw5PlayAll: Build B3 G3\n\n21) ts52: Trade G3 R3 Ts52\n\n22) Draw5PlayAll: Trade B3 R3 G3\n\n23) ts52: Build G3 Ts52\n\n24) Draw5PlayAll: Move R3 G3 Gonzo\n\n25) ts52: Sacrifice Y2 Gonzo\nDiscover G2 Gonzo B3 Grover\nMove G2 Gonzo Grover\n\tDraw5PlayAll: Chaos breaks out!\n\n26) Draw5PlayAll: Attack G1 Gonzo\n\n27) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Grover\nBuild R1 Ts52\n\n28) Draw5PlayAll: Sacrifice Y3 G3\nMove G1 Gonzo Grover\nCatastrophe Grover Green\nMove B3 Draw5playall G3\nMove B2 G3 Gonzo\n\n29) ts52: Discover B3 Ts52 G2 Kermit\n\n30) Draw5PlayAll: Build B3 Draw5playall\n\n31) ts52: Trade G1 Y1 Ts52\n\n32) Draw5PlayAll: Build Y1 Draw5playall\n\n33) ts52: Build G1 Ts52\n\n34) Draw5PlayAll: Move Y1 Draw5playall G3\n\n35) ts52: Discover G1 Ts52 Y2 Bigbird\n\n36) Draw5PlayAll: Build Y1 Draw5playall\n\n37) ts52: Move Y1 Ts52 Kermit\n\n38) Draw5PlayAll: Build Y2 G3\n\n39) ts52: Build G1 Bigbird\n\n40) Draw5PlayAll: Move Y1 G3 Gonzo\n\n41) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild G3 Ts52\n\n42) Draw5PlayAll: Discover B3 Draw5playall Y3 Y3\n\n43) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild R1 Ts52\n\n44) Draw5PlayAll: Move B3 Y3 Bigbird\n\n45) ts52: Move R3 Ts52 Kermit\n\n46) Draw5PlayAll: Build Y3 G3\n\n47) ts52: Move G1 Bigbird G3\n\tDraw5PlayAll: I think I have a win in 5.\n\n48) Draw5PlayAll: Sacrifice Y2 G3\nDiscover Y3 G3 R2 R2\nMove B3 G3 R2\n\tts52: I think you're probably right.\n\tDraw5PlayAll: That complicates my plan severely.\n\n49) ts52: Move Y2 Kermit G3\n\n50) Draw5PlayAll: Discover Y1 Draw5playall R3 R3\n\tts52: Happy to help. :)\n\n51) ts52: Build Y2 G3\n\n52) Draw5PlayAll: Move R3 Gonzo G3\n\n53) ts52: Sacrifice Y2 G3\nMove G2 Bigbird R3\nDiscover G1 G3 Y2 Zoe\n\n54) Draw5PlayAll: Attack Y2 G3\n\n55) ts52: Attack Y1 R3\n\tDraw5PlayAll: I feel like this is an easy draw for my side, but I would like to play this out and SDG does not have Offer Draw for Homeworlds games. (Perhaps you could email Aaron and see if there is a quick fix.)\n\tts52: I'm happy to play it out if you are.\n\n56) Draw5PlayAll: Build R1 G3\n\n57) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R2 Kermit\nBuild G3 R3\n\n58) Draw5PlayAll: Move R1 G3 R2\n\n59) ts52: M R2 Ts52 Zoe\n\n60) Draw5PlayAll: Move B3 R2 G3\n\n61) ts52: Move R3 Kermit R3\n\n62) Draw5PlayAll: Move B1 G3 R2\n\n63) ts52: Move R3 R3 Gonzo\n\n64) Draw5PlayAll: Sacrifice Y1 Gonzo\nMove B2 Gonzo G3\n\n65) ts52: Build Y1 R3\n\tDraw5PlayAll: You can never get more blue or more non-small yellows.\n\n66) Draw5PlayAll: Move R3 G3 Zoe\n\tts52: True, I'm curious how this one is going to end.\n\n67) ts52: Move R2 Zoe R3\n\tDraw5PlayAll: Let me try this on for size.\n\n68) Draw5PlayAll: Attack G1 Zoe\n\tts52: That seems like it could be the beginning of the end for me\n\n69) ts52: Move G1 Ts52 Gonzo\n\tDraw5PlayAll: Is it?\n\tDraw5PlayAll: I mean, I have 5 large ships and I need to defend 5 systems... letting you get either Y2 is extremely dangerous.\n\n70) Draw5PlayAll: Move R1 R2 G3\n\tts52: It's true. Letting me get a y2 would be bad for you. But letting you get a green isn't great for me either.\n\n71) ts52: Move Y1 R3 Gonzo\n\tDraw5PlayAll: I see a thing that MIGHT get you a win, but it takes several turns to setup and I can defend before it happens.\n\n72) Draw5PlayAll: Pass\nPass\nPass\nPass\nPass\n\n73) ts52: Move G2 R3 Draw5playall\n\n74) Draw5PlayAll: Move R3 Zoe G3\n\n75) ts52: Move R2 R3 Zoe\n\n76) Draw5PlayAll: Move R3 G3 Draw5playall\n\n77) ts52: Attack G1 Zoe\n\n78) Draw5PlayAll: Attack G2 Draw5playall\n\n79) ts52: Move R2 Zoe R3\n\n80) Draw5PlayAll: Move B2 G3 Zoe\n\n81) ts52: Move G3 R3 Zoe\n\tDraw5PlayAll: The stash is empty. STILL.\n\n82) Draw5PlayAll: Move B2 Zoe G3\n\tts52: Yep. If you'd only let me get a medium yellow.... ;)\n\tDraw5PlayAll: But what could you do either way?\n\n83) ts52: Move G1 Zoe R3\n\n84) Draw5PlayAll: Move B2 G3 Bigbird\n\tts52: Honestly, I'm not 100% sure. This may be a very long endgame.\n\n85) ts52: Sacrifice G3 Zoe\nBuild G3 R3\nBuild Y2 Gonzo\nPass\n\n86) Draw5PlayAll: Move B2 Draw5playall G3\n\tDraw5PlayAll: The only thing you could possibly do is try to sabotage me on the red economy.\n\n87) ts52: Move G1 R3 Draw5playall\n\tDraw5PlayAll: You have neither the blue nor the movement to blow both of my stars. I can hold the game eternally as long as you never take over R2, G3, or bigbird. Also G3 and my homeworld have reds in then and R2 is a red system, therefore you could only get me to waste red at bigbird (or by sending two ships in at once, which wastes your only Y2).\n\tts52: Yeah, I'm really not sure what either of us should be doing at this point. Going to have to think on this one.\n\tDraw5PlayAll: I have no way at all to win or even make progress unless you let me. I cannot afford to throw another blue to G3 because you catastrophe it.\n\n88) Draw5PlayAll: Attack G1 Draw5playall\n\tts52: Here goes nothing.\n\n89) ts52: Move G3 R3 Draw5playall\nCatastrophe Draw5playall Green\n\n90) Draw5PlayAll: Pass\n\n91) ts52: Build G1 Ts52\n\n92) Draw5PlayAll: Pass\n\n93) ts52: Build G2 Bigbird\n\n94) Draw5PlayAll: Move B2 Bigbird Draw5playall\n\n95) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Gonzo\nBuild G3 Ts52\n\tDraw5PlayAll: Do you have any way of getting through to the developer, so that he can please add the "Offer a Draw" button to Homeworlds?\n\n96) Draw5PlayAll: Move B2 G3 R2\n\tts52: Sadly, I don't.\n\n97) ts52: Sacrifice Y2 Gonzo\nMove G3 Gonzo Draw5playall\nMove B3 Kermit Draw5playall\n\n98) Draw5PlayAll: Sacrifice R3 Draw5playall\nAttack B3 Draw5playall\nAttack G3 Draw5playall\nAttack G2 Bigbird\n\n99) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gonzo\nBuild R3 Kermit\n\n100) Draw5PlayAll: Move B3 Draw5playall R3\n\n101) ts52: Sacrifice Y2 Gonzo\nMove R3 Gonzo Draw5playall\nMove R3 Kermit Draw5playall\n\tDraw5PlayAll: You only have 2 larges left.\n\n102) Draw5PlayAll: Sacrifice Y3 R2\nMove G2 Bigbird Ts52\nMove G3 Draw5playall Gonzo\nMove G3 Gonzo Ts52\nCatastrophe Ts52 Green\n\tts52: 3 now. ;)\n\n103) ts52: Sacrifice R2 Kermit\nAttack Y3S Draw5playall\nAttack B2S Draw5playall\n\n\tDraw5PlayAll: Ah yes, forgot about that. You win.\n\tts52: An excellent game, as usual. This was a particularly tough one though.\n\nHomeworlds Online (SDG# 33101)\nStarted: 2017.9.5, Ended: 2018.1.11\nParticipants: dlwillson (S), Felix (W), Draw5PlayAll (N), ts52 (E)\nWinner: ts52\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: Yay, it worked!\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) dlwillson: Homeworld B3 R2 G3\n\tdlwillson: Last Player Standing wins?\n\n4) Felix: Homeworld B1 R1 G3 *\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Have fun all :)\n\tts52: Wow. I'm the only one who didn't go for homeworld defense, huh? This will be interesting.\n\tDraw5PlayAll: Fortunately, Felix picked dlwillson as his victim. Oh how I wish I had just passed on move 1...\n\tDraw5PlayAll: (Fortunately = it was not me)\n\n6) ts52: Build G1 Ts52\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: Build G1 Felix\n\tFelix: b g1 felix\n\tFelix: Haha, rookie move :)\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n10) ts52: B G1 Ts52\n\n11) dlwillson: T G1 Y1 Dlwillson\n\n12) Felix: T G1 Y1 Felix\n\n13) Draw5PlayAll: Build G1 Draw5playall\n\n14) ts52: Discover G1 Ts52 B3 Gonzo\n\n15) dlwillson: B G1 Dlwillson\n\n16) Felix: Build Y1 Felix\n\n17) Draw5PlayAll: Build Y2 Draw5playall\n\n18) ts52: Trade G1 R1 Ts52\n\n19) dlwillson: B Y2 Dlwillson\n\n20) Felix: Trade Y1 R1 Felix\n\n21) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n22) ts52: Build G1 Ts52\n\n23) dlwillson: Discover G1 Dlwillson B1 Sea\n\n24) Felix: M R1 Felix Gonzo\n\tdlwillson: So much going on... And it's likely to get worse...\n\n25) Draw5PlayAll: Discover Y2 Draw5playall G2 G2\n\tFelix: These 4p games are so hard to wrap my head around\n\n26) ts52: Sacrifice R1 Ts52\nAttack R1W Gonzo\n\n27) dlwillson: Build G1 Dlwillson\n\n28) Felix: Build Y1 Felix\n\n29) Draw5PlayAll: Build Y2 Draw5playall\n\tFelix: I'm not sure why I thought that would work.\n\n30) ts52: Build R1 Gonzo\n\n31) dlwillson: M Y2 Dlwillson Sea\n\n32) Felix: Move Y1 Felix G2\n\n33) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n34) ts52: Trade R1 B1 Gonzo\n\n35) dlwillson: Build Y2 Sea\n\n36) Felix: Build Y2 Felix\n\n37) Draw5PlayAll: Move R2 Draw5playall G2\n\n38) ts52: Build R1 Gonzo\n\n39) dlwillson: T Y2 R2 Sea\n\n40) Felix: Trade Y1 R1 Felix\n\n41) Draw5PlayAll: Attack Y1W G2\n\n42) ts52: Trade R1 Y1 Gonzo\n\n43) dlwillson: Build Y2 Sea\n\n44) Felix: Build Y2 Felix\n\n45) Draw5PlayAll: Build Y3 Draw5playall\n\n46) ts52: Build Y3 Gonzo\n\n47) dlwillson: Discover Y2 Sea B2 Northwest_sky\n\n48) Felix: Discover Y2 Felix G2 Out\n\n49) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n50) ts52: Build R2 Gonzo\n\n51) dlwillson: S G3 Dlwillson\nB Y1 Northwest_sky\nB Y3 Sea\nB Y3 Dlwillson\n\n52) Felix: B Y3 Felix\n\n53) Draw5PlayAll: Discover R1 Draw5playall B2 B2\n\n54) ts52: Discover B1 Gonzo G2 Kermit\n\n55) dlwillson: T Y2 G2 Northwest_sky\n\n56) Felix: M R1 Felix Out\n\n57) Draw5PlayAll: Build Y2 Draw5playall\n\n58) ts52: Move R1 Gonzo Ts52\n\tDraw5PlayAll: Please build the R2!\n\n59) dlwillson: Move Y2 Sea Northwest_sky\n\n60) Felix: Build G1 Felix\n\tdlwillson: Nope. Not me. Someone else can. I'm not set up well for red. Or any other color, actually. I think I don't know how to play Homeworlds free-for-all.\n\n61) Draw5PlayAll: Move B1 Draw5playall G2\n\tFelix: So hectic...\n\n62) ts52: Move Y1 Gonzo Kermit\n\n63) dlwillson: Move Y1 Dlwillson Felix\n\n64) Felix: Move Y2 Felix Dlwillson\n\n65) Draw5PlayAll: Build G2 Draw5playall\n\n66) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\nBuild G3 Gonzo\n\n67) dlwillson: A Y2W Dlwillson\n\n68) Felix: Attack Y1S Felix\n\n69) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 B2\nBuild R3 G2\n\tFelix: Tradesies :)\n\tDraw5PlayAll: I take it dlwillson's G2@northwest_sky was a coward.\n\n70) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild R3 Gonzo\nBuild R3 Ts52\n\n71) dlwillson: B R3 Sea\n\n72) Felix: Move G1 Felix Gonzo\nCatastrophe Gonzo G\n\tdlwillson: Draw5: not sure what you mean? They go where the amiable directs them. But, maybe I missed something.\n\n73) Draw5PlayAll: Move Y3 Draw5playall B2\n\n74) ts52: Build R3 Ts52\n\tDraw5PlayAll: I have 3 systems and 0 plans.\n\n75) dlwillson: M R3 Sea Northwest_sky\n\tdlwillson: Ugh. 'ansible', not 'amiable'.\n\n76) Felix: Build G1 Felix\n\n77) Draw5PlayAll: Move G2 Draw5playall B2\n\n78) ts52: Discover R3 Ts52 G3 Oscar\n\n79) dlwillson: T Y1 B1 Northwest_sky\n\n80) Felix: Move Y1 Felix Dlwillson\n\tdlwillson: Is there any advantage to not playing completely defensively? I can't think of one.\n\n81) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: It's more fun to not? :)\n\n82) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild Y1 Kermit\n\n83) dlwillson: A Y1W Dlwillson\n\n84) Felix: Move Y3 Felix Dlwillson\nCatastrophe Dlwillson Yellow\n\n85) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\nBuild B2 G2\n\n86) ts52: Discover G3 Ts52 B3 Grover\n\n87) dlwillson: Sacrifice Y3 Sea\nMove R2 Sea Dlwillson\nMove G1 Dlwillson Felix\nMove G2 Northwest_sky Felix\nCatastrophe Felix G\n\tDraw5PlayAll: Someone is going to be eliminated real soon.\n\n88) Draw5PlayAll: Move R2 B2 Sea\n\n89) ts52: M R3 Gonzo Out\n\tdlwillson: Two someones are.\n\n90) dlwillson: Sacrifice G1 Sea\nBuild Y2 Northwest_sky\n\n91) Draw5PlayAll: Build Y3 B2\n\n92) ts52: Attack Y2W Out\n\n93) dlwillson: Trade R2 G2 Dlwillson\n\tDraw5PlayAll: I thought about trying to land a red in dlwillson' homeworld but I figured ts52 would not follow up and I do not want to waste a red and the movement to get there.\n\tFelix: Well, it was fun while it lasted! These big games don’t reward offensive moves. Shame!\n\n94) Draw5PlayAll: Sacrifice Y1 G2\nMove Y3 B2 Sea\n\tts52: funny, I thought about the same thing \n\n95) ts52: Move Y1 Kermit Oscar\n\n96) dlwillson: S Y2 Northwest_sky\nM R3 Northwest_sky Sea\nM R3 Sea Dlwillson\n\tDraw5PlayAll: Just messing with the yellow economy.\n\n97) Draw5PlayAll: Build G1 B2\n\n98) ts52: Build Y1 Out\n\n99) dlwillson: Trade R3 Y3 Dlwillson\n\n100) Draw5PlayAll: Move G1 B2 Sea\n\n101) ts52: Attack R1W Out\n\n102) dlwillson: T B1 G1 Northwest_sky\n\n103) Draw5PlayAll: Move R2 Sea Kermit\n\n104) ts52: Sacrifice Y1 Kermit\nMove B1 Kermit Oscar\n\n105) dlwillson: Build Y1 Northwest_sky\n\n106) Draw5PlayAll: Build R1 B2\n\n107) ts52: Discover G3 Ts52 Y3 Bigbird\n\n108) dlwillson: B Y2 Dlwillson\n\n109) Draw5PlayAll: Move R2 G2 Sea\n\n110) ts52: Sacrifice G3 Bigbird\nBuild Y3 Oscar\nBuild R2 Oscar\nBuild R3 Gonzo\n\n111) dlwillson: Trade Y1 B1 Northwest_sky\n\n112) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R1 B2 Gonzo\nMove R2 Kermit Gonzo\nCatastrophe Gonzo Red\n\n113) ts52: Move R3 Oscar Northwest_sky\n\tdlwillson: Sorry for the delay, gents!\n\n114) dlwillson: M G1 Northwest_sky Oscar\n\tDraw5PlayAll: I thought my R2@kermit was too vulnerable so I used it instead of the R1@B2. Also I keep a weapon at B2.\n\tDraw5PlayAll: Hey DLWillson, I am sending you a message... please read it before moving.\n\tts52: I feel as if I'm about to be ganged up on...\n\n115) Draw5PlayAll: Sacrifice Y2 G2\nMove G2 B2 Oscar\nMove G1 Sea Oscar\nCatastrophe Oscar Green\n\tDraw5PlayAll: Wrong! Perhaps you would like an undo!\n\n116) ts52: Attack Y2S Northwest_sky\n\tdlwillson: You should pick on somebody your own size.\n\n117) dlwillson: Sacrifice G2 Dlwillson\nBuild B1 Northwest_sky\nBuild B1 Northwest_sky\nCatastrophe Northwest_sky B\n\tDraw5PlayAll: Who, me? But ts52 is too big (he still has 5 larges to my 4) and you are too small.\n\n118) Draw5PlayAll: Build Y1 Draw5playall\n\tdlwillson: No, TS52 should... I might have declined your offer of cooperation, if TS52 hadn't moved into my system. Had I been him, I would have attacked you and bet that I would not be able to capitalize on it. That still seems like the best play, to me. Either of you spending to hit me, is wasting pyramids or turns. Unless you can turn a profit, that is...\n\n119) ts52: Build G1 Grover\n\tdlwillson: Since I can't win, I can afford to do silly things like that.\n\tDraw5PlayAll: I will start to discover some large systems.\n\n120) dlwillson: Trade Y3 G3 Dlwillson\n\tDraw5PlayAll: But I do not 100% trust that you cannot win. If me and ts52 keep attacking each other that might give you enough time to build a legitimate fleet.\n\n121) Draw5PlayAll: Move Y1 Draw5playall G2\n\n122) ts52: Build G1 Ts52\n\n123) dlwillson: Build G1 Dlwillson\n\n124) Draw5PlayAll: Move G1 Draw5playall B2\n\n125) ts52: Move G1 Ts52 Gonzo\n\tdlwillson: Draw5: You should cross the "dlwillson has a legitimate fleet" bridge when you come to it. ts52 is a much more immediate threat to you. Any turns or ships either of you spends on me... Well, you play your own game, but I will casually predict that the next player to attack me, will ultimately lose the game, because of the waste of time/material.\n\n126) dlwillson: D G1 Dlwillson B1 Sky\n\tDraw5PlayAll: No, I meant that as me and Tim attack each other, you will get enough to become a threat... what will more likely happen is that I destroy Tim (or vice versa) and then have to defeat you. I will deal with you later, but you seem to be in the kingmaker position...\n\n127) Draw5PlayAll: Build Y1 B2\n\n128) ts52: Build Y2 Gonzo\n\n129) dlwillson: B G2 Dlwillson\n\n130) Draw5PlayAll: Build G2 Draw5playall\n\n131) ts52: Trade R1 B1 Ts52\n\n132) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sky\nBuild G3 Sky\nBuild G3 Dlwillson\n\n133) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 B2\nBuild R1 Sea\n\n134) ts52: Move Y2 Out Grover\n\n135) dlwillson: T G2 R2 Sky\n\n136) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Sea\nBuild Y2 G2\nBuild Y3 Draw5playall\n\n137) ts52: Build Y3 Out\n\n138) dlwillson: Discover G2 Dlwillson B1 Lake\n\n139) Draw5PlayAll: Move G3 B2 Draw5playall\n\n140) ts52: Sacrifice G3 Grover\nBuild G2 Ts52\nBuild G3 Grover\nBuild G3 Gonzo\n\n141) dlwillson: B R1 Sky\n\n142) Draw5PlayAll: Discover B1 G2 B3 B3\n\n143) ts52: Discover B1 Ts52 R3 Elmo\n\n144) dlwillson: T R2 B2 Sky\n\n145) Draw5PlayAll: Build B2 G2\n\n146) ts52: Move R1 Out Gonzo\n\tDraw5PlayAll: My small blue ship has been trying to set up signs saying "PRIVATE - NO ENTRY" on the planet.\n\n147) dlwillson: Build R2 Sky\n\n148) Draw5PlayAll: Move B2 G2 Elmo\n\n149) ts52: Move R3 Out B3\n\n150) dlwillson: Pass\n\n151) Draw5PlayAll: Attack B1E Elmo\n\n152) ts52: Attack B1N B3\n\n153) dlwillson: M Y2 Dlwillson Sky\n\n154) Draw5PlayAll: Sacrifice Y2 Sea\nMove B2 Elmo Ts52\nMove B1 Elmo Ts52\n\n155) ts52: Sacrifice Y3 Gonzo\nMove Y2 Gonzo B2\nMove Y2 Grover B2\nMove R3 B3 B2\nCatastrophe B2 Yellow\n\n156) dlwillson: D R2 Sky Y2 Sol\n\n157) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 B2\nBuild R2 B2\nCatastrophe B2 Red\n\n158) ts52: Attack B2N Ts52\n\tDraw5PlayAll: ts52 dies in two moves.\n\tts52: Yikes! How'd I miss that?\n\n159) dlwillson: S G3 Sky\nB Y1 Sky\nB Y2 Sky\nB G3 Sky\n\n160) Draw5PlayAll: Sacrifice G1 B2\nBuild B2 Ts52\nCatastrophe Ts52 Blue\n\tDraw5PlayAll: ts52: Incorrect!\n\n161) ts52: Move Y1 Out B3\n\n162) dlwillson: S Y2 Sky\nM Y1 Sky G2\nM Y2 Sky G2\nC G2 Y\n\n163) Draw5PlayAll: Move Y1 Draw5playall G2\n\n164) ts52: Trade G1 Y1 Grover\n\tDraw5PlayAll: I like moves like that.\n\n165) dlwillson: B G1 Dlwillson\n\n166) Draw5PlayAll: Trade R1 G1 Sea\n\tdlwillson: I need you two more evenly balanced.\n\n167) ts52: Sacrifice G3 Gonzo\nBuild G3 Gonzo\nBuild Y1 Out\nBuild Y2 B3\n\tDraw5PlayAll: Where did all my yellow go?!\n\n168) dlwillson: T G3 Y3 Dlwillson\n\n169) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Sea\nBuild Y2 Sea\n\n170) ts52: Move Y1 Out Gonzo\n\n171) dlwillson: T B2 Y2 Sky\n\n172) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 G2\nBuild Y3 Draw5playall\n\n173) ts52: Sacrifice Y2 B3\nMove Y1 B3 Sea\nMove Y1 Grover Sea\nCatastrophe Sea Y\n\n174) dlwillson: M G3 Sky Sol\n\n175) Draw5PlayAll: Move Y1 G2 Sea\n\n176) ts52: Build Y1 Out\n\tDraw5PlayAll: All right ts52, your time is almost up.\n\n177) dlwillson: Build Y1 Sky\n\n178) Draw5PlayAll: Discover Y3 Draw5playall B2 B2\n\n179) ts52: Build Y2 Gonzo\n\n180) dlwillson: M G3 Sol Draw5playall\n\n181) Draw5PlayAll: Attack G3S Draw5playall\n\n182) ts52: Sacrifice Y2 Gonzo\nDiscover G1 Gonzo Y2 Attack\nMove G1 Attack Draw5playall\nCatastrophe Draw5playall G\n\n183) dlwillson: S Y2 Sky\nM Y1 Sky Out\nM Y1 Out Draw5playall\n\n184) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n185) ts52: Build Y2 Gonzo\n\tDraw5PlayAll: Ummm... ts52 cannot afford to help dlwillson destroy me because ts52's empire will then die as well.\n\tts52: Yeah, I've been struggling to stay alive. But I don't think I'll be able to much longer.\n\tts52: Building the last 2 yellow only means they'll be destroyed in the next few turns, I think I might last longer returning a lot of green to the supply. And if not, at least I'll go out in a bang. ;)\n\n186) dlwillson: Sacrifice Y3 Dlwillson\nMove G2 Lake Sol\nMove G2 Sol Draw5playall\nMove G1 Sky Sol\n\n187) Draw5PlayAll: Move Y3 B2 Draw5playall\n\n188) ts52: Discover Y1 Gonzo G2 Oscar\n\n189) dlwillson: Build Y2 Draw5playall\n\n190) Draw5PlayAll: Move G3 Sea Dlwillson\n\n191) ts52: Sacrifice Y3 Out\nMove Y1 Oscar Draw5playall\nMove G3 Gonzo Out\nMove G3 Out Draw5playall\nCatastrophe Draw5playall Y\n\n192) dlwillson: Build G1 Draw5playall\nCatastrophe Draw5playall G\n\n193) ts52: Sacrifice Y2 Gonzo\nMove G1 Ts52 Dlwillson\nMove G2 Ts52 Dlwillson\nCatastrophe Dlwillson G\n\n\tdlwillson: Good, fun game. Very political, as multi-player should be. Well done, all! Now, unless I miss my guess, this ends in two TS52 turns.\n\tts52: Wow. That was a very interesting and unusual game. (I don't recall the last time I played a full game larger than 2 players.) Thanks everyone. That was fun!\n\tdlwillson: I missed my guess. :-)\n\nHomeworlds Online (SDG# 33123)\nVariants: "Hard time"\nStarted: 2017.9.7, Ended: 2017.9.13\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) wil: H Y2 B1 G3\n\twil: I was clicking away... I shouldn't have challenged you\r\n...you want me to resign so you can challenge Felix?\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: B G1 Wil\n\tdlwillson: It's no problem. I am here to play. You and he are both challenging and enjoyable opponents.\n\n5) dlwillson: Trade G1 R1 Dlwillson\n\n6) wil: T G1 B1 Wil\n\n7) dlwillson: B R1 Dlwillson\n\n8) wil: B B1 Wil\n\n9) dlwillson: D R1 Dlwillson Y1 Golden\n\n10) wil: D B1 Wil Y3 Y3\n\n11) dlwillson: Build R1 Dlwillson\n\n12) wil: B B2 Wil\n\n13) dlwillson: B R2 Dlwillson\n\n14) wil: D B1 Wil G3 G3\n\n15) dlwillson: D R1 Dlwillson Y1 Sol\n\n16) wil: S G3 Wil\nB B2 G3\nB B2 Y3\nB B3 Wil\n\n17) dlwillson: S G3 Dlwillson\nB R2 Golden\nB R2 Sol\nB R3 Dlwillson\n\n18) wil: S B2 Y3\nT B3 G3 Wil\nT B2 Y2 G3\n\n19) dlwillson: M R2 Golden G3\n\n20) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n21) dlwillson: Build R3 G3\n\n22) wil: T B3 R3 Wil\n\n23) dlwillson: Sacrifice R2 G3\nAttack Y2 G3\nAttack B1 G3\n\n24) wil: D B1 Y3 G1 G1\n\n25) dlwillson: B B3 G3\n\n26) wil: B B3 G1\n\n27) dlwillson: M B3 G3 Wil\n\n28) wil: A B3 Wil\n\n29) dlwillson: Move B1 G3 Wil\nCatastrophe Wil B\n\n30) wil: T B3 Y3 G1\n\n31) dlwillson: Trade R2 G2 Dlwillson\n\n32) wil: B Y1 G1\n\tdlwillson: No! Hell, no! I see what you almost did there!\n\twil: Lol, it was worth a try...\n\n33) dlwillson: Sacrifice G2 Dlwillson\nBuild Y3 G3\nBuild R2 G3\n\n34) wil: S B2 Y3\nT B2 R2 Y3\nT R3 B3 Wil\n\n35) dlwillson: M Y3 G3 Wil\n\tdlwillson: Good block!\n\n36) wil: S R2 Y3\nA Y3 Wil\nP\n\tdlwillson: I think I've still got you, though.\n\twil: Oh I am still waiting on some.collosal .mistake.to capitalize on..\n\n37) dlwillson: M R3 G3 Wil\n\n38) wil: M B1 G1 Wil\n\tdlwillson: I'd better hurry up with that mistake, I guess.\n\twil: I have little faith that you are capable of making a mistake of the proportions required.\r\n\n\n39) dlwillson: Sacrifice R3 Dlwillson\nAttack B3 Wil\nAttack Y3 Wil\nAttack B1 Wil\n\tdlwillson: I tried. Just too little time left and no confusing choices.\n\n\nHomeworlds Online (SDG# 33141)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.10, Ended: 2017.10.17\nParticipants: bhorner (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\tmneme: (to be clear, this is a tournament game). \r\nGood luck, and have fun!\r\n\n\n2) bhorner: Homeworld R3 B1 G3\n\n3) mneme: Build G1 Mneme\n\n4) bhorner: Build G1 Bhorner\n\n5) mneme: Trade G1 B1 Mneme\n\tbhorner: yes, the great tournament. :)\r\ngood luck to you too, and also have fun!\n\n6) bhorner: T G1 B1 Bhorner\n\tmneme: And you!\n\n7) mneme: Build B2 Mneme\n\n8) bhorner: B G1 Bhorner\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) bhorner: Build B2 Bhorner\n\n11) mneme: Build B2 Mneme\n\n12) bhorner: Trade B1 Y1 Bhorner\n\n13) mneme: Discover B1 Mneme G3 Calliope\n\n14) bhorner: Discover B2 Bhorner G2 Melpomene\n\n15) mneme: Build G1 Mneme\n\n16) bhorner: Build Y1 Bhorner\n\n17) mneme: Build Y1 Mneme\n\n18) bhorner: B Y2 Bhorner\n\n19) mneme: Move Y2 Mneme Calliope\n\n20) bhorner: M Y2 Bhorner Melpomene\n\n21) mneme: Discover G1 Mneme Y3 River\n\n22) bhorner: D Y1 Bhorner G2 Exhaust\n\n23) mneme: Build G1 Mneme\n\n24) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Melpomene\nBuild Y3 Bhorner\nBuild Y3 Exhaust\n\n25) mneme: Sacrifice G3 Mneme\nBuild G2 Mneme\nBuild G3 Mneme\nBuild G3 River\n\n26) bhorner: Trade Y1 R1 Bhorner\n\n27) mneme: Trade G2 R2 Mneme\n\n28) bhorner: B G2 Bhorner\n\n29) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild Y1 Calliope\nBuild R1 Mneme\n\n30) bhorner: Sacrifice G1 Bhorner\nBuild R2 Bhorner\n\n31) mneme: Move R1 Mneme Calliope\n\n32) bhorner: Move R2 Bhorner Exhaust\n\n33) mneme: Move G3 River Melpomene\n\n34) bhorner: Sacrifice Y2 Melpomene\nMove Y2 Melpomene Calliope\nMove B2 Melpomene River\n\n35) mneme: Attack Y2 Calliope\n\tmneme: I totally didn't notice that you'd used a muse name for one of your worlds before now. Respect!\n\tbhorner: lol\r\nEvery time I read your name, I pronounce it in my head "mini-me". :)\n\n36) bhorner: Move Y1 Exhaust Calliope\nCatastrophe Calliope Yellow\n\n37) mneme: Sacrifice G3 Mneme\nBuild G1 Melpomene\nBuild G3 River\nBuild Y1 Mneme\n\tmneme: It's greek -- for a muse. Pronounced (almost) "nemay".\n\tDraw5PlayAll: Oh, I say "im-neem".\n\n38) bhorner: M G2 Bhorner Melpomene\nCat Melpomene Green\n\tmneme: How to you pronounce "mnemonic?"\r\n\n\n39) mneme: Sacrifice R1 Calliope\nAttack B2 River\n\n40) bhorner: M R2 Exhaust Calliope\n\n41) mneme: Sacrifice G3 River\nBuild B1 River\nBuild B3 Mneme\nBuild B3 Calliope\n\tBabamots: Now I don't think I'll be able to un-see mini-me.\n\n42) bhorner: Move Y3 Exhaust River\n\n43) mneme: Sacrifice B2 Mneme\nTrade B2 Y2 River\nTrade B1 Y1 River\nCatastrophe River Y\n\tDraw5PlayAll: IM-NEEM! IM-NEEM! IM-NEEM!\r\nNUH-MAY! NUH-MAY! NUH-MAY!\r\n\r\nThat should help it.\n\tbhorner: It helped me.\n\tmneme: The way I pronounce it, the epsilon (er, e) is really more pronounced like a schwa. neh-may. \n\n44) bhorner: Trade Y3 G3 Bhorner\n\tmneme: well, I -hope- that was reasonably predictable.\n\tbhorner: Made too many moves at the bus stop, didn't anticipate that. :)\n\n45) mneme: Sacrifice R2 Mneme\nAttack R2 Calliope\nPass\n\n46) bhorner: T R1 Y1 Bhorner\n\tmneme: That was wasn't exactly a trap, but I had thought it out beforehand. \n\tbhorner: It's been a while since I used blue to attack like that... I'm going to have to go back to the history. :) I don't have much hope to pick up the pieces, but I'll give it a go.\n\tbhorner: (back to the history to sort out what happened)\n\n47) mneme: Move Y1 Mneme Calliope\n\n48) bhorner: B Y2 Bhorner\n\tmneme: I'd call it using blue to defend or counterattack in this case, but I know what you mean.\n\tmneme: And yeah, you're in a bad spot at this pint, but best to play it out--everyone blunders sometimes.\n\n49) mneme: Build Y2 Calliope\n\n50) bhorner: Discover Y2 Bhorner G2 Doh\n\n51) mneme: Trade B3 G3 Calliope\n\n52) bhorner: B Y2 Doh\n\n53) mneme: Trade Y1 R1 Calliope\n\n54) bhorner: D Y2 Doh B3 Blurb\n\n55) mneme: Move R2 Calliope Doh\n\n56) bhorner: S G3 Bhorner\nB Y1 Blurb\nB Y3 Bhorner\nB Y3 Doh\n\n57) mneme: Sacrifice G3 Calliope\nBuild Y3 Mneme\nBuild R1 Doh\nBuild R2 Doh\n\n58) bhorner: Sacrifice Y2 Doh\nMove Y1 Blurb Mneme\nMove Y2 Blurb Mneme\nCatastrophe Mneme Y\n\n59) mneme: Build R2 Calliope\n\n60) bhorner: T Y1 G1 Bhorner\n\n61) mneme: Build R3 Calliope\n\n62) bhorner: Build Y1 Bhorner\n\n63) mneme: Build B1 Calliope\n\n64) bhorner: Discover Y1 Bhorner G2 Nored\n\n65) mneme: Trade R3 Y3 Calliope\n\n66) bhorner: B Y1 Nored\n\n67) mneme: Build R3 Calliope\n\n68) bhorner: Build Y1 Doh\n\n69) mneme: Sacrifice Y3 Calliope\nMove R1 Doh Bhorner\nMove R2 Doh Bhorner\nMove R2 Doh Bhorner\nCatastrophe Bhorner R\n\n70) bhorner: Trade Y3 R3 Bhorner\n\n71) mneme: Build B2 Calliope\n\n72) bhorner: Discover Y1 Nored B3 Fluid\n\n73) mneme: Move B2 Calliope Bhorner\n\n74) bhorner: Sacrifice Y3 Doh\nMove R3 Bhorner Calliope\nMove R3 Calliope Mneme\nMove Y1 Nored Bhorner\n\n75) mneme: Sacrifice Y2 Calliope\nMove B1 Calliope Bhorner\nMove B1 Calliope Bhorner\nCatastrophe Bhorner B\n\n\tmneme: It doesn't really matter. \n\tbhorner: If I had moved to a small blue, hen:\r\ns y3 doh\r\n m y1 doh calliope\r\n m y1 nored calliope\r\n m y1 nored calliope\r\n c yellow calliope\r\n\r\nYou couldn't move, and I could take your b2 at home...\r\nBut I agree, it doesn't really matter.\n\tmneme: It didn't, because my next move is to trade for a y3 which I could then use to finish up the kill after the capture. But yeah, it would have slowed things down for a turn. \n\nHomeworlds Online (SDG# 33134)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.10, Ended: 2017.10.15\nParticipants: ts52 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\n2) ts52: H Y3 B1 G3\n\n3) Babamots: Build G1 Babamots\n\tBabamots: Thanks for being in the tournament! Good luck!\n\n4) ts52: Build G1 Ts52\n\tts52: Thanks for organizing it! Good luck to you too.\n\n5) Babamots: Discover G1 Babamots B3 Kurl\n\n6) ts52: Discover G1 Ts52 B2 Gonzo\n\n7) Babamots: Build G1 Babamots\n\n8) ts52: Build G2 Ts52\n\n9) Babamots: Build G2 Kurl\n\n10) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\n\n11) Babamots: Trade G2 Y2 Kurl\n\n12) ts52: Trade G2 Y2 Gonzo\n\n13) Babamots: Build G2 Kurl\n\n14) ts52: Trade G3 R3 Gonzo\n\n15) Babamots: Trade G1 R1 Kurl\n\n16) ts52: Build R1 Gonzo\n\n17) Babamots: Build R1 Kurl\n\n18) ts52: Discover R3 Gonzo G3 Kermit\n\n19) Babamots: Build G1 Kurl\n\n20) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild Y1 Gonzo\n\n21) Babamots: Discover R1 Kurl B2 Betazed\n\n22) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Gonzo\nBuild Y1 Gonzo\n\n23) Babamots: Sacrifice G3 Babamots\nBuild R2 Betazed\nBuild R2 Kurl\nBuild G3 Babamots\n\n24) ts52: Trade G3 R3 Ts52\n\n25) Babamots: Sacrifice G3 Babamots\nBuild R3 Betazed\nBuild G3 Kurl\nBuild G3 Babamots\n\n26) ts52: Sacrifice Y2 Gonzo\nMove R1 Gonzo Kermit\nMove R1 Kermit Betazed\nCatastrophe Betazed Red\n\n27) Babamots: Discover G3 Kurl B2 Galorndon\n\n28) ts52: Move Y1 Gonzo Kermit\n\n29) Babamots: Discover G1 Kurl Y2 Iconia\n\tBabamots: So if you name several systems of the same color, do you pick other muppets? I can only think of a few muppets of each color. Are there any green ones besides Kermit and Oscar?\n\tts52: Typically I don't have too many. For green I typically have kermit, oscar and robin (kermit's nephew). For red I use elmo, but if I get more than that I have to scramble a bit. For blue I have gonzo and grover. And yellow is bigbird, and if I squint zoe.\n\n30) ts52: Discover G2 Gonzo Y3 Bigbird\n\tBabamots: I also thought of Little Bird and Bert. Telly is kind of red.\n\tBabamots: Pepe and Animal are pretty red. Cookie Monster, Harry Monster, and Sam Eagle are blue. Scooter and Janice are yellowish. Dr. Teeth and Sherlock Hemlock have green skin.\n\tts52: Excellent! I've used Scooter before, but Animal is a good one, as in Dr. Teeth. Thanks!\n\n31) Babamots: Discover G1 Iconia Y3 Xindus\n\n32) ts52: Build R1 Gonzo\n\n33) Babamots: Trade R1 B1 Kurl\n\tDraw5PlayAll: Xindus\r\nKurl\r\n\r\nBetazed seems to be a blue or green. Galorndon seems to be always blue.\n\tBabamots: Not on purpose. I pick Star Trek worlds for my system names almost totally at random.\n\tBabamots: Sometimes "Ferenginar" is an investment, or "Kronos" might be for an aggressive move. \n\tBabamots: Sometimes "Ferenginar" is an investment, or "Kronos" might be for an aggressive move. \n\n34) ts52: Move R2 Gonzo Xindus\n\n35) Babamots: Discover B1 Kurl R2 Cuellar\n\n36) ts52: Attack G1 Xindus\n\n37) Babamots: Sacrifice G3 Babamots\nBuild B2 Cuellar\nBuild B3 Cuellar\nBuild G3 Babamots\n\tDraw5PlayAll: But what are Xindus & Kurl & Cuellar?\r\nHeck, maybe you should just give me a full list of your system names and their meanings, without any spoilers.\n\tBabamots: Here are the names I use most often:\r\nIconia: Home of an ancient race that built mysterious gateways allowing instant travel between distant worlds.\r\nRomulus: Home of the manipulative, secretive Romulans. \r\nGalorndon: Site of a tense standoff between the Federation and the Romulans.\r\nKronos: Home of the Klingon warrior race.\r\nBetazed: Home of a telepathic race including TNG's Troi.\r\nCuellar: Site of a secret Cardassian fleet in defiance of their treaty with the Federation.\r\nKurl: Home of an extremely ancient, long-extinct race. Captain Picard was given a rare artifact from Kurl by his archeology mentor.\r\nXindus: A planet shown in ENT that's home to 5 intelligent lifeforms.\r\nVulcan: Home of a highly intelligent, logic-loving race that is friendly to the Federation.\r\nFerenginar: Home of the greedy, scheming, big-eared Ferengi.\n\n38) ts52: Sacrifice G2 Ts52\nBuild Y1 Kermit\nBuild Y2 Gonzo\n\n39) Babamots: Trade G3 R3 Babamots\n\n40) ts52: Sacrifice G2 Bigbird\nBuild G2 Gonzo\nBuild Y3 Kermit\n\n41) Babamots: Sacrifice G2 Kurl\nBuild G2 Galorndon\nBuild R1 Kurl\n\n42) ts52: Build R1 Xindus\n\n43) Babamots: Sacrifice Y2 Kurl\nMove G2 Galorndon Kermit\nMove G3 Galorndon Kermit\n\n44) ts52: Sacrifice Y3 Kermit\nMove R3 Kermit Gonzo\nMove Y1 Kermit Babamots\nMove Y1 Kermit Babamots\n\n45) Babamots: Sacrifice B2 Cuellar\nTrade B3 Y3 Cuellar\nTrade G2 Y2 Kermit\n\n46) ts52: Discover Y1 Gonzo G3 Robin\n\tBabamots: I'm having a hard time NOT thinking about this game, but I also need to focus on other things for today. I'm hoping that posting this note will give me enough closure of thought that I can get some work done :-).\n\n47) Babamots: Sacrifice Y2 Kermit\nMove B1 Cuellar Kermit\nMove Y3 Cuellar Xindus\n\n48) ts52: Sacrifice G2 Gonzo\nBuild G2 Gonzo\nBuild Y2 Babamots\nCatastrophe Babamots Yellow\n\tts52: I hear you. I have that problem a lot.\n\n49) Babamots: Sacrifice R2 Kurl\nAttack R2S Xindus\nAttack R1S Xindus\n\n50) ts52: Trade G2 B2 Gonzo\n\n51) Babamots: Sacrifice Y3 Xindus\nMove R1 Xindus Gonzo\nMove R1 Kurl Gonzo\nCatastrophe Gonzo R\nMove R2 Xindus Gonzo\n\n52) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Ts52\nMove B2 Gonzo Xindus\n\n53) Babamots: Build G2 Babamots\n\n54) ts52: Build G2 Xindus\n\tBabamots: I can't remember the last time I had only one marker in my home. Despite having more material, I'm awfully vulnerable.\n\n55) Babamots: Trade G2 Y2 Babamots\n\n56) ts52: Build B2 Xindus\n\n57) Babamots: Move R3 Babamots Xindus\n\n58) ts52: Move B2 Xindus Babamots\n\n59) Babamots: Sacrifice R2 Gonzo\nAttack B2S Babamots\nAttack B2S Xindus\n\n60) ts52: Discover G2 Xindus Y2 Bigbird\n\n61) Babamots: Sacrifice G3 Kermit\nBuild B2 Xindus\nBuild B3 Babamots\nBuild B3 Kermit\n\tBabamots: I sometimes name a system "Pakled" after I think I've done something really stupid.\n\tBabamots: (I've got a Pakled system in my ladder game right now. I'm getting walloped.)\n\n62) ts52: Build G2 Bigbird\n\n63) Babamots: Move B3 Babamots Bigbird\n\n64) ts52: Move G2 Bigbird Babamots\n\n65) Babamots: Sacrifice R3 Xindus\nAttack G1S Xindus\nAttack G2S Bigbird\nAttack G2S Babamots\n\n66) ts52: Build R1 Ts52\n\n67) Babamots: Trade G2 R2 Babamots\n\n68) ts52: Build G2 Ts52\n\n69) Babamots: Build B3 Bigbird\n\n70) ts52: Trade G2 Y2 Ts52\n\n71) Babamots: Sacrifice Y2 Babamots\nMove B3 Bigbird Ts52\nMove B3 Bigbird Ts52\n\n72) ts52: Move R3 Ts52 Bigbird\n\n73) Babamots: Sacrifice R2 Babamots\nAttack R1S Ts52\nAttack Y2S Ts52\n\tBabamots: Two by two, ships of blue :-).\n\tts52: :) Well played. I was too focused on the attack by catastrophe to notice the threat of just attack. Something I have to learn to look for.\n\n74) ts52: Build G2 Ts52\n\n75) Babamots: Attack G2S Ts52\n\tBabamots: (Red alert)\n\tBabamots: I prefer winning by hostile takeover rather than by system marker catastrophe. It takes fewer ships, and it does seem to me that people are less likely to see it coming.\n\n76) ts52: Build G2 Ts52\n\tts52: Indeed. I think at this point I can only delay the inevitable.\n\tBabamots: You can make it another last another three moves, I think.\n\n77) Babamots: Build G3 Ts52\nCatastrophe Ts52 G\n\tBabamots: (red alert)\n\tBabamots: I probably don't need to tell you "red alert" when a passing move from you would be an immediate loss :-).\n\n\tts52: Not my best move, now that I think about it more, but taking your r1 only buys me one or two more turns, and you're not going to make a big enough mistake for me to capitalize. Good game.\n\tBabamots: Good game! I'll record it for the tournament.\n\tts52: Thanks!\n\nHomeworlds Online (SDG# 33139)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.11, Ended: 2017.9.23\nParticipants: fogus (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) fogus: Homeworld Y3 B2 G3\n\n3) mneme: Build G1 Mneme\n\n4) fogus: Build G1 Fogus\n\n5) mneme: Trade G1 B1 Mneme\n\n6) fogus: Trade G1 B1 Fogus\n\n7) mneme: Build G1 Mneme\n\n8) fogus: Build G1 Fogus\n\n9) mneme: Trade G1 Y1 Mneme\n\n10) fogus: Trade G1 Y1 Fogus\n\n11) mneme: Build G1 Mneme\n\n\tmneme: Erg. I reported this, but really, it's early and a weekend. Do you want to restart?\n\nHomeworlds Online (SDG# 33155)\nVariants: "Hard time"\nStarted: 2017.9.12, Ended: 2017.9.15\nParticipants: goulo (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B1 R3 G3\n\n2) goulo: Homeworld R2 B3 G3\n\n3) ajo: Build G1 Ajo\n\tgoulo: hi!\n\n4) goulo: Build G1 Goulo\n\n5) ajo: Trade G3 Y3 Ajo\n\tajo: Hi! I might be slower than this in the coming days, fyi, but I'll try not to forfeit by timeout. ;)\n\n6) goulo: Trade G3 Y3 Goulo\n\n7) ajo: Build Y1 Ajo\n\n8) goulo: Build Y1 Goulo\n\tgoulo: OK! :)\n\n9) ajo: Discover Y1 Ajo G2 Alpha\n\n10) goulo: Discover Y1 Goulo B1 Blueto\n\n11) ajo: Build Y1 Ajo\n\n12) goulo: Build Y2 Goulo\n\n13) ajo: Build Y2 Alpha\n\n14) goulo: Trade Y2 R2 Goulo\n\n15) ajo: Trade Y1 B1 Ajo\n\n16) goulo: Build R1 Goulo\n\n17) ajo: Build B2 Ajo\n\n18) goulo: Trade R2 B2 Goulo\n\n19) ajo: Move B2 Ajo Alpha\n\n20) goulo: Discover B2 Goulo G1 Verdeto\n\n21) ajo: Build G2 Ajo\n\n22) goulo: Trade B2 G2 Verdeto\n\n23) ajo: Build G3 Ajo\n\n24) goulo: Build G3 Goulo\n\tajo: That was a strange trade, when you could have built b2 in Verdeto...\n\n25) ajo: Discover G2 Ajo B2 Beta\n\tgoulo: it seemed better than setting you up to build b3 and me not being able to without getting catastrophed; but i won't pretend to be a genius at this game. ;)\n\n26) goulo: Build G3 Verdeto\n\n27) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B2 Ajo\nBuild B3 Alpha\n\n28) goulo: Move Y1 Blueto Alpha\n\n29) ajo: Trade B2 R2 Alpha\n\n30) goulo: Move Y1 Alpha Verdeto\n\n31) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild B1 Alpha\nBuild R1 Alpha\n\n32) goulo: Discover G3 Verdeto Y2 Flavo\n\n33) ajo: Move B3 Alpha Verdeto\n\n34) goulo: Sacrifice G2 Verdeto\nBuild G2 Flavo\nBuild Y1 Goulo\n\n35) ajo: Sacrifice R1 Alpha\nAttack Y1 Verdeto\n\n36) goulo: Discover Y1 Goulo R1 Rugheto\n\n37) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Ajo\nBuild Y3 Verdeto\n\n\tgoulo: man it's crazy how ridiculously far behind i am! thanks for the game; you totally outplayed me here!\n\tajo: I was actually worried in the first couple turns that I was a move behind; but your moving out to a yellow star, and then bunching your greens together, made it easy for me to recoup. Good game. :)\n\tDraw5PlayAll: Huh?\n\nHomeworlds Online (SDG# 33159)\nVariants: "Hard time"\nStarted: 2017.9.13, Ended: 2017.9.28\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld R1 B3 G3\n\n2) dlwillson: Homeworld B3 R2 G3\n\n3) Felix: Build G1 Felix\n\n4) dlwillson: B G1 Dlwillson\n\n5) Felix: Trade G1 R1 Felix\n\tdlwillson: You should accept my other challenge, too...\n\tFelix: I didn't see it for some reason!\r\n\r\nHave fun and good luck :)\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) Felix: Build R2 Felix\n\n8) dlwillson: B R2 Dlwillson\n\n9) Felix: Trade R2 Y2 Felix\n\n10) dlwillson: T R2 Y2 Dlwillson\n\n11) Felix: Build R2 Felix\n\tdlwillson: Copy cat turns :-(\n\n12) dlwillson: Build R2 Dlwillson\n\tFelix: It's inevitable. I do not mind!\n\n13) Felix: Discover R2 Felix G2 Out\n\n14) dlwillson: Discover R2 Dlwillson G1 Field\n\n15) Felix: Build R3 Out\n\n16) dlwillson: Build R3 Field\n\n17) Felix: D R1 Felix G2 Krimbus\n\n18) dlwillson: T R1 B1 Dlwillson\n\n19) Felix: B Y1 Felix\n\n20) dlwillson: M B1 Dlwillson Field\n\n21) Felix: T Y1 B1 Felix\n\n22) dlwillson: Trade R3 Y3 Field\n\n23) Felix: Move B1 Felix Out\n\n24) dlwillson: Build Y1 Dlwillson\n\n25) Felix: Trade R3 Y3 Out\n\n26) dlwillson: Discover Y1 Dlwillson B1 Sea\n\tFelix: This has been an oddly symmetrical game so far.\n\n27) Felix: Move R2 Out Sea\n\tdlwillson: I think that's going to change soon. Somewhere in the next three turns, or four at most. The bank is running too low for all this peaceful copy-catting to continue much longer.\n\n28) dlwillson: D Y1 Sea B2 Sky\n\tFelix: Voila. :)\n\n29) Felix: Build B2 Out\n\n30) dlwillson: Build B2 Field\n\n31) Felix: Discover B2 Out G1 Linter\n\n32) dlwillson: Trade B2 G2 Field\n\n33) Felix: B B2 Out\n\n34) dlwillson: B B3 Field\n\n35) Felix: Build Y1 Out\n\n36) dlwillson: Move G2 Field Sky\n\n37) Felix: Move Y1 Out Linter\n\n38) dlwillson: M B3 Field Krimbus\n\n39) Felix: Build Y1 Linter\n\n40) dlwillson: B G1 Sky\n\n41) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y3 Felix\nBuild R1 Sea\n\n42) dlwillson: B G3 Sky\n\n43) Felix: S Y2 Felix\nM R1 Krimbus Linter\nM R2 Sea Dlwillson\n\tFelix: Thought it was too risky, then decided to do it anyway. :)\n\n44) dlwillson: Sacrifice Y3 Field\nMove G1 Sky Linter\nMove G2 Sky Linter\nMove G3 Sky Linter\nCatastrophe Linter G\n\tdlwillson: That is not what you were supposed to do.\n\n45) Felix: Trade B1 R1 Out\n\n46) dlwillson: Attack R2 Dlwillson\n\tFelix: Sorry for the delayed undo. Realized I made a grave mistake!\n\tDraw5PlayAll: How?\n\tdlwillson: <sigh> Now, I have to *think*. Dangit.\n\n47) Felix: Move Y3 Out Field\n\tdlwillson: I'm not sure that was correct, but it sure was fun.\n\n48) dlwillson: Trade R2 Y2 Field\n\tFelix: It has certainly set back my doomsday machinations!\n\n49) Felix: Move R1 Out Field\n\n50) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Field\nBuild Y1 Field\nBuild Y3 Dlwillson\nCatastrophe Field Y\n\tFelix: This will be more difficult than I hoped. You're not behaving!\n\n51) Felix: Attack B1 Field\n\n52) dlwillson: Move R2 Dlwillson Field\n\n53) Felix: Build R2 Field\n\tdlwillson: And I'm pretty sure that was wrong. But it was fun, too. I'll just keep making fun, wrong moves until one of us wins. :-)\n\n54) dlwillson: Attack R2 Field\n\tFelix: I like your style! Your wild flailing is really setting back my plans :P\n\n55) Felix: Build R3 Field\nCatastrophe Field Red\n\tdlwillson: I have successfully stopped your first wave, and am now shooing your kids off my lawn!\n\n56) dlwillson: Trade Y3 G3 Dlwillson\n\tFelix: Aw, nuts. I knew I shouldn't have let that red catastrophe sit for so long. Well played.\n\n57) Felix: Build B1 Field\n\n58) dlwillson: Build B2 Krimbus\n\n59) Felix: Trade Y3 G3 Felix\n\tdlwillson: That's one of Wil's puzzlers! What is the correct response?\r\n1) Build an r3\r\n2) Capture the r2\r\n3) Something else\r\nAnd why?\n\n60) dlwillson: Trade B2 Y2 Krimbus\n\n61) Felix: Build G1 Felix\n\tFelix: I almost always build R3s when I can :)\n\n62) dlwillson: B Y1 Dlwillson\n\tdlwillson: In my position, attacking your r2 was better, because it encouraged you to build the r3, which gave me the first "free" move. I'm still not out of danger. *LOTS* of Northern kids still on my lawns.\n\n63) Felix: S Y2 Out\nM B1 Field Dlwillson\nM B1 Field Dlwillson\n\n64) dlwillson: S Y2 Krimbus\nM Y1 Dlwillson Sea\nD Y1 Sea B2 Also Sky\n\n65) Felix: Trade B2 Y2 Out\n\n66) dlwillson: B B2 Krimbus\n\n67) Felix: S Y2 Out\nM R1 Sea Dlwillson\nPass\n\tFelix: Blah. This sure isn't turning out how I hoped, though. When did you nearly monopolize yellow while I wasn't looking?\n\n68) dlwillson: B B1 Krimbus\n\tdlwillson: That took a lot of thinking! I finally decided to go with denial, but at a very high cost.\n\n69) Felix: T B1 R1 Dlwillson\n\n70) dlwillson: Discover Y2 Dlwillson B1 Sea\n\tFelix: Stop foiling my plans!\n\n71) Felix: Sacrifice G1 Felix\nBuild R2 Dlwillson\nCatastrophe Dlwillson Red\n\tdlwillson: Stop making plans that are so hard to foil oh, so that I can begin to make plans of my own. And then you can foil my plans instead!\n\tdlwillson: Speech-to-text is pretty good but not perfect yet.\n\n72) dlwillson: Sacrifice B3 Krimbus\nTrade G3 R3 Dlwillson\nTrade Y1 G1 Also\nTrade Y1 G1 Sky\n\tdlwillson: What is the protocol around captures in the home system? We have the relatively common situation where we can endlessly capture the same piece back and forth. I generally avoid capturing any piece my opponent can capture back, but we're now in the situation where it matters more than a little.\n\n73) Felix: T B1 R1 Dlwillson\n\n74) dlwillson: Attack R1 Dlwillson\n\tFelix: Hmm, I generally try to find creative alternatives when possible so those repetitive situations don't occur!\n\n75) Felix: Pass\n\n76) dlwillson: Trade B2 Y2 Krimbus\n\tFelix: You deflected my attack so well. Where did all my material go? :(\n\n77) Felix: T G3 R3 Felix\n\tdlwillson: I was thinking you'd trade an r1 for a g1 at dlwillson last turn, then when I swapped b3 to r3, you'd build something (the big blue?) and have four at dlwillson, and I probably wouldn't be able to recover.\n\n78) dlwillson: Build B1 Krimbus\n\tFelix: Huh. I didn't even think of that. But what would have stopped you from just attacking my g1 at that point without trading for the r3?\n\tFelix: Oh, do you mean after I catastrophed red?\n\tFelix: I've made a lot of mistakes during this attack run, and you defended insanely well. Great game!\n\n79) Felix: T R3 Y3 Felix\n\n80) dlwillson: T B1 R1 Krimbus\n\n\tFelix: If I think there's a chance my opponent could still make a mistake, I tend to prefer playing it out. But there's no hope for me now. Very well played. I admit I thought I had you and am a bit stunned at how you undermined my every approach with the doomsday devices. One for the books. You deserve that top slot!\n\tdlwillson: Thanks! Hard fought game! I thought I was going to get you with yellow way back when. Then, I saw the doomsday machine and had to burn half my fleet to stop it! Excellent game.\n\tdlwillson: It would be cool if Andy and John theatered this.\n\tDraw5PlayAll: If you want that, do them a favor and always call your systems Altair, Betelgeuse, Caster, etc in future games.\n\tdlwillson: That matters? If it does, I'll do it, but I had a system, already with Field and Forest, Sea and Sky, Golden and Sol, and ... Um ... Mars and something.\n\tFelix: It doesn't matter. They just sub those system names in automatically when they prepare a transcript of the game, from what I've been told.\n\twil: It is a large matter of cut and pasting and editing... eliminating the chatter... find and replace the system names globally as well as the names of the players... If we find a game we'd like to see them try... A game name and description of what would be of interest (frontal attack, bluebird, universe reboots, monopolizing economies etc.) I am sure they'd really appreciate editing.\n\nHomeworlds Online (SDG# 33140)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.13, Ended: 2017.10.22\nParticipants: mneme (S), shoejitsu (N)\nWinner: mneme\n\n1) shoejitsu: Homeworld G2 R1 B3\n\n2) mneme: Homeworld B3 R2 G3\n\n3) shoejitsu: Build B1 Shoejitsu\n\n4) mneme: Build G1 Mneme\n\n5) shoejitsu: Build B1 Shoejitsu\n\n6) mneme: Trade G1 B1 Mneme\n\n7) shoejitsu: Trade B1 Y1 Shoejitsu\n\n8) mneme: Build G1 Mneme\n\n9) shoejitsu: Build Y1 Shoejitsu\n\n10) mneme: Trade G1 Y1 Mneme\n\n11) shoejitsu: Trade B1 G1 Shoejitsu\n\n12) mneme: Build Y2 Mneme\n\n13) shoejitsu: Discover G1 Shoejitsu R3 Soar\n\n14) mneme: Discover Y2 Mneme G1 Thalia\n\n15) shoejitsu: Build Y2 Shoejitsu\n\n16) mneme: Sacrifice G3 Mneme\nBuild Y2 Mneme\nBuild Y3 Mneme\nBuild Y3 Thalia\n\n17) shoejitsu: Trade Y1 B1 Shoejitsu\n\n18) mneme: Trade Y3 G3 Mneme\n\n19) shoejitsu: Move Y2 Shoejitsu Soar\n\n20) mneme: Discover Y2 Thalia B3 Euterpe\n\n21) shoejitsu: Build Y1 Soar\n\n22) mneme: Trade Y2 R2 Mneme\n\n23) shoejitsu: Build Y2 Shoejitsu\n\n24) mneme: Sacrifice G3 Mneme\nBuild Y3 Mneme\nBuild Y3 Euterpe\nBuild R1 Mneme\n\n25) shoejitsu: Trade B1 R1 Shoejitsu\n\n26) mneme: Trade Y2 R2 Euterpe\n\n27) shoejitsu: Move R1 Shoejitsu Soar\n\n28) mneme: Trade R2 G2 Mneme\n\n29) shoejitsu: Discover R1 Soar G1 Orion\n\n30) mneme: Trade Y3 G3 Mneme\n\n31) shoejitsu: Build R2 Orion\n\n32) mneme: Sacrifice G2 Mneme\nBuild Y2 Euterpe\nBuild Y3 Mneme\n\n33) shoejitsu: Build G2 Soar\n\n34) mneme: Move R1 Mneme Thalia\n\n35) shoejitsu: Build G2 Soar\n\n36) mneme: Build G3 Mneme\n\n\tshoejitsu: While I didn't mean for this to go to time... I didn't feel like I had much to do anyway :D good game!\n\tmneme: Yeah, that's fair enough. Good game!\n\nHomeworlds Online (SDG# 33160)\nVariants: "No undo, Unrated, Sinister, Hard time"\nStarted: 2017.9.13, Ended: 2017.9.30\nParticipants: dlwillson (S), Felix (N), wil (E)\nWinner: wil\n\n1) Felix: Homeworld Y2 B3 G3\n\tdlwillson: Hi guys! Thanks for accepting the challenge! This is just a friendly game. Un-ranked, no take backs, sinister. Cause the player on your left to lose, and you win!\n\tdlwillson: I gave it a short starting bank, but a big max bank in case one of us has a business trip or vacation in the Himalayas or somewhere else there's no signal.\n\n2) wil: H Y2 B1 G3\n\tFelix: No problem, should be fun :)\n\twil: How did I sign up for a multiple game? Oh well....its you two...maybe it will work.\n\twil: So I gotta take out Willson...hmmm\n\n3) dlwillson: H B3 Y1 G3\n\n4) Felix: Build G1 Felix\n\twil: Reminder for attacks... ship must also be specified as belonging to a particular player by appending that player's seat designation (eg. G2S, B1E).\n\twil: Not that anyone has red\n\tdlwillson: Wil: I like movies live music, and Scotch.\n\tFelix: Interesting. I assumed at least one of you would take some red! \r\n\r\n@wil Thanks for the tip :)\r\n\r\n@dlwillson bahahaha, I see what you did there.\n\n5) wil: B G1 Wil\n\twil: My plan is taking you on a long walk in the woods...\n\n6) dlwillson: B G1 Dlwillson\n\twil: I'd like to devise a tourney where everyone starts at.the same game\r\n..one that is half over, 3/4ths the pieces in play, and evenly matched...a coin flip decides who gets which side and the other person goes first... As an attempt to shorten tourney duration...thoughts?\n\twil: I'd also like "two moves to mate" puzzles.\n\twil: And a root beer float\n\twil: Not really, I don't like root beer...but I'll have that scotch.\n\n7) Felix: Trade G1 R1 Felix\n\tdlwillson: That tournament idea is great! And, the positions don't need to be balanced, you just play two games from those positions and switch seats for the second game.\n\tFelix: Interesting idea. How do you get the game to that midway point in the first place, though?\n\n8) wil: Trade G1 Y1 Wil\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\twil: I'm thinking either just pick a tight game, or make up a tight game... that will be one of the turning points in this game...when folks can stop and say...this is where I went wrong...lets back up to that point and see where it goes. \n\n10) Felix: B R1 Felix\n\n11) wil: B Y1 Wil\n\n12) dlwillson: B G1 Dlwillson\n\n13) Felix: Trade R1 Y1 Felix\n\tdlwillson: I think that's a great idea. A little like duplicate bridge.\n\n14) wil: D Y1 Wil G3 G3\n\twil: Yes, I hadn't thought of that, but yes.\n\n15) dlwillson: B R1 Dlwillson\n\n16) Felix: Build Y2 Felix\n\n17) wil: S G3 Wil\nB Y2 G3\nB Y3 G3\nB Y3 Wil\n\n18) dlwillson: Discover R1 Dlwillson B2 Sea\n\twil: If Felix attacks it gives him the advantage over me yet gives Willson the advantage over him? \n\tdlwillson: Good Lord! What's going on around here?!\r\n\r\nAnd yes, that's a good synopsis of sinister.\n\n19) Felix: Discover Y1 Felix G1 Out\n\n20) wil: T Y3 G3 Wil\n\tFelix: So, so tempting...\n\twil: Not when I actually just gave you the yellow threes dangit!\n\n21) dlwillson: B R1 Dlwillson\n\n22) Felix: Move Y1 Out G3\nCatastrophe G3 Yellow\n\n23) wil: Build G1 Wil\n\tFelix: Also tempting, but I had to serve the greater good!\n\tdlwillson: Your charity is noted, but any credit is moderated by a note that Wil is to your left.\n\twil: Wow...traded out getting into the threes...\n\n24) dlwillson: Build R2 Dlwillson\n\tDraw5PlayAll: Whoa, this confused me! It felt like I had been eliminated from the 4P game for some reason...\n\tDraw5PlayAll: About your tournament idea, it could be that one player picks the position and the other player picks which side they are on, so you have an incentive to balance the position or risk getting the worse side. \r\n\r\nPlaying two games from an unbalanced position will recreate the one thing I dislike about the game ChessCards, which is that most of the time there is an easy win that P1 has to demonstrate for P2 and you just get a draw every time.\r\n\r\nAnd wil, this is not a comment about your current game, just on an idea you guys had.\n\twil: lol\n\n25) Felix: B R2 Felix\n\n26) wil: T G3 R3 Wil\n\n27) dlwillson: Discover R2 Dlwillson Y2 Golden\n\twil: I've goofed up here royally\n\n28) Felix: D R2 Felix B1 Glint\n\n29) wil: B R2 Wil\n\tFelix: Likely I have as well, for passing up those Y3s!\n\n30) dlwillson: S G3 Dlwillson\nB R2 Sea\nB R3 Golden\nB R3 Dlwillson\n\n31) Felix: B R3 Felix\n\n32) wil: B Y1 Wil\n\n33) dlwillson: T R3 Y3 Dlwillson\n\n34) Felix: Build R3 Felix\n\n35) wil: T R3 G3 Wil\n\n36) dlwillson: Sacrifice Y3 Dlwillson\nMove R1 Sea Glint\nMove R1 Glint Felix\nCatastrophe Felix R\nDiscover R2 Golden B3 Eastern_sky\n\n37) Felix: Sacrifice Y2 Felix\nMove R2 Glint Golden\nMove R2 Golden Dlwillson\n\tdlwillson: 3 is different from 2\n\n38) wil: D Y1 Wil G3 G3\n\tFelix: This is fun. Buck the system :)\n\n39) dlwillson: B R1 Dlwillson\nC Dlwillson R\n\twil: <wil's eyebrows raise, and pretends to casually look away whistling nonchalantly>\n\tFelix: They say offense is the best defense.... or something like that.\n\n40) Felix: Build G1 Felix\n\tdlwillson: I'm not dead... I'm feeling better...\n\n41) wil: B Y1 Wil\n\tFelix: ... I've made a terrible mistake.\n\n42) dlwillson: M R3 Golden Dlwillson\n\n43) Felix: Discover G1 Felix B1 Out\n\n44) wil: B Y2 G3\n\n45) dlwillson: T R2 Y2 Sea\n\n46) Felix: Build G1 Felix\n\tdlwillson: I should've done that last turn... Oops!\n\n47) wil: S Y2 G3\nD Y1 Wil B3 B3\nD Y1 Wil Y3 Y3\n\tFelix: Captain, your petulant little attacks have left our fleet (what remains of it) floundering, without access to propulsion technology. What should we do?\r\n\r\n"KEEP FIRING!!!!!!!!"\r\n\r\nSir, we have no weapons either. What shall we do?\r\n\r\n"....LUDICROUS SPEED.... GO!"\r\n\r\nBut I already told you, we have no propu-\r\n\r\n"LUDICROUS GREEN.... GO!!!!"\r\n\r\nWell... alright then.\n\n48) dlwillson: Build G2 Dlwillson\n\n49) Felix: Build G2 Out\n\tdlwillson: Do you play Magic? Back when the game made sense, I used to call green stompy decks "stupid green", because you didn't have to know any strategy or do anything clever. Just play the cards and stomp the crap out of the other guy before s/he does something crafty. (Like suicide black, but without the risk of killing yourself first accidentally.)\n\twil: Not I, but stupid green is a thing...\n\tdlwillson: I can never *quite* get rid of the urge to bring black into Homeworlds somehow. And I'm embarassed to admit that I just *now* realized that the Rainbow colors are the Magic colors. No, wait... They're not. Rainbow has yellow; MTG has white. So, I guess there's a partial Moody Blues transformation "red is grey and yellow white"... Something something... I need to get back to work.\n\tdlwillson: I suppose technically, there's no reason black *couldn't* be in the game *without* adding rules. It just wouldn't carry a technology, because it doesn't have a color. Being forced to choose one black pyramid for something on turn zero could be a mild handicap for a strong player.\n\tdlwillson: Being forced to choose a black *ship* could be a moderate handicap for a stronger player.\n\tFelix: That could actually be a bit interesting. It doesn't carry any technology in itself, but it can passively use the tech of other ships or stars either by sharing a star or from sacrifice moves. Interesting, but beyond that one use as a handicap piece, I'm not really sure what other use there'd be for the concept. I never played Magic. I wasn't even allowed to play with Pokemon cards as a kid :P\n\n50) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 G3\nBuild Y3 B3\n\twil: I have a new player, yet to learn the complexities of the game, wants to add a purple... also wants to add docking to the game (a one going into a two and increasing power and or tech but not both)\n\n51) dlwillson: Sacrifice G2 Dlwillson\nBuild R1 Eastern_sky\nBuild R1 Eastern_sky\n\twil: well dang...no coin moving...so much for not double checking\n\n52) Felix: T G3 Y3 Felix\n\tdlwillson: no coin moving?\n\twil: No undo... I've used the solo undo here often as the turn token...\n\tdlwillson: I'm still not sure I understand, but I will not turn off undo anymore.\n\n53) wil: S Y2 G3\nM Y3 G3 Wil\nM R2 Wil Eastern_sky\nC Eastern_sky R\n\tFelix: The docking idea has some potential as a variant... but I just don't see the need to tweak the game at all. It's already so well balanced. I do like the idea of some variants though. There is a "worldships" variant on board game geek that has a lot of potential, though I've never played it.\n\twil: Yes, I told the kid (but he already knows everything) when he learns to beat me regularly...then he should contemplate improving the game that I enjoy more than chess...that I played for 50 years....\n\n54) dlwillson: S G1 Dlwillson\nB Y2 Sea\n\n55) Felix: Build G1 Felix\n\n56) wil: B G2 Wil\n\n57) dlwillson: Move Y2 Sea G3\n\twil: So is it last man standing or first one to knock out the homeworld to their left? Vastly different strategy....if you need to be strong enough to be attacked after attacking...\n\twil: So you guys don't use a turn token in live play? So you can rearrange ships.and stars a few times before you make your final decision? And then when you have come.to.the conclusion slide.the coin to the other player after multiple "undo's"?\n\tdlwillson: The first player to lose causes the player to his right to win.\n\n58) Felix: Discover G1 Felix B1 Doubt\n\n59) wil: T G2 R2 Wil\n\twil: Ah, thanx... And you both are to be commended on the speed of this game!! \n\twil: Idk what you are plotting dl\n\n60) dlwillson: Move Y2 Sea Doubt\n\n61) Felix: Build G2 Doubt\n\tdlwillson: I forgot to answer about the token. No, I've never used a turn-token in real life. I have used a chess-clock, though... Is it still a chess-clock, if one is using it for Homeworlds?\n\tdlwillson: I don't know what I'm plotting, either. I hope I figure it out, soon.\n\tFelix: I've not used the turn token much, myself, though I've tried. Usually we just end up doing it verbally: "Ok, your turn" instead of with an actual token.\r\n\r\n\n\n62) wil: B G2 Wil\n\n63) dlwillson: T Y2 R2 Doubt\n\n64) Felix: Trade G2 Y2 Out\n\n65) wil: T G1 B1 Wil\n\n66) dlwillson: A G2N Doubt\n\n67) Felix: Build G1 Doubt\n\tdlwillson: It's annoying that I have to say g2n when g2 is unambiguous.\n\n68) wil: B G2 Wil\n\tDraw5PlayAll: I want to use turn tokens and the end up forgetting.\n\tdlwillson: I've tried to to use turn tokens, but they always fall. Someone forgets, someone accepts the nonverbal, non-token cue, and that's the end of it.\n\n69) dlwillson: S G2 Doubt\nB R1 Doubt\nB R1 Dlwillson\n\n70) Felix: Build G2 Out\n\n71) wil: B B2 Wil\n\n72) dlwillson: T R3 G3 Dlwillson\n\n73) Felix: T G2 R2 Out\n\n74) wil: M G2 Wil Y3\n\n75) dlwillson: Sacrifice R2 Doubt\nAttack G1N Doubt\nAttack G1N Doubt\n\n76) Felix: Build G2 Out\n\n77) wil: T Y3 G3 B3\n\n78) dlwillson: Sacrifice R1 Doubt\nAttack Y1E G3\n\n79) Felix: Build Y3 Out\n\n80) wil: D Y1 Y3 B2 B2\n\n81) dlwillson: Sacrifice G1 Doubt\nBuild G1 Dlwillson\n\n82) Felix: T G2 B2 Out\n\n83) wil: D B2 Wil G3 Gee3\n\n84) dlwillson: Move Y2 G3 Doubt\n\n85) Felix: Move B2 Out G3\n\tdlwillson: You both look pretty stacked. I'm feeling pretty puny.\n\n86) wil: S G2 Y3\nB G2 B3\nB Y3 B3\n\tFelix: I'm not really sure how I've been able to build back up after my flailing, petulant attack against you early on. Wil was the real beneficiary of all that tomfoolery.\n\n87) dlwillson: Move Y1 G3 Doubt\n\n88) Felix: Build B2 G3\n\n89) wil: M B1 Wil G3\n\n90) dlwillson: B G2 Doubt\n\n91) Felix: T B2 R2 G3\n\n92) wil: B B2 G3\n\n93) dlwillson: M G2 Doubt B2\n\n94) Felix: Sacrifice R2 G3\nAttack B1E G3\nAttack B2E G3\n\n95) wil: S G3 B3\nB G2 Wil\nB G3 B3\nB B3 Gee3\n\n96) dlwillson: S R1 Dlwillson\nA Y1E B2\n\n97) Felix: Sacrifice Y3 Out\nMove B1 G3 Wil\nMove B2 G3 Wil\nMove B2 G3 Wil\nCatastrophe Wil Blue\n\n98) wil: S Y3 B3\nM G2 Wil Dlwillson\nM G2 Wil Dlwillson\nM B3 Gee3 Out\nC Dlwillson G\n\twil: Ya gave me access!\n\tFelix: Oops! Sorry Dlwillson D:\n\tdlwillson: LOL! :-) Excellent!\r\n\n\tdlwillson: That was an excellent game, I think. Felix, we both did something. I sacrificed my red. Really good game. I'll be more careful next time. :-)\n\tFelix: It's so hard to prepare for the repercussions of your moves when there are two opponents between each of your turns!\n\tdlwillson: Shall we do it again, but with take-backs?\n\tFelix: I'm game!\n\twil: I'm in...as long as you guys play just like you did...I thought you all were AWESOME!!\n\n\nHomeworlds Online (SDG# 33142)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.13, Ended: 2017.9.26\nParticipants: eliscinsky (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) eliscinsky: Homeworld R2 B3 G3\n\n3) mneme: Build G1 Mneme\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) mneme: Trade G1 R1 Mneme\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) mneme: Build R1 Mneme\n\n8) eliscinsky: Build Y1 Eliscinsky\n\n9) mneme: Build G1 Mneme\n\n10) eliscinsky: Discover Y1 Eliscinsky B1 Alpha\n\n11) mneme: Trade G3 Y3 Mneme\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) mneme: Discover R1 Mneme G3 Calliope\n\n14) eliscinsky: Build G1 Eliscinsky\n\n15) mneme: Build G2 Mneme\n\n16) eliscinsky: Trade G1 B1 Eliscinsky\n\tmneme: Have a good (the great tournament) game!\n\n17) mneme: Build R2 Calliope\n\n18) eliscinsky: Build G1 Eliscinsky\n\n19) mneme: Sacrifice Y3 Mneme\nMove G1 Mneme Calliope\nMove G1 Calliope Alpha\nMove G1 Alpha Eliscinsky\nCatastrophe Eliscinsky G\n\n20) eliscinsky: Trade Y1 G1 Eliscinsky\n\n21) mneme: Build R2 Mneme\n\n22) eliscinsky: Build G1 Eliscinsky\n\n23) mneme: Build R3 Calliope\n\n24) eliscinsky: Trade G1 Y1 Eliscinsky\n\n25) mneme: Trade R2 Y2 Mneme\n\n26) eliscinsky: Build G1 Eliscinsky\n\n27) mneme: Sacrifice Y2 Mneme\nDiscover R2 Calliope G1 Melpomene\nMove R2 Melpomene Eliscinsky\n\n28) eliscinsky: Move G1 Eliscinsky Alpha\n\n29) mneme: Sacrifice R3 Calliope\nAttack Y1 Eliscinsky\nAttack G1 Eliscinsky\nAttack B1 Eliscinsky\n\tmneme: good game!\n\teliscinsky: Thanks. I still have no Idea what I'm doing LOL!\n\tmneme: I can play a teaching game if you like!\r\n\r\nFundamentally, the game is all about making sure you have what you need to win, while denying it to your opponent, by manipulating not only your own pieces but the supply. \r\n\r\nThis was why my move on turn 10 (click on history to see a listing style of the game) was very good, and fundamentally won the game; I gave up my large, but I reduced you to smalls without a strong prospect if getting anything larger, with me still keeping a strong red growth engine, so I could build an overpowering attack before you could recover. \r\n\r\nAs it was, you could have delayed me for another two turns by growing ships -- once I started capturing, you could delay me by just capturing smalls back, so I needed enough red power that I could continuously capture until the game ended. If you'd grown a ship, I'd have grown a medium red -- that would have given me a combined 7 attack, which -still- wasn't enough to capture 6 ships; I sac large red to take 3, you capture one back and have 4, I sac a medium red and take 2, you capture one back and have 3, I sac a medium red and have 2, and you capture one back and have 2 and I'm out of artillery. So I'd have gone one -more- round of prep and grown another large red before going off; at that point even if you went to 7 ships (7 was basically your limit, too, since your home could only hold 3 greens, 2 blues, and 3 yellows--and since you can't capture back a medium if I take your only one, the 3rd green was a non-starter), I could take them all; 1 3 red to drop you from 7 to 4 (which could go to 5), another 3 red to go from 5 to 2, and the two red ships could take out the remaining 3 ships even if you grew or captured every turn.\n\n\nHomeworlds Online (SDG# 33169)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.14, Ended: 2017.9.23\nParticipants: Remneb (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B1 Y2 G3\n\n2) Remneb: Homeworld R1 B2 G3\n\n3) Babamots: Build G1 Babamots\n\n4) Remneb: Build G1 Remneb\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) Babamots: Build R1 Babamots\n\n8) Remneb: Build G1 Remneb\n\n9) Babamots: Build R2 Babamots\n\n10) Remneb: Trade G1 B1 Remneb\n\n11) Babamots: Discover R2 Babamots B3 Galorndon\n\n12) Remneb: Build G1 Remneb\n\n13) Babamots: Build R2 Babamots\n\n14) Remneb: Build Y1 Remneb\n\n15) Babamots: Discover R2 Babamots B3 Vulcan\n\n16) Remneb: Discover Y1 Remneb G3 Malvern\n\n17) Babamots: Sacrifice G3 Babamots\nBuild R2 Vulcan\nBuild R3 Galorndon\nBuild R3 Babamots\n\n18) Remneb: Discover G1 Remneb Y3 Altair\n\tBabamots: Aaarr, it be Talk Like a Pirate day! Sure as all these red ships be makin' me like a space pirate, matey!\n\tRemneb: You will destroy my red star for sure :)\n\n19) Babamots: Trade R3 G3 Galorndon\n\n20) Remneb: Build G1 Remneb\n\n21) Babamots: Build R3 Galorndon\n\n22) Remneb: Discover G1 Remneb Y3 Sand\n\n23) Babamots: Build R3 Galorndon\n\n24) Remneb: Build Y1 Remneb\n\n25) Babamots: Trade R2 Y2 Vulcan\n\n26) Remneb: Discover Y1 Remneb B3 Polix\n\n27) Babamots: Sacrifice Y2 Vulcan\nMove G3 Galorndon Remneb\nMove R3 Galorndon Remneb\n\n28) Remneb: Attack G3 Remneb\n\n29) Babamots: Sacrifice R2 Galorndon\nAttack G3S Remneb\nAttack G3S Remneb\n\n\tRemneb: Thanks for the game. Well done,\n\tBabamots: Thanks! I'll let your crews live :-P. Good luck in the tournament!\n\nHomeworlds Online (SDG# 33100)\nStarted: 2017.9.15, Ended: 2017.9.15\nParticipants: ts52 (S), Hambone (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 33189)\nVariants: "Hard time"\nStarted: 2017.9.18, Ended: 2017.11.7\nParticipants: goulo (S), SilentTitan (N)\nWinner: SilentTitan\n\n1) SilentTitan: Homeworld B1 R3 G3\n\n2) goulo: Homeworld B1 R2 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\tgoulo: hi!\n\n4) goulo: Build G1 Goulo\n\tSilentTitan: Hello\n\n5) SilentTitan: Trade G1 B1 Silenttitan\n\n6) goulo: Trade G3 B3 Goulo\n\n7) SilentTitan: Build B2 Silenttitan\n\n8) goulo: Build B2 Goulo\n\n9) SilentTitan: Trade B2 Y2 Silenttitan\n\n10) goulo: Trade B3 Y3 Goulo\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) goulo: Build B2 Goulo\n\n13) SilentTitan: Discover B2 Silenttitan G2 Sol\n\n14) goulo: Trade B2 Y2 Goulo\n\n15) SilentTitan: Build B2 Sol\n\n16) goulo: Discover B2 Goulo G3 Verdego\n\n17) SilentTitan: Trade B2 Y2 Sol\n\n18) goulo: Build G1 Goulo\n\n19) SilentTitan: Build Y1 Sol\n\n20) goulo: Trade G1 R1 Goulo\n\n21) SilentTitan: Trade Y1 R1 Sol\n\n22) goulo: Move Y2 Goulo Verdego\n\n23) SilentTitan: Build R1 Sol\n\n24) goulo: Move R1 Goulo Verdego\n\n25) SilentTitan: Build Y1 Sol\n\n26) goulo: Build R2 Verdego\n\n27) SilentTitan: Trade Y2 G2 Sol\n\n28) goulo: Build B2 Verdego\n\n29) SilentTitan: Discover B1 Silenttitan Y2 Soul\n\n30) goulo: Move R2 Verdego Soul\n\n31) SilentTitan: Sacrifice G2 Sol\nBuild B3 Sol\nBuild B3 Soul\n\n32) goulo: Discover R2 Soul Y3 Flavego\n\n33) SilentTitan: Trade B3 Y3 Sol\n\n34) goulo: Discover B2 Verdego G2 Verdo\n\n35) SilentTitan: Move B3 Soul Verdego\n\n36) goulo: Build B3 Verdo\n\n37) SilentTitan: Build B3 Sol\n\n38) goulo: Sacrifice Y2 Verdego\nMove R1 Verdego Verdo\nMove B2 Verdego Soul\n\n39) SilentTitan: Sacrifice B1 Soul\nTrade B3 R3 Verdego\n\n40) goulo: Move R2 Flavego Verdo\n\n41) SilentTitan: Discover B3 Sol Y3 Sole\n\n42) goulo: Build Y1 Goulo\n\n43) SilentTitan: Build R2 Verdego\n\n44) goulo: Build R3 Verdo\n\n45) SilentTitan: Sacrifice Y1 Sol\nMove R2 Verdego Verdo\nCatastrophe Verdo Red\n\n46) goulo: Trade B2 Y2 Verdo\n\n47) SilentTitan: Trade B2 R2 Sol\n\n48) goulo: Build B1 Verdo\n\n49) SilentTitan: Sacrifice Y2 Silenttitan\nMove B3 Sole Goulo\nMove R3 Verdego Goulo\n\n\tgoulo: thanks, congrats, well played!\n\tSilentTitan: Thank you\n\nHomeworlds Online (SDG# 33182)\nStarted: 2017.9.19, Ended: 2017.10.9\nParticipants: ts52 (S), Felix (N)\nWinner: ts52\n\n1) Felix: Homeworld B2 R3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\tFelix: Salutations! I hope you're not too busy with tournament games to take on another normal game. Have fun :)\n\tts52: Always happy to play another game!\n\n3) Felix: Build G1 Felix\n\n4) ts52: Build G1 Ts52\n\n5) Felix: Trade G1 Y1 Felix\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Felix: Build Y2 Felix\n\n8) ts52: Build Y2 Ts52\n\n9) Felix: Discover Y1 Felix G1 Out\n\n10) ts52: Discover Y1 Ts52 G3 Kermit\n\n11) Felix: B G1 Felix\n\n12) ts52: Build G1 Ts52\n\n13) Felix: T G1 B1 Felix\n\n14) ts52: Trade G1 B1 Ts52\n\n15) Felix: M B1 Felix Out\n\n16) ts52: Move B1 Ts52 Kermit\n\n17) Felix: Build G1 Felix\n\n18) ts52: Discover Y2 Ts52 B3 Gonzo\n\n19) Felix: Build Y2 Out\n\n20) ts52: Build Y3 Kermit\n\n21) Felix: Build Y3 Felix\n\n22) ts52: Discover Y1 Kermit G1 Oscar\n\n23) Felix: Trade Y1 R1 Out\n\n24) ts52: Build G2 Ts52\n\n25) Felix: S Y3 Felix\nM G3 Felix Out\nM G3 Out Kermit\nM G3 Kermit Ts52\n\n26) ts52: Move Y3 Kermit Ts52\n\tts52: Dammit! Well played. I never think of people abandoning all larges in their homeworld.\n\n27) Felix: Sacrifice R1 Out\nAttack Y3 Ts52\n\n28) ts52: Trade G2 R2 Ts52\n\tFelix: It's a risky move, but I like to surprise people with it from time to time. Thank you :) But I'm not celebrating yet! This is still a delicate situation...\n\n29) Felix: Sacrifice G3 Ts52\nBuild Y1 Ts52\nBuild Y3 Ts52\nBuild Y3 Felix\nCatastrophe Ts52 Yellow\n\n30) ts52: Build G2 Ts52\n\n31) Felix: Build B1 Out\n\n32) ts52: Sacrifice Y1 Oscar\nMove R2 Ts52 Out\n\n33) Felix: Sacrifice Y2 Out\nDiscover B1 Out Y3 In\nMove B1 Out In\n\n34) ts52: Trade G2 Y2 Ts52\n\n35) Felix: D B1 In G1 Integer\n\n36) ts52: Sacrifice Y2 Gonzo\nMove R2 Out In\nMove B1 Kermit Integer\n\n37) Felix: Discover B1 In G1 Remote\n\n38) ts52: Move R2 In Remote\n\n39) Felix: Sacrifice Y2 Felix\nMove B1 Remote Ts52\nDiscover B1 Integer G3 Brink\n\tFelix: Round and round we go...\n\n40) ts52: Sacrifice R2 Remote\nAttack B1 Ts52\nPass\n\n41) Felix: Build B2 Brink\n\n42) ts52: Move B1 Ts52 Brink\n\n43) Felix: Trade B2 R2 Brink\n\n44) ts52: T B1 R1 Brink\n\tts52: Yeah, I'm pretty sure you're going to win at the end of this cycle, but still curious to see how it plays out.\n\n45) Felix: A R1 Brink\n\n46) ts52: T B1 R1 Integer\n\n47) Felix: Build B1 Brink\n\n48) ts52: Move G3 Ts52 Brink\n\n49) Felix: Sacrifice Y3 Felix\nMove B1 Brink Ts52\nMove B1 Brink Ts52\nDiscover R2 Brink B1 Ingot\n\n50) ts52: Sacrifice R1 Integer\nAttack B1 Ts52\n\tts52: Well played sir. Good game.\n\n51) Felix: Trade R2 B2 Ingot\n\tFelix: Thank you!\r\n\r\n... I'ms till puzzling over how to actually finish the job, though.\n\n52) ts52: Trade B1 R1 Ts52\n\n53) Felix: Trade B2 G2 Ingot\n\n54) ts52: Attack B1 Ts52\n\n55) Felix: Build G1 Felix\n\tFelix: Oh my goodness. I completely messed up. I meant to trade my r2 for a g2 last turn, and thought I had. That's what I get for not double checking my move. Doh!\n\n56) ts52: Sacrifice Y2 Ts52\nMove G3 Brink Ingot\nMove G3 Ingot Felix\n\n57) Felix: Trade G1 Y1 Felix\n\tts52: I may manage to eek this one out yet. ;)\n\tFelix: I would have had you this turn if not for that blunder! Darn. Just goes to show that it's never over until it's over!\n\n58) ts52: Attack Y1 Felix\n\n59) Felix: Build G1 Felix\n\tts52: agreed, you had me dead to rights\n\n60) ts52: Build G1 Felix\nCatastrophe Felix Green\n\n\tFelix: Good game! So mad at myself. I'll be double checking every move from now on!\n\tts52: :) Thanks for the game!\n\nHomeworlds Online (SDG# 32748)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.19, Ended: 2017.9.24\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Felix: Homeworld Y3 B2 G3\n\twil: Is this a round robin challenge.\n\n3) wil: B G1 Wil\n\tFelix: Nah, just a fun game, if you can handle it with all the others you have :) We already played our round robin game I believe, unless there are supposed to be more?\n\twil: Lol, I didn't look, it is time for me to.challenge someone...\r\n\n\twil: Been teaching a few locals to play, I now have two that I can consistently get in a game with. One is real bright and sees possibilities for escape that I would never.\r\n\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 B1 Wil\n\tFelix: That's fantastic! Tell them to get on here so I can play them :)\n\n6) Felix: Trade G1 B1 Felix\n\twil: I'm working on getting one on.. \n\n7) wil: B G1 Wil\n\n8) Felix: Build B1 Felix\n\n9) wil: B B2 Wil\n\n10) Felix: Discover B1 Felix G1 Linter\n\n11) wil: D B1 Wil Y3 Y3\n\twil: 3 newbies that play regular now... All of them teaching one or two others. And then my two regular folks... I now average over 10 games offline a week...I should be improving\n\n12) Felix: Build B3 Linter\n\twil: We will have none of that nonsense\n\tFelix: Just in time to win the tournament, perhaps :) I must say I'm jealous of all the offline games you get to play!\n\n13) wil: S G3 Wil\nB B3 Wil\nB G1 Wil\nB B3 Y3\n\twil: Thx to encouraging friends to buy pyramid arcade...and introducing them to easier games first. Most who bought are not interested in homeworlds...so I still play a lot of petri dish, volcano, color wheel, blame, martian chess..\n\n14) Felix: Trade B3 Y3 Linter\n\n15) wil: Trade B2 Y2 Wil\n\n16) Felix: Build G2 Felix\n\n17) wil: Build G2 Wil\n\n18) Felix: Trade G2 R2 Felix\n\n19) wil: Trade B1 R1 Y3\n\n20) Felix: B G2 Felix\n\n21) wil: D G1 Wil B3 B3\n\n22) Felix: Discover G2 Felix B1 Splinter\n\n23) wil: M G2 Wil Y3 Y3\n\n24) Felix: Build G2 Felix\n\n25) wil: B G3 Y3\n\n26) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Splinter\nBuild B2 Linter\n\n27) wil: S G3 Y3\nB G3 Y3\nB R1 Y3\nB R1 Y3\n\n28) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y1 Linter\nBuild Y1 Linter\n\n29) wil: D R1 Y3 Y2 Y2\n\n30) Felix: Move B2 Linter B3\n\n31) wil: S G1 B3\nB R2 Y2\n\n32) Felix: Sacrifice Y3 Linter\nMove B1 Linter B3\nMove B1 B3 Wil\nMove B2 B3 Wil\nCatastrophe Wil Blue\n\n33) wil: S Y2 Wil\nM G3 Y3 Wil\nM B3 Y3 Linter\n\n34) Felix: T G3 Y3 Felix\n\n35) wil: M R1 Y3 Wil\n\n36) Felix: S Y1 Linter\nD Y1 Linter B2 Binter\n\n37) wil: S B3 Linter\nT G2 B2 Y3\nT R1 Y1 Y2\nT R2 Y2 Y2\n\n38) Felix: Trade G2 Y2 Splinter\n\n39) wil: D Y1 Y2 G1 G1\n\n40) Felix: Sacrifice Y2 Splinter\nMove Y1 Binter Wil\nMove Y3 Felix Wil\n\n41) wil: M Y2 Y2 Wil\nC Wil Y\n\tFelix: You're putting up quite a struggle!\n\twil: Ark moment...we went to another universe where peace and compassion reigns\n\tFelix: There is no compassion here :)\r\n\r\nGood game!\n\n\nHomeworlds Online (SDG# 33083)\nStarted: 2017.9.21, Ended: 2017.12.24\nParticipants: Ottia (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Ottia: Homeworld G2 B3 Y3\n\n3) MobyNostromo: Build Y1 Mobynostromo\n\tOttia: Hiya Rey! Nice to open a game against you again... let's see if I can write during the weekend. Take care!\n\tMobyNostromo: Me too! Have a great game!!\n\n4) Ottia: Build Y1 Ottia\n\n5) MobyNostromo: T Y1 G1 Mobynostromo\n\n6) Ottia: Discover Y1 Ottia B1 Goldenboy\n\n7) MobyNostromo: B Y1 Mobynostromo\n\n8) Ottia: Build Y1 Ottia\n\n9) MobyNostromo: B Y2 Mobynostromo\n\n10) Ottia: Trade Y1 G1 Goldenboy\n\n11) MobyNostromo: D Y2 Mobynostromo G3 Earth\n\n12) Ottia: Build G1 Goldenboy\n\n13) MobyNostromo: D G1 Mobynostromo Y3 Saturn\n\n14) Ottia: Trade G1 Y1 Goldenboy\n\n15) MobyNostromo: T Y1 B1 Mobynostromo\n\n16) Ottia: Build Y1 Goldenboy\n\n17) MobyNostromo: B Y2 Mobynostromo\n\n18) Ottia: Discover Y1 Goldenboy Y2 Jimmycorrigan\n\n19) MobyNostromo: B B2 Mobynostromo\n\n20) Ottia: Build G1 Goldenboy\n\tMobyNostromo: Nice!\n\tMobyNostromo: (I meant the Jimmy Corrigan reference.)\n\n21) MobyNostromo: D B2 Mobynostromo G3 Gogogo\n\tOttia: I was going to write That Yellow Bastard but names can't be that long HEHEHEHEHEHE (by the way, thanks a lot for your GeekMail! Lots of interesting info... I will reply as soon as I can)\n\n22) Ottia: Move G1 Goldenboy Ottia\n\tMobyNostromo: Please reply only when you can. Let's keep our pen pal habit as a casual thing. It's a lot funner that way, I think. (BTW, are you a Frank Miller fan? I can see how Yellow Bastard would have definitely worked for that last discovery. I loved Miller for years until the second Sin City book, and then it was all downhill for me.)\n\n23) MobyNostromo: B B2 Mobynostromo\n\n24) Ottia: Build G2 Goldenboy\n\n25) MobyNostromo: B G3 Saturn\n\n26) Ottia: Trade G2 B2 Goldenboy\n\n27) MobyNostromo: B B3 Gogogo\n\n28) Ottia: Move B2 Goldenboy Saturn\n\n29) MobyNostromo: M B2 Mobynostromo Earth\n\tMobyNostromo: Sorry about the long delays. So much to do over here.\n\tOttia: You took the words out of my keyboard...\n\n30) Ottia: Trade Y1 R1 Ottia\n\tMobyNostromo: You too, huh? \n\n31) MobyNostromo: B B3 Earth\n\n32) Ottia: Move R1 Ottia Goldenboy\n\n33) MobyNostromo: M B3 Earth Goldenboy\n\n34) Ottia: Build G2 Goldenboy\n\n35) MobyNostromo: T B3 R3 Goldenboy\n\n36) Ottia: Move R1 Goldenboy Gogogo\n\n37) MobyNostromo: A G2 Goldenboy\n\n38) Ottia: Build Y1 Ottia\n\n39) MobyNostromo: A G1 Goldenboy\n\n40) Ottia: Move Y1 Goldenboy Saturn\n\tMobyNostromo: Sorry about the long delay.\n\n41) MobyNostromo: T B2 R2 Gogogo\n\n42) Ottia: Discover Y3 Ottia R1 Chorizo\n\tOttia: Don't worry, same here...\n\n43) MobyNostromo: S Y2 Earth\nM R2 Gogogo Chorizo\nM R2 Chorizo Ottia\n\n44) Ottia: Sacrifice Y3 Chorizo\nMove Y1 Saturn Mobynostromo\nMove Y1 Jimmycorrigan Saturn\nMove Y1 Saturn Mobynostromo\nCatastrophe Mobynostromo Y\n\n45) MobyNostromo: S R3 Goldenboy\nA G1 Ottia\nA Y1 Ottia\nA B2 Saturn\n\n\tOttia: Happy Christmas, Rey! I hope I can write during the next days...\n\tMobyNostromo: You beat me to it. I took a break from Christmas Eve to make a move and wish you a great Christmas. Feliz Navidad!! I wish you the best on you daughter's first Christmas.\n\nHomeworlds Online (SDG# 33081)\nVariants: "Unrated"\nStarted: 2017.9.21, Ended: 2017.10.12\nParticipants: Ottia (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Ottia: Homeworld G3 B2 Y3\n\n3) wil: B G1 Wil\n\tOttia: Hi Wil! Nice to play with you again after so long...\n\n4) Ottia: Build Y1 Ottia\n\n5) wil: T G1 Y1 Wil\n\n6) Ottia: Discover Y1 Ottia G1 Parsley\n\twil: It has been awhile!! \n\tOttia: You didn't play for quite a long while... and then I didn't (slight burnout). I hope things are OK with you.\n\n7) wil: B Y2 Wil\n\n8) Ottia: Build Y2 Ottia\n\n9) wil: D Y1 Wil G3 G3\n\n10) Ottia: Trade Y2 B2 Ottia\n\n11) wil: B Y2 Wil\n\n12) Ottia: Move B2 Ottia Parsley\n\n13) wil: D Y2 Wil B3 B3\n\n14) Ottia: Build Y2 Parsley\n\n15) wil: B Y3 G3\n\n16) Ottia: Discover Y2 Parsley Y3 Turmeric\n\n17) wil: B G1 Wil\n\twil: Hey, I wanted that!\n\n18) Ottia: Sacrifice Y3 Ottia\nMove Y1 Parsley Turmeric\nMove Y1 Turmeric Wil\nMove Y2 Turmeric Wil\nCatastrophe Wil Y\n\n\tOttia: I was going to say I was glad you "liked" my move, since I'm still green at this... I must read the rules again regarding situations like this. I'd like to ask if you'd fancy another game.\n\twil: Oh me gosh, you abandoned your homeworld ya gotta leave someone at the helm!!\r\n\r\nAnd of course,.challenge me.anytime...and feel free.to ask questions or for feedback.\n\nHomeworlds Online (SDG# 33217)\nVariants: "Hard time"\nStarted: 2017.9.21, Ended: 2017.9.28\nParticipants: agentofchaos (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\tBabamots: Thanks for the game! Good luck!\n\n2) agentofchaos: Homeworld B2 R3 G3\n\n3) Babamots: Build G1 Babamots\n\tagentofchaos: Thanks, good luck!\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) agentofchaos: Trade G1 B1 Agentofchaos\n\n7) Babamots: Build B2 Babamots\n\n8) agentofchaos: Build B2 Agentofchaos\n\n9) Babamots: Discover B1 Babamots G3 Betazed\n\n10) agentofchaos: Trade B2 Y2 Agentofchaos\n\n11) Babamots: Build G1 Babamots\n\n12) agentofchaos: B Y1 Agentofchaos\n\n13) Babamots: Discover G1 Babamots B3 Ferenginar\n\n14) agentofchaos: Discover Y2 Agentofchaos G1 Webn\n\n15) Babamots: Sacrifice G3 Babamots\nBuild B2 Betazed\nBuild B3 Betazed\nBuild B3 Babamots\n\n16) agentofchaos: Move B1 Agentofchaos Webn\n\n17) Babamots: Sacrifice B1 Betazed\nTrade B3 G3 Babamots\n\n18) agentofchaos: Build B1 Webn\n\n19) Babamots: Trade B2 Y2 Betazed\n\n20) agentofchaos: Build Y1 Agentofchaos\n\n21) Babamots: Trade B2 R2 Babamots\n\n22) agentofchaos: Trade Y1 R1 Agentofchaos\n\n23) Babamots: Discover B3 Betazed G1 Bajor\n\n24) agentofchaos: Build G2 Agentofchaos\n\n25) Babamots: Build G2 Babamots\n\n26) agentofchaos: Build G2 Agentofchaos\n\n27) Babamots: Sacrifice Y2 Betazed\nMove G1 Ferenginar Bajor\nMove G1 Bajor Agentofchaos\nCatastrophe Agentofchaos G\n\n\tagentofchaos: didn't see that coming, well played\n\tBabamots: Thanks! See you around! \n\nHomeworlds Online (SDG# 33233)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.23, Ended: 2017.10.2\nParticipants: Grosseteste (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 Y1 G3\n\tBabamots: I'll fill out the tournament form for the beginning of the game. Good luck!\n\n2) Grosseteste: H B1 Y3 G3\n\n3) Babamots: Build G1 Babamots\n\tGrosseteste: Likewise, looking forward to it!\n\n4) Grosseteste: B G1 Grosseteste\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) Grosseteste: T G1 B1 Grosseteste\n\n7) Babamots: Build B2 Babamots\n\n\nHomeworlds Online (SDG# 33228)\nStarted: 2017.9.24, Ended: 2019.11.13\nParticipants: Jaybones (S), Ottia (N)\nWinner: Ottia\n\n1) Ottia: Homeworld G3 B2 Y3\n\n2) Jaybones: Homeworld Y3 B1 G3\n\n3) Ottia: Build Y1 Ottia\n\n\nHomeworlds Online (SDG# 33237)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.26, Ended: 2017.10.27\nParticipants: Remneb (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\tbhorner: This game is for "The Great Homeworld Tournament" organized by Babamots, good luck!\n\n2) Remneb: Homeworld B2 R3 G3\n\n3) bhorner: B G1 Bhorner\n\n4) Remneb: Build G1 Remneb\n\n5) bhorner: T G1 B1 Bhorner\n\n6) Remneb: Trade G1 B1 Remneb\n\n7) bhorner: Build B2 Bhorner\n\n8) Remneb: Build G1 Remneb\n\n9) bhorner: T B2 Y2 Bhorner\n\n10) Remneb: Trade G1 Y1 Remneb\n\n11) bhorner: B B2 Bhorner\n\n12) Remneb: Build G1 Remneb\n\n13) bhorner: Discover B2 Bhorner G3 Fern\n\n14) Remneb: Discover B1 Remneb G1 Gort\n\n15) bhorner: D B1 Bhorner Y3 Bigbird\n\n16) Remneb: Build Y1 Remneb\n\n17) bhorner: T B1 R1 Bigbird\n\n18) Remneb: Trade G1 R1 Remneb\n\n19) bhorner: B B1 Fern\n\n20) Remneb: Build B2 Gort\n\n21) bhorner: Trade B2 Y2 Fern\n\n22) Remneb: Trade B2 Y2 Gort\n\n23) bhorner: B B2 Fern\n\n24) Remneb: Build G1 Remneb\n\n25) bhorner: Build G1 Bhorner\n\n26) Remneb: Move G1 Remneb Gort\n\n27) bhorner: Discover G1 Bhorner B3 Ocean\n\n28) Remneb: Build B2 Gort\n\n29) bhorner: D B2 Fern Y1 Shiney\n\n30) Remneb: Build Y3 Gort\n\n31) bhorner: B Y3 Fern\n\n32) Remneb: Move B2 Gort Bigbird\n\n33) bhorner: Build B3 Fern\n\n34) Remneb: Build B3 Gort\n\n35) bhorner: Build G2 Bhorner\n\n36) Remneb: Build G2 Remneb\n\n37) bhorner: Sacrifice Y3 Fern\nMove G2 Bhorner Ocean\nMove G2 Ocean Gort\nMove G1 Ocean Gort\nC Gort Green\n\n38) Remneb: Sacrifice R1 Remneb\nAttack R1 Bigbird\n\n39) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Bhorner\nBuild Y3 Fern\nBuild Y3 Bhorner\n\n40) Remneb: Discover Y1 Remneb G1 Hoth\n\n41) bhorner: T B3 R3 Fern\n\n42) Remneb: Move Y1 Hoth Bigbird\n\n43) bhorner: Trade Y2 G2 Bhorner\n\n44) Remneb: Build Y2 Remneb\n\n45) bhorner: Trade Y3 G3 Bhorner\n\n46) Remneb: Discover Y1 Bigbird G1 Trek\n\n47) bhorner: B Y3 Bhorner\n\n48) Remneb: Discover Y1 Remneb G1 Assur\n\n49) bhorner: M G3 Bhorner Bigbird\n\n50) Remneb: Sacrifice Y2 Remneb\nMove Y1 Assur Fern\nMove Y1 Trek Fern\nCatastrophe Fern Y\n\n51) bhorner: M Y2 Bhorner Fern\n\n52) Remneb: Discover B2 Bigbird Y1 Roma\n\n53) bhorner: M G3 Bigbird Shiney\n\n54) Remneb: Trade G2 Y2 Remneb\n\n55) bhorner: M R3 Fern Shiney\n\n56) Remneb: Build G1 Remneb\n\n57) bhorner: T Y3 R3 Bhorner\n\n58) Remneb: Sacrifice G1 Remneb\nBuild R1 Bigbird\n\n59) bhorner: S Y2 Fern\nM G3 Shiney Remneb\nM R3 Shiney Remneb\n\n60) Remneb: Sacrifice Y2 Remneb\nMove R1 Bigbird Bhorner\nMove R1 Bigbird Bhorner\nCatastrophe Bhorner R\n\n61) bhorner: A G3 Remneb\n\n\tbhorner: GG!\n\tRemneb: Thanks for the game.\n\nHomeworlds Online (SDG# 32921)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.28, Ended: 2017.10.14\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld G2 R3 B3\n\tFelix: Hello again :) Hard not to keep a game against you going, since you're one of the few players who actually makes moves in a timely fashion!\n\n2) dlwillson: H Y1 B3 G3\n\tFelix: I'm going to be a little bit experimental today...\n\n3) Felix: B B1 Felix\n\tdlwillson: Yay, another game with Felix! But, it's funny that you say I make moves in a timely fashion when today in particular I'm having trouble doing that. Busy day at work.\n\n4) dlwillson: B G1 Dlwillson\n\tFelix: No worries there! I have busy days too\n\n5) Felix: T B3 Y3 Felix\n\n6) dlwillson: B G1 Dlwillson\n\n7) Felix: Build Y1 Felix\n\n8) dlwillson: T G1 Y1 Dlwillson\n\n9) Felix: B Y2 Felix\n\n10) dlwillson: D Y1 Dlwillson G2 Field\n\n11) Felix: Discover Y1 Felix G1 Farholme\n\n12) dlwillson: Build Y2 Field\n\n13) Felix: Build Y2 Farholme\n\n14) dlwillson: Discover Y1 Field G1 Forest\n\n15) Felix: M Y2 Felix Forest\n\n16) dlwillson: Build Y3 Field\n\n17) Felix: D Y2 Farholme B2 Edge\n\n18) dlwillson: Build Y3 Forest\n\n19) Felix: Trade Y2 G2 Edge\n\n20) dlwillson: Trade G1 R1 Dlwillson\n\n21) Felix: Build Y2 Forest\nCatastrophe Forest Yellow\n\tFelix: Boy, I messed that up :D\n\n22) dlwillson: Discover Y2 Field B1 Sky\n\n23) Felix: Build G1 Edge\n\n24) dlwillson: Build R1 Dlwillson\n\n25) Felix: Trade G1 R1 Edge\n\n26) dlwillson: Move R1 Dlwillson Field\n\n27) Felix: Build R2 Edge\n\n28) dlwillson: Build R2 Dlwillson\n\n29) Felix: Trade R2 Y2 Edge\n\n30) dlwillson: Move Y3 Field Farholme\n\n31) Felix: B Y1 Farholme\n\n32) dlwillson: Move Y3 Farholme Edge\n\n33) Felix: S G2 Edge\nB Y2 Edge\nB Y3 Felix\n\n34) dlwillson: Sacrifice R2 Dlwillson\nAttack R1 Edge\nAttack Y2 Edge\n\n35) Felix: Move Y1 Farholme Edge\nCatastrophe Edge Yellow\n\n36) dlwillson: Build R2 Dlwillson\n\n37) Felix: Trade Y3 R3 Felix\n\n38) dlwillson: Build G1 Dlwillson\n\n39) Felix: Move R3 Felix Sky\n\n40) dlwillson: M Y2 Sky Field\n\tdlwillson: That is some baity bait, though. Very tempting.\n\n41) Felix: Build Y1 Felix\n\tFelix: Hehehe.\n\n42) dlwillson: Build Y2 Field\n\n43) Felix: Move Y1 Felix Sky\n\n44) dlwillson: Move Y2 Field Farholme\n\n45) Felix: Move R3 Sky Field\n\n46) dlwillson: B R2 Field\n\n47) Felix: Sacrifice Y1 Sky\nMove R3 Field Farholme\n\n48) dlwillson: S G3 Dlwillson\nB Y1 Farholme\nB R2 Field\nB R3 Edge\n\n49) Felix: Build Y2 Felix\n\tFelix: Simple, yet effective.\n\n50) dlwillson: Sacrifice Y2 Field\nMove Y1 Farholme Felix\nMove Y2 Farholme Felix\nCatastrophe Felix Y\n\n51) Felix: Build Y1 Farholme\n\n52) dlwillson: Trade R3 Y3 Edge\n\n53) Felix: Build R3 Farholme\n\tFelix: Ouch! I need to think more before moving.\n\n54) dlwillson: Sacrifice Y3 Edge\nMove R1 Field Farholme\nMove R2 Field Farholme\nCatastrophe Farholme R\nMove R2 Field Farholme\n\tdlwillson: I'm in danger. But, I'm comforted by the thought that maybe you're in more danger than I am.\n\n55) Felix: Sacrifice Y1 Farholme\nMove Y1 Farholme Felix\n\tFelix: I think I almost certainly am...\n\n56) dlwillson: Trade R2 Y2 Dlwillson\n\tdlwillson: OK, the mid-turn cat is officially my favorite rules modification. I think I the "in danger" slider is at least 5 clicks further toward you.\n\n57) Felix: Trade Y1 R1 Felix\n\tFelix: I know. I love that change! It makes for some very interesting moves. Great move! I'm in big trouble.\n\n58) dlwillson: S Y2 Dlwillson\nM R2 Farholme Felix\nD R1 Edge Y1 Sol\n\n59) Felix: Build R2 Felix\nCatastrophe Felix R\n\n60) dlwillson: Build R1 Dlwillson\n\tFelix: I fail to see how it would have worked out better for me :P I would have been left with but one ship.\n\tFelix: Woah. Weird. This message was supposed to go on our game with Wil.\n\n61) Felix: Build B1 Felix\n\n62) dlwillson: Move R1 Dlwillson Felix\n\n63) Felix: Build B1 Felix\n\n64) dlwillson: B R2 Felix\n\n65) Felix: Trade B1 Y1 Felix\n\n66) dlwillson: Build R2 Dlwillson\n\n67) Felix: Build Y2 Felix\n\n68) dlwillson: T R2 B2 Dlwillson\n\tdlwillson: I am now laughing at myself for my dumbs... Sigh.\n\n69) Felix: Sacrifice Y2 Felix\nMove B1 Felix Dlwillson\nMove B1 Felix Dlwillson\nCatastrophe Dlwillson B\n\tFelix: Hehe. I'm just stretching out the inevitable at this point.\n\n70) dlwillson: A Y1 Felix\n\n\tFelix: Good game :)\n\tdlwillson: Good game, as always, Felix! \n\tDraw5PlayAll: Quite a bleak residue.\n\nHomeworlds Online (SDG# 33213)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.28, Ended: 2017.10.12\nParticipants: wil (S), Felix (N)\nWinner: wil\n\n1) Felix: Homeworld G2 B3 Y3\n\n2) wil: H Y2 B1 G3\n\tFelix: I'm going to try an experimental game here, if you don't mind :) I rarely play with green in my system, so I wanna get some more practice with that setup.\n\twil: Lol, me mind playing experimental hw games?\n\n3) Felix: B Y1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade Y1 B1 Felix\n\n6) wil: T G1 B1 Wil\n\n7) Felix: Build B2 Felix\n\n8) wil: B B2 Wil\n\n9) Felix: Discover B2 Felix G1 Farholme\n\n10) wil: D B1 Wil G3 G3\n\n11) Felix: Trade B1 R1 Felix\n\n12) wil: B G1 Wil\n\n13) Felix: Build R1 Felix\n\n14) wil: T G1 R1 Wil\n\n15) Felix: Move R1 Felix Farholme\n\n16) wil: B R2 Wil\n\n17) Felix: Build R2 Farholme\n\n18) wil: M R2 Wil G3\n\n19) Felix: Trade R2 Y2 Farholme\n\n20) wil: B R2 Wil\n\n21) Felix: B R2 Felix\n\n22) wil: B R3 G3\n\n23) Felix: B R3 Farholme\n\n24) wil: T R3 Y3 G3\n\n25) Felix: Move R1 Farholme G3\n\n26) wil: T R1 Y1 Wil\n\n27) Felix: Build R1 G3\n\n28) wil: S R2 G3\nA R1 G3\nA R1 G3\n\n29) Felix: Trade R2 G2 Felix\n\n30) wil: D R1 G3 Y1 Y1\n\twil: Dang skeeters\n\n31) Felix: Build R2 Felix\n\n32) wil: S G3 Wil\nB R2 Y1\nB R3 Wil\nB R3 G3\n\n33) Felix: Build Y1 Farholme\n\n34) wil: T R3 Y3 G3\n\twil: Would you like to start disarmament talks?\n\n35) Felix: Move Y2 Farholme G3\n\tFelix: If we must :P\n\n36) wil: D Y3 G3 G1 G1\n\n37) Felix: Build R3 Farholme\n\n38) wil: A Y2 G3\n\n39) Felix: Build Y2 Farholme\n\n40) wil: T R3 G3 Wil\n\n41) Felix: Discover Y2 Farholme R3 Bazoik\n\n42) wil: M R1 Y1 Felix\n\twil: I was hoping it was a tourney challenge...but just some bloke on the ladder...\n\n43) Felix: Sacrifice R1 Felix\nAttack R1 Felix\n\tFelix: Nothing exciting, I'm afraid.\n\n44) wil: B R1 G3\n\n45) Felix: Discover Y1 Farholme G3 Nearhome\n\twil: Lol\n\twil: Thatndodnt work right\n\n46) wil: S Y2 G3\nM R1 G3 Farholme\nM R1 G3 Farholme\nC Farholme R\n\twil: Let us start this over again...\n\n47) Felix: Build Y2 Nearhome\n\n48) wil: D Y1 Wil R3 R3\n\n49) Felix: Sacrifice Y1 Nearhome\nMove B2 Farholme R3\n\n50) wil: D Y1 R3 B1 B1\n\n51) Felix: Sacrifice G2 Felix\nBuild Y1 Nearhome\nBuild B2 R3\n\n52) wil: B B3 G3\n\n53) Felix: Sacrifice Y2 Nearhome\nMove B2 R3 Wil\nMove B2 R3 Wil\nCatastrophe Wil B\n\n54) wil: B Y2 G3\n\n55) Felix: Move R2 Felix B1\n\n56) wil: M Y3 G3 B1\n\n57) Felix: Build R1 Felix\n\n58) wil: B R1 Wil\n\tFelix: I gotta think about this one for a bit...\n\n59) Felix: Discover R1 Felix G1 Out\n\n60) wil: M R2 Wil Out\n\n61) Felix: Build R3 Felix\n\n62) wil: S R2 Y1\nA R1 Out\nA R2 B1\n\n63) Felix: Build Y1 Nearhome\n\n64) wil: S Y3 G1\nM Y3 B1 Felix\nM R1 Out Felix\nM R2 B1 Felix\nC Felix R\n\n65) Felix: Sacrifice Y2 Bazoik\nMove Y1 Nearhome Wil\nMove Y1 Nearhome Wil\n\n66) wil: S R1 Wil\nA Y3 Felix\n\twil: Those turncoats immediately struck back!\n\n\tFelix: Well played! I technically should be able to win here simply by being the player who causes both our eliminations, but the system won't let me.\n\twil: At the end of your move you must have a ship in your homeworlds I believe.\n\twil: I'll verify with Andy n john tonight.\n\tFelix: I'm not sure. I thought I remember seeing some forum post where Andy or John covered this edge case, saying that if a move would cause both players to be eliminated, whoever makes that move is considered the winner.\r\n\r\nAlso, if causing your destruction occurs DURING my turn, then wouldn't you be elminated before my turn techncially ends, so it wouldn't matter at that point if I have any ships left? An interesting scenario.\n\tFelix: I like the idea of kamikazeing my entire fleet to achieve a hollow victory :)\n\tDraw5PlayAll: *I* thought that they said that if both players are eliminated the game is a tie, not "the player who caused it"... I mean, it makes more sense that way, like in chess if it is king vs king it is not "the player who caused it to be KvK".\n\twil: War games scenario...nobody wins with mutual nuclear destruction...\n\tDraw5PlayAll: So this game deserves to be a draw but SDG will not let you offer a draw in Homeworlds games.\r\nhttps://boardgamegeek.com/article/21140352#21140352\n\nHomeworlds Online (SDG# 33260)\nVariants: "Unrated, Hard time"\nStarted: 2017.9.29, Ended: 2017.10.16\nParticipants: eliscinsky (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\n3) wil: B G1 Wil\n\twil: Wow, short universe?\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) wil: T G1 R1 Wil\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) wil: B R1 Wil\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) wil: B R2 Wil\n\n10) eliscinsky: Build Y1 Eliscinsky\n\n11) wil: D R2 Wil Y3 Y3\n\n12) eliscinsky: Build Y2 Eliscinsky\n\n13) wil: B R2 Wil\n\n14) eliscinsky: Trade Y2 R2 Eliscinsky\n\n15) wil: T R2 Y2 Wil\n\n16) eliscinsky: Trade Y1 B1 Eliscinsky\n\n17) wil: B R2 Wil\n\n18) eliscinsky: Discover Y1 Eliscinsky B3 B3\n\n19) wil: D R1 Wil B3 Be3\n\n20) eliscinsky: Trade G1 Y1 Eliscinsky\n\n21) wil: S G3 Wil\nB R3 Y3\nB R3 Be3\nB R3 Wil\n\n22) eliscinsky: Build Y2 Eliscinsky\n\n23) wil: T R3 G3 Wil\n\n\twil: Aaarrrgghhhh hate that.\n\teliscinsky: Damn how'd I miss that\n\nHomeworlds Online (SDG# 33263)\nVariants: "Hard time"\nStarted: 2017.9.29, Ended: 2017.10.9\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: H B3 Y1 G3 Dlwillson\n\n2) wil: H Y2 B1 G3\n\twil: Let's do this!\n\n3) dlwillson: B G1 Dlwillson\n\tdlwillson: Yeehaa! :-)\n\n4) wil: B G1 Wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: B Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) wil: D Y1 Wil G3 G3\n\n11) dlwillson: B Y3 Field\n\n12) wil: B Y3 G3\n\n13) dlwillson: Discover Y1 Field B3 Sky\n\n14) wil: D Y2 Wil Y3 Why3\n\n15) dlwillson: T Y2 R2 Dlwillson\n\n16) wil: T G3 R3 Wil\n\n17) dlwillson: Build Y2 Field\n\n18) wil: M Y1 G3 Wil\n\n19) dlwillson: Discover Y2 Field G3 Forest\n\twil: Nice\n\n20) wil: T Y1 G1 Wil\n\n21) dlwillson: Build Y1 Field\n\n22) wil: B R1 Wil\n\n23) dlwillson: M Y1 Field Sky\n\n24) wil: M R1 Wil G3\n\n25) dlwillson: B G1 Dlwillson\n\n26) wil: B R1 Wil\n\n27) dlwillson: Trade G1 B1 Dlwillson\n\n28) wil: T R1 B1 Wil\n\n29) dlwillson: Move B1 Dlwillson Field\n\n30) wil: M B1 Wil G3\n\n31) dlwillson: Build B2 Field\n\n32) wil: B B2 G3\n\n33) dlwillson: M B2 Field Forest\n\n34) wil: D B1 G3 G2 G2\n\n35) dlwillson: Build B2 Forest\n\n36) wil: B B3 G2\n\n37) dlwillson: Move B2 Forest Wil\n\n38) wil: A B2 Wil\n\n39) dlwillson: S Y3 Field\nM B2 Forest Wil\nM B1 Field Forest\nM B1 Forest Wil\nC Wil B\n\n40) wil: B Y3 G3\n\tdlwillson: <fingers crossed> I sure hope this works...\n\twil: Hmm\n\n41) dlwillson: Sacrifice Y2 Forest\nMove Y1 Sky Wil\nMove Y1 Sky Wil\n\n42) wil: S G1 Wil\nB Y2 Why3\n\n43) dlwillson: Move Y1 Wil Why3\nCatastrophe Why3 Y\n\twil: Looks like it did\n\n44) wil: A Y1 Wil\n\tdlwillson: Well, the first part did, but I knew it would. It's this part here that I'm not so sure about.\n\tdlwillson: It doesn't help that I botched it. I was supposed to go with the y2 and a y... no, that doesn't work, either. What made me think this was going to work? Bah... Maybe I'll be able to recover somehow.\n\n45) dlwillson: B R1 Dlwillson\n\n46) wil: T B1 R1 G2\n\n47) dlwillson: Trade R1 Y1 Dlwillson\n\n48) wil: B R1 G2\n\n49) dlwillson: Discover Y1 Dlwillson G2 Field\n\n50) wil: Move R1 G3 Field\n\n51) dlwillson: D Y1 Field G1 Forest\n\n52) wil: Build R2 Field\n\n53) dlwillson: B Y2 Forest\n\n54) wil: S Y3 G3\nM R1 G2 Dlwillson\nM R1 Field Dlwillson\nM R2 Field Dlwillson\nC Dlwillson R\n\n55) dlwillson: M Y1 Forest Wil\n\n56) wil: S Y3 G3\nM Y1 Wil Dlwillson\nM B3 G2 Dlwillson\nM B2 G3 Wil\n\n\twil: I think that did it.\n\tdlwillson: Yup. It won't let me MAD.\r\nGood game!\n\twil: I you would have had any pawn in your homeworld... That was something else.\n\tFelix: Fascinating endgame! So tight.\n\nHomeworlds Online (SDG# 33266)\nVariants: "Hard time"\nStarted: 2017.9.29, Ended: 2017.10.6\nParticipants: ajo (S), Babamots (N)\nWinner: ajo\n\n1) Babamots: Homeworld B2 Y1 G3\n\tBabamots: Thanks for the game! Good luck!\n\n2) ajo: Homeworld R2 B3 G3\n\n3) Babamots: Build G1 Babamots\n\n4) ajo: Build G1 Ajo\n\n5) Babamots: Discover G1 Babamots B3 Betazed\n\n6) ajo: Trade G1 Y1 Ajo\n\n7) Babamots: Build G1 Babamots\n\n8) ajo: Build Y1 Ajo\n\n9) Babamots: Build G1 Betazed\n\n10) ajo: Build G2 Ajo\n\n11) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G2 Betazed\nBuild G3 Babamots\n\n12) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Ajo\nBuild Y2 Ajo\n\n13) Babamots: Trade G2 Y2 Betazed\n\n14) ajo: Discover G3 Ajo B1 Alpha\n\n15) Babamots: Discover G2 Babamots Y3 Ferenginar\n\n16) ajo: Trade Y1 R1 Ajo\n\n17) Babamots: Trade G1 R1 Betazed\n\n18) ajo: Build G1 Alpha\n\n19) Babamots: Sacrifice G3 Babamots\nBuild G2 Betazed\nBuild Y1 Betazed\nBuild G3 Babamots\n\n20) ajo: Move Y1 Ajo Alpha\n\n21) Babamots: Discover Y2 Betazed B2 Iconia\n\n22) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Ajo\nBuild Y3 Alpha\n\n23) Babamots: Sacrifice G2 Ferenginar\nBuild Y3 Betazed\nBuild Y3 Iconia\n\n24) ajo: Trade Y3 R3 Alpha\n\n25) Babamots: Trade Y2 G2 Iconia\n\n26) ajo: Sacrifice Y2 Ajo\nMove G3 Alpha Betazed\nMove G3 Betazed Babamots\n\n27) Babamots: Sacrifice Y3 Iconia\nMove G1 Betazed Babamots\nCatastrophe Babamots G\nMove Y3 Betazed Babamots\nDiscover G2 Iconia Y3 Pakled\n\tajo: Check. :)\n\n28) ajo: Move R3 Alpha Betazed\n\n29) Babamots: Sacrifice G2 Betazed\nBuild R1 Betazed\nBuild R2 Betazed\nCatastrophe Betazed R\n\n30) ajo: Build Y2 Alpha\n\n31) Babamots: Build G1 Pakled\n\n32) ajo: Move Y2 Alpha Betazed\n\n33) Babamots: Sacrifice Y1 Betazed\nMove G1 Pakled Babamots\n\n34) ajo: Build Y1 Alpha\n\tBabamots: Oh, I didn't notice that you said "check" back there. I always liked the term "red alert."\n\n35) Babamots: Build G1 Pakled\n\tBabamots: I wish ts52 would move as quickly as you. I think I'm doing better in my game with him.\n\tBabamots: Meaning that, in general, I think people move more slowly when they're losing, which is too bad for their opponents who would usually like to hurry up and win.\n\n36) ajo: Build Y2 Ajo\n\n37) Babamots: Build G2 Babamots\n\tajo: I think you're right, but that's only to be expected in any game. :) Another reason it might happen in Homeworlds is that I often set up the pieces offline so I can visualize the position better than I can with the SDG interface. But in this game I'm doing well enough that I haven't felt the need for physical pieces yet. ;)\n\tBabamots: I usually manage to put up at least a little bit of a fight, but not so much this time.\n\tBabamots: I'm trying to decide whether to quit and forget this game ever happened or sit around hoping you'll make a colossal mistake.\n\n38) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild Y3 Betazed\n\n39) Babamots: Trade Y3 R3 Babamots\n\tajo: I suspect it will be over soon either way. ;)\n\n\tBabamots: I think I'll stop here and focus on the tournament. Maybe I'll give you trouble next time :-).\n\tajo: Good game! :)\n\nHomeworlds Online (SDG# 33077)\nVariants: "Unrated"\nStarted: 2017.9.30, Ended: 2017.11.24\nParticipants: redsang (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld B3 Y1 G3\n\n2) redsang: Homeworld R1 Y2 G3 *\n\tdragon76n: Hello redsang, \r\nI hope you enjoy the game. I've played a few times, both online and in person, but not a lot. Is this your first time playing Homeworlds at all, or just first time playing it on SDG? Either way, as long as you keep playing, I'm willing to answer your questions about the game. \r\n--Nathaniel "Dragon"\n\n3) dragon76n: Build G1 Dragon76n\n\tredsang: Dragon - It is almost my first time playing at all. I am halfway through another game on SDG but not faring well.\n\n4) redsang: Build G1 Redsang\n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) redsang: Build G1 Redsang\n\tredsang: Have I just messed up by not starting with a blue?\n\n7) dragon76n: B Y1 Dragon76n\n\n8) redsang: Discover G1 Redsang B3 Tom\n\tdragon76n: Well, based on some of the things I've read, yellow, blue, and green give you a better start, but at least you can go out and discover a blue star. \n\tdragon76n: I think yellow is the worst color to begin without, since you can't move to discover anything without yellow. \n\n9) dragon76n: D Y1 Dragon76n G2 Gretwo\n\n10) redsang: Trade G1 R1 Tom\n\n11) dragon76n: Build Y2 Gretwo\n\n12) redsang: Build G1 Redsang\n\n13) dragon76n: Move Y2 Gretwo Tom\n\n14) redsang: Move G1 Redsang Tom\n\n15) dragon76n: Trade Y2 R2 Tom\n\tredsang: Just lost the other game I was playing. There's still so much about the mechanics I don't get.\n\tDraw5PlayAll: @dragon76n I think blue is the second worst to start without (you absolutely must have green to do anything useful). I use B3R1 with a G3 ship, and trade my built G1 for a Y1 to do exploring. But without blue it becomes more risky to obtain blue ships (it takes longer and your homeworld is relatively safe early on).\n\n16) redsang: Trade G1 B1 Tom\n\n17) dragon76n: A R1 Tom\n\tredsang: It seems like I have inadvertently gotten my ships stuck at Tom. Not really sure what tot do here.\n\tdragon76n: I’ll put them back to work. ;)\n\n\tdragon76n: Hi... \n\tdragon76n: Hello redsang... it looks like you've abandoned the game. \n\tDraw5PlayAll: I think so too.\n\nHomeworlds Online (SDG# 33270)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.1, Ended: 2017.10.21\nParticipants: eliscinsky (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) eliscinsky: Trade G1 R1 Eliscinsky\n\n7) ts52: B G1 Ts52\n\n8) eliscinsky: Build R1 Eliscinsky\n\n9) ts52: Build G1 Gonzo\n\n10) eliscinsky: Trade R1 Y1 Eliscinsky\n\n11) ts52: Trade G1 R1 Ts52\n\n12) eliscinsky: Move R1 Eliscinsky Gonzo\n\n13) ts52: Sacrifice R1 Ts52\nAttack R1 Gonzo\n\n14) eliscinsky: Build Y1 Eliscinsky\n\n15) ts52: Trade G1 Y1 Gonzo\n\n16) eliscinsky: Trade Y1 R1 Eliscinsky\n\n17) ts52: Build R2 Gonzo\n\n18) eliscinsky: Build G1 Eliscinsky\n\n19) ts52: Build G1 Ts52\n\n20) eliscinsky: Trade G1 B1 Eliscinsky\n\n21) ts52: Trade R2 Y2 Gonzo\n\n22) eliscinsky: Build G1 Eliscinsky\n\n23) ts52: Build G2 Gonzo\n\n24) eliscinsky: Discover G1 Eliscinsky B3 Bozo\n\n25) ts52: Build R2 Gonzo\n\n26) eliscinsky: Build G2 Bozo\n\n27) ts52: Move R1 Gonzo Ts52\n\n28) eliscinsky: Move B1 Eliscinsky Bozo\n\n29) ts52: Build R2 Gonzo\n\n30) eliscinsky: Build G2 Eliscinsky\n\n31) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Eliscinsky\nMove G2 Gonzo Eliscinsky\nCatastrophe Eliscinsky Green\n\n32) eliscinsky: Move Y1 Eliscinsky Bozo\n\n33) ts52: Move R2 Gonzo Eliscinsky\n\n34) eliscinsky: Move G2 Bozo Eliscinsky\n\teliscinsky: Nice game. I see that you'll have me in a few moves. ;)\n\n35) ts52: S R2 Gonzo\nA G2 Eliscinsky\nA R1 Eliscinsky\n\tts52: Good game. I was surprised by your choice to make it a small universe. \n\n\teliscinsky: nice game :)\n\nHomeworlds Online (SDG# 33261)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.1, Ended: 2017.10.7\nParticipants: shoejitsu (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld R1 B2 G3\n\tshoejitsu: good luck!\n\n2) shoejitsu: Homeworld G3 Y1 B3\n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) shoejitsu: Build B1 Shoejitsu\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n\tshoejitsu: ugh... thats a shame. had a busy few days and slipped my mind\n\teliscinsky: Bummer, I never wanted a RESIGNATION. Would you be interested in trying again?\n\tshoejitsu: I wouldn't mind another game, you can mark it however you want though. rules are rules!\n\tBabamots: It's fine with me if you'd both like to try again. Just fill out the start form like usual. It will temporarily break the tournament results grid, but I will fix it.\n\nHomeworlds Online (SDG# 33264)\nStarted: 2017.10.4, Ended: 2017.11.6\nParticipants: Hambone (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B1 G3\n\n\tts52: Have a good game!\n\nHomeworlds Online (SDG# 33290)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.6, Ended: 2017.11.1\nParticipants: Babamots (S), jeep (N)\nWinner: Babamots\n\n1) jeep: Homeworld B2 R1 G3\n\n2) Babamots: Homeworld B1 Y3 G3\n\tBabamots: I've filled out the form for the tournament. Good luck!\n\n3) jeep: Build G1 Jeep\n\tjeep: Thanks. GLHF\n\n4) Babamots: Build G1 Babamots\n\n5) jeep: Trade G1 Y1 Jeep\n\n6) Babamots: Trade G1 B1 Babamots\n\n7) jeep: Build Y1 Jeep\n\n8) Babamots: Build B1 Babamots\n\n9) jeep: Build Y1 Jeep\n\n10) Babamots: Discover B1 Babamots G2 Betazed\n\n11) jeep: Discover Y1 Jeep G3 Grower\n\n12) Babamots: Sacrifice G3 Babamots\nBuild B2 Betazed\nBuild B2 Betazed\nBuild B3 Babamots\n\n13) jeep: Build Y2 Grower\n\n14) Babamots: Trade B2 Y2 Betazed\n\n15) jeep: Discover Y1 Grower G2 Gammay\n\n16) Babamots: Discover B1 Babamots B2 Rubicun\n\n17) jeep: Sacrifice G3 Jeep\nBuild Y2 Gammay\nBuild Y3 Jeep\nBuild Y3 Gammay\n\n18) Babamots: Build B3 Betazed\n\n19) jeep: Trade Y1 R1 Jeep\n\n20) Babamots: Trade B3 R3 Betazed\n\n21) jeep: Trade Y3 G3 Jeep\n\n22) Babamots: Build B3 Betazed\n\n23) jeep: Sacrifice G3 Jeep\nBuild Y1 Grower\nBuild Y3 Jeep\nBuild R1 Jeep\n\n24) Babamots: Trade B3 G3 Betazed\n\n25) jeep: Discover R1 Jeep B3 Changer\n\n26) Babamots: Move R3 Betazed Grower\n\n27) jeep: Sacrifice Y2 Grower\nDiscover Y1 Grower Y2 Mover\nMove R1 Changer Rubicun\n\n28) Babamots: Sacrifice G3 Betazed\nBuild B3 Babamots\nBuild R2 Grower\nBuild B3 Rubicun\n\n29) jeep: Attack B1 Rubicun\n\n30) Babamots: Sacrifice R2 Grower\nAttack R1N Rubicun\nAttack B1N Rubicun\n\n31) jeep: Trade Y1 G1 Jeep\n\n32) Babamots: Build Y1 Betazed\n\n33) jeep: Build G1 Jeep\n\n34) Babamots: Sacrifice Y2 Betazed\nMove Y1 Betazed Grower\nMove Y1 Grower Gammay\nCatastrophe Gammay Y\n\n35) jeep: Build R2 Jeep\n\tjeep: I will be withdrawing from the tournament for personal reasons. I would like to continue this game if you are willing.\n\tBabamots: Yes, I'm happy to continue this game. Sorry to see you out of the tournament, but I know life needs to take priority.\n\n36) Babamots: Trade B3 G3 Rubicun\n\n\nHomeworlds Online (SDG# 33226)\nStarted: 2017.10.7, Ended: 2017.12.1\nParticipants: MobyNostromo (S), orangeblood (N)\nWinner: orangeblood\n\n1) orangeblood: Homeworld B1 Y3 G3\n\n2) MobyNostromo: Homeworld B2 G1 Y3\n\n3) orangeblood: Build G1 Orangeblood\n\torangeblood: Shall we do this again?\n\tMobyNostromo: Yes. I'll try to give you a more interesting game.\r\n\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) orangeblood: Trade G1 B1 Orangeblood\n\n6) MobyNostromo: B Y1 Mobynostromo\n\n7) orangeblood: Build B1 Orangeblood\n\n8) MobyNostromo: T Y1 G1 Mobynostromo\n\n9) orangeblood: Trade B1 Y1 Orangeblood\n\n10) MobyNostromo: T Y1 B1 Mobynostromo\n\n11) orangeblood: Build B2 Orangeblood\n\n12) MobyNostromo: B B2 Mobynostromo\n\n13) orangeblood: Discover B2 Orangeblood G2 Proximacentauri\n\n14) MobyNostromo: D B2 Mobynostromo R3 Merlot\n\n15) orangeblood: Build B3 Proximacentauri\n\n16) MobyNostromo: B B3 Mobynostromo\n\n17) orangeblood: Trade B2 Y2 Proximacentauri\n\n18) MobyNostromo: M B3 Mobynostromo Merlot\n\n19) orangeblood: Build Y1 Proximacentauri\n\n20) MobyNostromo: T B3 Y3 Merlot\n\n21) orangeblood: Build B2 Proximacentauri\n\n22) MobyNostromo: D B2 Merlot Y2 Lemonade\n\n23) orangeblood: Discover B3 Proximacentauri G3 Mmmdonuts\n\n24) MobyNostromo: M B1 Mobynostromo Merlot\n\n25) orangeblood: Trade B1 R1 Orangeblood\n\tMobyNostromo: I'm getting hungry.\n\n26) MobyNostromo: T Y3 G3 Merlot\n\n27) orangeblood: Sacrifice Y1 Proximacentauri\nMove B3 Mmmdonuts Mobynostromo\n\torangeblood: Donuts and merlot.\n\tMobyNostromo: Yes!!\n\n28) MobyNostromo: T G1 R1 Mobynostromo\n\n29) orangeblood: Sacrifice R1 Orangeblood\nAttack R1 Mobynostromo\n\n30) MobyNostromo: S G3 Merlot\nB Y1 Mobynostromo\nB B1 Lemonade\nB B3 Lemonade\n\n31) orangeblood: Attack Y3 Mobynostromo\n\tMobyNostromo: I think you got me.\n\n32) MobyNostromo: T B3 R3 Lemonade\n\n33) orangeblood: Attack Y1 Mobynostromo\n\torangeblood: It seems so... but I've been wrong before!\n\n\torangeblood: Good game... thanks!\n\tMobyNostromo: Thank you!\n\nHomeworlds Online (SDG# 33265)\nStarted: 2017.10.7, Ended: 2017.11.9\nParticipants: Gidaio (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Gidaio: Homeworld R3 B1 G3\n\twil: Looks like it's been awhile holler if you have any questions\n\tGidaio: I remember how to play, but I'm almost definitely going to lose. Thanks, though!\n\n3) wil: Build G1 Wil\n\n4) Gidaio: Build G1 Gidaio\n\n5) wil: T G1 B1 Wil\n\n6) Gidaio: Trade G1 Y1 Gidaio\n\n7) wil: B B1 Wil\n\n8) Gidaio: Build Y1 Gidaio\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Gidaio: Discover Y1 Gidaio G2 Gallifrey\n\n11) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n12) Gidaio: Build Y2 Gallifrey\n\n13) wil: M B2 Y3 Gallifrey\n\n14) Gidaio: Build Y2 Gidaio\n\n15) wil: Trade B3 G3 Wil\n\n16) Gidaio: Move Y2 Gallifrey Y3\n\n17) wil: S G3 Wil\nB B3 Gallifrey\nB B3 Y3\nB B3 Wil\n\n18) Gidaio: Sacrifice G3 Gidaio\nBuild Y2 Y3\nBuild Y3 Gallifrey\nBuild Y3 Gidaio\n\n19) wil: S B3 Y3\nT B2 R2 Gallifrey\nT B2 G2 Y3\nT B3 G3 Wil\n\n20) Gidaio: Move Y3 Gallifrey Y3\nCatastrophe Y3 Yellow\n\twil: Quite the response.\n\n21) wil: A Y1 Gallifrey\n\tGidaio: :D\n\n22) Gidaio: Trade Y3 G3 Gidaio\n\n23) wil: B Y2 Gallifrey\n\n24) Gidaio: Discover Y2 Gidaio B2 Bob\n\n25) wil: D Y2 Gallifrey B3 B3\n\n26) Gidaio: Trade Y2 R2 Bob\n\n27) wil: B B1 Gallifrey\n\n28) Gidaio: Build Y2 Gidaio\n\n29) wil: B Y2 Gallifrey\n\n30) Gidaio: Move Y2 Gidaio Bob\n\n31) wil: Discover B3 Gallifrey Y3 Y3\n\n32) Gidaio: Move R2 Bob B3\n\n33) wil: Sacrifice G3 Wil\nBuild B2 Gallifrey\nBuild B3 Wil\nBuild Y3 B3\n\n34) Gidaio: Attack Y2 B3\n\n35) wil: S B2 Gallifrey\nT B3 G3 Wil\nT B3 Y3 Y3\n\n36) Gidaio: Build G1 Gidaio\n\n37) wil: S G3 Wil\nB B2 Gallifrey\nB B3 Gallifrey\nB B3 Wil\n\n38) Gidaio: Sacrifice Y2 Bob\nMove Y2 B3 Wil\nDiscover G1 Gidaio G2 Terragreen\n\twil: The blue queen machine in operation\n\tGidaio: Apparently!\n\n39) wil: S R2 Gallifrey\nA R2 B3\nA Y2 Wil\n\n40) Gidaio: Build Y2 Gidaio\n\twil: The ships you have built for us are lovely, we have accepted delivery at both locations... When can we expect more?\n\tGidaio: Gah! Didn't see that one...\n\n41) wil: S B2 Gallifrey\nT B3 R3 Gallifrey\nT B3 G3 Wil\n\n42) Gidaio: Build G1 Terragreen\n\n43) wil: S G3 Wil\nB B2 Gallifrey\nB B2 Gallifrey\nB B3 Wil\n\tGidaio: I'm gonna lose, for sure. All that's left is to see how long I can make it and how much damage I can do.\n\twil: Yes this where you wait patiently for me to do something stupid and pounce.\n\n44) Gidaio: Sacrifice Y1 Gidaio\nMove G1 Terragreen Y3\n\n45) wil: B R1 Gallifrey\n\n46) Gidaio: Build Y1 Gidaio\n\n47) wil: B R1 Gallifrey\n\n48) Gidaio: Build G1 Gidaio\n\twil: Doomsday machine locked and loaded.\n\n49) wil: S Y3 B3\nM R3 Gallifrey Gidaio\nM R1 Gallifrey Gidaio\nM R1 Gallifrey Gidaio\nC Gidaio R\n\tGidaio: I literally have no idea what to do anymore. This has been a bad game for me.\n\tGidaio: If I resign, though, I lose valuable information and future strategies based on how you defeat me!\n\twil: This is now a classic doomsday.machine. I have the two big transport ships ready to send all the required ships to cause acatastrophic ending to your star system\n\n\twil: Fire torpedo tube 3 and send in the twins\n\tGidaio: There was no way to win! Good game! Hopefully my next one won't be as horrible...\n\nHomeworlds Online (SDG# 33296)\nVariants: "Unrated, Sinister, Hard time"\nStarted: 2017.10.7, Ended: 2017.10.18\nParticipants: Felix (S), wil (N), dlwillson (E)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) dlwillson: H B3 Y2 G3 Dlwillson\n\twil: I just challenged Jeep and Remneb for the tourney... \n\n3) Felix: Homeworld B1 R3 G3\n\n4) wil: B G1 Wil\n\tFelix: Too many games to juggle?\n\twil: Nevah!\n\n5) dlwillson: B G1 Dlwillson\n\n6) Felix: Build G1 Felix\n\n7) wil: T G1 B1 Wil\n\n8) dlwillson: Trade G1 B1 Dlwillson\n\n9) Felix: Trade G1 B1 Felix\n\n10) wil: B B2 Wil\n\n11) dlwillson: Build B2 Dlwillson\n\n12) Felix: Build B2 Felix\n\n13) wil: D B1 Wil Y3 Y3\n\twil: Next time we will have to mix up order..\n\n14) dlwillson: Discover B1 Dlwillson G1 Field\n\n15) Felix: Trade B2 Y2 Felix\n\tdlwillson: I set the seats to random. We just randomly ended up in the same order. :-)\n\n16) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n17) dlwillson: Build B3 Field\n\n18) Felix: Discover B1 Felix G2 Corneria\n\tDraw5PlayAll: 9 blues already?!\n\twil: The question is does he take me out to make himself and me weak again... \n\n19) wil: S B2 Y3\nT B3 G3 Wil\nT B1 R1 Y3\n\tFelix: Not today!\n\n20) dlwillson: T B2 R2 Dlwillson\n\tdlwillson: It would have worked out better today.\n\n21) Felix: Build B1 Corneria\n\twil: Bettah for you!\n\tdlwillson: Better for Felix, too! But not better for Wil... :-)\n\n22) wil: B G1 Wil\n\tFelix: \t\r\nI fail to see how it would have worked out better for me :P I would have been left with but one ship.\n\n23) dlwillson: Trade B3 Y3 Field\n\tdlwillson: You wouldn't have lost immediately... :-)\n\n24) Felix: Trade B1 R1 Corneria\n\n25) wil: T G1 R1 Wil\n\n26) dlwillson: Build Y1 Field\n\twil: He meant better for him...\n\n27) Felix: Build Y1 Felix\n\n28) wil: B G1 Wil\n\n29) dlwillson: Move Y3 Field Corneria\n\n30) Felix: Sacrifice B1 Corneria\nTrade R1 Y1 Corneria\n\n31) wil: T B2 Y2 Wil\n\n32) dlwillson: Build R1 Dlwillson\n\n33) Felix: Build Y2 Corneria\n\n34) wil: Discover Y2 Wil G3 G3\n\n35) dlwillson: B Y3 Field\n\n36) Felix: Sacrifice Y1 Corneria\nDiscover Y2 Corneria G1 Focus\n\tdlwillson: Available bigs engage my avarice and make it harder to make good decisions. ;-)\n\n37) wil: T G1 B1 Wil\n\n38) dlwillson: M R2 Dlwillson Field\n\n39) Felix: Build G1 Felix\n\n40) wil: M B1 Wil G3\n\n41) dlwillson: B R1 Field\n\n42) Felix: Trade Y2 R2 Felix\n\n43) wil: B G1 Wil\n\n44) dlwillson: Move R1 Field Corneria\n\n45) Felix: Trade G1 B1 Felix\n\n46) wil: Build B2 G3\n\n47) dlwillson: B B2 Field\n\n48) Felix: Discover B1 Felix G2 Ficus\n\n49) wil: B R2 Wil\n\n50) dlwillson: Move B2 Field Corneria\n\twil: Sure wish you were in the tourney dl\n\n51) Felix: Move R2 Felix Ficus\n\tdlwillson: How's it going? How many rounds are complete? Where's the chart? Who should I be cheering for?\n\tFelix: Here's the tourney viewer: https://docs.google.com/spreadsheets/d/1kPVTvNAsvxu1bvDR4tmNEq4g5PzAjeSvPtPwbWv1l3c/pubhtml?gid=1121943752&single=true\r\n\r\nRoot for wil, obviously!\n\n52) wil: M G1 Wil Y3\n\twil: Yes me, Felix already has the edge on me!\n\n53) dlwillson: Sacrifice G3 Dlwillson\nBuild B2 Corneria\nBuild R2 Corneria\nBuild R3 Dlwillson\n\n54) Felix: Build R3 Ficus\n\tFelix: But I've lost 2 games so far to your one!\n\n55) wil: B R3 Y3\n\twil: Two to people I have not played...and you beat me! Lol, not that I care... I play this game for the day that I see the same game twice.\n\n56) dlwillson: Sacrifice Y3 Corneria\nMove B2 Corneria Felix\nMove B2 Corneria Felix\nDiscover B1 Field Y2 Sol\n\n57) Felix: Sacrifice Y2 Focus\nMove R2 Ficus Field\nMove R2 Field Dlwillson\n\tdlwillson: I see that mneme is doing well. He's a very strong player. He hasn't been active on the ladder for a long time, but he and I used to take turns trying to beat...\n\tdlwillson: TwoShort. He's *very* hard to beat. I'd say that TTT is the only player stronger, but I've only seen TTT in a few games. As near as I can tell, he doesn't make mistakes.\n\twil: Then there is broccoli commander... We are missing the four top names!! \n\tdlwillson: What do you mean "the four top names"?\n\n58) wil: S Y2 G3\nM R1 Y3 Field\nM R1 Field Dlwillson\nC Dlwillson R\n\tFelix: Not my wisest move, but it's dangerous to corner a wild animal :P\n\twil: I mean you ain't playing!! \n\tdlwillson: Saw it coming! :-)\r\n\r\nI thought to myself, "Felix can easily hand the game to Wil. I probably would, in his position."\r\n\r\nI should've swapped something, so I'd be two-colored at home.\r\n\r\nGood game, y'all!\n\twil: You only gave him the choice of losing or insuring you didn't win... But that is twice you two combatting provided me the easy win... And twice the luck of the draw put us in the same position. Id like another game... Is it possible that we arrange the positions differently?\n\twil: I'd also like to try four person partners.. Take any opponent out and the other resigns....partners take the same homeworld setup (banker, goldilocks or fortress)... Who for the fourth?\n\tFelix: Yeah... I would lose if I kept it going, so I just wanted to give wil the victory to spite you for attacking me :)\r\n\r\nGood game! I'd be up for trying again, or for 4p teams. Maybe ts52 or mneme if he's willing for the 4th.\n\tdlwillson: I'm down for whatever, but someone else has to set up the next one.\n\tDraw5PlayAll: I thought in teams, if one member of a team dies the other just has a disadvantage (or maybe not even that).\n\twil: D5PA...who cares what the rules say on SDG...we can make up our own win conditions. When one member dies, the team loses is my suggestion. \n\tDraw5PlayAll: I have done 1 or 2 team matches unofficially and we used the "must eliminate both". I think we should put it to a vote, except that we would have an even number...\n\twil: Is there really such thing as a team match that once one is eliminated the solo player comes back to beat the other two??\n\tDraw5PlayAll: I think it is similar to the red ability: it is more of a deterrent to certain types of plans than a thing you actually use often.\r\n\r\nAlso, it might be that one of the players (nearly) sacrifices himself to take out a member of the other team, and quickly it becomes a 1v1.\r\n\r\nThen again, probably we should play it your way just because last time we did it mine and it is "only fair".\r\n\r\nI'll alert the crew.\n\n\nHomeworlds Online (SDG# 33297)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.7, Ended: 2017.10.15\nParticipants: wil (S), Remneb (N)\nWinner: wil\n\n1) Remneb: Homeworld B1 R3 G3\n\n2) wil: H B2 Y1 G3\n\n3) Remneb: Build G1 Remneb\n\n4) wil: B G1 Wil\n\n5) Remneb: Trade G1 Y1 Remneb\n\n6) wil: T G1 B1 Wil\n\n7) Remneb: Trade Y1 B1 Remneb\n\n8) wil: B B2 Wil\n\n9) Remneb: Build G1 Remneb\n\n10) wil: D B1 Wil Y3 Y3\n\n11) Remneb: Trade G1 Y1 Remneb\n\n12) wil: T B2 Y2 Wil\n\n13) Remneb: Discover B1 Remneb G2 Bronx\n\twil: Tis a tourney game!\n\n14) wil: M B1 Y3 Bronx\n\tRemneb: Trying to protect my blue star. I've lost it several times in the other games.\n\n15) Remneb: Build B2 Bronx\n\twil: I couldn't hear you so well, thought I'd come for a visit\n\n16) wil: B B2 Bronx\nC Bronx B\n\n17) Remneb: Build G1 Remneb\n\n18) wil: B G1 Wil\n\n19) Remneb: Trade G1 B1 Remneb\n\twil: Funny early reset button.\n\tRemneb: Yes.\n\n20) wil: T G1 B1 Wil\n\n21) Remneb: Discover B1 Remneb G2 King\n\n22) wil: B B2 Wil\n\n23) Remneb: Build B2 King\n\n24) wil: T B1 R1 Wil\n\n25) Remneb: Build G1 Remneb\n\n26) wil: B B1 Wil\n\n27) Remneb: Sacrifice Y1 Remneb\nDiscover B2 King Y3 Kong\n\n28) wil: M B2 Wil Kong\n\n29) Remneb: Discover B2 Kong Y2 Hydra\n\n30) wil: M B2 Kong King\n\n31) Remneb: Build B3 King\n\n32) wil: B B3 Wil\n\n33) Remneb: Trade B3 R3 King\n\n34) wil: D B3 Wil G3 G3\n\n35) Remneb: Attack B2 King\n\n36) wil: S G3 Wil\nB B3 Wil\nB B3 G3\nB R1 Wil\n\n37) Remneb: Trade G1 Y1 Remneb\n\n38) wil: M Y2 Wil G3\n\n39) Remneb: Trade B2 Y2 King\n\n40) wil: T B3 G3 Wil\n\n41) Remneb: Build B2 King\n\n42) wil: T B3 Y3 G3\n\n43) Remneb: Sacrifice G3 Remneb\nBuild Y1 King\nBuild Y3 Remneb\nBuild B3 Hydra\n\n44) wil: B B3 G3\n\n45) Remneb: Trade B2 R2 Hydra\n\n46) wil: T B3 R3 G3\n\n47) Remneb: Discover B1 King Y3 Trump\n\n48) wil: D Y3 G3 G2 G2\n\n49) Remneb: Move B2 King Trump\n\n50) wil: D B1 Wil G3 Gee3\n\n51) Remneb: Build R1 King\n\n52) wil: D Y2 G3 R2 R2\n\n53) Remneb: Move B1 Trump King\n\n54) wil: M Y3 G2 Remneb\n\n55) Remneb: Sacrifice Y1 Remneb\nMove R3 King Remneb\n\twil: It is like a yellow family reunion\n\n56) wil: S R3 G3\nA R3 Remneb\nA Y3 Remneb\nP\n\twil: I almost didn't see that opportunity... Gg!\n\tRemneb: Thanks for the game\n\n\nHomeworlds Online (SDG# 33298)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.7, Ended: 2017.11.14\nParticipants: wil (S), jeep (N)\nWinner: wil\n\n1) jeep: Homeworld B1 Y2 G3\n\tjeep: This probably puts me over my capacity for reasonable playing, but you are likely to crush me fast. ;)\n\n2) wil: H B3 Y1 G3\n\n3) jeep: Build G1 Jeep\n\n4) wil: B G1 Wil\n\n5) jeep: Trade G1 B1 Jeep\n\twil: I'll stop it and you can challenge me when available\n\twil: Holler I'll.check with babamots...don't wanna spoil the tourney\n\tBabamots: If you can't play this many games at once, you can pause the game timer by clicking the "Call an Admin" link at the top (I've never seen a site administrator actually respond, so pausing the tier is all it does). I didn't put anything about this in the rules, so I think it's OK as long as you don't pause all your games and slow down the tournament :-).\n\twil: I am noe in half a dozen games and just got to play 3 or 4 of them back and fourth turn after turn for 20-30 minutes...it was glorious.\n\tjeep: I'm okay with playing this. One of my others is a losing battle, so doesn't take much time.\n\n6) wil: T G1 B1 Wil\n\n7) jeep: Build B2 Jeep\n\n8) wil: B B2 Wil\n\n9) jeep: Discover B1 Jeep G3 Grower\n\n10) wil: D B1 Wil Y2 Y2\n\n11) jeep: Sacrifice G3 Jeep\nBuild B2 Grower\nBuild B3 Jeep\nBuild B3 Grower\n\tjeep: Yeah, didn't think ahead... \n\n12) wil: M B1 Y2 Grower\nC Grower B\n\twil: You didn't have to pull the trigger.\n\n13) jeep: Trade B3 G3 Jeep\n\tjeep: Really? Hmm... I'll review it again later. I felt like I got further behind in all other moves I considered.\n\n14) wil: B B1 Wil\n\twil: Well we is definitely tied up...I only gained one step.\n\n15) jeep: Build B1 Jeep\n\n16) wil: T B1 Y1 Wil\n\n17) jeep: Trade B2 Y2 Jeep\n\n18) wil: B G1 Wil\n\n19) jeep: Build G1 Jeep\n\n20) wil: T G1 R1 Wil\n\n21) jeep: Trade G1 R1 Jeep\n\tjeep: How does it go? If your opponent gets a weapon, you better get one too?\n\n22) wil: B G1 Wil\n\n23) jeep: Build G1 Jeep\n\twil: Just to keep the peace.\n\n24) wil: D G1 Wil B2 B2\n\n25) jeep: Discover G1 Jeep B3 Changer\n\n26) wil: B G1 B2\n\n27) jeep: Build G2 Jeep\n\n28) wil: B G2 Wil\n\n29) jeep: Sacrifice G3 Jeep\nBuild G2 Changer\nBuild G3 Changer\nBuild G3 Jeep\n\tjeep: I will be withdrawing from the tournament for personal reasons. I would like to continue this game if you are willing.\n\twil: Of course, and sorry you need to drop out...but literally, challenge me anytime!\n\n30) wil: S Y1 Wil\nM G1 B2 Changer\nC Changer G\n\n31) jeep: Build Y1 Jeep\n\n32) wil: T G2 Y2 Wil\n\n\nHomeworlds Online (SDG# 33306)\nVariants: "Hard time"\nStarted: 2017.10.9, Ended: 2017.11.16\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 Y1 G3\n\n2) Felix: Homeworld B1 R3 G3\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 B1 Wil\n\n6) Felix: Trade G1 B1 Felix\n\n7) wil: B B2 Wil\n\n8) Felix: Build B2 Felix\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Felix: Trade B1 Y1 Felix\n\n11) wil: D B1 Y3 Y2 Y2\n\n12) Felix: Build Y1 Felix\n\n13) wil: B B1 Wil\n\n14) Felix: Discover B2 Felix G2 Out\n\n15) wil: D B1 Wil Y3 Y3\n\n16) Felix: Discover Y1 Felix Y2 Crumpet\n\n17) wil: S G3 Wil\nB B3 Wil\nB B3 Y3\nB B3 Y2\n\n18) Felix: Sacrifice G3 Felix\nBuild Y2 Crumpet\nBuild Y3 Felix\nBuild Y3 Felix\n\n19) wil: T B2 R2 Wil\n\n20) Felix: Trade Y1 R1 Felix\n\n21) wil: T B1 Y1 Y3 Y3\n\n22) Felix: Move Y1 Crumpet Y3\n\n23) wil: T B3 G3 Y2\n\n24) Felix: Trade Y3 G3 Felix\n\n25) wil: D B1 Y2 Y3 Why3\n\n26) Felix: Move Y2 Crumpet Y3\nCatastrophe Y3 Y\n\n27) wil: B G1 Y2\n\n28) Felix: Build B1 Out\n\n29) wil: M G1 Y2 Why3\n\n30) Felix: Trade B1 Y1 Out\n\n31) wil: Build B1 Why3\n\n32) Felix: Build B2 Out\n\n33) wil: M B1 Why3 Out\n\n34) Felix: Trade B2 R2 Out\n\n35) wil: B B2 Out\n\n36) Felix: Attack B2 Out\n\n37) wil: S G3 Y2\nB B3 Why3\nB B3 Out\nC Out B\nB B1 Why3\n\n38) Felix: Build Y1 Out\n\n39) wil: T B3 G3 Why3\n\n40) Felix: Build Y2 Felix\n\n41) wil: D B1 Why3 G2 G2\n\n42) Felix: Move Y2 Felix G2\n\n43) wil: S G3 Why3\nB B2 Why3\nB B2 Wil\nB B3 G2\n\n44) Felix: Sacrifice R1 Felix\nAttack B1 G2\n\n45) wil: Sacrifice B2 Why3\nTrade B3 R3 G2\nTrade B3 G3 Wil\n\n46) Felix: Sacrifice Y2 G2\nMove B1 G2 Felix\nMove B1 Felix Out\n\n47) wil: Trade B2 Y2 Wil\n\n48) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y2 Felix\nBuild Y3 Out\n\n49) wil: D Y2 Wil B3 B3\n\n50) Felix: Sacrifice Y2 Felix\nMove Y3 Out B3\nMove R2 Out Why3\n\n51) wil: M Y2 B3 G2\n\twil: Nice\n\n52) Felix: Attack B1 Why3\n\n53) wil: B Y2 G2\n\n54) Felix: Trade Y2 G2 Felix\n\tFelix: Thank you! I'm *trying* to focus a little more before I make moves in this game.\n\n55) wil: M R3 G2 Why3\n\n56) Felix: Sacrifice G2 Felix\nBuild R1 Why3\nBuild R1 Why3\nCatastrophe Why3 Red\n\n57) wil: M Y2 G2 Why3\n\twil: Stop that focusing.. It just isn't fair.\n\n58) Felix: Move Y1 Out Why3\n\tFelix: I'm making increasingly worse decisions, so I must have stopped focusing :P\n\twil: I am proud of you.\n\n59) wil: B Y2 G2\n\n60) Felix: Discover B1 Why3 G2 Ichor\n\n61) wil: M Y2 Why3 Out\n\n62) Felix: Trade B1 R1 Ichor\n\n63) wil: B R1 Wil\n\n64) Felix: Discover B1 Out G3 In\n\n65) wil: Sacrifice R2 Wil\nAttack Y1 Out\nAttack Y1 Why3\n\n66) Felix: B B1 In\n\twil: I blew that opportunity\n\n67) wil: Move Y1 Out Felix\n\tFelix: And I blew my yellow monopoly, big time.\n\n68) Felix: Trade Y3 G3 Felix\n\twil: I do believe that is correct.\n\n69) wil: Build Y3 G2\n\n70) Felix: Attack Y1 Felix\n\n71) wil: M Y1 Why3 Ichor\n\n72) Felix: Attack Y1 Ichor\n\n73) wil: S Y2 G2\nM Y3 G2 In\nD Y2 G2 B3 Be3\n\n74) Felix: Build Y2 Ichor\n\n75) wil: S G1 Why3\nB Y3 Be3\n\n76) Felix: Move Y1 Ichor In\n\twil: Oops\n\n77) wil: T Y2 R2 Be3\n\n78) Felix: Sacrifice Y1 In\nMove B1 In Ichor\n\n79) wil: S R1 Wil\nA B1 In\n\n80) Felix: Build B2 Ichor\n\n81) wil: B B2 In\n\n82) Felix: Move B1 Ichor In\n\n83) wil: T B2 R2 In\n\n84) Felix: Build B2 In\n\n85) wil: Build B3 In\nCatastrophe In B\n\n86) Felix: Move Y3 B3 Ichor\n\n87) wil: Build G1 Wil\n\n88) Felix: Build B1 Ichor\n\n89) wil: T G1 B1 Wil\n\n90) Felix: Discover B1 Ichor B3 Gym\n\n91) wil: Move B1 Wil In\n\n92) Felix: Build R1 Ichor\n\n93) wil: B G1 Wil\n\n94) Felix: Trade B1 G1 Gym\n\n95) wil: T G1 R1 Wil\n\n96) Felix: Move R1 Ichor Gym\n\tFelix: Phew! Just made it.\n\twil: Lol, words used by one running down the airport and into a men's room stall...\n\twil: I just made an r1.\n\n97) wil: B G1 Wil\n\n98) Felix: Build R2 Gym\n\tFelix: Hahahaha, it does indeed! Very crude :P\n\n99) wil: B R3 In\n\n100) Felix: Build R3 Ichor\n\n101) wil: M R3 In Out\n\n102) Felix: Build G1 Gym\n\n103) wil: T G1 B1 Wil\n\n104) Felix: Build G1 Gym\n\n105) wil: D R2 Be3 G2 G2\n\n106) Felix: Sacrifice Y2 Ichor\nMove G1 Gym Wil\nMove G1 Gym Wil\n\n107) wil: M Y3 In Wil\n\n108) Felix: Sacrifice R2 Gym\nAttack B1 Wil\nAttack R1 Wil\n\n109) wil: Sacrifice R2 G2\nAttack R1 Wil\nAttack B1 Wil\n\n110) Felix: Build G2 Wil\nCatastrophe Wil Green\n\n111) wil: Build R2 Out\n\n\n\n\n112) Felix: Build R2 Gym\n\n113) wil: Sacrifice Y2 Out\nMove B1 Wil In\nDiscover B1 In G2 G2\n\n114) Felix: Build G1 Felix\n\n115) wil: Build B2 In\n\n116) Felix: Sacrifice G3 Felix\nBuild G1 Gym\nBuild G3 Felix\nBuild B3 Ichor\n\n117) wil: Trade B2 Y2 In\n\n118) Felix: Move B3 Ichor In\n\n119) wil: Sacrifice Y2 In\nMove B1 In Out\nMove R2 In G2\n\n120) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Gym\nBuild B2 In\n\n121) wil: Move Y3 Be3 G2\n\n122) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B3 Ichor\nBuild Y1 Ichor\n\n123) wil: Build Y2 G2\n\twil: Hey, we were just spending a little time squatting at your in(n)... if you wanted us to leave you just had to say so...no need to chase us out!\r\n\n\n124) Felix: Move Y1 Ichor Gym\n\tFelix: Hehehe, I know what you're doing, and it will probably work.\n\n125) wil: Move R2 G2 Felix\n\n126) Felix: Build Y2 Gym\n\n127) wil: Attack Y1 Felix\n\n128) Felix: Sacrifice Y3 Ichor\nMove Y1 Gym Wil\nMove Y2 Gym Wil\nCatastrophe Wil Yellow\nMove G3 Gym Wil\n\n\twil: like i said\n\twil: nice\n\tFelix: Good game! I honestly thought it wasn't going so well for me until about 5 turns ago.\n\nHomeworlds Online (SDG# 33227)\nVariants: "Unrated"\nStarted: 2017.10.12, Ended: 2017.12.11\nParticipants: wil (S), Ottia (N)\nWinner: wil\n\n1) Ottia: Homeworld G3 B2 Y3\n\n2) wil: H Y2 B1 G3\n\tOttia: Thanks for agreeing to another one, Wil! I will pay more attention this time around and not commit suicide (!).\n\tOttia: (you deserve a worthy opponent, obviously)\n\n3) Ottia: Build Y1 Ottia\n\n4) wil: B G1 Wil\n\n5) Ottia: Discover Y1 Ottia B1 Smurf\n\n6) wil: Trade G1 Y1 Wil\n\n7) Ottia: Build Y1 Ottia\n\n8) wil: B Y2 Wil\n\n9) Ottia: Build Y2 Ottia\n\n10) wil: D Y1 Wil Y3 Y3\n\n11) Ottia: Trade Y3 G3 Ottia\n\n12) wil: D Y1 Y3 G2 G2\n\n13) Ottia: Trade Y1 G1 Ottia\n\n14) wil: Build G1 Wil\n\n15) Ottia: Move G1 Ottia Smurf\n\twil: I didn't notice you had green in your homeworld...tempting a catastrophe..\n\tOttia: I know... (thanks for the remark i.e. taking care of me not committing suicide again)\n\n16) wil: T G1 R1 Wil\n\n17) Ottia: Build Y1 Ottia\n\n18) wil: B Y3 G2\n\n19) Ottia: Discover Y1 Smurf Y3 Yellowbrickroad\n\n20) wil: M Y3 G2 Smurf\n\n21) Ottia: Trade Y2 R2 Ottia\n\n22) wil: B R1 Wil\n\n23) Ottia: Build R1 Ottia\n\n24) wil: S R1 Wil\nA G1 Smurf\n\n25) Ottia: Move R2 Ottia Smurf\n\n26) wil: Sacrifice R1 Wil\nAttack R2 Smurf\n\n27) Ottia: Build Y2 Ottia\n\twil: We welcome your new ship to the colony we like what you've done with the place\n\n28) wil: Build Y3 G2\n\tOttia: Ahem EXTERMINATE EXTERMINATE EXTERMINATE\n\n29) Ottia: Trade Y2 R2 Ottia\n\n30) wil: Build R1 Smurf\n\n31) Ottia: Build Y2 Ottia\n\tOttia: build y2 Ottia\n\n32) wil: B G1 Wil\n\tOttia: I SHOULD PLAY WHEN I AM FULLY AWAKE\r\nI SHOULD PLAY WHEN I AM FULLY AWAKE\r\nI SHOULD PLAY WHEN I AM FULLY AWAKE\r\n(...)\n\tOttia: I SHOULD PLAY WHEN I AM FULLY AWAKE\r\nI SHOULD PLAY WHEN I AM FULLY AWAKE\r\nI SHOULD PLAY WHEN I AM FULLY AWAKE\r\n(...)\n\n33) Ottia: Discover R2 Ottia G1 Cabbage\n\n34) wil: S G3 Wil\nB G2 Smurf\nB G2 Smurf\nB G3 Wil\n\n35) Ottia: Move G3 Ottia Smurf\nCatastrophe Smurf G\n\n36) wil: M Y3 Smurf Ottia\n\n37) Ottia: Move Y2 Ottia Cabbage\n\tOttia: I'm sorry for taking so long to move... things are very busy at the moment for me. I hope I can respond a bit faster from now on.\n\twil: No worries.. Life trumps games\n\n38) wil: Sacrifice R2 Smurf\nAttack Y1 Ottia\nAttack R1 Ottia\n\n\twil: good game! Challenge me anytime\n\nHomeworlds Online (SDG# 33339)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.16, Ended: 2017.12.5\nParticipants: bhorner (S), ts52 (N)\nWinner: bhorner\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) bhorner: Homeworld B3 R1 G3\n\tts52: Have a good game!\n\tbhorner: You too, and just to be clear, this is for the Great Homeworlds Tournament organized by Babamots. :)\n\n3) ts52: Build G1 Ts52\n\tts52: Yes, got that from the challenge details. But that's for making sure it was clear.\n\n4) bhorner: B G1 Bhorner\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) ts52: Build G1 Ts52\n\n8) bhorner: B Y1 Bhorner\n\n9) ts52: Build G1 Ts52\n\n10) bhorner: B G2 Bhorner\n\n11) ts52: B G2 Gonzo\n\n12) bhorner: Build Y2 Bhorner\n\n13) ts52: Trade G2 Y2 Gonzo\n\n14) bhorner: Discover G2 Bhorner B2 Bloop\n\n15) ts52: Trade G1 R1 Ts52\n\n16) bhorner: Trade Y1 R1 Bhorner\n\n17) ts52: Build R2 Ts52\n\n18) bhorner: Build R2 Bhorner\n\n19) ts52: Move R1 Ts52 Gonzo\n\n20) bhorner: Move R2 Bhorner Bloop\n\n21) ts52: Trade G1 B1 Ts52\n\n22) bhorner: Move Y1 Bhorner Bloop\n\n23) ts52: Build G1 Ts52\n\n24) bhorner: B Y1 Bloop\n\n25) ts52: Build B1 Ts52\n\n26) bhorner: Trade Y1 B1 Bloop\n\n27) ts52: Discover B1 Ts52 Y3 Bigbird\n\n28) bhorner: Build Y1 Bloop\n\n29) ts52: Move R2 Ts52 Bigbird\n\n30) bhorner: Discover Y1 Bloop B3 Grover\n\n31) ts52: Move G1 Ts52 Bigbird\n\n32) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Bloop\nBuild Y3 Bhorner\nBuild Y3 Grover\n\n33) ts52: Build B2 Bigbird\n\n34) bhorner: D B1 Bloop R3 Xmas\n\n35) ts52: Discover B2 Bigbird G2 Kermit\n\tbhorner: Woops, not a good name. :)\n\n36) bhorner: D Y1 Grover G2 Branch\n\n37) ts52: Build G1 Bigbird\n\n38) bhorner: Build G3 Bloop\n\n39) ts52: Build G3 Ts52\n\n40) bhorner: Move G2 Bloop Grover\n\n41) ts52: Move G3 Ts52 Xmas\n\n42) bhorner: Move Y3 Grover Kermit\n\n43) ts52: Move R2 Bigbird Branch\n\n44) bhorner: D Y1 Branch R3 War\n\n45) ts52: Sacrifice G3 Xmas\nBuild G3 Gonzo\nBuild R2 Branch\nBuild R3 Gonzo\n\n46) bhorner: Sacrifice R1 Bhorner\nAttack B2 Kermit\n\n47) ts52: Move R3 Gonzo Ts52\n\n48) bhorner: Sacrifice Y3 Kermit\nMove B2 Kermit Xmas\nMove B1 Xmas Ts52\nMove B2 Xmas Ts52\nCatastrophe Ts52 B\n\n49) ts52: Sacrifice G3 Gonzo\nBuild G2 Ts52\nBuild G3 Gonzo\nBuild Y3 Gonzo\n\n50) bhorner: Sacrifice Y3 Bhorner\nMove Y1 War Ts52\nMove Y1 Bloop Ts52\nMove Y2 Bloop Ts52\nCatastrophe Ts52 Y\n\tts52: Well played sir. Excellent game.\n\tbhorner: It was, we cleaned out the entire bank. :)\n\n\nHomeworlds Online (SDG# 33340)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.16, Ended: 2017.10.21\nParticipants: wil (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\tBabamots: Good luck! Will you record the game for the tournament?\n\n2) wil: H B3 Y1 G3\n\twil: As initiator that is my job right? Gonna try to get my games knocked out... \n\n3) Babamots: Build G1 Babamots\n\tBabamots: Right, since you issued the challenge, the rules ask you to record the results. It doesn't really matter who does it, but giving the job to the challenger helps to prevent duplication.\n\n4) wil: Build G1 Wil\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) wil: T G1 Y1 Wil\n\n7) Babamots: Build Y2 Babamots\n\n8) wil: B Y2 Wil\n\n9) Babamots: Discover Y1 Babamots G3 Tellar\n\n10) wil: D Y1 Wil G2 G2\n\n11) Babamots: Build Y3 Tellar\n\twil: The copycat start....\n\n12) wil: B Y3 G2\n\n13) Babamots: Discover Y1 Tellar B2 Andor\n\n14) wil: D Y3 G2 Y3 Y3\n\n15) Babamots: Trade Y2 R2 Babamots\n\twil: Prepped for round two\n\n16) wil: T Y2 R2 Wil\n\n17) Babamots: Build Y2 Tellar\n\n18) wil: B Y2 G2\n\twil: Why did my dang thumbs type b??\n\n19) Babamots: Build R1 Babamots\n\n20) wil: B R1 Wil\n\n21) Babamots: Move Y3 Tellar G2\n\n22) wil: S Y1 G2\nD Y2 G2 R3 R3\n\n23) Babamots: Build Y1 G2\n\n24) wil: M R2 Wil Andor\n\n25) Babamots: Sacrifice Y2 Tellar\nMove Y1 Andor Y3\nMove Y1 G2 Y3\nCatastrophe Y3 Y\n\n26) wil: B R1 Wil\n\n27) Babamots: Discover R1 Babamots B3 Kronos\n\n28) wil: Trade R1 B1 Wil\n\n29) Babamots: Move Y3 G2 R3\n\n30) wil: D Y2 R3 G2 G2\n\tBabamots: I need to stay busy today, so I won't be moving so much as yesterday.\n\twil: No worries, play at your own pace.\n\n31) Babamots: Move Y3 R3 Andor\n\n32) wil: T R2 B2 Andor\n\n33) Babamots: Sacrifice R1 Kronos\nAttack B2S Andor\n\n34) wil: M B1 Wil G2\n\n35) Babamots: Discover B2 Andor G1 Vulcan\n\n36) wil: B R1 Wil\n\n37) Babamots: Build G1 Babamots\n\n38) wil: T R1 B1 Wil\n\n39) Babamots: Discover G1 Babamots B3 Orion\n\n40) wil: Build R1 Wil\n\n41) Babamots: Build G1 Babamots\n\n42) wil: Build G2 Wil\n\n43) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G3 Orion\nBuild G3 Babamots\n\n44) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B3 G2\nBuild G3 Wil\n\n45) Babamots: Sacrifice Y3 Andor\nDiscover G3 Orion B2 Andor\nMove G2 Babamots Orion\nMove B2 Vulcan G2\nCatastrophe G2 B\n\n46) wil: Build B1 Wil\n\n47) Babamots: Trade G2 Y2 Orion\n\n48) wil: Move B1 Wil G2\n\n49) Babamots: Sacrifice G3 Babamots\nBuild G1 Andor\nBuild G2 Orion\nBuild G3 Babamots\n\n50) wil: S G3 Wil\nB G3 Wil\nB B2 G2\nB Y1 G2\n\n51) Babamots: Trade G3 B3 Andor\n\n52) wil: M B1 Wil Andor\n\n53) Babamots: Trade B3 Y3 Andor\n\n54) wil: D B1 G2 G3 G3\n\n55) Babamots: Sacrifice Y3 Andor\nMove G1 Andor Wil\nMove G1 Orion Andor\nMove G1 Andor Wil\nCatastrophe Wil G\n\n56) wil: M Y1 G2 G3\n\n57) Babamots: Sacrifice Y2 Orion\nMove G2 Orion Andor\nMove G2 Andor Wil\n\twil: Nice\n\n\tBabamots: Red alert :)\n\tBabamots: Thanks for moving so often. I've really enjoyed this game.\n\twil: Nice\n\tBabamots: Good game! Will you record the result for the tournament?\n\tBabamots: Nevermind, I went ahead and filled out the form. Thanks again!\n\twil: oops,thx\n\nHomeworlds Online (SDG# 33343)\nStarted: 2017.10.16, Ended: 2017.10.16\nParticipants: Nupanick (S), Laroka (N)\nWinner: Nupanick\n\n1) Laroka: Homeworld B3 Y1 G3\n\n2) Nupanick: Homeworld R3 G2 B3\n\n3) Laroka: Build G1 Laroka\n\tNupanick: I'm gonna try something different from my normal opening, see how this goes.\n\n4) Nupanick: Build B1 Nupanick\n\n5) Laroka: Trade G1 B1 Laroka\n\n6) Nupanick: Trade B1 Y1 Nupanick\n\n7) Laroka: Build G1 Laroka\n\n8) Nupanick: Build B1 Nupanick\n\n9) Laroka: Trade G1 R1 Laroka\n\n10) Nupanick: Build Y1 Nupanick\n\n11) Laroka: Build G1 Laroka\n\n12) Nupanick: Build Y2 Nupanick\n\n13) Laroka: Sacrifice G3 Laroka\nBuild B1 Laroka\nBuild B2 Laroka\nBuild G1 Laroka\n\n14) Nupanick: Trade Y2 R2 Nupanick\nCatastrophe Laroka Blue\n\n\nHomeworlds Online (SDG# 33344)\nStarted: 2017.10.16, Ended: 2017.10.16\nParticipants: Nupanick (S), Laroka (N)\nWinner: Nupanick\n\n1) Laroka: Homeworld B3 Y2 G3\n\n2) Nupanick: Homeworld R3 G1 B3\n\n3) Laroka: Build G1 Laroka\n\n4) Nupanick: Build B1 Nupanick\n\n5) Laroka: Trade G1 B1 Laroka\n\n6) Nupanick: Trade B1 Y1 Nupanick\n\n7) Laroka: Build G1 Laroka\n\n8) Nupanick: Build Y1 Nupanick\n\n9) Laroka: Trade G1 R1 Laroka\n\n10) Nupanick: Build Y1 Nupanick\n\n11) Laroka: Build R1 Laroka\n\n12) Nupanick: Build B1 Nupanick\n\n13) Laroka: Discover R1 Laroka B1 Boobies\n\n14) Nupanick: Discover Y1 Nupanick G2 Ahegao\n\n15) Laroka: Build B2 Laroka\n\n16) Nupanick: Build B2 Nupanick\n\tNupanick: PFFT.\n\n17) Laroka: Trade B2 Y2 Laroka\n\n18) Nupanick: Move B2 Nupanick Ahegao\n\n19) Laroka: Build B2 Laroka\n\n20) Nupanick: Build B2 Nupanick\n\n21) Laroka: Trade B2 R2 Laroka\n\n22) Nupanick: Trade B2 R2 Ahegao\n\n23) Laroka: Build G1 Laroka\n\n24) Nupanick: Move B2 Nupanick Ahegao\n\n25) Laroka: Move R2 Laroka Boobies\n\n26) Nupanick: Build B2 Ahegao\n\n27) Laroka: Move G1 Laroka Boobies\n\n28) Nupanick: Sacrifice Y1 Nupanick\nDiscover B2 Ahegao Y1 Paizuri\n\n29) Laroka: Build G1 Boobies\n\n30) Nupanick: Build Y2 Nupanick\n\n31) Laroka: Move Y2 Laroka Boobies\n\n32) Nupanick: Build Y3 Ahegao\n\n33) Laroka: Build G2 Laroka\n\n34) Nupanick: Move Y3 Ahegao Boobies\n\n35) Laroka: Build Y3 Boobies\n\n36) Nupanick: Sacrifice R2 Ahegao\nAttack R2 Boobies\nAttack Y3 Boobies\n\n37) Laroka: Sacrifice R1 Boobies\nAttack R2 Boobies\n\n38) Nupanick: Trade Y3 R3 Boobies\n\n39) Laroka: Move Y2 Boobies Laroka\n\n40) Nupanick: Build Y3 Ahegao\n\n41) Laroka: Trade G3 R3 Laroka\n\n42) Nupanick: Attack R2 Boobies\n\n43) Laroka: Build G2 Laroka\n\n44) Nupanick: Attack G1 Boobies\n\n45) Laroka: Trade G2 B2 Laroka\n\n46) Nupanick: Sacrifice Y3 Ahegao\nMove R2 Boobies Laroka\nMove R3 Boobies Laroka\nMove Y3 Boobies Laroka\nCatastrophe Laroka Red\n\n47) Laroka: Trade B2 R2 Laroka\n\n48) Nupanick: Trade Y3 R3 Laroka\n\n49) Laroka: Build G2 Boobies\n\n50) Nupanick: Attack R2 Laroka\n\n51) Laroka: Trade G1 R1 Boobies\n\n52) Nupanick: Sacrifice R3 Laroka\nAttack Y2 Laroka\nAttack B1 Laroka\nAttack G2 Laroka\n\n\nHomeworlds Online (SDG# 33345)\nStarted: 2017.10.16, Ended: 2017.10.17\nParticipants: Laroka (S), Nupanick (N)\nWinner: Nupanick\n\n1) Nupanick: Homeworld R3 G2 B3\n\n2) Laroka: Homeworld R3 B2 G3\n\n3) Nupanick: Build B1 Nupanick\n\n4) Laroka: Build G1 Laroka\n\n5) Nupanick: Trade B1 Y1 Nupanick\n\n6) Laroka: Trade G1 Y1 Laroka\n\n7) Nupanick: Build B1 Nupanick\n\n8) Laroka: Build G1 Laroka\n\n9) Nupanick: Discover B1 Nupanick Y1 Altair\n\n10) Laroka: Trade G1 R1 Laroka\n\n11) Nupanick: Build Y2 Nupanick\n\n12) Laroka: Build G1 Laroka\n\n13) Nupanick: Build Y2 Nupanick\n\n14) Laroka: Move G3 Laroka Altair\n\n15) Nupanick: Discover B1 Altair G2 Betelgeuse\n\n16) Laroka: Build G1 Laroka\n\n17) Nupanick: Trade Y1 G1 Nupanick Nupanick\n\n18) Laroka: Trade G1 B1 Laroka\n\n19) Nupanick: Discover Y2 Nupanick R1 Castor\n\n20) Laroka: Move B1 Laroka Altair\n\n21) Nupanick: Move Y2 Castor Laroka\n\n22) Laroka: Move G3 Altair Laroka\n\n23) Nupanick: Sacrifice Y2 Laroka\nMove Y2 Nupanick Altair\nMove Y2 Altair Betelgeuse\n\n24) Laroka: Move G1 Laroka Altair\n\n25) Nupanick: Trade G1 Y1 Nupanick\n\n26) Laroka: Build Y2 Laroka\n\n27) Nupanick: Build Y2 Nupanick\n\n28) Laroka: Move Y2 Laroka Altair\n\n29) Nupanick: Build Y3 Betelgeuse\n\n30) Laroka: Sacrifice Y2 Altair\nMove G1 Altair Betelgeuse\nMove B1 Altair Betelgeuse\n\n31) Nupanick: Trade Y2 R2 Betelgeuse\n\n32) Laroka: Build G1 Laroka\n\n33) Nupanick: Attack G1 Betelgeuse\n\n34) Laroka: Discover G1 Laroka B1 Caprica\n\n35) Nupanick: Attack B1 Betelgeuse\n\n36) Laroka: Move G3 Laroka Caprica\n\n37) Nupanick: Sacrifice Y2 Nupanick\nMove Y3 Betelgeuse Caprica\nMove Y3 Caprica Laroka\n\n38) Laroka: Trade G1 Y1 Caprica\n\n39) Nupanick: Sacrifice R2 Betelgeuse\nAttack R1 Laroka\nAttack Y1 Laroka\n\n\nHomeworlds Online (SDG# 33347)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.17, Ended: 2017.11.15\nParticipants: bhorner (S), wil (N)\nWinner: bhorner\n\n1) wil: H B2 Y1 G3\n\twil: Lol tghwt eh? I almost challenged you earlier today!\n\n2) bhorner: H R1 B2 G3\n\tbhorner: You were the only one available with an open slot to play. :). I don't think I've ever beat you (yet).\n\n3) wil: B G1 Wil\n\n4) bhorner: B G1 Bhorner\n\n5) wil: T G1 B1 Wil\n\tbhorner: I only meant that in a friendly way btw, you invited me to the tournament! :) Good luck!\n\twil: No worries..may all mistakes be maximully capitalized on...\r\nBack we are short universe!!!!\n\twil: *ackk\n\twil: Is this what you wanted? Did you record the start to this game? I'll be glad to play it if we have too, but a lot of people don't like short uni and if it was unintentional...\n\tbhorner: It was intentional. I was a little worried that it might be a big advantage to the first player, but I haven't done it... hardly ever, and wanted to get you away from what you are used to. :)\n\tbhorner: I will record the challenge, thanks for the reminder.\n\twil: Lol, I like miniverse and microverse...totally game changers.\n\n6) bhorner: T G1 Y1 Bhorner\n\n7) wil: B B1 Wil\n\n8) bhorner: B Y1 Bhorner\n\n9) wil: D B1 Wil Y3 Y3\n\n10) bhorner: T Y1 B1 Bhorner\n\n11) wil: B G1 Wil\n\n12) bhorner: Build Y1 Bhorner\n\n13) wil: T G1 R1 Wil\n\n14) bhorner: Trade Y1 R1 Bhorner\n\n15) wil: B R2 Wil\n\n16) bhorner: Build Y1 Bhorner\n\n17) wil: T R2 Y2 Wil\n\n18) bhorner: Build Y2 Bhorner\n\n19) wil: D Y2 Wil G3 G3\n\n20) bhorner: Move Y1 Bhorner G3\n\twil: That wasn't the best move, but I think I just discovered something about this game layoutm\n\tbhorner: were you saying mine wasn't the best or yours? That last move I made really had me in a bind, I learned a lot about this layout on my last move. I figured you knew a lot about what was going on, and that was why I was in such a pinch. I didn't think I had any other choices than what I did.\n\n21) wil: B R2 Wil\n\n22) bhorner: Build Y2 G3\n\twil: No, I was saying my move was not the best\n\tDraw5PlayAll: Discovered what? The ordering of stars?\n\tbhorner: No... more like yellow is much more important earlier, and if your opponent gets to a y2, you can have a max of 2 of any color in your homeworld. There is a need to expand earlier, before trying to grow too much.\n\tbhorner: Sorry, my last message was posted thinking that wil had asked what I'd discovered. Please others, keep your comments to a minimum.\n\n23) wil: T R2 G2 Wil\n\twil: The peanut gallery is not to be heard... I believe we've discussed this.\n\n24) bhorner: Sacrifice R1 Bhorner\nAttack Y2 G3\n\n25) wil: S G2 Wil\nB G1 Wil\nB B2 Y3\n\n26) bhorner: Move B1 Bhorner G3\n\n27) wil: B R1 Wil\n\tbhorner: Sorry for the long delay, busy week at work, lots of possibilities on both sides for this turn, and this game is important to me. :)\n\n28) bhorner: Build Y3 Bhorner\n\twil: No worries.\n\n29) wil: S G1 Wil\nB B3 Y3\n\n30) bhorner: Sacrifice Y2 Bhorner\nMove B1 G3 Wil\nMove B1 Wil Y3\nCatastrophe Y3 Blue\n\n31) wil: B R2 Wil\n\n32) bhorner: Build Y2 Bhorner\n\n33) wil: M R2 Wil G3\n\twil: Yeah that was an oops\n\tbhorner: I will continue to try my hardest to avoid my own oops! :)\n\n34) bhorner: Sacrifice Y3 Bhorner\nDiscover Y2 G3 B2 Bloop\nDiscover Y2 G3 G2 Branch\nDiscover Y1 G3 G2 Twig\n\n35) wil: D R1 Wil Y3 Y3\n\n36) bhorner: Sacrifice G3 Bhorner\nBuild Y3 Bhorner\nBuild Y3 Bloop\nPass\n\n37) wil: S G3 Wil\nB R2 Y3\nB R2 Y3\nB R3 Wil\n\n38) bhorner: Trade Y3 R3 Bloop\n\n39) wil: T R3 Y3 Wil\n\n40) bhorner: Sacrifice Y2 Bhorner\nMove Y1 Bhorner Y3\nMove Y1 Y3 Wil\n\n41) wil: A Y1 Wil\n\n42) bhorner: S Y2 Bloop\nM Y1 Twig Y3\nM Y1 Y3 Wil\nC Wil Y\n\n43) wil: M R2 Y3 Wil\n\n44) bhorner: T Y3 G3 Bhorner\n\tbhorner: Maybe I went for it too soon...\n\n45) wil: B R3 G3\n\twil: One could.only hope... But you got this.\n\n46) bhorner: B G1 Bhorner\n\n47) wil: T R2 Y2 Wil\n\n48) bhorner: Build Y1 Branch\n\n49) wil: S Y2 Wil\nM R3 G3 Wil\nM R2 G3 Branch\n\n50) bhorner: Sacrifice Y1 Branch\nDiscover Y2 Branch G1 Leaf\n\n51) wil: T R1 G1 Wil\n\n52) bhorner: Build G2 Bhorner\n\n53) wil: B G2 Wil\n\n54) bhorner: Trade G1 Y1 Bhorner\n\n55) wil: T G2 Y2 Wil\n\n56) bhorner: Trade R3 B3 Bloop\n\n57) wil: B G1 Wil\n\tbhorner: I think I'll undo every move from here on out :)\n\n58) bhorner: Build Y1 Bhorner\n\n59) wil: D G1 Wil B3 B3\n\n60) bhorner: Trade Y1 B1 Bhorner\n\n61) wil: Build G2 Wil\n\n62) bhorner: Discover B1 Bhorner Y3 Sun\n\n63) wil: Build G3 B3\n\n64) bhorner: Sacrifice Y2 Leaf\nMove B3 Bloop Y3\nMove B3 Y3 Wil\n\n\twil: at least now it doesn't look so bad.\n\tbhorner: If I had moved the little blue to your home first, you could have sacrifices your y2 to move your b1 and another ship both to be blue starts, draining the bank, so I couldn't cat your blues. Was that part of your plan? It was razor thin, with all my infos to squirrel that one out! The hardest game I've ever played I think. :)\n\twil: I made a few mistakes early...it was a good game... I appreciate the ability to use the undo even thou the tourney organizers frown upon it...the locking things in with a movement coin is necessary in my opinion...good game.\n\nHomeworlds Online (SDG# 33342)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.17, Ended: 2017.10.23\nParticipants: wil (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) wil: H B3 Y1 G3\n\n3) mneme: Build G1 Mneme\n\tmneme: Good luck, have fun!\r\n\r\nI've been delaying this challenge until I had fewer simultaneous games, I'll admit, because you are the only person in the tournament whom I -know- has a good chance of beating me!\n\n4) wil: B G1 Wil\n\n5) mneme: Trade G1 Y1 Mneme\n\twil: Lol, one never knows. I can be online for a bit till we slow down.\n\twil: But take as much time as you need... \n\n6) wil: T G1 Y1 Wil\n\tmneme: *nod* I'm at work, so that's some good some bad in terms of the online question; we'll see.\n\n7) mneme: Build Y2 Mneme\n\n8) wil: B Y2 Wil\n\tmneme: Hmm. Not the way I'd play it...that said, I thought you might.\n\n9) mneme: Discover Y1 Mneme B3 Melpomene\n\n10) wil: D Y1 Wil G2 G2\n\n11) mneme: Build G1 Mneme\n\n12) wil: B G1 Wil\n\n13) mneme: Move G1 Mneme Melpomene\n\n14) wil: T G1 R1 Wil\n\n15) mneme: Trade G1 R1 Melpomene\n\n16) wil: B R2 Wil\n\n17) mneme: Build G1 Mneme\n\n18) wil: M R2 Wil G2\n\n19) mneme: Sacrifice G1 Mneme\nBuild R2 Melpomene\n\n20) wil: B R2 Wil\n\n21) mneme: Sacrifice G3 Mneme\nBuild Y2 Melpomene\nBuild Y3 Mneme\nBuild R3 Melpomene\n\n22) wil: M R2 G2 Melpomene\nC Melpomene R\n\twil: Nice quandry... I can't think far enough ahead to determine if it is better to get the large ships...\n\n23) mneme: Trade Y2 G2 Mneme\n\n24) wil: M R2 Wil G2\n\tmneme: Thanks. I was in a quandry myself, so it seemed worth the risk to set up a more complex situation.\n\n25) mneme: Trade Y1 R1 Melpomene\n\n26) wil: B R2 Wil\n\n27) mneme: Build G1 Mneme\n\n28) wil: D R2 Wil Y2 Y2\n\n29) mneme: Discover G1 Mneme Y3 Erato\n\n30) wil: B R2 G2\n\n31) mneme: Sacrifice G2 Mneme\nBuild Y1 Mneme\nBuild Y3 Melpomene\n\n32) wil: M R2 G2 Erato\n\n33) mneme: Sacrifice G1 Erato\nBuild R3 Melpomene\n\n34) wil: Build R3 Wil\n\n35) mneme: Trade R1 G1 Melpomene\n\twil: I have a short universe game going in the tourney...That is something I have to remember everytime I look at the games being played...is this the one?\n\n36) wil: Trade R3 B3 Wil\n\n37) mneme: Trade Y1 G1 Mneme\n\n38) wil: Build R1 G2\n\n39) mneme: Build R3 Melpomene\n\tmneme: I mostly just re-enalalyze each game as I get to it, since earlier inthe tournament I was in 4 games at a time much of the time. But with shoejitsu playing fairly slowly, I've mostly been able to give you my full attention.\n\tmneme: I should make a study of small and tiny universe games at some point. I never have, largely because my intuiton reads them as a loss for player 2. But since P2 starts the game on the attack if they don't simply start at disadvantage--so there are probably some openings where it's the right approach.\n\twil: Dang it...I'd rather only get half of your intention.\n\twil: I am a shoot from the hip player... I don't have the attention span to figure out everything. Although playing various players I get to learn new moves from their analyzing. I do notice if anyone can't see anyway out they tend to not want to make a move at all... a homeworlds metaphor.\n\n40) wil: B R3 Wil\n\tmneme: I'm also pretty shoot from the hip, but I do build a vocabulary of principles and best practices. One of the reasons I avoid small universe games is that they're unfamiliar to me. The stakes for everything are higher and there's less room to safely develop, so it seems like any advantage or disadvantage or risk is going to be magnified. I might be able to turn this to my advantage with practice, but I'd need some time and losses to get the practice.\r\n\r\nI learned -so- much from my first few TwoShort games.\n\twil: Yeah Ive started playing more unconventional games...just to learn them.\n\n41) mneme: Discover R3 Melpomene G2 Urania\n\n42) wil: B G1 Wil\n\n43) mneme: Trade Y3 G3 Melpomene\n\n44) wil: B B1 Wil\n\n45) mneme: Trade G1 B1 Melpomene\n\n46) wil: S Y2 Wil\nM B1 Wil Y2\nM G1 Wil Y2\n\n47) mneme: Move B1 Melpomene Urania\n\n48) wil: D B3 Wil G2 Gtwo\n\n49) mneme: Build B1 Urania\n\n50) wil: B B2 Y2\n\n51) mneme: Move G3 Melpomene Y2\n\n52) wil: M G1 Y2 Erato\n\n53) mneme: Sacrifice R3 Urania\nAttack B2 Y2\nAttack R2 Y2\nAttack B1 Y2\n\n54) wil: B R3 Erato\n\n55) mneme: Sacrifice G3 Y2\nBuild Y1 Melpomene\nBuild Y2 Mneme\nBuild Y3 Mneme\n\n56) wil: M R3 Wil Y2\n\n57) mneme: Move B2 Y2 Wil\n\n58) wil: A R2 Y2\n\n59) mneme: Sacrifice Y3 Mneme\nMove B1 Urania Wil\nMove B1 Y2 Wil\nCatastrophe Wil B\nDiscover Y2 Mneme G3 Nemesis\n\n60) wil: M R3 Erato Mneme\n\n61) mneme: Sacrifice Y3 Mneme\nMove Y2 Melpomene Wil\nMove Y1 Melpomene Wil\nMove Y2 Nemesis Wil\nCatastrophe Wil Y\n\n\twil: There...at least it will look like I tried in the final picture\n\tmneme: I don't think there was, after I grew Y.\n\tmneme: Good game!\n\twil: challenge me anytime... I need more losses!! (only way I learn)\n\tmneme: :) I'm pretty sure I'll face you at least once more in the tournament. After that...we'll see!\r\n\n\nHomeworlds Online (SDG# 33341)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.18, Ended: 2017.11.21\nParticipants: wil (S), shoejitsu (N)\nWinner: wil\n\n1) shoejitsu: Homeworld R3 B1 G3\n\n2) wil: H B2 Y1 G3\n\n3) shoejitsu: Build G1 Shoejitsu\n\twil: Good luck, I will record the start of our tourney\n\tshoejitsu: good luck!\n\n4) wil: B G1 Wil\n\n5) shoejitsu: Build G1 Shoejitsu\n\n6) wil: T G1 B1 Wil\n\n7) shoejitsu: Trade G1 B1 Shoejitsu\n\n8) wil: B B2 Wil\n\n9) shoejitsu: Build G1 Shoejitsu\n\n10) wil: D B2 Wil Y3 Y3\n\n11) shoejitsu: Build B2 Shoejitsu\n\n12) wil: Sacrifice G3 Wil\nBuild B3 Wil\nBuild B3 Y3\nBuild B3 Y3\n\n13) shoejitsu: Trade G1 Y1 Shoejitsu\n\tshoejitsu: o my\n\n14) wil: Sacrifice B2 Y3\nTrade B3 G3 Wil\nTrade B3 G3 Y3\n\n15) shoejitsu: Discover B2 Shoejitsu G2 Mix\n\twil: We retain the right to change our mind and our ships...took a break to retrofit.\n\n16) wil: B G1 Wil\n\n17) shoejitsu: Build Y1 Shoejitsu\n\n18) wil: T B1 R1 Wil\n\n19) shoejitsu: Trade Y1 R1 Shoejitsu\n\n20) wil: T G1 Y1 Wil\n\n21) shoejitsu: Move R1 Shoejitsu Mix\n\twil: Ya let me into the oil fields.,\n\n22) wil: B Y2 Wil\n\tshoejitsu: yeah.. probably could have traded the b1 away, oh well\n\n23) shoejitsu: Build Y2 Shoejitsu\n\tBabamots: I noticed that this game didn't get recorded for the tournament. Would you like to do that, wil?\n\n24) wil: D Y1 Wil B3 B3\n\twil: Oops\n\n25) shoejitsu: Move Y1 Shoejitsu Mix\n\tBabamots: I went ahead and started the tournament record of the game. Someone will just need to record the result at the end.\n\tMagicJohn: Yo, Babs........ Sorry I did not respond in the Wiz Garden Game but my wife is quite ill and I'm taking some time off gaming. Maybe catch you later... Magic John\n\n26) wil: D Y2 Wil B3 Be3\n\tshoejitsu: thanks babamots! one of us will take care of it\n\twil: Take care of her and yourself magic...\n\n27) shoejitsu: Discover B2 Mix Y3 It\n\n28) wil: M B3 Y3 Mix\n\n29) shoejitsu: Build Y2 Shoejitsu\n\n30) wil: S G3 Y3\nB G1 Wil\nB Y3 B3\nB Y3 Be3\n\tshoejitsu: this game man... you people amaze me sometimes XD\n\n31) shoejitsu: Trade B2 G2 It\n\twil: These games are never the Same.and always interesting...\n\n32) wil: S R1 Wil\nA R1 Mix\n\tshoejitsu: definitely. the hardest part of this game for me is probably mid game when trying to hone in on an end game strategy\n\n33) shoejitsu: Sacrifice G2 It\nBuild Y3 Mix\nBuild G1 Shoejitsu\n\twil: Begin with the end in mind.\n\n34) wil: A Y3 Mix\n\n35) shoejitsu: Move Y1 Mix B3\n\tshoejitsu: oops... guess i put that y3 in the wrong spot huh :D\n\n36) wil: T Y3 R3 B3\n\twil: My bad, I shoulda.thanked you for the big transport.ship and crew.\n\n37) shoejitsu: Build Y3 Shoejitsu\n\n38) wil: S Y2 Be3\nM Y1 B3 Mix\nM Y1 Mix Shoejitsu\nC Shoejitsu Y\n\tshoejitsu: yes, and you're welcome XD\n\n39) shoejitsu: Discover Y1 B3 R2 Up\n\n40) wil: Sacrifice Y3 Be3\nMove G1 Wil B3\nMove G1 B3 Up\nMove G1 Up Shoejitsu\nCatastrophe Shoejitsu G\n\n41) shoejitsu: Trade B1 G1 Shoejitsu\n\n42) wil: Move B3 Mix Shoejitsu\n\tshoejitsu: hmm. i dont think ill be coming back from this one but ill play it out\n\n43) shoejitsu: Build G1 Shoejitsu\n\twil: Yeah...this is the end... challenge me anytime.\n\n44) wil: Sacrifice R3 B3\nAttack G1 Shoejitsu\nAttack G1 Shoejitsu\nPass\n\tshoejitsu: good luck in the rest of the tourney!\n\n\nHomeworlds Online (SDG# 33358)\nVariants: "Hard time"\nStarted: 2017.10.21, Ended: 2017.12.1\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: ts52\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tts52: That's an interesting opening. Forcing a small universe eh?\n\tDraw5PlayAll: I tried it against wil twice, who did the exact same thing (B2R2+G3) back.\n\n4) ts52: Build G1 Ts52\n\tts52: Interesting. I'm curious to see how this goes.\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Draw5PlayAll: Build Y2 Draw5playall\n\n8) ts52: Discover Y1 Ts52 G3 Kermit\n\n9) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n10) ts52: Build G1 Ts52\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) ts52: Trade G1 B1 Ts52\n\n13) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n14) ts52: Trade B1 R1 Ts52\n\n15) Draw5PlayAll: Discover Y2 Draw5playall B1 B1\n\n16) ts52: Build G1 Ts52\n\n17) Draw5PlayAll: Build G1 Draw5playall\n\n18) ts52: Trade G1 B1 Ts52\n\n19) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n20) ts52: Build Y2 Kermit\n\n21) Draw5PlayAll: Build G1 Draw5playall\n\n22) ts52: Move B1 Ts52 Kermit\n\n23) Draw5PlayAll: Discover B1 Draw5playall G1 G1\n\n24) ts52: Build G1 Ts52\n\n25) Draw5PlayAll: Build Y2 Draw5playall\n\n26) ts52: Discover Y2 Kermit R1 Elmo\n\n27) Draw5PlayAll: Move Y2 Draw5playall Kermit\n\n28) ts52: Build Y3 Kermit\n\n29) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Kermit\nBuild Y3 Draw5playall\nCatastrophe Kermit Yellow\nBuild G2 Draw5playall\n\n30) ts52: Build R2 Ts52\n\n31) Draw5PlayAll: Move R1 Draw5playall G1\n\n32) ts52: Discover G1 Ts52 B3 Gonzo\n\n33) Draw5PlayAll: Move G2 Draw5playall G1\n\n34) ts52: Build G2 Ts52\n\n35) Draw5PlayAll: Build R2 G1\n\n36) ts52: Move R2 Ts52 Kermit\n\n37) Draw5PlayAll: Build R3 G1\n\n38) ts52: Sacrifice G3 Ts52\nBuild R3 Ts52\nBuild R3 Kermit\nBuild Y1 Elmo\n\n39) Draw5PlayAll: Trade R3 Y3 G1\n\n40) ts52: Trade R3 Y3 Kermit\n\n41) Draw5PlayAll: Discover R1 G1 Y2 Y2\n\n42) ts52: Build R3 Kermit\n\n43) Draw5PlayAll: Build R3 G1\n\n44) ts52: Move R3 Kermit B1\n\n45) Draw5PlayAll: Move Y2 B1 Gonzo\n\n46) ts52: Move Y1 Elmo Kermit\n\n47) Draw5PlayAll: Sacrifice R1 Y2\nAttack G1 Gonzo\n\n48) ts52: Sacrifice Y3 Kermit\nMove Y1 Kermit Draw5playall\nMove Y2 Elmo Draw5playall\nMove R3 B1 Draw5playall\nCatastrophe Draw5playall Yellow\n\n49) Draw5PlayAll: Sacrifice Y2 Gonzo\nMove R2 G1 Draw5playall\nMove R3 G1 Draw5playall\nCatastrophe Draw5playall Red\n\n50) ts52: Discover R3 Ts52 Y3 Bigbird\n\tDraw5PlayAll: Huh?!\n\n\tDraw5PlayAll: "Far from over"?! You win in 3 moves!\n\tts52: Yeah, I thought of taking the large out of my homeworld right after I posted that. Thanks for the game!\n\nHomeworlds Online (SDG# 33360)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.21, Ended: 2017.10.28\nParticipants: eliscinsky (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\n2) eliscinsky: Homeworld Y1 B2 G3\n\tBabamots: Thanks for the game! Will you record it for the tournament?\n\n3) Babamots: Build G1 Babamots\n\n4) eliscinsky: Build G1 Eliscinsky\n\tBabamots: I went ahead and filled out the tournament form. Good luck!\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Babamots: Build Y2 Babamots\n\n8) eliscinsky: Build Y2 Eliscinsky\n\n9) Babamots: Sacrifice Y2 Babamots\nDiscover Y1 Babamots Y3 Iconia\nMove Y1 Iconia Eliscinsky\nCatastrophe Eliscinsky Y\n\n10) eliscinsky: Build G1 Eliscinsky\n\n11) Babamots: Build G1 Babamots\n\tBabamots: Back to square one :-).\n\n12) eliscinsky: Trade G1 Y1 Eliscinsky\n\n13) Babamots: Discover G1 Babamots Y3 Ferenginar\n\n14) eliscinsky: Build G1 Eliscinsky\n\n15) Babamots: Build G1 Babamots\n\teliscinsky: I spy with my little eye ... a Trekie!\n\n16) eliscinsky: Trade G1 R1 Eliscinsky\n\n17) Babamots: Trade G1 R1 Babamots\n\n18) eliscinsky: Build G1 Eliscinsky\n\n19) Babamots: Build G1 Ferenginar\n\n20) eliscinsky: Trade G1 R1 Eliscinsky\n\n21) Babamots: Build R2 Babamots\n\n22) eliscinsky: Move R1 Eliscinsky Ferenginar\n\n23) Babamots: Sacrifice R1 Babamots\nAttack R1S Ferenginar\n\n24) eliscinsky: Build Y1 Eliscinsky\n\n25) Babamots: Discover G1 Ferenginar B1 Betazed\n\n26) eliscinsky: Trade Y1 B1 Eliscinsky\n\n27) Babamots: Build G1 Babamots\n\tBabamots: Definitely a Trekkie :-). Many of my system names are pretty obscure though. I use "Iconia" and "Galorndon" often.\n\n28) eliscinsky: Build B2 Eliscinsky\n\n29) Babamots: Build G2 Ferenginar\n\n30) eliscinsky: Build R1 Eliscinsky\n\n31) Babamots: Build G2 Betazed\n\n32) eliscinsky: Build Y1 Eliscinsky\n\teliscinsky: Just keep swimming, swimming, swimming. Just keep swimming, swimming, swimming. haha\n\n33) Babamots: Sacrifice G3 Babamots\nBuild G2 Betazed\nBuild G3 Babamots\nBuild G3 Babamots\n\n\teliscinsky: I resign. I now hate this game. \n\teliscinsky: I guess I just cannot grasp the rules. Everytime I try something I think should be possible the system tells me "No more moves".\n\tBabamots: I'll write you a PM with some hopefully useful information.\n\nHomeworlds Online (SDG# 32620)\nVariants: "Sinister"\nStarted: 2017.10.23, Ended: 2018.4.9\nParticipants: Draw5PlayAll (S), agentofchaos (W), Vezeon (N), Babamots (E)\nWinner: Babamots\n\n1) Vezeon: Homeworld R1 B3 G3\n\n2) Babamots: Homeworld Y2 B1 G3\n\n3) Draw5PlayAll: Homeworld B2 R3 G3\n\tBabamots: I forgot I signed up for this game. I've never actually played sinister, so this should be fun! \n\tVezeon: sinister? lol\n\tVezeon: I'm just trying to figure out how to play homeworlds online. I didn't realize this was a different variant until I saw 4 players.\n\tBabamots: Sinister means you're trying to eliminate the guy on your left. In your case, Vezeon, you win if *you* destroy me. If someone else kills me, no one wins yet, and the player to your left is then the South player.\n\tVezeon: Oh sweet ok! I was reading the rules earlier and it was talking about good vs evil but I guess that's more of when you are playing tabletop\n\tBabamots: Yeah, this site doesn't support good vs evil rules.\n\tVezeon: Makes sense. The honor system wouldn't work either lol\n\tBabamots: Actually, it wouldn't be hard to have the site randomly assign alignments to the players that only they could see. But I think most people are more interested in rules that don't involve chance.\n\tVezeon: True, this is definitely a wonderful game that relies heavily on strategy and throwing in the chance factor is a bit iffy.\n\n4) agentofchaos: Homeworld B1 R2 G3\n\tDraw5PlayAll: So just so it is all clear...\r\nDraw5PlayAll (me) needs to destroy AgentOfChaos who needs to destroy Vezeon who needs to destroy Babamots who needs to destroy me.\n\tVezeon: Thanks! :)\n\n5) Vezeon: Build G1 Vezeon\n\tagentofchaos: First time I have played sinister, thanks for the tips! :-)\n\n6) Babamots: Build G1 Babamots\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) agentofchaos: Build G1 Agentofchaos\n\n9) Vezeon: Trade G1 Y1 Vezeon\n\n10) Babamots: Trade G1 B1 Babamots\n\n11) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n12) agentofchaos: Trade G1 B1 Agentofchaos\n\tBabamots: Well, do we continue? The stashes are a little big for a three-player game.\n\tDraw5PlayAll: What just happened?! It has not been enough time yet...\r\n\r\nI vote to continue.\n\tagentofchaos: I agree the stashes are a little big, but I'm willing to continue and see what happens.\n\n13) Babamots: Build B1 Babamots\n\n14) Draw5PlayAll: Build G1 Draw5playall\n\n15) agentofchaos: Build G1 Agentofchaos\n\tDraw5PlayAll: Apparently Vezeon's account has been deleted.\n\n16) Babamots: Discover B1 Babamots G3 Ferenginar\n\tagentofchaos: how unusual\n\n17) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: Who locked me out of blue while I was not looking?\n\n18) agentofchaos: Trade G1 Y1 Agentofchaos\n\tBabamots: That would be me and my new friend agentofchaos.\n\n19) Babamots: Build B2 Ferenginar\n\n20) Draw5PlayAll: Discover Y1 Draw5playall G1 G1\n\n21) agentofchaos: Build B2 Agentofchaos\n\n22) Babamots: Trade B2 Y2 Ferenginar\n\n23) Draw5PlayAll: Build Y1 G1\n\n24) agentofchaos: Discover B2 Agentofchaos Y3 Kakradoom\n\n25) Babamots: Build B2 Ferenginar\n\n26) Draw5PlayAll: Build Y2 Draw5playall\n\n27) agentofchaos: Build Y2 Agentofchaos\n\n28) Babamots: Trade B2 R2 Ferenginar\n\n29) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n30) agentofchaos: Build G1 Agentofchaos\n\n31) Babamots: Move R2 Ferenginar G1\n\n32) Draw5PlayAll: Sacrifice Y1 G1\nDiscover Y1 G1 G2 G2\n\tDraw5PlayAll: That gives you no profit though.\n\n33) agentofchaos: Sacrifice G1 Agentofchaos\nBuild B2 Kakradoom\n\tBabamots: Even though this isn't exactly a zero-sum game, in this case I think your loss is my profit.\n\n34) Babamots: Move B1 Babamots Kakradoom\n\n35) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n36) agentofchaos: Trade B2 R2 Kakradoom\n\n37) Babamots: Move B1 Kakradoom G1\n\n38) Draw5PlayAll: Discover B2 Draw5playall G1 G1b\n\n39) agentofchaos: Build G1 Agentofchaos\n\n40) Babamots: Build B2 G1\n\n41) Draw5PlayAll: Build G1 Draw5playall\n\n42) agentofchaos: Move G1 Agentofchaos Kakradoom\n\n43) Babamots: Trade B2 Y2 G1\n\n44) Draw5PlayAll: Move R1 Draw5playall G1b\n\n45) agentofchaos: Build B2 Kakradoom\n\n46) Babamots: Build B2 Ferenginar\n\n47) Draw5PlayAll: Build B3 G1b\n\n48) agentofchaos: Build R1 Kakradoom\n\n49) Babamots: Build B3 G1\n\n50) Draw5PlayAll: Trade B3 Y3 G1b\n\n51) agentofchaos: Move B2 Kakradoom G2\n\tBabamots: I'm a little afraid agent's not coming back. What do you think D5PA? Is your enthusiasm for this match ebbing too?\n\tDraw5PlayAll: 2-3 more days then we can boot the player\n\n52) Babamots: Discover B3 G1 Y2 Galorndon\n\tagentofchaos: sorry been a bit distracted lately, will try to move more promptly\n\n53) Draw5PlayAll: Build B3 G1b\n\n54) agentofchaos: Move R1 Kakradoom G2\n\n55) Babamots: Build B3 G1\n\n56) Draw5PlayAll: Discover Y1 G2 G1 Escape\n\n57) agentofchaos: Build G2 Agentofchaos\n\n58) Babamots: Move B3 Galorndon Vezeon\n\n59) Draw5PlayAll: Build R1 G1b\n\n60) agentofchaos: Build B3 G2\n\n61) Babamots: Attack G3N Vezeon\n\n62) Draw5PlayAll: Discover G1 Draw5playall Y1 Y1\n\n63) agentofchaos: Build G2 Kakradoom\n\n64) Babamots: Build G2 Vezeon\n\tDraw5PlayAll: How is that AI project coming along?\n\n65) Draw5PlayAll: Build G2 Y1\n\n66) agentofchaos: Trade B2 Y2 G2\n\n67) Babamots: Sacrifice G3 Vezeon\nBuild Y3 Ferenginar\nBuild Y3 G1\nBuild G3 Vezeon\n\tBabamots: Haven't done anything with it for a while. There are still problems with not being able to find all valid moves.\n\n68) Draw5PlayAll: Build Y3 Escape\n\n69) agentofchaos: Build B2 G2\n\n70) Babamots: Trade B3 R3 Vezeon\n\n71) Draw5PlayAll: Discover R1 G1b B3 B3\n\n72) agentofchaos: Build R1 Kakradoom\n\n73) Babamots: Sacrifice Y3 Ferenginar\nMove B1 Ferenginar Babamots\nMove Y3 G1 Draw5playall\nMove B3 G1 Draw5playall\n\n74) agentofchaos: Move B3 G2 Escape\n\n75) Babamots: Sacrifice G3 Vezeon\nBuild R2 G1\nBuild Y3 G1\nBuild G3 Vezeon\n\tBabamots: Oh don't go! I'm supposed to eliminate you!\n\tDraw5PlayAll: Muhahahahaha\n\n\tDraw5PlayAll: Uhhhhhhhhhh\n\tBabamots: I'm perfectly happy to take the time-out win. As far as I'm concerned, I won by defeating the player to my left. Resigning to prevent that victory from technically happening isn't really in the spirit of the game.\n\nHomeworlds Online (SDG# 33007)\nVariants: "Hard time"\nStarted: 2017.10.23, Ended: 2017.10.26\nParticipants: Felix (S), Vezeon (N)\nWinner: Felix\n\n1) Vezeon: Homeworld R1 B3 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) Vezeon: Build G1 Vezeon\n\n4) Felix: Build G1 Felix\n\n5) Vezeon: Trade G1 Y1 Vezeon\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Vezeon: Discover Y1 Vezeon G2 Train\n\n8) Felix: Build G1 Felix\n\n9) Vezeon: Build G1 Vezeon\n\n10) Felix: Discover G1 Felix B1 Out\n\n11) Vezeon: Move Y1 Train Out\n\n12) Felix: Trade G1 R1 Out\n\n13) Vezeon: Discover Y1 Out G2 Eye\n\n14) Felix: Build G1 Felix\n\n15) Vezeon: Trade G1 B1 Vezeon\n\n16) Felix: Move G1 Felix Out\n\n17) Vezeon: Build G1 Vezeon\n\n\nHomeworlds Online (SDG# 33295)\nStarted: 2017.10.23, Ended: 2017.10.26\nParticipants: Vezeon (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Vezeon: Homeworld R2 B3 G3\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) Vezeon: Build G1 Vezeon\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Vezeon: Build G1 Vezeon\n\n7) MobyNostromo: T Y1 G1 Mobynostromo\n\n8) Vezeon: Trade G1 Y1 Vezeon\n\n9) MobyNostromo: T Y1 B1 Mobynostromo\n\n10) Vezeon: Build Y1 Vezeon\n\n11) MobyNostromo: D B1 Mobynostromo G3 Hohoho\n\n12) Vezeon: Discover Y1 Vezeon R1 Deana\n\n13) MobyNostromo: B B1 Hohoho\n\n14) Vezeon: Trade G1 R1 Vezeon\n\n\nHomeworlds Online (SDG# 33047)\nVariants: "Hard time"\nStarted: 2017.10.23, Ended: 2017.10.26\nParticipants: Vezeon (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\twil: Diving right into the deep end of the pool?\n\n2) Vezeon: Homeworld R3 B1 G3\n\tVezeon: lol, how'd you know?\n\n3) wil: Build G1 Wil\n\twil: When I get challenged to a game by someone I don't know...I take a look at their game play on the site... If never played homeworlds I then ask if they want a learning game...where I inform them of my thoughts on their moves and missed opportunities... saw yours and it looked like you were in a bunch of games..yet never played (here at least) Do you have a copy of arcade at home?\n\n4) Vezeon: Build G1 Vezeon\n\tVezeon: Yea, I have a copy at home but nobody is really into homeworlds. I've only been able to play a handful of times so i'm excited to use this website.\n\n5) wil: T G1 B1 Wil\n\twil: My recommendation is to lose and lose often...you will start to see attacks coming at you...and watch them.build...and then when you try that attack you'll get to see the counter...ask any questions you want during the game. I usually recommend you set up a live set on a table so you can look at them. (But you are in so many games...but still...if you want to ponder..) \n\n6) Vezeon: Trade G1 Y1 Vezeon\n\tVezeon: I love the advice. Particularly the live set up of the game. I might have to try that one day. Thanks for your help.\n\n7) wil: B B1 Wil\n\n8) Vezeon: Build G1 Vezeon\n\twil: Often best to play follow the leader early in the game with attempts to insure you get what they get.\n\twil: I count how many ships of each color to twos. And how many ships each of each color to threes.\n\n9) wil: D B1 Wil Y3 Y3\n\tVezeon: Yea I noticed its best not to make the next size available to the opponent when possible\n\n10) Vezeon: Build Y1 Vezeon\n\twil: In this game you will learn the horror of fighting the blue monopoly (if I have my way)\n\n11) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\tVezeon: Ooo. That should be pretty fun to experience \n\n12) Vezeon: Build Y2 Vezeon\n\tVezeon: Nice!\n\n13) wil: Discover B2 Y3 G2 G2\n\n14) Vezeon: Discover Y2 Vezeon R2 Boom\n\twil: I like to name my stars by the star sizes and types...lazy I am. Most players have favorite names they use, Andy likes using actual star names.\n\tVezeon: Lol, I see! So far I like naming them but i can see myself getting lazy \n\n15) wil: Trade B3 G3 Wil\n\n16) Vezeon: Trade G1 R1 Vezeon\n\n17) wil: S G3 Wil\nB B3 Wil\nB B3 Y3\nB B3 G2\n\twil: lol...I don't encourage using my star naming system....confuses the heck out of everything when two of us use it.\n\tVezeon: Oh lord i bet!\n\n18) Vezeon: Move R1 Vezeon G2\n\n19) wil: S B2 Y3\nT B3 Y3 G2\nT B3 G3 Wil\n\twil: Witness the blue queen mill... More powerful than a factory...\r\n\r\n\n\n20) Vezeon: Move Y2 Boom Y3\n\n21) wil: S G3 Wil\nB B2 G2\nB B3 G2\nB B3 Wil\n\twil: There is a gnat in my midst...but I am on a mission... I'll swat him in a minute.\n\n22) Vezeon: Sacrifice R1 G2\nAttack B1 Y3\n\n23) wil: Sacrifice B2 G2\nTrade B3 R3 Y3\nTrade B3 G3 Wil\n\n24) Vezeon: Move B1 Y3 G2\n\n25) wil: T B2 R2 G2\n\twil: I didn't do that quite right...wasted a couple turns, but in the process now have four large ships...the power of the blue queen mill... \n\tVezeon: They are giant and scary!\n\n\twil: Challenge anytime... But that was the power of a blue monopoly...try not to let anyone do that to ya...it is trouble.\n\tDraw5PlayAll: Apparently Vezeon's account was deleted. The only information I have is that attempting to access that profile brings up my own.\n\nHomeworlds Online (SDG# 33365)\nVariants: "Hard time"\nStarted: 2017.10.23, Ended: 2017.10.26\nParticipants: Felix (S), Vezeon (N)\nWinner: Felix\n\n1) Vezeon: Homeworld R2 B3 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\n3) Vezeon: Build G1 Vezeon\n\tFelix: Hello! First game?\n\tVezeon: Yup, well so far as online is concerned. Still a noob either way you swing it.\n\n4) Felix: Build G1 Felix\n\tFelix: Cool! Hope you have fun!\n\n5) Vezeon: Trade G1 Y1 Vezeon\n\n6) Felix: Trade G1 Y1 Felix\n\tVezeon: Thanks! Pretty cool so far.\n\n7) Vezeon: Build Y2 Vezeon\n\tFelix: It's an incredibly deep game, but always fun.\n\tVezeon: Yea, I was stoked to find out I could play it online. I didn't realize it was a "wait a few days" to take a turn game but oh well.\n\n8) Felix: Build Y2 Felix\n\n9) Vezeon: Discover Y2 Vezeon G1 Grump\n\n10) Felix: Discover Y1 Felix G2 Out\n\tFelix: Yeah, there's no live implementation online, unfortunately, so these games tend to take a while.\n\tVezeon: It's sort of neat to return to it every now and then. It feels like real space combat as if we are waiting for our ships to construct or travel\n\n11) Vezeon: Build G1 Vezeon\n\n12) Felix: Build G1 Felix\n\tFelix: That's a neat way to think about it!\n\n13) Vezeon: Build G2 Vezeon\n\n14) Felix: Discover G1 Felix B2 Opus\n\n15) Vezeon: Discover G2 Vezeon B1 Free\n\n\tFelix: Aw, shame. Why the resignation?\n\tDraw5PlayAll: Apparently Vezeon's account was deleted. The only information I have is that attempting to access that profile brings up my own.\n\nHomeworlds Online (SDG# 33257)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.23, Ended: 2017.10.26\nParticipants: Vezeon (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Vezeon: Homeworld B3 R2 G3\n\tdlwillson: Good luck and have fun!\n\tVezeon: Thanks! This is my first game of homeworlds not on a tabletop!\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Vezeon: Build G1 Vezeon\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Vezeon: Build G1 Vezeon\n\n7) dlwillson: B R1 Dlwillson\n\n\tdlwillson: Whoa! What happened? Why did you resign?\n\tDraw5PlayAll: Apparently Vezeon's account was deleted. The only information I have is that attempting to access that profile brings up my own.\n\nHomeworlds Online (SDG# 33363)\nVariants: "Hard time"\nStarted: 2017.10.23, Ended: 2017.11.19\nParticipants: agentofchaos (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: H R2 B1 G3\n\n2) agentofchaos: Homeworld B3 R2 G3\n\n3) bhorner: B G1 Bhorner\n\tagentofchaos: Hi, gl\n\tbhorner: Hi there, gl to you too!\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) bhorner: Trade G1 B1 Bhorner\n\n6) agentofchaos: Trade G1 B1 Agentofchaos\n\n7) bhorner: Build B2 Bhorner\n\n8) agentofchaos: Build B2 Agentofchaos\n\n9) bhorner: T B2 Y2 Bhorner\n\n10) agentofchaos: Trade B2 Y2 Agentofchaos\n\n11) bhorner: B B2 Bhorner\n\n12) agentofchaos: Build B2 Agentofchaos\n\n13) bhorner: Discover B1 Bhorner G3 Xmas\n\n14) agentofchaos: Discover B2 Agentofchaos G1 Wopolsa\n\n15) bhorner: Trade B2 R2 Bhorner\n\n16) agentofchaos: Trade B1 R1 Agentofchaos\n\n17) bhorner: B G1 Bhorner\n\n18) agentofchaos: Build B1 Wopolsa\n\n19) bhorner: B B2 Xmas\n\n20) agentofchaos: Trade B2 Y2 Wopolsa\n\n21) bhorner: T B1 Y1 Xmas\n\n22) agentofchaos: B R1 Agentofchaos\n\n23) bhorner: B Y1 Xmas\n\n\nHomeworlds Online (SDG# 33387)\nVariants: "Unrated, Hard time"\nStarted: 2017.10.28, Ended: 2017.11.10\nParticipants: eliscinsky (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\tbhorner: Hi there, good luck!\n\n3) bhorner: Build G1 Bhorner\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) bhorner: Trade G1 Y1 Bhorner\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\tbhorner: Sorry about the undo, I didn't realize you made the same size homeworld as me, I need to consider more carefully!\n\n7) bhorner: Build G1 Bhorner\n\teliscinsky: NP. I've been undoing quite a lot the last few games. ;)\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) bhorner: Trade G1 B1 Bhorner\n\n10) eliscinsky: Trade G1 R1 Eliscinsky\n\n11) bhorner: Build B1 Bhorner\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) bhorner: Build G1 Bhorner\n\n14) eliscinsky: Build R1 Eliscinsky\n\n15) bhorner: D B1 Bhorner R3 War\n\n16) eliscinsky: Discover R1 Eliscinsky Y3 Frodo\n\n17) bhorner: Move G1 Bhorner War\n\n18) eliscinsky: Move R1 Frodo Bhorner\n\n19) bhorner: Attack R1 Bhorner\n\n20) eliscinsky: Build R2 Eliscinsky\n\n21) bhorner: Sacrifice G3 Bhorner\nBuild B2 War\nBuild B2 War\nBuild B3 Bhorner\n\n22) eliscinsky: Discover R1 Eliscinsky Y3 Frodo\n\n23) bhorner: Discover B1 Bhorner G3 Xmas\n\n24) eliscinsky: Move G1 Eliscinsky Frodo\n\n25) bhorner: Build B3 Xmas\n\n26) eliscinsky: Build R2 Frodo\n\n27) bhorner: Move R1 Bhorner Xmas\n\n28) eliscinsky: Build R3 Frodo\n\n29) bhorner: Build R3 Xmas\n\n30) eliscinsky: Move R3 Frodo Bhorner\n\n31) bhorner: Attack R3 Bhorner\n\n32) eliscinsky: Build G1 Eliscinsky\n\n33) bhorner: Trade B2 Y2 War\n\n34) eliscinsky: Move R2 Eliscinsky Frodo\n\n35) bhorner: Sacrifice Y2 War\nMove R1 Xmas Bhorner\nMove R1 Bhorner Frodo\nCatastrophe Frodo R\n\n36) eliscinsky: Sacrifice G3 Eliscinsky\nBuild G2 Frodo\nBuild G2 Frodo\nBuild G2 Eliscinsky\n\n37) bhorner: S Y1 Bhorner\nM R3 Xmas Eliscinsky\n\n38) eliscinsky: Build G3 Eliscinsky\n\n39) bhorner: S R3 Bhorner\nA G3 Eliscinsky\nA G2 Eliscinsky\nA G1 Eliscinsky\n\n40) eliscinsky: Build G3 Frodo\n\n41) bhorner: Sacrifice B3 Xmas\nTrade G3 Y3 Eliscinsky\nTrade G2 Y2 Eliscinsky\nTrade G1 Y1 Eliscinsky\nCatastrophe Frodo G\nCatastrophe Eliscinsky Y\n\n\tbhorner: I will give you your bang! :)\n\tbhorner: Double catastrophe. :)\n\teliscinsky: Hazzah!!!\n\nHomeworlds Online (SDG# 33388)\nVariants: "Unrated"\nStarted: 2017.10.28, Ended: 2017.11.11\nParticipants: ts52 (S), Remneb (N)\nWinner: ts52\n\n1) Remneb: Homeworld Y1 B2 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) Remneb: Build G1 Remneb\n\tts52: Have a good game! This is for the tournament.\n\tRemneb: Have a good game too. \n\n4) ts52: Build G1 Ts52\n\n5) Remneb: Trade G1 R1 Remneb\n\n6) ts52: Trade G1 R1 Ts52\n\n7) Remneb: Build G1 Remneb\n\n8) ts52: Build G1 Ts52\n\n9) Remneb: Trade G1 B1 Remneb\n\n10) ts52: Trade G1 B1 Ts52\n\n11) Remneb: Build G1 Remneb\n\n12) ts52: Build B2 Ts52\n\n13) Remneb: Build B2 Remneb\n\n14) ts52: Discover B2 Ts52 G2 Kermit\n\n15) Remneb: Discover B2 Remneb G3 Doom\n\n16) ts52: Sacrifice G3 Ts52\nBuild B3 Ts52\nBuild B3 Kermit\nBuild B3 Kermit\n\n17) Remneb: Trade B1 Y1 Remneb\n\n18) ts52: Trade B3 Y3 Kermit\n\n19) Remneb: Sacrifice Y1 Remneb\nDiscover B2 Doom Y2 Orb\n\n20) ts52: Trade B3 G3 Ts52\n\n21) Remneb: Sacrifice G1 Remneb\nBuild B1 Orb\n\n22) ts52: Build B3 Kermit\n\n23) Remneb: Move B1 Orb Ts52\n\n24) ts52: Trade B3 R3 Kermit\n\n25) Remneb: Move B2 Orb Ts52\nCatastrophe Ts52 B\n\n26) ts52: Sacrifice Y3 Kermit\nMove B3 Kermit Ts52\nMove B3 Ts52 Remneb\nMove G3 Ts52 Remneb\n\n27) Remneb: Move G3 Remneb Ts52\n\n28) ts52: Sacrifice R3 Kermit\nAttack R1 Remneb\nPass\nPass\n\n\tts52: Thanks for the game!\n\tRemneb: Thanks for the game too !\n\nHomeworlds Online (SDG# 33386)\nVariants: "Unrated"\nStarted: 2017.11.1, Ended: 2018.2.9\nParticipants: Babamots (S), BlueSkies (N)\nWinner: Babamots\n\n1) BlueSkies: Homeworld R1 B2 G3\n\tBabamots: So this is from my "training game challenge." Are you a pretty new player?\n\n2) Babamots: Homeworld G3 Y2 B3\n\n3) BlueSkies: Build G1 Blueskies\n\tBlueSkies: Hi Babamots, I am a complete beginner.\n\n4) Babamots: Build B1 Babamots\n\n5) BlueSkies: Trade G1 Y1 Blueskies\n\tBabamots: Well, so far so good! Let me know any time you'd like help analyzing the position. I'll start saying stuff about the game spontaneously when it's a little more complicated.\n\tBlueSkies: Ok this is great. I appreciate any advice you may have.\n\n6) Babamots: Build B1 Babamots\n\tBlueSkies: I was wondering, what is the usual protocol on superdupergames? Do games tend to be played in realtime or over a matter of days?\n\n7) BlueSkies: Discover Y1 Blueskies G3 Biggreen\n\n8) Babamots: Discover B1 Babamots G1 Betazed\n\tBabamots: Right now, I'm trying to build all the little blue ships so that you can't trade any of your little ships to get blue (this is "freezing you out" of blue). You are in a good position to try to do the same to me but with yellow. Neither of us will succeed unless the other makes a mistake, though.\n\n\tBlueSkies: Sorry, I hate to do this, but I think I will have to come back to game at some later point. Thanks again though.\n\tBabamots: It's normal for purple to only make one or two moves a day (sometimes less). It's fine if you're now leaving for a day or two. If you'll be gone more than a week, we'll need to pause the timer. Also, I composed my last chat before you moved. I will be able to freeze you out of blue now.\n\tBabamots: Purple=people. That's the trouble with typing on a phone at the bus stop. \n\nHomeworlds Online (SDG# 33323)\nVariants: "Unrated"\nStarted: 2017.11.1, Ended: 2017.11.28\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld B3 Y2 G3\n\n2) wil: H B2 Y1 G3\n\twil: Thanx for the game!\n\n3) dragon76n: Build G1 Dragon76n\n\n4) wil: B G1 Wil\n\tdragon76n: Hi Wil, glad I could join you again. \n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) wil: T G1 Y1 Wil\n\n7) dragon76n: Build Y2 Dragon76n\n\n8) wil: B Y2 Wil\n\n9) dragon76n: D Y2 Dragon76n G1 Greone\n\n10) wil: D Y1 Wil G3 G3\n\n11) dragon76n: B Y3 Greone\n\n12) wil: B Y3 G3\n\n13) dragon76n: D Y2 Greone G2 Gretwo\n\n14) wil: D Y2 Wil Y3 Y3\n\n15) dragon76n: B G1 Dragon76n\n\n16) wil: B G1 Wil\n\n17) dragon76n: T G1 R1 Dragon76n\n\n18) wil: T G1 R1 Wil\n\twil: Well what color should eliminate next?\n\n19) dragon76n: B G1 Dragon76n\n\n20) wil: B R1 Wil\n\twil: An arms race it is\n\n21) dragon76n: Build R2 Dragon76n\n\n22) wil: B R2 Wil\n\n23) dragon76n: T R1 G1 Dragon76n\n\n24) wil: B G2 Wil\n\n25) dragon76n: Discover G1 Dragon76n B1 Bluone\n\n26) wil: M R2 Wil G3\n\n27) dragon76n: S G3 Dragon76n\nB G2 Bluone\nB R1 Dragon76n\nB G3 Dragon76n\n\n28) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Wil\nBuild R3 G3\n\n29) dragon76n: Move R1 Dragon76n Greone\n\n30) wil: Trade R1 B1 Wil\n\n31) dragon76n: Sacrifice G3 Dragon76n\nBuild G3 Dragon76n\nBuild R1 Greone\nBuild R3 Dragon76n\n\n32) wil: Move R3 G3 Bluone\n\n33) dragon76n: Sacrifice Y2 Gretwo\nMove G1 Bluone G3\nMove G2 Bluone G3\n\n34) wil: Sacrifice R2 Wil\nAttack G2 G3\nAttack G1 G3\n\n35) dragon76n: S Y3 Greone\nM G1 Dragon76n Greone\nM G1 Greone G3\nC G3 Green\nD R2 Dragon76n Y1 Yelone\n\n36) wil: B R2 Wil\n\n37) dragon76n: B Y2 Dragon76n\n\n38) wil: Build B1 Wil\n\n39) dragon76n: T Y2 B2 Dragon76n\n\n40) wil: Discover R2 Wil B3 B3\n\n41) dragon76n: Move B2 Dragon76n Greone\n\n42) wil: Move B1 Wil Y3\n\n43) dragon76n: Build Y2 Dragon76n\n\n44) wil: Sacrifice G2 Wil\nBuild R2 Bluone\nBuild R3 B3\n\n45) dragon76n: S Y2 Dragon76n\nM R1 Greone B3\nM R1 Greone B3\nC B3 Red\n\n46) wil: Trade R3 Y3 Bluone\n\n47) dragon76n: B B2 Greone\n\n48) wil: S G3 Wil\nB B3 Wil\nB B3 Y3\nB Y2 Bluone\n\n49) dragon76n: T R3 G3 Dragon76n\n\n50) wil: Trade B3 G3 Wil\n\n51) dragon76n: T B2 R2 Greone\n\n52) wil: Move B3 Y3 Yelone\n\n53) dragon76n: Discover R2 Yelone Y3 Yelthr\n\n54) wil: Build G1 Wil\n\n55) dragon76n: B R1 Greone\n\n56) wil: Move Y3 Bluone Yelthr\n\n57) dragon76n: Discover R2 Yelthr R1 Redone\n\n58) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 Bluone\nBuild R3 Bluone\n\n59) dragon76n: Sacrifice B2 Greone\nTrade R2 G2 Greone\nTrade R2 G2 Redone\n\n60) wil: Sacrifice Y2 Bluone\nMove R3 Bluone Dragon76n\nMove B3 Yelone Dragon76n\n\n61) dragon76n: Sacrifice R1 Greone\nAttack R3 Dragon76n\n\twil: oops, me thinks\n\n62) wil: Sacrifice R2 Bluone\nAttack R3 Dragon76n\nAttack G3 Dragon76n\n\n63) dragon76n: Sacrifice G2 Redone\nBuild Y1 Dragon76n\nBuild G1 Dragon76n\n\n64) wil: S R3 Dragon76n\nA Y1 Dragon76n\nA Y1 Dragon76n\nA G1 Dragon76n\n\tdragon76n: It reminds me of when I played Chess with my grandfather years ago... I can sacrifice my queen now, and my king lives a little longer, or he'll take something else, and that will be checkmate.\n\n65) dragon76n: S G2 Greone\nB G1 Dragon76n\nB G2 Dragon76n\n\tdragon76n: Good game. I wasn't expecting that homeworld invasion right then. I thought about sacrificing my yellow ship to knock out a bunch of your red ships with a catastrophe, but obviously decided not to and I'm paying for it now. \n\twil: I was looking at the invasion...and then those two dang r2s were in the way...I wished them gone and low and behold.... To my surprise. They were!!\n\n66) wil: S G3 Dragon76n\nB B2 Dragon76n\nB B2 Dragon76n\nB Y2 Dragon76n\nC Dragon76n Y\nC Dragon76n G\nC Dragon76n B\n\n\twil: Triple catastrophe fun never done that before. \n\nHomeworlds Online (SDG# 33313)\nStarted: 2017.11.5, Ended: 2017.11.5\nParticipants: ts52 (S), TumbleSteak (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 33405)\nVariants: "Unrated"\nStarted: 2017.11.6, Ended: 2017.11.9\nParticipants: Babamots (S), smokeytroll42 (N)\nWinner: Babamots\n\n1) smokeytroll42: Homeworld B1 R2 G3\n\tsmokeytroll42: Hello! New player here. Looking for any words of wisdom! Thanks!\n\tBabamots: Sure! Have you played before at all? Do you need any help understanding how to tell your moves to the website?\n\n2) Babamots: Homeworld G3 Y2 B3\n\tsmokeytroll42: I think I have the commands basically down, but I’ll ask if I have any questions. This is my first game, but I’ve read a bit on strategy.\n\n3) smokeytroll42: Build G1 Smokeytroll42\n\tsmokeytroll42: Any rationale for certain moves or basic advice would be appreciated. But don’t feel like you need to go easy on me.\n\tBabamots: My plan is to play my best, but I will answer questions, give suggestions, and warn you when you should block me from doing something tricky.\n\tBabamots: (For now, your only sensible move is to build, and you can count on my next move being a build as well)\n\tsmokeytroll42: Excellent, much appreciated! \n\tsmokeytroll42: So for building, am I only restricted to green ships? Or can I expand my system?\n\tBabamots: You can only build ships with colors that you already have. Since your only ship is green, you can only build green ships.\n\tBabamots: If you build a g1 now and trade it for a y1 on your next turn, then you will be able to build green ships and yellow ships in your home system.\n\tsmokeytroll42: So you get the actions of your system’s colors, just not for building ships?\n\n4) Babamots: Build B1 Babamots\n\n5) smokeytroll42: Build G1 Smokeytroll42\n\tBabamots: Yes, so my green system marker lets me build things, but I have to build blue ships because, so far, I only have blue ships.\n\n6) Babamots: Trade B1 G1 Babamots\n\tsmokeytroll42: So how do I build bigger ships?\n\tBabamots: When you pick a color of ship to build, you have to use the smallest piece available. You get to build bigger ships when the little ones are used up.\n\n7) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\tBabamots: And right now, you shouldn't build a 4th green, because then I can make it a catastrophe (any time four pieces of the same color are in the same system, they can all be destroyed by any player who gives the catastrophe command).\n\n8) Babamots: Build B1 Babamots\n\tBabamots: One thing to watch for in the next few moves is getting "frozen out" of a color. If you build the last two y1 before I trade for a y1, it will be harder for me to get any yellow at all (since I'll have to wait and trade for a y2 after I get a medium of another color). You will be frozen out of blue if you don't get a b1 before I build the last two b1. Getting frozen out of yellow is probably worse than getting frozen out of blue, though.\n\tBabamots: I traded for a g1 earlier to make sure you couldn't freeze me out of green, which would have been pretty bad.\n\n9) smokeytroll42: Build Y1 Smokeytroll42\n\tsmokeytroll42: So being frozen out of yellow would basically trap someone?\n\n10) Babamots: Trade B1 Y1 Babamots\n\tBabamots: Yes, getting frozen out of yellow makes it hard to move. I can always move from home since I have a yellow star, but if I can't get a yellow ship, I wouldn't be able to move away from my new system (unless I chose a yellow star there too...).\n\n11) smokeytroll42: Build Y2 Smokeytroll42\n\tsmokeytroll42: How does movement work? Do I select what’s in a new system?\n\tBabamots: Yes, you get to pick the marker piece ("star") for new systems. If you want to want to "discover" a new system right now, you'll have to choose a large marker because large is the only size missing from your home markers. If you wanted to use your g1 to discover a system with a b3 marker, the command is "discover g1 smokeytroll42 b3 NewSystemName".\n\tsmokeytroll42: Is that an advisable strategy, or is continuing to build the fleet higher priority at this point in the game?\n\tBabamots: Rather than moving out right now, you should probably either build a y2 (since they just became available) or trade one of your y1s for a b1 (which will prevent me from getting a medium piece for a while). I think you're better off building y2. Then, if I build y2, you will have the first opportunity to build y3 (though you would need use a yellow to discover a new system first, because building another yellow right away makes a catastrophe).\n\n12) Babamots: Build Y2 Babamots\n\n13) smokeytroll42: Discover Y2 Smokeytroll42 B3 Galileo\n\n14) Babamots: Discover Y1 Babamots B1 Betazed\n\tBabamots: I'm going to try to prevent you form safely building yellows by moving a yellow ship toward you. If you build a y3 in your home system, I will be able to sacrifice y2 to move the y1 twice, reach your home, and call catastrophe on your new y3.\n\tBabamots: You can safely build y3 in Galileo, but you will need to sacrifice a green ship to do it.\n\n15) smokeytroll42: Build Y3 Smokeytroll42\n\n16) Babamots: Sacrifice Y2 Babamots\nMove Y1 Betazed Galileo\nMove Y1 Galileo Smokeytroll42\nCatastrophe Smokeytroll42 Y\n\n17) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\tBabamots: You come out ahead from all that.\n\tsmokeytroll42: catastrophes can be caused if the opponent puts a ship in there as well? Walk me through what happened there.\n\tBabamots: Here's the position before my move:\r\nhttp://www.superdupergames.org/?page=archive_play&gid=33405&idx=14\r\n\r\nYou had three yellow ships and I moved in a fourth yellow ship. Because there were four yellow ships, I could call catastrophe and destroy all four of them.\n\tsmokeytroll42: Okay\n\tsmokeytroll42: I missed that one messaged where you warned me about building the Y3\n\n18) Babamots: Build B1 Babamots\n\n19) smokeytroll42: Build G1 Smokeytroll42\n\n20) Babamots: Build B1 Babamots\n\n21) smokeytroll42: Trade Y2 B2 Galileo\n\n22) Babamots: Trade B1 Y1 Babamots\n\n23) smokeytroll42: Trade B2 Y2 Galileo\n\n24) Babamots: Discover B1 Babamots B1 Iconia\n\n25) smokeytroll42: Move G1 Smokeytroll42 Galileo\n\n26) Babamots: Build B2 Babamots\n\n27) smokeytroll42: Build G1 Galileo\n\n28) Babamots: Build B2 Babamots\n\n29) smokeytroll42: Trade Y2 R2 Galileo\n\n30) Babamots: Trade B2 R2 Babamots\n\n31) smokeytroll42: Build G2 Smokeytroll42\n\tBabamots: As soon as my opponent gets a red ship, I always get one too, whether I can see an immediate threat or not. In this case, I'm not going to be able to prevent from from taking my b1 on Iconia (if you're willing to sacrifice your y1 to get your r2 there).\n\tsmokeytroll42: My thought was to sacrifice the R2 to take the B1 and another in your home system. Is that how that works?\n\tBabamots: Yes, you can sacrifice an r2 to attack twice, but you do have to have a ship in the system where you want to attack. Your ship in that system must be at least as large as the ship you want to attack. You don't any ships in systems where my ships are, so you can't attack just yet.\n\tBabamots: The thing I would work on right now, if I were you, is building the g2 ships (since medium is the largest ship available to build in any color).\n\n32) Babamots: Build G2 Babamots\n\n33) smokeytroll42: Build G2 Smokeytroll42\n\n34) Babamots: Discover G1 Babamots Y1 Bajor\n\n35) smokeytroll42: Trade G2 Y2 Smokeytroll42\n\n36) Babamots: Move B2 Babamots Bajor\n\n37) smokeytroll42: Move Y1 Smokeytroll42 Galileo\n\n38) Babamots: Build B2 Bajor\n\n39) smokeytroll42: Discover G2 Smokeytroll42 B3 Newton\n\tBabamots: Right now, we're both avoiding building the last g2 so that the other person doesn't get the g3. I suggest trying to split up your green ships a bit so that you can get the g2 and g3 at the same time with a "factory" move:\r\nsacrifice g3 smokeytroll42\r\nbuild g2 (wherever)\r\nbuild g3 (wherever)\r\nbuild g3 (wherever)\n\tBabamots: Of course, I can try to stop you from getting the last g3 by either returning my g2 to the stash (running me very low on green ships) or by discovering a g3 system.\r\n\r\nYou also might want to try to stop me from getting a b3 (for example, by discovering a b3 system).\n\tBabamots: You could even do that factory move now and put the g2 in Galileo and both g3s in your home system. I could do the green catastrophe in Galileo, but the g3 would be safe in your home. \n\n40) Babamots: Discover B2 Bajor G3 Cardassia\n\n41) smokeytroll42: Move R2 Galileo Iconia\n\tsmokeytroll42: Any chance you could type out an example sarafice command for me?\n\n42) Babamots: Build G2 Bajor\n\tBabamots: You have to put each action of a sacrifice move on a new line.\r\n\r\nHere's a green sacrifice (large ship, three actions). You can build different colors in different systems in the same sacrifice.\r\n\r\nsacrifice g3 smokeytroll42\r\nbuild g2 Newton\r\nbuild g3 Galileo\r\nbuild y2 smokeytroll42\r\n\r\nHere's a yellow sacrifice (medium ship, two actions). You can move the same ship repeatedly or move multiple ships.\r\n\r\nsacrifice y2 smokeytroll42\r\nmove r2 Iconia Babamots\r\ndiscover g1 Galileo b2 Kepler\r\n\r\nYou don't have to use all of the actions when you sacrifice a ship. If you sacrifice your red ship now, there would be no attack actions that you could take, but you could sacrifice it if you wanted to for some reason. You would have to state that you wanted to pass instead of taking those actions.\r\n\r\nsacrifice r2 Iconia\r\npass\r\npass\r\n\r\nWhat I expect you want to do on your next turn is capture my b1 in Iconia. For that, you need to specify the current owner of the ship (by putting a "s" after the ship type, since I am the south player).\r\n\r\nattack b1s Iconia\n\n43) smokeytroll42: Attack B1S Iconia\n\tsmokeytroll42: Thanks! That is helpful.\n\n44) Babamots: Move B2 Bajor Galileo\n\n45) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove G1 Galileo Iconia\nMove G1 Galileo Iconia\n\n46) Babamots: Build Y2 Babamots\n\tBabamots: I am planning to my sacrifice r2 to take two of your small ships in Galileo. There are two usual responses to an invasion like this\r\n1) sacrifice y2 in your home to move two little ships out of Galileo\r\n2) Sacrifice y1 in Galileo to move one g1 out of Galileo (you lose the y1 for no reason other than to keep me from getting it). I think this second option is your best move.\n\tBabamots: Trouble is, you move so quickly that my advice comes after your move :-). I need to post advice before I move I guess. I'll give you a few minutes in case you want to undo (I can just take that y2 from you by sacrificing my r2).\n\n47) smokeytroll42: Trade G2 Y2 Newton\n\tBabamots: I passed and undid it to send you an "It's your move" notice to give you more chance to undo your move if you like.\n\tsmokeytroll42: Oh, I was thinking that ships of same size were safe, which I guess wouldn’t make sense because you could never capture a three then.\n\n48) Babamots: Sacrifice R2 Babamots\nAttack Y1N Galileo\nPass\n\n49) smokeytroll42: Sacrifice G1 Iconia\nBuild Y3 Newton\n\n50) Babamots: Sacrifice G2 Babamots\nBuild Y3 Galileo\nBuild Y3 Galileo\n\tBabamots: I haven't decided what to do about it yet, but right now, you are threatening to destroy either of my home system stars. Unless I prevent it, by sacrificing your new y2, you could destroy my green marker by\r\n\r\nsacrifice y2 Newton\r\nmove g1 Iconia Babamots\r\nmove g1 Iconia Babamots\r\ncatastrophe Babamots g\r\n\r\nYou could destroy my yellow marker by\r\n\r\nsacrifice y2 Newton\r\nmove y1 Galileo Iconia\r\nmove y1 Iconia Babamots\r\ncatastrophe Babamots y\r\n\r\nBut I'm deciding how to prevent both of these moves.\n\tBabamots: Those aren't necessarily great moves since you lose more ships than I do, but it's always awkward to only have half a home.\n\tsmokeytroll42: Yes lol. That one I actually planned. That’s why I saved the two G1s with the Y2 sacrifice as opposed to the Y1 sacrifice.\n\tBabamots: I've decided that I don't really mind if you do the green catastrophe, but I want to prevent the yellow one and open up my chances for building y3.\n\n51) smokeytroll42: Sacrifice Y3 Newton\nMove Y2 Newton Iconia\nMove Y2 Iconia Babamots\nCatastrophe Babamots Y\nMove R2 Iconia Cardassia\n\tBabamots: If you do the green catastrophe, I think I'll be able to lock you out of yellow technology pretty quickly, so I don't mind.\n\tBabamots: Specifically, after your move\r\n\r\nsacrifice y2 Newton \r\nmove g1 Iconia Babamots \r\nmove g1 Iconia Babamots \r\ncatastrophe Babamots g\r\n\r\nmy plan is\r\n\r\nsacrifice g2 Bajor\r\nbuild y2 Galileo\r\nbuild y3 Galileo\r\n\r\nat which point, your only way to get a yellow ship is to trade your g3 at home. But then you can't build at home nor move any ships (because sacrificing the only ship in your home leavs your home empty and you would lose).\n\tBabamots: You might be better off by moving your r2 someplace to threaten to attack more of my ships (I did just lose my only red after all).\n\tsmokeytroll42: Lots to think about in this game. I like it!\n\tBabamots: I think your best move right now is to get another yellow ship:\r\n\r\nsacrifice g1 Iconia\r\nbuild y3 Newton\n\tsmokeytroll42: I think I need to sacrifice the Y2 either way to do anything useful.\n\tsmokeytroll42: i think you’re right. The catastrophe would be satisfying, but maybe not the best long term move.\n\n52) Babamots: Sacrifice G2 Bajor\nBuild B2 Babamots\nBuild B3 Cardassia\n\n53) smokeytroll42: Build G1 Smokeytroll42\n\tsmokeytroll42: Can you chain events with a sacrifice ie Sacrafice Y3 Newton, move Y2 Newton Iconia, move Y2 Iconia Babamots?\n\tBabamots: Yes, that's a legitimate move except that you only used two move actions there, so you have one more available. If that's the type of move you want, you might consider\r\n\r\nsacrifice y3 Newton\r\nmove y2 Newton Iconia\r\nmove y2 Iconia Babamots\r\ncatastrophe Babamots y\r\nmove r2 Iconia Cardassia\r\n\r\nIf you don't want to use that third action, you will have to pass, like this\r\n\r\nsacrifice y3 Newton\r\nmove y2 Newton Iconia\r\nmove y2 Iconia Babamots\r\ncatastrophe Babamots y\r\npass\n\n54) Babamots: Trade Y1 R1 Galileo\n\n55) smokeytroll42: Trade G1 R1 Smokeytroll42\n\n56) Babamots: Sacrifice R1 Galileo\nAttack R2N Cardassia\n\n\tBabamots: Looks like we could get caught in a cycle :-).\n\tBabamots: Oh no wait, somehow I thought you had taken my b2 in Galileo at some point. Nevermind. No cycle.\n\tBabamots: I mean my b2 in Cardassia. I'm trying to do several things at once, and so I haven't been looking at the game extra carefully or giving advice. Sorry about that.\n\tBabamots: I'm not sure you can win now. My next move will probably be\r\n\r\nsacrifice y3 Galileo\r\nmove y3 Galileo smokeytroll42\r\nmove b3 Cardassia smokeytroll42\r\nmove b3 Babamots smokeytroll42\r\n\r\nassuming you then attack my y3, for example, my next move can be\r\n\r\nsacrifice r2 Cardassia\r\nattack g3n smokeytroll42\r\nattack y3n smokeytroll42\r\n\r\nand then it's pretty much over.\n\tsmokeytroll42: I’m willing to call it.\n\tsmokeytroll42: Good game and thanks for all the advice! I’d love lay again if you’re down!\n\nHomeworlds Online (SDG# 33389)\nVariants: "Unrated"\nStarted: 2017.11.6, Ended: 2018.2.26\nParticipants: ts52 (S), shoejitsu (N)\nWinner: ts52\n\n1) shoejitsu: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) shoejitsu: Build G1 Shoejitsu\n\tts52: Have a good game! This is for the homeworlds tournament.\n\tshoejitsu: Good luck!\n\n4) ts52: Build G1 Ts52\n\n5) shoejitsu: Trade G1 B1 Shoejitsu\n\n6) ts52: Trade G1 B1 Ts52\n\n7) shoejitsu: Build B2 Shoejitsu\n\n8) ts52: Discover B1 Ts52 G2 Kermit\n\n9) shoejitsu: Build G1 Shoejitsu\n\n10) ts52: Build G1 Ts52\n\n11) shoejitsu: Discover G1 Shoejitsu B3 Howdy\n\n12) ts52: Build B2 Kermit\n\n13) shoejitsu: Trade B2 Y2 Shoejitsu\n\n14) ts52: Trade B2 Y2 Kermit\n\n15) shoejitsu: Build Y1 Shoejitsu\n\n16) ts52: Build Y1 Kermit\n\n17) shoejitsu: Move Y1 Shoejitsu Howdy\n\n18) ts52: Build B2 Kermit\n\n19) shoejitsu: Build Y2 Howdy\n\n20) ts52: Discover Y2 Kermit G3 Robin\n\n21) shoejitsu: Build Y3 Shoejitsu\n\n22) ts52: Build Y3 Kermit\n\n23) shoejitsu: Trade Y2 B2 Howdy\n\n24) ts52: Move B1 Kermit Robin\n\n25) shoejitsu: Trade B1 R1 Shoejitsu\n\n26) ts52: Trade Y1 R1 Kermit\n\n27) shoejitsu: Move Y3 Shoejitsu Howdy\n\n28) ts52: Build B1 Kermit\n\n29) shoejitsu: Trade B2 G2 Howdy\n\n30) ts52: Build B2 Robin\n\n31) shoejitsu: Trade G2 Y2 Howdy\n\n32) ts52: Build B3 Robin\n\tshoejitsu: weird, i didnt see an email for it being my turn... sorry for the wait\n\n\tBabamots: Tournament games are supposed to use 2/2/7 hard time. I can't see what the time settings are for this game, but since more than a week has passed without a move, the settings must be different from tournament regulation. As it turned out, the result of this game could not affect tournament bracket seeding, and the next phase of the tournament is already well underway. For completeness, I'm going to record that ts52 won this game by timeout.\n\tts52: Huh, I must've missed setting hard time. Sorry about that. I'll force the termination of this game.\n\nHomeworlds Online (SDG# 33408)\nVariants: "Unrated, Hard time"\nStarted: 2017.11.6, Ended: 2017.11.16\nParticipants: Remneb (S), shoejitsu (N)\nWinner: Remneb\n\n1) shoejitsu: Homeworld B3 G2 Y3\n\tBabamots: Is this game for the tournament? Want me to record it?\n\n2) Remneb: Homeworld B1 R1 G3 *\n\tshoejitsu: just submitted the game start form. Good luck!\n\n3) shoejitsu: Build Y1 Shoejitsu\n\tRemneb: Have a good game !\n\n4) Remneb: Build G1 Remneb\n\n5) shoejitsu: Build Y1 Shoejitsu\n\n6) Remneb: Trade G1 Y1 Remneb\n\n7) shoejitsu: Discover Y1 Shoejitsu B1 Hi\n\n8) Remneb: Trade G3 R3 Remneb\n\n9) shoejitsu: Trade Y1 B1 Shoejitsu\n\n10) Remneb: Move R3 Remneb Shoejitsu\n\n11) shoejitsu: Move B1 Shoejitsu Remneb\n\n12) Remneb: Attack Y3 Shoejitsu\n\n\tRemneb: I must say that i was quit surprise by your move, Thanks for the game anyway. Will be my last one of the tournament.\r\n\n\tshoejitsu: I'm a noob, I thought I could continue as long as there was any ship still in the homeworld... Oh well now I know. I also didn't know another good move besides continuously building and giving you more ships to attack haha \n\tshoejitsu: i recorded the match, thanks for the game, even it was a little embarrassing \n\nHomeworlds Online (SDG# 33423)\nVariants: "Unrated"\nStarted: 2017.11.9, Ended: 2017.11.13\nParticipants: smokeytroll42 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y1 B3 G3\n\n2) smokeytroll42: Homeworld B2 G1 Y3\n\n3) Babamots: Build G1 Babamots\n\tBabamots: In case you're curious, I like to have yellow for a home system marker for two reasons:\r\n* It gives me the opportunity to discover a new system about one turn earlier than if I didn't start out with yellow. However, it also means I have to resist the temptation to discover before it's a good idea.\r\n* If my opponent wants to destroy my home by catastrophe, they normally have to have a yellow ship to sacrifice--in order to get ships into my home faster than I can attack them. To destroy my blue marker, they need a yellow for sacrifice and three blues. To destroy my yellow, they need four yellows. I believe it's usually slightly harder to get four ships of one color than to get three ships of one color and one of another.\n\n4) smokeytroll42: Build Y1 Smokeytroll42\n\tsmokeytroll42: Ok. \n\n5) Babamots: Build G1 Babamots\n\tBabamots: Your homeworld setup is largely a matter of taste. I don't think there's anything wrong with yours at all :-).\n\n6) smokeytroll42: Build Y1 Smokeytroll42\n\tsmokeytroll42: Yeah, I wanted to try something different from the last game. It seemed like the red Homeworld didn’t do me much good.\n\n7) Babamots: Discover G1 Babamots B2 Sauria\n\tDraw5PlayAll: I like to be able to put yellow ships in my homeworld, thus the blue+red star and green ship.\n\n8) smokeytroll42: Discover Y1 Smokeytroll42 B3 Leo\n\n9) Babamots: Build G2 Sauria\n\n10) smokeytroll42: Build Y2 Smokeytroll42\n\n11) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G2 Sauria\nBuild G3 Babamots\n\tBabamots: So here's a factory in action. I effectively get two build actions at once. Taking up the last of the medium greens makes it more difficult for you to get any green ships at all.\n\n12) smokeytroll42: Move Y2 Smokeytroll42 Leo\n\n13) Babamots: Trade G2 Y2 Sauria\n\tsmokeytroll42: Cool\n\n14) smokeytroll42: Trade Y2 G2 Leo\n\tBabamots: Even though it gives me a chance to get a g3, you might want to trade y2 for g2 in Leo while you have the chance. Not having any green ships would be rough.\r\n\r\nYou could also trade something (probably a y1) for a red ship. Either way, I'm pretty sure it's time to diversify.\n\tsmokeytroll42: That makes sense. Seems like going by too hard in one color really stunts your growth.\n\n15) Babamots: Trade G2 R2 Babamots\n\n16) smokeytroll42: Trade G2 R2 Leo\n\tBabamots: I needed to remove a green from my home immediately since otherwise you would win by sacrificing your y3 to move in your g2 for a catastrophe.\n\n17) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G2 Sauria\nBuild G3 Babamots\n\tBabamots: That's probably not a great move since I just got a red. You don't want to be more than one move behind on getting your first red ship. If I move one of my mediums to Leo now, I'll be able to capture something. I'll wait a while to move in case you want to undo.\n\tBabamots: That's probably not a great move since I just got a red. You don't want to be more than one move behind on getting your first red ship. If I move one of my mediums to Leo now, I'll be able to capture something. I'll wait a while to move in case you want to undo.\n\tBabamots: That's probably not a great move since I just got a red. You don't want to be more than one move behind on getting your first red ship. If I move one of my mediums to Leo now, I'll be able to capture something. I'll wait a while to move in case you want to undo.\n\n18) smokeytroll42: Build Y2 Smokeytroll42\n\tsmokeytroll42: Thanks! My thought process was to trade the Y2 for an R2, but I realized after that you could still get your R2 to Leo before I could get one. I suppose the obvious move would be just to trade one and not build a new one.\n\n19) Babamots: Discover G2 Sauria B3 Risa\n\tBabamots: I think trading y1 for r1 at your home system was the best move (you could sacrifice it if I try to attack you elsewhere). Trading away your green means you have no green again. More generally, I try not to trade a ship that is already the only one of its color in its system (let alone in my whole fleet).\n\n20) smokeytroll42: Trade Y3 G3 Smokeytroll42\n\n21) Babamots: Sacrifice G3 Babamots\nBuild G3 Babamots\nBuild G3 Risa\nBuild R1 Babamots\n\tBabamots: For now, I'm just working on getting as many ships as I can as fast as I can while trying to prevent you from getting the big ones. The next phase will be to spread out my greens so I can build some g3.\r\nYour best move now might be to trade y3 for g3 at home. After doing that, it won't be safe for you to *build* the other g3 at home (since I could cause a catastrophe), but at least you would have one green ship.\r\nAlternatively, you could discover a g3 system so that I can't get two new g3 ships.\n\n22) smokeytroll42: Build Y2 Smokeytroll42\n\n23) Babamots: Trade G3 Y3 Risa\n\n\tsmokeytroll42: Haha, we’ll call it a draw? Just kidding. I’ll resign, but I’m down for another. I’m very much appreciating your continued mentoring.\n\nHomeworlds Online (SDG# 33218)\nVariants: "Unrated"\nStarted: 2017.11.10, Ended: 2017.12.4\nParticipants: smokeytroll42 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) smokeytroll42: Homeworld G3 Y1 B3\n\n3) Felix: Build G1 Felix\n\tFelix: Hey there. First game?\n\n4) smokeytroll42: Build B1 Smokeytroll42\n\n5) Felix: Trade G1 Y1 Felix\n\tsmokeytroll42: Game 3 actually. Or maybe 2.5. Game 2 is still in progress.\n\n6) smokeytroll42: Build B1 Smokeytroll42\n\n7) Felix: Build Y1 Felix\n\n8) smokeytroll42: Discover B1 Smokeytroll42 G2 Peace\n\n9) Felix: Build Y2 Felix\n\n10) smokeytroll42: Build B1 Peace\n\n11) Felix: Discover Y1 Felix G1 Out\n\n12) smokeytroll42: Build B2 Peace\n\n13) Felix: Build Y2 Out\n\n14) smokeytroll42: Trade B2 Y2 Peace\n\n15) Felix: Move Y1 Out Peace\n\n16) smokeytroll42: Trade B1 R1 Peace\n\n17) Felix: Discover Y1 Felix B1 Engaurde\n\n18) smokeytroll42: Attack Y1N Peace\n\n19) Felix: Sacrifice G3 Felix\nBuild Y3 Engaurde\nBuild Y3 Out\nBuild Y3 Felix\n\n20) smokeytroll42: Discover Y1 Peace G1 Harmony\n\n21) Felix: Trade Y1 G1 Engaurde\n\n22) smokeytroll42: Build Y1 Harmony\n\n23) Felix: Trade Y2 G2 Felix\n\n24) smokeytroll42: Build Y2 Peace\n\n25) Felix: Build G2 Felix\n\n26) smokeytroll42: Trade B3 G3 Smokeytroll42\n\n27) Felix: S Y2 Out\nM G1 Engaurde Peace\nM G1 Peace Smokeytroll42\n\n28) smokeytroll42: Trade G3 R3 Smokeytroll42\n\n29) Felix: Sacrifice G2 Felix\nBuild G2 Smokeytroll42\nBuild G3 Smokeytroll42\nCatastrophe Smokeytroll42 G\n\n30) smokeytroll42: Trade B1 G1 Smokeytroll42\n\n31) Felix: Build Y2 Out\n\n32) smokeytroll42: Build R1 Smokeytroll42\n\n33) Felix: Discover Y2 Out R2 In\n\n34) smokeytroll42: Trade Y2 R2 Peace\n\n35) Felix: Move Y2 In Smokeytroll42\n\n\tsmokeytroll42: I don’t think I have a move that can save me here...\n\tFelix: I don't think that you do!\n\tsmokeytroll42: Well good game!\n\tFelix: Good game! I hope you had fun. Happy to rematch any time.\n\nHomeworlds Online (SDG# 33394)\nVariants: "Unrated"\nStarted: 2017.11.11, Ended: 2017.11.15\nParticipants: icalvinist (S), wil (N)\nWinner: icalvinist\n\n1) wil: H Y2 B1 G3\n\n2) icalvinist: Homeworld B2 R1 G3\n\n3) wil: B G1 Wil\n\twil: Thx for the game\n\twil: Short universe?\n\n4) icalvinist: Build G1 Icalvinist\n\n5) wil: T G1 B1 Wil\n\n6) icalvinist: Trade G1 Y1 Icalvinist\n\n7) wil: B B1 Wil\n\n8) icalvinist: Build G1 Icalvinist\n\n9) wil: D B1 Wil G3 G3\n\n10) icalvinist: Trade G3 B3 Icalvinist\n\n11) wil: B B2 G3\n\ticalvinist: Hey no problem. Yea, let's mix it up with some close quarters interaction!\n\n12) icalvinist: Build B2 Icalvinist\n\twil: No problem just checking. Let's have at it!\n\n13) wil: B B3 Wil\n\n14) icalvinist: Discover B3 Icalvinist Y3 Odin\n\n15) wil: T B2 Y2 G3\n\n16) icalvinist: Move B3 Odin Wil\nCatastrophe Wil B\n\n17) wil: B G1 Wil\n\n18) icalvinist: Build G1 Icalvinist\n\n19) wil: B B1 G3\n\n20) icalvinist: Discover Y1 Icalvinist G3 Loki\n\n21) wil: B B1 G3\n\n22) icalvinist: Trade B2 Y2 Icalvinist\n\n23) wil: M B1 G3 Wil\n\n24) icalvinist: Build Y1 Icalvinist\n\n25) wil: T G3 R3 Wil\n\n26) icalvinist: Trade Y2 R2 Icalvinist\n\n27) wil: B B2 G3\n\n28) icalvinist: Build Y1 Loki\n\n29) wil: T B2 R2 G3\n\n30) icalvinist: Build Y2 Loki\n\n31) wil: B Y3 G3\n\n32) icalvinist: Build Y3 Icalvinist\n\n33) wil: Sacrifice Y3 G3\nDiscover Y2 G3 G2 G2\nMove B1 G3 G2\nMove Y2 G2 Loki\nCatastrophe Loki Y\n\n34) icalvinist: Build G2 Icalvinist\n\n35) wil: Build B2 G3\n\n36) icalvinist: Discover Y1 Icalvinist G3 Loki\n\n37) wil: Build G2 Wil\n\n38) icalvinist: Sacrifice G2 Icalvinist\nBuild Y1 Loki\nBuild Y1 Loki\n\n39) wil: Trade B2 Y2 G3\n\n40) icalvinist: Sacrifice Y3 Icalvinist\nMove Y1 Loki Wil\nMove Y1 Loki Wil\nMove Y1 Loki Wil\nCatastrophe Wil Y\n\n\ticalvinist: Good game!\n\twil: challenge anytime!\n\nHomeworlds Online (SDG# 33431)\nVariants: "Unrated"\nStarted: 2017.11.13, Ended: 2017.12.6\nParticipants: smokeytroll42 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 Y1 G3\n\n2) smokeytroll42: Homeworld R1 B2 G3\n\tBabamots: OK, my turn for the banker system.\n\n3) Babamots: Build G1 Babamots\n\tBabamots: Or we can both be bankers :-).\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\tsmokeytroll42: I'm a little confused on the theory behind the starting homeworlds. Is it determined more color or size? \n\n5) Babamots: Trade G1 R1 Babamots\n\tDraw5PlayAll: With a yellow star you can move on your third turn, but you cannot safely keep yellow ships there. With a red star you can resist certain kinds of attacks without actually needing to get a red ship, though it is easy to get cocky with this.\n\tBabamots: Andy introduced 3 terms to refer to the size combinations of home markers:\r\n\r\nBanker: small, medium\r\nGoldilocks: small, large\r\nFortress: medium, large\r\n\r\nA brief explanation for these names is on page two of these rules:\r\nhttp://www.looneylabs.com/sites/default/files/rules/Homeworlds.pdf\r\n\r\nI haven't read much discussion on starting colors, but it's pretty obvious that you want to start with green and blue (one of these can be your ship). The third color (red vs yellow) is what's worth debating.\n\n6) smokeytroll42: Trade G1 R1 Smokeytroll42\n\tBabamots: If you don't get a red ship now, you could get frozen out for a while.\n\n7) Babamots: Build R2 Babamots\n\n8) smokeytroll42: Build R2 Smokeytroll42\n\n9) Babamots: Build R2 Babamots\n\tsmokeytroll42: I think we’re in an arms race.\n\tBabamots: It's been my experience that players compete for whatever color has the largest ships available.\n\n10) smokeytroll42: Trade R1 Y1 Smokeytroll42\n\n11) Babamots: Discover R2 Babamots B3 Galorndon\n\n12) smokeytroll42: Build Y1 Smokeytroll42\n\n13) Babamots: Trade R2 Y2 Babamots\n\n14) smokeytroll42: Build Y2 Smokeytroll42\n\n15) Babamots: Discover Y2 Babamots G3 Vulcan\n\n16) smokeytroll42: Discover Y2 Smokeytroll42 B3 Risa\n\n17) Babamots: Build R1 Babamots\n\tBabamots: I don't think you want to do that. My move should be\r\n\r\nsacrifice r1 Babamots\r\nattack r2s Vulcan\r\n\r\nFeel free to undo and try something else.\n\n18) smokeytroll42: Move Y1 Smokeytroll42 Risa\n\tsmokeytroll42: I always forget how red sacrifice works. \n\n19) Babamots: Discover R1 Babamots Y3 Omicrontheta\n\n20) smokeytroll42: Move R2 Smokeytroll42 Omicrontheta\n\tDraw5PlayAll: Is Risa the planet that initiated the augmented reality game in TNG: The Game?\n\tsmokeytroll42: It’s a “pleasure” Planet that Picard goes on vacation to for a few days in TNG. Naturally things go awry.\n\n21) Babamots: Sacrifice G3 Babamots\nBuild R2 Galorndon\nBuild R3 Omicrontheta\nBuild R3 Babamots\n\tBabamots: Also, yes, Riker was on Risa when the brain-control game device was given to him.\n\n22) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild R3 Omicrontheta\nCatastrophe Omicrontheta R\nBuild Y2 Risa\nBuild Y3 Smokeytroll42\n\tBabamots: My intended next move is\r\n\r\nsacrifice g3 Babamots\r\nbuild r2 OmicronTheta\r\nbuild r3 Galorndon\r\nbuild r3 Babamots\r\n\r\nThis gives me an additional large ship, and you are not free to take the last r3 because building it in your home system will allow me to cause a red catastrophe there.\n\tBabamots: You have a way to keep me from getting that additional large ship and a (different) way to make it so I can complete that move, but so that you can safely build an r3 afterward.\r\nCan you see how to do these things?\n\tsmokeytroll42: Discover an R3 Star? The second, just move the R2 out of Smokeytroll42\n\n23) Babamots: Build Y3 Vulcan\n\tBabamots: Sorry, I had a lot going on today and tomorrow looks busy too.\r\n\r\nThe reason I think you should be so concerned about my next move is that it gives me a large ship advantage, which is usually a big deal.\r\n\r\nUnfortunately, discovering only one r3 star won't prevent me from building the other two. You could discover two r3 stars if you're willing to sacrifice your y2, however. If you discover two r3 stars, there will only be one r3 piece left, and I can only build one (and if I sacrifice a g3 to do it, I have the same number of large ships as before).\r\n\r\nAnother option for (temporarily) blocking my move is to trade your r2 for another color (I would have to build both r2s before getting any r3). This probably isn't a great move since it leaves you with no red at all, which allows me to build the r3s at my leisure.\r\nA possibly better option is to get your r2 to a green system so that you can safely build an r3 if I build the r2. Since all the g3 are used, you would need to sacrifice y2 to move r2 twice to a g2 or g1.\r\n\r\nYou may want to instead move your r2 to OmicronTheta. If I build an r2, you can then move your r2 to a new green star and be ready to build the last r3. If I don't build an r2, you can attack my r1 (unless I run for it.)\r\n\r\nI'm not positive that's your best move, but I probably won't have time to look for better moves for you until tomorrow evening.\n\tsmokeytroll42: No worries! I understand. \n\n24) smokeytroll42: Discover Y1 Risa G2 Ceti Alpha V\n\tBabamots: I see a problem with the plan I suggested (but I don't have a better idea for you yet)\r\n\r\nme:\r\nsacrifice g3 Babamots\r\nbuild r2 Galorndon\r\nbuild r3 OmicronTheta\r\nbuild r3 Babamots\r\n\r\nyou:\r\ndiscover r2 OmicronTheta g1 BestNameEver\r\n(planning to build an r3 since I won't be able to)\r\n\r\nme: \r\nmove r3 OmicronTheta BestNameEver\r\n(I'm ready to capture your r3 as soon as you build it or I'll take your r2 if you don't build the r3)\n\tsmokeytroll42: Well, we can let it play out. Sorry, I also had a busy one today. \n\tBabamots: Today was even more exhausting that yesterday. I should have time to take a good look at the game tomorrow.\r\n\r\nAnother move you could consider:\r\n\r\nsacrifice g3 smoketroll42\r\nbuild r3 OmicronTheta\r\ncatastrophe OmicronTheta r\r\nbuild y2 Risa\r\nbuild y3 smoketroll42\r\n\r\nI haven't worked out the consequences, but it does destroy the r3 I'm about to build and you still have a large ship. Unfortunately, I would then be able to build y3, but (due to the destruction of OmicronTheta) there will be another y3 piece around. Maybe you can beat me to it? I'm not sure yet.\n\n25) Babamots: Pass\n\tBabamots: I wanted to give you plenty of time to change your mind rather than holding you to trying to take my bad advice :-P.\n\n26) smokeytroll42: Trade Y3 G3 Smokeytroll42\n\tsmokeytroll42: No worries! I appreciate all the mentoring!\n\n27) Babamots: Sacrifice Y2 Vulcan\nMove R2 Galorndon Ceti\nMove R2 Ceti Risa\n\tsmokeytroll42: So I'm thinking Discover a Green Star with Y1 from Risa, then build the Y3 there?\n\n28) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild Y2 Ceti\nBuild Y3 Smokeytroll42\nBuild Y3 Risa\n\tBabamots: Sorry, another busy day (I should be more responsive the rest of this week).\r\n\r\nIf you stick with your most recent move, I will win in two moves. Would you like to try to figure out how?\n\n29) Babamots: Sacrifice R2 Galorndon\nAttack Y2S Risa\nAttack Y2S Risa\n\tBabamots: If you want to know why I can win from here, read the following backward (bottom to top, right to left)\r\n\r\ny 24llortyekoms ehportsatac\r\nssap\r\n\r\n:evom ehportsatac eht ekam ylpmis nac I dna emoh ruoy ni spihs wolley ruof tsael ta eb lliw ereht ,ecrofnier ot emoh ruoy ot spihs rehto ruoy fo rebmun yna evom uoy fI )3\r\n\r\n.niw I dna emoh ta spihs on evah dluow uoY .metsys emoh ruoy ni spihs eht fo htob kcatta ot 2r na ecifircas nac I )emoh ruoy ni noitautis eht egnahc t'nseod taht esle gnihtyna ro iteC ni 3y a dliub ro( ,roloc rehtona rof spihs emoh ruoy fo rehtie edart uoy fI )2\r\n\r\n.niw I dna metsys emoh ruoy ni spihs on evah uoy nehT\r\n\r\ny 24llortyekoms ehportsatac\r\n24llortyekoms nacluV 2y evom\r\n\r\nsi evom gninniw ym ,3y ym kcatta uoy fI )1\r\n\r\n24llortyekoms nacluV 3y evom\r\n\r\neb dluohs evom txen yM\n\n30) smokeytroll42: Trade Y3 G3 Smokeytroll42\n\tBabamots: Rather than sitting around with an expired timer (wondering if you want to undo), I'll just pass this turn. I will win if you build that y3.\n\tsmokeytroll42: mmm I'm trying to work it out. I'll give it some more thought throughout the day tomorrow\n\tBabamots: Take your time. I won't end the game even if your timer runs out.\n\tsmokeytroll42: I haven't had much time to sit and look it over. Sorry for the delay\n\tsmokeytroll42: Okay, so after processing all that, I don't have a move to survive?\n\tBabamots: You can survive, but you need to defend your home immediately. You need to trade one of your yellow ships for another color (either y3 for g3 or y1 for g1 is best).\n\tsmokeytroll42: Oh right, to protect from the catastrophe.\n\n31) Babamots: Trade Y2 G2 Risa\n\n32) smokeytroll42: Trade Y3 R3 Risa\n\tBabamots: Looking at it 5 seconds later, mine was not such a good move. It doesn't actually stop you form getting the y3 ships like I thought (in fact, you can get both). One move you may want to consider is something like\r\n\r\nsacrifice g3 smokeytroll42\r\nbuild y2 Ceti\r\nbuild y3 smokeytroll42\r\nbuild y3 Risa\n\n33) Babamots: Sacrifice G2 Risa\nBuild R1 Risa\nBuild R2 Risa\nCatastrophe Risa R\n\n34) smokeytroll42: Build G1 Smokeytroll42\n\n35) Babamots: Trade R3 G3 Babamots\n\tBabamots: I didn't notice until now that my advice for your last turn should have come with a warning. It made it so you again have only yellow in your home system. That was OK when I only had one yellow ship, but as soon as I captured your yellow ships, you were in danger of losing by catastrophe again. You should trade one of your home-system yellow ships for a green again. It might seem like that move is just running in circles, but remember that you gained two ships (a medium and a large) in the process.\r\n\r\nIf you don't undo, I'll win.\n\n36) smokeytroll42: Discover G1 Smokeytroll42 B3 Mintakaiii\n\tBabamots: Specifically, my move now should be\r\n\r\nsacrifice y2 Risa\r\nmove y3 Vulcan smokeytroll42\r\nmove y2 Risa smokeytroll42\r\ncatastrophe smokeytroll42 y\n\n37) Babamots: Build R1 Babamots\n\n38) smokeytroll42: Build Y2 Smokeytroll42\n\n39) Babamots: Build R2 Babamots\n\n40) smokeytroll42: Discover Y1 Ceti B3 Qo'nos\n\tsmokeytroll42: Ah, I need to remember that you build wherever there’s a green ship.\n\tBabamots: I'm a big fan of green sacrifices. They can take your opponent off guard pretty often.\n\tBabamots: And remember that the build actions don't need to happen in the same system where the sacrifice is. I just happened to sacrifice and build in the same system this time.\n\tsmokeytroll42: Does there have to a green star or ship in the system where the build action occurs? Same question with attacking or trading?\n\tBabamots: This is important to understand, so here's a quick summary of how to use colors. There are three kinds of turns:\r\n\r\n1) "Regular"\r\nIn a normal turn (without a sacrifice), one of your ships uses the technology of a marker in that ship's system or the technology of any ship that you own in that system. If you have a blue ship (or marker) in a system, any of your ships in that system can be traded for another color. If you have a yellow ship (or marker) in a system, any of your ships in that system can move to another system.\r\n\r\n2) "Sacrifice"\r\nWhen you do a sacrifice, you destroy one of your ships and use its technology to perform a number of actions up to the size of the ship you destroyed. The actions can be taken in any system (whether you have the sacrificed technology there or not).\r\n\r\n3) "Pass"\r\nYou don't do anything at all.\n\tBabamots: So the answer to your question is no (assuming we're talking about a sacrifice). There does not need to be green in a system where you build after a green sacrifice.\n\tsmokeytroll42: Yes, I believe that does!\n\tsmokeytroll42: Actually maybe not. Do you still need a ship, of some color, in the system to do the sacrifice action in that system? Like right now I couldn’t: \r\n\r\nSacrifice g3 smokeytroll42\r\nBuild R1 Babamots\r\nBuild R2 Babamots \r\nCatastrophe Babamots r\n\tBabamots: I think of it like this: you have to apply every action to one of your own ships (whether that action came from a sacrifice or "regular" turn). Applying green to a ship means you build a new ship of that ship's color. You don't have a ship in my home system, so you can't build there.\r\n\r\nRed is a special case where you pick one of your own ships to do the attacking (whichever is the largest in the system) and you also have to pick an enemy target ship.\n\tBabamots: So, yes, before you can build a ship, you need to have a ship of the same color in the system where you build.\n\tsmokeytroll42: In other words, I would need a red in Babamots for that move to work?\n\tBabamots: Yes, you would need a red ship in Babamots in order to build a red ship in Babamots.\n\n41) Babamots: Move Y2 Risa Ceti\n\n42) smokeytroll42: Move Y2 Ceti Mintakaiii\n\n43) Babamots: Build Y3 Ceti\n\n44) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove Y1 Qo'nos Ceti\nMove Y2 Mintakaiii Ceti\nCatastrophe Ceti Y\n\n45) Babamots: Move R2 Babamots Mintakaiii\n\tBabamots: You've done a good job of using up the small and medium pieces of the color that you have the most control of (yellow). Unless I can find a good way to block you, you will be able to build a large yellow ship, but only if you spread out your current yellow ships. Right now, if you build a y3 at your home or in Ceti, I can move in my y2 for a catastrophe. If you move one of your yellows out of those systems, you could build safely.\r\n\r\nI think the main weakness of your position right now is that you don't have any red ships. Right now, if I move my y2 into Ceti, then I'll be able to capture one of your ships be sacrificing my r1 in Babamots (unless you sacrifice a yellow in order to remove both of your ships from Ceti in the same move). Getting you to sacrifice a piece you didn't want to is a small victory for me.\n\n46) smokeytroll42: Sacrifice G1 Mintakaiii\nBuild G1 Smokeytroll42\n\n47) Babamots: Move R1 Babamots Vulcan\n\n48) smokeytroll42: Build Y1 Smokeytroll42\n\tBabamots: Your best responses are probably\r\n\r\n1) Moving your y2 away from Ceti so I can't attack it. After that, I think we get to safely build one y3 each.\r\n2) Building a y3, either at home or in Ceti. If you build in Ceti, I plan to build a y3 there as well and catastrophe all of them. If you build a y3 at home, I will either attack your y2 in Ceti or possibly move my y3 into your home system for the catastrophe.\n\n49) Babamots: Sacrifice G3 Babamots\nBuild R2 Mintakaiii\nBuild R2 Vulcan\nBuild R3 Babamots\n\n50) smokeytroll42: Discover G1 Smokeytroll42 Y3 Arrakis\n\tsmokeytroll42: So I could sacrifice Y2 in the Homeworld to move in 2 yellows for catastrophe at Ceti, or build Y3 MintakaIII.\n\tBabamots: Yes, I should have mentioned that catastrophe option earlier. I thought that was building is best for you, but I've realized that you will lose after that. Consider this continuation:\r\n\r\nyou\r\nbuild y3 MintakaIII\r\n\r\nme\r\nsacrifice y3 Ceti\r\nmove g3 Babamots Vulcan\r\nmove y3 Vulcan smokeytroll42\r\nmove g3 Vulcan smokeytroll42\r\n\r\nYou don't have a way to win from this point:\r\n\r\n1) If you attack one of my larges, I sacrifice my r2 to attack both your g3 and whichever large you just attacked. I'll win in a few moves by attacking the rest of your home ships.\r\n\r\n2) If you try to defend by moving your new y3 into your home, I can sacrifice my r2 to attack both your g3 and y3. Again, I can attack your ships freely until I win.\r\n\r\nSo to sum up, you should do the catastrophe.\n\tBabamots: And I love "Who Watches the Watchers" :-)\n\tsmokeytroll42: Yes, it’s one of my favs from my edgy college skeptic days. And still is.\n\n51) Babamots: Build R3 Vulcan\n\n\tsmokeytroll42: Is there any way to prevent the impending attack on my Homeworld?\n\tBabamots: I'm afraid you're pretty doomed. You didn't have a chance to get red ships, and since I've taken most of them, I'll win soon after I can move two large ships into your home at once.\r\n\r\nI think the best thing you can do to prolong the game is to build y2. My current plan goes like this:\r\n\r\n1)\r\ntrade r2 y2 MintakaIII\r\n\r\n2)\r\nsacrifice y2 MintakaIII\r\nmove y3 Vulcan smokeytroll42\r\nmove r3 Vulcan smokeytroll42\r\n\r\n(I assume you will attack one of my large ships, say my r3)\r\n\r\n3)\r\nsacrifice r2 MinktakaIII\r\nattack r3s smokeytroll42\r\nattack g3s smokeytroll42\r\n\r\nIf you build a y2 now, my second move will put 4 yellows in your home, and you can trigger a yellow catastrophe and attack my r3. My backup plan will be something like\r\n\r\n2)\r\ntrade r3 g3 Babamots\r\n\r\n3)\r\nsacrifice y3 Vulcan\r\nmove g3 Babamots Vulcan\r\nmove g3 Vulcan smokeytroll42\r\nmove r3 Vulcan smokeytroll42\r\n\r\nI would need to trade the r3 for g3 (or b3) so that you couldn't destroy my invading ships by trading your home g3 for r3.\r\n\r\nI hope you've enjoyed the game. Playing a losing game over the course of weeks can be very frustrating.\n\tBabamots: "Measure of a Man" is usually my favorite episode.\n\tsmokeytroll42: Well we can just call it then. To be fair, since I’m still new to the game, I’m not seeing my own demise so clearly, so it’s not really a big deal. Plus, the only to get better is to keep playing. I’m up for a rematch if you are. As always, I appreciate the advice.\n\tBabamots: I'm happy to play again. If you'd like to look for another player of similar skill level, you could make an undirected challenge (nothing in the "Challenge whom" section) and in the "Notes" section say you're looking for another newish player.\n\tsmokeytroll42: Ok, I sent you the challenge. I’ll give that try next time I start a new game. \n\nHomeworlds Online (SDG# 33427)\nVariants: "Unrated"\nStarted: 2017.11.15, Ended: 2017.11.15\nParticipants: icalvinist (S), wil (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 33436)\nVariants: "Unrated"\nStarted: 2017.11.15, Ended: 2017.11.18\nParticipants: wil (S), icalvinist (N)\nWinner: wil\n\n1) icalvinist: Homeworld B2 Y1 G3\n\n2) wil: Homeworld B3 Y2 G3\n\twil: thx\r\n\n\n3) icalvinist: Build G1 Icalvinist\n\n4) wil: Build G1 Wil\n\n5) icalvinist: Discover G1 Icalvinist Y3 Odin\n\n6) wil: Trade G1 Y1 Wil\n\n7) icalvinist: Build G1 Icalvinist\n\n8) wil: Build Y1 Wil\n\n9) icalvinist: Discover G1 Icalvinist Y3 Tyr\n\n10) wil: Discover Y1 Wil G1 G1\n\n11) icalvinist: Build G2 Icalvinist\n\n12) wil: Sacrifice G3 Wil\nBuild Y2 G1\nBuild Y2 G1\nBuild Y3 Wil\n\n13) icalvinist: Sacrifice G3 Icalvinist\nBuild G2 Icalvinist\nBuild G2 Icalvinist\nBuild G3 Odin\n\n14) wil: Trade Y3 G3 Wil\n\n15) icalvinist: Build G3 Tyr\n\n16) wil: Build Y3 Wil\n\n17) icalvinist: Trade G2 B2 Icalvinist\n\twil: never the same game twice...always interesting...\n\twil: bout to get dicey\n\n18) wil: Build G2 Wil\n\ticalvinist: I'm pretty new to the Homeworlds game, but man are you right about it never being the same game twice. Truly THE hidden gem of tabletop gaming\n\ticalvinist: Hope you don't mind my style of play. I feel like I'm still figuring things out, but I'm having a blast just trying moves out\n\n19) icalvinist: Build B1 Icalvinist\n\twil: I believe in the first 50 games you should lose 40..just to learn...you want to see how folks beat you in the end...you want to see the different attacks...and then try using them against someone else..and then you get to learn the counters, and then you try the counters and see how to stop them...you don't learn a thing by winning\n\n20) wil: Trade G2 B2 Wil\n\n21) icalvinist: Sacrifice B1 Icalvinist\nTrade G3 R3 Odin\n\n22) wil: Discover Y2 G1 G3 G3\n\n23) icalvinist: Sacrifice G3 Tyr\nBuild G2 Odin\nBuild G3 Tyr\nBuild R1 Odin\n\n24) wil: Trade Y1 R1 Wil\n\n25) icalvinist: Sacrifice B2 Icalvinist\nTrade G1 Y1 Odin\nTrade G2 B2 Icalvinist\n\n26) wil: Build R1 Wil\n\n27) icalvinist: Sacrifice G3 Tyr\nBuild G1 Odin\nBuild G2 Tyr\nBuild G3 Icalvinist\n\n28) wil: Sacrifice Y2 G3\nMove Y1 G1 Odin\nMove Y2 G1 Odin\nCatastrophe Odin Y\n\n29) icalvinist: Trade G2 Y2 Icalvinist\n\n30) wil: Build R1 Wil\n\n31) icalvinist: Discover G1 Tyr Y1 Odin\n\n32) wil: Move R1 Wil Odin\n\n33) icalvinist: Discover G1 Odin Y3 Thor\n\n34) wil: Build R2 Wil\n\n35) icalvinist: Trade G3 R3 Icalvinist\n\n36) wil: Move R1 Odin Thor\n\n37) icalvinist: Sacrifice G1 Thor\nBuild G1 Tyr\n\n38) wil: Discover R1 Wil B1 B1\n\n39) icalvinist: Discover R3 Icalvinist G3 Loki\n\n40) wil: Sacrifice G3 Wil\nBuild R2 Wil\nBuild R2 B1\nBuild R3 Thor\n\n41) icalvinist: Sacrifice Y2 Icalvinist\nMove R3 Loki B1\nMove R3 B1 Wil\nCatastrophe Wil R\n\n42) wil: Move R3 Thor Icalvinist\n\n43) icalvinist: Move G2 Tyr Icalvinist\n\n44) wil: Sacrifice R2 B1\nAttack B2 Icalvinist\nAttack G2 Icalvinist\n\twil: oops the pending doom was accelerated...\n\n\ticalvinist: good game!\n\twil: anytime you are up for it...\n\nHomeworlds Online (SDG# 33440)\nVariants: "Hard time"\nStarted: 2017.11.17, Ended: 2017.12.18\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 R1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\tdlwillson: Long time, no see! How've you been?\n\n3) dlwillson: B G1 Dlwillson\n\n4) Felix: Build G1 Felix\n\tFelix: It has been a while indeed! Ive been well. Took me a long time to knock Wil off the throne! And I haven't had as much time for games in the Holidays. How have you been?\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\tdlwillson: I've been well. My wife and I went camping with my baby sister and her husband in Moab, Utah. It was great.\n\n6) Felix: Trade G1 Y1 Felix\n\tFelix: Nice! That sounds like a great time. Weather's been nice here, weirdly so for November. I need to get out and camp!\n\n7) dlwillson: B G1 Dlwillson\n\tdlwillson: Let's do ... yellow! Yellow, yellow, bo-bellow, banana-fana-fo-fellow, me my mo-mellow, yellow.\n\n8) Felix: B G1 Felix\n\n9) dlwillson: Trade G1 R1 Dlwillson\n\n10) Felix: Trade G1 R1 Felix\n\tFelix: I prefer green bean bo bean, fee fi fo feen, greeeeeeeen.\n\n11) dlwillson: B R2 Dlwillson\n\n12) Felix: Build R2 Felix\n\n13) dlwillson: Discover R1 Dlwillson G2 Field\n\n14) Felix: Discover R2 Felix G1 Grass\n\n15) dlwillson: B R3 Field\n\n16) Felix: Sacrifice G3 Felix\nBuild R3 Felix\nBuild R3 Grass\nBuild Y1 Felix\n\n17) dlwillson: Build Y2 Dlwillson\n\n18) Felix: Trade R1 G1 Felix\n\n19) dlwillson: B Y2 Dlwillson\n\n20) Felix: Move Y1 Felix Grass\n\n21) dlwillson: Move Y1 Dlwillson Field\n\n22) Felix: Build G1 Felix\n\n23) dlwillson: Sacrifice Y2 Dlwillson\nMove R3 Field Grass\nMove R3 Grass Felix\n\n24) Felix: Attack R3 Felix\n\n25) dlwillson: S Y2 Dlwillson\nM R1 Field Grass\nM R1 Grass Felix\nC Felix R\n\n26) Felix: Build G2 Felix\n\tFelix: Ooh, nice move.\n\n27) dlwillson: B Y2 Field\n\tdlwillson: Thank you! I'm glad you think so. :-)\n\n28) Felix: Move R3 Grass Felix\n\n29) dlwillson: Discover Y1 Field B1 Fielder\n\n30) Felix: Move G2 Felix Fielder\n\n31) dlwillson: D Y1 Fielder B2 Sea\n\n32) Felix: Trade G1 B1 Felix\n\n33) dlwillson: B R1 Dlwillson\n\n34) Felix: Build Y2 Grass\n\n35) dlwillson: T R2 B2 Dlwillson\n\n36) Felix: Move B1 Felix Grass\n\n37) dlwillson: M Y1 Sea Dlwillson\n\n38) Felix: Trade R3 G3 Felix\n\n39) dlwillson: M B2 Dlwillson Field\n\n40) Felix: Discover Y2 Grass B2 Omnus\n\n41) dlwillson: B B1 Field\n\n42) Felix: Build B2 Grass\n\n43) dlwillson: T G3 B3 Dlwillson\n\n44) Felix: Sacrifice G3 Felix\nBuild Y2 Omnus\nBuild Y3 Grass\nBuild Y3 Felix\n\n45) dlwillson: Build Y3 Field\n\n46) Felix: Sacrifice Y1 Felix\nDiscover B2 Grass G2 Grassy\n\tFelix: Uh oh, you weren't supposed to get enough blue!\n\n47) dlwillson: Sacrifice Y3 Field\nMove B3 Dlwillson Grassy\nMove B3 Grassy Felix\nMove B2 Field Felix\n\tdlwillson: Hmm...\n\n48) Felix: Sacrifice B1 Grass\nTrade G1 B1 Felix\nCatastrophe Felix Blue\n\n\tdlwillson: What a fantastic minefield you have! What magnificent rabbits proceed from your hat! I think I've successfully navigated through your trap, but I'm not sure you don't have something even more miraculous in store!\n\tFelix: ..........Tada.\n\tdlwillson: :-)\n\tFelix: Good game! Congrats on the well-earned top slot. My brain has been really fuzzy with this game lately. Haven't been doing well! Not good news for me being in that tournament.\n\nHomeworlds Online (SDG# 33459)\nVariants: "Hard time"\nStarted: 2017.11.19, Ended: 2017.11.29\nParticipants: goulo (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: H R2 B1 G3\n\n2) goulo: Homeworld R3 B2 G3\n\n3) bhorner: Build G1 Bhorner\n\tgoulo: hi\n\n4) goulo: Build G1 Goulo\n\n5) bhorner: Trade G1 B1 Bhorner\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) bhorner: Build B1 Bhorner\n\n8) goulo: Build Y1 Goulo\n\n9) bhorner: T B1 Y1 Bhorner\n\n10) goulo: Build Y2 Goulo\n\n11) bhorner: B Y2 Bhorner\n\n12) goulo: Trade Y1 G1 Goulo\n\n13) bhorner: B B1 Bhorner\n\n14) goulo: Trade Y2 B2 Goulo\n\n15) bhorner: D B1 Bhorner G3 Xmas\n\n16) goulo: Discover B2 Goulo G1 Verdeto\n\n17) bhorner: M Y2 Bhorner Xmas\n\n18) goulo: Trade G1 R1 Goulo\n\n19) bhorner: B G1 Bhorner\n\n20) goulo: Build G1 Goulo\n\n21) bhorner: T G1 R1 Bhorner\n\n22) goulo: Move G1 Goulo Verdeto\n\n23) bhorner: S G3 Bhorner\nB B2 Xmas\nB B3 Bhorner\nB B3 Xmas\n\n24) goulo: Build B3 Verdeto\n\n25) bhorner: Sacrifice Y2 Xmas\nMove B1 Xmas Verdeto\nMove B2 Xmas Verdeto\nCatastrophe Verdeto Blue\n\tbhorner: Decided to go for it.\n\n26) goulo: Build Y1 Goulo\n\n27) bhorner: Trade B3 G3 Bhorner\n\n28) goulo: Build Y2 Goulo\n\n29) bhorner: B Y2 Bhorner\n\n30) goulo: Move Y1 Goulo Verdeto\n\n31) bhorner: M Y1 Bhorner Xmas\n\n32) goulo: Discover Y1 Goulo G1 Smeraldeto\n\n33) bhorner: Build R1 Bhorner\n\n34) goulo: Sacrifice G3 Goulo\nBuild Y2 Smeraldeto\nBuild Y3 Verdeto\nBuild Y3 Goulo\n\n35) bhorner: Build Y3 Bhorner\n\n36) goulo: Build G2 Verdeto\n\n37) bhorner: Discover Y3 Bhorner G3 Tree\n\n38) goulo: Move R1 Goulo Verdeto\n\n39) bhorner: B G2 Bhorner\n\n40) goulo: Sacrifice Y3 Verdeto\nMove R1 Verdeto Tree\nMove R1 Tree Bhorner\nMove G2 Verdeto Goulo\nCatastrophe Bhorner Red\n\n41) bhorner: B Y3 Bhorner\n\n42) goulo: Trade G2 R2 Goulo\n\n43) bhorner: S Y3 Tree\nM Y2 Bhorner Goulo\nM Y1 Xmas Bhorner\nM Y1 Bhorner Goulo\nC Goulo Yellow\n\n\tgoulo: congrats!\n\tbhorner: thanks. :) gg!\n\nHomeworlds Online (SDG# 33437)\nVariants: "Unrated"\nStarted: 2017.11.20, Ended: 2017.12.8\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) wil: Homeworld Y2 B1 G3\n\twil: lol, passed out early last night\r\n\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Build B1 Trydnt\n\n8) wil: Build Y1 Wil\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\twil: Is it me that can't count? or you... I picked yellow because you are gonna want to move out to a yellow one so you can move again. Switch to a yellow three and you can't build...we will see how it goes but it is about to get dicey...\n\n10) wil: Trade Y1 B1 Wil\n\n11) Trydnt: Build B2 Trydnt\n\n12) wil: Build B2 Wil\n\n13) Trydnt: Discover B2 Trydnt G1 Ac\n\n14) wil: Discover B1 Wil Y3 Y3\n\n15) Trydnt: Move Y1 Trydnt Ac\n\n16) wil: Build G1 Wil\n\n17) Trydnt: Trade B1 R1 Trydnt\n\n18) wil: Trade G1 R1 Wil\n\n19) Trydnt: Move B2 Ac Y3\n\n20) wil: Sacrifice G3 Wil\nBuild B1 Y3\nBuild B2 Y3\nBuild B3 Wil\nCatastrophe Y3 B\n\n21) Trydnt: Build Y1 Ac\n\n22) wil: Discover Y1 Wil G3 G3\n\n23) Trydnt: Discover Y1 Ac G2 G2\n\n24) wil: Trade B3 G3 Wil\n\n25) Trydnt: Build G1 Trydnt\n\n26) wil: Build B1 Wil\n\n27) Trydnt: Trade G1 B1 Trydnt\n\n28) wil: Discover B2 Wil Y3 Y3\n\n29) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Ac\nBuild Y3 G2\nBuild B2 Trydnt\n\n30) wil: Build Y3 G3\n\n31) Trydnt: Move B1 Trydnt Ac\n\twil: I fell asleep like 9 oclock.. woke up just a bit ago...what the hell are you doing up?\n\n32) wil: Build G1 Wil\n\n33) Trydnt: Move Y3 G2 Y3\n\n34) wil: Discover B2 Y3 G1 G1\n\twil: don't like the other game eh?\n\n35) Trydnt: Move Y3 Y3 G1\n\n36) wil: B B2 G1\n\tTrydnt: nah that was messed up haha this one is weird too. like you said, never seen the same game twice\n\n37) Trydnt: Build Y3 G1\n\twil: Enjoying your other games and time off for slaughtering natives that helped Englishman thru harsh winters?\n\tTrydnt: yup\n\tTrydnt: what did you do for tg?\n\n38) wil: Build B3 G1\n\twil: I am still down at my mothers...hanging with my sister and her... my kids and her kids and their current partners will all be here tomorrow and we will have our tday then... we just hang out and play games.\n\twil: Am working on a design to finish out my mothers basement...\n\n39) Trydnt: Sacrifice Y2 Ac\nMove B1 Ac G3\nMove B1 G3 G1\nCatastrophe G1 B\n\n40) wil: Build G2 Wil\n\n41) Trydnt: Build Y2 Ac\n\twil: nice move...and we took a hike in the woods...we did that too\n\n42) wil: Trade G2 R2 Wil\n\twil: forgot to catastrophe eh? but yes...great response..most other choices were death..\n\tTrydnt: yup forgot that it wasn't automatic haha\n\n43) Trydnt: Move Y3 G1 Trydnt\n\n44) wil: Discover Y1 G3 G2 Gee2\n\n45) Trydnt: Discover Y3 G1 G3 Gee3\n\n46) wil: Build G1 Wil\n\n47) Trydnt: Move B2 Trydnt Ac\n\n48) wil: Move G1 Wil G3\n\n49) Trydnt: Move B2 Ac Gee3\n\n50) wil: M R2 Wil G3\n\n51) Trydnt: Build B1 Gee3\n\n52) wil: Move B1 Wil G3\n\n53) Trydnt: Build B2 Gee3\n\n54) wil: Build B2 G3\n\n55) Trydnt: Move B1 Gee3 G2\n\n56) wil: M B2 G3 G2\n\n57) Trydnt: Build B3 G2\n\n58) wil: Sacrifice G3 Wil\nBuild B3 G3\nBuild G2 G3\nBuild G3 Wil\n\n59) Trydnt: Discover B1 G2 R3 R3\n\twil: me thinks you may have this one\n\n60) wil: Move B3 G3 Ac\n\n61) Trydnt: Sacrifice Y3 Gee3\nMove Y1 Ac R3\nMove B1 R3 Wil\nMove Y2 Ac Gee3\n\n62) wil: S G3 Wil\nB G3 Wil\nB Y3 G3\nB R1 G3\n\n63) Trydnt: Move B2 Gee3 Wil\n\n64) wil: Sacrifice R1 G3\nAttack Y1 G2\n\twil: forgotted I had a factory\n\n65) Trydnt: Move B2 Gee3 Wil\nCatastrophe Wil B\n\twil: hung around whytestone till after 8 last evening...thought I'd get a live game...\n\n66) wil: S G3 Wil\nB B1 G2\nB G3 Wil\nB B1 G2\nC G2 B\n\n67) Trydnt: Move Y2 Gee3 Gee2\n\n68) wil: Move Y1 Gee2 Ac\n\n69) Trydnt: Discover Y2 Gee2 G3 Gee3\n\n70) wil: Trade G2 R2 G3\n\n71) Trydnt: Discover Y1 R3 B1 B1\n\n72) wil: Sacrifice Y3 G3\nMove Y3 G3 Ac\nMove Y3 Ac Trydnt\nMove B3 Ac Trydnt\n\twil: why thank you for that birthday present\n\n73) Trydnt: Move Y1 B1 Trydnt\nCatastrophe Trydnt Y\n\n74) wil: S R2 G3\nA R1 Trydnt\nP\n\n\twil: Leaving for the mtns for the weekend... See you next week, feel free to start another.\n\nHomeworlds Online (SDG# 33369)\nVariants: "Unrated, Hard time"\nStarted: 2017.11.20, Ended: 2017.12.21\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) dlwillson: H B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tdlwillson: Welcome! Good luck and have fun!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) Trydnt: Build B2 Trydnt\n\n8) dlwillson: B B2 Dlwillson\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) dlwillson: T B1 Y1 Dlwillson\n\n11) Trydnt: Build G1 Trydnt\n\n12) dlwillson: B B1 Dlwillson\n\n13) Trydnt: Discover B2 Trydnt G3 G3\n\n14) dlwillson: D B1 Dlwillson G2 Field\n\n15) Trydnt: Build G1 Trydnt\n\n16) dlwillson: B G1 Dlwillson\n\n17) Trydnt: Trade G1 R1 Trydnt\n\n18) dlwillson: T G1 R1 Dlwillson\n\n19) Trydnt: Build R2 Trydnt\n\n20) dlwillson: B R2 Dlwillson\n\n21) Trydnt: Move R1 Trydnt G3\n\n22) dlwillson: Build B1 Field\n\tdlwillson: Hey, sorry for timing out on you in the other game.\n\n23) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G3\nBuild R3 Trydnt\nBuild R3 G3\n\n24) dlwillson: Build B3 Dlwillson\n\n25) Trydnt: Trade R2 Y2 G3\n\n26) dlwillson: Trade B3 Y3 Dlwillson\n\n27) Trydnt: Trade R3 G3 Trydnt\n\n28) dlwillson: M R1 Dlwillson Field\n\n29) Trydnt: Move R3 G3 Field\n\n30) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Field\nBuild R3 Field\nBuild Y1 Dlwillson\nCatastrophe Field R\n\n31) Trydnt: Build Y2 G3\n\n32) dlwillson: Move Y1 Dlwillson Field\n\n33) Trydnt: Move Y2 G3 Field\n\n34) dlwillson: D B1 Field G1 Meadow\n\n35) Trydnt: Sacrifice R2 Trydnt\nAttack Y1 Field\nAttack B1 Field\n\n36) dlwillson: B B3 Meadow\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Field\nBuild Y3 Trydnt\nBuild B3 G3\n\tdlwillson: Oops!\n\n38) dlwillson: M Y1 Dlwillson Field\nC Field Y\n\n39) Trydnt: Build B3 Field\n\n40) dlwillson: T B3 Y3 Meadow\n\n41) Trydnt: Trade B1 Y1 Field\n\n42) dlwillson: Trade B2 G2 Dlwillson\n\n43) Trydnt: Build Y1 Field\n\n44) dlwillson: B B1 Meadow\n\n45) Trydnt: Discover B2 G3 G2 G2\n\n46) dlwillson: D B1 Meadow G3 Forest\n\n47) Trydnt: Build B2 G2\n\n48) dlwillson: B B3 Forest\n\n49) Trydnt: Build Y2 G3\n\n50) dlwillson: Discover R2 Dlwillson Y2 Sol\n\n51) Trydnt: Sacrifice Y2 G3\nMove B2 G2 Forest\nMove B2 G2 Forest\nCatastrophe Forest B\n\n52) dlwillson: Build G1 Dlwillson\n\n53) Trydnt: Build Y2 G3\n\n54) dlwillson: Discover G1 Dlwillson B2 Sea\n\n55) Trydnt: Trade Y3 G3 Trydnt\n\n56) dlwillson: B G2 Sea\n\n57) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Trydnt\nBuild Y3 Trydnt\n\n58) dlwillson: S Y3 Meadow\nM G1 Sea G3\nM G1 G3 Trydnt\nC Trydnt G\nD B1 Meadow G3 Forest\n\n59) Trydnt: Build Y3 G3\n\n\tdlwillson: Bah! Sorry..\n\tdlwillson: I keep timing out in games. It's hard to keep up with work and Christmas and games.\n\tTrydnt: no worries. Merry Christmas!\n\tdlwillson: Same to you and yours!\n\nHomeworlds Online (SDG# 33403)\nStarted: 2017.11.20, Ended: 2018.1.12\nParticipants: ts52 (S), Trydnt (N)\nWinner: ts52\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Trydnt: Build G1 Trydnt\n\n8) ts52: Build B2 Ts52\n\n9) Trydnt: Trade G1 Y1 Trydnt\n\n10) ts52: Discover B1 Ts52 G2 Kermit\n\n11) Trydnt: Discover B1 Trydnt Y3 Y3\n\n12) ts52: Build G1 Ts52\n\n13) Trydnt: Build G1 Trydnt\n\n14) ts52: Build B2 Kermit\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild B3 Y3\nBuild B3 Y3\nBuild Y1 Trydnt\n\n16) ts52: Trade B2 Y2 Kermit\n\n17) Trydnt: Move B3 Y3 Trydnt\n\n18) ts52: Build B2 Ts52\n\n19) Trydnt: Discover B1 Y3 Y2 Y2\n\n20) ts52: Trade B2 R2 Ts52\n\n21) Trydnt: Trade Y1 R1 Trydnt\n\n22) ts52: Move R2 Ts52 Y2\n\n23) Trydnt: Move B3 Y3 Y2\n\n24) ts52: Discover R2 Y2 Y3 Bigbird\n\n25) Trydnt: Move B3 Y2 Bigbird\n\n26) ts52: Move R2 Bigbird Y2\n\n27) Trydnt: Move B1 Y2 Ts52\n\n28) ts52: Trade B2 R2 Ts52\n\n29) Trydnt: Move B3 Bigbird Kermit\n\n30) ts52: Discover Y2 Kermit G3 Robin\n\n31) Trydnt: Build Y1 Trydnt\n\n32) ts52: Build Y1 Robin\n\n33) Trydnt: Discover Y1 Trydnt G3 G3\n\n34) ts52: Move R2 Y2 G3\n\n35) Trydnt: Move Y1 G3 Kermit\n\n36) ts52: Sacrifice R2 G3\nAttack Y1N Kermit\nAttack B1N Ts52\n\n37) Trydnt: Trade B3 R3 Kermit\n\n38) ts52: Sacrifice Y1 Kermit\nMove B1 Kermit Robin\n\n39) Trydnt: Sacrifice Y1 Trydnt\nMove R3 Kermit Robin\n\n40) ts52: Sacrifice Y2 Robin\nDiscover B1 Robin G2 Kermit\nMove Y1 Robin Kermit\n\n41) Trydnt: Build B2 Trydnt\n\n42) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\nBuild B3 Ts52\n\n43) Trydnt: Trade B3 Y3 Trydnt\n\n44) ts52: Trade B3 G3 Ts52\n\n45) Trydnt: Build B3 Trydnt\n\n46) ts52: Discover B2 Kermit G3 Oscar\n\n47) Trydnt: Trade B3 Y3 Trydnt\n\n48) ts52: Build B3 Oscar\n\n49) Trydnt: Build B3 Trydnt\n\n50) ts52: Sacrifice Y1 Kermit\nMove B2 Oscar Trydnt\nCatastrophe Trydnt B\n\n51) Trydnt: Discover Y3 Trydnt B3 B3\n\n52) ts52: Build B2 Oscar\n\n53) Trydnt: Build Y1 Trydnt\n\n54) ts52: Trade B2 Y2 Oscar\n\n55) Trydnt: Build G1 Trydnt\n\n56) ts52: Trade B1 R1 Kermit\n\n57) Trydnt: Move G1 Trydnt B3\n\n58) ts52: Build R2 Kermit\n\n\tts52: Thanks for the game!\n\tTrydnt: anytime\n\nHomeworlds Online (SDG# 33425)\nStarted: 2017.11.20, Ended: 2017.12.14\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Trydnt: Homeworld B3 Y1 G3\n\tMobyNostromo: Have fun!\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) Trydnt: Build G1 Trydnt\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) MobyNostromo: D Y1 Mobynostromo B3 Hal\n\n8) Trydnt: Build G1 Trydnt\n\n9) MobyNostromo: B Y2 Mobynostromo\n\n10) Trydnt: Build B1 Trydnt\n\n11) MobyNostromo: D Y2 Mobynostromo G3 Treebeard\n\n12) Trydnt: Discover B1 Trydnt Y2 Y2\n\n13) MobyNostromo: B Y2 Mobynostromo\n\n14) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Y2\n\n15) MobyNostromo: B Y3 Treebeard\n\n16) Trydnt: Discover B2 Y2 Y3 Y3\n\n17) MobyNostromo: T Y2 B2 Mobynostromo\n\n18) Trydnt: Build G1 Trydnt\n\n\nHomeworlds Online (SDG# 33368)\nVariants: "Hard time"\nStarted: 2017.11.20, Ended: 2017.12.13\nParticipants: Felix (S), Trydnt (N)\nWinner: Felix\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Felix: H B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Felix: Build G1 Felix\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) Felix: Trade G1 B1 Felix\n\n7) Trydnt: Build B2 Trydnt\n\n8) Felix: Build B2 Felix\n\n9) Trydnt: Discover B2 Trydnt Y3 Y3\n\n10) Felix: Trade B1 Y1 Felix\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild B1 Y3\nBuild B3 Y3\nBuild B3 Trydnt\n\n12) Felix: Build B3 Felix\n\n13) Trydnt: Trade B3 G3 Trydnt\n\tFelix: Nice!\n\n14) Felix: Discover B2 Felix Y2 Out\n\n15) Trydnt: Trade B1 R1 Y3\n\n16) Felix: Sacrifice G3 Felix\nBuild B1 Out\nBuild B3 Felix\nBuild Y1 Felix\n\n17) Trydnt: Move B2 Y3 Out\n\n18) Felix: Trade B3 G3 Felix\n\n19) Trydnt: Trade B1 R1 Trydnt\n\n20) Felix: Sacrifice G3 Felix\nBuild B1 Out\nBuild B3 Felix\nBuild Y2 Felix\nCatastrophe Out Blue\n\n21) Trydnt: Discover B3 Y3 G2 G2\n\n22) Felix: Trade B3 G3 Felix\n\n23) Trydnt: Build B1 G2\n\n24) Felix: Discover Y2 Felix B2 Out\n\n25) Trydnt: Trade B3 Y3 G2\n\n26) Felix: Discover Y1 Felix B2 Blue\n\n27) Trydnt: Move R1 Y3 G2\n\n28) Felix: Build Y2 Felix\n\n29) Trydnt: Build R1 G2\n\n30) Felix: Sacrifice G3 Felix\nBuild Y2 Blue\nBuild Y3 Blue\nBuild Y3 Out\n\n31) Trydnt: Build R2 Trydnt\n\n32) Felix: Trade Y1 G1 Felix\n\n33) Trydnt: Sacrifice Y3 G2\nMove R1 G2 Felix\nMove R1 G2 Felix\nMove B1 G2 Felix\n\n34) Felix: Attack B1 Felix\n\tFelix: Ooh, nice move!\n\n35) Trydnt: Sacrifice R2 Trydnt\nAttack B1 Felix\nAttack G1 Felix\n\n36) Felix: Attack B1 Felix\n\n37) Trydnt: Build R2 Felix\nCatastrophe Felix R\n\tFelix: I think you might have me\n\n38) Felix: Trade B3 R3 Felix\n\n39) Trydnt: Sacrifice G1 Felix\nBuild G1 Trydnt\n\n40) Felix: Trade Y3 G3 Blue\n\n41) Trydnt: Build R1 Trydnt\n\n42) Felix: Sacrifice G3 Blue\nBuild Y1 Out\nBuild Y3 Blue\nBuild Y3 Felix\n\n43) Trydnt: Discover R1 Trydnt B3 B3\n\n44) Felix: Trade Y2 G2 Felix\n\n45) Trydnt: Build R1 Trydnt\n\n46) Felix: Build B1 Felix\n\n47) Trydnt: Discover R1 Trydnt B3 Bee3\n\n48) Felix: Discover B1 Felix G3 Rom\n\n49) Trydnt: Build R2 Trydnt\n\n50) Felix: Build B3 Rom\n\n51) Trydnt: Sacrifice G1 Trydnt\nBuild R2 B3\n\n52) Felix: Build Y2 Felix\n\n\tFelix: Good game!\n\nHomeworlds Online (SDG# 32752)\nVariants: "Sinister"\nStarted: 2017.11.20, Ended: 2018.5.2\nParticipants: Mandrel (S), Draw5PlayAll (N), Trydnt (E)\nWinner: Trydnt\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tDraw5PlayAll: Welcome! The objective is to eliminate the player on your left.\n\n3) Mandrel: Homeworld B1 R2 G3\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tMandrel: Have a good game!\n\n5) Trydnt: Build G1 Trydnt\n\n6) Mandrel: Build G1 Mandrel\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Trydnt: Build G1 Trydnt\n\n9) Mandrel: T G1 Y1 Mandrel\n\n10) Draw5PlayAll: Build G1 Draw5playall\n\n11) Trydnt: Trade G1 Y1 Trydnt\n\n12) Mandrel: Build G1 Mandrel\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n14) Trydnt: Trade G1 B1 Trydnt\n\n15) Mandrel: Discover G1 Mandrel B3 Lash\n\n16) Draw5PlayAll: Discover B1 Draw5playall G2 G2\n\n17) Trydnt: Discover Y1 Trydnt G1 G1\n\n18) Mandrel: B G1 Lash\n\n19) Draw5PlayAll: Build B1 G2\n\n20) Trydnt: Build B2 Trydnt\n\n21) Mandrel: T G1 R1 Lash\n\n22) Draw5PlayAll: Build B2 G2\n\n23) Trydnt: Trade B1 R1 Trydnt\n\n24) Mandrel: Build G1 Lash\n\n25) Draw5PlayAll: Trade B2 R2 G2\n\n26) Trydnt: Move B2 Trydnt G1\n\n27) Mandrel: T G1 Y1 Lash\n\n28) Draw5PlayAll: Build Y2 Draw5playall\n\n29) Trydnt: Build Y2 G1\n\n30) Mandrel: Build Y2 Lash\n\n31) Draw5PlayAll: Move Y1 Draw5playall G2\n\n32) Trydnt: Discover Y2 G1 G3 G3\n\n33) Mandrel: Build G1 Mandrel\n\n34) Draw5PlayAll: Build G1 Draw5playall\n\n35) Trydnt: Build G2 Trydnt\n\n36) Mandrel: Build G2 Lash\n\n37) Draw5PlayAll: Build R1 G2\n\n38) Trydnt: Build R2 Trydnt\n\n39) Mandrel: Discover Y1 Lash G2 Ton\n\n40) Draw5PlayAll: Discover R1 G2 B3 Space\n\n41) Trydnt: Move R2 Trydnt G1\n\n42) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild Y2 Ton\nBuild Y3 Lash\n\n43) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 G2\nBuild Y3 Draw5playall\n\n44) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 Trydnt\nBuild R3 G1\n\n45) Mandrel: Build R3 Lash\n\n46) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R3 Space\nBuild R3 G2\n\n47) Trydnt: Build B1 G1\n\n48) Mandrel: Discover G2 Lash B2 Threeee\n\n49) Draw5PlayAll: Move Y3 G2 G3\n\n50) Trydnt: Move Y2 G3 G1\n\n51) Mandrel: Trade G2 B2 Threeee\n\n52) Draw5PlayAll: Move B1 G2 G3\n\n53) Trydnt: Discover B1 G1 G2 Gee2\n\n54) Mandrel: Sacrifice B2 Threeee\nTrade Y2 B2 Lash\nTrade Y2 B2 Ton\n\n55) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B3 G2\nBuild Y2 G3\n\n56) Trydnt: Move Y1 G1 G3\n\n57) Mandrel: Move Y1 Ton G3\nCatastrophe G3 Y\n\tDraw5PlayAll: Question 2: What should I do with this material advantage?\n\n58) Draw5PlayAll: Build Y1 G2\n\tTrydnt: well if Mandrel sacs y3 and moves two blues in your homeworld...\n\tTrydnt: nvmnd forgot we're going left haha\n\n59) Trydnt: Trade R3 Y3 G1\n\tTrydnt: y1 ton->g3 ought to remedy that material advantage though\n\n60) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild Y1 Lash\nBuild Y2 Mandrel\n\n61) Draw5PlayAll: Move Y1 G2 G3\n\n62) Trydnt: Build R3 G1\n\n63) Mandrel: Build Y2 Mandrel\n\n64) Draw5PlayAll: Move B1 G2 G3\n\n65) Trydnt: Move R3 G1 G3\n\n66) Mandrel: Move R1 Lash Ton\n\n67) Draw5PlayAll: Sacrifice Y1 G3\nDiscover B1 G3 Y1 Y1\n\n68) Trydnt: Attack B1N G3\n\n69) Mandrel: Move B2 Lash Ton\n\n70) Draw5PlayAll: Move R3 G2 Y1\n\n71) Trydnt: Move Y2 G1 G3\n\n72) Mandrel: Sacrifice Y2 Mandrel\nMove B2 Ton Draw5playall\nMove B2 Ton Draw5playall\n\n73) Draw5PlayAll: Build Y2 G2\n\n74) Trydnt: Move B2 G1 G3\n\n75) Mandrel: M G1 Lash Ton\n\n76) Draw5PlayAll: Attack B2S Draw5playall\n\n77) Trydnt: Move R1 Trydnt G1\n\n78) Mandrel: A Y2N Draw5playall\n\n79) Draw5PlayAll: Attack B2S Draw5playall\n\n80) Trydnt: Move R2 G1 G3\n\n81) Mandrel: Move Y1 Lash Ton\n\n82) Draw5PlayAll: Move B2 Draw5playall Ton\n\n83) Trydnt: Sacrifice Y3 G1\nMove R1 G1 G3\nMove R1 G3 Mandrel\nMove R2 G3 Mandrel\n\n84) Mandrel: Sacrifice R3 Lash\nAttack R1E Mandrel\nAttack R2E Mandrel\nAttack B2N Draw5playall\n\n85) Draw5PlayAll: Build R3 G2\n\n86) Trydnt: Move R3 G3 Mandrel\nCatastrophe Mandrel R\n\n87) Mandrel: B Y3 Ton\n\n88) Draw5PlayAll: Sacrifice Y1 G2\nMove B2 Ton Mandrel\n\n89) Trydnt: Sacrifice Y2 G3\nMove B1 Gee2 Mandrel\nMove B1 G3 Mandrel\nCatastrophe Mandrel B\n\n\tDraw5PlayAll: Forgot this was Sinister!!\n\tTrydnt: haha I was curious as to why you moved your b2 in there. oh well live and learn. good game both of you\n\tMandrel: Good game!\n\nHomeworlds Online (SDG# 33469)\nStarted: 2017.11.20, Ended: 2017.12.11\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) MobyNostromo: H B1 G2 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Trydnt: Build G1 Trydnt\n\n6) MobyNostromo: B Y1 Mobynostromo\n\n7) Trydnt: Trade G1 Y1 Trydnt\n\n8) MobyNostromo: D Y1 Mobynostromo Y3 Bigbird\n\n9) Trydnt: Build G1 Trydnt\n\n10) MobyNostromo: B Y2 Mobynostromo\n\n11) Trydnt: Trade G1 B1 Trydnt\n\n12) MobyNostromo: D Y2 Mobynostromo B3 Ibm\n\n13) Trydnt: Build Y2 Trydnt\n\n14) MobyNostromo: T Y2 G2 Ibm\n\n15) Trydnt: Discover Y1 Trydnt G3 G3\n\n16) MobyNostromo: T Y1 B1 Mobynostromo\n\n17) Trydnt: Move B1 Trydnt G3\n\n\nHomeworlds Online (SDG# 33463)\nVariants: "Unrated"\nStarted: 2017.11.20, Ended: 2017.11.23\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: Homeworld G3 Y1 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\twil: lettuce turnup n bee sillie\n\n4) wil: Build Y1 Wil\n\n5) Trydnt: Build G1 Trydnt\n\n6) wil: Discover Y1 Wil G2 G2\n\n7) Trydnt: Trade G1 R1 Trydnt\n\twil: I've done the instant freezeout with blue before, and I think red once...never yellow...don't think it will play out, but we will see.\n\n8) wil: Build Y2 G2\n\n9) Trydnt: Build R1 Trydnt\n\n10) wil: Build Y2 G2\n\n11) Trydnt: Build G1 Trydnt\n\n12) wil: Discover Y2 G2 B3 B3\n\n13) Trydnt: Discover G1 Trydnt B3 Acb\n\n14) wil: Build Y2 Wil\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild G1 Acb\nBuild G2 Acb\nBuild G2 Trydnt\n\n16) wil: Build Y3 G2\n\n17) Trydnt: Build G3 Trydnt\n\n18) wil: Move Y3 G2 B3\n\n19) Trydnt: Discover G1 Trydnt B3 B32\n\tDraw5PlayAll: @wil: How can you instafreeze red? Starting R1+G3 stars and R3 ship gives you no room to move.\n\twil: You are correct...not red.\n\n20) wil: Trade Y3 G3 B3\n\n21) Trydnt: Sacrifice G1 Acb\nBuild G1 B32\n\n22) wil: Build Y3 B3\n\n23) Trydnt: Discover G2 Trydnt Y3 Y3\n\n24) wil: Trade Y3 R3 B3\n\twil: The beginning of the end.\n\n\nHomeworlds Online (SDG# 33426)\nVariants: "Unrated"\nStarted: 2017.11.20, Ended: 2017.12.26\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) Felix: H B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tFelix: Hello! Are you new to the game?\n\n4) Felix: Build G1 Felix\n\tTrydnt: Hi! I'm new-ish. Been playing a few months with a friend IRL but only just made an account here.\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) Felix: Trade G1 B1 Felix\n\tFelix: Cool, well have fun!\n\n7) Trydnt: Build B2 Trydnt\n\n8) Felix: Build B2 Felix\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) Felix: Trade B2 Y2 Felix\n\n11) Trydnt: Build G1 Trydnt\n\n12) Felix: Build Y1 Felix\n\n13) Trydnt: Discover B2 Trydnt G3 G3\n\n14) Felix: Discover Y1 Felix G2 Out\n\n15) Trydnt: Build G1 Trydnt\n\n16) Felix: Build Y1 Out\n\n17) Trydnt: Discover G1 Trydnt Y3 Y3\n\n18) Felix: Move Y1 Out G3\n\n19) Trydnt: Trade G1 R1 Trydnt\n\n20) Felix: Build Y2 Felix\n\n21) Trydnt: Sacrifice R1 Trydnt\nAttack Y1 G3\n\n22) Felix: Discover Y2 Felix B2 Opus\n\n23) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y3 Trydnt\nBuild G1 Y3\n\n24) Felix: Build Y3 Felix\n\n25) Trydnt: Trade Y1 R1 G3\n\n26) Felix: Discover Y1 Out G3 Grand\n\n27) Trydnt: Discover Y1 Trydnt B3 B3\n\n28) Felix: Discover Y2 Felix G2 Farhome\n\n29) Trydnt: Build R1 G3\n\n30) Felix: Sacrifice Y3 Felix\nMove Y2 Opus Grand\nMove Y2 Grand Trydnt\nMove Y1 Grand Trydnt\n\n31) Trydnt: Trade Y3 G3 Trydnt\n\n32) Felix: Trade B1 Y1 Felix\n\n33) Trydnt: Build Y3 G3\n\tFelix: Huh. I'm not really sure why I thought that would work...\n\n34) Felix: Build Y3 Felix\n\n35) Trydnt: Attack Y2 Trydnt\n\n36) Felix: Move Y1 Trydnt G3\n\n37) Trydnt: Discover Y3 G3 G2 G2\n\n38) Felix: Discover Y1 G3 G2 Rim\n\n39) Trydnt: Build G1 Trydnt\n\n40) Felix: Trade Y1 B1 Felix\n\n41) Trydnt: Move R1 G3 G2\n\n42) Felix: Move B1 Felix Farhome\n\n43) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 G2\nBuild R2 G3\n\n44) Felix: Trade Y2 R2 Farhome\n\n45) Trydnt: Move R1 G2 Y3\n\n46) Felix: Build R3 Farhome\n\n47) Trydnt: Build R3 G2\n\n48) Felix: Trade R2 Y2 Farhome\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 Y3\nBuild Y1 B3\n\n50) Felix: Move R3 Farhome B3\n\n51) Trydnt: Sacrifice Y2 G3\nMove R3 G2 Y3\nMove R3 Y3 Farhome\n\n52) Felix: Sacrifice Y2 Farhome\nMove B1 Farhome B3\nMove B1 B3 Rim\n\n53) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G2\nBuild Y2 Trydnt\n\n54) Felix: Attack Y1 B3\n\n55) Trydnt: Move Y1 B3 Farhome\n\n56) Felix: Build B1 Rim\n\n57) Trydnt: Sacrifice Y1 Farhome\nMove R2 G3 Rim\n\n58) Felix: Move R3 B3 Rim\n\n59) Trydnt: Sacrifice Y2 Trydnt\nMove R1 Y3 Rim\nMove R1 G3 Rim\nCatastrophe Rim R\n\n60) Felix: Trade B1 R1 Rim\n\n61) Trydnt: Move R2 Y3 Rim\n\n62) Felix: Move Y3 Felix Rim\n\n63) Trydnt: Attack R1 Rim\n\n64) Felix: Trade Y1 B1 B3\n\n65) Trydnt: Attack Y1 Rim\n\n\nHomeworlds Online (SDG# 33471)\nStarted: 2017.11.20, Ended: 2017.12.11\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) MobyNostromo: H B1 G2 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Trydnt: Build G1 Trydnt\n\n6) MobyNostromo: B Y1 Mobynostromo\n\n7) Trydnt: Discover G1 Trydnt Y3 Y3\n\n8) MobyNostromo: D Y1 Mobynostromo G3 Jolly\n\n9) Trydnt: Build G1 Y3\n\n10) MobyNostromo: B Y2 Mobynostromo\n\n11) Trydnt: Build G2 Y3\n\n12) MobyNostromo: T Y1 R1 Mobynostromo\n\n13) Trydnt: Trade G1 R1 Trydnt\n\n14) MobyNostromo: T Y2 G2 Mobynostromo\n\n15) Trydnt: Move G1 Y3 Mobynostromo\n\n16) MobyNostromo: M G2 Mobynostromo Y3\n\n17) Trydnt: Sacrifice R1 Trydnt\nAttack R1 Mobynostromo\n\n\nHomeworlds Online (SDG# 33464)\nVariants: "Unrated, Hard time"\nStarted: 2017.11.20, Ended: 2017.11.26\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n1) dlwillson: H B3 Y1 G3 Dlwillson\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: T G1 Y1 Dlwillson\n\tdlwillson: Two games?\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Trydnt: Discover Y1 Trydnt G1 G1\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) Trydnt: Build G1 Trydnt\n\n11) dlwillson: D Y2 Dlwillson G2 Field2\n\n12) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G1\nBuild G1 Trydnt\nBuild G2 Trydnt\n\n\tdlwillson: Oops! Sorry about that.\n\nHomeworlds Online (SDG# 33473)\nVariants: "Unrated"\nStarted: 2017.11.24, Ended: 2017.12.13\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld G3 B1 Y3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build Y1 Trydnt\n\n5) wil: Trade G1 B1 Wil\n\n6) Trydnt: Trade Y1 B1 Trydnt\n\n7) wil: Build B2 Wil\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: Discover B1 Wil Y3 Y3\n\n10) Trydnt: Discover B1 Trydnt Y2 Y2\n\n11) wil: Trade B1 R1 Y3\n\n12) Trydnt: Trade B2 R2 Trydnt\n\n13) wil: Build B1 Wil\n\n14) Trydnt: Move R2 Trydnt Y2\n\n15) wil: Move B2 Wil Y3\n\n16) Trydnt: Build Y1 Trydnt\n\n17) wil: T B1 Y1 Wil\n\n18) Trydnt: Build Y2 Trydnt\n\n19) wil: Discover Y1 Wil G3 G3\n\n20) Trydnt: Discover Y2 Trydnt G2 G2\n\n21) wil: Build G1 Wil\n\twil: look at you, succumbing to my nomenclature\n\n22) Trydnt: Move R2 Y2 G3\n\n23) wil: M Y1 G3 G2\n\n24) Trydnt: Build R1 G3\n\n25) wil: Discover Y1 G2 G1 G1\n\n26) Trydnt: Sacrifice B1 Y2\nTrade R2 Y2 G3\n\n27) wil: Discover G1 Wil Y3 Why3\n\n28) Trydnt: Build Y2 G3\n\n29) wil: Sacrifice G1 Why3\nBuild Y3 G1\n\n30) Trydnt: Trade Y1 B1 Trydnt\n\n31) wil: B G1 Wil\n\n32) Trydnt: Build R1 G3\n\n33) wil: Move G1 Wil Y3\n\n34) Trydnt: Build Y1 G2\n\n35) wil: Build R2 Y3\n\n36) Trydnt: Discover Y2 G2 B3 B3\n\n37) wil: Move R2 Y3 G2\n\n38) Trydnt: Discover Y1 G2 B3 Bee3\n\twil: I am doing worse in this game..\n\n39) wil: B R2 Y3\n\n40) Trydnt: Discover B1 Trydnt G2 Gee2\n\n41) wil: Move R2 Y3 Gee2\n\n42) Trydnt: Sacrifice Y1 Bee3\nMove B1 Gee2 G3\n\twil: Lovely new area...fancy meeting you here.\n\twil: If I saw two in the queue, I always knew it was ueue.\n\n43) wil: Move Y1 G1 G2\n\n44) Trydnt: Build Y1 Trydnt\n\n45) wil: Build G1 Wil\n\n46) Trydnt: Build B1 G3\n\twil: I'd say officially my game to lose now...\n\n47) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 Wil\nBuild R2 G2\n\n48) Trydnt: Build B2 G3\n\n49) wil: S Y3 G1\nM B2 Y3 G2\nM B2 G2 G3\nM R2 G2 G3\nC G3 B\n\n50) Trydnt: Attack R2 G3\n\twil: And it. Appears I am doing it!\n\n51) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G3 Wil\nBuild Y3 G2\n\n52) Trydnt: Move Y1 Trydnt G2\n\n53) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 G2\nBuild R3 Gee2\n\n54) Trydnt: Move Y1 G2 B3\n\n55) wil: Sacrifice Y3 G2\nMove R3 G2 Trydnt\nMove R2 Gee2 G3\nMove R1 Y3 Wil\nCatastrophe G3 R\n\n\twil: Just a few moves ago you were one move away from unleashing the doomsday machine and I alexed my way out of it!\n\nHomeworlds Online (SDG# 33475)\nStarted: 2017.11.24, Ended: 2017.12.14\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Trydnt: Homeworld Y3 G1 B3\n\tMobyNostromo: Have fun!\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) Trydnt: Build B1 Trydnt\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Trydnt: Build B1 Trydnt\n\n7) MobyNostromo: D Y1 Mobynostromo G3 Jollygreen\n\n8) Trydnt: Discover B1 Trydnt Y2 Y2\n\n9) MobyNostromo: B Y1 Jollygreen\n\n10) Trydnt: Build B2 Trydnt\n\n11) MobyNostromo: Build Y2 Mobynostromo\n\n12) Trydnt: Move B2 Trydnt Y2\n\n\nHomeworlds Online (SDG# 33514)\nStarted: 2017.11.27, Ended: 2017.11.27\nParticipants: inattentive (S), Schmoopy (N)\nWinner: Schmoopy\n\n1) Schmoopy: Homeworld B3 R1 G3\n\n2) inattentive: Homeworld Y2 B1 G3\n\tinattentive: homeworld y2 b1 g1\n\tSchmoopy: right back at ya\n\n3) Schmoopy: Build G1 Schmoopy\n\n4) inattentive: Build G1 Inattentive\n\n5) Schmoopy: Trade G1 Y1 Schmoopy\n\n6) inattentive: Trade G1 R1 Inattentive\n\n7) Schmoopy: Build Y1 Schmoopy\n\n8) inattentive: Build G1 Inattentive\n\n9) Schmoopy: Build Y1 Schmoopy\n\n10) inattentive: Trade G1 B1 Inattentive\n\n11) Schmoopy: Build Y2 Schmoopy\n\n12) inattentive: Build R1 Inattentive\nCatastrophe Schmoopy Y\n\n\nHomeworlds Online (SDG# 33515)\nStarted: 2017.11.27, Ended: 2017.11.27\nParticipants: inattentive (S), Schmoopy (N)\nWinner: inattentive\n\n1) Schmoopy: Homeworld B3 R1 G3\n\n2) inattentive: Homeworld Y3 B1 G3\n\n3) Schmoopy: Build G1 Schmoopy\n\n4) inattentive: Build G1 Inattentive\n\n5) Schmoopy: Trade G1 R1 Schmoopy\n\n6) inattentive: Trade G1 R1 Inattentive\n\n7) Schmoopy: Build R2 Schmoopy\n\n8) inattentive: Build R2 Inattentive\n\n9) Schmoopy: Trade R1 Y1 Schmoopy\n\n10) inattentive: Discover R2 Inattentive Y2 Poop\n\n11) Schmoopy: Build G1 Schmoopy\n\n12) inattentive: Build G1 Inattentive\n\n13) Schmoopy: Move G3 Schmoopy Poop\n\n14) inattentive: Move G3 Inattentive Poop\n\n15) Schmoopy: Sacrifice R2 Schmoopy\nAttack R2 Poop\nAttack G3 Poop\n\n16) inattentive: Build G1 Inattentive\n\n17) Schmoopy: Move G3 Poop Inattentive\n\n18) inattentive: Build G2 Inattentive\nCatastrophe Inattentive G\n\n19) Schmoopy: Move R2 Poop Inattentive\n\n20) inattentive: Trade R1 G1 Inattentive\n\n\tDraw5PlayAll: Whaaaaat?\n\nHomeworlds Online (SDG# 33478)\nVariants: "Unrated"\nStarted: 2017.11.28, Ended: 2017.12.28\nParticipants: smokeytroll42 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) smokeytroll42: Homeworld G3 R2 B3\n\n3) Trydnt: Build G1 Trydnt\n\n4) smokeytroll42: Build B1 Smokeytroll42\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) smokeytroll42: Trade B1 Y1 Smokeytroll42\n\n7) Trydnt: Build Y2 Trydnt\n\n8) smokeytroll42: Build Y2 Smokeytroll42\n\n9) Trydnt: Discover Y2 Trydnt G3 G3\n\n10) smokeytroll42: Discover Y2 Smokeytroll42 G1 Mars\n\n11) Trydnt: Discover Y1 Trydnt B3 B3\n\n12) smokeytroll42: Build B1 Smokeytroll42\n\n13) Trydnt: Build G1 Trydnt\n\n14) smokeytroll42: Move B1 Smokeytroll42 Mars\n\n15) Trydnt: Move G1 Trydnt B3\n\n16) smokeytroll42: Build B1 Mars\n\n17) Trydnt: Build G1 Trydnt\n\n18) smokeytroll42: Trade B1 R1 Mars\n\n19) Trydnt: Trade G1 R1 Trydnt\n\n20) smokeytroll42: Build B1 Mars\n\n21) Trydnt: Build G1 Trydnt\n\n22) smokeytroll42: Build B1 Smokeytroll42\n\n23) Trydnt: Build G2 B3\n\n24) smokeytroll42: Build B2 Mars\n\n25) Trydnt: Discover G1 Trydnt B3 Bee3\n\n26) smokeytroll42: Trade B2 R2 Mars\n\n27) Trydnt: Build G2 Bee3\n\n28) smokeytroll42: Trade R2 G2 Mars\n\n29) Trydnt: Sacrifice Y2 G3\nMove G1 B3 Mars\nMove G1 Bee3 Mars\nCatastrophe Mars G\n\n30) smokeytroll42: Build Y2 Smokeytroll42\n\n31) Trydnt: Build Y2 B3\n\n32) smokeytroll42: Trade Y1 R1 Smokeytroll42\n\n33) Trydnt: Build G1 Bee3\n\n34) smokeytroll42: Discover B1 Smokeytroll42 G1 Mercury\n\n35) Trydnt: Build G1 Trydnt\n\n36) smokeytroll42: Build B1 Mercury\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B3\nBuild G3 Trydnt\nBuild G3 B3\n\n38) smokeytroll42: Build B1 Smokeytroll42\n\n39) Trydnt: Trade G2 R2 B3\n\n40) smokeytroll42: Move Y2 Smokeytroll42 Mercury\n\n41) Trydnt: Move G3 B3 Mercury\n\n42) smokeytroll42: Sacrifice Y2 Mercury\nDiscover B1 Mercury Y2 Pluto\nDiscover B1 Mercury R2 Neptune\n\n43) Trydnt: Sacrifice Y2 B3\nMove R2 B3 Pluto\nMove G2 Bee3 Neptune\n\n44) smokeytroll42: Discover B1 Pluto Y3 Venus\n\n45) Trydnt: Attack B1 Neptune\n\n46) smokeytroll42: Build B2 Smokeytroll42\n\n47) Trydnt: Sacrifice G3 Trydnt\nBuild B2 Neptune\nBuild G2 Bee3\nBuild G3 Trydnt\n\n48) smokeytroll42: Trade B1 Y1 Smokeytroll42\n\n49) Trydnt: Move R2 Pluto Venus\n\n50) smokeytroll42: Build Y2 Smokeytroll42\n\n51) Trydnt: Attack B1 Venus\n\n52) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove B3 Smokeytroll42 Mercury\nMove B3 Mercury Venus\n\n53) Trydnt: Move R2 Venus Mercury\n\n54) smokeytroll42: Trade B3 R3 Venus\n\n55) Trydnt: Sacrifice Y1 B3\nMove G3 Mercury Smokeytroll42\n\n\tsmokeytroll42: good game!\n\nHomeworlds Online (SDG# 33468)\nStarted: 2017.11.29, Ended: 2017.12.31\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) wil: Build G1 Wil\n\tts52: Have a good game!\n\twil: I ran out of games! Was only in three...\n\n4) ts52: Build G1 Ts52\n\n5) wil: Trade G1 Y1 Wil\n\tts52: :D\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) wil: Build Y2 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: D Y1 Wil B2 B2\n\n10) ts52: Trade G1 B1 Ts52\n\n11) wil: Sacrifice G3 Wil\nBuild Y2 B2\nBuild Y3 B2\nBuild Y3 Wil\n\n12) ts52: Discover Y1 Ts52 G3 Kermit\n\n13) wil: M Y2 B2 Kermit\n\n14) ts52: Discover Y1 Kermit G2 Robin\n\n15) wil: Trade Y3 G3 Wil\n\n16) ts52: Build Y3 Robin\n\n17) wil: Build Y3 Kermit\n\n18) ts52: Build B1 Ts52\n\n19) wil: Trade Y1 G1 B2\n\n20) ts52: Sacrifice B1 Ts52\nTrade Y1 B1 Robin\n\n21) wil: Trade Y2 R2 Wil\n\n22) ts52: Trade B1 R1 Ts52\n\n23) wil: B R1 Wil\n\n24) ts52: Build B1 Robin\n\n25) wil: Build Y1 B2\n\n26) ts52: Build B2 Robin\n\n27) wil: Trade R2 B2 Wil\n\n28) ts52: Trade B2 R2 Robin\n\n29) wil: M B2 Wil B2\n\n30) ts52: Build G1 Ts52\n\n31) wil: Build G1 B2\n\n32) ts52: Discover G1 Ts52 B3 Gonzo\n\n33) wil: Build G2 Wil\n\n34) ts52: Build Y1 Robin\n\n35) wil: S G3 Wil\nB G2 B2\nB G3 Wil\nB Y2 B2\n\n36) ts52: Move Y1 Robin Gonzo\n\n37) wil: Sacrifice B2 B2\nTrade Y2 R2 B2\nTrade Y2 B2 Kermit\n\n38) ts52: Build Y2 Gonzo\n\n39) wil: S G3 Wil\nB G3 Wil\nB Y2 Kermit\nB R1 B2\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Gonzo\nBuild R2 Robin\nBuild R3 Ts52\n\n41) wil: Move R1 B2 Kermit\n\n42) ts52: Trade R3 B3 Ts52\n\twil: attention all troops, the factory has been transported to Gonzo!\n\n43) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 B2\nBuild R3 Kermit\n\n44) ts52: Sacrifice Y2 Gonzo\nMove R2 Robin Kermit\nMove R2 Robin Kermit\nCatastrophe Kermit R\n\twil: I think the end is in sight....of course that could change..\n\n45) wil: S Y3 B2\nM R3 B2 Kermit\nM R3 Kermit Ts52\nM Y3 Kermit Ts52\n\tts52: I think you're probably right.\n\n46) ts52: Attack R3N Ts52\n\twil: Hope you had a great holiday\n\tts52: Yep. That'll do it. Thanks for the game! Hope you had a great holiday too!\n\n47) wil: Sacrifice R3 Wil\nAttack R3 Ts52\nAttack B3 Ts52\nAttack R1 Ts52\n\twil: See you next year!\n\n\nHomeworlds Online (SDG# 33493)\nStarted: 2017.11.29, Ended: 2018.1.8\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) wil: Homeworld B3 Y1 G3\n\n3) MobyNostromo: B Y1 Mobynostromo\n\twil: Just dislike checking and not having a move to make! Gotta get my HW fix\n\tMobyNostromo: I'm actually going out of town tomorrow, but I'll try to do this from my phone.\n\n4) wil: Build G1 Wil\n\twil: If it doesn't work out, hit me up when you return. Hava good trip!\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) wil: B G1 Wil\n\tMobyNostromo: Thanks, Wil!\n\n7) MobyNostromo: D Y1 Mobynostromo G3 Jollygreen\n\n8) wil: D G1 Wil B2 B2\n\n9) MobyNostromo: T Y1 G1 Mobynostromo\n\twil: Hmmm nice start.... Shoulda took fortress I suppose\n\n10) wil: B G2 B2\n\tMobyNostromo: Fortress has a red, right? I’m still not experienced enough to really understand the initial setups. I’ve been using the same one. \n\n11) MobyNostromo: B G2 Mobynostromo\n\twil: No banker is a one and a two PIP star, fortress is a three PIP and two pip a star .. \n\tMobyNostromo: I see. Thanks! (Sorry about the delay.)\n\n12) wil: Build G3 B2\n\twil: Fortress because ones are often taken early and then in short supply when your opponent is trying to build an avenue in. Banker because you can send greens out to queen stars and sacrifice green later and grow the star someplace else...your investment gets paid off. large and small star system is called goldilocks...because not the other two...\n\n13) MobyNostromo: T G1 B1 Mobynostromo\n\tMobyNostromo: I remember reading about this a few months ago, but it didn't make any sense to me back then. Now, I'm getting a picture.\n\n14) wil: T G1 Y1 B2\n\n15) MobyNostromo: B Y2 Mobynostromo\n\n16) wil: T G3 Y3 B2\n\n17) MobyNostromo: B Y2 Jollygreen\n\n18) wil: Discover Y1 B2 B3 B3\n\n19) MobyNostromo: M B1 Mobynostromo Jollygreen\n\n20) wil: Sacrifice G2 B2\nBuild Y2 B2\nBuild Y3 B3\n\n21) MobyNostromo: B G1 Mobynostromo\n\n22) wil: S Y2 B2\nM Y3 B3 Mobynostromo\nM Y1 B3 Mobynostromo\nC Mobynostromo Y\n\n23) MobyNostromo: T G2 Y2 Mobynostromo\n\n24) wil: Trade G1 R1 Wil\n\n25) MobyNostromo: D Y1 Jollygreen G2 Emerald\n\n26) wil: M Y3 B2 Jollygreen\n\n27) MobyNostromo: B Y1 Mobynostromo\n\n28) wil: Build R1 Wil\n\n29) MobyNostromo: B Y2 Emerald\n\twil: So many moves to contemplate.\n\tMobyNostromo: And I bet you can see more moves than I can.\n\n30) wil: S R1 Wil\nA Y2 Jollygreen\n\n31) MobyNostromo: T Y1 R1 Mobynostromo\n\n32) wil: M Y3 Jollygreen Mobynostromo\n\n33) MobyNostromo: T G1 R1 Mobynostromo\n\n34) wil: B R2 Wil\n\n35) MobyNostromo: M Y2 Emerald Jollygreen\n\twil: I don't know how to see moves ahead... So many ways to thwart plans.... I have plans, strategy, begin with the end in mind, only a few ways to win, I work toward any one of them...\n\n36) wil: Sacrifice R2 Wil\nAttack Y2 Mobynostromo\nAttack Y2 Jollygreen\n\tMobyNostromo: You play Chess, yes?\n\twil: I did...until I found this... now rarely chess, working on coverting chess players to this..or identify folks who might be interested based on chess. But I don't 'see moves ahead' there either...I look for where I want to end...and then work my way thru to get there...like hiking to the next range...I look and try to head for a pass that I see. And then head down to the valley and as I run into obstacles I keep turning back toward that place I am headed.\n\n37) MobyNostromo: B Y1 Emerald\n\tMobyNostromo: I know what you mean. I've played this about twenty or so times and still feel like there is so much more that I cannot yet see. I used to play Chess casually, and I appreciate that game and its depth, but there are other games that are even deeper and more interesting.\r\n\r\nAnd your description of your thinking process makes a lot of sense. I remember reading this one strategy book on Chess that described the two kinds of planning in that game: the tactics and the fuzzy thinking that involved where you would like to be by a certain time.\n\n38) wil: Trade Y2 R2 Mobynostromo\n\n39) MobyNostromo: B Y2 Emerald\n\n40) wil: S R2 Mobynostromo\nA R1 Mobynostromo\nA R1 Mobynostromo\n\twil: I was left with a choice sack and attack or grow and catastrophe...almost got creative!! Gg, challenge me anytime! (Note, for my first 50 -100 games I didn't challenge to win.. I challenged to lose and learn)\n\tMobyNostromo: Thanks, Wil. I know that the better the game, the longer it takes to master it.\n\n\nHomeworlds Online (SDG# 33474)\nVariants: "Unrated"\nStarted: 2017.11.29, Ended: 2017.12.5\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Felix: Homeworld B2 R3 G3\n\n3) wil: Build G1 Wil\n\tFelix: Hello again :)\n\n4) Felix: Build G1 Felix\n\twil: tryin to get my fix\n\n5) wil: Trade G1 B1 Wil\n\tFelix: I understand that.\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: Build B1 Wil\n\n8) Felix: Build Y1 Felix\n\n9) wil: Discover B1 Wil Y3 Y3\n\n10) Felix: Build Y2 Felix\n\n11) wil: Sacrifice G3 Wil\nBuild B1 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n12) Felix: Discover Y1 Felix G1 Out\n\n13) wil: M B2 Y3 Out\n\tFelix: Nice\n\n14) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y2 Out\nBuild Y3 Felix\n\n15) wil: Build B3 Out\n\n16) Felix: Trade Y3 G3 Felix\n\tDraw5PlayAll: Absolutely yellow vs blue... very interesting.\n\twil: Dang it...you've done it again! I see a notice...I think my opponent has moved...and I get to contemplate a move...or he has commented and I need to respond... No...just the peanut gallery popping in. I am so confused...I have played you...you comment less during a game when I am playing you...and do this when I am not?? Have I not mentioned enough that I find it irritating? \n\twil: Sorry...can't delete...clicked on this right after a Trump and Tax and Racism discussion...while the sentiment is true...the rant stems from a previous discussion without which I prolly would have just grumbled under my breath....again.\n\n17) wil: T B3 Y3 Out\nC Out Y\n\tFelix: Quite understandable. Between Trump, Taxes, and Racism, that's a lot of volatile ground to cover in one discussion.\n\tFelix: I only get email notifications when an actual move is made, so that saves me that headache at least :)\n\twil: It isn't the email notifications.... I open the page and it shows a bolded and non bolded games, A MOVE TO MAKE!!!! Like pavlov's dogs I salivate, adrenaline courses thru my veins, I tap the screen in anticipation and a balloon lets go and flies backwards thru the room deflated from dissapoimtment...\n\n18) Felix: Trade Y2 R2 Felix\n\tFelix: Oh, haha. I almost never just open the page. The home page takes too long to load. I just come here directly from the email.\n\n19) wil: Trade B3 G3 Wil\n\tFelix: Good move.\n\n20) Felix: Move R2 Felix Out\n\n21) wil: Sacrifice G3 Wil\nBuild B3 Out\nBuild B3 Y3\nBuild B3 Wil\n\twil: I don't open the main page either...just leave a game open and look to the right to see if anything changed...I try to play enough games that I have a move a day...prefer a dozen! I only get to sit down and play live games two or three nights a week.. \n\n22) Felix: Move G3 Felix Out\n\tFelix: "only" .... "two or three nights a week"\r\nI'd be grateful to get that many! With a 2-year-old and a baby on the way, I'm lucky to get one live game a year.\n\n23) wil: Sacrifice B3 Y3\nTrade B3 G3 Out\nTrade B2 G2 Out\nTrade B3 G3 Wil\nCatastrophe Out G\n\twil: congrats on the kids!! mine are out of college and on their own.. As those little time absorption capsules grow up you'll be able to play with them!\r\n\n\n\twil: That was exciting... for a moment I thought I was cornered.\n\twil: Kids...you've got so many memories you are making... you've taken me down memory lane with my twins...from pregnant to three... what a glorious time... Your younger one will come out making neuro connections by the second....your older child has now three times as many connections as we do...and will spend the next 13 years pruning...through their experiences and life around them they will be choosing which connections to eliminate, not needed, which ones to move over to other similar needs, and which to turn into super highways of accessible thought... \n\twil: me thinks this game is over and unimportant in the larger scheme of things...however that other game that you are playing... that is one to focus on!!\n\tFelix: Ooh, well played! And thanks for the congrats and, um, scientific poetry? It's all very fascinating :) And good point that they'll make good opponents in years to come!\n\nHomeworlds Online (SDG# 33480)\nVariants: "Unrated, Hard time"\nStarted: 2017.11.29, Ended: 2017.12.4\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: Homeworld B2 Y3 G3\n\n2) wil: Homeworld B2 Y1 G3\n\n3) dlwillson: B G1 Dlwillson\n\twil: snow yet your way?\r\n\n\n4) wil: Build G1 Wil\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\tdlwillson: We had a couple snows, but they melted off fast. Today's cold, but no snow. Had a little rain yesterday, too.\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: Build Y2 Wil\n\n\tdlwillson: Dangit! Sorry Wil! I'm having trouble keeping up with all my things lately.\n\twil: phooey freaking hard time! Challenge me when you ain't so busy... Trident is a young man I've recently taught the game to...caught on quick...smart kid...pissed he can't beat me more often.\n\tDraw5PlayAll: ummm... you can turn off the hard time if it is not a ladder game... and there is something about the system console too....\n\nHomeworlds Online (SDG# 33520)\nVariants: "Unrated, Hard time"\nStarted: 2017.11.29, Ended: 2017.12.10\nParticipants: dlwillson (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld B1 Y2 G3\n\n2) dlwillson: H B2 Y3 G3\n\n3) dragon76n: B G1 Dragon76n\n\tdlwillson: GLHF\n\n4) dlwillson: Build G1 Dlwillson\n\tdragon76n: Glhf\n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) dragon76n: Build G1 Dragon76n\n\n8) dlwillson: Discover Y1 Dlwillson G1 Field\n\n9) dragon76n: T G1 B1 Dragon76n\n\n10) dlwillson: B Y1 Field\n\n11) dragon76n: Build Y2 Dragon76n\n\n12) dlwillson: Discover Y1 Field G3 Forest\n\n13) dragon76n: T Y2 R2 Dragon76n\n\n14) dlwillson: Build G1 Dlwillson\n\n15) dragon76n: M R2 Dragon76n Forest\n\n16) dlwillson: D Y1 Forest G1 Mossy\n\n17) dragon76n: B B1 Dragon76n\n\n\tdlwillson: Sorry for timing out on you!\n\tdragon76n: It's ok. I know that life can get extremely busy unexpectedly. Maybe next time. \n\nHomeworlds Online (SDG# 33258)\nVariants: "Unrated, Hard time"\nStarted: 2017.11.30, Ended: 2017.12.11\nParticipants: wil (S), AlexKM (N)\nWinner: wil\n\n1) AlexKM: Homeworld Y1 B2 G3\n\tAlexKM: Hi!\n\n2) wil: H B3 Y2 G3\n\tAlexKM: This is my first game online so I'm sorry if I don't manage to synchronise too well! Do you mind telling me what the policy is on how often to move and such?\n\n3) AlexKM: Build G1 Alexkm\n\twil: Whenever you can..every\r\nFew days at a minimum... But if I get on and see you've moved I'll move\n\twil: Have fun\n\n4) wil: B G1 Wil\n\tAlexKM: Oh okay, I'll have time to move several times a day, so no worries :)\n\n5) AlexKM: Trade G1 Y1 Alexkm\n\n6) wil: Trade G1 Y1 Wil\n\n7) AlexKM: Build Y2 Alexkm\n\n8) wil: Build Y2 Wil\n\n9) AlexKM: Trade Y2 G2 Alexkm\n\twil: ya know about catastrophes??\n\n10) wil: T Y2 R2 Wil\n\tAlexKM: Of course, of course. I'm a bit rusty, but I've played some of this irl\n\n11) AlexKM: Build Y2 Alexkm\n\twil: Just checkin\n\n12) wil: B Y2 Wil\n\n13) AlexKM: Discover Y1 Alexkm B3 Sigma\n\n14) wil: D Y1 Wil G1 G1\n\n15) AlexKM: Sacrifice Y2 Alexkm\nMove Y1 Sigma Alexkm\nDiscover Y1 Alexkm Y3 Praise_it\n\n16) wil: B Y2 Wil\n\n\tAlexKM: Sorry, I don't think this is for me, I don't really enjoy playing a single game over a long period of time...\n\twil: No worries.. \n\nHomeworlds Online (SDG# 33525)\nVariants: "Hard time"\nStarted: 2017.12.1, Ended: 2017.12.20\nParticipants: bhorner (S), SilentTitan (N)\nWinner: bhorner\n\n1) SilentTitan: Homeworld B1 R2 G3\n\n2) bhorner: Homeworld B2 R1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) bhorner: Build G1 Bhorner\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) bhorner: T G1 Y1 Bhorner\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) bhorner: B G1 Bhorner\n\n9) SilentTitan: Trade G1 B1 Silenttitan\n\n10) bhorner: B G1 Bhorner\n\n11) SilentTitan: Build B1 Silenttitan\n\n12) bhorner: T G1 R1 Bhorner\n\n13) SilentTitan: Discover B1 Silenttitan Y3 Sol\n\tbhorner: Woops, thought I already had a blue.\n\n14) bhorner: B R1 Bhorner\n\n15) SilentTitan: Build B2 Silenttitan\n\n16) bhorner: M R1 Bhorner Sol\n\n17) SilentTitan: Sacrifice B1 Sol\nTrade B2 Y2 Silenttitan\n\n18) bhorner: Build R2 Bhorner\n\n\nHomeworlds Online (SDG# 33534)\nVariants: "Unrated"\nStarted: 2017.12.4, Ended: 2017.12.11\nParticipants: smokeytroll42 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 G3 Y3\n\n2) smokeytroll42: Homeworld B3 R1 G3\n\n3) Felix: Build Y1 Felix\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\n5) Felix: Trade Y1 R1 Felix\n\n6) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\n7) Felix: Build R1 Felix\n\n8) smokeytroll42: Build Y1 Smokeytroll42\n\n9) Felix: Discover R1 Felix G1 Out\n\n10) smokeytroll42: Build G1 Smokeytroll42\n\n11) Felix: Build R2 Felix\n\n12) smokeytroll42: Build G1 Smokeytroll42\n\n13) Felix: Trade R2 G2 Felix\n\n14) smokeytroll42: Discover G1 Smokeytroll42 B2 Garden\n\n15) Felix: Discover G2 Felix B1 Opus\n\n16) smokeytroll42: Build G2 Garden\n\n17) Felix: Build G2 Opus\n\n18) smokeytroll42: Build G3 Smokeytroll42\n\n19) Felix: Trade G2 Y2 Opus\n\n20) smokeytroll42: Trade G3 R3 Smokeytroll42\n\n21) Felix: Build G2 Opus\n\n22) smokeytroll42: Trade G2 Y2 Garden\n\n23) Felix: Move G2 Opus Garden\n\n24) smokeytroll42: Move R3 Smokeytroll42 Garden\n\n25) Felix: Build G2 Garden\n\n26) smokeytroll42: Attack G2N Garden\n\n27) Felix: Build G3 Opus\n\n28) smokeytroll42: Sacrifice Y2 Garden\nMove G2 Garden Opus\nMove G1 Garden Opus\nCatastrophe Opus G\n\n29) Felix: Sacrifice G2 Garden\nBuild Y1 Felix\nBuild Y2 Opus\n\n30) smokeytroll42: Move Y1 Smokeytroll42 Garden\n\tFelix: Nice move!\n\tsmokeytroll42: Thanks!\n\n31) Felix: Trade Y2 G2 Opus\n\n32) smokeytroll42: Move R3 Garden Opus\n\n33) Felix: Sacrifice Y2 Opus\nMove G2 Opus Garden\nMove R1 Out Garden\n\n34) smokeytroll42: Move Y1 Garden Opus\n\n35) Felix: Build R2 Garden\n\n36) smokeytroll42: Move G3 Smokeytroll42 Garden\n\n37) Felix: Sacrifice Y1 Felix\nMove G2 Garden Smokeytroll42\n\n38) smokeytroll42: Sacrifice Y1 Opus\nMove G3 Garden Smokeytroll42\n\n39) Felix: Build G1 Smokeytroll42\nCatastrophe Smokeytroll42 Green\n\n\tsmokeytroll42: Again, good game!\n\tFelix: Likewise! You might have been able to recover from that, but it would have been an uphill struggle. Good game!\n\tsmokeytroll42: Huh, I don’t see how other than building ships faster than you can take them. \n\nHomeworlds Online (SDG# 33535)\nVariants: "Unrated"\nStarted: 2017.12.6, Ended: 2018.1.22\nParticipants: smokeytroll42 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld G3 B2 Y3\n\n2) smokeytroll42: Homeworld B2 R1 G3\n\n3) Babamots: Build Y1 Babamots\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\n5) Babamots: Build Y1 Babamots\n\n6) smokeytroll42: Build G1 Smokeytroll42\n\n7) Babamots: Discover Y1 Babamots Y1 Iconia\n\n8) smokeytroll42: Trade G3 Y3 Smokeytroll42\n\tBabamots: I discovered a y1 to open up y2 for myself and prevent you from getting yellow ships for an extra turn or two.\n\tsmokeytroll42: So I could keep building up at the Homeworld or, trade my g3 to Y3 so I can expand.\n\tBabamots: Yeah, you can trade your g3 for y3 and then build yellow after that. I hadn't really thought about that.\n\n9) Babamots: Build Y2 Babamots\n\n10) smokeytroll42: Discover G1 Smokeytroll42 G3 Corrino\n\n11) Babamots: Trade Y2 G2 Babamots\n\n12) smokeytroll42: Build G1 Smokeytroll42\n\n13) Babamots: Discover G2 Babamots B1 Ferenginar\n\n14) smokeytroll42: Discover G1 Smokeytroll42 Y3 Ix\n\n15) Babamots: Build Y2 Babamots\n\n16) smokeytroll42: Build G2 Ix\n\n17) Babamots: Trade Y1 R1 Babamots\n\n18) smokeytroll42: Trade G1 R1 Smokeytroll42\n\n19) Babamots: Build R2 Babamots\n\n20) smokeytroll42: Build G1 Ix\n\n21) Babamots: Move Y2 Babamots Ferenginar\n\n22) smokeytroll42: Move G1 Ix Smokeytroll42\n\tBabamots: I would be pretty happy to cause a green catastrophe on Ix if you let me.\n\n23) Babamots: Build R2 Babamots\n\n24) smokeytroll42: Build R2 Smokeytroll42\n\n25) Babamots: Move R2 Babamots Ferenginar\n\n26) smokeytroll42: Move R2 Smokeytroll42 Corrino\n\n27) Babamots: Sacrifice G2 Ferenginar\nBuild R3 Ferenginar\nBuild R3 Babamots\n\n28) smokeytroll42: Build R3 Corrino\n\n29) Babamots: Move R3 Ferenginar Ix\n\n30) smokeytroll42: Move G2 Ix Iconia\n\n31) Babamots: Attack G1S Ix\n\n32) smokeytroll42: Sacrifice R1 Smokeytroll42\nAttack Y1N Iconia\n\n33) Babamots: Build G2 Ix\n\n34) smokeytroll42: Build Y1 Iconia\n\n35) Babamots: Sacrifice G2 Ix\nBuild Y2 Ferenginar\nBuild Y2 Babamots\n\n36) smokeytroll42: Move Y1 Iconia Corrino\n\tBabamots: I would like to cause a yellow catastrophe in Iconia if you let me.\n\n37) Babamots: Move R3 Babamots Iconia\n\n38) smokeytroll42: Move R3 Corrino Ferenginar\n\n39) Babamots: Sacrifice Y2 Ferenginar\nMove Y2 Ferenginar Ix\nDiscover R2 Ferenginar G3 Kronos\n\tBabamots: Good move.\n\tsmokeytroll42: Thank you!\n\n40) smokeytroll42: Sacrifice Y1 Iconia\nMove R3 Ferenginar Kronos\n\n41) Babamots: Sacrifice R2 Kronos\nAttack G2S Iconia\nPass\n\n42) smokeytroll42: Discover G1 Corrino Y2 Caladan\n\n43) Babamots: Discover G2 Iconia B3 Wadi\n\n44) smokeytroll42: Build Y1 Smokeytroll42\n\tDraw5PlayAll: Caladan?\r\nCorrine?\n\tsmokeytroll42: From Frank Herbert’s Dune series.\n\tsmokeytroll42: From Frank Herbert’s Dune series.\n\n45) Babamots: Build G2 Wadi\n\n46) smokeytroll42: Build G2 Caladan\n\n47) Babamots: Discover Y2 Babamots R1 Remus\n\n48) smokeytroll42: Build R2 Corrino\n\n49) Babamots: Move R3 Iconia Corrino\n\n50) smokeytroll42: Sacrifice Y1 Corrino\nMove R2 Corrino Caladan\n\n51) Babamots: Attack R2S Corrino\n\n52) smokeytroll42: Move Y1 Smokeytroll42 Kronos\n\n53) Babamots: Move R3 Ix Caladan\n\n54) smokeytroll42: Move R2 Caladan Kronos\n\tBabamots: The lesson of the game might be that it can be easy for your opponent to gobble up your fleet if you don't have a large enough ship at each system.\n\tsmokeytroll42: Yeah, it’s hard to get the right momentum for building up a fleet.\n\n55) Babamots: Sacrifice R2 Corrino\nAttack G2S Caladan\nAttack G1S Caladan\n\n56) smokeytroll42: Build Y1 Kronos\n\n57) Babamots: Sacrifice G2 Wadi\nBuild G2 Caladan\nBuild R2 Corrino\n\n58) smokeytroll42: Sacrifice Y1 Kronos\nMove R3 Kronos Remus\n\tBabamots: My next planned move is to green catastrophe on Kronos by sacrificing my y3 at home. I would lose more than you, but since I have a material advantage, it's probably worth it.\r\n\r\nYou should probably move your r3 out of Kronos. You could move it to Remus for a quick little threat. I'll want to take a turn to get my y2 to safety, and then you could sacrifice a y1 to move your r3 to Ix.\n\n59) Babamots: Move Y2 Remus Corrino\n\n\tsmokeytroll42: Good game! I'm sorry for the long delay, but I've just been busy with life!\n\nHomeworlds Online (SDG# 33367)\nVariants: "Hard time"\nStarted: 2017.12.8, Ended: 2017.12.19\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) wil: H Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: T G1 R1 Wil\n\n7) Trydnt: Build G1 Trydnt\n\n8) wil: Build R1 Wil\n\n9) Trydnt: Trade G1 Y1 Trydnt\n\n10) wil: Discover R1 Wil Y2 Y2\n\n11) Trydnt: Build B1 Trydnt\n\n12) wil: Build R2 Wil\n\n13) Trydnt: Discover B1 Trydnt R3 R3\n\twil: As long as I counted correctly\n\n14) wil: Discover R2 Wil B2 B2\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild B2 R3\nBuild B3 Trydnt\nBuild Y1 Trydnt\n\n16) wil: S G3 Wil\nB R2 B2\nB R2 Y2\nB R3 Wil\n\twil: Lol, I wasn't thinking, I gave you that!\n\n17) Trydnt: Trade B3 G3 Trydnt\n\n18) wil: T R3 G3 Wil\n\n19) Trydnt: Sacrifice G3 Trydnt\nBuild B3 Trydnt\nBuild B3 R3\nBuild Y1 Trydnt\n\n20) wil: Sacrifice G3 Wil\nBuild R3 Wil\nBuild R3 Y2\nPass\n\n21) Trydnt: Move Y1 Trydnt R3\n\twil: I don't think this is gonna work...but I am committed to seeing how it plays out.\r\n\n\n22) wil: Discover R3 Y2 B3 B3\n\n23) Trydnt: Trade Y1 G1 Trydnt\n\n24) wil: Pass\n\n25) Trydnt: Build G1 Trydnt\n\twil: omg, this is ludicrous but I got it! I think!\n\twil: no, that doesn't work\n\n26) wil: D R1 Y2 Y3 Y3\n\n27) Trydnt: Move G1 Trydnt R3\n\n28) wil: Trade R2 Y2 B2\n\n29) Trydnt: Build Y1 R3\n\n30) wil: T R1 G1 Wil\n\n31) Trydnt: Discover B2 R3 R2 R2\n\n32) wil: B R1 Wil\n\n33) Trydnt: Move Y1 R3 R2\n\n34) wil: Build G2 Wil\n\n35) Trydnt: Trade B3 G3 Trydnt\n\n36) wil: Trade R3 B3 B3\n\n37) Trydnt: Trade G3 R3 Trydnt\n\n38) wil: Move R1 Y3 Trydnt\n\n39) Trydnt: Discover R3 Trydnt Y3 Y3\n\n40) wil: Sacrifice R3 Wil\nAttack G1 Trydnt\nAttack B1 Trydnt\nAttack Y1 Trydnt\n\n\twil: the red worked out...hmmmm\n\nHomeworlds Online (SDG# 33517)\nVariants: "Unrated"\nStarted: 2017.12.10, Ended: 2018.2.23\nParticipants: Trydnt (S), dragon76n (N)\nWinner: Trydnt\n\n1) dragon76n: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) dragon76n: Build G1 Dragon76n\n\tdragon76n: Hello, good luck and have fun. :)\n\n4) Trydnt: Build G1 Trydnt\n\tTrydnt: likewise my draconic friend\n\n5) dragon76n: T G1 Y1 Dragon76n\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) dragon76n: Build Y2 Dragon76n\n\n8) Trydnt: Build Y2 Trydnt\n\n9) dragon76n: Discover Y2 Dragon76n G3 Grethr\n\n10) Trydnt: Discover Y2 Trydnt G1 G1\n\n11) dragon76n: Build Y3 Grethr\n\n12) Trydnt: Build Y3 G1\n\n13) dragon76n: T Y1 R1 Dragon76n\n\n14) Trydnt: Trade Y1 R1 Trydnt\n\n15) dragon76n: Build G1 Dragon76n\n\n16) Trydnt: Discover Y2 G1 B3 B3\n\n17) dragon76n: T G1 B1 Dragon76n\n\n18) Trydnt: Build G1 Trydnt\n\n19) dragon76n: B B1 Dragon76n\n\n20) Trydnt: Trade G1 B1 Trydnt\n\n21) dragon76n: M B1 Dragon76n Grethr\n\n22) Trydnt: Move B1 Trydnt G1\n\n23) dragon76n: Build B2 Grethr\n\n24) Trydnt: Build B2 G1\n\n25) dragon76n: Trade B1 R1 Grethr\n\n26) Trydnt: Trade B2 R2 G1\n\n27) dragon76n: Build R2 Dragon76n\n\n28) Trydnt: Build Y1 G1\n\n29) dragon76n: D R2 Dragon76n Y3 Yelthr\n\n30) Trydnt: Build G1 Trydnt\n\n31) dragon76n: Build G1 Dragon76n\n\n32) Trydnt: Move G1 Trydnt G1\n\n33) dragon76n: M G1 Dragon76n Yelthr\n\n34) Trydnt: Build G2 Trydnt\n\n35) dragon76n: B G2 Dragon76n\n\n36) Trydnt: Move G1 G1 B3\n\n37) dragon76n: S G3 Dragon76n\nB G2 Yelthr\nB G3 Dragon76n\nB B1 Grethr\n\n38) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 B3\nBuild B2 G1\n\n39) dragon76n: Sacrifice G3 Dragon76n\nBuild G3 Dragon76n\nBuild R2 Dragon76n\nBuild R3 Yelthr\n\n40) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 Trydnt\nBuild R3 G1\n\n41) dragon76n: Sacrifice Y2 Grethr\nMove R2 Yelthr G1\nMove R1 Grethr G1\nCatastrophe G1 Red\n\n42) Trydnt: Build Y2 B3\n\n43) dragon76n: Sacrifice Y3 Grethr\nMove B2 Grethr G1\nDiscover R3 Yelthr R1 Redone\nMove R3 Redone B3\n\n44) Trydnt: Build Y3 G1\n\n45) dragon76n: Sacrifice R2 Dragon76n\nAttack Y2 B3\nAttack Y2 B3\n\n46) Trydnt: Move Y1 G1 B3\nCatastrophe B3 Y\n\n47) dragon76n: S G3 Dragon76n\nB G3 Dragon76n\nB R1 B3\nB B3 Grethr\n\n48) Trydnt: Sacrifice R1 Trydnt\nAttack B2 G1\n\n49) dragon76n: S B3 Grethr\nT R1 Y1 B3\nT G1 R1 Yelthr\nT G2 Y2 Dragon76n\n\n50) Trydnt: Trade B2 R2 G1\n\n51) dragon76n: Attack G1 B3\n\n52) Trydnt: Move Y3 G1 Grethr\n\n53) dragon76n: Trade B1 Y1 Grethr\n\n54) Trydnt: Build Y2 G1\n\n55) dragon76n: Move Y2 Dragon76n Yelthr\n\n56) Trydnt: Sacrifice R2 G1\nAttack Y1 Grethr\nPass\n\n57) dragon76n: Move G1 B3 G1\n\n58) Trydnt: Sacrifice Y2 G1\nDiscover G2 Trydnt G1 Gee1\nDiscover B1 G1 G2 G2\n\n59) dragon76n: Sacrifice G1 G1\nBuild Y2 B3\n\n60) Trydnt: Build G1 Trydnt\n\n61) dragon76n: Move R3 B3 Gee1\n\n62) Trydnt: Build R1 Trydnt\n\n63) dragon76n: Attack G2 Gee1\n\n64) Trydnt: Move R1 Trydnt G1\n\n65) dragon76n: Move G2 Yelthr Dragon76n\n\n66) Trydnt: Build R2 G1\n\n67) dragon76n: Build R2 Gee1\n\n68) Trydnt: Move R1 G1 Grethr\n\n69) dragon76n: S G3 Dragon76n\nB G3 Dragon76n\nB R2 Dragon76n\nB R3 Yelthr\n\n70) Trydnt: Move B2 G1 Grethr\n\n71) dragon76n: Move B1 Dragon76n Yelthr\n\n72) Trydnt: Build B1 Grethr\n\n73) dragon76n: Sacrifice G3 Dragon76n\nBuild G3 Dragon76n\nBuild B2 Yelthr\nBuild B3 Yelthr\n\n74) Trydnt: Sacrifice Y1 Grethr\nMove B1 G2 Yelthr\nCatastrophe Yelthr B\n\n75) dragon76n: Sacrifice G3 Dragon76n\nBuild G2 Gee1\nBuild G3 Dragon76n\nBuild Y1 B3\n\n76) Trydnt: Move G1 Trydnt Gee1\nCatastrophe Gee1 G\n\n77) dragon76n: Trade Y1 B1 B3\n\n78) Trydnt: Build Y1 Grethr\n\n79) dragon76n: Discover B1 B3 G1 Greone\n\n80) Trydnt: Move R3 Trydnt Greone\n\n81) dragon76n: Trade B1 G1 Greone\n\n82) Trydnt: Attack G1 Greone\n\n83) dragon76n: Trade Y2 G2 B3\n\n84) Trydnt: Build Y2 G1\n\n85) dragon76n: Move Y2 Yelthr G1\n\n86) Trydnt: Discover Y2 G1 R2 R2\n\n87) dragon76n: Move R3 Yelthr R2\n\n88) Trydnt: Sacrifice Y2 R2\nMove R3 Greone B3\nMove G1 Greone Yelthr\n\n89) dragon76n: Sacrifice R2 Dragon76n\nAttack G1 Yelthr\nAttack R2 G1\n\n90) Trydnt: Attack G2 B3\n\n91) dragon76n: Move Y1 B3 R2\n\n92) Trydnt: Sacrifice G2 B3\nBuild R2 B3\nBuild R3 Grethr\n\n93) dragon76n: Discover R2 G1 B2 Blutwo\n\n94) Trydnt: Sacrifice R1 Grethr\nAttack Y2 G1\n\n95) dragon76n: S G2 Dragon76n\nB Y2 R2\nB G1 Dragon76n\n\n96) Trydnt: Sacrifice Y2 G1\nMove R2 B3 R2\nMove R3 B3 R2\nCatastrophe R2 R\n\n97) dragon76n: Build G2 Yelthr\n\n98) Trydnt: Build Y1 Grethr\n\n99) dragon76n: Trade R2 G2 Blutwo\n\n100) Trydnt: Move R3 Grethr Blutwo\n\n101) dragon76n: Sacrifice G2 Blutwo\nBuild G2 Dragon76n\nBuild G2 Yelthr\n\n102) Trydnt: Build Y2 G1\n\n103) dragon76n: T G1 B1 Dragon76n\n\n104) Trydnt: Sacrifice Y3 G1\nMove B1 Grethr Dragon76n\nMove Y1 Grethr Dragon76n\nMove Y3 Grethr Dragon76n\n\n105) dragon76n: Attack Y3 Dragon76n\n\n106) Trydnt: Sacrifice Y2 G1\nMove B2 Grethr Dragon76n\nMove Y1 Grethr Dragon76n\nCatastrophe Dragon76n B\nCatastrophe Dragon76n Y\n\n\nHomeworlds Online (SDG# 33544)\nVariants: "Hard time"\nStarted: 2017.12.11, Ended: 2018.1.5\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\twil: And he has made it thru the gauntlet to the top of the ladder!\n\twil: have fun!\n\tDraw5PlayAll: Huh?\n\n2) wil: Homeworld Y1 B1 G3 *\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\twil: great time to try something different!\n\n4) wil: Build G1 Wil\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) wil: Trade G1 B1 Wil\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) wil: Build B1 Wil\n\n9) Draw5PlayAll: Build Y2 Draw5playall\n\n10) wil: Discover B1 Wil Y3 Y3\n\n11) Draw5PlayAll: Discover Y1 Draw5playall G1 G1\n\n12) wil: S G3 Wil\nB B2 Y3\nB B2 Y3\nB B3 Wil\n\n13) Draw5PlayAll: Discover Y1 Draw5playall G3 G3\n\n14) wil: Discover B2 Y3 G1 Gwon\n\n15) Draw5PlayAll: Build Y2 G1\n\n16) wil: S B2 Y3\nT B2 Y2 Gwon\nT B3 G3 Wil\n\n17) Draw5PlayAll: Build G1 Draw5playall\n\n18) wil: Build Y3 Gwon\n\n19) Draw5PlayAll: Build Y3 Draw5playall\n\n20) wil: D Y2 Gwon B3 B3\n\n21) Draw5PlayAll: Discover Y2 Draw5playall B3 B3'\n\n22) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n23) Draw5PlayAll: Build G2 Draw5playall\n\n24) wil: Sacrifice B2 Y3\nTrade B2 R2 Y3\nTrade B3 G3 Wil\n\n25) Draw5PlayAll: Move G2 Draw5playall B3'\n\n26) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n27) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 B3'\nBuild G2 B3'\nBuild G3 Draw5playall\n\n28) wil: M B2 Y3 Gwon\n\n29) Draw5PlayAll: Sacrifice G2 B3'\nBuild G2 Draw5playall\nBuild G3 B3'\n\tDraw5PlayAll: My turn to grab all the 2-pointers.\n\n30) wil: M B2 Y3 G1\n\n31) Draw5PlayAll: Sacrifice Y1 G1\nDiscover Y2 G1 R3 R3\n\n32) wil: M B2 Gwon B3'\n\n33) Draw5PlayAll: Sacrifice Y2 B3'\nDiscover G3 B3' R1 Ntvwbp\nMove G2 B3' Ntvwbp\n\n34) wil: M Y3 Gwon R3\n\n35) Draw5PlayAll: Move Y2 R3 Ntvwbp\n\n36) wil: T B1 G1 Y3\n\n37) Draw5PlayAll: Trade G2 R2 Draw5playall\n\tDraw5PlayAll: Stands for "No Tresspassing Violators Will Be Prosecuted". Undo because I wanted to go to an R2 but decided not to.\n\n38) wil: Build G2 Y3\n\n39) Draw5PlayAll: Move R2 Draw5playall G3\n\n40) wil: Sacrifice G2 Y3\nBuild Y1 B3\nBuild Y2 R3\n\n41) Draw5PlayAll: Build R1 G3\n\n42) wil: B G2 Y3\n\n43) Draw5PlayAll: Sacrifice R1 G3\nAttack B2 B3'\n\n44) wil: Sacrifice B1 Wil\nTrade G1 B1 Y3\n\n45) Draw5PlayAll: Sacrifice Y1 G3\nMove B2 B3' Ntvwbp\n\n46) wil: B B1 G1\n\n47) Draw5PlayAll: Sacrifice G2 B3'\nBuild Y1 Ntvwbp\nBuild B3 Ntvwbp\n\n48) wil: Build R1 Y3\n\twil: all of these games are archived...need to build a program to extract them and put moves on data sheet to be compared and analyzed...various openers results...players rating...frequency of various ending attacks, etc.\n\twil: I like that you play different openings, all learning to me....need to play more of them.\n\tDraw5PlayAll: Well, you do like to learn about people [through] the way they play.\r\n\r\nI do not use blue teleportation very often... nor the blue sac in general... at May because I have a hard time getting that many blue ships (there are usually 3-5 in star systems anyway in late game).\n\n49) Draw5PlayAll: Sacrifice Y2 Ntvwbp\nMove B3 Ntvwbp G3\nMove B3 G3 Wil\n\n50) wil: Sacrifice Y2 R3\nMove Y3 R3 Wil\nMove B1 Y3 Wil\nCatastrophe Wil B\n\n51) Draw5PlayAll: Sacrifice G2 Ntvwbp\n\nBuild Y2 Ntvwbp\nBuild Y2 Draw5playall\n\n52) wil: S B1 G1\nT Y3 B3 Wil\n\n53) Draw5PlayAll: Move Y1 Ntvwbp G3\n\n54) wil: Build G1 Y3\n\twil: nice move...was contemplating do I change to R3 or continue with my plan...you proved what I should have been doing!\n\n55) Draw5PlayAll: Discover G1 Draw5playall B1 Donteventry\n\n56) wil: M G1 Y3 Wil\n\n57) Draw5PlayAll: Build Y3 G3\n\n58) wil: B G2 Wil\n\twil: I do believe you have this game...\n\tDraw5PlayAll: "have" as in "North can force a win from this position"?\n\n59) Draw5PlayAll: Discover Y2 Ntvwbp G2 G2\n\n60) wil: M R1 Y3 Wil\n\twil: Just goin thru the motions over here waiting for the shoe to drop!\n\n61) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove Y3 G3 Wil\nMove Y1 G3 Wil\nMove Y2 G2 Wil\nCatastrophe Wil Yellow\n\twil: You toying with me?\n\n\tDraw5PlayAll: Yeah, but my faster plan may have fallen into a bluebird trap, so I adjusted.\r\n\r\nGood game.\n\twil: All you had to do was move one yellow in... and then the next move follow up with the other two... gg\n\tDraw5PlayAll: Oh, our home systems were connected. Completely missed that.\n\nHomeworlds Online (SDG# 33552)\nStarted: 2017.12.11, Ended: 2017.12.12\nParticipants: inattentive (S), Schmoopy (N)\nWinner: Schmoopy\n\n1) Schmoopy: Homeworld R3 B1 G3\n\n2) inattentive: Homeworld Y2 B3 G3\n\tinattentive: homeworld y2, b1, g3\n\n3) Schmoopy: Build G1 Schmoopy\n\n4) inattentive: Build G1 Inattentive\n\n5) Schmoopy: Trade G1 B1 Schmoopy\n\n6) inattentive: Trade G1 R1 Inattentive\n\n7) Schmoopy: Build B1 Schmoopy\n\n8) inattentive: Build G1 Inattentive\n\n9) Schmoopy: Build G1 Schmoopy\n\n10) inattentive: Trade G1 Y1 Inattentive\n\n11) Schmoopy: Trade G1 Y1 Schmoopy\n\n12) inattentive: Build R1 Inattentive\n\n13) Schmoopy: Discover B1 Schmoopy R2 Stelaris\n\n14) inattentive: Build G1 Inattentive\n\n15) Schmoopy: Build G1 Schmoopy\n\n16) inattentive: Discover G3 Inattentive R1 Poo\n\n17) Schmoopy: Move G3 Schmoopy Stelaris\n\n18) inattentive: Build R2 Inattentive\n\n19) Schmoopy: Build B2 Stelaris\n\n20) inattentive: Trade R2 B2 Inattentive\n\n21) Schmoopy: Trade B2 R2 Stelaris\n\n22) inattentive: Build R2 Inattentive\n\n23) Schmoopy: Build R3 Stelaris\n\n24) inattentive: Move R1 Inattentive Poo\n\n25) Schmoopy: Sacrifice Y1 Schmoopy\nDiscover R3 Stelaris Y1 Pee\n\n26) inattentive: Sacrifice Y1 Inattentive\nMove G3 Poo Inattentive\n\n27) Schmoopy: Trade B1 Y1 Schmoopy\n\tinattentive: move g3 poo inattentive\n\n28) inattentive: Trade R2 Y2 Inattentive\n\n29) Schmoopy: Build Y1 Schmoopy\n\n30) inattentive: Build R2 Inattentive\n\n31) Schmoopy: Move Y1 Schmoopy Stelaris\n\n32) inattentive: Move R1 Inattentive Poo\n\n33) Schmoopy: Move R2 Stelaris Pee\n\n34) inattentive: Build R3 Inattentive\n\n35) Schmoopy: Build Y2 Schmoopy\n\n36) inattentive: Move R2 Inattentive Pee\n\n37) Schmoopy: Build Y3 Schmoopy\n\n38) inattentive: Sacrifice Y2 Inattentive\nMove R1 Poo Stelaris\nMove R1 Stelaris Pee\nCatastrophe Pee R\n\n39) Schmoopy: Discover Y2 Schmoopy G2 Neat\n\n40) inattentive: Trade G1 Y1 Inattentive\n\n41) Schmoopy: Sacrifice G3 Stelaris\nBuild Y2 Stelaris\nBuild Y3 Neat\nBuild Y3 Stelaris\n\n42) inattentive: Move Y1 Inattentive Poo\n\tinattentive: You stoop\n\n43) Schmoopy: Move Y3 Stelaris Poo\n\n44) inattentive: Discover Y1 Poo G2 Comegetmejerry\n\n45) Schmoopy: Attack R1 Poo\n\n46) inattentive: Build R1 Inattentive\n\n47) Schmoopy: Build G1 Schmoopy\n\n48) inattentive: Move R1 Inattentive Poo\n\n49) Schmoopy: Move R1 Poo Neat\n\n50) inattentive: Build R2 Inattentive\n\n51) Schmoopy: Attack R1 Poo\n\n52) inattentive: Discover Y1 Comegetmejerry G1 Suckitbitch\n\n53) Schmoopy: Build G2 Schmoopy\n\n54) inattentive: Move R3 Inattentive Suckitbitch\n\n55) Schmoopy: Move Y2 Stelaris Poo\n\n56) inattentive: Build G2 Inattentive\n\n57) Schmoopy: Move G1 Schmoopy Neat\n\n58) inattentive: Move R3 Suckitbitch Stelaris\n\n59) Schmoopy: Move B1 Stelaris Schmoopy\n\n60) inattentive: Attack Y1 Stelaris\n\n61) Schmoopy: Build G3 Schmoopy\n\n62) inattentive: Build G3 Inattentive\n\n63) Schmoopy: Sacrifice Y2 Neat\nMove G1 Neat Poo\nMove G1 Poo Inattentive\nCatastrophe Inattentive Green\n\n64) inattentive: Build Y2 Suckitbitch\n\n65) Schmoopy: Move Y3 Poo Inattentive\n\n66) inattentive: Trade R2 G2 Inattentive\n\n67) Schmoopy: Trade G3 R3 Schmoopy\n\n\nHomeworlds Online (SDG# 33492)\nVariants: "Unrated"\nStarted: 2017.12.13, Ended: 2018.1.2\nParticipants: wil (S), Ottia (N)\nWinner: wil\n\n1) Ottia: Homeworld G3 B2 Y3\n\n2) wil: H Y2 B1 G3\n\n3) Ottia: Build Y1 Ottia\n\n4) wil: B G1 Wil\n\n5) Ottia: Build Y1 Ottia\n\n6) wil: B G1 Wil\n\tOttia: Merry Christmas, wil!\n\n7) Ottia: Trade Y1 G1 Ottia\n\twil: Same to you! I am down at my mothers awaiting my kids and nieces to arrive...everybody grown and no little ones running around.\n\n8) wil: T G1 B1 Wil\n\n9) Ottia: Build G1 Ottia\n\n10) wil: B B1 Wil\n\n\tOttia: I'm really sorry for resigning like this but at the moment I don't have the time to concentrate and play properly. I will very happily challenge you again when I have.\r\n\r\nI hope otherwise you have enjoyed Christmas and started the year in style!\n\twil: no worries...whenever you have time is fine..\n\nHomeworlds Online (SDG# 33558)\nStarted: 2017.12.13, Ended: 2017.12.13\nParticipants: Schmoopy (S), inattentive (N)\nWinner: Schmoopy\n\n1) inattentive: Homeworld G3 B2 Y3\n\n2) Schmoopy: Homeworld G2 B1 R3\n\tinattentive: You cant do y3 loser, cause i did\r\n\n\n3) inattentive: Build Y1 Inattentive\n\tinattentive: build y1 inattentive\n\n4) Schmoopy: Build R1 Schmoopy\n\n5) inattentive: Trade Y1 R1 Inattentive\n\n6) Schmoopy: Trade R1 Y1 Schmoopy\n\n7) inattentive: Build Y1 Inattentive\n\n8) Schmoopy: Build R1 Schmoopy\n\n9) inattentive: Trade Y1 B1 Inattentive\n\n10) Schmoopy: Build Y1 Schmoopy\n\n11) inattentive: Discover B1 Inattentive G1 Potatoe\n\tSchmoopy: This game is weird. Usually we both have a bunch of green ships in the beginning\n\n12) Schmoopy: Trade Y1 G1 Schmoopy\n\n13) inattentive: Build Y1 Inattentive\n\n14) Schmoopy: Discover G1 Schmoopy B3 Shabby\n\n15) inattentive: Move Y1 Inattentive Potatoe\n\n16) Schmoopy: Move R1 Schmoopy Shabby\n\n17) inattentive: Move R1 Inattentive Potatoe\n\n18) Schmoopy: Move R3 Schmoopy Shabby\n\n19) inattentive: Build Y1 Inattentive\n\n20) Schmoopy: Build Y2 Schmoopy\n\n21) inattentive: Build Y2 Potatoe\n\n22) Schmoopy: Move Y1 Schmoopy Shabby\n\n23) inattentive: Trade Y1 R1 Potatoe\n\n24) Schmoopy: Move R3 Shabby Potatoe\n\n25) inattentive: Trade Y2 R2 Potatoe\nCatastrophe Potatoe R\n\n26) Schmoopy: Build Y1 Shabby\n\n27) inattentive: Move Y1 Inattentive Potatoe\n\n28) Schmoopy: Build Y2 Schmoopy\n\n29) inattentive: Build B1 Potatoe\n\n30) Schmoopy: Build G1 Shabby\n\n31) inattentive: Build B2 Potatoe\n\n32) Schmoopy: Build G2 Shabby\n\n33) inattentive: Trade B2 R2 Potatoe\n\n34) Schmoopy: Discover G1 Shabby R1 Haribo\n\n35) inattentive: Build B2 Potatoe\n\n36) Schmoopy: Build G2 Haribo\n\n37) inattentive: Trade Y3 G3 Inattentive\n\n38) Schmoopy: Build G3 Haribo\n\n39) inattentive: Move R2 Potatoe Inattentive\n\n40) Schmoopy: Sacrifice Y2 Schmoopy\nMove G2 Haribo Inattentive\nMove G1 Haribo Inattentive\nCatastrophe Inattentive Green\n\n41) inattentive: Trade B2 G2 Potatoe\n\n42) Schmoopy: Sacrifice G2 Shabby\nBuild R1 Shabby\nBuild R2 Shabby\n\n43) inattentive: Move G2 Potatoe Inattentive\n\n44) Schmoopy: Sacrifice Y1 Shabby\nMove G3 Haribo Inattentive\n\n45) inattentive: Sacrifice Y1 Potatoe\nMove R2 Inattentive Shabby\nCatastrophe Shabby R\n\n46) Schmoopy: Trade G1 R1 Shabby\n\n47) inattentive: Build G1 Inattentive\n\n48) Schmoopy: Move R1 Shabby Inattentive\n\n49) inattentive: Trade B1 Y1 Potatoe\n\n50) Schmoopy: Attack G2 Inattentive\n\n51) inattentive: Move Y1 Potatoe Inattentive\n\n52) Schmoopy: Attack G1 Inattentive\n\n53) inattentive: Trade Y1 G1 Inattentive\n\n54) Schmoopy: Attack G1 Inattentive\n\n\tDraw5PlayAll: catastrophe inattentive green\n\nHomeworlds Online (SDG# 33549)\nVariants: "Unrated"\nStarted: 2017.12.13, Ended: 2017.12.21\nParticipants: smokeytroll42 (S), Schmoopy (N)\nWinner: Schmoopy\n\n1) Schmoopy: Homeworld R3 B2 G3\n\tSchmoopy: Hey, I'm a newer player, too. I've played about 4 games with a coworker after we taught ourselves how to play\n\n2) smokeytroll42: Homeworld G1 B2 Y3\n\tsmokeytroll42: Hello! Sounds good. I have three or four games under my belt as well.\n\n3) Schmoopy: Build G1 Schmoopy\n\n4) smokeytroll42: Build Y1 Smokeytroll42\n\tSchmoopy: Awesome. I’m loving this game. Where’d you hear about it?\n\tsmokeytroll42: Oh, probably the Pyramid Acrade promo videos. Very neat theme and mechanics. I love that there’s no gameboard.\n\n5) Schmoopy: Build G1 Schmoopy\n\n6) smokeytroll42: Build Y1 Smokeytroll42\n\n7) Schmoopy: Trade G3 Y3 Schmoopy\n\n8) smokeytroll42: Trade Y3 G3 Smokeytroll42\n\n9) Schmoopy: Discover G1 Schmoopy B1 Patrick\n\n10) smokeytroll42: Build G2 Smokeytroll42\n\n11) Schmoopy: Sacrifice Y3 Schmoopy\nDiscover G1 Patrick R3 Fingerscrossed\nMove G1 Fingerscrossed Smokeytroll42\nPass\nCatastrophe Smokeytroll42 Green\n\n12) smokeytroll42: Trade Y1 G1 Smokeytroll42\n\tsmokeytroll42: Ouch, I didnt even know that move was possible. But I guess I shouldn’t have assumed that you can’t discover planets with a sacrifice.\n\tsmokeytroll42: Good move\n\n13) Schmoopy: Build G1 Schmoopy\n\n14) smokeytroll42: Build G2 Smokeytroll42\n\tSchmoopy: Thanks man. Yeah sacrifice doesn’t have any special rules I don’t think. It just gives you a number of turns using the ship’s power\n\n15) Schmoopy: Trade G1 Y1 Schmoopy\n\n16) smokeytroll42: Discover G2 Smokeytroll42 B1 Dune\n\n17) Schmoopy: Build Y1 Schmoopy\n\n18) smokeytroll42: Build Y2 Smokeytroll42\n\n19) Schmoopy: Discover Y1 Schmoopy R1 Zaphod\n\n20) smokeytroll42: Trade G2 R2 Dune\n\n21) Schmoopy: Build Y2 Schmoopy\n\n22) smokeytroll42: Build G1 Smokeytroll42\n\n23) Schmoopy: Trade Y1 B1 Schmoopy\n\n24) smokeytroll42: Move G1 Smokeytroll42 Dune\n\n25) Schmoopy: Build G2 Schmoopy\n\n26) smokeytroll42: Build G2 Smokeytroll42\n\n27) Schmoopy: Build B1 Schmoopy\n\n28) smokeytroll42: Trade R2 B2 Dune\n\n29) Schmoopy: Move B1 Schmoopy Zaphod\n\n30) smokeytroll42: Sacrifice Y1 Smokeytroll42\nDiscover B2 Dune G3 Coral\n\n31) Schmoopy: Move G1 Schmoopy Zaphod\n\n32) smokeytroll42: Build B3 Coral\n\n33) Schmoopy: Build B3 Zaphod\n\n34) smokeytroll42: Build Y1 Smokeytroll42\n\n35) Schmoopy: Trade B1 R1 Schmoopy\n\n36) smokeytroll42: Trade B3 R3 Coral\n\n37) Schmoopy: Move B3 Zaphod Smokeytroll42\n\n38) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove R3 Coral Dune\nMove R3 Dune Schmoopy\n\n39) Schmoopy: Sacrifice G2 Schmoopy\nBuild B1 Smokeytroll42\nBuild B3 Smokeytroll42\nCatastrophe Smokeytroll42 Blue\n\tSchmoopy: gg!\n\tsmokeytroll42: Gg, I didn’t see that catastrophe coming. Well played. Rematch?\n\tSchmoopy: Let’s do it!\n\n\nHomeworlds Online (SDG# 33542)\nVariants: "Unrated"\nStarted: 2017.12.14, Ended: 2018.1.12\nParticipants: Trydnt (S), Draw5PlayAll (N)\nWinner: Trydnt\n\n1) Draw5PlayAll: Pass\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\n4) Trydnt: Build G1 Trydnt\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n8) Trydnt: Build R2 Trydnt\n\n9) Draw5PlayAll: Build R2 Draw5playall\n\n10) Trydnt: Build R2 Trydnt\n\n11) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n12) Trydnt: Trade R2 Y2 Trydnt\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) Trydnt: Build R2 Trydnt\n\n15) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n16) Trydnt: Discover R2 Trydnt Y3 Y3\n\n17) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n18) Trydnt: Move R2 Y3 G2\n\n19) Draw5PlayAll: Build B1 Draw5playall\n\n20) Trydnt: Trade R1 B1 Trydnt\n\n21) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n22) Trydnt: Attack R1 G2\n\n23) Draw5PlayAll: Discover R2 Draw5playall G2 G2b\n\n24) Trydnt: Discover Y2 Trydnt G3 G3\n\n25) Draw5PlayAll: Move B1 Draw5playall G2\n\n26) Trydnt: Attack B1 G2\n\n27) Draw5PlayAll: Build G1 Draw5playall\n\n28) Trydnt: Build Y1 G3\n\n29) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n30) Trydnt: Build B2 G2\n\n31) Draw5PlayAll: Move B1 Draw5playall G2b\n\n32) Trydnt: Move Y1 G3 G2\n\n33) Draw5PlayAll: Build G1 Draw5playall\n\n34) Trydnt: Move B1 G2 G3\n\n35) Draw5PlayAll: Build Y1 Draw5playall\n\n36) Trydnt: Build Y2 G2\n\n37) Draw5PlayAll: Move Y1 Draw5playall G2b\n\n38) Trydnt: Discover R2 G2 Y3 Y3\n\n39) Draw5PlayAll: Build Y3 G2b\n\n40) Trydnt: Build Y3 G3\n\n41) Draw5PlayAll: Move G1 Draw5playall G2b\n\n42) Trydnt: Build G1 Trydnt\n\n43) Draw5PlayAll: Discover G1 G2b R3 R3\n\n44) Trydnt: Move R2 Trydnt R3\n\n45) Draw5PlayAll: Sacrifice G1 R3\nBuild G1 Draw5playall\n\n46) Trydnt: Build B2 G2\n\n47) Draw5PlayAll: Build B3 G2b\n\n48) Trydnt: Build B3 G3\n\n49) Draw5PlayAll: Move G1 Draw5playall G2\n\n50) Trydnt: Attack G1 G2\n\n51) Draw5PlayAll: Build G1 Draw5playall\n\n52) Trydnt: Sacrifice Y3 G3\nMove G1 G2 Draw5playall\nMove B2 G2 Draw5playall\nMove B2 G2 Draw5playall\n\n53) Draw5PlayAll: Attack G1 Draw5playall\n\n54) Trydnt: Sacrifice Y2 G2\nMove B1 G3 G2\nMove B1 G2 Draw5playall\nCatastrophe Draw5playall B\n\n55) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover G1 Draw5playall Y3 Base\nMove B3 G2b R3\n\n56) Trydnt: Sacrifice Y2 G3\nMove R2 R3 Draw5playall\nMove R1 G2 Draw5playall\n\n57) Draw5PlayAll: Sacrifice Y3 G2b\nMove G1 Draw5playall Base\nMove G1 Base Trydnt\nMove G1 Base Trydnt\nCatastrophe Trydnt Green\n\n58) Trydnt: Move R2 Y3 Draw5playall\nCatastrophe Draw5playall R\n\n\nHomeworlds Online (SDG# 33470)\nVariants: "Hard time"\nStarted: 2017.12.14, Ended: 2017.12.26\nParticipants: Schmoopy (S), Felix (N)\nWinner: Schmoopy\n\n1) Felix: Homeworld R2 B3 G3\n\tSchmoopy: Hey! I got my pyramids about a month ago, I've played maybe 5 games of homeworlds and love it.\n\n2) Schmoopy: Homeworld G2 B1 Y3\n\tFelix: Hello! Glad you picked up the game and are loving it. I hope you have fun! \n\n3) Felix: Build G1 Felix\n\n4) Schmoopy: Build Y1 Schmoopy\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Schmoopy: Trade Y1 B1 Schmoopy\n\n7) Felix: Build Y1 Felix\n\n8) Schmoopy: Build B1 Schmoopy\n\n9) Felix: Discover Y1 Felix G1 Out\n\n10) Schmoopy: Discover B1 Schmoopy Y3 About\n\n\nHomeworlds Online (SDG# 33479)\nVariants: "Hard time"\nStarted: 2017.12.20, Ended: 2017.12.28\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: Homeworld B3 G2 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build Y1 Wil\n\twil: lol...tried to give away the start eh?\n\tTrydnt: thought about it but realized it was a cop-out so I took it back\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) wil: Build Y2 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: T Y2 G2 Wil\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) wil: D Y1 Wil G1 Y3\n\n11) Trydnt: Build Y2 G3\n\n12) wil: S G2 Wil\nB Y2 Y3\nB Y3 Wil\n\n13) Trydnt: Discover Y1 G3 G1 G1\n\n14) wil: D Y1 Y3 Y3 B1\n\twil: Idk if that was the best move... Almost went the other way\n\n15) Trydnt: Build G1 Trydnt\n\tTrydnt: nice move with the star name\n\twil: Lol I do that when someone uses my vernacular\n\twil: Down with family for the holydays\n\n16) wil: Discover Y2 Y3 B3 G2\n\tTrydnt: haha I started using your venacular for that exact reason, so I could at some point turn it around on you. but I check the star every time just to be safe\n\n17) Trydnt: Discover Y2 G3 G1 Gee1\n\n18) wil: M Y3 Wil Gee1\n\n19) Trydnt: Trade G1 R1 Trydnt\n\n20) wil: T Y2 G2 G2\n\n21) Trydnt: Build Y2 G1\n\twil: Whew, don't move that coin!\n\n22) wil: B G1 G2\n\n23) Trydnt: Move Y1 G1 Wil\n\n24) wil: T Y3 R3 Wil\n\n25) Trydnt: Build Y3 G1\n\n26) wil: A Y1 Wil\n\n27) Trydnt: Move R1 Trydnt B1\n\twil: Merry Christmas\n\tTrydnt: haha nice big red tree there\r\nmerry christmas!\n\n28) wil: M Y1 B1 G1\n\n29) Trydnt: Move Y3 G1 G2\n\n30) wil: B R1 Wil\n\n31) Trydnt: Sacrifice R1 B1\nAttack G2 G2\n\n32) wil: B Y3 G1\n\n33) Trydnt: Trade G2 R2 G2\n\n34) wil: M R1 Wil G1\n\n35) Trydnt: Sacrifice R2 G2\nAttack R1 G1\nAttack Y1 G1\n\twil: How are the slopes?\n\tTrydnt: shit\n\tTrydnt: there isn't nearly enough snow\r\n\n\n36) wil: Build R1 Wil\n\n37) Trydnt: Sacrifice Y2 G1\nMove R1 G1 Wil\nMove Y1 G1 Wil\n\n38) wil: Attack R1 Wil\n\twil: friends hit kirkwood and squaw and said lots of trails open, and either groomed or packed powder last weekend.\n\n39) Trydnt: Trade Y1 R1 Wil\nCatastrophe Wil R\n\tTrydnt: yeah we ski alpine meadows and our passes work at Squaw but it's hella crowded with tourists right now\n\n40) wil: Move Y3 G1 Wil\n\n41) Trydnt: Discover Y2 Trydnt G3 G3\n\twil: You do think of moves that I would have never considered.\n\n42) wil: Trade Y1 R1 Wil\n\n43) Trydnt: Build Y1 Gee1\n\n44) wil: Move Y3 Gee1 G2\n\n45) Trydnt: Discover Y3 G2 R1 R1\n\n46) wil: B G1 G2\n\n47) Trydnt: Build G2 Trydnt\n\n48) wil: Sacrifice Y3 G2\nMove G1 G2 Trydnt\nMove G1 G2 Trydnt\nPass\nCatastrophe Trydnt G\n\n\twil: I did not think you'd fall for that!\n\tTrydnt: wow\n\nHomeworlds Online (SDG# 33591)\nVariants: "Unrated"\nStarted: 2017.12.21, Ended: 2018.1.22\nParticipants: smokeytroll42 (S), Schmoopy (N)\nWinner: smokeytroll42\n\n1) Schmoopy: Homeworld B3 Y1 G3\n\n2) smokeytroll42: Homeworld B2 R1 G3\n\n3) Schmoopy: Build G1 Schmoopy\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\n5) Schmoopy: Trade G1 Y1 Schmoopy\n\n6) smokeytroll42: Trade G3 Y3 Smokeytroll42\n\n7) Schmoopy: Build G1 Schmoopy\n\n8) smokeytroll42: Build G1 Smokeytroll42\n\n9) Schmoopy: Build G2 Schmoopy\n\n10) smokeytroll42: Build G2 Smokeytroll42\n\n11) Schmoopy: Discover G2 Schmoopy B2 Ding\n\n12) smokeytroll42: Discover G1 Smokeytroll42 G3 Yaviniv\n\n13) Schmoopy: Move Y1 Schmoopy Ding\n\n14) smokeytroll42: Discover G1 Smokeytroll42 G3 Hoth\n\n15) Schmoopy: Build G2 Ding\n\n16) smokeytroll42: Build Y1 Smokeytroll42\n\n17) Schmoopy: Build Y2 Ding\n\n18) smokeytroll42: Move Y1 Smokeytroll42 Yaviniv\n\n19) Schmoopy: Discover Y2 Ding B3 Dong\n\n20) smokeytroll42: Build Y2 Smokeytroll42\n\n21) Schmoopy: Sacrifice G3 Schmoopy\nBuild G3 Schmoopy\nBuild Y2 Ding\nBuild Y3 Dong\n\n22) smokeytroll42: Build Y3 Yaviniv\n\n\tsmokeytroll42: Yo, you still want to play?\n\nHomeworlds Online (SDG# 33618)\nVariants: "Unrated"\nStarted: 2017.12.25, Ended: 2017.12.28\nParticipants: Schmoopy (S), Krom (N)\nWinner: Krom\n\n1) Krom: Homeworld R3 B1 G3\n\n2) Schmoopy: Homeworld B2 Y1 G3\n\n3) Krom: Build G1 Krom\n\n4) Schmoopy: Build G1 Schmoopy\n\n5) Krom: Trade G1 B1 Krom\n\n6) Schmoopy: Trade G1 Y1 Schmoopy\n\n7) Krom: Build G1 Krom\n\n8) Schmoopy: Build Y1 Schmoopy\n\n9) Krom: Build G1 Krom\n\n10) Schmoopy: Build G1 Schmoopy\n\n11) Krom: Build B1 Krom\n\n12) Schmoopy: Build G2 Schmoopy\n\n13) Krom: Trade B1 R1 Krom\n\n14) Schmoopy: Trade G1 B1 Schmoopy\n\n15) Krom: Build B2 Krom\n\n16) Schmoopy: Discover B1 Schmoopy G3 Meme\n\n17) Krom: Trade B2 Y2 Krom\n\n18) Schmoopy: Build B2 Meme\n\n19) Krom: Discover B1 Krom G2 Dingus\n\n20) Schmoopy: Trade B1 R1 Meme\n\n21) Krom: Build Y2 Krom\n\n22) Schmoopy: Move Y1 Schmoopy Meme\n\n23) Krom: Move Y2 Krom Dingus\n\n24) Schmoopy: Build R1 Meme\n\n25) Krom: Sacrifice G3 Krom\nBuild Y2 Krom\nBuild Y3 Krom\nBuild Y3 Dingus\n\n26) Schmoopy: Build Y3 Meme\n\n27) Krom: Move R1 Krom Dingus\n\n28) Schmoopy: Sacrifice Y3 Meme\nMove Y1 Meme Dingus\nMove Y1 Dingus Krom\nPass\nCatastrophe Krom Yellow\n\n29) Krom: Move Y2 Dingus Krom\n\n30) Schmoopy: Move Y1 Schmoopy Meme\n\n31) Krom: Build R2 Dingus\n\n32) Schmoopy: Move R1 Meme Schmoopy\n\n33) Krom: Move R1 Dingus Krom\n\n34) Schmoopy: Build R2 Schmoopy\n\n35) Krom: Build B1 Dingus\n\n36) Schmoopy: Discover R2 Schmoopy G3 Crusty\n\n37) Krom: Move Y3 Dingus Crusty\n\n38) Schmoopy: Sacrifice G2 Schmoopy\nBuild R2 Schmoopy\nBuild R3 Meme\n\n39) Krom: Build R3 Dingus\n\n40) Schmoopy: Discover R3 Meme Y2 Neato\n\n41) Krom: Sacrifice Y2 Krom\nMove R3 Dingus Meme\nMove R2 Dingus Krom\n\n42) Schmoopy: Move R1 Meme Neato\n\n43) Krom: Sacrifice Y3 Crusty\nMove R2 Krom Neato\nMove R1 Krom Neato\nMove B1 Dingus Krom\nCatastrophe Neato R\n\n44) Schmoopy: Discover B2 Meme Y2 Neato2\n\n45) Krom: Attack Y1 Meme\n\n46) Schmoopy: Trade R2 B2 Schmoopy\n\n47) Krom: Move R3 Meme Neato2\n\n48) Schmoopy: Sacrifice G3 Schmoopy\nBuild B3 Neato2\nBuild B3 Neato2\nBuild B3 Schmoopy\n\n49) Krom: Sacrifice Y1 Meme\nMove B1 Krom Neato2\nCatastrophe Neato2 B\n\n50) Schmoopy: Trade B3 G3 Schmoopy\n\n51) Krom: Move R3 Neato2 Crusty\n\n52) Schmoopy: Move R1 Schmoopy Crusty\n\n53) Krom: Trade G1 Y1 Krom\n\n54) Schmoopy: Build R1 Crusty\nCatastrophe Crusty Red\n\n55) Krom: Build Y1 Krom\n\n56) Schmoopy: Build G1 Schmoopy\n\n57) Krom: Build Y2 Krom\n\n58) Schmoopy: Trade B2 Y2 Schmoopy\n\n59) Krom: Move Y1 Krom Dingus\n\n60) Schmoopy: Discover Y2 Schmoopy G3 Crambo\n\n61) Krom: Discover Y1 Dingus G3 Brigfacks\n\n62) Schmoopy: Discover G3 Schmoopy R3 Peace\n\n63) Krom: Build Y2 Brigfacks\n\n64) Schmoopy: Sacrifice Y2 Crambo\nMove G3 Peace Dingus\nMove G3 Dingus Krom\n\n65) Krom: Move Y2 Brigfacks Schmoopy\n\n66) Schmoopy: Attack Y2 Krom\n\n67) Krom: Sacrifice B1 Dingus\nTrade Y2 R2 Schmoopy\n\n68) Schmoopy: Sacrifice G3 Krom\nBuild Y2 Krom\nBuild Y2 Krom\nBuild G1 Schmoopy\nCatastrophe Krom Yellow\n\n69) Krom: Attack G1 Schmoopy\n\n\nHomeworlds Online (SDG# 33540)\nVariants: "Hard time"\nStarted: 2017.12.26, Ended: 2018.2.10\nParticipants: wil (S), orangeblood (N)\nWinner: wil\n\n1) orangeblood: Homeworld B1 Y3 G3\n\n2) wil: H B2 Y1 G3\n\torangeblood: Hi, enjoy!\n\n3) orangeblood: Build G1 Orangeblood\n\twil: If you insist...have fun and good luck!\n\twil: and thanx for the game!\n\n4) wil: B G1 Wil\n\n5) orangeblood: Trade G1 Y1 Orangeblood\n\n6) wil: Trade G1 B1 Wil\n\n7) orangeblood: Build G1 Orangeblood\n\n8) wil: Build B1 Wil\n\n9) orangeblood: Discover Y1 Orangeblood G2 Cloudatlas\n\n10) wil: Discover B1 Wil Y3 Y3\n\n11) orangeblood: Build G1 Orangeblood\n\n12) wil: Build B2 Wil\n\n13) orangeblood: Trade G3 B3 Orangeblood\n\n14) wil: Discover B2 Wil Y3 Why3\n\n15) orangeblood: Build Y1 Cloudatlas\n\twil: Been playing a while?\n\torangeblood: Just counted... 7 times. You?\n\n16) wil: S G3 Wil\nB B2 Y3\nB B3 Why3\nB B3 Wil\n\twil: Hundreds\n\n17) orangeblood: Build Y2 Cloudatlas\n\n18) wil: Trade B3 G3 Why3\n\torangeblood: Nice! It's a great game.\n\n19) orangeblood: Build B3 Orangeblood\n\n20) wil: T B2 Y2 Y3\n\torangeblood: Wow... just got back from a business trip and saw I had 3 hours to move! \n\n21) orangeblood: Discover B3 Orangeblood R2 Nachtmusik\n\n22) wil: T B3 G3 Wil\n\n23) orangeblood: Move G1 Orangeblood Nachtmusik\n\n24) wil: Trade B1 R1 Wil\n\n25) orangeblood: Trade G1 R1 Orangeblood\n\n26) wil: B B1 Why3\n\n27) orangeblood: Move Y1 Cloudatlas Orangeblood\n\n28) wil: T B2 Y2 Why3\n\n29) orangeblood: Trade Y1 G1 Orangeblood\n\n30) wil: B B2 Why3\n\n31) orangeblood: Discover Y2 Cloudatlas G3 Valkyries\n\n32) wil: T B1 R1 Why3\n\n33) orangeblood: Build R2 Orangeblood\n\n34) wil: Build R2 Why3\n\n35) orangeblood: Move R2 Orangeblood Cloudatlas\n\n36) wil: Move R1 Why3 Cloudatlas\n\n37) orangeblood: Build R3 Orangeblood\n\n38) wil: Build R3 Why3\n\n39) orangeblood: Discover R1 Orangeblood G2 Ebbetsfield\n\n40) wil: B R3 Wil\n\n41) orangeblood: Attack R1 Cloudatlas\n\n42) wil: M R2 Why3 Ebbetsfield\n\n43) orangeblood: Build Y1 Cloudatlas\n\n44) wil: Build G1 Why3\n\n\torangeblood: Apologies for timing out. You had me anyway, congrats.\n\twil: meh, I hate that...challenge me on the non timed game...if you wish to play.\n\nHomeworlds Online (SDG# 33626)\nVariants: "Hard time"\nStarted: 2017.12.27, Ended: 2018.1.6\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: H Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\twil: Got into a few pyramid throw downs with the fam?\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: Build B2 Wil\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\twil: interesting...\n\n10) wil: Trade B2 Y2 Wil\n\n11) Trydnt: Trade B2 Y2 Trydnt\n\n12) wil: Build Y1 Wil\n\n13) Trydnt: Build B2 G3\n\twil: Ok...I thought you had the jump! You s g3 and build the blues...if I s y2 for b catastrophe I would be left with 1 g3 and you would be left with b3 n b2... \n\n14) wil: Discover B1 Wil G2 G2\n\n15) Trydnt: Trade B1 Y1 G3\n\twil: 13 degree wind chill here this afternoon...\n\n16) wil: M Y1 Wil G2\n\n17) Trydnt: Build G1 Trydnt\n\n18) wil: Discover Y2 Wil G2 Gtoo\n\n19) Trydnt: Build Y2 G3\n\n20) wil: B Y3 G2\n\n21) Trydnt: Move Y1 G3 Gtoo\n\n22) wil: Build Y3 Gtoo\n\n23) Trydnt: Move Y2 G3 Gtoo\nCatastrophe Gtoo Y\n\n24) wil: Trade Y1 R1 G2\n\twil: all of these games are archived...need to build a program to extract them and put moves on data sheet to be compared and analyzed...various openers results...players rating...frequency of various ending attacks, etc.\n\n25) Trydnt: Trade G1 R1 Trydnt\n\tTrydnt: I can actually do that analysis. I use a statistical programming language called STATA to do that stuff but it's really just writing a few lines of code and it spits out answers. How useful those answers are depends on how good I am at asking the right questions.\n\n26) wil: M Y3 G2 G3\n\n27) Trydnt: Build B1 G3\n\twil: oughta give it a shot...we might find some good insights.\n\twil: If it can be set up as public access there are some other geek/nerds on the hw fb page that would probably help input and analyze as well.\r\n\n\n28) wil: Build B2 G2\n\n29) Trydnt: Discover Y2 Trydnt B3 B3\n\n30) wil: B B3 G2\n\n31) Trydnt: Sacrifice Y2 B3\nDiscover B1 G3 G2 G22\nDiscover B2 G3 G2 G222\n\n32) wil: T B1 Y1 G2\n\n33) Trydnt: Build G1 Trydnt\n\n34) wil: B G1 Wil\n\n35) Trydnt: Trade B2 Y2 G222\n\n36) wil: M B2 G2 G3\n\n37) Trydnt: Build B1 G22\n\n38) wil: S G3 Wil\nB G1 Wil\nB G3 Wil\nB B2 G3\n\n39) Trydnt: Discover G1 Trydnt B3 B3\n\n40) wil: Discover G1 Wil Y2 Y2\n\n\nHomeworlds Online (SDG# 33627)\nVariants: "Hard time"\nStarted: 2017.12.27, Ended: 2017.12.30\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n\tdlwillson: Dude! What happened?\n\tFelix: Holidays. Sorry man! I also just changed jobs and got a new phone that wasn't set up for notifications.\n\tdlwillson: NP. Let's play again! How's the new job?\n\tFelix: Good! I've started doing software development, working from home, learning on the job. It's been quite a learning experience.\n\nHomeworlds Online (SDG# 33543)\nVariants: "Unrated, Hard time"\nStarted: 2017.12.27, Ended: 2017.12.29\nParticipants: dlwillson (S), RedMerlin (N)\nWinner: RedMerlin\n\n1) RedMerlin: Homeworld B1 Y2 G3\n\n2) dlwillson: H B3 Y1 G3\n\n3) RedMerlin: Build G1 Redmerlin\n\n\tdlwillson: Sorry! I'm timing out in a lot of games lately. Want to try again?\n\tDraw5PlayAll: Stop playing hard time in anything except the ladder then.\n\nHomeworlds Online (SDG# 33581)\nVariants: "Hard time"\nStarted: 2017.12.28, Ended: 2018.1.11\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) wil: H Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: B B2 Wil\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) wil: B G1 Wil\n\n11) Trydnt: Build G1 Trydnt\n\n12) wil: T G1 Y1 Wil\n\n13) Trydnt: Build G1 Trydnt\n\n14) wil: B G1 Wil\n\n15) Trydnt: Trade G1 R1 Trydnt\n\n16) wil: T G1 R1 Wil\n\n17) Trydnt: Discover R1 Trydnt G3 G3\n\n18) wil: Build R2 Wil\n\n19) Trydnt: Build R2 G3\n\n20) wil: Discover R2 Wil Y2 Y2\n\n21) Trydnt: Move B2 Trydnt G3\n\n22) wil: Build R2 Wil\n\n23) Trydnt: Trade R2 Y2 G3\n\n24) wil: B G1 Wil\n\n25) Trydnt: Sacrifice Y2 G3\nMove B2 G3 Y2\nMove B2 Y2 Wil\nCatastrophe Wil B\n\n26) wil: Discover R1 Wil Y2 Why2\n\n27) Trydnt: Build Y1 Trydnt\n\n28) wil: D R1 Why2 R3 R3\n\twil: You've got this one!\n\n29) Trydnt: Move Y1 Trydnt Wil\n\twil: You'll need to make a few real bad moves to help me out\n\n30) wil: D Y1 Wil G2 G2\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Wil\nBuild Y2 Wil\nBuild Y3 Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 33569)\nVariants: "Unrated"\nStarted: 2018.1.2, Ended: 2018.1.30\nParticipants: Remneb (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B1 G3\n\tts52: Sorry for the delay in accepting. Wanted to be sure I had time to give this game the attention it deserves. Have a good game!\n\n2) Remneb: Homeworld Y3 B2 G3\n\n3) ts52: Build G1 Ts52\n\tRemneb: Have a good game too. \n\tRemneb: For the Great Homeworld Tournament round 2.\r\n\n\n4) Remneb: Build G1 Remneb\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) Remneb: Trade G1 R1 Remneb\n\n7) ts52: Build G1 Ts52\n\n8) Remneb: Build R1 Remneb\n\n9) ts52: Trade G1 R1 Ts52\n\n10) Remneb: Trade R1 Y1 Remneb\n\n11) ts52: Build G1 Ts52\n\n12) Remneb: Discover Y1 Remneb G1 Hort\n\n13) ts52: Build G2 Gonzo\n\n14) Remneb: Build G2 Remneb\n\n15) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\n16) Remneb: Move G2 Remneb Hort\n\n17) ts52: Trade G1 Y1 Gonzo\n\n18) Remneb: Build G1 Remneb\n\n19) ts52: Trade G1 B1 Ts52\n\n20) Remneb: Trade G1 B1 Remneb\n\n21) ts52: Build B2 Ts52\n\n22) Remneb: Build B2 Remneb\n\n23) ts52: Discover B2 Ts52 Y3 Bigbird\n\n24) Remneb: Discover B2 Remneb G1 Aries\n\n25) ts52: Sacrifice G2 Gonzo\nBuild B3 Bigbird\nBuild B3 Ts52\n\n26) Remneb: Trade B2 Y2 Aries\n\n27) ts52: Discover B3 Ts52 Y3 Zoe\n\n28) Remneb: Build B2 Remneb\n\n29) ts52: Trade B2 G2 Bigbird\n\n30) Remneb: Trade B2 Y2 Remneb\n\n31) ts52: Sacrifice G3 Ts52\nBuild G1 Gonzo\nBuild G3 Ts52\nBuild B2 Zoe\n\n32) Remneb: Discover B1 Remneb Y1 Borg\n\n33) ts52: Trade B3 R3 Zoe\n\n34) Remneb: Build R1 Remneb\n\n35) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Bigbird\nBuild B3 Zoe\n\n36) Remneb: Build R2 Remneb\n\n37) ts52: Move R3 Zoe Borg\n\n38) Remneb: Move R2 Remneb Hort\n\n39) ts52: Attack B1 Borg\n\n40) Remneb: Move R1 Remneb Aries\n\n41) ts52: Trade B3 R3 Bigbird\n\n42) Remneb: Build R2 Aries\n\n43) ts52: Sacrifice G3 Gonzo\nBuild B3 Borg\nBuild R2 Borg\nBuild R3 Ts52\n\n44) Remneb: Build G3 Remneb\n\n45) ts52: Move R3 Bigbird Aries\n\n46) Remneb: Move R1 Remneb Aries\nCatastrophe Aries R\n\n47) ts52: Move B3 Borg Remneb\n\n48) Remneb: Sacrifice R2 Hort\nAttack B3 Remneb\nPass\n\n49) ts52: Move R3 Borg Remneb\n\n50) Remneb: Sacrifice Y2 Aries\nMove G2 Hort Remneb\nMove Y1 Hort Remneb\n\n51) ts52: Sacrifice R3 Ts52\nAttack G3S Remneb\nAttack G3S Remneb\nAttack B3S Remneb\n\n52) Remneb: Trade Y1 G1 Remneb\nCatastrophe Remneb G\n\n53) ts52: Attack Y2S Remneb\n\tRemneb: There's nothing i can do to save my Homeworld anyway.\n\tRemneb: Trade y1 g1 remneb\r\ncatastrophe remneb g\n\n\tRemneb: Thanks for the game and good luck for the tournament !\n\tts52: Good game. Thanks! Happy to play again any time.\n\nHomeworlds Online (SDG# 33519)\nStarted: 2018.1.2, Ended: 2018.1.16\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H G1 B2 Y3\n\n2) Trydnt: Homeworld Y3 G1 B3\n\tMobyNostromo: Have a good game!\n\n3) MobyNostromo: B Y1 Mobynostromo\n\n4) Trydnt: Build B1 Trydnt\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) Trydnt: Trade B1 Y1 Trydnt\n\n7) MobyNostromo: D Y1 Mobynostromo G3 Terra3\n\n8) Trydnt: Build Y2 Trydnt\n\n\nHomeworlds Online (SDG# 33533)\nVariants: "Unrated"\nStarted: 2018.1.2, Ended: 2018.1.24\nParticipants: Felix (S), Trydnt (N)\nWinner: Felix\n\n1) Trydnt: Homeworld R3 G2 Y3 *\n\n2) Felix: H R1 B3 G3 Felix\n\n3) Trydnt: Build Y1 Trydnt\n\n4) Felix: Build G1 Felix\n\tFelix: Hello again. Good luck and have fun!\n\n5) Trydnt: Build Y1 Trydnt\n\tTrydnt: and to you fellow starship captain\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Trydnt: Discover Y1 Trydnt G1 G1\n\n8) Felix: B Y2 Felix\n\n9) Trydnt: Build Y2 G1\n\n10) Felix: Discover Y1 Felix B2 Out\n\n11) Trydnt: Move Y2 G1 Out\n\n12) Felix: Move Y1 Out G1\n\n13) Trydnt: Trade Y2 R2 Out\n\n14) Felix: Build Y2 Felix\n\n15) Trydnt: Sacrifice Y1 Trydnt\nMove R2 Out G1\n\n16) Felix: B Y1 G1\n\n17) Trydnt: Build R1 G1\n\n18) Felix: Discover Y2 Felix B2 Out\n\n19) Trydnt: Discover Y1 G1 G2 G2\n\n20) Felix: Sacrifice G3 Felix\nBuild Y2 G1\nBuild Y3 Felix\nBuild Y3 Out\n\n21) Trydnt: Attack Y2 G1\n\n22) Felix: Trade Y2 G2 Felix\n\n23) Trydnt: Attack Y1 G1\n\n24) Felix: Build Y2 G1\nCatastrophe G1 Yellow\n\n25) Trydnt: Build Y1 G2\n\n26) Felix: Trade Y3 G3 Out\n\n27) Trydnt: Move Y1 G2 G1\n\n28) Felix: Build Y1 Out\n\n29) Trydnt: Build Y2 G2\n\n30) Felix: Trade Y2 R2 Out\n\n31) Trydnt: Build Y2 G2\n\n32) Felix: Build Y2 Out\n\n33) Trydnt: Build Y3 G1\n\n34) Felix: Discover Y1 Out G1 Roam\n\n35) Trydnt: Discover Y2 G2 B1 B1\n\n36) Felix: Build G1 Out\n\n\nHomeworlds Online (SDG# 33630)\nVariants: "Unrated, Hard time"\nStarted: 2018.1.2, Ended: 2018.1.22\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) dlwillson: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) Trydnt: Build G1 Trydnt\n\n8) dlwillson: B G1 Dlwillson\n\n9) Trydnt: Build B2 Trydnt\n\n10) dlwillson: B B2 Dlwillson\n\n11) Trydnt: Trade B2 Y2 Trydnt\n\n12) dlwillson: Trade B1 Y1 Dlwillson\n\n13) Trydnt: Build Y1 Trydnt\n\n14) dlwillson: Trade G1 R1 Dlwillson\n\n15) Trydnt: Trade G1 R1 Trydnt\n\n16) dlwillson: Build R2 Dlwillson\n\n17) Trydnt: Discover R1 Trydnt G3 G3\n\n18) dlwillson: Discover R1 Dlwillson G2 Field\n\n19) Trydnt: Build R2 G3\n\n20) dlwillson: Move B2 Dlwillson Field\n\n21) Trydnt: Move B1 Trydnt G3\n\n22) dlwillson: Build R2 Field\n\n23) Trydnt: Sacrifice Y1 Trydnt\nDiscover R1 G3 G2 G2\n\n24) dlwillson: Trade R1 Y1 Field\n\n25) Trydnt: Build G1 Trydnt\n\n26) dlwillson: B G1 Dlwillson\n\n27) Trydnt: Move G1 Trydnt G3\n\n28) dlwillson: Move R2 Dlwillson G2\n\n29) Trydnt: Build R1 G2\n\n30) dlwillson: Build R3 Field\n\n31) Trydnt: Build R3 G3\n\n32) dlwillson: Sacrifice R2 Field\nAttack R1 G2\nAttack R1 G2\n\n33) Trydnt: Trade R3 Y3 G3\n\n34) dlwillson: T G1 B1 Dlwillson\n\n35) Trydnt: Build R2 G3\n\n36) dlwillson: B R3 Field\n\n37) Trydnt: Move R2 G3 G2\nCatastrophe G2 R\n\n\tdlwillson: Bah! Stupid weekends! I'll go take the hard time of my challenge now...\n\tdlwillson: *off\n\nHomeworlds Online (SDG# 33634)\nStarted: 2018.1.2, Ended: 2018.1.16\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) MobyNostromo: H B1 G2 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) MobyNostromo: B Y1 Mobynostromo\n\n7) Trydnt: Build Y2 Trydnt\n\n8) MobyNostromo: D Y1 Mobynostromo G3 Emerald\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n\nHomeworlds Online (SDG# 33526)\nVariants: "Unrated, Hard time"\nStarted: 2018.1.2, Ended: 2018.1.9\nParticipants: wil (S), sharkhands (N)\nWinner: wil\n\n1) sharkhands: Homeworld B1 G2 R3\n\n2) wil: H B3 Y1 G3\n\n3) sharkhands: Build R1 Sharkhands\n\twil: Familiar with the game?\n\n4) wil: B G1 Wil\n\n5) sharkhands: Trade R1 Y1 Sharkhands\n\tsharkhands: I'm fairly new to it (have played about a dozen games irl). Working on getting better, which is why I'm playing here\n\n6) wil: T G1 B1 Wil\n\twil: great place to increase skills....challenge a bunch of folk and then you'll have a move or two to make every day...(some folks don't check in so often, or take time making their moves) the format is not the best, the star systems and ships are allover the board.... in tricky situations set up a physical game to mirror so you don't miss anything!\r\n\n\n7) sharkhands: Build R1 Sharkhands\n\tsharkhands: Good point with the physical setup. And yeah, definitely plan to challenge many people!\r\n\r\nThis game is great - I'm glad there's a forum to play it (even slowly) online\n\n8) wil: B B1 Wil\n\n9) sharkhands: Trade R1 G1 Sharkhands\n\twil: Yes this is an awesome place to learn\n\n10) wil: D B1 Wil Y2 Y2\n\n11) sharkhands: Build G1b Sharkhands\n\n12) wil: B B2 Wil\n\n13) sharkhands: Discover G1 Sharkhands R3 Antares\n\n14) wil: D B1 Wil Y2 Why2\n\n15) sharkhands: Build G1 Sharkhands\n\n16) wil: Build B2 Wil\n\n17) sharkhands: Discover G1 Sharkhands R3 Something\n\n18) wil: D B2 Wil G2 G2\n\twil: You want to play this straight heads up, or as a learning/training game, or any after the fact hints, reflections on potential moves? \n\tsharkhands: Let's play it head-to-head, and then maybe do a post-mortem of my egregious mistakes :P\n\n19) sharkhands: Build R1 Sharkhands\n\n20) wil: S G3 Wil\nB B2 Y2\nB B3 Wil\nB B3 G2\n\twil: Perfect! I'll get a bigger notepad\n\n21) sharkhands: Discover G1 Sharkhands Y3 Baloo\n\n22) wil: M B2 Y2 Antares\n\n23) sharkhands: Build G2 Baloo\n\tsharkhands: Nicely done\n\n24) wil: A G1 Antares\n\n25) sharkhands: Build G3 Baloo\n\n26) wil: Build G3 Antares\n\n27) sharkhands: Discover G3 Baloo Y2 Another\n\n28) wil: Trade B3 Y3 G2\n\tsharkhands: \n\n29) sharkhands: Build G3 Another\n\n30) wil: Trade B2 R2 Wil\n\n31) sharkhands: Sacrifice G3 Another\nBuild Y1 Sharkhands\nBuild Y3 Sharkhands\nBuild G3 Another\n\n32) wil: Sacrifice G3 Antares\nBuild G3 Antares\nBuild B2 Y2\nBuild B3 Why2\n\n33) sharkhands: Move R3 Sharkhands Baloo\n\twil: I was momentarily blinded and almost made a grave error...\n\n34) wil: Trade B2 R2 G2\n\n35) sharkhands: Sacrifice G3 Another\nBuild G3 Another\nBuild R1 Sharkhands\nBuild R1 Baloo\n\n36) wil: S G3 Antares\nB G3 Antares\nB B2 Antares\nB R2 G2\n\n37) sharkhands: Move R3 Baloo Another\n\n38) wil: M R2 G2 Baloo\n\n39) sharkhands: Attack R2 Baloo\n\tsharkhands: Minor problem with that first one :P\n\n40) wil: M R2 G2 Something\n\n41) sharkhands: Sacrifice G1 Something\nBuild G1 Baloo\n\n42) wil: M B3 Why2 Baloo\n\n43) sharkhands: Move R3 Another Baloo\n\twil: What was I thinking?\n\n44) wil: S R2 Wil\nA R3 Baloo\nA G2 Baloo\n\tsharkhands: I wasn't sure... Thought there might have been some depending strategy. Almost didn't take it cause I was second-guessing myself so much\n\n45) sharkhands: Move R1 Sharkhands Baloo\nCatastrophe Baloo Red\n\n46) wil: T G2 R2 Baloo\n\twil: I wish I had some deep strategy....empty banks are so rare I don't even know how to play them\n\n47) sharkhands: Move G1 Baloo Sharkhands\n\n48) wil: Attack G1 Baloo\n\n49) sharkhands: Build R1 Sharkhands\n\tsharkhands: Oh balls, completely forgot about sacrifices. That might be about the game for me\n\n50) wil: S Y3 G2\nM G3 Antares Sharkhands\nM B3 Baloo Sharkhands\nM B1 Y2 Baloo\n\twil: You've been sacrificing g3s\n\n\tsharkhands: And that'll do it right there. Good game!\n\nHomeworlds Online (SDG# 33561)\nStarted: 2018.1.2, Ended: 2018.3.6\nParticipants: sharkhands (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y3 B2 G3 Ts52\n\n2) sharkhands: Homeworld Y1 B2 G3\n\tts52: Have a good game!\n\tsharkhands: You too!\n\n3) ts52: Build G1 Ts52\n\n4) sharkhands: Build G1 Sharkhands\n\n5) ts52: Discover G1 Ts52 B1 Grover\n\n6) sharkhands: Trade G1 B1 Sharkhands\n\n7) ts52: Build G1 Ts52\n\n8) sharkhands: Discover B1 Sharkhands G3 G3\n\n9) ts52: Trade G1 B1 Ts52\n\n10) sharkhands: Build G1 Sharkhands\n\n11) ts52: Build G1 Grover\n\n12) sharkhands: Build G2 Sharkhands\n\n13) ts52: Build G2 Ts52\n\n14) sharkhands: Discover G1 Sharkhands B3 B3\n\n15) ts52: Trade G1 Y1 Grover\n\n16) sharkhands: Trade G2 B2 Sharkhands\n\n17) ts52: Build Y1 Grover\n\n18) sharkhands: Build B3 Sharkhands\n\n19) ts52: Build B3 Ts52\n\n20) sharkhands: Build G1 B3\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Grover\nBuild G3 Ts52\n\n22) sharkhands: Trade B2 Y2 Sharkhands\n\n23) ts52: Discover B3 Ts52 R1 Elmo\n\n24) sharkhands: Build B2 G3\n\n25) ts52: Trade G2 R2 Grover\n\n26) sharkhands: Trade B2 Y2 G3\n\n27) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild B2 Elmo\n\n28) sharkhands: Sacrifice Y2 Sharkhands\nMove G1 B3 Grover\nCatastrophe Grover Green\nDiscover B3 Sharkhands Y3 Y3\n\n29) ts52: Sacrifice Y1 Grover\nDiscover B3 Elmo Y3 Bigbird\n\n30) sharkhands: Trade G3 R3 Sharkhands\n\n31) ts52: Move G2 Ts52 Grover\n\n32) sharkhands: Discover B3 Y3 G1 G1\n\n33) ts52: Move R2 Grover B3\n\n\nHomeworlds Online (SDG# 33641)\nStarted: 2018.1.3, Ended: 2018.2.6\nParticipants: Draw5PlayAll (S), sharkhands (N)\nWinner: Draw5PlayAll\n\n1) sharkhands: Homeworld Y1 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) sharkhands: Build G1 Sharkhands\n\tsharkhands: Have a good game!\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) sharkhands: Trade G1 R1 Sharkhands\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) sharkhands: Build R2 Sharkhands\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) sharkhands: Discover R1 Sharkhands G3 G3\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n11) sharkhands: Build R2 Sharkhands\n\n12) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n13) sharkhands: Build G1 Sharkhands\n\n14) Draw5PlayAll: Build Y1 Draw5playall\n\n15) sharkhands: Discover G1 Sharkhands R3 R3\n\n16) Draw5PlayAll: Move Y2 Draw5playall G2\n\n17) sharkhands: Discover R2 Sharkhands Y3 Y3\n\n18) Draw5PlayAll: Build G1 Draw5playall\n\n19) sharkhands: Sacrifice G3 Sharkhands\nBuild R2 G3\nBuild R3 Sharkhands\nBuild R3 Y3\n\n20) Draw5PlayAll: Build Y1 G2\n\n21) sharkhands: Discover R2 Sharkhands B3 B3\n\n22) Draw5PlayAll: Discover G1 Draw5playall Y2 Y2\n\n23) sharkhands: Sacrifice G1 R3\nBuild R3 B3\n\n24) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 G2\n\n25) sharkhands: Move R2 Y3 Y2\n\n26) Draw5PlayAll: Sacrifice G1 Y2\nPass\n\n27) sharkhands: Move R2 Y2 Y3\n\n28) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n29) sharkhands: Trade R2 Y2 B3\n\n30) Draw5PlayAll: Discover Y1 G2 G1 G1\n\n31) sharkhands: Discover R3 Y3 Y2 Y2\n\n32) Draw5PlayAll: Build R2 G2\n\n33) sharkhands: Discover Y2 B3 G2 G2-1\n\n34) Draw5PlayAll: Build G1 Draw5playall\n\n35) sharkhands: Move Y2 G2-1 B3\n\n36) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n37) sharkhands: Move R3 B3 B2\n\n38) Draw5PlayAll: Sacrifice G1 B2\nBuild G1 Draw5playall\n\n39) sharkhands: Move Y2 B3 B2\n\n40) Draw5PlayAll: Trade G2 B2 Draw5playall\n\n41) sharkhands: Sacrifice Y2 B2\nMove R1 G3 G2\nMove R2 G3 G2\nCatastrophe G2 Red\n\n42) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n43) sharkhands: Discover R2 Y3 G2 G2-1\n\n44) Draw5PlayAll: Move R1 Draw5playall G2\n\n\nHomeworlds Online (SDG# 33661)\nVariants: "Hard time"\nStarted: 2018.1.7, Ended: 2018.1.30\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Felix: Homeworld B1 Y3 G3\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 Y1 Wil\n\n6) Felix: Trade G1 B1 Felix\n\n7) wil: B Y1 Wil\n\n8) Felix: Build B1 Felix\n\n9) wil: D Y1 Wil G3 G3\n\n10) Felix: Discover B1 Felix G2 Romp\n\n11) wil: B Y2 G3\n\n12) Felix: Sacrifice G3 Felix\nBuild B2 Romp\nBuild B2 Romp\nBuild B3 Felix\n\n13) wil: D Y2 G3 Y2 Y2\n\n14) Felix: T B2 Y2 Romp\n\n15) wil: Build Y3 Wil\n\n16) Felix: Build Y3 Romp\n\n17) wil: T Y3 B3 Wil\n\n18) Felix: Discover B2 Romp Y3 Grump\n\twil: I just had to see how that race would play out.\n\n19) wil: M B3 Wil G3\n\tFelix: I'm still not quite sure...\n\n20) Felix: Sacrifice B1 Felix\nTrade Y3 R3 Romp\n\n21) wil: T Y1 R1 Wil\n\n22) Felix: Trade B3 G3 Felix\n\n23) wil: B R1 Wil\n\n24) Felix: Build R1 Romp\n\n25) wil: M R1 Wil G3\n\n26) Felix: Trade R3 Y3 Romp\n\n27) wil: B R2 Wil\n\n28) Felix: Build R2 Romp\n\n29) wil: Build B1 G3\n\n30) Felix: Move R1 Romp Felix\n\n31) wil: Discover B1 G3 G2 G2\n\n32) Felix: Sacrifice G3 Felix\nBuild R2 Romp\nBuild B2 Grump\nBuild R3 Felix\n\n33) wil: Build B3 G2\n\n34) Felix: Build B3 Romp\n\n35) wil: Build R3 G3\n\n36) Felix: Trade R3 G3 Felix\n\n37) wil: Move R1 G3 G2\n\n38) Felix: Move B2 Grump Wil\n\n39) wil: Attack B2 Wil\n\n40) Felix: Sacrifice Y3 Romp\nMove B1 Romp Grump\nMove B1 Grump Wil\nMove B2 Grump Wil\nCatastrophe Wil Blue\n\twil: I didn't expect that that early...I thought it would be premature...but there you are!\n\n41) wil: B R3 G2\n\tFelix: It's probably a mistake... but here we are!\n\n42) Felix: Build Y1 Romp\n\n43) wil: Build Y3 G3\n\n44) Felix: Build R3 Felix\n\twil: let us just hope!\n\n45) wil: Trade R3 Y3 G2\n\n46) Felix: Move R3 Felix Y2\n\n47) wil: Discover Y2 Y2 R3 R3\n\n48) Felix: M Y1 Romp G3\n\n49) wil: Discover Y1 G3 G2 Gtoo\n\n50) Felix: Move R3 Y2 R3\n\n51) wil: B Y2 G2\n\n52) Felix: Attack Y2 R3\n\n53) wil: Attack Y1 G3\n\n54) Felix: Move R3 R3 Gtoo\n\n55) wil: Sacrifice Y3 G3\nMove Y1 Gtoo Felix\nMove Y2 G2 Felix\nMove B1 G2 Felix\n\twil: Initiate Doomsday Device...fire one!\n\twil: dang..math doesn't work yet...I thought I was there..\n\twil: oh heck...there is always next game...fire anyway!\n\n56) Felix: Sacrifice R3 Gtoo\nAttack Y1 Felix\nAttack Y2 Felix\nAttack B1 Felix\n\n57) wil: Move B3 G2 Felix\n\tFelix: Nicely played nonetheless!\n\n58) Felix: A B3 Felix\n\n59) wil: S Y3 G2\nM Y1 G3 G2\nM Y1 G2 Felix\nC Felix Y\nM B3 G3 Felix\nC Felix B\n\tFelix: Ooh, nice. I didn't think you could quite do that yet. I forgot about the mid-turn catastrophe.\n\twil: We got her I jammed Capt. Fire number 2!\n\twil: My brain hurts\n\twil: Thx for the challenge! Twas a strange game\n\n\nHomeworlds Online (SDG# 33654)\nVariants: "Hard time"\nStarted: 2018.1.7, Ended: 2018.2.9\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: Draw5PlayAll\n\n1) dlwillson: H Y3 B1 G3\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\tdlwillson: GLHF! \n\n3) dlwillson: Build G1 Dlwillson\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) dlwillson: Build R1 Dlwillson\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) dlwillson: Build R1 Dlwillson\n\n10) Draw5PlayAll: Discover B2 Draw5playall B2 B2\n\n11) dlwillson: Discover R1 Dlwillson Y2 Sol\n\n12) Draw5PlayAll: Build B2 Draw5playall\n\n13) dlwillson: Build G1 Dlwillson\n\n14) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n15) dlwillson: Discover R1 Dlwillson G2 Field\n\n16) Draw5PlayAll: Build B3 G2\n\n17) dlwillson: S G3 Dlwillson\nB R2 Dlwillson\nB R2 Field\nB R2 Sol\n\n18) Draw5PlayAll: Trade B3 R3 G2\n\n19) dlwillson: Build R3 Dlwillson\n\n20) Draw5PlayAll: Build R3 G2\n\n21) dlwillson: Trade R3 Y3 Dlwillson\n\n22) Draw5PlayAll: Trade R3 G3 G2\n\n23) dlwillson: M R2 Sol Draw5playall\n\n24) Draw5PlayAll: Sacrifice G3 G2\nBuild R3 G2\nBuild B3 B2\nBuild B3 G2\n\n25) dlwillson: Build R3 Dlwillson\n\n26) Draw5PlayAll: Build Y1 Draw5playall\n\n27) dlwillson: T R3 B3 Dlwillson\n\n28) Draw5PlayAll: Move Y1 Draw5playall G2\n\n29) dlwillson: B R3 Field\n\n30) Draw5PlayAll: Move R3 G2 Draw5playall\n\n31) dlwillson: M R2 Dlwillson Sol\n\n32) Draw5PlayAll: Attack R2N Draw5playall\n\n33) dlwillson: M B3 Dlwillson Sol\n\n34) Draw5PlayAll: Move R2 Draw5playall B2\n\n35) dlwillson: Sacrifice B3 Sol\nTrade R3 B3 Field\nTrade Y3 G3 Dlwillson\nTrade R2 Y2 Field\n\tDraw5PlayAll: That move was suicidal.\n\n36) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove B3 B2 Dlwillson\nMove B3 G2 Dlwillson\nMove R3 G2 Dlwillson\n\n\tDraw5PlayAll: I think this means something great!\n\tdlwillson: Yup! Good game! Well played!\n\nHomeworlds Online (SDG# 33553)\nVariants: "Unrated"\nStarted: 2018.1.8, Ended: 2018.2.9\nParticipants: mneme (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B1 Y2 G3\n\n2) mneme: Homeworld G3 R1 B3\n\n3) Babamots: Build G1 Babamots\n\n4) mneme: Build B1 Mneme\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) mneme: Build B2 Mneme\n\n7) Babamots: Build B2 Babamots\n\n8) mneme: Trade B2 Y2 Mneme\n\n9) Babamots: Discover B2 Babamots G3 Betazed\n\n10) mneme: Discover B1 Mneme G2 Clio\n\n11) Babamots: Trade B1 R1 Babamots\n\n12) mneme: Build B1 Mneme\n\n13) Babamots: Build B2 Betazed\n\n14) mneme: Build B2 Clio\n\n15) Babamots: Trade B2 Y2 Betazed\n\n16) mneme: Trade B2 R2 Clio\n\n17) Babamots: Build B2 Betazed\n\tmneme: Oh, belated good luck (what there is of it) and have fun!\n\tBabamots: I think that the same person will make different moves depending on their mood and many other factors that have nothing to do with the game position. In that sense, there's a little luck in any game.\r\n\r\nGood luck to you too!\n\n18) mneme: Move Y2 Mneme Clio\n\n19) Babamots: Discover B2 Betazed G2 Galorndon\n\tmneme: Not untrue, but it's an odd kind of luck.\n\n20) mneme: Trade B1 Y1 Mneme\n\n21) Babamots: Build B1 Galorndon\n\n22) mneme: Build Y1 Clio\n\n23) Babamots: Trade B2 R2 Galorndon\n\n24) mneme: Build B2 Clio\n\n25) Babamots: Build B2 Galorndon\n\n26) mneme: Trade B2 G2 Clio\n\n27) Babamots: Trade B1 G1 Galorndon\n\n28) mneme: Sacrifice G2 Clio\nBuild Y1 Clio\nBuild Y3 Mneme\n\n29) Babamots: Build Y3 Betazed\n\n30) mneme: Sacrifice Y2 Clio\nMove Y1 Clio Betazed\nMove Y1 Clio Betazed\nCatastrophe Betazed Y\n\n31) Babamots: Build G1 Babamots\n\n32) mneme: Build Y1 Mneme\n\n33) Babamots: Sacrifice G3 Babamots\nBuild G1 Galorndon\nBuild G2 Babamots\nBuild G3 Babamots\n\n34) mneme: Move Y3 Mneme Galorndon\n\n35) Babamots: Discover G1 Babamots Y3 Iconia\n\n36) mneme: Sacrifice R2 Clio\nAttack R2 Galorndon\nAttack B2 Galorndon\n\n37) Babamots: Sacrifice G2 Babamots\nBuild G2 Galorndon\nCatastrophe Galorndon G\nBuild G1 Iconia\n\n38) mneme: Trade Y1 R1 Mneme\n\n39) Babamots: Build G1 Babamots\n\n40) mneme: Build Y1 Mneme\n\n41) Babamots: Sacrifice G3 Babamots\nBuild G2 Iconia\nBuild G2 Babamots\nBuild G3 Babamots\n\n42) mneme: Build Y1 Mneme\n\n43) Babamots: Trade G2 Y2 Babamots\n\n44) mneme: Build R2 Mneme\n\n45) Babamots: Discover Y2 Babamots B3 Kronos\n\tmneme: Nice move; my error. Now to see if you can take full advantage of it.\n\n46) mneme: Trade R2 G2 Mneme\n\tBabamots: I'll be playing keep-away with the greens for a bit :-)\n\n47) Babamots: Sacrifice G3 Babamots\nBuild Y2 Kronos\nBuild Y3 Kronos\nBuild G3 Babamots\n\n48) mneme: Discover Y1 Mneme B2 Treasure\n\n49) Babamots: Move Y2 Kronos Treasure\n\tmneme: Or not, apparently.\n\n50) mneme: Build Y3 Mneme\n\tBabamots: Well, I didn't think I'd get the chance at a large. I think this is better.\n\n51) Babamots: Move Y2 Treasure Mneme\nCatastrophe Mneme Y\n\tmneme: maybe. Y is strong; I shouldn't have let myself be manuvered into grouping up all the y1s; it's a weak position.\r\n\n\n52) mneme: Build R2 Mneme\n\n53) Babamots: Sacrifice Y3 Kronos\nMove R1 Babamots Betazed\nMove R1 Betazed Clio\nMove R1 Clio Mneme\nCatastrophe Mneme R\n\n54) mneme: Trade G2 R2 Mneme\n\n55) Babamots: Trade B2 R2 Betazed\n\n56) mneme: Build B1 Mneme\n\n57) Babamots: Discover G1 Iconia Y2 Bolarus\n\n58) mneme: Build B2 Clio\n\n59) Babamots: Move G1 Iconia Bolarus\n\n\tmneme: Well played. Mate in 2. \n\tBabamots: Thanks. Good game!\n\tmneme: Congrats! Good game.\n\nHomeworlds Online (SDG# 33636)\nVariants: "Unrated, Hard time"\nStarted: 2018.1.10, Ended: 2018.1.29\nParticipants: dlwillson (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 Y3 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\n3) Felix: Build G1 Felix\n\n4) dlwillson: Build G1 Dlwillson\n\tFelix: I'll try not to drop out of this one :)\n\n5) Felix: T G1 B1 Felix\n\tdlwillson: I timed out on a bunch of games over the holidays, too. :-)\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) Felix: Build B2 Felix\n\n8) dlwillson: Build B2 Dlwillson\n\n9) Felix: Discover B2 Felix G1 Out\n\n10) dlwillson: Discover B2 Dlwillson Y2 Sol\n\n11) Felix: Build B3 Out\n\n12) dlwillson: S G3 Dlwillson\nB B3 Sol\nB B3 Dlwillson\nPass\n\n13) Felix: Trade B3 Y3 Out\n\n14) dlwillson: T B1 R1 Dlwillson\n\n15) Felix: Trade B1 R1 Felix\n\n16) dlwillson: T B3 G3 Dlwillson\n\n17) Felix: Build B1 Out\n\n18) dlwillson: D B2 Sol G1 Forest\n\n19) Felix: Discover B2 Out G2 Rim\n\n20) dlwillson: Build G1 Dlwillson\n\n21) Felix: Build G2 Felix\n\n22) dlwillson: T B3 G3 Sol\n\n23) Felix: Sacrifice G2 Felix\nBuild B1 Out\nBuild B3 Rim\n\n\tdlwillson: Sorry Felix. Sometimes, I wish SDG would send reminders.\n\tFelix: I've been there too. Shame though! Happy to rematch any time!\n\nHomeworlds Online (SDG# 33672)\nVariants: "Unrated, Hard time"\nStarted: 2018.1.12, Ended: 2018.1.13\nParticipants: mi_spero (S), dlwillson (N)\nWinner: mi_spero\n\n\tdlwillson: Hey, sorry about that! I usually check in every day, but I missed yesterday. Go again?\n\tmi_spero: Sure.\n\nHomeworlds Online (SDG# 33681)\nVariants: "Hard time"\nStarted: 2018.1.12, Ended: 2018.2.2\nParticipants: Trydnt (S), sharkhands (N)\nWinner: Trydnt\n\n1) sharkhands: Homeworld Y1 G2 B3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) sharkhands: Build B1 Sharkhands\n\n4) Trydnt: Build G1 Trydnt\n\n5) sharkhands: Discover B1 Sharkhands G3 G3\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) sharkhands: Build B1 G3\n\n8) Trydnt: Build Y1 Trydnt\n\n9) sharkhands: Build B1 Sharkhands\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) sharkhands: Trade B1 G1 G3\n\n12) Trydnt: Build Y2 Trydnt\n\n13) sharkhands: Build B1 G3\n\n14) Trydnt: Build Y2 G1\n\n15) sharkhands: Trade B3 Y3 Sharkhands\n\n16) Trydnt: Build Y3 G1\n\n17) sharkhands: Move Y3 Sharkhands G3\n\n18) Trydnt: Move Y1 G1 G3\n\n19) sharkhands: Build B2 G3\n\n20) Trydnt: Discover Y1 Trydnt G1 Gee1\n\n21) sharkhands: Build B2 Sharkhands\n\tsharkhands: That was a damn good move\n\n22) Trydnt: Build Y3 Gee1\n\n\nHomeworlds Online (SDG# 33685)\nVariants: "Unrated, Hard time"\nStarted: 2018.1.13, Ended: 2018.1.20\nParticipants: mi_spero (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\tdlwillson: Thanks for trying again!\r\n\n\n2) mi_spero: Homeworld Y1 B2 G3\n\tmi_spero: No problem; good luck and have fun!\n\n3) dlwillson: Build G1 Dlwillson\n\n4) mi_spero: Build G1 Mi_spero\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) mi_spero: Trade G1 B1 Mi_spero\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) mi_spero: Build G1 Mi_spero\n\n9) dlwillson: Discover Y1 Dlwillson G2 Field\n\n10) mi_spero: Build G1 Mi_spero\n\n11) dlwillson: Build G1 Dlwillson\n\n12) mi_spero: Trade G1 R1 Mi_spero\n\n13) dlwillson: B Y2 Dlwillson\n\n14) mi_spero: Trade G3 Y3 Mi_spero\n\n15) dlwillson: B Y2 Field\n\n16) mi_spero: Build Y2 Mi_spero\n\n17) dlwillson: S Y2 Field\nD Y1 Field Y3 Sol\nM Y1 Sol Mi_spero\nC Mi_spero Y\n\n\tmi_spero: Thank you for the game.\n\tdlwillson: It is my pleasure! Let's play again, sometime!\n\nHomeworlds Online (SDG# 33555)\nVariants: "Unrated"\nStarted: 2018.1.13, Ended: 2018.4.26\nParticipants: sharkhands (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) sharkhands: Homeworld G2 B3 Y3\n\tsharkhands: Good luck, have fun! Thanks for playing with me again\n\n3) wil: B G1 Wil\n\twil: I will play repeatedly, I enjoy this game\n\n4) sharkhands: Build Y1 Sharkhands\n\n5) wil: T G1 Y1 Wil\n\n6) sharkhands: Build Y2 Sharkhands\n\n7) wil: B Y2 Wil\n\n8) sharkhands: Trade Y2 G2 Sharkhands\n\n9) wil: D Y1 Wil G3 G3\n\n10) sharkhands: Trade Y1 B1 Sharkhands\n\n11) wil: Build Y1 Wil\n\n12) sharkhands: Discover B1 Sharkhands G1 G1\n\n13) wil: B Y2 G3\n\n14) sharkhands: Build G1 Sharkhands\n\n15) wil: D Y2 Wil B3 B3\n\n16) sharkhands: Build B1 G1\n\n17) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 B3\nBuild Y3 Wil\n\n18) sharkhands: Discover G2 Sharkhands B1 B1\n\twil: Ready to catastrophe?\n\twil: A chance to back up that move if you want\n\twil: Just doeet?\n\tsharkhands: You're uncommonly generous - that was a legitimate oversight on my part\n\n19) wil: T Y2 R2 B3\n\n20) sharkhands: Build Y2 Sharkhands\n\n21) wil: T Y1 R1 Wil\n\n22) sharkhands: Trade B1 R1 G1\n\n23) wil: M R2 B3 G1\n\n\nHomeworlds Online (SDG# 33671)\nVariants: "Hard time"\nStarted: 2018.1.13, Ended: 2018.3.17\nParticipants: bhorner (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 R3 G3\n\tbhorner: If you miss your opportunity to move, we can just start another game. :)\n\tFelix: We can keep going with this one, but would there be a good time this week to knock out a large number of moves? I am in GMT-5 time (Eastern time in the United States) and my schedule is pretty flexible.\n\n2) bhorner: Homeworld B2 R1 G3\n\n3) Felix: Build G1 Felix\n\tbhorner: I think that rushing things would significantly affect my chances. :)\n\tbhorner: (I'm in Pacific time U.S. which is GMT-8)\n\n4) bhorner: B G1 Bhorner\n\tFelix: Well, I'm okay with drawing it out, but the instructions for the bracket games said to try to finish them within one week...\n\tDraw5PlayAll: One WEEK?!\n\tbhorner: The time controls didn't change did they? I never saw the part about finishing w/in a week.\n\n5) Felix: Trade G1 B1 Felix\n\tbhorner: I think you must be referring to the "Remaining Active" section. It doesn't say you must complete a game in 7 days, just that you remain active, and the first way to remain active is:\r\n"You will be considered active for the following seven days if\r\nyou are currently in at least one game that is part of the tournament"\r\nThat let's the time controls kick in.\r\nI'm not trying to draw it out, not trying to bore you into a mistake. I just like the game, and want to think hard, and take a couple looks at the next move before I go. That's the thing about correspondence board games, they're probably higher quality due to the extended time per move. Good luck to you!\r\n\n\tFelix: You're right. I think I just misread the rules for the bracket portion of the tournament. I have no problem drawing it out and didn't mean to rush you! :) Good luck.\n\n6) bhorner: T G1 B1 Bhorner\n\n7) Felix: Build B2 Felix\n\n8) bhorner: Build B2 Bhorner\n\n9) Felix: Trade B2 Y2 Felix\n\n10) bhorner: Trade B2 Y2 Bhorner\n\n11) Felix: Build B2 Felix\n\n12) bhorner: B B2 Bhorner\n\n13) Felix: Discover B2 Felix G2 Out\n\n14) bhorner: D B1 Bhorner G3 Xmas\n\n15) Felix: Build B3 Out\n\n16) bhorner: B B3 Xmas\n\n17) Felix: T B3 Y3 Out\n\n18) bhorner: Trade B1 Y1 Xmas\n\n19) Felix: Build Y1 Out\n\n20) bhorner: Trade B3 R3 Xmas\n\n21) Felix: Trade Y1 R1 Out\n\n22) bhorner: Build G1 Bhorner\n\tbhorner: Whoah, sorry, the weekend really got away from me. Not much time to think now, here goes!\n\n23) Felix: Build B1 Felix\n\n24) bhorner: M B2 Bhorner Xmas\n\tFelix: No prob! Weekends tend to do that.\n\n25) Felix: Discover B1 Felix G2 Opus\n\n26) bhorner: Build B3 Xmas\n\n27) Felix: Build B3 Opus\n\n28) bhorner: D G1 Bhorner B3 Puddle\n\n29) Felix: Trade B3 Y3 Opus\n\n30) bhorner: Discover B2 Xmas Y2 Twinkle\n\n31) Felix: Build B3 Opus\n\n32) bhorner: Sacrifice G1 Puddle\nBuild B3 Twinkle\n\n33) Felix: Sacrifice B1 Felix\nTrade B3 Y3 Opus\n\n34) bhorner: Trade B3 R3 Twinkle\n\n35) Felix: B G1 Felix\n\n36) bhorner: Move B3 Xmas Twinkle\n\n37) Felix: Trade B2 R2 Out\n\n38) bhorner: B Y1 Xmas\n\n39) Felix: Trade Y3 B3 Opus\n\n40) bhorner: Discover R3 Twinkle Y3 Little\n\n41) Felix: Discover B1 Opus B3 Inka\n\n42) bhorner: Build G1 Bhorner\n\n43) Felix: Trade B1 G1 Inka\n\n44) bhorner: M G1 Bhorner Little\n\n45) Felix: Sacrifice G3 Felix\nBuild G2 Inka\nBuild G3 Felix\nBuild B1 Opus\n\n46) bhorner: D R3 Little Y1 Star\n\n47) Felix: Move R2 Out Little\n\n48) bhorner: Move R3 Star Inka\n\n49) Felix: Move B3 Opus Little\n\n50) bhorner: A G2 Inka\n\n51) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B1 Little\nBuild R1 Out\n\n52) bhorner: M G1 Little Twinkle\n\n53) Felix: Sacrifice Y3 Opus\nMove B3 Little Bhorner\nMove B1 Little Bhorner\nDiscover B1 Opus Y3 Insertion\n\n54) bhorner: Attack B3 Bhorner\n\n55) Felix: S Y3 Out\nM B1 Insertion Bhorner\nC Bhorner Blue\nM R1 Out Bhorner\nM R1 Out Bhorner\n\n56) bhorner: Attack R1 Bhorner\n\n57) Felix: M R2 Little Bhorner\nC Bhorner Red\n\n\tFelix: Good game! And good luck with your next game!\n\tbhorner: Thanks, same to you. :)\n\nHomeworlds Online (SDG# 33635)\nVariants: "Unrated"\nStarted: 2018.1.15, Ended: 2018.2.23\nParticipants: sharkhands (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) sharkhands: Homeworld B2 Y1 G3\n\n3) Felix: Build G1 Felix\n\n4) sharkhands: Build G1 Sharkhands\n\tFelix: Have a good game!\n\n5) Felix: Trade G1 Y1 Felix\n\n6) sharkhands: Build G1 Sharkhands\n\n7) Felix: Build Y1 Felix\n\n8) sharkhands: Discover G1 Sharkhands R3 R3\n\n9) Felix: Build Y2 Felix\n\n10) sharkhands: Discover G1 Sharkhands R3 R3-1\n\n11) Felix: Discover Y1 Felix G1 Out\n\n12) sharkhands: Build G2 Sharkhands\n\n13) Felix: Build Y2 Out\n\n\nHomeworlds Online (SDG# 33628)\nVariants: "Hard time"\nStarted: 2018.1.17, Ended: 2018.2.21\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n2) wil: H Y2 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: B Y2 Wil\n\n9) Trydnt: Discover Y1 Trydnt G2 G2\n\n10) wil: D Y1 Wil G3 G3\n\n11) Trydnt: Build Y3 G2\n\n12) wil: Build Y3 G3\n\n13) Trydnt: Move Y1 G2 G3\n\n14) wil: Discover Y2 Wil Y3 Y3\n\n15) Trydnt: Build G1 Trydnt\n\tTrydnt: smart AND annoying\n\n16) wil: B G1 Wil\n\n17) Trydnt: Trade Y2 R2 Trydnt\n\n18) wil: Move Y1 G3 G2\n\n19) Trydnt: Build Y2 G3\n\n20) wil: Trade G1 R1 Wil\n\n21) Trydnt: Move R2 Trydnt G2\n\n22) wil: Move Y1 G2 Y3\n\n23) Trydnt: Sacrifice Y2 G3\nMove Y1 G3 G2\nMove Y1 G2 Y3\nCatastrophe Y3 Y\n\n24) wil: Build R1 Wil\n\n25) Trydnt: Trade G1 B1 Trydnt\n\n26) wil: Trade R1 B1 Wil\n\n27) Trydnt: Move B1 Trydnt G2\n\n28) wil: Build B2 Wil\n\n29) Trydnt: Build B2 G2\n\n30) wil: Move B2 Wil G3\n\n31) Trydnt: Discover B2 G2 Y3 Y3\n\n32) wil: Move B1 Wil Y3\n\n33) Trydnt: Build R1 G2\n\n34) wil: S G3 Wil\nB B2 G3\nB B3 G3\nB B3 Y3\n\n35) Trydnt: Move Y3 G2 G3\n\n36) wil: S B3 G3\nT B2 Y2 G3\nT B2 Y2 G3\nC G3 Y\nT B3 R3 Y3\n\twil: Incredibly stupid or ingenious. I think stupid but love experimentation \n\n37) Trydnt: Move B2 Y3 Wil\n\n38) wil: Move R3 Y3 Wil\n\n39) Trydnt: Move B2 Wil Y3\n\n40) wil: D B1 Y3 Y2 Y2\n\n41) Trydnt: Build B2 G2\n\n42) wil: T R3 G3 Wil\n\n43) Trydnt: Trade B2 Y2 G2\n\n44) wil: B G1 Wil\n\n45) Trydnt: Move B2 Y3 Y2\n\n46) wil: D B1 Y2 Y3 Y3\n\n47) Trydnt: Build G1 Trydnt\n\n48) wil: Trade G1 Y1 Wil\n\n49) Trydnt: Move G1 Trydnt Y2\n\n50) wil: Discover B1 Y3 G2 B2\n\n51) Trydnt: Build B2 Y2\n\n52) wil: Build G1 Wil\n\n53) Trydnt: Discover B2 Y2 Y3 Y3\n\n54) wil: Build B2 B2\n\twil: I am in sooo much trouble here...you better kick my butt or i will be thoroughly disappointed.\n\n55) Trydnt: Build B3 G2\n\n56) wil: Trade B1 Y1 B2\n\n57) Trydnt: Build Y3 G2\n\n58) wil: Build Y3 B2\n\n59) Trydnt: Discover Y3 G2 G3 G3\n\n60) wil: Discover G1 Wil B3 B3\n\n61) Trydnt: Move B2 Y2 G3\n\n62) wil: Build G1 Wil\n\n63) Trydnt: Sacrifice G1 Y2\nBuild Y2 G3\n\n64) wil: Trade Y1 G1 B2\n\n65) Trydnt: Sacrifice B2 Y3\nTrade B3 Y3 G2\nPass\n\n66) wil: Sacrifice G3 Wil\nBuild G2 B2\nBuild G3 Wil\nBuild Y1 B2\n\n67) Trydnt: Sacrifice Y2 G3\nMove Y3 G2 Trydnt\nMove G3 Trydnt B2\nCatastrophe B2 G\n\n68) wil: Move Y1 Wil B3\n\n69) Trydnt: Move R2 G2 B3\n\n70) wil: Build G1 B3\n\n71) Trydnt: Attack Y1 B3\n\n72) wil: Build G2 B3\n\n73) Trydnt: Attack G2 B3\n\n74) wil: S G3 Wil\nB G2 B3\nB G3 Wil\nB G3 Wil\nC B3 G\n\n75) Trydnt: Sacrifice B2 G3\nTrade R2 G2 B3\nTrade Y1 G1 B3\n\n76) wil: T G3 Y3 Wil\n\n77) Trydnt: Sacrifice Y2 G2\nMove G2 B3 Wil\nMove G1 B3 Wil\nCatastrophe Wil G\n\n78) wil: T Y3 G3 Wil\n\n79) Trydnt: Build B1 G2\n\twil: Nice\n\n80) wil: Build G1 Wil\n\n81) Trydnt: Build B2 G2\n\n82) wil: Build G1 Wil\n\n83) Trydnt: Build Y1 G3\n\n84) wil: T G1 Y1 Wil\n\n85) Trydnt: Move Y3 G3 G2\n\n86) wil: M Y1 Wil G3\n\n87) Trydnt: Build Y2 G3\n\n88) wil: Build Y2 G3\nCatastrophe G3 Y\n\n89) Trydnt: Discover B2 G2 G1 G1\n\n90) wil: Build G1 Wil\n\n91) Trydnt: Trade Y3 G3 Trydnt\n\n92) wil: D G1 Wil G3 G3\n\n93) Trydnt: Build G2 Trydnt\n\n94) wil: Sacrifice G3 Wil\nBuild G2 G3\nBuild G3 Wil\nBuild R1 Wil\n\n95) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 G2\nBuild B2 G1\n\n96) wil: Discover R1 Wil Y3 Y3\n\n97) Trydnt: Discover B1 G2 Y3 Y33\n\n98) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 Wil\nBuild R2 Y3\n\n99) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B2 G2\nBuild B3 Y33\n\n100) wil: Discover R1 Y3 Y2 Y2\n\n101) Trydnt: Trade B3 R3 Y33\n\n102) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R3 Y3\nBuild R3 Y2\n\n103) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B3 G1\nBuild B3 Y33\n\n104) wil: Trade R2 Y2 Wil\n\n105) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 G2\nBuild Y1 G2\n\n106) wil: Build R2 Wil\n\n107) Trydnt: Move Y1 G2 G1\n\n108) wil: Move R1 Wil G3\n\n109) Trydnt: Move Y1 G1 Y33\n\n110) wil: Move Y2 Wil G3\n\n111) Trydnt: Move B1 G2 Y33\n\n112) wil: Move G1 G3 Y2\n\n113) Trydnt: Sacrifice Y1 G2\nMove B3 G1 G3\n\n114) wil: Move R3 Y3 G1\n\n115) Trydnt: Sacrifice R3 Y33\nAttack G2 G3\nAttack Y2 G3\nAttack R1 G3\n\n116) wil: Build R3 G1\n\n117) Trydnt: Sacrifice Y3 G2\nMove B1 Y33 Wil\nMove B1 Y33 Wil\nMove Y1 Y33 Wil\n\n118) wil: Sacrifice R3 G1\nAttack Y1 Wil\nAttack B2 G1\nAttack B2 G1\n\n119) Trydnt: Sacrifice B2 G2\nTrade B1 Y1 Wil\nTrade B3 Y3 G3\n\n120) wil: Discover Y1 Wil B3 B3\n\n121) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B1 Wil\nBuild B2 Wil\n\n122) wil: Move G1 Y2 Trydnt\n\n123) Trydnt: Catastrophe Wil B\nSacrifice Y3 G3\nMove G2 Trydnt Wil\nMove G2 G3 Wil\nMove B3 Y33 Wil\nCatastrophe Wil G\n\n124) wil: Trade B2 G2 G1\n\n125) Trydnt: Sacrifice R1 G2\nAttack R2 Wil\n\n\twil: good game!\n\nHomeworlds Online (SDG# 33688)\nStarted: 2018.1.17, Ended: 2018.1.21\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n\nHomeworlds Online (SDG# 33698)\nVariants: "Hard time"\nStarted: 2018.1.19, Ended: 2018.1.30\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R2 G3 *\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 Y1 Wil\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: B Y1 Wil\n\n8) Trydnt: Build R1 Trydnt\n\n9) wil: Trade Y1 R1 Wil\n\n10) Trydnt: Discover R1 Trydnt Y3 Y3\n\n11) wil: Discover R1 Wil G3 G3\n\n12) Trydnt: Build R2 Trydnt\n\n13) wil: B Y1 Wil\n\n14) Trydnt: Discover R2 Trydnt Y3 Y3ee\n\n15) wil: Move Y1 Wil G3\n\n16) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y3\nBuild R3 Y3ee\nBuild R3 Trydnt\n\n17) wil: Build R3 G3\n\n18) Trydnt: Trade R3 G3 Trydnt\n\n19) wil: Discover Y1 Wil R3 R3\n\n20) Trydnt: Build G1 Trydnt\n\n21) wil: Build Y2 G3\n\n22) Trydnt: Trade G1 B1 Trydnt\n\n23) wil: Build G1 Wil\n\n24) Trydnt: Move B1 Trydnt Y3ee\n\n25) wil: Build Y2 G3\n\n26) Trydnt: Build G1 Trydnt\n\n27) wil: Move Y2 G3 Wil\n\n28) Trydnt: Move G1 Trydnt Y3ee\n\n29) wil: Build Y2 G3\n\n\nHomeworlds Online (SDG# 33702)\nVariants: "Hard time"\nStarted: 2018.1.19, Ended: 2018.2.15\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) wil: H B2 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) wil: T G1 R1 Wil\n\n7) Trydnt: Build R2 Trydnt\n\n8) wil: Build R2 Wil\n\n9) Trydnt: Build R2 Trydnt\n\n10) wil: Trade R2 Y2 Wil\n\n11) Trydnt: Discover R2 Trydnt Y1 Y1\n\n12) wil: D R1 Wil G3 G3\n\n13) Trydnt: Move R2 Y1 G3\n\n14) wil: Build R2 G3\n\n15) Trydnt: Attack R2 G3\n\n16) wil: Build R3 G3\n\n17) Trydnt: Build R3 Trydnt\nCatastrophe G3 R\n\twil: Got my resume down to 6 pages...and now made it 3...double sided F convention. Want a job I can walk to, applied at moms, might just apply at home depot!!\n\n18) wil: Build Y1 Wil\n\tTrydnt: If you're applying to jobs like that you should probably prioritize and get your resume down to 1 page single sided. They just wont read much more than that\n\n19) Trydnt: Trade R1 Y1 Trydnt\n\twil: lol... those are for people that don't have a history....everyone reads my resume\r\n\n\twil: Including professional resume writers who give the same 1 page advice adnauseum....they all go...two many pages and then go...wow.\n\n20) wil: Trade Y1 B1 Wil\n\twil: this game is now yours to lose...you've already won\n\n21) Trydnt: Build R1 Trydnt\n\n22) wil: Build B1 Wil\n\n23) Trydnt: Trade R2 B2 Trydnt\n\n24) wil: Trade B1 R1 Wil\n\n25) Trydnt: Build R2 Trydnt\n\n26) wil: Build R2 Wil\n\n27) Trydnt: Discover R2 Trydnt Y1 Y1\n\n28) wil: Discover R1 Wil Y3 Y3\n\n29) Trydnt: Move R2 Y1 Y3\n\n30) wil: S G3 Wil\nB R2 Y3\nB R3 Y3\nB R3 Wil\nC Y3 R\n\n31) Trydnt: Build B1 Trydnt\n\n32) wil: T R3 G3 Wil\n\n33) Trydnt: Discover R3 Trydnt Y1 Y1\n\twil: Same statement as other game\n\n34) wil: Discover R2 Wil Y3 Y3\n\n35) Trydnt: Discover B2 Trydnt G1 G1\n\n36) wil: B G1 Wil\n\n37) Trydnt: Move Y1 Trydnt G1\n\n38) wil: B Y1 Wil\n\n39) Trydnt: Build Y2 G1\n\n40) wil: D Y1 Wil G3 G3\n\n41) Trydnt: Move Y2 G1 G3\n\n42) wil: B Y3 G3\n\n43) Trydnt: Build Y3 G1\n\n44) wil: Move Y1 G3 G1\n\n45) Trydnt: Discover Y1 G1 B3 B3\n\n46) wil: Trade G1 R1 Wil\n\n47) Trydnt: Discover Y2 G3 R2 R2\n\n48) wil: Move R1 Wil G3\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y1\nBuild R3 Trydnt\nBuild B1 G1\n\n50) wil: Build R3 G3\n\n51) Trydnt: Trade R3 G3 Trydnt\n\n52) wil: Move R1 G3 Y1\n\n53) Trydnt: Sacrifice R2 Y1\nAttack R1 Y1\nAttack Y1 G1\n\n54) wil: Build G1 Wil\n\n55) Trydnt: Move R3 Y1 Y3\n\n56) wil: Discover R2 Y3 G1 B1\n\n57) Trydnt: Move B1 G1 Y3\n\n58) wil: Discover G1 Wil B3 R3\n\n59) Trydnt: Build G2 Trydnt\n\n60) wil: Build R2 B1\n\n61) Trydnt: Sacrifice G2 Trydnt\nBuild R3 Y1\nBuild B2 Y3\n\n62) wil: M B1 Wil G3\n\n63) Trydnt: Move R3 Y1 R3\n\n64) wil: B G2 Wil\n\n65) Trydnt: Attack G1 R3\n\n66) wil: Move G2 Wil B3\n\n67) Trydnt: Sacrifice Y3 G1\nMove B1 Y3 Wil\nMove B2 Y3 Wil\nMove B2 G1 Y3\n\n68) wil: Build Y3 G3\n\n69) Trydnt: Move B2 Y3 Wil\nCatastrophe Wil B\n\n70) wil: S Y3 G3\nM Y2 Wil Trydnt\nM B1 G3 Y1\nM B1 Y1 Trydnt\n\n71) Trydnt: Move R1 Trydnt Wil\n\n72) wil: S G2 B3\nB B1 Trydnt\nB Y3 Trydnt\nC Trydnt B\n\twil: Good game\n\n73) Trydnt: Sacrifice Y2 R2\nMove R3 R3 Wil\nMove R3 Y3 Wil\nCatastrophe Wil R\n\n\twil: You are starting to get the hang of it!\n\nHomeworlds Online (SDG# 33755)\nStarted: 2018.2.5, Ended: 2018.2.14\nParticipants: eliscinsky (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\teliscinsky: Good Luck wil, not that I think you'll need it. I'm truly a novice. LOL \n\n2) eliscinsky: Homeworld B1 Y2 G3\n\twil: It takes a while to get the nuance of this game...you learn by losing...not winning!\n\n3) wil: Build G1 Wil\n\teliscinsky: Yes I have been "learning" a lot. :)\n\twil: oh jeez...another short universe..\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) wil: Trade G1 B1 Wil\n\n6) eliscinsky: Trade G1 R1 Eliscinsky\n\n7) wil: Build B1 Wil\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) wil: D B1 Wil Y3 Y3\n\n10) eliscinsky: Trade G1 Y1 Eliscinsky\n\n11) wil: B G1 Wil\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) wil: Build B2 Wil\n\n14) eliscinsky: Build R1 Eliscinsky\n\n15) wil: T B2 R2 Wil\n\n16) eliscinsky: Move R1 Eliscinsky Y3\n\n17) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n18) eliscinsky: Attack B1 Y3\n\teliscinsky: WOW, cool move!\n\n19) wil: Sacrifice R2 Wil\nAttack R1 Y3\nAttack B1 Y3\n\n20) eliscinsky: Discover Y1 Eliscinsky R3 R3\n\twil: Don't let people monopolize an economy!! \n\n21) wil: Discover B3 Wil G3 G3\n\n22) eliscinsky: Build R1 Eliscinsky\n\n23) wil: B B3 G3\n\n24) eliscinsky: Move R1 Eliscinsky R3\n\n25) wil: Trade B3 R3 G3\n\n26) eliscinsky: Build R2 Eliscinsky\n\n27) wil: B B3 Wil\n\n28) eliscinsky: Trade G1 Y1 Eliscinsky\n\twil: I've now got a big ship factory, and will build size 3s every other turn\n\n29) wil: Trade B3 G3 Wil\n\n30) eliscinsky: Build Y2 Eliscinsky\n\n31) wil: S G3 Wil\nB B3 Wil\nB B3 G3\nB R2 Y3\n\n32) eliscinsky: Sacrifice Y2 Eliscinsky\nMove R2 Eliscinsky R3\nMove R2 R3 Wil\n\n33) wil: Sacrifice R1 Y3\nAttack R2 Wil\n\n34) eliscinsky: Build Y2 Eliscinsky\n\n35) wil: Trade B3 Y3 G3\n\n36) eliscinsky: Move Y2 Eliscinsky R3\n\n37) wil: Build B3 G3\n\n38) eliscinsky: Build Y2 Eliscinsky\n\n39) wil: Sacrifice Y3 G3\nMove B3 G3 Eliscinsky\nMove B3 G3 Eliscinsky\nMove B1 Wil G3\n\n40) eliscinsky: Move Y2 Eliscinsky R3\n\n41) wil: Sacrifice R3 G3\nAttack G3 Eliscinsky\nAttack Y1 Eliscinsky\nAttack R1 Eliscinsky\n\twil: Awesome that you joined the tourney...keep challenging folks and next time it happens you will go a lot further! \n\teliscinsky: WOW! That was a spectacular move. Did NOT see that coming. Thanks for the game, wil. I learned a lot.\n\n\nHomeworlds Online (SDG# 33565)\nVariants: "Hard time"\nStarted: 2018.2.7, Ended: 2018.2.27\nParticipants: Felix (S), Trydnt (N)\nWinner: Felix\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) Felix: Homeworld B2 Y3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Felix: Build G1 Felix\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\tFelix: Have a good game!\n\tTrydnt: And you!\n\n6) Felix: Trade G1 B1 Felix\n\n7) Trydnt: Build Y1 Trydnt\n\n8) Felix: Build B1 Felix\n\n9) Trydnt: Build G1 Trydnt\n\n10) Felix: Discover B1 Felix G1 Out\n\n11) Trydnt: Discover Y1 Trydnt B3 B3\n\n12) Felix: Build B1 Out\n\n13) Trydnt: Build Y1 Trydnt\n\n14) Felix: Build B2 Out\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 B3\nBuild Y2 B3\nBuild Y2 Trydnt\n\n16) Felix: Build B3 Felix\n\n17) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 Trydnt B3 B33\nDiscover Y1 B3 Y2 Y2\n\n18) Felix: Trade B3 Y3 Felix\n\n19) Trydnt: Build Y3 Trydnt\n\n20) Felix: Build B3 Felix\n\n21) Trydnt: Build G1 Trydnt\n\n22) Felix: Trade B3 R3 Felix\n\n23) Trydnt: Trade Y2 G2 B3\n\n24) Felix: Trade B2 Y2 Out\n\tFelix: Good moves!\n\n25) Trydnt: Build G2 B3\n\n26) Felix: Move R3 Felix Out\n\n27) Trydnt: Move G1 Trydnt B33\n\n28) Felix: Move R3 Out B3\n\n29) Trydnt: Sacrifice Y2 B3\nMove G2 B3 Out\nMove G2 B3 Out\n\n30) Felix: Sacrifice Y2 Out\nDiscover B1 Out G3 Rim\nDiscover B1 Out G3 Rom\n\n31) Trydnt: Build G2 B33\n\n32) Felix: Build B2 Rom\n\n33) Trydnt: Sacrifice G2 B33\nBuild Y2 B33\nBuild Y2 B33\n\n34) Felix: B B3 Rim\n\n35) Trydnt: Move Y1 B33 Out\n\n36) Felix: Sacrifice B2 Rom\nTrade Y3 R3 Felix\nTrade B3 Y3 Rim\n\n37) Trydnt: Build G2 B33\n\n38) Felix: Build B2 Rom\n\n39) Trydnt: Trade G2 R2 B33\n\n40) Felix: Build B3 Rim\n\n41) Trydnt: Build G2 Trydnt\n\n42) Felix: Move R3 Felix Out\n\n43) Trydnt: Sacrifice Y1 Out\nDiscover G1 B33 Y1 Y1\n\n44) Felix: Attack G2 Out\n\n45) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Out\nCatastrophe Out G\nBuild G1 Y1\n\n46) Felix: Trade B3 R3 Rim\n\n47) Trydnt: Build G2 Y1\n\n48) Felix: Build B3 Felix\n\n49) Trydnt: Build G2 Trydnt\n\n50) Felix: Move R3 Rim Y2\n\n51) Trydnt: Discover Y1 Y2 R1 R1\n\n52) Felix: Move R3 Y2 B33\n\n53) Trydnt: Sacrifice G2 Trydnt\nBuild R1 B33\nBuild R2 B33\nCatastrophe B33 R\n\n54) Felix: Trade B3 R3 Felix\n\n55) Trydnt: Sacrifice G2 Y1\nBuild G2 Y1\nBuild Y2 R1\n\n56) Felix: Build B3 Rim\n\n57) Trydnt: Move Y2 B33 Y1\n\n58) Felix: Sacrifice Y3 Rim\nMove R3 B3 Trydnt\nMove B3 Rim Trydnt\nMove B2 Rom Trydnt\n\n59) Trydnt: Attack R3 Trydnt\n\n60) Felix: Sacrifice R3 Felix\nAttack R3 Trydnt\nAttack Y3 Trydnt\nAttack G1 Trydnt\n\n\tFelix: Good game!\n\tTrydnt: haha lots of trouble from the start. Well played!\n\tFelix: You too! I'm definitely seeing improvement, so keep playing!\n\nHomeworlds Online (SDG# 33699)\nStarted: 2018.2.7, Ended: 2018.2.13\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H B1 G2 Y3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n\nHomeworlds Online (SDG# 33704)\nVariants: "Hard time"\nStarted: 2018.2.7, Ended: 2018.2.26\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B1 Y1 G3 *\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Trade G3 R3 Wil\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: Build G1 Wil\n\n8) Trydnt: Build R1 Trydnt\n\n9) wil: Trade G1 B1 Wil\n\n10) Trydnt: Trade R1 B1 Trydnt\n\n11) wil: Build G1 Wil\n\n12) Trydnt: Build R1 Trydnt\n\n13) wil: Trade G1 Y1 Wil\n\n14) Trydnt: Discover B1 Trydnt G1 G1\n\n15) wil: B B2 Wil\n\n16) Trydnt: Build B2 G1\n\n17) wil: D B1 Wil G3 G3\n\n18) Trydnt: Trade B1 Y1 G1\n\n19) wil: Build G1 Wil\n\n20) Trydnt: Move B2 G1 G3\n\n21) wil: Build B1 G3\n\n22) Trydnt: Trade B2 R2 G3\n\n23) wil: B B2 G3\n\n24) Trydnt: Attack B2 G3\n\n25) wil: B B3 G3\n\n26) Trydnt: Build Y2 G1\nCatastrophe G3 B\n\n27) wil: Build B1 Wil\n\n28) Trydnt: Sacrifice Y2 G1\nMove R2 G3 Wil\nMove R1 Trydnt Wil\n\n29) wil: Sacrifice R3 Wil\nAttack R2 Wil\nAttack R1 Wil\nPass\n\twil: Lol what the helll\n\n30) Trydnt: Build G2 Trydnt\n\n31) wil: D B2 Wil G3 G3\n\n32) Trydnt: Build Y2 G1\n\n33) wil: Build G2 Wil\n\n34) Trydnt: Move G2 Trydnt Wil\nCatastrophe Wil G\n\n35) wil: Build B1 G3\n\n36) Trydnt: Build Y2 G1\n\n37) wil: Build B2 G3\n\n38) Trydnt: Discover Y2 G1 G3 G33\n\n39) wil: Trade B2 Y2 G3\n\n40) Trydnt: Build Y3 G33\n\n41) wil: Build Y3 G3\n\n42) Trydnt: Sacrifice Y2 G33\nMove Y1 G1 G3\nMove Y2 G1 G3\nCatastrophe G3 Y\n\n43) wil: Build B2 G3\n\n44) Trydnt: Build R1 Trydnt\n\n45) wil: Trade R1 G1 Wil\n\n46) Trydnt: Discover Y3 G33 G2 G2\n\n47) wil: Build B3 Wil\n\twil: You found the best way out of that...you almost let me catch back upto even!\r\n\n\twil: I can't believe I am getting back into this game!\n\n48) Trydnt: Move Y3 G2 G3\n\twil: I am still alive!!\n\n49) wil: Discover B1 Wil Y2 Y2\n\tTrydnt: It's an interesting game for sure\n\n50) Trydnt: Sacrifice R1 Trydnt\nAttack B2 G3\n\n51) wil: Sacrifice G1 Wil\nBuild B3 Y2\n\twil: I just can't believe you let me get a 3!!\n\n52) Trydnt: Trade B2 R2 G3\n\n53) wil: Move B1 Y2 G3\n\twil: I was torn between this and sacking the B2 and changing the other two to yellow...\n\n54) Trydnt: Attack B2 G3\n\n55) wil: Build B2 G3\nCatastrophe G3 B\n\n56) Trydnt: Build G1 Trydnt\n\n57) wil: Trade B3 G3 Y2\n\n58) Trydnt: Trade G1 B1 Trydnt\n\n59) wil: Build G1 Y2\n\twil: again couldn't decide...s r2 and attack r2 and b2 or ...dang it again the other way would have been better\n\n60) Trydnt: Build G1 Trydnt\n\n61) wil: Discover Y1 Wil G2 G2\n\n62) Trydnt: Build R1 G3\n\n63) wil: Move G1 Y2 Wil\n\n64) Trydnt: Move R2 G3 G2\n\n65) wil: Discover Y1 G2 G1 G1\n\n66) Trydnt: Build R1 G3\n\n67) wil: Build G2 Wil\n\n68) Trydnt: Move R1 G3 Wil\n\n69) wil: Attack R1 Wil\n\n70) Trydnt: Move R1 G3 Wil\n\n71) wil: Move R1 Wil Y2\n\n72) Trydnt: Trade R1 B1 Wil\n\n73) wil: Trade B3 Y3 Wil\n\n74) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Wil\n\n75) wil: Build G1 Wil\n\n76) Trydnt: Move B1 Trydnt Wil\nCatastrophe Wil B\n\n77) wil: Move G1 Wil Trydnt\n\twil: Youse is beingst a pest.\n\n78) Trydnt: Trade G3 B3 Trydnt\n\tTrydnt: I learned from the best\n\n79) wil: Build G2 Wil\n\twil: Who has been teachin you?\r\n\n\n80) Trydnt: Attack G1 Trydnt\n\n81) wil: Build G3 Y2\n\n82) Trydnt: Build B1 Trydnt\n\n83) wil: Discover G2 Wil Y2 Why2\n\n84) Trydnt: Build Y1 G3\n\n85) wil: Sacrifice G3 Y2\nBuild G3 Y2\nBuild Y2 G1\nBuild R1 Y2\n\n86) Trydnt: Move Y3 G3 Wil\n\twil: lol...put it in my homeworld for a minute...mistakes you'd not make in a live game\n\twil: There was a 9 minute window for the slaughter...whew.\n\n\twil: lol...well that proves I should have done the other move...nice!\r\n\n\twil: all three of my choices have a winning response from your side...good game!\n\tTrydnt: in answer to your previous question... self taught haha\n\tTrydnt: the short universe is very fun though. completely changes the game\n\twil: And it isn't a shorter game... being able to play here has been handy.. It was almost the only way to find people to play... for a while I had somebody nearby who would play 3-5 games a night...but he moved away... so I only now get in a few games a week.. btw, you should be in the next tourney\n\tTrydnt: Haha yeah I miss our live games it's not the same here. but yeah it was interesting having to move out to build up forces so you couldn't just move straight in and blow it all up\n\nHomeworlds Online (SDG# 33759)\nVariants: "Hard time"\nStarted: 2018.2.7, Ended: 2018.2.14\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Felix: Homeworld B1 Y2 G3\n\n3) wil: Build G1 Wil\n\tFelix: At least it will be over quickly :)\n\twil: Idk if short universe is over any quicker\r\n\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 B1 Wil\n\tFelix: It all depends on how quickly I make mistakes. :)\n\n6) Felix: Trade G1 B1 Felix\n\n7) wil: B B2 Wil\n\n8) Felix: Build B2 Felix\n\n9) wil: Trade B2 Y2 Wil\n\n10) Felix: Discover B2 Felix G3 Out\n\n11) wil: Move B1 Wil Out\n\n12) Felix: Trade B2 R2 Out\n\n13) wil: Build B2 Out\n\n14) Felix: Attack B2 Out\n\twil: I should learn to think things out...but I love experimentation\n\n15) wil: B B2 Out\n\tFelix: I enjoy it too! Experimentation has lost me many games.\n\twil: Lol this one went very ba\n\n16) Felix: Sacrifice R2 Out\nAttack B2 Out\nAttack B1 Out\n\n17) wil: B Y1 Wil\n\twil: Lol\n\n18) Felix: Build B3 Felix\n\twil: I should. Resign. But may just take my beating!\n\n19) wil: T G3 B3 Wil\n\tFelix: You never know! I frequently make mistakes.\n\twil: I would be appreciative\n\n20) Felix: Trade B2 Y2 Out\n\n21) wil: Trade B3 R3 Wil\n\n22) Felix: Move Y2 Out Wil\nCatastrophe Wil Yellow\n\n\twil: no use taking up your time...now I have to play mneme in the tourney\n\tFelix: Ooh, good luck to you! I'm a bit nervous about that game myself, if I get there.\n\nHomeworlds Online (SDG# 33562)\nVariants: "Unrated"\nStarted: 2018.2.11, Ended: 2018.3.15\nParticipants: Orl (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) Orl: Homeworld B2 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Orl: Build G1 Orl\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Orl: Trade G1 R1 Orl\n\n7) Trydnt: Build R2 Trydnt\n\n8) Orl: Build R2 Orl\n\n9) Trydnt: Build R2 Trydnt\n\n10) Orl: Trade R2 Y2 Orl\n\n11) Trydnt: Discover R2 Trydnt G1 G1\n\n12) Orl: Build G1 Orl\n\n13) Trydnt: Trade R1 B1 Trydnt\n\n14) Orl: Discover G1 Orl Y3 Y3\n\n15) Trydnt: Move B1 Trydnt G1\n\n16) Orl: Build G1 Y3\n\n17) Trydnt: Build G2 Trydnt\n\n\nHomeworlds Online (SDG# 33775)\nVariants: "Hard time"\nStarted: 2018.2.14, Ended: 2018.3.1\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: wil\n\n1) Draw5PlayAll: Pass\n\n2) wil: Homeworld B2 Y1 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\twil: lol...passes huh? \n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) wil: T G1 R1 Wil\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) wil: Build R1 Wil\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) wil: Build R2 Wil\n\tDraw5PlayAll: So you wanted to get #1 on ladder...\n\twil: Been there a number of times... I just like to play games...up against the probable winner in the tourney next...\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) wil: Discover R1 Wil Y3 Y3\n\tDraw5PlayAll: Who all is still standing anyway?\n\twil: It boiled down to 8 of us...and all but two are left in that... I'd have to look. just a couple tiers before the final best outta three from the top two...\n\n13) Draw5PlayAll: Discover Y2 Draw5playall G2 G2\n\n14) wil: Discover R2 Wil Y3 Why3\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 G2\nBuild Y2 G2\nBuild Y3 Draw5playall\n\n16) wil: Sacrifice G3 Wil\nBuild R2 Y3\nBuild R2 Why3\nBuild R3 Wil\n\n17) Draw5PlayAll: Trade Y3 R3 Draw5playall\n\twil: so few moves so many mistakes...I gotta set up a board so I don't commit to the move.. dag nabbit.\n\n18) wil: Trade R3 G3 Wil\n\n19) Draw5PlayAll: Discover Y2 G2 G1 G1\n\n20) wil: Move R2 Y3 G2\n\n21) Draw5PlayAll: Sacrifice Y2 G2\nDiscover Y2 G2 B3 B3\nDiscover Y1 Draw5playall G2 Idareyou\n\n22) wil: Build R3 Wil\n\n23) Draw5PlayAll: Build Y2 Idareyou\n\n24) wil: Trade R3 Y3 Wil\n\n25) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\twil: You should have joined the tourney... \n\twil: It just blends in with playing these challenges...and guaranteed you play a herd of games to start in the round robin before you even start the brackets.\n\tDraw5PlayAll: Nooooooooooo\n\n26) wil: Sacrifice Y3 Wil\nMove R1 Y3 G2\nMove R1 G2 Draw5playall\nMove R2 G2 Draw5playall\nCatastrophe Draw5playall R\n\n27) Draw5PlayAll: Move Y2 G1 Draw5playall\n\tDraw5PlayAll: I at least thought I could hold the ladder longer than THIS!\n\n28) wil: Move G3 Wil Draw5playall\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\twil: one never knows... it is like billygoat hill...soon as you get here everyone wants to knock you off. \r\n\n\twil: I'm impatient...you may yet win!\n\n30) wil: Trade G3 R3 Draw5playall\n\n\tDraw5PlayAll: That is an easier way.\n\nHomeworlds Online (SDG# 33768)\nVariants: "Unrated"\nStarted: 2018.2.15, Ended: 2018.3.18\nParticipants: Trydnt (S), zeder (N)\nWinner: Trydnt\n\n1) zeder: Homeworld Y2 B3 G3\n\n2) Trydnt: Homeworld B2 R1 G3\n\n3) zeder: Build G1 Zeder\n\n4) Trydnt: Build G1 Trydnt\n\n5) zeder: Trade G1 B1 Zeder\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) zeder: Build G1 Zeder\n\n8) Trydnt: Build G1 Trydnt\n\n9) zeder: Trade G1 Y1 Zeder\n\n10) Trydnt: Trade G1 Y1 Trydnt\n\n11) zeder: Build G1 Zeder\n\n12) Trydnt: Build Y1 Trydnt\n\n13) zeder: Build Y2 Zeder\n\n14) Trydnt: Build Y2 Trydnt\n\n15) zeder: Discover Y2 Zeder G1 Cribbage\n\n16) Trydnt: Trade Y1 R1 Trydnt\n\n17) zeder: Discover Y2 Cribbage G3 Gin\n\n18) Trydnt: Move Y2 Trydnt Gin\n\n19) zeder: Discover Y2 Gin G1 Cribbage\n\n20) Trydnt: Build R1 Trydnt\n\n21) zeder: Trade G3 R3 Zeder\n\n22) Trydnt: Move R1 Trydnt Gin\n\n23) zeder: Build R2 Zeder\n\n24) Trydnt: Move B1 Trydnt Gin\n\n25) zeder: Trade R3 G3 Zeder\n\n26) Trydnt: Build R2 Gin\n\n27) zeder: Move R2 Zeder Cribbage\n\n28) Trydnt: Discover R2 Gin B1 B1\n\n29) zeder: Move B1 Zeder Cribbage\n\n30) Trydnt: Build B2 Gin\n\n\nHomeworlds Online (SDG# 33687)\nVariants: "Unrated"\nStarted: 2018.2.17, Ended: 2018.2.17\nParticipants: wil (S), Gibsi (N)\nWinner: wil\n\n1) Gibsi: Homeworld B1 Y2 G3\n\n\twil: What is up with these... I didn't even notice them come up?\n\nHomeworlds Online (SDG# 33639)\nVariants: "Unrated, Hard time"\nStarted: 2018.2.17, Ended: 2018.2.17\nParticipants: Gibsi (S), wil (N)\nWinner: wil\n\n\twil: scratching my head?\n\nHomeworlds Online (SDG# 33803)\nStarted: 2018.2.21, Ended: 2018.2.26\nParticipants: mneme (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) mneme: Homeworld R1 G3 B3\n\twil: I'd say good luck...but we both know it is I who needs it!\n\twil: Have a great game...hope I can challenge you a tad.\n\n3) wil: Build G1 Wil\n\tmneme: We both need it! We'll see how things go! And good luck! (also, as I prefer in non-random games, ganbatte!)\r\n\n\tmneme: Still, I'm going second which I admit is my favored positon.\n\n4) mneme: Build B1 Mneme\n\tmneme: Helps if I don't accidentally make a small universe, though.\n\twil: Second is best...I wanted to pass...but I see that as bad form...the computer flips the coin.\n\n5) wil: Trade G1 R1 Wil\n\n6) mneme: Trade B1 Y1 Mneme\n\tmneme: pass means I could force a tie if I wanted to. Not sure what that does for tournament, though.\r\n\n\n7) wil: Build R1 Wil\n\twil: what is the rule on back and forth for ties?\r\n\n\tmneme: all pass = tie\r\n\n\n8) mneme: Build Y1 Mneme\n\n9) wil: Build R2 Wil\n\twil: what about back and forth later in the game?\n\n10) mneme: Build Y2 Mneme\n\n11) wil: Discover R1 Wil G3 G3\n\tmneme: there is no autotie. I've offered ties in homeworlds once maybe because of a cycle, but it usually doesn't happen.\r\n\n\n12) mneme: Discover Y1 Mneme G2 Polyhymnia\n\n13) wil: Discover R2 Wil Y3 Y3\n\n14) mneme: Build Y2 Polyhymnia\n\n15) wil: Move R2 Y3 Polyhymnia\n\n16) mneme: Sacrifice Y1 Polyhymnia\nDiscover Y2 Polyhymnia G1 Erato\n\tBabamots: I think I failed to specify what happens in the event of a tie in the bracket phase. I suppose the most sensible thing would be to just play again.\n\n17) wil: Sacrifice G3 Wil\nBuild R2 Polyhymnia\nBuild R2 G3\nBuild R3 Wil\n\n18) mneme: Build B1 Mneme\n\n19) wil: Trade R3 Y3 Wil\n\n20) mneme: Trade B3 G3 Mneme\n\n21) wil: Build R3 Polyhymnia\n\n22) mneme: Build Y1 Erato\n\n23) wil: Build R3 G3\n\n24) mneme: Build Y2 Erato\n\n25) wil: Move Y3 Wil G3\n\twil: I think you probably made the best of all possible bad moves available.. Unless you have a trick up your sleeve, I think you need me to make some mistake..\n\n26) mneme: Build Y3 Mneme\n\tmneme: We'll see how it goes. I certainly have a considerable numerical disadvantage.\n\n27) wil: Move R3 G3 Erato\n\twil: I was torn between this and sacking the Y3, backing up an R3 into my HW moving the r1 out to a b3 and moving an R2 into your yellows...but I don't have the ability to ponder long...\n\n28) mneme: Sacrifice Y2 Erato\nDiscover Y1 Erato B3 Euterpe\nDiscover Y2 Erato B3 Calliope\n\n29) wil: Build R3 G3\n\n30) mneme: Sacrifice Y2 Mneme\nMove Y2 Calliope Wil\nMove Y1 Euterpe Wil\n\twil: I am so bad at thinking before my move...and do nothing but second guess after my move.\n\n31) wil: Sacrifice Y3 G3\nMove R3 Erato Polyhymnia\nMove R3 Polyhymnia Mneme\nMove R3 Polyhymnia Mneme\n\n32) mneme: Attack R3 Mneme\n\tmneme: That's what I'm counting on. As it were.\n\n33) wil: Sacrifice R3 G3\nAttack R3 Mneme\nAttack G3 Mneme\nAttack Y3 Mneme\n\n\twil: I had figured I needed it more than another y...\n\twil: trying for monopolies is a thing...maintaining them is a challenge. It wasn't my intention...but when you decided to not play follow the leader, that gave me a choice, abandon red and get a yellow before I can't...which meant you just got the first move advantage from second place...or race with you.\n\twil: I was hoping to get to the end and play you in the best of three...feel free to challenge me anytime. I feel you are far better than I and I got lucky early here.\n\tmneme: So much of this game is decided in the opening unless someone makes a mistake (and I did; I shouldn't have let you contorol Red so thoroughly, though there was a period where it was possible your limited movement/growth might have let me turn it around).\r\n\r\n Good luck in the tornament!\n\tmneme: Without the R you wouldn't have been able to win; can't take over my home system as easily when I can cat R in response!\n\twil: quite, and thanx for the game.\n\nHomeworlds Online (SDG# 33631)\nVariants: "Hard time"\nStarted: 2018.2.26, Ended: 2018.3.1\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G1 Y3\n\n2) wil: Homeworld B2 R1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Build Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Trade Y1 R1 Trydnt\n\n8) wil: Build G1 Wil\n\n9) Trydnt: Build R1 Trydnt\n\n10) wil: Build G1 Wil\n\n11) Trydnt: Build R2 Trydnt\n\n12) wil: Discover G1 Wil Y3 Y3\n\n13) Trydnt: Trade R2 G2 Trydnt\n\n14) wil: Build G2 Wil\n\n15) Trydnt: Sacrifice Y3 Trydnt\nDiscover G2 Trydnt Y2 Y2\nMove G2 Y2 Y3\nMove G2 Y3 Wil\nCatastrophe Wil G\n\n16) wil: Build G1 Y3\n\n17) Trydnt: Build R2 Trydnt\n\tTrydnt: wooahhhhhh haha\n\tTrydnt: have you seen the new star wars? that was like a light speed collision\n\n18) wil: Build G2 Y3\n\twil: lol, wow.\n\n19) Trydnt: Trade R2 G2 Trydnt\n\n20) wil: Move G2 Y3 Wil\n\n21) Trydnt: Discover G2 Trydnt Y2 Y2\n\n22) wil: Move G1 Y3 Y2\n\n23) Trydnt: Discover G2 Y2 B3 B3\n\n24) wil: Move G1 Y2 B3\n\n25) Trydnt: Trade G2 R2 B3\n\n26) wil: Sacrifice G1 B3\nBuild G1 Wil\n\n27) Trydnt: Build R2 Trydnt\n\n28) wil: Build G2 Wil\n\n29) Trydnt: Discover R2 Trydnt Y2 Y2\n\n30) wil: Build G2 Y3\n\n31) Trydnt: Discover R2 Y2 G3 G3\n\n32) wil: Build G3 Y3\n\n33) Trydnt: Build R2 G3\n\n34) wil: Discover G2 Wil Y3 Why3\n\n35) Trydnt: Build R3 Trydnt\n\n36) wil: Sacrifice G3 Y3\nBuild G3 Why3\nBuild G3 Wil\nBuild Y1 Wil\n\n37) Trydnt: Trade R3 Y3 Trydnt\n\n38) wil: Trade G3 R3 Wil\n\n39) Trydnt: Build R3 Trydnt\n\n40) wil: Sacrifice G3 Why3\nBuild G3 Why3\nBuild G3 Wil\nBuild Y2 Wil\n\n41) Trydnt: Sacrifice Y3 Trydnt\nMove R2 B3 Wil\nMove R2 G3 Wil\nCatastrophe Wil R\nMove R3 Trydnt Wil\n\n42) wil: Trade Y1 R1 Wil\n\n43) Trydnt: Sacrifice R2 G3\nAttack G3 Wil\nAttack R1 Wil\n\n44) wil: Trade Y2 R2 Wil\n\n45) Trydnt: Sacrifice R3 Wil\nAttack R2 Wil\nAttack G2 Wil\nAttack G1 Wil\n\n46) wil: Move G1 Y3 Wil\nCatastrophe Wil G\n\n47) Trydnt: Attack Y1 Wil\n\n\twil: good game!\n\tTrydnt: Well played. When are you doing your next game night?\n\nHomeworlds Online (SDG# 33640)\nStarted: 2018.2.26, Ended: 2018.3.7\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\twil: can't stop me! i can't get enough of this game...win or lose!\n\n4) wil: Build G1 Wil\n\n5) ts52: Trade G1 B1 Ts52\n\n6) wil: Trade G1 B1 Wil\n\n7) ts52: Discover B1 Ts52 G3 Kermit\n\twil: there is nothing like looking at the computer and seeing you have 5 moves to make in HW.\n\tts52: Absolutely!\n\n8) wil: Trade B1 Y1 Wil\n\twil: hmmm...you moved out..that changes everything! gonna try this..\n\n9) ts52: Build B1 Kermit\n\n10) wil: Build Y1 Wil\n\n11) ts52: Build B2 Kermit\n\n12) wil: Discover Y1 Wil G2 G2\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) wil: Build Y2 Wil\n\n15) ts52: Build Y2 Kermit\n\twil: dang I love how different every game is... this could go anywhere! I can't wait till someone builds a system where we can pick a game an decide to play/replay again from any move on the board and play what ifs... Or watch an AI play what ifs.\n\tts52: That would be very cool indeed\n\n16) wil: Build Y3 G2\n\n17) ts52: Sacrifice Y2 Kermit\nMove Y2 Kermit G2\nMove Y2 G2 Wil\nCatastrophe Wil Yellow\n\twil: like now for instance...would love to play this three different ways.\n\n18) wil: Move Y1 G2 Wil\n\tts52: Agreed. I'm pretty sure I'll regret that later, but can't resist.\n\n19) ts52: Build B2 Kermit\n\n20) wil: Build Y1 G2\n\n21) ts52: Trade B2 Y2 Kermit\n\n22) wil: Trade Y1 R1 Wil\n\n23) ts52: Trade B1 R1 Kermit\n\twil: ya done good\n\n24) wil: Move Y3 G2 Kermit\n\n25) ts52: Sacrifice Y2 Kermit\nMove R1 Kermit Ts52\nDiscover B1 Kermit G2 Oscar\n\n26) wil: Move Y3 Kermit Oscar\n\n27) ts52: Build B1 Oscar\n\n28) wil: Build Y1 G2\n\n29) ts52: Build B2 Oscar\n\n30) wil: Sacrifice R1 Wil\nAttack B2 Oscar\n\n31) ts52: Build B2 Oscar\nCatastrophe Oscar Blue\n\n32) wil: Move Y3 Oscar Wil\n\n33) ts52: Build G1 Ts52\n\n34) wil: Build Y2 Wil\n\n35) ts52: Build R1 Ts52\n\n36) wil: Discover Y2 Wil Y2 Y2\n\n37) ts52: Trade G1 B1 Ts52\n\n38) wil: Sacrifice G3 Wil\nBuild Y2 Wil\nBuild Y3 Wil\nBuild Y3 G2\n\n39) ts52: Discover R1 Ts52 G3 Kermit\n\twil: \n\tts52: Very interesting.... \n\n40) wil: Trade Y2 G2 Wil\n\n41) ts52: Build R1 Kermit\n\n42) wil: Build G1 Wil\n\n43) ts52: Build R2 Ts52\n\twil: I just gotta make sure you can't get to me now...\n\n44) wil: Build Y2 Wil\n\n45) ts52: Build R2 Ts52\n\n46) wil: Trade G2 R2 Wil\n\n47) ts52: Discover R1 Ts52 G3 Oscar\n\n48) wil: Build R3 Wil\n\n49) ts52: Build B1 Ts52\n\n50) wil: Build R3 Wil\n\n51) ts52: Discover R2 Ts52 B3 Gonzo\n\twil: It is as if I have a chain around your ankle.\n\n52) wil: Trade R2 B2 Wil\n\tts52: It really is...\n\n53) ts52: Move B1 Ts52 Oscar\n\n54) wil: Move R3 Wil Oscar\n\n55) ts52: Build G1 Ts52\n\n56) wil: Attack R1 Oscar\n\n57) ts52: Discover G1 Ts52 B3 Grover\n\n58) wil: Attack B1 Oscar\n\n59) ts52: Move B1 Ts52 Kermit\n\n60) wil: Move Y3 Wil Kermit\n\tts52: Shouldn't be too long now\n\n61) ts52: Build G1 Ts52\n\twil: I am trying to put an end to your suffering\n\twil: It looks like I have quite the wait for the next tourney game...and am guessing you'll be playing bhorner...although in this game nothing is certain as one mistake is easily capitalized on.\n\n62) wil: Build G2 Wil\n\tts52: Yeah, this round is going to take a while. I should probably just resign this game, but I like to play them out.\n\twil: The possiblity I would make a mistake exists. Of course finish if you like! Resigning is the choice of the player... and when you are in a bad position, simply making moves to torment the opponent are gratifying... I'll blow up half a homeworld without a possibility of winning.\r\n\n\n63) ts52: Build G2 Grover\n\n64) wil: Build B2 Oscar\n\n65) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Kermit\nBuild R2 Kermit\n\twil: doomsday machine in place\n\n66) wil: Sacrifice R1 Oscar\nAttack B3 Kermit\n\twil: I was wrong, they weren't in place...i needed that!\n\n67) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Gonzo\nBuild R3 Ts52\n\n68) wil: Sacrifice Y3 G2\nMove B3 Kermit Ts52\nMove B2 Oscar Ts52\nMove B1 Oscar Ts52\nCatastrophe Ts52 B\n\n69) ts52: Move R3 Ts52 Y2\n\twil: blue teams 3, 2, 1... we appreciate your service, your descendants will be rewarded for your loyalty\n\tts52: Very good game. Well played.\n\n70) wil: Sacrifice Y3 Kermit\nMove Y2 Y2 Ts52\nMove Y1 G2 Ts52\nMove Y1 G2 Ts52\nCatastrophe Ts52 Y\n\n\nHomeworlds Online (SDG# 33760)\nVariants: "Hard time"\nStarted: 2018.2.26, Ended: 2018.3.1\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: Homeworld B3 Y1 G3\n\n2) Felix: Homeworld B2 R3 G3\n\twil: enjoy!\n\n3) wil: Build G1 Wil\n\tFelix: Likewise!\n\n4) Felix: Build G1 Felix\n\n5) wil: Trade G1 B1 Wil\n\n6) Felix: Trade G1 Y1 Felix\n\n7) wil: Build B1 Wil\n\n8) Felix: Build Y1 Felix\n\n9) wil: Discover B1 Wil G2 G2\n\n10) Felix: Build Y2 Felix\n\n11) wil: Build B1 Wil\n\n12) Felix: Trade Y2 B2 Felix\n\n13) wil: Discover B1 Wil Y2 Y2\n\n14) Felix: Discover B2 Felix G1 Out\n\n15) wil: Sacrifice G3 Wil\nBuild B2 Y2\nBuild B3 G2\nBuild B3 Wil\n\n16) Felix: Build Y2 Felix\n\n17) wil: Sacrifice B2 Y2\nTrade B3 Y3 G2\nTrade B3 G3 Wil\n\n18) Felix: Move Y1 Felix Out\n\tFelix: Nice move.\n\n19) wil: Build G1 Wil\n\n20) Felix: Discover Y1 Felix G1 Ingot\n\n21) wil: Build Y2 G2\n\n22) Felix: Build Y3 Out\n\n23) wil: Sacrifice G3 Wil\nBuild B2 G2\nBuild B3 Wil\nBuild B3 Y2\n\n24) Felix: Sacrifice Y3 Out\nMove B2 Out G2\nMove B2 G2 Wil\nCatastrophe Wil Blue\nMove Y2 Felix Wil\n\n25) wil: Move B3 Y2 Wil\n\n26) Felix: Build G2 Felix\n\twil: nice game!\n\n\tFelix: Thanks! I wasn't expecting such a turnaround. It seemed you had the upper hand. \n\nHomeworlds Online (SDG# 33761)\nStarted: 2018.2.26, Ended: 2018.3.27\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n1) MobyNostromo: H B1 G2 Y3\n\tMobyNostromo: Have fun!!\n\n2) wil: Homeworld Y3 B2 G3\n\twil: tis my intent when I play games...thanx...u2\n\twil: tis my intent when I play games...thanx...u2\n\n3) MobyNostromo: B Y1 Mobynostromo\n\tMobyNostromo: :)\n\n4) wil: Build G1 Wil\n\n5) MobyNostromo: B Y1 Mobynostromo\n\n6) wil: Build G1 Wil\n\n7) MobyNostromo: T Y1 G1 Mobynostromo\n\n8) wil: Trade G1 B1 Wil\n\n9) MobyNostromo: B Y1 Mobynostromo\n\n10) wil: Trade G1 Y1 Wil\n\n11) MobyNostromo: D Y1 Mobynostromo G3 Ggg\n\n12) wil: Build Y2 Wil\n\n13) MobyNostromo: B Y2 Mobynostromo\n\n14) wil: Discover Y1 Wil B1 B1\n\n15) MobyNostromo: T Y1 G1 Mobynostromo\n\n16) wil: Build B2 Wil\n\n17) MobyNostromo: T Y2 B2 Mobynostromo\n\n18) wil: Discover B1 Wil G1 Years\n\n19) MobyNostromo: M B2 Mobynostromo Ggg\n\n20) wil: Build B3 Years\n\n21) MobyNostromo: B B3 Ggg\n\n22) wil: Trade B1 R1 Years\n\n23) MobyNostromo: D B2 Ggg G2 Bb\n\n24) wil: Build R1 Years\n\n25) MobyNostromo: B B1 Bb\n\n26) wil: Build B3 Years\n\n27) MobyNostromo: B Y1 Ggg\n\n28) wil: Trade B3 Y3 Years\n\n29) MobyNostromo: T Y1 R1 Ggg\n\n30) wil: Build B3 Years\n\n31) MobyNostromo: B Y1 Mobynostromo\n\n32) wil: Build G2 Wil\n\n33) MobyNostromo: B Y2 Ggg\n\n34) wil: Sacrifice Y2 Wil\nMove G2 Wil B1\nDiscover B3 Years G3 G3\n\n35) MobyNostromo: T Y3 R3 Mobynostromo\n\n36) wil: Build Y2 Years\n\n37) MobyNostromo: D G1 Mobynostromo Y3 Auburn\n\n38) wil: Move R1 Years G3\n\n39) MobyNostromo: B Y2 Mobynostromo\n\n40) wil: Sacrifice G2 B1\nBuild G2 Wil\nBuild R2 G3\n\n41) MobyNostromo: M Y1 Ggg Bb\n\n42) wil: Build R2 Years\n\n43) MobyNostromo: M B2 Bb B1\n\n44) wil: Discover R1 Years R3 R3\n\n45) MobyNostromo: M B1 Bb B1\n\n46) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R2 R3\nBuild R3 Years\n\n47) MobyNostromo: S Y2 Mobynostromo\nM B2 B1 Wil\nM B1 B1 Wil\nC Wil B\n\n48) wil: Sacrifice Y3 Years\nMove R3 Years G3\nMove B3 G3 Mobynostromo\nMove R3 G3 Mobynostromo\n\n49) MobyNostromo: M G1 Auburn Mobynostromo\n\twil: and if my math is right...\n\n50) wil: Sacrifice R3 Mobynostromo\nAttack R3 Mobynostromo\nAttack G1 Mobynostromo\nAttack G1 Mobynostromo\n\n51) MobyNostromo: S Y2 Ggg\nM R1 Ggg Bb\nM R1 Bb R3\nC R3 R\n\twil: my plan was to sack my r2...sbut since you left my R3 available.... My other choice with that sneaky move of yours...would have been to send in my g2 to prevent the bluebird...and catastrophe your greens... interesting twists..\n\tMobyNostromo: Homeworlds is likely the game that most invites creative thinking. I am always spell-bound by the various strategies and possibilities in a given game. \r\n\r\nNice job!!\n\n52) wil: Attack Y1 Mobynostromo\n\n\tMobyNostromo: {I just wanted to blow something up before losing.) :)\n\twil: That is a thing!\n\nHomeworlds Online (SDG# 33711)\nVariants: "Unrated"\nStarted: 2018.2.27, Ended: 2018.3.19\nParticipants: dlwillson (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) dlwillson: H Y3 B1 G3\n\n3) wil: Build G1 Wil\n\n4) dlwillson: B G1 Dlwillson\n\twil: there is nothing like looking at the computer and seeing you have 5 moves to make in HW.\n\tdlwillson: Hi Wil! Let's hope I can keep up this time, and not time out!\n\n5) wil: Trade G1 B1 Wil\n\twil: If you are too busy I can cancel... I just like to play. \n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) wil: Build B2 Wil\n\tdlwillson: Me too! I just get focused on work and forget to play.\n\n8) dlwillson: B B2 Dlwillson\n\n9) wil: Discover B1 Wil G3 G3\n\n10) dlwillson: T B1 R1 Dlwillson\n\n11) wil: Build B1 G3\n\n12) dlwillson: B R1 Dlwillson\n\n13) wil: Build B3 Wil\n\n14) dlwillson: B B3 Dlwillson\n\n15) wil: Build B3 G3\n\n16) dlwillson: T B3 Y3 Dlwillson\n\n17) wil: Sacrifice B2 Wil\nTrade B3 Y3 G3\nTrade B3 R3 Wil\n\n18) dlwillson: D R1 Dlwillson B2 Sea\n\n19) wil: Build B3 G3\n\n20) dlwillson: D B2 Dlwillson G2 Field\n\n21) wil: Move B3 G3 Field\n\n22) dlwillson: Build B3 Field\n\n23) wil: Build B3 Field\nCatastrophe Field B\n\n24) dlwillson: B G1 Dlwillson\n\n25) wil: Build B2 G3\n\n26) dlwillson: B R1 Dlwillson\n\n27) wil: Move B1 G3 Wil\n\n28) dlwillson: M G1 Dlwillson Sea\n\n29) wil: Build B3 G3\n\n30) dlwillson: M Y3 Dlwillson Sea\n\n31) wil: Trade B3 R3 G3\n\twil: I see why you clock out sometimes...you got it set to expire in 3 days...most are 10 for hardtime\n\n32) dlwillson: Build G1 Dlwillson\n\n33) wil: Build B3 G3\n\n34) dlwillson: B G1 Sea\n\tdlwillson: Yes. I prefer the faster games, but sometimes real life interferes with my gaming. Gr.\r\n\r\nYou're getting pretty far ahead of me. I'd like you to make a big mistake soon, if you don't mind.\n\tdlwillson: I have turned off hard time in my standing challenge, so the other player can choose between waiting to play it out and winning.\n\twil: That is my usual request and nobody ever does it for me (stands arms folded glaring)\n\n35) wil: Discover B3 G3 G2 G2\n\tDraw5PlayAll: The other thing about soft time is that if you go just a little bit over, the opponent may not notice you are out of time and you can come back even if the other person is unmerciful.\n\n36) dlwillson: D G1 Sea B3 Sky\n\twil: I've had people behind for over a month.. I don't care about the win loss record and hate to see people time out on accident because of life... I am here to play the game.\n\n37) wil: Build G2 Wil\n\tdlwillson: People were a month behind and then came back to finish the game?\n\n38) dlwillson: S G3 Dlwillson\nB Y1 Sea\nB G2 Sea\nB G3 Dlwillson\n\twil: sometimes....sometimes it gets to 60 days and I clean it off my board.\n\n39) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B3 G2\nBuild R2 G3\n\twil: been running my queen machine, time to institute the factory before you cut me outta it!\n\n40) dlwillson: M Y1 Sea Sky\n\n41) wil: Sacrifice Y3 G3\nMove R2 G3 G2\nMove B3 G2 Dlwillson\nMove B3 G2 Dlwillson\n\twil: Four moves to mate?...I should have stacked differently and been there by now...but your next move will foil that.\n\n\twil: not the move I anticipated from you.\n\tdlwillson: Nice. I totally missed it. Sleeping at the wheel, here.\n\twil: mistakes in this game that are capitalized on are catastrophic...am waiting for my next game in the tourney and then i have to win 4 outta my next 5 to win...we are down to 5 players and by the time I get to play again it will be down to 4 or maybe even 3.\n\twil: I'd really like to see you, two short, Teeteetee and broccoli commander in the next one.\n\tdlwillson: The timing will have to be a lot tighter. I'd rather lose in three weeks than win in three months.\n\twil: How would that happen? Unless live on site...a game here can take three weeks. I enjoyed the time...insuring I get to play some good games with interested variety of folk. Just watched 'searching for bobby fisher' Even live we'd need a room full of chess clocks.\n\tdlwillson: I'll have to watch that movie. I desperately wish BH would take the place of Chess in the world. It's a much prettier and more interesting game. Easier to carry, too.\n\twil: Chess was my favorite two player full info strategy game until....\n\tdlwillson: I watched Searching for Bobby Fischer. Loved it!\n\nHomeworlds Online (SDG# 33824)\nVariants: "Unrated"\nStarted: 2018.2.27, Ended: 2018.3.8\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G1 Y3\n\n2) dlwillson: H B3 R1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) dlwillson: B G1 Dlwillson\n\n5) Trydnt: Trade Y1 R1 Trydnt\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) Trydnt: Build R2 Trydnt\n\n8) dlwillson: B R2 Dlwillson\n\n9) Trydnt: Build R2 Trydnt\n\n10) dlwillson: T R2 Y2 Dlwillson\n\n11) Trydnt: Discover R2 Trydnt Y2 Y2\n\n12) dlwillson: B R2 Dlwillson\n\n13) Trydnt: Build R3 Trydnt\n\n14) dlwillson: S Y2 Dlwillson\nM R1 Dlwillson Y2\nM R1 Y2 Trydnt\nC Trydnt R\n\n15) Trydnt: Build Y1 Trydnt\n\n16) dlwillson: B R1 Dlwillson\n\n17) Trydnt: Move R2 Y2 Dlwillson\nCatastrophe Dlwillson R\n\n\tdlwillson: GG\r\nOops! :-)\n\nHomeworlds Online (SDG# 33762)\nVariants: "Hard time"\nStarted: 2018.2.27, Ended: 2018.3.1\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n2) wil: Homeworld G2 Y1 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build Y1 Wil\n\tTrydnt: Well that's interesting\n\n5) Trydnt: Build G1 Trydnt\n\twil: experimentation\n\twil: I dislike g in my star\n\n6) wil: Discover Y1 Wil G3 G3\n\n7) Trydnt: Discover G1 Trydnt B2 B2\n\n8) wil: Build Y2 Wil\n\n9) Trydnt: Build G1 Trydnt\n\n10) wil: Discover Y2 Wil B3 B3\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B2\nBuild G2 B2\nBuild G3 Trydnt\n\n12) wil: Build Y2 G3\n\n13) Trydnt: Discover G1 Trydnt B2 B22\n\twil: this one is wierd\n\n14) wil: Build Y2 Wil\n\n15) Trydnt: Build G3 B22\n\n16) wil: Build Y3 G3\n\n17) Trydnt: Trade G3 Y3 B22\n\n18) wil: Trade Y2 B2 B3\n\n19) Trydnt: Sacrifice G3 Trydnt\nBuild G3 B22\nBuild G3 Trydnt\nBuild Y2 B22\n\n20) wil: Sacrifice B2 B3\nTrade Y1 R1 G3\nTrade Y3 B3 Wil\n\n21) Trydnt: Sacrifice Y3 B22\nMove G1 B2 G3\nMove G2 B2 G3\nMove G1 B22 G3\nCatastrophe G3 G\n\n22) wil: Build B1 Wil\n\n23) Trydnt: Sacrifice G3 B22\nBuild Y1 B22\nBuild G1 B2\nBuild G1 B2\n\n24) wil: Build B1 Wil\n\n25) Trydnt: Trade G2 Y2 B2\n\n26) wil: Discover B1 Wil Y3 Y3\n\n27) Trydnt: Sacrifice G3 Trydnt\nBuild Y3 B22\nBuild G2 B2\nBuild G2 Trydnt\n\n28) wil: Discover B1 Wil Y3 Why3\n\n29) Trydnt: Build G3 Trydnt\n\n30) wil: Build B1 Wil\n\n31) Trydnt: Sacrifice Y2 B22\nDiscover G1 B2 B3 B3\nDiscover G1 B2 R3 R3\n\n32) wil: Trade B3 G3 Wil\n\n33) Trydnt: Sacrifice Y3 B22\nMove G1 B3 Wil\nMove G1 R3 Wil\nCatastrophe Wil G\nMove Y1 B22 Wil\n\n\twil: lol good game!\r\n\n\nHomeworlds Online (SDG# 33812)\nStarted: 2018.2.27, Ended: 2018.3.20\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G1 Y3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Trydnt: Build Y1 Trydnt\n\tts52: Have a good game!\n\tTrydnt: And you also!\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade Y1 G1 Trydnt\n\n6) ts52: Build G2 Ts52\n\n7) Trydnt: Build G2 Trydnt\n\tDraw5PlayAll: If only the system let you...\n\n8) ts52: Discover G2 Ts52 B3 Grover\n\n9) Trydnt: Discover G1 Trydnt Y2 Y2\n\n10) ts52: Trade G2 Y2 Grover\n\n11) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Y2\nBuild Y1 Trydnt\n\n12) ts52: Move G1 Ts52 Grover\n\n13) Trydnt: Discover G2 Y2 Y3 Y3\n\n14) ts52: Build G2 Grover\n\n15) Trydnt: Build G2 Y3\n\n16) ts52: Trade G2 R2 Grover\n\n17) Trydnt: Trade Y1 R1 Trydnt\n\n18) ts52: Move R2 Grover Ts52\n\n19) Trydnt: Build Y1 Trydnt\n\n20) ts52: Build Y1 Grover\n\n21) Trydnt: Discover Y1 Trydnt Y2 Y22\n\n22) ts52: Discover Y2 Grover G2 Robin\n\n23) Trydnt: Build Y3 Trydnt\n\n24) ts52: Build G3 Grover\n\n25) Trydnt: Build G3 Y2\n\n26) ts52: Trade G3 R3 Grover\n\n27) Trydnt: Build R1 Trydnt\n\n28) ts52: Build G3 Grover\n\n29) Trydnt: Trade R1 B1 Trydnt\n\n30) ts52: Trade G3 B3 Grover\n\n31) Trydnt: Build G3 Y3\n\n32) ts52: Move B3 Grover Robin\n\n33) Trydnt: Move B1 Trydnt Y2\n\n34) ts52: Build B1 Robin\n\n35) Trydnt: Build R1 Trydnt\n\n36) ts52: Trade B1 R1 Robin\n\n37) Trydnt: Move R1 Trydnt Y2\n\n38) ts52: Build B1 Robin\n\n39) Trydnt: Build R2 Y2\n\n40) ts52: Build B1 Robin\n\n41) Trydnt: Sacrifice Y3 Trydnt\nMove G2 Y3 Robin\nMove G2 Y3 Robin\nMove G3 Y3 Robin\nCatastrophe Robin G\n\n42) ts52: Build G2 Ts52\n\n43) Trydnt: Discover Y1 Y22 G3 G3\n\n44) ts52: Build G2 Grover\n\n45) Trydnt: Build Y2 Trydnt\n\n46) ts52: Trade G1 B1 Grover\n\n47) Trydnt: Move R2 Y2 G3\n\n48) ts52: Discover B1 Grover G2 Robin\n\n49) Trydnt: Move R2 G3 Robin\n\n50) ts52: Trade G2 R2 Ts52\n\n51) Trydnt: Move Y3 Trydnt Robin\n\n52) ts52: Discover R3 Grover G2 Oscar\n\n53) Trydnt: Sacrifice G3 Y2\nBuild Y2 Robin\nBuild Y3 Trydnt\nBuild Y3 Trydnt\n\n54) ts52: Move Y1 Grover Oscar\n\n55) Trydnt: Discover Y3 Trydnt B2 B2\n\n56) ts52: Move R2 Ts52 G3\n\n57) Trydnt: Move Y3 Robin G3\n\n58) ts52: Attack Y1 G3\n\n59) Trydnt: Sacrifice R2 Robin\nAttack R2 G3\nAttack Y1 G3\n\n60) ts52: Build R1 Ts52\n\n61) Trydnt: Move Y3 B2 Grover\n\n62) ts52: Discover R1 Ts52 G3 Kermit\n\n63) Trydnt: Build G1 Y2\n\n64) ts52: Sacrifice G2 Grover\nBuild G2 Ts52\nBuild B1 Robin\n\n65) Trydnt: Sacrifice R2 G3\nAttack B1 Robin\nAttack B1 Robin\n\n66) ts52: Build R2 Ts52\n\n67) Trydnt: Build B2 Y2\n\n68) ts52: Discover R2 Ts52 B3 Gonzo\n\n69) Trydnt: Move B1 Robin G3\n\n70) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\n\n71) Trydnt: Build R3 Y2\n\n72) ts52: Move R3 Ts52 Gonzo\n\n73) Trydnt: Build B2 G3\n\n74) ts52: Move Y1 Oscar Gonzo\n\n75) Trydnt: Move B1 Robin G3\n\tts52: I'm not sure there's much left for me to do. But I'd like to play it out anyway.\n\n76) ts52: Move G2 Ts52 Gonzo\n\n77) Trydnt: Move Y2 Robin Grover\n\tTrydnt: eh you never know. I played against Mr Looney recently and made several silly mistakes that resulted in the universe changing hands on more than one occasion. the game actually ended up being like 4 hours long\n\tTrydnt: a live game that is\n\tts52: Wow. 4 hours? That's a long game.\n\n78) ts52: Build G2 Gonzo\n\tTrydnt: Yeah haha might be a record\n\n79) Trydnt: Sacrifice Y3 Grover\nDiscover G1 Y2 Y3 Y3\nMove Y2 Grover Ts52\nMove Y1 G3 Ts52\n\n80) ts52: Move R2 Ts52 Y3\n\n81) Trydnt: Sacrifice Y3 G3\nMove B1 G3 Ts52\nMove B1 G3 Ts52\nMove B2 G3 Ts52\nCatastrophe Ts52 B\n\n82) ts52: Build Y3 Gonzo\n\n83) Trydnt: Sacrifice Y3 Trydnt\nMove Y2 Trydnt Y2\nMove Y2 Y2 Ts52\nPass\nCatastrophe Ts52 Y\n\n\tts52: Good game! Thanks.\n\tTrydnt: curious, did you see my move ahead of time? I used the g1 as a red herring\n\tts52: Yeah, IIRC you had me dead to rights for a few turns.\n\nHomeworlds Online (SDG# 33813)\nVariants: "Hard time"\nStarted: 2018.2.27, Ended: 2018.3.16\nParticipants: Trydnt (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R3 B2 G3\n\n2) Trydnt: Homeworld B3 G1 Y3\n\n3) Felix: Build G1 Felix\n\n4) Trydnt: Build Y1 Trydnt\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Trydnt: Trade Y1 R1 Trydnt\n\n7) Felix: Build G1 Felix\n\n8) Trydnt: Build R1 Trydnt\n\n9) Felix: Trade G1 R1 Felix\n\n10) Trydnt: Build R2 Trydnt\n\n11) Felix: Build R2 Felix\n\n12) Trydnt: Discover R1 Trydnt G2 G2\n\n13) Felix: Discover R1 Felix G1 Out\n\n14) Trydnt: Trade R1 B1 Trydnt\n\n15) Felix: Build G1 Felix\n\n16) Trydnt: Move B1 Trydnt G2\n\n17) Felix: Build G2 Felix\n\n18) Trydnt: Build B1 G2\n\n19) Felix: Discover G2 Felix B1 Rim\n\n20) Trydnt: Build Y1 Trydnt\n\n21) Felix: Sacrifice G3 Felix\nBuild G2 Rim\nBuild G3 Rim\nBuild G3 Felix\n\n22) Trydnt: Sacrifice Y1 Trydnt\nDiscover B1 G2 G3 G3\n\n23) Felix: Trade G3 Y3 Felix\n\n24) Trydnt: Build B2 G3\n\n25) Felix: Trade G3 Y3 Rim\n\n26) Trydnt: Build B2 G3\n\n27) Felix: Build G3 Felix\n\n28) Trydnt: Build B3 G2\n\n29) Felix: Move Y3 Rim G3\n\n30) Trydnt: Build B3 G2\n\n31) Felix: Sacrifice R2 Felix\nAttack B2 G3\nAttack B2 G3\n\n32) Trydnt: Sacrifice Y3 Trydnt\nMove B1 G2 G3\nMove B3 G2 Rim\nMove B3 G2 Trydnt\nCatastrophe G3 B\n\n33) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Felix\nBuild Y1 G3\n\n34) Trydnt: Sacrifice R2 Trydnt\nAttack G2 Rim\nAttack G2 Rim\n\n35) Felix: Discover G3 Felix B1 Bazoik\n\n36) Trydnt: Trade B3 Y3 Trydnt\n\n37) Felix: Sacrifice G3 Felix\nBuild G3 Bazoik\nBuild Y1 G3\nBuild Y2 Felix\n\n38) Trydnt: Build Y2 Trydnt\n\n39) Felix: Sacrifice Y2 Felix\nMove Y3 G3 G2\nMove Y3 G2 Trydnt\n\n40) Trydnt: Sacrifice Y2 Trydnt\nMove B3 Rim G2\nMove B3 G2 Trydnt\n\n41) Felix: Sacrifice G3 Bazoik\nBuild G3 Bazoik\nBuild Y2 Trydnt\nBuild Y2 Trydnt\nCatastrophe Trydnt Yellow\n\n42) Trydnt: Build B1 Trydnt\n\n43) Felix: Trade G3 B3 Bazoik\n\n44) Trydnt: Trade B3 Y3 Trydnt\n\n45) Felix: Build G3 Bazoik\n\n46) Trydnt: Build Y2 Trydnt\n\n47) Felix: Move Y1 G3 Bazoik\n\n48) Trydnt: Move Y2 Trydnt G2\n\n49) Felix: Move B3 Bazoik G3\n\n50) Trydnt: Build Y2 G2\n\n51) Felix: Sacrifice G3 Bazoik\nBuild Y2 Bazoik\nBuild Y3 G3\nBuild G3 Bazoik\n\n52) Trydnt: Trade B1 R1 Trydnt\n\n53) Felix: Move Y1 Bazoik G2\n\n54) Trydnt: Attack Y1 G2\n\n55) Felix: Move Y1 G3 G2\nCatastrophe G2 Yellow\n\n56) Trydnt: Trade G2 Y2 Rim\n\n57) Felix: Sacrifice G3 Bazoik\nBuild G2 Felix\nBuild G3 Bazoik\nBuild Y1 Bazoik\n\n58) Trydnt: Build R2 G2\n\n59) Felix: Build R2 Out\n\n60) Trydnt: Build Y1 Rim\n\n61) Felix: Move Y1 Felix Out\n\n62) Trydnt: Build Y2 Trydnt\n\n63) Felix: Move R2 Out G3\n\n64) Trydnt: Sacrifice Y1 Rim\nDiscover R2 G2 Y1 Y1\n\n65) Felix: Sacrifice G3 Bazoik\nBuild G3 Bazoik\nBuild R2 G3\nBuild R3 Out\n\n66) Trydnt: Build R3 G2\n\n67) Felix: Sacrifice G3 Bazoik\nBuild G3 Bazoik\nBuild B1 G3\nBuild B2 G3\n\n68) Trydnt: Move Y2 Rim G2\n\n69) Felix: Sacrifice Y2 Bazoik\nDiscover B3 G3 Y2 Sun\nMove R2 G3 Sun\n\n70) Trydnt: Move R1 G2 Y1\n\n71) Felix: Sacrifice G3 Bazoik\nBuild G3 Bazoik\nBuild B2 Sun\nBuild B3 Sun\n\n\tFelix: Good game! Thanks for playing.\n\tTrydnt: Well played. Until next time :)\n\nHomeworlds Online (SDG# 33779)\nVariants: "Unrated"\nStarted: 2018.2.28, Ended: 2018.2.28\nParticipants: Trydnt (S), kalleucastro (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 33829)\nVariants: "Unrated"\nStarted: 2018.3.1, Ended: 2018.4.21\nParticipants: Trydnt (S), Laurie_Menke (N)\nWinner: Trydnt\n\n1) Laurie_Menke: Homeworld Y3 R1 G3 *\n\tLaurie_Menke: Hi Trydnt! Thanks for the challenge... have a great game! :)\n\n2) Trydnt: Homeworld B3 G1 R3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tTrydnt: Never could resist a good challenge. Best of luck!\n\n4) Trydnt: Build R1 Trydnt\n\n5) Laurie_Menke: Discover G1 Laurie_menke B2 Presto\n\n6) Trydnt: Trade R1 Y1 Trydnt\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) Trydnt: Build R1 Trydnt\n\n9) Laurie_Menke: Build G2 Presto\n\n10) Trydnt: Move R3 Trydnt Presto\n\n11) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Presto\nBuild G2 Presto\nBuild G3 Laurie_menke\nCatastrophe Presto G\n\tLaurie_Menke: So how long have you been playing Homeworlds?\n\tTrydnt: wil and I started playing sometime in August I believe. he got me on SDG in novemberish. so Andy didn't put you up to this? haha\n\n12) Trydnt: Build Y1 Trydnt\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: No... I don't even know who you are... I guess I know you in real life?\n\tLaurie_Menke: OHHHH!!!! SHOOOTTTTT!!! I just realized this was tiny universe!!!! OK... No matter... I'll be OK... I think...\n\n14) Trydnt: Move Y1 Trydnt Presto\n\n15) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n16) Trydnt: Build Y1 Trydnt\n\tTrydnt: haha yeah I don't know if I even did that on purpose. too many games going at same time. I believe we might have met at one of wil's games nights. I'm the one who used to live over at Whytestone. If you were at Constellation I was there too and hung out with the pyramid people for a lot of the time\n\n17) Laurie_Menke: Discover G1 Laurie_menke Y2 Another\n\tLaurie_Menke: Cool! What's your name? :) I totally loved that telephone system at Constellation! (And yeah, I can't handle more than one Homeworlds game at a time... LOL!)\n\n18) Trydnt: Build Y2 Trydnt\n\tTrydnt: Alex. From England\n\n19) Laurie_Menke: Build G2 Laurie_menke\n\tLaurie_Menke: :)\n\n20) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 Trydnt Y2 Y2\nDiscover Y1 Presto G3 G3\n\n21) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Another\nBuild G2 Yellow\nBuild G3 Laurie_menke\n\tLaurie_Menke: It was good seeing you at game night Thursday! :)\n\n22) Trydnt: Build Y3 Trydnt\n\tTrydnt: good seeing you too! my game with Andy ended up lasting for like 4 hours! haha intense\n\n23) Laurie_Menke: Discover G1 Another Y3 Bigyellow\n\tLaurie_Menke: Wow! That's really good! That means you have a shot of beating him soon! :D\n\n24) Trydnt: Sacrifice Y1 Y2\nDiscover R3 Presto G3 G33\n\n25) Laurie_Menke: Discover G2 Yellow B3 Blue\n\n26) Trydnt: Build R1 G33\n\n27) Laurie_Menke: Trade G2 Y2 Blue\n\n28) Trydnt: Build Y1 G3\n\n29) Laurie_Menke: Sacrifice G2 Another\nBuild G2 Yellow\nBuild G2 Yellow\n\n30) Trydnt: Sacrifice Y3 Trydnt\nMove Y1 G3 Yellow\nMove Y1 G3 Yellow\nMove Y1 Trydnt Yellow\nCatastrophe Yellow Y\n\n31) Laurie_Menke: Discover Y2 Blue B2 Change\n\n32) Trydnt: Build R2 Trydnt\n\n33) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y1 Change\nBuild Y1 Change\n\n34) Trydnt: Trade R2 Y2 Trydnt\n\n35) Laurie_Menke: Trade Y2 R2 Change\n\n36) Trydnt: Build Y1 Trydnt\n\tLaurie_Menke: Well, that was exciting! LOL!\n\tTrydnt: twas interesting. I thought about it then didn't do it... then did it anyway haha\n\n37) Laurie_Menke: Move Y1 Change Trydnt\n\n38) Trydnt: Sacrifice Y2 Trydnt\nMove R3 G33 Change\nMove R3 Change Trydnt\n\n39) Laurie_Menke: Build Y2 Trydnt\n\n40) Trydnt: Discover Y1 Trydnt G2 G2\n\n41) Laurie_Menke: Trade Y2 R2 Trydnt\n\n42) Trydnt: Sacrifice R1 Trydnt\nAttack R2 Trydnt\n\n43) Laurie_Menke: Trade Y1 R1 Trydnt\n\n44) Trydnt: Trade R3 Y3 Trydnt\n\n45) Laurie_Menke: Build R2 Trydnt\n\n46) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Trydnt\nAttack R1 Trydnt\n\n47) Laurie_Menke: Build G1 Laurie_menke\n\n48) Trydnt: Move R2 Trydnt G2\n\n49) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Bigyellow\nBuild G3 Laurie_menke\n\n50) Trydnt: Discover R2 G2 G3 G3\n\n51) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild R2 Change\nBuild Y1 Change\n\n52) Trydnt: Build R3 G33\n\tTrydnt: this has been hilariously fun\n\tLaurie_Menke: Glad you're enjoying!\n\n53) Laurie_Menke: Sacrifice G2 Bigyellow\nBuild G2 Bigyellow\nBuild Y2 Change\n\tTrydnt: wriggly maneuvers like that are always interesting\n\n54) Trydnt: Build Y2 G2\n\n55) Laurie_Menke: Move R2 Change Bigyellow\n\tLaurie_Menke: Tis true! :)\n\n56) Trydnt: Build R3 G3\n\n57) Laurie_Menke: Build R3 Bigyellow\n\n58) Trydnt: Build Y2 Trydnt\n\n59) Laurie_Menke: Sacrifice Y2 Change\nMove Y1 Change Trydnt\nMove Y1 Change Trydnt\nCatastrophe Trydnt Y\n\n60) Trydnt: Sacrifice Y2 G2\nMove R3 G33 G2\nMove R3 G3 Change\n\n61) Laurie_Menke: Discover R2 Bigyellow Y2 Mediumyellow\n\n62) Trydnt: Sacrifice Y1 G2\nMove R3 Change Trydnt\n\n63) Laurie_Menke: Discover G2 Laurie_menke B2 Blue\n\n64) Trydnt: Trade R1 Y1 Trydnt\n\n65) Laurie_Menke: Trade G2 Y2 Blue\n\n66) Trydnt: Build Y1 Trydnt\n\n67) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Bigyellow\nBuild G3 Laurie_menke\nBuild Y1 Blue\n\n68) Trydnt: Trade Y1 B1 Trydnt\n\n69) Laurie_Menke: Sacrifice G2 Bigyellow\nBuild G2 Bigyellow\nBuild R1 Mediumyellow\n\n70) Trydnt: Move B1 Trydnt G2\n\n71) Laurie_Menke: Move G2 Bigyellow Change\n\n72) Trydnt: Build Y1 Trydnt\n\n73) Laurie_Menke: Move R1 Mediumyellow Trydnt\n\n74) Trydnt: Move Y1 Trydnt G2\n\n75) Laurie_Menke: Move R2 Mediumyellow Trydnt\n\n76) Trydnt: Build Y2 G2\n\n77) Laurie_Menke: Move Y1 Blue Trydnt\n\n78) Trydnt: Attack R2 Trydnt\n\n79) Laurie_Menke: Sacrifice G2 Change\nBuild Y2 Trydnt\nBuild Y3 Trydnt\nCatastrophe Trydnt Yellow\n\n80) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Trydnt\nPass\n\n81) Laurie_Menke: Move R3 Bigyellow Blue\n\n82) Trydnt: Trade R3 Y3 Trydnt\n\n83) Laurie_Menke: Move G1 Bigyellow Blue\n\n84) Trydnt: Build B1 G2\n\n85) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Blue\nBuild G3 Laurie_menke\nBuild Y1 Blue\n\n86) Trydnt: Sacrifice Y2 G2\nMove R3 G2 Bigyellow\nMove B1 G2 G3\n\n87) Laurie_Menke: Move G2 Bigyellow Blue\n\n88) Trydnt: Build B1 G3\n\tTrydnt: shoulda gone with the first move\n\tLaurie_Menke: Nope. Then you would have just moved your r3 in and we'd be back where we started. ;)\n\n89) Laurie_Menke: Sacrifice Y2 Blue\nMove G1 Blue Trydnt\nMove G2 Blue Trydnt\n\n90) Trydnt: Build B2 G3\n\tTrydnt: you could have won on that move\n\tLaurie_Menke: Oh, you're right... I should have sacrificed my g3! Well, I'll win soon anyway. ;)\n\n91) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild G1 Trydnt\nCatastrophe Trydnt Green\n\n92) Trydnt: Build B3 G2\n\n93) Laurie_Menke: Build G1 Laurie_menke\n\n94) Trydnt: Build B3 G2\n\n95) Laurie_Menke: Sacrifice G2 Blue\nBuild R2 Blue\nBuild R3 Change\n\n96) Trydnt: Sacrifice B2 G3\nTrade B1 G1 G2\nTrade B1 G1 G3\n\n97) Laurie_Menke: Trade R2 B2 Blue\n\n98) Trydnt: Sacrifice Y3 Trydnt\nMove G1 G2 Laurie_menke\nMove G1 G3 G2\nMove G1 G2 Laurie_menke\nCatastrophe Laurie_menke G\n\n\tTrydnt: good game\n\tLaurie_Menke: Oh, man... I can't believe I did that! I completely forgot about your y3 at your homeworld. Wow. Well played! Congratulations! :)\n\tTrydnt: yeah I didn't think you'd fall for it. It was the best move I could see that allowed me to give up blues that you couldn't take because it gave me that shot\n\tLaurie_Menke: ::sigh:: You are a worthy opponent! :)\n\tTrydnt: as are you. if you had seen that I think I might have been toast\n\nHomeworlds Online (SDG# 33826)\nVariants: "Hard time"\nStarted: 2018.3.1, Ended: 2018.3.4\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B3 G1 R3\n\n2) wil: Homeworld Y2 B1 G3\n\n3) Trydnt: Build R1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade R1 G1 Trydnt\n\twil: slow at work last couple days?\r\n\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Build R1 Trydnt\n\n8) wil: Build Y1 Wil\n\n9) Trydnt: Trade R1 Y1 Trydnt\n\n10) wil: Trade Y1 B1 Wil\n\n11) Trydnt: Build Y1 Trydnt\n\n12) wil: Build B1 Wil\n\n13) Trydnt: Build Y2 Trydnt\n\n14) wil: Discover B1 Wil Y3 Y3\n\n15) Trydnt: Discover Y1 Trydnt G2 G2\n\n16) wil: Build B2 Wil\n\twil: I am evidently not the best teacher...but persistence has paid off and I think you've finally got it!!\n\n17) Trydnt: Build Y2 G2\n\n18) wil: Discover Y1 Wil G3 G3\n\tTrydnt: Haha you were a great teacher. I think that it's just that I'm playing so much more now that I play online. My improvement has been pretty exponential. The last time you beat me was in January. Perhaps I'm ready to challenge Andy again! When are you having another games night at your place?\n\n19) Trydnt: Trade Y2 B2 Trydnt\n\twil: tonight, it is every thurs... \n\n20) wil: Discover B1 Wil Y3 Why3\n\n21) Trydnt: Move B2 Trydnt G2\n\n22) wil: Build G1 Wil\n\n23) Trydnt: Build G2 Trydnt\n\n24) wil: Build G2 Wil\n\n25) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 Trydnt\nBuild Y3 Trydnt\n\n26) wil: Sacrifice G2 Wil\nBuild B2 Why3\nBuild B3 Y3\n\n27) Trydnt: Build B3 G2\n\n28) wil: Sacrifice B2 Why3\nTrade B3 G3 Y3\nTrade B2 R2 Wil\n\n29) Trydnt: Build R1 Trydnt\n\n30) wil: Discover B1 Y3 B2 B2\n\n31) Trydnt: Move B2 G2 G3\n\n32) wil: Sacrifice G3 Y3\nBuild B2 B2\nBuild B3 Why3\nBuild Y3 G3\n\n33) Trydnt: Sacrifice R1 Trydnt\nAttack Y1 G3\n\n34) wil: Discover Y3 G3 G2 R2\n\n35) Trydnt: Sacrifice Y2 Trydnt\nMove Y3 Trydnt R2\nMove Y3 R2 G3\n\n36) wil: Trade B2 Y2 B2\n\twil: lol...I just fired off my planned move without looking what you had done....oops\n\n37) Trydnt: Build B2 G3\n\n38) wil: Build R1 Wil\n\n39) Trydnt: Build R1 Trydnt\n\n40) wil: Move R2 Wil Why3\n\n41) Trydnt: Move R1 Trydnt G2\n\n42) wil: Move B1 Why3 R2\n\n43) Trydnt: Discover Y1 G2 G3 G33\n\n44) wil: Discover B3 Why3 G2 Y2\n\n45) Trydnt: Move Y3 G3 B2\n\n46) wil: Sacrifice Y2 B2\nMove Y3 R2 Trydnt\nMove B3 Y2 Trydnt\n\n47) Trydnt: Sacrifice Y3 B2\nMove Y2 G2 Trydnt\nMove Y1 G33 G2\nMove Y1 G2 Trydnt\nCatastrophe Trydnt Y\n\n48) wil: Sacrifice R2 Why3\nAttack R3 Trydnt\nAttack G1 Trydnt\n\n\nHomeworlds Online (SDG# 33811)\nVariants: "Hard time"\nStarted: 2018.3.4, Ended: 2018.3.9\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: Build B2 Wil\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) wil: Discover B2 Wil G2 G2\n\n11) Trydnt: Discover B2 Trydnt G3 G3\n\n12) wil: Trade B1 R1 Wil\n\n13) Trydnt: Build B1 G3\n\n14) wil: Build R1 Wil\n\n15) Trydnt: Build Y1 Trydnt\n\n16) wil: Move R1 Wil G2\n\n17) Trydnt: Trade B2 R2 G3\n\n18) wil: Build R2 G2\n\n19) Trydnt: Build Y1 Trydnt\n\n20) wil: Trade R2 Y2 G2\n\n21) Trydnt: Build R2 G3\n\n22) wil: Build Y2 G2\n\n23) Trydnt: Move Y1 Trydnt G3\n\n24) wil: Discover B2 G2 Y3 Y3\n\n25) Trydnt: Discover R2 G3 Y2 Y2\n\n26) wil: Move Y2 G2 G3\n\n27) Trydnt: Build Y3 G3\n\n28) wil: Move Y2 G2 G3\nCatastrophe G3 Y\n\n29) Trydnt: Move Y1 Trydnt G3\n\n30) wil: Build R2 G2\n\n31) Trydnt: Build R3 G3\n\n32) wil: Build R3 Wil\n\n33) Trydnt: Sacrifice G3 Trydnt\nBuild R3 Y2\nBuild Y1 G3\nBuild Y2 Trydnt\n\n34) wil: Trade R3 Y3 Wil\n\n35) Trydnt: Move R3 G3 Trydnt\n\n36) wil: Build R3 Wil\n\n37) Trydnt: Trade R3 G3 Trydnt\n\n38) wil: Trade R3 B3 Wil\n\n39) Trydnt: Build R3 G3\n\n40) wil: Build R3 Wil\n\n41) Trydnt: Trade R3 B3 G3\n\n42) wil: Sacrifice Y3 Wil\nMove R1 G2 Wil\nMove R1 Wil Y2\nMove R1 Wil Y2\nCatastrophe Y2 R\n\n43) Trydnt: Build Y2 G3\n\n44) wil: Trade R3 Y3 Wil\n\n45) Trydnt: Build Y2 Trydnt\n\n46) wil: Move Y3 Wil G2\n\n47) Trydnt: Move Y2 G3 G2\n\n48) wil: Attack Y2 G2\n\n49) Trydnt: Sacrifice Y2 Trydnt\nMove B3 G3 G2\nMove B3 G2 Wil\n\n50) wil: Sacrifice R2 G2\nAttack B3 Wil\nPass\n\n51) Trydnt: Sacrifice Y2 Trydnt\nMove B1 G3 G2\nMove B1 G2 Wil\nCatastrophe Wil B\n\n52) wil: Trade B2 R2 Y3\n\n53) Trydnt: Build Y2 Trydnt\n\n54) wil: Build G1 Wil\n\n55) Trydnt: Discover Y1 G3 Y2 Y2\n\n56) wil: Move Y3 G2 G3\n\n57) Trydnt: Discover Y1 G3 G2 G22\n\twil: ya got these...\n\n58) wil: Discover G1 Wil B2 B2\n\n59) Trydnt: Sacrifice Y2 Trydnt\nMove Y1 G22 Wil\nMove Y1 Y2 Wil\n\n60) wil: Sacrifice Y2 G2\nMove Y3 G3 B2\nMove Y3 B2 Wil\nCatastrophe Wil Y\n\n\twil: good game\n\nHomeworlds Online (SDG# 33828)\nVariants: "Hard time"\nStarted: 2018.3.4, Ended: 2018.3.5\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n\twil: this was an oops...clicked on the wrong line... I am will cancel... unless you have a desire to start another one...\n\tFelix: I'm always up for a game! \n\twil: Well the ladder makes more sense!\n\nHomeworlds Online (SDG# 33840)\nVariants: "Unrated"\nStarted: 2018.3.4, Ended: 2018.3.9\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B2 Y1 G3\n\twil: How is it we were in only one game?\n\n2) Trydnt: Homeworld B3 G1 R3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build R1 Trydnt\n\n5) wil: Build G1 Wil\n\n6) Trydnt: Trade R1 Y1 Trydnt\n\n7) wil: Discover G1 Wil B3 B3\n\n8) Trydnt: Build Y1 Trydnt\n\n9) wil: Build G2 B3\n\n10) Trydnt: Build Y2 Trydnt\n\n11) wil: Trade G2 Y2 B3\n\n12) Trydnt: Discover Y2 Trydnt B2 B2\n\n13) wil: Build G2 Wil\n\n14) Trydnt: Discover Y2 B2 G3 G3\n\n15) wil: Discover G2 Wil Y3 Y3\n\n16) Trydnt: Build R1 Trydnt\n\n17) wil: Build G2 B3\n\n18) Trydnt: Discover Y1 Trydnt B2 B2\n\n19) wil: Sacrifice G3 Wil\nBuild G2 Y3\nBuild G3 B3\nBuild G3 Wil\n\n20) Trydnt: Sacrifice Y2 G3\nMove R3 Trydnt B2\nMove R3 B2 B3\n\n21) wil: Sacrifice G3 B3\nBuild G3 Wil\nBuild G3 Y3\nBuild Y2 B3\n\n22) Trydnt: Attack G2 B3\n\n23) wil: Trade G3 R3 Wil\n\n24) Trydnt: Sacrifice R3 B3\nAttack Y2 B3\nAttack Y2 B3\nAttack G1 B3\n\n25) wil: Discover G3 Wil Y3 Ynot\n\n26) Trydnt: Sacrifice G2 B3\nBuild Y2 B2\nBuild Y3 B2\n\n27) wil: Sacrifice G3 Y3\nBuild G2 Y3\nBuild G3 Ynot\nBuild G3 Wil\n\n28) Trydnt: Build R1 Trydnt\n\n29) wil: Build R1 Wil\n\n30) Trydnt: Move R1 Trydnt B2\n\n31) wil: Move R3 Wil B3\n\n32) Trydnt: Sacrifice Y3 B2\nMove Y2 B3 Wil\nMove Y2 B3 Wil\nMove G1 B3 B2\n\n33) wil: Trade R3 Y3 B3\n\n34) Trydnt: Build R2 Trydnt\n\n35) wil: Attack Y2 Wil\n\n36) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Wil\nAttack Y2 Wil\n\n37) wil: Move G1 Wil B3\n\n38) Trydnt: Sacrifice Y2 B2\nMove G1 B2 Y3\nCatastrophe Y3 G\nDiscover Y1 B2 B3 B33\n\n39) wil: Sacrifice G3 Ynot\nBuild G1 Ynot\nBuild G2 B3\nBuild G2 B3\n\n40) Trydnt: Trade Y2 G2 Wil\n\n41) wil: Trade Y3 R3 B3\n\n42) Trydnt: Sacrifice G2 Wil\nBuild Y2 Wil\nBuild Y2 B33\n\n43) wil: Move G3 Ynot B2\n\n44) Trydnt: Build Y3 Trydnt\n\n45) wil: Trade G3 Y3 B2\n\n46) Trydnt: Build R2 Trydnt\n\n47) wil: Build G2 Ynot\n\n48) Trydnt: Trade R2 B2 Trydnt\n\twil: this is so wierd\n\n49) wil: Build G3 Wil\n\n50) Trydnt: Build B1 Trydnt\n\tTrydnt: You totally thought you had me there\n\n51) wil: Move G3 Wil B33\n\twil: I've got so many dang immigrants at home I have not been able to keep the forces moving in other systems\n\n52) Trydnt: Sacrifice Y2 B33\nMove Y1 B33 Wil\nDiscover B1 Trydnt Y2 Y2\n\n53) wil: Build G3 Wil\nCatastrophe Wil Y\n\n54) Trydnt: Build R2 Trydnt\n\n55) wil: Sacrifice Y3 B2\nMove G3 B33 Wil\nMove G3 Wil Trydnt\nMove G3 Wil Trydnt\n\n56) Trydnt: Sacrifice R2 Trydnt\nAttack G3 Trydnt\nAttack G3 Trydnt\n\twil: both of these games are weird.\n\n57) wil: Move G2 Ynot B2\n\n58) Trydnt: Trade R1 B1 Wil\n\n59) wil: Trade G3 Y3 Wil\n\n60) Trydnt: Sacrifice Y3 Trydnt\nMove B1 Y2 Ynot\nMove B1 Ynot Wil\nMove B2 Trydnt Wil\nCatastrophe Wil B\n\n\nHomeworlds Online (SDG# 33693)\nVariants: "Unrated"\nStarted: 2018.3.5, Ended: 2018.3.28\nParticipants: deanthebean (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R2 B3 G3\n\n2) deanthebean: Homeworld G1 B2 R3\n\n3) Felix: Build G1 Felix\n\n4) deanthebean: Build R1 Deanthebean\n\tdeanthebean: Sorry. I'm confused about the syntax here. I want to build a new ship. What do I need to type?\n\n5) Felix: Build G1 Felix\n\tFelix: Looks like you figured it out! But all the commands are listed at the top of the page. Basically just "build r1 [name of system]". YOu can also just use the initial "b" as shorthand instead of the word build.\n\n6) deanthebean: Build R1 Deanthebean\n\n7) Felix: Trade G1 R1 Felix\n\tdeanthebean: Thanks.\n\n8) deanthebean: Trade R1 Y1 Deanthebean\n\n9) Felix: Trade G1 Y1 Felix\n\n10) deanthebean: Discover R1 Deanthebean G3 Dtb2\n\n11) Felix: Build G1 Felix\n\n12) deanthebean: Build R1 Dtb2\n\n13) Felix: Build R2 Felix\n\n14) deanthebean: Build R2 Dtb2\n\n15) Felix: Discover R2 Felix Y1 Out\n\n16) deanthebean: Build R3 Deanthebean\n\n17) Felix: Build R3 Felix\n\n18) deanthebean: Move Y1 Deanthebean Dtb2\n\n19) Felix: Move R2 Out Dtb2\nCatastrophe Dtb2 Red\n\n20) deanthebean: Trade R3 Y3 Deanthebean\n\n21) Felix: Trade R1 B1 Felix\n\n22) deanthebean: Build R1 Deanthebean\n\n23) Felix: Build B1 Felix\n\n24) deanthebean: Build R1 Deanthebean\n\n25) Felix: D B1 Felix G1 Out\n\n26) deanthebean: Move R3 Deanthebean Dtb2\n\n27) Felix: M R3 Felix Out\n\n28) deanthebean: Build Y1 Deanthebean\n\n29) Felix: Build Y2 Felix\n\n30) deanthebean: Build Y2 Dtb2\n\n31) Felix: Move Y1 Felix Out\n\n32) deanthebean: Trade R1 B1 Deanthebean\n\n33) Felix: Build B2 Out\n\n34) deanthebean: Move B1 Deanthebean Dtb2\n\n35) Felix: Discover B2 Out G3 Crumbs\n\n36) deanthebean: Trade Y3 R3 Deanthebean\n\n37) Felix: Build G2 Felix\n\n38) deanthebean: Build B2 Dtb2\n\n39) Felix: Sacrifice G2 Felix\nBuild B3 Crumbs\nBuild B3 Out\n\n40) deanthebean: Discover Y1 Dtb2 R1 Newstar\n\n41) Felix: Trade B3 Y3 Crumbs\n\n42) deanthebean: Move R3 Dtb2 Newstar\n\n43) Felix: Build B3 Crumbs\n\n44) deanthebean: Build Y2 Deanthebean\n\n45) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Out\nBuild G2 Felix\n\n46) deanthebean: Trade R3 G3 Deanthebean\n\n47) Felix: Move R3 Out Dtb2\n\n48) deanthebean: Sacrifice Y2 Dtb2\nMove B2 Dtb2 Out\nMove B1 Dtb2 Out\nCatastrophe Out Blue\n\n49) Felix: Build B1 Crumbs\n\n50) deanthebean: Build G2 Deanthebean\n\n51) Felix: Sacrifice Y3 Out\nMove G1 Felix Out\nMove G1 Out Dtb2\nMove G1 Dtb2 Deanthebean\nCatastrophe Deanthebean Green\n\tdeanthebean: I think I understand the rules but the game's not really clicking in my mind for some reason. \n\tFelix: It takes quite a few games to start to get a handle on the "game within the game" so to speak. understanding the rules is one thing, but it's very hard to visualize the bigger strategy. One of the things that makes this game so great. Don't get discouraged, but keep playing, and it will start to click after a while. It took me a good 30 games or so before it started to click for me, and there are still games where I lose all focus!\n\n52) deanthebean: Move R3 Newstar Crumbs\n\n53) Felix: Sacrifice Y3 Felix\nMove B1 Crumbs Deanthebean\nMove B2 Crumbs Deanthebean\nMove B3 Crumbs Deanthebean\nCatastrophe Deanthebean Blue\n\tdeanthebean: Thanks for the words of encouragement. I won't give up on it just yet. I hope you don't mind me playing on. It's obvious you will win but it's not yet obvious to me how you will do so. \n\tFelix: No problem! Feel free to play me as much as you like. I can take it a bit easier on you next time, too :) But I think you can learn the most about this game by losing!\n\tFelix: And... that is how, haha. Watch out for those double eliminations with the large yellow sacrifices. They can be very dangerous!\n\tdeanthebean: Wow. I did not see that coming! Well played. \n\tFelix: Thanks, Good game! Feel free to play me again if you like.\n\tdeanthebean: Thanks. I decided to find someone with a lower rating to practice against first :O\n\tFelix: Fair enough! The best way to learn though, is to play against better players and learn by losing against them!\n\tdeanthebean: I'm sure you're right about that. \n\n\nHomeworlds Online (SDG# 33859)\nVariants: "Hard time"\nStarted: 2018.3.6, Ended: 2018.3.18\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y1 B2 G3\n\tFelix: This game will suit me better anyway :)\n\n2) wil: Homeworld B3 R1 G3\n\n3) Felix: Build G1 Felix\n\tDraw5PlayAll: I hope Felix wins\n\tFelix: I hope wil wins.\n\n4) wil: Build G1 Wil\n\n5) Felix: Trade G1 Y1 Felix\n\twil: I hope Felix slaughters me in a new and unique way... I don't learn anything from winning.\n\n6) wil: Trade G1 Y1 Wil\n\n7) Felix: Build Y2 Felix\n\twil: I got a local kid addicted to the game...was able to play 2/3 times a week or more, 3/4 games a night! He moved away. So if you run into Trydnt on here...he just started at the bottom of the ladder.\n\n8) wil: Build Y2 Wil\n\tFelix: I have already played several games against him, actually!\n\twil: I've got to cultivate more new players locally now. I've only one, and he prefers volcano.\n\n9) Felix: Discover Y1 Felix B3 Grin\n\twil: trydnt pulls some interesting moves, that I had not thought of and improved my game some. I am hoping the next tourney can bring in DL, TTT, Brocolli Commander, Two Short...\n\n10) wil: Discover Y1 Wil G2 G2\n\tFelix: I'd love to get more people involved!\n\n11) Felix: Build G1 Felix\n\n12) wil: Build G1 Wil\n\n13) Felix: Move G1 Felix Grin\n\tDraw5PlayAll: Aw, come on... that ladder is hard ENOUGH already! I got kicked from #1 within a few weeks of getting there!\n\twil: The hardest thing about the ladder is getting thru the dead wood at the bottom. Who cares about the top...the object is to play the people who are near the top....while I won't deny I enjoy winning...I like playing...and learning from my losses.\n\n14) wil: Trade G1 R1 Wil\n\tFelix: I wanna be the very best\r\nLike no one ever was\r\nTo catch them is my real test\r\nTo train them is my cause\n\n15) Felix: Trade Y2 R2 Felix\n\n16) wil: Build Y2 G2\n\n17) Felix: Build Y2 Grin\n\n18) wil: Trade Y2 G2 Wil\n\n19) Felix: Discover Y1 Grin B2 Grontle\n\n20) wil: Discover Y1 G2 B3 B3\n\tFelix: Huh... I missed the latest bracket results, since my first game has been taking so long. I'm surprised mneme was eliminated already!\n\twil: Oh, you ain't the only one! third time I played him...first was at Looney Con, then during the round robin he slaughtered me...I thought for sure if I ever got to the end I'd see him there...\n\n21) Felix: Build G1 Grin\n\tFelix: Hmm, well overconfidence rendereth many mistakes, as they say!\n\n22) wil: Trade G3 Y3 Wil\n\n23) Felix: Move G1 Grin Grontle\n\n24) wil: Build G1 Wil\n\n25) Felix: Build G2 Felix\n\n26) wil: Sacrifice G2 Wil\nBuild Y2 B3\nBuild Y3 G2\n\twil: Looks like I'll be playing one of you soon... I am really enjoying having the tourney going... Look forward to the next one with a bigger herd!\n\n27) Felix: Build Y3 Grontle\n\tDraw5PlayAll: How is the tournament going anyway? I think I lost whatever link or document would show the standings\n\twil: we are getting to the wire.... a few more games...another month or two. \n\tFelix: Yeah, I hope there's a better turn out for the next one. I also wish there was a way for games to be played in a more live fashion, but oh well.\r\n\r\nDraw5, here's the spreadsheet with the bracket games: https://docs.google.com/spreadsheets/d/e/2PACX-1vTS8qjWyHSJHPXNsbwf3mBk26NugW7ASTKAfmXhgjIrcCjhaXtM-OYxpCEioJhhC4ZLvmEmfmdKaWPc/pubhtml?gid=0&single=true\n\n28) wil: Move R1 Wil G2\n\n29) Felix: Sacrifice G3 Felix\nBuild G2 Grontle\nBuild G3 Grin\nBuild G3 Felix\n\twil: Looks like two more games will be starting soon! \r\n\n\tFelix: It's about time, too! Lucky for you, both Babamots and ts52 are speedier players, so you should hopefully get your game before too much longer.\n\n30) wil: Build G3 Wil\n\n31) Felix: Sacrifice Y2 Grin\nMove G1 Grontle Wil\nMove G2 Grontle Wil\nCatastrophe Wil Green\n\n32) wil: Sacrifice Y2 G2\nMove Y1 B3 Grontle\nMove Y2 B3 Grontle\nCatastrophe Grontle Y\n\n33) Felix: Trade G3 Y3 Grin\n\n34) wil: Build R1 G2\n\n35) Felix: Build R2 Felix\n\n36) wil: Move R1 G2 Wil\n\n37) Felix: Move R2 Felix Grin\n\n38) wil: Trade R1 G1 Wil\n\n39) Felix: Build G1 Grin\n\n40) wil: Build Y1 Wil\n\n41) Felix: Discover G1 Grin B2 Guns\n\n42) wil: Trade Y3 G3 Wil\n\n43) Felix: Sacrifice G3 Felix\nBuild G2 Grin\nBuild G3 Guns\nBuild G3 Felix\n\n44) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y1 Wil\nBuild Y2 G2\n\n45) Felix: Trade G3 Y3 Guns\n\n46) wil: Discover Y2 G2 G3 G3\n\n47) Felix: Sacrifice G2 Grin\nBuild G2 Guns\nBuild Y2 Grin\n\n48) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 G3\nBuild R1 G2\n\n49) Felix: S Y3 Grin\nM G1 Guns Wil\nM G2 Guns Wil\nC Wil Green\nM Y3 Guns Wil\n\n50) wil: Move Y3 G2 Wil\nCatastrophe Wil Y\n\tFelix: Maybe not a new and unique way, but thanks for playing!\n\n\nHomeworlds Online (SDG# 33855)\nVariants: "Unrated"\nStarted: 2018.3.6, Ended: 2018.3.12\nParticipants: aren (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\n\nHomeworlds Online (SDG# 33850)\nVariants: "Unrated"\nStarted: 2018.3.6, Ended: 2018.3.6\nParticipants: Trydnt (S), aren (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 33791)\nVariants: "Unrated"\nStarted: 2018.3.9, Ended: 2018.8.13\nParticipants: wil (S), rosbi (N)\nWinner: wil\n\n1) rosbi: Homeworld B2 R1 G3\n\n2) wil: Homeworld B3 Y2 G3\n\trosbi: Hi ! I don't have a lot of spare time these days, but I think I can play at least one move a day. Is that ok for you or will the game be too slow for you ?\n\twil: one move a day is fine..do what you can! Have fun\n\n3) rosbi: Build G1 Rosbi\n\n4) wil: Build G1 Wil\n\n5) rosbi: Trade G1 Y1 Rosbi\n\n6) wil: Trade G1 R1 Wil\n\n7) rosbi: Build Y1 Rosbi\n\n8) wil: Build R1 Wil\n\n9) rosbi: Build G1 Rosbi\n\n10) wil: Discover R1 Wil B1 B1\n\n11) rosbi: Discover Y1 Rosbi R3 R3\n\n12) wil: Build R2 Wil\n\n13) rosbi: Build Y1 Rosbi\n\n14) wil: Trade R2 Y2 Wil\n\n15) rosbi: Discover Y1 Rosbi B3 B3\n\n16) wil: Discover Y2 Wil G1 G1\n\n17) rosbi: Sacrifice G3 Rosbi\nBuild Y2 R3\nBuild Y3 Rosbi\nBuild Y3 B3\n\n18) wil: Build Y3 G1\n\n19) rosbi: Trade Y3 G3 Rosbi\n\n20) wil: Discover Y2 G1 Y3 Y3\n\n21) rosbi: Trade G1 B1 Rosbi\n\n22) wil: Build R2 Wil\n\n23) rosbi: Trade Y3 R3 B3\n\n24) wil: Build Y3 G1\n\n25) rosbi: Build B1 Rosbi\n\n26) wil: Trade R2 B2 Wil\n\n27) rosbi: Discover B1 Rosbi G3 G3\n\n28) wil: Move B2 Wil G1\n\n29) rosbi: Discover R3 B3 G1 G1'\n\n30) wil: Build R2 Wil\n\n31) rosbi: Build R2 G1'\n\n32) wil: Sacrifice Y3 G1\nMove R1 B1 Wil\nMove R1 Wil G1'\nMove R1 Wil G1'\nCatastrophe G1' R\n\n33) rosbi: Build Y3 Rosbi\n\n34) wil: Build R1 Wil\n\n35) rosbi: Trade B1 R1 G3\n\n36) wil: Move R2 Wil G1\n\n37) rosbi: Build G1 Rosbi\n\n38) wil: Build R2 G1\n\n39) rosbi: Build R2 G3\n\n40) wil: Build R3 Wil\n\n41) rosbi: Sacrifice Y1 B3\nDiscover R1 G3 B1 B1\n\n42) wil: Trade R2 G2 G1\n\n43) rosbi: Move B1 Rosbi G3\n\n44) wil: Move Y3 G1 G3\n\n45) rosbi: Sacrifice Y2 R3\nMove R2 G3 B1\nMove B1 G3 B1\n\n46) wil: Discover R3 Wil B1 Be1\n\n47) rosbi: Move Y3 Rosbi R3\n\n48) wil: Build B2 G1\n\n49) rosbi: Sacrifice Y1 R3\nDiscover B1 B1 G2 G2\n\n50) wil: Build B3 G1\n\n51) rosbi: Build B3 G2\n\n52) wil: Trade B2 Y2 G1\n\n53) rosbi: Build Y1 Rosbi\n\n54) wil: Build R2 Wil\n\n55) rosbi: Discover Y1 Rosbi R3 R3'\n\n56) wil: Trade R2 B2 Wil\n\n57) rosbi: Move G1 Rosbi R3\n\n58) wil: M G2 G1 G3\n\n59) rosbi: Build Y1 R3\n\n60) wil: S G2 G3\nB G1 Wil\nB R2 Be1\n\n61) rosbi: Build G2 R3\n\n62) wil: M B2 G1 G3\n\n63) rosbi: Move G1 R3 B1\n\n64) wil: M R2 G1 R3'\n\n65) rosbi: Move Y1 R3' B1\n\n66) wil: M B3 G1 R3\n\n67) rosbi: Attack B3 R3\n\n68) wil: M G1 Wil Be1\n\n69) rosbi: Build G2 Rosbi\n\n70) wil: M Y2 G1 R3\n\n71) rosbi: Attack Y2 R3\n\n72) wil: B G1 Be1\n\n73) rosbi: Move Y3 R3 G2\n\n74) wil: Move R1 Wil B1\n\n75) rosbi: Attack R1 B1\n\n76) wil: M Y3 G3 B1\n\n77) rosbi: Sacrifice Y2 R3\nMove R2 B1 G2\nMove R1 B1 G2\n\n78) wil: S R2 Be1\nA Y1 B1\nA R1 B1\n\n79) rosbi: Build Y2 R3\n\n80) wil: Build R2 Be1\n\n81) rosbi: Sacrifice G1 B1\nBuild G1 R3\n\n82) wil: M Y1 B1 G3\n\n83) rosbi: Sacrifice Y1 R3\nDiscover R2 G2 Y1 Y1\n\n84) wil: M Y1 G3 Be1\n\n85) rosbi: Move B3 G2 Y1\n\n86) wil: M R2 Be1 Wil\n\n87) rosbi: Sacrifice Y3 G2\nMove B1 G2 Y1\nMove B1 Y1 Wil\nMove B3 Y1 Wil\nCatastrophe Wil Blue\n\n88) wil: B Y3 Be1\n\n89) rosbi: Move G1 R3 Y1\n\n90) wil: Move R3 Be1 G3\n\n91) rosbi: Move B3 R3 Y1\n\n92) wil: B B1 G3\n\n93) rosbi: Move B3 Y1 R3'\n\n94) wil: Sacrifice Y3 B1\nMove R2 R3' Rosbi\nMove R3 G3 Rosbi\nMove R1 B1 Y3\n\n95) rosbi: Sacrifice R1 G2\nAttack R3 Rosbi\n\n96) wil: S G1 Be1\nB R1 Rosbi\nC Rosbi R\n\n97) rosbi: Build Y3 Rosbi\n\n98) wil: Trade Y1 B1 Be1\n\n99) rosbi: Sacrifice Y3 Rosbi\nMove G3 Rosbi G3\nMove G2 Rosbi G3\nMove G1 Y1 G3\nCatastrophe G3 Green\n\n100) wil: M Y3 Be1 Rosbi\n\twil: s y3 be1\r\nm b1 be1 rosbi\r\nm b1 g3 rosbi\r\nm b2 g3 rosbi\r\nc rosbi b\n\n101) rosbi: Sacrifice Y2 R3\nMove G2 R3 Rosbi\nMove B3 R3' Rosbi\n\trosbi: yeah ! I can survive one more turn :)\n\twil: Noice!\n\n\trosbi: Yeah, I'm dead :)\r\nThank you very much for your patience, I didn't have a lot of spare time this year -> longest HW game ever.\n\twil: Lol, you kept coming back....so I left your game on "the opponent is outta time shelf"\n\nHomeworlds Online (SDG# 33861)\nVariants: "Unrated"\nStarted: 2018.3.9, Ended: 2018.5.11\nParticipants: Trydnt (S), rosbi (N)\nWinner: Trydnt\n\n1) rosbi: Homeworld G3 B2 Y3\n\n2) Trydnt: Homeworld B2 Y2 G3 *\n\trosbi: Hi !\n\tTrydnt: Hello and good luck!\n\n3) rosbi: Build Y1 Rosbi\n\n4) Trydnt: Build G1 Trydnt\n\n5) rosbi: Trade Y1 G1 Rosbi\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) rosbi: Build Y1 Rosbi\n\n8) Trydnt: Build G1 Trydnt\n\n9) rosbi: Discover Y1 Rosbi R1 R1\n\n10) Trydnt: Build R1 Trydnt\n\n11) rosbi: Build Y1 Rosbi\n\n12) Trydnt: Build R2 Trydnt\n\n13) rosbi: Trade Y3 R3 Rosbi\n\n14) Trydnt: Trade R2 Y2 Trydnt\n\n15) rosbi: Build Y1 Rosbi\n\n16) Trydnt: Discover Y2 Trydnt G3 G3\n\n17) rosbi: Build R2 Rosbi\n\n18) Trydnt: Trade R1 B1 Trydnt\n\n19) rosbi: Move G1 Rosbi R1\n\n20) Trydnt: Build B1 Trydnt\n\n21) rosbi: Trade Y1 B1 Rosbi\n\n22) Trydnt: Build R1 Trydnt\n\n23) rosbi: Move B1 Rosbi R1\n\n24) Trydnt: Move B1 Trydnt G3\n\n25) rosbi: Discover R2 Rosbi G1 G1\n\n26) Trydnt: Move Y2 G3 R1\n\n27) rosbi: Sacrifice Y1 R1\nDiscover B1 R1 G2 G2\n\n28) Trydnt: Attack G1 R1\n\n29) rosbi: Build Y1 Rosbi\n\n30) Trydnt: Sacrifice G3 Trydnt\nBuild G2 R1\nBuild G2 R1\nBuild G3 Trydnt\n\n31) rosbi: Build R2 G1\n\n32) Trydnt: Move G2 R1 G3\n\n33) rosbi: Sacrifice Y1 Rosbi\nMove R2 G1 G2\n\n34) Trydnt: Build Y1 R1\n\n35) rosbi: Build R2 G2\n\n36) Trydnt: Move R1 Trydnt G3\n\n37) rosbi: Build R3 G1\n\n38) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 G3\nPass\n\n39) rosbi: Trade R2 Y2 G2\n\n40) Trydnt: Build R2 Trydnt\n\n41) rosbi: Sacrifice Y2 G2\nMove R2 G2 G3\nMove R2 G1 G3\nCatastrophe G3 Red\n\n42) Trydnt: Trade G2 Y2 G3\n\n43) rosbi: Build B2 G2\n\n44) Trydnt: Move B1 Trydnt R1\n\n45) rosbi: Trade B2 G2 G2\n\n46) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B2 R1\nBuild B3 G3\n\n47) rosbi: Build B3 G2\n\n48) Trydnt: Sacrifice Y2 R1\nMove G1 R1 G2\nMove G2 R1 G2\nCatastrophe G2 G\n\n49) rosbi: Build Y1 Rosbi\n\n50) Trydnt: Trade B2 G2 R1\n\n51) rosbi: Move Y1 Rosbi G1\n\n52) Trydnt: Build B1 R1\n\n53) rosbi: Move R3 Rosbi R1\n\n54) Trydnt: Sacrifice Y2 G3\nMove G2 R1 Rosbi\nMove B1 R1 Rosbi\n\n55) rosbi: Move R3 G1 Rosbi\n\n56) Trydnt: Sacrifice G2 Rosbi\nBuild B2 Rosbi\nBuild B3 Rosbi\n\n57) rosbi: Sacrifice Y1 G1\nMove R3 R1 Trydnt\n\n\tTrydnt: you could have kept going there but yeah probably was over\n\nHomeworlds Online (SDG# 33841)\nVariants: "Hard time"\nStarted: 2018.3.9, Ended: 2018.3.14\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: Homeworld G3 Y1 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build Y1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Discover Y1 Wil G2 Four\n\n7) Trydnt: Build B1 Trydnt\n\n8) wil: Build Y2 Four\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\n10) wil: Discover Y2 Four B3 Score\n\n11) Trydnt: Build B1 Trydnt\n\n12) wil: Trade Y2 B2 Score\n\n13) Trydnt: Build B2 G3\n\n14) wil: Build Y2 Wil\n\n15) Trydnt: Trade B2 Y2 G3\n\n16) wil: Discover Y2 Wil G2 Ago\n\n17) Trydnt: Discover B1 Trydnt Y3 Y3\n\n18) wil: Sacrifice Y1 Four\nMove B2 Score Ago\n\twil: this one will not work\n\n19) Trydnt: Build G1 Trydnt\n\n20) wil: Build Y1 Ago\n\n21) Trydnt: Build G1 Trydnt\n\n22) wil: Trade Y1 R1 Ago\n\n23) Trydnt: Move G1 Trydnt Y3\n\n24) wil: Build R1 Ago\n\n25) Trydnt: Trade B1 R1 Y3\n\n26) wil: Move R1 Ago Wil\n\n27) Trydnt: Build R2 Y3\n\n28) wil: Build R2 Ago\n\n29) Trydnt: Build G1 Y3\n\n30) wil: Discover R2 Ago Y3 Brought\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G2 Y3\nBuild G3 Trydnt\n\n32) wil: Build R2 Wil\n\n33) Trydnt: Discover R2 Y3 B2 B2\n\n34) wil: Build R3 Ago\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 Y3\nBuild R3 B2\n\n36) wil: Move R3 Ago G3\n\n37) Trydnt: Sacrifice Y2 G3\nDiscover B1 G3 Y2 Y2\nMove B1 Y2 Y3\n\n38) wil: Build Y1 Ago\n\n39) Trydnt: Trade R2 Y2 B2\n\n40) wil: Build R2 G3\n\twil: yup, a bad plan, poorly executed\n\n41) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild Y2 B2\n\n42) wil: Sacrifice B2 Ago\nTrade Y1 B1 Ago\nTrade R2 B2 Brought\n\n43) Trydnt: Move Y2 B2 Wil\n\n44) wil: Sacrifice B2 Brought\nTrade Y3 B3 Wil\nTrade R3 Y3 G3\n\n45) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 Wil\nBuild Y3 B2\n\n46) wil: Build R2 G3\n\n47) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild R3 B2\n\n48) wil: Attack Y2 Wil\n\n49) Trydnt: Move Y2 B2 Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 33870)\nVariants: "Hard time"\nStarted: 2018.3.9, Ended: 2018.3.25\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 B2 Y3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Build Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Trade Y1 B1 Trydnt\n\n8) wil: Build Y1 Wil\n\n9) Trydnt: Build B1 Trydnt\n\n10) wil: Discover Y1 Wil G2 And\n\n11) Trydnt: Discover B1 Trydnt G1 G1\n\n12) wil: Build Y2 And\n\n13) Trydnt: Build B2 G1\n\n14) wil: Build Y2 Wil\n\n15) Trydnt: Build B2 Trydnt\n\n16) wil: Trade Y2 R2 Wil\n\n17) Trydnt: Build B3 G1\n\n18) wil: Move Y2 And G1\n\n19) Trydnt: Trade B2 R2 Trydnt\n\n20) wil: Sacrifice R2 Wil\nAttack B1 G1\nAttack B2 G1\n\n21) Trydnt: Sacrifice R2 Trydnt\nAttack B2 G1\nAttack B1 G1\n\n22) wil: Build Y2 Wil\n\n23) Trydnt: Trade B3 Y3 G1\n\n24) wil: Build Y2 G1\n\n25) Trydnt: Discover Y3 G1 B2 B2\n\n26) wil: Trade Y2 R2 Wil\n\n27) Trydnt: Build B3 G1\n\n28) wil: Sacrifice R2 Wil\nAttack B1 G1\nAttack B2 G1\n\n29) Trydnt: Sacrifice B1 Trydnt\nTrade B3 R3 G1\n\n30) wil: Sacrifice B2 G1\nTrade Y2 R2 G1\nTrade Y2 R2 G1\n\n31) Trydnt: Attack B1 G1\n\n32) wil: Attack B1 G1\n\n33) Trydnt: Attack B1 G1\n\n34) wil: Attack B1 G1\n\n35) Trydnt: Build Y2 Trydnt\n\n36) wil: Build Y2 And\n\n37) Trydnt: Trade Y1 R1 Trydnt\n\n38) wil: Trade Y1 R1 Wil\n\twil: are you resigning? Can't think of anything other than reversing my move?\n\n39) Trydnt: Build R1 Trydnt\n\n40) wil: Build R2 Wil\n\n41) Trydnt: Sacrifice Y2 Trydnt\nMove R1 Trydnt G1\nDiscover R3 G1 G2 G2\n\n42) wil: Trade R2 Y2 G1\n\n43) Trydnt: Build R2 G1\n\n44) wil: Sacrifice R1 Wil\nAttack R2 G1\n\n45) Trydnt: Build R1 G1\nCatastrophe G1 R\n\n46) wil: Build B1 G1\n\n47) Trydnt: Move Y3 B2 G1\n\n48) wil: Build Y1 G1\n\n49) Trydnt: Move Y3 G1 G2\n\n50) wil: Move B1 G1 And\n\n51) Trydnt: Move R3 G2 G1\n\n52) wil: Sacrifice Y2 G1\nDiscover B1 G1 G2 In\nMove Y1 G1 In\n\n53) Trydnt: Move Y3 G2 G1\n\n54) wil: Move B1 In Wil\n\n55) Trydnt: Move R3 G1 And\n\twil: I'll need you to make a mistake to win this one...\n\n56) wil: Sacrifice Y2 And\nDiscover Y1 And G1 Gwon\nMove B1 And Gwon\n\n57) Trydnt: Move Y3 G1 And\n\n58) wil: Move B1 Gwon In\n\n59) Trydnt: Discover R3 And Y1 Y1\n\n60) wil: Build B2 Wil\n\n61) Trydnt: Build Y2 And\n\n62) wil: Discover B1 Wil Y2 Y2\n\n63) Trydnt: Build Y2 Trydnt\n\n64) wil: Sacrifice G3 Wil\nBuild B2 Y2\nBuild B3 In\nBuild B3 Wil\n\n65) Trydnt: Move R3 Y1 Y2\n\n66) wil: Sacrifice B2 Y2\nTrade B3 G3 Wil\nTrade B3 R3 In\n\n67) Trydnt: Attack B1 Y2\n\n68) wil: Build B2 In\n\n69) Trydnt: Discover B1 Y2 Y1 Y1\n\n70) wil: Build B3 In\n\n71) Trydnt: Move B1 Y1 In\nCatastrophe In B\n\n72) wil: Build B1 Wil\n\n73) Trydnt: Trade Y2 B2 Trydnt\n\n74) wil: Trade B2 G2 Wil\n\n75) Trydnt: Move B2 Trydnt Gwon\n\n76) wil: Discover Y1 Gwon R2 R2\n\n77) Trydnt: Build R1 Trydnt\n\twil: Poker wednesday...I am outta town thursday\n\n78) wil: M B1 Wil In\n\n79) Trydnt: Move R1 Trydnt Gwon\n\twil: well that was stupid...somebody was blind...dang screwed up galaxy positioning (gotta blame something, tis tradition)\n\n80) wil: Build B1 In\n\n81) Trydnt: Build R1 Gwon\n\n82) wil: Sacrifice G2 Wil\nBuild R2 In\nBuild R3 Wil\n\n83) Trydnt: Sacrifice Y2 And\nMove R1 Gwon In\nMove R1 Gwon In\nCatastrophe In R\n\n84) wil: Move R3 Wil In\n\n85) Trydnt: Discover R3 Y2 Y1 Y1\n\n86) wil: Build Y2 In\n\n87) Trydnt: Build Y2 And\n\n88) wil: Move B1 In Gwon\n\n89) Trydnt: Sacrifice R1 Trydnt\nAttack B1 Gwon\n\n90) wil: Build B2 In\n\n91) Trydnt: Sacrifice Y2 And\nMove B1 Gwon And\nMove B2 Gwon R2\n\n92) wil: Sacrifice Y1 R2\nDiscover B1 In G1 G1\n\n93) Trydnt: Build B3 And\n\n94) wil: Build B3 G1\n\n95) Trydnt: Trade B3 G3 And\n\n96) wil: Build B3 In\n\n97) Trydnt: Build B3 And\n\n98) wil: Trade B3 R3 G1\n\n99) Trydnt: Trade B1 R1 And\n\n100) wil: Move Y1 In G1\n\n101) Trydnt: Sacrifice G3 And\nBuild B1 And\nBuild B3 R2\nBuild Y1 And\n\n102) wil: Build Y2 G1\n\n103) Trydnt: Trade B2 Y2 R2\n\n104) wil: Build B2 G1\n\n105) Trydnt: Trade R1 G1 And\n\n106) wil: Build G1 Wil\n\n107) Trydnt: Move G1 And Y1\n\n108) wil: Discover G1 Wil R2 Are2\n\n109) Trydnt: Build R1 Y1\n\n110) wil: Discover B3 In R1 R1\n\n111) Trydnt: Move B3 And Wil\n\n112) wil: Attack B3 Wil\n\n113) Trydnt: Move B3 R2 Wil\n\n114) wil: Attack B3 Wil\n\n115) Trydnt: Move B1 And Wil\nCatastrophe Wil B\n\n116) wil: Build R1 In\n\n117) Trydnt: Move R3 Y1 Trydnt\n\n118) wil: Trade B3 G3 R1\n\n119) Trydnt: Sacrifice Y3 Trydnt\nMove Y2 R2 Wil\nMove Y1 And Wil\nMove Y3 And Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 33871)\nVariants: "Hard time"\nStarted: 2018.3.9, Ended: 2018.3.14\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Trade G1 R1 Wil\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: Build R2 Wil\n\n8) Trydnt: Build R2 Trydnt\n\n9) wil: Trade R1 Y1 Wil\n\n10) Trydnt: Discover R2 Trydnt G1 G1\n\n11) wil: Build Y1 Wil\n\n12) Trydnt: Build R1 Trydnt\n\n13) wil: Build Y1 Wil\n\n14) Trydnt: Trade R1 B1 Trydnt\n\n15) wil: Discover Y1 Wil G3 Our\n\n16) Trydnt: Move B1 Trydnt G1\n\n17) wil: Sacrifice G3 Wil\nBuild Y2 Our\nBuild Y2 Our\nBuild Y3 Wil\n\n18) Trydnt: Build B1 G1\n\n19) wil: Discover Y1 Our G1 Fathers\n\n20) Trydnt: Build G1 Trydnt\n\n21) wil: Build Y3 Fathers\n\n22) Trydnt: Build G2 Trydnt\n\n23) wil: Build Y3 Our\n\n24) Trydnt: Move G1 Trydnt Fathers\n\n25) wil: Move Y3 Our G1\n\n26) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Fathers\nBuild G2 Fathers\nBuild G3 Trydnt\nCatastrophe Fathers G\n\n27) wil: Build Y1 G1\n\n28) Trydnt: Trade R2 G2 G1\n\n29) wil: Build Y3 Our\n\n30) Trydnt: Build G1 G1\n\n31) wil: Discover Y1 G1 G3 Continent\n\n32) Trydnt: Build G1 G1\nCatastrophe G1 G\n\n33) wil: Build Y3 Continent\n\n\tTrydnt: gotta stop letting you freeze me out of yellow\n\twil: it does make it hard\n\nHomeworlds Online (SDG# 33872)\nVariants: "Hard time"\nStarted: 2018.3.9, Ended: 2018.3.26\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) wil: Homeworld G2 Y1 B3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build B1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade B3 Y3 Wil\n\n7) Trydnt: Build G1 Trydnt\n\n8) wil: Build Y1 Wil\n\n9) Trydnt: Discover B1 Trydnt G1 G1\n\n10) wil: Trade Y1 G1 Wil\n\n11) Trydnt: Trade G1 R1 Trydnt\n\n12) wil: Build Y1 Wil\n\n13) Trydnt: Build R1 Trydnt\n\n14) wil: Discover G1 Wil B3 Seven\n\n15) Trydnt: Build R1 Trydnt\n\n16) wil: Move Y1 Wil Seven\n\n17) Trydnt: Move R1 Trydnt G1\n\n18) wil: Build Y1 Wil\n\n19) Trydnt: Build R2 G1\n\n20) wil: Build Y2 Seven\n\n21) Trydnt: Trade R2 Y2 G1\n\n22) wil: Trade Y3 R3 Wil\n\n23) Trydnt: Build R2 G1\n\n24) wil: Build R2 Wil\n\n25) Trydnt: Discover R1 G1 Y3 Y3\n\n26) wil: Build Y2 Wil\n\n27) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y3\nBuild R3 Trydnt\nBuild Y3 G1\n\n28) wil: Move R2 Wil Seven\n\n29) Trydnt: Trade R3 G3 Trydnt\n\n30) wil: Build R3 Seven\n\n31) Trydnt: Build R3 G1\n\n32) wil: Trade R3 G3 Seven\n\n33) Trydnt: Discover Y3 G1 R3 R3\n\n34) wil: Discover Y2 Seven B2 Anew\n\n35) Trydnt: Build G1 Trydnt\n\n36) wil: Trade Y2 B2 Wil\n\n37) Trydnt: Build Y2 G1\n\n38) wil: Discover B2 Wil G3 Nation\n\n39) Trydnt: Discover R2 G1 B3 B3\n\n40) wil: Move G1 Seven Anew\n\n41) Trydnt: Trade R2 G2 B3\n\n42) wil: Build G2 Seven\n\n43) Trydnt: Build R2 G1\n\n44) wil: Sacrifice G3 Seven\nBuild G3 Seven\nBuild B1 Wil\nBuild B3 Nation\n\n45) Trydnt: Sacrifice G2 B3\nBuild B3 G1\nPass\n\n46) wil: Build G2 Anew\n\n47) Trydnt: Move R3 G1 Anew\n\n48) wil: Sacrifice Y2 Anew\nMove G1 Anew G1\nMove G2 Anew G1\n\n49) Trydnt: Sacrifice Y3 R3\nMove Y2 G1 Anew\nMove B3 G1 Y3\nMove Y2 G1 Anew\n\n50) wil: Sacrifice G3 Seven\nBuild G3 Seven\nBuild R3 Seven\nBuild Y2 Seven\n\n51) Trydnt: Attack G2 G1\n\n52) wil: Sacrifice Y1 Seven\nMove G2 Seven G1\nCatastrophe G1 G\n\n53) Trydnt: Discover Y2 Anew G1 G1\n\n54) wil: Trade B3 Y3 Nation\n\n55) Trydnt: Discover G1 Trydnt Y1 Y1\n\n56) wil: Move R3 Seven G1\n\n57) Trydnt: Move Y2 G1 Y3\n\n58) wil: Build R2 Seven\n\n59) Trydnt: Build G1 Y1\n\n60) wil: Move R2 Seven Y1\n\n61) Trydnt: Build G2 Trydnt\n\n62) wil: Attack G1 Y1\n\n63) Trydnt: Build G2 Y1\n\n64) wil: Attack G2 Y1\n\n65) Trydnt: Move G2 Trydnt Y1\nCatastrophe Y1 G\n\n66) wil: Move Y2 Seven G1\n\n67) Trydnt: Move R3 Anew Y1\n\n68) wil: Move R2 Y1 Nation\n\n69) Trydnt: Move R2 Y3 G1\n\n70) wil: Sacrifice Y3 Nation\nMove R3 G1 Anew\nMove Y1 Wil Y3\nMove Y2 G1 Y3\nCatastrophe Y3 Y\n\n71) Trydnt: Move R3 Y1 Nation\n\n72) wil: Sacrifice B2 Nation\nTrade R2 G2 Nation\nTrade G2 R2 Nation\n\n73) Trydnt: Move Y2 Anew Nation\n\n74) wil: Attack Y2 Nation\n\n75) Trydnt: Sacrifice R2 G1\nAttack Y2 Nation\nAttack R2 Nation\n\n76) wil: Build B1 Wil\n\n77) Trydnt: Build Y1 Nation\n\n78) wil: Move B1 Wil Seven\n\n79) Trydnt: Build Y1 Nation\n\n80) wil: Discover B1 Wil Y3 Y3\n\n81) Trydnt: Discover Y2 Nation G2 G2\n\n82) wil: Sacrifice G3 Seven\nBuild B2 Wil\nBuild B3 Seven\nBuild B3 Y3\n\n83) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Nation\nBuild Y2 G2\nBuild Y3 G2\n\n84) wil: Trade B3 G3 Seven\n\n85) Trydnt: Discover Y2 G2 B3 B3\n\n86) wil: Build R1 Seven\n\n87) Trydnt: Build R2 Nation\n\n88) wil: Trade B3 G3 Y3\n\n89) Trydnt: Move R2 Nation G2\n\n90) wil: Build B3 Wil\n\n91) Trydnt: Move R2 G2 B3\n\twil: there you go...thought you'd like to feel what a yellow monopoly felt like!\n\n92) wil: Build G1 Y3\n\n93) Trydnt: Trade R2 G2 B3\n\n94) wil: Sacrifice G3 Y3\nBuild G1 Seven\nBuild G1 Seven\nBuild G3 Y3\n\n95) Trydnt: Build R2 Nation\n\n96) wil: Move G1 Y3 Anew\n\n97) Trydnt: Move Y3 G2 B3\n\n98) wil: Pass\n\n99) Trydnt: Pass\n\n100) wil: Pass\n\n101) Trydnt: Sacrifice Y1 Nation\nDiscover R3 Nation Y1 Y1\n\n102) wil: Move G3 Y3 G2\n\n103) Trydnt: Move R3 Y1 Y3\n\tTrydnt: this is weird\n\n104) wil: Sacrifice R1 Seven\nAttack Y2 G2\n\n105) Trydnt: Sacrifice Y2 B3\nDiscover R2 Nation Y1 Y1\nDiscover Y2 Nation R1 R1\n\n106) wil: Sacrifice Y2 G2\nMove G3 G2 R1\nMove G3 R1 Trydnt\n\twil: another fine mess you've gotten us into\n\twil: 53 moves...\n\n\nHomeworlds Online (SDG# 33873)\nVariants: "Hard time"\nStarted: 2018.3.9, Ended: 2018.3.17\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\twil: 6 games of experimentation!\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\twil: Think this is the first time ever we've both started with a home defense system\n\n5) wil: Trade G1 R1 Wil\n\tTrydnt: I don' think so but maybe\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: Build R2 Wil\n\n8) Trydnt: Build R2 Trydnt\n\n9) wil: Trade R1 Y1 Wil\n\n10) Trydnt: Trade R2 Y2 Trydnt\n\n11) wil: Build Y1 Wil\n\n12) Trydnt: Build G1 Trydnt\n\n13) wil: Build G1 Wil\n\n14) Trydnt: Trade G1 B1 Trydnt\n\n15) wil: Trade G1 B1 Wil\n\n16) Trydnt: Build G1 Trydnt\n\n17) wil: Build G1 Wil\n\n18) Trydnt: Build Y1 Trydnt\n\n19) wil: Build Y2 Wil\n\n20) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 Trydnt G1 G1\nDiscover G1 Trydnt B1 B1\n\n21) wil: Discover Y1 Wil G3 Gave\n\n22) Trydnt: Build G2 B1\n\n23) wil: Build G2 Wil\n\n24) Trydnt: Build Y2 G1\n\n25) wil: Discover G2 Wil Y3 To\n\n26) Trydnt: Discover Y2 G1 G2 G2\n\n27) wil: Discover Y1 Wil B3 This\n\n28) Trydnt: Sacrifice G2 B1\nBuild Y2 G1\nBuild Y3 G2\n\n29) wil: Sacrifice G2 To\nBuild Y3 Wil\nBuild Y3 Gave\n\n30) Trydnt: Build G2 Trydnt\n\n31) wil: Sacrifice Y2 Wil\nMove Y1 This G2\nMove Y1 Gave G2\nCatastrophe G2 Y\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B1\nBuild G2 B1\nBuild G3 Trydnt\n\n33) wil: Move B1 Wil Gave\n\n34) Trydnt: Trade G2 Y2 B1\n\n35) wil: Build B2 Gave\n\n36) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B1\nBuild G3 Trydnt\nBuild Y1 G1\n\n37) wil: Discover B1 Gave Y1 Conceived\n\n38) Trydnt: Move Y1 G1 Gave\n\n39) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Conceived\nBuild B3 Gave\n\n40) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G1\nBuild Y3 B1\n\n41) wil: Sacrifice Y3 Gave\nMove R2 Wil Gave\nMove B1 Conceived Trydnt\nMove B2 Conceived Trydnt\nCatastrophe Trydnt B\n\n42) Trydnt: Sacrifice G2 B1\nBuild Y1 Gave\nBuild Y3 B1\n\n43) wil: Attack Y1 Gave\n\n44) Trydnt: Sacrifice Y3 B1\nMove G1 B1 Gave\nMove G2 B1 Gave\nMove G2 Trydnt Gave\nCatastrophe Gave G\n\n45) wil: Build Y1 Wil\n\n46) Trydnt: Trade Y2 B2 B1\n\n47) wil: Trade G1 R1 Wil\n\n48) Trydnt: Move B2 B1 Trydnt\n\n49) wil: Build R2 Wil\n\n50) Trydnt: Sacrifice Y2 G1\nDiscover R1 Trydnt Y3 Y3\nMove R1 Y3 Wil\nCatastrophe Wil R\n\n51) wil: Trade Y1 R1 Wil\n\n52) Trydnt: Build B1 Trydnt\n\n53) wil: Build R1 Wil\n\n54) Trydnt: Sacrifice B2 Trydnt\nTrade Y2 B2 G1\nTrade Y1 B1 G1\n\n55) wil: Build R1 Wil\n\n56) Trydnt: Sacrifice Y3 B1\nMove B2 G1 Wil\nMove B1 G1 Wil\nDiscover B1 Trydnt Y1 Y1\n\n57) wil: Trade G3 B3 Wil\nCatastrophe Wil B\n\n\twil: lol...my brain cells are not communicating at all!!\r\n\n\tTrydnt: that was interesting. one of the only games I think where we both blew half the others hw without a full plan\n\twil: possibly\n\nHomeworlds Online (SDG# 33876)\nStarted: 2018.3.9, Ended: 2018.4.23\nParticipants: Trydnt (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\n4) Trydnt: Build G1 Trydnt\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n8) Trydnt: Build R2 Trydnt\n\n9) Draw5PlayAll: Build R2 Draw5playall\n\n10) Trydnt: Build R2 Trydnt\n\n11) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n12) Trydnt: Trade R2 Y2 Trydnt\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) Trydnt: Build R2 Trydnt\n\n15) Draw5PlayAll: Discover R2 Draw5playall G2 G2\n\n16) Trydnt: Discover R2 Trydnt G1 G1\n\n17) Draw5PlayAll: Build R3 G2\n\n18) Trydnt: Build R3 G1\n\n19) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n20) Trydnt: Trade R2 B2 Trydnt\n\n21) Draw5PlayAll: Build Y1 Draw5playall\n\n22) Trydnt: Build B1 Trydnt\n\n23) Draw5PlayAll: Move B1 Draw5playall G2\n\n24) Trydnt: Move B1 Trydnt G1\n\tDraw5PlayAll: I like how no one is Grabbing All of One Color.\n\n25) Draw5PlayAll: Move Y1 Draw5playall G2\n\n26) Trydnt: Move Y2 Trydnt G1\n\tTrydnt: yeah monopolies are a good way to win but make for boring games\n\n27) Draw5PlayAll: Build Y1 G2\n\n28) Trydnt: Discover R2 G1 G2 G22\n\n29) Draw5PlayAll: Discover Y1 G2 G1 Liberty\n\n30) Trydnt: Sacrifice G3 Trydnt\nBuild R1 G1\nBuild R2 G22\nBuild R3 Trydnt\n\tDraw5PlayAll: The statue of liberty is green, so...\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 G2\nBuild Y3 Liberty\nBuild Y3 Draw5playall\n\n32) Trydnt: Build Y3 G1\n\n33) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n34) Trydnt: Discover R3 G1 Y3 Y3\n\n35) Draw5PlayAll: Build G1 Draw5playall\n\n36) Trydnt: Trade R3 G3 Trydnt\n\n37) Draw5PlayAll: Trade R2 B2 G2\n\n38) Trydnt: Build G2 Trydnt\n\n39) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 G2 G1\nMove Y1 G2 G1\nCatastrophe G1 Yellow\n\n40) Trydnt: Sacrifice B2 Trydnt\nTrade R1 Y1 G1\nTrade R2 Y2 G22\n\n41) Draw5PlayAll: Build G3 Draw5playall\n\n42) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 G22\nBuild R1 Y3\n\n43) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n44) Trydnt: Sacrifice G2 Trydnt\nBuild R2 G22\nBuild Y2 G1\n\n45) Draw5PlayAll: Move Y1 Liberty G2\n\n46) Trydnt: Move R2 G22 G1\n\n47) Draw5PlayAll: Build G2 Draw5playall\n\n48) Trydnt:\nBuild G3 Trydnt\n\n49) Draw5PlayAll: Move B1 G2 Liberty\n\n50) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 G1\nBuild R3 G22\n\n51) Draw5PlayAll: Move G2 Draw5playall G2\n\n52) Trydnt: Trade R2 B2 G1\n\n53) Draw5PlayAll: Build R2 G2\n\n54) Trydnt: Move B2 G1 G22\n\n55) Draw5PlayAll: Move G2 G2 Liberty\n\n56) Trydnt: Move R2 G1 G22\n\n57) Draw5PlayAll: Move G1 Draw5playall G2\n\n58) Trydnt: Discover G3 Trydnt B1 B1\n\n59) Draw5PlayAll: Move R2 G2 Liberty\n\n60) Trydnt: Sacrifice Y2 G22\nMove R3 G22 Draw5playall\nDiscover G3 B1 B3 B3\n\n61) Draw5PlayAll: Attack R3 Draw5playall\n\n62) Trydnt: Sacrifice Y2 G1\nMove R2 G22 Draw5playall\nMove R2 G22 Draw5playall\nCatastrophe Draw5playall R\n\n63) Draw5PlayAll: Sacrifice G2 Liberty\nBuild Y2 G2\nBuild Y2 Liberty\n\n64) Trydnt: Build B1 G22\n\tDraw5PlayAll: I think I benefitted from that more than you did\n\n65) Draw5PlayAll: Build B2 Liberty\n\n66) Trydnt: Build G2 Trydnt\n\n67) Draw5PlayAll: Build R1 Liberty\n\n68) Trydnt: Move B2 G22 Liberty\n\n69) Draw5PlayAll: Move B1 Liberty G2\n\n70) Trydnt: Sacrifice R3 Y3\nAttack R1 Liberty\nAttack Y2 Liberty\nAttack R2 Liberty\n\n71) Draw5PlayAll: Sacrifice R3 G2\nAttack R2 Liberty\nAttack Y2 Liberty\nAttack B2 Liberty\n\n72) Trydnt: Build R2 Liberty\n\n73) Draw5PlayAll: Sacrifice R2 Liberty\nAttack R2 Liberty\nAttack R1 Liberty\n\n74) Trydnt: Sacrifice Y1 G1\nDiscover G2 Trydnt Y1 Y1\n\n75) Draw5PlayAll: Move R2 Liberty G22\n\n76) Trydnt: Sacrifice G3 B3\nBuild G3 Y1\nBuild B3 G22\nBuild R2 Y3\n\n77) Draw5PlayAll: Move B2 G2 G1\n\n78) Trydnt: Sacrifice R1 Y3\nAttack R2 G22\n\n79) Draw5PlayAll: Discover Y1 G2 R1 Idkwhy\n\n80) Trydnt: Move G3 Y1 Y3\n\n81) Draw5PlayAll: Trade G3 R3 Draw5playall\n\n82) Trydnt: Build G3 Y1\n\n83) Draw5PlayAll: Move Y2 G2 Idkwhy\n\n84) Trydnt: Move R2 Y3 Liberty\n\n85) Draw5PlayAll: Sacrifice Y3 Liberty\nMove B2 Liberty Trydnt\nMove B2 Liberty Trydnt\nMove Y2 Liberty Trydnt\n\tDraw5PlayAll: You could have won by sending your G3 into my homeworld rather than y3... I only had one weapon and attacking the G3 would leave me defenseless against your B3.\n\n86) Trydnt: Build Y3 G22\n\n87) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove B2 G1 Trydnt\nMove Y2 Idkwhy Trydnt\nMove Y1 Idkwhy Trydnt\nCatastrophe Trydnt Yellow\nCatastrophe Trydnt Blue\n\n\tDraw5PlayAll: Nice try.\r\n\r\nThat must be the longest move text I have ever seen. 8 sentences.\n\tTrydnt: I went in half cocked haha \n\nHomeworlds Online (SDG# 33877)\nStarted: 2018.3.12, Ended: 2018.8.23\nParticipants: Mandrel (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) Mandrel: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tMandrel: Have a good game\n\tTrydnt: you too\n\n4) Mandrel: Build G1 Mandrel\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) Mandrel: Trade G1 Y1 Mandrel\n\n7) Trydnt: Build G1 Trydnt\n\n8) Mandrel: Build Y1 Mandrel\n\n9) Trydnt: Trade G1 Y1 Trydnt\n\n10) Mandrel: Build Y2 Mandrel\n\n11) Trydnt: Build Y2 Trydnt\n\n12) Mandrel: Discover Y1 Mandrel G2 Squirrel\n\n13) Trydnt: Discover B1 Trydnt G3 G3\n\tTrydnt: did you see the ladder challenge?\n\n14) Mandrel: Trade Y2 B2 Mandrel\n\n15) Trydnt: Move Y1 Trydnt G3\n\tMandrel: Oh no, sorry I didn't, don't always check the main page. Feel free to send again!\n\n16) Mandrel: M B2 Mandrel Squirrel\n\n17) Trydnt: Build Y2 G3\n\n18) Mandrel: B Y2 Squirrel\n\n19) Trydnt: Move Y1 G3 Squirrel\n\n20) Mandrel: Trade Y1 R1 Squirrel\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild Y1 Squirrel\nBuild Y3 G3\nBuild Y3 Trydnt\n\n22) Mandrel: Build Y3 Mandrel\n\n23) Trydnt: Sacrifice Y2 G3\nMove Y1 Squirrel Mandrel\nMove Y1 Squirrel Mandrel\nCatastrophe Mandrel Y\n\n24) Mandrel: B G1 Mandrel\n\n25) Trydnt: Build Y1 G3\n\n26) Mandrel: T G1 Y1 Mandrel\n\n27) Trydnt: Trade Y3 G3 Trydnt\n\n28) Mandrel: B G1 Mandrel\n\n29) Trydnt: Trade Y1 R1 G3\n\n30) Mandrel: B R2 Squirrel\n\n31) Trydnt: Build R2 G3\n\n32) Mandrel: Discover R2 Squirrel B3 Tea\n\n33) Trydnt: Discover R2 G3 G2 G2\n\n34) Mandrel: Build G1 Mandrel\n\n35) Trydnt: Trade R1 G1 G3\n\n36) Mandrel: T G1 B1 Mandrel\n\n37) Trydnt: Build Y1 G3\n\n38) Mandrel: D G1 Mandrel B2 Sky\n\n39) Trydnt: Build B3 G3\n\n40) Mandrel: Build B3 Squirrel\n\n41) Trydnt: Move B3 G3 G2\n\n42) Mandrel: Trade B2 G2 Squirrel\n\n43) Trydnt: Sacrifice G1 G3\nBuild B2 G2\n\n44) Mandrel: Move G2 Squirrel Tea\n\n45) Trydnt: Move Y1 G3 G2\n\n46) Mandrel: Build G1 Mandrel\n\n47) Trydnt: Build G1 Trydnt\n\n48) Mandrel: Discover B1 Mandrel Y2 Intent\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 G3\nBuild Y3 G2\n\n50) Mandrel: S G3 Mandrel\nB G3 Mandrel\nB Y3 Mandrel\nB R1 Tea\n\n51) Trydnt: Move Y3 G2 Tea\n\n52) Mandrel: Sacrifice Y2 Squirrel\nMove R1 Tea Trydnt\nMove R2 Tea Trydnt\n\n53) Trydnt: Sacrifice R2 G2\nAttack R1 Trydnt\nAttack R2 Trydnt\n\n54) Mandrel: S Y3 Mandrel\nM R1 Squirrel Tea\nM R1 Tea Trydnt\nM G2 Tea Intent\nC Trydnt R\n\n55) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G2\nBuild Y3 Tea\n\n56) Mandrel: Trade G1 R1 Mandrel\n\n57) Trydnt: Trade G1 R1 Trydnt\n\n58) Mandrel: B G1 Mandrel\n\n59) Trydnt: Build R1 Trydnt\n\n60) Mandrel: Sacrifice G1 Sky\nBuild B2 Intent\n\n61) Trydnt: Sacrifice Y3 Tea\nMove R1 Trydnt Mandrel\nMove R1 Trydnt Mandrel\nCatastrophe Mandrel R\nMove B3 G2 Mandrel\n\n\nHomeworlds Online (SDG# 33889)\nVariants: "Hard time"\nStarted: 2018.3.14, Ended: 2018.3.29\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 R2 B3\n\n2) wil: Homeworld B2 Y1 G3\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Build B1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Trade B3 Y3 Trydnt\n\n8) wil: Build Y1 Wil\n\n9) Trydnt: Build Y2 Trydnt\n\n10) wil: Trade Y1 B1 Wil\n\n11) Trydnt: Discover B1 Trydnt Y1 Y1\n\n12) wil: Build Y2 Wil\n\n13) Trydnt: Build Y2 Trydnt\n\n14) wil: Discover Y2 Wil G3 Liberty\n\n15) Trydnt: Trade Y2 R2 Trydnt\n\n16) wil: Trade Y1 R1 Wil\n\n17) Trydnt: Build B2 Trydnt\n\n18) wil: Move B1 Wil Liberty\n\n19) Trydnt: Discover B2 Trydnt G1 G1\n\n20) wil: Build R1 Wil\n\n21) Trydnt: Move R2 Trydnt G1\n\n22) wil: Move R1 Wil Liberty\n\n23) Trydnt: Trade B2 Y2 G1\n\n24) wil: Build B2 Liberty\n\n25) Trydnt: Build B2 Trydnt\n\n26) wil: Move B2 Liberty G1 Gone\n\n27) Trydnt: Attack B2 G1\n\n28) wil: Build B3 Liberty\n\n29) Trydnt: Sacrifice Y2 Trydnt\nMove B1 Y1 Liberty\nMove B2 G1 Liberty\nCatastrophe Liberty B\n\n30) wil: Build R1 Wil\n\n31) Trydnt: Build Y1 G1\n\n32) wil: Build R2 Wil\n\n33) Trydnt: Build R3 G1\n\n34) wil: Build R3 Liberty\n\n35) Trydnt: Discover R2 G1 Y3 Y3\n\n36) wil: Trade R2 G2 Wil\n\n37) Trydnt: Move B1 Trydnt G1\n\n38) wil: Discover R1 Liberty Y1 Y1\n\n39) Trydnt: Discover Y2 G1 R3 R3\n\n40) wil: Build R2 Liberty\n\n41) Trydnt: Trade B2 G2 Trydnt\n\n42) wil: Discover G2 Wil Y3 Why3\n\n43) Trydnt: Move R2 Y3 Y1\n\n44) wil: Build Y2 Liberty\n\n45) Trydnt: Sacrifice G2 Trydnt\nBuild Y3 R3\nBuild B1 G1\n\n46) wil: Move R1 Y1 R3\n\n47) Trydnt: Discover Y3 R3 B1 B1\n\n48) wil: Move R1 Wil R3\n\n49) Trydnt: Move Y2 R3 B1\n\n50) wil: Discover Y2 Liberty G1 Gwon\n\n51) Trydnt: Move R3 G1 Why3\n\n52) wil: Move R3 Liberty G1\n\n53) Trydnt: Attack G2 Why3\n\n54) wil: Attack Y1 G1\n\n55) Trydnt: Sacrifice Y2 B1\nMove B1 G1 Why3\nMove B1 G1 Why3\n\n56) wil: Build Y2 G1\n\n57) Trydnt: Build B2 Why3\n\n58) wil: Move Y1 G1 Trydnt\n\n59) Trydnt: Sacrifice B2 Why3\nTrade Y3 B3 Trydnt\nPass\n\n60) wil: Build Y3 Gwon\n\n61) Trydnt: Attack Y1 Trydnt\n\n62) wil: Build G1 Wil\n\n63) Trydnt: Build G2 Why3\n\n64) wil: Discover G1 Wil B3 B3\n\n65) Trydnt: Move Y3 B1 B3\n\n66) wil: Trade G1 B1 B3\n\n67) Trydnt: Build G1 Why3\n\n68) wil: Pass\n\n69) Trydnt: Move G1 Why3 Wil\n\n70) wil: Sacrifice Y2 Gwon\nMove Y3 Gwon Why3\nMove Y3 Why3 Wil\n\n71) Trydnt: Sacrifice G2 Why3\nBuild G1 Wil\nBuild G2 Wil\nCatastrophe Wil G\n\n72) wil: Build Y2 Liberty\n\n73) Trydnt: Move R2 Y1 B3\n\n74) wil: Build Y1 G1 Wil\n\n75) Trydnt: Attack B1 B3\n\n76) wil: Move Y1 G1 R3\n\n77) Trydnt: Build B2 Trydnt\n\n78) wil: Trade R1 G1 Wil\n\n79) Trydnt: Build B2 Trydnt\n\n80) wil: Build G1 Wil\n\n81) Trydnt: Build B3 Why3\n\n82) wil: Move G1 Wil R3\n\n83) Trydnt: Trade B3 G3 Why3\n\n84) wil: Discover R1 R3 R1 R1\n\n85) Trydnt: Sacrifice Y3 B3\nMove R3 Why3 G1\nMove R3 G1 Liberty\nMove G2 Why3 R1\n\n86) wil: Build Y3 G1\n\n87) Trydnt: Sacrifice R2 B3\nAttack Y2 Liberty\nAttack R1 R1\n\n88) wil: Build R2 Liberty\n\twil: I like that we can experiment like crazy here online with weirdness...and then when I lose my numbers go down and people underate my abilities...its a win win!!\n\n89) Trydnt: Sacrifice R3 Liberty\nAttack R2 Liberty\nAttack R2 Liberty\nAttack Y2 Liberty\n\tTrydnt: haha only new people surely right? it's not like you could ever get worse right? lol\n\twil: every loss makes folks think they could also beat me... lol...and often they do!\n\n90) wil: Build R3 G1\n\n91) Trydnt: Sacrifice Y2 Liberty\nMove R2 Liberty G1\nMove R2 Liberty G1\nCatastrophe G1 R\n\n92) wil: Move R1 R3 Wil\n\n93) Trydnt: Build Y2 Liberty\n\n94) wil: Build R2 Wil\n\n95) Trydnt: Build G2 Why3\n\n96) wil: Build G2 Wil\n\n97) Trydnt: Sacrifice G3 Why3\nBuild G3 Why3\nBuild B3 B3\nPass\n\n98) wil: Sacrifice Y2 G1\nMove G2 Wil Why3\nMove G1 Wil Why3\nCatastrophe Why3 G\n\n99) Trydnt: Trade B3 G3 B3\n\n100) wil: Move Y3 G1 Why3\n\n101) Trydnt: Sacrifice G2 R1\nBuild Y2 Liberty\nBuild B3 B3\n\n102) wil: Sacrifice R2 Wil\nAttack B1 Why3\nAttack B1 Why3\n\n103) Trydnt: Sacrifice Y2 Liberty\nMove Y2 Liberty Wil\nMove Y2 Liberty Wil\nCatastrophe Wil Y\n\n104) wil: Sacrifice Y3 Why3\nDiscover B1 Why3 Y1 Y1\nMove B1 Why3 Y1\nMove B1 Y1 B3\nCatastrophe B3 B\n\n105) Trydnt: Move B2 Trydnt Y1\n\n106) wil: Build Y2 R3\n\n107) Trydnt: Sacrifice R1 R1\nAttack B1 Y1\n\n108) wil: Build Y2 R3\n\n109) Trydnt: Trade B3 Y3 Trydnt\n\n110) wil: Move Y2 R3 Wil\n\n111) Trydnt: Sacrifice Y3 Trydnt\nMove B2 Trydnt Y1\nMove B1 Y1 Wil\nMove B2 Y1 Wil\n\twil: four defends on the top of volcano...that is a record for me..\n\n112) wil: Trade R1 B1 Wil\nCatastrophe Wil B\n\n\twil: My abilities of self annihilation in this game are getting better!\n\twil: And look, your rating now coincides to that year which we ran away from home.\n\tTrydnt: You're very good at blowing up homeworlds, just not always your opponent's\n\nHomeworlds Online (SDG# 33682)\nVariants: "Hard time"\nStarted: 2018.3.14, Ended: 2018.3.17\nParticipants: Draw5PlayAll (S), sharkhands (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 33901)\nVariants: "Unrated, Hard time"\nStarted: 2018.3.18, Ended: 2018.4.10\nParticipants: Babamots (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B1 Y2 G3\n\n2) Babamots: Homeworld Y3 B2 G3\n\tFelix: Good luck :) do I need to fill out a game start form?\n\tBabamots: No need to fill out the form. Since I am making all updates to the bracket manually, the forms just point me to changes I need to make. I already know about this game, so the form isn't needed.\n\n3) Felix: B G1 Felix\n\n4) Babamots: Build G1 Babamots\n\tFelix: I thought as much. Just wanted to be sure!\n\n5) Felix: T G1 B1 Felix\n\n6) Babamots: Trade G1 B1 Babamots\n\n7) Felix: B B2 Felix\n\n8) Babamots: Build B2 Babamots\n\n9) Felix: Discover B2 Felix G3 Rim\n\n10) Babamots: Trade B1 R1 Babamots\n\n11) Felix: Build G1 Felix\n\n12) Babamots: Build G1 Babamots\n\n13) Felix: Discover G1 Felix B3 Savor\n\n14) Babamots: Discover B2 Babamots Y1 Bajor\n\n15) Felix: B G1 Felix\n\n16) Babamots: Build G2 Babamots\n\n17) Felix: Build G2 Savor\n\n18) Babamots: Move B2 Bajor Rim\n\n19) Felix: Sacrifice G2 Savor\nBuild B1 Rim\nBuild B3 Felix\n\n20) Babamots: Discover G2 Babamots Y1 Pakled\n\n21) Felix: Discover B3 Felix R3 Range\n\n22) Babamots: Sacrifice G3 Babamots\nBuild G2 Pakled\nBuild G2 Pakled\nBuild G3 Babamots\n\n23) Felix: Sacrifice G1 Savor\nBuild B3 Range\n\n24) Babamots: Trade B2 R2 Rim\n\n25) Felix: Sacrifice G3 Felix\nBuild B2 Felix\nBuild B3 Rim\nBuild G1 Felix\n\n26) Babamots: Sacrifice G3 Babamots\nBuild R1 Babamots\nBuild G3 Babamots\nBuild G3 Babamots\n\n27) Felix: Sacrifice B2 Rim\nTrade B3 R3 Rim\nTrade B3 Y3 Range\n\n28) Babamots: Sacrifice G3 Babamots\nBuild R1 Rim\nBuild R2 Babamots\nBuild G3 Babamots\n\n29) Felix: Sacrifice Y3 Range\nMove G1 Felix Rim\nMove G1 Rim Pakled\nMove G1 Pakled Babamots\nCatastrophe Babamots Green\n\n30) Babamots: Build R2 Rim\nCatastrophe Rim R\n\tBabamots: Heck. I need to play when I can focus or this is going to happen again.\n\tFelix: I hear you. I tend to rush my moves too. Take your time though, no pressure from me! And you're not conquered yet; I'm still in a fairly weak position. This has been an interesting game!\n\n31) Felix: Build B2 Rim\n\tBabamots: Yeah, I make things interesting by not noticing any threats :-P.\n\n32) Babamots: Discover G2 Pakled Y3 Cardassia\n\tBabamots: I've got three presentations to give this week, and I'm totally unprepared for two of them. If I make any moves before Monday, you can tell me to get back to work.\n\tFelix: Haha, you know you won't be able to resist making a move before then. You have to take breaks from presentation prep at some point! Homeworlds is more important anyway. Priorities, man ;)\n\n33) Felix: Discover B2 Felix G3 Rykor\n\n34) Babamots: Move G2 Pakled Rim\n\tFelix: Hope your presentations went well!\n\tBabamots: There's one more to go. It's the longest and there's the least to say.\n\tDraw5PlayAll: Cardassia is the only reference I know.\n\n35) Felix: Build B3 Rim\n\n36) Babamots: Sacrifice G2 Pakled\nBuild G1 Rim\nBuild G1 Rim\nCatastrophe Rim G\n\n37) Felix: Sacrifice B2 Rykor\nTrade B3 Y3 Range\nTrade B1 R1 Felix\n\n38) Babamots: Trade R1 G1 Babamots\n\n39) Felix: Move Y3 Range Felix\n\tFelix: Very nice move! Didn't anticipate that one.\n\n40) Babamots: Build G1 Cardassia\n\tBabamots: It was a high cost to me, but after a lot of thought, nothing else was looking promising.\n\n41) Felix: Build G2 Felix\n\tFelix: Very promising. I'm beginning to sweat!\n\tBabamots: Darn! I had my move entered and then it wasn't my turn anymore.\n\n42) Babamots: Build G2 Babamots\n\tFelix: Sorry about that! To be fair, it only took me about 40 seconds to undo my move\n\n43) Felix: Discover G2 Felix B3 Bazoik\n\tBabamots: No problem. If you're quicker than me, so be it. I've got an alert on my phone for when I get SDG email, so I can move pretty promptly if I'm focused.\n\n44) Babamots: Trade G1 Y1 Babamots\n\n45) Felix: Build R1 Felix\n\n46) Babamots: Discover R2 Babamots Y1 Iconia\n\tFelix: Nice recovery. I wanted to badly to capitalize on your lack of a large, but my hands were tied\n\n47) Felix: Build R2 Felix\n\n48) Babamots: Build R2 Babamots\n\n49) Felix: M R1 Felix Bazoik\n\n50) Babamots: Sacrifice G2 Cardassia\nBuild R3 Babamots\nBuild R3 Iconia\n\n51) Felix: B R3 Bazoik\n\n52) Babamots: Trade R1 B1 Babamots\n\n53) Felix: M R2 Felix Cardassia\n\n54) Babamots: Move R3 Iconia Cardassia\n\n55) Felix: T R3 G3 Bazoik\n\n56) Babamots: Sacrifice G2 Babamots\nBuild R1 Babamots\nBuild R3 Iconia\n\n57) Felix: D R2 Cardassia G1 Lost\n\n58) Babamots: Trade R2 G2 Babamots\n\n59) Felix: Sacrifice G3 Bazoik\nBuild G2 Bazoik\nBuild G3 Bazoik\nBuild R2 Bazoik\n\n60) Babamots: Build G3 Babamots\n\n61) Felix: Sacrifice G3 Bazoik\nBuild G3 Bazoik\nBuild G3 Felix\nBuild Y1 Felix\n\tBabamots: Well, that's given me a lot to think about. It's been nice to have a quick back and forth, but I think I'll make a better choice in the morning.\n\n62) Babamots: Discover Y1 Babamots B1 Bynaus\n\n63) Felix: Move Y3 Felix Bazoik\n\tFelix: I should probably be taking more time to think about my moves. I've fully squandered that opportunity I had!\n\n64) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bynaus\nBuild B2 Babamots\nBuild G3 Babamots\n\n65) Felix: Move G3 Bazoik Bynaus\n\n66) Babamots: Sacrifice Y1 Bynaus\nDiscover Y2 Bynaus B2 Vulcan\n\n67) Felix: Sacrifice G3 Felix\nBuild Y1 Bazoik\nBuild Y2 Felix\nBuild G3 Felix\n\n68) Babamots: Move R3 Babamots Lost\n\n69) Felix: T G3 B3 Bynaus\n\n70) Babamots: Sacrifice B1 Babamots\nTrade R3 G3 Iconia\n\n71) Felix: B R3 Felix\n\n72) Babamots: Move B2 Babamots Iconia\n\n73) Felix: M G2 Bazoik Bynaus\n\n74) Babamots: Sacrifice G3 Babamots\nBuild B1 Iconia\nBuild B3 Iconia\nBuild G3 Babamots\n\n75) Felix: Sacrifice Y2 Felix\nMove R2 Lost Vulcan\nMove G2 Bazoik Bynaus\n\n76) Babamots: Sacrifice B3 Iconia\nTrade G2 Y2 Babamots\nTrade Y2 G2 Vulcan\nTrade B2 Y2 Iconia\n\n77) Felix: M Y1 Bazoik Iconia\n\n78) Babamots: Sacrifice R2 Iconia\nAttack Y1 Iconia\nAttack R2 Vulcan\n\n79) Felix: S Y3 Bazoik\nM Y1 Felix Bazoik\nM Y1 Bazoik Iconia\nC Iconia Yellow\nD B3 Bynaus G3 Grintok\n\n80) Babamots: Trade G3 Y3 Babamots\n\tFelix: Looks like all the dominoes are lining up :)\n\tBabamots: It's a ticklish spot, but I'm not quite doomed yet, am I? Maybe you can see a few moves deeper.\n\tFelix: Oh no, haha, I don't think you're doomed at all. There's just a lot of pieces on the board, so something is probably going to blow up soon!\n\tBabamots: Well, here comes a wild move. I'm a little desperate to hold onto yellow and I think it's worth the price.\n\n81) Felix: S G2 Bynaus\nB B1 Grintok\nB B2 Grintok\n\n82) Babamots: Trade R2 Y2 Vulcan\n\tFelix: Good move! Very creative. I didn't think you could get both Y2s like that\n\n83) Felix: T B1 Y1 Grintok\n\n84) Babamots: Sacrifice G2 Vulcan\nBuild Y1 Vulcan\nBuild G2 Cardassia\n\tDraw5PlayAll: Bynaus from 11001001?\n\tBabamots: Yes. All I really remember about that episode is Riker falling in love with Minuet the hologram.\n\n85) Felix: M B3 Grintok Vulcan\n\n86) Babamots: Sacrifice Y3 Babamots\nMove R3 Cardassia Felix\nMove G2 Cardassia Felix\nMove G1 Cardassia Felix\nCatastrophe Felix G\n\n87) Felix: S R1 Felix\nA R3 Felix\n\n88) Babamots: Sacrifice Y2 Vulcan\nMove R3 Lost Grintok\nDiscover Y1 Vulcan G1 Galorndon\n\n89) Felix: Sacrifice B2 Grintok\nTrade R2 Y2 Bazoik\nTrade R3 G3 Felix\n\tBabamots: I felt like I was under your thumb while you had all that yellow. I'm going to try to make sure that doesn't happen again. :-)\n\tBabamots: I felt like I was under your thumb while you had all that yellow. I'm going to try to make sure that doesn't happen again. :-)\n\tBabamots: My phone likes to repeat itself. \n\n90) Babamots: Attack Y1N Grintok\n\tFelix: Yeah... I'm not liking this at all! I should never have let this happen, haha\r\n\n\n91) Felix: Sacrifice Y2 Bazoik\nMove B3 Vulcan Bynaus\nMove B3 Bynaus Babamots\n\n92) Babamots: Sacrifice Y2 Babamots\nMove R3 Grintok Galorndon\nMove R3 Galorndon Babamots\n\tBabamots: Wish I could say this was the first time I had done that. I feel sick. I might need a couple of days before I can bear to look again. \n\tFelix: Take your time. I've done the same thing many times! It's so easy to overlook\n\n93) Felix: Sacrifice R3 Felix\nAttack R3 Babamots\nAttack R1 Babamots\nPass\n\tBabamots: It's painful to look at this game and continuing to play is sort of an insult to you by suggesting that I could beat you from here. So honestly I should resign, but that would feel like a rage quit. I'll stick around for a few more moves and see how I feel.\n\n\tFelix: Thank you. Really great game! This was a wild one and you played really well. Good luck and hope to see you in the final!\n\tDraw5PlayAll: So what is the status on the tourney? I lost the google doc link\n\tBabamots: https://docs.google.com/spreadsheets/d/e/2PACX-1vTS8qjWyHSJHPXNsbwf3mBk26NugW7ASTKAfmXhgjIrcCjhaXtM-OYxpCEioJhhC4ZLvmEmfmdKaWPc/pubhtml?gid=0&single=true\n\nHomeworlds Online (SDG# 33902)\nVariants: "Hard time"\nStarted: 2018.3.18, Ended: 2018.4.19\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: H R1 B3 G3\n\n2) Draw5PlayAll: Homeworld B2 R3 G3\n\tFelix: Good luck and have fun!\n\tDraw5PlayAll: Are you just trying to annoy me?\n\n3) Felix: B G1 Felix\n\tFelix: Um, no? What makes you think I am?\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: I always wish my opponents good luck and much fun\n\tDraw5PlayAll: No, your B3R1 + G3 setup.\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tFelix: What makes that annoying?\n\tDraw5PlayAll: Because that is what I always do. So much so that I am considering changing my name to B3R1G3.\n\n7) Felix: B G1 Felix\n\tFelix: Huh, didn't know that. I obviously haven't studied my opponents\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) Felix: Trade G1 R1 Felix\n\n10) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n11) Felix: Build R2 Felix\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) Felix: Discover R2 Felix B2 Out\n\n14) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n15) Felix: Build G1 Felix\n\n16) Draw5PlayAll: Discover B2 Draw5playall G1 Whatelse\n\n17) Felix: Move G1 Felix Out\n\n18) Draw5PlayAll: Build B1 Whatelse\n\n19) Felix: B R2 Out\n\n20) Draw5PlayAll: Trade B2 Y2 Whatelse\n\n21) Felix: Trade R2 Y2 Out\n\n22) Draw5PlayAll: Build B1 Whatelse\n\n23) Felix: Build R2 Out\n\n24) Draw5PlayAll: Move R1 Draw5playall Whatelse\n\n25) Felix: Discover R2 Out B1 Chronos\n\n26) Draw5PlayAll: Build B2 Whatelse\n\n27) Felix: Build Y1 Out\n\n28) Draw5PlayAll: Build Y2 Whatelse\n\n29) Felix: Build Y3 Felix\n\tDraw5PlayAll: I need not waste a B2\n\n30) Draw5PlayAll: Build Y3 Draw5playall\n\n31) Felix: Move Y1 Out Chronos\n\n32) Draw5PlayAll: Discover B2 Whatelse Y3 Dontyoudare\n\n33) Felix: S G3 Felix\nB R2 Felix\nB R3 Out\nB R3 Chronos\n\n34) Draw5PlayAll: Build B3 Whatelse\n\n35) Felix: D R1 Felix G2 Windy\n\tDraw5PlayAll: I think I will lose\n\tDraw5PlayAll: Actually...\n\n36) Draw5PlayAll: Move B1 Whatelse Draw5playall\n\n37) Felix: T R3 G3 Chronos\n\tDraw5PlayAll: This will be close.\n\n38) Draw5PlayAll: Trade B3 R3 Whatelse\n\n39) Felix: S Y2 Out\nM R2 Out Whatelse\nM R1 Windy Whatelse\nC Whatelse Red\n\tFelix: Indeed\n\n40) Draw5PlayAll: Trade Y2 R2 Whatelse\n\tDraw5PlayAll: Thank you SOOO much!! I have always wanted one of those!\n\n41) Felix: S Y1 Felix\nM R3 Out Whatelse\n\tFelix: Sorry, I'ma have to take that back\n\n42) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Whatelse\nBuild R1 Whatelse\nBuild B3 Dontyoudare\nCatastrophe Whatelse Red\n\n43) Felix: Move G3 Chronos Dontyoudare\n\n44) Draw5PlayAll: Discover B3 Dontyoudare R1 Enteranddie\n\tDraw5PlayAll: Sometimes desperation actually works.\n\n45) Felix: Sacrifice G1 Out\nBuild Y1 Chronos\n\n46) Draw5PlayAll: Sacrifice B2 Dontyoudare\nTrade Y3 G3 Draw5playall\nTrade B1 R1 Draw5playall\n\n47) Felix: Move G3 Dontyoudare Whatelse\n\n48) Draw5PlayAll: Discover Y2 Whatelse G2 Leavemealone\n\n49) Felix: T Y1 G1 Chronos\n\n50) Draw5PlayAll: Build Y1 Leavemealone\n\n51) Felix: B Y2 Chronos\n\n52) Draw5PlayAll: Sacrifice B1 Whatelse\nTrade Y2 R2 Leavemealone\n\n53) Felix: Build R3 Chronos\n\n54) Draw5PlayAll: Build R3 Leavemealone\n\n55) Felix: S Y2 Chronos\nM R2 Chronos Draw5playall\nM R3 Chronos Draw5playall\nC Draw5playall Red\n\n56) Draw5PlayAll: Build Y2 Draw5playall\n\n57) Felix: Trade R2 G2 Felix\n\n58) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n59) Felix: Build G1 Felix\n\n60) Draw5PlayAll: Move B1 Draw5playall Enteranddie\n\n61) Felix: Build G2 Chronos\n\n62) Draw5PlayAll: Trade B3 G3 Enteranddie\n\n63) Felix: Trade G2 B2 Chronos\n\n64) Draw5PlayAll: Build B1 Enteranddie\n\n65) Felix: Sacrifice B2 Chronos\nTrade G2 B2 Felix\nTrade G3 B3 Whatelse\n\n66) Draw5PlayAll: Build B2 Enteranddie\n\n67) Felix: Build B3 Whatelse\n\n\tFelix: Good game! \n\nHomeworlds Online (SDG# 33792)\nVariants: "Unrated, Hard time"\nStarted: 2018.3.18, Ended: 2018.4.25\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld B3 Y1 G3\n\n2) wil: Homeworld Y2 B1 G3\n\tdragon76n: Hi Wil, I'm back for another challenge. :)\n\twil: thx for the game, good luck\n\n3) dragon76n: Build G1 Dragon76n\n\n4) wil: Build G1 Wil\n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) wil: Trade G1 Y1 Wil\n\tdragon76n: Good luck, have fun\n\n7) dragon76n: Build Y2 Dragon76n\n\n8) wil: Build Y2 Wil\n\n9) dragon76n: Trade Y2 G2 Dragon76n\n\twil: the copycat stage\n\n10) wil: Trade Y1 B1 Wil\n\n11) dragon76n: Build G1 Dragon76n\n\tdragon76n: Hmm... copycat stage ended already? Did I take the wrong route? (Tips are welcome. I've been beaten a lot in Homeworlds.) \n\n12) wil: Build B1 Wil\n\twil: It could be...and while your move was/is one of my favs...in many situations...in this one, I can now make an attempt at monopolizing the economy of change...and either you get on board...or lose to my queen factory upcoming...even though getting on board means losing the power of that G2 you just acquired.\n\n13) dragon76n: Trade G2 B2 Dragon76n\n\twil: btw...you don't learn hardly anything by winning...you learn mostly by losing...I lost probably 90% of my first 50 games and 80% of the next 50...games I won were against lesser players, by accident or by capitalizing on mistakes of others...(and actually still are)\n\n14) wil: Discover B1 Wil Y3 Y3\n\tdragon76n: Sorry it's taken so long to get back to this turn. \n\twil: lol, no worries...life is a thing\n\n15) dragon76n: Discover B2 Dragon76n G2 Gretwo\n\n16) wil: Trade B1 R1 Wil\n\n17) dragon76n: Build B1 Gretwo\n\n18) wil: Build G1 Wil\n\n19) dragon76n: Trade B2 R2 Gretwo\n\n20) wil: Move G1 Wil Y3\n\n21) dragon76n: Build B2 Gretwo\n\n22) wil: Build B2 Y3\n\n23) dragon76n: Trade B2 Y2 Gretwo\n\n24) wil: Discover Y2 Wil G3 G3\n\n25) dragon76n: Build B2 Gretwo\n\n26) wil: Discover B1 Y3 G2 G2\n\n27) dragon76n: Discover B1 Gretwo G1 Greone\n\n28) wil: Build G2 Wil\n\n29) dragon76n: Sacrifice G3 Dragon76n\nBuild B2 Greone\nBuild B3 Gretwo\nBuild G3 Dragon76n\n\n30) wil: Build B3 G2\n\n31) dragon76n: S G3 Dragon76n\nB G3 Dragon76n\nB Y1 Gretwo\nB Y3 Dragon76n\n\n32) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y3 G3\nBuild R1 Wil\n\n33) dragon76n: D Y3 Dragon76n R2 Redtwo\n\n34) wil: Move Y2 G3 G2\n\n35) dragon76n: T B2 R2 Greone\n\n36) wil: Move R1 Wil G3\n\n37) dragon76n: Move Y3 Redtwo Y3\n\n38) wil: Discover B2 Y3 R2 R2\n\n39) dragon76n: Build B2 Greone\n\n40) wil: Trade B3 R3 G2\n\n41) dragon76n: Move B2 Gretwo Y3\n\n42) wil: Build B3 G2\n\n43) dragon76n: Move Y1 Gretwo Greone\n\n44) wil: Sacrifice G3 Wil\nBuild R1 G3\nBuild R3 G2\nBuild R3 Wil\n\n45) dragon76n: Move B2 Greone Y3\n\n46) wil: Build G3 Wil\n\n47) dragon76n: Sacrifice Y3 Y3\nMove B1 Greone G3\nMove B1 G3 Wil\nMove B2 Y3 Wil\n\n48) wil: Build Y3 G3\n\n49) dragon76n: Sacrifice R2 Gretwo\nAttack G2 Wil\nAttack R1 Wil\n\n50) wil: Sacrifice R3 G2\nAttack R1 Wil\nAttack G2 Wil\nAttack B2 Wil\n\n51) dragon76n: Move B2 Y3 Wil\nCatastrophe Wil Blue\n\n52) wil: Sacrifice Y3 G3\nMove G2 Wil Dragon76n\nMove G3 Wil Dragon76n\nMove B3 G2 Dragon76n\nCatastrophe Dragon76n G\n\n53) dragon76n: M B3 Gretwo Dragon76n\n\twil: Hey...those are my ships...\n\n54) wil: Sacrifice R3 Wil\nAttack B3 Dragon76n\nAttack Y1 Dragon76n\nPass\n\tdragon76n: I'm not sure which ships you're talking about. I don't see any. ;)\n\n\twil: After the untimely destruction of half our binary star, our planets were spinning out of orbit and we've only left a small military attache to handle things...but we really like what you've done so far with your homeworld and appreciate that you've given us the power to change things for the better in this galaxy. \n\tdragon76n: Lol. Good game. :)\n\twil: challenge me anytime... I enjoy playing.\n\nHomeworlds Online (SDG# 33907)\nStarted: 2018.3.19, Ended: 2018.8.20\nParticipants: dragon76n (S), zeder (N)\nWinner: dragon76n\n\n1) zeder: Homeworld Y1 B2 G3\n\n2) dragon76n: Homeworld B3 Y1 G3\n\n3) zeder: Build G1 Zeder\n\n4) dragon76n: Build G1 Dragon76n\n\n5) zeder: Trade G1 R1 Zeder\n\n6) dragon76n: Trade G1 Y1 Dragon76n\n\n7) zeder: Build G1 Zeder\n\n8) dragon76n: Build Y2 Dragon76n\n\n9) zeder: Trade G3 Y3 Zeder\n\n10) dragon76n: D Y2 Dragon76n G2 Gretwo\n\n11) zeder: Build Y2 Zeder\n\n12) dragon76n: B Y2 Gretwo\n\n13) zeder: Discover Y2 Zeder G3 Azhanti\n\n14) dragon76n: Trade Y1 R1 Dragon76n\n\n15) zeder: Build G1 Zeder\n\n16) dragon76n: Build G1 Dragon76n\n\n17) zeder: Build G2 Zeder\n\n18) dragon76n: Discover Y2 Gretwo B3 Bluthr\n\n19) zeder: Discover G1 Zeder B3 Floop\n\n20) dragon76n: Discover G1 Dragon76n B2 Blutwo\n\n21) zeder: Move Y2 Azhanti Blutwo\n\n22) dragon76n: Build G2 Dragon76n\n\n23) zeder: Sacrifice R1 Zeder\nAttack G1 Blutwo\n\n24) dragon76n: Sacrifice G3 Dragon76n\nBuild Y1 Bluthr\nBuild Y3 Gretwo\nBuild G3 Dragon76n\n\n\tdragon76n: Hi Zeder, did you forget about our game at SDG?\n\nHomeworlds Online (SDG# 33911)\nVariants: "Unrated, Hard time"\nStarted: 2018.3.20, Ended: 2018.4.2\nParticipants: bhorner (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y2 G3\n\tts52: Have a good game!\n\n2) bhorner: Homeworld B2 R1 G3\n\tBabamots: Am I correct that this game is for the tournament?\n\n3) ts52: Build G1 Ts52\n\tbhorner: Yes Babamots, just filled out the game start form as well.\n\tbhorner: Good luck ts52!\n\n4) bhorner: Build G1 Bhorner\n\n5) ts52: Trade G1 R1 Ts52\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) ts52: Build R1 Ts52\n\n8) bhorner: Build B1 Bhorner\n\n9) ts52: Build R2 Ts52\n\n10) bhorner: Trade B1 Y1 Bhorner\n\n11) ts52: Discover R2 Ts52 G3 Kermit\n\n12) bhorner: Build B1 Bhorner\n\n13) ts52: Build R2 Ts52\n\tbhorner: This hant started well for me. :)\n\n14) bhorner: Discover B1 Bhorner Y3 Sun\n\tts52: It's still early yet. Though your choice to make it a small universe is interesting.\n\n15) ts52: Move R2 Ts52 Sun\n\n16) bhorner: D B1 Sun Y2 Star\n\n17) ts52: Build R2 Kermit\n\n18) bhorner: B B2 Bhorner\n\n19) ts52: Build R3 Ts52\n\n20) bhorner: D B1 Bhorner R3 Angry\n\n21) ts52: Trade R3 B3 Ts52\n\n22) bhorner: S G3 Bhorner\nB B2 Star\nB B3 Bhorner\nB B3 Angry\n\n23) ts52: Move B3 Ts52 Kermit\n\n24) bhorner: T B1 Y1 Angry\n\n25) ts52: Trade R2 Y2 Kermit\n\n26) bhorner: Trade B3 G3 Bhorner\n\n27) ts52: Build R2 Kermit\n\n28) bhorner: Sacrifice G3 Bhorner\nBuild Y1 Angry\nBuild Y3 Bhorner\nBuild Y3 Angry\n\n29) ts52: Sacrifice G3 Ts52\nBuild R3 Ts52\nBuild R3 Sun\nBuild B1 Kermit\n\n30) bhorner: Discover Y1 Bhorner G3 Grass\n\n31) ts52: Trade R3 G3 Ts52\n\n32) bhorner: Trade B2 G2 Bhorner\n\n33) ts52: Build R3 Kermit\n\n34) bhorner: Move B2 Star Grass\n\n35) ts52: Sacrifice Y2 Kermit\nMove B3 Kermit Bhorner\nMove R3 Kermit Bhorner\n\n36) bhorner: A R3 Bhorner\n\n37) ts52: Sacrifice R3 Sun\nAttack R3S Bhorner\nAttack Y3S Bhorner\nAttack G2S Bhorner\n\tbhorner: GG! Just in time. Did you realize you could have done that earlier? :)\r\nIf you hadn't done it this move:\r\ns y3 angry\r\n m y1 angry ts52\r\n m y1 angry ts52\r\n m y1 grass ts52\r\n c yellow ts52\r\ns y3 bhorner\r\n m b1 mad ts52\r\n m b2 star ts52\r\n m b3 angry ts52\r\n c blue ts5\n\n\tts52: Thanks. I thought about it earlier, but wanted the extra r3. Looking back I could've done it with an r2, but it would've taken the same number of turns. I knew I had to act quickly though.\n\nHomeworlds Online (SDG# 33825)\nVariants: "Unrated"\nStarted: 2018.3.20, Ended: 2018.6.2\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n1) dlwillson: H Y3 B1 G3 Dlwillson\n\n2) Trydnt: Homeworld G2 R1 B3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build B1 Trydnt\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Trydnt: Build B2 Trydnt\n\n7) dlwillson: B B2 Dlwillson\n\n8) Trydnt: Trade B2 Y2 Trydnt\n\n9) dlwillson: T B1 R1 Dlwillson\n\n10) Trydnt: Trade B1 R1 Trydnt\n\n11) dlwillson: Build R2 Dlwillson\n\n12) Trydnt: Discover R1 Trydnt G3 G3\n\n13) dlwillson: D R1 Dlwillson G2 Field\n\n14) Trydnt: Build R2 G3\n\n15) dlwillson: B R2 Dlwillson\n\n16) Trydnt: Build R3 G3\n\n17) dlwillson: Discover R2 Dlwillson Y2 Sol\n\n18) Trydnt: Sacrifice R1 G3\nPass\n\n19) dlwillson: Build G1 Dlwillson\n\n20) Trydnt: Build B1 Trydnt\n\n21) dlwillson: B R1 Dlwillson\n\n22) Trydnt: Build Y1 Trydnt\n\n23) dlwillson: B R3 Field\n\n24) Trydnt: Sacrifice B1 Trydnt\nTrade R2 Y2 G3\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Dlwillson\nBuild R3 Sol\nBuild G1 Dlwillson\n\n26) Trydnt: Build Y1 G3\n\n27) dlwillson: Sacrifice B2 Dlwillson\nTrade R3 B3 Field\nTrade R3 B3 Sol\n\n28) Trydnt: Build R3 G3\n\n29) dlwillson: Move B3 Sol Dlwillson\n\n30) Trydnt: Move R3 G3 Sol\n\n31) dlwillson: B R3 Field\n\n32) Trydnt: Attack R2 Sol\n\n33) dlwillson: M R1 Dlwillson Sol\n\n34) Trydnt: Discover R2 Sol Y3 Y3\n\n35) dlwillson: T R1 Y1 Field\n\n36) Trydnt: Build Y3 Trydnt\n\n37) dlwillson: M R3 Field Y3\n\n38) Trydnt: Sacrifice R2 Y3\nAttack R1 Sol\nPass\n\n39) dlwillson: B B1 Field\n\n40) Trydnt: Build B1 Trydnt\n\n41) dlwillson: S B1 Field\nT R3 G3 Y3\n\n42) Trydnt: Discover B3 Trydnt G3 G33\n\n43) dlwillson: D G1 Dlwillson B2 Sea\n\n44) Trydnt: Move R1 Sol G33\n\n45) dlwillson: S G3 Y3\nB G1 Sea\nB Y3 Field\nB G2 Dlwillson\n\n46) Trydnt: Sacrifice Y2 Trydnt\nDiscover R3 Sol G3 G333\nMove Y1 Trydnt G333\n\n47) dlwillson: Trade G2 Y2 Dlwillson\n\n48) Trydnt: Build Y2 G333\n\n49) dlwillson: Build G2 Sea\n\n50) Trydnt: Move R3 G333 Sea\n\n51) dlwillson: S Y3 Field\nM G1 Sea G3\nM G1 Sea G3\nM G2 Sea G3\nC G3 G\n\n52) Trydnt: Move Y1 G333 Sea\n\n53) dlwillson: M R2 Dlwillson Field\n\n54) Trydnt: Build Y1 Trydnt\n\n55) dlwillson: D Y1 Field G3 Forest\n\n56) Trydnt: Move Y1 Trydnt G33\n\n57) dlwillson: Move Y2 Dlwillson Field\n\n58) Trydnt: Trade Y1 G1 Sea\n\n59) dlwillson: B R1 Dlwillson\n\n60) Trydnt: Build Y1 G33\n\n61) dlwillson: T R2 G2 Dlwillson\n\n62) Trydnt: Build R2 G33\n\n63) dlwillson: S G2 Dlwillson\nB Y2 Forest\nB Y3 Field\n\n64) Trydnt: Sacrifice Y2 G333\nMove Y1 G33 Field\nMove Y1 G33 Field\nCatastrophe Field Y\n\n65) dlwillson: B B1 Field\n\n66) Trydnt: Build B2 G33\n\n67) dlwillson: T B3 Y3 Field\n\n68) Trydnt: Trade R3 G3 Sea\n\n69) dlwillson: Build R2 Field\n\n70) Trydnt: Trade R1 Y1 G33\n\n71) dlwillson: B G1 Dlwillson\n\n72) Trydnt: Trade G1 Y1 Sea\n\n73) dlwillson: B G1 Dlwillson\n\n74) Trydnt: Build Y2 Sea\n\n75) dlwillson: Build Y2 Field\n\n76) Trydnt: Discover B2 G33 G2 G2\n\n77) dlwillson: Discover R2 Field B3 Sky\n\n78) Trydnt: Build B2 G2\n\n79) dlwillson: T B3 R3 Dlwillson\n\n80) Trydnt: Build B3 Trydnt\n\n81) dlwillson: M G1 Dlwillson Field\n\n82) Trydnt: Move G3 Sea Sky\n\n83) dlwillson: Sacrifice Y1 Forest\nMove R2 Sky Field\n\n84) Trydnt: Build Y1 G33\n\n85) dlwillson: M G1 Dlwillson Sea\n\n86) Trydnt: Move Y1 Sea Sky\n\n87) dlwillson: Move Y2 Forest Sea\n\n88) Trydnt: Build G3 Sky\n\n89) dlwillson: Sacrifice Y2 Field\nMove G1 Field Sky\nMove G1 Sea Sky\nCatastrophe Sky G\n\n90) Trydnt: Build Y2 Trydnt\n\n91) dlwillson: Sacrifice R1 Dlwillson\nAttack Y2 Sea\n\n92) Trydnt: Move B3 Trydnt Sky\n\n93) dlwillson: B R1 Dlwillson\n\n94) Trydnt: Trade B3 R3 Sky\n\n95) dlwillson: B B3 Field\n\n96) Trydnt: Build R1 G33\n\n97) dlwillson: Sacrifice Y3 Field\nDiscover B3 Field G3 Forest\nMove R2 Field Forest\nMove Y2 Sea Forest\n\n98) Trydnt: Sacrifice Y2 Trydnt\nDiscover B2 G2 Y3 Y3\nDiscover B2 G2 R3 R3\n\n99) dlwillson: T R3 G3 Dlwillson\n\n100) Trydnt: Trade B2 G2 Y3\n\n101) dlwillson: S G3 Dlwillson\nB R3 Dlwillson\nB Y2 Forest\nB B2 Forest\n\n102) Trydnt: Sacrifice G2 Y3\nBuild Y3 Sky\nPass\n\n103) dlwillson: T R3 G3 Dlwillson\n\n104) Trydnt: Move Y3 Sky Field\n\n105) dlwillson: T R2 G2 Field\n\n106) Trydnt: Sacrifice R2 G33\nAttack G2 Field\nAttack B1 Field\n\n107) dlwillson: B R2 Forest\n\n108) Trydnt: Sacrifice G2 Field\nBuild R2 Sky\nBuild R3 G33\n\n109) dlwillson: T R2 G2 Forest\n\n110) Trydnt: Move R3 G33 Sea\n\n111) dlwillson: D Y2 Sea G1 Grass\n\n112) Trydnt: Build R2 G33\n\n113) dlwillson: Build G1 Forest\n\n114) Trydnt: Move R3 Sky Grass\n\n115) dlwillson: M Y2 Grass Forest\n\n116) Trydnt: Sacrifice Y3 Field\nMove B1 Trydnt Forest\nMove B1 Field Forest\nMove R3 Sea Forest\nCatastrophe Forest B\n\n117) dlwillson: S Y2 Forest\nD Y2 Forest Y2 Field\nD Y2 Forest B2 Sea\n\n118) Trydnt: Build Y3 Trydnt\n\n\nHomeworlds Online (SDG# 33849)\nVariants: "Hard time"\nStarted: 2018.3.20, Ended: 2018.4.4\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Felix: Build G1 Felix\n\tFelix: Hello again :) Good luck and have fun\n\n5) Trydnt: Trade G1 R1 Trydnt\n\tTrydnt: hello indeed my old friend. good luck to you too. and I always do\n\n6) Felix: Trade G1 R1 Felix\n\n7) Trydnt: Build R2 Trydnt\n\n8) Felix: Build R2 Felix\n\n9) Trydnt: Trade R1 Y1 Trydnt\n\n10) Felix: Trade R2 Y2 Felix\n\n11) Trydnt: Build Y1 Trydnt\n\n12) Felix: Build Y1 Felix\n\n13) Trydnt: Build Y2 Trydnt\n\n14) Felix: Discover Y1 Felix B1 Out\n\n15) Trydnt: Trade Y1 B1 Trydnt\n\n16) Felix: Build Y1 Felix\n\n17) Trydnt: Build B1 Trydnt\n\n18) Felix: Discover Y1 Felix G1 Rim\n\n19) Trydnt: Sacrifice Y2 Trydnt\nDiscover R2 Trydnt Y3 Y3\nDiscover B1 Trydnt Y3 Y33\n\n20) Felix: Build G1 Felix\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild B2 Y33\nBuild B2 Y33\nBuild B3 Trydnt\n\n22) Felix: Build Y2 Rim\n\n23) Trydnt: Trade B3 Y3 Trydnt\n\n24) Felix: Sacrifice Y2 Rim\nMove Y1 Rim Y33\nMove Y1 Y33 Trydnt\n\n25) Trydnt: Trade Y3 G3 Trydnt\n\n26) Felix: Sacrifice G3 Felix\nBuild Y2 Trydnt\nBuild Y3 Out\nBuild R1 Felix\n\n27) Trydnt: Attack Y2 Trydnt\n\n28) Felix: Move Y3 Out Y3\n\n29) Trydnt: Sacrifice Y2 Trydnt\nDiscover R2 Y3 Y2 Y2\nDiscover B2 Y33 G1 G1\n\n30) Felix: Move Y3 Y3 G1\n\tFelix: This is such a dumb attack, haha.\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild B3 Y33\nBuild B3 Trydnt\nBuild Y3 Trydnt\n\n32) Felix: Sacrifice R1 Felix\nAttack B2 G1\n\n33) Trydnt: Sacrifice B2 Y33\nTrade B1 G1 Trydnt\nTrade Y1 R1 Trydnt\n\n34) Felix: Move Y3 G1 Felix\n\n35) Trydnt: Attack Y1 Trydnt\n\n36) Felix: Move Y2 Felix G1\n\n37) Trydnt: Discover B3 Trydnt G3 G3\n\n38) Felix: Build G2 Felix\n\n39) Trydnt: Move Y1 Trydnt G3\n\n40) Felix: Move G2 Felix Out\n\n41) Trydnt: Build Y1 G3\n\n42) Felix: Build R2 Felix\n\n43) Trydnt: Build G2 Trydnt\n\n44) Felix: Move R2 Felix Out\n\n45) Trydnt: Move R1 Trydnt G3\n\n46) Felix: Build G2 Felix\n\n47) Trydnt: Trade B3 G3 Y33\n\n48) Felix: Build G3 Out\n\n49) Trydnt: Build B1 G3\n\n50) Felix: Sacrifice G3 Out\nBuild G3 Out\nBuild R2 Felix\nBuild R3 Out\n\n51) Trydnt: Sacrifice G2 Trydnt\nBuild R3 Y2\nBuild R3 G3\n\n52) Felix: Discover G3 Out B3 Wanton\n\n53) Trydnt: Move R3 G3 G1\n\n54) Felix: Sacrifice Y2 G1\nDiscover B2 G1 G2 G2\nMove R2 Out Wanton\n\n55) Trydnt: Move Y1 G3 G1\n\n56) Felix: Build B2 G2\n\n57) Trydnt: Build Y2 G1\n\n58) Felix: Sacrifice G1 Felix\nBuild G1 Wanton\n\n59) Trydnt: Move B1 Y33 G1\n\n60) Felix: Move G2 Out Y33\n\n61) Trydnt: Sacrifice R1 G3\nAttack G2 Y33\n\n62) Felix: Build R1 Wanton\n\n63) Trydnt: Move B1 G3 Y2\n\n64) Felix: Move Y1 Out Wanton\n\n65) Trydnt: Move G2 Y33 Y2\n\n66) Felix: Move R1 Wanton Y2\n\n67) Trydnt: Move R2 Y2 G3\n\n68) Felix: Attack B1 Y2\n\n69) Trydnt: Sacrifice R2 G3\nAttack R1 Y2\nAttack B1 Y2\n\n70) Felix: Build R2 Wanton\n\n71) Trydnt: Sacrifice G3 Y33\nBuild G3 Y2\nBuild Y3 G3\nPass\n\n72) Felix: Move G1 Wanton G1\n\n73) Trydnt: Sacrifice Y3 G3\nMove Y1 G1 Felix\nMove Y2 G1 Felix\nMove B1 G1 Felix\nCatastrophe Felix Y\n\tFelix: YOu've got me in quite a pickle!\n\n74) Felix: Attack B1 Felix\n\n75) Trydnt: Sacrifice Y3 Trydnt\nMove B3 G3 G1\nMove B3 G1 Felix\nMove B1 Y2 Felix\nCatastrophe Felix B\n\n\tFelix: Good game! Very well played :)\n\tTrydnt: thanks! I thought you had me for a bit there\n\nHomeworlds Online (SDG# 33892)\nVariants: "Hard time"\nStarted: 2018.3.20, Ended: 2018.3.23\nParticipants: Trydnt (S), sharkhands (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 33827)\nStarted: 2018.3.20, Ended: 2018.4.2\nParticipants: Trydnt (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y2 B1 G3\n\n2) Trydnt: Homeworld G3 Y2 B3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build B1 Trydnt\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Trydnt: Build B2 Trydnt\n\n7) ts52: Build B2 Ts52\n\n8) Trydnt: Discover B1 Trydnt G1 G1\n\n9) ts52: Discover B1 Ts52 G3 Kermit\n\n10) Trydnt: Trade B2 Y2 Trydnt\n\n11) ts52: Build B2 Kermit\n\n12) Trydnt: Build B2 G1\n\n13) ts52: Trade B1 Y1 Kermit\n\n14) Trydnt: Move Y2 Trydnt G1\n\n15) ts52: Build G1 Ts52\n\n16) Trydnt: Build B1 Trydnt\n\n17) ts52: Build B3 Kermit\n\n18) Trydnt: Build B3 Trydnt\n\n19) ts52: Trade B3 R3 Kermit\n\n20) Trydnt: Trade B3 R3 Trydnt\n\n21) ts52: Build B3 Kermit\n\n22) Trydnt: Build B3 Trydnt\n\n23) ts52: Trade B3 Y3 Kermit\n\n24) Trydnt: Discover B3 Trydnt Y1 Y1\n\n25) ts52: Build B3 Kermit\n\n26) Trydnt: Move R3 Trydnt G1\n\n27) ts52: Sacrifice Y3 Kermit\nMove B3 Kermit G1\nMove B3 G1 Trydnt\nDiscover B2 Kermit Y1 Bigbird\n\n28) Trydnt: Sacrifice Y2 G1\nMove B1 G1 Trydnt\nCatastrophe Trydnt B\nMove B3 Y1 Trydnt\n\n29) ts52: Discover G1 Ts52 Y3 Zoe\n\n30) Trydnt: Build B1 G1\n\n31) ts52: Sacrifice G3 Ts52\nBuild B1 Bigbird\nBuild B3 Ts52\nBuild B3 Bigbird\n\n32) Trydnt: Trade B2 Y2 G1\n\n33) ts52: Trade B3 G3 Ts52\n\n34) Trydnt: Build B2 G1\n\n35) ts52: Move B2 Bigbird Zoe\n\n36) Trydnt: Move B1 G1 Zoe\n\n37) ts52: Build B3 Zoe\n\n38) Trydnt: Move B2 G1 Zoe\nCatastrophe Zoe B\n\n39) ts52: Build G1 Ts52\n\n40) Trydnt: Build B1 Trydnt\n\n41) ts52: Move B3 Bigbird Trydnt\n\n42) Trydnt: Trade B1 Y1 Trydnt\n\n\nHomeworlds Online (SDG# 33890)\nVariants: "Hard time"\nStarted: 2018.3.20, Ended: 2018.3.28\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Trydnt: Homeworld G3 Y2 B3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: Trade G1 Y1 Wil\n\n6) Trydnt: Trade B1 Y1 Trydnt\n\n7) wil: Build Y2 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: Discover Y1 Wil G3 G3\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) wil: Build Y3 G3\n\n12) Trydnt: Build Y3 G1\n\n13) wil: Move Y3 G3 G1\n\n14) Trydnt: Trade Y2 R2 Trydnt\n\n15) wil: Build Y2 G3\n\n16) Trydnt: Move Y1 G1 G3\n\n17) wil: Build Y3 G1\n\twil: I like that we can experiment like crazy here online with weirdness...and then when I lose my numbers go down and people underate my abilities...its a win win!!\n\n18) Trydnt: Sacrifice R2 Trydnt\nAttack Y3 G1\nAttack Y1 G3\n\n19) wil: Move Y2 G3 G1\nCatastrophe G1 Y\n\twil: speaking of experimental and strange\n\n20) Trydnt: Build B1 Trydnt\n\n21) wil: Build G1 Wil\n\twil: this is such a good place to try and retry different options\n\n22) Trydnt: Sacrifice Y1 G3\nDiscover B1 Trydnt Y1 Y1\n\n23) wil: Move Y2 Wil G3\n\n24) Trydnt: Build Y2 G3\n\n25) wil: Build Y3 G3\n\n26) Trydnt: Catastrophe G3 Y\nDiscover B1 Y1 G3 G3\n\n27) wil: Trade G1 B1 Wil\n\n28) Trydnt: Trade B1 Y1 G3\n\n29) wil: Move B1 Wil G3\n\n30) Trydnt: Build Y1 G3\n\n31) wil: Build B1 G3\n\n32) Trydnt: Build Y2 G3\n\n33) wil: Trade B1 R1 G3\n\n34) Trydnt: Sacrifice Y2 G3\nDiscover Y1 G3 G2 G2\nDiscover Y1 G3 G2 G22\n\n35) wil: Build R1 G3\n\n36) Trydnt: Build Y2 G2\n\n37) wil: Build G1 Wil\n\n38) Trydnt: Build Y2 G22\n\n39) wil: Discover G1 Wil Y3 Y3\n\n40) Trydnt: Build Y3 G2\n\n41) wil: Trade G3 Y3 Wil\n\n42) Trydnt: Discover Y1 G2 G3 G33\n\n43) wil: Sacrifice Y3 Wil\nMove R1 G3 G22\nMove R1 G3 G2\nPass\n\tTrydnt: the slowest, most excruciating monopolization possible\n\n\nHomeworlds Online (SDG# 33930)\nVariants: "Hard time"\nStarted: 2018.3.22, Ended: 2018.4.13\nParticipants: agentofchaos (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) agentofchaos: Homeworld R2 B3 G3\n\tTrydnt: best of luck to you!\n\n3) Trydnt: Build G1 Trydnt\n\tagentofchaos: Thanks, you too\n\n4) agentofchaos: Build G1 Agentofchaos\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) agentofchaos: Trade G1 R1 Agentofchaos\n\n7) Trydnt: Build R2 Trydnt\n\n8) agentofchaos: Build R2 Agentofchaos\n\n9) Trydnt: Trade R1 Y1 Trydnt\n\n10) agentofchaos: Trade R1 Y1 Agentofchaos\n\n11) Trydnt: Build R1 Trydnt\n\n12) agentofchaos: Build G1 Agentofchaos\n\n13) Trydnt: Build G1 Trydnt\n\n14) agentofchaos: Trade G1 B1 Agentofchaos\n\n15) Trydnt: Trade G1 B1 Trydnt\n\n16) agentofchaos: Build G1 Agentofchaos\n\n17) Trydnt: Build G1 Trydnt\n\n18) agentofchaos: Discover Y1 Agentofchaos R1 Wowbolism\n\n19) Trydnt: Discover R2 Trydnt G3 G3\n\n20) agentofchaos: Build R3 Agentofchaos\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild R3 Trydnt\nBuild R3 G3\nBuild Y1 Trydnt\n\n22) agentofchaos: Sacrifice G1 Agentofchaos\nBuild Y2 Wowbolism\n\n23) Trydnt: Move Y1 Trydnt G3\n\n\nHomeworlds Online (SDG# 33814)\nStarted: 2018.3.28, Ended: 2018.4.12\nParticipants: MobyNostromo (S), deanthebean (N)\nWinner: deanthebean\n\n1) deanthebean: Homeworld G1 B2 Y3\n\n2) MobyNostromo: H B1 Y2 G3\n\tdeanthebean: Hello. Enjoy the game!\n\tMobyNostromo: Thank you!! You too!\n\n3) deanthebean: Build Y1 Deanthebean\n\n4) MobyNostromo: B G1 Mobynostromo\n\n5) deanthebean: Build Y1 Deanthebean\n\n6) MobyNostromo: B G1 Mobynostromo\n\n7) deanthebean: Trade Y3 G3 Deanthebean\n\n8) MobyNostromo: T G1 B1 Mobynostromo\n\n9) deanthebean: Trade Y1 R1 Deanthebean\n\n10) MobyNostromo: D G1 Mobynostromo Y3 Gold\n\n11) deanthebean: Build R1 Deanthebean\n\n12) MobyNostromo: B G1 Mobynostromo\n\n13) deanthebean: Move R1 Deanthebean Gold\n\n14) MobyNostromo: D G1 Gold Y1 Amber\n\n15) deanthebean: Move R1 Gold Mobynostromo\n\n16) MobyNostromo: T B1 R1 Mobynostromo\n\n17) deanthebean: Attack R1 Mobynostromo\n\n18) MobyNostromo: T G3 R3 Mobynostromo\n\n19) deanthebean: Discover R1 Deanthebean Y3 West\n\n20) MobyNostromo: T R3 G3 Mobynostromo\n\n21) deanthebean: Attack G1 Mobynostromo\n\n22) MobyNostromo: B G2 Mobynostromo\n\n23) deanthebean: Build G2 Mobynostromo\nCatastrophe Mobynostromo Green\n\n\nHomeworlds Online (SDG# 33867)\nVariants: "Unrated"\nStarted: 2018.3.29, Ended: 2018.4.3\nParticipants: silversliver (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) silversliver: Homeworld B2 G1 R3\n\twil: New to the game or just to the forum? \n\n3) wil: Build G1 Wil\n\n4) silversliver: Build R1 Silversliver\n\n5) wil: Trade G1 R1 Wil\n\n6) silversliver: Trade R1 Y1 Silversliver\n\n7) wil: Build G1 Wil\n\n8) silversliver: Build Y1 Silversliver\n\n9) wil: Trade G1 Y1 Wil\n\n10) silversliver: Discover Y1 Silversliver Y3 Sys1\n\n11) wil: Build Y2 Wil\n\n12) silversliver: Move R3 Silversliver Sys1\n\twil: Ack! Short universe!\r\n\n\n13) wil: Discover Y2 Wil G3 G3\n\n14) silversliver: Build Y2 Silversliver\n\twil: Do you have some well thought out nefarious plan? Are you incredibly bold, or new to the game? These questions, if not answered by you, will soon be answered in upcoming moves.\n\n15) wil: Build Y2 G3\n\n16) silversliver: Trade Y1 R1 Silversliver\n\n17) wil: Move R1 Wil G3\n\n18) silversliver: Build R2 Silversliver\n\n19) wil: Build Y1 Wil\n\n20) silversliver: Trade R1 G1 Silversliver\n\n21) wil: Sacrifice Y2 G3\nMove Y1 Wil Sys1\nMove Y1 Wil Sys1\nCatastrophe Sys1 Y\n\n22) silversliver: Discover G1 Silversliver R3 Sys2\n\n23) wil: Build G1 Wil\n\n24) silversliver: Build Y1 Silversliver\n\n25) wil: Trade G1 Y1 Wil\n\n26) silversliver: Trade Y1 G1 Silversliver\n\n27) wil: Build G2 Wil\n\n28) silversliver: Build G2 Sys2\n\n29) wil: Discover G2 Wil Y3 Y3\n\n30) silversliver: Sacrifice G2 Sys2\nBuild G2 Sys2\nBuild G2 Sys2\n\n31) wil: Build G3 Y3\n\n32) silversliver: Sacrifice Y2 Silversliver\nMove G2 Sys2 Wil\nMove G2 Sys2 Wil\n\n33) wil: Attack G2 Wil\n\n34) silversliver: Sacrifice G1 Sys2\nBuild G1 Wil\nCatastrophe Wil G\n\n35) wil: Build G1 Y3\n\n36) silversliver: Trade G1 Y1 Silversliver\n\n37) wil: Move G3 Y3 Wil\n\n38) silversliver: Build R1 Silversliver\n\n39) wil: Build R2 G3\n\n40) silversliver: Discover R1 Silversliver Y3 Sys3\n\n41) wil: Sacrifice Y2 G3\nMove G1 Y3 Silversliver\nMove G2 Y3 Silversliver\n\n42) silversliver: Attack G2 Silversliver\n\n43) wil: Build G1 Silversliver\nCatastrophe Silversliver G\n\twil: ah..you made the same mistake as I....wasting a move.\n\n44) silversliver: Trade Y1 G1 Silversliver\n\n45) wil: Build Y1 Wil\n\n46) silversliver: Build G1 Silversliver\n\n47) wil: Build Y1 Wil\n\n48) silversliver: Build R2 Silversliver\n\n49) wil: Build R3 G3\n\n50) silversliver: Sacrifice G1 Silversliver\nBuild R3 Sys3\n\n51) wil: Sacrifice Y1 Wil\nMove R1 G3 Silversliver\n\n52) silversliver: Trade R2 Y2 Silversliver\n\n53) wil: Attack G1 Silversliver\n\n54) silversliver: Attack R1 Silversliver\n\twil: I shoulda sent in the r2\n\n55) wil: Sacrifice Y1 Wil\nDiscover R3 G3 Y1 Y1\n\n56) silversliver: Attack G1 Silversliver\n\n57) wil: Build G1 Wil\n\n58) silversliver: Build G1 Silversliver\n\n59) wil: Trade G1 B1 Wil\n\n60) silversliver: Move G1 Silversliver Sys3\n\n61) wil: Build B1 Wil\n\n62) silversliver: Trade R1 B1 Silversliver\n\twil: You move almost as fast as playing live... I've asked aaron in the next iteration to have a button so we know if someone is staying on line and playing...\n\n63) wil: Move B1 Wil G3\n\n64) silversliver: Discover B1 Silversliver R3 Sys4\n\n65) wil: Build Y1 Wil\n\n66) silversliver: Build Y2 Silversliver\n\n67) wil: Move Y1 Wil G3\n\n68) silversliver: Build G1 Sys3\n\n69) wil: Discover B1 Wil G3 Gee3\n\n70) silversliver: Build G2 Sys3\n\twil: me thinks two moves to mate.... \n\n71) wil: Sacrifice G3 Wil\nBuild Y2 G3\nBuild Y3 Wil\nBuild B2 G3\n\n72) silversliver: Sacrifice G2 Sys3\nBuild B3 Sys4\nBuild G2 Sys3\n\twil: very interesting game, I look forward to the next one.\n\n73) wil: Sacrifice Y3 Wil\nMove B2 G3 Silversliver\nMove B1 G3 Silversliver\nMove B1 Gee3 Silversliver\nCatastrophe Silversliver B\n\tsilversliver: gg\r\nAnd yes, it was my first game.\n\twil: I have a love hate relationship with short universe... I don't do bad with them, but they are just wierd how they operate...and wiping out half a homeworld does not improve the connection..\n\twil: good game... \n\twil: challenge me anytime...I enjoy playing\n\twil: Wow...if this was your first game...you did quite well! avid gamer? do you have pyramids at home? your early mistake was getting that big 3 out and then losing it...but it took me forever to capitalize on that.\r\n\n\twil: Again...WELL DONE!\n\n\nHomeworlds Online (SDG# 33918)\nVariants: "Hard time"\nStarted: 2018.3.30, Ended: 2018.4.10\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Trade G1 Y1 Wil\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: Build Y1 Wil\n\n8) Trydnt: Build R1 Trydnt\n\n9) wil: Build Y2 Wil\n\n10) Trydnt: Build R2 Trydnt\n\n11) wil: Discover Y1 Wil R3 R3\n\n12) Trydnt: Trade R2 Y2 Trydnt\n\n13) wil: Sacrifice G3 Wil\nBuild Y2 R3\nBuild Y3 R3\nBuild Y3 Wil\n\n14) Trydnt: Move Y2 Trydnt R3\nCatastrophe R3 Y\n\n15) wil: Trade Y3 G3 Wil\n\n16) Trydnt: Build R2 Trydnt\n\n17) wil: Trade Y2 R2 Wil\n\n18) Trydnt: Discover R1 Trydnt G3 G3\n\n19) wil: Build Y1 Wil\n\n20) Trydnt: Trade R2 Y2 Trydnt\n\n21) wil: Move R2 Wil G3\n\n22) Trydnt: Build R2 G3\n\n23) wil: Attack R2 G3\n\n24) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G3\nBuild R3 Trydnt\nBuild R3 Trydnt\nCatastrophe G3 R\n\n25) wil: Build Y2 Wil\n\twil: noice\n\n26) Trydnt: Trade R3 G3 Trydnt\n\tTrydnt: I thought so \n\n27) wil: Trade Y1 R1 Wil\n\n28) Trydnt: Discover R1 Trydnt G3 G3\n\n29) wil: Discover R1 Wil Y3 Y3\n\n30) Trydnt: Move Y2 Trydnt G3\n\n31) wil: Build G1 Wil\n\n32) Trydnt: Build R2 Trydnt\n\n33) wil: Sacrifice G1 Wil\nBuild R2 Y3\n\n34) Trydnt: Discover R3 Trydnt Y3 Y33\n\n35) wil: Discover Y2 Wil R3 R3\n\n36) Trydnt: Build R2 Trydnt\n\tTrydnt: so you gonna host poker tonight?\n\n37) wil: Build G1 Wil\n\twil: thats the plan... I'll ask again if Jeff or Matt are making it.\n\n38) Trydnt: Build R3 G3\n\n39) wil: Trade G1 B1 Wil\n\n40) Trydnt: Trade R2 B2 Trydnt\n\n41) wil: Build G1 Wil\n\n42) Trydnt: Build R2 Trydnt\n\n43) wil: Discover G1 Wil B3 B3\n\n44) Trydnt: Move B2 Trydnt G3\n\n45) wil: Build G1 Wil\n\n46) Trydnt: Trade R3 Y3 G3\n\n47) wil: Move R1 Y3 Trydnt\n\n48) Trydnt: Build R3 G3\n\n49) wil: Build G1 Wil\n\n50) Trydnt: Build G2 Trydnt\n\n51) wil: Move G1 Wil R3 R3\n\n52) Trydnt: Move R2 Trydnt B3\n\n\tTrydnt: why'd you resign? I mean it wasn't great but I think you've come back from worse\n\twil: Idk exactly...I look now and I am outgunned 5-1 on larges and 5-2 on mediums...everywhere I am can be waltzed in on ... It looks useless except waiting for an error...a few errors. Lastly...I am back in a tourney game...I need to remove some confusion from my plate.\n\tTrydnt: fair enough haha\n\nHomeworlds Online (SDG# 33945)\nVariants: "Hard time"\nStarted: 2018.3.30, Ended: 2018.4.4\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Trade G1 B1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: Build B1 Wil\n\n8) Trydnt: Build Y1 Trydnt\n\n9) wil: Discover B1 Wil Y3 Y3\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) wil: Build G1 Wil\n\n12) Trydnt: Build Y2 G1\n\n13) wil: Sacrifice G3 Wil\nBuild B1 Y3\nBuild B2 Y3\nBuild B3 Wil\n\n14) Trydnt: Discover Y1 G1 G3 G3\n\n15) wil: Trade B3 Y3 Wil\n\n16) Trydnt: Build Y2 G3\n\n17) wil: Build B3 Wil\n\n18) Trydnt: Build Y2 G1\n\n19) wil: Discover Y3 Wil G3 B3\n\n20) Trydnt: Discover Y2 G1 B3 B33\n\n21) wil: Trade B3 R3 Wil\n\n22) Trydnt: Trade Y2 R2 B33\n\n23) wil: Build Y2 B3\n\n24) Trydnt: Move Y2 G1 Y3\n\n25) wil: Discover B2 Y3 G1 G1\n\n26) Trydnt: Move Y2 Y3 Wil\n\n27) wil: Attack Y2 Wil\n\twil: what...had to do some work?\n\n28) Trydnt: Move Y2 G3 Wil\n\n29) wil: Move Y2 Wil G3\n\n\twil: no clue what is going on here... not sure you planned right...ready for a surprise!\n\tTrydnt: lol that was clever\n\tTrydnt: I kept looking for a way around that big jump but nada\n\twil: I don't really know how you lost the yellow domination...\n\tTrydnt: stupidity\n\nHomeworlds Online (SDG# 33946)\nVariants: "Hard time"\nStarted: 2018.3.30, Ended: 2018.4.12\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) wil: Homeworld Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: Build G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: Trade G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: Build B2 Wil\n\n9) Trydnt: Trade B1 R1 Trydnt\n\twil: We are off to the races on four tracks!\n\n10) wil: Trade B1 R1 Wil\n\n11) Trydnt: Build R2 Trydnt\n\n12) wil: Build R2 Wil\n\n13) Trydnt: Build B1 Trydnt\n\n14) wil: Build R2 Wil\n\n15) Trydnt: Trade R2 Y2 Trydnt\n\n16) wil: Trade R1 Y1 Wil\n\n17) Trydnt: Build Y1 Trydnt\n\n18) wil: Build B1 Wil\n\n19) Trydnt: Discover B1 Trydnt G3 G3\n\n20) wil: Sacrifice B1 Wil\nTrade R2 G2 Wil\n\n21) Trydnt: Build G1 Trydnt\n\n22) wil: Discover B2 Wil G2 G2\n\n23) Trydnt: Move Y2 Trydnt G3\n\n24) wil: Move Y1 Wil G2\n\n25) Trydnt: Discover B2 Trydnt Y3 Y3\n\n26) wil: Build G1 Wil\n\n27) Trydnt: Move G1 Trydnt Y3\n\n28) wil: Discover G2 Wil Y2 Y2\n\n29) Trydnt: Sacrifice G3 Trydnt\nBuild Y1 Trydnt\nBuild Y2 G3\nBuild Y3 Trydnt\n\n30) wil: Discover G1 Wil R2 R2\n\n31) Trydnt: Move Y2 G3 R2\n\n32) wil: Build G1 Wil\n\n33) Trydnt: Attack G1 R2\n\n34) wil: Discover G2 Y2 G3 B3\n\n35) Trydnt: Build Y2 R2\n\n36) wil: Discover G1 Wil R2 B2\n\n37) Trydnt: Move Y2 G3 B2\n\n38) wil: Build G2 Wil\n\n39) Trydnt: Attack G1 B2\n\n40) wil: Move G2 Wil G2\n\n41) Trydnt: Build B1 G3\n\n42) wil: Build B3 G2\n\n43) Trydnt: Build B3 Y3\n\n44) wil: Trade B3 R3 G2\n\n45) Trydnt: Sacrifice Y3 Trydnt\nMove G1 Y3 G2\nMove G1 R2 Y3\nMove G1 Y3 G2\nCatastrophe G2 G\n\n46) wil: Build R1 Wil\n\n47) Trydnt: Build Y1 B2\n\n48) wil: Discover R1 Wil G2 G2\n\n49) Trydnt: Build Y3 B2\n\n50) wil: Build R3 G2\n\n51) Trydnt: Move R1 Trydnt G3\n\n52) wil: Build R3 Wil\n\n53) Trydnt: Build R3 G3\n\n54) wil: Move R3 Wil R2\n\n55) Trydnt: Sacrifice Y2 R2\nMove Y2 R2 G3\nDiscover R3 G3 Y2 Y2\n\n56) wil: Trade R2 B2 Wil\n\n57) Trydnt: Build B3 G3\n\n58) wil: Move B2 Wil G2\n\n59) Trydnt: Move B1 G3 B2\n\n60) wil: Build B3 G2\n\n61) Trydnt: Move B2 Y3 Y2\n\n62) wil: Build G1 Wil\n\n63) Trydnt: Build R2 G3\n\n64) wil: Pass\n\n65) Trydnt: Build G1 B2\n\n\twil: yeah..this is over\n\twil: gg\n\twil: look at me..pumpin up your score!\n\nHomeworlds Online (SDG# 33947)\nVariants: "Hard time"\nStarted: 2018.3.30, Ended: 2018.4.16\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B3 G2 Y3\n\n2) Trydnt: Homeworld G2 Y2 B3 *\n\n3) wil: Build Y1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: Build Y1 Wil\n\n6) Trydnt: Build B1 Trydnt\n\n7) wil: Discover Y1 Wil G1 G1\n\n8) Trydnt: Discover B1 Trydnt Y3 Y3\n\n9) wil: Build Y1 G1\n\n10) Trydnt: Build B1 Trydnt\n\n11) wil: Build Y2 G1\n\n12) Trydnt: Discover B1 Trydnt Y3 Y33\n\n13) wil: Trade Y3 G3 Wil\n\n14) Trydnt: Build B2 Trydnt\n\n15) wil: Move Y1 G1 Trydnt\n\n16) Trydnt: Trade B2 R2 Trydnt\n\n17) wil: Build Y2 G1\n\n18) Trydnt: Attack Y1 Trydnt\n\n19) wil: Build Y3 Wil\n\n20) Trydnt: Move Y1 Trydnt G1\nCatastrophe G1 Y\n\n21) wil: Build Y1 Wil\n\n22) Trydnt: Build B2 Trydnt\n\n23) wil: Trade Y1 R1 Wil\n\n24) Trydnt: Trade B2 G2 Trydnt\n\n25) wil: Build R1 Wil\n\n26) Trydnt: Sacrifice G2 Trydnt\nBuild B2 Y3\nBuild B2 Y33\n\n27) wil: Trade G3 B3 Wil\n\n28) Trydnt: Build B2 Trydnt\n\n29) wil: Discover B3 Wil G1 G1\n\n30) Trydnt: Trade B2 Y2 Trydnt\n\n31) wil: Build B2 G1\n\n32) Trydnt: Trade B1 G1 Y3\n\n33) wil: Move Y1 Wil G1\n\n34) Trydnt: Build B1 Y3\n\n35) wil: Trade B3 R3 G1\n\n36) Trydnt: Discover B1 Trydnt G1 G11\n\n37) wil: Build B3 G1\n\n38) Trydnt: Sacrifice Y2 Trydnt\nMove B1 Y33 G1\nMove B1 Y3 G1\nCatastrophe G1 B\n\n39) wil: Trade R1 B1 Wil\n\n40) Trydnt: Trade B2 G2 Y33\n\n41) wil: Move R3 G1 Y3\n\n42) Trydnt: Discover G1 Y3 Y1 Y1\n\n43) wil: Attack B2 Y3\n\n44) Trydnt: Build G3 Y1\n\n45) wil: Build Y1 Wil\n\n46) Trydnt: Sacrifice G3 Y1\nBuild G3 Y1\nBuild G3 Y1\nBuild G3 Y33\n\n47) wil: Build Y2 G1\n\n48) Trydnt: Build R1 Trydnt\n\n49) wil: Build Y2 Wil\n\n50) Trydnt: Build B1 G11\n\n51) wil: Build R1 Wil\n\n52) Trydnt: Sacrifice B1 G11\nTrade G1 B1 Y1\n\n53) wil: Trade R1 G1 Wil\n\n54) Trydnt: Move G3 Y1 Wil\n\n55) wil: Attack G3 Wil\n\n56) Trydnt: Move G3 Y1 Wil\nCatastrophe Wil G\n\n57) wil: Move B1 Wil G1\n\n58) Trydnt: Build G1 Y33\n\n59) wil: Trade Y2 G2 Wil\n\n60) Trydnt: Discover G2 Y33 Y2 Y2\n\n61) wil: Build G3 Wil\n\n62) Trydnt: Sacrifice G3 Y33\nBuild G3 Y33\nBuild G3 Y2\nBuild B2 Y1\n\n63) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Y3\nBuild B3 G1\n\n64) Trydnt: Move G2 Y2 Wil\n\n65) wil: Move G3 Wil Y1\n\n66) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Wil\nAttack G2 Wil\n\n67) wil: Sacrifice R3 Y3\nAttack G2 Wil\nAttack G2 Wil\nAttack R1 Wil\n\n68) Trydnt: Move G3 Y33 G1\n\n69) wil: Sacrifice Y2 G1\nMove Y1 G1 Trydnt\nMove Y1 Wil Trydnt\n\n70) Trydnt: Sacrifice R1 Trydnt\nAttack B3 G1\n\n71) wil: Build Y2 Trydnt\nCatastrophe Trydnt Y\n\n72) Trydnt: Sacrifice B3 G1\nTrade G3 B3 Y2\nTrade B3 R3 Trydnt\nTrade G3 R3 G1\n\n73) wil: Sacrifice Y3 Wil\nMove G2 Wil Trydnt\nMove G2 Wil Trydnt\nMove G3 Y1 Trydnt\nCatastrophe Trydnt G\n\n\nHomeworlds Online (SDG# 33917)\nStarted: 2018.4.2, Ended: 2018.5.3\nParticipants: ts52 (S), Trydnt (N)\nWinner: ts52\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ts52: Build Y2 Ts52\n\n9) Trydnt: Trade Y2 R2 Trydnt\n\n10) ts52: Trade Y2 R2 Ts52\n\n11) Trydnt: Build Y2 Trydnt\n\n12) ts52: Build Y2 Ts52\n\n13) Trydnt: Discover Y1 Trydnt G3 G3\n\n14) ts52: Discover Y1 Ts52 G1 Kermit\n\n15) Trydnt: Build R1 Trydnt\n\n16) ts52: Build R1 Ts52\n\n17) Trydnt: Build G1 Trydnt\n\n18) ts52: Trade R1 B1 Ts52\n\n19) Trydnt: Trade G1 B1 Trydnt\n\n20) ts52: Build G1 Ts52\n\n21) Trydnt: Move R2 Trydnt G3\n\n22) ts52: Build R1 Ts52\n\n23) Trydnt: Move B1 Trydnt G3\n\n24) ts52: Move R2 Ts52 Kermit\n\n25) Trydnt: Discover Y2 Trydnt B3 B3\n\n26) ts52: Move B1 Ts52 Kermit\n\n27) Trydnt: Build G1 Trydnt\n\n28) ts52: Discover G1 Ts52 B1 Gonzo\n\n29) Trydnt: Move G1 Trydnt B3\n\n30) ts52: Build G2 Ts52\n\n31) Trydnt: Build G2 Trydnt\n\n32) ts52: Move Y2 Ts52 Gonzo\n\n33) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B3\nBuild G3 Trydnt\nBuild R1 G3\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Kermit\nBuild R3 Ts52\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 Trydnt\nBuild R3 Trydnt\n\n36) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild Y3 Gonzo\n\n37) Trydnt: Discover R3 Trydnt Y3 Y3\n\n38) ts52: Discover Y2 Gonzo B3 Grover\n\n39) Trydnt: Move R3 Trydnt B3\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\n\n41) Trydnt: Move B1 G3 Kermit\nCatastrophe Kermit B\n\n42) ts52: Move Y3 Gonzo G3\n\n43) Trydnt: Move R3 Y3 Gonzo\n\n44) ts52: Sacrifice G1 Gonzo\nBuild Y3 Grover\n\n45) Trydnt: Trade R3 B3 Gonzo\n\n46) ts52: Sacrifice R2 Kermit\nAttack R2N G3\nAttack R1N G3\n\n47) Trydnt: Sacrifice G2 Trydnt\nBuild R2 Trydnt\nBuild R3 B3\n\n48) ts52: Attack Y1N G3\n\tTrydnt: I don't know why I did that. Might have lost me the game\n\n49) Trydnt: Discover R3 B3 G1 G1\n\n50) ts52: Move R3 Ts52 Kermit\n\n51) Trydnt: Build G2 Trydnt\n\n52) ts52: Move Y1 Kermit G3\n\n53) Trydnt: Move G1 B3 Gonzo\n\n54) ts52: Trade Y2 B2 Grover\n\n55) Trydnt: Sacrifice G2 B3\nBuild Y2 B3\nBuild G2 Gonzo\n\n56) ts52: Move G2 Ts52 Kermit\n\n57) Trydnt: Sacrifice Y2 B3\nMove Y2 B3 Gonzo\nMove Y2 Gonzo G3\nCatastrophe G3 Y\n\n58) ts52: Sacrifice G2 Kermit\nBuild G2 Ts52\nBuild Y1 Kermit\n\n59) Trydnt: Trade B3 Y3 Gonzo\n\n60) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Grover\nBuild Y1 Grover\n\n61) Trydnt: Sacrifice Y3 Gonzo\nMove G1 Gonzo Ts52\nMove G2 Gonzo Ts52\nCatastrophe Ts52 G\nMove R3 G1 Ts52\n\n62) ts52: Sacrifice Y3 Grover\nMove R2 Kermit Ts52\nMove R3 Kermit Ts52\nMove Y2 Kermit Ts52\nCatastrophe Ts52 R\n\n63) Trydnt: Sacrifice G2 Trydnt\nBuild R1 B3\nBuild R2 B3\n\n64) ts52: Build R3 G3\n\n65) Trydnt: Trade R2 Y2 B3\n\n66) ts52: Sacrifice Y2 Ts52\nMove R3 G3 Kermit\nMove R3 Kermit Ts52\n\n67) Trydnt: Trade R1 B1 Trydnt\n\n68) ts52: Trade B2 G2 Grover\n\n69) Trydnt: Move R3 B3 Kermit\n\n70) ts52: Move Y1 Kermit G3\n\n71) Trydnt: Sacrifice G3 Trydnt\nBuild R1 Kermit\nBuild R2 B3\nBuild R3 Trydnt\n\n72) ts52: Build Y2 G3\n\n73) Trydnt: Sacrifice B1 Trydnt\nTrade R3 Y3 Kermit\n\n74) ts52: Sacrifice Y2 G3\nMove R1 G3 Trydnt\nMove R2 G3 Trydnt\nCatastrophe Trydnt Red\n\n\tts52: Thanks for the game!\n\nHomeworlds Online (SDG# 33959)\nStarted: 2018.4.2, Ended: 2018.6.15\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) ts52: Build G1 Gonzo\n\n8) Trydnt: Build B1 Trydnt\n\n9) ts52: Trade G1 Y1 Gonzo\n\n10) Trydnt: Discover B1 Trydnt G1 G1\n\n11) ts52: Build Y1 Gonzo\n\n12) Trydnt: Build B2 G1\n\n13) ts52: Build Y1 Gonzo\n\n14) Trydnt: Build B2 G1\n\n15) ts52: Discover Y1 Gonzo G2 Kermit\n\n16) Trydnt: Trade B2 Y2 G1\n\n17) ts52: Build G1 Ts52\n\n18) Trydnt: Discover B2 G1 Y3 Y3\n\n19) ts52: Build G2 Ts52\n\n20) Trydnt: Sacrifice G3 Trydnt\nBuild B2 Y3\nBuild B3 Trydnt\nBuild B3 G1\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\n\n22) Trydnt: Trade B3 G3 Trydnt\n\n23) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Gonzo\nBuild Y3 Kermit\n\n24) Trydnt: Build B3 G1\n\n25) ts52: Trade G2 R2 Ts52\n\n26) Trydnt: Trade B3 R3 G1\n\n27) ts52: Trade G3 R3 Gonzo\n\n28) Trydnt: Discover B3 G1 G3 G3\n\n29) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R1 Gonzo\n\n30) Trydnt: Build B3 G3\n\n31) ts52: Discover Y3 Kermit R1 Elmo\n\n32) Trydnt: Move B2 Y3 G1\n\n33) ts52: Move Y1 Gonzo Elmo\n\n34) Trydnt: Sacrifice B2 Y3\nTrade B3 Y3 G3\nPass\n\n35) ts52: Move G2 Gonzo Elmo\n\n36) Trydnt: Build B2 G1\n\n37) ts52: Move R1 Gonzo Kermit\n\n38) Trydnt: Build B3 G3\n\n39) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Gonzo\nBuild R2 Kermit\n\n40) Trydnt: Trade B3 R3 G3\n\n41) ts52: Discover G1 Ts52 B3 Grover\n\n42) Trydnt: Sacrifice Y3 G3\nMove B1 G1 Gonzo\nMove B2 G1 Gonzo\nMove B2 G1 Gonzo\nCatastrophe Gonzo B\n\n43) ts52: Build G1 Ts52\n\n44) Trydnt: Build B1 G3\n\n45) ts52: Build G2 Grover\n\n46) Trydnt: Build B2 G3\n\n47) ts52: Trade G2 Y2 Grover\n\n48) Trydnt: Trade B3 Y3 G3\n\n49) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G3 Ts52\nBuild Y1 Grover\n\n50) Trydnt: Move R3 G1 Grover\n\n51) ts52: Sacrifice G2 Grover\nBuild G2 Elmo\nBuild R1 Ts52\n\n52) Trydnt: Attack Y2 Grover\n\n53) ts52: Discover R2 Ts52 B3 Gonzo\n\n54) Trydnt: Discover Y2 G1 R3 R3\n\n55) ts52: Sacrifice Y1 Grover\nDiscover G1 Grover Y1 Bigbird\n\n56) Trydnt: Build G1 Trydnt\n\n57) ts52: Sacrifice Y3 Elmo\nMove G1 Bigbird Trydnt\nMove G2 Elmo Trydnt\nCatastrophe Trydnt G\nMove G2 Elmo Trydnt\n\n58) Trydnt: Sacrifice Y2 R3\nMove R3 G3 Elmo\nMove R3 Elmo Trydnt\n\n59) ts52: Sacrifice G2 Trydnt\nBuild R2 Gonzo\nBuild R3 Ts52\n\n60) Trydnt: Build B2 G3\n\n61) ts52: Trade R2 G2 Gonzo\n\n62) Trydnt: Trade B2 R2 G3\n\n63) ts52: Build G1 Gonzo\n\n64) Trydnt: Move B2 G3 Elmo\n\n65) ts52: Move Y1 Elmo Gonzo\n\n66) Trydnt: Build B2 G3\n\n67) ts52: Discover R3 Ts52 B3 Cookie\n\n68) Trydnt: Build Y1 G3\n\n69) ts52: Discover G1 Ts52 Y3 Bigbird\n\n70) Trydnt: Trade R2 G2 G3\n\n71) ts52: Build Y2 Kermit\n\n72) Trydnt: Sacrifice Y2 Grover\nMove R3 Grover Elmo\nMove R3 Elmo Bigbird\n\n73) ts52: Sacrifice G1 Bigbird\nBuild R2 Cookie\n\n74) Trydnt: Build B3 G3\n\n75) ts52: Build Y2 Kermit\n\n76) Trydnt: Move B3 G3 Kermit\n\n77) ts52: Trade R3 G3 Cookie\n\n78) Trydnt: Sacrifice G2 G3\nBuild R3 Trydnt\nPass\n\n79) ts52: Move Y2 Kermit Cookie\n\n80) Trydnt: Sacrifice R3 Trydnt\nAttack Y2 Kermit\nAttack R2 Kermit\nAttack R1 Kermit\n\n81) ts52: Build R3 Gonzo\n\n82) Trydnt: Attack Y1 Kermit\n\n83) ts52: Build G1 Ts52\n\n84) Trydnt: Trade B2 G2 Elmo\n\n85) ts52: Trade R2 B2 Cookie\n\tts52: Sorry for the delay!\n\n86) Trydnt: Move R2 Kermit Gonzo\n\n87) ts52: Attack R2S Gonzo\n\n88) Trydnt: Move R1 Kermit Gonzo\nCatastrophe Gonzo R\n\n89) ts52: Trade G2 R2 Gonzo\n\n90) Trydnt: Sacrifice Y3 G3\nMove B3 Kermit Cookie\nMove B1 G3 Kermit\nMove B1 Kermit Cookie\nCatastrophe Cookie B\n\n91) ts52: Build R1 Gonzo\n\n92) Trydnt: Sacrifice G2 Elmo\nBuild Y2 Kermit\nBuild Y3 G3\n\n93) ts52: Build G1 Gonzo\n\tTrydnt: couldn't see an obviously good move so I went with the most surprising one\n\tts52: That's certainly surprising...\n\n94) Trydnt: Sacrifice Y2 Kermit\nMove Y3 G3 Kermit\nMove Y3 Kermit Gonzo\n\n95) ts52: Discover R2 Gonzo B1 Grover\n\n96) Trydnt: Sacrifice R3 Bigbird\nAttack R1 Gonzo\nAttack Y1 Gonzo\nAttack G1 Gonzo\n\n97) ts52: Sacrifice G1 Gonzo\nBuild R1 Grover\n\n98) Trydnt: Build Y2 G3\n\n99) ts52: Discover G1 Ts52 Y3 Bigbird\n\n100) Trydnt: Build B2 G3\n\n101) ts52: Build R2 Ts52\n\n102) Trydnt: Build B3 G3\n\n103) ts52: Build G1 Ts52\n\n104) Trydnt: Trade Y3 G3 Gonzo\n\n105) ts52: Discover G1 Ts52 Y3 Zoe\n\n106) Trydnt: Trade B3 R3 G3\n\n107) ts52: Build G2 Ts52\n\n108) Trydnt: Sacrifice Y2 Kermit\nMove G1 Gonzo Ts52\nMove G3 Gonzo Ts52\nCatastrophe Ts52 G\n\n109) ts52: Trade R2 G2 Ts52\n\n110) Trydnt: Move R3 G3 Ts52\n\n111) ts52: Build R2 Ts52\n\n112) Trydnt: Sacrifice R3 Trydnt\nAttack R1 Ts52\nAttack R2 Ts52\nAttack G2 Ts52\n\n\nHomeworlds Online (SDG# 33960)\nStarted: 2018.4.2, Ended: 2018.5.7\nParticipants: Trydnt (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Discover G1 Ts52 B3 Gonzo\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) ts52: Build G1 Ts52\n\n8) Trydnt: Build Y1 Trydnt\n\n9) ts52: Build G1 Ts52\n\n10) Trydnt: Discover Y1 Trydnt B1 B1\n\n11) ts52: Build G2 Gonzo\n\n12) Trydnt: Build G2 Trydnt\n\n13) ts52: Trade G2 Y2 Gonzo\n\n14) Trydnt: Move G2 Trydnt B1\n\n15) ts52: Trade G1 B1 Ts52\n\n16) Trydnt: Trade Y1 B1 Trydnt\n\n17) ts52: Discover B1 Ts52 G3 Kermit\n\n18) Trydnt: Discover G2 B1 Y3 Y3\n\n19) ts52: Build B2 Kermit\n\n20) Trydnt: Discover B1 Trydnt Y1 Y1\n\n21) ts52: Trade G1 R1 Ts52\n\n22) Trydnt: Trade B1 R1 Y1\n\n23) ts52: Build G1 Ts52\n\n24) Trydnt: Discover Y1 B1 B3 B3\n\n25) ts52: Build R1 Ts52\n\n26) Trydnt: Sacrifice G2 Y3\nBuild Y2 B3\nBuild Y3 B3\n\n27) ts52: Build Y3 Gonzo\n\n28) Trydnt: Trade Y2 G2 B3\n\n29) ts52: Move Y2 Gonzo Y1\n\n30) Trydnt: Move R1 Y1 B3\n\n31) ts52: Build Y2 Gonzo\n\n32) Trydnt: Discover Y1 B3 B1 B1\n\n33) ts52: Build B1 Kermit\n\n34) Trydnt: Sacrifice G2 B3\nBuild Y3 B1\nBuild R2 B3\n\n35) ts52: Trade Y3 R3 Gonzo\n\n36) Trydnt: Discover Y1 B1 Y3 Y3\n\n37) ts52: Build R2 Gonzo\n\n38) Trydnt: Move Y3 B1 Kermit\n\n39) ts52: Move R2 Gonzo Y1\n\n40) Trydnt: Sacrifice R1 B3\nAttack B2 Kermit\n\n41) ts52: Move R2 Y1 Y3\n\n42) Trydnt: Sacrifice Y1 Y3\nDiscover B2 Kermit Y1 Y11\n\n43) ts52: Move G1 Ts52 Y3\n\n44) Trydnt: Trade B2 R2 Y11\n\n45) ts52: Build R1 Y3\n\n46) Trydnt: Sacrifice R2 Y11\nAttack B1 Kermit\nAttack B1 Kermit\n\n47) ts52: Build R2 Gonzo\n\n48) Trydnt: Build B1 Kermit\n\n49) ts52: Build R3 Y3\n\n50) Trydnt: Build G1 Trydnt\n\n51) ts52: Build R3 Gonzo\n\n52) Trydnt: Build Y1 Kermit\n\n53) ts52: Build G2 Ts52\n\n54) Trydnt: Move B1 Kermit Ts52\n\n55) ts52: Trade R2 B2 Gonzo\n\n56) Trydnt: Sacrifice G1 Trydnt\nBuild R2 B3\n\n57) ts52: Move R3 Gonzo Y1\n\n58) Trydnt: Move B1 Kermit Ts52\n\n59) ts52: Move B2 Gonzo Y1\n\n60) Trydnt: Move B1 Kermit Ts52\n\n61) ts52: Build G1 Ts52\n\n62) Trydnt: Move Y1 Kermit Ts52\n\n63) ts52: Catastrophe Ts52 B\nSacrifice Y2 Y1\nMove G1 Ts52 Trydnt\nMove G2 Ts52 Trydnt\n\n64) Trydnt: Sacrifice Y3 Kermit\nMove Y3 B3 Ts52\nMove R2 B3 Ts52\nMove R2 Ts52 Trydnt\n\n65) ts52: Sacrifice R3 Y3\nAttack R2S Trydnt\nAttack Y3S Ts52\nAttack Y1S Ts52\n\n66) Trydnt: Sacrifice R2 B3\nAttack R2 Trydnt\nAttack G2 Trydnt\n\n67) ts52: Sacrifice Y3 Ts52\nMove G1 Gonzo Y1\nMove G1 Y1 Trydnt\nCatastrophe Trydnt G\nMove R3 Y1 Trydnt\n\n\nHomeworlds Online (SDG# 33776)\nVariants: "Unrated"\nStarted: 2018.4.5, Ended: 2018.4.9\nParticipants: Schmoopy (S), Twinsen (N)\nWinner: Twinsen\n\n1) Twinsen: Homeworld R2 B1 G3\n\n\nHomeworlds Online (SDG# 33848)\nVariants: "Hard time"\nStarted: 2018.4.5, Ended: 2018.5.7\nParticipants: Trydnt (S), Twinsen (N)\nWinner: Twinsen\n\n1) Twinsen: Homeworld R2 B1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tTwinsen: hi\n\tTrydnt: hello\n\n3) Twinsen: Build G1 Twinsen\n\n4) Trydnt: Build G1 Trydnt\n\n5) Twinsen: Trade G1 Y1 Twinsen\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) Twinsen: Discover Y1 Twinsen B3 Deepblue\n\n8) Trydnt: Build B1 Trydnt\n\n9) Twinsen: Build G1 Twinsen\n\n10) Trydnt: Discover B1 Trydnt G1 G1\n\n11) Twinsen: Trade G1 Y1 Twinsen\n\n12) Trydnt: Build B2 G1\n\n13) Twinsen: Build G1 Twinsen\n\n14) Trydnt: Build B2 G1\n\n15) Twinsen: Discover G1 Twinsen B3 Me6\n\n16) Trydnt: Build B3 Trydnt\n\n17) Twinsen: Move Y1 Deepblue Twinsen\n\n18) Trydnt: Trade B2 Y2 G1\n\n19) Twinsen: Build G1 Me6\n\n20) Trydnt: Build B2 G1\n\n21) Twinsen: Build G2 Twinsen\n\n22) Trydnt: Build G2 Trydnt\n\n23) Twinsen: Sacrifice G3 Twinsen\nBuild G2 Me6\nBuild G3 Twinsen\nBuild G3 Twinsen\n\n24) Trydnt: Discover B2 G1 Y3 Y3\n\n25) Twinsen: Trade G1 Y1 Me6\n\n26) Trydnt: Trade B3 Y3 Trydnt\n\n27) Twinsen: Move G3 Twinsen Y3\n\n28) Trydnt: Build B3 G1\n\n29) Twinsen: Build Y2 Me6\n\n30) Trydnt: Build Y2 G1\n\n31) Twinsen: Trade G2 R2 Me6\n\n32) Trydnt: Build B3 Trydnt\n\n33) Twinsen: Move G3 Y3 G1\n\n34) Trydnt: Sacrifice Y2 G1\nDiscover B3 G1 R3 R3\nDiscover B3 Trydnt R1 R1\n\n35) Twinsen: Sacrifice R2 Me6\nAttack B2 G1\nAttack Y2 G1\n\n36) Trydnt: Trade B1 G1 G1\n\n37) Twinsen: Sacrifice Y2 G1\nMove G3 G1 Trydnt\nMove B2 G1 Trydnt\n\n38) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G3 Trydnt\nBuild B1 R3\nCatastrophe Trydnt G\n\n39) Twinsen: Sacrifice Y2 Me6\nMove Y1 Me6 G1\nMove Y1 G1 Trydnt\n\n40) Trydnt: Trade Y3 R3 Trydnt\n\n41) Twinsen: Sacrifice G1 Me6\nBuild B3 Trydnt\nCatastrophe Trydnt Blue\n\n42) Trydnt: Attack Y1 Trydnt\n\n43) Twinsen: Discover Y1 Twinsen G3 Verde\n\n44) Trydnt: Sacrifice B3 R1\nTrade Y1 G1 Trydnt\nTrade B3 Y3 R3\nTrade B2 Y2 Y3\n\n45) Twinsen: Build Y1 Twinsen\n\n46) Trydnt: Build G2 Trydnt\n\n47) Twinsen: Sacrifice G2 Twinsen\nBuild Y2 Verde\nBuild Y2 Verde\n\n48) Trydnt: Move Y3 R3 Twinsen\n\n49) Twinsen: Attack Y3 Twinsen\n\n50) Trydnt: Move Y2 Y3 Twinsen\nCatastrophe Twinsen Y\n\n51) Twinsen: Build G2 Twinsen\n\n52) Trydnt: Move G2 Trydnt Twinsen\n\n53) Twinsen: Trade G3 Y3 Twinsen\n\n54) Trydnt: Attack G2 Twinsen\n\n55) Twinsen: Attack G2S Twinsen\n\n56) Trydnt: Attack G2 Twinsen\n\n57) Twinsen: Attack G2 Twinsen\n\n58) Trydnt: Sacrifice G2 Twinsen\nBuild G2 Trydnt\nBuild B1 R3\n\n59) Twinsen: Sacrifice Y2 Verde\nDiscover Y2 Verde G2 Gg\nMove Y1 Verde Gg\n\n60) Trydnt: Sacrifice G1 G1\nBuild B2 R3\n\n61) Twinsen: Build Y1 Twinsen\n\n\tTwinsen: Good game\n\tTrydnt: well played\n\nHomeworlds Online (SDG# 33970)\nVariants: "Unrated, Hard time"\nStarted: 2018.4.7, Ended: 2018.4.30\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n1) ts52: Homeworld Y2 B1 G3\n\n2) wil: Homeworld B3 Y1 G3\n\tts52: For the great homeworlds tournament. Game 8. Have a good game!\n\twil: Oh my! this is it? You have a good game!\n\n3) ts52: Build G1 Ts52\n\n4) wil: Build G1 Wil\n\twil: b g1 wil\n\n5) ts52: Trade G1 B1 Ts52\n\twil: lol....gotta put it in the right box..\r\n\n\tts52: :)\n\n6) wil: Trade G1 Y1 Wil\n\twil: sorry...new to the game...I'll figure it out\n\n7) ts52: Build B1 Ts52\n\n8) wil: Build Y1 Wil\n\tts52: trying to lull me into a false sense of security? ;) I'd say it'll never work, but I'm not so sure.\n\n9) ts52: Discover B1 Ts52 G3 Kermit\n\n10) wil: Discover Y1 Wil G2 G2\n\n11) ts52: Build B2 Kermit\n\n12) wil: Sacrifice G3 Wil\nBuild Y2 G2\nBuild Y2 G2\nBuild Y3 Wil\n\n13) ts52: Discover B1 Ts52 G3 Oscar\n\twil: I may have pulled the trigger to early... \n\n14) wil: Discover Y2 G2 B3 B3\n\tts52: Time will tell.\n\n15) ts52: Build B2 Oscar\n\twil: Looks like one of us will play Babamots next. \n\tBabamots: Yup, lucky you!\n\twil: This is far from over...IDK what you two are thinking...I am famous for mistakes..\r\n\n\tBabamots: Sorry, I didn't mean to imply an outcome in my comment. I just meant that one of you two lucky players gets to play me.\n\n16) wil: Build Y3 G2\n\tts52: My comment was in reply to yours: "i may have pulled the trigger to early...". Definitely no implication of outcome. I agree this game is far from over.\n\n17) ts52: Build B2 Kermit\n\twil: lol..totally my mistake...rereading I don't know what I read... no head games intended...\r\n\n\n18) wil: Move Y3 G2 B3\n\n19) ts52: Build B3 Oscar\n\twil: lol, I have no clue where this is going to go...love it!\r\n\n\n20) wil: Build Y3 G2\n\tts52: I suspect it's not going to end well for me, but I can't wait to see exactly how. :)\n\n21) ts52: Build G1 Ts52\n\n22) wil: Trade Y2 G2 B3\n\n23) ts52: Trade B2 Y2 Oscar\n\n24) wil: Build G1 B3\n\n25) ts52: Trade G1 R1 Ts52\n\n26) wil: Move Y3 G2 Kermit\n\n27) ts52: Build R1 Ts52\n\n28) wil: Trade Y1 R1 Wil\n\n29) ts52: Build R2 Ts52\n\n30) wil: Sacrifice G2 B3\nBuild R2 Wil\nBuild R2 Wil\n\n31) ts52: Move R1 Ts52 Oscar\n\n32) wil: Sacrifice R2 Wil\nAttack B2 Kermit\nAttack B2 Kermit\n\n33) ts52: Build B2 Kermit\nCatastrophe Kermit Blue\n\n34) wil: Build Y1 B3\n\n35) ts52: Build R2 Oscar\n\n36) wil: Move R1 Wil G2\n\n37) ts52: Trade R1 B1 Oscar\n\n38) wil: Build G1 B3\n\n39) ts52: Move B3 Oscar G2\n\n40) wil: Sacrifice Y2 G2\nMove Y1 G2 Kermit\nMove R1 G2 Kermit\n\n41) ts52: Build Y2 Oscar\n\n42) wil: Build G1 B3\n\n43) ts52: Build B2 G2\n\n44) wil: Move G1 B3 Ts52\n\n45) ts52: Build B2 G2\n\n46) wil: Sacrifice Y3 Kermit\nMove G1 B3 Ts52\nMove G1 B3 Ts52\nMove Y3 B3 Ts52\nCatastrophe Ts52 G\n\n47) ts52: Sacrifice Y2 Oscar\nMove B3 G2 Wil\nMove Y2 Oscar Ts52\n\n48) wil: Attack B3 Wil\n\tts52: Well played.\n\n49) ts52: Sacrifice B2 G2\nTrade R2 Y2 Ts52\nCatastrophe Ts52 Y\nTrade B2 Y2 G2\n\n50) wil: Move B3 Wil G2\n\twil: Still so scary...do I have it...don't I...eek.\n\tts52: I'm pretty sure you have this. I _think_ this is my only possible move, but it's not enough.\n\n51) ts52: Move Y2 G2 Oscar\n\twil: It is soo dang close...I can't guarantee an end that i won't screw up.\n\twil: just discovered my problem....I am trying to end it...I should just build and be safe.\n\n52) wil: Sacrifice Y1 B3\nMove B3 G2 Ts52\n\n53) ts52: Sacrifice Y2 Oscar\nMove R2 Oscar Ts52\nMove B1 Oscar Ts52\n\n54) wil: Sacrifice R2 Wil\nAttack R1 Ts52\nAttack R2 Ts52\n\n55) ts52: Build B2 Oscar\n\tts52: Again, well played. I thought I might be able to trip you up, but I don't think that's going to happen.\n\n56) wil: Attack B1 Ts52\n\twil: lol, I've been known to make mistakes that are easily capitalized on...it was worth it...there a few moves ago I was so struggling to just end it in one or two moves...I took my eye off the prize and could have been tripped up so easily. \r\n\n\twil: Well fought.\n\n\tts52: Thanks for the game. Best of luck in the rest of the tournament.\n\twil: thanks...win or lose anywhere in this...this has been fun.\n\nHomeworlds Online (SDG# 33961)\nStarted: 2018.4.9, Ended: 2018.6.5\nParticipants: ts52 (S), Twinsen (N)\nWinner: Twinsen\n\n1) Twinsen: Homeworld R2 B1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Twinsen: Build G1 Twinsen\n\tts52: Have a good game!\n\tTwinsen: You too!\n\n4) ts52: Build G1 Ts52\n\n5) Twinsen: Build G1 Twinsen\n\n6) ts52: Build G2 Ts52\n\n7) Twinsen: Trade G3 Y3 Twinsen\n\n8) ts52: Discover G2 Ts52 B1 Grover\n\n9) Twinsen: Build G2 Twinsen\n\n10) ts52: Build G2 Grover\n\n11) Twinsen: Discover G1 Twinsen Y3 Jelly\n\n12) ts52: Trade G2 Y2 Grover\n\n13) Twinsen: Discover G2 Twinsen B3 Azul\n\n14) ts52: Build Y1 Grover\n\n15) Twinsen: Build G2 Azul\n\n16) ts52: Trade G3 R3 Ts52\n\n17) Twinsen: Build G3 Twinsen\n\n18) ts52: Build G3 Ts52\n\n19) Twinsen: Sacrifice G3 Twinsen\nBuild G3 Twinsen\nBuild G3 Jelly\nBuild Y1 Twinsen\n\n20) ts52: Build R1 Ts52\n\n21) Twinsen: Trade G2 Y2 Azul\n\n22) ts52: Move R3 Ts52 Grover\n\n23) Twinsen: Discover G3 Jelly Y1 Amarillo\n\n24) ts52: Move R3 Grover Azul\n\n25) Twinsen: Sacrifice Y2 Azul\nDiscover G2 Azul B1 Phobos\nDiscover Y1 Twinsen R3 Marte\n\n26) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild R1 Azul\nBuild G3 Ts52\n\n27) Twinsen: Sacrifice G3 Twinsen\nBuild Y2 Twinsen\nBuild Y2 Marte\nBuild G3 Twinsen\n\n28) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Azul\nBuild R2 Ts52\n\n29) Twinsen: Trade G2 R2 Phobos\n\n30) ts52: Sacrifice Y2 Grover\nMove G2 Grover Jelly\nDiscover G2 Grover R3 Elmo\n\n31) Twinsen: Sacrifice Y2 Twinsen\nMove G1 Jelly Phobos\nMove R2 Phobos Azul\nCatastrophe Azul Red\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\nBuild Y2 Grover\n\n33) Twinsen: Sacrifice Y2 Marte\nMove G1 Phobos Elmo\nMove G1 Twinsen Elmo\nCatastrophe Elmo Green\n\n34) ts52: Trade Y1 B1 Grover\n\n35) Twinsen: Build Y1 Twinsen\n\n36) ts52: Move B1 Grover Jelly\n\n37) Twinsen: Trade G3 R3 Twinsen\n\n38) ts52: Move R2 Ts52 Grover\n\n39) Twinsen: Move R3 Twinsen Jelly\n\n40) ts52: Discover B1 Jelly G1 Kermit\n\n41) Twinsen: Attack G2 Jelly\n\tts52: Sorry for the delay!\n\n42) ts52: Build B2 Kermit\n\tTwinsen: No problem. Don't worry.\n\n43) Twinsen: Move R3 Jelly Grover\n\n44) ts52: Move Y2 Grover Marte\n\n45) Twinsen: Discover Y1 Marte G1 Cloverfield\n\n46) ts52: Trade B2 Y2 Kermit\n\n47) Twinsen: Build Y2 Cloverfield\n\n48) ts52: Build B2 Kermit\n\n49) Twinsen: Attack R2 Grover\n\n50) ts52: Build B2 Kermit\n\n51) Twinsen: Sacrifice Y2 Cloverfield\nMove G3 Amarillo Ts52\nMove R3 Grover Ts52\n\n52) ts52: Attack R3N Ts52\n\n53) Twinsen: Sacrifice R2 Grover\nAttack R3S Ts52\nAttack G3S Ts52\n\n54) ts52: Build R1 Ts52\n\n55) Twinsen: Sacrifice R3 Ts52\nAttack R1 Ts52\nAttack R1 Ts52\nAttack G1 Ts52\n\n\tts52: Good game! Well played.\n\tTwinsen: Good game. Nice to play. \n\nHomeworlds Online (SDG# 33943)\nVariants: "Unrated"\nStarted: 2018.4.9, Ended: 2018.5.2\nParticipants: Twinsen (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Twinsen: Homeworld R3 B1 G3\n\twil: good luck! New player or just found us?\n\tTwinsen: Hi, good luck too. New player here. \n\n3) wil: Build G1 Wil\n\twil: You want any hints when I see mistakes or for me to just shut up and play?\r\n\n\n4) Twinsen: Build G1 Twinsen\n\tTwinsen: Let my mistakes teach me by themselves :D. Thanks\n\n5) wil: Trade G1 B1 Wil\n\twil: No problem, that is exactly how I learned...first you lose repeatedly...and then you start to see the attacks...then you try to use the attacks and see the counter measures...then you try the counter measures..\n\twil: Have you got pyramids at home?\n\n6) Twinsen: Build G1 Twinsen\n\tTwinsen: Yes I do, but I was able to play homeworlds only once. \n\n7) wil: Build B1 Wil\n\n8) Twinsen: Trade G1 Y1 Twinsen\n\twil: Cool...the layout here gets confusing...sometimes it is worthwhile to set it up IRL so you can see all that is going on. \n\tTwinsen: I'll try it. Thank you for the advice. \n\n9) wil: Build G1 Wil\n\n10) Twinsen: Discover G1 Twinsen Y2 Sol\n\n11) wil: Trade G1 Y1 Wil\n\n12) Twinsen: Build G1 Twinsen\n\n13) wil: Discover B1 Wil Y3 Y3\n\n14) Twinsen: Trade G1 R1 Twinsen\n\n15) wil: Build B2 Wil\n\n16) Twinsen: Build G1 Twinsen\n\n17) wil: Discover B2 Wil Y3 Why3\n\n18) Twinsen: Discover R1 Twinsen Y2 Yfull\n\n19) wil: Sacrifice G3 Wil\nBuild B2 Y3\nBuild B3 Why3\nBuild B3 Wil\n\n20) Twinsen: Trade G3 B3 Twinsen\n\twil: allowing someone to monopolize an economy can be disastrous...at the beginning of every game it is a challenge of getting larger ships vs. getting one of each color...a game of follow the leader is typical.\n\n21) wil: Trade B3 Y3 Why3\n\tTwinsen: I have little choice here\n\n22) Twinsen: Move R1 Yfull Twinsen\n\n23) wil: T B3 G3 Wil\n\n24) Twinsen: Move G1 Sol Twinsen\n\twil: It is only going to get worse now... warning though... getting a monopoly is always one thing, maintaining one is another. Easy to get bitten... in this case I am going to start a large ship factory and then either build a doomsday machine or come in on a full frontal attack. \n\n25) wil: Build B3 Wil\n\tTwinsen: I'm not even familiar with those terms. :D\n\n26) Twinsen: Pass\n\twil: The doomsday machine is accumulating enough ships of blue and red (the color of your homestars) and yellow to launch them into your homeworld and cause overpopulation catastrophes.\r\n\n\twil: A full frontal attack or invasion, would be when I send in more large ships than you can kill, and then take over your ships in your homeworld.\n\n27) wil: Trade B3 G3 Wil\n\tTwinsen: This gonna be quick, I think. :D\n\n28) Twinsen: Discover R1 Twinsen Y2 Y2\n\n29) wil: Sacrifice G3 Wil\nBuild B3 Y3\nBuild B3 Why3\nPass\n\n30) Twinsen: Move R1 Y2 Y3\n\n31) wil: Sacrifice B2 Y3\nTrade B3 R3 Y3\nTrade B3 G3 Why3\n\n32) Twinsen: Attack B1 Y3\n\n33) wil: Attack R1 Y3\n\n34) Twinsen: Discover B1 Y3 G2 Greeny\n\n35) wil: Sacrifice G3 Why3\nBuild B2 Why3\nBuild B3 Why3\nBuild B3 Wil\n\n36) Twinsen: Sacrifice Y1 Twinsen\nMove B1 Greeny Why3\nCatastrophe Why3 Blue\n\n37) wil: Move B3 Wil Y3\n\n38) Twinsen: Trade G1 Y1 Twinsen\n\n39) wil: Build G1 Wil\n\n40) Twinsen: Build G1 Twinsen\n\n41) wil: Move G1 Wil Y3\n\n42) Twinsen: Discover G1 Twinsen Y2 Io\n\n43) wil: Move R3 Y3 Io\n\n44) Twinsen: Discover G1 Io Y1 Jelly\n\n45) wil: Build Y2 Wil\n\n46) Twinsen: Build G2 Jelly\n\n47) wil: Build G2 Wil\n\n48) Twinsen: Build Y2 Twinsen\n\n49) wil: Discover G2 Wil G3 G3\n\n50) Twinsen: Trade B3 G3 Twinsen\n\n51) wil: Build G2 Wil\n\n52) Twinsen: Sacrifice Y2 Twinsen\nMove G1 Jelly G3\nMove G2 Jelly G3\nCatastrophe G3 Green\n\n53) wil: Build R1 Y3\n\n54) Twinsen: Build Y1 Twinsen\n\n55) wil: Build R2 Y3\n\n56) Twinsen: Discover Y1 Twinsen G2 Greeny\n\n57) wil: Move R2 Y3 Greeny\n\n58) Twinsen: Move Y1 Greeny Why3\n\n59) wil: Sacrifice B1 Wil\nTrade Y3 G3 Why3\n\n60) Twinsen: Sacrifice G3 Twinsen\nBuild G1 Twinsen\nBuild Y2 Twinsen\nBuild Y3 Twinsen\n\n61) wil: Sacrifice G3 Wil\nBuild G2 Why3\nBuild G3 Y3\nBuild G3 Wil\n\n62) Twinsen: Sacrifice Y2 Twinsen\nDiscover Y1 Twinsen Y2 Oblivion\nMove G1 Twinsen Oblivion\n\n63) wil: Move R1 Y3 Oblivion\n\n64) Twinsen: Sacrifice Y1 Oblivion\nMove G1 Oblivion Why3\n\twil: aptly named\n\tTwinsen: For 6 turns... XD\n\n65) wil: Sacrifice R2 Greeny\nAttack Y1 Why3\nAttack G1 Why3\n\tTwinsen: This is the end\n\n66) Twinsen: Build G2 Twinsen\n\twil: When one imagines the intragalactic battle that you've got yourself in...and sits in the war room, looking at the two warships at near stars around you, and then the flotilla poised to complete the establishment of bases at those outposts. One must wonder about the purpose of life, their options, and what they were thinking when they decided to antagonize that civilization so very far away.\n\twil: You've done well...it will be near 40 total moves prior to me finishing this thing...\n\n67) wil: Move R1 Y3 Io\n\n68) Twinsen: Build Y1 Twinsen\n\n69) wil: Move B3 Y3 Oblivion\n\n70) Twinsen: Discover Y1 Twinsen B2 Bluedy\n\n71) wil: Move G3 Why3 Bluedy\n\n72) Twinsen: Discover Y1 Bluedy R3 Ready\n\twil: two move to mate\n\n73) wil: Sacrifice Y2 Wil\nMove G3 Bluedy Twinsen\nMove B3 Oblivion Twinsen\n\tTwinsen: Check mate? \n\n74) Twinsen: Sacrifice Y3 Twinsen\nDiscover G2 Twinsen Y2 Good_game\nMove Y1 Ready Good_game\nPass\n\n75) wil: Attack G1 Twinsen\n\tTwinsen: Good game will. Nice to play with you. \n\twil: And they've flown off to a previously uninhabited star system to attempt to rebuild their civilization.... challenge me anytime...I like to play\n\n\nHomeworlds Online (SDG# 33942)\nStarted: 2018.4.9, Ended: 2018.5.15\nParticipants: Twinsen (S), MobyNostromo (N)\nWinner: MobyNostromo\n\n1) MobyNostromo: H B1 Y2 G3\n\tTwinsen: Hi, glad and hf\n\tMobyNostromo: Thanks. You too!\n\n2) Twinsen: Homeworld R3 B2 G3\n\n3) MobyNostromo: B G1 Mobynostromo\n\n4) Twinsen: Build G1 Twinsen\n\n5) MobyNostromo: T G1 Y1 Mobynostromo\n\n6) Twinsen: Build G1 Twinsen\n\n7) MobyNostromo: B Y1 Mobynostromo\n\n8) Twinsen: Trade G1 B1 Twinsen\n\n9) MobyNostromo: B G1 Mobynostromo\n\n10) Twinsen: Build B1 Twinsen\n\n11) MobyNostromo: D Y1 Mobynostromo B3 Cobalt\n\n12) Twinsen: Trade G1 Y1 Twinsen\n\n13) MobyNostromo: B Y2 Mobynostromo\n\n14) Twinsen: Build Y2 Twinsen\n\n15) MobyNostromo: M Y1 Mobynostromo Cobalt\n\n16) Twinsen: Build G1 Twinsen\n\n17) MobyNostromo: B Y3 Mobynostromo\n\n18) Twinsen: Discover Y1 Twinsen G1 Geegee\n\n19) MobyNostromo: D Y2 Mobynostromo B3 Thalo\n\n20) Twinsen: Build Y3 Geegee\n\n21) MobyNostromo: S G3 Mobynostromo\nB Y3 Thalo\nB G2 Mobynostromo\nB G2 Mobynostromo\n\n22) Twinsen: Sacrifice Y3 Geegee\nMove G1 Twinsen Geegee\nMove G1 Geegee Cobalt\nMove G1 Cobalt Mobynostromo\nCatastrophe Mobynostromo Green\n\n23) MobyNostromo: T Y3 R3 Thalo\n\n24) Twinsen: Build Y3 Geegee\n\n25) MobyNostromo: M R3 Thalo Geegee\n\n26) Twinsen: Sacrifice Y1 Geegee\nDiscover Y3 Geegee R3 Rojo\n\n27) MobyNostromo: B R1 Geegee\n\n28) Twinsen: Sacrifice G3 Twinsen\nBuild Y1 Rojo\nBuild Y3 Twinsen\nPass\n\n29) MobyNostromo: T Y3 G3 Mobynostromo\n\n30) Twinsen: Trade Y3 G3 Twinsen\n\n31) MobyNostromo: B G1 Mobynostromo\n\n32) Twinsen: Build Y3 Twinsen\n\n33) MobyNostromo: S G1 Mobynostromo\nB Y3 Thalo\n\n34) Twinsen: Discover B1 Twinsen G1 Verdin\n\n35) MobyNostromo: T Y1 G1 Cobalt\n\n36) Twinsen: Trade B1 Y1 Verdin\n\n37) MobyNostromo: B G2 Mobynostromo\n\n38) Twinsen: Discover Y1 Verdin G3 Verdon\n\n39) MobyNostromo: B R1 Geegee\n\n40) Twinsen: Build G1 Twinsen\n\n41) MobyNostromo: S G3 Mobynostromo\nB G2 Cobalt\nB G2 Cobalt\nB G3 Mobynostromo\n\n42) Twinsen: Sacrifice Y3 Twinsen\nMove Y3 Rojo Mobynostromo\nMove Y1 Rojo Mobynostromo\nMove Y1 Verdon Mobynostromo\nCatastrophe Mobynostromo Yellow\n\n43) MobyNostromo: T G3 R3 Mobynostromo\n\n44) Twinsen: Sacrifice G3 Twinsen\nBuild G3 Twinsen\nBuild B1 Twinsen\nBuild Y1 Twinsen\n\n45) MobyNostromo: T G2 B2 Cobalt\n\n46) Twinsen: Sacrifice Y2 Twinsen\nDiscover B1 Twinsen Y1 Sol\nMove G1 Twinsen Sol\n\n47) MobyNostromo: S G2 Cobalt\nB R1 Mobynostromo\nB R2 Mobynostromo\n\n48) Twinsen: Build B2 Sol\n\n49) MobyNostromo: S Y3 Thalo\nM R1 Mobynostromo Twinsen\nM R1 Geegee Twinsen\nM R1 Geegee Twinsen\nC Twinsen R\n\n50) Twinsen: Build Y2 Twinsen\n\n51) MobyNostromo: S Y1 Cobalt\nM R3 Geegee Twinsen\n\n\tTwinsen: Good game\n\tMobyNostromo: Yeah, it was close.\n\nHomeworlds Online (SDG# 33875)\nVariants: "Hard time"\nStarted: 2018.4.9, Ended: 2018.4.23\nParticipants: Draw5PlayAll (S), Trydnt (N)\nWinner: Draw5PlayAll\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Draw5PlayAll: Homeworld Y1 G2 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) Draw5PlayAll: Build Y1 Draw5playall\n\tTrydnt: nice use of the instafreeze\n\tTrydnt: not having blue really blues... I mean blows\n\n5) Trydnt: Build G1 Trydnt\n\n6) Draw5PlayAll: Discover Y1 Draw5playall G3 Growth\n\n7) Trydnt: Discover G1 Trydnt Y3 Y3\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) Trydnt: Build G1 Trydnt\n\n10) Draw5PlayAll: Discover Y2 Draw5playall B3 Needblue\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Y3\nBuild G2 Y3\nBuild G3 Trydnt\n\n12) Draw5PlayAll: Build Y2 Growth\n\n13) Trydnt: Discover G1 Trydnt B3 B3\n\n14) Draw5PlayAll: Trade Y2 R2 Needblue\n\n15) Trydnt: Build G3 B3\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) Trydnt: Trade G3 Y3 B3\n\n18) Draw5PlayAll: Sacrifice Y2 Growth\nMove Y3 Draw5playall Needblue\nMove Y3 Needblue Trydnt\n\tDraw5PlayAll: I will probably regret this!!\n\n19) Trydnt: Sacrifice G2 Y3\nBuild G2 Trydnt\nBuild G3 B3\n\n20) Draw5PlayAll: Sacrifice R2 Needblue\nAttack G2 Trydnt\nAttack G3 Trydnt\n\n21) Trydnt: Sacrifice G3 B3\nBuild G3 B3\nBuild Y2 B3\nBuild Y2 B3\n\n22) Draw5PlayAll: Move Y3 Trydnt B3\nCatastrophe B3 Yellow\n\n23) Trydnt: Trade G1 R1 Trydnt\n\n24) Draw5PlayAll: Trade G3 R3 Trydnt\n\n\tDraw5PlayAll: Feel free to use a catastrophe to disintegrate my R3.\n\nHomeworlds Online (SDG# 33868)\nVariants: "Unrated"\nStarted: 2018.4.11, Ended: 2018.4.17\nParticipants: Trydnt (S), silversliver (N)\nWinner: Trydnt\n\n1) silversliver: Homeworld G2 R1 B3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) silversliver: Build B1 Silversliver\n\n4) Trydnt: Build G1 Trydnt\n\n5) silversliver: Trade B1 Y1 Silversliver\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) silversliver: Build Y1 Silversliver\n\n8) Trydnt: Build R1 Trydnt\n\n9) silversliver: Discover Y1 Silversliver R3 Sys1\n\n10) Trydnt: Build R2 Trydnt\n\n11) silversliver: Build B1 Silversliver\n\n\n12) Trydnt: Build G1 Trydnt\n\n13) silversliver: Trade B1 G1 Silversliver\n\n14) Trydnt: Discover R2 Trydnt B1 B1\n\n15) silversliver: Build B1 Silversliver\n\n16) Trydnt: Move G1 Trydnt B1\n\n17) silversliver: Trade B3 R3 Silversliver\n\n18) Trydnt: Build R2 B1\n\n19) silversliver: Build Y1 Silversliver\n\n20) Trydnt: Trade R2 Y2 B1\n\n21) silversliver: Sacrifice G1 Silversliver\nBuild Y2 Sys1\n\n22) Trydnt: Build R2 B1\n\n23) silversliver: Trade Y1 G1 Silversliver\n\n24) Trydnt: Build G1 Trydnt\n\n25) silversliver: Build G2 Silversliver\n\n26) Trydnt: Sacrifice Y2 B1\nMove G1 B1 Sys1\nMove G1 Sys1 Silversliver\nCatastrophe Silversliver G\n\n27) silversliver: Trade R3 G3 Silversliver\n\n28) Trydnt: Trade R2 Y2 B1\n\n29) silversliver: Build G1 Silversliver\n\n30) Trydnt: Discover R2 B1 Y3 Y3\n\n31) silversliver: Move G1 Silversliver Sys1\n\n32) Trydnt: Move R2 Y3 Silversliver\n\n33) silversliver: Attack R2 Silversliver\n\n34) Trydnt: Sacrifice Y2 B1\nMove R1 Trydnt Silversliver\nMove R1 Trydnt Silversliver\nCatastrophe Silversliver R\n\n\nHomeworlds Online (SDG# 33981)\nVariants: "Unrated"\nStarted: 2018.4.11, Ended: 2018.4.17\nParticipants: wil (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) wil: Homeworld Y3 B1 G3\n\tBroccoli_Commander: Heeeeello wil :-)\r\n\r\nWow it has been a while. You will crush me in no time I'm afraid. Regardless, I'm super excited to play a game with you again!\r\n\r\nI do not exactly remember how/why I quit so abruptly. Looking back it was a bit rude. I know I was a bit too absorbed by the game to the point it was mildly unhealthy. And most probably I was writing my thesis and I had to cut all good excuses to procrastinate... \r\n\r\nAnyhow, I saw this little "SDG" folder in my inbox and I thought I would try to reconnect. Seeing your name brought back good memories (I almost left out a tear of joy); and here we are!\r\n\r\nI hope all is well for you. How did the tournament of last August pan out?\r\n\r\n\r\n\r\nAll of your vegetables are belong to us!!\r\nLet the fun begin.\n\twil: Well now!! Yes it has been a while!! And I'll bet you'll be able to jump right back on this horse. Wonderful to hear from you, I've been thinking about you a lot. We are currently in a tournament and I've been telling folks without you, TTT and twoshort...this really isn't a tournament!! \r\n\n\twil: It was your thesis...PhD in hand now? How is everything going? I have a kid I taught..he will be headed back to London soon, with his PolSci masters he acquired here stateside. He will be a formidable player...hope to see you both in the next tourney (takes forever on SDG) Wish we had another platform (wink wink nod nod)\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) wil: Build G1 Wil\n\tBroccoli_Commander: Yes, now been working for 4 years in the "industry", but I still can't say I found my definitive career path yet. But life is good.\r\n\r\nHa! so your kid is in the same time zone... did you hook him up with SDG? Good parenting either way :-)\r\n\r\nAnd I see you remember this idea to make an alternate app for binary homeworlds... with a chess-like clock, was that the idea?\r\n\r\nOh TeeTeeTee the new kid that deserved a lesson no one could deliver! He would probably have crushed any tournament. Too bad that TwoShort also left apparently. But I'm sure the competition is nice and fierce, happy to see some new names in there (I could check out the tournament link)!\n\twil: b g1 wil\n\n5) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\twil: sheesh...telegraphed my secret move!\n\n6) wil: Trade G1 B1 Wil\n\n7) Broccoli_Commander: Build G1 Blueberry\n\n8) wil: Build B1 Wil\n\n9) Broccoli_Commander: Build G1 Broccoli_commander\n\n10) wil: Discover B1 Wil B2 B2\n\n11) Broccoli_Commander: Build G2 Broccoli_commander\n\n12) wil: Build B2 Wil\n\n13) Broccoli_Commander: Discover G2 Broccoli_commander B3 Muffin\n\n14) wil: Discover B2 Wil Y2 Y2\n\n15) Broccoli_Commander: Build G2 Blueberry\n\n16) wil: Build G2 Wil\n\n17) Broccoli_Commander: Trade G2 Y2 Blueberry\n\tBroccoli_Commander: Woops sorry about that\n\n18) wil: Build B3 Wil\n\twil: lol...moving the coin is a thing!\r\n\n\n19) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\n\n20) wil: Trade G2 R2 Wil\n\n21) Broccoli_Commander: Trade G3 R3 Blueberry\n\n22) wil: Build R1 Wil\n\n23) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Blueberry\nBuild G3 Muffin\nBuild G3 Broccoli_commander\n\n24) wil: Trade B3 Y3 Wil\n\n25) Broccoli_Commander: Discover G2 Broccoli_commander B3 Topping\n\n26) wil: Build Y1 Wil\n\n27) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild R1 Blueberry\nBuild Y1 Blueberry\n\twil: You ain't lost nuthin...still wollop me.\n\n28) wil: Move Y1 Wil B2\n\n29) Broccoli_Commander: Move Y2 Blueberry B2\n\tBroccoli_Commander: Always a pleasure to spread fibers and vitamins across the universe.\n\tBroccoli_Commander: Always a pleasure to spread fibers and vitamins across the universe.\n\twil: i've so lost...\n\n30) wil: Sacrifice Y1 B2\nDiscover B1 B2 Y3 Y3\n\n31) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 B2\nBuild Y2 Blueberry\n\n32) wil: Discover Y3 Wil R2 R2\n\n33) Broccoli_Commander: Move R1 Blueberry Broccoli_commander\n\n34) wil: Move Y3 R2 Topping\n\n35) Broccoli_Commander: Sacrifice G2 Topping\nBuild G2 Broccoli_commander\nBuild R1 Blueberry\n\n36) wil: Move R1 Wil Y2\n\n37) Broccoli_Commander: Build R2 Broccoli_commander\n\n38) wil: Move R1 Y2 Topping\n\n39) Broccoli_Commander: Move R2 Broccoli_commander Y3\n\n40) wil: Move B1 Y3 B2\n\n41) Broccoli_Commander: Move R2 Y3 B2\n\twil: unless you wish for some reason to finish this...I should just knock over my king.\n\n\tBroccoli_Commander: As you wish! I think it is over too.\n\twil: its been over for a bit.. either you haven't lost anything...or I havent gotten any better...probably both!\n\tBroccoli_Commander: Luck always takes part as well! Thanks for the game!\n\nHomeworlds Online (SDG# 33991)\nVariants: "Hard time"\nStarted: 2018.4.12, Ended: 2018.6.10\nParticipants: Laurie_Menke (S), Mandrel (N)\nWinner: Laurie_Menke\n\n1) Mandrel: Homeworld R1 B2 G3\n\n2) Laurie_Menke: Homeworld B1 Y3 G3\n\tLaurie_Menke: Hi Mandrel! Have fun!\n\n3) Mandrel: Build G1 Mandrel\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tMandrel: You too!\n\n5) Mandrel: Trade G1 Y1 Mandrel\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) Mandrel: Build Y1 Mandrel\n\n8) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n9) Mandrel: D Y1 Mandrel B3 Wait\n\n10) Laurie_Menke: Discover G1 Laurie_menke B2 Blue\n\n11) Mandrel: B Y1 Mandrel\n\n12) Laurie_Menke: Build G1 Laurie_menke\n\n13) Mandrel: Build G2 Mandrel\n\n14) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Blue\nBuild G2 Yellow\nBuild G3 Laurie_menke\n\n15) Mandrel: Sacrifice G3 Mandrel\nBuild G3 Mandrel\nBuild G3 Mandrel\nBuild Y2 Wait\n\n16) Laurie_Menke: Discover G1 Yellow Y3 Hi\n\n17) Mandrel: D G3 Mandrel Y3 Roast\n\n18) Laurie_Menke: Trade G2 Y2 Blue\n\n19) Mandrel: Trade G2 B2 Mandrel\n\n20) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Hi\nBuild G2 Yellow\nBuild G3 Laurie_menke\n\n21) Mandrel: M B2 Mandrel Roast\n\n22) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n23) Mandrel: B B1 Roast\n\n24) Laurie_Menke: Build G1 Laurie_menke\n\n25) Mandrel: Trade B2 R2 Roast\n\n26) Laurie_Menke: Move R1 Laurie_menke Yellow\n\n27) Mandrel: Move G3 Roast Blue\n\n28) Laurie_Menke: Discover Y2 Blue R3 Red\n\n29) Mandrel: S R2 Roast\nA G1 Blue\nPass\n\n30) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n\tLaurie_Menke: Oh no! I'm sorry, Mandrel That's not how I wanted to beat you. :( I hope everything's OK with you!\n\tMandrel: Apologies, life suddenly got extra hectic! I'm sure it was just delaying the inevitable :)\n\tLaurie_Menke: No worries... glad you're OK and hope the hectic gets better. I totally understand how that is! Much more likely that I would have lost, though, not the other way around. :)\n\nHomeworlds Online (SDG# 33878)\nStarted: 2018.4.13, Ended: 2018.8.23\nParticipants: Trydnt (S), mathochist (N)\nWinner: Trydnt\n\n1) mathochist: Pass\n\n2) Trydnt: Homeworld B2 Y1 G3\n\tmathochist: Please remind me what the time settings mean. Thx!\n\n3) mathochist: Homeworld Y2 B3 G3\n\n4) Trydnt: Build G1 Trydnt\n\n5) mathochist: Build G1 Mathochist\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) mathochist: Trade G3 Y3 Mathochist\n\n8) Trydnt: Build G1 Trydnt\n\n9) mathochist: Build G1 Mathochist\n\n10) Trydnt: Trade G1 B1 Trydnt\n\tTrydnt: it just determines how long you can go without making a move before your opponent can force you to resign. I usually leave it for a few days even after it's past the deadline then clear it out of my cache if the person still hasn't made their move so it's not that important\n\n11) mathochist: Trade G1 B1 Mathochist\n\tmathochist: got it, thanks\n\n12) Trydnt: Build G1 Trydnt\n\n13) mathochist: Discover B1 Mathochist R1 Tiny\n\n14) Trydnt: Trade G1 R1 Trydnt\n\n15) mathochist: Build G1 Mathochist\n\n16) Trydnt: Build R1 Trydnt\n\n17) mathochist: Discover G1 Mathochist Y1 Superstar\n\n18) Trydnt: Build Y2 Trydnt\n\n19) mathochist: Discover G1 Superstar Y3 Supererstar\n\n20) Trydnt: Build R2 Trydnt\n\n21) mathochist: Build Y1 Mathochist\n\n22) Trydnt: Sacrifice Y2 Trydnt\nMove Y1 Trydnt Supererstar\nDiscover Y1 Supererstar G1 G1\n\n23) mathochist: Trade Y3 R3 Mathochist\n\n24) Trydnt: Build Y2 G1\n\n25) mathochist: Build G2 Mathochist\n\n26) Trydnt: Build G2 Trydnt\n\n27) mathochist: Move G2 Mathochist Tiny\n\n28) Trydnt: Discover G2 Trydnt Y3 Y3\n\n29) mathochist: Build R2 Mathochist\n\n30) Trydnt: Discover R2 Trydnt G3 G3\n\n31) mathochist: Move R2 Mathochist G1\n\n32) Trydnt: Sacrifice R1 Trydnt\nAttack R2 G1\n\n33) mathochist: Move Y1 Mathochist Tiny\n\tmathochist: Been super busy. Sorry if this move times out. Definitely get to it within the evening, if you will wait. Thanks.\n\n34) Trydnt: Discover Y2 G1 G3 G33\n\n35) mathochist: Discover G2 Tiny Y3 Blob\n\n36) Trydnt: Sacrifice G2 Y3\nBuild Y2 G1\nBuild Y3 G33\n\n37) mathochist: Sacrifice G2 Blob\nBuild G2 Mathochist\nBuild Y3 Tiny\n\n38) Trydnt: Build R1 G1\n\n39) mathochist: Build G2 Supererstar\n\n40) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G1\nBuild R3 G3\nBuild R3 Trydnt\n\n41) mathochist: Build G2 Supererstar\n\n42) Trydnt: Trade R3 G3 Trydnt\n\tmathochist: I are screwed :P\n\n43) mathochist: Sacrifice Y3 Tiny\nMove G1 Supererstar G1\nMove G2 Supererstar G1\nMove G2 Supererstar G1\nCatastrophe G1 G\n\n44) Trydnt: Move Y2 G33 Tiny\n\n45) mathochist: Sacrifice Y1 Tiny\nDiscover B1 Tiny Y3 Julie\n\n46) Trydnt: Move B1 Trydnt G3\n\n47) mathochist: Build G1 Mathochist\n\n48) Trydnt: Trade R2 Y2 G3\n\n49) mathochist: Discover G2 Mathochist B1 Etho\n\tmathochist: Sorry, I know I've slowed way down. Life, chronic stuff. I'm still here. \n\n50) Trydnt: Build B2 G3\n\tmathochist: Finally got my brain back for a little while! (been alternating between sleeping all the time and total brain fog for the longest time)\n\n\tTrydnt: no worries! I'm in like 10 games at any one time so happy to wait for people to be ready \n\tmathochist: I'm in like 17 games right now, and officially out of time in most of them. Glad most people don't seem to mind too much. \n\nHomeworlds Online (SDG# 33995)\nVariants: "Hard time"\nStarted: 2018.4.13, Ended: 2018.4.17\nParticipants: goulo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) goulo: Homeworld R1 B3 G3\n\tgoulo: hi, have fun!\n\n3) Trydnt: Build G1 Trydnt\n\tTrydnt: you too!\n\n4) goulo: Build G1 Goulo\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) goulo: Build G1 Goulo\n\n7) Trydnt: Build R1 Trydnt\n\n8) goulo: Trade G1 Y1 Goulo\n\n9) Trydnt: Build G1 Trydnt\n\n10) goulo: Build Y1 Goulo\n\n11) Trydnt: Build R2 Trydnt\n\n12) goulo: Build Y2 Goulo\n\n13) Trydnt: Trade R2 Y2 Trydnt\n\n14) goulo: Discover Y1 Goulo Y2 Flava\n\n15) Trydnt: Discover Y2 Trydnt G3 G3\n\n16) goulo: Build Y3 Goulo\n\n17) Trydnt: Build Y3 G3\n\n18) goulo: Trade Y2 R2 Goulo\n\n19) Trydnt: Build R2 Trydnt\n\n20) goulo: Build R2 Goulo\n\n21) Trydnt: Sacrifice Y3 G3\nMove R1 Trydnt G3\nMove R1 G3 Flava\nMove R1 Flava Goulo\nCatastrophe Goulo R\n\n22) goulo: Trade Y1 R1 Goulo\n\n23) Trydnt: Trade G1 B1 Trydnt\n\n24) goulo: Sacrifice G3 Goulo\nBuild Y1 Flava\nBuild Y2 Goulo\nBuild Y3 Goulo\n\n25) Trydnt: Build Y3 G3\n\n26) goulo: Trade Y3 G3 Goulo\n\n27) Trydnt: Build B1 Trydnt\n\n28) goulo: Trade Y2 R2 Goulo\n\n29) Trydnt: Move B1 Trydnt G3\n\n30) goulo: Discover Y1 Flava B3 Bluega\n\n31) Trydnt: Build B1 Trydnt\n\n\tgoulo: I can't see anyway to save my homeworld! Thanks for the game.\n\tTrydnt: you could have sacrificed your y3 to send your yellows into my g3 star but that may have just delayed the inevitable. good game!\n\nHomeworlds Online (SDG# 33994)\nStarted: 2018.4.13, Ended: 2018.4.18\nParticipants: mathochist (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld G2 B1 Y3\n\n2) mathochist: Homeworld B2 Y3 G3\n\tBabamots: Good luck!\n\n3) Babamots: Build Y1 Babamots\n\tmathochist: you too!\n\n4) mathochist: Build G1 Mathochist\n\n5) Babamots: Build Y1 Babamots\n\n6) mathochist: Build G1 Mathochist\n\n7) Babamots: Trade Y1 G1 Babamots\n\n8) mathochist: Trade G1 Y1 Mathochist\n\n9) Babamots: Trade Y1 B1 Babamots\n\n10) mathochist: Build Y1 Mathochist\n\n11) Babamots: Build B1 Babamots\n\n12) mathochist: Trade Y1 R1 Mathochist\n\n13) Babamots: Build Y1 Babamots\n\n14) mathochist: Build R1 Mathochist\n\n15) Babamots: Trade Y1 R1 Babamots\n\n16) mathochist: Trade G3 B3 Mathochist\n\n17) Babamots: Build R2 Babamots\n\n18) mathochist: Discover R1 Mathochist Y1 George\n\n19) Babamots: Discover B1 Babamots G3 Ferenginar\n\n20) mathochist: Build R2 Mathochist\n\n21) Babamots: Build B2 Ferenginar\n\n22) mathochist: Move R2 Mathochist George\n\n23) Babamots: Build B2 Babamots\n\n24) mathochist: Move R2 George Ferenginar\n\n25) Babamots: Sacrifice R1 Babamots\nAttack R2S Ferenginar\n\n26) mathochist: Build G1 Mathochist\n\n27) Babamots: Build B3 Ferenginar\n\n28) mathochist: Build G2 Mathochist\n\n29) Babamots: Trade B3 Y3 Ferenginar\n\n30) mathochist: Discover G2 Mathochist Y1 Bob\n\n31) Babamots: Build Y2 Babamots\n\n32) mathochist: Discover Y1 Mathochist R1 Fred\n\n33) Babamots: Move B2 Ferenginar Fred\n\n34) mathochist: Trade B3 R3 Mathochist\n\tBabamots: Looks like your system name theme is common English boys' names. Is that right? \n\tmathochist: I suppose so :) I think I take the simplest names so I don't risk decision paralysis.\n\n35) Babamots: Attack Y1S Fred\n\tmathochist: I made a mistake or two early on and I think all I can do now is delay the inevitable.\n\n36) mathochist: Move G1 Mathochist Bob\n\n37) Babamots: Build Y2 Ferenginar\n\n38) mathochist: Build G2 Mathochist\n\n39) Babamots: Build Y2 Ferenginar\n\n40) mathochist: Build G3 Bob\n\tBabamots: Yeah, it's looking rough for you. I decided in a recent game that yellow is the most crushing color to monopolize.\n\n41) Babamots: Sacrifice Y2 Babamots\nMove G1 Babamots Ferenginar\nMove G1 Ferenginar Bob\nCatastrophe Bob G\n\n42) mathochist: Discover G2 Mathochist Y1 Fluffy\n\n43) Babamots: Build Y2 Babamots\n\n44) mathochist: Build G1 Fluffy\n\n45) Babamots: Build B3 Ferenginar\n\n46) mathochist: Discover G2 Fluffy B3 Moon\n\n47) Babamots: Sacrifice Y2 Babamots\nMove Y2 Ferenginar George\nMove Y2 Ferenginar Fluffy\n\n48) mathochist: Trade G2 Y2 Moon\n\n49) Babamots: Sacrifice Y3 Ferenginar\nMove Y1 Fred Mathochist\nMove Y2 Fluffy Mathochist\nMove Y2 George Mathochist\nCatastrophe Mathochist Y\n\n50) mathochist: Move Y2 Moon Babamots\n\n51) Babamots: Sacrifice Y3 Babamots\nMove B3 Ferenginar Mathochist\nMove B1 Ferenginar Mathochist\nMove B2 Fred Mathochist\nCatastrophe Mathochist B\n\tBabamots: Thanks for the game!\n\tmathochist: You, too!\r\n\r\nI considered resigning earlier, but figured I'd see how long I could drag it out instead. :)\n\tBabamots: No problem. This is hardly the easiest game on the site.\n\n\nHomeworlds Online (SDG# 33989)\nVariants: "Unrated"\nStarted: 2018.4.13, Ended: 2018.6.1\nParticipants: Babamots (S), Trydnt (N)\nWinner: Babamots\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Babamots: Homeworld G3 B1 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Babamots: Build Y1 Babamots\n\tBabamots: Good luck! I'm feeling rusty and looking for some practice.\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Babamots: Build Y2 Babamots\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Babamots: Trade Y2 G2 Babamots\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) Babamots: Trade Y1 R1 Babamots\n\tBabamots: You like creative system names I see :-P.\n\n11) Trydnt: Build G1 Trydnt\n\n12) Babamots: Discover G2 Babamots Y2 Iconia\n\n13) Trydnt: Build G1 Trydnt\n\n14) Babamots: Build G1 Iconia\n\n15) Trydnt: Trade G1 R1 Trydnt\n\n16) Babamots: Discover G2 Iconia B3 Betazed\n\n17) Trydnt: Trade G1 B1 Trydnt\n\n18) Babamots: Build G1 Betazed\n\n19) Trydnt: Build B1 Trydnt\n\n20) Babamots: Trade G1 Y1 Betazed\n\n21) Trydnt: Discover B1 Trydnt Y3 Y3\n\n22) Babamots: Sacrifice G2 Betazed\nBuild Y2 Babamots\nBuild Y3 Betazed\n\n23) Trydnt: Trade B1 G1 Y3\n\n24) Babamots: Discover Y2 Babamots B2 Kurl\n\n25) Trydnt: Sacrifice G1 Y3\nBuild Y3 G3\n\n26) Babamots: Sacrifice G1 Iconia\nBuild Y2 Kurl\n\n27) Trydnt: Build B1 Trydnt\n\n28) Babamots: Trade Y2 G2 Kurl\n\n29) Trydnt: Move B1 Trydnt G3\n\n30) Babamots: Trade Y3 B3 Betazed\n\n31) Trydnt: Discover Y2 Trydnt Y3 Y3\n\n32) Babamots: Discover B3 Betazed Y2 Bajor\n\n33) Trydnt: Discover Y1 G3 G2 G2\n\n34) Babamots: Build G1 Kurl\n\n35) Trydnt: Build G1 Trydnt\n\n36) Babamots: Trade G1 R1 Kurl\n\n37) Trydnt: Build R2 Trydnt\n\n38) Babamots: Build R2 Kurl\n\n39) Trydnt: Move Y3 G3 Kurl\n\n40) Babamots: Sacrifice G2 Kurl\nBuild R2 Kurl\nBuild R3 Babamots\n\n41) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Kurl\nAttack R2 Kurl\n\n42) Babamots: Sacrifice R3 Babamots\nAttack R2N Kurl\nAttack R2N Kurl\nPass\n\n43) Trydnt: Sacrifice Y2 Y3\nDiscover G1 Trydnt Y3 Y3\nDiscover B1 G3 Y2 Y2\n\n44) Babamots: Move R2 Kurl Y3\n\n45) Trydnt: Build R2 Trydnt\n\n46) Babamots: Build R3 Babamots\n\tBabamots: Huh, that's not what I expected at all. I'll need to come back and make a move when I can focus better.\n\n47) Trydnt: Sacrifice R2 Trydnt\nAttack Y2 Kurl\nAttack R2 Kurl\n\n48) Babamots: Attack G1 Y3\n\n49) Trydnt: Attack R1 Kurl\n\n50) Babamots: Move R3 Babamots Y2\n\n51) Trydnt: Discover B1 Y2 G1 G1\n\n52) Babamots: Move R3 Y2 G1\n\n53) Trydnt: Sacrifice B1 G1\nPass\n\n54) Babamots: Build Y2 Babamots\n\n55) Trydnt: Sacrifice Y3 Kurl\nMove Y1 G2 Babamots\nMove Y2 Kurl Babamots\nCatastrophe Babamots Y\nMove R2 Kurl Babamots\n\n56) Babamots: Sacrifice Y1 Betazed\nMove B3 Bajor Babamots\n\n57) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Babamots\nBuild R3 Kurl\nBuild R3 Trydnt\n\n58) Babamots: Sacrifice R2 Y3\nAttack R2N Babamots\nAttack R2N Babamots\n\n59) Trydnt: Trade R3 G3 Trydnt\n\n60) Babamots: Trade R2 Y2 Babamots\n\n61) Trydnt: Build R2 Trydnt\n\n62) Babamots: Build R2 G1\n\n63) Trydnt: Trade R1 Y1 Trydnt\n\n64) Babamots: Trade R2 G2 Babamots\n\n65) Trydnt: Trade R1 G1 Kurl\n\n66) Babamots: Discover G2 Babamots B2 Galorndon\n\n67) Trydnt: Build G2 Kurl\n\n68) Babamots: Build Y1 Babamots\n\n69) Trydnt: Build Y2 Trydnt\n\n70) Babamots: Discover Y1 Babamots Y2 Iconia\n\n71) Trydnt: Sacrifice Y2 Trydnt\nMove R2 Trydnt Y3\nDiscover B1 Trydnt G3 G3\n\n72) Babamots: Sacrifice G2 Galorndon\nBuild Y2 Babamots\nBuild Y3 Babamots\n\n73) Trydnt: Trade R3 Y3 Kurl\n\n74) Babamots: Sacrifice Y2 Babamots\nMove R3 G1 Y3\nMove R2 G1 G3\n\n75) Trydnt: Move R2 Y3 Kurl\n\n76) Babamots: Attack B1N G3\n\n77) Trydnt: Build Y2 Kurl\n\n78) Babamots: Build B1 G3\n\n79) Trydnt: Build R1 Kurl\n\n80) Babamots: Build B2 G3\n\n81) Trydnt: Move Y3 Kurl G3\n\n82) Babamots: Sacrifice Y3 Babamots\nMove B2 G3 Kurl\nMove B1 G3 Kurl\nMove B1 G3 Kurl\nCatastrophe Kurl B\n\n83) Trydnt: Trade Y1 R1 Trydnt\n\n84) Babamots: Sacrifice Y1 Iconia\nDiscover R2 G3 Y2 Iconia\n\n85) Trydnt: Build G1 Trydnt\n\n86) Babamots: Build G1 Y3\n\n87) Trydnt: Trade G1 B1 Trydnt\n\n88) Babamots: Build G1 Y3\n\n89) Trydnt: Move B1 Trydnt G3\n\n90) Babamots: Move G1 Y3 Trydnt\n\n91) Trydnt: Trade G3 R3 Trydnt\n\n92) Babamots: Sacrifice Y2 Babamots\nMove R3 Y3 Trydnt\nMove G1 Y3 Trydnt\n\n93) Trydnt: Sacrifice R3 Trydnt\nAttack G1 Trydnt\nAttack G1 Trydnt\nPass\n\n94) Babamots: Sacrifice R2 Iconia\nAttack R1 Trydnt\nAttack G1 Trydnt\n\n95) Trydnt: Move Y3 G3 Trydnt\n\n\tBabamots: Thanks for the game!\n\tBabamots: I'm working on organizing an online Homeworlds tournament through SDG, hopefully starting in the next couple of weeks. Do you want in?\n\tTrydnt: absolutely!\n\tBabamots: Are you in the Facebook group for Binary Homeworlds? I'll make a post in there and in some other related Facebook groups.\n\tTrydnt: Yeah I am\n\tBabamots: Alrighty, watch for an announcement fairly soon.\n\tTrydnt: will do thanks!\n\nHomeworlds Online (SDG# 33996)\nVariants: "Unrated"\nStarted: 2018.4.15, Ended: 2018.4.25\nParticipants: Trydnt (S), Broccoli_Commander (N)\nWinner: Trydnt\n\n1) Broccoli_Commander: Homeworld G3 B2 Y3\n\n2) Trydnt: Homeworld B2 R1 G3\n\n3) Broccoli_Commander: Build Y1 Broccoli_commander\n\n4) Trydnt: Build G1 Trydnt\n\n5) Broccoli_Commander: Build Y1 Broccoli_commander\n\n6) Trydnt: Build G1 Trydnt\n\n7) Broccoli_Commander: Discover Y1 Broccoli_commander Y1 Cauliflower\n\n8) Trydnt: Trade G3 Y3 Trydnt\n\n9) Broccoli_Commander: Build Y2 Broccoli_commander\n\n10) Trydnt: Build Y2 Trydnt\n\n11) Broccoli_Commander: Discover Y2 Broccoli_commander B1 Blueberry\n\n12) Trydnt: Discover Y2 Trydnt G3 G3\n\n13) Broccoli_Commander: Trade Y3 G3 Broccoli_commander\n\n14) Trydnt: Discover G1 Trydnt Y3 Y3\n\n15) Broccoli_Commander: Discover Y1 Cauliflower B3 Muffin\n\n16) Trydnt: Discover G1 Trydnt Y3 Y33\n\n17) Broccoli_Commander: Trade Y2 G2 Blueberry\n\n18) Trydnt: Build G1 Y33\n\n19) Broccoli_Commander: Build G2 Blueberry\n\n20) Trydnt: Build G2 Y3\n\n21) Broccoli_Commander: Trade G2 R2 Blueberry\n\n22) Trydnt: Discover G1 Y3 Y1 Y1\n\n23) Broccoli_Commander: Trade G3 R3 Broccoli_commander\n\n24) Trydnt: Sacrifice G1 Y33\nBuild Y2 Trydnt\n\n25) Broccoli_Commander: Sacrifice Y1 Muffin\nMove R2 Blueberry Y3\n\n26) Trydnt: Sacrifice G2 Y3\nBuild G1 Y33\nBuild Y1 G3\n\n27) Broccoli_Commander: Build Y2 Broccoli_commander\n\n28) Trydnt: Trade Y3 G3 Trydnt\n\n29) Broccoli_Commander: Build Y3 Broccoli_commander\n\n30) Trydnt: Sacrifice Y2 G3\nMove Y1 G3 Y1\nMove Y1 Y1 Broccoli_commander\nCatastrophe Broccoli_commander Y\n\n31) Broccoli_Commander: Build G2 Blueberry\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Y1\nBuild G3 Y1\nBuild G3 Y33\n\n33) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild R1 Y3\nBuild R1 Broccoli_commander\n\n34) Trydnt: Discover G2 Y1 B3 B3\n\n35) Broccoli_Commander: Move R2 Y3 Blueberry\n\n36) Trydnt: Trade G2 R2 B3\n\n37) Broccoli_Commander: Sacrifice G2 Blueberry\nBuild R2 Blueberry\nBuild R3 Y3\n\n38) Trydnt: Move G3 Y33 Trydnt\n\n39) Broccoli_Commander: Trade R2 G2 Blueberry\n\n40) Trydnt: Sacrifice G3 Y1\nBuild G2 Trydnt\nBuild G2 Y33\nBuild G3 Y1\n\n41) Broccoli_Commander: Trade R3 Y3 Broccoli_commander\n\n42) Trydnt: Build Y1 Trydnt\n\n43) Broccoli_Commander: Build Y1 Broccoli_commander\n\n44) Trydnt: Move Y1 Trydnt B3\n\n45) Broccoli_Commander: Move R1 Y3 Y1\n\n46) Trydnt: Sacrifice G3 Y1\nBuild G3 Y1\nBuild Y2 B3\nBuild Y2 B3\n\n47) Broccoli_Commander: Build R2 Blueberry\n\n48) Trydnt: Sacrifice G3 Y1\nBuild R3 B3\nBuild G3 Y1\nPass\n\n49) Broccoli_Commander: Build R3 Broccoli_commander\n\n50) Trydnt: Move R2 B3 Y1\n\n51) Broccoli_Commander: Move R1 Y1 Y33\n\n52) Trydnt: Sacrifice R2 Y1\nAttack R1 Y33\nPass\n\n53) Broccoli_Commander: Trade R1 B1 Broccoli_commander\n\n54) Trydnt: Sacrifice G3 Y1\nBuild G3 Y1\nBuild R1 Y33\nBuild R2 Y33\n\n55) Broccoli_Commander: Move Y3 Broccoli_commander Blueberry\n\n56) Trydnt: Move G1 Y1 Broccoli_commander\n\n57) Broccoli_Commander: Build B1 Broccoli_commander\n\n58) Trydnt: Sacrifice R2 Y33\nAttack B1 Broccoli_commander\nAttack B1 Broccoli_commander\n\n59) Broccoli_Commander: Sacrifice R2 Blueberry\nAttack B1 Broccoli_commander\nAttack B1 Broccoli_commander\n\n60) Trydnt: Sacrifice G2 Y33\nBuild G2 Broccoli_commander\nBuild R2 B3\n\n61) Broccoli_Commander: Build R2 Blueberry\n\n62) Trydnt: Trade G2 B2 Broccoli_commander\nCatastrophe Broccoli_commander B\n\n63) Broccoli_Commander: Sacrifice Y3 Blueberry\nMove R2 Blueberry B3\nMove R2 Blueberry B3\nMove G2 Blueberry Y33\nCatastrophe B3 R\n\n64) Trydnt: Sacrifice G3 Y1\nBuild G2 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild Y1 Trydnt\nCatastrophe Broccoli_commander G\n\n\tBroccoli_Commander: You had a very clean game since the beginning. I never had a chance.\r\nWell played, thanks for the game!\n\nHomeworlds Online (SDG# 34025)\nStarted: 2018.4.15, Ended: 2019.5.26\nParticipants: jbarton680 (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: H Y1 B2 G3\n\n2) jbarton680: Homeworld Y1 B2 G3\n\n3) dragon76n: B G1 Dragon76n\n\n4) jbarton680: Build G1 Jbarton680\n\n5) dragon76n: T G1 Y1 Dragon76n\n\n\tdragon76n: Still your turn here on HomeWorlds... \n\tdragon76n: Are you ready to try out HomeWorlds yet?\n\nHomeworlds Online (SDG# 33920)\nStarted: 2018.4.15, Ended: 2018.5.13\nParticipants: Trydnt (S), mathochist (N)\nWinner: Trydnt\n\n1) mathochist: Homeworld B1 G2 Y3\n\n2) Trydnt: Homeworld G3 R2 B3\n\n3) mathochist: Build Y1 Mathochist\n\n4) Trydnt: Build B1 Trydnt\n\n5) mathochist: Trade Y1 G1 Mathochist\n\n6) Trydnt: Build B1 Trydnt\n\n7) mathochist: Build G1 Mathochist\n\n8) Trydnt: Trade B3 Y3 Trydnt\n\n9) mathochist: Discover G1 Mathochist Y3 Nomoon\n\n10) Trydnt: Build B2 Trydnt\n\n11) mathochist: Build Y1 Mathochist\n\n12) Trydnt: Discover B2 Trydnt Y1 Y1\n\n13) mathochist: Build G1 Nomoon\n\n14) Trydnt: Trade B2 G2 Y1\n\n15) mathochist: Discover G1 Nomoon Y1 Superstar\n\n16) Trydnt: Build Y2 Trydnt\n\n17) mathochist: Build Y2 Mathochist\n\n18) Trydnt: Sacrifice Y3 Trydnt\nMove Y2 Trydnt Y1\nMove Y2 Y1 Nomoon\nMove Y2 Nomoon Mathochist\nCatastrophe Mathochist Y\n\n19) mathochist: Build G2 Superstar\n\n20) Trydnt: Build G3 Y1\n\n21) mathochist: Build G3 Mathochist\n\n22) Trydnt: Build B2 Trydnt\n\n23) mathochist: Trade G1 Y1 Mathochist\n\n24) Trydnt: Trade B2 Y2 Trydnt\n\n25) mathochist: Build Y2 Mathochist\n\n26) Trydnt: Discover G2 Y1 Y3 Y3\n\n27) mathochist: Trade Y1 R1 Mathochist\n\n28) Trydnt: Build G1 Y3\n\n29) mathochist: Sacrifice G3 Mathochist\nBuild R1 Mathochist\nBuild Y1 Mathochist\nBuild G3 Nomoon\n\n30) Trydnt: Sacrifice G2 Y3\nBuild Y2 Trydnt\nBuild Y3 Trydnt\n\n31) mathochist: Trade Y2 B2 Mathochist\n\n32) Trydnt: Build G2 Y1\n\n33) mathochist: Sacrifice G3 Nomoon\nBuild G3 Nomoon\nBuild Y2 Mathochist\nBuild R1 Mathochist\n\n34) Trydnt: Trade Y2 R2 Trydnt\n\n35) mathochist: Build Y2 Mathochist\n\n36) Trydnt: Sacrifice Y2 Trydnt\nMove G3 Y1 Nomoon\nMove G3 Nomoon Mathochist\n\n37) mathochist: Sacrifice Y2 Mathochist\nMove G1 Superstar Trydnt\nMove G2 Superstar Trydnt\n\n38) Trydnt: Sacrifice R2 Trydnt\nAttack B2 Mathochist\nAttack Y2 Mathochist\n\n39) mathochist: Sacrifice G1 Nomoon\nBuild G1 Trydnt\nCatastrophe Trydnt Green\n\n40) Trydnt: Sacrifice B2 Mathochist\nTrade Y2 R2 Mathochist\nCatastrophe Mathochist R\nTrade G3 R3 Mathochist\n\n\tmathochist: Huh, the rules as linked here say catastrophes have to happen at end of turn. I know it's an older version of the rules, but I thought it was in use here. Might have affected my play in a different game if I'd realized. Interesting\n\nHomeworlds Online (SDG# 34037)\nVariants: "Unrated"\nStarted: 2018.4.16, Ended: 2018.4.28\nParticipants: Nico (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld B1 Y2 G3\n\n2) Nico: Homeworld B2 G3 R3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) Nico: Build R1 Nico\n\n5) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n6) Nico: Trade R1 Y1 Nico\n\n7) Broccoli_Commander: Build R1 Broccoli_commander\n\n8) Nico: Build R1 Nico\n\n9) Broccoli_Commander: Discover R1 Broccoli_commander Y3 Cauliflowrr\n\n10) Nico: B Y1 Nico\n\n11) Broccoli_Commander: Build R2 Broccoli_commander\n\n12) Nico: Discover Y1 Nico Y1 Colibris\n\n13) Broccoli_Commander: Build G1 Broccoli_commander\n\n14) Nico: Build Y2 Nico\n\n15) Broccoli_Commander: Discover R2 Broccoli_commander Y3 Banana\n\n\nHomeworlds Online (SDG# 33948)\nVariants: "Hard time"\nStarted: 2018.4.17, Ended: 2018.4.24\nParticipants: Broccoli_Commander (S), wil (N)\nWinner: Broccoli_Commander\n\n1) wil: Homeworld B2 Y1 G3\n\n2) Broccoli_Commander: Homeworld Y1 G3 Y3 *\n\n3) wil: Build G1 Wil\n\tBroccoli_Commander: Good game sir!\n\tBroccoli_Commander: I am playing trydnt, he is playing a very tight game. He is definitely going to win\n\twil: We played probably 15-20 live games per week for months...he's a smart kid...and better online than in real life..that part I can't figure out.\n\n4) Broccoli_Commander: Build Y1 Broccoli_commander\n\twil: Instant freezeout....yikes.\n\n5) wil: Discover G1 Wil Y3 Y3\n\tBroccoli_Commander: Yep, wanted to see what happens! No idea if it will work out.\n\tBroccoli_Commander: Although I'm pretty sure I tried it before hahaha\n\n6) Broccoli_Commander: Discover Y1 Broccoli_commander G2 Lettuce\n\n7) wil: Build G1 Y3\n\n8) Broccoli_Commander: Build Y2 Lettuce\n\tBroccoli_Commander: Could not bear the wrong name\n\n9) wil: Build G1 Wil\n\twil: easily understandable.\n\n10) Broccoli_Commander: Discover Y2 Lettuce B3 Blueberry\n\n11) wil: Build G2 Wil\n\n12) Broccoli_Commander: Build Y2 Lettuce\n\n13) wil: Trade G2 Y2 Wil\n\n14) Broccoli_Commander: Build Y3 Lettuce\n\n15) wil: Discover G1 Y3 G2 G2\n\n16) Broccoli_Commander: Move Y3 Lettuce Blueberry\n\n17) wil: S G3 Wil\nBuild G2 G2\nBuild G3 Y3\nBuild G3 Wil\n\n18) Broccoli_Commander: Trade Y3 R3 Blueberry\n\n19) wil: Trade G1 R1 Wil\n\n20) Broccoli_Commander: Build Y3 Lettuce\n\n21) wil: Sacrifice G3 Y3\nBuild G1 Wil\nBuild R1 Wil\nBuild G3 Y3\n\n22) Broccoli_Commander: Move Y2 Lettuce Blueberry\n\n23) wil: Discover Y2 Wil B3 B3\n\n24) Broccoli_Commander: Trade Y2 B2 Blueberry\n\n25) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild Y2 B3\nBuild R1 Wil\n\n26) Broccoli_Commander: Sacrifice B2 Blueberry\nTrade Y3 R3 Lettuce\nTrade Y3 B3 Broccoli_commander\n\n27) wil: Discover Y2 B3 B2 B2\n\n28) Broccoli_Commander: Build Y3 Lettuce\n\n29) wil: Sacrifice G2 G2\nBuild G2 G2\nBuild Y3 B3\n\n30) Broccoli_Commander: Build R2 Lettuce\n\n31) wil: Trade Y3 R3 B3\n\n32) Broccoli_Commander: Sacrifice Y3 Lettuce\nMove R3 Blueberry Lettuce\nMove R3 Lettuce Y3\nMove R3 Lettuce B3\n\n33) wil: Sacrifice R1 Wil\nAttack R3 Y3\n\twil: quaking like an aspen..\n\n34) Broccoli_Commander: Sacrifice R2 Lettuce\nAttack R3 B3\nAttack Y2 B3\n\tBroccoli_Commander: I'd say the game can really go either way. It's funny because it's possible to counter my yellow freeze out by getting a y3 yourself and I thought I would get a bigger lead since you did not... but in the end I'm pretty impressed by the position you are in. You are ahead in several aspects. Interesting!\n\tBroccoli_Commander: Plus I definitely learnt new idioms with you :)\n\n35) wil: Sacrifice G3 Wil\nBuild R1 Wil\nBuild G3 Wil\nBuild Y3 B2\n\n36) Broccoli_Commander: Move R3 B3 G2\n\tBroccoli_Commander: I have so lost in fact...\n\n37) wil: Move Y3 B2 Blueberry\n\twil: this looks a lot like a trade.\n\twil: I thought you were gonna run right in on me...\n\n38) Broccoli_Commander: Build Y3 Lettuce\n\tBroccoli_Commander: Yeah well.. it will end up badly for my crops I fear!\n\n39) wil: Sacrifice R1 Wil\nAttack Y2 Blueberry\n\n40) Broccoli_Commander: Attack G2 G2\n\n41) wil: Move R3 Y3 B2\n\twil: slowly...I almost took both your R3s out...\n\tBroccoli_Commander: Yeah why didn't you?\n\n42) Broccoli_Commander: Sacrifice G2 G2\nBuild B1 Broccoli_commander\nBuild B1 Broccoli_commander\n\twil: there is a price, and I missed the op in order for other plan\n\n43) wil: Sacrifice G3 Wil\nBuild G2 G2\nBuild G3 Wil\nBuild R1 B2\n\n44) Broccoli_Commander: Move B1 Broccoli_commander Lettuce\n\n45) wil: Build R2 Wil\n\n46) Broccoli_Commander: Attack G2 G2\n\n47) wil: Move G1 Y3 G2\nCatastrophe G2 G\n\n48) Broccoli_Commander: Move R3 B3 Lettuce\n\n49) wil: Move R1 Wil Blueberry\n\n50) Broccoli_Commander: Build B1 Lettuce\n\n51) wil: Move G1 Wil Blueberry\n\twil: scorched earth policy enacted.\n\twil: tried a four person team HW game the other night. quit after two hours... Not as bad as one night were a two person game for a medal with Andy lasted FOUR hours...and no medal...(although he got one the next game which lasted about a half hour)\n\n52) Broccoli_Commander: Build B2 Broccoli_commander\n\n53) wil: Build R2 Blueberry\n\twil: You went and moved him!\n\n54) Broccoli_Commander: Build R2 Lettuce\n\n55) wil: Trade R1 G1 B2\n\n56) Broccoli_Commander: Trade B3 R3 Broccoli_commander\n\n57) wil: Move R2 Blueberry Lettuce\n\n58) Broccoli_Commander: Sacrifice R2 Lettuce\nAttack R2 Lettuce\nPass\n\n59) wil: Sacrifice G3 Y3\nBuild R1 Blueberry\nBuild R2 B2\nBuild Y3 B2\n\n60) Broccoli_Commander: Build B3 Broccoli_commander\n\n61) wil: Build G1 Wil\n\n62) Broccoli_Commander: Move B3 Broccoli_commander B2\n\n63) wil: Sacrifice Y2 B2\nMove Y3 B2 B3\nMove R3 B2 B3\n\n64) Broccoli_Commander: Move Y2 B3 B2\n\n65) wil: Sacrifice Y2 Blueberry\nMove R1 Blueberry Lettuce\nMove R1 Blueberry Lettuce\nCatastrophe Lettuce R\n\n66) Broccoli_Commander: Trade B2 R2 Broccoli_commander\n\n67) wil: Discover R3 B3 Y2 Y2\n\n68) Broccoli_Commander: Sacrifice R2 Broccoli_commander\nAttack R2 B2\nAttack G1 B2\n\n69) wil: Build G2 Blueberry\n\n70) Broccoli_Commander: Build Y2 B2\n\tBroccoli_Commander: Erg what a blunder.\r\nWon't win a medal like that. Won't even last four hours (which must be quite exhausting).\r\n\n\n71) wil: Move G1 Blueberry Y2\n\twil: lol, i think most medals have been won when Andy made a blunder\n\n72) Broccoli_Commander: Trade B3 G3 B2\n\n73) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild G3 Wil\nBuild R1 Y2\n\n74) Broccoli_Commander: Sacrifice G3 B2\nBuild G3 B2\nBuild B2 Broccoli_commander\nBuild B3 Lettuce\n\n75) wil: Move R1 Wil Blueberry\n\n76) Broccoli_Commander: Trade B3 R3 Lettuce\n\n77) wil: Trade G3 B3 Wil\n\n78) Broccoli_Commander: Discover B1 Lettuce G3 Pes\n\n79) wil: Move Y3 B3 Wil\n\n80) Broccoli_Commander: Sacrifice Y3 Lettuce\nMove B1 Lettuce Pes\nMove B1 Pes Wil\nMove B1 Pes Wil\nCatastrophe Wil B\n\n81) wil: Build Y3 Blueberry\n\n82) Broccoli_Commander: Sacrifice Y2 B2\nMove Y2 B2 Wil\nMove Y1 Lettuce Wil\nCatastrophe Wil Y\n\n\tBroccoli_Commander: Heh you were playing too late in the night or too early!\r\nI'm surprised by how it turned out.\r\n\r\nThanks for the game!\n\nHomeworlds Online (SDG# 34044)\nVariants: "Hard time"\nStarted: 2018.4.17, Ended: 2018.5.22\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld B2 Y3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ts52: Build Y2 Ts52\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) ts52: Discover Y2 Ts52 G1 Kermit\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y3 Trydnt\nBuild Y3 G3\n\n12) ts52: Discover Y1 Ts52 G1 Robin\n\n13) Trydnt: Sacrifice Y2 G3\nDiscover Y2 Trydnt B3 B3\nDiscover Y1 G3 G1 G1\n\n14) ts52: Build Y2 Robin\n\n15) Trydnt: Trade Y2 R2 B3\n\n16) ts52: Build G2 Ts52\n\n17) Trydnt: Build Y2 G1\n\n18) ts52: Trade G2 R2 Ts52\n\n19) Trydnt: Move Y3 G3 Robin\n\n20) ts52: Sacrifice Y2 Robin\nDiscover Y1 Robin B3 Gonzo\nMove Y2 Kermit Gonzo\n\n21) Trydnt: Trade Y3 R3 Trydnt\n\n22) ts52: Trade Y1 G1 Gonzo\n\n23) Trydnt: Move Y3 Robin Gonzo\n\tTrydnt: that was terrible. I should have made the first move\n\n24) ts52: Discover G1 Gonzo B1 Grover\n\n25) Trydnt: Sacrifice R2 B3\nAttack Y2 Gonzo\nPass\n\n26) ts52: Build G1 Ts52\n\n27) Trydnt: Trade Y2 R2 Gonzo\n\n28) ts52: Build G2 Grover\n\n29) Trydnt: Trade R3 G3 Trydnt\n\n30) ts52: Build G2 Grover\n\n31) Trydnt: Move Y3 Gonzo Grover\n\n32) ts52: Discover G1 Ts52 B1 Cookie\n\n33) Trydnt: Sacrifice R2 Gonzo\nAttack G2 Grover\nAttack G2 Grover\n\n34) ts52: Build G2 Grover\nCatastrophe Grover G\n\n35) Trydnt: Discover Y1 G1 B3 B3\n\n36) ts52: Build R1 Ts52\n\n37) Trydnt: Trade Y1 R1 B3\n\n38) ts52: Move R2 Ts52 Cookie\n\n39) Trydnt: Build Y1 G1\n\n40) ts52: Build R1 Cookie\n\n41) Trydnt: Build Y1 G1\n\n42) ts52: Trade R2 Y2 Cookie\n\n43) Trydnt: Move Y3 Grover B3\n\n\tts52: Crap. Sorry about that. Lost track of the fact that it was my turn somehow. ):\n\nHomeworlds Online (SDG# 33914)\nVariants: "Unrated"\nStarted: 2018.4.18, Ended: 2018.4.23\nParticipants: BoredMan (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) BoredMan: Homeworld B3 Y2 G3\n\tBoredMan: Damn can't figure out how to make a move.\n\tdlwillson: Try: h b3 y2 g3\r\n\r\nH means home, then two available pyramids for stars, then one more available pyramid for your first ship.\n\n3) dlwillson: B G1 Dlwillson\n\n\tdlwillson: The only sensible move is: b g1 boredman\n\tBoredMan: ok it's the first time I play this game as well :D\n\tdlwillson: Well, have fun! It's my thousandth, or so. I love this game. There's a strategy guide around somewhere. My most highly recommended opponents are Felix and Wil.\n\tBoredMan: Hmm if I type in "b g1" is says the sytem doesn't exist.\n\tdlwillson: Read the recognized commands section of this page.\r\n\r\nYou have to specify which system you want to build the g1 in.\n\nHomeworlds Online (SDG# 33990)\nVariants: "Unrated"\nStarted: 2018.4.18, Ended: 2018.4.23\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n2) wil: Homeworld Y2 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\twil: until I get out of this tourney game, I have only room for one on my slate...\n\n4) wil: Build G1 Wil\n\tTrydnt: haha fair enough. I'll have to get in on the next tournament\n\twil: hopefullly one will start up about a month after this one ends... The next one may take a year or more! perfect\r\n\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: Build Y2 Wil\n\n9) Trydnt: Trade Y1 B1 Trydnt\n\n10) wil: Discover Y1 Wil B3 B3\n\n11) Trydnt: Build B1 Trydnt\n\n12) wil: Sacrifice G3 Wil\nBuild Y1 B3\nBuild Y3 B3\nBuild Y3 Wil\n\n13) Trydnt: Discover Y2 Trydnt G2 G2\n\n14) wil: Move Y1 B3 G2\n\n15) Trydnt: Discover Y2 G2 G3 G3\n\n16) wil: Move Y2 Wil G3\n\n17) Trydnt: Build Y3 G3\n\n18) wil: Move Y1 G2 G3\nCatastrophe G3 Y\n\twil: yeah I'm lookin at you!\r\n\n\twil: Hey YOU!\n\n19) Trydnt: Discover B1 Trydnt Y2 Y2\n\n20) wil: Trade Y3 G3 B3\n\n21) Trydnt: Build B2 Trydnt\n\n22) wil: Sacrifice G3 B3\nBuild Y1 B3\nBuild Y2 B3\nBuild Y3 Wil\n\n23) Trydnt: Discover B2 Trydnt G2 G2\n\n24) wil: Trade Y3 G3 Wil\n\n25) Trydnt: Build B2 G2\n\n26) wil: Trade Y3 B3 Wil\n\n27) Trydnt: Build B2 Trydnt\n\n28) wil: Discover Y1 B3 G2 Gtoo\n\n29) Trydnt: Sacrifice B2 G2\nTrade B1 R1 Trydnt\nTrade B1 R1 Y2\n\n30) wil: Sacrifice G3 Wil\nBuild Y3 B3\nBuild Y3 Gtoo\nBuild Y3 Gtoo\n\n31) Trydnt: Move G3 Trydnt Gtoo\n\n32) wil: Sacrifice Y3 B3\nMove Y3 Gtoo Trydnt\nDiscover Y3 Gtoo G3 G3\nDiscover Y1 Gtoo R3 R3\n\n33) Trydnt: Sacrifice B2 Trydnt\nTrade G3 Y3 Gtoo\nTrade R1 B1 Y2\n\n34) wil: Trade Y3 R3 Trydnt\n\n35) Trydnt: Sacrifice Y3 Gtoo\nDiscover B1 Y2 Y3 Y3\nMove B2 G2 Y3\nMove B1 Y3 Wil\n\tTrydnt: I don't know what I was trying to do\n\n36) wil: Attack R1 Trydnt\n\n\tTrydnt: thrusters failed just short of mission completion\n\twil: hate that\n\nHomeworlds Online (SDG# 34050)\nVariants: "Unrated"\nStarted: 2018.4.18, Ended: 2018.4.18\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34041)\nVariants: "Hard time"\nStarted: 2018.4.18, Ended: 2018.4.18\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 R1 B3\n\n\nHomeworlds Online (SDG# 34058)\nVariants: "Hard time"\nStarted: 2018.4.20, Ended: 2018.4.26\nParticipants: Felix (S), wil (N)\nWinner: Felix\n\n1) wil: H B2 R1 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\n3) wil: Build G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: Build G1 Wil\n\twil: This is a practice game for our next three!\n\n6) Felix: Build G2 Felix\n\tFelix: Hehe. Good luck!\n\n7) wil: Trade G1 Y1 Wil\n\n8) Felix: Trade G2 Y2 Felix\n\n9) wil: Trade G1 R1 Wil\n\n10) Felix: T G1 R1 Felix\n\n11) wil: Build R2 Wil\n\n12) Felix: B R2 Felix\n\n13) wil: Trade R2 G2 Wil\n\n14) Felix: Discover R2 Felix B2 Grunge\n\n15) wil: Discover R1 Wil G3 G3\n\n16) Felix: Sacrifice G3 Felix\nBuild R2 Grunge\nBuild R2 Felix\nBuild R3 Felix\n\n17) wil: Discover Y1 Wil G3 Gee3\n\n18) Felix: Trade R2 G2 Felix\n\n19) wil: Build Y1 Gee3\n\n20) Felix: Trade R2 Y2 Grunge\n\n21) wil: Build Y2 Gee3\n\n22) Felix: Move Y2 Grunge Gee3\nCatastrophe Gee3 Yellow\n\n23) wil: Build G1 Wil\n\n24) Felix: B G1 Felix\n\n25) wil: Trade G2 Y2 Wil\n\n26) Felix: Move G2 Felix Grunge\n\n27) wil: Build R2 G3\n\n28) Felix: Build R2 Grunge\n\n29) wil: Trade G1 Y1 Wil\n\n30) Felix: Discover R1 Felix B2 Joy\n\n31) wil: Discover Y2 Wil R3 R3\n\n32) Felix: Build R3 Felix\n\n33) wil: Build Y1 Wil\n\n34) Felix: Move Y2 Felix Grunge\n\n35) wil: Discover Y1 Wil B3 B3\n\n36) Felix: Trade R3 B3 Felix\n\n37) wil: Sacrifice G3 Wil\nBuild Y2 R3\nBuild Y3 B3\nBuild Y3 Wil\n\n38) Felix: Build R3 Felix\n\n39) wil: Trade Y3 G3 Wil\n\n40) Felix: Trade R3 Y3 Felix\n\n41) wil: Trade Y3 R3 B3\n\n42) Felix: Build Y3 Grunge\n\n43) wil: Build Y3 Wil\n\n44) Felix: Trade Y3 G3 Grunge\n\n45) wil: Discover G3 Wil Y3 Y3\n\n46) Felix: Move B3 Felix Grunge\n\n47) wil: Trade Y1 G1 Wil\n\n48) Felix: M B3 Grunge R3\n\n49) wil: Sacrifice Y2 R3\nMove Y2 R3 Grunge\nMove Y2 Grunge G3\n\n50) Felix: Sacrifice G2 Grunge\nBuild B1 R3\nBuild B1 R3\n\n51) wil: Build G1 Wil\n\n52) Felix: Sacrifice Y3 Felix\nMove B1 R3 Wil\nMove B1 R3 Wil\nMove B3 R3 Wil\nCatastrophe Wil Blue\n\n53) wil: Sacrifice Y2 G3\nMove R1 G3 Grunge\nMove R2 G3 Grunge\nCatastrophe Grunge R\n\twil: oops...this is the end...\n\twil: I can't stop it...might as well delay a tad\n\n54) Felix: Build R1 Felix\n\n\twil: good game, we can forgo the forgone conclusion I suppose. It will be interesting to see the final games between you and babamot! (I'm supposing that is where it will go.)\n\tFelix: Thank you! Always a good game with you. And I dunno... I think you could give him a run for his money. We shall see!\n\twil: That we will (see that is)... but if i have it right, if I beat him, then I have to beat you. (so we both have one loss) and THEN we play two out of three for the final. all so daunting! It has been incredibly fun thou and I'm so ready to start another round robin with three times as many players soon after it completes. A guaranteed way to stay in regular games!\n\nHomeworlds Online (SDG# 34059)\nStarted: 2018.4.20, Ended: 2018.6.15\nParticipants: deanthebean (S), Felix (N)\nWinner: deanthebean\n\n1) Felix: Homeworld B2 R3 G3\n\n2) deanthebean: Homeworld R1 B2 G3\n\tFelix: Hello again :) Have fun!\n\n3) Felix: Build G1 Felix\n\tdeanthebean: Thanks! I won a game so I decided to come back for some punishment :P\n\n4) deanthebean: Build G1 Deanthebean\n\n5) Felix: Trade G1 Y1 Felix\n\tFelix: Haha, you give me too much credit!\n\n6) deanthebean: Build G1 Deanthebean\n\n7) Felix: B Y1 Felix\n\n8) deanthebean: Trade G1 Y1 Deanthebean\n\n9) Felix: B Y2 Felix\n\n10) deanthebean: Build Y2 Deanthebean\n\n11) Felix: Discover Y1 Felix B1 Out\n\tFelix: Your last move was a mistake, I'm afraid. You might want to take it back and re-do it. Since you have four yellows in your system, I can simply call catastrophe on my turn and destroy them...\n\tdeanthebean: Thanks. Very sporting of you. I obviously didn't read the rules carefully enough. I assumed you had to have at least one ship in the system to trigger the catastrophe but of course I had no good reason for assuming that! \n\n12) deanthebean: Trade Y1 R1 Deanthebean\n\n13) Felix: T Y1 B1 Felix\n\tFelix: No problem! It would definitely make sense to think that you would need your own ship in the system to call a catastrophe, but no, either player can call a catastrophe in any overpopulated system at any point during their turn. There are definitely a lot of rules to keep in mind with this game!\n\n14) deanthebean: Build Y1 Deanthebean\n\tdeanthebean: Yeah. It's not that complicated but some of the rules are unintuitive. \n\n15) Felix: Build Y1 Felix\n\n16) deanthebean: Trade Y1 B1 Deanthebean\n\n17) Felix: Discover B1 Felix G1 Joy\n\n18) deanthebean: Build R1 Deanthebean\n\n19) Felix: Build B2 Joy\n\n20) deanthebean: Discover B1 Deanthebean G3 Euoi\n\n21) Felix: Move Y1 Felix Joy\n\n22) deanthebean: Build B3 Euoi\n\n23) Felix: Discover B1 Joy R3 Rim\n\n24) deanthebean: Move G3 Deanthebean Rim\n\n25) Felix: Build B3 Joy\n\n26) deanthebean: Attack B1 Rim\n\n27) Felix: Move B2 Joy Rim\n\n28) deanthebean: Attack B2 Rim\n\n29) Felix: Build B3 Joy\n\n30) deanthebean: Sacrifice Y2 Deanthebean\nMove B1 Rim Joy\nMove B1 Euoi Joy\nCatastrophe Joy Blue\n\n31) Felix: Build Y1 Joy\n\tdeanthebean: Was there a catch? \n\n32) deanthebean: Trade B2 Y2 Rim\n\tFelix: Not exactly. I just wanted to build that b3 :)\n\n33) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Out\nBuild Y3 Felix\n\n34) deanthebean: Build Y3 Rim\n\n35) Felix: S Y2 Felix\nM Y1 Joy Rim\nM Y1 Out Rim\nC Rim Yellow\n\n36) deanthebean: Trade R1 Y1 Deanthebean\n\n37) Felix: Trade Y3 G3 Felix\n\n38) deanthebean: Build B1 Euoi\n\n39) Felix: Build Y1 Felix\n\n40) deanthebean: Build Y2 Deanthebean\n\n41) Felix: D Y3 Out B3 Ramp\n\n42) deanthebean: Sacrifice Y1 Deanthebean\nMove G3 Rim Deanthebean\n\n43) Felix: B Y1 Joy\n\n44) deanthebean: Trade B3 Y3 Euoi\n\n45) Felix: Build G1 Felix\n\n46) deanthebean: Sacrifice G3 Deanthebean\nBuild Y2 Euoi\nBuild Y3 Deanthebean\nBuild G2 Deanthebean\n\n47) Felix: Discover G1 Felix B1 Grump\n\n48) deanthebean: Build B1 Euoi\n\n49) Felix: Build G2 Felix\n\n50) deanthebean: Discover G1 Deanthebean B3 Lieu\n\n51) Felix: Trade G2 R2 Felix\n\n52) deanthebean: Build G2 Lieu\n\n53) Felix: Trade Y2 B2 Felix\n\n54) deanthebean: Build B3 Euoi\n\n55) Felix: Discover Y1 Joy G3 Bazoik\n\n56) deanthebean: Trade G2 Y2 Lieu\n\n57) Felix: Discover Y1 Joy R3 Sputz\n\n58) deanthebean: Move Y2 Deanthebean Sputz\n\n59) Felix: Move Y1 Sputz Grump\n\n60) deanthebean: Move R1 Deanthebean Bazoik\n\n61) Felix: Sacrifice R2 Felix\nAttack R1 Bazoik\nPass\n\n62) deanthebean: Trade G1 R1 Lieu\n\n63) Felix: B R2 Bazoik\n\n64) deanthebean: Trade B3 R3 Euoi\n\tdeanthebean: Ah! I should have seen that coming but anyway, nice tactic. \n\n65) Felix: D B2 Felix G1 Zipcord\n\n66) deanthebean: Move R3 Euoi Zipcord\n\n67) Felix: Sacrifice Y3 Ramp\nMove B2 Zipcord Bazoik\nMove R1 Bazoik Deanthebean\nMove R2 Bazoik Deanthebean\n\n68) deanthebean: Attack R2 Deanthebean\n\n69) Felix: S G1 Grump\nB R2 Deanthebean\nC Deanthebean Red\n\n70) deanthebean: Build Y3 Deanthebean\n\n71) Felix: B B3 Bazoik\n\n72) deanthebean: Move B1 Euoi Zipcord\n\n73) Felix: M Y1 Grump Deanthebean\n\n74) deanthebean: Move Y3 Deanthebean Zipcord\n\n75) Felix: D B2 Bazoik G1 Glint\n\n76) deanthebean: Move Y3 Zipcord Bazoik\n\n77) Felix: T Y1 B1 Deanthebean\n\n78) deanthebean: Sacrifice R3 Zipcord\nAttack B3 Bazoik\nAttack Y1 Bazoik\nAttack B1 Deanthebean\n\n79) Felix: B B3 Glint\n\n80) deanthebean: Move B1 Euoi Glint\n\n81) Felix: Trade B2 R2 Glint\n\n82) deanthebean: Build B2 Glint\n\n83) Felix: Attack B2 Glint\n\n84) deanthebean: Move B1 Deanthebean Glint\nCatastrophe Glint Blue\n\n85) Felix: B Y1 Felix\n\n86) deanthebean: Move Y3 Bazoik Glint\n\n87) Felix: S Y1 Felix\nM R2 Glint Felix\n\n88) deanthebean: Build Y1 Glint\n\n89) Felix: M R2 Felix Zipcord\n\n90) deanthebean: Move Y3 Euoi Zipcord\n\n91) Felix: Attack B1 Zipcord\n\n92) deanthebean: Sacrifice R1 Lieu\nAttack R2 Zipcord\n\n93) Felix: Build G1 Felix\n\n94) deanthebean: Build G2 Deanthebean\n\n95) Felix: Sacrifice B1 Zipcord\nTrade G1 B1 Felix\n\n96) deanthebean: Build R1 Zipcord\n\n97) Felix: Build G1 Felix\n\n98) deanthebean: Build G2 Deanthebean\n\n99) Felix: Build B1 Felix\n\n100) deanthebean: Build R1 Zipcord\n\tFelix: You've got me in a pickle!\n\n101) Felix: Discover B1 Felix R1 Hope\n\n102) deanthebean: Move B3 Bazoik Hope\n\tdeanthebean: :)\n\n103) Felix: Sacrifice G3 Felix\nBuild B1 Hope\nBuild B2 Hope\nBuild B3 Felix\nCatastrophe Hope Blue\n\n104) deanthebean: Trade G2 B2 Deanthebean\n\n105) Felix: Discover Y1 Felix B1 Grin\n\n106) deanthebean: Sacrifice Y2 Sputz\nMove B2 Deanthebean Grin\nMove B2 Grin Felix\nCatastrophe Felix Blue\n\n107) Felix: Build G2 Felix\n\n108) deanthebean: Sacrifice Y3 Zipcord\nMove R2 Zipcord Felix\nMove R1 Zipcord Felix\nMove R1 Zipcord Felix\nCatastrophe Felix Red\n\n\tFelix: Very well executed! Great game :)\n\tdeanthebean: Thanks and thanks for not simply trigerring the catastrophe earlier when I built the 4th yellow. I've joined the homeworlds ladder so hopefully I'll get the chance to challenge you in that soon. \n\tFelix: I hope to see you at the top soon! You genuinely played very well this game, after that early mistake with the overpopulation. And feel free to challenge me any time, ladder or no!\n\nHomeworlds Online (SDG# 34061)\nStarted: 2018.4.20, Ended: 2018.5.21\nParticipants: Chivenger (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 Y3 G3\n\tChivenger: homeworld G2S B1S\n\n2) Chivenger: Homeworld G2 B1 Y3\n\tChivenger: First game here and of Homeworlds. Be gentle please. \r\n\n\n3) Felix: Build G1 Felix\n\n4) Chivenger: Build Y1 Chivenger\n\tFelix: No worries! I'm happy to help you learn. But the best way to learn is to lose a bunch of games and learn from mistakes! Let me know if you have any questions or want any tips along the way though.\n\n5) Felix: Trade G1 B1 Felix\n\tChivenger: So my Green only lets me build Yellow despite having Blue and Green in my Homeworld?\r\n\n\n6) Chivenger: Pass\n\tFelix: That's correct. You have to already have a ship of a color in a system before you can build that color.\n\tChivenger: So I don't "own" the ships in my galaxy to discover a new planet. Can you do one so I can see how that is supposed to work?\r\n\n\tChivenger: And I can't trade the 3Y for a 3G? \n\n7) Felix: Pass\n\tFelix: Just type "discover y1 [star color/size] [star name]" \r\nSo "discover y1 g3 DeathStar" for instance.\n\n8) Chivenger: Discover Y1 Chivenger G3 Deathstar\n\n9) Felix: B G1 Felix\n\n10) Chivenger: Trade Y3 G3 Chivenger\n\n11) Felix: Trade G1 Y1 Felix\n\tChivenger: Ooh. Got that command right in the first try. \n\n12) Chivenger: Build G1 Chivenger\n\tFelix: Well done! :)\n\n13) Felix: Build Y1 Felix\n\n14) Chivenger: Build Y2 Deathstar\n\n15) Felix: Discover Y1 Felix G1 Out\n\n16) Chivenger: Trade G1 R1 Chivenger\n\n17) Felix: Build Y2 Out\n\n18) Chivenger: Move Y2 Deathstar Chivenger\n\tChivenger: Added a second Y2 and that makes three your 1Y makes four and bad things happen\r\n\n\tFelix: That's exactly right. You're catching on :)\n\n19) Felix: Build B1 Felix\n\n20) Chivenger: Trade Y2 R2 Chivenger\n\n21) Felix: Move Y1 Out Felix\n\n22) Chivenger: Trade R2 Y2 Chivenger\n\tChivenger: And I am seeing why Andy Looney likes this game so much. There is a LOT going on. \n\n23) Felix: Trade Y1 R1 Felix\n\tFelix: You haven't seen anything yet! And piece of advice... it's not usually beneficial to trade a color out of your system. Now you don't have yellow in your home system anymore, which is dangerous\r\n\n\tChivenger: Yeah. Noticed that and yeah gave up a couple ships behind now.\n\n24) Chivenger: Build Y1 Chivenger\n\n25) Felix: Trade B1 R1 Felix\n\n26) Chivenger: Build R2 Chivenger\n\tChivenger: So the blue in my homeworld doesn't count to build a blue? \n\tFelix: Nope. You must already have a ship of a certain color in order to build another.\n\n27) Felix: Build Y2 Out\n\n28) Chivenger: Build Y3 Deathstar\n\n29) Felix: Move R1 Felix Out\n\n30) Chivenger: Move R2 Chivenger Deathstar\n\n31) Felix: M Y2 Out Deathstar\n\n32) Chivenger: Move Y3 Deathstar Out\n\n33) Felix: S R1 Out\nA R2 Deathstar\n\n34) Chivenger: Build R1 Chivenger\n\n35) Felix: Attack Y1 Deathstar\n\tChivenger: Almost missed that for an easy attack. That would have been a Catastrophe, literally.\n\n36) Chivenger: Sacrifice R1 Chivenger\nAttack Y2N Out\n\tFelix: Good catch!\n\tChivenger: So you sacrifice the R1 and that lets you flip my R2? New lesson.\n\n37) Felix: Move Y1 Deathstar Chivenger\n\tFelix: Yep. It's one of the sneaky moves you can do in this. I'm hoping you will learn something things in this game!\n\n38) Chivenger: Sacrifice Y2 Chivenger\nMove Y3 Out Deathstar\nMove R1 Chivenger Deathstar\n\n39) Felix: Attack R1 Deathstar\n\tChivenger: Ah Ha. Need a ship in the system to do that. Okay. What's next Obi-Won?\n\n40) Chivenger: Pass\n\tFelix: I dunno. We'll see what kinds of situations pop up!\n\n41) Felix: Sacrifice Y1 Chivenger\nPass\n\tChivenger: Not ideal. But it keeps the Catastrophe off the board. \n\n42) Chivenger: Build Y1 Out\n\tChivenger: The Y3 blunts the attack on R1, right?\n\tFelix: No, I'm afraid not. I can still attack your r1, but I just can't attack your y3\n\n43) Felix: Move R2 Deathstar Out\n\tChivenger: So at this point I feel I am pretty far behind and no way to recover. Is there a point to continue this? Any suggestions?\n\n44) Chivenger: Move Y3 Deathstar Chivenger\n\n45) Felix: Build Y2 Deathstar\n\tFelix: It is not as bad as you think. I'd try to trade for a red ship so you can use your y3 to regain some ships. I will take a useless turn to keep this going :)\n\n46) Chivenger: Sacrifice Y2 Out\nMove Y1 Out Deathstar\nMove Y1 Chivenger Deathstar\nCatastrophe Deathstar Yellow\n\tChivenger: Okay. Got in a couple live games over thr weekend. If you have a winning shot take it. We can just play again.\n\n47) Felix: Build B1 Felix\n\tFelix: Sounds good! If you're tired of this game, feel free to resign and we can start another\n\n48) Chivenger: Build Y1 Chivenger\n\n49) Felix: Move B1 Felix Out\n\n50) Chivenger: Build Y1 Chivenger\n\n51) Felix: Sacrifice G3 Felix\nBuild B2 Out\nBuild B2 Out\nBuild B3 Felix\n\tFelix: Good play!\n\tChivenger: Thanks. A friend of mine and I got in some live games at a con over the weekend and we have been playing another game here. It's a fun damn game. I am learning defense but have to learn to layer my offense better. \n\n52) Chivenger: Trade Y1 R1 Chivenger\n\n53) Felix: Trade B2 Y2 Out\n\tFelix: It definitely takes a while to grasp offense. It's all about expanding your fleet and diversifying colors as much as possible so you have more attack options\n\n54) Chivenger: Move Y3 Chivenger Deathstar\n\n55) Felix: Trade B3 G3 Felix\n\n56) Chivenger: Build R2 Chivenger\n\tChivenger: Apologies. I forgot we had a game going.\n\n57) Felix: Build R2 Felix\n\tFelix: No prob! I kinda did too, haha\n\n58) Chivenger: Sacrifice R1 Chivenger\nAttack R1 Deathstar\n\n59) Felix: Build B2 Out\n\n60) Chivenger: Build R1 Deathstar\n\n61) Felix: Discover B2 Out B3 Rom\n\n62) Chivenger: Build R3 Chivenger\n\n63) Felix: Sacrifice G3 Felix\nBuild B3 Felix\nBuild B3 Rom\nBuild R3 Out\n\n64) Chivenger: Sacrifice Y3 Deathstar\nMove R1 Deathstar Out\nMove R1 Deathstar Out\nDiscover R3 Chivenger Y3 Yavin\nCatastrophe Out Red\n\n65) Felix: T B3 G3 Rom\n\n66) Chivenger: Move R3 Yavin Out\n\n67) Felix: Sacrifice Y2 Out\nMove B2 Out Rom\nDiscover B1 Out G3 Scan\n\n68) Chivenger: Build R1 Out\n\n69) Felix: Build B3 Scan\n\tFelix: Two very large moves!\n\n70) Chivenger: Build Y1 Chivenger\n\n71) Felix: Trade B3 Y3 Scan\n\n72) Chivenger: Discover Y1 Chivenger B3 In\n\n73) Felix: Trade B2 Y2 Rom\n\n74) Chivenger: Discover Y1 In G1 Inagain\n\n75) Felix: B B2 Scan\n\n76) Chivenger: Build Y2 Inagain\n\n77) Felix: Sacrifice G3 Rom\nBuild Y2 Scan\nBuild Y3 Rom\nBuild B3 Scan\n\n78) Chivenger: Sacrifice Y2 Inagain\nMove Y1 Inagain Scan\nMove Y1 Chivenger Scan\nCatastrophe Scan Yellow\n\n79) Felix: Trade B3 G3 Felix\n\n80) Chivenger: Build R1 Chivenger\n\n81) Felix: Build B3 Felix\n\n82) Chivenger: Trade R2 Y2 Chivenger\n\tChivenger: This is interesting. Really learning a lot here. Thanks for the game. \n\n83) Felix: Move R1 Felix Out\n\n84) Chivenger: Sacrifice Y2 Chivenger\nMove R3 Out Rom\nMove G3 Chivenger Rom\n\tFelix: No problem! I'm glad you're learning things. I think you can see that controlling blue can become very important.\n\tChivenger: Absolutely. Controlling any color can be critical if you can monopolize it. \n\n85) Felix: Sacrifice R2 Felix\nAttack R3 Rom\nAttack G3 Rom\n\tFelix: Definitely, but blue especially, since without blue, you can't trade and it's very hard to expand or diversify\n\n\tFelix: Oops! Good thought, but sacrificing a red 2 allows for multiple attacks!\n\tChivenger: No, I saw that. I was out of good options. So it was a matter of the least bad options.I think at this point this one has gotten out of hand. If you want another game, send a challenge. But with the holiday weekend, it may take some time to get on track. \r\n\n\tFelix: No worries. I'm about to have a baby and move house, so I'm tied up now anyway. But thanks for the game! \n\nHomeworlds Online (SDG# 34076)\nVariants: "Hard time"\nStarted: 2018.4.21, Ended: 2018.5.3\nParticipants: Aristos (S), Broccoli_Commander (N)\nWinner: Broccoli_Commander\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) Aristos: Homeworld B3 G2 Y3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\tAristos: The Gods said unto Aristos, "Build an ark large enough to hold all the people and animals of the world, but small enough to sail in the sky." And Aristos, leader of his people said, "How about we compromise at a Y3?" And the Gods said, "Good enough." And so it was that the Aristos Nation lifted itself above all others and so imposed its will upon the land that the world itself became known as Aristos thereafter.\r\n-- from "The Aristos Dawn"\n\n4) Aristos: Build Y1 Aristos\n\tAristos: build y1 Aristos\n\n5) Broccoli_Commander: Build G1 Broccoli_commander\n\tAristos: (doh... typed in wrong box!)\n\n6) Aristos: Discover Y1 Aristos Y1 Glint\n\tBroccoli_Commander: My vegetables will feed from your dawn, harnessing your nascent power with the chlorophyll of the broccoli family. Vitamins will prevail.\r\nAll of your base are belong to us. \n\n7) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower\n\tAristos: "Strange tidings, Councilors," said the head of the Aristos SETI Project. "We have detected artificial signals within interstellar e-waves. We have no idea what they mean, but they are clearly artificial."\r\n"Let us sail upon the black to other stars and see if we can find the source! What is the nearest star to us?"\r\n"We call it 'Glint,'"\r\n"Then that shall be our destination."\r\n--- from "The Aristos Dawn"\n\n8) Aristos: Build Y2 Aristos\n\n9) Broccoli_Commander: Build G1 Broccoli_commander\n\n10) Aristos: Trade Y2 G2 Aristos\n\n11) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\tAristos: As they explored the black, the Aristos realized they might need to construct ships far from the shipyards of homeworld. So they conceived a mighty mobile factory. And, being Aristos, to conceive the idea was to achieve the idea.\r\n-- from "The Aristos Dawn"\n\n12) Aristos: Build Y2 Aristos\n\n13) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G2 Cauliflower\nBuild G3 Blueberry\nBuild G3 Broccoli_commander\n\n14) Aristos: Build G3 Aristos\n\tBroccoli_Commander: My roots are growing at an exponential rate. Green sprouts are colonizing all known systems. You will soon find yourself suffocating among a dense forest. Once the flower blossom and the fruits ripe, you will have no choice but to strenghten out seeds.\n\n15) Broccoli_Commander: Trade G3 Y3 Blueberry\n\n16) Aristos: Move G3 Aristos Glint\n\n17) Broccoli_Commander: Build G3 Blueberry\n\n18) Aristos: Sacrifice G2 Aristos\nBuild G2 Glint\nBuild Y2 Aristos\n\n19) Broccoli_Commander: Trade G3 R3 Blueberry\n\n20) Aristos: Trade Y2 R2 Aristos\n\n21) Broccoli_Commander: Sacrifice G3 Broccoli_commander\nBuild G3 Broccoli_commander\nBuild G3 Blueberry\nBuild Y2 Blueberry\n\n22) Aristos: Discover G2 Glint B3 Brilliance\n\tAristos: And after generations of peace in space, that ancient art of War did lift itself from the terrestrial plane. The Aristos fought amongst themselves until the great warship, The Antithesis, was built by one of the factions. Cowed by this great weapon, the people of Aristos were united once again under one banner, a peace enforced at the tip of a sword. \r\n--- from "The Aristos Day", book 2 of the Great Chronicle\n\n23) Broccoli_Commander: Trade G1 R1 Broccoli_commander\n\n24) Aristos: Build G1 Brilliance\n\n25) Broccoli_Commander: Sacrifice G3 Blueberry\nBuild G3 Blueberry\nBuild R1 Blueberry\nBuild R1 Broccoli_commander\n\n26) Aristos: Discover Y1 Glint B2 Shine\n\n27) Broccoli_Commander: Move Y3 Blueberry Shine\n\n28) Aristos: Sacrifice G3 Glint\nBuild Y1 Shine\nBuild Y2 Shine\nBuild R2 Aristos\nCatastrophe Shine Yellow\n\n29) Broccoli_Commander: Discover G2 Cauliflower B1 Muffin\n\n\tAristos: good game\n\nHomeworlds Online (SDG# 34060)\nVariants: "Unrated"\nStarted: 2018.4.22, Ended: 2018.5.25\nParticipants: Felix (S), mathochist (N)\nWinner: Felix\n\n1) mathochist: Homeworld G1 B2 Y3\n\n2) Felix: H B2 R3 G3\n\n3) mathochist: Build Y1 Mathochist\n\tFelix: Hey, good luck and have fun!\n\tmathochist: you too!\r\n\n\n4) Felix: Build G1 Felix\n\n5) mathochist: Build Y1 Mathochist\n\n6) Felix: Trade G1 Y1 Felix\n\n7) mathochist: Trade Y1 G1 Mathochist\n\n8) Felix: Build G1 Felix\n\n9) mathochist: Build G2 Mathochist\n\n10) Felix: Discover G1 Felix B1 Out\n\n11) mathochist: Discover G1 Mathochist Y3 Cleo\n\n12) Felix: Build G2 Out\n\n13) mathochist: Sacrifice G2 Mathochist\nBuild G2 Cleo\nBuild Y1 Mathochist\n\tmathochist: Give me a few hours, please? Been a busy week and I had guests this afternoon. sorry. \n\n14) Felix: Build Y2 Felix\n\n15) mathochist: Trade Y1 R1 Mathochist\n\tFelix: Of course. YOu can take as long as you need to make any moves\n\n16) Felix: Move Y1 Felix Out\n\n17) mathochist: Move Y1 Mathochist Cleo\n\n18) Felix: Discover G1 Out B3 Womp\n\n19) mathochist: Discover G1 Cleo B1 Twinkle\n\n20) Felix: Build G2 Felix\n\n\nHomeworlds Online (SDG# 34089)\nStarted: 2018.4.25, Ended: 2018.4.25\nParticipants: JimmyMike (S), nateynate (N)\nWinner: JimmyMike\n\n1) nateynate: Homeworld G1 B2 Y3\n\n2) JimmyMike: Homeworld G2 Y1 B3\n\tJimmyMike: homeworld g3 y1 b2\n\n3) nateynate: Discover Y3 Nateynate R3 Farawat\n\n\nHomeworlds Online (SDG# 34090)\nStarted: 2018.4.25, Ended: 2018.4.26\nParticipants: JimmyMike (S), nateynate (N)\nWinner: JimmyMike\n\n1) nateynate: Homeworld G3 B2 Y3\n\n2) JimmyMike: Homeworld Y3 G1 B3\n\n3) nateynate: Build Y1 Nateynate\n\n4) JimmyMike: Build B1 Jimmymike\n\n5) nateynate: Trade Y3 G3 Nateynate\n\n6) JimmyMike: Trade B3 R3 Jimmymike\n\n7) nateynate: Discover G3 Nateynate R1 Farawat\n\n8) JimmyMike: Discover R3 Jimmymike G2 Tuqlose\n\n9) nateynate: Build G1 Farawat R1\n\n10) JimmyMike: Build B1 Jimmymike\n\n11) nateynate: Build Y1 Nateynate\n\n12) JimmyMike: Trade B1 Y1 Jimmymike\n\n13) nateynate: Discover Y1 Nateynate B1 Runnamoq\n\n14) JimmyMike: Move Y1 Jimmymike Tuqlose\n\n15) nateynate: Build Y2 Nateynate\n\n16) JimmyMike: Build B1 Jimmymike\n\n17) nateynate: Build G1 Farawat\n\n18) JimmyMike: Build B2 Jimmymike\n\n19) nateynate: Move Y1 Nateynate Farawat\n\n20) JimmyMike: Trade B2 R2 Jimmymike\n\tnateynate: I did a thing!\n\n21) nateynate: Discover Y1 Farawat R2 Blunderbuss\n\tJimmyMike: As did I!\n\tnateynate: We apologize for the poor performance, this is our first time playing!\n\n22) JimmyMike: Discover R3 Tuqlose Y3 Onno\n\n23) nateynate: Build Y2 Nateynate\n\n24) JimmyMike: Build B2 Jimmymike\n\n25) nateynate: Build Y2 Nateynate\n\n26) JimmyMike: Trade B2 R2 Jimmymike\n\n27) nateynate: Move Y2 Nateynate Runnamoq\n\n28) JimmyMike: Build Y3 Tuqlose\n\n29) nateynate: Move Y2 Nateynate Farawat\n\n30) JimmyMike: Move Y1 Tuqlose Farawat\n\n31) nateynate: Attack Y1 Farawat\n\n32) JimmyMike: Move R2 Jimmymike Tuqlose\n\n33) nateynate: Trade Y2 B2 Runnamoq\n\n34) JimmyMike: Move R2 Tuqlose Onno\n\n35) nateynate: Move B2 Runnamoq Blunderbuss\n\n36) JimmyMike: Trade R2 G2 Jimmymike\n\n37) nateynate: Move B2 Blunderbuss Farawat\n\n38) JimmyMike: Discover R3 Onno R1 La Treve\n\n39) nateynate: Trade G3 R3 Farawat\n\n40) JimmyMike: Move Y3 Tuqlose La\n\n41) nateynate: Move R3 Farawat Nateynate\n\n42) JimmyMike: Move R2 Onno Runnamoq\n\n43) nateynate: Build R1 Nateynate\n\n44) JimmyMike: Attack Y1N Runnamoq\n\n45) nateynate: Build R2 Nateynate\n\n46) JimmyMike: Move R3 La Blunderbuss\n\n47) nateynate: Sacrifice Y2 Farawat\nMove R3 Nateynate Farawat\nMove R3 Farawat Blunderbuss\n\n48) JimmyMike: Attack R3N Blunderbuss\n\n49) nateynate: Build R3 Nateynate\n\n50) JimmyMike: Attack Y1 Blunderbuss\n\n51) nateynate: Move R3 Nateynate La\n\n52) JimmyMike: Attack R3 La\n\n\nHomeworlds Online (SDG# 34097)\nStarted: 2018.4.26, Ended: 2018.5.14\nParticipants: JimmyMike (S), nateynate (N)\nWinner: JimmyMike\n\n1) nateynate: Homeworld R3 B1 G3\n\n2) JimmyMike: Homeworld G2 Y3 B3\n\n3) nateynate: Build G1 Nateynate\n\n4) JimmyMike: Build B1 Jimmymike\n\n5) nateynate: Trade G1 Y1 Nateynate\n\n6) JimmyMike: Trade B3 R3 Jimmymike\n\n7) nateynate: Discover G3 Nateynate B2 Entropie\n\n8) JimmyMike: Build R1 Jimmymike\n\n9) nateynate: Build G1 Entropie\n\n10) JimmyMike: Build B1 Jimmymike\n\n11) nateynate: Trade G3 R3 Entropie\n\n12) JimmyMike: Build B2 Jimmymike\n\n13) nateynate: Build G1 Entropie\n\n14) JimmyMike: Discover B2 Jimmymike R1 Miscake\n\n15) nateynate: Trade G1 Y1 Entropie\n\n16) JimmyMike: Build B2 Jimmymike\n\n17) nateynate: Build G1 Entropie\n\n18) JimmyMike: Move B2 Jimmymike Miscake\n\n19) nateynate: Move G1 Entropie Nateynate\n\n20) JimmyMike: Build B3 Jimmymike\n\n21) nateynate: Build R1 Entropie\n\n22) JimmyMike: Move R3 Jimmymike Miscake\n\n23) nateynate: Build R2 Entropie\n\n24) JimmyMike: Build R2 Jimmymike\n\n25) nateynate: Trade R1 G1 Entropie\n\n26) JimmyMike: Trade B2 R2 Miscake\n\n27) nateynate: Trade R2 B2 Entropie\n\n28) JimmyMike: Trade B1 Y1 Jimmymike\n\n29) nateynate: Build Y2 Entropie\n\n30) JimmyMike: Trade B2 Y2 Miscake\n\n31) nateynate: Discover G1 Entropie R1 Arewon\n\n32) JimmyMike: Discover R2 Miscake Y2 Wyetu\n\n33) nateynate: Build G2 Nateynate\n\n34) JimmyMike: Build Y3 Jimmymike\n\n35) nateynate: Build Y3 Nateynate\n\n36) JimmyMike: Move B3 Jimmymike Miscake\n\n37) nateynate: Trade G2 R2 Nateynate\n\n38) JimmyMike: Discover R3 Miscake G2 Gitou\n\n39) nateynate: Sacrifice Y2 Entropie\nMove B2 Entropie Arewon\nMove Y1 Entropie Arewon\n\n40) JimmyMike: Move Y1 Jimmymike Miscake\n\n41) nateynate: Build Y2 Nateynate\n\n42) JimmyMike: Build B1 Jimmymike\n\n43) nateynate: Trade Y2 B2 Nateynate\n\n44) JimmyMike: Move B1 Jimmymike Miscake\n\n45) nateynate: Build B3 Nateynate\n\n46) JimmyMike: Sacrifice Y2 Miscake\nMove B1 Miscake Wyetu\nMove B1 Wyetu Nateynate\nCatastrophe Nateynate Blue\n\n47) nateynate: Move B2 Arewon Nateynate\n\n48) JimmyMike: Move Y1 Miscake Gitou\n\n49) nateynate: Build Y2 Arewon\n\n50) JimmyMike: Build Y2 Gitou\n\n51) nateynate: Sacrifice Y3 Nateynate\nMove Y2 Arewon Jimmymike\nMove Y1 Arewon Jimmymike\nCatastrophe Jimmymike Yellow\nPass\n\n52) JimmyMike: Build B1 Jimmymike\n\n53) nateynate: Build G2 Arewon\n\n54) JimmyMike: Sacrifice Y2 Gitou\nMove R2 Wyetu Nateynate\nMove R3 Gitou Nateynate\nCatastrophe Nateynate Red\n\n\nHomeworlds Online (SDG# 34096)\nVariants: "Hard time"\nStarted: 2018.4.27, Ended: 2018.5.25\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: Pass\n\n2) Draw5PlayAll: Pass\n\n3) Felix: Homeworld Y1 B2 G3\n\n4) Draw5PlayAll: Homeworld B3 R1 G3\n\n5) Felix: Build G1 Felix\n\tFelix: Fair enough.\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) Felix: Trade G1 R1 Felix\n\n8) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n9) Felix: Build R2 Felix\n\n10) Draw5PlayAll: Build R2 Draw5playall\n\n11) Felix: Discover R2 Felix B3 Rim\n\n12) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n13) Felix: Build R2 Felix\n\n14) Draw5PlayAll: Discover R1 Draw5playall G2 G2\n\n15) Felix: D R2 Felix B3 Out\n\n16) Draw5PlayAll: Build Y1 Draw5playall\n\n17) Felix: Build G1 Felix\n\tDraw5PlayAll: Then you sac and steal the reds.\n\n18) Draw5PlayAll: Move Y2 Draw5playall G2\n\n19) Felix: Sacrifice G3 Felix\nBuild R2 Out\nBuild R3 Rim\nBuild R3 Felix\n\n20) Draw5PlayAll: Build R3 G2\n\n21) Felix: T R3 G3 Rim\n\tFelix: No, NOW I do that. And that g1 makes all the difference :)\n\n22) Draw5PlayAll: Build Y1 G2\n\n23) Felix: B R3 Rim\n\n24) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y2 G2\nBuild Y3 Draw5playall\n\n25) Felix: Trade R3 Y3 Rim\n\n26) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n27) Felix: B R3 Rim\n\n28) Draw5PlayAll: Build G1 Draw5playall\n\n29) Felix: B Y2 Rim\n\n30) Draw5PlayAll: Sacrifice Y2 G2\nMove Y2 G2 Rim\nMove Y1 G2 Rim\nCatastrophe Rim Yellow\n\n31) Felix: Trade R3 Y3 Rim\n\n32) Draw5PlayAll: Move Y1 Draw5playall G2\n\n33) Felix: B R3 Rim\n\n34) Draw5PlayAll: Build Y1 Draw5playall\n\n35) Felix: Build Y2 Rim\n\n36) Draw5PlayAll: Build Y2 G2\n\n37) Felix: Discover R3 Rim Y2 Point\n\n38) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n39) Felix: Sacrifice Y2 Rim\nMove R2 Out G2\nMove R2 Out G2\nCatastrophe G2 Red\n\n40) Draw5PlayAll: Build Y1 Draw5playall\n\n41) Felix: Sacrifice Y3 Rim\nMove G3 Rim Point\nMove G3 Point Draw5playall\nMove R3 Point Draw5playall\n\n\tFelix: Good game!\n\nHomeworlds Online (SDG# 34048)\nVariants: "Unrated"\nStarted: 2018.4.28, Ended: 2018.5.21\nParticipants: dlwillson (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) dlwillson: H R3 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) dlwillson: B G1 Dlwillson\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) dlwillson: Build G1 Dlwillson\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) dlwillson: Discover G1 Dlwillson B1 Sea\n\n11) Draw5PlayAll: Discover B1 Draw5playall G2 Enter\n\n12) dlwillson: B G1 Dlwillson\n\tDraw5PlayAll: As in, press enter to continue.\n\n13) Draw5PlayAll: Build B1 Enter\n\tdlwillson: Hm...\n\n14) dlwillson: Discover G1 Dlwillson Y1 Sol\n\tDraw5PlayAll: Then click on the ship, select "build", and then press enter.\r\n\r\nThis should be the actual interface on SDG... typing commands is hard.\n\tdlwillson: Yeah, I keep wondering how long until someone makes a better, more mousey, Homeworlds interface.\n\n15) Draw5PlayAll: Build Y2 Draw5playall\n\n16) dlwillson: Build G1 Dlwillson\n\n17) Draw5PlayAll: Move Y2 Draw5playall Enter\n\n18) dlwillson: M G1 Sol Enter\n\n19) Draw5PlayAll: Discover B1 Enter G3 Ctrl\n\n20) dlwillson: S G3 Dlwillson\nB G2 Enter\nB G2 Enter\nB G3 Dlwillson\nC Enter G\n\n21) Draw5PlayAll: Build B1 Ctrl\n\n22) dlwillson: Build G1 Dlwillson\n\n23) Draw5PlayAll: Build B2 Ctrl\n\n24) dlwillson: D G1 Dlwillson Y1 Sol\n\n25) Draw5PlayAll: Build G2 Draw5playall\n\n26) dlwillson: S G3 Dlwillson\nB G2 Sol\nB G2 Sea\nB G3 Dlwillson\n\n27) Draw5PlayAll: Trade B2 Y2 Ctrl\n\n28) dlwillson: T G2 Y2 Sea\n\n29) Draw5PlayAll: Build B2 Ctrl\n\n\nHomeworlds Online (SDG# 34103)\nStarted: 2018.4.29, Ended: 2018.5.2\nParticipants: ladybugsfly (S), Chivenger (N)\nWinner: ladybugsfly\n\n1) Chivenger: Homeworld Y1 B2 G3\n\n2) ladybugsfly: Homeworld G3 Y2 B3\n\n3) Chivenger: Build G1 Chivenger\n\n4) ladybugsfly: Build B1 Ladybugsfly\n\n5) Chivenger: Build G1 Chivenger\n\n6) ladybugsfly: Discover B1 Ladybugsfly G1 Frodo\n\n7) Chivenger: Trade G1 B1 Chivenger\n\n8) ladybugsfly: Build B1 Frodo\n\n9) Chivenger: Build B2 Chivenger\n\n10) ladybugsfly: Trade B1 Y1 Frodo\n\n11) Chivenger: Discover B2 Chivenger G3 Bilbo\n\n12) ladybugsfly: Build Y1 Frodo\n\n13) Chivenger: Build B1 Bilbo\n\n14) ladybugsfly: Build Y2 Frodo\n\n15) Chivenger: Trade B2 Y2 Bilbo\n\n16) ladybugsfly: Move Y1 Frodo Bilbo\n\n17) Chivenger: Build B2 Bilbo\n\n18) ladybugsfly: Trade Y2 G2 Frodo\n\tChivenger: Nice got that third yellow out of there\r\n\n\n19) Chivenger: Trade B2 R2 Bilbo\n\tladybugsfly: You’ve done a nice job putting me on the defensive, or at least being solely reactionary from the beginning.\n\n20) ladybugsfly: Sacrifice G2 Frodo\nBuild Y2 Bilbo\nBuild Y3 Frodo\n\n21) Chivenger: Move Y2 Bilbo Frodo\n\n22) ladybugsfly: Trade Y3 R3 Frodo\n\tChivenger: Almost missed that one. \n\n23) Chivenger: Attack Y2 Bilbo\n\n24) ladybugsfly: Move Y1 Bilbo Chivenger\n\n25) Chivenger: Build Y3 Bilbo\n\n26) ladybugsfly: Trade Y1 G1 Chivenger\n\n27) Chivenger: Sacrifice Y2 Frodo\nMove G1 Chivenger Bilbo\nMove R2 Bilbo Chivenger\n\n28) ladybugsfly: Discover B1 Frodo Y3 Pippin\n\n29) Chivenger: Trade Y3 R3 Bilbo\n\tChivenger: Did that mess with you just a bit? \n\tladybugsfly: Shut me down quite nicely. *high five*\n\n30) ladybugsfly: Sacrifice G1 Chivenger\nBuild B2 Pippin\n\n31) Chivenger: Sacrifice Y2 Bilbo\nMove R3 Bilbo Frodo\nMove R3 Frodo Ladybugsfly\n\n32) ladybugsfly: Sacrifice R3 Frodo\nAttack R3 Ladybugsfly\nPass\nPass\n\n33) Chivenger: Build B2 Bilbo\n\n34) ladybugsfly: Build Y1 Frodo\n\tChivenger: Wah. Sorry had quite the evening. Thought I had it\r\n But forgot the sacrifice. Again. But at least you had to spend your r3\n\n35) Chivenger: Build B3 Bilbo\n\tladybugsfly: No worries, play by mail can mean games over days. Yeah, having a red anywhere on the board is a threat. That’s why your other red ship at home still keeps you defended.\n\n36) ladybugsfly: Build B3 Ladybugsfly\n\n37) Chivenger: Trade B3 Y3 Bilbo\n\n38) ladybugsfly: Trade B3 Y3 Ladybugsfly\n\n39) Chivenger: Discover B2 Bilbo G1 Gollum\n\n40) ladybugsfly: Build Y2 Frodo\n\n41) Chivenger: Build B3 Gollum\n\tladybugsfly: Great minds think alike!\n\n42) ladybugsfly: Discover Y2 Frodo B3 Merry\n\tChivenger: Those Yellow Threes are a big threat as well. \n\n43) Chivenger: Sacrifice Y3 Bilbo\nMove B2 Gollum Pippin\nMove B1 Chivenger Pippin\nMove R2 Chivenger Merry\nCatastrophe Pippin Blue\n\n44) ladybugsfly: Move Y2 Merry Chivenger\n\tChivenger: Not the most aggressive move. But it works, I think. \r\n\n\n45) Chivenger: Build G2 Bilbo\n\tladybugsfly: You’re snatching up all my ways into your base. Had to claim one to be safe.\n\n46) ladybugsfly: Trade Y2 G2 Chivenger\n\tChivenger: There. That looks much better, much simpler. Were you holding back those two blue to be polite or did you have something else planned to take both pieces out at the same time?\n\n47) Chivenger: Trade G1 R1 Bilbo\n\n48) ladybugsfly: Discover G2 Chivenger Y3 Samwise\n\tChivenger: Uh oh. \n\tladybugsfly: I was waiting for a 1-2 punch with blue and yellow. My yellow wasn’t ready.\n\n49) Chivenger: Build R1 Bilbo\n\n50) ladybugsfly: Build G1 Samwise\n\n51) Chivenger: Trade G2 Y2 Bilbo\n\n52) ladybugsfly: Build G2 Samwise\n\n53) Chivenger: Sacrifice Y2 Bilbo\nMove R2 Merry Chivenger\nMove B3 Gollum Samwise\n\n54) ladybugsfly: Discover Y1 Frodo B3 Smeagol\n\n55) Chivenger: Sacrifice R1 Bilbo\nAttack G2 Samwise\n\n56) ladybugsfly: Sacrifice G2 Samwise\nBuild Y2 Smeagol\nBuild Y2 Frodo\n\n57) Chivenger: Trade B3 Y3 Samwise\n\n58) ladybugsfly: Sacrifice Y3 Ladybugsfly\nMove G1 Samwise Frodo\nMove Y1 Smeagol Chivenger\nMove Y2 Smeagol Chivenger\n\n59) Chivenger: Sacrifice Y3 Samwise\nMove R1 Bilbo Frodo\nMove B1 Bilbo Frodo\nMove G2 Samwise Frodo\n\n60) ladybugsfly: Sacrifice R3 Ladybugsfly\nAttack G2 Frodo\nAttack B1 Frodo\nAttack R1 Frodo\n\n61) Chivenger: Attack Y2 Chivenger\n\tChivenger: No. You may NOT have all the Yellow. \n\n62) ladybugsfly: Sacrifice Y2 Frodo\nDiscover Y1 Frodo B3 Baggins\nMove Y1 Baggins Chivenger\nCatastrophe Chivenger Y\n\tladybugsfly: Not waiting for a 1-2 punch this time.\n\n63) Chivenger: Build G1 Chivenger\n\n64) ladybugsfly: Trade G1 B1 Frodo\n\tChivenger: Glad I saw that move from two segments away. Now I feel better. You?\n\tChivenger: Guessing you can still discover and move, right? So not so helpful after all. \n\n65) Chivenger: Trade G1 Y1 Chivenger\n\tladybugsfly: Wasn’t the plan, but had to be offensive to be defensive.\n\tChivenger: Oops. Didn't see that coming. Now I am in trouble. \n\n66) ladybugsfly: Trade G2 Y2 Frodo\n\tChivenger: Query, if I have two ships in a sector, can I sacrifice an R3 make two attacks, then make that third attack with one of the two ships?\n\tladybugsfly: When you sacrifice a ship, that ship is destroyed and can’t use that power, but any other ship in the system can use the sacrificed power any number of times available.\n\tladybugsfly: To directly answer the question, no, because the r3 couldn’t have made the first attack. You can only have attacked with a ship size you already have, meaning you can’t acquire something bigger to use the third attack with.\n\n67) Chivenger: Build R1 Chivenger\n\n68) ladybugsfly: Build B1 Frodo\n\tChivenger: The R3 was just providing the attacks. I had two other ships to make the attacks. My question was if one of the other two ships could make a second attack or if it was one ship make three successive attacks. \n\n69) Chivenger: Trade R2 Y2 Chivenger\n\tChivenger: It really is an elegant game. Not quite sure of the endgame here But I look forward to seeing it and \n\n70) ladybugsfly: Move B1 Frodo Chivenger\n\tladybugsfly: Oh, yup! One ship can totally make all three.\n\n71) Chivenger: Trade G3 R3 Chivenger\n\n72) ladybugsfly: Sacrifice Y2 Frodo\nMove B1 Frodo Chivenger\nMove B1 Frodo Chivenger\nCatastrophe Chivenger B\n\n\nHomeworlds Online (SDG# 34108)\nVariants: "Hard time"\nStarted: 2018.5.3, Ended: 2018.6.3\nParticipants: SilentTitan (S), Broccoli_Commander (N)\nWinner: SilentTitan\n\n1) Broccoli_Commander: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld G3 B2 Y3\n\n3) Broccoli_Commander: Build G1 Broccoli_commander\n\n4) SilentTitan: Build Y1 Silenttitan\n\n5) Broccoli_Commander: Build G1 Broccoli_commander\n\n6) SilentTitan: Build Y1 Silenttitan\n\n7) Broccoli_Commander: Discover G1 Broccoli_commander B3 Blueberry\n\n8) SilentTitan: Discover Y1 Silenttitan R1 Sol\n\n9) Broccoli_Commander: Build G1 Broccoli_commander\n\n10) SilentTitan: Build Y2 Silenttitan\n\n11) Broccoli_Commander: Build G2 Blueberry\n\n12) SilentTitan: Trade Y3 G3 Silenttitan\n\n13) Broccoli_Commander: Trade G2 Y2 Blueberry\n\n14) SilentTitan: Discover Y1 Silenttitan R1 Sole\n\n15) Broccoli_Commander: Discover G1 Broccoli_commander Y3 Cauliflower\n\n16) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y3 Sole\nBuild Y3 Silenttitan\n\n17) Broccoli_Commander: Build G2 Blueberry\n\n18) SilentTitan: Trade Y3 G3 Silenttitan\n\n\nHomeworlds Online (SDG# 33964)\nVariants: "Hard time"\nStarted: 2018.5.3, Ended: 2018.5.9\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld G1 B3 R3\n\twil: all settled in?\n\n2) Trydnt: Homeworld B2 R1 G3\n\n3) wil: Build R1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Build R1 Wil\n\n6) Trydnt: Build G1 Trydnt\n\n7) wil: Trade R3 G3 Wil\n\n8) Trydnt: Trade G3 Y3 Trydnt\n\n9) wil: Build G2 Wil\n\n10) Trydnt: Sacrifice Y3 Trydnt\nDiscover G1 Trydnt Y3 Y3\nDiscover G1 Y3 Y2 Y2\nMove G1 Y2 Wil\nCatastrophe Wil G\n\twil: lol\r\n\n\n11) wil: T R1 G1 Wil\n\n12) Trydnt: Build G1 Trydnt\n\twil: Too much fun\n\n13) wil: B G2 Wil\n\n14) Trydnt: Build G2 Trydnt\n\n15) wil: Build G2 Wil\n\n16) Trydnt: Trade G2 Y2 Trydnt\n\n17) wil: Trade G2 Y2 Wil\n\n18) Trydnt: Discover G1 Trydnt Y3 Y3\n\n19) wil: Trade G1 B1 Wil\n\n20) Trydnt: Build Y1 Trydnt\n\n21) wil: Build R1 Wil\n\n22) Trydnt: Trade Y1 B1 Trydnt\n\n23) wil: Build R2 Wil\n\n24) Trydnt: Move B1 Trydnt Y3\n\n25) wil: Discover R2 Wil Y2 Y2\n\n26) Trydnt: Build G1 Trydnt\n\n27) wil: Move R2 Y2 Y3\n\n28) Trydnt: Discover B1 Y3 Y2 Y2\n\n29) wil: Attack G1 Y3\n\n30) Trydnt: Sacrifice G1 Trydnt\nBuild B1 Y2\n\n31) wil: Move B1 Wil Y2\n\n32) Trydnt: Discover B1 Y2 G3 G3\n\n33) wil: Move R2 Y3 Y2\n\twil: oops, I didn't mean to move an attack ship in...I meant to go visit my cousins...\n\n34) Trydnt: Build B2 G3\n\n35) wil: Move R2 Y2 G3\n\n36) Trydnt: Build B2 G3\n\n37) wil: Attack B2 G3\n\n38) Trydnt: Sacrifice G1 Trydnt\nBuild B3 Y2\n\n39) wil: Sacrifice G1 Y3\nBuild B3 Y2\nCatastrophe Y2 B\n\twil: me thinks you might have pulled the trigger a tad early...\n\n40) Trydnt: Build B1 G3\nCatastrophe G3 B\n\n41) wil: B R2 G3\n\n42) Trydnt: Trade Y2 G2 Trydnt\n\twil: now your turn... \n\n43) wil: S Y2 Wil\nM R2 G3 Trydnt\nM R2 G3 Trydnt\n\twil: We both had the blues, but we ain't got the blued no Mo, oh yeah,\r\n...\n\n44) Trydnt: Trade G2 R2 Trydnt\nCatastrophe Trydnt R\n\n\twil: You may join us by your own free will and we will treat you as one of our own.... Or...\n\tTrydnt: you seem to be making a large effort not to let the game go to long these days haha\n\twil: me? who catastrphed early?\r\n\n\tTrydnt: there was no way out of that. If I took a r2 you then take it back and we're in an endless cycle. if I grew a g1 you sacrifice an r2 and use the other to take both.\n\twil: Yeah, I was almost going to buiding to gain a Queen when I saw the quick way out...\n\twil: I never looked at the last layout till now... lol.. I don't believe I've ever seen anything like this!! \n\tDraw5PlayAll: I saw one with 34 pieces in the bank\n\nHomeworlds Online (SDG# 34051)\nVariants: "Hard time"\nStarted: 2018.5.6, Ended: 2018.5.19\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B2 G1 Y3\n\n2) Trydnt: Homeworld G3 R2 B3\n\n3) wil: Build Y1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: Build Y1 Wil\n\n6) Trydnt: Trade B1 Y1 Trydnt\n\n7) wil: Trade Y1 G1 Wil\n\n8) Trydnt: Build Y1 Trydnt\n\n9) wil: Build Y2 Wil\n\n10) Trydnt: Build Y2 Trydnt\n\n11) wil: Discover Y1 Wil G3 G3\n\n12) Trydnt: Discover Y1 Trydnt G1 G1\n\n13) wil: Build G2 Wil\n\n14) Trydnt: Discover Y2 Trydnt B1 B1\n\n15) wil: Discover G2 Wil Y3 Y3\n\n16) Trydnt: Discover Y2 B1 B3 B3\n\n17) wil: Discover Y2 Wil B3 Be3\n\n18) Trydnt: Trade Y2 G2 B3\n\n19) wil: T G1 R1 Wil\n\n20) Trydnt: Build G1 B3\n\n21) wil: Build G2 Y3\n\n22) Trydnt: Trade G1 R1 B3\n\n23) wil: Discover G2 Y3 B1 B1\n\n24) Trydnt: Build B1 Trydnt\n\n25) wil: B R1 Wil\n\n26) Trydnt: Build B1 Trydnt\n\n27) wil: B R2 Wil\n\n28) Trydnt: Sacrifice Y1 Trydnt\nMove R1 B3 Wil\nCatastrophe Wil R\n\n29) wil: Build Y1 G3\n\n30) Trydnt: Trade B3 Y3 Trydnt\n\n31) wil: Build Y2 Wil\n\n32) Trydnt: Build Y2 G1\n\n33) wil: Trade Y2 R2 Wil\n\n34) Trydnt: Build Y2 Trydnt\n\n35) wil: Build R1 Wil\n\n36) Trydnt: Trade B1 R1 Trydnt\n\n37) wil: T R1 B1 Wil\n\n38) Trydnt: Build B2 Trydnt\n\n39) wil: Move B1 Wil G3 G3\n\n40) Trydnt: Move B1 Trydnt G1\n\n41) wil: S G2 Y3\nB Y3 Be3\nB G1 B1\n\n42) Trydnt: Sacrifice Y2 Trydnt\nMove Y2 G1 Be3\nMove Y1 G1 Be3\nCatastrophe Be3 Y\n\n43) wil: S Y1 G3\nM G1 B1 B3\n\n44) Trydnt: Build R1 Trydnt\n\n45) wil: B R1 Wil\n\n46) Trydnt: Sacrifice R1 Trydnt\nAttack G1 B3\n\n47) wil: M R2 Wil G3\n\n48) Trydnt: Build Y1 Trydnt\n\n49) wil: B G2 B1\n\n50) Trydnt: Sacrifice Y1 Trydnt\nDiscover B1 G1 G3 G33\n\n51) wil: B Y1 G3\n\n52) Trydnt: Trade G1 Y1 B3\n\n53) wil: M Y1 G3 B1\n\n54) Trydnt: Build Y2 B3\n\n55) wil: Discover G2 B1 Y3 Y3\n\twil: Made impossibly stupid move in tourney and lost.\n\n56) Trydnt: Sacrifice G2 B3\nBuild B2 Trydnt\nBuild B3 G33\n\n57) wil: B B3 G3\n\tTrydnt: no matter how good you get it happens from time to time haha\n\n58) Trydnt: Trade B1 R1 G33\n\twil: You'll not beleive what i did...I had put in my notes block my next intended move...and when it came up...I just cut and pasted it in...without even looking at what he had done... I was thinking about ten different things..just took a break from temple building and just cntrl c, v, submit...and went back to working on the project...sheesh...shear stupidity\n\n59) wil: B Y2 G3\n\tTrydnt: the best laid plans of mice and men\n\n60) Trydnt: Sacrifice Y2 B3\nMove B3 G33 B1\nMove B3 B1 Y3\n\n61) wil: D G2 Y3 Y2 Y2\n\n62) Trydnt: Build Y2 Trydnt\n\n63) wil: B G1 B1\n\n64) Trydnt: Discover Y2 Trydnt B1 Bee1\n\tTrydnt: you weren't planning on using that were you?\n\n65) wil: B R2 Wil\n\twil: Nah, I used the other one.\n\n66) Trydnt: Build R3 G33\n\n67) wil: S G2 Y2\nB Y2 Wil\nB R3 G3\n\n68) Trydnt: Move Y2 Bee1 B3\n\n69) wil: M R3 G3 B1\n\n70) Trydnt: Sacrifice Y3 Trydnt\nMove Y1 B3 Wil\nMove Y2 B3 Wil\nCatastrophe Wil Y\nMove B3 Y3 Wil\n\n71) wil: S Y2 G3\nM B3 G3 Wil\nM B1 G3 Wil\nC Wil B\n\n72) Trydnt: Trade B2 Y2 Trydnt\n\n73) wil: M Y1 G3 Wil\n\n74) Trydnt: Build Y1 Trydnt\n\n75) wil: M R1 Wil Trydnt\n\twil: Forcing me to kill half the home team, cut off my own leg.. And then you kill me...sheesh\n\n76) Trydnt: Sacrifice Y1 Trydnt\nMove R3 G33 Wil\n\n77) wil: B R3 Wil\n\twil: Look a mosquito\n\n78) Trydnt: Attack R3 Wil\n\n79) wil: S Y1 B1\nM R2 G3 Wil\nC Wil R\n\n80) Trydnt: Move Y2 Trydnt Wil\n\n81) wil: B R2 Trydnt\nC Trydnt R\n\n82) Trydnt: Sacrifice R1 G33\nAttack Y1 Wil\n\n\twil: If one is going to lose....make it look close.\n\tTrydnt: words to live by\n\nHomeworlds Online (SDG# 34111)\nVariants: "Hard time"\nStarted: 2018.5.6, Ended: 2018.5.18\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld Y3 G2 B3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: Build G1 Wil\n\n6) Trydnt: Build B1 Trydnt\n\n7) wil: Trade G1 R1 Wil\n\n8) Trydnt: Discover B1 Trydnt B1 B1\n\n9) wil: Trade G3 B3 Wil\n\n10) Trydnt: Build B2 Trydnt\n\n11) wil: Build B2 Wil\n\n12) Trydnt: Trade B2 Y2 Trydnt\n\n13) wil: Trade B3 Y3 Wil\n\n14) Trydnt: Trade B1 G1 B1\n\n15) wil: Build R1 Wil\n\n16) Trydnt: Discover B1 Trydnt G1 G1\n\n17) wil: Discover R1 Wil G3 G3\n\n18) Trydnt: Build G2 B1\n\n19) wil: Build R2 Wil\n\n20) Trydnt: Trade G2 R2 B1\n\n21) wil: Discover R2 Wil Y3 Y3\n\n22) Trydnt: Build B1 G1\n\n23) wil: B G2 Wil\n\n24) Trydnt: Build B2 G1\n\n25) wil: M B2 Wil G3\n\n26) Trydnt: Build B3 Trydnt\n\n27) wil: Build B3 G3\n\n28) Trydnt: Sacrifice Y2 Trydnt\nMove B1 G1 G3\nMove B1 G1 G3\nCatastrophe G3 B\n\n29) wil: Build R2 G3\n\n30) Trydnt: Build R3 B1\n\n31) wil: Sacrifice G2 Wil\nBuild R3 Y3\nBuild R3 Wil\n\n32) Trydnt: Move B3 Trydnt G1\n\n33) wil: Trade R1 B1 Wil\n\n34) Trydnt: Trade R2 Y2 B1\n\n35) wil: B G2 Wil\n\n36) Trydnt: Build R1 B1\n\n37) wil: Sacrifice B1 Wil\nTrade G2 B2 Wil\n\n38) Trydnt: Build G2 B1\n\n39) wil: D R3 Wil B3 B3\n\n40) Trydnt: Trade B2 R2 G1\n\n41) wil: S B2 Wil\nT R3 G3 B3\nT R3 G3 Y3\n\n42) Trydnt: Build R3 G1\n\n43) wil: S G3 Y3\nB G2 B3\nB R3 Y3\nB G3 Wil\n\n44) Trydnt: Sacrifice Y2 B1\nMove R1 B1 Y3\nMove R2 G1 Y3\nCatastrophe Y3 R\n\n45) wil: D G3 Wil Y3 Y3\n\n46) Trydnt: Build R1 B1\n\n47) wil: B Y1 Wil\n\n48) Trydnt: Trade R1 Y1 B1\n\n49) wil: T Y1 B1 Wil\n\n50) Trydnt: Build Y1 B1\n\n51) wil: S G3 B3\nB G3 B3\nB B1 Wil\nB Y1 Wil\n\n52) Trydnt: Build Y2 B1\n\n53) wil: Move Y1 Wil G3\n\n54) Trydnt: Sacrifice Y2 B1\nMove B3 G1 Y3\nMove B3 Y3 Wil\nCatastrophe Wil B\n\n55) wil: S G3 B3\nB G3 B3\nB Y2 G3\nB Y2 Wil\n\n56) Trydnt: Build B1 Trydnt\n\n57) wil: D Y1 G3 B1 Be1\n\n58) Trydnt: Trade B1 R1 Trydnt\n\n59) wil: S G3 Y3\nB G3 Wil\nB Y2 Be1\nB Y3 G3\n\n60) Trydnt: Build R2 Trydnt\n\n61) wil: D Y2 G3 B1 Bwon\n\n62) Trydnt: Sacrifice G2 B1\nBuild R2 G1\nBuild R3 B1\n\n63) wil: S Y3 G3\nM Y2 Bwon Trydnt\nM Y1 Be1 Trydnt\nM Y2 Be1 Trydnt\nC Trydnt Y\n\n64) Trydnt: Trade R3 Y3 B1\n\n65) wil: S Y3 Wil\nM G3 B3 Trydnt\nM G2 B3 Trydnt\nM G3 Wil Trydnt\nC Trydnt G\n\n\nHomeworlds Online (SDG# 33993)\nStarted: 2018.5.6, Ended: 2018.7.9\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n1) MobyNostromo: H B1 Y2 G3\n\n2) Trydnt: Homeworld Y3 G2 B3\n\n3) MobyNostromo: B G1 Mobynostromo\n\n4) Trydnt: Build B1 Trydnt\n\n5) MobyNostromo: B G1 Mobynostromo\n\n6) Trydnt: Build B1 Trydnt\n\n7) MobyNostromo: D G1 Mobynostromo Y3 Chrome\n\n8) Trydnt: Discover B1 Trydnt Y1 Y1\n\n9) MobyNostromo: T G1 Y1 Mobynostromo\n\n10) Trydnt: Discover B1 Y1 G3 G3\n\n11) MobyNostromo: B Y1 Mobynostromo\n\n12) Trydnt: Build B2 G3\n\n13) MobyNostromo: D G1 Chrome Y1 Brass\n\n14) Trydnt: Trade B2 Y2 G3\n\n15) MobyNostromo: D Y1 Mobynostromo G3 Emerald\n\n16) Trydnt: Build B2 G3\n\n17) MobyNostromo: M Y1 Mobynostromo G3\n\n18) Trydnt: Trade B2 R2 G3\n\n19) MobyNostromo: D Y1 G3 G1 Dust\n\n20) Trydnt: Build B2 G3\n\n21) MobyNostromo: T G3 R3 Mobynostromo\n\n22) Trydnt: Build B2 Trydnt\n\n23) MobyNostromo: B Y2 Emerald\n\n24) Trydnt: Sacrifice Y2 G3\nMove B2 G3 Dust\nDiscover R2 G3 B2 B2\n\n25) MobyNostromo: M Y2 Emerald Mobynostromo\n\n26) Trydnt: Build B3 G3\n\n27) MobyNostromo: T Y2 G2 Mobynostromo\n\n28) Trydnt: Build B3 G3\n\n29) MobyNostromo: B G1 Mobynostromo\n\n30) Trydnt: Trade B3 Y3 G3\n\n31) MobyNostromo: B Y2 Emerald\n\n32) Trydnt: Build B3 Dust\n\n33) MobyNostromo: B G2 Brass\n\n34) Trydnt: Trade B3 G3 Dust\n\n35) MobyNostromo: T G1 R1 Mobynostromo\n\n36) Trydnt: Build Y2 G3\n\n37) MobyNostromo: M R1 Mobynostromo Emerald\n\n38) Trydnt: Build B3 Dust\n\n39) MobyNostromo: B Y3 Dust\n\n40) Trydnt: Sacrifice R2 B2\nAttack Y3 Dust\nAttack Y1 Dust\n\n41) MobyNostromo: B G1 Mobynostromo\n\n42) Trydnt: Build B2 G3\n\n43) MobyNostromo: S G2 Brass\nB R1 Emerald\nB R1 Emerald\n\n44) Trydnt: Trade B3 R3 G3\n\n45) MobyNostromo: S G2 Mobynostromo\nB R2 Mobynostromo\nB G2 Brass\n\n46) Trydnt: Move B3 Dust Emerald\n\n47) MobyNostromo: S Y2 Emerald\nM R1 Emerald Brass\nM R1 Emerald Brass\n\n48) Trydnt: Build R2 G3\n\n49) MobyNostromo: D R2 Mobynostromo B3 Aqua\n\n50) Trydnt: Move G3 Dust Aqua\n\n51) MobyNostromo: S Y1 Emerald\nD R2 Aqua G2 Garden\n\n52) Trydnt: Build Y1 G3\n\n53) MobyNostromo: M R1 Brass G3\n\n54) Trydnt: Sacrifice R2 G3\nAttack R1 G3\nAttack R1 Emerald\n\n55) MobyNostromo: B R2 Brass\n\n56) Trydnt: Discover Y1 Dust R3 R3\n\n\nHomeworlds Online (SDG# 34109)\nStarted: 2018.5.6, Ended: 2018.6.18\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ts52: Build G1 Ts52\n\n9) Trydnt: Trade Y1 R1 Trydnt\n\n10) ts52: Trade G1 R1 Ts52\n\n11) Trydnt: Build G1 Trydnt\n\n12) ts52: Build G1 Ts52\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) ts52: Build G1 Ts52\n\n15) Trydnt: Build B1 Trydnt\n\tts52: Sorry for the delay!\n\n16) ts52: Trade G1 B1 Ts52\n\n17) Trydnt: Discover B1 Trydnt G1 G1\n\n18) ts52: Discover B1 Ts52 G3 Kermit\n\n19) Trydnt: Build B2 Trydnt\n\n20) ts52: Move Y1 Ts52 Kermit\n\n21) Trydnt: Move Y2 Trydnt G1\n\n22) ts52: Discover G1 Ts52 B3 Grover\n\n23) Trydnt: Discover B2 Trydnt Y1 Y1\n\n24) ts52: Build G1 Ts52\n\n25) Trydnt: Build G2 Trydnt\n\n26) ts52: Build G2 Grover\n\n27) Trydnt: Sacrifice G2 Trydnt\nBuild B2 G1\nBuild B3 Y1\n\n28) ts52: Sacrifice G3 Ts52\nBuild G2 Grover\nBuild G2 Ts52\nBuild G3 Ts52\n\n29) Trydnt: Trade B2 R2 G1\n\n30) ts52: Build B2 Kermit\n\n31) Trydnt: Move B3 Y1 Grover\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Kermit\nBuild Y3 Kermit\n\n33) Trydnt: Build Y3 G1\n\n34) ts52: Discover G2 Ts52 Y3 Bigbird\n\n35) Trydnt: Move Y2 G1 Kermit\nCatastrophe Kermit Y\n\n36) ts52: Trade B2 Y2 Kermit\n\n37) Trydnt: Build B2 G1\n\n38) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Ts52\nBuild R2 Ts52\n\n39) Trydnt: Sacrifice Y3 G1\nMove R2 G1 Grover\nMove R2 Grover Ts52\nMove B3 Grover Ts52\nCatastrophe Ts52 R\n\n40) ts52: Trade G3 Y3 Ts52\n\n41) Trydnt: Sacrifice R1 Trydnt\nAttack Y3 Ts52\n\n42) ts52: Build G3 Ts52\n\tts52: Wow. I did not see that coming. Well played!\n\n43) Trydnt: Trade B2 R2 G1\n\n44) ts52: Sacrifice Y2 Kermit\nMove B1 Kermit Ts52\nMove G1 Grover Ts52\n\tTrydnt: thanks good game\n\n45) Trydnt: Sacrifice R2 G1\nAttack G3 Ts52\nAttack B1 Ts52\n\n46) ts52: Trade G1 R1 Ts52\n\n47) Trydnt: Sacrifice G3 Ts52\nBuild Y1 Ts52\nBuild Y2 Ts52\nBuild B2 Ts52\nCatastrophe Ts52 B\nCatastrophe Ts52 Y\n\n\nHomeworlds Online (SDG# 34130)\nStarted: 2018.5.12, Ended: 2018.5.15\nParticipants: ladybugsfly (S), Chivenger (N)\nWinner: ladybugsfly\n\n1) Chivenger: Homeworld Y2 B1 G3\n\n2) ladybugsfly: Homeworld G3 Y2 B3\n\n3) Chivenger: Build G1 Chivenger\n\n4) ladybugsfly: Build B1 Ladybugsfly\n\n5) Chivenger: Trade G1 Y1 Chivenger\n\n6) ladybugsfly: Discover B1 Ladybugsfly G1 Kaylee\n\n7) Chivenger: Build Y1 Chivenger\n\n8) ladybugsfly: Build B1 Kaylee\n\n9) Chivenger: Build G1 Chivenger\n\n10) ladybugsfly: Build B2 Kaylee\n\tChivenger: Interesting Take the B1 out of the bank. Nice. \n\n11) Chivenger: Discover Y1 Chivenger Y3 Simon\n\n12) ladybugsfly: Trade B2 Y2 Kaylee\n\n13) Chivenger: Build G1 Chivenger\n\n14) ladybugsfly: Build B2 Kaylee\n\tladybugsfly: Build me some b2s and flip ‘em to other colors\n\tChivenger: Can't. Don't have a b ship to build b with. \n\n15) Chivenger: Move G1 Chivenger Simon\n\tladybugsfly: *my strategy: b2 engine\n\n16) ladybugsfly: Trade B2 G2 Kaylee\n\n17) Chivenger: Discover G1 Chivenger B3 Jayne\n\n18) ladybugsfly: Discover B1 Kaylee G3 Inara\n\n19) Chivenger: Build G2 Jayne\n\n20) ladybugsfly: Build B2 Inara\n\n21) Chivenger: Trade G2 B2 Jayne\n\n22) ladybugsfly: Sacrifice Y2 Kaylee\nMove B1 Inara Chivenger\nMove B2 Inara Chivenger\n\n23) Chivenger: Build G2 Chivenger\n\n24) ladybugsfly: Sacrifice G2 Kaylee\nBuild B2 Chivenger\nBuild B3 Kaylee\nCatastrophe Chivenger B\n\n25) Chivenger: Sacrifice G2 Chivenger\nBuild G2 Jayne\nBuild G2 Simon\n\n26) ladybugsfly: Trade B3 Y3 Kaylee\n\tChivenger: Yeah, I earned that lesson. Didn't see the end game. Thought I had a little more time. I was wrong. \r\n\n\n27) Chivenger: Discover Y1 Simon Y1 Book\n\n28) ladybugsfly: Build Y2 Kaylee\n\n29) Chivenger: Move Y1 Chivenger Jayne\n\n30) ladybugsfly: Move Y3 Kaylee Chivenger\n\tChivenger: darn. Two turns and I am ded. Don't see a way out of it. \n\tChivenger: No wait. I do. \n\n31) Chivenger: Trade G2 R2 Jayne\n\n32) ladybugsfly: Build Y3 Kaylee\n\n33) Chivenger: Sacrifice R2 Jayne\nAttack Y3 Chivenger\nPass\n\n34) ladybugsfly: Move Y3 Kaylee Chivenger\n\n35) Chivenger: Sacrifice Y3 Chivenger\nMove G1 Jayne Book\nMove G2 Simon Book\nMove G1 Simon Book\n\n36) ladybugsfly: Sacrifice B1 Kaylee\nTrade Y3 R3 Chivenger\n\n37) Chivenger: Move G2 Book Chivenger\n\tChivenger: Oops. Almost missed that one trying to be smart with the attacks. \n\tladybugsfly: I actually thought it was incredibly clever. ;) Had you waited one turn to use the r2, you would have prevented me from moving in again by also threatening whatever else I move in. First one to red always has the advantage. Had I changed my yellow to red, you would have just taken it then.\n\n38) ladybugsfly: Attack G3 Chivenger\n\tladybugsfly: Although, I just saw what you saw with all four yellows, after you saw it. Teaching moment for me!\n\n\nHomeworlds Online (SDG# 34113)\nStarted: 2018.5.13, Ended: 2018.8.12\nParticipants: MobyNostromo (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) MobyNostromo: H B1 Y2 G3\n\n3) Draw5PlayAll: Homeworld B1 G2 B3 *\n\n4) MobyNostromo: B G1 Mobynostromo\n\tDraw5PlayAll: Prepare to be annihilated.\n\tMobyNostromo: Ha, ha! I'll try my best to prepare, but I'm not promising anything...\n\n5) Draw5PlayAll: Build B1 Draw5playall\n\n6) MobyNostromo: B G1 Mobynostromo\n\n7) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n8) MobyNostromo: D G1 Mobynostromo Y3 Gold\n\n9) Draw5PlayAll: Build B2 Draw5playall\n\n10) MobyNostromo: T G3 B3 Mobynostromo\n\n11) Draw5PlayAll: Discover B2 Draw5playall Y3 Niceidea\n\n12) MobyNostromo: B G1 Gold\n\n13) Draw5PlayAll: Build B2 Draw5playall\n\n14) MobyNostromo: B G2 Mobynostromo\n\n15) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n16) MobyNostromo: B G2 Gold\n\n17) Draw5PlayAll: Move R2 Draw5playall Gold\n\n18) MobyNostromo: S G2 Gold\nB G2 Mobynostromo\nB G3 Gold\n\n19) Draw5PlayAll: Attack G1 Gold\n\n20) MobyNostromo: T G2 R2 Mobynostromo\n\n21) Draw5PlayAll: Build G2 Gold\nCatastrophe Gold Green\n\n22) MobyNostromo: D G2 Mobynostromo B3 Ultrablue\n\n23) Draw5PlayAll: Build B2 Draw5playall\n\n24) MobyNostromo: B G1 Ultrablue\n\n25) Draw5PlayAll: Discover B2 Draw5playall G3 Dos\n\n26) MobyNostromo: T G2 B2 Ultrablue\n\n27) Draw5PlayAll: Build B3 Dos\n\n28) MobyNostromo: T B3 R3 Mobynostromo\n\n29) Draw5PlayAll: Build B3 Dos\n\n30) MobyNostromo: D R2 Mobynostromo G3 Emerald\n\n31) Draw5PlayAll: Sacrifice B2 Niceidea\nTrade B3 R3 Dos\nTrade B3 Y3 Dos\n\n32) MobyNostromo: B B2 Ultrablue\n\n33) Draw5PlayAll: Move B1 Draw5playall Ultrablue\nCatastrophe Ultrablue Blue\n\n34) MobyNostromo: B G1 Mobynostromo\n\n35) Draw5PlayAll: Build B1 Dos\n\n36) MobyNostromo: D G1 Mobynostromo B3 Sky\n\n37) Draw5PlayAll: Build R1 Dos\n\n38) MobyNostromo: T G1 Y1 Sky\n\n39) Draw5PlayAll: Build B2 Dos\n\n40) MobyNostromo: T R3 G3 Mobynostromo\n\n41) Draw5PlayAll: Discover B2 Dos G2 Growth\n\n42) MobyNostromo: M G1 Mobynostromo Sky\n\n43) Draw5PlayAll: Build B2 Growth\n\n44) MobyNostromo: B G1 Sky\n\n45) Draw5PlayAll: Build B3 Growth\n\n46) MobyNostromo: B G1 Mobynostromo\n\n47) Draw5PlayAll: Build B3 Dos\n\tDraw5PlayAll: AFAICT I have mate in 6, maybe 7.\n\n48) MobyNostromo: S G3 Mobynostromo\nB G2 Sky\nB G3 Mobynostromo\nB Y1 Sky\n\n49) Draw5PlayAll: Trade B3 R3 Growth\n\n50) MobyNostromo: M Y1 Sky Draw5playall\n\n51) Draw5PlayAll: Move R3 Dos Draw5playall\n\n52) MobyNostromo: S G2 Sky\nB Y1 Draw5playall\nB Y2 Draw5playall\nC Draw5playall Y\n\n53) Draw5PlayAll: Build B3 Growth\n\n54) MobyNostromo: S G3 Mobynostromo\nB G2 Sky\nB G3 Mobynostromo\nB Y1 Sky\n\tDraw5PlayAll: Tricky, but you lost more than I did...\n\n55) Draw5PlayAll: Trade B2 Y2 Growth\n\n56) MobyNostromo: S G3 Mobynostromo\nB G3 Mobynostromo\nB R1 Emerald\nB R1 Emerald\n\n57) Draw5PlayAll: Sacrifice Y2 Growth\nMove R1 Dos Growth\nMove R1 Growth Emerald\nCatastrophe Emerald Red\n\n58) MobyNostromo: T G2 B2 Sky\n\n59) Draw5PlayAll: Move B3 Dos Mobynostromo\n\n60) MobyNostromo: S G3 Mobynostromo\nB G2 Mobynostromo\nB G3 Sky\nB Y1 Sky\n\n61) Draw5PlayAll: Sacrifice R2 Gold\nAttack G2 Mobynostromo\nAttack G1 Mobynostromo\n\n\nHomeworlds Online (SDG# 34138)\nVariants: "Unrated, Hard time"\nStarted: 2018.5.14, Ended: 2018.6.5\nParticipants: Felix (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld Y2 B1 G3\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) Babamots: Build G1 Babamots\n\tFelix: Let's see if I can pull this off. I rarely do!\n\n4) Felix: Build B1 Felix\n\n5) Babamots: Build G1 Babamots\n\n6) Felix: Trade B3 Y3 Felix\n\n7) Babamots: Discover G1 Babamots B3 Vulcan\n\n8) Felix: B B2 Felix\n\tBabamots: It's an interesting opening strategy, and not one I've seen. Looks good so far.\n\tDraw5PlayAll: I am also doing it against MobyNostromo except that I did a small universe too.\n\n9) Babamots: Build G1 Babamots\n\tFelix: I've had it used against me to great effect several times but I rarely seem to be able to pull it off properly. I just hate having green in my homeworld after the opening. It's a quick start, but not having a large green slows down my build potential in the mid game\n\n10) Felix: Trade B2 G2 Felix\n\n11) Babamots: Discover G1 Babamots B3 Romulus\n\n12) Felix: Build B2 Felix\n\n13) Babamots: Build G2 Vulcan\n\n14) Felix: Discover G2 Felix Y2 Gronk\n\n15) Babamots: Sacrifice G3 Babamots\nBuild G2 Vulcan\nBuild G3 Romulus\nBuild G3 Babamots\n\n16) Felix: Move G2 Gronk Vulcan\nCatastrophe Vulcan Green\n\n17) Babamots: Build G1 Babamots\n\n18) Felix: Discover B2 Felix G2 Blink\n\n19) Babamots: Discover G1 Babamots B3 Kurl\n\n20) Felix: B B2 Blink\n\n21) Babamots: Sacrifice G3 Babamots\nBuild G2 Kurl\nBuild G2 Kurl\nBuild G3 Babamots\n\n22) Felix: Build B2 Felix\n\n23) Babamots: Discover G1 Babamots B3 Kesprytt\n\n24) Felix: Build Y1 Felix\n\n25) Babamots: Trade G1 Y1 Kurl\n\n26) Felix: Trade B2 Y2 Blink\n\n27) Babamots: Sacrifice G3 Romulus\nBuild G1 Babamots\nBuild Y1 Kurl\nBuild G3 Romulus\n\n28) Felix: Build B2 Blink\n\n29) Babamots: Move Y1 Kurl Blink\n\n30) Felix: Trade B2 R2 Blink\n\n31) Babamots: Trade G2 R2 Kurl\n\n32) Felix: Attack Y1 Blink\n\n33) Babamots: Sacrifice G3 Romulus\nBuild G2 Kesprytt\nBuild Y2 Kurl\nBuild G3 Romulus\n\n34) Felix: Move Y1 Blink Kurl\n\n35) Babamots: Attack Y1 Kurl\n\n36) Felix: B Y3 Blink\n\n37) Babamots: Sacrifice Y2 Kurl\nMove Y1 Kurl Blink\nMove Y1 Kurl Blink\nCatastrophe Blink Y\n\n38) Felix: B B2 Blink\n\n39) Babamots: Trade G1 Y1 Romulus\n\n40) Felix: M Y1 Felix Blink\n\n41) Babamots: Move G3 Romulus Blink\n\n42) Felix: M R2 Blink Romulus\n\n43) Babamots: Sacrifice G3 Babamots\nBuild R1 Kurl\nBuild G1 Kurl\nBuild G3 Babamots\n\n44) Felix: A Y1 Romulus\n\n45) Babamots: Sacrifice R2 Kurl\nAttack B2 Blink\nAttack B2 Blink\n\n46) Felix: B Y1 Felix\n\n47) Babamots: Trade B2 Y2 Blink\n\n48) Felix: D B2 Felix B2 Remnant\n\n49) Babamots: Sacrifice G3 Babamots\nBuild R1 Kurl\nBuild R1 Kurl\nBuild G3 Babamots\n\tFelix: This isn't looking good for me!\n\n50) Felix: D Y1 Felix Y2 Savant\n\n51) Babamots: Build Y3 Blink\n\n52) Felix: B Y3 Blink\nC Blink Yellow\n\n53) Babamots: Sacrifice G1 Kesprytt\nBuild G1 Kurl\n\n54) Felix: B Y1 Felix\n\n55) Babamots: Sacrifice G2 Kesprytt\nBuild B3 Blink\nBuild G2 Blink\n\n56) Felix: B Y2 Felix\n\n57) Babamots: Trade B3 Y3 Blink\n\n58) Felix: Move Y1 Felix Remnant\n\n59) Babamots: Sacrifice G3 Babamots\nBuild Y3 Blink\nBuild B3 Blink\nBuild G3 Babamots\n\n60) Felix: M Y2 Felix Blink\n\n61) Babamots: Trade Y3 R3 Blink\n\tBabamots: I'm positive that's the biggest fleet I've ever had in a single system. Just needs some red to be really scary.\n\n62) Felix: Build Y3 Felix\n\tFelix: I'm sure you'll get some soon enough!\n\n63) Babamots: Sacrifice Y3 Blink\nMove R3 Blink Felix\nMove G3 Blink Felix\nMove B3 Blink Felix\n\tBabamots: And you'd probably better get some more :-)\n\n64) Felix: Sacrifice R2 Romulus\nAttack B3 Felix\nAttack G3 Felix\n\tFelix: Workin' on it!\n\n65) Babamots: Attack G3 Felix\n\tBabamots: I had a panicked flashback to our semifinal game where I goofed up the final push. I think I've got this though.\n\n66) Felix: Build Y3 Felix\n\tBabamots: All the same, I probably shouldn't play while I'm scrambling to finish a grant application :-P\n\n67) Babamots: Attack Y3 Felix\n\tFelix: I dare say you do have me! I probably shouldn't play when I just had a baby a week ago and I'm moving to a new house this friday!\n\n68) Felix: Trade B2 R2 Remnant\n\n69) Babamots: Sacrifice R3 Felix\nAttack Y3 Felix\nAttack Y3 Felix\nAttack B3 Felix\n\n70) Felix: Build B2 Felix\n\tBabamots: Congratulations! Felix Jr. right? I guess to make it fair I should have a child during the next tournament. Sorry it's such a stressful time for you.\n\tFelix: Thank you! It's busy, but not stressful! More joyous than anything :)\n\n71) Babamots: Catastrophe Felix B\nPass\n\n\tFelix: Well done!\n\tBabamots: Thanks. I'd like to wait until maybe Sunday to start the next tournament game. I've got this application to do tonight and then a weekend conference to prepare for. That would give you a chance to settle into the new place a bit too. That sound alright?\n\tFelix: Sounds fine to me. Just challenge me whenever you're ready! Looking forward to it.\n\tDraw5PlayAll: So wait... what happened?\n\tBabamots: According to Andy, you are allowed to abandon your homeworld if you eliminate your opponent by doing it (and the result is a draw). Felix would have liked to make such a move, but SDG won't allow it. For the purpose of the tournament, we're calling it a draw (even though SDG will show that I won).\n\tDraw5PlayAll: Ok... so you two have to rematch for the finale?\n\tBabamots: Yes, we just finished our additional game this morning. It's game #34209 if you'd like to study it.\n\nHomeworlds Online (SDG# 34139)\nVariants: "Unrated, Hard time"\nStarted: 2018.5.14, Ended: 2018.6.2\nParticipants: Babamots (S), Felix (N)\nWinner: Babamots\n\n1) Felix: Homeworld R1 B3 G3\n\n2) Babamots: Homeworld Y2 B1 G3\n\tFelix: And they're off!\n\tBabamots: Good luck! You'll notice that my first move in the other game is different your first move in this one, so I can't just make you play yourself and ensure that I win a game :-P.\n\n3) Felix: Build G1 Felix\n\n4) Babamots: Build G1 Babamots\n\tFelix: Haha, much appreciated!\n\n5) Felix: Trade G1 B1 Felix\n\n6) Babamots: Build G1 Babamots\n\n7) Felix: Build B1 Felix\n\n8) Babamots: Discover G1 Babamots B3 Bajor\n\n9) Felix: T B1 Y1 Felix\n\tDraw5PlayAll: I may be mistaken, but I think that if such a thing happened, the "victim" could do something involving the clock and end the scheme before it gets off the ground.\n\n10) Babamots: Trade G1 B1 Babamots\n\tBabamots: Ooh, run the time down to just an hour and then make a move just before time ran out so the opponent would only have seconds. Devious.\n\n11) Felix: Build B2 Felix\n\n12) Babamots: Build B2 Babamots\n\tFelix: Doesn't the opponent still get 7 days, or however much time they had before, even if the opponent runs down the clock?\n\n13) Felix: Discover B2 Felix B2 Bleeb\n\n14) Babamots: Trade B1 R1 Babamots\n\tBabamots: OK, so say Alice is playing two simultaneous games with Bob. Alice is basically cheating by transferring Bob's moves from game 1 into game 2 and vice versa (she waits for Bob to make a move in game 1 and then makes an identical move in game 2 etc.). Let's say they've played enough moves that all the timers are maxed out (say at 7 days).\r\n\r\nBob gets annoyed and decides to put a stop to it. It's Bob's turn in game 1 and Alice's turn in game 2. These two timers are ticking away. Bob waits until there are only a few seconds before timeout. He is about to timeout in game 1, Alice is about to timeout in game 2. Then Bob finally makes his move in game 1, and Alice only has a few seconds to see his move and copy it over to game 2 before her time runs out. In case she doesn't make it, Bob should be ready to hit the "force resignation" button. If she does move in time, Bob can just do it again the next move. It would be tiresome for both players, but I think it's harder on Alice, who has to keep refreshing at the end of the timer to see if Bob has moved yet.\n\n15) Felix: Build Y1 Felix\n\tFelix: Ohh, I see. Makes sense. That would be an awful lot of trouble to cheat, haha. Major props to whoever would have that much patience!\n\n16) Babamots: Build R1 Babamots\n\n17) Felix: B Y1 Felix\n\tDraw5PlayAll: But what if neither one can really guarantee that they get on in time? I think such a thing would benefit Bob if "hard time" was on, and Alice would otherwise.\n\tDraw5PlayAll: Actually, wait. I forgot that Bob knows that the timer expires at end of hour, so he can simply make his move at XX:59:20 (or later depending on internet speed), and refresh the other game he wants Alice to lose in at XY:00:00.\r\n\r\nWeird. Maybe someone should try this in Martian chess or a game like that. Anyone up for the challenge?\n\n18) Babamots: Build R2 Babamots\n\n19) Felix: M Y1 Felix Bleeb\n\n20) Babamots: Trade R2 Y2 Babamots\n\n21) Felix: Sacrifice G3 Felix\nBuild Y2 Bleeb\nBuild Y3 Bleeb\nBuild Y3 Felix\n\n22) Babamots: Move Y2 Babamots Bajor\n\n23) Felix: Trade Y2 R2 Bleeb\n\n24) Babamots: Build Y2 Bajor\n\n25) Felix: Trade Y3 G3 Felix\n\n26) Babamots: Move Y2 Bajor Bleeb\n\n27) Felix: Sacrifice Y3 Bleeb\nMove B2 Bleeb Bajor\nMove B2 Bajor Babamots\nDiscover Y1 Felix G2 Pinkros\n\n28) Babamots: Attack B2 Babamots\n\tFelix: Nice move! You gave me a lot to think about and have sort of forced my hand.\n\tBabamots: It's sort of a Martian Chess type of move, offering a ship to the other player. Both of us want to get at the yellow but we already have too much in our systems. So, I like to push some more yellow at the other guy.\n\tFelix: I like to try and do the unexpected in situations like that. It usually ends up costing me the game, but hopefully I gave you something to think about here :)\n\tBabamots: Pretty interesting. I'll need to consider pros and cons carefully on this one.\n\tBabamots: Well, I sure wish I could look deeper at what each of my moves would do to the game, but I guess I'll just have to take my best guess.\n\n29) Felix: S G3 Felix\nB Y3 Felix\nB Y3 Pinkros\nB Y3 Bleeb\n\n30) Babamots: Sacrifice R1 Babamots\nAttack R2 Bleeb\n\tFelix: Don't worry. I don't know where my moves are going either! Guess we'll find out together :) also, my baby arrived! So have patience of my moves come a bit slow some days\n\n31) Felix: S Y3 Bleeb\nM B1 Felix Pinkros\nM B1 Pinkros Bajor\nM B1 Bajor Babamots\nC Babamots Blue\n\n32) Babamots: Build Y3 Bajor\n\n33) Felix: S Y1 Felix\nD Y1 Bleeb G1 Grook\n\n34) Babamots: Discover Y3 Bajor G2 Pakled\n\tBabamots: Looking pretty grim. I don't mind too much because I think your y3 sacrifice (turn 14) that started my downfall was so clever. It doesn't feel like I made a huge mistake this time.\n\n35) Felix: S Y3 Pinkros\nM Y1 Pinkros Grook\nM Y1 Grook Babamots\nM Y1 Grook Babamots\n\tBabamots: Well, then again maybe I have a last-minute chance to stab you from the grave. I guess I'll wait and see what you come up with.\n\n36) Babamots: Sacrifice Y2 Bleeb\nMove G3 Babamots Felix\nMove Y3 Pakled Felix\n\tFelix: No, I think I miscalculated... Well done! I was just one piece short.\n\n37) Felix: A Y3 Felix\n\tBabamots: Now, while SDG doesn't allow self-elimination, it's not something I addressed properly in the tournament rules. I remember reading somewhere that Andy believed in allowing mutual elimination for a draw. If we get that ruling from an official source, do you feel like a rematch? Or have I been a slow enough pain to play against that you just want it to be over? :-P\n\tBabamots: It was on BGG:\r\nhttps://boardgamegeek.com/article/21140352#21140352\n\tFelix: You haven't been a pain at all! I can leave it up to you as the tournament organizer, since it wasn't really addressed up front. Draws are always a bit sticky in homeworlds and aren't really clear in the rules. But since Andy said that mutual destruction is possible, I'm fine with a rematch!\n\tFelix: Technically I could call a catastrophe on you "during" my turn, but then my turn would end and I'd have no ships, so I think a draw seems reasonable here, if that's okay with you\n\tBabamots: SDG won't let you abandon your homeworld to make the move will it? Have you tried? And I can't remember if there is an "offer draw" button for HW. Do you have one?\n\n38) Babamots: Sacrifice R2 Bleeb\nAttack Y3 Felix\nAttack Y3 Felix\n\tFelix: Nah, it won't let me move it anywhere, and I don't have a draw button either\n\tFelix: If the tournament is being played by SDG rules, then, I'll just take the loss, no worries\n\tBabamots: Since I wasn't careful enough with the tournament rules, a win for me here would certainly need an asterisk by it. A draw is the most sensible thing in this case. I was very reluctant to admit that for two reasons:\r\n\r\n1) I'm quite emotionally invested. I'd really like to win :-D.\r\n\r\n2) I don't personally like the "simultaneous elimination is a draw" ruling since it creates a weird exception in the rules (like allowing someone to move into check, but only when it checkmates the other player).\n\tBabamots: I'll mark it as a draw in the bracket, though I'm happy enough to take the win on SDG records.\n\tBabamots: I made a post about the draw on Facebook, so it must be official :-P.\n\tFelix: So in theory, I just shouldn't have been able to move my yellow at all, just like SDG handles it. Basically if a move ends up in your own destruction, you can't make it. I do think that's a cleaner way to play overall, but I guess we do need to abide by Andy's rules. As it is, it's a bit more like chess, where you must be careful to only attack when you're sure it won't end in a stalemate. Clearly, I failed to have that much forward thinking here!\n\tBabamots: In the next tournament, I think I'd like to say a draw can only be by move repetition or mutual agreement. Even if it's not how John and Andy play, I think it's got to be how most people play as evidenced by SDG's implementation.\n\tDraw5PlayAll: I tried asking Aaron to add a draw button to Homeworlds but there was either a delay or the message went unread.\n\n\nHomeworlds Online (SDG# 34112)\nVariants: "Hard time"\nStarted: 2018.5.19, Ended: 2018.5.23\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 Y1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: B Y2 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: D Y1 Wil G3 G3\n\n10) Trydnt: Discover Y1 Trydnt B1 B1\n\n11) wil: B G1 Wil\n\n12) Trydnt: Build G1 Trydnt\n\n13) wil: D G1 Wil Y3 Y3\n\n14) Trydnt: Trade G1 B1 Trydnt\n\n15) wil: B Y2 G3\n\n16) Trydnt: Sacrifice G3 Trydnt\nBuild Y3 Trydnt\nBuild Y3 B1\nBuild B1 Trydnt\n\n17) wil: M Y2 G3 B1\n\n18) Trydnt: Trade Y1 R1 B1\n\n19) wil: D Y2 B1 G2 G2\n\n20) Trydnt: Sacrifice Y2 Trydnt\nMove Y3 B1 G3\nMove Y3 G3 Wil\n\n21) wil: B Y1 Wil\nC Wil Y\n\n22) Trydnt: Trade B1 G1 Trydnt\n\twil: Sometime.Wednesday morning I'll be gone...and not back until hmmm tuesdee or Wednesday the following...time to burn!\n\n23) wil: B G1 Y3\n\n24) Trydnt: Build G2 Trydnt\n\tTrydnt: very jealous. I still haven't found a job so looks like I wont be able to make it to the UK burn in June. Ticket transfer window closes Wednesday :(\n\tTrydnt: which one is this one? PDF?\n\twil: Yeah, PDF... Send them a message, ask for a hardship.ticket, offer to ranger or dpw. Or whatever..exchange hours for.ticket?\n\n25) wil: B G2 Wil\n\n26) Trydnt: Sacrifice Y3 Trydnt\nMove B1 Trydnt B1\nMove B1 B1 Wil\nDiscover R1 B1 G3 Ohgeez3\n\n\twil: Nice\n\nHomeworlds Online (SDG# 34154)\nVariants: "Hard time"\nStarted: 2018.5.19, Ended: 2018.6.4\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B2 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 R1 Wil\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) wil: B R2 Wil\n\n8) Trydnt: Build R2 Trydnt\n\n9) wil: T R2 G2 Wil\n\n10) Trydnt: Discover R1 Trydnt G1 G1\n\n11) wil: B G1 Wil\n\n12) Trydnt: Build R2 Trydnt\n\n13) wil: T G1 Y1 Wil\n\n14) Trydnt: Trade R2 Y2 Trydnt\n\n15) wil: D R1 Wil G3 G3\n\n16) Trydnt: Build R2 Trydnt\n\n17) wil: B Y1 Wil\n\n18) Trydnt: Move Y2 Trydnt G1\n\n19) wil: D G2 Wil B3 B3\n\n20) Trydnt: Build G1 Trydnt\n\n21) wil: B G1 Wil\n\n22) Trydnt: Trade G1 B1 Trydnt\n\n23) wil: B G1 B3\n\n24) Trydnt: Build G2 Trydnt\n\n25) wil: M Y1 Wil B3\n\n26) Trydnt: Discover G2 Trydnt B1 B1\n\n27) wil: B Y1 Wil\n\n28) Trydnt: Trade G2 Y2 B1\n\n29) wil: S G3 Wil\nB G2 B3\nB G2 Wil\nB G3 Wil\n\n30) Trydnt: Discover R2 Trydnt B1 Bee1\n\n31) wil: D G2 Wil Y3 Y3\n\n32) Trydnt: Move B1 Trydnt G1\n\n33) wil: S Y1 Wil\nD G2 B3 Y1 Y1\n\n34) Trydnt: Build B2 G1\n\n35) wil: S G3 Wil\nB G3 Wil\nB Y2 Wil\nB Y3 B3\n\n36) Trydnt: Move B2 G1 G3\n\n37) wil: S Y1 B3\nD R1 G3 Y1 Why1\n\n38) Trydnt: Move Y2 B1 Y3\n\n39) wil: S G2 Y3\nB G2 Y1\nB R2 Why1\n\n40) Trydnt: Build R3 Trydnt\n\n41) wil: M R1 Why1 Trydnt\n\n42) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Trydnt\nPass\n\n43) wil: T G2 R2 B3\n\n44) Trydnt: Build R3 G1\n\n45) wil: S G3 Wil\nB G2 Y1\nB R3 Why1\nB G3 Wil\n\n46) Trydnt: Build B1 G3\n\n47) wil: M G2 Y1 Trydnt\n\n48) Trydnt: Sacrifice R1 Trydnt\nAttack G2 Trydnt\n\n49) wil: S Y2 Wil\nM G2 Y1 Trydnt\nM G2 Y1 Trydnt\nC Trydnt G\n\n50) Trydnt: Trade R3 G3 Trydnt\n\n51) wil: M R3 Why1 G3\n\n52) Trydnt: Sacrifice Y2 Y3\nDiscover B1 G3 G2 G2\nDiscover B2 G3 Y1 Y2\n\n53) wil: B G2 B3\n\n54) Trydnt: Build G2 Trydnt\n\n55) wil: S G3 Wil\nB G3 Wil\nB R1 Why1\nB R3 B3\n\n56) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B3 G2\nBuild B3 Y2\n\n57) wil: T R3 Y3 B3\n\n58) Trydnt: Sacrifice Y2 G1\nMove B3 G2 B3\nMove B1 G2 B3\n\n59) wil: S Y3 B3\nM Y3 B3 Bee1\nM G2 B3 Why1\nM G1 B3 Why1\n\n60) Trydnt: Sacrifice B2 Y2\nTrade G3 R3 Trydnt\nTrade B3 G3 B3\n\n61) wil: S R2 Why1\nA B1 B3\nA R2 Bee1\n\n62) Trydnt: Discover B3 Y2 B3 Bee3\n\n63) wil: S G3 Wil\nB G2 Why1\nB G3 Wil\nB Y1 Wil\n\n64) Trydnt: Sacrifice R1 G1\nAttack R2 B3\n\n65) wil: S G3 Wil\nB Y2 Wil\nB Y2 Bee1\nB G3 Wil\n\n66) Trydnt: Trade R3 Y3 G1\n\n67) wil: S G3 Wil\nB G3 Wil\nB R1 Bee1\nB R2 G3\n\n68) Trydnt: Build Y2 G1\n\n69) wil: S Y2 Wil\nM R2 Bee1 Trydnt\nM G1 Why1 Trydnt\n\n70) Trydnt: Move Y3 G1 Trydnt\n\n71) wil: S G2 Why1\nB R3 Trydnt\nB G2 Trydnt\n\n72) Trydnt: Sacrifice R3 Trydnt\nAttack R3 Trydnt\nAttack R2 Trydnt\nAttack G2 Trydnt\n\n73) wil: S G3 Wil\nB G3 Wil\nB R3 Why1\nB Y2 Wil\n\n74) Trydnt: Sacrifice Y3 Trydnt\nMove R2 Trydnt Why1\nMove R2 B3 Why1\nCatastrophe Why1 R\nDiscover G2 Trydnt R1 R1\n\n75) wil: S G3 Wil\nB G3 Wil\nB R2 Bee1\nB R2 Bee1\n\n76) Trydnt: Trade B3 Y3 Bee3\n\n77) wil: M R2 Bee1 Trydnt\n\n78) Trydnt: Attack R2 Trydnt\n\n79) wil: S Y2 Wil\nM R2 Bee1 Trydnt\nM R1 Bee1 Trydnt\nC Trydnt R\n\n80) Trydnt: Sacrifice Y3 Bee3\nMove G3 B3 Wil\nMove G2 R1 B3\nMove G2 B3 Wil\nCatastrophe Wil G\n\twil: Reminds me of playing games late into the night at whytestone...but your sun will be rising soon.\n\n81) wil: S G2 Why1\nB G1 Trydnt\nB G2 Trydnt\nC Trydnt G\n\n\nHomeworlds Online (SDG# 33906)\nVariants: "Unrated, Hard time"\nStarted: 2018.5.19, Ended: 2018.5.31\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B3 G2 R3\n\n2) Trydnt: Homeworld B2 G1 Y3\n\n3) wil: B R1 Wil\n\n4) Trydnt: Build Y1 Trydnt\n\n5) wil: T R1 G1 Wil\n\n6) Trydnt: Trade Y1 G1 Trydnt\n\n7) wil: B G2 Wil\n\n8) Trydnt: Build G2 Trydnt\n\n9) wil: T G1 Y1 Wil\n\n10) Trydnt: Trade G1 B1 Trydnt\n\n11) wil: B G1 Wil\n\n12) Trydnt: Build B1 Trydnt\n\n13) wil: T G1 B1 Wil\n\n14) Trydnt: Trade B1 R1 Trydnt\n\n15) wil: B R1 Wil\n\n16) Trydnt: Discover G2 Trydnt Y3 Y3\n\n17) wil: B G1 Wil\n\n18) Trydnt: Move B1 Trydnt Y3\n\n19) wil: D G2 Wil Y1 Y2\n\n20) Trydnt: Discover B1 Y3 Y1 Y1\n\n21) wil: B Y2 Wil\n\n22) Trydnt: Build Y2 Trydnt\n\n23) wil: D G2 Y2 Y3 Why3\n\n24) Trydnt: Discover Y2 Trydnt G3 G3\n\n25) wil: M Y2 Wil Y1\n\n26) Trydnt: Move B1 Y1 G3\n\n27) wil: M B1 Wil Y1\n\n28) Trydnt: Build B1 G3\n\n29) wil: M R1 Wil Y1\n\n30) Trydnt: Discover B1 G3 G1 G1\n\n31) wil: B G3 Why3\n\n32) Trydnt: Build G3 Y3\n\n33) wil: D G1 Wil Y1 Why1\n\n34) Trydnt: Sacrifice G3 Y3\nBuild G3 Y3\nBuild Y2 G3\nBuild B2 G1\n\n35) wil: S G3 Why3\nB G3 Why3\nB R1 Y1\nB R2 Y1\n\n36) Trydnt: Build R2 Trydnt\n\n37) wil: D R2 Y1 B3 B3\n\n38) Trydnt: Sacrifice G3 Y3\nBuild G3 Y3\nBuild B2 G1\nBuild B3 G3\n\n39) wil: M G2 Why3 Y1\n\n40) Trydnt: Sacrifice Y2 G3\nMove B1 G1 Wil\nMove G2 Y3 Why1\n\n41) wil: A B1 Wil\n\n42) Trydnt: Sacrifice Y2 G3\nMove B2 G1 Wil\nMove B2 G1 Wil\nCatastrophe Wil B\n\n43) wil: M G1 Why1 B3\n\n44) Trydnt: Build G1 Y3\n\n45) wil: B R2 Wil\n\n46) Trydnt: Sacrifice Y3 Trydnt\nMove G1 Y3 Wil\nMove G3 Y3 Wil\nMove G2 Why1 Wil\nCatastrophe Wil G\n\n\nHomeworlds Online (SDG# 34102)\nVariants: "Unrated"\nStarted: 2018.5.19, Ended: 2018.5.28\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34133)\nStarted: 2018.5.19, Ended: 2018.8.13\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n2) MobyNostromo: H Y1 G2 B3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B B1 Mobynostromo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) MobyNostromo: T B3 Y3 Mobynostromo\n\n7) Trydnt: Build Y2 Trydnt\n\n8) MobyNostromo: B Y2 Mobynostromo\n\n9) Trydnt: Discover Y1 Trydnt G2 G2\n\n10) MobyNostromo: D Y2 Mobynostromo B3 Azure\n\n11) Trydnt: Build G1 Trydnt\n\n12) MobyNostromo: B B1 Mobynostromo\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) MobyNostromo: T B1 G1 Mobynostromo\n\n15) Trydnt: Build G1 Trydnt\n\n16) MobyNostromo: B G1 Mobynostromo\n\n17) Trydnt: Discover Y2 Trydnt B2 B2\n\n18) MobyNostromo: M G1 Mobynostromo Azure\n\n19) Trydnt: Discover Y1 G2 G3 G3\n\n20) MobyNostromo: B G2 Azure\n\n21) Trydnt: Trade G1 R1 Trydnt\n\n22) MobyNostromo: D G2 Azure Y2 Blonde\n\n23) Trydnt: Build Y3 G3\n\n24) MobyNostromo: T Y3 R3 Mobynostromo\n\n25) Trydnt: Build Y3 G3\n\n26) MobyNostromo: B Y3 Azure\n\n27) Trydnt: Sacrifice B1 Trydnt\nTrade Y3 B3 G3\n\n28) MobyNostromo: B G1 Blonde\n\n29) Trydnt: Build R1 Trydnt\n\n30) MobyNostromo: S Y3 Azure\nM G1 Blonde G3\nM G2 Blonde G3\nM G1 Mobynostromo G3\nC G3 G\n\n31) Trydnt: Discover R1 Trydnt G2 G2\n\n32) MobyNostromo: B G1 Azure\n\n33) Trydnt: Move Y2 B2 Azure\n\n34) MobyNostromo: S Y2 Azure\nD G1 Azure Y2 Lemon\nM G1 Azure Lemon\n\n35) Trydnt: Move R1 Trydnt Lemon\n\n36) MobyNostromo: B B1 Mobynostromo\n\n37) Trydnt: Attack G1 Lemon\n\n38) MobyNostromo: D G1 Lemon B1 Sky\n\n39) Trydnt: Move R1 Lemon Sky\n\n40) MobyNostromo: B B2 Mobynostromo\n\n41) Trydnt: Attack G1 Sky\n\n42) MobyNostromo: T B2 G2 Mobynostromo\n\n43) Trydnt: Sacrifice G1 Sky\nBuild Y1 Azure\n\n44) MobyNostromo: D B1 Mobynostromo B3 Cobalt\n\n45) Trydnt: Trade Y1 G1 Azure\n\n46) MobyNostromo: T B1 G1 Cobalt\n\n47) Trydnt: Build G3 Azure\n\n48) MobyNostromo: B G3 Cobalt\n\n49) Trydnt: Build Y1 Azure\n\n50) MobyNostromo: T G2 Y2 Mobynostromo\n\n51) Trydnt: Discover Y1 Azure G2 Gee2\n\n52) MobyNostromo: M Y2 Mobynostromo Cobalt\n\n53) Trydnt: Sacrifice G3 Azure\nBuild G3 Azure\nBuild Y3 Gee2\nBuild Y3 Azure\n\n54) MobyNostromo: S G3 Cobalt\nB G3 Cobalt\nB R1 Mobynostromo\nB Y3 Cobalt\n\n55) Trydnt: Trade Y2 R2 Azure\n\n56) MobyNostromo: M R1 Mobynostromo Cobalt\n\n57) Trydnt: Sacrifice G3 Azure\nBuild G3 Azure\nBuild Y2 Azure\nBuild R2 Sky\n\n58) MobyNostromo: B R2 Cobalt\n\n59) Trydnt: Sacrifice G3 Azure\nBuild G3 Azure\nBuild R3 Azure\nBuild R3 G2\n\n60) MobyNostromo: S G3 Cobalt\nB G3 Cobalt\nB B1 Mobynostromo\nB B2 Mobynostromo\n\n61) Trydnt: Move G3 Azure Mobynostromo\n\n62) MobyNostromo: A G3 Mobynostromo\n\n63) Trydnt: Sacrifice Y3 Azure\nMove G1 Azure Mobynostromo\nMove G1 Lemon Azure\nMove G1 Azure Mobynostromo\nCatastrophe Mobynostromo G\n\n64) MobyNostromo: S Y3 Cobalt\nM B1 Mobynostromo Azure\nM B1 Mobynostromo Azure\nM B2 Mobynostromo Azure\nC Azure B\n\n65) Trydnt: Sacrifice Y1 Gee2\nMove R3 G2 Mobynostromo\n\n66) MobyNostromo: A R3 Mobynostromo\n\n67) Trydnt: Sacrifice Y3 Gee2\nMove R1 Sky G2\nMove R1 G2 Mobynostromo\nMove R1 G2 Mobynostromo\nCatastrophe Mobynostromo R\n\n\nHomeworlds Online (SDG# 34165)\nVariants: "Hard time"\nStarted: 2018.5.23, Ended: 2018.6.6\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 Y1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\twil: And I'll be out of service for too many days to start thise other games... Got this one up to 10 day response\n\n7) wil: B Y2 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: T Y1 R1 Wil\n\n10) Trydnt: Trade Y1 R1 Trydnt\n\n11) wil: B Y1 Wil\n\n12) Trydnt: Build Y1 Trydnt\n\n13) wil: T Y1 B1 Wil\n\n14) Trydnt: Trade Y1 B1 Trydnt\n\n15) wil: D B1 Wil G3 G3\n\n16) Trydnt: Discover B1 Trydnt G1 G1\n\n17) wil: B Y1 Wil\n\n18) Trydnt: Build Y1 Trydnt\n\n19) wil: M Y1 Wil G3\n\n20) Trydnt: Move Y1 Trydnt G1\n\n21) wil: D Y2 Wil B3 B3\n\n22) Trydnt: Build G1 Trydnt\n\n23) wil: B G1 Wil\n\n24) Trydnt: Build G2 Trydnt\n\n25) wil: M G1 Wil B3\n\n26) Trydnt: Discover G2 Trydnt B1 B1\n\n27) wil: B G2 Wil\n\n28) Trydnt: Build G2 B1\n\n29) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB B2 G3\n\n30) Trydnt: Move R1 Trydnt B1\n\n31) wil: M R1 Wil B3\n\n32) Trydnt: Build B2 G1\n\n33) wil: D B1 G3 R2 R2\n\n34) Trydnt: Sacrifice Y2 Trydnt\nDiscover G2 B1 B3 Bee3\nDiscover B1 G1 Y3 Y3\n\n35) wil: S G3 Wil\nB R2 Wil\nB G3 Wil\nB R3 B3\n\n36) Trydnt: Sacrifice G2 Bee3\nBuild B3 G1\nBuild R3 B1\n\n37) wil: S G3 Wil\nB G2 B3\nB R3 B3\nB G3 Wil\n\twil: I've allowed.the most.to be construed\n\n38) Trydnt: Trade R3 Y3 B1\n\n39) wil: T R3 Y3 B3\n\n40) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R3 B1\nBuild Y2 B1\n\n41) wil: S Y1 G3\nD G2 B3 Y1 Y1\n\n42) Trydnt: Move Y3 B1 Trydnt\n\n43) wil: M R3 B3 Y1\n\n44) Trydnt: Sacrifice Y3 Trydnt\nMove Y2 B1 B3\nMove Y1 G1 B3\nCatastrophe B3 Y\nMove R3 B1 B3\n\n45) wil: S G1 B3\nB R3 Y1\n\n46) Trydnt: Attack R1 B3\n\n47) wil: M R3 Y1 Y3\n\tTrydnt: wow that was close\n\n48) Trydnt: Sacrifice B1 Y3\nTrade B3 Y3 G1\n\n49) wil: M R3 Y3 B1\n\n50) Trydnt: Sacrifice G2 B1\nBuild Y1 G1\nBuild Y2 G1\n\n51) wil: T R2 Y2 Wil\n\n52) Trydnt: Move Y1 G1 B3\n\n53) wil: B G1 Y1\n\n54) Trydnt: Move Y3 G1 Trydnt\n\n55) wil: M G1 Y1 Trydnt\n\n56) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 B3\nBuild Y3 G1\nBuild Y3 Trydnt\n\n57) wil: S G3 Wil\nB G2 Trydnt\nB G3 Wil\nB G3 Y1\n\n58) Trydnt: Attack G2 Trydnt\n\n59) wil: S G3 Wil\nB G3 Wil\nB B1 R2\nB B3 G3\n\n60) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild R2 B1\n\n61) wil: S G2 Y1\nB G2 Trydnt\nC Trydnt G\nB G1 Y1\n\n62) Trydnt: Move R1 B3 B1\nCatastrophe B1 R\n\n63) wil: D Y2 Wil R3 R3\n\n64) Trydnt: Build B1 G1\n\n65) wil: M G3 Y1 R3\n\n66) Trydnt: Trade Y2 G2 B3\n\n67) wil: B Y2 R3\n\n68) Trydnt: Sacrifice Y2 G1\nMove B1 G1 G3\nMove B2 G1 G3\nCatastrophe G3 B\n\n69) wil: D Y2 R3 G1 Gee1\n\n70) Trydnt: Sacrifice G2 B3\nBuild Y2 B3\nBuild R1 B3\n\n71) wil: S G3 Wil\nB G2 Y1\nB G2 Y1\nB G3 Wil\n\n72) Trydnt: Trade R3 G3 B3\n\n73) wil: S G3 Wil\nB G3 Wil\nB R1 Y1\nB B1 R2\n\n74) Trydnt: Move Y3 G1 R2\n\n75) wil: S G3 Wil\nB G1 R3\nB B2 R2\nB G3 Wil\nC R2 B\n\n76) Trydnt: Sacrifice Y3 R2\nMove Y3 Trydnt Y1\nMove Y1 B3 Y1\nMove Y2 B3 Y1\nCatastrophe Y1 Y\n\n77) wil: D G1 R3 B1 B1\n\n78) Trydnt: Build R1 B3\n\n79) wil: B G1 B1\n\n80) Trydnt: Trade R1 Y1 B3\n\n81) wil: S G3 Wil\nB G2 Wil\nB G2 R3\nB G3 Wil\n\n82) Trydnt: Build R1 B3\n\n83) wil: B R2 Wil\n\n84) Trydnt: Discover R1 B3 Y1 Y1\n\n85) wil: M R2 Wil B3\n\n86) Trydnt: Attack R2 B3\n\n87) wil: S G3 Wil\nB G3 Wil\nB Y2 R3\nB Y3 Gee1\n\twil: One of your dang 4 hour games\n\n88) Trydnt: Build Y3 B3\n\n89) wil: S Y2 R3\nM Y2 Gee1 Trydnt\nM Y3 Gee1 Trydnt\n\n90) Trydnt: Sacrifice R2 B3\nAttack Y2 Trydnt\nAttack Y3 Trydnt\n\n91) wil: S G3 Wil\nB G1 B1\nB G3 Wil\nB Y2 R3\n\n92) Trydnt: Sacrifice Y2 Trydnt\nMove G3 B3 Wil\nMove Y3 B3 Wil\nCatastrophe Wil G\n\n\twil: And now I can sleep\n\nHomeworlds Online (SDG# 34158)\nStarted: 2018.5.23, Ended: 2018.8.30\nParticipants: silversliver (S), MobyNostromo (N)\nWinner: silversliver\n\n1) MobyNostromo: H Y1 B2 G3\n\n2) silversliver: Homeworld B3 G1 R3\n\tMobyNostromo: Have fun!!\n\n3) MobyNostromo: B G1 Mobynostromo\n\tsilversliver: You too.\n\n4) silversliver: Build R1 Silversliver\n\n5) MobyNostromo: T G1 Y1 Mobynostromo\n\n6) silversliver: Trade R1 G1 Silversliver\n\n7) MobyNostromo: D Y1 Mobynostromo B3 Sapphire\n\n8) silversliver: Build R1 Silversliver\n\n9) MobyNostromo: T Y1 G1 Sapphire\n\n10) silversliver: Trade R1 Y1 Silversliver\n\n11) MobyNostromo: B G2 Sapphire\n\n12) silversliver: Discover G1 Silversliver Y2 Sys1\n\n13) MobyNostromo: T G2 Y2 Sapphire\n\n14) silversliver: Build G2 Sys1\n\n15) MobyNostromo: B G2 Mobynostromo\n\n16) silversliver: Build Y1 Silversliver\n\n17) MobyNostromo: S G3 Mobynostromo\nB G2 Sapphire\nB G3 Mobynostromo\nB G3 Mobynostromo\n\n\n18) silversliver: Sacrifice Y1 Silversliver\nMove G2 Sys1 Sapphire\n\n19) MobyNostromo: T G3 R3 Mobynostromo\n\n20) silversliver: Trade G2 R2 Sapphire\n\n21) MobyNostromo: B R1 Mobynostromo\n\n22) silversliver: Attack G2 Sapphire\n\n23) MobyNostromo: S R1 Mobynostromo\nA R2 Sapphire\n\n24) silversliver: Sacrifice G2 Sapphire\nBuild G2 Sys1\nBuild R1 Silversliver\n\n25) MobyNostromo: B R1 Sapphire\n\n26) silversliver: Trade R1 B1 Silversliver\n\n27) MobyNostromo: S G3 Mobynostromo\nB G2 Mobynostromo\nB G3 Mobynostromo\nB G3 Sapphire\n\n28) silversliver: Sacrifice B1 Silversliver\nTrade G2 Y2 Sys1\n\n29) MobyNostromo: D G2 Mobynostromo B3 Azure\n\n30) silversliver: Build G2 Sys1\n\n31) MobyNostromo: D G3 Sapphire B2 Cobalt\n\n32) silversliver: Move G2 Sys1 Azure\n\n33) MobyNostromo: S R1 Sapphire\nA G2 Azure\n\n34) silversliver: Build G3 Sys1\n\n35) MobyNostromo: S G3 Mobynostromo\nB G3 Cobalt\nB Y1 Sapphire\nB R1 Sapphire\n\n36) silversliver: Sacrifice G3 Sys1\nBuild G3 Sys1\nBuild Y3 Silversliver\nPass\n\n37) MobyNostromo: M R1 Sapphire Cobalt\n\n38) silversliver: Sacrifice Y2 Sys1\nMove G1 Sys1 Azure\nMove G1 Azure Mobynostromo\n\n39) MobyNostromo: A G1 Mobynostromo\n\n40) silversliver: Trade Y1 B1 Silversliver\n\n41) MobyNostromo: D G1 Mobynostromo Y3 Sand\n\n42) silversliver: Move B1 Silversliver Sys1\n\n43) MobyNostromo: M Y1 Sapphire Cobalt\n\n44) silversliver: Build R1 Silversliver\n\n45) MobyNostromo: S G3 Cobalt\nB Y1 Sapphire\nB Y2 Cobalt\nB Y3 Sapphire\n\n46) silversliver: Trade R1 B1 Silversliver\n\n47) MobyNostromo: S G2 Azure\nB G2 Cobalt\nB G3 Sand\n\n48) silversliver: Move B1 Sys1 Azure\n\n49) MobyNostromo: S Y2 Sapphire\nM G1 Sapphire Sys1\nM G1 Sand Sys1\n\n50) silversliver: Move B1 Silversliver Sys1\n\n51) MobyNostromo: S Y3 Sapphire\nM G1 Sys1 Silversliver\nM G1 Sys1 Silversliver\nM G2 Cobalt Silversliver\nC Silversliver G\n\n52) silversliver: Build B1 Sys1\n\n53) MobyNostromo: M G3 Sand Cobalt\n\n54) silversliver: Move B1 Sys1 Azure\n\n55) MobyNostromo: S Y2 Cobalt\nM G3 Cobalt Silversliver\nM G3 Cobalt Silversliver\n\n56) silversliver: Sacrifice R3 Silversliver\nAttack G3 Silversliver\nAttack G3 Silversliver\nPass\n\n57) MobyNostromo: S R2 Sapphire\nA B1 Azure\nA B1 Azure\n\n58) silversliver: Move B1 Sys1 Azure\nCatastrophe Azure Blue\n\n59) MobyNostromo: B G1 Mobynostromo\n\n60) silversliver: Trade G3 R3 Silversliver\n\n61) MobyNostromo: M G2 Mobynostromo Sapphire\n\n62) silversliver: Build G1 Silversliver\n\n63) MobyNostromo: B R1 Mobynostromo\n\n64) silversliver: Trade G1 B1 Silversliver\n\n65) MobyNostromo: B G1 Mobynostromo\n\n66) silversliver: Move B1 Silversliver Sys1\n\n67) MobyNostromo: M R1 Mobynostromo Sapphire\n\n68) silversliver: Build B1 Sys1\n\n69) MobyNostromo: B Y2 Sapphire\n\n70) silversliver: Discover B1 Sys1 Y3 Sys2\n\n71) MobyNostromo: D Y1 Sapphire G1 Verte\n\n72) silversliver: Sacrifice G3 Sys1\nBuild B1 Sys2\nBuild B2 Sys2\nBuild B3 Sys1\n\n73) MobyNostromo: S G2 Sapphire\nB Y2 Sapphire\nB Y3 Cobalt\n\n74) silversliver: Sacrifice Y3 Silversliver\nMove B1 Sys2 Mobynostromo\nMove B1 Sys2 Mobynostromo\nMove B2 Sys2 Mobynostromo\nCatastrophe Mobynostromo Blue\n\n75) MobyNostromo: T Y1 B1 Cobalt\n\n76) silversliver: Build R1 Silversliver\n\n\nHomeworlds Online (SDG# 34118)\nStarted: 2018.5.23, Ended: 2018.7.11\nParticipants: ts52 (S), silversliver (N)\nWinner: ts52\n\n1) silversliver: Homeworld R2 G1 B3\n\n2) ts52: Homeworld B1 Y3 G3\n\n3) silversliver: Build B1 Silversliver\n\n4) ts52: Build G1 Ts52\n\n5) silversliver: Trade B1 Y1 Silversliver\n\n6) ts52: Trade G1 B1 Ts52\n\n7) silversliver: Build Y1 Silversliver\n\n8) ts52: Build G1 Ts52\n\n9) silversliver: Discover Y1 Silversliver B3 Sys1\n\n10) ts52: Build G1 Ts52\n\n11) silversliver: Build Y1 Silversliver\n\n12) ts52: Discover G1 Ts52 B2 Gonzo\n\n13) silversliver: Move Y1 Silversliver Sys1\n\n14) ts52: Build G2 Gonzo\n\n15) silversliver: Build Y2 Silversliver\n\n16) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G2 Ts52\nBuild G3 Ts52\n\n17) silversliver: Move Y1 Sys1 Gonzo\n\n18) ts52: Trade G2 R2 Gonzo\n\n19) silversliver: Move Y1 Gonzo Ts52\n\n20) ts52: Trade G2 R2 Ts52\n\n21) silversliver: Sacrifice Y2 Silversliver\nMove Y1 Sys1 Gonzo\nMove Y1 Gonzo Ts52\n\n22) ts52: Attack Y1N Ts52\n\n23) silversliver: Build Y2 Silversliver\n\n24) ts52: Move Y1 Ts52 Gonzo\n\n25) silversliver: Discover Y1 Silversliver B3 Sys2\n\n26) ts52: Build Y2 Gonzo\n\n27) silversliver: Trade Y1 B1 Sys2\n\n28) ts52: Discover B1 Ts52 G2 Kermit\n\n29) silversliver: Build B2 Silversliver\n\n30) ts52: Move R2 Gonzo Sys2\n\n31) silversliver: Sacrifice Y2 Silversliver\nMove B1 Sys2 Gonzo\nMove B1 Gonzo Ts52\n\n32) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R1 Sys2\n\n33) silversliver: Trade Y1 R1 Ts52\n\n34) ts52: Attack R1N Ts52\n\n35) silversliver: Trade B2 Y2 Silversliver\n\n36) ts52: Move G2 Gonzo Sys2\n\n37) silversliver: Build B2 Silversliver\n\n38) ts52: Attack B1N Ts52\n\n39) silversliver: Discover B2 Silversliver Y3 Sys3\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Sys2\nBuild G3 Gonzo\n\n41) silversliver: Build Y1 Silversliver\n\n42) ts52: Move Y2 Gonzo Sys2\n\n43) silversliver: Move Y1 Silversliver Sys3\n\n44) ts52: Sacrifice G3 Sys2\nBuild G3 Sys2\nBuild R1 Ts52\nBuild R3 Sys2\n\n45) silversliver: Move B2 Sys3 Gonzo\n\n46) ts52: Sacrifice Y2 Sys2\nMove G3 Sys2 Silversliver\nMove R3 Sys2 Silversliver\n\n47) silversliver: Attack R3 Silversliver\n\n48) ts52: Sacrifice R2 Sys2\nAttack R3N Silversliver\nAttack B3N Silversliver\n\n49) silversliver: Trade B2 R2 Gonzo\n\n50) ts52: Attack Y2N Silversliver\n\tts52: Thanks for the game.\n\tsilversliver: gg\n\n\nHomeworlds Online (SDG# 34159)\nStarted: 2018.5.28, Ended: 2018.6.12\nParticipants: Felix (S), Thorolf (N)\nWinner: Felix\n\n1) Thorolf: Homeworld Y3 B1 G3\n\n2) Felix: H R2 B3 G3\n\n3) Thorolf: Build G1 Thorolf\n\n4) Felix: B G1 Felix\n\n5) Thorolf: Discover G1 Thorolf B2 Alpha\n\tFelix: Hello! First game?\n\n6) Felix: T G1 Y1 Felix\n\tThorolf: kind of, I have a few going right now\n\n7) Thorolf: Build G1 Thorolf\n\n8) Felix: Build Y1 Felix\n\n9) Thorolf: Move G1 Thorolf Alpha\n\n10) Felix: D Y1 Felix B1 Out\n\n11) Thorolf: Build G1 Thorolf\n\n12) Felix: B G2 Felix\n\n13) Thorolf: Build G2 Alpha\n\n14) Felix: M G2 Felix Out\n\n15) Thorolf: Move G3 Thorolf Alpha\n\n16) Felix: B G2 Felix\n\tFelix: I think you should take that move back. I can call catastrophe on the alpha system right now\n\n17) Thorolf: Trade G3 R3 Alpha\n\n18) Felix: Sacrifice G3 Felix\nBuild G3 Out\nBuild G3 Out\nBuild G3 Felix\n\n19) Thorolf: Trade G2 Y2 Alpha\n\n20) Felix: T G3 R3 Out\n\n21) Thorolf: Build G2 Thorolf\n\n22) Felix: M G2 Out Alpha\n\n23) Thorolf: Attack G2 Alpha\n\n24) Felix: Build G3 Out\n\n25) Thorolf: Discover Y2 Alpha B1 Delta\n\n26) Felix: D R3 Out Y2 Chomp\n\n\tThorolf: gg\n\nHomeworlds Online (SDG# 34018)\nVariants: "Unrated"\nStarted: 2018.5.29, Ended: 2018.6.2\nParticipants: Thorolf (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Thorolf: Homeworld B3 R1 G3\n\tTrydnt: Welcome and good luck!\n\tThorolf: Thanks, you too\n\n3) Trydnt: Build G1 Trydnt\n\n4) Thorolf: Build G1 Thorolf\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Thorolf: Trade G1 Y1 Thorolf\n\n7) Trydnt: Build R1 Trydnt\n\n8) Thorolf: Discover Y1 Thorolf G2 Alpha\n\n9) Trydnt: Build R2 Trydnt\n\n10) Thorolf: Build G1 Thorolf\n\n11) Trydnt: Discover R1 Trydnt Y3 Y3\n\tThorolf: i’m screwed\n\tThorolf: i didn’t know you needed another ship of the same color in a system to build a ship\n\tTrydnt: you can take that move back\n\tTrydnt: you should either grow a g1 at home so after you trade the g3 for a red one you can grow another. Or keep growing the yellows since you need them to kill me eventually anyway and you can potentially trade them for reds. Your homeworld is protected by the red star for now so you don't have to worry about me moving in and taking your ships... yet :)\n\tThorolf: thanks\n\n12) Thorolf: Trade G3 Y3 Thorolf\n\n13) Trydnt: Build R2 Trydnt\n\n14) Thorolf: Move Y3 Thorolf Alpha\n\n15) Trydnt: Trade R2 Y2 Trydnt\n\n16) Thorolf: Move Y3 Alpha Thorolf\n\tTrydnt: you don't wanna move your large ship out of your homeworld or else I can move in and take over quite easily\n\tTrydnt: it also usually doesn't make much sense to double up a color on a star as that limits your capacity for growth. you want diverse portfolios of ships on each star preferably having one of each color (usually excluding the star color so you don't risk me blowing the star up)\n\n17) Trydnt: Discover Y2 Trydnt G3 G3\n\n18) Thorolf: Build Y1 Alpha\n\n19) Trydnt: Build Y2 G3\n\n20) Thorolf: Build Y2 Alpha\n\n21) Trydnt: Move Y2 G3 Alpha\nCatastrophe Alpha Y\n\n22) Thorolf: Build G1 Thorolf\n\n23) Trydnt: Build Y1 G3\n\n24) Thorolf: Trade G1 Y1 Thorolf\n\n25) Trydnt: Build Y2 G3\n\n26) Thorolf: Discover Y1 Thorolf B2 Lambda\n\n27) Trydnt: Discover Y2 G3 G2 G2\n\n28) Thorolf: Build Y2 Thorolf\n\n29) Trydnt: Build Y3 G2\n\n30) Thorolf: Trade Y3 R3 Thorolf\n\n31) Trydnt: Discover R2 Trydnt Y3 Why3\n\n32) Thorolf: Trade Y1 G1 Lambda\n\n33) Trydnt: Build Y1 G3\n\n34) Thorolf: Build R2 Thorolf\n\n35) Trydnt: Sacrifice Y2 G3\nMove R1 Y3 G2\nMove R1 G2 Thorolf\nCatastrophe Thorolf R\n\n36) Thorolf: Trade Y2 R2 Thorolf\n\n37) Trydnt: Move Y3 G2 Thorolf\n\n38) Thorolf: Build G1 Lambda\n\n39) Trydnt: Sacrifice R2 Why3\nAttack R2 Thorolf\nAttack G1 Thorolf\n\n\nHomeworlds Online (SDG# 34170)\nVariants: "Unrated"\nStarted: 2018.5.29, Ended: 2018.5.29\nParticipants: Thorolf (S), dlwillson (N)\nWinner: Thorolf\n\n\nHomeworlds Online (SDG# 34155)\nVariants: "Hard time"\nStarted: 2018.5.29, Ended: 2018.5.30\nParticipants: wil (S), Thorolf (N)\nWinner: wil\n\n1) Thorolf: Homeworld G3 R1 Y3 *\n\n2) wil: H Y2 B1 G3\n\n3) Thorolf: Discover Y3 Thorolf B2 Epsilon\n\twil: New to hw?\n\tThorolf: yep\n\tThorolf: whoops\n\twil: Ya gotta keep the homeowrld occupied... Matter o fact best to always keep a big one at home to protect your land...\n\n\nHomeworlds Online (SDG# 34179)\nVariants: "Hard time"\nStarted: 2018.5.29, Ended: 2018.6.8\nParticipants: Thorolf (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) Thorolf: Homeworld B1 Y2 G3\n\n3) wil: B G1 Wil\n\n4) Thorolf: Build G1 Thorolf\n\n5) wil: T G1 B1 Wil\n\n6) Thorolf: Discover G1 Thorolf B3 Gamma\n\twil: Welcome to sdg, are you familiar with this game? Do you have pyramids at home?\n\n7) wil: B B1 Wil\n\tThorolf: I ordered some yesterday, and I know how to play, but I don't have much experience\n\twil: I learned by losing... A lot! Would you like tips? Or just try to work thru? Did you order pyramid arcade?\n\tThorolf: Tips would be good, and no, just 3 rainbow stashes\n\twil: Whenever you buy more PA is the best deal...77 bucks, 90 pyramids and rules, boards, dice for 22 games\n\twil: Best deal at beginning is to copycat other player to insure they don't monopolize an economy and block you out of blue for instance...which I just may do. Would you like to watch what happens or back up?\n\tThorolf: I'll see what happens\n\n8) Thorolf: Build G1 Gamma\n\n9) wil: D B1 Wil Y1 Y1\n\n10) Thorolf: Build G1 Gamma\n\n11) wil: B B2 Wil\n\n12) Thorolf: Trade G1 Y1 Gamma\n\n13) wil: D B1 Wil G1 G1\n\n14) Thorolf: Discover Y1 Gamma G2 Zeta\n\n15) wil: S G3 Wil\nB B2 G1\nB B2 Y1\nB B3 Wil\n\twil: You've just ventured into what we call 'no man's land' usually you always want to head toward your opponent...moving ships closer to an attack... The 2 size star is two steps away from both yours and mine\n\n16) Thorolf: Build G2 Gamma\n\n17) wil: T B3 G3 Wil\n\n18) Thorolf: Trade G2 R2 Gamma\n\n19) wil: B B3 G1\n\n20) Thorolf: Build G2 Thorolf\n\n21) wil: Trade B3 R3 G1\n\n22) Thorolf: Trade G2 R2 Thorolf\n\n23) wil: B B3 G1\n\n24) Thorolf: Build G2 Thorolf\n\n25) wil: T B3 Y3 G1\n\n26) Thorolf: Trade G3 R3 Thorolf\n\twil: The monopoly gives me the ability of a queen factory\n\n27) wil: B B3 G1\n\n28) Thorolf: Move R3 Thorolf Gamma\n\n29) wil: S Y3 G1\nM B3 G1 Gamma\nD R3 G1 Y3 Y3\nM B3 Gamma Thorolf\n\twil: Oops?\n\twil: You just left your homworld vulnerable for attack\n\twil: I'll give it a bit and and then assume you don't want to back it up...but one should always be careful not having a 3 in your hw \n\n30) Thorolf: Trade R3 Y3 Gamma\n\n31) wil: Sacrifice R3 Y3\nAttack R2 Thorolf\nAttack G2 Thorolf\nPass\n\twil: Lol, and then I did a silly move.. Ah, the value of moving the coin\n\n\tThorolf: GG\n\nHomeworlds Online (SDG# 34110)\nVariants: "Hard time"\nStarted: 2018.5.30, Ended: 2018.6.1\nParticipants: Thorolf (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 R2 G3\n\n2) Thorolf: Homeworld B2 Y1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Thorolf: Build G1 Thorolf\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Thorolf: Trade G3 R3 Thorolf\n\tTrydnt: in the early game you'll often wanna copy what you opponent does. In this case I took the yellow because I need yellow and also there are only two of the y1's in there. That means if you don't take the other one I'll grow it on my next turn and monopolize the yellow and you will struggle to get into the yellow economy.\n\n7) Trydnt: Build Y1 Trydnt\n\n8) Thorolf: Build G1 Thorolf\n\n9) Trydnt: Build Y2 Trydnt\n\n10) Thorolf: Discover G1 Thorolf Y3 Sigma\n\n11) Trydnt: Discover Y1 Trydnt R1 R1\n\n12) Thorolf: Move G1 Thorolf Sigma\n\n13) Trydnt: Build Y2 Trydnt\n\tTrydnt: once again I'll caution you against putting two of the same color ships on a star like that without a really good reason. you already have a green one there. adding another green one to that star gives you no added abilities and since you don't have any blue there you can't swap it for something that does. it also limits the amount of other ships you'll be able to grow on that star as one more and you're in serious danger of my blowing it up.\n\n14) Thorolf: Discover G1 Sigma B1 Kappa\n\n15) Trydnt: Move Y2 Trydnt Kappa\n\n16) Thorolf: Build G1 Kappa\n\n17) Trydnt: Trade Y2 R2 Kappa\n\n18) Thorolf: Build G2 Kappa\n\n19) Trydnt: Attack G2 Kappa\n\n20) Thorolf: Trade G1 R1 Kappa\n\n21) Trydnt: Attack R1 Kappa\n\n22) Thorolf: Discover R3 Thorolf G3 Delta\n\tThorolf: shit\n\n\nHomeworlds Online (SDG# 34186)\nStarted: 2018.6.2, Ended: 2018.6.3\nParticipants: moverman (S), AstroPrincess (N)\nWinner: AstroPrincess\n\n1) AstroPrincess: Homeworld B3 R1 G3\n\n2) moverman: Homeworld Y3 B2 G3\n\n3) AstroPrincess: Build G1 Astroprincess (n)\n\n4) moverman: Build G1 Moverman\n\n\n5) AstroPrincess: Trade G1 Y1 Astroprincess (n)\n\n6) moverman: Discover G1 Moverman R1 Htns\n\n7) AstroPrincess: Build Y1 Astroprincess (n)\n\tmoverman: burned my fingers opening the lid to the strawberry jam canning bath...\n\n8) moverman: Build G1 Moverman\n\n9) AstroPrincess: Discover Y1 Astroprincess G2 Steven\n\tAstroPrincess: ouch!\n\n10) moverman: Trade G1 R1 Moverman\n\n11) AstroPrincess: Build Y1 Steven\n\n12) moverman: Build R2 Moverman\n\n13) AstroPrincess: Build Y2 Astroprincess\n\n14) moverman: Move R2 Moverman Htns\n\n15) AstroPrincess: Trade Y2 R2 Astroprincess\n\n16) moverman: Sacrifice G3 Moverman\nBuild G1 Htns\nBuild R2 Moverman\nBuild R3 Htns\n\tAstroPrincess: You're right about the Sacrifice rules. We have been doing it wrong, but I think it was about even because I don't think we were using the ability of the sacrificed ship in a system in which we didn't already have that ability\n\n17) AstroPrincess: Build R3 Astroprincess\n\n18) moverman: Trade R2 Y2 Moverman\n\tmoverman: I think our mistaken approach was quite a bit more powerful - being able to do several different things with the same ship, is much stronger: move, trade, attack, with one ship, for example. But still: the rule was the same for both of us, so it all works out in the wash. I think the real rule makes the strategy a bit more interesting.\n\n19) AstroPrincess: Move R3 Astroprincess Steven\n\n20) moverman: Move Y2 Moverman Htns\n\n21) AstroPrincess: Build R2 Steven\n\n22) moverman: Move R3 Htns Moverman\n\tAstroPrincess: I keep starting to type grow for build lol\n\n23) AstroPrincess: Move R3 Steven Htns\n\n24) moverman: Sacrifice Y2 Htns\nMove G1 Htns Moverman\nMove G1 Htns Steven\n\n25) AstroPrincess: Attack G1 Steven\n\n26) moverman: Move R1 Moverman Htns\nCatastrophe Htns Red\n\n27) AstroPrincess: Discover Y1 Steven R1 Ds9\n\n28) moverman: Build G1 Moverman\n\n29) AstroPrincess: Move G1 Steven Ds9\n\n30) moverman: Trade G1 B1 Moverman\n\n31) AstroPrincess: Build Y2 Ds9\n\n32) moverman: Trade R3 Y3 Moverman\n\n33) AstroPrincess: Move Y1 Ds9 Moverman\n\n34) moverman: Move Y3 Moverman Ds9\n\n35) AstroPrincess: Move Y2 Ds9 Moverman\n\n36) moverman: Attack G1 Ds9\n\n37) AstroPrincess: Trade Y2 R2 Moverman\n\n38) moverman: Move Y3 Ds9 Moverman\n\n39) AstroPrincess: Sacrifice G3 Astroprincess\nBuild Y2 Moverman\nBuild Y2 Astroprincess\nBuild Y2 Steven\nCatastrophe Moverman Y\n\tmoverman: Aaaagh...\n\n40) moverman: Build G1 Moverman\n\tAstroPrincess: Wuahahahaha!\n\n41) AstroPrincess: Sacrifice R2 Astroprincess\nAttack G1 Moverman\nAttack G1 Moverman\n\n\nHomeworlds Online (SDG# 34161)\nVariants: "Unrated"\nStarted: 2018.6.2, Ended: 2018.6.14\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) Felix: H R2 B3 G3\n\n3) Trydnt: Build G1 Trydnt\n\tFelix: Hello again! Have fun!\r\n\n\tTrydnt: well met fellow astral traveler. Win or lose I always have fun. good luck!\n\n4) Felix: B G1 Felix\n\n5) Trydnt: Trade G1 R1 Trydnt\n\tFelix: That the spirit! Some folks take this game too seriously\n\n6) Felix: T G1 R1 Felix\n\n7) Trydnt: Build G1 Trydnt\n\n8) Felix: Build G1 Felix\n\n9) Trydnt: Trade G1 Y1 Trydnt\n\n10) Felix: T G1 Y1 Felix\n\n11) Trydnt: Build G1 Trydnt\n\n12) Felix: Build G1 Felix\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) Felix: Trade G1 B1 Felix\n\n15) Trydnt: Build G1 Trydnt\n\n16) Felix: B Y1 Felix\n\n17) Trydnt: Build Y2 Trydnt\n\n18) Felix: D Y1 Felix B1 Opus\n\n19) Trydnt: Discover Y2 Trydnt R1 R1\n\n20) Felix: B Y2 Felix\n\n21) Trydnt: Sacrifice G1 Trydnt\nBuild Y3 R1\n\n22) Felix: Discover Y1 Felix G1 Oop\n\n23) Trydnt: Sacrifice Y1 Trydnt\nDiscover Y2 R1 Y3 Y3\n\n24) Felix: Move B1 Felix Oop\n\n25) Trydnt: Build G1 Trydnt\n\n26) Felix: B B2 Oop\n\n27) Trydnt: Build R2 Trydnt\n\n28) Felix: Move B2 Oop Trydnt\n\n29) Trydnt: Move B1 Trydnt R1\n\n30) Felix: Build B2 Oop\n\n31) Trydnt: Move R2 Trydnt Opus\n\n32) Felix: Sacrifice G3 Felix\nBuild Y1 Oop\nBuild Y3 Felix\nBuild B2 Trydnt\n\n33) Trydnt: Attack Y1 Opus\n\n34) Felix: Sacrifice Y2 Felix\nMove B1 Oop Trydnt\nMove Y1 Oop Trydnt\nCatastrophe Trydnt Blue\n\n35) Trydnt: Sacrifice Y2 Y3\nMove Y3 R1 Felix\nMove Y1 Opus Felix\n\n36) Felix: Attack Y3 Felix\n\n37) Trydnt: Sacrifice G1 Trydnt\nBuild Y2 Felix\nCatastrophe Felix Y\n\n38) Felix: Build Y1 Oop\n\n39) Trydnt: Attack Y1 Trydnt\n\n40) Felix: Move Y1 Oop Trydnt\n\n41) Trydnt: Sacrifice Y1 Trydnt\nMove R2 Opus Felix\n\n42) Felix: Trade B2 G2 Oop\n\tFelix: Ooh, great move!\n\n43) Trydnt: Attack R1 Felix\n\tTrydnt: Thanks! I thought so haha never sure in these games if the other person has seen it yet and are just playing it out to make it close/maybe scrape a win off a mistake or if they haven't seen it til it happens\n\tFelix: Nope, I just missed it! Great game.\n\n\nHomeworlds Online (SDG# 34185)\nVariants: "Unrated"\nStarted: 2018.6.2, Ended: 2018.6.2\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34189)\nVariants: "Hard time"\nStarted: 2018.6.3, Ended: 2018.7.2\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) Felix: H B1 Y2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Interesting opening!\n\n4) Felix: Build G1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: T G1 B1 Felix\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) Felix: Build B1 Felix\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) Felix: D B1 Felix Y3 Out\n\n11) Draw5PlayAll: Discover Y1 Draw5playall G1 Econ\n\n12) Felix: Build B2 Felix\n\n13) Draw5PlayAll: Build Y2 Econ\n\n14) Felix: D B1 Felix G3 Singe\n\n15) Draw5PlayAll: Discover Y1 Draw5playall B3 Unfold\n\tDraw5PlayAll: You are doing the same thing to me! Stop!\n\n16) Felix: S G3 Felix\nB B2 Out\nB B3 Singe\nB B3 Felix\n\n17) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Econ\nBuild Y3 Unfold\nBuild Y3 Draw5playall\n\tFelix: No! :)\n\n18) Felix: T B3 R3 Singe\n\tDraw5PlayAll: Then I steal all yellow.\n\n19) Draw5PlayAll: Trade Y3 R3 Unfold\n\n20) Felix: Build B3 Singe\n\n21) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n22) Felix: T B3 Y3 Singe\n\n23) Draw5PlayAll: Build Y3 Draw5playall\n\n24) Felix: Build B3 Singe\n\n25) Draw5PlayAll: Build G1 Draw5playall\n\n26) Felix: Move R3 Singe Econ\n\n27) Draw5PlayAll: Sacrifice Y2 Econ\nMove Y2 Econ Unfold\nDiscover Y1 Econ R3 Denial\n\n28) Felix: B Y2 Singe\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\n30) Felix: B R1 Econ\n\n31) Draw5PlayAll: Move G1 Draw5playall Unfold\n\n32) Felix: Move B3 Singe Draw5playall\n\n33) Draw5PlayAll: Attack B3 Draw5playall\n\n34) Felix: Sacrifice Y2 Singe\nMove B1 Singe Draw5playall\nMove B1 Out Draw5playall\nCatastrophe Draw5playall Blue\n\n35) Draw5PlayAll: Trade Y1 B1 Unfold\n\n36) Felix: Sacrifice B2 Felix\nTrade B3 G3 Felix\nTrade B2 R2 Out\n\n37) Draw5PlayAll: Pass\n\n38) Felix: S Y3 Singe\nM R1 Econ Draw5playall\nM R3 Econ Draw5playall\nM R2 Out Draw5playall\nC Draw5playall Red\n\tFelix: Good game!\n\n\nHomeworlds Online (SDG# 34192)\nStarted: 2018.6.3, Ended: 2018.6.7\nParticipants: moverman (S), AstroPrincess (N)\nWinner: moverman\n\n1) AstroPrincess: Homeworld B2 R1 G3 Mine\n\n2) moverman: Homeworld Y3 B2 G3\n\n3) AstroPrincess: Build G1 Astroprincess\n\n4) moverman: Build G1 Moverman\n\n5) AstroPrincess: Trade G1 Y1 Astroprincess\n\n6) moverman: Trade G1 R1 Moverman\n\n7) AstroPrincess: Build Y1 Astroprincess\n\n8) moverman: Build R1 Moverman\n\n9) AstroPrincess: Discover Y1 Astroprincess R3 Nemo\n\n10) moverman: Build G1 Moverman\n\n11) AstroPrincess: Build G1 Astroprincess\n\n12) moverman: Build R2 Moverman\n\n13) AstroPrincess: Move G1 Astroprincess Nemo\n\n14) moverman: Discover R2 Moverman Y1 Mwvz\n\n15) AstroPrincess: Build Y2 Nemo\n\n16) moverman: Move G1 Moverman Mwvz\n\n17) AstroPrincess: Build Y2 Astroprincess\n\n18) moverman: Build R2 Mwvz\n\n19) AstroPrincess: Trade Y1 B1 Astroprincess\n\n20) moverman: Build R2 Moverman\n\n21) AstroPrincess: Build B1 Astroprincess\n\n22) moverman: Build R3 Mwvz\n\n23) AstroPrincess: Move B1 Astroprincess Nemo\n\n24) moverman: Move R3 Mwvz Nemo\n\n25) AstroPrincess: Move B1 Astroprincess Nemo\n\n26) moverman: Sacrifice R2 Moverman\nAttack Y2 Nemo\nAttack Y1 Nemo\n\n27) AstroPrincess: Build G1 Astroprincess\n\tmoverman: I'm going to DC for a conference tomorrow and Tuesday. Probably won't be much playing, and probably not until late. But I'll check when I can...\n\n28) moverman: Sacrifice R2 Mwvz\nAttack B1 Nemo\nAttack B1 Nemo\n\n29) AstroPrincess: Build Y1 Astroprincess\n\n30) moverman: Move Y1 Nemo Astroprincess\n\n31) AstroPrincess: Move Y1 Astroprincess Nemo\n\n32) moverman: Attack Y1 Nemo\n\n33) AstroPrincess: Attack Y1 Astroprincess\n\n34) moverman: Attack G1 Nemo\n\n35) AstroPrincess: Trade Y1 B1 Astroprincess\n\n36) moverman: Sacrifice Y2 Nemo\nMove B1 Nemo Astroprincess\nMove B1 Nemo Astroprincess\nCatastrophe Astroprincess Blue\n\n37) AstroPrincess: Build Y1 Astroprincess\n\n38) moverman: Sacrifice G3 Moverman\nBuild Y2 Nemo\nBuild R2 Mwvz\nBuild G2 Nemo\n\n39) AstroPrincess: Build Y2 Astroprincess\n\n40) moverman: Move Y1 Nemo Astroprincess\nCatastrophe Astroprincess Yellow\n\n\nHomeworlds Online (SDG# 34191)\nVariants: "Hard time"\nStarted: 2018.6.3, Ended: 2018.7.8\nParticipants: SilentTitan (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) SilentTitan: Homeworld R1 B3 G3\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tSilentTitan: And to you as well\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) ts52: Build Y2 Ts52\n\n8) SilentTitan: Build Y2 Silenttitan\n\n9) ts52: Build G1 Ts52\n\n10) SilentTitan: Discover Y1 Silenttitan G2 Sol\n\n11) ts52: Discover Y2 Ts52 G3 Kermit\n\n12) SilentTitan: Build G1 Silenttitan\n\n13) ts52: Trade G1 B1 Ts52\n\n14) SilentTitan: Trade G1 R1 Silenttitan\n\n15) ts52: Trade B1 R1 Ts52\n\n16) SilentTitan: Build R2 Silenttitan\n\n17) ts52: Move R1 Ts52 Kermit\n\n\nHomeworlds Online (SDG# 34196)\nStarted: 2018.6.6, Ended: 2018.7.30\nParticipants: wil (S), Myhero777 (N)\nWinner: wil\n\n\twil: First game? Do you play at home?\n\twil: I am back...are you?\n\nHomeworlds Online (SDG# 34052)\nVariants: "Unrated"\nStarted: 2018.6.6, Ended: 2018.6.27\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: H R3 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: Build Y2 Wil\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) wil: Discover Y1 Wil B1 B1\n\n11) Trydnt: Build G1 Trydnt\n\n12) wil: Build G1 Wil\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) wil: Trade G1 B1 Wil\n\n15) Trydnt: Move B1 Trydnt G3\n\n16) wil: S G3 Wil\nB Y2 B1\nB Y3 B1\nB Y3 Wil\n\n17) Trydnt: Move Y1 G3 B1\nCatastrophe B1 Y\n\n18) wil: T Y3 G3 Wil\n\n19) Trydnt: Build G1 Trydnt\n\n20) wil: B Y1 Wil\n\n21) Trydnt: Move Y2 Trydnt G3\n\n22) wil: D Y1 Wil G1 G1\n\n23) Trydnt: Trade G1 R1 Trydnt\n\n24) wil: B Y1 G1\n\n25) Trydnt: Build R1 Trydnt\n\n26) wil: D Y1 G1 B3 B3\n\n27) Trydnt: Build R1 Trydnt\n\n28) wil: S G3 Wil\nB Y2 G1\nB Y3 B3\nB Y3 Wil\n\n29) Trydnt: Build Y3 G3\n\n30) wil: S Y2 Wil\nM Y1 G1 G3\nM Y2 G1 G3\nC G3 Y\n\n31) Trydnt: Discover R1 Trydnt G3 Gee3\n\n32) wil: Trade Y1 G1 B3\n\n33) Trydnt: Build R2 Trydnt\n\n34) wil: B Y1 B3\n\n35) Trydnt: Trade R2 Y2 Trydnt\n\n36) wil: D Y1 B3 G1 G1\n\n37) Trydnt: Build R2 Trydnt\n\n38) wil: Build Y1 G1\n\n39) Trydnt: Move R1 Trydnt G3\n\n40) wil: B Y2 G1\n\n41) Trydnt: Move Y2 Trydnt Gee3\n\n42) wil: M Y2 G1 B3\n\n43) Trydnt: Build R2 Gee3\n\n44) wil: T Y2 R2 B3\n\n45) Trydnt: Build R3 G3\n\n46) wil: B R3 B3\n\n47) Trydnt: Trade R3 Y3 G3\n\n48) wil: Trade R2 G2 B3\n\n49) Trydnt: Build Y2 G3\n\n50) wil: Build Y2 B3\n\n51) Trydnt: Build B1 G3\n\n52) wil: Move G2 B3 G1\n\n53) Trydnt: Move R2 Gee3 G1\n\n54) wil: B G1 G1\n\n55) Trydnt: Attack G2 G1\n\n56) wil: Build G2 G1\nCatastrophe G1 G\n\n57) Trydnt: Discover B1 G3 G1 G1\n\n58) wil: B R2 B3\n\n59) Trydnt: Build B2 G1\n\n60) wil: M R3 B3 G1\n\n61) Trydnt: Sacrifice Y2 Gee3\nMove B1 G1 Wil\nMove B2 G1 Wil\nCatastrophe Wil B\n\n62) wil: Build R2 B3\n\n63) Trydnt: Sacrifice Y3 G3\nMove R1 G3 G1\nMove R1 G1 Wil\nMove R1 Trydnt Wil\n\n\nHomeworlds Online (SDG# 34198)\nVariants: "Unrated"\nStarted: 2018.6.6, Ended: 2018.6.27\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 R1 G3\n\n2) wil: H B3 Y2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) wil: Trade G1 R1 Wil\n\n7) Trydnt: Build R2 Trydnt\n\n8) wil: Build R2 Wil\n\n9) Trydnt: Trade R1 Y1 Trydnt\n\n10) wil: Trade R1 Y1 Wil\n\n11) Trydnt: Build R1 Trydnt\n\n12) wil: Build R1 Wil\n\n13) Trydnt: Discover R1 Trydnt G3 G3\n\n14) wil: Discover R1 Wil Y1 Y1\n\n15) Trydnt: Build Y2 Trydnt\n\n16) wil: S G3 Wil\nB R2 Y1\nB R3 Y1\nB R3 Wil\n\n17) Trydnt: Sacrifice Y1 Trydnt\nMove R1 G3 Y1\nCatastrophe Y1 R\n\n18) wil: T R3 G3 Wil\n\n19) Trydnt: Discover R2 Trydnt G3 G3\n\n20) wil: B R1 Wil\n\n21) Trydnt: Build Y1 Trydnt\n\n22) wil: D R2 Wil G1 G1\n\n23) Trydnt: Move Y1 Trydnt G3\n\n24) wil: B R1 Wil\n\n25) Trydnt: Build Y1 G3\n\n26) wil: D R1 Wil B1 B1\n\n27) Trydnt: Build G1 Trydnt\n\n28) wil: S G3 Wil\nB R2 G1\nB R3 B1\nB R3 Wil\n\n29) Trydnt: Build R3 G3\n\n30) wil: T R3 G3 Wil\n\n31) Trydnt: Discover Y2 Trydnt R3 R3\n\n32) wil: Trade R3 Y3 B1\n\n33) Trydnt: Move Y1 G3 Trydnt\n\n34) wil: B R3 Wil\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y3 R3\nBuild Y3 Trydnt\n\n36) wil: T R1 B1 Wil\n\n37) Trydnt: Trade Y1 B1 Trydnt\n\n38) wil: Build G1 Wil\n\n39) Trydnt: Build G2 Trydnt\n\n40) wil: M G1 Wil B1\n\n41) Trydnt: Move B1 Trydnt G3\n\n42) wil: S Y3 B1\nM R1 B1 G3\nM R2 G1 G3\nC G3 R\nM R2 G1 G3\n\n43) Trydnt: Sacrifice G2 Trydnt\nBuild Y1 R3\nBuild Y3 G3\n\n44) wil: M Y1 Wil B1\n\n45) Trydnt: Sacrifice Y1 R3\nMove Y2 G3 B1\n\n46) wil: S Y1 B1\nM R2 G3 B1\n\n47) Trydnt: Discover Y2 B1 G3 Gee3\n\n48) wil: Build R1 Wil\n\n49) Trydnt: Build Y1 G3\n\n50) wil: Trade R1 Y1 Wil\n\n51) Trydnt: Build B2 G3\n\n52) wil: D B1 Wil G1 G1\n\n53) Trydnt: Trade B1 R1 G3\n\n54) wil: Build G2 Wil\n\n55) Trydnt: Build G2 Trydnt\n\n56) wil: S G3 Wil\nB G2 B1\nB G3 Wil\nB B1 G1\n\n57) Trydnt: Move Y3 G3 B1\n\n\nHomeworlds Online (SDG# 34199)\nVariants: "Unrated"\nStarted: 2018.6.6, Ended: 2018.7.6\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G2 B1 R3\n\n2) wil: H B3 Y1 G3\n\n3) Trydnt: Build R1 Trydnt\n\n4) wil: B G1 Wil\n\twil: B g1 wil\n\n5) Trydnt: Build R1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Trade R3 Y3 Trydnt\n\n8) wil: B G1 Wil\n\n9) Trydnt: Build R1 Trydnt\n\n10) wil: Trade G1 B1 Wil\n\n11) Trydnt: Discover R1 Trydnt G3 G3\n\n12) wil: Build G1 Wil\n\n13) Trydnt: Build R2 Trydnt\n\n14) wil: Trade G3 R3 Wil\n\n15) Trydnt: Trade R1 B1 Trydnt\n\n16) wil: B B2 Wil\n\n17) Trydnt: Build B2 Trydnt\n\n18) wil: T B2 R2 Wil\n\n19) Trydnt: Move B2 Trydnt G3\n\n20) wil: T R2 G2 Wil\n\n21) Trydnt: Build B2 G3\n\n22) wil: D B1 Wil Y2 Y2\n\n23) Trydnt: Trade B2 Y2 G3\n\n24) wil: B R1 Wil\n\n25) Trydnt: Build B2 G3\n\n26) wil: M G2 Wil Y2\n\n27) Trydnt: Build R2 G3\n\n28) wil: Move R1 Wil Y2\n\n29) Trydnt: Discover R2 Trydnt G3 Gee3\n\n30) wil: B R2 Wil\n\n31) Trydnt: Build R3 Gee3\n\n32) wil: B R3 Y2\n\n33) Trydnt: Sacrifice Y2 G3\nMove R1 G3 Y2\nMove R2 G3 Y2\nCatastrophe Y2 R\n\n34) wil: Trade R3 G3 Wil\n\n35) Trydnt: Move B1 Trydnt Gee3\n\n36) wil: B B2 Y2\n\n37) Trydnt: Build B3 Gee3\n\n38) wil: T B2 Y2 Y2\n\n39) Trydnt: Trade B3 Y3 Gee3\n\n40) wil: B G1 Wil\n\n41) Trydnt: Discover R2 Gee3 G2 G2\n\n42) wil: S G3 Wil\nB G1 Y2\nB G3 Wil\nB Y1 Wil\n\n43) Trydnt: Move R3 Gee3 Y2\n\n44) wil: Move Y1 Wil Y2\n\n45) Trydnt: Sacrifice B1 Gee3\nTrade R3 Y3 Y2\nCatastrophe Y2 Y\n\n46) wil: Discover G1 Wil G2 Gtoo\n\n47) Trydnt: Trade B2 Y2 G3\n\n48) wil: Sacrifice G3 Wil\nBuild G1 Gtoo\nBuild G3 Wil\nBuild R1 Wil\n\n49) Trydnt: Build B1 G3\n\n50) wil: Discover Y1 Wil B2 B2\n\n51) Trydnt: Build B1 G3\n\n52) wil: M R1 Wil Gtoo\n\tTrydnt: were you gonna blow it up anyway or try and move your stuff out?\n\twil: depended on what you did..\n\n53) Trydnt: Move B1 G3 G2\n\tTrydnt: I was gonna take the g2 so I could double grow on next turn.\n\n54) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Wil\nBuild R2 Gtoo\n\twil: yup, and then you'd make me waste that move..and my crew..\n\n55) Trydnt: Build R3 G2\n\tTrydnt: in war, sacrifices must sometimes be made :(\n\n56) wil: S G3 Wil\nB G3 Wil\nB R3 Gtoo\nB R3 Wil\n\twil: look, I made a pit of quicksand!\n\n57) Trydnt: Sacrifice Y2 G3\nMove R2 G2 G3\nMove R2 G3 Gtoo\nCatastrophe Gtoo R\n\n58) wil: Trade R1 Y1 Wil\n\n59) Trydnt: Build B2 G2\n\n60) wil: M R3 Wil B2\n\n61) Trydnt: Build B3 G3\n\n62) wil: T R3 Y3 B2\n\n63) Trydnt: Trade B2 Y2 G3\n\n64) wil: B R1 Wil\n\n65) Trydnt: Build B2 G2\n\n66) wil: M R2 Wil B2\n\n67) Trydnt: Trade B2 Y2 G2\n\n68) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB R2 B2\n\n69) Trydnt: Sacrifice Y3 Gee3\nMove Y2 G2 Wil\nMove Y2 G3 G2\nMove Y2 G2 Wil\nCatastrophe Wil Y\n\n70) wil: B G3 Wil\n\n71) Trydnt: Build B2 G2\n\n72) wil: S Y3 B2\nM G3 Wil G2\nM G3 Wil G2\nM G1 Wil G2\nC G2 G\n\n\tTrydnt: haha yup. that streak of defends was getting a little high lol\n\nHomeworlds Online (SDG# 34173)\nVariants: "Unrated"\nStarted: 2018.6.8, Ended: 2018.7.14\nParticipants: Trydnt (S), Thorolf (N)\nWinner: Trydnt\n\n1) Thorolf: Homeworld B3 Y2 G3\n\n2) Trydnt: Homeworld G2 B2 Y3 *\n\n3) Thorolf: Build G1 Thorolf\n\n4) Trydnt: Build Y1 Trydnt\n\n5) Thorolf: Trade G3 R3 Thorolf\n\n6) Trydnt: Build Y1 Trydnt\n\n7) Thorolf: Build G1 Thorolf\n\n8) Trydnt: Discover Y1 Trydnt G3 G3\n\n9) Thorolf: Discover G1 Thorolf B1 Theta\n\n10) Trydnt: Build Y1 G3\n\n11) Thorolf: Trade G1 R1 Theta\n\n12) Trydnt: Build Y2 Trydnt\n\n13) Thorolf: Build G1 Thorolf\n\n14) Trydnt: Discover Y1 Trydnt G3 Gee3\n\n15) Thorolf: Trade G1 R1 Thorolf\n\n16) Trydnt: Build Y2 Trydnt\n\n17) Thorolf: Trade R3 Y3 Thorolf\n\n18) Trydnt: Build Y3 Gee3\n\n19) Thorolf: Move R1 Thorolf Theta\n\n20) Trydnt: Trade Y2 R2 Trydnt\n\n21) Thorolf: Build Y2 Thorolf\n\n22) Trydnt: Sacrifice Y2 Trydnt\nMove Y1 G3 Theta\nMove Y1 Theta Thorolf\nCatastrophe Thorolf Y\n\n23) Thorolf: Trade R1 Y1 Theta\n\n24) Trydnt: Build Y2 Trydnt\n\n25) Thorolf: Build G1 Thorolf\n\n26) Trydnt: Move Y2 Trydnt Thorolf\n\n27) Thorolf: Trade G1 R1 Thorolf\n\n28) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Thorolf\nAttack G1 Thorolf\n\n\nHomeworlds Online (SDG# 34156)\nVariants: "Unrated, Hard time"\nStarted: 2018.6.8, Ended: 2018.6.13\nParticipants: Thorolf (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) Thorolf: Homeworld B2 Y3 G3\n\twil: thx for the game..\n\n3) wil: Build G1 Wil\n\twil: Oops! Your opening with a small yellow leaves only one small in the bank, which will give me the immediate.control of the yellows\n\twil: I'd recommend switching your colors... Of.course you could again watch how it plays out. \n\n4) Thorolf: Build G1 Thorolf\n\n5) wil: T G1 Y1 Wil\n\n6) Thorolf: Build G1 Thorolf\n\n7) wil: B Y1 Wil\n\n8) Thorolf: Trade G3 R3 Thorolf\n\twil: Again first part of this game is follow the leader...otherwise you can get aced out of an economy. Bank management, not letting the other person block you out of a color, and conversely not taking the last of one size and letting them control.larger pieces.\n\n9) wil: B G1 Wil\n\twil: Learning this is like learning chess. Jess was my favorite game for 50 years... This is clearly taking over\n\n10) Thorolf: Build G2 Thorolf\n\n11) wil: B G2 Wil\n\n12) Thorolf: Discover G2 Thorolf B1 Delta\n\n13) wil: Trade G1 R1 Wil\n\n14) Thorolf: Build R1 Thorolf\n\n15) wil: Discover Y1 Wil B2 B2\n\n16) Thorolf: Move R1 Thorolf Delta\n\n17) wil: Build Y2 Wil\n\n18) Thorolf: Build G1 Delta\n\n19) wil: D Y2 Wil Y2 Y2\n\n20) Thorolf: Move R3 Thorolf Delta\n\n21) wil: Sacrifice G3 Wil\nBuild Y2 Y2\nBuild Y3 B2\nBuild Y3 Wil\n\n22) Thorolf: Build G2 Thorolf\n\n23) wil: Sacrifice Y3 B2\nMove G2 Wil Y2\nMove G2 Y2 Delta\nMove G2 Delta Thorolf\nCatastrophe Thorolf G\n\n\twil: every monopoly can hurt, in blue can keep you from changing and creates that queen factory, in red keeps you from attacking and leaves you vulnerable, in green keeps you from building, in yellow keeps you from moving and creating new territory.\n\twil: always at risk when you have only one color in your homeworld. You are playing my strategy, I lost 90% of my first 50 games... insuring someone doesn't block you out of a color is important.\r\n\n\twil: challenge me anytime... \n\nHomeworlds Online (SDG# 34197)\nStarted: 2018.6.8, Ended: 2018.8.20\nParticipants: ts52 (S), Thorolf (N)\nWinner: ts52\n\n1) Thorolf: Homeworld B3 Y2 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) Thorolf: Build G1 Thorolf\n\n4) ts52: Build G1 Ts52\n\n5) Thorolf: Discover G1 Thorolf R1 Iota\n\tts52: Have a good game!\n\n6) ts52: Trade G1 B1 Ts52\n\n7) Thorolf: Build G1 Iota\n\n8) ts52: Build B1 Ts52\n\n9) Thorolf: Build G1 Iota\n\n10) ts52: Build G2 Ts52\n\n\nHomeworlds Online (SDG# 34184)\nStarted: 2018.6.11, Ended: 2018.8.29\nParticipants: Babamots (S), Thorolf (N)\nWinner: Babamots\n\n1) Thorolf: Homeworld B3 Y2 G3\n\tBabamots: Looks like you're juggling quite a few games at once. I get confused if I play more than about three. I can challenge you later if you want to finish up some other games first.\n\n2) Babamots: Homeworld Y3 B1 G3\n\n3) Thorolf: Build G1 Thorolf\n\tBabamots: Good luck!\n\n4) Babamots: Build G1 Babamots\n\n5) Thorolf: Trade G1 B1 Thorolf\n\n6) Babamots: Trade G1 B1 Babamots\n\n7) Thorolf: Discover B1 Thorolf G1 Sigma\n\n8) Babamots: Build B2 Babamots\n\n9) Thorolf: Build B2 Sigma\n\n10) Babamots: Discover B2 Babamots G2 Bajor\n\n11) Thorolf: Build B2 Sigma\n\n12) Babamots: Build B3 Bajor\n\tBabamots: Would you like any advice about your moves? Since you've taken the last medium blue, you've opened up the larges for me to build (getting more larges is a big deal). Since "sigma" is crowded with blue already, you won't get to build a large to stay even with me.\n\tBabamots: You're welcome to undo and try something else if you like.\n\tBabamots: Trading one of those blues for a red or yellow might be better.\n\tBabamots: In particular, I think I would have suggested trading the b2 for a y2. That way, if I try to greedily sacrifice my g3 to build three blues at once, you could sacrifice the y2 to move your remaining b1 to cause a catastrophe on me.\n\tBabamots: Well, it's been a couple of days, so I guess I'll just move. I'm perfectly happy to take a b3, thank you :-).\n\n13) Thorolf: Trade B2 R2 Sigma\n\n14) Babamots: Build G1 Babamots\n\n\tBabamots: Is everything OK? Looks like you've disappeared.\n\nHomeworlds Online (SDG# 34209)\nVariants: "Unrated, Hard time"\nStarted: 2018.6.11, Ended: 2018.6.17\nParticipants: Felix (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 Y1 G3\n\n2) Felix: Homeworld B1 Y2 G3\n\tBabamots: Good luck!\n\n3) Babamots: Build G1 Babamots\n\tFelix: You too! Let's make this a bit interesting :)\n\tBabamots: I think I played small universe once against a beginner. Not sure what the implications will be here.\n\n4) Felix: B G1 Felix\n\n5) Babamots: Trade G1 B1 Babamots\n\tFelix: Hopefully the implications will be fun! I even contemplating going micro universe with two large stars, but I don't think either of us are ready for that insanity yet\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Babamots: Build B1 Babamots\n\n8) Felix: Build Y1 Felix\n\n9) Babamots: Discover B1 Babamots G3 Betazed\n\n10) Felix: Discover Y1 Felix B3 Out\n\n11) Babamots: Sacrifice G3 Babamots\nBuild B2 Betazed\nBuild B2 Betazed\nBuild B3 Babamots\n\n12) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y2 Out\nBuild Y3 Felix\n\n13) Babamots: Trade B3 G3 Babamots\n\tFelix: I feel like a synchronized swimmer!\n\n14) Felix: Trade Y3 G3 Felix\n\tDraw5PlayAll: How?\n\tFelix: I'm basically just copying his moves at this point, but in blue instead of yellow.\n\n15) Babamots: Build B3 Babamots\n\n16) Felix: Build Y3 Felix\n\n17) Babamots: Discover B3 Babamots B3 Galorndon\n\n18) Felix: Move Y1 Out Babamots\n\n19) Babamots: Trade B3 Y3 Galorndon\n\n20) Felix: Trade Y3 R3 Felix\n\n21) Babamots: Trade B2 R2 Betazed\n\n22) Felix: Move Y2 Out Babamots\n\tBabamots: OK, not where I thought we were going with this.\n\n23) Babamots: Sacrifice G3 Babamots\nBuild B2 Betazed\nBuild B3 Babamots\nBuild Y3 Galorndon\n\tFelix: :)\n\n24) Felix: Discover Y1 Felix G3 Grip\n\n25) Babamots: Trade B1 R1 Babamots\n\n26) Felix: Build Y3 Grip\n\n27) Babamots: Discover Y3 Galorndon G2 Cardassia\n\n28) Felix: Build R1 Felix\n\n29) Babamots: Attack Y2 Babamots\n\n30) Felix: Sacrifice Y2 Out\nMove Y1 Grip Babamots\nMove R3 Felix Betazed\nCatastrophe Babamots Yellow\n\n31) Babamots: Build R1 Betazed\n\n32) Felix: B R2 Felix\n\n33) Babamots: Build R2 Betazed\nCatastrophe Betazed R\n\tBabamots: Yeah, it's never advantageous to leave a catastrophe un-triggered (in 2-player). Although in this case, I would have just done it for you.\n\n34) Felix: B G1 Felix\n\tFelix: Yeah, I just forgot to trigger it! Although before you captured my yellow I was considering moving another in and leaving the cat un triggered so you couldn't build any of the yellows yet. I figured since I controlled all the ships that it wouldn't be as risky\n\n35) Babamots: Trade B2 R2 Betazed\n\n36) Felix: D R2 Felix B3 Comfrey\n\n37) Babamots: Build B1 Betazed\n\n38) Felix: T R2 B2 Comfrey\n\n39) Babamots: Sacrifice Y3 Cardassia\nMove B3 Babamots Betazed\nMove B3 Betazed Felix\nMove Y3 Galorndon Felix\n\n40) Felix: S G3 Felix\nB G1 Felix\nB G1 Felix\nB B3 Comfrey\n\n41) Babamots: Trade B3 G3 Felix\nCatastrophe Felix G\n\n42) Felix: S Y3 Grip\nM B2 Comfrey Felix\nM B3 Comfrey Felix\nPass\n\n43) Babamots: Sacrifice Y3 Felix\nMove B1 Betazed Felix\nCatastrophe Felix B\nMove R2 Betazed Felix\nPass\n\tBabamots: I'm probably not going to be able to sleep wondering whether you'll find a way out of this.\n\n\tBabamots: Whew, that was a pretty different game. I spent most of it feeling frightened. I think I like regular-size universe better. It's move forgiving.\r\n\r\nYour gambit have me pause for sure. That wasn't a scenario I specifically mapped out.\r\n\r\nGood games! The tournament had been quite a ride. I'm about ready to start a fresh one.\n\tFelix: Interestingly, I don't think there was any move I could make here at the end. Very interesting game for sure! A textbook example of why only destroying half the opponent's start with no immediate plan for the rest is dangerous. Congrats and well played!\n\tBabamots: I had never before seen a position where passing was the only option, so it was fun to arrange it.\r\n\r\nYou've taught me a lot this tournament. Valiantly fought, sir!\n\nHomeworlds Online (SDG# 34211)\nVariants: "Hard time"\nStarted: 2018.6.12, Ended: 2018.7.4\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: Trade G1 Y1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: Build Y2 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: D Y1 Wil G3 G3\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) wil: Build G1 Wil\n\n12) Trydnt: Discover Y1 G1 B2 B2\n\n13) wil: T G1 R1 Wil\n\n14) Trydnt: Trade Y2 R2 Trydnt\n\n15) wil: Build Y2 G3\n\n16) Trydnt: Build R1 Trydnt\n\n17) wil: D Y2 G3 G1 G1\n\n18) Trydnt: Build G1 Trydnt\n\n19) wil: S G3 Wil\nB Y2 G3\nB Y3 G1\nB Y3 Wil\n\n20) Trydnt: Discover R1 Trydnt G1 Gee1\n\n21) wil: T Y2 G2 Wil\n\n\nHomeworlds Online (SDG# 34202)\nVariants: "Unrated"\nStarted: 2018.6.14, Ended: 2018.7.31\nParticipants: Trydnt (S), Draw5PlayAll (N)\nWinner: Trydnt\n\n1) Draw5PlayAll: Pass\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\n4) Trydnt: Build G1 Trydnt\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Trydnt: Build Y2 Trydnt\n\n9) Draw5PlayAll: Build Y2 Draw5playall\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) Draw5PlayAll: Discover Y1 Draw5playall G2 Maybenot\n\n12) Trydnt: Build G1 Trydnt\n\n13) Draw5PlayAll: Build G1 Draw5playall\n\n14) Trydnt: Trade G1 R1 Trydnt\n\n15) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n16) Trydnt: Build R2 Trydnt\n\tDraw5PlayAll: So now I guess you do to me what I just tried to do to you.\n\n17) Draw5PlayAll: Move R1 Draw5playall Maybenot\n\n18) Trydnt: Move R1 Trydnt G3\n\n19) Draw5PlayAll: Build R2 Maybenot\n\n20) Trydnt: Build R2 G3\n\n21) Draw5PlayAll: Sacrifice R1 Maybenot\nPass\n\n22) Trydnt: Build G1 Trydnt\n\n23) Draw5PlayAll: Build G1 Draw5playall\n\n24) Trydnt: Trade G1 B1 Trydnt\n\n25) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n26) Trydnt: Build G1 Trydnt\n\n27) Draw5PlayAll: Move B1 Draw5playall Maybenot\n\n28) Trydnt: Move B1 Trydnt G3\n\n29) Draw5PlayAll: Build G1 Draw5playall\n\n30) Trydnt: Discover Y2 Trydnt R3 R3\n\n31) Draw5PlayAll: Discover G1 Draw5playall B2 Hmmm\n\n32) Trydnt: Move R1 G3 Hmmm\n\n33) Draw5PlayAll: Sacrifice G1 Hmmm\nBuild G1 Draw5playall\n\n34) Trydnt: Sacrifice G3 Trydnt\nBuild R1 G3\nBuild R3 Hmmm\nBuild R3 Trydnt\n\tDraw5PlayAll: Darnyou\n\n35) Draw5PlayAll: Build B1 Maybenot\n\n36) Trydnt: Trade R1 G1 Hmmm\n\n37) Draw5PlayAll: Build R1 Maybenot\n\n38) Trydnt: Build G2 Hmmm\n\n39) Draw5PlayAll: Discover G1 Draw5playall B2 Temp\n\n40) Trydnt: Build B3 G3\n\n41) Draw5PlayAll: Move B1 Maybenot G3\n\n42) Trydnt: Sacrifice B1 G3\nTrade R3 Y3 Hmmm\n\n43) Draw5PlayAll: Build B1 G3\n\n44) Trydnt: Sacrifice R2 G3\nAttack B1 G3\nAttack B1 G3\n\n45) Draw5PlayAll: Build B3 Maybenot\n\n46) Trydnt: Sacrifice Y2 R3\nMove B1 G3 Maybenot\nMove B1 G3 Maybenot\nCatastrophe Maybenot B\n\n47) Draw5PlayAll: Build Y2 Draw5playall\n\n48) Trydnt: Discover R2 Trydnt Y3 Y3\n\n49) Draw5PlayAll: Move Y2 Draw5playall Temp\n\n50) Trydnt: Sacrifice G2 Hmmm\nBuild Y2 G3\nBuild Y3 Hmmm\n\n51) Draw5PlayAll: Build G2 Draw5playall\n\n52) Trydnt: Move B3 G3 Maybenot\n\n53) Draw5PlayAll: Sacrifice Y1 Maybenot\nDiscover R2 Maybenot B1 Givingup\n\tDraw5PlayAll: It actually let me do that?!?\n\n54) Trydnt: Sacrifice R1 G3\nAttack R1 Maybenot\n\tTrydnt: my new favorite gambit (for when you're outrageously in the lead)\n\n55) Draw5PlayAll: Build Y1 Draw5playall\n\n56) Trydnt: Build G2 Hmmm\n\n57) Draw5PlayAll: Build G3 Temp\n\n58) Trydnt: Sacrifice Y3 Hmmm\nMove G1 Hmmm Draw5playall\nMove G2 Hmmm Draw5playall\nCatastrophe Draw5playall G\nMove B3 Maybenot Draw5playall\n\n59) Draw5PlayAll: Sacrifice G1 Temp\nBuild Y3 Draw5playall\n\n60) Trydnt: Move Y3 Hmmm Draw5playall\nCatastrophe Draw5playall Y\n\n\nHomeworlds Online (SDG# 34218)\nVariants: "Hard time"\nStarted: 2018.6.15, Ended: 2018.7.25\nParticipants: Laurie_Menke (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Laurie_Menke: Homeworld R3 B2 G3\n\tLaurie_Menke: Hi mneme! Have fun!\n\n3) mneme: Build G1 Mneme\n\tmneme: You too!\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n7) mneme: Build G1 Mneme\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) mneme: Trade G1 B1 Mneme\n\n10) Laurie_Menke: Build G1 Laurie_menke\n\n11) mneme: Build B1 Mneme\n\n12) Laurie_Menke: Discover G1 Laurie_menke Y1 Yellow\n\n13) mneme: Build Y2 Mneme\n\n14) Laurie_Menke: Build Y2 Laurie_menke\n\n15) mneme: Discover Y1 Mneme G3 Chartruse\n\n16) Laurie_Menke: Move Y1 Laurie_menke Yellow\n\n17) mneme: Move B1 Mneme Chartruse\n\n18) Laurie_Menke: Discover Y1 Yellow R3 Red\n\n19) mneme: Sacrifice G3 Mneme\nBuild B1 Chartruse\nBuild B2 Chartruse\nBuild B3 Mneme\n\n20) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y2 Red\nBuild Y3 Laurie_menke\nBuild G1 Laurie_menke\n\n21) mneme: Build Y3 Chartruse\n\n22) Laurie_Menke: Discover G1 Yellow Y3 Yoink\n\n23) mneme: Discover B2 Chartruse R1 Fuchsia\n\n24) Laurie_Menke: Discover G1 Laurie_menke Y1 Sunshine\n\n25) mneme: Move Y3 Chartruse Fuchsia\n\n26) Laurie_Menke: Discover G1 Sunshine B3 Shadow\n\n27) mneme: Build B3 Chartruse\n\n28) Laurie_Menke: Build G2 Shadow\n\n29) mneme: Trade B3 R3 Chartruse\n\n30) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\n31) mneme: Trade B3 G3 Mneme\n\tLaurie_Menke: Well, that's menacing!\n\n32) Laurie_Menke: Trade G1 Y1 Shadow\n\tLaurie_Menke: Oops... that was a bad idea... sorry!\n\n33) mneme: Sacrifice G3 Mneme\nBuild Y3 Chartruse\nBuild B3 Mneme\nBuild B3 Fuchsia\n\tLaurie_Menke: I am not liking the way things are going...\n\n34) Laurie_Menke: Sacrifice Y2 Red\nMove Y1 Red Mneme\nMove Y1 Shadow Mneme\n\tmneme: I think they're going just fine! <eg>\r\n\r\nI should really play a bunch of unrated games outside my comfort zone, though.\n\tLaurie_Menke: Since you're probably one of the top 20 players in the world, it's pretty hard to get outside your comfort zone! ;) But wil is a great opponent for that sort of thing. He loves thinking outside the box. :)\n\tLaurie_Menke: Just an FYI... I'll be camping starting later today until Monday. I have the time on the clock, and I need time to think about what to do here, so I probably won't take my move until Tuesday.\n\tmneme: Wow, I don't know how but my earlier message didn't get through: Something like "Admittedly, I'm pretty experienced at regular play, but I have next to no experience with microverse and small universe play, which given my defensive strategy is a big weakness".\n\tmneme: That's fine; I'll not expect a move from you for a few days. It's not hard time in any case, so if your clock runs down I'll be pretty forgiving for a while in any case.\r\n\n\tLaurie_Menke: I won't let it run down... don't worry. I'll be making a move tomorrow. :) As for the micro and small universes, I'm happy to play but have equally little experience. Wil is really the guy you want.\n\n35) mneme: Sacrifice Y2 Mneme\nMove Y3 Fuchsia Laurie_menke\nMove B3 Fuchsia Laurie_menke\n\n36) Laurie_Menke: Trade G2 R2 Shadow\n\tmneme: It's true -- WIl's the only person I can think of who's done some fairly serious play in microverses and SUs. I did try a microverse on defense recently, but...it was short (I did not lose): http://superdupergames.org/main.html?page=play_homeworlds&num=34333\n\tLaurie_Menke: Well, now that the tournament has started, I guess I know what to do to give myself at least a bit of a chance! ;)\n\tLaurie_Menke: BTW... ouch on the three 3-sized ships you just built! :/\n\n37) mneme: Sacrifice R3 Chartruse\nAttack G3 Laurie_menke\nAttack G1 Laurie_menke\nAttack Y2 Laurie_menke\n\n\tLaurie_Menke: Thanks for the game, mneme! Hopefully I'll do better in the tournament! Congrats! :)\n\tmneme: Thanks -- good game, and good luck in the tournament!\r\n\r\nAre you going to be at Gencon?\n\tLaurie_Menke: Thanks! Yes... Looney Labs will have a tiny booth and I'll be there! If you'll be there, too, come stop by and play with us! :)\n\tmneme: Will do; see you there!\r\n\n\nHomeworlds Online (SDG# 34203)\nVariants: "Unrated, Hard time"\nStarted: 2018.6.18, Ended: 2018.7.15\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: Homeworld B2 Y1 G3\n\twil: good run in the tourney! I doubt I'll make it that far in the next one!\n\n2) Felix: Homeworld R2 B3 G3\n\tFelix: Oh, I'm sure I won't either, if the pool of players is any more skilled, and it probably will be! I think it was a fluke I made it as far as I did!\n\n3) wil: B G1 Wil\n\n4) Felix: Build G1 Felix\n\n5) wil: T G1 Y1 Wil\n\n6) Felix: T G1 Y1 Felix\n\n7) wil: Build G1 Wil\n\n8) Felix: Build Y2 Felix\n\n9) wil: B Y2 Wil\n\n10) Felix: Discover Y1 Felix B1 Grinch\n\n11) wil: D Y1 Wil G3 G3\n\n12) Felix: Build G1 Felix\n\n13) wil: Trade G1 B1 Wil\n\n14) Felix: Trade G1 B1 Felix\n\n15) wil: B B2 Wil\n\n16) Felix: D B1 Felix G1 Out\n\n17) wil: T B1 R1 Wil\n\n18) Felix: Build Y2 Felix\n\n19) wil: B Y3 G3\n\n20) Felix: Discover Y2 Felix G1 Rim\n\n21) wil: M Y3 G3 Rim\n\n\tFelix: Oops!\n\twil: ach...phoeey\n\nHomeworlds Online (SDG# 34225)\nStarted: 2018.6.18, Ended: 2018.9.8\nParticipants: Felix (S), ts52 (N)\nWinner: Felix\n\n1) ts52: Homeworld B1 Y2 G3\n\n2) Felix: Homeworld R2 B3 G3\n\n3) ts52: Build G1 Ts52\n\tFelix: Hello again! Have fun and good luck\n\n4) Felix: Build G1 Felix\n\tts52: Hi! ;) Thanks! You too.\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: B B2 Felix\n\n9) ts52: Discover B2 Ts52 G3 Kermit\n\n10) Felix: Trade B1 Y1 Felix\n\n11) ts52: Trade B1 Y1 Ts52\n\n12) Felix: B B1 Felix\n\n13) ts52: Build G1 Ts52\n\n14) Felix: Trade B1 R1 Felix\n\n15) ts52: Trade G1 R1 Ts52\n\tFelix: Sorry for the delay! Thanks for not counting me out.\n\n16) Felix: Build Y1 Felix\n\tts52: No worries.\n\n17) ts52: Build Y2 Ts52\n\n18) Felix: Build Y2 Felix\n\n19) ts52: Move Y1 Ts52 Kermit\n\n20) Felix: Sacrifice Y1 Felix\nDiscover Y1 Felix B1 Rim\n\n21) ts52: Build B1 Kermit\n\n22) Felix: Discover B2 Felix G1 Conk\n\n23) ts52: Build G1 Ts52\n\n24) Felix: Build B2 Conk\n\n25) ts52: Build B3 Kermit\n\n26) Felix: S Y1 Rim\nM B2 Conk Kermit\nC Kermit Blue\n\n27) ts52: Trade G1 B1 Ts52\n\n28) Felix: Build B1 Conk\n\n29) ts52: Move B1 Ts52 Kermit\n\n30) Felix: Trade B1 Y1 Conk\n\n31) ts52: Build G1 Ts52\n\n32) Felix: Move R1 Felix Conk\n\n33) ts52: Discover G1 Ts52 B3 Gonzo\n\n34) Felix: Move B2 Conk Kermit\n\n35) ts52: Build G1 Ts52\n\n36) Felix: Build G2 Felix\n\n37) ts52: Build G2 Gonzo\n\n38) Felix: Trade B2 R2 Kermit\n\n39) ts52: Sacrifice Y1 Kermit\nDiscover B1 Kermit Y1 Bigbird\n\n40) Felix: Build Y1 Conk\n\n41) ts52: Discover G1 Ts52 Y3 Zoe\n\n42) Felix: Sacrifice G2 Felix\nBuild Y3 Felix\nBuild Y3 Conk\n\n43) ts52: Move Y2 Ts52 Gonzo\n\n44) Felix: Move Y3 Conk Gonzo\n\n45) ts52: Move G2 Gonzo Bigbird\n\n46) Felix: Sacrifice R2 Kermit\nAttack G1 Gonzo\nAttack Y2 Gonzo\n\n47) ts52: Build G2 Ts52\n\n48) Felix: Build G2 Gonzo\n\n49) ts52: Sacrifice G2 Ts52\nBuild G2 Zoe\nBuild G3 Bigbird\n\n50) Felix: Trade G1 B1 Gonzo\n\n51) ts52: Sacrifice G3 Bigbird\nBuild G1 Ts52\nBuild G3 Bigbird\nBuild B2 Bigbird\n\n52) Felix: Move B1 Gonzo Conk\n\n53) ts52: Trade B2 R2 Bigbird\n\n54) Felix: Build B2 Conk\n\n55) ts52: Build B2 Bigbird\n\n56) Felix: Discover B1 Conk R3 Post\n\n57) ts52: Move G3 Bigbird Post\n\n58) Felix: Sacrifice G3 Felix\nBuild G3 Gonzo\nBuild B2 Conk\nBuild B3 Conk\n\n59) ts52: Attack B1S Post\n\n60) Felix: Sacrifice Y3 Felix\nMove Y3 Gonzo Ts52\nMove G3 Gonzo Ts52\nMove G2 Gonzo Ts52\nCatastrophe Ts52 Green\n\n61) ts52: Move G1 Zoe Ts52\n\n62) Felix: Trade B3 R3 Conk\n\n63) ts52: Sacrifice G3 Post\nBuild G1 Ts52\nBuild G2 Ts52\nBuild G3 Zoe\n\n64) Felix: Sacrifice R3 Conk\nAttack G2 Ts52\nAttack G1 Ts52\nAttack R1 Ts52\n\n65) ts52: Sacrifice G3 Zoe\nBuild G3 Zoe\nBuild G3 Ts52\nBuild G3 Ts52\n\n66) Felix: Catastrophe Ts52 Green\nPass\n\tts52: I think I've dragged this out as long as I can.\n\tFelix: You dragged it out longer than I expected! Great defense and fun game! See you in the tourney next, I suppose :)\n\n\nHomeworlds Online (SDG# 34235)\nVariants: "Unrated"\nStarted: 2018.6.18, Ended: 2020.1.1\nParticipants: bhorner (S), alnith (N)\nWinner: bhorner\n\n1) alnith: Homeworld B2 R1 G3\n\tbhorner: Looks like I'm going first. The commands are listed at the top. You can abbreviate, and I usually abbreviate maximally. For example these are equivalent:\r\nverbose:\r\n homeworld r2 b1 g3\r\nabbreviated:\r\n h r2 b1 g3\n\n2) bhorner: Homeworld R3 B1 G3\n\tbhorner: Well, actually, it looks like you're going first. :)\n\talnith: I have taken the first move!\n\n3) alnith: Build G1 Alnith\n\n4) bhorner: Build G1 Bhorner\n\n5) alnith: Trade G1 Y1 Alnith\n\tbhorner: I have taken the second move! :)\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) alnith: Build G1 Alnith\n\tbhorner: The history here is good for going back to find where you messed up too. Plus having more time to think about your move is nice. :)\n\n8) bhorner: Build G1 Bhorner\n\talnith: Do they keep the logs after the game ends? It might make for some nice training data.\n\tbhorner: Yes, forever, I've downloaded all the games. I used it to test my rules evaluator when I was trying to make an AI. :)\n\n9) alnith: Trade G1 R1 Alnith\n\tbhorner: The last game we played that started like this got very messy!\n\n10) bhorner: T G1 R1 Bhorner\n\n11) alnith: Build G1 Alnith\n\tDraw5PlayAll: How many people are making AIs for this game?!\r\nAnd how many people are actually getting anywhere?\n\tbhorner: I know of several attempts, not aware of any getting anywhere. The branching factor grows too fast for standard tree searching techniques (like for chess).\n\n12) bhorner: Build R2 Bhorner\n\tDraw5PlayAll: More manageable if you do it by individual actions rather than turns, but still very high.\n\tbhorner: I don't know what that means. :)\n\n13) alnith: Build R2 Alnith\n\n14) bhorner: Discover R2 Bhorner G2 Boogar\n\n15) alnith: Discover R2 Alnith G3 Qonos\n\n16) bhorner: Build G1 Bhorner\n\n17) alnith: Trade R1 B1 Alnith\n\tbhorner: sorry that took so long!\n\n18) bhorner: T G1 B1 Bhorner\n\n19) alnith: Move B1 Alnith Qonos\n\n20) bhorner: Build B2 Bhorner\n\talnith: No worries! I'm totally in the proverbial glass house w.r.t. this\n\tDraw5PlayAll: I detect a Trekkie\n\n21) alnith: Build B2 Qonos\n\n22) bhorner: Discover B1 Bhorner Y2 Sun\n\n23) alnith: Trade B1 Y1 Qonos\n\n24) bhorner: B Y2 Bhorner\n\n25) alnith: Move R2 Qonos Sun\n\n26) bhorner: D B1 Sun Y3 Nova\n\n27) alnith: Move G1 Alnith Qonos\n\n28) bhorner: D Y1 Bhorner G2 Tree\n\n29) alnith: Build Y2 Qonos\n\n30) bhorner: S G3 Bhorner\nB Y3 Bhorner\nB Y3 Tree\nB R1 Boogar\n\n31) alnith: Move G1 Qonos Sun\n\n32) bhorner: Move Y2 Bhorner Boogar\n\n33) alnith: Move B2 Qonos Sun\n\n34) bhorner: Trade B1 G1 Nova\n\n35) alnith: Move R2 Sun Bhorner\n\n36) bhorner: Attack R2 Bhorner\n\n\nHomeworlds Online (SDG# 34187)\nVariants: "Unrated"\nStarted: 2018.6.19, Ended: 2018.8.13\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) Felix: Homeworld B1 G3 R3\n\n3) Trydnt: Build G1 Trydnt\n\tFelix: Hey again, have fun! :) I'm gonna try something a bit different.\n\n4) Felix: Build R1 Felix\n\n5) Trydnt: Build G1 Trydnt\n\n6) Felix: Trade R1 B1 Felix\n\n7) Trydnt: Trade G1 B1 Trydnt\n\n8) Felix: Build B2 Felix\n\n9) Trydnt: Build B2 Trydnt\n\n10) Felix: T B1 Y1 Felix\n\n11) Trydnt: Trade B1 Y1 Trydnt\n\n12) Felix: B R1 Felix\n\n13) Trydnt: Trade G1 R1 Trydnt\n\n14) Felix: Build B1 Felix\n\n15) Trydnt: Discover B2 Trydnt G1 G1\n\n16) Felix: Discover B1 Felix G2 Rim\n\n17) Trydnt: Discover Y1 Trydnt G1 Gee1\n\n18) Felix: Build B1 Felix\n\n19) Trydnt: Build B3 G1\n\n20) Felix: Build B3 Rim\n\n21) Trydnt: Trade B3 Y3 G1\n\n22) Felix: Trade B1 G1 Felix\n\n23) Trydnt: Build G2 Trydnt\n\n24) Felix: Discover G1 Felix Y2 Opus\n\n25) Trydnt: Build R1 Trydnt\n\n26) Felix: Move R1 Felix Rim\n\n27) Trydnt: Move B2 G1 Opus\n\n28) Felix: Trade B3 Y3 Rim\n\n29) Trydnt: Sacrifice G2 Trydnt\nBuild Y1 Gee1\nBuild Y2 G1\n\n30) Felix: B Y2 Rim\n\n31) Trydnt: Sacrifice Y2 G1\nMove Y1 Gee1 Rim\nMove Y1 Gee1 Rim\nCatastrophe Rim Y\n\n32) Felix: Build R2 Rim\n\n33) Trydnt: Move Y3 G1 Rim\n\n34) Felix: Build R2 Rim\n\n35) Trydnt: Discover R1 Trydnt Y1 Y1\n\n36) Felix: Trade R2 Y2 Rim\n\tFelix: Sorry for the delay!\n\n37) Trydnt: Build R2 Trydnt\n\n38) Felix: Sacrifice B2 Felix\nTrade R1 Y1 Rim\nTrade R2 Y2 Rim\n\n39) Trydnt: Catastrophe Rim Y\nMove R1 Y1 Rim\n\n40) Felix: Build B1 Rim\n\n41) Trydnt: Sacrifice R2 Trydnt\nAttack B1 Rim\nAttack B1 Rim\n\n42) Felix: Build R1 Felix\n\n43) Trydnt: Build R2 Rim\n\n44) Felix: Build R2 Felix\n\n45) Trydnt: Trade R2 Y2 Rim\n\n46) Felix: Move R3 Felix Rim\n\n47) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Rim\nBuild R2 Rim\nBuild R3 Trydnt\nCatastrophe Rim R\n\n48) Felix: Build Y1 Felix\n\n49) Trydnt: Trade R3 G3 Trydnt\n\n50) Felix: Discover Y1 Felix Y2 Rom\n\n51) Trydnt: Build G1 Trydnt\n\tFelix: Oh, poo. \n\n52) Felix: Sacrifice G1 Opus\nBuild Y1 Rom\n\n53) Trydnt: Build Y3 Rim\n\n54) Felix: Build Y3 Felix\n\n55) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Opus\n\n56) Felix: Sacrifice Y1 Rom\nMove Y1 Felix Rim\n\n57) Trydnt: Trade Y2 R2 Rim\n\n58) Felix: Build Y1 Rim\n\n59) Trydnt: Sacrifice R2 Rim\nAttack Y1 Rim\nAttack Y1 Rim\n\n60) Felix: Discover Y1 Rom G1 Ram\n\n61) Trydnt: Discover Y1 Rim G1 G1\n\n62) Felix: Build Y2 Ram\n\n63) Trydnt: Build Y2 G1\n\n64) Felix: Trade R2 G2 Felix\n\n65) Trydnt: Sacrifice B2 Opus\nTrade B2 G2 Opus\nTrade B1 G1 Rim\n\n66) Felix: Trade G2 B2 Felix\n\n67) Trydnt: Build B1 Rim\n\n68) Felix: Discover B2 Felix G2 Out\n\n69) Trydnt: Build G3 Opus\n\n70) Felix: Build B2 Out\n\n71) Trydnt: Move B1 Rim G1\n\n72) Felix: Move Y2 Ram Out\n\n73) Trydnt: Sacrifice G3 Opus\nBuild G3 Opus\nBuild B3 G1\nBuild B3 Rim\n\n74) Felix: Move B2 Out Ram\n\n75) Trydnt: Discover G3 Opus B3 B3\n\n76) Felix: Build R1 Felix\n\n77) Trydnt: Build R2 Trydnt\n\n78) Felix: Move R1 Felix Out\n\n79) Trydnt: Move B3 Rim Ram\n\n80) Felix: Sacrifice Y1 Ram\nMove B2 Ram Out\n\n81) Trydnt: Move B3 G1 Out\n\n82) Felix: Sacrifice Y2 Out\nDiscover B2 Out Y1 Safety\nMove B2 Out Safety\n\n83) Trydnt: Sacrifice R1 Trydnt\nAttack R1 Out\n\n84) Felix: Build R1 Felix\n\n85) Trydnt: Move Y1 G1 Out\n\n86) Felix: Discover R1 Felix Y2 Grump\n\n87) Trydnt: Sacrifice G3 B3\nBuild G3 Rim\nBuild B3 Out\nBuild R2 Out\n\n88) Felix: Trade B2 R2 Safety\n\n89) Trydnt: Move G3 Rim Felix\n\tFelix: It's looking pretty grim for me!\n\n90) Felix: Attack G3 Felix\n\tTrydnt: it's not looking good no but I've seen you pull some sneaky recoveries in the past\n\n91) Trydnt: Sacrifice Y2 G1\nMove G1 Rim Felix\nMove G2 Opus Felix\nCatastrophe Felix G\n\n92) Felix: Pass\n\n93) Trydnt: Sacrifice Y3 Rim\nMove B1 Rim Felix\nMove B3 Out Felix\nMove B3 Out Felix\nCatastrophe Felix B\n\n\tFelix: Well done!\n\tTrydnt: good game \n\nHomeworlds Online (SDG# 34233)\nVariants: "Unrated"\nStarted: 2018.6.21, Ended: 2018.7.2\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3 Dlwillson\n\n2) Felix: H B1 G3 B3 *\n\tdlwillson: Hi Felix! Long time, no play! If my turns are slow, please forgive me. My top priority is proposing for SFS DevOps Camp.\n\tFelix: Hello! I know, it's been a minute. No pressure to make moves quickly. Sounds like you're busy! I am too. We just had a new baby AND moved into a new house with the last several weeks, so I don't mind if it's a slow game :)\n\tFelix: Even if you have to miss the 7 day timer, I won't end the game\n\n3) dlwillson: Build G1 Dlwillson\n\tFelix: Having a small universe might help keep the game from dragging on too much :)\n\n4) Felix: Build B1 Felix\n\n5) dlwillson: Build G1 Dlwillson\n\n6) Felix: Trade B3 Y3 Felix\n\tdlwillson: I thought about trading to blue, but this seemed more interesting. I'll know whether it was a mistake shortly.\n\n7) dlwillson: Discover G1 Dlwillson Y2 Sold\n\tFelix: Interesting indeed!\n\n8) Felix: B B2 Felix\n\n9) dlwillson: B G1 Sold\n\n10) Felix: Discover B1 Felix G2 Out\n\n11) dlwillson: M G1 Sold Felix\n\n12) Felix: Trade B2 R2 Felix\n\n13) dlwillson: S G3 Dlwillson\nB G2 Felix\nB G2 Sold\nB G3 Dlwillson\n\tFelix: Ouch, can't believe I fell for that. Very nice maneuver! I admit I actually forgot we were in a small universe, and I'm the one who made it!\n\n14) Felix: Build R1 Felix\n\tdlwillson: Well, I think it's going to work out. ;-)\n\n15) dlwillson: Sacrifice G2 Sold\nBuild G2 Felix\nBuild G3 Dlwillson\nCatastrophe Felix G\n\tFelix: It looks like it!\n\n16) Felix: Build B2 Out\n\n17) dlwillson: Trade G3 R3 Dlwillson\n\n18) Felix: Build B2 Out\n\n19) dlwillson: Build R1 Dlwillson\n\n20) Felix: Trade B2 Y2 Out\n\n21) dlwillson: M R3 Dlwillson Out\n\n22) Felix: Build B2 Out\n\n23) dlwillson: A Y2 Out\n\n24) Felix: Sacrifice B2 Out\nTrade B1 R1 Out\nTrade B2 R2 Out\n\n25) dlwillson: S R3 Out\nA R2 Out\nA R1 Out\nPass\n\n26) Felix: Trade R1 G1 Felix\n\n27) dlwillson: T G1 B1 Dlwillson\n\n28) Felix: Build G1 Felix\n\n29) dlwillson: B B2 Dlwillson\n\n30) Felix: Build Y1 Felix\n\n31) dlwillson: M B2 Dlwillson Sold\n\n32) Felix: Discover G1 Felix B3 Hope\n\tdlwillson: Bah. I'm wasting moves. Sorry.\n\tdlwillson: Bah. I'm wasting moves. Sorry.\n\n33) dlwillson: S G3 Dlwillson\nB B2 Sold\nB B2 Sold\nB B3 Dlwillson\n\tFelix: No worries. I could actually just resign at this point, unless you'd rather play it out? You've outmaneuvered me very quickly, nice work!\n\n\tdlwillson: Good game, Felix! My green gambit paid off!\n\tFelix: Likewise! That was a fun quick one. I hoped my opening rush on blue would benefit me more :) well played!\n\nHomeworlds Online (SDG# 34215)\nStarted: 2018.6.24, Ended: 2018.8.14\nParticipants: deanthebean (S), Felix (N)\nWinner: deanthebean\n\n1) Felix: Homeworld B2 R3 G3\n\n2) deanthebean: Homeworld B1 Y2 G3\n\tdeanthebean: Hello again. Have fun!\n\n3) Felix: Build G1 Felix\n\n4) deanthebean: Build G1 Deanthebean\n\tFelix: Hi! You too! Always a pleasure.\n\n5) Felix: Trade G1 B1 Felix\n\n6) deanthebean: Build G1 Deanthebean\n\n7) Felix: Build B1 Felix\n\n8) deanthebean: Trade G1 R1 Deanthebean\n\n9) Felix: Build G1 Felix\n\n10) deanthebean: Build R1 Deanthebean\n\n11) Felix: Trade G1 R1 Felix\n\n12) deanthebean: Build R2 Deanthebean\n\n13) Felix: Build R2 Felix\n\n14) deanthebean: Trade R2 B2 Deanthebean\n\n15) Felix: Trade R1 Y1 Felix\n\n16) deanthebean: Trade R1 Y1 Deanthebean\n\n17) Felix: D B1 Felix G1 Rumpus\n\n18) deanthebean: Discover B2 Deanthebean G3 Wait\n\n19) Felix: Sacrifice G3 Felix\nBuild B2 Rumpus\nBuild B3 Rumpus\nBuild B3 Felix\n\n20) deanthebean: Sacrifice Y1 Deanthebean\nMove B2 Wait Rumpus\nCatastrophe Rumpus Blue\n\n21) Felix: Trade B3 G3 Felix\n\n22) deanthebean: Build R1 Deanthebean\n\tFelix: Sorry for th edelay!\n\tdeanthebean: np\n\n23) Felix: Build Y1 Felix\n\tFelix: I stopped getting email notifications for some reason\n\n24) deanthebean: Trade R1 B1 Deanthebean\n\n25) Felix: Build Y1 Felix\n\n26) deanthebean: Build B2 Deanthebean\n\n27) Felix: Build B2 Felix\n\n28) deanthebean: Trade B2 Y2 Deanthebean\n\n29) Felix: Discover Y1 Felix G1 Out\n\n30) deanthebean: Discover B1 Deanthebean Y3 Stage\n\n31) Felix: Move B2 Felix Out\n\n32) deanthebean: Discover Y2 Deanthebean G3 Coach\n\n33) Felix: Discover Y1 Felix G1 Conk\n\n34) deanthebean: Build G2 Deanthebean\n\n35) Felix: Sacrifice G3 Felix\nBuild Y2 Conk\nBuild Y3 Out\nBuild Y3 Felix\n\n36) deanthebean: Discover G2 Deanthebean B3 Port\n\n37) Felix: Trade Y1 R1 Out\n\n38) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 Port\nBuild G2 Port\nBuild G3 Deanthebean\n\n39) Felix: Trade Y3 G3 Felix\n\n40) deanthebean: Sacrifice G3 Deanthebean\nBuild G3 Deanthebean\nBuild R1 Deanthebean\nBuild R2 Deanthebean\n\n41) Felix: Sacrifice G3 Felix\nBuild Y1 Out\nBuild Y3 Felix\nBuild R2 Out\n\n42) deanthebean: Sacrifice G3 Deanthebean\nBuild G3 Deanthebean\nBuild G3 Deanthebean\nBuild B2 Stage\n\n43) Felix: Move Y3 Out Port\n\n44) deanthebean: Move R1 Deanthebean Coach\n\n45) Felix: Build B3 Out\n\n46) deanthebean: Build R3 Coach\n\n47) Felix: Sacrifice R2 Out\nAttack G2 Port\nAttack G2 Port\n\n48) deanthebean: Move G1 Deanthebean Port\nCatastrophe Port Green\n\n49) Felix: Move B1 Felix Conk\n\n50) deanthebean: Move R3 Coach Conk\n\n51) Felix: Sacrifice Y2 Conk\nMove B1 Conk Coach\nMove B3 Out Coach\n\n52) deanthebean: Discover Y2 Coach G1 Mouth\n\n53) Felix: Build B3 Out\n\n54) deanthebean: Sacrifice G3 Deanthebean\nBuild Y2 Mouth\nBuild R2 Conk\nBuild G2 Deanthebean\n\n55) Felix: Build R3 Out\n\n56) deanthebean: Attack Y1 Conk\n\n57) Felix: Sacrifice Y3 Port\nMove B1 Coach Deanthebean\nMove B3 Coach Deanthebean\nDiscover B2 Out Y3 In\n\n58) deanthebean: Attack B3 Deanthebean\n\n59) Felix: Move B2 In Deanthebean\nCatastrophe Deanthebean Blue\n\n60) deanthebean: Move R3 Conk Felix\n\n61) Felix: Sacrifice R2 Felix\nAttack R3 Felix\nPass\n\n62) deanthebean: Build Y3 Conk\n\n63) Felix: Sacrifice Y1 Felix\nMove R3 Felix Mouth\n\n64) deanthebean: Sacrifice Y3 Conk\nMove Y1 Conk Felix\nMove Y2 Mouth Felix\nMove Y2 Mouth Felix\nCatastrophe Felix Yellow\n\n\tdeanthebean: gg\n\tFelix: Wow, totally overlooked that. Good game!\n\nHomeworlds Online (SDG# 34210)\nVariants: "Unrated"\nStarted: 2018.6.26, Ended: 2018.7.6\nParticipants: DodoBirb (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R2 G3\n\tBabamots: So you'd like a Homeworlds lesson? I'll try to explain strategy as we go.\n\n2) DodoBirb: Homeworld B1 Y2 G3\n\tBabamots: How much have you played? I can explain every detail or I can leave out the basics.\n\tBabamots: I'm taking a large-medium home system, which has a low win rate. A medium-small home had the best win rate, probably because it let's you move to large systems right away and therefore control the larges in the stash.\n\n3) Babamots: Build G1 Babamots\n\tDodoBirb: This is my first game. I know the rules and a bit of strategy but I want to see how it all works against a real opponent.\n\n4) DodoBirb: Build G1 Dodobirb\n\tBabamots: Cool! The first few moves will be building and getting new ship colors. There's not usually too much strategy yet.\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) DodoBirb: Trade G1 Y1 Dodobirb\n\tBabamots: One of the first things to watch for is getting "frozen out" of a color. Suppose I keep building y1 and you don't trade for a y1. Then the y1 will all be used and you will have no yellow ships. In order to get any yellow ships, you will have to get a medium of another color and trade for a y2.\n\n7) Babamots: Build G1 Babamots\n\n8) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: Should I have traded early like that or waited a turn? \n\n9) Babamots: Trade G1 B1 Babamots\n\tBabamots: Either was fine in this case. The main thing is not to let me get all the smalls of any color (or you'll be frozen out) and don't take the last small of any color I can build (or I'll get the first medium).\n\tBabamots: Of course, it's OK to let me get a medium if you can get your own on your next move. You just don't want to fall behind.\n\n10) DodoBirb: Trade G1 B1 Dodobirb\n\tBabamots: Like here, it's OK to trade for a b1 because, even though I can build b2, you can build b2 too.\n\n11) Babamots: Build B2 Babamots\n\n12) DodoBirb: Build B2 Dodobirb\n\n13) Babamots: Trade B2 Y2 Babamots\n\tBabamots: I'm planning to trade for y2 and threaten a blue catastrophe at your home.\n\n14) DodoBirb: Discover B2 Dodobirb Y3 Yellow\n\tBabamots: I'm too tired to count. I would need to have a y3 to sacrifice and catastrophe. \n\tBabamots: It's 3 AM here. I'm not at my sharpest :-)\n\tDodoBirb: Sorry if I'm keeping you up, I'm in Australia so it's early in the afternoon for me.\n\n15) Babamots: Discover Y1 Babamots Y1 Iconia\n\tBabamots: My plan for my next move would give me almost a yellow monopoly and another large ship. It is\r\nsacrifice g3 Babamots\r\nbuild y2 Iconia\r\nbuild y3 Babamots\r\nbuild y3 Babamots\r\n\r\nYou can prevent it in a couple of ways. Want to look for them or have me tell you? \n\n16) DodoBirb: Discover B1 Dodobirb Y3 Sun\n\tDodoBirb: I'll look. If I can't find them I'll probably ask.\n\tDodoBirb: I can move my y1 at my homeworld into Iconia to stop you from building a yellow ship there.\n\tDodoBirb: Oh oops the systems aren't connected\n\n17) Babamots: Build B2 Babamots\n\tBabamots: I would have recommended discovering another y3 system to user up the piece. \n\tDodoBirb: Is that because my move stops me from making more yellow?\n\tBabamots: It looks like your plan is to move y1 to Iconia after I build so you can catastrophe the system. It's true you lose your only yellow ship (so you'll have to trade again to build yellows), but also, I come out ahead by a large ship.\n\tBabamots: You can still undo if you'd like. Up to you. \n\n18) DodoBirb: Build G1 Dodobirb\n\n19) Babamots: Discover B2 Babamots G1 Risa\n\n20) DodoBirb: Move G1 Dodobirb Yellow\n\tBabamots: Here's a big-picture suggestion. You seem to have known how important it is to have blue and green in your home system. You'll also want to get at least one other system with blue and green. That gives you another place to build and diversify and less worry about overpopulation.\r\n\r\nWhen the homeworlds are three moves apart (like ours), I usually like to start building my invasion fleet in a system that is one move away from my home and gradually move it to two different systems that are connected to my opponent's home. By spreading across three systems, there's little chance of overpopulation. A mistake I see pretty often is that someone tries to build a whole fleet in one system, which gives me lots of opportunities to threaten catastrophes.\r\n\r\nI've been aching to give someone this tip, and you're the lucky recipient :-).\n\n21) Babamots: Build Y2 Babamots\n\tBabamots: And with that I'd better get some sleep. It's hard for me to keep a decent schedule when I don't have time-sensitive obligations the next day.\n\n22) DodoBirb: Discover Y1 Dodobirb Y3 Echo\n\n23) Babamots: Build B2 Babamots\n\tBabamots: Even though you could build a y3, I would cheerfully sacrifice my y2 to move my y1 to your home for a catastrophe.\r\n\r\nThe danger of yellow catastrophes on my home stars is the main reason I see to use red rather than yellow as a home marker color. I'm not sure which is better, but a yellow home marker always seems to cause a frustrating moment where I want to build yellow at home but can't.\n\tDraw5PlayAll: Exactly my reason for using red. I know they say to use yellow for beginners but then your options for storing yellows is more limited. I can often get 4-5 yellows and the homeworld is a nice place to put them.\n\n24) DodoBirb: Build B3 Yellow\n\tDodoBirb: I couldn't really build yellow anywhere so I just had to stop you from taking it.\n\tBabamots: Yep, it was a good move. I think the next thing you should work on is turning some of those y3 systems into ships. If you move your b2 away from "yellow," you can sacrifice your g1 in yellow to build y3 (since the system marker becomes available for building the instant that last ship is gone). Of course, you'll need to put a yellow ship somewhere that you can safely build a y3...\n\tBabamots: Meanwhile, my plan is to make more important things come up so you don't get around to building those y3s. For starters, you're not going to want to pass up a chance to build a b3.\n\n25) Babamots: Build B3 Risa\n\tBabamots: My plan for the next few moves is to get some red and take advantage of the fact that I have more medium ships. Even if you get red ships too, my mediums can chase your smalls around and keep them off the y3 systems so you can't build y3.\r\n\r\nSomething else will probably come up to distract me from that plan, but that's what I'm hoping to work on for the next several moves.\n\n26) DodoBirb: Build G1 Dodobirb\n\n27) Babamots: Trade B3 R3 Risa\n\n28) DodoBirb: Trade B3 R3 Yellow\n\tBabamots: Since I'm about to trade for a red ship, you need a red ship immediately. Otherwise, I can sacrifice a y2 to send my large to your homeworld and take it over.\n\n29) Babamots: Trade B1 R1 Babamots\n\n30) DodoBirb: Build R1 Yellow\n\n31) Babamots: Build G2 Babamots\n\n32) DodoBirb: Build G2 Dodobirb\n\n33) Babamots: Move G2 Babamots Iconia\n\tBabamots: My plan is to eventually move my g2 to either Sun or Echo. Then, I either get to capture a ship (by sacrificing my r1) or, if your ship leaves, I get to sacrifice my g2 to build a y3 with the system marker.\n\n34) DodoBirb: Trade G2 R2 Dodobirb\n\tBabamots: My next move puts you in check. I could sacrifice y2 to move my g2 to your home and catastrophe all the ships there. So you'll need to move or trade a green at home to keep me from winning. Technically, you could also save yourself by moving another ship to your home, but that still lets me destroy three of your ships.\n\n35) Babamots: Move G2 Iconia Sun\n\n36) DodoBirb: Move B1 Sun Dodobirb\n\n37) Babamots: Sacrifice G2 Sun\nBuild G2 Babamots\nBuild Y3 Babamots\n\n38) DodoBirb: Build G2 Yellow\n\n39) Babamots: Move Y2 Babamots Risa\n\n40) DodoBirb: Discover G1 Dodobirb B3 Deepblue\n\n41) Babamots: Move B2 Babamots Iconia\n\n42) DodoBirb: Discover R1 Yellow R1 Reddwarf\n\n43) Babamots: Move R3 Risa Deepblue\n\n44) DodoBirb: Move R3 Yellow Risa\n\tBabamots: I think you're playing extremely well, so I haven't felt like you needed advice for a while. I can say more if you're feeling lost, but it sure doesn't look like you need my help.\n\tBabamots: Since your ships are pretty spread out, you're well prepared to make a green sacrifice triple build and get another large ship if I make the smallest mistake.\n\tBabamots: My big advantage is dominating the yellows. I can sacrifice to move two or three times while you're limited to one. \n\n45) Babamots: Sacrifice Y2 Risa\nMove B2 Risa Echo\nMove B2 Echo Dodobirb\n\tBabamots: Your g1 can escape almost like a yellow by sacrificing and rebuilding. Also, you could counter-attack at Risa with your r3.\n\n46) DodoBirb: Move B1 Dodobirb Yellow\n\n47) Babamots: Sacrifice G3 Babamots\nBuild B1 Dodobirb\nBuild B3 Dodobirb\nBuild Y2 Babamots\nCatastrophe Dodobirb B\n\n48) DodoBirb: Sacrifice G1 Deepblue\nBuild G1 Dodobirb\n\n49) Babamots: Move Y2 Babamots Reddwarf\n\n50) DodoBirb: Sacrifice G2 Yellow\nBuild R2 Reddwarf\nBuild R3 Reddwarf\nCatastrophe Reddwarf R\n\tBabamots: Sorry if I haven't been as instructive as you'd like. I didn't know myself what I would do if you counter-attacked back there, or I should have warned you that the time was right to start the real attack.\r\n\r\nAt this point, it will be very difficult to defend your home from a game-ending yellow catastrophe. I've got most of the yellow, so I don't think you'll be able to move your ships around to effectively intercept my invasion. I'm planning to move my y2s to small systems and then move three yellows to your home all at once.\n\tDodoBirb: Don't worry about it. I've learnt quite a bit from this game. I'll see how long I can hold out against your yellow onslaught (probably not for very long).\n\n51) Babamots: Build Y2 Babamots\n\tDraw5PlayAll: I see something... interesting.\n\tBabamots: You're welcome to give suggestions to DodoBirb. I don't see anything that will do more than buy a few moves (like sacrificing green to build two reds in RedDwarf and destroying my y2. I can rebuild it, but it sets me back a move).\n\tDraw5PlayAll: Rebuild it where?\n\tBabamots: I would rebuild it in my home system. That makes three yellows there, but the y1 in Echo can't reach my home for a catastrophe in one move.\n\n52) DodoBirb: Trade B2 R2 Yellow\n\n53) Babamots: Discover Y2 Babamots B1 Bolius\n\n54) DodoBirb: Sacrifice G3 Dodobirb\nBuild R1 Risa\nBuild R1 Yellow\nBuild R3 Dodobirb\n\n55) Babamots: Sacrifice Y3 Babamots\nMove Y2 Babamots Bolius\nMove Y2 Bolius Dodobirb\nMove Y1 Iconia Dodobirb\n\tBabamots: So you know, I'm planning to sacrifice my y3 on my next move. I will move two yellows to your home and move my y2 from Babamots to a small system -- maybe Bolius. I don't believe there's anything you can do to prevent me from then moving that y2 to your home and having the four yellows there I need to win.\n\tBabamots: Also, if you ever want to study games after they're over, an easy way is with SDG's "Archive View" (you can look at every position in the whole game history). This page can be a little hard to find, but I wrote some Javascript that makes it super easy. The code and instructions are here:\r\n\r\nhttps://github.com/jpeterbaker/SDGchange\n\n56) DodoBirb: Sacrifice Y1 Echo\nMove R3 Risa Babamots\n\tDraw5PlayAll: ?page=play&gid=34210 should redirect to the Play page, and thus you can heavily reduce the size of your code.\n\n57) Babamots: Move Y2 Bolius Dodobirb\nCatastrophe Dodobirb Y\n\tBabamots: Hey, you're right! I can shorten the code lots now.\n\tBabamots: As for the game, if I weren't about to win, this would be kind of a bad position for me. I don't have a large ship at my home, so you can move you r3 to my home, preparing to gobble up all my home ships. My only defensive move would be to sacrifice a y2 to move my own r3 to my home and catastrophe away you r3. I would lose a ship of each size (y2, r1, r3) and a home star compared to your y1 (for the movement) and r3.\n\n\tDodoBirb: GG. Thanks for this teaching game. I learned a lot from just playing against someone better than me.\n\tBabamots: I tried to be instructive, and at least you got to see some strategy in action. Do you have anyone you'll be able to play in person? I'm happy to have another game, though the time difference will make it take a while.\n\tDodoBirb: I do have some people I can play in person but they're usually pretty busy.\n\nHomeworlds Online (SDG# 34183)\nVariants: "Hard time"\nStarted: 2018.7.1, Ended: 2018.7.16\nParticipants: Trydnt (S), iddqd (N)\nWinner: Trydnt\n\n1) iddqd: Homeworld B3 Y2 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) iddqd: Build G1 Iddqd\n\n4) Trydnt: Build G1 Trydnt\n\n5) iddqd: Trade G1 Y1 Iddqd\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) iddqd: Build Y2 Iddqd\n\n8) Trydnt: Build Y2 Trydnt\n\n\nHomeworlds Online (SDG# 34234)\nStarted: 2018.7.3, Ended: 2019.3.12\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) ts52: Homeworld B1 Y2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tts52: Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) ts52: Build G1 Ts52\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) ts52: Discover G1 Ts52 B3 Gonzo\n\n9) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n10) ts52: Trade G1 R1 Ts52\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) ts52: Build R2 Ts52\n\n13) Draw5PlayAll: Discover R2 Draw5playall G2 G2\n\n14) ts52: Move R2 Ts52 Gonzo\n\n15) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n16) ts52: Build G1 Ts52\n\n17) Draw5PlayAll: Build B1 Draw5playall\n\n18) ts52: Trade G1 Y1 Ts52\n\n19) Draw5PlayAll: Move B1 Draw5playall G2\n\n20) ts52: Build G1 Ts52\n\n21) Draw5PlayAll: Build B2 G2\n\n22) ts52: Move Y1 Ts52 Gonzo\n\n23) Draw5PlayAll: Build B2 G2\n\n24) ts52: Build R1 Gonzo\n\n25) Draw5PlayAll: Trade B2 Y2 G2\n\n26) ts52: Discover R1 Gonzo G2 Kermit\n\n27) Draw5PlayAll: Discover B1 Draw5playall Y2 Idea\n\n28) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Gonzo\nBuild R3 Ts52\n\n29) Draw5PlayAll: Build R3 G2\n\n30) ts52: Trade R3 B3 Ts52\n\n31) Draw5PlayAll: Trade R3 Y3 G2\n\n32) ts52: Build R3 Ts52\n\n33) Draw5PlayAll: Build R3 G2\n\n34) ts52: Trade R3 G3 Ts52\n\n35) Draw5PlayAll: Discover Y3 G2 R3 Steal\n\n36) ts52: Move R2 Gonzo Idea\n\n37) Draw5PlayAll: Move B1 Idea Steal\n\tDraw5PlayAll: I think my red star is endangered\n\n38) ts52: Move Y1 Gonzo Kermit\n\n39) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 Steal\nBuild Y3 Draw5playall\nBuild Y3 G2\n\n40) ts52: Move R1 Kermit Steal\n\n41) Draw5PlayAll: Move Y3 Steal Kermit\n\n42) ts52: Move Y1 Kermit Gonzo\n\tDraw5PlayAll: This incident will be reported.\n\n43) Draw5PlayAll: Sacrifice R2 G2\nAttack R2S Kermit\nAttack R1S Steal\n\n44) ts52: Move B3 Ts52 Steal\n\n45) Draw5PlayAll: Sacrifice Y1 Steal\nMove B1 Steal Kermit\n\n46) ts52: Build Y1 Gonzo\n\n47) Draw5PlayAll: Build B2 Kermit\n\n48) ts52: Attack R1N Steal\n\n49) Draw5PlayAll: Build R2 Kermit\n\n50) ts52: Sacrifice G1 Ts52\nBuild B2 Steal\n\n51) Draw5PlayAll: Trade B2 G2 Kermit\n\n52) ts52: Discover Y1 Gonzo B2 Grover\n\n53) Draw5PlayAll: Move G2 Kermit Draw5playall\n\n54) ts52: Build G1 Ts52\n\n55) Draw5PlayAll: Sacrifice Y2 G2\nMove B1 G2 Steal\nMove B1 Kermit Steal\n\n56) ts52: Trade B2 Y2 Steal\n\n57) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild B2 Steal\nCatastrophe Steal Blue\nBuild B1 G2\n\tDraw5PlayAll: I failed\n\n58) ts52: Sacrifice G3 Ts52\nBuild G1 Gonzo\nBuild G2 Ts52\nBuild G3 Ts52\n\n59) Draw5PlayAll: Build B1 G2\n\n60) ts52: Discover G1 Ts52 B3 Cookie\n\n61) Draw5PlayAll: Sacrifice Y3 G2\nMove B1 G2 Gonzo\nMove B1 G2 Gonzo\nMove B2 G2 Gonzo\nCatastrophe Gonzo Blue\n\n62) ts52: Build R3 Ts52\n\n63) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n64) ts52: Trade G2 B2 Ts52\n\n65) Draw5PlayAll: Build G1 Draw5playall\n\n66) ts52: Build G2 Ts52\n\tDraw5PlayAll: Seems I can have either green or blue, but not both.\n\n67) Draw5PlayAll: Build G3 Draw5playall\n\n68) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Cookie\nBuild Y1 Grover\n\n69) Draw5PlayAll: Trade G1 B1 Draw5playall\n\tBabamots: Hey guys, is this game for the tournament? If so, I can record it for you.\n\tts52: I don't think it is. No. Just Draw5 trying to size me up I think. :)\n\tDraw5PlayAll: 3/2/10 is not 2/2/7\n\tDraw5PlayAll: What did they do in Star Trek at heading 227 mark something?\n\n70) ts52: Trade G3 Y3 Cookie\n\tBabamots: So you mean the clock setting is wrong for the tournament (3/2/10 instead of 2/2/7). OK, thanks!\r\nHmm, I don't know of 227 having any significance in Star Trek, or anywhere else for that matter.\n\n71) Draw5PlayAll: Build Y1 Kermit\n\tDraw5PlayAll: No, this is not a tournament game. It started in very early July.\n\n72) ts52: Sacrifice G3 Ts52\nBuild G1 Cookie\nBuild G3 Cookie\nBuild G3 Ts52\n\n73) Draw5PlayAll: Move G1 Draw5playall G2\n\n74) ts52: Move G3 Cookie Grover\n\n75) Draw5PlayAll: Move B1 Draw5playall Kermit\n\n76) ts52: Move R3 Ts52 Cookie\n\n77) Draw5PlayAll: Sacrifice G1 G2\nBuild G1 Draw5playall\n\n78) ts52: Move R1 Steal Grover\n\n79) Draw5PlayAll: Build B1 Kermit\n\n80) ts52: Move B2 Ts52 Steal\n\n81) Draw5PlayAll: Move G3 Draw5playall Idea\n\n82) ts52: Sacrifice Y2 Steal\nMove G3 Grover Steal\nDiscover B2 Steal Y2 Bigbird\n\tDraw5PlayAll: I got an idea!\n\n83) Draw5PlayAll: Sacrifice R2 Kermit\nAttack R2 Idea\nPass\n\tts52: I don't think I like where your idea is going. ;)\n\n84) ts52: Sacrifice G3 Ts52\nBuild B2 Bigbird\nBuild B3 Bigbird\nBuild G3 Ts52\n\tDraw5PlayAll: Red teleportation, textbook example\n\n85) Draw5PlayAll: Sacrifice Y3 Kermit\nMove B1 Kermit Cookie\nMove B1 Cookie Bigbird\nCatastrophe Bigbird Blue\nDiscover R3 G2 Y3 Freedom\n\tDraw5PlayAll: We need to break the ice\n\n86) ts52: Move R3 Cookie Kermit\n\n87) Draw5PlayAll: Move R3 Freedom Grover\n\n88) ts52: Attack R2 Kermit\n\n89) Draw5PlayAll: Sacrifice Y1 Kermit\nDiscover B1 Kermit Y3 Esc\n\n90) ts52: Sacrifice G3 Ts52\nBuild G2 Steal\nBuild G3 Ts52\nBuild R2 Ts52\n\n91) Draw5PlayAll: Sacrifice R2 Idea\nAttack Y1 Grover\nAttack R1 Grover\n\n92) ts52: Move Y1 Grover Steal\n\n93) Draw5PlayAll: Sacrifice G3 Idea\nBuild G3 Draw5playall\nBuild Y1 Draw5playall\nBuild Y2 Grover\n\n94) ts52: Build Y2 Steal\n\n95) Draw5PlayAll: Discover Y3 Draw5playall R2 Perhaps\n\n96) ts52: Trade G2 B2 Ts52\n\n97) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild B1 Esc\n\n98) ts52: Move B2 Ts52 Steal\n\n99) Draw5PlayAll: Move B1 Esc Perhaps\n\n100) ts52: Move Y2 Steal Kermit\n\n101) Draw5PlayAll: Build G1 Draw5playall\n\n102) ts52: Move R2 Ts52 Esc\n\n103) Draw5PlayAll: Discover B1 Esc G2 Donotenter\n\n104) ts52: Move R2 Kermit Cookie\n\n105) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild B2 Perhaps\nBuild B3 Donotenter\n\n106) ts52: Sacrifice Y2 Kermit\nMove R2 Cookie Grover\nMove R2 Esc Grover\nCatastrophe Grover R\n\n107) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Perhaps\nBuild Y3 Draw5playall\nBuild G3 Draw5playall\n\n108) ts52: Sacrifice G3 Steal\nBuild G3 Steal\nBuild R1 Kermit\nBuild R2 Ts52\n\n109) Draw5PlayAll: Trade Y2 R2 Grover\n\n110) ts52: Trade G3 R3 Steal\n\n111) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild Y2 Grover\n\n112) ts52: Move R3 Steal Grover\n\n113) Draw5PlayAll: Sacrifice Y2 Grover\nDiscover R2 Grover G3 Fort\nMove B3 Donotenter Steal\n\n114) ts52: Sacrifice Y1 Steal\nMove B2 Steal Donotenter\n\n115) Draw5PlayAll: Attack G2 Steal\n\n116) ts52: Attack Y1N Grover\n\n117) Draw5PlayAll: Sacrifice Y1 Draw5playall\nMove B3 Steal Donotenter\n\n118) ts52: Build G1 Ts52\n\n119) Draw5PlayAll: Sacrifice G2 Steal\nBuild G2 Draw5playall\nBuild R3 Fort\n\n120) ts52: Move R2 Ts52 Cookie\n\n121) Draw5PlayAll: Move Y2 Perhaps Fort\n\n122) ts52: Move G1 Cookie Grover\n\n123) Draw5PlayAll: Move B1 Perhaps Fort\n\n124) ts52: Move G1 Cookie Grover\n\n125) Draw5PlayAll: Move G3 Draw5playall Perhaps\n\n126) ts52: Build Y1 Grover\n\n127) Draw5PlayAll: Move Y3 Perhaps Fort\n\n128) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Grover\nBuild Y2 Cookie\n\n129) Draw5PlayAll: Move Y2 Fort Grover\nCatastrophe Grover Yellow\n\n130) ts52: Move Y2 Cookie Grover\n\n131) Draw5PlayAll: Build Y1 Fort\n\n132) ts52: S G3 Ts52\nB G3 Ts52\nB Y1 Grover\nB Y1 Grover\n\n133) Draw5PlayAll: Move Y1 Fort Grover\nCatastrophe Grover Yellow\n\n134) ts52: Sacrifice G3 Ts52\nBuild Y1 Cookie\nBuild Y1 Cookie\nBuild G3 Ts52\n\n135) Draw5PlayAll: Build Y1 Fort\n\tDraw5PlayAll: Time Squared\n\tDraw5PlayAll: Wait, no. That was Cause and Effect: ST:TNG S5E18.\r\n\r\n"Captain's log, Stardate 45652.1. The Enterprise has entered an area of space known as the Typhon Expanse. We are the first Starfleet vessel to chart this unexplored region."\n\n136) ts52: Move Y1 Cookie Grover\n\n137) Draw5PlayAll: Move Y1 Fort Perhaps\n\n138) ts52: Build Y2 Grover\n\n139) Draw5PlayAll: Build Y2 Perhaps\n\n140) ts52: Move Y1 Cookie Kermit\n\tDraw5PlayAll: One can never be two careful. Here I had the threedom four some maneuvers without letting you get both Yellows. I did not want to allow you to blow my yellows at Draw5PlayAll.\n\n141) Draw5PlayAll: Move R3 Fort Donotenter\n\tts52: I definitely tend to play over cautiously.\n\n142) ts52: Move Y1 Grover Draw5playall\n\n143) Draw5PlayAll: Sacrifice Y1 Perhaps\nMove B3 Donotenter Draw5playall\n\n144) ts52: Build Y1 Kermit\n\tDraw5PlayAll: Progress, at last!!\n\n145) Draw5PlayAll: Move Y3 Draw5playall Donotenter\n\tts52: Indeed!\n\n146) ts52: Move Y1 Draw5playall Grover\n\n147) Draw5PlayAll: Attack B2 Donotenter\n\n148) ts52: Move R2 Cookie Grover\n\n149) Draw5PlayAll: Move B2 Donotenter Fort\n\n150) ts52: Move G1 Ts52 Fort\n\tDraw5PlayAll: FINALLY!!!\n\n151) Draw5PlayAll: Sacrifice Y3 Fort\nMove B2 Fort Grover\nMove B1 Fort Grover\nDiscover B1 Donotenter Y3 Backatcha\n\tts52: You've been working toward that for a long time. :)\n\n152) ts52: Sacrifice Y2 Grover\nMove R3 Grover Fort\nMove R2 Grover Backatcha\n\n153) Draw5PlayAll: Sacrifice Y2 Perhaps\nMove R2 Fort Donotenter\nMove R3 Donotenter Backatcha\n\n154) ts52: Attack B1N Backatcha\n\n155) Draw5PlayAll: Sacrifice R2 Donotenter\nAttack B1 Backatcha\nAttack R2 Backatcha\n\n156) ts52: Build R2 Fort\n\n157) Draw5PlayAll: Build Y2 Donotenter\n\n158) ts52: Build Y2 Grover\n\tDraw5PlayAll: Change is a powerful force\n\n159) Draw5PlayAll: Sacrifice R2 Backatcha\nAttack Y2 Grover\nAttack G1 Grover\n\n160) ts52: Build R2 Ts52\n\n161) Draw5PlayAll: Move R3 Backatcha Grover\n\n162) ts52: Move Y1 Grover Fort\n\n163) Draw5PlayAll: Attack G1 Grover\n\n164) ts52: Move R2 Ts52 Backatcha\n\n165) Draw5PlayAll: Sacrifice Y2 Donotenter\nMove G1 Grover Fort\nMove G1 Grover Fort\nCatastrophe Fort Green\n\n166) ts52: Attack B1N Backatcha\n\n167) Draw5PlayAll: Discover B2 Grover Y1 Strange\n\n168) ts52: Build G1 Ts52\n\n169) Draw5PlayAll: Build G1 Perhaps\n\n170) ts52: Sacrifice G3 Ts52\nBuild R2 Backatcha\nBuild R3 Ts52\nBuild Y2 Cookie\n\n171) Draw5PlayAll: Sacrifice G1 Perhaps\nBuild G1 Draw5playall\n\n172) ts52: Move R3 Kermit Strange\n\n173) Draw5PlayAll: Move B2 Strange Donotenter\n\n174) ts52: Move R2 Backatcha Kermit\n\n175) Draw5PlayAll: Move Y2 Grover Draw5playall\n\n176) ts52: Move G1 Ts52 Cookie\n\n177) Draw5PlayAll: Move G1 Draw5playall Grover\n\n178) ts52: M G1 Cookie Ts52\n\tDraw5PlayAll: I had an advantage, but now the game is far from clear.\n\n179) Draw5PlayAll: Build G1 Perhaps\n\n180) ts52: B G3 Ts52\n\n181) Draw5PlayAll: Build G3 Draw5playall\n\n182) ts52: Move R3 Ts52 Backatcha\n\n183) Draw5PlayAll: Move G3 Draw5playall Kermit\n\n184) ts52: Move R2 Kermit Draw5playall\n\n185) Draw5PlayAll: Attack R2 Draw5playall\n\n186) ts52: Sacrifice Y2 Cookie\nMove R3 Backatcha Kermit\nMove R3 Kermit Draw5playall\n\n187) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack R3S Draw5playall\nAttack R1 Kermit\n\n188) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Cookie\nBuild R2 Strange\n\n189) Draw5PlayAll: Attack Y1 Kermit\n\n190) ts52: Move Y1 Kermit Backatcha\n\n191) Draw5PlayAll: Move R3 Draw5playall Kermit\n\n192) ts52: Move R3 Strange Backatcha\n\n193) Draw5PlayAll: Move G3 Kermit Strange\n\n194) ts52: Move R2 Strange Cookie\n\n195) Draw5PlayAll: Sacrifice G3 Strange\nPass\nBuild Y1 Kermit\nPass\n\n196) ts52: Sacrifice Y2 Cookie\nMove R2 Cookie Kermit\nMove R2 Backatcha Kermit\nCatastrophe Kermit Red\n\n197) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y1 Kermit Backatcha\nMove Y1 Kermit Backatcha\nCatastrophe Backatcha Yellow\n\n198) ts52: Move G1 Ts52 Cookie\n\tDraw5PlayAll: This needs to have a name. And no, I refuse to call it the "D5PA sacrifice".\r\n\r\nHow about the "(Un)Wasteful Sacrifice"? Parentheses are part of the name.\n\tDraw5PlayAll: DEFINITION: The "Un-Wasteful Sacrifice" small be defined as follows: A player sacrifices a ship intending to discover it a second a star next turn, particularly if not all actions from the sacrifice are used."\n\n199) Draw5PlayAll: Sacrifice G3 Perhaps\nBuild G2 Draw5playall\nBuild G3 Perhaps\nBuild G3 Grover\n\tts52: Curious why you didn't rebuild the large green? Trying to tempt me into building it at my homeworld?\n\tDraw5PlayAll: Nah, I wanted a path into your homeworld and all the larges were used.\n\n200) ts52: T G1 B1 Cookie\n\tDraw5PlayAll: I think you are lost.\n\n201) Draw5PlayAll: Sacrifice G3 Perhaps\nBuild G1 Draw5playall\nBuild G3 Perhaps\nBuild Y1 Donotenter\n\tts52: I fear you're probably right\n\n202) ts52: B R1 Ts52\n\n203) Draw5PlayAll: Move Y1 Donotenter Draw5playall\n\n204) ts52: Build R2 Ts52\n\n205) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover G3 Grover R3 Denial1\n\n206) ts52: Move R1 Ts52 Cookie\n\n207) Draw5PlayAll: Build Y1 Donotenter\n\n208) ts52: Trade R2 Y2 Ts52\n\n209) Draw5PlayAll: Sacrifice Y3 Donotenter\nMove G3 Perhaps Denial1\nMove G3 Denial1 Ts52\nMove G3 Denial1 Ts52\n\tDraw5PlayAll: I must deny you the chance to ever obtain an R3!\n\n210) ts52: Attack G3N Ts52\n\tts52: having a near monopoly on green is definitely helping you\n\n211) Draw5PlayAll: Sacrifice R3 Grover\nAttack G3 Ts52\nAttack G3 Ts52\nAttack R1 Ts52\n\n212) ts52: Sacrifice R1 Cookie\nAttack R1N Ts52\n\n213) Draw5PlayAll: Sacrifice B2 Perhaps\nTrade G3 Y3 Ts52\nTrade G3 R3 Ts52\n\tDraw5PlayAll: This could backfire...\n\n214) ts52: Trade Y3 G3 Cookie\n\tts52: I think you've got this one.\n\n215) Draw5PlayAll: Sacrifice G3 Ts52\nBuild Y1 Ts52\nBuild R1 Ts52\nBuild R2 Ts52\nPass\nPass\nCatastrophe Ts52 Yellow\nCatastrophe Ts52 Red\nPass\nPass\nPass\nPass\nPass\nPass\nPass\n\tDraw5PlayAll: This is why Homeworlds cannot have a 50 (or even 100 :P) move rule.\n\n\tDraw5PlayAll: Destroy all evidence!!\n\tDraw5PlayAll: 109 moves... where are the record books again? I think the cleaning robot misplaced them.\n\tts52: No idea. Good game, well played!\n\nHomeworlds Online (SDG# 34232)\nVariants: "Unrated, Hard time"\nStarted: 2018.7.4, Ended: 2018.7.16\nParticipants: iddqd (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y1 G3\n\n2) iddqd: Homeworld B3 G2 Y3\n\twil: Welcome to sdg and homeworlds! First timer? Have pyramid arcade?\n\tiddqd: Thanks. A friend had showed it to me a while back thought I'd check it out. Pyramid arcade re-sparked my interest but I've played a bit over the years face to face. Really only against the same player though.\n\n3) wil: B G1 Wil\n\twil: Cool, thx for the game....face to face is awesome....there are just so few of us.\n\n4) iddqd: Build Y1 Iddqd\n\n5) wil: T G1 Y1 Wil\n\n6) iddqd: Trade Y1 G1 Iddqd\n\n7) wil: B G1 Wil\n\n8) iddqd: Discover G1 Iddqd B1 Outpost\n\n9) wil: T G1 B1 Wil\n\n10) iddqd: Build G1 Outpost\n\n11) wil: B B1 Wil\n\n12) iddqd: Trade G1 Y1 Outpost\n\n13) wil: B Y2 Wil\n\n14) iddqd: Build Y2 Iddqd\n\n15) wil: D Y1 Wil G2 G2\n\n\twil: Sorry was away camping for 9 days, challenge me anytime\n\nHomeworlds Online (SDG# 34181)\nVariants: "Hard time"\nStarted: 2018.7.7, Ended: 2018.7.10\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34200)\nVariants: "Unrated"\nStarted: 2018.7.7, Ended: 2018.7.10\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\twil: Working in transforms temple and will be in woods for a couple weeks...a game will just time out.\n\nHomeworlds Online (SDG# 34291)\nVariants: "Unrated"\nStarted: 2018.7.7, Ended: 2018.7.19\nParticipants: Babamots (S), DodoBirb (N)\nWinner: Babamots\n\n1) DodoBirb: Homeworld R1 B2 G3\n\n2) Babamots: Homeworld G3 Y1 B3\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) Babamots: Build B1 Babamots\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) Babamots: Trade B1 Y1 Babamots\n\n7) DodoBirb: Build Y2 Dodobirb\n\n8) Babamots: Build Y2 Babamots\n\n9) DodoBirb: Discover Y1 Dodobirb G3 Green\n\n10) Babamots: Discover Y1 Babamots G2 Bajor\n\n11) DodoBirb: Build G1 Dodobirb\n\n12) Babamots: Build B1 Babamots\n\n13) DodoBirb: Trade G1 B1 Dodobirb\n\n14) Babamots: Move B1 Babamots Bajor\n\n15) DodoBirb: Move B1 Dodobirb Green\n\n16) Babamots: Build Y2 Bajor\n\n17) DodoBirb: Build Y3 Green\n\n18) Babamots: Trade Y1 R1 Bajor\n\n19) DodoBirb: Trade Y1 R1 Green\n\n20) Babamots: Build B1 Bajor\n\n21) DodoBirb: Move Y3 Green Bajor\n\n22) Babamots: Trade B1 Y1 Bajor\n\n23) DodoBirb: Move Y3 Bajor Green\n\n24) Babamots: Build R2 Bajor\n\n25) DodoBirb: Build R2 Green\n\n26) Babamots: Build B1 Bajor\n\n27) DodoBirb: Build B2 Green\n\n28) Babamots: Discover B1 Bajor G1 Cardassia\n\tBabamots: Just so you know, I use a point system for a rough idea of the relative values of ships. I give 1 point for smalls, 3 points for mediums, and 7 for larges. Of course some colors or positions can be more valuable than others, but I often use this if I expect that lots of ships are about to be destroyed or attacked and I want to decide who comes out ahead in material.\n\n29) DodoBirb: Discover B1 Green G1 Littlegreen\n\n30) Babamots: Build B2 Bajor\n\n31) DodoBirb: Build B3 Littlegreen\n\tDraw5PlayAll: Larges should be 9 for the first two and 6 for each thereafter. Having 2 larges is much stronger than 1 and the score should reflect that. Four versus five and so on depends more on the rest of the situation.\r\n\r\nJust my opinion.\n\n32) Babamots: Build B3 Cardassia\n\n33) DodoBirb: Build Y1 Green\n\n34) Babamots: Sacrifice Y2 Babamots\nMove Y2 Bajor Green\nMove Y1 Bajor Green\nCatastrophe Green Y\n\n35) DodoBirb: Build Y1 Dodobirb\n\n36) Babamots: Trade B2 Y2 Bajor\n\n37) DodoBirb: Move Y1 Dodobirb Green\n\n38) Babamots: Build B2 Bajor\n\n39) DodoBirb: Sacrifice G3 Dodobirb\nBuild Y1 Green\nBuild Y2 Dodobirb\nBuild Y3 Dodobirb\n\n40) Babamots: Build Y3 Bajor\n\n41) DodoBirb: Sacrifice Y2 Dodobirb\nMove Y2 Dodobirb Green\nMove Y2 Green Littlegreen\n\n42) Babamots: Sacrifice B1 Bajor\nTrade B3 Y3 Cardassia\n\n43) DodoBirb: Build Y2 Littlegreen\n\n44) Babamots: Trade Y3 G3 Bajor\n\n45) DodoBirb: Trade Y2 G2 Littlegreen\n\tBabamots: I should have mentioned your danger to you. I can sacrifice a yellow to catastrophe all your home ships. You should undo and try a different move.\n\tBabamots: Here's an SDG tip: clicking the "Call admin" button sends participants an email (I wanted to make sure you checked the game without actually using my turn).\r\n\r\nI don't think Aaron has actually responded to the button in years, but it will pause the timer and notify players.\n\n46) Babamots: Discover B1 Cardassia Y3 Iconia\n\tDodoBirb: Don't worry about forgetting to tell me I'm about to lose. I really should have noticed the y2 in Bajor.\n\n47) DodoBirb: Move G2 Littlegreen Iconia\n\tBabamots: On the whole, it may have been healthier for your education to lose unexpectedly. I became way more careful after the first time I got blindsided by a home-emptying catastrophe.\r\n\r\nOn the other hand, this will give you a chance to see some more late game in action.\n\n48) Babamots: Sacrifice G3 Bajor\nBuild B1 Bajor\nBuild Y2 Bajor\nBuild B3 Iconia\n\n49) DodoBirb: Move G2 Iconia Dodobirb\n\n50) Babamots: Move R2 Bajor Iconia\n\tBabamots: Good block.\n\n51) DodoBirb: Trade B3 R3 Littlegreen\n\n52) Babamots: Build R2 Bajor\n\n53) DodoBirb: Build B3 Littlegreen\n\n54) Babamots: Sacrifice Y3 Cardassia\nMove B1 Bajor Iconia\nMove B1 Iconia Dodobirb\nMove B3 Iconia Dodobirb\n\n55) DodoBirb: Build Y3 Littlegreen\n\n56) Babamots: Sacrifice R2 Bajor\nAttack G2 Dodobirb\nAttack Y3 Dodobirb\n\n\tBabamots: If an enemy ship comes into your home system, you almost always need to attack it immediately. Otherwise, they get a chance to attack your ships, or sometimes they'll start building more ships in your home to make catastrophes.\n\tDodoBirb: Wow I only thought about the catastrophe and thought it was inevitable so I ignored it. oops\n\tBabamots: Good game! I think you understand lots of things in the game well. With practice, you'll have a better idea of things to watch out for and take advantage of.\r\n\r\nIf you'd like to practice faster, you could try having several games running at once. I'm happy to play you again, and you could challenge a few other people. You might like to play with MagicJohn. He's a fairly new player who moves several times a day. You can also issue a challenge to no one in particular (with a note about your skill level, if you're worried about getting a ruthless opponent).\n\tBabamots: Although, come to think of it, I haven't met anyone on this site that I'd describe as ruthless. I would still add a note to any open challenges just to make sure any accepters are ready for a "beginner game."\n\tBabamots: You're right, the blue catastrophe was inevitable. I was ready to follow it up with a red catastrophe to finish you off (notice that Bajor would become connected to your home after the blue catastrophe).\n\nHomeworlds Online (SDG# 34292)\nVariants: "Hard time"\nStarted: 2018.7.7, Ended: 2018.8.3\nParticipants: deanthebean (S), Aristos (N)\nWinner: deanthebean\n\n1) Aristos: Homeworld G3 B2 Y3\n\n2) deanthebean: Homeworld B2 G3 Y3\n\tdeanthebean: Hello. Thanks for accepting the challenge. Have a good game!\n\n3) Aristos: Build Y1 Aristos\n\n4) deanthebean: Build Y1 Deanthebean\n\tAristos: Um... your opening is supposed to be illegal. In a 2-player game, you can’t pick the same large-medium-small star pattern. It puts the homeworlds only one jump apart. The official rules say this is illegal. \n\tAristos: We can keep playing, but I’m going to flag an admin to take a look to maybe fix the bug for future games. \n\tDraw5PlayAll: Where is this illegal?\n\tAristos: Admin: in a 2-player game, the home world stars aren’t supposed to be the same sizes. If player 1 picks large-medium, then player 2 has to pick large-small or small-medium. At least, that was my understanding of the rules. The two systems have to be 2 jumps away. That rule is relaxed in multi-player games. Am I wrong?\n\n5) Aristos: Discover Y1 Aristos Y1 Spark\n\tdeanthebean: I had a look at the rules pdf. I couldn't find a rule against identical stars\n\n6) deanthebean: Trade Y1 R1 Deanthebean\n\tAristos: I didn’t know about any PDF... just what I’d been taught. I went to look up the rules just now... seems I was wrong... matching I’d just fine. \r\n\r\nAdmin:Sorry for the false alarm. \n\n7) Aristos: Discover Y1 Spark G2 Leaf\n\n8) deanthebean: Build R1 Deanthebean\n\n9) Aristos: Build Y1 Aristos\n\n10) deanthebean: Build R1 Deanthebean\n\n11) Aristos: Trade Y3 R3 Aristos\n\n12) deanthebean: Discover R1 Deanthebean G1 Branch\n\n13) Aristos: Build R2 Aristos\n\n14) deanthebean: Build R2 Branch\n\n15) Aristos: Trade R3 G3 Aristos\n\n16) deanthebean: Trade R1 B1 Deanthebean\n\n17) Aristos: Build G1 Aristos\n\n18) deanthebean: Trade R1 G1 Deanthebean\n\n19) Aristos: Discover G1 Aristos B1 Plum\n\n20) deanthebean: Discover G1 Deanthebean Y1 Yellow\n\n21) Aristos: Build Y2 Leaf\n\n22) deanthebean: Build G2 Yellow\n\n23) Aristos: Trade G3 Y3 Aristos\n\n24) deanthebean: Build Y2 Deanthebean\n\n25) Aristos: Build Y2 Leaf\n\n26) deanthebean: Move Y2 Deanthebean Branch\n\n27) Aristos: Move Y2 Leaf Plum\n\n28) deanthebean: Build Y3 Branch\n\n29) Aristos: Move Y2 Leaf Branch\n\n30) deanthebean: Move Y2 Branch Aristos\n\n\tAristos: Well played.\n\tdeanthebean: Thanks! gg. \n\tDraw5PlayAll: Not convinced this is over.\n\nHomeworlds Online (SDG# 34175)\nVariants: "No undo, Hard time"\nStarted: 2018.7.10, Ended: 2018.8.15\nParticipants: Thorolf (S), MagicJohn (W), Draw5PlayAll (N), Twinsen (E)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tTwinsen: At the end :D. Hello there. \n\tTwinsen: At the end :D. Hello there. \n\n2) Twinsen: Homeworld R2 B1 G3\n\n3) MagicJohn: Homeworld B2 R1 G3\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Twinsen: Build G1 Twinsen\n\tDraw5PlayAll: Uuuugggghhhh\n\n6) MagicJohn: Build G1 Magicjohn\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) Twinsen: Build G1 Twinsen\n\n9) MagicJohn: Build G1 Magicjohn\n\n10) Draw5PlayAll: Build Y1 Draw5playall\n\n11) Twinsen: Trade G1 Y1 Twinsen\n\n12) MagicJohn: Trade G1 Y1 Magicjohn\n\n13) Draw5PlayAll: Discover Y1 Draw5playall G2 There\n\n14) Twinsen: Discover G1 Twinsen B3 Here\n\n15) MagicJohn: Discover G1 Magicjohn Y3 Everywhere\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) Twinsen: Build G1 Here\n\tDraw5PlayAll: You two are so unoriginal\n\n18) MagicJohn: Build G1 Everywhere\n\n19) Draw5PlayAll: Build G2 Draw5playall\n\tTwinsen: XD\n\tMagicJohn: blame it on the beatles...\n\n20) Twinsen: Build G2 Twinsen\n\n21) MagicJohn: Build G2 Magicjohn\n\n22) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n23) Twinsen: Trade G2 Y2 Twinsen\n\n24) MagicJohn: Discover G2 Magicjohn B3 Ringo\n\n25) Draw5PlayAll: Build G2 Draw5playall\n\n26) Twinsen: Sacrifice Y2 Twinsen\nMove G1 Here There\nMove G1 There Draw5playall\nCatastrophe Draw5playall Green\n\n27) MagicJohn: Build G1 Ringo\n\n28) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n29) Twinsen: Build G2 Here\n\n30) MagicJohn:\nTrade G2 Y2 Ringo\n\n31) Draw5PlayAll: Build G2 Draw5playall\n\tMagicJohn: Trade g2 y2 Ringo\n\n32) Twinsen: Trade G1 Y1 Here\n\n33) MagicJohn: Trade G1 B1 Ringo\n\n34) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n35) Twinsen: Build G1 Here\n\n36) MagicJohn: Discover B1 Ringo Y2 George\n\n37) Draw5PlayAll: Build R1 Draw5playall\n\n38) Twinsen: Trade G1 R1 Here\n\n39) MagicJohn: Trade B1 R1 George\n\n40) Draw5PlayAll: Move R2 Draw5playall There\n\n41) Twinsen: Build R2 Here\n\n42) MagicJohn: Sacrifice G1 Everywhere\nBuild R2 George\n\n43) Draw5PlayAll: Build G1 Draw5playall\n\n44) Twinsen: Discover R2 Here Y2 Dingdong\n\n\tDraw5PlayAll: :(\n\nHomeworlds Online (SDG# 34284)\nVariants: "Unrated"\nStarted: 2018.7.10, Ended: 2018.8.29\nParticipants: Babamots (S), MagicJohn (N)\nWinner: Babamots\n\n1) MagicJohn: Homeworld Y1 B2 G3\n\tMagicJohn: I'm not all that new to the game but my learning curve needs a kick-start. Think I may need some better tactics and a general game-plan going in.\n\n2) Babamots: Homeworld B3 R1 G3\n\n3) MagicJohn: Build G1 Magicjohn\n\tBabamots: I recently switched back to preferring a red home star (compared to yellow). It seems like, whenever I have yellow at home, there's a point in the game where I can't build the yellow I want because it would set up a catastrophe.\n\n4) Babamots: Build G1 Babamots\n\tMagicJohn: How much work do you put in to avoid giving up the first #2 ship during early building?\n\n5) MagicJohn: Discover G1 Magicjohn B3 Shelob\n\tBabamots: Depends a lot on whether I'll get the second one right after and whether my opponent will get the next one after that. I usually work pretty hard to keep my opponent from getting larges though.\n\tBabamots: On this occasion, I think you should not open up the g2 yet. Spread out and diversify.\n\tMagicJohn: So, if I move my G1 and discover a B3 I can switch colors on the next turn...Is the line reasonable? Seems a bit like developing one's pieces in chess. At this point in the game and based on the colors and sizes of ships and stars, are there certain strategies that I should start to consider or is it still mostly tactical? \n\tBabamots: If you discover now, you should probably plan to build in the new system before trading there. Otherwise you'll have no green for more construction. I am likely to trade away my g1, so building green in you new system will be safe (not give me a chance to get medium).\n\tBabamots: So to answer your question directly, yes that line is reasonable, but it leaves a red or yellow ship in your new system with no way to build. You'll need to send another green there if you want to make more.\n\tMagicJohn: Discover g1 magicjohn b3 Shelob \n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) MagicJohn: Build G1 Shelob\n\n8) Babamots: Build Y1 Babamots\n\tBabamots: Before giving advice, I should have looked more closely at what my actual response to your move would be. You didn't get a yellow ship while there were small ones available, and I have the chance to freeze you out. To get yellow, you'll have to wait until you have a medium ship you can trade for a y2.\n\n9) MagicJohn: Trade G1 B1 Shelob\n\tMagicJohn: You could just loan me one.... work for uber peraps?\n\n10) Babamots: Pass\n\tMagicJohn: So, keeping colors diversified is import so one is harder to shut out. By trading here my intent is to gain a blue "foothold" and if you build green I am closer to reaching the #2 ships (green group in this case) that I need to build and exchange for yellow.?.?\n\tBabamots: The trouble with what you describe is that Shelob only has room for one more blue. You'll need to build green at home and trade that for blue if you want to work toward mediums through blue. I'm pretty sure I will have all the y2 before you get a b2.\r\n\r\nI've been looking for another way for you to get yellow. Here's some reasoning about the closest thing I've found:\r\n\r\n1) build g1 MagicJohn\r\n2) trade g3 y3 MagicJohn\r\n3) build y2 MagicJohn\r\n\r\nThe danger here is that you would then have three yellow at home. If I move\r\n\r\n1) ... build y2 Babamots\r\n2) ... discover y1 Babamots g2 Iconia\r\n3) ... sacrifice y2 Babamots move y1 Iconia MagicJohn (2 moves) catastrophe MagicJohn y\r\n\r\nthen I would win. So you need to avoid overpopulation by moving your y3 to a new system after your move 2:\r\n\r\n2B) discover y3 MagicJohn g3 Grishnak\r\n3B) build y1 Grishnak\r\n\r\nSince you only have a small at home now, I might try to do a red-based invasion, for example\r\n\r\n2B) ... trade y1 r1 Babamots\r\n3B) ... sacrifice y2 Babamots move y1 Iconia MagicJohn (2 moves) \r\n4B) ...sacrifice r1 Babamots attack g1 MagicJohn\r\n\r\nand I win. So you would need to move your y3 back home before that:\r\n\r\n4B) move y3 Grishnak MagicJohn\r\n\r\nSo, now the population of your home is your y3, my g1 and y1. There are three yellows, so you need to trade quick, and preferably capture the pesky invaders. The most likely thing seems to be\r\n\r\n5B) trade y3 r3 MagicJohn\r\n6B) attack g1 MagicJohn (or y1 if I moved the g1 on my move 5)\r\n\r\nIn the end, you still have a y1 in Grishnak and can build more yellow when it suits you,\r\n\r\nAll of that analysis is just to make sure you can get a yellow without losing immediately. Since my most aggressive moves can't kill you, I will probably do something a little different, starting on move 2 or 3.\r\n\r\nSome day, I want to make an online Homeworlds move explorer. Something that would let me play out a bunch of moves for experimentation and share the results with a link. All this text is hard to work with.\n\tBabamots: Sigh. I forgot that it was my turn. So really, none of that analysis holds up. The plan I just suggested puts you within one move of death a couple of times, so you would actually just lose.\r\n\r\nWell, I know how to fix that.\n\n11) MagicJohn: Build G1 Magicjohn\n\n12) Babamots: Build Y2 Babamots\n\n13) MagicJohn: Discover G3 Magicjohn Y3 Gandalf\n\n14) Babamots: Discover Y1 Babamots B2 Bolius\n\tBabamots: It was late when I wrote that long advice. There are more mistakes in there. Don't believe it too much :-P\n\n15) MagicJohn: Trade G1 R1 Magicjohn\n\n16) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolius\nBuild Y2 Bolius\nBuild Y3 Babamots\n\n17) MagicJohn: Build G1 Gandalf\n\tBabamots: I think the best thing for you right now is to build more ships. If you build in Gandalf, you can move the g3 back home while keeping the y3 piece reserved for yourself. If you're able to get a yellow pieces later, you can sacrifice the green in Gandalf to make a ship out of the y3 marker.\n\tBabamots: My current plan is to hog the yellows as tightly as I can to keep you from moving around much.\n\tBabamots: Sorry I haven't done better at teaching this game. If I had charged you for the lesson, I would offer a refund.\n\n18) Babamots: Trade Y3 G3 Babamots\n\n19) MagicJohn: Move G3 Gandalf Magicjohn\n\n20) Babamots: Build Y3 Babamots\n\tMagicJohn: I do seem to be chasing my tail here. I have,however discovered how quickly a game can go sideways. Which move put me so blatantly on the defensive or was it a cumulative thing exacerbated by moving second. (yes I know you passed a turn already....)Perhaps my original setup paired badly with yours? \n\tMagicJohn: I would have liked to trade green for yellow, but, alas, no blue technology in that sector.\n\tMagicJohn: I suspect you are now going to sac green and add yellow and two greens?\n\tBabamots: The initial setup (homeworld-ship pairs) isn't the problem. The trouble started on your third move when you discovered Shelob. Games are easier to study in "archive" view:\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&gid=34284&idx=4\r\n\r\nAfter that, I trade for a y1. You then had two choices: 1) get locked out of yellow (since I was about the build the last y1) or 2) trade g1 for y1 in Shelob (which is a unattractive since it leaves you with no green in Shelob and you moved there in order to build and trade).\r\n\r\nSo with hindsight, on your third move, I think you should have traded g1 for y1. You could then have proceed to build more more green at home and used those to set up new systems for building.\n\tBabamots: If I sac my green now, I won't be able to build any green (you must still have a green ship in order to build green). I'm just going to build a y3 normally.\r\n\r\nThe problem this presents for you is that, if you trade g3 for y3 at home, I can move a y2 to a large system (say, Shelob). Then, if you don't trade or move your y3, I can sacrifice my y3 for a yellow catastrophe in your home (destroying your only large ship and one of your stars).\r\n\r\nAll that to say, it's not safe to trade your g3 for y3 now (in my long analysis before, I thought you could make it, but it's not turning out that way).\n\n21) MagicJohn: Build G1 Shelob\n\tBabamots: Your advantage right now is that you have greens that are spread out. If we both start building green,\r\n\r\nyou get g1 (I suggest in Shelob)\r\nI get g2\r\nyou get g2 (I suggest in MagiJohn)\r\nI get g2 (assuming I don't come up with a better idea)\r\nyou sacrifice g3 and build g2 (Shelob), g3 (MagicJohn), g3 (Gandalf)\r\n\r\nAt this point, you would have a pretty good grip on greens (I have 3 green ships, you have 12). Your highest concentration is three greens in Shelob (g1,g1,g2) which I could catastrophe by sacrificing a y2 to move in a g2 (a fine trade for you). You would also have a g3 in Gandalf that could discover a blue system and change to y3.\r\n\r\nI may try to do something to thwart your plan instead of building that second g2, but building green at least brings you closer to exploiting your advantage.\n\tBabamots: I can't sacrifice my g3 to build lots of green because they'd all be in the same system and cause a catastrophe. That's why your spread-out greens are better.\n\n22) Babamots: Build G2 Babamots\n\tBabamots: I've just been talking to a new player, DodoBirb. I think he would benefit from practicing with some more people and I suggested you. I hope that's ok.\n\n23) MagicJohn: Build G2 Magicjohn\n\n24) Babamots: Discover Y2 Bolius G3 Risa\n\tBabamots: I keep messing up when typing in long suggestions. I included a fourth g2 construction back in that plan, but the principle is still good. Grab all the green.\n\n25) MagicJohn: Build G2 Gandalf\n\n26) Babamots: Build Y3 Risa\n\n27) MagicJohn: Build R1 Magicjohn\n\tBabamots: I need to get a red ship soon. Otherwise, you can start invading my systems and I'll just have to run.\r\n\r\nTo get red, I will have to either trade a yellow (giving you an opportunity to trade for a yellow ship at last) or else trade a green (in which case I lose my factory).\r\n\r\nIf you don't remember, a "factory" is a g3 with another green ship while there are no g1 or g2 in the bank. Sacrificing the g3 lets you rebuild g3 and take two other build actions in one turn.\n\n28) Babamots: Trade Y2 R2 Bolius\n\n29) MagicJohn: Sacrifice B1 Shelob\nTrade G2 Y2 Gandalf\n\n30) Babamots: Sacrifice G2 Babamots\nBuild G2 Babamots\nBuild R2 Bolius\n\tMagicJohn: If I trade for y in magicjohn you can create a disaster next move but it would cost you 3 ships. how do you judge the point at which that is a good exchange?\n\tBabamots: Hmm, I hadn't actually noticed that. That catastrophe would make things very scary for you since our homes would be connected. In fact, I think I would win a few turns later: I sacrifice y2 to move two larges into your home and then sacrifice r2 to attack your large and the one large of mine that you presumably attacked. But that is late-night calculating.\r\n\r\nI think you still can't trade for a yellow. Sorry :-(.\r\n\r\nI'll look for something better for you in the morning.\n\tBabamots: I think you should\r\n\r\nsacrifice b1 Shelob\r\ntrade g2 y2 Gandalf\r\n\r\nI could cause a catastrophe in Gandalf (at a high price to me), but I'm quite sure that wouldn't be worth it.\r\n\r\nAfter that, I think you should work on moving your new yellow ship somewhere safe so you can build Gandalf's marker into a ship.\n\tBabamots: I think your next best options are 1) factory-building r2 and b1 or 2) discovering a y2 system with a green in Gandalf. I don't think either of these is nearly as good as safely getting a y2 though.\n\tMagicJohn: I inputted the following orders "sacrifice b1 Shelob trade g2 y2 Gandalf" and received a message that I have one unused action... What's up with that?\n\tBabamots: You need to put a line break between the sacrifice and the action taken with the sacrifice, exactly how it looks in my move suggestion.\r\n\r\nIt's weird, I know.\n\n31) MagicJohn: Build G2 Gandalf\n\tMagicJohn: Thnx\n\n32) Babamots: Move R2 Bolius Shelob Risa\n\n33) MagicJohn: Move R1 Magicjohn Gandalf\n\n34) Babamots: Attack G1 Shelob\n\n35) MagicJohn: Sacrifice G3 Magicjohn\nBuild R2 Gandalf\nBuild R3 Magicjohn\nBuild G3 Magicjohn\n\n36) Babamots: Sacrifice G3 Babamots\nBuild R3 Bolius\nBuild R3 Shelob\nBuild G3 Babamots\n\n37) MagicJohn: Discover Y2 Gandalf B2 Elron\n\n38) Babamots: Attack G1 Shelob\n\n39) MagicJohn: Move Y2 Elron Babamots\nCatastrophe Babamots Yellow\n\n40) Babamots: Sacrifice Y2 Risa\nMove G1 Shelob Magicjohn\nMove G1 Shelob Magicjohn\nCatastrophe Magicjohn G\n\tMagicJohn: Little could you know, but my g1 ships have been equipped with self-destruct buttons that I can activate from anywhere in adjacent quadrants... \n\n41) MagicJohn: Trade R1 G1 Magicjohn\n\tMagicJohn: Was there any other way of dealing with the threat than running away from home?\n\tBabamots: Boobytrapping your abandoned equipment? Fiendish!\n\tBabamots: I think that you were better off ignoring the green catastrophe threat and moving your y2 into my home for a yellow catastrophe. You would be left with no yellow ships, but it would have freed up the supply so you could trade for some.\n\tBabamots: I can give you some time to contemplate that and undo if you like.\r\n\r\nOtherwise, I'm going to split up my yellow ships so you don't get another chance. I actually didn't notice that your y2 had got close enough or I would have responded earlier. That was a mistake for me.\n\n42) Babamots: Trade R2 G2 Bolius\n\tMagicJohn: OK, lets see where it goes...\n\tMagicJohn: Not liking the "follow-up catastrophes" possible in magicjohn....\n\n43) MagicJohn: Discover G1 Magicjohn G3 Golum\n\tBabamots: With two reds at home, you're vulnerable to another catastrophe. I think you'll want to trade one for a yellow or green.\n\n44) Babamots: Move R3 Bolius Golum\n\n\tBabamots: It looks bad for you, but it's not quite over. You need to get a non-red to your home system this turn. You could last a few more moves if you trade your r3 or move a green back home.\r\n\r\nOn the other hand, I'll totally understand if you're done. I hope you've learned a little this game and maybe even had some fun :-)\n\tMagicJohn: Sorry for the time warp. I spent a week in the mountains in Colorado and forgot to leave a message.\n\tBabamots: No problem! I had some other games to think about in the meantime. Would you like to finish this game? We could also start another teaching game or I can point you to another practice partner.\n\tMagicJohn: I seemed to be playing catch-up after the first two or three moves. What move put me on the defensive so quickly?\n\tBabamots: The trouble started on your third move, when you moved your small ship away from your home:\r\n\r\nhttp://www.superdupergames.org/?page=archive_play&gid=34284&idx=4\r\n\r\nOn your next move, you would have liked to build another g1 and then trade for a y1 (which would let you build more yellow later). But I saw that I could get both y1 before you could execute that plan (which would lock you out of yellow).\r\n\r\nYour backup plan, once I traded for a y1 on my turn 3, should have been to trade g1 for y1 in Shelob. Even though all that y1 could do is move to a new system (preferably green so you could build more yellow), that's better than getting locked out of the yellow economy.\r\n\r\nI didn't do a good job of giving you advice on the early moves, so it's as much my fault as yours. Hopefully it taught you something though :-)\n\nHomeworlds Online (SDG# 34299)\nVariants: "Hard time"\nStarted: 2018.7.12, Ended: 2018.7.22\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B3 Y2 G3\n\twil: \n\twil: Nice, I tell you i am too busy for a game...so you challenge me\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n\tTrydnt: did you? sorry didn't realize haha what happened with Felix? He just dropped to 7th not sure why\n\tFelix: For some reason, SDG stopped sending me notification emails, so I didn't even notice I was challenged! If you decline a challenge when you're in the top 6, you drop to position 7. Oops :)\n\nHomeworlds Online (SDG# 34279)\nVariants: "Unrated, Hard time"\nStarted: 2018.7.13, Ended: 2018.7.31\nParticipants: wil (S), smokeytroll42 (N)\nWinner: wil\n\n1) smokeytroll42: Homeworld B2 R3 G3\n\n2) wil: Homeworld B3 Y1 G3\n\n3) smokeytroll42: Build G1 Smokeytroll42\n\n4) wil: B G1 Wil\n\n5) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\n6) wil: T G1 Y1 Wil\n\n7) smokeytroll42: Build G1 Smokeytroll42\n\twil: Thx for the game... I am packing to head into the woods...may be a while for my next move unless I run into WiFi along the way\n\twil: But thx for the game and have fun\n\n8) wil: B Y2 Wil\n\n9) smokeytroll42: Discover G1 Smokeytroll42 B1 Mars\n\n10) wil: Trade Y1 B1 Wil\n\n11) smokeytroll42: Build G1 Mars\n\n12) wil: Build B1 Wil\n\twil: oops, i was influenced by martians\n\twil: I see you've played a few times...do you have pyramids and play live as well?\n\twil: also consider getting into the tournament...you will play a lot of folks with differing strategies\n\n13) smokeytroll42: Trade G1 R1 Mars\n\tsmokeytroll42: I do have a set although I've not had a chance to play anyone in person! Safe travels!\n\n14) wil: Discover B1 Wil Y2 Y2\n\twil: back outta da woods!\n\tsmokeytroll42: Welcome back to civilization. I hope you had a great trip!\n\n15) smokeytroll42: Build G1 Smokeytroll42\n\twil: redonkulous\n\n16) wil: Sacrifice G3 Wil\nBuild B2 Y2\nBuild B2 Y2\nBuild B3 Wil\n\n17) smokeytroll42: Trade G3 B3 Smokeytroll42\n\twil: sometimes it is handy to set up your mids on a table to play "live" as the layout here confuses\n\n18) wil: Sacrifice B2 Y2\nTrade B2 Y2 Y2\nTrade B3 G3 Wil\n\tsmokeytroll42: I’m actually doing that with a separate game. Since I’ve only really play online though, I’m used to the interface.\n\n19) smokeytroll42: Trade R1 Y1 Mars\n\twil: k\n\twil: k\n\n20) wil: Sacrifice G3 Wil\nBuild Y3 Wil\nBuild Y3 Y2\nBuild B2 Wil\n\n21) smokeytroll42: Build Y3 Mars\n\n22) wil: Sacrifice Y2 Wil\nDiscover Y3 Y2 G3 G3\nDiscover B1 Wil G2 G2\n\n23) smokeytroll42: Build Y2 Smokeytroll42\n\n24) wil: Trade B2 G2 Wil\n\n25) smokeytroll42: Trade Y1 R1 Mars\n\n26) wil: Sacrifice G2 Wil\nBuild B2 G2\nBuild B2 Y2\n\n27) smokeytroll42: Move R1 Mars G2\n\n28) wil: Trade B2 R2 G2\n\n29) smokeytroll42: Build Y1 Mars\n\n30) wil: Trade Y3 G3 Wil\n\n31) smokeytroll42: Discover Y1 Mars G2 Mercury\n\n32) wil: Build Y3 G3\n\n33) smokeytroll42: Sacrifice Y3 Mars\nMove Y1 Smokeytroll42 Mars\nMove Y1 Mars G3\nMove Y1 Mercury G3\nCatastrophe G3 Y\n\n34) wil: Build B2 G2\n\n35) smokeytroll42: Attack B1S G2\n\twil: lol\n\n36) wil: Sacrifice R2 G2\nAttack R1 G2\nAttack B1 G2\n\n37) smokeytroll42: Build G1 Mars\n\n38) wil: Build B3 G2\n\twil: Now I was willing to let that little mosquito live and be ornery, but when you attack my friends...\n\n39) smokeytroll42: Build G2 Smokeytroll42\n\tsmokeytroll42: I was hoping you’d ignore that little slight\n\twil: Take over of my little smurfs...nevah!\n\twil: Poppa Smurf will come out of hiding and reign terror\n\n40) wil: Build G2 Wil\n\n41) smokeytroll42: Build G3 Smokeytroll42\n\n42) wil: Trade G2 R2 Wil\n\n43) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove B3 Smokeytroll42 Mars\nMove B3 Mars G2\nCatastrophe G2 B\n\n44) wil: Move B2 Y2 Mars\n\n45) smokeytroll42: Trade G2 Y2 Smokeytroll42\n\n46) wil: Build R1 Wil\n\n47) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild G2 Smokeytroll42\nBuild G2 Smokeytroll42\nBuild G3 Mars\n\n48) wil: Build G3 Wil\n\n49) smokeytroll42: Trade G1 R1 Smokeytroll42\n\n50) wil: Sacrifice G3 Wil\nBuild B1 Mars\nBuild B2 Mars\nBuild B3 Y2\nCatastrophe Mars B\n\twil: Always pleasant to visit a planet without guns...even when the big guy shows up...but a little trepidatious to leave the home land unguarded..\n\n51) smokeytroll42: Discover G2 Smokeytroll42 B1 Jupiter\n\n52) wil: S Y2 Y2\nD B3 Y2 Y1 Y1\nM R1 G2 Y1\n\twil: oops...me thinks I over developed our smurfdom in mars...sorry\n\tsmokeytroll42: I think I may have painted myself into a corner here.\n\twil: If you need more paint...\n\n53) smokeytroll42: Build G1 Jupiter\n\n54) wil: M B3 Y1 Smokeytroll42\n\n\tsmokeytroll42: Good game!\n\twil: Gotta leave a big ship at home lesson...\n\tsmokeytroll42: True dat\n\nHomeworlds Online (SDG# 34298)\nStarted: 2018.7.14, Ended: 2018.8.20\nParticipants: ts52 (S), Thorolf (N)\nWinner: ts52\n\n1) Thorolf: Homeworld Y1 B2 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) Thorolf: Build G1 Thorolf\n\n4) ts52: Build G1 Ts52\n\n\nHomeworlds Online (SDG# 34224)\nVariants: "Unrated"\nStarted: 2018.7.14, Ended: 2018.8.2\nParticipants: Trydnt (S), shmil1 (N)\nWinner: Trydnt\n\n1) shmil1: Homeworld R1 G2 B3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) shmil1: Build B1 Shmil1\n\n4) Trydnt: Build G1 Trydnt\n\n5) shmil1: Build B1 Shmil1\n\n6) Trydnt: Build G1 Trydnt\n\n7) shmil1: Trade B1 Y1 Shmil1\n\n8) Trydnt: Trade G1 R1 Trydnt\n\n9) shmil1: Discover B1 Shmil1 G3 Greenbaker\n\n10) Trydnt: Build R1 Trydnt\n\n11) shmil1: Trade B1 Y1 Greenbaker\n\n12) Trydnt: Build R2 Trydnt\n\n13) shmil1: Build Y1 Greenbaker\n\n14) Trydnt: Trade R2 Y2 Trydnt\n\n15) shmil1: Build B1 Shmil1\n\n16) Trydnt: Sacrifice Y2 Trydnt\nDiscover R1 Trydnt B1 B1\nMove R1 B1 Greenbaker\n\n17) shmil1: Build Y2 Greenbaker\n\n18) Trydnt: Build R2 Greenbaker\n\n19) shmil1: Sacrifice Y2 Greenbaker\nDiscover Y1 Greenbaker G1 Zell\nMove Y1 Greenbaker Zell\n\n20) Trydnt: Move R1 Trydnt Zell\n\n21) shmil1: Build Y2 Zell\n\n22) Trydnt: Build R2 Zell\n\n23) shmil1: Sacrifice Y2 Zell\nMove Y1 Zell Trydnt\nMove Y1 Zell Trydnt\n\n24) Trydnt: Sacrifice R2 Greenbaker\nAttack Y1 Trydnt\nAttack Y1 Trydnt\n\n25) shmil1: Build Y2 Shmil1\n\n26) Trydnt: Move Y1 Trydnt Zell\n\n27) shmil1: Discover Y1 Shmil1 R3 Rudy\n\n28) Trydnt: Trade G1 B1 Trydnt\n\n29) shmil1: Discover B1 Shmil1 R3 Zrzek\n\n30) Trydnt: Build R2 Greenbaker\n\n31) shmil1: Build Y2 Shmil1\n\n32) Trydnt: Build Y3 Zell\n\n33) shmil1: Discover Y1 Rudy G1 Pekar\n\n34) Trydnt: Move Y3 Zell Greenbaker\n\n35) shmil1: Build Y3 Pekar\n\n36) Trydnt: Sacrifice Y1 Trydnt\nMove B1 Trydnt Zell\n\n37) shmil1: Move Y2 Shmil1 Zrzek\n\n38) Trydnt: Build R2 Greenbaker\n\n39) shmil1: Sacrifice Y2 Zrzek\nMove Y3 Pekar Trydnt\nMove Y1 Pekar Trydnt\n\n40) Trydnt: Sacrifice R2 Greenbaker\nAttack Y3 Trydnt\nAttack Y1 Trydnt\n\n41) shmil1: Sacrifice Y2 Shmil1\nMove B1 Zrzek Zell\nMove B1 Zell Trydnt\n\n42) Trydnt: Sacrifice R1 Greenbaker\nAttack B1 Trydnt\n\n43) shmil1: Build B1 Shmil1\n\n44) Trydnt: Move B1 Zell Greenbaker\n\n45) shmil1: Trade B1 Y1 Shmil1\n\n46) Trydnt: Build B1 Greenbaker\n\tTrydnt: thanks for all the presents\n\n47) shmil1: Build Y2 Shmil1\n\n48) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Greenbaker\nBuild B2 Greenbaker\nBuild B2 Trydnt\n\n49) shmil1: Discover Y1 Shmil1 Y3 Zlut\n\n50) Trydnt: Discover Y1 Trydnt R1 R1\n\n51) shmil1: Build B2 Shmil1\n\n52) Trydnt: Sacrifice Y2 Greenbaker\nMove B1 Greenbaker Shmil1\nMove B1 Greenbaker Shmil1\nCatastrophe Shmil1 B\n\n53) shmil1: Build Y2 Shmil1\n\n54) Trydnt: Move Y3 Greenbaker Shmil1\n\n55) shmil1: Discover Y1 Zlut G1 Zelee\n\n56) Trydnt: Build Y3 Shmil1\nCatastrophe Shmil1 Y\n\n\tshmil1: where did my B3 go? I cannot find it in the log.\n\tTrydnt: 4 moves ago: South's ship Y2 was sacrificed in the greenbaker system. South moved their B1 ship from greenbaker to shmil1. South moved their B1 ship from greenbaker to shmil1. A catastrophe occurred in the shmil1 system. All conversion (B) technology was lost\n\nHomeworlds Online (SDG# 34289)\nVariants: "Unrated"\nStarted: 2018.7.14, Ended: 2018.7.27\nParticipants: shmil1 (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) shmil1: Homeworld G1 B2 Y3\n\n3) wil: Build G1 Wil\n\n4) shmil1: Build Y1 Shmil1\n\n5) wil: Trade G1 B1 Wil\n\n6) shmil1: Build Y1 Shmil1\n\n7) wil: Build G1 Wil\n\n8) shmil1: Discover Y1 Shmil1 G3 Zel\n\n9) wil: Discover G1 Wil B1 B1\n\n10) shmil1: Trade Y1 R1 Shmil1\n\n11) wil: Build G1 Wil\n\n12) shmil1: Move Y1 Zel B1\n\n13) wil: Build G2 B1\n\n14) shmil1: Sacrifice R1 Shmil1\nAttack G1 B1\n\twil: I'm just over here trying to grow a nice little community.. Did you bring any beer?\n\n15) wil: Sacrifice G3 Wil\nBuild G2 B1\nBuild G2 B1\nBuild G3 Wil\nCatastrophe B1 G\n\n16) shmil1: Trade Y1 G1 B1\n\n17) wil: Build B1 Wil\n\twil: oops forgot to set the fuse...we will just build elsewhere to avoid the warmongers\n\n18) shmil1: Build G2 B1\n\n19) wil: Discover B1 Wil Y1 Y1\n\n20) shmil1: Trade G2 Y2 B1\n\n21) wil: Trade G1 R1 Wil\n\n22) shmil1: Build Y1 B1\n\n23) wil: Sacrifice G3 Wil\nBuild B2 Y1\nBuild B2 Y1\nBuild B3 Wil\n\n24) shmil1: Build Y1 B1\n\n25) wil: Trade B3 G3 Wil\n\n26) shmil1: Build Y2 Shmil1\n\n27) wil: Build B3 Wil\n\n28) shmil1: Sacrifice Y3 Shmil1\nMove Y1 B1 Wil\nMove Y1 B1 Wil\nMove Y2 B1 Wil\nCatastrophe Wil Y\n\n29) wil: Trade B3 Y3 Wil\n\n30) shmil1: Build Y1 Shmil1\n\n31) wil: Move Y3 Wil Shmil1\n\twil: well so much for your yellow domination! I can move!\n\n32) shmil1: Trade Y2 G2 Shmil1\n\twil: Couple things about the move as I see them... I am in a much better position now...always risky to take out half a homeworld without a plan...easier method would have been two send one in..and then use a y2 to send the other two.\n\n33) wil: Trade G3 R3 Wil\n\n34) shmil1: Build Y1 Shmil1\n\n35) wil: Sacrifice R3 Wil\nAttack Y1 Shmil1\nAttack Y1 Shmil1\nAttack G2 Shmil1\n\n\twil: gg, I'll play anytime..\n\nHomeworlds Online (SDG# 34308)\nVariants: "Hard time"\nStarted: 2018.7.15, Ended: 2018.8.12\nParticipants: dlwillson (S), ts52 (N)\nWinner: dlwillson\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) dlwillson: H B3 R1 G3\n\n3) ts52: Build G1 Ts52\n\n4) dlwillson: B G1 Dlwillson\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) ts52: Build Y2 Ts52\n\n8) dlwillson: B Y2 Dlwillson\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) dlwillson: D Y1 Dlwillson B2 Sea\n\n11) ts52: Build G1 Ts52\n\n12) dlwillson: B G1 Dlwillson\n\n13) ts52: Trade G1 B1 Ts52\n\n14) dlwillson: T G1 R1 Dlwillson\n\n15) ts52: Trade Y2 R2 Ts52\n\n16) dlwillson: B Y2 Dlwillson\n\n17) ts52: Build G1 Ts52\n\n18) dlwillson: Move Y2 Dlwillson Sea\n\n19) ts52: Build B1 Ts52\n\n20) dlwillson: D Y1 Sea B3 Sky\n\n21) ts52: Move B1 Ts52 Kermit\n\n22) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sky\nBuild Y3 Sea\nBuild Y3 Dlwillson\n\n23) ts52: Build Y3 Kermit\n\n24) dlwillson: Trade Y3 R3 Sea\n\n25) ts52: Trade Y3 R3 Kermit\n\n26) dlwillson: T Y2 G2 Sky\n\n27) ts52: Sacrifice G3 Ts52\nBuild B1 Kermit\nBuild B2 Kermit\nBuild B3 Ts52\n\n28) dlwillson: Sacrifice G2 Sky\nBuild Y2 Sea\nBuild Y3 Sky\n\n29) ts52: Build Y3 Kermit\n\n30) dlwillson: T Y3 G3 Dlwillson\n\n31) ts52: Trade B3 G3 Ts52\n\n32) dlwillson: D Y2 Sea B3 Serenity\n\n33) ts52: Discover B2 Kermit G2 Oscar\n\n34) dlwillson: B G1 Dlwillson\n\n35) ts52: Move B1 Kermit Oscar\n\n36) dlwillson: Trade Y1 G1 Sky\n\n37) ts52: Move Y3 Kermit Oscar\n\n38) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sky\nBuild Y1 Sea\nBuild Y3 Dlwillson\n\n39) ts52: Build R1 Kermit\n\n40) dlwillson: S Y3 Dlwillson\nM G2 Sky Ts52\nM G1 Sky Ts52\nM Y3 Sky Ts52\nC Ts52 G\n\n41) ts52: Sacrifice Y3 Oscar\nMove B1 Kermit Ts52\nMove R1 Kermit Ts52\nMove B2 Oscar Dlwillson\n\n42) dlwillson: S R3 Sea\nA B2 Dlwillson\nA R2 Ts52\nA R1 Ts52\n\n43) ts52: Move R3 Kermit Ts52\n\n44) dlwillson: S R2 Ts52\nA R3 Ts52\nA B1 Ts52\n\tts52: Excellent game. Well played.\n\n45) ts52: Move Y1 Kermit Ts52\n\tdlwillson: Thanks! Good game!\n\n46) dlwillson: Sacrifice R3 Ts52\nAttack Y1 Ts52\nAttack B1 Ts52\nPass\n\n\nHomeworlds Online (SDG# 34236)\nVariants: "Unrated"\nStarted: 2018.7.16, Ended: 2018.8.27\nParticipants: smokeytroll42 (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 G3 Y3\n\n2) smokeytroll42: Homeworld B3 R2 G3\n\n3) Felix: Build Y1 Felix\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\n5) Felix: Trade Y1 B1 Felix\n\n6) smokeytroll42: Trade G1 B1 Smokeytroll42\n\n7) Felix: Build B2 Felix\n\n8) smokeytroll42: Build G1 Smokeytroll42\n\n9) Felix: Discover B1 Felix G2 Out\n\n10) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\n11) Felix: Build B2 Out\n\n12) smokeytroll42: Discover B1 Smokeytroll42 G1 Bowie\n\n13) Felix: Trade B1 Y1 Out\n\n14) smokeytroll42: Build B1 Bowie\n\n15) Felix: Build B2 Felix\n\n16) smokeytroll42: Trade B1 Y1 Bowie\n\n17) Felix: Discover B2 Felix G2 Conk\n\n18) smokeytroll42: Build Y2 Bowie\n\n19) Felix: Build B1 Conk\n\n20) smokeytroll42: Build Y2 Smokeytroll42\n\n21) Felix: Build B3 Out\n\n22) smokeytroll42: Build B3 Bowie\n\n23) Felix: Trade B2 Y2 Conk\n\n24) smokeytroll42: Discover Y1 Bowie G2 Plant\n\n25) Felix: Trade B2 R2 Out\n\n26) smokeytroll42: Sacrifice Y2 Bowie\nMove B3 Bowie Plant\nMove B1 Bowie Plant\n\n27) Felix: Trade B2 R2 Felix\n\n28) smokeytroll42: Trade B3 R3 Plant\n\n29) Felix: Build B2 Out\n\n30) smokeytroll42: Build B2 Plant\n\n31) Felix: Build B2 Conk\n\n32) smokeytroll42: Build G1 Smokeytroll42\n\n33) Felix: Trade B3 G3 Out\n\n34) smokeytroll42: Sacrifice Y2 Smokeytroll42\nDiscover R3 Plant Y3 Tyler\nMove R3 Tyler Conk\n\n35) Felix: S Y2 Conk\nD B1 Conk G1 Plink\nD B2 Conk G1 Sink\n\n36) smokeytroll42: Discover B1 Plant Y3 Lennon\n\n37) Felix: Sacrifice G3 Out\nBuild B3 Out\nBuild B3 Plink\nBuild Y2 Out\n\n38) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild G3 Smokeytroll42\nBuild G3 Smokeytroll42\nBuild Y2 Plant\n\n39) Felix: Trade B3 Y3 Plink\n\n40) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild G3 Smokeytroll42\nBuild B3 Plant\nBuild Y2 Smokeytroll42\n\n41) Felix: Build R1 Felix\n\n42) smokeytroll42: Build R1 Conk\n\n43) Felix: Sacrifice Y2 Out\nMove R1 Felix Conk\nMove R2 Felix Conk\nCatastrophe Conk Red\n\n44) smokeytroll42: Move B3 Plant Sink\n\n45) Felix: Move B2 Out Felix\n\n46) smokeytroll42: Move B1 Lennon Plant\n\n47) Felix: Trade B2 G2 Felix\n\n48) smokeytroll42: Trade G3 R3 Smokeytroll42\n\n49) Felix: Build G3 Felix\n\n50) smokeytroll42: Move R3 Smokeytroll42 Sink\n\n51) Felix: Sacrifice B2 Sink\nTrade G3 R3 Felix\nPass\n\n52) smokeytroll42: Build B2 Sink\n\n53) Felix: Build G3 Felix\n\n54) smokeytroll42: Move Y1 Smokeytroll42 Sink\n\n55) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Plink\nBuild Y3 Out\n\n56) smokeytroll42: Sacrifice Y2 Smokeytroll42\nMove Y1 Plant Plink\nMove Y2 Plant Plink\nCatastrophe Plink Y\n\n57) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Plink\nBuild R1 Out\n\n58) smokeytroll42: Build Y1 Sink\n\n59) Felix: Move R1 Out Plink\n\n60) smokeytroll42: Move Y1 Sink Smokeytroll42\n\n61) Felix: Discover B3 Out R1 Post\n\n62) smokeytroll42: Build Y2 Sink\n\n63) Felix: Build R1 Plink\n\n64) smokeytroll42: Move Y1 Sink Plant\n\n65) Felix: Move Y1 Out Plink\n\n66) smokeytroll42: Sacrifice G3 Smokeytroll42\nBuild Y2 Plant\nBuild Y2 Sink\nBuild Y3 Smokeytroll42\n\n67) Felix: Sacrifice Y3 Out\nMove B1 Plink Smokeytroll42\nMove B2 Plink Smokeytroll42\nMove R1 Plink Smokeytroll42\n\n\tsmokeytroll42: Good game!\n\tFelix: Thanks, you too!\n\nHomeworlds Online (SDG# 34311)\nVariants: "Unrated"\nStarted: 2018.7.16, Ended: 2018.7.31\nParticipants: smokeytroll42 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 B2 Y3\n\n2) smokeytroll42: Homeworld B3 R1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) smokeytroll42: Build G1 Smokeytroll42\n\n5) Trydnt: Build Y1 Trydnt\n\n6) smokeytroll42: Trade G1 Y1 Smokeytroll42\n\n7) Trydnt: Trade Y1 R1 Trydnt\n\n8) smokeytroll42: Build G1 Smokeytroll42\n\n9) Trydnt: Build R1 Trydnt\n\n10) smokeytroll42: Discover G1 Smokeytroll42 B2 Peace\n\n11) Trydnt: Build R2 Trydnt\n\n12) smokeytroll42: Build G1 Peace\n\n13) Trydnt: Discover R2 Trydnt B1 B1\n\n14) smokeytroll42: Build G1 Peace\n\n15) Trydnt: Trade R2 G2 B1\n\n16) smokeytroll42: Build G2 Smokeytroll42\n\n17) Trydnt: Build R2 Trydnt\n\n18) smokeytroll42: Trade G2 R2 Smokeytroll42\n\n19) Trydnt: Build G2 B1\n\n20) smokeytroll42: Move R2 Smokeytroll42 Peace\n\n21) Trydnt: Move R1 Trydnt B1\n\n22) smokeytroll42: Trade G1 Y1 Peace\n\n23) Trydnt: Trade G2 Y2 B1\n\n24) smokeytroll42: Build Y2 Peace\n\n25) Trydnt: Discover Y2 B1 G2 G2\n\n26) smokeytroll42: Discover G1 Peace B1 Harmony\n\n27) Trydnt: Move R2 Trydnt Harmony\n\n28) smokeytroll42: Sacrifice Y1 Peace\nMove G1 Harmony Peace\n\n29) Trydnt: Sacrifice G2 B1\nBuild R2 B1\nBuild R3 Harmony\n\n30) smokeytroll42: Build R3 Peace\n\n31) Trydnt: Sacrifice Y2 G2\nMove R1 B1 Peace\nMove R2 B1 Peace\nCatastrophe Peace R\n\n32) smokeytroll42: Trade G1 R1 Peace\n\n33) Trydnt: Trade R2 G2 Harmony\n\n34) smokeytroll42: Build R2 Peace\n\n35) Trydnt: Build R2 Trydnt\n\n36) smokeytroll42: Move R1 Peace Smokeytroll42\n\n37) Trydnt: Build G1 Harmony\n\n38) smokeytroll42: Build R2 Peace\n\n39) Trydnt: Build R3 Trydnt\n\n40) smokeytroll42: Sacrifice Y2 Peace\nMove R2 Peace Harmony\nMove R2 Harmony Trydnt\nCatastrophe Trydnt R\n\n41) Trydnt: Move Y1 Trydnt Harmony\n\n42) smokeytroll42: Build R1 Peace\n\n43) Trydnt: Build R2 Harmony\n\n44) smokeytroll42: Discover R1 Smokeytroll42 G2 Love\n\n45) Trydnt: Move R3 Harmony Love\n\n46) smokeytroll42: Build R2 Love\n\n47) Trydnt: Sacrifice R2 Harmony\nAttack R1 Love\nAttack R2 Love\n\n48) smokeytroll42: Build Y1 Smokeytroll42\n\n49) Trydnt: Trade G2 B2 Harmony\n\n50) smokeytroll42: Move Y1 Smokeytroll42 Peace\n\n51) Trydnt: Build Y2 Harmony\n\n52) smokeytroll42: Build Y2 Peace\n\n53) Trydnt: Sacrifice B2 Harmony\nTrade R3 Y3 Love\nTrade R1 B1 Love\n\n54) smokeytroll42: Build Y2 Smokeytroll42\n\n55) Trydnt: Build Y3 Trydnt\n\n56) smokeytroll42: Discover Y1 Peace G1 Amity\n\n57) Trydnt: Build G2 Harmony\n\n58) smokeytroll42: Move Y2 Peace Amity\n\n59) Trydnt: Discover Y3 Trydnt B1 B1\n\n60) smokeytroll42: Build G2 Peace\n\n61) Trydnt: Discover G1 Harmony B2 B2\n\n62) smokeytroll42: Build G3 Smokeytroll42\n\n63) Trydnt: Sacrifice Y3 Love\nMove G1 B2 Smokeytroll42\nMove G2 Harmony Peace\nMove G2 Peace Smokeytroll42\nCatastrophe Smokeytroll42 G\n\n64) smokeytroll42: Move Y1 Smokeytroll42 Peace\n\n65) Trydnt: Sacrifice Y2 Harmony\nMove Y3 B1 Peace\nMove Y3 Peace Smokeytroll42\n\n\tsmokeytroll42: Gg\n\nHomeworlds Online (SDG# 34309)\nVariants: "Unrated, Hard time"\nStarted: 2018.7.18, Ended: 2018.7.21\nParticipants: wil (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld B3 R1 G3\n\n\twil: Sorry was away camping for 9 days, challenge me anytime\n\tmneme: Of course. NP.\n\nHomeworlds Online (SDG# 34333)\nVariants: "Unrated"\nStarted: 2018.7.18, Ended: 2018.7.20\nParticipants: mneme (S), Trydnt (N)\nWinner: mneme\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) mneme: Homeworld G3 B3 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) mneme: Build Y1 Mneme\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\tmneme: This should be interesting. Or short, depending.\n\n6) mneme: Trade Y3 R3 Mneme\n\n7) Trydnt: Discover Y1 Trydnt G3 G3\n\tmneme: (Yes, this is my first microverse game; I figured it was a good time to finally get some experience with the form).\r\n\r\nAnd ok, wow; this setup is incredibly unforgiving.\n\n8) mneme: Move R3 Mneme Trydnt\n\tmneme: Thanks for the game!\r\n\n\n\tTrydnt: damn. VERY unforgiving\n\tmneme: Sorry --0But the only non-losing move last turn was t y1 r1.\n\nHomeworlds Online (SDG# 34337)\nVariants: "Hard time"\nStarted: 2018.7.18, Ended: 2018.9.17\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Draw5PlayAll\n\n1) Felix: Homeworld Y1 B3 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tDraw5PlayAll: I did not really mean to smallverse you\n\n7) Felix: Build Y2 Felix\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\tFelix: I don't mind! Small universes are fun\n\n9) Felix: Discover Y1 Felix G2 Conk\n\n10) Draw5PlayAll: Discover Y1 Draw5playall G2 Goodidea\n\tDraw5PlayAll: I wonder when maybe someone I can beat will be #1 on the ladder again...\n\n11) Felix: Build G1 Felix\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) Felix: Trade G1 R1 Felix\n\n14) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n15) Felix: B R2 Felix\n\n16) Draw5PlayAll: Build Y2 Draw5playall\n\n17) Felix: Build Y3 Conk\n\n18) Draw5PlayAll: Build Y3 Goodidea\n\n19) Felix: Discover Y2 Felix G2 Plink\n\n20) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\n21) Felix: Trade R1 B1 Felix\n\n22) Draw5PlayAll: Move B2 Draw5playall Goodidea\n\n23) Felix: Move B1 Felix Conk\n\n24) Draw5PlayAll: Build B1 Goodidea\n\n25) Felix: Build R1 Felix\n\n26) Draw5PlayAll: Move R1 Draw5playall Goodidea\n\n27) Felix: Move R1 Felix Conk\n\n28) Draw5PlayAll: Build R2 Goodidea\n\n29) Felix: Build R2 Conk\n\n30) Draw5PlayAll: Discover R2 Goodidea G1 Seed\n\n31) Felix: Build R3 Felix\n\n32) Draw5PlayAll: Build R3 Goodidea\n\n33) Felix: Move R2 Felix Plink\n\n34) Draw5PlayAll: Build R3 Seed\n\n35) Felix: Build B1 Conk\n\n36) Draw5PlayAll: Move B1 Goodidea Seed\n\n37) Felix: Discover B1 Conk G1 Injection\n\n38) Draw5PlayAll: Build B2 Seed\n\n39) Felix: Build B2 Injection\n\n40) Draw5PlayAll: Build B3 Goodidea\n\n41) Felix: Move R2 Conk Draw5playall\n\n42) Draw5PlayAll: Move R3 Goodidea Injection\n\n43) Felix: Sacrifice Y3 Conk\nMove R2 Plink Draw5playall\nMove B2 Injection Conk\nMove B1 Injection Plink\n\n44) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R3 Seed Plink\nMove R3 Injection Conk\n\n45) Felix: Sacrifice Y2 Plink\nMove B2 Conk Draw5playall\nMove R1 Conk Draw5playall\nCatastrophe Draw5playall Red\n\n46) Draw5PlayAll: Sacrifice R2 Seed\nAttack B1 Conk\nAttack B1 Plink\n\n47) Felix: Discover Y1 Conk G1 Outpost\n\tDraw5PlayAll: Yay no G2s in the stash!\n\n48) Draw5PlayAll: Sacrifice R1 Goodidea\nAttack B2 Draw5playall\n\n49) Felix: Build Y2 Outpost\n\tDraw5PlayAll: I think you are dead lost.\n\n50) Draw5PlayAll: Move Y3 Goodidea Seed\n\n51) Felix: Discover Y1 Outpost G3 Grinch\n\n52) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: I think you're probably right!\n\n53) Felix: Move Y1 Grinch Seed\n\n54) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R1 Conk\nBuild R1 Plink\n\n55) Felix: Build G3 Felix\n\n56) Draw5PlayAll: Sacrifice R1 Conk\nAttack Y1 Seed\n\n57) Felix: Build Y2 Outpost\n\n58) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Conk\nBuild Y2 Goodidea\nBuild G3 Draw5playall\n\n59) Felix: Discover Y2 Outpost R2 Inpost\n\n60) Draw5PlayAll: Sacrifice Y1 Goodidea\nMove Y1 Seed Plink\n\n61) Felix: S G3 Felix\nB Y1 Inpost\nB Y3 Inpost\nB Y3 Outpost\n\n62) Draw5PlayAll: Sacrifice Y2 Goodidea\nMove Y1 Plink Seed\nMove Y1 Seed Inpost\nCatastrophe Inpost Yellow\n\n63) Felix: Build G3 Felix\n\tDraw5PlayAll: Inpost?!?\n\n64) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 Seed\nBuild Y1 Seed\n\n65) Felix: Discover Y2 Outpost R2 Uppit\n\n66) Draw5PlayAll: Trade Y1 R1 Seed\n\n67) Felix: Build Y1 Outpost\n\n68) Draw5PlayAll: Move Y1 Seed Goodidea\n\n69) Felix: D Y1 Outpost R2 Stalfort\n\tDraw5PlayAll: ...why did I do that?\n\n70) Draw5PlayAll: Discover R1 Seed Y3 Holding\n\tFelix: You can always undo!\n\n71) Felix: S G3 Felix\nB G3 Felix\nB Y2 Outpost\nB Y2 Stalfort\n\tDraw5PlayAll: The hard part is actually winning.\n\n72) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild R2 Holding\nPass\nPass\nPass\nPass\nPass\nPass\n\tFelix: I believe in you!\n\tDraw5PlayAll: Too Many Systems\n\n73) Felix: M R3 Felix Stalfort\n\n74) Draw5PlayAll: Sacrifice Y3 Seed\nMove R1 Holding Stalfort\nMove R2 Holding Stalfort\nCatastrophe Stalfort Red\nMove R3 Conk Felix\n\n\tDraw5PlayAll: Yeah, this was much better.\n\tFelix: Much better! Nice move!\n\nHomeworlds Online (SDG# 34344)\nVariants: "Unrated"\nStarted: 2018.7.20, Ended: 2018.7.30\nParticipants: DodoBirb (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) DodoBirb: Homeworld B1 R3 G3\n\n3) Babamots: Build G1 Babamots\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) DodoBirb: Trade G1 B1 Dodobirb\n\n7) Babamots: Build B2 Babamots\n\n8) DodoBirb: Build B2 Dodobirb\n\n9) Babamots: Trade B2 Y2 Babamots\n\n10) DodoBirb: Trade B2 Y2 Dodobirb\n\n11) Babamots: Build B2 Babamots\n\n12) DodoBirb: Build B2 Dodobirb\n\n13) Babamots: Discover B1 Babamots G3 Ferenginar\n\n14) DodoBirb: Discover B2 Dodobirb G2 Twopip\n\n15) Babamots: Build B3 Ferenginar\n\n16) DodoBirb: Build B3 Twopip\n\n17) Babamots: Trade B3 Y3 Ferenginar\n\n18) DodoBirb: Trade B3 Y3 Twopip\n\n19) Babamots: Build B3 Ferenginar\n\n20) DodoBirb: Build B3 Twopip\n\n21) Babamots: Discover B1 Ferenginar G2 Risa\n\tBabamots: I'm making you move first next game :-P\n\n22) DodoBirb: Discover B1 Dodobirb G2 Echo\n\n23) Babamots: Build B3 Risa\n\n24) DodoBirb: Trade B3 Y3 Twopip\n\n25) Babamots: Trade B3 R3 Risa\n\n26) DodoBirb: Trade B1 R1 Echo\n\n27) Babamots: Build B1 Ferenginar\n\n28) DodoBirb: Build B3 Twopip\n\n29) Babamots: Build B3 Risa\n\n30) DodoBirb: Discover B3 Twopip R3 Threepip\n\n31) Babamots: Trade B2 R2 Babamots\n\n32) DodoBirb: Move Y3 Twopip Dodobirb\n\n33) Babamots: Move B3 Ferenginar Echo\n\tBabamots: You're in quite a bit of danger. Can you see my plan?\n\tDodoBirb: You can sacrifice your y3 in Ferenginar to move your b3, r3 and b1 from Risa to DodoBirb. I take your r3 or b3 then you sacrifice your r2 in your homeworld to take the g3 and your b3 or r3 back. Then you take my y2 and win. That is, if I don't do anything.\n\n34) DodoBirb: Sacrifice Y3 Twopip\nMove B2 Twopip Dodobirb\nMove B2 Dodobirb Risa\nMove B3 Threepip Risa\nCatastrophe Risa B\n\tBabamots: Yes, something like that was the immediate danger, and moving a second large to your home was a good defense (it would probably make my invasion end in a draw, trading my large back and forth).\r\n\r\nYour next problem is that I'm establishing a second foothold on a medium system connected to your home...\n\n35) Babamots: Discover Y3 Ferenginar G2 Xindi\n\n36) DodoBirb: Build G1 Dodobirb\n\n37) Babamots: Sacrifice Y2 Babamots\nMove Y3 Xindi Dodobirb\nMove B3 Echo Dodobirb\n\n38) DodoBirb: Attack Y3N Dodobirb\n\n39) Babamots: Sacrifice R3 Risa\nAttack Y3 Dodobirb\nAttack Y3 Dodobirb\nAttack G3 Dodobirb\n\n40) DodoBirb: Pass\n\n41) Babamots: Sacrifice R2 Babamots\nAttack Y2 Dodobirb\nAttack G1 Dodobirb\n\n\tBabamots: I promise to let the crews of those ships live :-)\n\tDodoBirb: What about the civilians in the Homeworld?\n\tBabamots: I would certainly prefer to spare as many taxpayers as possible. I may have to execute a few government officials as I cement my control, but I have no love of killing for its own sake.\n\nHomeworlds Online (SDG# 34265)\nVariants: "Hard time"\nStarted: 2018.7.23, Ended: 2018.7.26\nParticipants: Sticky (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n\tTrydnt: welcome\n\nHomeworlds Online (SDG# 34314)\nVariants: "Unrated"\nStarted: 2018.7.23, Ended: 2018.7.23\nParticipants: wil (S), Sticky (N)\nWinner: wil\n\n\tSticky: homeworld green blue yellow\n\twil: Sorry was away camping for 9 days, challenge me anytime\n\twil: Sorry was away camping for 9 days, challenge me anytime\n\nHomeworlds Online (SDG# 34358)\nVariants: "Hard time"\nStarted: 2018.7.25, Ended: 2018.8.7\nParticipants: bhorner (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) bhorner: H R3 B1 G3\n\tBabamots: My first game for the tournament. Have fun!\n\n3) Babamots: Build G1 Babamots\n\tDraw5PlayAll: Wait what?!\n\tDraw5PlayAll: Oh, I had better start challenging people!\n\tbhorner: You too. :). Thanks for organizing!\n\n4) bhorner: Build G1 Bhorner\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) Babamots: Build B2 Babamots\n\n8) bhorner: Build B2 Bhorner\n\tbhorner: Have I already made a mistake? :)\n\n9) Babamots: Trade B2 Y2 Babamots\n\tBabamots: I don't think so. Looks pretty even to me.\n\n10) bhorner: Trade B2 Y2 Bhorner\n\tbhorner: I saw that we were charging to expose the B3's, and didn't have a plan... thought you might. I like being on my toes. I don't get that in person too often. :)\n\n11) Babamots: Build B2 Babamots\n\tBabamots: In person, you don't often play people with plans? Or in person, you aren't often on your toes? I don't have anyone to play with in person, myself.\n\n12) bhorner: Build B2 Bhorner\n\tbhorner: In person I don't often need to be on my toes. :)\n\n13) Babamots: Discover B1 Babamots G3 Risa\n\n14) bhorner: Discover B1 Bhorner G2 Swirl\n\tDraw5PlayAll: Not having anyone to play against IRL: a common lament.\n\n15) Babamots: Build B3 Risa\n\n16) bhorner: Build B3 Swirl\n\n17) Babamots: Trade B1 Y1 Risa\n\n18) bhorner: Trade B1 R1 Swirl\n\n19) Babamots: Build Y1 Babamots\n\n20) bhorner: Build B1 Swirl\n\n21) Babamots: Trade B2 R2 Babamots\n\n22) bhorner: Trade B3 Y3 Swirl\n\n23) Babamots: Discover Y1 Babamots B3 Bolarus\n\n24) bhorner: Build R1 Swirl\n\n25) Babamots: Build Y1 Risa\n\n\tBabamots: Sorry you're so busy. I'll have to play you another time!\n\nHomeworlds Online (SDG# 34359)\nVariants: "Hard time"\nStarted: 2018.7.25, Ended: 2018.8.7\nParticipants: bhorner (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R2 G3\n\n2) bhorner: H R2 B1 G3\n\n3) ajo: Build G1 Ajo\n\tbhorner: Nice to meet you, good luck!\n\n4) bhorner: B G1 Bhorner\n\tajo: Thanks and good luck!\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) bhorner: Trade G1 B1 Bhorner\n\n7) ajo: Build G1 Ajo\n\n8) bhorner: Build B1 Bhorner\n\n9) ajo: Build G1 Ajo\n\n10) bhorner: Build G1 Bhorner\n\n11) ajo: Build Y1 Ajo\n\n12) bhorner: Trade G1 Y1 Bhorner\n\n13) ajo: Build Y2 Ajo\n\n14) bhorner: Discover B1 Bhorner G3 Tree\n\n15) ajo: Sacrifice Y2 Ajo\nDiscover Y1 Ajo G1 Beta\nDiscover Y1 Beta B3 Alpha\n\n16) bhorner: Build Y2 Bhorner\n\n17) ajo: Sacrifice G1 Ajo\nBuild Y2 Alpha\n\n18) bhorner: Move Y1 Bhorner Tree\n\n19) ajo: Trade Y1 G1 Alpha\n\n20) bhorner: Build B2 Tree\n\n21) ajo: Build Y1 Alpha\n\n22) bhorner: Discover B2 Tree G1 Twig\n\n23) ajo: Trade Y2 R2 Alpha\n\n24) bhorner: Trade B1 R1 Bhorner\n\n25) ajo: Build Y2 Alpha\n\n26) bhorner: Build G2 Bhorner\n\n27) ajo: Build R1 Alpha\n\n28) bhorner: M R1 Bhorner Tree\n\n29) ajo: Sacrifice Y2 Alpha\nMove R2 Alpha Twig\nMove R2 Twig Tree\n\n30) bhorner: Sacrifice G2 Bhorner\nBuild R1 Tree\nBuild R3 Tree\nCatastrophe Tree Red\n\n31) ajo: Build Y2 Alpha\n\n32) bhorner: Trade B2 R2 Twig\n\n33) ajo: Build G2 Alpha\n\n34) bhorner: Build B1 Tree\n\n35) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\n\n\tajo: Proximity-to-time-limit alert! :o\n\nHomeworlds Online (SDG# 34360)\nVariants: "Hard time"\nStarted: 2018.7.25, Ended: 2018.8.27\nParticipants: nycavri (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi Avri! TaGG! :)\n\tLaurie_Menke: Also, if you're free today, it's my day off, so I have more time to play than usual. :)\n\n2) nycavri: Homeworld G2 B3 Y3\n\tnycavri: Likely only going to get a move or two in today . . .\n\tnycavri: TaGG!\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: OK... no worries. Have fun!\n\n4) nycavri: Build Y1 Nycavri\n\n5) Laurie_Menke: Build G1 Laurie_menke\n\n6) nycavri: Discover Y1 Nycavri B1 Deacon\n\n7) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n8) nycavri: Build Y1 Nycavri\n\n9) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n10) nycavri: Build Y2 Nycavri\n\n11) Laurie_Menke: Discover Y1 Laurie_menke G2 Hi\n\n12) nycavri: Discover Y2 Nycavri B1 May\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\n14) nycavri: Build Y2 Nycavri\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) nycavri: Discover Y1 Nycavri G1 Mercury\n\n17) Laurie_Menke: Move R1 Laurie_menke Hi\n\n18) nycavri: Trade Y2 G2 May\n\n19) Laurie_Menke: Discover G1 Laurie_menke Y2 Yeller\n\n20) nycavri: Build G3 May\n\n21) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild G3 Yeller\nBuild R1 Hi\n\n22) nycavri: Sacrifice G3 May\nBuild G3 May\nBuild Y2 Deacon\nBuild Y3 Mercury\n\n23) Laurie_Menke: Move G3 Yeller Deacon\n\n24) nycavri: Sacrifice Y2 Deacon\nDiscover G3 May R2 Taylor\nMove G2 May Taylor\n\n25) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n26) nycavri: Discover Y1 Deacon Y2 May\n\n27) Laurie_Menke: Move Y1 Hi Mercury\n\n28) nycavri: Move Y1 Mercury May\n\n29) Laurie_Menke: Move Y1 Mercury May\n\n30) nycavri: Build G1 Taylor\n\n31) Laurie_Menke: Move Y1 May Deacon\n\n32) nycavri: Trade Y2 R2 Nycavri\n\n33) Laurie_Menke: Sacrifice G3 Deacon\nBuild G3 Yeller\nBuild Y2 Deacon\nBuild R2 Laurie_menke\n\n34) nycavri: Build R3 Nycavri\n\n35) Laurie_Menke: Sacrifice Y2 Deacon\nMove G1 Yeller Deacon\nMove R1 Hi Deacon\n\n36) nycavri: Sacrifice Y3 Mercury\nMove G1 Taylor Laurie_menke\nMove G2 Taylor Laurie_menke\nMove G3 Taylor Laurie_menke\nCatastrophe Laurie_menke G\n\n37) Laurie_Menke: Move G3 Yeller Laurie_menke\n\n38) nycavri: Build Y2 Nycavri\n\n39) Laurie_Menke: Build R2 Deacon\n\n\tLaurie_Menke: Hey, Avri...I hope everything's OK! Just a warning that you're going to time out in one day and this is a tournament game, so it's hard time! I don't want to win that way! ;)\n\tLaurie_Menke: :( Sorry. I hope you're OK!\n\tBabamots: nycavri indicated to me that being busy and was the problem and nothing more dire.\r\n\r\nIf you would both like to continue this game (or even start a new replacement game), that's OK with me from a tournament standpoint.\r\n\r\nI don't know if there's any way to restart the clock on this game though. I'm going to try an experiment.\n\tBabamots: I sent the "clock reset" command to the chat, but it doesn't appear to work on terminated games.\r\n\r\nLet me know if you want to try to resume or restart. I'll happily adjust the spreadsheet.\n\tLaurie_Menke: I'd very much prefer to win or lose based on merit rather than time. If Avri's willing, we could replay this game to this point and continue. What do you think, Avri? Wanna give it a try?\n\nHomeworlds Online (SDG# 34369)\nVariants: "Hard time"\nStarted: 2018.7.25, Ended: 2018.8.3\nParticipants: Draw5PlayAll (S), Remneb (N)\nWinner: Draw5PlayAll\n\n1) Remneb: Homeworld B1 R2 G3\n\n2) Draw5PlayAll: Homeworld B1 G2 B3 *\n\tRemneb: Have a good game.\n\n3) Remneb: Build G1 Remneb\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) Remneb: Trade G1 Y1 Remneb\n\tDraw5PlayAll: This is for the tournament just so you know.\n\tRemneb: I know.\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) Remneb: Build G1 Remneb\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) Remneb: Build Y1 Remneb\n\n10) Draw5PlayAll: Discover B2 Draw5playall G3 Keeper\n\n11) Remneb: Discover Y1 Remneb G3 Thor\n\n12) Draw5PlayAll: Build B2 Keeper\n\n13) Remneb: Discover G1 Remneb Y3 Gort\n\n14) Draw5PlayAll: Build B2 Draw5playall\n\n15) Remneb: Build G1 Gort\n\n16) Draw5PlayAll: Build B3 Keeper\n\n17) Remneb: Build G1 Remneb\n\n18) Draw5PlayAll: Trade B3 R3 Keeper\n\n19) Remneb: Trade G1 R1 Remneb\n\n20) Draw5PlayAll: Build B3 Keeper\n\n21) Remneb: Build G1 Remneb\n\n22) Draw5PlayAll: Trade B3 Y3 Keeper\n\n23) Remneb: Sacrifice G3 Remneb\nBuild G2 Remneb\nBuild G2 Gort\nBuild G3 Remneb\n\n24) Draw5PlayAll: Trade B2 R2 Keeper\n\n25) Remneb: Trade G2 B2 Remneb\n\n26) Draw5PlayAll: Sacrifice Y3 Keeper\nMove B1 Draw5playall Keeper\nMove B1 Keeper Remneb\nMove B2 Keeper Remneb\nCatastrophe Remneb Blue\n\n27) Remneb: Build G2 Remneb\n\tDraw5PlayAll: No one steals my blue...\n\n28) Draw5PlayAll: Sacrifice Y3 Draw5playall\nPass\nMove R2 Keeper Remneb\nMove R3 Keeper Remneb\nCatastrophe Remneb Red\n\tDraw5PlayAll: Goodtry\n\n\nHomeworlds Online (SDG# 34373)\nVariants: "Hard time"\nStarted: 2018.7.25, Ended: 2018.8.14\nParticipants: mneme (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) mneme: Homeworld G3 R2 B3\n\n3) dlwillson: B G1 Dlwillson\n\n4) mneme: Build B1 Mneme\n\n5) dlwillson: T G1 B1 Dlwillson\n\tmneme: Good luck!\r\n\n\n6) mneme: Build B2 Mneme\n\tdlwillson: Have fun!\n\n7) dlwillson: Build B2 Dlwillson\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) dlwillson: Discover B2 Dlwillson G2 Field\n\n10) mneme: Trade B2 Y2 Mneme\n\n11) dlwillson: B B2 Field\n\n12) mneme: Build B2 Mneme\n\n13) dlwillson: T B1 R1 Dlwillson\n\n14) mneme: Build Y1 Mneme\n\n15) dlwillson: T B2 Y2 Field\n\n16) mneme: Discover Y2 Mneme G1 Euterpe\n\n17) dlwillson: Build B1 Field\n\n18) mneme: Trade B2 R2 Mneme\n\n19) dlwillson: T B1 R1 Field\n\n20) mneme: Move R2 Mneme Euterpe\n\n21) dlwillson: Build G1 Dlwillson\n\n22) mneme: Build Y1 Euterpe\n\n23) dlwillson: B R1 Field\n\n24) mneme: Build B1 Mneme\n\n25) dlwillson: D R1 Field R3 Mars\n\n26) mneme: Discover Y2 Euterpe R3 Melpomene\n\n27) dlwillson: Build B2 Field\n\n28) mneme: Move B1 Mneme Euterpe\n\n29) dlwillson: T B2 G2 Field\n\n30) mneme: Build Y1 Mneme\n\n31) dlwillson: S G3 Dlwillson\nB Y2 Field\nB R2 Mars\nB G1 Field\n\n32) mneme: Build R3 Euterpe\n\n33) dlwillson: S Y2 Field\nM R2 Mars Euterpe\nM R1 Mars Euterpe\nC Euterpe R\n\n34) mneme: Build B2 Mneme\n\n35) dlwillson: B G2 Dlwillson\n\n36) mneme: Trade B2 R2 Mneme\n\n37) dlwillson: B G3 Dlwillson\n\n38) mneme: Trade Y3 G3 Mneme\n\n39) dlwillson: D G2 Dlwillson B2 Sea\n\n40) mneme: Build B2 Euterpe\n\n41) dlwillson: Sacrifice G2 Field\nBuild B3 Field\nBuild G2 Sea\n\n42) mneme: Build B3 Mneme\n\n43) dlwillson: T B3 R3 Field\n\n44) mneme: Trade B2 R2 Euterpe\n\n45) dlwillson: M R3 Field Euterpe\n\tmneme: Nice.\n\n46) mneme: Sacrifice G3 Mneme\nBuild R1 Euterpe\nBuild R3 Euterpe\nBuild Y2 Melpomene\nCatastrophe Euterpe R\n\n47) dlwillson: S G3 Dlwillson\nB Y3 Field\nB G3 Sea\nB G3 Dlwillson\n\n48) mneme: Build Y3 Euterpe\n\n49) dlwillson: Sacrifice G3 Dlwillson\nBuild G3 Dlwillson\nBuild R1 Dlwillson\nBuild R2 Field\n\n50) mneme: Sacrifice Y2 Melpomene\nMove Y2 Melpomene Field\nMove Y1 Euterpe Field\nCatastrophe Field Y\n\n51) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Field\nBuild R3 Dlwillson\nBuild G3 Dlwillson\n\n52) mneme: Build R3 Mneme\n\n53) dlwillson: S B2 Field\nT R3 B3 Field\nT R3 Y3 Dlwillson\n\n54) mneme: Discover R3 Mneme Y1 Calliope\n\n55) dlwillson: M R1 Dlwillson Sea\n\n56) mneme: Build Y2 Euterpe\n\n57) dlwillson: T G2 Y2 Sea\n\n58) mneme: Build Y2 Mneme\n\tdlwillson: How do you pronounce your handle?\n\n59) dlwillson: M Y3 Dlwillson Field\n\tmneme: nemay, more or less. The "M" is only mostly silent, the Es aren't.\n\n60) mneme: Move R2 Mneme Euterpe\n\n61) dlwillson: S G3 Dlwillson\nB B2 Field\nB G2 Field\nB G3 Dlwillson\n\tdlwillson: I was pretty close to correct. I'll fix my second e.\n\n62) mneme: Build R3 Euterpe\n\n63) dlwillson: S Y3 Field\nM G1 Field Euterpe\nM G2 Field Euterpe\nM G2 Sea Euterpe\nC Euterpe G\n\tmneme: Thanks. It would probably be more correct to the greek to use the same sound for both epsilons, but this sounds better to me.\n\n64) mneme: Trade Y2 G2 Mneme\n\n65) dlwillson: Trade R2 Y2 Field\n\n66) mneme: Move B1 Mneme Calliope\n\n67) dlwillson: Sacrifice G3 Sea\nBuild Y2 Field\nBuild Y3 Field\nBuild Y3 Sea\n\n68) mneme: Discover Y1 Mneme B1 Urania\n\n69) dlwillson: Move Y2 Field Urania\n\tmneme: Well played.\n\n70) mneme: Discover Y1 Urania G2 Melpomene\n\tdlwillson: Thank you!\n\n71) dlwillson: M R1 Field Urania\n\n72) mneme: Sacrifice G2 Mneme\nBuild B2 Mneme\nBuild B3 Calliope\n\n73) dlwillson: T B3 G3 Field\n\n74) mneme: Trade B1 G1 Calliope\n\n75) dlwillson: S G3 Dlwillson\nB R2 Urania\nB R2 Urania\nB R3 Dlwillson\n\n76) mneme: Build R3 Calliope\n\n77) dlwillson: S B2 Field\nT R3 G3 Dlwillson\nT R1 G1 Sea\n\n78) mneme: Move R3 Calliope Melpomene\n\n79) dlwillson: Sacrifice Y2 Field\nMove R1 Urania Mneme\nMove G1 Dlwillson Sea\n\n80) mneme: Attack R1 Mneme\n\n81) dlwillson: S Y3 Field\nM R2 Urania Mneme\nM R2 Urania Mneme\nC Mneme R\nM G3 Field Mneme\n\n\tdlwillson: The new rule about cat'ing whenever you want to... Allows for more complicated doomsday machines.\n\tmneme: I know it does. I worked out the two step sequence after I commented. :)\r\n\r\nWell played.\n\tdlwillson: Thank you and good game!\n\tmneme: The same! And looks like this is the game that took you past me in the rankings; congrats!\n\tdlwillson: Thanks again! Remember TwoShort? \n\tmneme: How could I forget him?\n\nHomeworlds Online (SDG# 34371)\nVariants: "Hard time"\nStarted: 2018.7.25, Ended: 2018.8.3\nParticipants: Babamots (S), Draw5PlayAll (N)\nWinner: Babamots\n\n1) Draw5PlayAll: Pass\n\n2) Babamots: Homeworld B2 R1 G3\n\tDraw5PlayAll: You go first. Good luck.\n\tBabamots: Thanks! You too.\r\n\r\nFor the record, this is for the Great Tournament.\n\n3) Draw5PlayAll: Homeworld B3 R2 G3\n\n4) Babamots: Build G1 Babamots\n\tDraw5PlayAll: I never use 2/2/7 for anything else, so if nothing else, 227 + Rated = Tournament.\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Babamots: Build Y1 Babamots\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n10) Babamots: Discover Y1 Babamots G3 Risa\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) Babamots: Build Y2 Risa\n\n13) Draw5PlayAll: Discover Y1 Draw5playall G1 G1\n\n14) Babamots: Move Y1 Risa G1\n\n15) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n16) Babamots: Sacrifice G3 Babamots\nBuild Y2 G1\nBuild Y3 Risa\nBuild Y3 Babamots\n\n17) Draw5PlayAll: Build Y3 Draw5playall\n\tBabamots: Not sure what this'll do. Should be interesting.\n\n18) Babamots: Sacrifice Y2 Risa\nMove Y1 G1 Draw5playall\nMove Y2 G1 Draw5playall\nCatastrophe Draw5playall Y\n\n19) Draw5PlayAll: Build R1 Draw5playall\n\n20) Babamots: Trade Y1 G1 Babamots\n\n21) Draw5PlayAll: Build Y1 G1\n\n22) Babamots: Build Y1 Risa\n\n23) Draw5PlayAll: Sacrifice Y1 G1\nMove R1 Draw5playall G1\n\n24) Babamots: Build G1 Babamots\n\n25) Draw5PlayAll: Build G2 Draw5playall\n\n26) Babamots: Build G2 Babamots\n\n27) Draw5PlayAll: Build R2 G1\n\n28) Babamots: Trade G2 R2 Babamots\n\n29) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n30) Babamots: Move Y3 Risa G1\n\n31) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R3 G1\nBuild Y1 G1\nBuild Y2 G1\nCatastrophe G1 Yellow\n\n32) Babamots: Build R3 Babamots\n\n33) Draw5PlayAll: Sacrifice R1 G1\nPass\n\n34) Babamots: Sacrifice Y3 Babamots\nMove R3 Babamots Risa\nMove R3 Risa G1\nMove R3 G1 Draw5playall\n\n35) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R2 G1 Draw5playall\nC Draw5playall Red\nMove R3 G1 Draw5playall\n\n36) Babamots: Trade R2 Y2 Babamots\n\tDraw5PlayAll: Darn\n\n37) Draw5PlayAll: Trade R3 G3 Draw5playall\n\tDraw5PlayAll: I should have sacrificed the Y2 to switch the places of the R3@G1 and my R1@Draw5PlayAll\n\tBabamots: Yeah, I think so too. Or you could have traded y2 for g2 which would have let you build into a catastrophe if I invaded.\n\n38) Babamots: Move Y1 Risa Babamots\n\n39) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n40) Babamots: Build G1 Babamots\n\tDraw5PlayAll: DARN!!!!\n\n41) Draw5PlayAll: Pass\n\tBabamots: Pretty weird situation here.\n\n42) Babamots: Trade G1 B1 Babamots\n\n43) Draw5PlayAll: Move Y3 Draw5playall Babamots\n\tBabamots: Gonna make me come over there I see :-D\n\n\tDraw5PlayAll: It let me do that?!\n\tBabamots: Wow! What happened? I'm sure I've gotten an error from SDG when I tried to abandon my home.\r\n\r\nSince you issued the challenge, will you record the result?\r\n\r\nGood game. And good luck with the tournament!\n\tBabamots: I'll go ahead and record it. I'm a little OCD about my spreadsheet being up to date :-).\n\nHomeworlds Online (SDG# 34370)\nVariants: "Hard time"\nStarted: 2018.7.25, Ended: 2018.8.2\nParticipants: Draw5PlayAll (S), tetsuhari (N)\nWinner: Draw5PlayAll\n\n1) tetsuhari: Homeworld Y2 G3 B3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) tetsuhari: Build B1 Tetsuhari\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) tetsuhari: Discover B1 Tetsuhari G1 Greenone\n\n6) Draw5PlayAll: Build G1 Draw5playall\n\n7) tetsuhari: Build B1 Greenone\n\n8) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n\tDraw5PlayAll: ...\n\nHomeworlds Online (SDG# 34367)\nVariants: "Hard time"\nStarted: 2018.7.26, Ended: 2018.8.19\nParticipants: DodoBirb (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) DodoBirb: Homeworld B1 R2 G3\n\tDraw5PlayAll: For the tournament. I am letting you go first.\n\n3) Draw5PlayAll: Homeworld B1 G2 B3 *\n\tDodoBirb: Good Luck\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) Draw5PlayAll: Build B1 Draw5playall\n\n6) DodoBirb: Trade G1 Y1 Dodobirb\n\n7) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n8) DodoBirb: Build Y1 Dodobirb\n\n9) Draw5PlayAll: Build B2 Draw5playall\n\n10) DodoBirb: Build Y1 Dodobirb\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) DodoBirb: Discover Y1 Dodobirb G3 Biggreen\n\n13) Draw5PlayAll: Move B2 Draw5playall Biggreen\n\n14) DodoBirb: Build Y2 Biggreen\n\n15) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n16) DodoBirb: Trade Y1 R1 Dodobirb\n\n17) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack Y2 Biggreen\nAttack Y1 Biggreen\n\n18) DodoBirb: Build Y1 Dodobirb\n\n19) Draw5PlayAll: Build B2 Biggreen\n\n20) DodoBirb: Discover Y1 Dodobirb G3 Threepip\n\n21) Draw5PlayAll: Build B2 Draw5playall\n\n22) DodoBirb: Sacrifice G3 Dodobirb\nBuild Y2 Threepip\nBuild Y2 Threepip\nBuild Y3 Dodobirb\n\n23) Draw5PlayAll: Sacrifice Y2 Biggreen\nMove Y1 Biggreen Draw5playall\nMove Y1 Draw5playall Threepip\nCatastrophe Threepip Y\n\n24) DodoBirb: Discover Y1 Dodobirb G3 Earth\n\n25) Draw5PlayAll: Build B3 Biggreen\n\n26) DodoBirb: Build Y1 Earth\n\n27) Draw5PlayAll: Trade B3 R3 Biggreen\n\n28) DodoBirb: Build Y1 Earth\n\n29) Draw5PlayAll: Build B3 Biggreen\n\n30) DodoBirb: Move Y1 Earth Dodobirb\n\n31) Draw5PlayAll: Build Y2 Draw5playall\n\n32) DodoBirb: Trade Y1 G1 Dodobirb\n\n33) Draw5PlayAll: Trade B3 Y3 Biggreen\n\n34) DodoBirb: Build G1 Dodobirb\n\n35) Draw5PlayAll: Build B3 Biggreen\n\n36) DodoBirb: Build G1 Dodobirb\n\n37) Draw5PlayAll: Discover B3 Biggreen G2 Expand\n\n38) DodoBirb: Discover G1 Dodobirb B3 Bluesky\n\n39) Draw5PlayAll: Build B3 Biggreen\n\n40) DodoBirb: Build G2 Bluesky\n\n41) Draw5PlayAll: Sacrifice Y3 Biggreen\nMove B3 Biggreen Dodobirb\nMove B3 Expand Earth\nMove B3 Earth Dodobirb\n\n42) DodoBirb: Attack B3N Dodobirb\n\tDraw5PlayAll: You cannot trade for blue!\n\n43) Draw5PlayAll: Sacrifice R3 Biggreen\nAttack B3 Dodobirb\nAttack Y3 Dodobirb\nAttack R1 Dodobirb\n\tDodoBirb: I'm basically defeated next turn.\n\n44) DodoBirb: Pass\n\n45) Draw5PlayAll: Trade B3 G3 Dodobirb\n\n46) DodoBirb: Pass\n\n47) Draw5PlayAll: Build G2 Dodobirb\nCatastrophe Dodobirb Green\n\tDraw5PlayAll: I will get the form filled later. Good game.\n\tDodoBirb: Good Game.\n\n\nHomeworlds Online (SDG# 34362)\nVariants: "Hard time"\nStarted: 2018.7.26, Ended: 2018.8.21\nParticipants: nycavri (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\twil: Is this a GHWT18?\n\n2) nycavri: Homeworld B3 G2 Y3\n\tnycavri: Yup - TaGG!\n\tnycavri: I'll send in the game start form.\n\n3) wil: Build G1 Wil\n\twil: cool\n\n4) nycavri: Build Y1 Nycavri\n\n5) wil: Trade G1 Y1 Wil\n\n6) nycavri: Build Y2 Nycavri\n\n7) wil: Build Y2 Wil\n\n8) nycavri: Discover Y1 Nycavri G1 Deacon\n\n9) wil: Discover Y1 Wil G3 G3\n\n10) nycavri: Trade Y2 G2 Nycavri\n\twil: will be around about 45 min more..\n\n11) wil: Build Y2 Wil\n\n12) nycavri: Build Y2 Deacon\n\n13) wil: Trade Y2 G2 Wil\n\n14) nycavri: Build G1 Nycavri\n\n15) wil: Discover G2 Wil B3 B3\n\n16) nycavri: Move G1 Nycavri Deacon\n\n17) wil: Build G1 B3\n\n18) nycavri: Discover Y1 Deacon G3 May\n\n19) wil: Move Y2 Wil B3\n\n20) nycavri: Move Y1 May Wil\n\n21) wil: Sacrifice G2 B3\nBuild G2 Wil\nBuild G3 B3\n\n22) nycavri: Sacrifice G2 Nycavri\nBuild Y2 Wil\nBuild Y3 Wil\nCatastrophe Wil Y\n\twil: noice\n\n23) wil: Trade G2 R2 Wil\n\n24) nycavri: Trade Y3 R3 Nycavri\n\n25) wil: Build G2 Wil\n\n26) nycavri: Build R1 Nycavri\n\n27) wil: Sacrifice Y2 B3\nMove G1 B3 Deacon\nMove G2 Wil Deacon\nCatastrophe Deacon G\n\n28) nycavri: Trade R1 Y1 Nycavri\n\n29) wil: Build G1 B3\n\n30) nycavri: Build Y1 Nycavri\n\n31) wil: B Y2 G3\n\n32) nycavri: Discover Y1 Nycavri G1 John\n\n33) wil: M Y2 G3 John\n\n34) nycavri: Build Y2 Nycavri\n\n35) wil: B R1 Wil\n\n36) nycavri: Sacrifice Y1 John\nDiscover Y1 Nycavri Y1 Mercury\n\n37) wil: B G1 Wil\n\twil: Fingers not doing what brain told them\n\n38) nycavri: Build R1 Nycavri\n\n39) wil: S G3 Wil\nB G2 Wil\nB G2 B3\nB G3 Wil\n\n40) nycavri: Move R1 Nycavri Mercury\n\n41) wil: Trade G3 Y3 B3\n\n42) nycavri: Build Y2 Nycavri\n\n43) wil: Sacrifice G3 Wil\nBuild G3 B3\nBuild Y3 B3\nBuild G3 Wil\n\n44) nycavri: Discover Y2 Nycavri B1 Paul\n\n45) wil: Build Y3 John\n\n46) nycavri: Move Y2 Paul G3\n\n47) wil: Sacrifice Y3 B3\nMove G3 B3 John\nMove Y3 John Nycavri\nMove G3 John Nycavri\n\n48) nycavri: Attack Y3 Nycavri\n\n49) wil: Sacrifice R2 Wil\nAttack Y3 Nycavri\nAttack R3 Nycavri\n\n50) nycavri: Build Y3 Nycavri\n\n51) wil: Sacrifice R3 Nycavri\nAttack Y3 Nycavri\nAttack Y2 Nycavri\nPass\n\n\nHomeworlds Online (SDG# 34374)\nVariants: "Hard time"\nStarted: 2018.7.26, Ended: 2018.9.26\nParticipants: Felix (S), mneme (N)\nWinner: Felix\n\n1) mneme: Homeworld R1 B3 G3\n\n2) Felix: Homeworld B2 Y3 G3\n\n3) mneme: Build G1 Mneme\n\tFelix: Good luck and have fun! :)\n\tmneme: You too!\r\n\n\n4) Felix: Build G1 Felix\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Felix: Trade G1 R1 Felix\n\n7) mneme: Build Y1 Mneme\n\n8) Felix: Build R1 Felix\n\n9) mneme: Build Y1 Mneme\n\n10) Felix: B R2 Felix\n\n11) mneme: Discover Y1 Mneme B2 Clio\n\n12) Felix: Discover R1 Felix B1 Out\n\n13) mneme: Build Y2 Mneme\n\n14) Felix: Sacrifice G3 Felix\nBuild R2 Out\nBuild R2 Out\nBuild R3 Felix\n\n15) mneme: Discover Y1 Mneme B2 Ghost\n\n16) Felix: Trade R3 G3 Felix\n\n17) mneme: Discover Y1 Mneme Y2 Hecate\n\n18) Felix: Trade R2 Y2 Out\n\n19) mneme: Build Y3 Mneme\n\n20) Felix: Move R2 Out Clio\n\n21) mneme: Trade Y2 R2 Mneme\n\n22) Felix: Attack Y1 Clio\n\n23) mneme: Sacrifice Y1 Hecate\nMove G3 Mneme Clio\n\n24) Felix: Discover R2 Clio B3 Edgeward\n\n25) mneme: Move R2 Mneme Clio\n\n26) Felix: Build R3 Felix\n\n27) mneme: Attack Y1 Clio\n\n28) Felix: Discover R2 Felix G1 Grinch\n\n29) mneme: Build R3 Clio\n\n30) Felix: Trade R3 Y3 Felix\n\n31) mneme: Move G3 Clio Out\n\n32) Felix: Sacrifice Y2 Out\nMove R1 Out Clio\nMove R2 Grinch Clio\nCatastrophe Clio Red\n\n33) mneme: Trade Y1 R1 Ghost\n\n34) Felix: Build R2 Felix\n\n35) mneme: Build G1 Out\n\n36) Felix: Discover R1 Felix B1 Splint\n\n37) mneme: Trade G1 B1 Out\n\n38) Felix: Sacrifice G3 Felix\nBuild R2 Splint\nBuild R3 Edgeward\nBuild R3 Felix\n\n39) mneme: Build B3 Out\n\n40) Felix: Trade R3 G3 Edgeward\n\n41) mneme: Trade B3 R3 Out\n\n42) Felix: Build R3 Edgeward\n\n43) mneme: Build B3 Out\n\n44) Felix: Trade R2 Y2 Edgeward\n\n45) mneme: Sacrifice G3 Out\nBuild R2 Ghost\nBuild Y1 Mneme\nBuild Y1 Clio\n\n46) Felix: Trade R3 G3 Felix\n\n47) mneme: Trade Y1 G1 Mneme\n\n48) Felix: Build R3 Edgeward\n\n49) mneme: Trade R1 G1 Ghost\n\n50) Felix: Move R3 Edgeward Ghost\n\n51) mneme: Sacrifice Y1 Clio\nDiscover R2 Ghost Y1 Erato\n\n52) Felix: Attack G1 Ghost\n\n53) mneme: Trade B3 G3 Out\n\n54) Felix: Trade R3 B3 Ghost\n\n55) mneme: Build G1 Out\n\n56) Felix: Build G2 Edgeward\n\n57) mneme: Trade G1 Y1 Out\n\n58) Felix: Sacrifice G2 Edgeward\nBuild R1 Felix\nBuild R3 Edgeward\n\n59) mneme: Build Y2 Out\n\n60) Felix: M Y3 Felix Splint\n\n61) mneme: Build Y2 Mneme\n\n62) Felix: Sacrifice Y2 Edgeward\nMove B3 Ghost Erato\nMove R3 Edgeward Clio\n\n63) mneme: Sacrifice Y1 Clio\nDiscover R2 Erato Y2 Euterpe\n\n64) Felix: Sacrifice G1 Ghost\nBuild B2 Erato\n\n65) mneme: Build Y1 Out\n\n66) Felix: Move B3 Erato Euterpe\n\n67) mneme: Sacrifice Y1 Out\nDiscover R2 Euterpe Y1 Thalia\n\n68) Felix: Sacrifice B2 Erato\nTrade R1 Y1 Splint\nTrade R2 B2 Felix\n\n69) mneme: Build G1 Out\n\n70) Felix: Sacrifice Y3 Splint\nMove B3 Euterpe Out\nMove B2 Felix Out\nCatastrophe Out Blue\nMove G3 Edgeward Clio\n\n71) mneme: Trade Y3 G3 Mneme\n\n72) Felix: S Y1 Splint\nD R3 Edgeward Y2 Plank\n\n73) mneme: Build Y1 Mneme\n\n74) Felix: B G1 Felix\n\tFelix: Sorry, forgot to call catastrophe the first time!\n\n75) mneme: Discover Y1 Mneme B2 Euterpe\n\tmneme: seems fair. \n\n76) Felix: T G3 Y3 Felix\n\n77) mneme: Sacrifice G3 Mneme\nBuild Y1 Euterpe\nBuild Y2 Euterpe\nBuild Y3 Mneme\n\n78) Felix: S Y3 Felix\nM R3 Plank Mneme\nM R3 Clio Mneme\nM G3 Clio Mneme\n\n79) mneme: Sacrifice R2 Thalia\nAttack R3 Mneme\nAttack R3 Mneme\n\n80) Felix: Sacrifice R2 Splint\nAttack R3 Mneme\nAttack R3 Mneme\n\n81) mneme: Trade Y2 R2 Mneme\nCatastrophe Mneme R\n\n82) Felix: Sacrifice R1 Felix\nAttack Y3 Mneme\n\tFelix: Fingers crossed this works! It's all or nothing.\n\n83) mneme: Trade Y1 R1 Euterpe\n\tmneme: GL -- don't mess it up!\n\n84) Felix: Trade Y3 R3 Mneme\n\n\tFelix: Unless I'm missing something, that may be it. Very good game!\n\tmneme: Yup! You clearly had it a few turns ago, but there was still place for error until the turn before the catastrophe, so I figured I'd let it go for a bit! GG!\r\n\n\tFelix: It's always a good idea to let it play if there's even a small chance of the opponent making an error. I've definitely flubbed games I thought I had in the bag before! \n\nHomeworlds Online (SDG# 34380)\nVariants: "Hard time"\nStarted: 2018.7.26, Ended: 2018.8.2\nParticipants: tetsuhari (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B2 R3 G3\n\n2) tetsuhari: Homeworld Y3 G2 B3\n\tFelix: Good luck and have fun!\n\n3) Felix: Build G1 Felix\n\n4) tetsuhari: Build B1 Tetsuhari\n\n5) Felix: Trade G1 B1 Felix\n\n6) tetsuhari: Discover B1 Tetsuhari G1 Greenone\n\n7) Felix: Build G1 Felix\n\n8) tetsuhari: Build B1 Greenone\n\n9) Felix: Build B2 Felix\n\n10) tetsuhari: Trade B1 Y1 Greenone\n\n11) Felix: Trade B2 Y2 Felix\n\n12) tetsuhari: Build Y1 Greenone\n\n13) Felix: Discover B1 Felix G1 Conk\n\n14) tetsuhari: Trade Y1 R1 Greenone\n\n15) Felix: Build G2 Felix\n\n16) tetsuhari: Build R1 Greenone\n\n17) Felix: Discover G1 Felix B1 Plink\n\n18) tetsuhari: Build B2 Greenone\n\n19) Felix: Sacrifice G3 Felix\nBuild G2 Plink\nBuild G3 Plink\nBuild G3 Felix\n\n\nHomeworlds Online (SDG# 34378)\nVariants: "Hard time"\nStarted: 2018.7.27, Ended: 2018.9.17\nParticipants: DodoBirb (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\n2) DodoBirb: Homeworld B1 R2 G3\n\n3) Felix: B G1 Felix\n\n4) DodoBirb: Build G1 Dodobirb\n\tFelix: Have fun and good luck!\n\tDodoBirb: You too!\n\n5) Felix: T G1 Y1 Felix\n\n6) DodoBirb: Trade G1 Y1 Dodobirb\n\n7) Felix: Build G1 Felix\n\n8) DodoBirb: Build G1 Dodobirb\n\n9) Felix: Trade G1 B1 Felix\n\n10) DodoBirb: Trade G1 B1 Dodobirb\n\n11) Felix: Build B2 Felix\n\n12) DodoBirb: Build B2 Dodobirb\n\n13) Felix: Discover B1 Felix G2 Rim\n\n14) DodoBirb: Discover B1 Dodobirb G3 Green\n\n15) Felix: Build G1 Felix\n\n16) DodoBirb: Build G1 Dodobirb\n\n17) Felix: Sacrifice G3 Felix\nBuild B2 Rim\nBuild B3 Rim\nBuild B3 Felix\n\n18) DodoBirb: Sacrifice Y1 Dodobirb\nMove B1 Green Rim\nCatastrophe Rim B\n\n19) Felix: Trade B3 G3 Felix\n\n20) DodoBirb: Trade G1 Y1 Dodobirb\n\n21) Felix: Build B1 Felix\n\n22) DodoBirb: Build G1 Dodobirb\n\n23) Felix: Discover B2 Felix G2 Out\n\n24) DodoBirb: Discover G1 Dodobirb B3 Deepblue\n\n25) Felix: Build B1 Out\n\n26) DodoBirb: Build G1 Deepblue\n\n27) Felix: Trade B2 Y2 Out\n\n28) DodoBirb: Build G2 Dodobirb\n\n29) Felix: Sacrifice G3 Felix\nBuild B2 Out\nBuild B2 Out\nBuild B3 Felix\n\n30) DodoBirb: Sacrifice G3 Dodobirb\nBuild G2 Deepblue\nBuild G3 Dodobirb\nBuild G3 Dodobirb\n\n31) Felix: Build G3 Felix\n\n32) DodoBirb: Build Y1 Dodobirb\n\n33) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Out\nBuild Y2 Felix\n\n34) DodoBirb: Discover Y1 Dodobirb Y3 Sun\n\n35) Felix: Build Y3 Felix\n\n36) DodoBirb: Discover G2 Dodobirb Y3 Star\n\n37) Felix: Trade B2 R2 Out\n\n38) DodoBirb: Sacrifice G2 Star\nBuild Y3 Dodobirb\nPass\n\n39) Felix: Discover B3 Felix G2 Grinch\n\n40) DodoBirb: Trade G2 B2 Deepblue\n\n41) Felix: Move B1 Out Deepblue\n\n42) DodoBirb: Sacrifice Y1 Sun\nDiscover B2 Deepblue G2 Farm\n\n43) Felix: Move Y1 Felix Grinch\n\n44) DodoBirb: Sacrifice Y1 Dodobirb\nMove B2 Farm Felix\n\n45) Felix: Move B1 Felix Grinch\n\n46) DodoBirb: Trade B2 G2 Felix\n\n47) Felix: Attack G2 Felix\n\n48) DodoBirb: Discover B2 Dodobirb Y3 Sunset\n\n49) Felix: Sacrifice G1 Felix\nBuild B2 Deepblue\n\n50) DodoBirb: Trade B2 R2 Sunset\n\n51) Felix: Sacrifice R2 Out\nAttack G1 Deepblue\nAttack G1 Deepblue\n\n52) DodoBirb: Move G3 Dodobirb Deepblue\n\n53) Felix: S G3 Felix\nB G1 Deepblue\nB G3 Felix\nB B2 Out\nC Deepblue Green\n\n54) DodoBirb: Build G1 Dodobirb\n\n55) Felix: Trade B3 R3 Grinch\n\n56) DodoBirb: Discover G1 Dodobirb G3 Factory\n\n57) Felix: Move R3 Grinch Factory\n\n58) DodoBirb: Sacrifice G1 Factory\nBuild G1 Dodobirb\n\n59) Felix: Build B3 Grinch\n\n60) DodoBirb: Trade G1 R1 Dodobirb\n\n61) Felix: Build R1 Factory\n\n62) DodoBirb: Move R1 Dodobirb Sunset\n\n63) Felix: Trade B2 R2 Deepblue\n\n64) DodoBirb: Build G1 Dodobirb\n\n65) Felix: S Y2 Out\nM R3 Factory Dodobirb\nM R1 Factory Dodobirb\n\n66) DodoBirb: Attack R3N Dodobirb\n\n67) Felix: S Y3 Felix\nM R2 Deepblue Dodobirb\nC Dodobirb Red\nM B1 Grinch Dodobirb\nM B2 Out Dodobirb\n\n68) DodoBirb: Sacrifice R2 Sunset\nAttack B2N Dodobirb\nAttack B1N Dodobirb\n\n69) Felix: Move B3 Grinch Dodobirb\nCatastrophe Dodobirb Blue\n\n\tDodoBirb: GG. \n\tFelix: Thanks, you too! Good luck with the rest of your games.\n\nHomeworlds Online (SDG# 34375)\nVariants: "Hard time"\nStarted: 2018.7.27, Ended: 2018.9.4\nParticipants: ts52 (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y3 B1 G3\n\tmneme: Good luck & Have fun!\n\tts52: Thanks. You too.\n\n3) mneme: Build G1 Mneme\n\n4) ts52: Build G1 Ts52\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) ts52: Trade G1 B1 Ts52\n\n7) mneme: Build Y1 Mneme\n\n8) ts52: Build B1 Ts52\n\n9) mneme: Discover Y1 Mneme B3 Terpsichore\n\n10) ts52: Discover B1 Ts52 G2 Kermit\n\n11) mneme: Build Y1 Mneme\n\n12) ts52: Build B2 Kermit\n\n13) mneme: Discover Y1 Mneme B3 Erato\n\n14) ts52: Trade B2 Y2 Kermit\n\n15) mneme: Build Y2 Mneme\n\n16) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B2 Kermit\nBuild B3 Ts52\n\n17) mneme: Sacrifice G3 Mneme\nBuild Y2 Terpsichore\nBuild Y3 Mneme\nBuild Y3 Erato\n\n18) ts52: Trade B3 G3 Ts52\n\n19) mneme: Trade Y3 R3 Mneme\n\n20) ts52: Trade B2 R2 Kermit\n\n21) mneme: Move Y3 Erato Kermit\n\n22) ts52: Sacrifice Y2 Kermit\nMove R2 Kermit Erato\nMove B2 Kermit Erato\n\n23) mneme: Move Y3 Kermit Erato\n\n24) ts52: Attack Y1N Erato\n\n25) mneme: Sacrifice R3 Mneme\nAttack R2 Erato\nAttack Y1 Erato\nAttack B2 Erato\n\n26) ts52: Trade B1 R1 Ts52\n\n27) mneme: Trade Y3 G3 Erato\n\n28) ts52: Build G1 Ts52\n\n29) mneme: Sacrifice G3 Erato\nBuild Y2 Terpsichore\nBuild Y3 Erato\nBuild Y3 Mneme\n\n30) ts52: Build R1 Ts52\n\n31) mneme: Trade Y2 G2 Mneme\n\n32) ts52: Move R1 Ts52 Kermit\n\n33) mneme: Build Y2 Mneme\n\n34) ts52: Build R2 Kermit\n\n35) mneme: Move Y3 Erato Kermit\n\n36) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Kermit\nBuild R3 Ts52\nCatastrophe Kermit Red\n\n37) mneme: Move G2 Mneme Erato\n\n38) ts52: Discover R1 Ts52 G2 Oscar\n\n39) mneme: Build R1 Erato\n\n40) ts52: Build R2 Oscar\n\n41) mneme: Sacrifice R1 Erato\nAttack B1 Kermit\n\n42) ts52: Build G1 Ts52\n\n43) mneme: Build B1 Kermit\n\n44) ts52: Discover G1 Ts52 R2 Elmo\n\n45) mneme: Build B2 Kermit\n\n46) ts52: Build G1 Elmo\n\n47) mneme: Discover Y1 Terpsichore R1 Nemesis\n\n48) ts52: Build G3 Ts52\n\n49) mneme: Move B2 Kermit Ts52\n\n50) ts52: Attack B2N Ts52\n\n51) mneme: Sacrifice Y3 Kermit\nMove B1 Kermit Ts52\nMove B1 Kermit Ts52\nCatastrophe Ts52 B\nMove Y1 Mneme Ts52\n\n52) ts52: Attack Y1N Ts52\n\n53) mneme: Sacrifice Y2 Terpsichore\nMove Y2 Mneme Ts52\nMove Y1 Nemesis Ts52\nCatastrophe Ts52 Y\n\tmneme: Good game!\r\n\n\n\tts52: Well played. Thanks for the game!\n\tmneme: You too, on both counts!\n\nHomeworlds Online (SDG# 34385)\nVariants: "Hard time"\nStarted: 2018.7.27, Ended: 2018.8.17\nParticipants: speardane (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) speardane: Homeworld G1 B2 Y3\n\tDraw5PlayAll: Hello, this is the tournament game, good luck, and so yeah.\n\tspeardane: Yep! Good luck. :)\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) speardane: Build Y1 Speardane\n\tDraw5PlayAll: !! The start form does not have your name as one of the options !!\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\tspeardane: I was a late entrant. I'll email Jonathan.\n\tDraw5PlayAll: Fixed\n\n6) speardane: Trade Y3 R3 Speardane\n\n7) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\n8) speardane: Build Y1 Speardane\n\n9) Draw5PlayAll: Build G2 Draw5playall\n\n10) speardane: Discover Y1 Speardane G3 Delos\n\n11) Draw5PlayAll: Discover G2 Draw5playall B2 Notariffs\n\n12) speardane: Build Y1 Speardane\n\n13) Draw5PlayAll: Build G2 Notariffs\n\n14) speardane: Discover Y1 Speardane G3 Lebling\n\n15) Draw5PlayAll: Build G2 Draw5playall\n\n16) speardane: Build R1 Speardane\n\n17) Draw5PlayAll: Build G3 Notariffs\n\n18) speardane: Move R1 Speardane Delos\n\n19) Draw5PlayAll: Trade G2 R2 Notariffs\n\n20) speardane: Build Y2 Speardane\n\n21) Draw5PlayAll: Build G2 Notariffs\n\n22) speardane: Build Y2 Speardane\n\n23) Draw5PlayAll: Trade G3 Y3 Notariffs\n\n24) speardane: Build Y2 Delos\n\n25) Draw5PlayAll: Build Y3 Draw5playall\n\n26) speardane: Discover Y1 Speardane G3 Kotok\n\n27) Draw5PlayAll: Move G2 Notariffs Kotok\n\n28) speardane: Discover Y1 Kotok B2 Minsky\n\n29) Draw5PlayAll: Sacrifice G2 Kotok\nBuild G2 Notariffs\nBuild G3 Notariffs\n\n30) speardane: Move Y1 Delos Minsky\n\n31) Draw5PlayAll: Discover G2 Notariffs B3 Nowalls\n\n32) speardane: Sacrifice Y2 Speardane\nMove Y1 Minsky Draw5playall\nMove Y1 Minsky Draw5playall\nCatastrophe Draw5playall Yellow\n\n33) Draw5PlayAll: Build Y1 Notariffs\n\n34) speardane: Build Y1 Delos\n\n35) Draw5PlayAll: Move Y3 Notariffs Draw5playall\n\n36) speardane: Discover Y1 Delos B2 Kotok\n\n37) Draw5PlayAll: Move G2 Notariffs Lebling\n\n38) speardane: Move Y1 Lebling Kotok\n\n39) Draw5PlayAll: Sacrifice G2 Lebling\nBuild G2 Notariffs\nBuild G3 Nowalls\n\n40) speardane: Trade Y1 R1 Kotok\n\n41) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove G3 Nowalls Speardane\nMove G3 Notariffs Delos\nMove G3 Delos Speardane\n\n42) speardane: Attack G3 Speardane\n\n43) Draw5PlayAll: Sacrifice R2 Notariffs\nAttack G3 Speardane\nAttack R3S Speardane\n\tspeardane: Good game. :)\n\tspeardane: I should note, you still have to actually administer the coup de grace here.\n\n44) speardane: Pass\n\n45) Draw5PlayAll: Attack Y2 Speardane\n\n\nHomeworlds Online (SDG# 34386)\nVariants: "Hard time"\nStarted: 2018.7.28, Ended: 2018.8.21\nParticipants: DodoBirb (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B2 Y3 G3\n\n2) DodoBirb: Homeworld B1 R2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) DodoBirb: Build G1 Dodobirb\n\tdlwillson: Good luck!\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) DodoBirb: Trade G1 B1 Dodobirb\n\n7) dlwillson: B B2 Dlwillson\n\n8) DodoBirb: Build B2 Dodobirb\n\n9) dlwillson: Discover B1 Dlwillson G1 Field\n\n10) DodoBirb: Trade B1 Y1 Dodobirb\n\n11) dlwillson: B G1 Dlwillson\n\n12) DodoBirb: Build G1 Dodobirb\n\n13) dlwillson: S G3 Dlwillson\nB B1 Field\nB B3 Field\nB B3 Dlwillson\n\n14) DodoBirb: Build B3 Dodobirb\n\n15) dlwillson: S B2 Dlwillson\nT B3 G3 Dlwillson\nT B3 Y3 Field\n\n16) DodoBirb: Discover B3 Dodobirb G3 Green\n\n17) dlwillson: M B1 Field Green\n\n18) DodoBirb: Trade B2 R2 Dodobirb\n\n19) dlwillson: T G1 R1 Dlwillson\n\n20) DodoBirb: Trade B3 Y3 Green\n\n21) dlwillson: B B2 Field\n\n22) DodoBirb: Build Y1 Green\n\n23) dlwillson: T B1 Y1 Green\n\n24) DodoBirb: Discover Y3 Green G1 Littlegreen\n\n25) dlwillson: T B2 G2 Field\n\n26) DodoBirb: Build Y2 Littlegreen\n\n27) dlwillson: B Y2 Field\n\n28) DodoBirb: Build Y2 Dodobirb\n\n29) dlwillson: T Y3 R3 Field\n\n30) DodoBirb: Discover G1 Dodobirb Y3 Sun\n\n31) dlwillson: Move G2 Field Sun\n\n32) DodoBirb: Sacrifice G1 Sun\nBuild G1 Dodobirb\n\n33) dlwillson: B G2 Sun\n\n34) DodoBirb: Discover G1 Dodobirb B3 Deeperblue\n\n35) dlwillson: S G2 Sun\nB B1 Field\nB G2 Dlwillson\n\n36) DodoBirb: Build G2 Deeperblue\n\n37) dlwillson: S G3 Dlwillson\nB R1 Dlwillson\nB B2 Field\nB G3 Dlwillson\n\n38) DodoBirb: Trade G2 B2 Deeperblue\n\n39) dlwillson: Sacrifice R1 Dlwillson\nAttack Y1 Green\n\n40) DodoBirb: Discover Y1 Dodobirb B3 Ocean\n\n41) dlwillson: S Y2 Field\nM Y1 Green Littlegreen\nM Y1 Green Littlegreen\nC Littlegreen Y\n\n42) DodoBirb: Sacrifice Y1 Ocean\nDiscover B2 Deeperblue G1 Grass\n\n43) dlwillson: S G3 Dlwillson\nB G2 Sun\nB G3 Sun\nB G3 Dlwillson\n\n44) DodoBirb: Build B3 Grass\n\n45) dlwillson: S B2 Field\nT G3 B3 Sun\nT G2 R2 Sun\n\n46) DodoBirb: Trade Y2 B2 Dodobirb\n\n47) dlwillson: S G3 Dlwillson\nB G2 Sun\nB G3 Sun\nB G3 Dlwillson\n\n48) DodoBirb: Trade B2 Y2 Grass\n\n49) dlwillson: S G3 Dlwillson\nB R1 Field\nB R1 Sun\nB G3 Dlwillson\n\n50) DodoBirb: Build B2 Grass\n\n51) dlwillson: T G3 Y3 Sun\n\n52) DodoBirb: Trade B2 Y2 Dodobirb\n\n53) dlwillson: S Y3 Sun\nM R2 Sun Dodobirb\nM R1 Sun Dodobirb\nM B3 Sun Dodobirb\nC Dodobirb R\n\n54) DodoBirb: Trade B3 R3 Grass\n\n55) dlwillson: S R3 Field\nA G3 Dodobirb\nA Y2 Dodobirb\nPass\n\n\tdlwillson: Thank you! Good game!\n\tDodoBirb: Good Game!\n\nHomeworlds Online (SDG# 34395)\nVariants: "Hard time"\nStarted: 2018.7.30, Ended: 2018.8.28\nParticipants: Babamots (S), random56 (N)\nWinner: Babamots\n\n1) random56: Homeworld R1 B3 G3\n\tBabamots: This is for the Great Tournament. Good luck!\n\n2) Babamots: Homeworld B3 Y2 G3\n\n3) random56: Build G1 Random56\n\n4) Babamots: Build G1 Babamots\n\n5) random56: Trade G1 Y1 Random56\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) random56: Build G1 Random56\n\n8) Babamots: Build G1 Babamots\n\n9) random56: Discover G1 Random56 Y2 Aden\n\n10) Babamots: Trade G1 R1 Babamots\n\n11) random56: Build G1 Aden\n\n12) Babamots: Build R1 Babamots\n\n13) random56: Build G1 Random56\n\n14) Babamots: Build G2 Babamots\n\n15) random56: Sacrifice G3 Random56\nBuild G2 Aden\nBuild G2 Random56\nBuild G3 Random56\n\n16) Babamots: Sacrifice G3 Babamots\nBuild R2 Babamots\nBuild G3 Babamots\nBuild G3 Babamots\n\n17) random56: Discover G1 Aden Y1 Kite\n\n18) Babamots: Discover R1 Babamots B1 Bolarus\n\n19) random56: Trade G3 Y3 Random56\n\n20) Babamots: Sacrifice G2 Babamots\nBuild R2 Bolarus\nBuild R2 Bolarus\n\n21) random56: Trade G1 B1 Random56\n\n22) Babamots: Move G3 Babamots Bolarus\n\n23) random56: Move B1 Random56 Aden\n\n24) Babamots: Move R1 Babamots Kite\n\n25) random56: Sacrifice G1 Kite\nBuild G1 Random56\n\n26) Babamots: Sacrifice G3 Babamots\nBuild R3 Babamots\nBuild R3 Kite\nBuild R3 Kite\n\n27) random56: Trade G2 Y2 Aden\n\n28) Babamots: Trade G3 Y3 Bolarus\n\n29) random56: Build Y3 Aden\n\n30) Babamots: Move Y3 Bolarus Aden\nCatastrophe Aden Y\n\n31) random56: Discover G1 Random56 Y2 Top\n\n32) Babamots: Move R3 Kite Top\n\n33) random56: Discover G1 Top Y3 Dnr\n\n34) Babamots: Discover Y1 Babamots G1 Rubicun\n\tBabamots: Is "dnr" for "Department of Natural Resources" or "Do not Resuscitate"?\n\n35) random56: Build G1 Random56\n\trandom56: lol, I am a nurse so the second \n\n36) Babamots: Build Y2 Rubicun\n\n37) random56: Build G2 Dnr\n\n38) Babamots: Move R3 Kite Top\n\n\nHomeworlds Online (SDG# 34379)\nVariants: "Hard time"\nStarted: 2018.7.30, Ended: 2018.8.22\nParticipants: Felix (S), eliscinsky (N)\nWinner: Felix\n\n1) eliscinsky: Homeworld Y1 B2 G3\n\n2) Felix: Homeworld B1 R3 G3\n\n3) eliscinsky: Build G1 Eliscinsky\n\tFelix: Have fun and good luck!\n\n4) Felix: Build G1 Felix\n\teliscinsky: Thanks! U2\n\n5) eliscinsky: Trade G1 R1 Eliscinsky\n\n6) Felix: Trade G1 Y1 Felix\n\n7) eliscinsky: Build R1 Eliscinsky\n\n8) Felix: Build Y1 Felix\n\n9) eliscinsky: Trade R1 B1 Eliscinsky\n\n10) Felix: Build Y2 Felix\n\n11) eliscinsky: Build B1 Eliscinsky\n\n12) Felix: Trade Y2 B2 Felix\n\n13) eliscinsky: Build G1 Eliscinsky\n\n14) Felix: Build B2 Felix\n\n15) eliscinsky: Trade B1 R1 Eliscinsky\n\n16) Felix: Trade B2 R2 Felix\n\n17) eliscinsky: Discover R1 Eliscinsky Y3 Atos\n\n18) Felix: Build Y2 Felix\n\n19) eliscinsky: Build G1 Eliscinsky\n\n20) Felix: Discover Y1 Felix B2 Out\n\n21) eliscinsky: Build R1 Eliscinsky\n\n22) Felix: Build Y2 Felix\n\n23) eliscinsky: Build R2 Eliscinsky\n\n24) Felix: Discover Y2 Felix G2 Splint\n\n25) eliscinsky: Trade R2 Y2 Eliscinsky\n\n26) Felix: Sacrifice G3 Felix\nBuild Y3 Out\nBuild Y3 Felix\nBuild B1 Felix\n\n27) eliscinsky: Move G1 Eliscinsky Atos\n\n28) Felix: Move B1 Felix Splint\n\n29) eliscinsky: Discover R1 Eliscinsky B3 Portos\n\n30) Felix: Build B3 Splint\n\n31) eliscinsky: Move G1 Eliscinsky Portos\n\n32) Felix: Move B3 Splint Atos\n\n33) eliscinsky: Build R2 Atos\n\n34) Felix: Sacrifice R2 Felix\nAttack R2 Atos\nAttack R1 Atos\n\n35) eliscinsky: Move G1 Atos Eliscinsky\n\n36) Felix: Discover Y3 Out R3 Pump\n\n37) eliscinsky: Move Y2 Eliscinsky Portos\n\n38) Felix: Sacrifice Y2 Felix\nMove Y3 Pump Eliscinsky\nMove B3 Atos Eliscinsky\n\n39) eliscinsky: Sacrifice G3 Eliscinsky\nBuild R2 Portos\nBuild R2 Eliscinsky\nBuild R3 Eliscinsky\n\n\n40) Felix: Trade B3 R3 Eliscinsky\nCatastrophe Eliscinsky Red\n\teliscinsky: This is getting REALLY exciting!\r\nThanks for such a great game.\n\n41) eliscinsky: Move R2 Portos Out\n\tFelix: No problem! It has been a fun one. I think I might be able to close the deal here in a few moves, but honestly I'm a bit nervous about it.\n\n42) Felix: Sacrifice R2 Atos\nAttack B1 Eliscinsky\nAttack G1 Eliscinsky\n\n\tFelix: Good game! It was fun. Good luck with your others!\n\teliscinsky: Thanks, I learned a lot. :)\r\nGood Luck on the Tourney!\n\nHomeworlds Online (SDG# 34376)\nVariants: "Hard time"\nStarted: 2018.7.30, Ended: 2018.8.9\nParticipants: eliscinsky (S), speardane (N)\nWinner: speardane\n\n1) speardane: Homeworld R3 B2 G3\n\n2) eliscinsky: Homeworld B3 Y2 G3\n\n3) speardane: Build G1 Speardane\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) speardane: Trade G3 Y3 Speardane\n\n6) eliscinsky: Trade G1 R1 Eliscinsky\n\n7) speardane: Build G1 Speardane\n\n8) eliscinsky: Build R1 Eliscinsky\n\n9) speardane: Discover G1 Speardane B1 Delos\n\n10) eliscinsky: Move R1 Eliscinsky Delos\n\n11) speardane: Sacrifice G1 Delos\nBuild G1 Speardane\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) speardane: Discover G1 Speardane B1 Lebling\n\n14) eliscinsky: Trade G1 Y1 Eliscinsky\n\n15) speardane: Build G1 Lebling\n\n16) eliscinsky: Sacrifice G3 Eliscinsky\nBuild R1 Delos\nBuild R2 Delos\nBuild R2 Eliscinsky\n\n17) speardane: Trade G1 Y1 Lebling\n\n18) eliscinsky: Trade R1 G1 Eliscinsky\n\n19) speardane: Build G2 Speardane\n\n20) eliscinsky: Build G2 Eliscinsky\n\n21) speardane: Build G2 Speardane\n\n22) eliscinsky: Move G2 Eliscinsky Delos\n\n23) speardane: Discover G1 Speardane B1 Kotok\n\n24) eliscinsky: Trade R1 Y1 Delos\n\n25) speardane: Sacrifice G2 Speardane\nBuild Y2 Speardane\nBuild G2 Kotok\n\n26) eliscinsky: Build G3 Delos\n\n27) speardane: Sacrifice G2 Kotok\nBuild G2 Lebling\nBuild G3 Kotok\n\n28) eliscinsky: Sacrifice G3 Delos\nBuild R1 Delos\nBuild Y2 Delos\nBuild G3 Delos\n\n29) speardane: Sacrifice Y2 Speardane\nDiscover G1 Lebling B2 Minsky\nMove G3 Kotok Eliscinsky\n\n30) eliscinsky: Sacrifice G3 Delos\nBuild R1 Eliscinsky\nBuild R2 Eliscinsky\nBuild G3 Delos\n\n31) speardane: Build G3 Kotok\n\n32) eliscinsky: Sacrifice Y2 Delos\nMove R2 Delos Speardane\nMove R1 Delos Speardane\n\n33) speardane: Trade G3 R3 Kotok\n\n34) eliscinsky: Move R1 Delos Speardane\nCatastrophe Speardane R\n\n35) speardane: Sacrifice R3 Kotok\nAttack R2 Eliscinsky\nAttack R2 Eliscinsky\nAttack G1 Eliscinsky\n\n36) eliscinsky: Sacrifice G3 Delos\nBuild G3 Delos\nBuild Y2 Delos\nBuild R1 Eliscinsky\nCatastrophe Eliscinsky R\n\n37) speardane: Trade G3 R3 Eliscinsky\n\n38) eliscinsky: Sacrifice Y2 Delos\nMove G2 Delos Eliscinsky\nMove G3 Delos Eliscinsky\n\n39) speardane: Sacrifice G2 Lebling\nBuild G2 Eliscinsky\nBuild G3 Kotok\nCatastrophe Eliscinsky Green\n\n40) eliscinsky: Trade Y1 G1 Eliscinsky\n\n41) speardane: Attack G1 Eliscinsky\n\tspeardane: Good game :)\n\n\nHomeworlds Online (SDG# 34391)\nVariants: "Hard time"\nStarted: 2018.7.30, Ended: 2018.8.4\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld B3 Y1 G3\n\n2) wil: H G3 Y1 Y3 *\n\n3) Trydnt: Build G1 Trydnt\n\tDraw5PlayAll: Go whoeverisreadingthis!\n\n4) wil: Build Y1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: D Y1 Wil G2 G2\n\n7) Trydnt: Discover B1 Trydnt G2 Gee2\n\n8) wil: B Y2 Wil\n\n9) Trydnt: Build G1 Trydnt\n\twil: Lol, haven't thought this one thru...we will see how she goes\n\n10) wil: Discover Y2 Wil B2 B2\n\n11) Trydnt: Build B1 Gee2\n\n12) wil: Build Y2 Wil\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) wil: Build Y2 G2\n\n15) Trydnt: Build B2 Trydnt\n\n16) wil: Discover Y2 B2 B3 B3\n\n17) Trydnt: Trade B1 R1 Trydnt\n\n18) wil: Build Y3 G2\n\n19) Trydnt: Move B2 Trydnt G2\n\n20) wil: Sacrifice Y3 G2\nMove Y1 G2 B3\nDiscover Y2 G2 B3 No3s4u\nDiscover Y3 Wil B2 B2\n\twil: I will abandon you on the island!\n\n21) Trydnt: Build B1 G2\n\n22) wil: Build Y3 Wil\n\n23) Trydnt: Build B2 Gee2\n\n24) wil: T Y3 R3 B2\n\n25) Trydnt: Build G1 Trydnt\n\n26) wil: Move Y3 Wil B2\n\n27) Trydnt: Trade B1 G1 Gee2\n\n28) wil: Trade Y3 G3 B2\n\n29) Trydnt: Build G1 Gee2\n\n30) wil: S G3 B2\nB Y3 Wil\nB Y3 B3\nB Y3 No3s4u\n\n31) Trydnt: Trade B2 G2 G2\n\n32) wil: Trade Y3 G3 No3s4u\n\n33) Trydnt: Build B1 G2\n\n34) wil: Build Y3 No3s4u\n\n35) Trydnt: Build B2 G2\n\n36) wil: Trade Y3 R3 No3s4u\n\n37) Trydnt: Trade G3 Y3 Trydnt\n\twil: dem virtual handcuffs doe\n\n38) wil: S Y3 B3\nM G3 No3s4u B2\nM R3 B2 Trydnt\nM G3 B2 Trydnt\n\n39) Trydnt: Sacrifice G2 G2\nBuild G2 Trydnt\nBuild R1 Trydnt\n\twil: just a couple moves to go...what a long slog\n\n40) wil: S R3 No3s4u\nA R1 Trydnt\nA R1 Trydnt\nA Y3 Trydnt\n\n41) Trydnt: Trade G1 R1 Trydnt\nCatastrophe Trydnt R\n\twil: A day late and pound short on the switch...appears I caught you asleep at the wheel this time.\n\twil: A day late and pound short on the switch...appears I caught you asleep at the wheel this time.\n\twil: Of course I've seen you pull rabbits outta the hat before...\n\n42) wil: Trade G3 R3 Trydnt\n\n43) Trydnt: Build G1 Gee2\nCatastrophe Gee2 G\n\n44) wil: A G2 Trydnt\n\n\twil: Yes, it is often a trick to get it to allow self destruction.\n\nHomeworlds Online (SDG# 34415)\nVariants: "Hard time"\nStarted: 2018.8.4, Ended: 2018.8.19\nParticipants: Trydnt (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: For the record, this is for the tournament.\r\n\r\nGood luck!\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) Babamots: Build G1 Babamots\n\n4) Trydnt: Build G1 Trydnt\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) Babamots: Build Y2 Babamots\n\n8) Trydnt: Build Y2 Trydnt\n\n9) Babamots: Build Y2 Babamots\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) Babamots: Trade Y1 R1 Babamots\n\n12) Trydnt: Build Y1 G3\n\n13) Babamots: Discover Y2 Babamots G2 Risa\n\n14) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 G3 G2 G2\nDiscover Y1 G3 B2 B2\n\n15) Babamots: Build R1 Babamots\n\n16) Trydnt: Build G1 Trydnt\n\n17) Babamots: Move R1 Babamots G2\n\n18) Trydnt: Discover Y1 G2 G3 G3\n\n19) Babamots: Build R2 Babamots\n\n20) Trydnt: Trade G3 R3 Trydnt\n\n21) Babamots: Move R1 Babamots B2\n\n22) Trydnt: Discover Y1 B2 B1 B1\n\n23) Babamots: Sacrifice G3 Babamots\nBuild Y2 Risa\nBuild Y3 Babamots\nBuild Y3 Babamots\n\n24) Trydnt: Build Y3 G3\n\n25) Babamots: Sacrifice Y2 Babamots\nMove Y2 Risa G3\nMove Y2 Risa G3\nCatastrophe G3 Y\n\n26) Trydnt: Build R2 Trydnt\n\n27) Babamots: Trade Y3 G3 Babamots\n\n28) Trydnt: Trade R3 G3 Trydnt\n\n29) Babamots: Move Y3 Babamots G2\n\n30) Trydnt: Discover G1 Trydnt Y3 Y3\n\n31) Babamots: Discover Y3 G2 R3 Romulus\n\n32) Trydnt: Build G1 Trydnt\n\tBabamots: I should have written down what I was planning to do next. I think I had a good idea.\n\n33) Babamots: Sacrifice G3 Babamots\nBuild R2 G2\nBuild R3 B2\nBuild R3 Babamots\n\n34) Trydnt: Sacrifice G1 Trydnt\nBuild Y1 B1\n\n35) Babamots: Trade R1 G1 B2\n\n36) Trydnt: Trade Y1 R1 B1\n\n37) Babamots: Build G1 B2\n\n38) Trydnt: Build G2 Trydnt\n\n39) Babamots: Trade G1 Y1 B2\n\n40) Trydnt: Sacrifice G2 Trydnt\nBuild G1 Trydnt\nBuild G2 Y3\n\n41) Babamots: Trade R2 G2 Babamots\n\n42) Trydnt: Sacrifice G2 Y3\nBuild R2 Trydnt\nBuild Y2 B1\n\n43) Babamots: Build Y2 B2\n\n44) Trydnt: Discover G1 Trydnt Y3 Why3\n\n45) Babamots: Move R3 B2 B1\n\n46) Trydnt: Sacrifice Y2 B1\nDiscover Y1 B1 G2 Gee2\nDiscover R1 B1 Y2 Y2\n\n47) Babamots: Build G3 B2\n\n48) Trydnt: Build G3 Y3\n\n49) Babamots: Sacrifice Y1 B2\nMove R2 G2 Why3\n\n50) Trydnt: Move G1 Why3 B2\n\n51) Babamots: Sacrifice G3 B2\nBuild Y1 Romulus\nBuild Y2 B2\nBuild G3 Babamots\n\n52) Trydnt: Sacrifice G1 B2\nBuild G1 Trydnt\n\n53) Babamots: Trade G2 B2 Babamots\n\n54) Trydnt: Move G3 Y3 B2\n\n55) Babamots: Sacrifice Y2 B2\nMove G1 B2 B1\nMove Y2 B2 Y3\n\n56) Trydnt: Build G2 B2\n\n57) Babamots: Trade B2 Y2 Babamots\n\n58) Trydnt: Sacrifice G3 B2\nBuild G3 Y3\nPass\nPass\n\n59) Babamots: Sacrifice Y2 Y3\nMove R3 B1 Gee2\nMove G3 Babamots B2\n\n60) Trydnt: Discover Y1 Gee2 B3 B3\n\n61) Babamots: Sacrifice G1 B1\nBuild Y2 Babamots\n\n62) Trydnt: Build G1 B2\n\n63) Babamots: Sacrifice Y2 Babamots\nMove Y3 Romulus B2\nMove G3 B2 B3\n\n64) Trydnt: Sacrifice Y1 B3\nDiscover R2 Trydnt B3 Bee3\n\n65) Babamots: Sacrifice R2 Why3\nAttack G1 B2\nAttack G2 B2\n\n66) Trydnt: Trade R2 Y2 Bee3\n\n67) Babamots: Sacrifice G2 B2\nBuild Y1 B2\nBuild Y3 Romulus\n\n68) Trydnt: Discover G1 Y3 B2 Be2\n\n69) Babamots: Build G2 B3\n\n70) Trydnt: Sacrifice G3 Y3\nBuild G3 Be2\nBuild Y3 Bee3\nBuild R2 Trydnt\n\n71) Babamots: Sacrifice Y3 B2\nMove G2 B3 Trydnt\nMove G3 B3 Trydnt\nMove Y3 Romulus Trydnt\nCatastrophe Trydnt G\n\n72) Trydnt: Sacrifice Y3 Bee3\nMove Y2 Bee3 Trydnt\nMove R1 Y2 Romulus\nMove R1 Romulus Trydnt\n\n73) Babamots: Sacrifice R3 Gee2\nAttack R2 Trydnt\nAttack R2 Trydnt\nAttack Y2 Trydnt\n\n74) Trydnt: Sacrifice G1 Be2\nBuild R2 Trydnt\n\n75) Babamots: Sacrifice R2 Trydnt\nAttack R1 Trydnt\nAttack R2 Trydnt\n\n\tBabamots: GG :-)\n\tTrydnt: that all went so badly not a good start to the tournament... for me. congrats you played superbly :)\n\tBabamots: Sorry it's not a great start to the tournament for you, but I thought you played very well. I look forward to our next game!\n\tTrydnt: as do I :)\n\nHomeworlds Online (SDG# 34420)\nVariants: "Hard time"\nStarted: 2018.8.5, Ended: 2018.8.5\nParticipants: ajo (S), speardane (N)\nWinner: ajo\n\n1) speardane: Homeworld Y3 G2 B3\n\n2) ajo: Homeworld B3 R2 G3\n\n3) speardane: Build B1 Speardane\n\n4) ajo: Build G1 Ajo\n\n5) speardane: Trade B3 R3 Speardane\n\n6) ajo: Build G1 Ajo\n\n7) speardane: Build B1 Speardane\n\n8) ajo: Trade G1 Y1 Ajo\n\n9) speardane: Discover B1 Speardane G1 Delos\n\n10) ajo: Discover G1 Ajo Y1 Alpha\n\n11) speardane: Build B1 Delos\n\n12) ajo: Build G1 Alpha\n\n13) speardane: Trade B1 Y1 Delos\n\n14) ajo: Build G2 Ajo\n\n15) speardane: Build B1 Delos\n\n16) ajo: Build G2 Ajo\n\n17) speardane: Build B2 Delos\n\n18) ajo: Trade G2 R2 Ajo\n\n19) speardane: Trade B2 G2 Delos\n\n20) ajo: Move R2 Ajo Delos\n\n21) speardane: Build G3 Delos\n\n22) ajo: Attack G2 Delos\n\n23) speardane: Trade B1 R1 Delos\n\n24) ajo: Build G3 Delos\nCatastrophe Delos Green\n\n25) speardane: Build B1 Speardane\n\n26) ajo: Discover G2 Ajo B1 Beta\n\n27) speardane: Discover B1 Speardane R1 Delos\n\n28) ajo: Build G1 Ajo\n\n29) speardane: Build R1 Speardane\n\n30) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Beta\nBuild G3 Ajo\n\n31) speardane: Move R1 Speardane Delos\n\n32) ajo: Trade G3 Y3 Beta\n\n33) speardane: Trade R1 Y1 Delos\n\n34) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Ajo\nBuild G3 Beta\n\n35) speardane: Build R1 Speardane\n\n36) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild Y2 Beta\nBuild Y2 Beta\n\n37) speardane: Trade R3 Y3 Speardane\n\n38) ajo: Sacrifice Y3 Beta\nMove Y2 Beta Speardane\nMove Y2 Beta Speardane\nMove G2 Alpha Speardane\nCatastrophe Speardane Yellow\n\n39) speardane: Trade Y1 R1 Delos\n\n40) ajo: Sacrifice G3 Ajo\nBuild G3 Speardane\nBuild Y1 Ajo\nPass\n\n41) speardane: Pass\n\n42) ajo: Sacrifice G1 Ajo\nBuild G1 Speardane\nCatastrophe Speardane Green\n\tDraw5PlayAll: I just realized you played against your own creation...\r\n\r\nIs the speardane account going to be ever used again?\n\n\nHomeworlds Online (SDG# 34310)\nStarted: 2018.8.6, Ended: 2018.8.10\nParticipants: Ryzorrin (S), MobyNostromo (N)\nWinner: Ryzorrin\n\n\tRyzorrin: homeworld b1 g2 r3\n\tRyzorrin: Oh this is chat. Okay, hi.\n\nHomeworlds Online (SDG# 34430)\nVariants: "Hard time"\nStarted: 2018.8.6, Ended: 2018.8.11\nParticipants: wil (S), dlwillson (N)\nWinner: wil\n\n1) dlwillson: Homeworld Y3 B2 G3\n\n2) wil: H Y2 B1 G3\n\tdlwillson: Hi Wil!\n\n3) dlwillson: B G1 Dlwillson\n\twil: I was hoping to be able to get a few games under my belt and confidence up prior to playing you!\n\n4) wil: B G1 Wil\n\tdlwillson: Ha! Good thing I got to you before you're properly warmed up. I'll have a chance here!\n\n5) dlwillson: T G1 R1 Dlwillson\n\twil: I'll say good luck, all the while knowing I am the one that need it.\n\n6) wil: T G1 B1 Wil\n\tdlwillson: I dunno. I'm playing you, Felix, and mneme at the same time. I think I'll need a lot of luck.\r\n\r\nHave fun!\n\n7) dlwillson: B R1 Dlwillson\n\twil: Concentrate on those games!\n\n8) wil: B B1 Wil\n\n9) dlwillson: B R1 Dlwillson\n\n10) wil: D B1 Wil Y3 Y3\n\n11) dlwillson: Discover R1 Dlwillson Y1 Sol\n\n12) wil: B G1 Wil\n\tdlwillson: I'm pretty sure you got the jump on me here.\n\twil: I am trying.\n\n13) dlwillson: Build G1 Dlwillson\n\n14) wil: S G3 Wil\nB B2 Wil\nB B2 Y3\nB B3 Y3\n\n15) dlwillson: Discover R1 Dlwillson Y1 Alsosol\n\n16) wil: T B3 R3 Y3\n\n17) dlwillson: Sacrifice G3 Dlwillson\nBuild R2 Sol\nBuild R2 Alsosol\nBuild R2 Dlwillson\n\n18) wil: Discover B2 Wil R3 R3\n\n19) dlwillson: B R3 Dlwillson\n\n20) wil: B B3 Wil\n\n21) dlwillson: T R3 B3 Dlwillson\n\n22) wil: T B3 Y3 Wil\n\n23) dlwillson: D B3 Dlwillson Y1 Yasol\n\n24) wil: B B3 Wil\n\tdlwillson: What a strange game! I'm not sure why I'm still alive. Am I dead? I don't think so... <pinch> Ow!\n\n25) dlwillson: B R3 Dlwillson\n\n26) wil: S G1 Wil\nB B3 Y3\n\n27) dlwillson: T R3 G3 Dlwillson\n\n28) wil: S B2 Y3\nT B3 G3 Y3\nT B3 G3 Wil\n\n29) dlwillson: M B3 Yasol R3\n\n30) wil: S G3 Y3\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n31) dlwillson: Attack B2 R3\n\n32) wil: S B2 Y3\nT B3 G3 Y3\nT B3 R3 Wil\n\n33) dlwillson: S B2 R3\nT R2 Y2 Sol\nT R2 Y2 Alsosol\n\n34) wil: B R2 Wil\n\n35) dlwillson: Move R1 Alsosol R3\n\n36) wil: M R3 Wil Y3\n\n37) dlwillson: T R1 G1 R3\n\n38) wil: Move R3 Y3 Sol\n\tdlwillson: Do you do those system names specifically to make it hard for your opponent enter their orders?\n\twil: I always think it makes it easier...easier to remember which stars I am moving from... It only makes it hard when folks use my system with me.\n\n39) dlwillson: S G3 Dlwillson\nB R1 Sol\nB R2 Sol\nB G1 Dlwillson\nC Sol R\n\n40) wil: Sacrifice Y3 Wil\nMove R3 Y3 Sol\nMove G3 Y3 Sol\nMove G3 Sol Dlwillson\n\n\twil: heavy duty reboot\n\twil: thought it was gonna be the end.\n\tdlwillson: Darn! That's the end!\n\twil: Crap. You are right, i thought your b3 and g1 were 1 away...\n\twil: I got lucky and capitslized.early on..\n\twil: I guess i gotta get out there snd challenge now.\n\tdlwillson: I lost you when I went for the long stack of reds and you went for the short stack of blues. You got into the bigs before me and played perfectly. I thought I had enough material at the end to hold you off, but I was mistaken. A horseshoe nail more, and I could've stopped that attack!\n\twil: Yeah, the bank accountant gave me a stock tip and said the brokers were at a discount.\n\twil: Nobody can blame you for investing in defense, historically it has been known to payoff...but alas we were in a time of peace...\n\nHomeworlds Online (SDG# 34431)\nVariants: "Hard time"\nStarted: 2018.8.7, Ended: 2018.8.21\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) Felix: Homeworld Y2 B3 G3\n\tdlwillson: Hi Felix! How've you been?\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Hey, doing well! Busy though. Probably too busy for this tournament! We had our second kid and bought a new house, so lots to do! How are you, man?\n\n4) Felix: Build G1 Felix\n\tdlwillson: Congrats on the new kid!\r\n\r\nI'm doing well. Been interviewing for a new job, and learning the new crop of technology. Mostly, Kubernetes, Prometheus, OpenStack, and GitLab.\n\tFelix: Thanks!\r\n\r\nWow, sounds like a lot to learn! And here I am, still doing most of my work in PHP :)\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Felix: Trade G1 R1 Felix\n\tdlwillson: Do you or anyone you know need DevOps training?\r\n\r\nMy Software Freedom School project is doing a cap at the end of the month and we're still 4 campers short of a cabin-full\r\nhttp://sofree.us/devopscamp.html\n\tFelix: Looks awesome! I know I'd really enjoy it, but I don't know if my boss or his company has the time or money to invest in it at the moment. Is this something you do yearly, or quarterly or anything? I'll show it to him and see what he thinks! \n\n7) dlwillson: Build G1 Dlwillson\n\n8) Felix: Build G1 Felix\n\tdlwillson: We run a camp annually, but this is our first DevOps Camp. Not sure what we'll run next year. We have scholarship funds available for woman technologists. Some of the board-members did a fund-raiser for a couple of their friends, but then the friends backed out. So weird. But, it's a great opportunity for some young gal who wants to learn this stuph.\n\n9) dlwillson: T G1 B1 Dlwillson\n\tFelix: At the moment, I don't know any women who are remotely interested in this stuph, haha. Well good luck with the camp! If nothing else I'd just love the chance to do some camping in Colorado! Still haven't been.\n\n10) Felix: Trade G1 B1 Felix\n\n11) dlwillson: B B2 Dlwillson\n\n12) Felix: Build B2 Felix\n\n13) dlwillson: D B1 Dlwillson G2 Field\n\tFelix: I hate to keep mirroring you, but you're making the best available moves!\n\n14) Felix: Trade B1 Y1 Felix\n\tdlwillson: I think the first few turns are somewhat deterministic.\n\n15) dlwillson: Trade B2 Y2 Dlwillson\n\n16) Felix: Build Y1 Felix\n\tdlwillson: Hey! Now, I'm mirroring you! You have the lead, sir. Where shall we go next?\n\n17) dlwillson: Move Y2 Dlwillson Field\n\tFelix: Let's build a yellow!\n\n18) Felix: Discover Y1 Felix G1 Grinch\n\tdlwillson: I guess the mirroring phase is over. I don't want any more yellow, right now.\n\n19) dlwillson: B G1 Dlwillson\n\n20) Felix: M B2 Felix Grinch\n\n21) dlwillson: B B1 Field\n\n22) Felix: Build B2 Grinch\n\n23) dlwillson: T B1 G1 Field\n\tFelix: Back to monkey see, monkey do!\n\n24) Felix: Build G2 Felix\n\tdlwillson: Um... Simon says you have to copy that.\n\tFelix: Hmm... "t b1 g1 field" isn't working for some reason.\n\n25) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Dlwillson\nBuild G3 Dlwillson\nBuild G3 Field\n\n26) Felix: Build Y1 Grinch\n\n27) dlwillson: T G2 Y2 Dlwillson\n\n28) Felix: Move Y1 Grinch Field\n\n29) dlwillson: Trade G3 R3 Field\n\n30) Felix: Build Y3 Grinch\n\n31) dlwillson: M G1 Field Grinch\n\n32) Felix: Sacrifice Y3 Grinch\nMove Y1 Field Dlwillson\nMove Y1 Grinch Field\nMove Y1 Field Dlwillson\nCatastrophe Dlwillson Yellow\n\n33) dlwillson: S Y2 Field\nM G1 Dlwillson Felix\nM G1 Grinch Felix\nC Felix G\n\tdlwillson: Oh, right! You still had *that* one! Aargh! :-)\n\n34) Felix: Sacrifice B2 Grinch\nTrade R1 B1 Felix\nTrade Y1 G1 Felix\n\tdlwillson: I'm not dead. I'm feeling better.\n\tFelix: Haha, dang. There was something in my gut telling me not to make that move. Now I know why!\n\tdlwillson: I think I see a better move I could have made! I'm not going to take back, because what I did offs pretty good, but I think I should have pushed you my G3 for free, instead.\n\tdlwillson: s/offs/is/\n\n35) dlwillson: B B2 Field\n\n36) Felix: Build B2 Grinch\n\n37) dlwillson: Trade B2 Y2 Field\n\n38) Felix: Trade B1 R1 Felix\n\tdlwillson: I'm taking your name in vain, over here: http://superdupergames.org/main.html?page=play_homeworlds&num=34464\n\n39) dlwillson: Sacrifice Y2 Field\nMove G3 Dlwillson Felix\nMove R3 Field Grinch\n\tFelix: Ha, so you are! I wish tagging worked here, as well. I'd love to see an upgraded online Homeworlds platform soon!\n\n40) Felix: Trade R1 G1 Felix\n\n41) dlwillson: B G2 Felix\nC Felix G\n\tFelix: Well played and good game!\n\tdlwillson: TY GG\r\nGood luck with the rest of your tournament games!\r\n\r\nWant to play an unrated game? I want to try a yellow and red home system.\n\tFelix: Sure! I'm always up for a game against you\n\tDraw5PlayAll: Say, does anyone know what quuxplusone's username here is? I thought he said he plays here but I have never seen the name quuxplusone on SDG...\n\tdlwillson: I don't know, but you could ask him yourself on this BGG thread:\r\nhttps://boardgamegeek.com/thread/2014184/great-homeworlds-tournament-2018\n\tBabamots: quuxplusone = ajo\n\n\nHomeworlds Online (SDG# 34372)\nVariants: "Hard time"\nStarted: 2018.8.7, Ended: 2018.9.4\nParticipants: Laurie_Menke (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\tLaurie_Menke: Enjoy! :)\n\n2) Laurie_Menke: Homeworld G3 B1 Y3\n\n3) Draw5PlayAll: Homeworld B1 G3 B3 *\n\n4) Laurie_Menke: Build Y1 Laurie_menke\n\n5) Draw5PlayAll: Build B1 Draw5playall\n\tLaurie_Menke: Just a reminder to fill out the tournament form...\n\n6) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n7) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n8) Laurie_Menke: Build Y1 Laurie_menke\n\n9) Draw5PlayAll: Build B2 Draw5playall\n\n10) Laurie_Menke: Discover Y1 Laurie_menke G2 Green\n\n11) Draw5PlayAll: Discover B2 Draw5playall G2 Denial\n\n12) Laurie_Menke: Build Y1 Laurie_menke\n\n13) Draw5PlayAll: Build B2 Draw5playall\n\n14) Laurie_Menke: Build R1 Laurie_menke\n\n15) Draw5PlayAll: Trade B2 R2 Draw5playall\n\n16) Laurie_Menke: Build Y1 Green\n\n17) Draw5PlayAll: Build B2 Denial\n\n18) Laurie_Menke: Build Y2 Green\n\n19) Draw5PlayAll: Build B2 Draw5playall\n\n20) Laurie_Menke: Build Y2 Laurie_menke\n\n21) Draw5PlayAll: Build B3 Denial\n\n22) Laurie_Menke: Sacrifice Y2 Green\nMove Y1 Green Draw5playall\nMove Y1 Green Draw5playall\n\n23) Draw5PlayAll: Trade B3 Y3 Denial\n\n24) Laurie_Menke: Trade Y1 G1 Laurie_menke\n\n25) Draw5PlayAll: Build B3 Denial\n\n26) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n27) Draw5PlayAll: Trade B3 R3 Denial\n\tDraw5PlayAll: If the only purpose of that was to sac it to blow my yellow, you could have just built through my green star directly.\n\n28) Laurie_Menke: Build G1 Yellow\n\tLaurie_Menke: Yes, but then you could have moved in and catastrophe'd my yellow.\n\n29) Draw5PlayAll: Sacrifice R2 Draw5playall\nAttack Y1 Draw5playall\nAttack Y1 Draw5playall\n\tLaurie_Menke: Hi D5PA! Just wanted to let you know that I will be off grid starting today (8/24) until Monday (9/4). We have 4 games going, and all of them are hard time high stakes games. I'm going to try to find enough internet access to play once or twice during that time from my phone, but if I don't, I will have to forfeit those games. I don't like it, but can live with it if it happens. ;) Sorry for the timing problems... I thought we'd be done by now...\n\n\tLaurie_Menke: Darn it! I missed it by 3 minutes. Argh! :(\n\tLaurie_Menke: Well, congratulations, D5PA. See you in our other games.\n\tBabamots: Sorry about the timeout! I wish I had thought to suggest pausing the timer when I heard about cutting it close with the trip.\n\tLaurie_Menke: No worries, Babamots. I should have remembered that trick myself! (Though I'm not sure if D5PA would have agreed anyway...) There will be other games. :)\n\nHomeworlds Online (SDG# 34432)\nVariants: "Hard time"\nStarted: 2018.8.7, Ended: 2018.8.14\nParticipants: dlwillson (S), Laurie_Menke (N)\nWinner: dlwillson\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi dlwillson! Have fun! :)\n\n2) dlwillson: H B2 Y3 G3\n\tdlwillson: You too! Good luck and have fun!\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) dlwillson: T G1 R1 Dlwillson\n\tLaurie_Menke: Just a reminder to fill out the tournament form...\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) dlwillson: B G1 Dlwillson\n\n9) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n10) dlwillson: T G1 B1 Dlwillson\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) dlwillson: Build B1 Dlwillson\n\n13) Laurie_Menke: Discover G1 Yellow Y1 Closer\n\n14) dlwillson: D B1 Dlwillson Y1 Sol\n\n15) Laurie_Menke: Build G1 Closer\n\n16) dlwillson: S G3 Dlwillson\nB B2 Sol\nB B2 Sol\nB B3 Dlwillson\n\n17) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Closer\nBuild G2 Laurie_menke\nBuild G2 Laurie_menke\n\n18) dlwillson: T B3 G3 Dlwillson\n\n19) Laurie_Menke: Discover G2 Closer G3 Farther\n\n20) dlwillson: D B2 Sol R2 Mars\n\n21) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild G2 Farther\nBuild G3 Laurie_menke\n\n22) dlwillson: S G3 Dlwillson\nB B3 Dlwillson\nB B3 Sol\nB B3 Mars\n\n23) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n24) dlwillson: T B3 G3 Sol\n\n25) Laurie_Menke: Sacrifice Y1 Laurie_menke\nDiscover G2 Farther Y2 Escape\n\n26) dlwillson: Build G1 Sol\n\n27) Laurie_Menke: Sacrifice G2 Farther\nBuild G2 Escape\nBuild G3 Laurie_menke\n\n28) dlwillson: T B3 Y3 Dlwillson\n\n29) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n30) dlwillson: Sacrifice G3 Sol\nBuild B3 Mars\nBuild B3 Dlwillson\nBuild G2 Sol\n\n31) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild Y1 Laurie_menke\nBuild G3 Closer\n\n32) dlwillson: Sacrifice Y3 Dlwillson\nMove B3 Mars Laurie_menke\nMove B3 Mars Laurie_menke\nPass\n\n33) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove G1 Closer Dlwillson\nMove G1 Closer Dlwillson\n\n34) dlwillson: S R1 Dlwillson\nA R1 Laurie_menke\n\n35) Laurie_Menke: Move G3 Closer Mars\n\tLaurie_Menke: LOL... welcome to our humble home, oh peaceful ones! ;)\n\n36) dlwillson: Sacrifice B2 Mars\nTrade B2 R2 Sol\nTrade B3 R3 Laurie_menke\n\n37) Laurie_Menke: Sacrifice G3 Mars\nBuild G3 Dlwillson\nBuild Y1 Laurie_menke\nPass\n\tdlwillson: Thank you! I'd offer to peacefully trade, but this isn't Agricola and our heads are very pointy.\n\tLaurie_Menke: :D\n\n38) dlwillson: Sacrifice R3 Laurie_menke\nAttack G3 Laurie_menke\nAttack G3 Laurie_menke\nAttack G3 Dlwillson\n\n39) Laurie_Menke: Move G2 Escape Laurie_menke\n\n40) dlwillson: Sacrifice R2 Sol\nAttack G2 Laurie_menke\nAttack Y1 Laurie_menke\n\tLaurie_Menke: Well, this game is nothing if not exciting!\n\n41) Laurie_Menke: Sacrifice G2 Escape\nBuild Y2 Laurie_menke\nBuild Y2 Laurie_menke\n\tLaurie_Menke: Argh! I did not see that one coming. :(\n\tLaurie_Menke: Oh... wait... hmmm.... I'm just going to pause for a moment to make sure you did what you intended to do...\n\tdlwillson: That was a very, very good move. I considered ignoring it, letting you cat those blues, grabbing one of the yellows. Then, I realized that those blues are all I have at home, and what you were about to do to me. Your heads are very pointy, too!\n\tLaurie_Menke: LOL!\n\n42) dlwillson: Sacrifice G2 Laurie_menke\nBuild B2 Laurie_menke\nBuild B2 Laurie_menke\nCatastrophe Laurie_menke Y\nCatastrophe Laurie_menke B\n\tLaurie_Menke: I don't think it really matters in the end... I think you've got me...\n\tdlwillson: Yes, thanks. That was a typo. I meant to grab the big, of course.\n\n\tdlwillson: Hmm... I could've done that with slightly more bang, but that was pretty good. Thank you for the excellent fun game, and in particular, thank you for not taking advantage of my typo at 2018-08-14 16:18:26!\n\tLaurie_Menke: I lovely bang! :)\n\tLaurie_Menke: *A* lovely bang!\n\tdlwillson: LOL :-)\n\nHomeworlds Online (SDG# 34339)\nVariants: "Unrated, Hard time"\nStarted: 2018.8.8, Ended: 2018.8.17\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B2 Y1 G3\n\twil: Or this one?\n\twil: H y2 b1 g3\n\n2) Trydnt: Homeworld R3 B2 G3\n\tTrydnt: nope just for fun\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: B B1 Wil\n\n8) Trydnt: Build Y1 Trydnt\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Trydnt: Build Y2 Trydnt\n\n11) wil: S G3 Wil\nB B1 Y3\nB B2 Y3\nB B3 Wil\n\n12) Trydnt: Discover Y1 Trydnt G1 G1\n\n13) wil: T B3 Y3 Wil\n\n14) Trydnt: Build Y2 G1\n\n15) wil: D B1 Y3 G1 Gwon\n\n16) Trydnt: Build Y2 Trydnt\n\n17) wil: B B3 Gwon\n\n18) Trydnt: Build Y3 G1\n\n19) wil: T B3 G3 Gwon\n\n20) Trydnt: Trade Y2 R2 Trydnt\n\n21) wil: T B1 R1 Y3\n\n22) Trydnt: Build Y2 Trydnt\n\n23) wil: S G3 Gwon\nB B1 Wil\nB B3 Gwon\nB B3 Y3\n\n24) Trydnt: Discover Y2 G1 B3 B3\n\n25) wil: T B3 R3 Gwon\n\n26) Trydnt: Discover Y3 G1 B3 Bee3\n\n27) wil: T B3 G3 Y3\n\n28) Trydnt: Discover Y1 G1 B3 B33\n\n29) wil: B G1 Y3\n\n30) Trydnt: Trade Y1 G1 B33\n\n31) wil: Discover G1 Y3 Y1 Y1\n\n32) Trydnt: Build G2 B33\n\n33) wil: Build G2 Y3\n\n34) Trydnt: Trade G1 R1 B33\n\n35) wil: Move G3 Y3 Wil\n\n36) Trydnt: Trade Y3 G3 Bee3\n\n37) wil: Discover G3 Wil Y3 Whynot3\n\n38) Trydnt: Discover Y1 Trydnt R1 R1\n\twil: timely\n\n39) wil: Build R2 Gwon\n\n40) Trydnt: Discover R2 Trydnt G1 G1\n\n41) wil: Sacrifice G1 Y1\nBuild R2 Y3\n\n42) Trydnt: Build R3 B33\n\n43) wil: Trade R1 Y1 Y3\n\n44) Trydnt: Discover Y2 Trydnt R1 Are1\n\n45) wil: Move Y1 Y3 Gwon\n\n46) Trydnt: Move Y1 R1 B33\n\n47) wil: Discover R2 Y3 G1 Gee1\n\n48) Trydnt: Sacrifice Y2 Are1\nMove Y1 B33 Wil\nMove Y2 B3 Wil\nCatastrophe Wil Y\n\n49) wil: Move R3 Gwon Wil\n\n50) Trydnt: Trade R3 B3 B33\n\n51) wil: Build G2 Whynot3\n\twil: well that was devastating....but it has been there for ever wondering when you were gonna pull the trigger!\n\tTrydnt: it only became possible on my last move\n\n52) Trydnt: Sacrifice Y2 Trydnt\nMove B3 B33 Wil\nCatastrophe Wil B\nPass\n\n\twil: lol, i missed you gettng the b3 completely\n\tTrydnt: haha I think the only way to stop it was to sac a y and move the blue out (and that was your only yellow I believe) or to sac a b1 in your hw and trade the other b1 for something else\n\twil: s b1 and pass\n\nHomeworlds Online (SDG# 34341)\nVariants: "Unrated, Hard time"\nStarted: 2018.8.8, Ended: 2018.8.12\nParticipants: mneme (S), Trydnt (N)\nWinner: mneme\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) mneme: Homeworld G3 B3 Y3 *\n\tmneme: Oh, right; this was from an open challenge; this isn't a tournament game. :)\n\n3) Trydnt: Build G1 Trydnt\n\tTrydnt: correct :) I like having lots of games on at a time\n\n4) mneme: Build Y1 Mneme\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) mneme: Trade Y3 R3 Mneme\n\n7) Trydnt: Discover Y1 Trydnt G3 G3\n\n8) mneme: Move R3 Mneme Trydnt\n\tmneme: sorry, forgot this was the tinyu game.\n\n\nHomeworlds Online (SDG# 34429)\nStarted: 2018.8.8, Ended: 2018.9.20\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) MobyNostromo: H G2 B3 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) MobyNostromo: B Y1 Mobynostromo\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) MobyNostromo: B Y2 Mobynostromo\n\n7) Trydnt: Discover Y1 Trydnt G3 G3\n\n8) MobyNostromo: T Y1 G1 Mobynostromo\n\n9) Trydnt: Build G1 Trydnt\n\n10) MobyNostromo: T Y2 B2 Mobynostromo\n\n11) Trydnt: Trade G1 B1 Trydnt\n\n12) MobyNostromo: B G1 Mobynostromo\n\n13) Trydnt: Build G1 Trydnt\n\n14) MobyNostromo: D G1 Mobynostromo B1 Sky\n\n15) Trydnt: Trade G1 R1 Trydnt\n\n16) MobyNostromo: D B2 Mobynostromo R1 Fire\n\n17) Trydnt: Build R1 Trydnt\n\n\nHomeworlds Online (SDG# 34437)\nVariants: "Unrated, Hard time"\nStarted: 2018.8.8, Ended: 2018.8.21\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H B3 Y2 G3\n\twil: Is this a round robin game?\n\n2) Trydnt: Homeworld B2 Y1 G3\n\twil: Or was the last one?\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\twil: Can't make any more moves till I find out which is the tourney game...and which I can have fun on...\n\tTrydnt: nah these are just for fun\n\n5) wil: T G1 Y1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: B Y2 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: D Y1 Wil G1 G1\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) wil: B Y3 G1\n\n12) Trydnt: Build Y3 G3\n\n13) wil: M Y1 G1 G3\n\n14) Trydnt: Sacrifice Y1 G3\nDiscover Y3 G3 G1 Gee1\n\n15) wil: B G1 Wil\n\n16) Trydnt: Build G2 Trydnt\n\n17) wil: D G1 Wil B1 B1\n\n18) Trydnt: Trade G2 R2 Trydnt\n\n19) wil: T Y2 R2 Wil\n\n20) Trydnt: Build G2 Trydnt\n\n21) wil: B G2 Wil\n\n22) Trydnt: Build R1 Trydnt\n\n23) wil: S G3 Wil\nB G2 B1\nB G3 Wil\nB R1 Wil\n\n24) Trydnt: Move Y2 Trydnt G3\n\n25) wil: S Y1 G3\nD G2 B1 Y3 Y3\n\n26) Trydnt: Build Y1 Gee1\n\n27) wil: M R2 Wil G1\n\n28) Trydnt: Trade R1 B1 Trydnt\n\n29) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Wil\nBuild Y1 G1\n\n30) Trydnt: Sacrifice B1 Trydnt\nTrade Y3 B3 Gee1\n\n31) wil: Move Y1 G1 G3\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G3\nBuild Y3 Gee1\n\n33) wil: Sacrifice G2 Y3\nBuild G2 B1\nBuild Y3 G1\n\n34) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B1 Gee1\nBuild B1 Gee1\n\n35) wil: Trade G1 R1 B1\n\n36) Trydnt: Trade B3 R3 Gee1\n\n37) wil: Build R2 B1\n\n38) Trydnt: Sacrifice G2 Trydnt\nBuild R3 Gee1\nBuild R3 Trydnt\n\n39) wil: Sacrifice G3 Wil\nBuild G1 B1\nBuild G2 B1\nBuild G3 Wil\n\n40) Trydnt: Sacrifice Y3 Gee1\nMove Y2 G3 G1\nMove Y2 G3 G1\nCatastrophe G1 Y\nMove R3 Gee1 G3\n\n41) wil: Trade G2 Y2 B1\n\n42) Trydnt: Attack Y1 G3\n\n43) wil: Trade G2 Y2 Wil\n\twil: time for a tourney game...\r\n\n\n44) Trydnt: Build Y3 Gee1\n\n45) wil: Build Y3 B1\n\n46) Trydnt: Build Y3 G3\n\n47) wil: Trade G2 B2 B1\n\n48) Trydnt: Move B1 Gee1 G3\n\n49) wil: Discover B2 B1 G2 G2\n\n50) Trydnt: Build G2 Trydnt\n\twil: meant to move the g2 to a y3 before that...major mistake..\n\n51) wil: Build G2 B1\n\n52) Trydnt: Move R3 G3 G2\n\n53) wil: Sacrifice B2 G2\nTrade G2 B2 B1\nPass\n\n54) Trydnt: Sacrifice Y3 Gee1\nMove B1 Gee1 G3\nMove B1 G3 B1\nMove B1 G3 B1\nCatastrophe B1 B\n\n55) wil: Build R1 G1\n\twil: yeah this one is over too\r\n\n\n56) Trydnt: Build R2 G2\n\n57) wil: Move Y2 Wil G1\n\tTrydnt: let's see where this goes though haha\n\n58) Trydnt: Discover G2 Trydnt Y3 Y3\n\n59) wil: Discover R2 G1 Y3 Whynot\n\n60) Trydnt: Move R3 Trydnt Whynot\n\n61) wil: Build Y2 G1\n\n62) Trydnt: Attack R2 Whynot\n\n63) wil: Trade R1 B1 Wil\n\n64) Trydnt: Trade R2 B2 Trydnt\n\n65) wil: Discover Y2 G1 B3 B3\n\n66) Trydnt: Move Y3 G3 G1\n\n67) wil: Discover Y2 G1 B3 Be3\n\n68) Trydnt: Build R1 Gee1\n\n69) wil: Build R2 Wil\n\n70) Trydnt: Sacrifice G2 Y3\nBuild Y3 G3\nBuild B1 Trydnt\n\n71) wil: Build G1 Wil\n\n72) Trydnt: Sacrifice B2 Trydnt\nTrade R2 B2 Whynot\nTrade R1 B1 Gee1\n\n73) wil: Discover G1 Wil R1 R1\n\twil: You've got me dominated...put me out of my misery! Amazing how long it takes sometimes....but you are like a cat with a mouse...just torturing...as I try to stay alive..\n\n74) Trydnt: Build B2 Gee1\n\tTrydnt: haha I like to be certain\n\n75) wil: Build G2 Wil\n\n76) Trydnt: Move R3 Whynot Gee1\n\n77) wil: Move R1 Wil Gee1\n\n78) Trydnt: Sacrifice B2 Whynot\nTrade R3 Y3 Gee1\nTrade R2 B2 G2\n\n79) wil: Sacrifice G3 Wil\nBuild G2 R1\nBuild G3 Wil\nBuild R2 Wil\n\n80) Trydnt: Sacrifice Y3 G3\nMove B1 Gee1 Wil\nMove B2 Gee1 Wil\nCatastrophe Wil B\nMove Y1 G3 Wil\n\n\twil: You up late..\r\n\n\tTrydnt: /early\n\twil: nice\n\nHomeworlds Online (SDG# 34342)\nVariants: "Unrated, Hard time"\nStarted: 2018.8.8, Ended: 2018.9.17\nParticipants: mneme (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 R2 G3\n\n2) mneme: Homeworld B1 G2 R3\n\n3) Trydnt: Build G1 Trydnt\n\tmneme: And this is also from an open challenge and isn't a tournament game either. :)\n\n4) mneme: Build R1 Mneme\n\n5) Trydnt: Build G1 Trydnt\n\n6) mneme: Trade R1 Y1 Mneme\n\n7) Trydnt: Trade G1 Y1 Trydnt\n\n8) mneme: Build R1 Mneme\n\n9) Trydnt: Build G1 Trydnt\n\n10) mneme: Trade R1 G1 Mneme\n\n11) Trydnt: Trade G1 B1 Trydnt\n\n12) mneme: Build R1 Mneme\n\n13) Trydnt: Build B1 Trydnt\n\n14) mneme: Build R1 Mneme\n\n15) Trydnt: Discover B1 Trydnt G1 G1\n\n16) mneme: Build G2 Mneme\n\n17) Trydnt: Build G2 Trydnt\n\n18) mneme: Discover G2 Mneme G3 Melpomene\n\n19) Trydnt: Trade G2 Y2 Trydnt\n\n20) mneme: Discover G1 Mneme B3 Calliope\n\n21) Trydnt: Build B2 G1\n\n22) mneme: Discover R1 Mneme B3 Clio\n\n23) Trydnt: Trade B2 R2 G1\n\n24) mneme: Trade R3 G3 Mneme\n\n25) Trydnt: Build B2 G1\n\n26) mneme: Build G2 Calliope\n\n27) Trydnt: Trade B2 Y2 G1\n\n28) mneme: Trade G2 Y2 Calliope\n\n29) Trydnt: Discover Y2 Trydnt R1 R1\n\n30) mneme: Sacrifice G2 Melpomene\nBuild Y1 Mneme\nBuild Y3 Calliope\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild Y3 Trydnt\nBuild Y3 G1\nBuild G2 Trydnt\n\n32) mneme: Sacrifice G3 Mneme\nBuild R2 Mneme\nBuild R3 Clio\nBuild R3 Mneme\n\n33) Trydnt: Sacrifice G2 Trydnt\nBuild R3 G1\nBuild B2 G1\n\n34) mneme: Trade R3 G3 Mneme\n\n35) Trydnt: Sacrifice Y2 G1\nDiscover Y3 G1 R3 R3\nDiscover B2 G1 G3 G3\n\n36) mneme: Move Y3 Calliope R1\n\n37) Trydnt: Sacrifice Y2 R1\nMove B2 G3 R1\nMove B2 R1 R3\n\n38) mneme: Build Y2 Calliope\n\n39) Trydnt: Build G2 Trydnt\n\n40) mneme: Build Y2 Calliope\n\n41) Trydnt: Sacrifice G2 Trydnt\nBuild B2 R3\nBuild B2 R3\n\n42) mneme: Move Y2 Calliope R1\n\n43) Trydnt: Move Y1 Trydnt G1\n\n44) mneme: Move Y1 Mneme Clio\n\n45) Trydnt: Trade B2 G2 R3\n\n46) mneme: Sacrifice Y1 Clio\nDiscover R1 Clio Y1 Melpomene\n\n47) Trydnt: Build B2 R3\n\n48) mneme: Sacrifice Y3 R1\nMove R1 Melpomene R3\nMove R1 Mneme R3\nMove R2 Mneme R3\nCatastrophe R3 R\n\n49) Trydnt: Build G2 Trydnt\n\n50) mneme: Build G2 Calliope\n\n51) Trydnt: Move R3 G1 Calliope\n\tmneme: That was a nice doomsday machine.\n\n52) mneme: Sacrifice G3 Mneme\nBuild Y1 Calliope\nBuild Y3 Mneme\nBuild Y3 R1\n\n53) Trydnt: Sacrifice R2 G1\nAttack G2 Calliope\nAttack G1 Calliope\n\n54) mneme: Sacrifice Y2 Calliope\nMove Y2 Calliope G1\nMove R3 Clio G1\n\n55) Trydnt: Attack Y1 Calliope\n\n56) mneme: Trade Y1 R1 Mneme\n\n57) Trydnt: Sacrifice Y1 G1\nDiscover B1 G1 Y2 Y2\n\n58) mneme: Build Y1 G1\n\n59) Trydnt: Build G3 Trydnt\n\n60) mneme: Build R1 G1\n\n61) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y1 Calliope\nBuild G3 Calliope\n\n62) mneme: Build R2 Mneme\n\n63) Trydnt: Move G3 Calliope Y2\n\n64) mneme: Trade R2 B2 Mneme\n\n65) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Y2\nBuild B2 Y2\n\n66) mneme: Sacrifice B2 Mneme\nTrade R3 B3 G1\nTrade Y2 B2 R1\n\n67) Trydnt: Sacrifice Y1 Calliope\nDiscover B1 Trydnt Y1 Y1\n\n68) mneme: Build B2 G1\n\n69) Trydnt: Sacrifice G3 Y2\nBuild G3 Y2\nBuild Y2 Trydnt\nBuild R2 Calliope\n\n70) mneme: Build R2 Mneme\n\n71) Trydnt: Move G2 Trydnt G1\n\n72) mneme: Move Y3 R1 Trydnt\n\n73) Trydnt: Attack Y3 Trydnt\n\n74) mneme: Move Y1 G1 Trydnt\nCatastrophe Trydnt Y\n\n75) Trydnt: Sacrifice G1 Calliope\nBuild G1 G1\n\n76) mneme: Move B3 G1 Trydnt\n\n77) Trydnt: Sacrifice R3 Calliope\nAttack B3 Trydnt\nAttack B2 G1\nAttack Y2 G1\n\n78) mneme: Build R3 G1\n\n79) Trydnt: Sacrifice G1 Trydnt\nBuild G1 G1\nCatastrophe G1 G\n\n80) mneme: Build Y1 Mneme\n\n81) Trydnt: Build Y2 Calliope\n\n82) mneme: Trade Y1 G1 Mneme\n\n83) Trydnt: Sacrifice Y2 Calliope\nMove G3 Y2 Calliope\nMove G3 Calliope Mneme\n\n84) mneme: Attack G3 Mneme\n\n85) Trydnt: Move G2 Calliope Mneme\nCatastrophe Mneme G\n\n86) mneme: Trade R2 G2 Mneme\n\n87) Trydnt: Trade B3 Y3 Trydnt\n\n\tmneme: mate in 2. Well played.\n\tBabamots: Am I right that this was a tournament game? It looks like it was reported at the end but not at the beginning.\n\tTrydnt: Yes you are correct. Neither of us put it in at the beginning but should be in there now\n\tBabamots: Thanks!\n\tBabamots: Wait, I just noticed that, at the beginning of the game, mneme said in the comments that this is NOT a tournament game. I'm going to delete it from the record unless mneme wants to count it.\n\tTrydnt: That is true. Mneme did we have another game running that was a tourney game?\n\tmneme: Huh. I'm not sure. It was playing it as if it were a tournamnent game, but it clearly wasn't -- the setup didn't match the tournament approach, which was why I put that note in the beginning.\r\n\r\nAlmost a shame, since I think we were both playing it with intent, but that just makes it good practice.\r\n\n\nHomeworlds Online (SDG# 34441)\nVariants: "Hard time"\nStarted: 2018.8.8, Ended: 2018.8.19\nParticipants: Babamots (S), ajo (N)\nWinner: Babamots\n\n1) ajo: Homeworld B2 R1 G3\n\n2) Babamots: Homeworld R3 B2 G3\n\tBabamots: For the record, this is for the tournament.\r\n\r\nGood luck!\n\n3) ajo: Build G1 Ajo\n\n4) Babamots: Build G1 Babamots\n\n5) ajo: Trade G1 Y1 Ajo\n\tajo: Yes. Good luck!\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) ajo: Build G1 Ajo\n\n8) Babamots: Build G1 Babamots\n\n9) ajo: Discover G1 Ajo B3 Alpha\n\n10) Babamots: Discover G1 Babamots B1 Andoria\n\n11) ajo: Build G1 Ajo\n\n12) Babamots: Build G2 Babamots\n\n13) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Ajo\n\n14) Babamots: Sacrifice G3 Babamots\nBuild G3 Andoria\nBuild G3 Babamots\nBuild Y1 Babamots\n\n15) ajo: Trade G2 Y2 Alpha\n\n16) Babamots: Trade Y1 R1 Babamots\n\n17) ajo: Trade G2 R2 Alpha\n\n18) Babamots: Trade G3 Y3 Andoria\n\n19) ajo: Build G2 Alpha\n\n20) Babamots: Discover Y3 Andoria G2 Orion\n\n21) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild R1 Alpha\n\n22) Babamots: Sacrifice Y1 Babamots\nMove G1 Andoria Alpha\nCatastrophe Alpha G\n\n23) ajo: Trade R2 G2 Alpha\n\n24) Babamots: Trade G2 Y2 Babamots\n\n25) ajo: Build R2 Alpha\n\n26) Babamots: Build Y1 Babamots\n\n27) ajo: Discover R1 Alpha G1 Beta\n\n28) Babamots: Move Y2 Babamots Beta\n\n29) ajo: Sacrifice Y2 Alpha\nMove R1 Beta Babamots\nDiscover R2 Alpha Y1 Gamma\n\n30) Babamots: Sacrifice R1 Babamots\nAttack R1 Babamots\n\n31) ajo: Build Y2 Ajo\n\n32) Babamots: Sacrifice G3 Babamots\nBuild Y2 Orion\nBuild Y3 Beta\nBuild Y3 Babamots\n\tajo: Oh bother. I always forget that you can do that. (This is not the first game in which I've messed that up.)\n\n33) ajo: Sacrifice G1 Ajo\nBuild R1 Gamma\n\tBabamots: In the last tournament, I lost the semifinal game to that problem. Gotta be so careful if count on your opponent's ships helping you to get a red catastrophe.\n\n34) Babamots: Trade R1 B1 Babamots\n\n35) ajo: Build G1 Alpha\n\n36) Babamots: Sacrifice B1 Babamots\nTrade Y2 R2 Beta\n\n37) ajo: Sacrifice G2 Alpha\nBuild G1 Ajo\nBuild R1 Gamma\n\n38) Babamots: Sacrifice Y2 Orion\nMove R2 Beta Alpha\nMove R2 Alpha Gamma\nCatastrophe Gamma R\n\n39) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Ajo\nBuild G3 Ajo\n\n40) Babamots: Discover Y3 Beta G3 Risa\n\n41) ajo: Trade G2 Y2 Alpha\n\n42) Babamots: Trade Y3 G3 Babamots\n\n43) ajo: Discover Y1 Ajo B3 Beta\n\n44) Babamots: Build G1 Babamots\n\n45) ajo: Sacrifice G2 Ajo\nBuild G2 Alpha\nBuild Y1 Beta\n\n46) Babamots: Discover G1 Babamots B1 Bolarus\n\n47) ajo: Sacrifice G2 Alpha\nBuild Y2 Beta\nBuild Y3 Alpha\n\n48) Babamots: Build G2 Bolarus\n\n49) ajo: Trade Y3 R3 Alpha\n\n50) Babamots: Sacrifice G2 Bolarus\nBuild G2 Babamots\nBuild Y3 Babamots\n\n51) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\nBuild R1 Alpha\n\n52) Babamots: Trade G2 R2 Babamots\n\n53) ajo: Move Y1 Beta Bolarus\n\n54) Babamots: Move R2 Babamots Bolarus\n\n55) ajo: Move Y1 Bolarus Babamots\n\n56) Babamots: Move Y1 Babamots Bolarus\n\n57) ajo: Discover Y1 Babamots B1 Gamma\n\n58) Babamots: Build R1 Bolarus\n\n59) ajo: Move G2 Alpha Gamma\n\n60) Babamots: Trade R1 B1 Bolarus\n\n61) ajo: Move R3 Alpha Gamma\n\n62) Babamots: Build G2 Bolarus\n\n63) ajo: Sacrifice G3 Ajo\nBuild R1 Gamma\nBuild R2 Alpha\nBuild G3 Ajo\n\n64) Babamots: Discover G1 Bolarus B3 Benzar\n\n65) ajo: Move R3 Gamma Benzar\n\n66) Babamots: Sacrifice Y3 Orion\nMove G2 Bolarus Benzar\nMove G2 Benzar Ajo\nMove G1 Benzar Ajo\nCatastrophe Ajo G\n\n67) ajo: Sacrifice Y2 Beta\nMove R3 Benzar Ajo\nMove R1 Alpha Gamma\n\n68) Babamots: Sacrifice G3 Babamots\nBuild Y2 Bolarus\nBuild B2 Bolarus\nBuild Y3 Babamots\n\n69) ajo: Discover Y1 Beta G1 Epsilon\n\n70) Babamots: Move Y3 Babamots Gamma\n\n71) ajo: Sacrifice Y2 Alpha\nMove R1 Gamma Babamots\nMove R1 Gamma Babamots\n\n72) Babamots: Sacrifice R2 Bolarus\nAttack Y1 Gamma\nAttack G2 Gamma\n\n73) ajo: Build Y2 Epsilon\n\n74) Babamots: Attack R1 Babamots\n\n75) ajo: Sacrifice G1 Alpha\nBuild R2 Babamots\nCatastrophe Babamots Red\n\n76) Babamots: Trade Y1 R1 Gamma\n\n77) ajo: Trade R3 G3 Ajo\n\n78) Babamots: Move B2 Bolarus Risa\n\n79) ajo: Build Y1 Ajo\n\n80) Babamots: Build B3 Risa\n\n81) ajo: Discover Y1 Epsilon B3 Zeta\n\n82) Babamots: Trade B3 R3 Risa\n\n83) ajo: Discover Y1 Ajo B3 Theta\n\n84) Babamots: Build R1 Risa\n\tajo: That's quite an impenetrable defense you've got there. I see my doom about 4 turns away...\n\n85) ajo: Build G1 Ajo\n\n86) Babamots: Move G2 Gamma Zeta\n\n87) ajo: Move G1 Ajo Alpha\n\n88) Babamots: Sacrifice R1 Risa\nAttack Y1 Zeta\n\n89) ajo: Build G1 Ajo\n\n90) Babamots: Move Y1 Zeta Gamma\n\n91) ajo: Build G2 Alpha\n\n92) Babamots: Sacrifice G2 Zeta\nBuild R1 Risa\nBuild B3 Risa\n\n93) ajo: Build R2 Alpha\n\n94) Babamots: Move R1 Gamma Babamots\n\n95) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G2 Alpha\nBuild G3 Ajo\n\n96) Babamots: Sacrifice Y3 Gamma\nMove B1 Bolarus Risa\nMove B1 Risa Ajo\nMove B3 Risa Ajo\n\n97) ajo: Attack B3 Ajo\n\n98) Babamots: Move B2 Risa Ajo\nCatastrophe Ajo B\n\n99) ajo: Pass\n\n100) Babamots: Sacrifice Y3 Risa\nMove R1 Risa Ajo\nMove R1 Babamots Ajo\nMove R3 Risa Ajo\nCatastrophe Ajo R\n\tajo: I see it coming, but I don't think I have any better move at this point... :)\n\n\tajo: Well, if I didn't capture (or catastrophe) your b3, you could have just sacrificed r3 to capture my y2g1g3, which I think would have led to my defeat pretty quick as well.\n\tBabamots: Yes, I think building y3 would have only bought you a move or two.\r\n\r\nGood game! Valiantly fought!\n\nHomeworlds Online (SDG# 34447)\nVariants: "Hard time"\nStarted: 2018.8.10, Ended: 2018.9.3\nParticipants: deanthebean (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R1 B2 G3\n\n2) deanthebean: Homeworld B3 Y1 G3\n\tgoulo: hi, have fun!\n\tdeanthebean: Thanks. You too!\n\n3) goulo: Build G1 Goulo\n\n4) deanthebean: Build G1 Deanthebean\n\n5) goulo: Trade G3 Y3 Goulo\n\n6) deanthebean: Trade G1 R1 Deanthebean\n\n7) goulo: Build G1 Goulo\n\n8) deanthebean: Build R1 Deanthebean\n\n9) goulo: Trade Y3 R3 Goulo\n\n10) deanthebean: Build R2 Deanthebean\n\n11) goulo: Build R2 Goulo\n\n12) deanthebean: Trade R1 Y1 Deanthebean\n\n13) goulo: Trade G1 Y1 Goulo\n\n14) deanthebean: Build Y2 Deanthebean\n\n15) goulo: Build Y2 Goulo\n\n16) deanthebean: Discover Y1 Deanthebean G2 Xi\n\n17) goulo: Discover Y1 Goulo G3 Smeraldego\n\n18) deanthebean: Discover R2 Deanthebean G2 Pen\n\n19) goulo: Move R2 Goulo Smeraldego\n\n20) deanthebean: Move Y2 Deanthebean Pen\n\n21) goulo: Move R2 Smeraldego Xi\n\n22) deanthebean: Move R2 Pen Smeraldego\n\n23) goulo: Discover Y1 Smeraldego G2 Smeraldo\n\n24) deanthebean: Build G1 Deanthebean\n\n25) goulo: Attack Y1 Xi\n\n26) deanthebean: Move R1 Deanthebean Smeraldo\n\n27) goulo: Trade R3 G3 Goulo\n\n28) deanthebean: Attack Y1 Smeraldo\n\n29) goulo: Sacrifice G3 Goulo\nBuild Y2 Xi\nBuild Y3 Xi\nBuild Y3 Goulo\n\n30) deanthebean: Build Y3 Pen\n\n31) goulo: Move Y1 Xi Deanthebean\n\n32) deanthebean: Sacrifice R1 Smeraldo\nAttack Y1 Deanthebean\n\n33) goulo: Sacrifice Y2 Goulo\nMove Y2 Xi Deanthebean\nMove Y3 Xi Deanthebean\nCatastrophe Deanthebean Y\n\n34) deanthebean: Trade G1 R1 Deanthebean\n\n35) goulo: Build Y1 Goulo\n\n36) deanthebean: Build R1 Deanthebean\n\n37) goulo: Build G1 Goulo\n\n38) deanthebean: Trade R1 B1 Deanthebean\n\n39) goulo: Trade G1 B1 Goulo\n\n40) deanthebean: Build G1 Deanthebean\n\n41) goulo: Discover B1 Goulo Y3 Flavego\n\n42) deanthebean: Trade G1 Y1 Deanthebean\n\n43) goulo: Trade Y1 B1 Goulo\n\n44) deanthebean: Move B1 Deanthebean Pen\n\n45) goulo: Build G1 Goulo\n\n46) deanthebean: Build B2 Pen\n\n47) goulo: Discover B1 Flavego Y2 Flavo\n\n48) deanthebean: Move B2 Pen Smeraldego\n\n49) goulo: Discover B1 Goulo Y3 Flavego\n\n50) deanthebean: Sacrifice G3 Deanthebean\nBuild B2 Smeraldego\nBuild B3 Pen\nBuild R1 Smeraldego\n\n51) goulo: Sacrifice G1 Goulo\nBuild B3 Flavo\n\n52) deanthebean: Sacrifice Y2 Pen\nMove B2 Smeraldego Flavo\nMove B2 Smeraldego Flavo\nCatastrophe Flavo Blue\n\n53) goulo: Build G1 Goulo\n\n54) deanthebean: Trade B3 G3 Pen\n\n55) goulo: Discover B1 Flavego Y2 Flavo\n\n56) deanthebean: Build G1 Pen\n\n57) goulo: Trade G1 B1 Goulo\n\n58) deanthebean: Move B1 Pen Smeraldego\n\n59) goulo: Build G1 Goulo\n\n60) deanthebean: Sacrifice G3 Pen\nBuild G3 Pen\nBuild B2 Smeraldego\nBuild R2 Smeraldego\n\n61) goulo: Sacrifice Y3 Goulo\nMove R2 Xi Smeraldego\nMove B1 Flavo Deanthebean\nMove B1 Goulo Deanthebean\nCatastrophe Smeraldego Red\n\n62) deanthebean: Attack B1 Deanthebean\n\n63) goulo: Sacrifice G1 Goulo\nBuild B2 Deanthebean\nCatastrophe Deanthebean Blue\n\n\tdeanthebean: Well played! \n\tgoulo: thanks! that was a tough interesting game... I thought I was doomed (after I fell so behind on material, the price I paid to do the first catastrophe), until I realized that final sequence at the end. lucky for me it worked out that way, winning with only one 1-ship remaining vs two 3-ships and various other ships. a narrow win! :)\n\nHomeworlds Online (SDG# 34288)\nVariants: "Hard time"\nStarted: 2018.8.10, Ended: 2018.8.13\nParticipants: wil (S), Ryzorrin (N)\nWinner: wil\n\n1) Ryzorrin: Homeworld B1 G2 R3\n\n2) wil: H B3 R1 G3\n\n3) Ryzorrin: Build R1 Ryzorrin\n\twil: The for the game! Is this a tourney challenge or just for fun?\r\n\n\n4) wil: Build G1 Wil\n\tRyzorrin: Just for fun?\n\twil: Nice, welcome back, looks like it has been a while... there is a tourney just starting if interrested\n\n5) Ryzorrin: Trade R1 Y1 Ryzorrin\n\tRyzorrin: Maybe. Need to get back into the swing of things. \n\n6) wil: Trade G1 Y1 Wil\n\n7) Ryzorrin: Discover Y1 Ryzorrin B3 Arthur\n\twil: Win or lose the tourney lets you play 15 games in the next few months..meet 15 new players...see a bunch of differing strategies and game play... No peer pressure, just insuring you are aware of the opportunity.\n\n8) wil: B G1 Wil\n\twil: Leaving t he nest awful young \n\n9) Ryzorrin: Trade Y1 G1 Arthur\n\tRyzorrin: It seems safe enough.\r\n\n\n10) wil: B Y1 Wil\n\n11) Ryzorrin: Build R1 Ryzorrin\n\twil: See, the liitle guy gets out in the world and shape shifts on ya!\n\n12) wil: Build Y1 Wil\n\n13) Ryzorrin: Build R1 Ryzorrin\n\n14) wil: Discover Y1 Wil G2 G2\n\n15) Ryzorrin: Trade R1 G1 Ryzorrin\n\tRyzorrin: Very creative star system name. :D\n\n16) wil: B Y2 G2\n\twil: Im a simple man\n\n17) Ryzorrin: Build G2 Ryzorrin\n\twil: After all, i dont get attached to temporary sites we land just to harvest fuel. No use getting sentimental over property we will likely exploit and leave behind\n\n18) wil: Build G3 Wil\n\n19) Ryzorrin: Build G3 Arthur\n\n20) wil: D G1 Wil Y2 Y2\n\n21) Ryzorrin: Trade G2 Y2 Ryzorrin\n\n22) wil: T Y1 R1 Wil\n\n23) Ryzorrin: Discover G1 Ryzorrin B3 Lancelot\n\n24) wil: Sacrifice G3 Wil\nBuild G2 Y2\nBuild G3 Wil\nBuild R2 Wil\n\n25) Ryzorrin: Trade G1 Y1 Arthur\n\n26) wil: Move Y2 G2 Lancelot\n\n27) Ryzorrin: Build Y3 Arthur\n\n28) wil: S G2 Y2\nB Y3 Lancelot\nB Y3 Wil\n\n29) Ryzorrin: Trade G3 R3 Arthur\n\n30) wil: S R1 Wil\nA G1 Lancelot\n\n31) Ryzorrin: Move R3 Arthur G2\n\n32) wil: T Y1 B1 Wil\n\n33) Ryzorrin: Attack Y1S G2\n\n34) wil: Sacrifice G3 Wil\nBuild G1 Wil\nBuild G2 Lancelot\nBuild G3 Y2\n\n35) Ryzorrin: Build R1 G2\n\n36) wil: T G2 R2 Lancelot\n\n37) Ryzorrin: Sacrifice Y2 Ryzorrin\nMove R1 G2 Wil\nMove R3 G2 Wil\nCatastrophe Wil Red\n\n38) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB G3 Lancelot\n\n39) Ryzorrin: Trade R1 B1 Ryzorrin\n\n40) wil: S Y3 Wil\nM G3 Lancelot Ryzorrin\nM Y3 Lancelot Ryzorrin\nM Y2 Lancelot Ryzorrin\n\n41) Ryzorrin: Attack Y3S Ryzorrin\n\n\tRyzorrin: good game.\n\nHomeworlds Online (SDG# 34456)\nVariants: "Hard time"\nStarted: 2018.8.11, Ended: 2018.9.16\nParticipants: ts52 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: For the record, this is for the tournament. Good luck!\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: Thanks! Good luck to you too. Have a good game!\n\n3) Babamots: Build G1 Babamots\n\n4) ts52: Build G1 Ts52\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) ts52: Trade G1 R1 Ts52\n\n7) Babamots: Build R2 Babamots\n\n8) ts52: Build R2 Ts52\n\n9) Babamots: Trade R1 Y1 Babamots\n\n10) ts52: Trade R1 Y1 Ts52\n\n11) Babamots: Build G1 Babamots\n\n12) ts52: Build G1 Ts52\n\n13) Babamots: Discover G1 Babamots B3 Betazed\n\n14) ts52: Discover G1 Ts52 B1 Gonzo\n\n15) Babamots: Build Y1 Babamots\n\n16) ts52: Build Y2 Ts52\n\n17) Babamots: Move Y1 Babamots Betazed\n\n18) ts52: Move Y2 Ts52 Gonzo\n\n19) Babamots: Build Y2 Babamots\n\n20) ts52: Build R1 Ts52\n\n21) Babamots: Sacrifice G3 Babamots\nBuild Y2 Betazed\nBuild Y3 Betazed\nBuild Y3 Babamots\n\n22) ts52: Discover Y1 Ts52 B1 Grover\n\n23) Babamots: Sacrifice Y1 Betazed\nDiscover Y2 Babamots G3 Orion\n\n24) ts52: Build Y1 Gonzo\n\n25) Babamots: Trade Y1 B1 Babamots\n\n26) ts52: Move R2 Ts52 Grover\n\n27) Babamots: Move B1 Babamots Orion\n\n28) ts52: Build G1 Ts52\n\tBabamots: I hope you don't mind if I play a little slow for a few days. I'm trying to make good on some projects, and it's taking plenty of my concentration to not mess up on another of my current games.\n\tts52: I don't mind at all. Thanks for giving me a heads up.\n\n29) Babamots: Move Y3 Betazed Grover\n\n30) ts52: Move R2 Grover Ts52\n\n31) Babamots: Build B2 Orion\n\n32) ts52: Build G2 Gonzo\n\n33) Babamots: Build B3 Orion\n\n34) ts52: Discover G2 Gonzo B3 Cookie\n\n35) Babamots: Move B3 Orion Gonzo\n\n36) ts52: Move Y2 Gonzo Cookie\n\n37) Babamots: Trade B3 R3 Gonzo\n\n38) ts52: Build G2 Cookie\n\n39) Babamots: Attack Y1 Gonzo\n\n40) ts52: Discover R2 Ts52 Y1 Bigbird\n\n41) Babamots: Attack G1 Gonzo\n\n42) ts52: Move G2 Cookie Bigbird\n\n43) Babamots: Move G1 Betazed Gonzo\n\n44) ts52: Sacrifice G3 Ts52\nBuild G2 Bigbird\nBuild G3 Ts52\nBuild G3 Cookie\n\n45) Babamots: Sacrifice Y3 Grover\nMove G1 Gonzo Ts52\nMove G1 Gonzo Ts52\nMove R3 Gonzo Ts52\nCatastrophe Ts52 G\n\n46) ts52: Sacrifice Y2 Cookie\nMove G2 Bigbird Ts52\nMove R2 Bigbird Ts52\n\n47) Babamots: Sacrifice R2 Babamots\nAttack G2 Ts52\nAttack R2 Ts52\n\tts52: How did I not see that coming? Or maybe I did and figured it was unavoidable? Too many games. Well played sir.\n\n48) ts52: Move G2 Bigbird Ts52\n\n49) Babamots: Sacrifice R2 Ts52\nAttack R1 Ts52\nAttack G2 Ts52\n\tBabamots: With half a dozen other games going, I would be missing things everywhere. But rest assured, as many of your troops as surrender will be shown mercy. GG!\n\n\nHomeworlds Online (SDG# 34458)\nVariants: "Hard time"\nStarted: 2018.8.11, Ended: 2018.8.23\nParticipants: ts52 (S), speardane (N)\nWinner: ts52\n\n1) speardane: Homeworld Y3 G2 B3\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) speardane: Build B1 Speardane\n\n4) ts52: Build G1 Ts52\n\n5) speardane: Trade B1 R1 Speardane\n\n6) ts52: Trade G1 R1 Ts52\n\n7) speardane: Build B1 Speardane\n\n8) ts52: Build G1 Ts52\n\n9) speardane: Discover B1 Speardane G1 Delos\n\n10) ts52: Build G1 Ts52\n\n11) speardane: Build B1 Speardane\n\n12) ts52: Discover G1 Ts52 B3 Gonzo\n\n13) speardane: Discover B1 Speardane Y1 Lebling\n\n14) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G2 Gonzo\nBuild G3 Ts52\n\n15) speardane: Trade B1 Y1 Delos\n\n16) ts52: Trade G2 Y2 Gonzo\n\n17) speardane: Discover B1 Lebling G3 Kotok\n\n18) ts52: Sacrifice G3 Ts52\nBuild G2 Ts52\nBuild G3 Ts52\nBuild G3 Gonzo\n\n19) speardane: Move Y1 Delos Kotok\n\n20) ts52: Trade G3 R3 Gonzo\n\n21) speardane: Build B1 Speardane\n\n22) ts52: Discover G2 Ts52 B3 Grover\n\n23) speardane: Build B1 Speardane\n\n24) ts52: Trade G2 B2 Gonzo\n\n25) speardane: Build B2 Kotok\n\n26) ts52: Sacrifice Y2 Gonzo\nDiscover B2 Gonzo R1 Elmo\nMove B2 Elmo Speardane\nCatastrophe Speardane Blue\n\n27) speardane: Trade B1 R1 Kotok\n\n28) ts52: Trade G2 Y2 Grover\n\n29) speardane: Build R2 Speardane\n\n30) ts52: Sacrifice Y2 Grover\nDiscover R3 Gonzo Y1 Bigbird\nMove R3 Bigbird Speardane\n\n31) speardane: Sacrifice B2 Kotok\nTrade R2 B2 Speardane\nTrade R1 B1 Kotok\n\n32) ts52: Attack R1N Speardane\n\n33) speardane: Build B1 Speardane\n\n34) ts52: Attack B2N Speardane\n\n35) speardane: Pass\n\n36) ts52: Attack B1N Speardane\n\tts52: Good game! Thanks!\n\n\nHomeworlds Online (SDG# 34459)\nVariants: "Hard time"\nStarted: 2018.8.12, Ended: 2018.8.14\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) wil: H Y2 B1 G3\n\tdlwillson: Long time, no see! :-)\n\twil: Glad to see you back around these parts!\n\n3) dlwillson: B G1 Dlwillson\n\n4) wil: B G1 Wil\n\tdlwillson: Well, now there are 2 short stacks! Wat do?\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B Y2 Dlwillson\n\n8) wil: Build Y2 Wil\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n10) wil: D Y1 Wil G3 G3\n\n11) dlwillson: B Y3 Field\n\n12) wil: Build Y3 G3\n\n13) dlwillson: D Y3 Field B3 Sky\n\n14) wil: Discover Y2 Wil Y3 Y3\n\n15) dlwillson: T Y2 R2 Dlwillson\n\n16) wil: T G3 R3 Wil\n\n17) dlwillson: B Y2 Field\n\twil: ALL SYSTEMS ALERT STOP ENEMY ARMED AND BEEN LOCKED ON STOP IMMINENT DANGER TO ALL SECTORS STOP MOUNT DEFENSES OR AVOID AT ALL COSTS STOP\n\n18) wil: M Y1 G3 Wil\n\n19) dlwillson: M Y1 Field Sky\n\twil: RETREAT REGROUP REBUILD TILL CRISIS AVERTED STOP\n\n20) wil: T Y1 G1 Wil\n\tdlwillson: I'm giggling here.\n\n21) dlwillson: Trade Y3 G3 Sky\n\twil: You would,my fleet was in peril, and you chuckle.\n\n22) wil: B G1 Wil\n\n23) dlwillson: Build G1 Sky\n\n24) wil: T G1 B1 Wil\n\n25) dlwillson: Trade G1 R1 Sky\n\n26) wil: B B1 Wil\n\n27) dlwillson: Sacrifice G3 Sky\nBuild Y1 Field\nBuild Y3 Sky\nBuild R1 Sky\n\n28) wil: M B1 Wil G3\n\n29) dlwillson: S Y2 Field\nM R1 Sky Wil\nM R1 Sky Wil\n\n30) wil: M Y3 G3 Wil\n\tdlwillson: Pretty sure I'm one short again, but we'll see.\n\n31) dlwillson: S Y3 Sky\nM Y1 Field Sky\nM Y1 Sky Wil\nM Y1 Sky Wil\nC Wil Y\n\twil: RETREAT, INFESTATION AT HOME\n\n32) wil: B B2 G3\n\tdlwillson: I'm nearly bankrupt! I hope I had a plan, and that I remember it soon!\n\n33) dlwillson: S G3 Dlwillson\nB R1 Wil\nB R2 Dlwillson\nB R2 Dlwillson\nC Wil R\n\twil: These games are always so unique...\n\n34) wil: B B2 G3\n\tdlwillson: I thought I had a better plan than that!\n\tdlwillson: Bear skins and stone knives.\n\n35) dlwillson: T R2 Y2 Dlwillson\n\twil: Lol, all so weird\n\n36) wil: T B1 R1 Wil\n\twil: You got this\n\n37) dlwillson: S Y2 Dlwillson\nD R2 Dlwillson Y2 Sol\nM R2 Sol Wil\n\n38) wil: Build R1 Wil\n\tdlwillson: We'll see.\r\n\r\nI thought you would sac the y2 to stand up the last b2, then build a b3 on your next turn. I am still not sure who wins this.\n\n39) dlwillson: Attack G1 Wil\n\n40) wil: T B1 R1 G3\n\tdlwillson: Yuck. Should I have resigned, instead?\n\tdlwillson: I can't believe that we've been playing BH for however many years, and we've never come up with rules or protocol for this situation.\n\n41) dlwillson: Sacrifice G1 Wil\nBuild R2 Wil\nCatastrophe Wil R\n\twil: What situation?\n\twil: Oh the back and forth?\n\twil: If I had moved blues in younkust needed tonturn blue...yeah wild end\n\twil: Ties are so rare\n\tdlwillson: That game could have ended in an eternal tug-of-war over the green, but you invoked a ko rule on yourself that doesn't exist anywhere in the actual rules. I do the same, and I try to avoid the situation to begin with, but I wish there were an actual rule, or at least a formal protocol.\n\tdlwillson: I think you could have pulled ahead at "2018-08-14 11:23:47" if you had sacrificed your Y2 ship to discover the last B2 from the bank using any ship from the G3 system. I wouldn't have been able to swap to blue, and you would have been able to build a B3 on your next turn.\n\n\nHomeworlds Online (SDG# 34351)\nVariants: "Hard time"\nStarted: 2018.8.13, Ended: 2018.9.14\nParticipants: Trydnt (S), Ryzorrin (N)\nWinner: Trydnt\n\n1) Ryzorrin: Homeworld G1 B2 R3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) Ryzorrin: Build R1 Ryzorrin\n\n4) Trydnt: Build G1 Trydnt\n\n5) Ryzorrin: Trade R1 Y1 Ryzorrin\n\n6) Trydnt: Build G1 Trydnt\n\n7) Ryzorrin: Build Y1 Ryzorrin\n\n8) Trydnt: Discover G1 Trydnt B1 B1\n\n9) Ryzorrin: Build Y1 Ryzorrin\n\n10) Trydnt: Build G2 B1\n\n11) Ryzorrin: Discover Y1 Ryzorrin G3 Metropolis\n\n12) Trydnt: Trade G2 Y2 B1\n\n13) Ryzorrin: Trade Y1 B1 Ryzorrin\n\n14) Trydnt: Build G2 B1\n\n15) Ryzorrin: Discover B1 Ryzorrin G3 Gotham City\n\n16) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G2 B1\nBuild G3 Trydnt\n\n17) Ryzorrin: Build B1 Gotham\n\n18) Trydnt: Trade G2 B2 B1\n\n19) Ryzorrin: Build Y1 Metropolis\n\n20) Trydnt: Trade G2 R2 B1\n\n21) Ryzorrin: Build Y2 Ryzorrin\n\n22) Trydnt: Move B2 B1 Metropolis\n\n23) Ryzorrin: Build Y3 Ryzorrin\n\n24) Trydnt: Sacrifice R2 B1\nAttack Y1 Metropolis\nAttack Y1 Metropolis\n\n25) Ryzorrin: Trade Y3 B3 Ryzorrin\n\n26) Trydnt: Sacrifice G2 Trydnt\nBuild B2 Metropolis\nBuild Y3 B1\n\n27) Ryzorrin: Move B3 Ryzorrin Metropolis\n\n28) Trydnt: Build B3 Metropolis\nCatastrophe Metropolis B\n\n29) Ryzorrin: Move Y2 Ryzorrin Gotham\n\n30) Trydnt: Trade Y2 R2 B1\n\n31) Ryzorrin: Build Y2 Gotham\n\n32) Trydnt: Build Y3 B1\n\n33) Ryzorrin: Sacrifice Y2 Gotham\nDiscover B1 Gotham R1 Keystone\nMove B1 Gotham Keystone\n\n34) Trydnt: Build G2 Trydnt\n\n35) Ryzorrin: Move Y2 Gotham Keystone\n\n36) Trydnt: Discover Y1 Metropolis R1 R1\n\n37) Ryzorrin: Move B1 Keystone Trydnt\n\n38) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 R1\nBuild Y3 Metropolis\n\n39) Ryzorrin: Move Y2 Keystone Trydnt\n\n40) Trydnt: Sacrifice R2 B1\nAttack Y2 Trydnt\nAttack B1 Trydnt\n\n41) Ryzorrin: Build R1 Ryzorrin\n\n42) Trydnt: Move Y2 Trydnt Keystone\n\n43) Ryzorrin: Build R2 Ryzorrin\n\n44) Trydnt: Build G2 B1\n\n45) Ryzorrin: Trade R2 G2 Ryzorrin\n\n46) Trydnt: Attack B1 Keystone\n\n47) Ryzorrin: Move G2 Ryzorrin Metropolis\n\n48) Trydnt: Trade G2 R2 B1\n\n49) Ryzorrin: Trade R3 G3 Ryzorrin\n\n\n50) Trydnt: Build R2 B1\n\n51) Ryzorrin: Build R2 Ryzorrin\n\n52) Trydnt: Sacrifice R2 B1\nAttack G2 Metropolis\nPass\n\n53) Ryzorrin: Move R1 Ryzorrin Metropolis\n\n54) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B1\nBuild G2 B1\nBuild G3 Trydnt\n\n55) Ryzorrin: Attack Y1 Metropolis\n\n56) Trydnt: Sacrifice R2 B1\nAttack R1 Metropolis\nAttack Y1 Metropolis\n\n57) Ryzorrin: Build R2 Ryzorrin\n\n58) Trydnt: Trade G2 R2 B1\n\n59) Ryzorrin: Discover R2 Ryzorrin B3 Blank\n\n60) Trydnt: Sacrifice G2 Metropolis\nBuild R3 B1\nBuild R3 Metropolis\n\n61) Ryzorrin: Build R3 Ryzorrin\n\n62) Trydnt: Move Y3 B1 Blank\n\n63) Ryzorrin: Discover R3 Ryzorrin B3 Tacos\n\n64) Trydnt: Move B1 Keystone Metropolis\n\n65) Ryzorrin: Move R2 Ryzorrin Tacos\n\n66) Trydnt: Sacrifice G2 B1\nBuild B2 Metropolis\nBuild B2 Metropolis\n\n67) Ryzorrin: Trade R2 G2 Tacos\n\n68) Trydnt: Sacrifice R2 B1\nAttack R2 Blank\nPass\n\n69) Ryzorrin: Build R2 Tacos\n\n70) Trydnt: Build G2 B1\n\n71) Ryzorrin: Sacrifice Y1 Ryzorrin\nMove R3 Tacos Keystone\n\n72) Trydnt: Move Y2 Keystone Blank\n\n73) Ryzorrin: Build R2 Tacos\n\n74) Trydnt: Move G1 B1 Blank\n\n75) Ryzorrin: Build G2 Tacos\n\n76) Trydnt: Sacrifice G2 B1\nBuild G2 Blank\nBuild Y1 B1\n\n\nHomeworlds Online (SDG# 34464)\nVariants: "Hard time"\nStarted: 2018.8.14, Ended: 2018.8.23\nParticipants: eliscinsky (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y2 G3 Dingo\n\n2) eliscinsky: Homeworld B2 Y3 G3\n\tdlwillson: GLHF!\n\n3) dlwillson: B G1 Dlwillson\n\teliscinsky: U2!\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) dlwillson: Trade G1 Y1 Dlwillson\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) dlwillson: D Y1 Dlwillson G1 Field\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) dlwillson: Build G1 Dlwillson\n\n10) eliscinsky: Trade G1 R1 Eliscinsky\n\n11) dlwillson: T G1 R1 Dlwillson\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) dlwillson: B R1 Dlwillson\n\n14) eliscinsky: Build R2 Eliscinsky\n\tdlwillson: You're playing perfectly! That was a hard choice!\n\teliscinsky: Thanks. I lost all my games in the last tourney, but I try to learn something new about HWs every time I play. Learning the strategy is the hardest part, but there too I'm learning with each play/game.\n\n15) dlwillson: Move R1 Dlwillson Field\n\n16) eliscinsky: Move R2 Eliscinsky Field\n\tdlwillson: The only way to really learn this game is to get trounced a lot by stronger players. The branching factor is absurdly high, so you really have to memorize the sequences and forceful attacks that happen predictably, and learn to manage the bank. Managing the bank, setting up forceful attacks, and feeding your opponent vexing choices. That's this game. Huh, @Felix?\r\n\r\nThat probably doesn't work to tag him, but Felix and I spent many games where the first priority was to offer the other fellow an irritating situation. My favorite is top-banking a big that the my opponent doesn't have room to build, that I *do* have room to build. They want to build it, but they can't. They want to split up their ships, but by the time they split them, I'll already have an extra big, with which to irritate them. :-)\n\n17) dlwillson: B R2 Field\n\n18) eliscinsky: Move R1 Eliscinsky Field\nCatastrophe Field R\n\n19) dlwillson: B R1 Dlwillson\n\n20) eliscinsky: Trade G1 R1 Eliscinsky\n\n21) dlwillson: M R1 Dlwillson Field\n\n22) eliscinsky: Build R2 Eliscinsky\n\n23) dlwillson: B R2 Field\n\n24) eliscinsky: Discover R1 Eliscinsky G1 Alpha\n\n25) dlwillson: D R1 Field R3 Mars\n\tdlwillson: Aargh! I keep forgetting this is a small universe!\n\n26) eliscinsky: Build R2 Alpha\n\n27) dlwillson: Build R3 Dlwillson\n\n28) eliscinsky: Build R3 Eliscinsky\n\n29) dlwillson: T R3 B3 Dlwillson\n\n30) eliscinsky: Move Y1 Eliscinsky Alpha\n\n31) dlwillson: B R3 Field\n\n32) eliscinsky: Build G1 Eliscinsky\n\n33) dlwillson: Build G2 Dlwillson\n\n34) eliscinsky: Trade G1 Y1 Eliscinsky\n\n35) dlwillson: Build B1 Dlwillson\n\n36) eliscinsky: Build G1 Eliscinsky\n\n37) dlwillson: D G2 Dlwillson B1 Sea\n\n38) eliscinsky: Trade G1 B1 Eliscinsky\n\n39) dlwillson: B Y2 Field\n\n40) eliscinsky: Move R3 Eliscinsky Sea\n\n41) dlwillson: Build G1 Sea\n\n42) eliscinsky: Attack G2 Sea\n\n43) dlwillson: Build G2 Sea\n\n44) eliscinsky: Attack G2 Sea\n\n45) dlwillson: B G2 Sea\nC Sea G\n\n46) eliscinsky: Move B1 Eliscinsky Alpha\n\tdlwillson: I could've done that a lot better. Sorry.\n\n47) dlwillson: M B3 Dlwillson Alpha\n\n48) eliscinsky: Sacrifice Y1 Eliscinsky\nMove R3 Sea Mars\n\n49) dlwillson: S R3 Field\nA R2 Alpha\nA R1 Alpha\nA Y1 Alpha\n\n50) eliscinsky: Attack R1 Mars\n\tFelix: I'm late to the conversation, but I'm with David. I spent many games getting whipped by him (and Wil, TwoShort, Endo, etc.) before I was finally able to hold my own against *some* of those players. After a large number of games you do start to recognize certain attack patterns, but even then, one little oversight can quickly cost you the game, as just happened to me over here! http://superdupergames.org/main.html?page=play_homeworlds&num=34431\n\tdlwillson: I wish TwoShort would come back. I think I might finally be good enough to compete with him. He's the strongest player I've ever played against, but there are other, older players who are supposed to be stronger, like Wyons and somebody else. Is TeeTeeTee still playing? He plays like a machine. No mistakes. No room given.\n\teliscinsky: Okay explain to me how that worked? I had more Pips on my shifts then your B3. And yet you were able to sacrifice an R3 and defeats all my ships? I don't get it. Call me a newbie but it just sounds wrong.\n\n51) dlwillson: A B1 Alpha\n\tdlwillson: When I sacrificed my R3, I got three attacks to use anywhere. Pips don't matter, except to determine whether a ship can successfully attack another ship. A large ship can attack anything and can only be attacked by other large ships. So, I was able to attack three of your ships with three attacks, one attack each.\n\n52) eliscinsky: Build R3 Eliscinsky\n\teliscinsky: Thank you for the lesson. I continue to learn. That's a good thing.\r\n\r\nWHAK! "Thank you, sir. May I have another!" quote from Animal House. :)\r\n\r\nLOL.\n\n53) dlwillson: S G3 Dlwillson\nB Y1 Alpha\nB Y2 Alpha\nB Y3 Field\n\n54) eliscinsky: Build G1 Eliscinsky\n\tdlwillson: Sacrifice plays and catastrophes, especially mid-turn catastrophes, can be very powerful.\n\n55) dlwillson: Sacrifice Y3 Field\nMove R1 Alpha Mars\nCatastrophe Mars R\nMove R2 Alpha Eliscinsky\nMove R2 Field Eliscinsky\nCatastrophe Eliscinsky R\n\teliscinsky: Like cattle ... I feel like I'm being herded. LOL\n\teliscinsky: I really am enjoying this game. I'm lasting much longer than in the past.\n\tdlwillson: Here's the biggest tip for your next game. The overall strategy: To win, you have to make your opponent lose. Constantly have a best plan in mind that ends with him or her losing and you winning. If you don't have that, you're probably playing to forestall losing, and eventually, that style of play usually loses. I'm entirely serious. It's very easy to spend the whole game thinking tactically, and wait for a winning strategy to appear. Don't do that.\r\n\r\n*Always* be thinking, "If I do this, then this, then this, I win." It may seem obvious or trivial, but it's neither.\n\n56) eliscinsky: Trade G1 R1 Eliscinsky\n\teliscinsky: Yes, I see that NOW! LMAO!!!\r\nBut I'm learning so much.\r\nWhimper, whimper ... crawling away. haha!\r\nReally having a great time! TY so much.\n\n57) dlwillson: B B1 Alpha\n\teliscinsky: I see my demise in 3, 2, 1\n\n58) eliscinsky: Build G1 Eliscinsky\n\n59) dlwillson: M B3 Alpha Eliscinsky\n\n60) eliscinsky: Attack B3 Eliscinsky\n\n61) dlwillson: Sacrifice Y2 Alpha\nMove B1 Alpha Eliscinsky\nMove B1 Alpha Eliscinsky\nCatastrophe Eliscinsky B\n\n62) eliscinsky: Discover G1 Eliscinsky R1 Rover\n\n63) dlwillson: M Y1 Field Eliscinsky\n\n64) eliscinsky: Attack Y1 Eliscinsky\n\n65) dlwillson: S Y2 Field\nM Y1 Alpha Eliscinsky\nM Y1 Alpha Eliscinsky\nC Eliscinsky Y\n\teliscinsky: Well, it was a good game (for me) while it lasted. I learned a lot. Thank you for the lessons / hints / tips. :) \r\nLLAP\r\nGood luck in the rest of the Tourney!\r\nNever give up, never surrender! (Star Quest)\n\teliscinsky: Looking forward to reviewing the final report!\n\teliscinsky: Annihilation in ... 0! Ahhhhh!\r\n\r\nLOL\n\tdlwillson: Good game! Thank you for chatting! I think that makes it more fun. What's LLAP?\n\teliscinsky: Live Long And Prosper -> LLAP\r\n(It's a Mr. Spock thing. Ya know Trekkies!) ;)\n\tdlwillson: Ah! You too! Thanks again for the game and the conversation!\n\n\nHomeworlds Online (SDG# 34467)\nVariants: "Hard time"\nStarted: 2018.8.15, Ended: 2018.8.28\nParticipants: random56 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B2 G3\n\n2) random56: Homeworld Y3 B1 G3\n\tdlwillson: Good luck and have fun!\n\n3) dlwillson: B G1 Dlwillson\n\n4) random56: Build G1 Random56\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) random56: Build G1 Random56\n\n7) dlwillson: B B1 Dlwillson\n\n8) random56: Trade G1 R1 Random56\n\n9) dlwillson: Build G1 Dlwillson\n\n10) random56: Discover G1 Random56 B2 Gold\n\n11) dlwillson: D B1 Dlwillson G1 Field\n\n12) random56: Build G2 Gold\n\n13) dlwillson: S G3 Dlwillson\nB B2 Field\nB B3 Field\nB B3 Dlwillson\n\n14) random56: Build G2 Gold\n\n15) dlwillson: T B3 Y3 Field\n\n\nHomeworlds Online (SDG# 34461)\nVariants: "Hard time"\nStarted: 2018.8.15, Ended: 2018.8.27\nParticipants: random56 (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\twil: Welcome to a tourney game!\n\n2) random56: Homeworld Y3 B2 G3\n\n3) wil: Build G1 Wil\n\n4) random56: Build G1 Random56\n\n5) wil: Trade G1 Y1 Wil\n\n6) random56: Build G1 Random56\n\n7) wil: Build Y1 Wil\n\n8) random56: Trade G1 R1 Random56\n\twil: I'm near dc....Where in the world are you from?\n\trandom56: Arkansas, I am jealous of people that are close to DC because from what I hear the Looneys are super nice and are open to people seeing their work place\n\n9) wil: Discover Y1 Wil G3 G3\n\twil: They are very friendly folk.\n\n10) random56: Discover R1 Random56 G1 Kite\n\n11) wil: Build Y2 G3\n\n\nHomeworlds Online (SDG# 34454)\nVariants: "Hard time"\nStarted: 2018.8.15, Ended: 2018.8.28\nParticipants: random56 (S), eliscinsky (N)\nWinner: eliscinsky\n\n1) eliscinsky: Homeworld B1 R2 G3\n\n2) random56: Homeworld Y3 B1 G3\n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) random56: Build G1 Random56\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\trandom56: Thanks, I did not see that it was my turn. \n\teliscinsky: NP, happens to everyone at some point. :)\n\n6) random56: Build G1 Random56\n\n7) eliscinsky: Build G1 Eliscinsky\n\n8) random56: Trade G1 R1 Random56\n\n9) eliscinsky: Discover G1 Eliscinsky B3 Alpha\n\n10) random56: Discover R1 Random56 Y2 Home\n\n11) eliscinsky: Build G1 Eliscinsky\n\n\nHomeworlds Online (SDG# 34476)\nVariants: "Hard time"\nStarted: 2018.8.16, Ended: 2018.8.21\nParticipants: speardane (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y2 B3 G3 Dlwillson\n\n2) speardane: Homeworld Y1 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) speardane: Build G1 Speardane\n\tdlwillson: Belated GL & HF!\n\n5) dlwillson: T G1 Y1 Dlwillson\n\tspeardane: Good luck!\n\n6) speardane: Trade G3 R3 Speardane\n\n7) dlwillson: B Y1 Dlwillson\n\n8) speardane: Build G1 Speardane\n\tdlwillson: ?!?\n\n9) dlwillson: Discover Y1 Dlwillson B1 Sea\n\n10) speardane: Discover G1 Speardane B3 Delos\n\n11) dlwillson: Build G1 Dlwillson\n\n12) speardane: Build G2 Delos\n\n13) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sea\nBuild Y2 Sea\nBuild Y3 Dlwillson\n\n14) speardane: Trade G1 R1 Delos\n\n15) dlwillson: T Y3 R3 Dlwillson\n\n16) speardane: Build R1 Delos\n\n17) dlwillson: Build Y3 Dlwillson\n\n18) speardane: Sacrifice R1 Delos\nPass\n\n19) dlwillson: Discover Y3 Dlwillson G1 Field\n\n20) speardane: Build G2 Speardane\n\n21) dlwillson: Build Y3 Field\n\n22) speardane: Discover G1 Speardane Y3 Lebling\n\n23) dlwillson: M Y3 Field Delos\n\n24) speardane: Build G2 Delos\n\n25) dlwillson: S R3 Dlwillson\nA G2 Delos\nA G2 Delos\nA R1 Delos\n\n26) speardane: Build G3 Speardane\n\n27) dlwillson: S Y2 Sea\nM G2 Delos Speardane\nM G2 Delos Speardane\nC Speardane G\n\n28) speardane: Move G1 Lebling Speardane\n\n29) dlwillson: M Y3 Field Delos\n\n30) speardane: Build R1 Speardane\n\n31) dlwillson: T Y3 G3 Delos\n\n32) speardane: Trade R3 Y3 Speardane\n\n33) dlwillson: Sacrifice Y2 Sea\nMove Y3 Delos Speardane\nMove Y1 Sea Delos\n\n34) speardane: Attack Y3 Speardane\n\n35) dlwillson: M Y1 Delos Speardane\nC Speardane Y\n\n36) speardane: Trade R1 Y1 Speardane\n\n37) dlwillson: S Y1 Dlwillson\nM G3 Delos Speardane\n\n38) speardane: Trade Y1 R1 Speardane\n\n39) dlwillson: S R1 Delos\nA R1 Speardane\n\n40) speardane: Pass\n\n41) dlwillson: A G1 Speardane\n\n\tspeardane: Good game!\n\tdlwillson: Good game! Thank you!\n\nHomeworlds Online (SDG# 34478)\nVariants: "Hard time"\nStarted: 2018.8.17, Ended: 2018.8.26\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: Homeworld B3 Y2 G3\n\n2) Trydnt: Homeworld G2 B1 Y3\n\n3) wil: Build G1 Wil\n\n4) Trydnt: Build Y1 Trydnt\n\twil: no short uni! lol, let the games begin...I'll go record we started.\n\n5) wil: Build G1 Wil\n\n6) Trydnt: Trade Y1 B1 Trydnt\n\tTrydnt: haha no I just saw blue and yellow and thought you were up to your old tricks (h b2 y1 g3) I think this will be an interesting game\n\n7) wil: Trade G1 B1 Wil\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: Build B2 Wil\n\n10) Trydnt: Trade B1 R1 Trydnt\n\n11) wil: Build G1 Wil\n\n12) Trydnt: Build R1 Trydnt\n\n13) wil: Discover G1 Wil Y1 Y1\n\n14) Trydnt: Build B1 Trydnt\n\n15) wil: Move B2 Wil Y1\n\n16) Trydnt: Build R1 Trydnt\n\n17) wil: Build B2 Y1\n\n18) Trydnt: Discover B1 Trydnt G3 G3\n\n19) wil: Move B2 Y1 G3\n\n20) Trydnt: Build B3 Trydnt\n\n21) wil: Build B3 Y1\n\n22) Trydnt: Build Y1 Trydnt\n\n23) wil: Trade B2 R2 G3\n\n24) Trydnt: Move B3 Trydnt G3\n\n25) wil: Move B2 Y1 G3\n\n26) Trydnt: Trade B3 Y3 G3\n\n27) wil: Build R2 G3\n\n28) Trydnt: Move R1 Trydnt G3\n\n29) wil: Trade B2 Y2 G3\n\n30) Trydnt: Build R2 G3\nCatastrophe G3 R\n\n31) wil: Trade G1 R1 Wil\n\n32) Trydnt: Sacrifice R1 Trydnt\nAttack Y2 G3\n\n33) wil: Build B2 Y1\n\n34) Trydnt: Build B2 G3\n\n35) wil: Trade B2 Y2 Y1\n\n36) Trydnt: Discover B2 G3 G1 G1\n\n37) wil: Discover Y2 Y1 G3 Gee3\n\n38) Trydnt: Move Y2 G3 G1\n\n39) wil: Build G1 Wil\n\n40) Trydnt: Trade B2 G2 Trydnt\n\n41) wil: Trade B3 Y3 Y1\n\n42) Trydnt: Build B2 G1\n\n43) wil: Move B1 Wil G1\n\n44) Trydnt: Trade B2 R2 G1\n\n45) wil: S G3 Wil\nBuild G2 Y1\nBuild G3 Wil\nBuild B2 G1\n\n46) Trydnt: Sacrifice R2 G1\nAttack B2 G1\nAttack B1 G1\n\n47) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild R1 Wil\nBuild R2 Wil\n\n48) Trydnt: Build Y1 G3\n\n49) wil: Move R1 Wil Y1\n\n50) Trydnt: Trade B2 R2 G1\n\n51) wil: Move R1 Wil G1\n\n52) Trydnt: Sacrifice R2 G1\nAttack R1 G1\nPass\n\n53) wil: Build R2 Y1\n\n54) Trydnt: Sacrifice G2 Trydnt\nBuild R2 Trydnt\nBuild R3 G1\n\n55) wil: Discover R1 Y1 B3 B3\n\n56) Trydnt: Discover Y1 Trydnt R3 R3\n\n57) wil: Sacrifice G3 Wil\nBuild G2 Y1\nBuild G3 Wil\nBuild R3 B3\n\n58) Trydnt: Move R1 Trydnt G3\n\n59) wil: Move G1 Y1 G3\n\n60) Trydnt: Sacrifice Y2 G1\nMove Y1 G3 Y1\nMove Y1 R3 Y1\nCatastrophe Y1 Y\n\n61) wil: Sacrifice G3 Wil\nBuild G2 G3\nBuild G2 G3\nBuild G3 Wil\nCatastrophe G3 G\n\n62) Trydnt: Trade R3 Y3 G1\n\n63) wil: T R3 Y3 B3\n\n64) Trydnt: Build Y1 G1\n\n65) wil: Trade G1 B1 Wil\n\n66) Trydnt: Build Y1 Trydnt\n\n67) wil: Discover B1 Wil G1 Gee1\n\twil: Let's clear the board!\r\n\n\n68) Trydnt: Discover Y1 G1 G3 G3\n\n69) wil: B G1 Wil\n\n70) Trydnt: Move B2 G1 G3\n\n71) wil: B G2 Wil\n\n72) Trydnt: Build B2 G1\n\n73) wil: D G2 Wil Y1 Y1\n\n74) Trydnt: Build Y2 G1\n\twil: He's back!\n\n75) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB R1 B3\n\n76) Trydnt: Move Y3 G1 Gee3\n\n77) wil: Sacrifice G3 Wil\nBuild G3 Wil\nBuild B2 Gee1\nBuild B3 Gee1\n\n78) Trydnt: Move B2 G3 Gee1\nCatastrophe Gee1 B\n\n79) wil: Discover Y2 Gee3 G1 Gee1\n\n80) Trydnt: Build B1 G1\n\n81) wil: S G3 Wil\nB G3 Wil\nB R2 B3\nB R3 Wil\n\n82) Trydnt: Build R3 G1\n\n83) wil: S Y2 Gee1\nM R1 B3 G1\nM R1 B3 G1\nC G1 R\n\n84) Trydnt: Build Y2 G3\n\n85) wil: M R3 Wil G1\n\n86) Trydnt: Sacrifice Y3 Gee3\nMove B2 G1 Wil\nMove B1 G1 Wil\nMove B1 G1 Wil\nCatastrophe Wil B\n\n87) wil: Attack Y2 G1\n\n88) Trydnt: Sacrifice Y3 Trydnt\nMove Y1 G3 Wil\nMove Y2 G3 Wil\nDiscover Y1 Trydnt B3 Be3\n\n89) wil: S Y3 B3\nM R3 G1 B3\nM R3 B3 Trydnt\nM Y2 G1 Wil\nC Wil Y\n\n\tTrydnt: You had me worried when we blew everything up and started over haha well played!\n\nHomeworlds Online (SDG# 34480)\nVariants: "Hard time"\nStarted: 2018.8.17, Ended: 2018.9.3\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R1 B3 G3 Dlwillson\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) dlwillson: Build G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\tdlwillson: Good luck! Have fun!\n\tTrydnt: same to you! \n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) dlwillson: Build Y2 Dlwillson\n\n8) Trydnt: Build Y2 Trydnt\n\n9) dlwillson: D Y1 Dlwillson B2 Sea\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) dlwillson: B G1 Dlwillson\n\n12) Trydnt: Build G1 Trydnt\n\n13) dlwillson: M G1 Dlwillson Sea\n\n14) Trydnt: Trade G1 R1 Trydnt\n\n15) dlwillson: B G1 Sea\n\n16) Trydnt: Build R1 Trydnt\n\n17) dlwillson: B Y2 Dlwillson\n\n18) Trydnt: Build Y3 G3\n\n19) dlwillson: B Y3 Sea\n\n20) Trydnt: Discover Y1 G3 G2 G2\n\n21) dlwillson: Trade Y2 R2 Dlwillson\n\n22) Trydnt: Build R2 Trydnt\n\n23) dlwillson: T Y3 R3 Sea\n\n24) Trydnt: Move R1 Trydnt G3\n\n25) dlwillson: B G1 Dlwillson\n\n26) Trydnt: Build G2 Trydnt\n\n27) dlwillson: Sacrifice G3 Dlwillson\nBuild G2 Sea\nBuild Y2 Sea\nBuild Y3 Dlwillson\n\n28) Trydnt: Build Y3 G2\n\n29) dlwillson: B G3 Dlwillson\n\n30) Trydnt: Trade R2 B2 Trydnt\n\n31) dlwillson: D G2 Sea B3 Sky\n\n32) Trydnt: Build R2 G3\n\n33) dlwillson: S Y3 Dlwillson\nM G1 Sea Sky\nM G2 Sky Trydnt\nM G1 Sky Trydnt\nC Trydnt G\n\n34) Trydnt: Build Y3 G3\n\n35) dlwillson: S Y2 Sea\nM R3 Sea G3\nM R3 G3 Trydnt\n\n36) Trydnt: Sacrifice Y3 G3\nMove R1 G3 Trydnt\nMove R2 G3 Trydnt\nCatastrophe Trydnt R\nDiscover Y2 Trydnt B3 B3\n\n37) dlwillson: Build G1 Sea\n\n38) Trydnt: Trade B2 R2 Trydnt\n\n39) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G2 Dlwillson\nB G3 Dlwillson\n\n40) Trydnt: Move Y3 G3 Trydnt\n\n41) dlwillson: B Y2 Sea\n\n42) Trydnt: Trade Y3 G3 Trydnt\n\n43) dlwillson: Discover G2 Sea Y3 Sol\n\n44) Trydnt: Build G3 Trydnt\n\n45) dlwillson: M G2 Sol Trydnt\n\n46) Trydnt: Sacrifice Y3 G2\nMove G3 Trydnt B3\nMove G3 B3 G2\nMove G3 G2 Dlwillson\nCatastrophe Dlwillson G\n\n47) dlwillson: Sacrifice R2 Dlwillson\nAttack R2 Trydnt\nPass\n\n48) Trydnt: Trade Y2 R2 B3\n\n49) dlwillson: B G1 Trydnt\n\n50) Trydnt: Trade G3 B3 Trydnt\n\n51) dlwillson: T R2 B2 Trydnt\n\n52) Trydnt: Sacrifice R2 B3\nAttack B2 Trydnt\nAttack G1 Trydnt\n\n53) dlwillson: S G2 Trydnt\nB Y2 Sea\nB Y3 Dlwillson\n\n54) Trydnt: Build Y3 G2\n\n55) dlwillson: T Y3 G3 Dlwillson\n\n56) Trydnt: Discover Y1 G2 G3 G3\n\n57) dlwillson: T Y1 B1 Sea\n\tdlwillson: Well played! I thought I had you.\n\n58) Trydnt: Trade B3 G3 Trydnt\n\n59) dlwillson: D Y2 Sea B3 Sky\n\n60) Trydnt: Move B2 Trydnt G3\n\n61) dlwillson: B G2 Dlwillson\n\n62) Trydnt: Discover G1 Trydnt Y3 Y3\n\n63) dlwillson: T G1 R1 Sea\n\n64) Trydnt: Trade Y1 R1 G3\n\n65) dlwillson: Sacrifice G3 Dlwillson\nBuild Y1 Sea\nBuild Y1 Sky\nBuild Y3 Dlwillson\n\n66) Trydnt: Build R2 G3\n\n67) dlwillson: T Y3 G3 Dlwillson\n\n68) Trydnt: Build B1 G3\n\n69) dlwillson: T Y2 G2 Sky\n\n70) Trydnt: Trade R2 Y2 G3\n\n71) dlwillson: S G3 Dlwillson\nB G1 Sky\nB Y3 Sky\nB G3 Dlwillson\n\n72) Trydnt: Build R2 G3\n\n73) dlwillson: D G1 Sea B3 Alsosky\n\n74) Trydnt: Move B1 G3 G2\n\n75) dlwillson: Sacrifice Y3 Sky\nMove G1 Sky Trydnt\nMove G2 Sky Trydnt\nMove G1 Alsosky Trydnt\nCatastrophe Trydnt G\n\n\tdlwillson: Good game! Thank you!\n\tTrydnt: Ugh bluebirded. Terrible way to go out. Good game!\n\nHomeworlds Online (SDG# 34343)\nVariants: "Unrated, Hard time"\nStarted: 2018.8.19, Ended: 2018.10.14\nParticipants: mneme (S), dragon76n (N)\nWinner: mneme\n\n1) dragon76n: Homeworld Y1 B3 G3\n\n2) mneme: Homeworld B1 G3 Y3\n\n3) dragon76n: Build G1 Dragon76n\n\n4) mneme: Build Y1 Mneme\n\n5) dragon76n: Trade G1 Y1 Dragon76n\n\n6) mneme: Build Y2 Mneme\n\n7) dragon76n: Build G1 Dragon76n\n\tmneme: I can't tell quite from the setup -- is this a tournament game?\r\n\n\tdragon76n: Tournament game? no...\n\n8) mneme: Discover Y1 Mneme B2 Caliope\n\tmneme: I didn't think so, but just wanted to make sure; I'm in like 2 tournament games right now, so... :) \r\nGood luck & have fun!\r\n\n\n9) dragon76n: Trade G1 R1 Dragon76n\n\tmneme: Just to make sure: Remember that this is a small universe game.\n\tdragon76n: Ok. I haven't played any tournament games. What is different about it?\n\n10) mneme: Trade Y2 R2 Mneme\n\n11) dragon76n: Move Y1 Dragon76n Caliope\n\tmneme: There's an annual tournament running now on a ladder. It's run external to SDG, but using sdg for the games.\r\n\r\nhttps://docs.google.com/forms/d/e/1FAIpQLScy1bEYjqRjH_ghRgqyrt2Pp5Y1E-XleIZPiPyHWsj1v-0Rkw/viewform\r\n\r\nIt's technically still open if you want to get into it -- it's running as a round robin, so you challenge people in it in games until you're in as many games as you want to, and the winner is the one with the best record overall.\n\n12) mneme: Move R2 Mneme Caliope\n\tdragon76n: Thanks for the info about the tournament. \n\n13) dragon76n: D Y1 Caliope B1 Bluone\n\n14) mneme: Build Y2 Mneme\n\n15) dragon76n: T Y1 G1 Bluone\n\n16) mneme: Build Y1 Mneme\n\n17) dragon76n: B G1 Bluone\n\n18) mneme: Trade Y3 G3 Mneme\n\n19) dragon76n: T G1 B1 Bluone\n\n20) mneme: Move R2 Caliope Bluone\n\n21) dragon76n: S B1 Bluone\nT G1 R1 Bluone\n\n22) mneme: Attack R1 Bluone\n\n23) dragon76n: B G1 Dragon76n\n\n24) mneme: Sacrifice G3 Mneme\nBuild Y2 Caliope\nBuild Y2 Caliope\nBuild Y3 Mneme\n\n25) dragon76n: Discover G1 Dragon76n R2 Redtwo\n\n26) mneme: Trade Y3 G3 Mneme\n\tdragon76n: Feels like I'm way behind in this one... \n\tmneme: some of my early moves were pretty brutal. \n\n27) dragon76n: B G1 Dragon76n\n\n28) mneme: Move Y2 Caliope Bluone\n\n29) dragon76n: Build G1 Redtwo\n\n30) mneme: Sacrifice G3 Mneme\nBuild Y3 Mneme\nBuild Y3 Bluone\nBuild Y3 Caliope\n\n31) dragon76n: Discover G1 Dragon76n R2 Reddup\n\tdragon76n: Uh oh\n\n32) mneme: Trade Y3 G3 Caliope\n\n33) dragon76n: B G2 Dragon76n\n\n34) mneme: Build Y3 Caliope\n\n35) dragon76n: S G3 Dragon76n\nB G2 Reddup\nB G2 Redtwo\nB G3 Dragon76n\n\n36) mneme: Sacrifice Y2 Bluone\nMove Y3 Caliope Dragon76n\nMove G3 Caliope Dragon76n\n\n37) dragon76n: Sacrifice G3 Dragon76n\nBuild G3 Dragon76n\nBuild R1 Dragon76n\nBuild R3 Dragon76n\n\n38) mneme: Sacrifice R2 Bluone\nAttack R3 Dragon76n\nAttack G3 Dragon76n\n\n39) dragon76n: Sacrifice G2 Redtwo\nBuild R2 Dragon76n\nCatastrophe Dragon76n R\nBuild G2 Dragon76n\n\n40) mneme: Catastrophe Dragon76n G\nTrade Y3 G3 Mneme\n\n\tmneme: Good game!\r\n\n\nHomeworlds Online (SDG# 34468)\nVariants: "Hard time"\nStarted: 2018.8.19, Ended: 2018.9.1\nParticipants: dlwillson (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B2 Y3 G3\n\n2) dlwillson: H Y3 B1 G3\n\n3) ajo: Build G1 Ajo\n\n4) dlwillson: B G1 Dlwillson\n\n5) ajo: Trade G1 B1 Ajo\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) ajo: Discover B1 Ajo G1 Alpha\n\n8) dlwillson: Build B2 Dlwillson\n\n9) ajo: Build B2 Alpha\n\tdlwillson: Good luck and have fun!\n\tajo: You too!\n\n10) dlwillson: D B1 Dlwillson G2 Field\n\n11) ajo: Build B3 Alpha\n\n12) dlwillson: B B3 Field\n\n13) ajo: Trade B2 Y2 Alpha\n\n14) dlwillson: T B1 R1 Field\n\n15) ajo: Build G1 Ajo\n\n16) dlwillson: Build R1 Field\n\n17) ajo: Trade B1 R1 Alpha\n\n18) dlwillson: Trade R1 Y1 Field\n\n19) ajo: Discover G1 Ajo B1 Beta\n\n20) dlwillson: T B2 R2 Dlwillson\n\n21) ajo: Build G1 Ajo\n\n22) dlwillson: B G2 Dlwillson\n\n23) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G3 Ajo\nBuild G3 Beta\n\n24) dlwillson: S G3 Dlwillson\nB Y1 Field\nB B1 Field\nB G3 Dlwillson\n\n25) ajo: Trade G2 R2 Ajo\n\n26) dlwillson: T G2 Y2 Dlwillson\n\n27) ajo: Sacrifice G3 Ajo\nBuild G2 Ajo\nBuild G2 Beta\nBuild G3 Ajo\n\n28) dlwillson: Build R1 Field\n\n29) ajo: Sacrifice G3 Beta\nBuild G3 Beta\nBuild B2 Alpha\nBuild Y1 Alpha\n\n30) dlwillson: D R1 Field B3 Sky\n\n31) ajo: Sacrifice Y2 Alpha\nMove G3 Beta Sky\nDiscover G2 Beta B2 Gamma\n\n32) dlwillson: S Y1 Field\nD R1 Sky Y1 Sol\n\n33) ajo: Discover B2 Alpha Y2 Delta\n\n34) dlwillson: M B3 Field Beta\n\n35) ajo: Sacrifice G1 Beta\nBuild G1 Gamma\n\n36) dlwillson: Sacrifice Y1 Field\nMove B3 Beta Gamma\n\n37) ajo: Sacrifice G2 Gamma\nBuild G2 Sky\nBuild B1 Delta\n\n38) dlwillson: S G3 Dlwillson\nB R2 Field\nB R3 Dlwillson\nB R3 Sol\n\n39) ajo: Sacrifice G1 Gamma\nBuild R3 Alpha\n\n40) dlwillson: Trade B3 G3 Gamma\n\n41) ajo: Sacrifice G2 Ajo\nBuild B3 Alpha\nBuild Y1 Alpha\n\n42) dlwillson: B G1 Gamma\n\n43) ajo: Trade G3 Y3 Sky\n\n44) dlwillson: T R2 Y2 Field\n\n45) ajo: Move B3 Alpha Field\n\n46) dlwillson: S Y2 Field\nM G3 Gamma Sol\nM G1 Gamma Sol\n\n47) ajo: Sacrifice Y3 Sky\nMove G2 Sky Sol\nMove G1 Ajo Sol\nMove R3 Alpha Delta\nCatastrophe Sol Green\n\n48) dlwillson: T R2 G2 Dlwillson\n\n49) ajo: Build R2 Ajo\n\n50) dlwillson: S G2 Dlwillson\nB B2 Field\nB B3 Field\nC Field B\n\n51) ajo: Build Y2 Alpha\n\n52) dlwillson: T Y2 G2 Dlwillson\n\n53) ajo: Move Y2 Alpha Field\n\n54) dlwillson: B R2 Dlwillson\n\n55) ajo: Sacrifice R1 Alpha\nAttack R1 Field\n\n56) dlwillson: M R3 Sol Field\n\n57) ajo: Sacrifice Y2 Field\nMove R1 Field Dlwillson\nMove R3 Delta Dlwillson\nCatastrophe Dlwillson Red\n\n58) dlwillson: Build G1 Dlwillson\n\n59) ajo: Build Y2 Alpha\n\n60) dlwillson: T G2 Y2 Dlwillson\n\n61) ajo: Sacrifice Y2 Alpha\nMove B3 Alpha Delta\nMove B3 Delta Dlwillson\n\n62) dlwillson: B Y2 Dlwillson\n\n63) ajo: Sacrifice R2 Ajo\nAttack Y2 Dlwillson\nAttack Y2 Dlwillson\n\n\tdlwillson: Good game! Well played! I should have resigned a couple moves ago, but I was hoping you'd make a mistake.\n\tajo: Good game. :)\n\nHomeworlds Online (SDG# 34487)\nVariants: "Hard time"\nStarted: 2018.8.19, Ended: 2018.9.13\nParticipants: eliscinsky (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) eliscinsky: Homeworld R1 B2 G3\n\n3) Draw5PlayAll: Homeworld B3 R2 G3\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\n10) eliscinsky: Trade G1 R1 Eliscinsky\n\n11) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) eliscinsky: T G1 B1 Eliscinsky\n\n15) Draw5PlayAll: Discover R2 Draw5playall G1 Epa\n\n16) eliscinsky: D R1 Eliscinsky G3 Doe\n\n17) Draw5PlayAll: Build G1 Draw5playall\n\n18) eliscinsky: Build B1 Eliscinsky\n\tDraw5PlayAll: Next blue system: NAFTA?\n\n19) Draw5PlayAll: Trade G1 B1 Draw5playall\n\teliscinsky: Sure, that would be appropriate. Then red star NSA. haha!\r\n\r\nNot sure what the yellow star would be.\n\teliscinsky: Oh yeah, DOT for yellow.\n\n20) eliscinsky: Build R2 Doe\n\n21) Draw5PlayAll: Build R3 Epa\n\n22) eliscinsky: Move B1 Eliscinsky Doe\n\n23) Draw5PlayAll: Move B1 Draw5playall Epa\n\n24) eliscinsky: Sacrifice Y1 Eliscinsky\nDiscover R2 Doe Y1 Dot\n\n25) Draw5PlayAll: Build R3 Epa\n\n26) eliscinsky: Trade B1 Y1 Eliscinsky\n\n27) Draw5PlayAll: Build Y2 Draw5playall\n\n28) eliscinsky: B R3 Doe\n\n29) Draw5PlayAll: Trade R3 Y3 Epa\n\n30) eliscinsky: T R3 Y3 Doe\n\n31) Draw5PlayAll: Trade R2 B2 Epa\n\tDraw5PlayAll: Yellow should be NASA and FTA\n\tDraw5PlayAll: Red should be DoD or.... not sure\n\teliscinsky: Yeah, I like those.\n\teliscinsky: I choose Department of Transportation. \n\teliscinsky: I choose Department of Transportation. \n\n32) eliscinsky: S Y3 Doe\nM R1 Doe Dot\nM R1 Dot Draw5playall\nM R2 Dot Draw5playall\nC Draw5playall Red\n\n33) Draw5PlayAll: Move Y3 Epa Doe\n\n34) eliscinsky: T B1 Y1 Doe\n\n35) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove G3 Draw5playall Eliscinsky\nMove Y3 Doe Eliscinsky\n\n36) eliscinsky: M Y1 Doe Eliscinsky\n\n37) Draw5PlayAll: Sacrifice R3 Epa\nAttack G3S Eliscinsky\nAttack Y1S Eliscinsky\nAttack Y1S Eliscinsky\n\n\tDraw5PlayAll: Good try\n\teliscinsky: Thanks for the game. Good luck in the tourney!\n\tDraw5PlayAll: Wait was this a tournament game?\n\tBabamots: Yes, this game was reported as being part of the tournament.\n\nHomeworlds Online (SDG# 34489)\nVariants: "Hard time"\nStarted: 2018.8.20, Ended: 2018.10.1\nParticipants: speardane (S), DodoBirb (N)\nWinner: speardane\n\n1) DodoBirb: Homeworld B1 R3 G3\n\n2) speardane: Homeworld R2 B3 G3\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) speardane: Build G1 Speardane\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) speardane: Trade G3 Y3 Speardane\n\n7) DodoBirb: Build Y1 Dodobirb\n\n8) speardane: Build G1 Speardane\n\n9) DodoBirb: Discover Y1 Dodobirb G2 Goat\n\n10) speardane: Discover G1 Speardane B1 Delos\n\n11) DodoBirb: Trade Y1 B1 Dodobirb\n\n12) speardane: Build Y1 Speardane\n\n13) DodoBirb: Build Y1 Goat\n\n14) speardane: Move Y1 Speardane Delos\n\n15) DodoBirb: Discover Y1 Goat G1 Farm\n\n16) speardane: Build G2 Delos\n\n17) DodoBirb: Build G2 Dodobirb\n\n18) speardane: Sacrifice G2 Delos\nBuild G2 Speardane\nBuild G3 Speardane\n\n19) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild Y2 Farm\nBuild Y2 Goat\n\n20) speardane: Sacrifice G3 Speardane\nBuild Y2 Delos\nBuild Y3 Delos\nBuild G3 Speardane\n\n21) DodoBirb: Move Y1 Goat Delos\nCatastrophe Delos Y\n\n22) speardane: Trade G3 R3 Speardane\n\n23) DodoBirb: Trade G3 R3 Dodobirb\n\n24) speardane: Move R3 Speardane Farm\n\n25) DodoBirb: Build G3 Dodobirb\n\n26) speardane: Attack Y2 Farm\n\n27) DodoBirb: Trade G3 Y3 Dodobirb\n\n28) speardane: Sacrifice G2 Speardane\nBuild G2 Delos\nBuild R1 Farm\n\n29) DodoBirb: Move R3 Dodobirb Goat\n\n30) speardane: Trade G1 Y1 Delos\n\n31) DodoBirb: Build B2 Dodobirb\n\n32) speardane: Build Y1 Delos\n\n33) DodoBirb: Trade B2 R2 Dodobirb\n\n34) speardane: Trade Y1 R1 Delos\n\n35) DodoBirb: Move B1 Dodobirb Goat\n\n36) speardane: Build Y1 Speardane\n\n37) DodoBirb: Build B2 Goat\n\n38) speardane: Build Y2 Delos\n\n39) DodoBirb: Build Y3 Dodobirb\n\n40) speardane: Discover Y1 Speardane G1 Lebling\n\n41) DodoBirb: Discover B1 Goat G3 Middle\n\n42) speardane: Build G3 Speardane\n\n43) DodoBirb: Build G3 Dodobirb\n\n44) speardane: Move Y2 Delos Middle\n\n45) DodoBirb: Build B2 Middle\n\n46) speardane: Sacrifice R1 Farm\nAttack B2 Middle\n\n47) DodoBirb: Sacrifice G2 Dodobirb\nBuild B2 Middle\nBuild B3 Middle\nCatastrophe Middle B\n\n48) speardane: Sacrifice G3 Speardane\nBuild R1 Delos\nBuild G2 Speardane\nBuild G3 Delos\n\n49) DodoBirb: Build B1 Goat\n\n50) speardane: Sacrifice G3 Delos\nBuild R1 Farm\nBuild R2 Delos\nBuild G3 Speardane\n\n51) DodoBirb: Build B2 Goat\n\n52) speardane: Trade G2 B2 Speardane\n\n53) DodoBirb: Move B2 Goat Dodobirb\n\n54) speardane: Sacrifice B2 Speardane\nTrade R3 B3 Farm\nTrade Y2 B2 Middle\n\n55) DodoBirb: Build R3 Goat\n\n56) speardane: Sacrifice G3 Speardane\nBuild G2 Speardane\nBuild G3 Speardane\nBuild B3 Middle\n\n57) DodoBirb: Build Y2 Goat\n\n58) speardane: Sacrifice Y2 Farm\nMove R1 Delos Goat\nMove R1 Delos Goat\nCatastrophe Goat Red\n\n59) DodoBirb: Move R2 Dodobirb Goat\n\n60) speardane: Sacrifice Y1 Lebling\nMove B3 Middle Goat\n\n61) DodoBirb: Sacrifice Y2 Goat\nDiscover Y2 Goat G1 Newgoat\nMove R2 Goat Newgoat\n\n62) speardane: Move G3 Speardane Newgoat\n\n63) DodoBirb: Discover Y3 Dodobirb Y2 Moveout\n\n64) speardane: Sacrifice R2 Delos\nAttack R2 Newgoat\nAttack Y2 Newgoat\n\n65) DodoBirb: Trade B2 R2 Dodobirb\n\n66) speardane: Attack Y1 Farm\n\n67) DodoBirb: Move Y3 Moveout Delos\n\n68) speardane: Sacrifice G3 Newgoat\nBuild Y1 Delos\nBuild Y2 Delos\nBuild G3 Delos\nCatastrophe Delos Yellow\n\n69) DodoBirb: Build Y1 Dodobirb\n\n70) speardane: Sacrifice G3 Delos\nBuild G3 Delos\nBuild Y1 Speardane\nBuild Y2 Newgoat\n\n71) DodoBirb: Build B2 Goat\nCatastrophe Goat B\n\n72) speardane: Sacrifice Y2 Newgoat\nDiscover Y1 Speardane B1 Lebling\nMove G1 Speardane Lebling\n\n73) DodoBirb: Trade R2 B2 Dodobirb\n\n74) speardane: Sacrifice G3 Delos\nBuild G2 Delos\nBuild Y2 Speardane\nBuild G3 Lebling\n\n75) DodoBirb: Discover Y3 Dodobirb R2 Red\n\n76) speardane: Sacrifice G3 Lebling\nBuild Y2 Farm\nBuild G3 Speardane\nBuild Y3 Lebling\n\n\tDraw5PlayAll: Time forfeit?\n\tDodoBirb: No, I forfeited by choice. I felt like I made too many mistakes to comeback. I decided that I would just take what I learned and use it in a different match.\n\nHomeworlds Online (SDG# 34440)\nVariants: "Hard time"\nStarted: 2018.8.20, Ended: 2018.8.26\nParticipants: zeder (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: Hey zeder! I didn't hear back from you by email or PM, so I'm still wondering if you want to be in the tournament. Does this game mean yes?\n\n2) zeder: Homeworld Y1 B2 G3\n\n3) Babamots: Build G1 Babamots\n\tzeder: Yes please\n\tBabamots: Great! You're back on the list. Good luck!\n\n4) zeder: Build G1 Zeder\n\n5) Babamots: Trade G1 Y1 Babamots\n\n\tBabamots: Looks like you've timed out of all your tournament games. If you still want to be in the tournament, let me know. I bet your opponents (including me) would be willing to forget these partial games and start over.\n\nHomeworlds Online (SDG# 34455)\nVariants: "Hard time"\nStarted: 2018.8.20, Ended: 2018.8.26\nParticipants: dlwillson (S), zeder (N)\nWinner: dlwillson\n\n1) zeder: Homeworld Y1 B2 G3\n\n2) dlwillson: H B3 Y1 G3\n\n3) zeder: Build G1 Zeder\n\n4) dlwillson: B G1 Dlwillson\n\n\nHomeworlds Online (SDG# 34457)\nVariants: "Hard time"\nStarted: 2018.8.20, Ended: 2018.8.26\nParticipants: zeder (S), speardane (N)\nWinner: speardane\n\n1) speardane: Homeworld Y2 G3 B3\n\n2) zeder: Homeworld B2 Y3 G3\n\n3) speardane: Build B1 Speardane\n\n4) zeder: Build G1 Zeder\n\n5) speardane: Trade B1 R1 Speardane\n\n\nHomeworlds Online (SDG# 34469)\nVariants: "Hard time"\nStarted: 2018.8.22, Ended: 2018.9.2\nParticipants: dlwillson (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) dlwillson: H Y2 B3 G3\n\tBabamots: For the record, this is for the tournament. Good luck!\n\n3) Babamots: Build G1 Babamots\n\tdlwillson: Good luck to you, too, and have fun!\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) Babamots: Build Y1 Babamots\n\n8) dlwillson: B R1 Dlwillson\n\n9) Babamots: Build Y1 Babamots\n\n10) dlwillson: B R2 Dlwillson\n\n11) Babamots: Discover Y1 Babamots G3 Orion\n\n12) dlwillson: T R2 Y2 Dlwillson\n\n13) Babamots: Sacrifice G3 Babamots\nBuild Y2 Orion\nBuild Y3 Orion\nBuild Y3 Babamots\n\n14) dlwillson: Discover Y2 Dlwillson G1 Field\n\n15) Babamots: Move Y1 Orion Field\n\n16) dlwillson: M R1 Dlwillson Field\n\n17) Babamots: Build Y3 Field\n\n18) dlwillson: B G1 Dlwillson\n\n19) Babamots: Discover Y1 Field B3 Bolarus\n\tBabamots: Having only yellow is going to become a problem for me at some point. I'll have to see to that.\n\n20) dlwillson: S G3 Dlwillson\nB R2 Field\nB R2 Field\nB R2 Dlwillson\n\n21) Babamots: Trade Y3 R3 Babamots\n\n22) dlwillson: Build R3 Dlwillson\n\n23) Babamots: Sacrifice R3 Babamots\nAttack Y2 Field\nAttack R2 Field\nAttack R2 Field\n\n24) dlwillson: B R3 Field\nC Field R\n\n25) Babamots: Build Y3 Orion\n\n26) dlwillson: M R2 Dlwillson Field\n\n27) Babamots: Move Y2 Field Bolarus\n\n28) dlwillson: B R1 Field\n\tBabamots: If you surrender now, I'll spare your soldiers' lives :-P\n\n29) Babamots: Trade Y2 G2 Bolarus\n\tdlwillson: You only have triple my forces! Anything could happen!\n\n30) dlwillson: B R2 Dlwillson\n\n31) Babamots: Build Y2 Bolarus\n\n32) dlwillson: D R2 Dlwillson B1 Sea\n\n33) Babamots: Build G1 Bolarus\n\n34) dlwillson: B R2 Dlwillson\n\n35) Babamots: Trade G2 B2 Bolarus\n\n36) dlwillson: B R3 Field\n\n37) Babamots: Discover Y3 Field B3 Andoria\n\n38) dlwillson: M R1 Dlwillson Sea\n\n39) Babamots: Build B1 Bolarus\n\n40) dlwillson: B R3 Dlwillson\n\n41) Babamots: Discover B2 Bolarus G2 Romulus\n\n42) dlwillson: Trade R3 G3 Dlwillson\n\n43) Babamots: Discover Y1 Babamots R3 Nausicaa\n\n44) dlwillson: Trade G1 B1 Dlwillson\n\tBabamots: Well, I've counted that it could take me up to 22 moves (the same as the whole game to this point!), but I don't think you can stop me from winning now. That r3 you gave me makes it much easier, I'm afraid.\n\n45) Babamots: Build B2 Romulus\n\tdlwillson: Wait a couple moves, and you may have another.\n\n46) dlwillson: Build G1 Dlwillson\n\tBabamots: Thanks, but I shouldn't need it.\n\n47) Babamots: Move Y2 Bolarus Romulus\n\tdlwillson: Very good. I'll keep myself busy while you finish beating me. This particular strategy, I should not lose to, any more, given the number of times TwoShort either beat me with it. <sigh> I'm a slow learner.\n\tdlwillson: And a quick forgetter.\n\n48) dlwillson: M G1 Dlwillson Sea\n\tBabamots: When you say "this strategy," do you mean "hogging the yellow?"\n\n49) Babamots: Discover B1 Bolarus G2 Cardassia\n\n50) dlwillson: M B1 Dlwillson Field\n\n51) Babamots: Build G2 Bolarus\n\n52) dlwillson: B G3 Sea\n\n53) Babamots: Move G1 Bolarus Cardassia\n\n54) dlwillson: Pass\n\n55) Babamots: Move Y1 Bolarus Cardassia\n\n56) dlwillson: Pass\n\n57) Babamots: Sacrifice G2 Bolarus\nBuild G2 Cardassia\nBuild B3 Cardassia\n\tBabamots: This will take a while. We're only in step 2 of my 10-step plan.\n\tdlwillson: Take your time.\n\n58) dlwillson: Pass\n\n59) Babamots: Move B2 Romulus Nausicaa\n\n60) dlwillson: Pass\n\n61) Babamots: Move Y1 Nausicaa Romulus\n\n62) dlwillson: Pass\n\n63) Babamots: Sacrifice B2 Nausicaa\nTrade G2 B2 Cardassia\nTrade B3 R3 Cardassia\n\n64) dlwillson: S G3 Sea\nB G2 Dlwillson\nB B3 Field\nB G3 Sea\n\n65) Babamots: Move Y2 Romulus Andoria\n\n66) dlwillson: S R1 Field\nPass\n\n67) Babamots: Build R1 Cardassia\n\n68) dlwillson: Pass\n\n69) Babamots: Move Y3 Orion Romulus\n\n70) dlwillson: Pass\n\n71) Babamots: Move Y3 Andoria Cardassia\n\n72) dlwillson: Pass\n\n73) Babamots: Move Y1 Cardassia Andoria\n\n74) dlwillson: Pass\n\n75) Babamots: Sacrifice Y1 Romulus\nDiscover R3 Cardassia Y1 Iconia\n\n76) dlwillson: Pass\n\n77) Babamots: Move B1 Cardassia Iconia\n\n78) dlwillson: Pass\n\tdlwillson: It's happening!\n\n79) Babamots: Move B2 Cardassia Iconia\n\n80) dlwillson: Pass\n\tdlwillson: <sigh> It's not happening...\n\tBabamots: I thought I saw a way that if I moved all three blues at once you could interfere. Maybe it was just paranoia.\n\n81) Babamots: Move B2 Romulus Iconia\n\n82) dlwillson: Pass\n\tBabamots: Yeah, if I sacrifice a y3 now, you can trade for the y3 and then do a green catastrophe on Orion, which would still have a yellow ship I needed on it. I think I would still win, but I'm not in the mood for uncertainty.\n\tBabamots: Like young Zaphod, I play it safe.\n\n83) Babamots: Sacrifice Y3 Orion\nMove B2 Iconia Dlwillson\nMove B2 Iconia Dlwillson\nMove B1 Iconia Dlwillson\nCatastrophe Dlwillson B\n\tBabamots: Sorry that I took so long to move that time. I mistyped a move right after you passed but didn't notice the error message because I was watching Jurassic Park. I blame it on the dinosaurs.\n\n\tdlwillson: Good game. Well played.\n\tBabamots: sacrifice y3 Romulus\r\nmove y2 Orion dlwillson\r\nmove y2 Andoria dlwillson\r\nmove y1 Andoria dlwillson\r\ncatastrophe dilwillson y\n\tBabamots: Good game! And good luck with the rest of the tournament!\n\tFelix: Wow, very interesting. I just got around to studying this game. I've actually never seen this situation before. I guess I didn't play against TwoShort enough! Super interesting (for one player, at any rate!)\n\tDraw5PlayAll: What does this have to do with TwoShort?\n\tBabamots: dlwillson indicated that TwoShort favors/favored yellow-domination play.\n\nHomeworlds Online (SDG# 34483)\nVariants: "Unrated"\nStarted: 2018.8.23, Ended: 2018.9.6\nParticipants: Babamots (S), eliscinsky (N)\nWinner: Babamots\n\n1) eliscinsky: H R1 B2 G3\n\teliscinsky: Sensei, I amd eager for your instruction of my humble self.\n\n2) Babamots: Homeworld Y3 G2 B3\n\teliscinsky: Using a basic starting Homeworld. The one Andy and others say is a good place to start.\n\teliscinsky: Also, since we have not played each other in the tourney yet, hopefully I will become a better player for that match.\n\tBabamots: I believe that your opening move is the strongest one if you go first. I'm deliberately taking an opening that I consider less good.\n\n3) eliscinsky: B G1 Eliscinsky\n\tBabamots: And for anyone who's observing, this is a teaching game and not for the tournament.\n\tBabamots: Side note, there's a tricky thing I've seen a few times lately that you should know about. If you are moving first, the only safe color to have as a small system marker is red (yellow isn't too bad though). If you have a b1 or g1 for a home marker, your opponent can usually choose their homeworld to lock you out of that color.\r\n\r\nSay you chose the slightly different opening move\r\n\r\n1. homeworld r2 b1 g3\r\n\r\nThen I could lock you out of blue with\r\n\r\n1... homeworld g3 b1 b3\r\n2. build g1 eliscinsky\r\n2... build b1 Babamots\r\n\r\nI just have to trade my b3 for y3 to have a pretty normal position and quick access to medium pieces (b2) while you can't get blue ships for a while.\r\n\r\nI could do a similar thing if you had a g1 for a home marker or even yellow, but in the yellow case, I would end up with only green and yellow in my home world and have to discover a blue system before my position stopped being very weird.\n\n4) Babamots: Build B1 Babamots\n\teliscinsky: I suppose the 1st several rounds will be building up.\r\n\r\nAlso, after this move I'll be resigned to mostly playing outside of work hours. :)\n\n5) eliscinsky: T G1 Y1 Eliscinsky\n\n6) Babamots: Build B1 Babamots\n\n7) eliscinsky: T Y1 B1 Eliscinsky\n\n8) Babamots: Discover B1 Babamots G1 Risa\n\teliscinsky: I traded for a blue 1 so I wouldn't be locked out of that economy for a while.\r\n\r\nIs that what you would have done? (a simple yes or no is enough for now)\n\tBabamots: Yes, I think that's the right move.\r\n\r\nIt looks like we'll split the b2 ships evenly, one for each of us. Next you'll probably want to look for ways to either 1) prevent me from getting b3 ships or 2) make sure that you get at least as many of them as me.\n\n9) eliscinsky: Build B2 Eliscinsky\n\n10) Babamots: Build B2 Risa\n\n11) eliscinsky: Trade B1 Y1 Eliscinsky\n\n12) Babamots: Trade B2 Y2 Risa\n\n13) eliscinsky: Build Y1 Eliscinsky\n\n14) Babamots: Build B1 Risa\n\n15) eliscinsky: Build G1 Eliscinsky\n\n16) Babamots: Build B2 Babamots\n\tBabamots: Even without my prompting you, I guess you noticed that it's not safe for you to build more blue at home. Since blue is the color giving access to medium and large ships now, you may want to move your blue to a g3 system so you can get some big ships. Otherwise, I'll happily start gobbling up the b3 and then start trading them for large ships of other colors.\n\n17) eliscinsky: D B2 Eliscinsky G3 Ds9\n\teliscinsky: But you don't have access to my system yet. Or have I missed something. And with only 2 blue left I would think I should get at least one of them. And let you create the 3 star to gain access to my homeworld. That way I could trade a 3 for another, maybe yellow to gain the movement I need to get to you, or red to protect / attack.\r\n\r\nIs my strategy flawed?\n\n18) Babamots: Trade B1 R1 Risa\n\tBabamots: From here I can sacrifice my y2 to send a b1 to your home for a catastrophe, like this.\n\n19) eliscinsky: Move Y1 Eliscinsky Ds9\n\tBabamots: I was planning to let you undo your last move, but it occurs to me that you might not be able to undo after I made a move and hit undo. Can you still take it back?\n\teliscinsky: I still have an "Undo Last Move" buttton. okay I see the issue. TY\n\n20) Babamots: Build R1 Risa\n\n21) eliscinsky: Build Y1 Eliscinsky\n\n22) Babamots: Move Y2 Risa Ds9\n\n23) eliscinsky: Trade B2 R2 Ds9\n\n24) Babamots: Sacrifice R1 Risa\nAttack R2 Ds9\n\n25) eliscinsky: Trade Y1 R1 Eliscinsky\n\n26) Babamots: Attack Y1 Ds9\n\n27) eliscinsky: Trade G1 B1 Eliscinsky\n\n28) Babamots: Discover B1 Babamots G1 Betazed\n\tBabamots: If your opponent gets a red ship anywhere, you have to expect him to sacrifice it for an attack if he gets the chance. It's almost always best to get a red immediately after your opponent does. Otherwise, he can get the drop on you and you'll just have to run.\n\n29) eliscinsky: Build Y1 Eliscinsky\n\n30) Babamots: Build B2 Betazed\n\n31) eliscinsky: Discover Y1 Eliscinsky G3 Vulcan\n\n32) Babamots: Build B3 Risa\n\n33) eliscinsky: Sacrifice G3 Eliscinsky\nBuild Y2 Vulcan\nBuild Y2 Eliscinsky\nBuild Y3 Vulcan\n\n34) Babamots: Sacrifice Y2 Ds9\nMove B3 Risa Ds9\nMove B3 Ds9 Eliscinsky\n\n35) eliscinsky: Sacrifice Y2 Eliscinsky\nMove Y1 Vulcan Betazed\nMove Y3 Vulcan Betazed\n\n36) Babamots: Sacrifice R2 Ds9\nAttack Y1 Eliscinsky\nAttack R1 Eliscinsky\n\tBabamots: I've never had anyone start cooperating on my Star Trek system name theme before. Do you have a favorite series?\n\tBabamots: You've set yourself up to compete for the yellow ships, which is good. You actually have the advantage there since you have your yellow more spread out than me, so I'll have a harder time building them safely. You also have a g3, which you could sacrifice to quickly take three yellows if you felt like it, possibly denying me any y3.\r\n\r\nYour biggest liability now is that large blues are already available (large ships are a big deal), and I am better prepared to build those. I'll be able to build b3, trade for y3, and build b3 again.\n\n37) eliscinsky: Move Y2 Vulcan Eliscinsky\n\n38) Babamots: Attack Y2 Eliscinsky\n\n39) eliscinsky: Move Y3 Betazed Babamots\n\tBabamots: Leaving your home system without a large is very dangerous. Right now, I can move my b3 to your home, so I can attack your large as soon as it arrives to defend. You're welcome to take back that move if you'd like to try something else. If you want to do that triple build, I think you should move one of the yellows out of your home first so you can safely build a y3 at your home for defense.\n\teliscinsky: I think maybe I waited to long. I do NOT have an undo button. oh well.\n\tBabamots: OK, well let's see what I can make out of this then.\n\n40) Babamots: Attack B1 Eliscinsky\n\n\tDraw5PlayAll: I can see many moves ahead when it is a forced line, like red fights in a homeworld when one side clearly has more red power, or the setup for a doomsday machine.\n\nHomeworlds Online (SDG# 34352)\nVariants: "Unrated"\nStarted: 2018.8.23, Ended: 2018.8.27\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G3 Y3 *\n\n2) wil: Homeworld B2 R2 G3 *\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Build Y1 Trydnt\n\n6) wil: Trade G1 Y1 Wil\n\n7) Trydnt: Trade Y1 R1 Trydnt\n\n8) wil: Build G1 Wil\n\n9) Trydnt: Trade Y1 G1 Trydnt\n\n10) wil: D G1 Wil Y1 Y1\n\n11) Trydnt: Move R1 Trydnt Y1\n\n12) wil: D G1 Y1 Y2 Y2\n\n13) Trydnt: Move R1 Y1 Y2\n\n14) wil: D G1 Y2 Y1 Y1\n\n15) Trydnt: Move R1 Y2 Y1\n\n16) wil: D G1 Y1 R2 R2\n\n17) Trydnt: Move G1 Trydnt Y1\n\twil: He runs to sanctuary\n\n18) wil: Build G1 Wil\n\n19) Trydnt: Build G2 Y1\n\n20) wil: Move G1 Wil Y1\n\n21) Trydnt: Move G2 Y1 R2\n\n22) wil: M G1 Y1 Trydnt\n\n23) Trydnt: Sacrifice R1 Y1\nAttack G1 Trydnt\n\n24) wil: B G2 Wil\n\n25) Trydnt: Move G1 Trydnt Wil\n\n26) wil: S G2 Wil\nB G2 R2\nB G2 R2\nC R2 G\n\n27) Trydnt: Build G1 Wil\n\n28) wil: Trade G3 R3 Wil\n\n29) Trydnt: Attack Y1 Wil\n\n30) wil: A G1 Wil\n\n31) Trydnt: Attack G1 Wil\n\n32) wil: A G1 Wil\n\n33) Trydnt: Trade Y1 R1 Wil\n\twil: You have options... I have none.\n\n34) wil: T R3 Y3 Wil\n\n35) Trydnt: Build R1 Wil\n\tTrydnt: I was wondering why you traded for the red when it left you with the fewest options\n\n36) wil: A G1 Wil\n\twil: There are no options in my world except reverse attacks\n\n37) Trydnt: Build G2 Y1\n\n38) wil: A R1 Wil\n\n39) Trydnt: Sacrifice G1 Y1\nBuild R1 Wil\nCatastrophe Wil R\n\n40) wil: T G1 R1 Wil\n\n41) Trydnt: Trade Y3 R3 Trydnt\n\n42) wil: B Y1 Wil\n\n43) Trydnt: Build R1 Trydnt\n\n44) wil: B R1 Wil\n\n45) Trydnt: Trade R3 Y3 Trydnt\n\n46) wil: M G1 Wil Y1\n\n47) Trydnt: Build R2 Trydnt\n\n48) wil: D R1 Wil G1 G1\n\n49) Trydnt: Move R2 Trydnt G1\n\n50) wil: B R2 G1\n\n51) Trydnt: Sacrifice G2 Y1\nBuild R2 G1\nBuild R3 Trydnt\nCatastrophe G1 R\n\n52) wil: M G1 Y1 Wil\n\twil: Nice\n\twil: Nice\n\n53) Trydnt: Trade R1 B1 Trydnt\n\tTrydnt: ver nice\n\twil: Yupperz\n\n54) wil: B R1 Wil\n\twil: But don't break your elbow\n\n55) Trydnt: Build B1 Trydnt\n\n\nHomeworlds Online (SDG# 34491)\nStarted: 2018.8.23, Ended: 2018.9.19\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld R1 B2 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) ts52: Build Y1 Ts52\n\n8) Trydnt: Build R1 Trydnt\n\n9) ts52: Build Y1 Ts52\n\n10) Trydnt: Build R2 Trydnt\n\n11) ts52: Discover Y1 Ts52 G3 Kermit\n\n12) Trydnt: Trade R2 Y2 Trydnt\n\n13) ts52: Build Y2 Kermit\n\n14) Trydnt: Discover Y2 Trydnt G1 G1\n\n15) ts52: Build Y3 Ts52\n\n16) Trydnt: Build Y3 G1\n\n17) ts52: Trade Y3 R3 Ts52\n\n18) Trydnt: Discover Y2 G1 G2 G2\n\n19) ts52: Trade Y1 B1 Ts52\n\n20) Trydnt: Build R2 Trydnt\n\n21) ts52: Move R3 Ts52 Kermit\n\n22) Trydnt: Move R1 Trydnt G1\n\n23) ts52: Build R2 Kermit\n\n24) Trydnt: Build R2 G1\n\n25) ts52: Discover R3 Kermit G1 Robin\n\n26) Trydnt: Trade R1 B1 Trydnt\n\n27) ts52: Move Y1 Kermit Robin\n\n28) Trydnt: Sacrifice Y2 G2\nMove B1 Trydnt G1\nDiscover R2 G1 Y3 Y3\n\n29) ts52: Move B1 Ts52 Kermit\n\n30) Trydnt: Sacrifice G3 Trydnt\nBuild R1 Y3\nBuild R3 G1\nBuild R3 Trydnt\n\n31) ts52: Sacrifice G3 Ts52\nBuild Y1 Robin\nBuild Y2 Kermit\nBuild Y3 Ts52\n\n32) Trydnt: Move R3 G1 Kermit\n\n33) ts52: Sacrifice Y2 Kermit\nMove R2 Kermit Robin\nMove B1 Kermit Robin\n\n34) Trydnt: Trade R3 G3 Trydnt\n\n35) ts52: Trade Y3 G3 Ts52\n\n36) Trydnt: Build R3 G1\n\n37) ts52: Build G1 Ts52\n\n38) Trydnt: Attack Y2 Kermit\n\n39) ts52: Build G2 Ts52\n\n40) Trydnt: Sacrifice Y2 Kermit\nMove R1 Y3 Robin\nMove R2 Y3 Robin\nCatastrophe Robin R\n\n41) ts52: Trade Y1 R1 Robin\n\n42) Trydnt: Sacrifice Y3 G1\nMove G3 Trydnt G1\nMove G3 G1 Kermit\nMove G3 Kermit Ts52\nCatastrophe Ts52 G\n\n43) ts52: Build R2 Robin\n\n44) Trydnt: Trade R3 Y3 G1\n\n45) ts52: Build R2 Robin\n\n46) Trydnt: Sacrifice Y3 G1\nMove R1 G1 Kermit\nMove R3 Kermit Ts52\nMove R1 Kermit Robin\nCatastrophe Robin R\n\tts52: Well that doesn't look very good for me. :( Well played.\n\n47) ts52: Build Y1 Robin\n\n48) Trydnt: Attack Y1 Ts52\n\tTrydnt: thanks :)\n\n\tts52: Good game!\n\tTrydnt: thanks well played\n\nHomeworlds Online (SDG# 34497)\nVariants: "Hard time"\nStarted: 2018.8.23, Ended: 2018.9.6\nParticipants: eliscinsky (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) eliscinsky: H R2 B3 G3 Eliscinsky\n\n3) Trydnt: Build G1 Trydnt\n\n4) eliscinsky: B G1 Eliscinsky\n\teliscinsky: GLHF!\n\tTrydnt: Good luck!\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) eliscinsky: T G1 Y1 Eliscinsky\n\n7) Trydnt: Build Y2 Trydnt\n\n8) eliscinsky: Build Y2 Eliscinsky\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) eliscinsky: Build Y2 Eliscinsky\n\n11) Trydnt: Build Y3 G3\n\n12) eliscinsky: D Y1 Eliscinsky G1 Alpha\n\n13) Trydnt: Trade Y2 R2 Trydnt\n\n14) eliscinsky: B Y2 Alpha\n\n15) Trydnt: Discover Y1 G3 G1 G1\n\n16) eliscinsky: Discover Y2 Alpha B3 Beta\n\n17) Trydnt: Build Y3 G1\n\n18) eliscinsky: Build Y3 Alpha\n\n19) Trydnt: Discover Y1 G1 B3 B3\n\n20) eliscinsky: Move Y1 Alpha Beta\n\n21) Trydnt: Move R2 Trydnt Beta\n\n22) eliscinsky: Sacrifice Y3 Alpha\nMove Y2 Beta Trydnt\nMove Y1 Beta Trydnt\nMove Y2 Eliscinsky G1\n\n23) Trydnt: Sacrifice R2 Beta\nAttack Y2 Trydnt\nAttack Y2 G1\n\n24) eliscinsky: Build Y3 Eliscinsky\n\n25) Trydnt: Sacrifice Y3 G1\nMove Y1 B3 G1\nMove Y1 G1 Eliscinsky\nMove Y2 G1 Eliscinsky\nCatastrophe Eliscinsky Y\n\n26) eliscinsky: Build G1 Eliscinsky\n\n27) Trydnt: Trade Y2 R2 Trydnt\n\n28) eliscinsky: Build G1 Eliscinsky\n\n29) Trydnt: Attack Y1 Trydnt\n\n30) eliscinsky: Trade G1 Y1 Eliscinsky\n\n31) Trydnt: Build Y2 G3\n\n32) eliscinsky: Build Y2 Eliscinsky\n\n33) Trydnt: Discover Y2 G3 B1 B1\n\n34) eliscinsky: Trade Y2 R2 Eliscinsky\n\n35) Trydnt: Build Y2 G3\n\n36) eliscinsky: Move R2 Eliscinsky B1\n\n37) Trydnt: Sacrifice R2 Trydnt\nAttack R2 B1\nPass\n\n38) eliscinsky: T G1 R1 Eliscinsky\n\n39) Trydnt: Trade Y1 B1 Trydnt\n\n40) eliscinsky: Discover R1 Eliscinsky G1 Alpha\n\n41) Trydnt: Build B1 Trydnt\n\n42) eliscinsky: Build Y1 Eliscinsky\n\n43) Trydnt: Build G1 Trydnt\n\n44) eliscinsky: Discover Y1 Eliscinsky G1 Beta\n\n45) Trydnt: Move Y2 G3 Alpha\n\n46) eliscinsky: M Y1 Beta G3\n\n47) Trydnt: Sacrifice R2 B1\nAttack R1 Alpha\nAttack Y1 G3\n\n48) eliscinsky: Build Y2 Eliscinsky\n\n49) Trydnt: Build Y3 Alpha\n\n50) eliscinsky: Trade Y2 B2 Eliscinsky\n\n51) Trydnt: Move B1 Trydnt G3\n\n52) eliscinsky: Build G1 Eliscinsky\n\n53) Trydnt: Build R1 Alpha\n\n54) eliscinsky: Build Y2 Eliscinsky\n\n55) Trydnt: Sacrifice G1 Trydnt\nBuild Y3 B1\n\n56) eliscinsky: Move Y1 Eliscinsky B1\n\n57) Trydnt: Discover Y2 B1 B3 B3\n\n58) eliscinsky: M Y1 B1 Eliscinsky\n\n59) Trydnt: Move B1 G3 Alpha\n\teliscinsky: Why do I feel like I'm going to lose? ;)\n\n60) eliscinsky: D B2 Eliscinsky G1 Beta\n\n61) Trydnt: Move Y3 G3 Beta\n\n62) eliscinsky: B B2 Beta\n\n63) Trydnt: Build B3 Alpha\n\n64) eliscinsky: Move G1 Eliscinsky Beta\n\n65) Trydnt: Build R1 Alpha\n\n66) eliscinsky: T B2 R2 Beta\n\n67) Trydnt: Sacrifice Y3 B1\nMove R1 Alpha Eliscinsky\nMove R1 Alpha Eliscinsky\nMove R1 Alpha Eliscinsky\nCatastrophe Eliscinsky R\n\n68) eliscinsky: Trade Y1 B1 Eliscinsky\n\n69) Trydnt: Sacrifice Y2 B3\nMove B1 Alpha Eliscinsky\nMove B3 Alpha Eliscinsky\nCatastrophe Eliscinsky B\n\n\tTrydnt: good game\r\n\n\teliscinsky: U2, I realised I was at a point of no return about 5 moves ago. Still tried a few things, but alas. I hope you don't mind I sort of gave up there at the end.\r\n\r\nCheers, and Good Luck in the tourney!\n\tTrydnt: no worries. I think once I had most of the yellow it was pretty much unavoidable\n\nHomeworlds Online (SDG# 34496)\nVariants: "Hard time"\nStarted: 2018.8.24, Ended: 2018.9.14\nParticipants: DodoBirb (S), Trydnt (N)\nWinner: DodoBirb\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) DodoBirb: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) DodoBirb: Trade G1 B1 Dodobirb\n\n7) Trydnt: Build B2 Trydnt\n\n8) DodoBirb: Build B2 Dodobirb\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\n10) DodoBirb: Trade B1 Y1 Dodobirb\n\n11) Trydnt: Trade B1 Y1 G3\n\n12) DodoBirb: Discover B2 Dodobirb G2 Grass\n\n13) Trydnt: Build Y2 G3\n\n14) DodoBirb: Build Y2 Dodobirb\n\n15) Trydnt: Move B2 Trydnt G3\n\n16) DodoBirb: Move Y2 Dodobirb Grass\n\n17) Trydnt: Discover Y2 G3 G2 G2\n\n18) DodoBirb: Build Y2 Grass\n\n19) Trydnt: Build Y3 G3\n\n20) DodoBirb: Build Y3 Dodobirb\n\n21) Trydnt: Build Y3 G2\n\n22) DodoBirb: Build B1 Grass\n\n23) Trydnt: Trade Y3 R3 G3\n\n24) DodoBirb: Trade Y3 R3 Dodobirb\n\n25) Trydnt: Build Y3 G3\n\n26) DodoBirb: Build Y3 Dodobirb\n\n27) Trydnt: Move R3 G3 Grass\n\n28) DodoBirb: Sacrifice Y2 Grass\nDiscover Y2 Grass B3 Bigblue\nMove B2 Grass Bigblue\n\n29) Trydnt: Attack B1 Grass\n\n30) DodoBirb: Trade B2 G2 Bigblue\n\n31) Trydnt: Build R1 Grass\n\n32) DodoBirb: Discover R3 Dodobirb B2 Halfblue\n\n33) Trydnt: Build G1 Trydnt\n\n34) DodoBirb: Build G1 Bigblue\n\n35) Trydnt: Trade G1 R1 Trydnt\n\n36) DodoBirb: Build G1 Bigblue\n\n37) Trydnt: Move Y3 G2 Bigblue\n\n38) DodoBirb: Sacrifice Y3 Dodobirb\nMove G2 Bigblue Trydnt\nMove G1 Bigblue Trydnt\nMove G1 Bigblue Trydnt\nCatastrophe Trydnt G\n\n39) Trydnt: Sacrifice R1 Trydnt\nAttack Y2 Bigblue\n\n\tTrydnt: damn I completely meant to sac the one on the other star. that was unfortunate\n\tTrydnt: is there any way to undo moves that end the game?\n\tDodoBirb: I don't think so. I suppose we could rematch if it's allowed.\n\tTrydnt: I sent john a message see what he says\n\tBabamots: Sorry about this situation. My interpretation of the rules is that you may not make a move that results in your own loss (that's what resigning is for). We should ask Aaron to fix this in SDG 2.0.\r\n\r\nI think the most reasonable thing to do is follow typical chess tournament rules: you "touched" a piece that can't actually be legally moved. In chess, you just ignore that the "touch" ever took place and continue the game.\r\n\r\nIf you two agree that continuing is the right thing to do, here are a few possible ways to handle it.\r\n\r\n1) Decide on a winner based on the current position. I'm inclined to say that Trydnt has enough of an advantage that he would have won. I'm OK with just awarding Trydnt the point, but we shouldn't do that if either of you guys don't like it. I remember being angry about a certain "Starcraft: Broodwar" tournament where the power went out and the officials called the game in favor of "Flash."\r\n\r\n2) Starting a replacement game on SDG but making the same moves up to this point (and then continuing as if this hadn't happened). This might take a while, but I think it's the best option if you want to play out the rest of the moves.\r\n\r\n3) Continue the game in some other way, such as a video call, traveling to an agreed meeting place to play with real pieces, or exchanging SDG-style text moves through email or here in the comments.\r\n\r\nWhat do you guys think?\n\tTrydnt: I think 2) is probably the best as it is closest to what SDG should have done where it shouldn't have allowed the last move and delivered an error message which would have prompted the intended move. We wouldn't necessarily have to recreate all the same moves as we could probably amass fleets on homeworlds without calling catastrophe on either and then move everything to correct locations and sacrifice+pass any pieces that should be returned to the bank. Let me know what you think\n\tDodoBirb: I would probably be fine with 1 but 2 definitely seems like the best option so I'll go with that. \n\tBabamots: OK, sounds like you agree that you'd like to continue the game on SDG. Go ahead and issue the challenge and put the game on the start form as usual. I'll delete this one.\n\nHomeworlds Online (SDG# 34500)\nVariants: "Hard time"\nStarted: 2018.8.24, Ended: 2018.8.26\nParticipants: Trydnt (S), zeder (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34501)\nVariants: "Unrated"\nStarted: 2018.8.26, Ended: 2018.11.13\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 R1 B3\n\n2) wil: H Y2 G2 R3 *\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: B R1 Wil\n\n5) Trydnt: Trade B1 R1 Trydnt\n\n6) wil: B R2 Wil\n\n7) Trydnt: Build B1 Trydnt\n\n8) wil: D R2 Wil B3 B3\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) wil: M R1 Wil B3\n\n11) Trydnt: Build R2 Trydnt\n\n12) wil: T R2 Y2 B3\n\tBabamots: I understand wil won't be available for a while, so I'm pausing his games for him. Hopefully you can continue soon.\n\tDraw5PlayAll: 67 days ago?!?!\n\n13) Trydnt: Discover R2 Trydnt Y2 Y2\n\tTrydnt: our systems are directly connected... you sure\n\n14) wil: B R2 Wil\n\twil: Lol, thx\n\n15) Trydnt: Build Y1 Trydnt\n\n16) wil: M R2 Wil B3\n\n17) Trydnt: Build B1 Trydnt\n\n18) wil: B R2 Wil\n\n19) Trydnt: Discover R2 Y2 G3 G3\n\n20) wil: T R2 G2 B3\n\n21) Trydnt: Discover Y1 Trydnt G2 G2\n\n22) wil: B G1 B3\n\n23) Trydnt: Discover Y1 Trydnt B2 B2\n\n24) wil: D G2 B3 B2 Bee2\n\n25) Trydnt: Trade B1 Y1 Trydnt\n\n26) wil: D R2 Wil G3 Gee3\n\n27) Trydnt: Build B1 Trydnt\n\n28) wil: T G1 B1 B3\n\n29) Trydnt: Trade B3 Y3 Trydnt\n\n30) wil: M B1 B3 Wil\n\n31) Trydnt: Move Y1 G2 G3\n\n32) wil: B G1 Bee2\n\n33) Trydnt: Discover Y1 Trydnt G2 G2\n\n34) wil: B R2 Gee3\n\n35) Trydnt: Build R3 G3\n\n36) wil: B R3 Wil\n\n37) Trydnt: Build Y2 G3\n\n38) wil: S G1 Bee2\nB Y3 B3\n\n39) Trydnt: Build Y3 G2\n\n40) wil: M R3 Wil B3\n\n41) Trydnt: Build B1 Trydnt\n\n42) wil: B G1 Bee2\n\n43) Trydnt: Move Y3 G2 Gee3\n\n44) wil: B G1 Bee2\n\n45) Trydnt: Sacrifice Y3 Gee3\nMove Y1 B2 B3\nMove Y1 G2 B3\nMove R3 G3 Bee2\nCatastrophe B3 Y\n\n46) wil: T R1 G1 B3\n\n47) Trydnt: Sacrifice R2 G3\nAttack G2 Bee2\nAttack G1 Bee2\n\n48) wil: B G2 Bee2\nC Bee2 G\n\n49) Trydnt: Trade B1 G1 Trydnt\n\n50) wil: B B1 Wil\n\n51) Trydnt: Build B2 Trydnt\n\twil: Nice\n\n52) wil: T B1 Y1 Wil\n\twil: In the nick of time!\n\n53) Trydnt: Discover B2 Trydnt Y2 Y2\n\n54) wil: M Y1 Wil B3\n\n55) Trydnt: Move G1 Trydnt Bee2\n\n56) wil: T R3 Y3 B3\n\n57) Trydnt: Trade B2 G2 Y2\n\n58) wil: D Y1 B3 B2 Btwo\n\n59) Trydnt: Build B1 Trydnt\n\n60) wil: B B2 Wil\n\n61) Trydnt: Discover B1 Trydnt G2 G2\n\n62) wil: M B1 Wil Gee3\n\n63) Trydnt: Sacrifice G2 Y2\nBuild B3 Trydnt\nBuild B3 G2\n\n64) wil: B R1 Wil\n\n65) Trydnt: Discover B3 Trydnt G2 G22\n\twil: I think you got this\n\n66) wil: B G1 B3\n\n67) Trydnt: Sacrifice Y1 G3\nMove B3 G2 Gee3\n\n68) wil: M R1 Wil Gee3\n\twil: This is the end\n\n69) Trydnt: Sacrifice R3 Bee2\nAttack R1 Gee3\nAttack R2 Gee3\nAttack R2 Gee3\n\n70) wil: B R2 Wil\n\n71) Trydnt: Trade R2 Y2 Gee3\n\n72) wil: M R2 Wil B3\n\n73) Trydnt: Attack B1 Gee3\n\n74) wil: B R2 Wil\n\n75) Trydnt: Sacrifice Y3 Trydnt\nMove R1 Gee3 Wil\nMove R2 Gee3 Wil\nCatastrophe Wil R\nMove B3 Gee3 Wil\n\n\twil: Finally\n\nHomeworlds Online (SDG# 34509)\nVariants: "Unrated"\nStarted: 2018.8.26, Ended: 2018.11.7\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B3 Y2 G3\n\n2) Trydnt: Homeworld Y3 G2 B3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: B G1 Wil\n\n6) Trydnt: Build B1 Trydnt\n\n7) wil: D G1 Wil Y1 Y1\n\n8) Trydnt: Trade B1 Y1 Trydnt\n\n9) wil: B G1 Wil\n\tBabamots: I understand wil won't be available for a while, so I'm pausing his games for him. Hopefully you can continue soon.\n\n10) Trydnt: Trade B1 R1 Trydnt\n\n11) wil: B G2 Y1\n\n12) Trydnt: Build R1 Trydnt\n\n13) wil: D G1 Y1 Y3 Y3\n\n14) Trydnt: Build R1 Trydnt\n\n15) wil: S G3 Wil\nB G2 Y3\nB G3 Y1\nB G3 Wil\n\n16) Trydnt: Discover R1 Trydnt Y1 Y11\n\n17) wil: T G3 R3 Wil\n\n18) Trydnt: Build Y2 Trydnt\n\n19) wil: S G3 Y1\nB G3 Wil\nB G3 Y3\nB G3 Y1\n\n20) Trydnt: Discover Y2 Trydnt B1 B1\n\n21) wil: T G3 Y3 Wil\n\n22) Trydnt: Build Y2 Trydnt\n\n23) wil: S G3 Y1\nB G3 Y1\nB G3 Wil\nB R2 Wil\n\n24) Trydnt: Build R2 Trydnt\n\n25) wil: M R2 Wil Y11\n\n26) Trydnt: Move R1 Trydnt Y11\n\n27) wil: S G3 Wil\nB G3 Wil\nB R2 Y11\nB R3 Wil\nC Y11 R\n\n28) Trydnt: Discover Y1 Trydnt Y1 Y11\n\n29) wil: M Y3 Wil B1\n\n30) Trydnt: Discover Y2 B1 B3 B3\n\n31) wil: M R3 Wil Y11\n\n32) Trydnt: Discover Y1 Y11 B2 B2\n\n33) wil: M G3 Wil B1\n\n\tTrydnt: that did not go as planned at all\n\twil: Green freeze as powerful as all.\n\tTrydnt: yeah that was weird I don't think I've ever seen or done a green freeze. haven't played enough games with green in my hw I suppose\n\nHomeworlds Online (SDG# 34502)\nStarted: 2018.8.26, Ended: 2018.10.17\nParticipants: ts52 (S), Trydnt (N)\nWinner: ts52\n\n1) Trydnt: Homeworld G3 Y1 B3\n\n2) ts52: Homeworld R1 B2 G3\n\n3) Trydnt: Build B1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Build B1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Trade B1 Y1 Trydnt\n\n8) ts52: Build Y2 Ts52\n\n9) Trydnt: Build Y2 Trydnt\n\n10) ts52: Discover Y1 Ts52 G3 Kermit\n\n11) Trydnt: Discover Y1 Trydnt G2 G2\n\n12) ts52: Build G1 Ts52\n\n13) Trydnt: Build B1 Trydnt\n\n14) ts52: Trade G1 B1 Ts52\n\n15) Trydnt: Discover B1 Trydnt G2 Gee2\n\n16) ts52: Move B1 Ts52 Kermit\n\n17) Trydnt: Discover Y2 Trydnt B2 B2\n\n18) ts52: Build G1 Ts52\n\n19) Trydnt: Trade B1 R1 Trydnt\n\n20) ts52: Trade G1 R1 Ts52\n\n21) Trydnt: Build B1 Gee2\n\n22) ts52: Build G1 Ts52\n\n23) Trydnt: Build R2 Trydnt\n\n24) ts52: Build R2 Ts52\n\n25) Trydnt: Move R2 Trydnt B2\n\n26) ts52: Move R2 Ts52 Kermit\n\n27) Trydnt: Discover R2 B2 B3 B3\n\n28) ts52: Discover G1 Ts52 B3 Gonzo\n\n29) Trydnt: Move Y2 B2 Gonzo\n\n30) ts52: Build B2 Kermit\n\n31) Trydnt: Sacrifice R1 Trydnt\nAttack G1 Gonzo\n\n32) ts52: Build G1 Ts52\n\n33) Trydnt: Build B2 Trydnt\n\n34) ts52: Move B2 Kermit G2\n\n35) Trydnt: Move Y1 G2 B3\n\n36) ts52: Sacrifice G3 Ts52\nBuild Y2 Kermit\nBuild Y3 Kermit\nBuild Y3 Ts52\n\n37) Trydnt: Discover B2 Trydnt G2 G22\n\n38) ts52: Move Y3 Kermit Gee2\n\n39) Trydnt: Build Y3 Gonzo\n\tts52: Wow, you managed to undo your move as I was making mine. <this close> :)\n\n40) ts52: Sacrifice R2 Kermit\nAttack B1N Gee2\nAttack B1N Gee2\n\n41) Trydnt: Trade B3 R3 Trydnt\n\n42) ts52: Discover Y2 Ts52 B3 Grover\n\n43) Trydnt: Sacrifice G1 Gonzo\nBuild R1 B3\n\n44) ts52: Move R1 Ts52 Kermit\n\n45) Trydnt: Trade R1 G1 B3\n\n46) ts52: Move Y1 Kermit G2\n\n47) Trydnt: Move Y3 Gonzo G2\n\n48) ts52: Move Y3 Gee2 B3\n\n49) Trydnt: Sacrifice Y1 B3\nMove R2 B3 Gee2\n\n50) ts52: Build Y1 Kermit\n\n51) Trydnt: Sacrifice G1 B3\nBuild R1 Gee2\n\n52) ts52: Build R2 Kermit\n\n53) Trydnt: Build R2 Trydnt\n\n54) ts52: Build R3 Kermit\n\n55) Trydnt: Sacrifice R2 Trydnt\nAttack Y1 G2\nAttack B1 Gee2\n\n56) ts52: Move R3 Kermit G22\n\n57) Trydnt: Sacrifice Y1 G2\nMove B2 G22 Trydnt\n\n58) ts52: Build G1 Ts52\n\n59) Trydnt: Attack B1 Gee2\n\n60) ts52: Move G1 Ts52 B3\n\n61) Trydnt: Sacrifice R1 Gee2\nAttack B2 G2\n\n62) ts52: Build G1 B3\n\n63) Trydnt: Discover B2 G2 G3 G3\n\n64) ts52: Move Y3 B3 Gee2\n\n65) Trydnt: Sacrifice Y2 Gonzo\nMove B1 Gee2 Kermit\nMove B1 Gee2 Kermit\n\n66) ts52: Sacrifice R2 Kermit\nAttack R2N Gee2\nAttack B1N Kermit\n\n67) Trydnt: Build B3 G3\n\n68) ts52: Move B1 Kermit G22\n\n69) Trydnt: Trade B2 R2 G3\n\n70) ts52: Attack B1N Kermit\n\n71) Trydnt: Build R1 G3\n\n72) ts52: Build R2 Gee2\n\n73) Trydnt: Move Y3 G2 B3\n\n74) ts52: Build R3 Kermit\n\n75) Trydnt: Build B2 G3\n\n76) ts52: Build G2 Ts52\n\n77) Trydnt: Sacrifice R2 G3\nAttack G1 B3\nAttack G1 B3\n\n78) ts52: Sacrifice G2 Ts52\nBuild G2 Ts52\nBuild R2 G22\n\n79) Trydnt: Discover B2 Trydnt Y2 Y2\n\n80) ts52: Sacrifice Y3 Gee2\nMove R2 G22 Trydnt\nMove R2 Gee2 Trydnt\nMove R2 Gee2 Trydnt\nCatastrophe Trydnt R\n\n\tts52: Good game. Thanks!\n\nHomeworlds Online (SDG# 34513)\nVariants: "Hard time"\nStarted: 2018.8.27, Ended: 2018.9.6\nParticipants: Trydnt (S), speardane (N)\nWinner: Trydnt\n\n1) speardane: Homeworld B2 Y1 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\tspeardane: Shoot, I didn't notice that this game had started! My bad.\r\nGood luck!\n\n3) speardane: Build G1 Speardane\n\n4) Trydnt: Build G1 Trydnt\n\n5) speardane: Trade G1 R1 Speardane\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) speardane: Build G1 Speardane\n\n8) Trydnt: Build Y1 Trydnt\n\n9) speardane: Discover G1 Speardane B3 Delos\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) speardane: Build G1 Delos\n\n12) Trydnt: Build Y2 G1\n\n13) speardane: Trade G1 R1 Delos\n\n14) Trydnt: Build Y2 Trydnt\n\n15) speardane: Build R1 Delos\n\n16) Trydnt: Build Y3 G1\n\n17) speardane: Build R2 Delos\n\n18) Trydnt: Move Y3 G1 Delos\n\n19) speardane: Build G1 Delos\n\n20) Trydnt: Build Y3 G1\n\n21) speardane: Trade G1 B1 Delos\n\n22) Trydnt: Discover Y1 G1 G3 G3\n\n23) speardane: Build G1 Speardane\n\n24) Trydnt: Build Y3 G3\n\n25) speardane: Discover G1 Speardane B3 Lebling\n\n26) Trydnt: Build G2 Trydnt\n\n27) speardane: Build G2 Lebling\n\n28) Trydnt: Build G2 Trydnt\n\n29) speardane: Trade G2 R2 Lebling\n\n30) Trydnt: Trade Y3 R3 Delos\nCatastrophe Delos R\n\n31) speardane: Trade B1 R1 Delos\n\n32) Trydnt: Build Y3 G3\n\n33) speardane: Build R1 Speardane\n\n34) Trydnt: Trade G2 R2 Trydnt\n\n35) speardane: Build R2 Speardane\n\n36) Trydnt: Sacrifice Y3 G3\nMove R2 Trydnt G1\nMove R2 G1 G3\nMove R2 G3 Speardane\nCatastrophe Speardane R\n\n37) speardane: Build G2 Speardane\n\n38) Trydnt: Build Y3 G1\n\n39) speardane: Trade G2 R2 Speardane\n\n40) Trydnt: Trade G2 R2 Trydnt\n\n41) speardane: Build R1 Lebling\n\n42) Trydnt: Move Y3 G1 Delos\n\n43) speardane: Build R1 Lebling\n\n44) Trydnt: Sacrifice R2 Trydnt\nAttack G1 Delos\nAttack R1 Delos\n\n45) speardane: Trade R1 B1 Lebling\n\n46) Trydnt: Build G2 Delos\n\n47) speardane: Build G2 Lebling\n\n48) Trydnt: Build G2 Trydnt\n\n49) speardane: Trade G2 R2 Lebling\n\n50) Trydnt: Trade G1 B1 Delos\n\n51) speardane: Build G1 Speardane\n\n52) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Delos\nBuild G3 Trydnt\nBuild B1 Delos\n\n53) speardane: Sacrifice G3 Speardane\nBuild R1 Speardane\nBuild R3 Speardane\nBuild G3 Lebling\n\n54) Trydnt: Move R1 Delos Speardane\nCatastrophe Speardane R\n\n55) speardane: Sacrifice G1 Lebling\nPass\n\n56) Trydnt: Trade G2 R2 Delos\n\n57) speardane: Build G1 Speardane\n\n58) Trydnt: Move Y3 G3 Speardane\n\n59) speardane: Pass\n\n60) Trydnt: Sacrifice R2 Delos\nAttack G1 Speardane\nAttack G1 Speardane\n\n\tTrydnt: good game. do you wanna log it or should I?\n\tspeardane: I've already logged it... and then logged it again because I forgot how to get to the Tournament Viewer spreadsheet; and it looks like the spreadsheet didn't like that. :D Good game! The relative placement of the r3 and g3 in my third-from-last move certainly doomed me, but that yellow monopoly was going to kill me eventually anyway.\n\tTrydnt: Yeah there was no way to stop me once I had all the yellow. Any 3 you flew to you'd be trapped on and so limited expansion and I made sure not to give you access to the 3 ships where possible. And cuz you couldn't move off those stars there was always the option of blowing them up to destroy a bunch of stuff\n\nHomeworlds Online (SDG# 34514)\nVariants: "Hard time"\nStarted: 2018.8.28, Ended: 2018.9.7\nParticipants: Felix (S), speardane (N)\nWinner: speardane\n\n1) speardane: Homeworld Y3 B1 G3\n\n2) Felix: Homeworld B1 G2 B3 *\n\n3) speardane: Build G1 Speardane\n\tFelix: Good luck and have fun! :)\n\n4) Felix: Build B1 Felix\n\tspeardane: You too!\n\n5) speardane: Trade G3 R3 Speardane\n\n6) Felix: Trade B3 R3 Felix\n\n7) speardane: Build R1 Speardane\n\n8) Felix: Build B2 Felix\n\n9) speardane: Trade R3 B3 Speardane\n\n10) Felix: Trade B2 Y2 Felix\n\n11) speardane: Build R1 Speardane\n\n12) Felix: Build B2 Felix\n\n13) speardane: Discover R1 Speardane Y2 Delos\n\n\tFelix: Woops. Picked the wrong week to go on holiday! \n\tDraw5PlayAll: So then you want a rematch, huh?\n\tFelix: Yep.\n\tDraw5PlayAll: I am not sure if the speardane account is still operational.\n\nHomeworlds Online (SDG# 34517)\nVariants: "Unrated"\nStarted: 2018.8.29, Ended: 2018.8.29\nParticipants: Babamots (S), minoan (N)\nWinner: Babamots\n\n1) minoan: Homeworld B2 G3 Y3\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) minoan: Discover Y3 Minoan G1 Fragonardia\n\n\nHomeworlds Online (SDG# 34519)\nStarted: 2018.8.30, Ended: 2018.9.5\nParticipants: Babamots (S), minoan (N)\nWinner: Babamots\n\n1) minoan: Homeworld G1 B2 Y3\n\n2) Babamots: Homeworld B3 G1 G3 *\n\n3) minoan: Build Y1 Minoan\n\n4) Babamots: Build G1 Babamots\n\n5) minoan: Build Y1 Minoan\n\tBabamots: What's happened is that you're locked out of green ships quite early. It turns out that, if you move first, the only small system marker that's safe is red. Otherwise, you can get locked out of that color.\n\n6) Babamots: Trade G3 Y3 Babamots\n\n7) minoan: Trade Y3 G3 Minoan\n\n8) Babamots: Build G2 Babamots\n\n9) minoan: Discover Y1 Minoan G3 Ceti_alpha_v\n\n10) Babamots: Discover G2 Babamots G2 Risa\n\n11) minoan: Build Y1 Minoan\n\n12) Babamots: Build Y2 Babamots\n\n13) minoan: Build Y2 Ceti_alpha_v\n\n14) Babamots: Build G2 Risa\n\n15) minoan: Discover G3 Minoan B3 Cardassia\n\n16) Babamots: Build G3 Babamots\n\n17) minoan: Trade Y1 B1 Minoan\n\n18) Babamots: Move Y2 Babamots Risa\n\n19) minoan: Build Y1 Minoan\n\n20) Babamots: Sacrifice G3 Babamots\nBuild Y2 Babamots\nBuild Y3 Risa\nBuild G3 Babamots\n\n21) minoan: Move Y1 Minoan Cardassia\n\n22) Babamots: Trade Y2 R2 Babamots\n\n23) minoan: Trade Y1 R1 Minoan\n\n24) Babamots: Sacrifice Y2 Risa\nMove Y3 Risa Cardassia\nMove Y3 Cardassia Minoan\n\n25) minoan: Build R1 Minoan\n\n26) Babamots: Sacrifice R2 Babamots\nAttack R1 Minoan\nAttack R1 Minoan\n\n27) minoan: Build B1 Minoan\n\n28) Babamots: Trade R1 B1 Minoan\nCatastrophe Minoan B\n\tBabamots: We can do unrated games until you feel in-practice if you like. There's a check box for it when you issue the challenge.\n\n\nHomeworlds Online (SDG# 34465)\nVariants: "Hard time"\nStarted: 2018.8.30, Ended: 2018.9.4\nParticipants: nycavri (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld B3 Y2 G3\n\n2) nycavri: Homeworld B1 G3 Y3\n\tnycavri: h b1 g3 y3\n\n3) dlwillson: B G1 Dlwillson\n\tnycavri: Gonna be one of those games . . .\n\n\tdlwillson: :-)\r\n\r\nGood luck and have fun!\r\n\r\nB g1 dlwillson\n\nHomeworlds Online (SDG# 34498)\nVariants: "Hard time"\nStarted: 2018.8.30, Ended: 2018.9.7\nParticipants: Trydnt (S), nycavri (N)\nWinner: Trydnt\n\n1) nycavri: Homeworld Y3 G2 B3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) nycavri: Build B1 Nycavri\n\tTrydnt: this is for the tournament correct?\n\n4) Trydnt: Build G1 Trydnt\n\n5) nycavri: Trade B1 G1 Nycavri\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) nycavri: Build G1 Nycavri\n\n8) Trydnt: Build Y1 Trydnt\n\n9) nycavri: Trade G1 R1 Nycavri\n\n10) Trydnt: Build G1 Trydnt\n\n11) nycavri: Build B1 Nycavri\n\n12) Trydnt: Discover Y1 Trydnt G3 G3\n\n13) nycavri: Trade B3 Y3 Nycavri\n\n14) Trydnt: Build Y2 G3\n\n\tTrydnt: did you challenge or did I? challenger fills out form for game on the grid\n\tBabamots: I went ahead and put the game in the tournament spreadsheet for ya. Good luck guys!\n\nHomeworlds Online (SDG# 34482)\nVariants: "Hard time"\nStarted: 2018.9.2, Ended: 2018.9.4\nParticipants: wil (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R1 B3 G3\n\n\tajo: Ping!\n\tBabamots: I understand wil won't be available for a while. I hope you don't mind waiting to play wil for the tournament another time.\n\nHomeworlds Online (SDG# 34340)\nVariants: "Unrated"\nStarted: 2018.9.3, Ended: 2018.9.20\nParticipants: Trydnt (S), popjam (N)\nWinner: Trydnt\n\n1) popjam: Pass\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) popjam: Homeworld B2 G1 Y3\n\n4) Trydnt: Build G1 Trydnt\n\n\nHomeworlds Online (SDG# 34515)\nVariants: "Hard time"\nStarted: 2018.9.4, Ended: 2018.9.17\nParticipants: speardane (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld R3 B2 G3\n\tLaurie_Menke: Hi speardane! Good luck! (And don't forget to log the start of the game!) :)\n\n2) speardane: Homeworld Y1 B2 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tspeardane: Good luck!\n\n4) speardane: Build G1 Speardane\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) speardane: Trade G3 R3 Speardane\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) speardane: Build G1 Speardane\n\n9) Laurie_Menke: Discover G1 Laurie_menke Y1 Yellow\n\n10) speardane: Discover G1 Speardane B3 Delos\n\n11) Laurie_Menke: Build G2 Laurie_menke\n\n12) speardane: Build G2 Delos\n\n13) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Yellow\nBuild G3 Laurie_menke\nBuild G3 Laurie_menke\n\n14) speardane: Sacrifice G2 Delos\nBuild G2 Speardane\nBuild G3 Delos\n\n15) Laurie_Menke: Discover G3 Laurie_menke B1 Blue\n\n16) speardane: Trade G3 Y3 Delos\n\n17) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild G3 Blue\nBuild Y2 Laurie_menke\n\n18) speardane: Discover G2 Speardane B3 Lebling\n\n19) Laurie_Menke: Trade G3 R3 Blue\n\n20) speardane: Build G3 Lebling\n\n21) Laurie_Menke: Sacrifice Y2 Laurie_menke\nDiscover G3 Blue Y3 Hi\nMove R3 Blue Hi\n\n22) speardane: Trade G3 Y3 Lebling\n\n23) Laurie_Menke: Move G2 Yellow Delos\n\n24) speardane: Build G3 Speardane\n\n25) Laurie_Menke: Trade G2 Y2 Delos\n\n26) speardane: Sacrifice G3 Speardane\nBuild G2 Delos\nBuild Y2 Lebling\nBuild G3 Lebling\n\n27) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild Y2 Laurie_menke\nBuild R1 Hi\n\n28) speardane: Move G2 Lebling Yellow\n\n29) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G3 Laurie_menke\nBuild R1 Hi\nPass\n\n30) speardane: Sacrifice Y3 Lebling\nMove G2 Yellow Laurie_menke\nMove G1 Delos Yellow\nMove G1 Yellow Laurie_menke\nCatastrophe Laurie_menke Green\n\tLaurie_Menke: LOL... that was kind of stupid... in the middle of typing all that I realized I had no third thing I wanted to build but was too lazy to just change it to a simple build command.\n\n31) Laurie_Menke: Sacrifice Y2 Delos\nMove R1 Hi Speardane\nMove R1 Hi Speardane\n\n32) speardane: Build Y2 Delos\n\n33) Laurie_Menke: Attack G1 Speardane\n\n34) speardane: Attack G1 Speardane\n\n35) Laurie_Menke: Sacrifice G1 Yellow\nBuild R1 Speardane\nCatastrophe Speardane R\n\tLaurie_Menke: Duh... right... don't know what I was thinking there...\n\n36) speardane: Move Y3 Delos Speardane\n\n37) Laurie_Menke: Move R3 Hi Speardane\n\n38) speardane: Trade Y3 R3 Speardane\n\n39) Laurie_Menke: Attack R3 Speardane\n\n40) speardane: Pass\n\n41) Laurie_Menke: Attack G1 Speardane\n\tspeardane: Good game!\n\tLaurie_Menke: Indeed! Thanks for the fun and challenge! I hope to play against you again sometime! :)\n\n\nHomeworlds Online (SDG# 34532)\nVariants: "Hard time"\nStarted: 2018.9.4, Ended: 2018.10.28\nParticipants: dlwillson (S), ts52 (N)\nWinner: dlwillson\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) dlwillson: H R3 B2 G3 Dlwillson\n\tts52: Have a good game!\n\n3) ts52: Build G1 Ts52\n\tdlwillson: You too!\n\n4) dlwillson: B G1 Dlwillson\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) ts52: Build Y2 Ts52\n\n8) dlwillson: Build Y2 Dlwillson\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) dlwillson: Discover Y1 Dlwillson G1 Field\n\n11) ts52: Build G1 Ts52\n\n12) dlwillson: B G1 Dlwillson\n\n13) ts52: Trade G1 B1 Ts52\n\n14) dlwillson: T G1 B1 Dlwillson\n\n15) ts52: Build G1 Ts52\n\n16) dlwillson: B G1 Dlwillson\n\n17) ts52: Build G2 Ts52\n\n18) dlwillson: B Y2 Dlwillson\n\n19) ts52: Build Y3 Kermit\n\n20) dlwillson: D Y2 Dlwillson B1 Sea\n\n21) ts52: Move B1 Ts52 Kermit\n\n22) dlwillson: B Y3 Field\n\n23) ts52: Discover G1 Ts52 B3 Gonzo\n\n24) dlwillson: S Y2 Dlwillson\nM G1 Dlwillson Sea\nM B1 Dlwillson Field\n\n25) ts52: Trade G2 R2 Ts52\n\n26) dlwillson: T Y1 R1 Field\n\n27) ts52: Build G2 Ts52\n\n28) dlwillson: B Y1 Field\n\n29) ts52: Discover G2 Ts52 Y3 Bigbird\n\n30) dlwillson: M Y1 Field Dlwillson\n\n31) ts52: Move Y2 Ts52 Gonzo\n\tdlwillson: this game is for the tournament (GHWT2018)\n\tts52: :) I assumed so, but good to be clear.\n\n32) dlwillson: B Y2 Sea\n\n33) ts52: Sacrifice G2 Bigbird\nBuild G2 Ts52\nBuild Y3 Gonzo\n\n34) dlwillson: B G2 Sea\n\n35) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R1 Ts52\n\n36) dlwillson: D G2 Sea B3 Sky\n\n37) ts52: Discover G2 Ts52 B3 Grover\n\n38) dlwillson: T Y2 R2 Sea\n\n39) ts52: Move Y3 Kermit Sea\n\n40) dlwillson: S Y2 Sea\nM R2 Sea Kermit\nM G1 Sea Sky\n\n41) ts52: Sacrifice Y1 Kermit\nDiscover B1 Kermit Y1 Bigbird\n\n42) dlwillson: T G1 R1 Sky\n\n43) ts52: Build G1 Ts52\n\n44) dlwillson: S G2 Sky\nB R2 Kermit\nB R3 Sky\n\n45) ts52: Trade Y3 R3 Gonzo\n\n46) dlwillson: M Y3 Field Grover\n\n47) ts52: Move R3 Gonzo Field\n\n48) dlwillson: S B1 Field\nT R3 Y3 Sky\n\n49) ts52: Move R2 Ts52 Gonzo\n\n50) dlwillson: S R1 Field\nA G2 Grover\n\n51) ts52: Sacrifice G2 Gonzo\nBuild R1 Field\nBuild R3 Gonzo\n\n52) dlwillson: B G2 Grover\n\n53) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild B1 Bigbird\n\n54) dlwillson: S Y3 Sky\nM G2 Grover Ts52\nM G2 Grover Ts52\nC Ts52 G\nM Y3 Grover Ts52\n\n55) ts52: Sacrifice Y3 Sea\nMove Y2 Gonzo Ts52\nMove R2 Gonzo Ts52\nMove G2 Gonzo Ts52\n\n56) dlwillson: Sacrifice R2 Kermit\nAttack R2 Ts52\nAttack G2 Ts52\n\tts52: Not sure how I missed that one. Well played!\n\n57) ts52: Sacrifice R3 Gonzo\nAttack G2S Ts52\nAttack R2S Ts52\nPass\n\tdlwillson: Thanks! Your response had me worried. I'm still not completely confident.\n\n58) dlwillson: S G3 Dlwillson\nB R2 Kermit\nB R3 Sky\nB Y2 Dlwillson\n\n59) ts52: Build Y2 Ts52\nCatastrophe Ts52 Y\n\n60) dlwillson: T R3 Y3 Sky\n\n61) ts52: Trade R2 Y2 Ts52\n\n62) dlwillson: M Y3 Sky Ts52\n\n63) ts52: Sacrifice Y2 Ts52\nMove R3 Field Dlwillson\nMove B1 Bigbird Ts52\n\n64) dlwillson: S R2 Kermit\nA G2 Ts52\nA R1 Ts52\n\n65) ts52: Attack Y2 Dlwillson\n\n66) dlwillson: A B1 Ts52\n\n\tdlwillson: Good game! Thank you!\n\tts52: Thanks. Good game!\n\nHomeworlds Online (SDG# 34533)\nVariants: "Hard time"\nStarted: 2018.9.4, Ended: 2018.9.25\nParticipants: Draw5PlayAll (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R3 B2 G3 Dlwillson\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\tdlwillson: Good luck and have fun!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) dlwillson: B G1 Dlwillson\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n11) dlwillson: B R2 Dlwillson\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) dlwillson: D R2 Dlwillson Y1 Sol\n\n14) Draw5PlayAll: Build Y2 Draw5playall\n\n15) dlwillson: B R2 Dlwillson\n\n16) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n17) dlwillson: B Y2 Dlwillson\n\n18) Draw5PlayAll: Discover B2 Draw5playall G2 The\n\n19) dlwillson: D R2 Dlwillson B1 Sea\n\n20) Draw5PlayAll: Build B1 The\n\n21) dlwillson: S G3 Dlwillson\nB R2 Sea\nB R3 Sol\nB R3 Dlwillson\n\n22) Draw5PlayAll: Discover Y1 Draw5playall G2 Better\n\n23) dlwillson: Sacrifice Y2 Dlwillson\nMove R2 Sol Better\nMove R3 Sol The\n\n24) Draw5PlayAll: Sacrifice Y1 Better\nDiscover B2 The G3 Distant\n\n25) dlwillson: A B1 The\n\n26) Draw5PlayAll: Build Y1 Draw5playall\n\n27) dlwillson: T R3 G3 Dlwillson\n\n28) Draw5PlayAll: Discover Y1 Draw5playall G2 Only\n\n29) dlwillson: B R3 The\n\n30) Draw5PlayAll: Build Y1 Only\n\tdlwillson: this game is for the tournament (GHWT2018)\n\n31) dlwillson: T R3 Y3 The\n\n32) Draw5PlayAll: Move R1 Draw5playall Only\n\tDraw5PlayAll: Nooooooooo\n\n33) dlwillson: B R3 Better\n\n34) Draw5PlayAll: Discover Y1 Only G1 Next\n\n35) dlwillson: B Y2 Dlwillson\n\tDraw5PlayAll: Trying to make phrases like "in the next system" flow smoothly is a challenge.\n\n36) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Next\nBuild Y3 Only\nBuild Y3 Draw5playall\n\n37) dlwillson: S Y2 Dlwillson\nM Y3 The Draw5playall\nM R3 The Draw5playall\n\n\tdlwillson: I bet! I have no idea how SDG lays out systems. Do you?\n\tDraw5PlayAll: Alphabetically\n\tDraw5PlayAll: The ships are in a 5x5 grid placed randomly except the homeworld takes up the middle 3x3\n\nHomeworlds Online (SDG# 34531)\nVariants: "Hard time"\nStarted: 2018.9.4, Ended: 2018.9.20\nParticipants: dlwillson (S), Trydnt (N)\nWinner: dlwillson\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) dlwillson: H R3 B2 G3 Dlwillson\n\n3) Trydnt: Build G1 Trydnt\n\n4) dlwillson: B G1 Dlwillson\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\tdlwillson: Good luck and have fun!\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Trydnt: Build Y2 Trydnt\n\n8) dlwillson: Build Y2 Dlwillson\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\n10) dlwillson: Discover Y1 Dlwillson B1 Sea\n\n11) Trydnt: Build G1 Trydnt\n\n12) dlwillson: B G1 Dlwillson\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) dlwillson: T G1 B1 Dlwillson\n\n15) Trydnt: Move B1 Trydnt G3\n\n16) dlwillson: D B1 Dlwillson G1 Field\n\n17) Trydnt: Build G1 Trydnt\n\n18) dlwillson: B G1 Dlwillson\n\n19) Trydnt: Discover G1 Trydnt B3 B3\n\n20) dlwillson: M G1 Dlwillson Sea\n\n21) Trydnt: Build G2 B3\n\n22) dlwillson: B G2 Dlwillson\n\n23) Trydnt: Trade G2 R2 B3\n\n24) dlwillson: Build G2 Sea\n\n25) Trydnt: Build G2 Trydnt\n\n26) dlwillson: T G1 R1 Sea\n\n27) Trydnt: Move Y2 Trydnt B3\n\n28) dlwillson: Sacrifice G3 Dlwillson\nBuild G1 Sea\nBuild R1 Sea\nBuild G3 Dlwillson\n\n29) Trydnt: Move R2 B3 Field\n\n30) dlwillson: M G1 Sea G3\n\n31) Trydnt: Attack B1 Field\n\n32) dlwillson: S R1 Sea\nA Y1 G3\n\n33) Trydnt: Build B2 G3\n\n34) dlwillson: S G3 Dlwillson\nB Y2 Sea\nB Y3 G3\nB Y3 Dlwillson\n\n35) Trydnt: Sacrifice G2 Trydnt\nBuild Y3 B3\nBuild B3 Field\n\n36) dlwillson: T Y2 R2 Sea\n\n37) Trydnt: Build B3 Field\n\n38) dlwillson: S R1 Sea\nA B2 G3\n\n39) Trydnt: Trade B3 R3 Field\n\n40) dlwillson: S B2 G3\nT Y3 G3 Dlwillson\nT Y3 R3 G3\n\n41) Trydnt: Sacrifice B1 G3\nTrade B3 Y3 Field\n\n42) dlwillson: S G3 Dlwillson\nB G2 Sea\nB R1 Sea\nB G3 Dlwillson\n\n43) Trydnt: Discover R3 Field Y3 Y3\n\n44) dlwillson: S G3 Dlwillson\nB Y2 G3\nB R1 G3\nB G3 Dlwillson\n\n45) Trydnt: Build R1 Field\n\n46) dlwillson: T R2 B2 Sea\n\n47) Trydnt: Build B1 Field\n\n48) dlwillson: M B2 Sea G3\n\n49) Trydnt: Move B1 Field Y3\n\n50) dlwillson: B B3 G3\n\n51) Trydnt: Build B3 Field\n\n52) dlwillson: M G1 G3 Trydnt\n\n53) Trydnt: Sacrifice R1 Field\nAttack G1 Trydnt\n\n54) dlwillson: S Y2 G3\nM G2 Sea Y3\nM G2 Y3 Trydnt\n\n55) Trydnt: Sacrifice Y2 B3\nMove R3 Y3 Trydnt\nMove G1 Trydnt B3\n\n56) dlwillson: S G2 Dlwillson\nB Y2 G3\nB G2 Trydnt\n\n57) Trydnt: Move G3 Trydnt Y3\n\n58) dlwillson: S Y2 Dlwillson\nM R3 G3 Trydnt\nM R1 G3 Trydnt\n\n59) Trydnt: Sacrifice Y3 Field\nMove R2 Field Y3\nMove R2 Y3 Trydnt\nMove Y3 B3 Trydnt\nCatastrophe Trydnt R\n\n60) dlwillson: S B2 G3\nT G2 Y2 Trydnt\nT G2 Y2 Trydnt\nC Trydnt Y\n\tBabamots: Is this game for the tournament? If so, it didn't get recorded. The same goes for dlwillson's games with Draw5PlayAll and ts52. If these are tournament games, you're the first person to get every game underway!\n\tTrydnt: I don't think this is for the tournament\n\tdlwillson: I think this is for the tournament, but since I'm.about to \n\tdlwillson: As I was saying:\r\nSince I'm about to lose, I'd be fine with this *not* being a tournament game.\n\tdlwillson: As I was saying:\r\nSince I'm about to lose, I'd be fine with this *not* being a tournament game.\n\tdlwillson: As I was saying:\r\nSince I'm about to lose, I'd be fine with this *not* being a tournament game.\n\tTrydnt: is there any way to check the notes line of the challenge after it's been accepted? I'm in several games some non-tournament and some tournament so gets tough keeping track\n\tBabamots: As far as I know, there's no way to see the challenge notes after the game starts. How about the clock setting? If it's not 2/2/7, it theoretically shouldn't be a tournament game.\n\n\tdlwillson: Good game! I was certain that I was going to run out of ships and you were going to pull the win.\n\tdlwillson: With regard to the tournament, I think I forgot to report the the games Babamots asked about. I mostly play from my phone. That's my excuse. I'll report the other two when I get to my computer.\r\n\r\nTrydnt: Should this game count for the tournament, or shall we play another?\n\tTrydnt: let's play another. I don't believe this was a tournament game because I've been working my way up the tracker starting with lowest score people and moving on to tougher opponents (not perfect as not everyone has played as many games but good enough). Since you're at the top I was waiting until further in the tournament to challenge you. I'll launch another now\n\nHomeworlds Online (SDG# 34525)\nStarted: 2018.9.4, Ended: 2018.10.24\nParticipants: Draw5PlayAll (S), mneme (N)\nWinner: Draw5PlayAll\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R2 G3\n\n3) mneme: Build G1 Mneme\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) mneme: Build G1 Mneme\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) mneme: Trade G1 R1 Mneme\n\n10) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n11) mneme: Build R2 Mneme\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) mneme: Discover R2 Mneme G3 Melpomene\n\n14) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n15) mneme: Build G1 Mneme\n\n16) Draw5PlayAll: Build G1 Draw5playall\n\n17) mneme: Discover G1 Mneme R3 Euterpe\n\n18) Draw5PlayAll: Discover B2 Draw5playall G1 Fine\n\n19) mneme: Sacrifice G3 Mneme\nBuild R2 Melpomene\nBuild R3 Melpomene\nBuild R3 Mneme\n\n20) Draw5PlayAll: Build B1 Fine\n\n21) mneme: Trade R3 G3 Mneme\n\n22) Draw5PlayAll: Build R3 Draw5playall\n\n23) mneme: Build G2 Mneme\n\n24) Draw5PlayAll: Move R3 Draw5playall Fine\n\n25) mneme: Sacrifice G1 Euterpe\nBuild R3 Mneme\n\n26) Draw5PlayAll: Trade B2 Y2 Fine\n\n27) mneme: Trade R1 B1 Mneme\n\n28) Draw5PlayAll: Sacrifice Y2 Fine\nMove R1 Draw5playall Fine\nMove R1 Fine Melpomene\nCatastrophe Melpomene Red\n\n29) mneme: Build R1 Mneme\n\n30) Draw5PlayAll: Discover G1 Draw5playall B1 Notariffs\n\n31) mneme: Discover R3 Mneme Y3 Urania\n\n32) Draw5PlayAll: Build B2 Fine\n\n33) mneme: Move R3 Urania Notariffs\n\n34) Draw5PlayAll: Sacrifice G1 Notariffs\nBuild R1 Fine\n\n35) mneme: Sacrifice G2 Mneme\nBuild R2 Mneme\nBuild R2 Notariffs\n\tmneme: Was this intended to be our tournament game? It's not appearing as such, so I assume not, but we don't have a message saying not so I want to be clear!\r\n\n\n36) Draw5PlayAll: Trade B2 Y2 Fine\n\tDraw5PlayAll: You mean no one listed it in the table? Good because we forgot the hard time anyway\n\n37) mneme: Trade R2 Y2 Mneme\n\n38) Draw5PlayAll: Build B2 Fine\n\tmneme: yup. It's a good practice game, though.\r\n(also, it's good to have a message in the first move or two saying it's a tournament game, since the intro message doesn't get kept for the game itself!\n\n39) mneme: Discover Y1 Mneme B3 Melpomene\n\n40) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: I knew that name looked familiar!\n\n41) mneme: Trade R2 G2 Notariffs\n\tDraw5PlayAll: That was close\n\n42) Draw5PlayAll: Discover R1 Fine Y3 Port\n\n43) mneme: Move R1 Mneme Melpomene\n\n44) Draw5PlayAll: Move B2 Fine Melpomene\n\n45) mneme: Move Y1 Melpomene Notariffs\n\n46) Draw5PlayAll: Build B2 Fine\n\tDraw5PlayAll: What does melpomene mean?\n\n47) mneme: Build G1 Mneme\n\n48) Draw5PlayAll: Discover B1 Fine Y3 Trop\n\tmneme: The muse of chorus/tragedy.\n\n49) mneme: Sacrifice G3 Mneme\nBuild G2 Mneme\nBuild G2 Notariffs\nBuild G3 Mneme\n\n50) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild B3 Trop\n\n51) mneme: Discover B1 Mneme Y3 Thalia\n\n52) Draw5PlayAll: Sacrifice R1 Port\nAttack R1 Melpomene\n\n53) mneme: Sacrifice G3 Mneme\nBuild G1 Notariffs\nBuild G3 Mneme\nBuild Y1 Notariffs\n\n54) Draw5PlayAll: Trade B3 G3 Trop\n\n55) mneme: Sacrifice G3 Mneme\nBuild Y2 Notariffs\nBuild Y3 Mneme\nBuild B3 Thalia\n\n56) Draw5PlayAll: Build G3 Trop\n\n57) mneme: Sacrifice Y2 Notariffs\nMove G1 Mneme Trop\nMove G1 Notariffs Trop\nCatastrophe Trop G\n\n58) Draw5PlayAll: Build Y2 Draw5playall\n\n59) mneme: Build G1 Notariffs\n\n60) Draw5PlayAll: Build R1 Fine\n\n61) mneme: Move G2 Notariffs Draw5playall\n\n62) Draw5PlayAll: Trade G3 R3 Draw5playall\n\n63) mneme: Sacrifice G2 Draw5playall\nBuild R2 Notariffs\nBuild G1 Notariffs\n\n64) Draw5PlayAll: Trade Y2 G2 Draw5playall\n\n65) mneme: Build G3 Mneme\n\n66) Draw5PlayAll: Build G3 Draw5playall\n\n67) mneme: Move Y3 Mneme Melpomene\n\n68) Draw5PlayAll: Sacrifice B2 Melpomene\nTrade G2 B2 Draw5playall\nPass\n\n69) mneme: Move R3 Notariffs Draw5playall\n\n70) Draw5PlayAll: Sacrifice R3 Draw5playall\nAttack R3 Draw5playall\nPass\nPass\nPass\nPass\nPass\nPass\nPass\nPass\n\n71) mneme: Build G2 Notariffs\n\n72) Draw5PlayAll: Build G3 Draw5playall\nCatastrophe Notariffs Green\n\n73) mneme: Sacrifice G2 Mneme\nBuild R2 Notariffs\nBuild Y2 Mneme\n\tDraw5PlayAll: There seems to be a hole in the "a" in the word "plan".\n\n74) Draw5PlayAll: Move R3 Draw5playall Notariffs\n\tmneme: true. I hate it when that happens.\n\n75) mneme: Sacrifice Y2 Mneme\nMove R2 Notariffs Draw5playall\nMove R2 Notariffs Draw5playall\n\n76) Draw5PlayAll: Sacrifice R1 Melpomene\nAttack R2 Draw5playall\n\tDraw5PlayAll: Wait the G3 is better.\n\tmneme: ug. I built the wrong ship? grr. \n\n77) mneme: Sacrifice G3 Mneme\nBuild R1 Draw5playall\nBuild R3 Draw5playall\nBuild Y2 Mneme\nCatastrophe Draw5playall R\n\n78) Draw5PlayAll: Sacrifice Y2 Fine\nMove G3 Draw5playall Mneme\nMove B2 Draw5playall Fine\n\tDraw5PlayAll: I thought I was doomed until that.\n\n\tmneme: heh. Yup.\n\tDraw5PlayAll: Yeah, but even if the B1@Trop was yours it would have taken 6 movements to win.\n\tmneme: yeah, but that's like 2 turns, maybe 3.\n\nHomeworlds Online (SDG# 34535)\nVariants: "Hard time"\nStarted: 2018.9.5, Ended: 2018.11.13\nParticipants: Trydnt (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) ts52: Build Y2 Ts52\n\n8) Trydnt: Build Y2 Trydnt\n\n9) ts52: Build G1 Ts52\n\n10) Trydnt: Build Y2 Trydnt\n\n11) ts52: Discover Y1 Ts52 G3 Bigbird\n\n12) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 Trydnt G1 G1\nDiscover Y2 Trydnt G1 Gee1\n\n13) ts52: Build G2 Ts52\n\n14) Trydnt: Build G2 Trydnt\n\n15) ts52: Discover G2 Ts52 B3 Gonzo\n\n16) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 G1\nBuild Y3 Gee1\n\n17) ts52: Build Y3 Bigbird\n\n18) Trydnt: Discover Y1 G1 B3 B3\n\n19) ts52: Trade Y2 R2 Ts52\n\n20) Trydnt: Build G2 Trydnt\n\n21) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R1 Ts52\n\n22) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G1\nBuild Y3 G1\n\n23) ts52: Move R2 Ts52 B3\n\n24) Trydnt: Sacrifice Y2 Gee1\nMove Y2 G1 Bigbird\nMove Y2 G1 Bigbird\nCatastrophe Bigbird Y\n\n25) ts52: Trade G2 Y2 Gonzo\n\n26) Trydnt: Sacrifice Y1 B3\nDiscover G2 Trydnt Y1 Y1\n\n27) ts52: Build R1 Ts52\n\n28) Trydnt: Discover G2 Y1 Y3 Y3\n\n29) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Gonzo\nBuild G3 Ts52\n\n30) Trydnt: Sacrifice Y3 G1\nMove G2 Y3 Gee1\nMove G2 Gee1 Gonzo\nCatastrophe Gonzo G\nMove Y3 Gee1 B3\n\n31) ts52: Sacrifice G3 Ts52\nBuild R1 B3\nBuild R2 B3\nBuild R3 Ts52\n\n32) Trydnt: Build G1 Trydnt\n\n33) ts52: Trade R3 G3 Ts52\n\n34) Trydnt: Trade G3 R3 Trydnt\n\n35) ts52: Move R1 Ts52 Gonzo\n\n36) Trydnt: Trade Y3 R3 B3\nCatastrophe B3 R\n\n37) ts52: Move G1 Ts52 Gonzo\n\n38) Trydnt: Build G1 Trydnt\n\n39) ts52: Build G2 Ts52\n\n40) Trydnt: Trade G1 Y1 Trydnt\n\n41) ts52: Build R1 Gonzo\n\n42) Trydnt: Build Y1 Trydnt\n\n43) ts52: Build Y2 Gonzo\n\n44) Trydnt: Discover Y1 Trydnt G1 G1\n\n45) ts52: Discover Y2 Gonzo B1 Grover\n\n46) Trydnt: Build G2 Trydnt\n\n47) ts52: Move R1 Gonzo Grover\n\n48) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 G1\nBuild Y3 Trydnt\n\n49) ts52: Build Y3 Gonzo\n\n50) Trydnt: Sacrifice Y1 Trydnt\nMove R3 Trydnt G1\n\n51) ts52: Build G2 Gonzo\n\n52) Trydnt: Build R2 G1\n\n53) ts52: Sacrifice G3 Ts52\nBuild R2 Gonzo\nBuild R3 Grover\nBuild R3 Ts52\n\n54) Trydnt: Discover Y2 G1 G3 G3\n\n55) ts52: Trade R3 Y3 Ts52\n\n56) Trydnt: Discover Y1 G1 R3 R3\n\n57) ts52: Sacrifice G2 Gonzo\nBuild G2 Gonzo\nBuild Y1 Grover\n\n58) Trydnt: Move Y2 G3 G1\n\n59) ts52: Trade R3 B3 Grover\n\n60) Trydnt: Discover R2 G1 G3 G3\n\n61) ts52: Sacrifice G2 Gonzo\nBuild G2 Gonzo\nBuild R3 Grover\n\n62) Trydnt: Discover R3 G1 G3 Gee3\n\n63) ts52: Move Y3 Gonzo G1\n\n64) Trydnt: Move Y2 G1 Gee3\n\n65) ts52: Move B3 Grover G3\n\n66) Trydnt: Sacrifice Y1 R3\nDiscover R2 G3 G2 G2\n\n67) ts52: Build G3 Ts52\n\n68) Trydnt: Build R3 G2\n\n69) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y1 Gonzo\nBuild B1 G3\n\n70) Trydnt: Move Y2 Gee3 G2\n\n71) ts52: Move Y2 Grover G3\n\n72) Trydnt: Move R3 G2 Gonzo\n\n73) ts52: Move R1 Grover Gonzo\nCatastrophe Gonzo R\n\n74) Trydnt: Sacrifice Y2 G2\nMove R3 Gee3 G2\nMove R3 G2 Gonzo\n\n75) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild G3 Ts52\nBuild Y2 G1\n\n76) Trydnt: Sacrifice R2 G2\nAttack G2 Gonzo\nAttack Y2 Gonzo\n\n77) ts52: Discover G3 Ts52 R3 Elmo\n\n78) Trydnt: Attack Y1 Gonzo\n\n79) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G3 Ts52\nBuild B1 G3\n\n80) Trydnt: Attack G1 Gonzo\n\n81) ts52: Move G2 Ts52 G3\n\n82) Trydnt: Build R1 Gonzo\n\n83) ts52: Move Y3 Ts52 Elmo\n\n84) Trydnt: Discover R1 Gonzo R1 R1\n\n85) ts52: Sacrifice G3 Elmo\nBuild G3 Elmo\nBuild R2 Grover\nBuild R2 Ts52\n\n\nHomeworlds Online (SDG# 34537)\nVariants: "Unrated"\nStarted: 2018.9.5, Ended: 2019.9.14\nParticipants: minoan (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R3 G2 B3\n\n2) minoan: Homeworld B2 R1 G3\n\n3) Babamots: Build B1 Babamots\n\n4) minoan: Build G1 Minoan\n\n5) Babamots: Trade B1 G1 Babamots\n\n6) minoan: Trade G1 Y1 Minoan\n\n7) Babamots: Build G1 Babamots\n\n8) minoan: Build Y1 Minoan\n\n9) Babamots: Trade G1 Y1 Babamots\n\n10) minoan: Build Y2 Minoan\n\n11) Babamots: Build Y2 Babamots\n\n12) minoan: Trade Y2 B2 Minoan\n\n13) Babamots: Discover Y2 Babamots G1 Risa\n\n14) minoan: Build Y2 Minoan\n\n15) Babamots: Build Y2 Babamots\n\n16) minoan: Discover Y1 Minoan G3 Dagobah\n\n17) Babamots: Trade Y1 R1 Babamots\n\n18) minoan: Build B1 Minoan\n\n19) Babamots: Build B1 Babamots\n\n20) minoan: Trade B1 R1 Minoan\n\n21) Babamots: Trade B3 G3 Babamots\n\n22) minoan: Build R2 Minoan\n\n23) Babamots: Discover G1 Babamots B1 Bolarus\n\n24) minoan: Trade R2 G2 Minoan\n\n25) Babamots: Build B1 Babamots\n\n26) minoan: Discover G2 Minoan B3 Coruscant\n\n27) Babamots: Move B1 Babamots Risa\n\n\nHomeworlds Online (SDG# 34538)\nVariants: "Hard time"\nStarted: 2018.9.6, Ended: 2018.10.2\nParticipants: Babamots (S), mneme (N)\nWinner: Babamots\n\n1) mneme: Homeworld R1 B2 G3\n\tBabamots: For the record, this is for the tournament. Good luck!\n\tmneme: This is good to have in the comment thread! (since those notices don't make it to the log at all! )\r\n\n\n2) Babamots: Homeworld B3 R2 G3\n\n3) mneme: Build G1 Mneme\n\tBabamots: One of the things I would like to change about SDG is that observers can't see the challenge notes or clock situation. And as long as I'm making wishes, archive view should show the stash.\n\n4) Babamots: Build G1 Babamots\n\tmneme: YES. There would need to be micro-images of the stash or it would get seriously awk though.\r\n\n\n5) mneme: Trade G1 Y1 Mneme\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) mneme: Build G1 Mneme\n\n8) Babamots: Build G1 Babamots\n\n9) mneme: Trade G1 R1 Mneme\n\n10) Babamots: Trade G1 R1 Babamots\n\n11) mneme: Build R2 Mneme\n\n12) Babamots: Build R2 Babamots\n\n13) mneme: Trade R2 Y2 Mneme\n\n14) Babamots: Discover R1 Babamots G1 Rubicun\n\n15) mneme: Discover R1 Mneme G3 Caliope\n\n16) Babamots: Build Y1 Babamots\n\n17) mneme: Move Y2 Mneme Caliope\n\n18) Babamots: Move Y1 Babamots Rubicun\n\n19) mneme: Build G1 Mneme\n\n20) Babamots: Build Y2 Rubicun\n\n21) mneme: Discover G1 Mneme Y3 Clio\n\n22) Babamots: Move Y2 Rubicun Clio\n\n23) mneme: Discover G1 Clio Y2 Urania\n\n24) Babamots: Sacrifice G3 Babamots\nBuild Y3 Rubicun\nBuild Y3 Babamots\nPass\n\n25) mneme: Build G1 Mneme\n\n26) Babamots: Move Y3 Rubicun Caliope\n\n27) mneme: Sacrifice Y2 Caliope\nDiscover G1 Mneme B3 Polyhymnia\nDiscover R1 Caliope Y2 Terpsichore\n\n28) Babamots: Move Y3 Caliope Urania\n\n29) mneme: Discover G1 Urania G3 Euterpe\n\n30) Babamots: Trade R2 G2 Babamots\n\tBabamots: Must be a hard game if we're both undoing things :-P\n\n31) mneme: Build G2 Mneme\n\n32) Babamots: Discover R1 Rubicun G3 Orion\n\n33) mneme: Sacrifice G3 Mneme\nBuild G2 Polyhymnia\nBuild G3 Mneme\nBuild R2 Terpsichore\n\n34) Babamots: Trade Y1 B1 Babamots\n\n35) mneme: Move R2 Terpsichore Orion\n\tBabamots: Lots of small colonies out there.\n\tDraw5PlayAll: What is Rubicun?\n\tBabamots: It's the planet the TNG crew visits in the episode "Justice."\n\n36) Babamots: Sacrifice Y1 Rubicun\nDiscover R1 Orion G1 Rubicun\n\tmneme: Ah, thanks. \n\n37) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild Y1 Mneme\nBuild Y1 Mneme\n\n38) Babamots: Move Y3 Urania Polyhymnia\n\n39) mneme: Sacrifice Y1 Mneme\nMove G2 Polyhymnia Rubicun\n\n40) Babamots: Sacrifice R1 Rubicun\nAttack G1 Polyhymnia\n\n41) mneme: Sacrifice G3 Mneme\nBuild R1 Orion\nBuild R2 Terpsichore\nBuild G3 Mneme\n\n42) Babamots: Sacrifice G2 Babamots\nBuild G2 Polyhymnia\nBuild Y1 Polyhymnia\n\n43) mneme: Sacrifice G2 Mneme\nBuild R3 Orion\nBuild R3 Terpsichore\n\n44) Babamots: Trade Y3 R3 Polyhymnia\n\n45) mneme: Move R3 Terpsichore Clio\n\n46) Babamots: Discover Y2 Clio B1 Bolarus\n\n47) mneme: Build G2 Euterpe\n\n48) Babamots: Sacrifice G2 Polyhymnia\nBuild Y2 Polyhymnia\nBuild Y3 Bolarus\n\n49) mneme: Build G2 Mneme\n\n50) Babamots: Trade Y1 B1 Polyhymnia\n\n51) mneme: Trade G2 B2 Mneme\n\n52) Babamots: Build G2 Polyhymnia\n\n53) mneme: Sacrifice B2 Mneme\nTrade R2 B2 Orion\nTrade R1 Y1 Orion\n\tBabamots: I wanted to find a better way to get that y3, but I you had tricky responses to any other approach I could find.\n\tmneme: I do what I can. :)\n\n54) Babamots: Build R1 Polyhymnia\n\n55) mneme: Build R2 Orion\n\tBabamots: Sorry, I'm having a heck of a time making up my mind. This is tough.\n\n56) Babamots: Move R3 Polyhymnia Bolarus\n\n57) mneme: Move Y1 Mneme Euterpe\n\n58) Babamots: Move Y3 Bolarus Terpsichore\n\n59) mneme: Move Y1 Euterpe Terpsichore\n\n60) Babamots: Move Y3 Terpsichore Rubicun\n\n61) mneme: Sacrifice G1 Euterpe\nBuild G1 Rubicun\n\n62) Babamots: Discover Y3 Rubicun B3 Kronos\n\n63) mneme: Build B2 Orion\n\n64) Babamots: Move G2 Polyhymnia Bolarus\n\tmneme: I'm not quite sure where you're heading here mentally, but I'd be willing to accept a draw here. It feels to me like most aggressive actions are likely to disrupt the attacker much more than the defender.\n\tBabamots: I thought I was about to make a very good move, but you have a tricky response that actually makes it terrible.\r\n\r\nI know what you mean about it being super hard to attack, but I'm not quite ready to call it a draw. I've got a few ideas of how I may yet get an upper hand. I'm afraid I don't have any idea how you might get ahead, though :-P.\n\n65) mneme: Move B2 Orion Mneme\n\tDraw5PlayAll: What move?\n\tDraw5PlayAll: Maybe answer in a PM and link to this position in the archive,\n\tmneme: There are a few ways. Mostly through your making a mistake, but not entirely.\r\n\n\n66) Babamots: Move G1 Polyhymnia Rubicun\nCatastrophe Rubicun G\n\n67) mneme: Build G1 Mneme\n\n68) Babamots: Build G1 Bolarus\n\n69) mneme: Move G1 Mneme Clio\n\n70) Babamots: Move G2 Bolarus Kronos\n\tmneme: That was a fun sequence. Sure you don't want to take that tie offer?\n\tBabamots: Yeah, somehow I thought that would change something, but I guess it didn't. Gimme a few more moves. I may be on to something this time.\n\n71) mneme: Build G1 Clio\n\n72) Babamots: Build G2 Kronos\n\n73) mneme: Move G1 Clio Terpsichore\n\n74) Babamots: Move G1 Bolarus Polyhymnia\n\n75) mneme: Sacrifice G2 Euterpe\nBuild G2 Clio\nBuild G3 Terpsichore\n\n76) Babamots: Move R3 Bolarus Polyhymnia\n\n77) mneme: Move R2 Terpsichore Polyhymnia\n\n78) Babamots: Sacrifice R1 Polyhymnia\nAttack R2 Polyhymnia\n\n79) mneme: Move R3 Orion Bolarus\n\n80) Babamots: Move Y2 Bolarus Babamots\n\n81) mneme: Move Y1 Terpsichore Bolarus\n\n82) Babamots: Sacrifice Y2 Polyhymnia\nDiscover B1 Babamots R1 Betazed\nMove G2 Kronos Mneme\n\n83) mneme: Move R3 Clio Mneme\n\n84) Babamots: Sacrifice Y3 Kronos\nMove G1 Polyhymnia Mneme\nMove G2 Kronos Mneme\nMove R3 Polyhymnia Mneme\nCatastrophe Mneme G\n\n85) mneme: Sacrifice G3 Terpsichore\nBuild Y2 Bolarus\nBuild Y3 Orion\nBuild B3 Orion\n\n86) Babamots: Sacrifice Y3 Babamots\nMove R2 Polyhymnia Mneme\nMove B1 Polyhymnia Mneme\nCatastrophe Mneme R\nMove B1 Betazed Mneme\nCatastrophe Mneme B\n\n\tBabamots: Wow, very good game! So many games end because of a blunder, but you played well every step of the way.\n\tmneme: The same. If you'd ever let me have a y2, much less a y3 before you were all set up, it would have been a very different game!\n\nHomeworlds Online (SDG# 34543)\nVariants: "Unrated"\nStarted: 2018.9.6, Ended: 2018.9.17\nParticipants: eliscinsky (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 G1 Y3\n\tBabamots: For the record, this is a practice game and not part of the ongoing tournament.\n\n2) eliscinsky: Homeworld R1 B2 G3\n\teliscinsky: Understood & Agreed. Thanks for the rematch!\n\n3) Babamots: Build Y1 Babamots\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Babamots: Trade Y1 G1 Babamots\n\teliscinsky: I see the advantage of your HW. Nice.\n\n6) eliscinsky: B G2 Eliscinsky\n\tBabamots: What do you see as the advantage of my homeworld? I deliberately took a setup that I consider a bit weak.\n\teliscinsky: The ability to build y quickly, and gain larges soon. Or am I missing something?\n\n7) Babamots: Build G2 Babamots\n\tBabamots: It's true that starting with a yellow ship gives me a bit of a head start on getting yellows, but I think it slows down my overall expansion a bit. Here's my theory: in order to expand rapidly, you want to either get a blue ship in a green system or vice versa (in order to create many-colored ships closer to your enemy than your home is). If you're focused on gathering yellow, you're slower to get blue and green together in a forward system.\n\n8) eliscinsky: Trade G2 Y2 Eliscinsky\n\n9) Babamots: Discover G1 Babamots B2 Bajor\n\n10) eliscinsky: Discover G1 Eliscinsky B3 Trill\n\n11) Babamots: Discover G2 Babamots B2 Cardassia\n\n12) eliscinsky: B G2 Trill\n\n13) Babamots: Build Y1 Babamots\n\n14) eliscinsky: Trade G1 Y1 Trill\n\n15) Babamots: Move Y1 Babamots Cardassia\n\n16) eliscinsky: Build G1 Eliscinsky\n\n17) Babamots: Build Y1 Cardassia\n\n18) eliscinsky: Build Y2 Eliscinsky\n\n19) Babamots: Trade Y1 R1 Cardassia\n\n20) eliscinsky: Build G2 Trill\n\n21) Babamots: Build G3 Bajor\n\n22) eliscinsky: Sacrifice Y2 Eliscinsky\nMove G2 Trill Bajor\nMove G2 Trill Bajor\nCatastrophe Bajor Green\n\n23) Babamots: Build R1 Cardassia\n\tBabamots: Unfortunately, if you build a g3 now in either of your systems, I can catastrophe it in a good exchange for me.\r\nIf you build at home:\r\nsacrifice y3 Babamots\r\nmove g1 Bajor Trill\r\nmove g1 Trill eliscinsky\r\nmove g3 Cardassia Babamots\r\ncatastrophe eliscinsky g\n\teliscinsky: Yes, I figured I should watch out for that. That's why I figured I'd do ...\n\n24) eliscinsky: T Y2 R2 Eliscinsky\n\n25) Babamots: Build Y1 Cardassia\n\n26) eliscinsky: M Y1 Trill Eliscinsky\n\tBabamots: By building the last r1 piece, I'm trying to force you to trade your y2 for r2. That will limit your ability to build more yellow.\r\n\r\nYou could also trade your g3 for r3, but it's nice to have smaller red pieces in case you need to sacrifice for a single attack.\r\n\r\nFailing to have red ships while my opponent has them is pretty high on that list of danger signs I sent you. But I won't attack yet since the only ship I could come after is your y1, which can just run away.\n\n27) Babamots: Build Y2 Cardassia\n\n28) eliscinsky: Build Y2 Eliscinsky\n\n29) Babamots: Discover Y2 Cardassia Y3 Iconia\n\n30) eliscinsky: D R2 Eliscinsky Y3 Trill\n\n31) Babamots: Build Y2 Babamots\n\n32) eliscinsky: M G1 Eliscinsky Trill\n\n33) Babamots: Build G1 Cardassia\n\tBabamots: I discovered a y3 system to keep the piece away from you. My hope is to sacrifice my g2 to build the remaining y2 and y3. You can block me in a couple of ways.\n\n34) eliscinsky: B G2 Eliscinsky\n\n35) Babamots: Move G1 Cardassia Iconia\n\n36) eliscinsky: B G2 Trill\n\n37) Babamots: Build G3 Cardassia\n\n38) eliscinsky: Build R2 Trill\n\n39) Babamots: Build G3 Iconia\n\n40) eliscinsky: D R2 Trill B2 Betazed\n\n41) Babamots: Sacrifice Y3 Babamots\nMove G1 Iconia Eliscinsky\nMove G2 Cardassia Iconia\nMove G2 Iconia Eliscinsky\nCatastrophe Eliscinsky G\n\n42) eliscinsky: Trade Y2 R2 Eliscinsky\n\tBabamots: I didn't foresee this problem for you last night. Since I have a factory in Cardassia, I can still build the g3 even after your partial block. If I do that, you'll be able to sacrifice your y2 to use your g1 for a green catastrophe in Iconia, but looking at it from this moment, you're losing a y2 and a g1 to kill my g1 (after which, I'll build that y2 piece, and you'll have an even more serious yellow shortage).\r\n\r\nAll that to say, you may want to undo. I have to go for now, but I'll look for a better move for you this afternoon.\n\n43) Babamots: Move G3 Iconia Eliscinsky\n\teliscinsky: Thanks. I've seen many issues with my available options. Have to go back to a longer chess like game. BTW, what do you think of my last move?\n\tBabamots: When you say "last move," I guess you mean building an r2. It gives you another medium ship without making large ones available to me, so I think it's pretty good.\r\n\r\nIf you now spread out your reds (mine are sill in the same system together), you're a bit better prepared to compete for the large red pieces. You're going to want another large ship soon to defend Trill before I decide to move a large there to attack.\n\n44) eliscinsky: M R2 Trill Cardassia\n\teliscinsky: That's what I was thinking. D r2 ....\n\n45) Babamots: Attack R2 Eliscinsky\n\teliscinsky: BTW, I really appreciate all the help and training. \n\tBabamots: Well, I hope I help some. I don't feel like a great teacher when I usually realize what you should have done *after* you do something else. Maybe I like winning too much :-P\n\tBabamots: Here's a little quiz: what would you do if I moved my g3 to Trill?\n\teliscinsky: In any competition there is usually one winner and one loser. If I lose, I try to learn something from the loss. So NP if you win. ;)\r\n\r\nSo now you Move G3 Cardassia Trill ... I could:\r\n\r\n1) Move G2 eliscinsky Trill, Catastrophe Trill Green ... or ...\r\n\r\n2) Sacrifice G3 Eliscinsky, Build R2 Trill, Build R3 Betazed, Build G3 eliscinsky (if I build an R3 in Trill you'll just attach it with your G3 by sacrificing one of your R1's. Good return.) ... or ...\r\n\r\n3) Move R2 Trill eliscinsky, & allow you to sacrifice your 2 R's to attach my G's in Trill, then Move G2 eliscinsky Trill, Catastrophe Trill Green - plus the Y3 will also be freed up. Meanwhile Trade G2 R2 eliscisnky, then Discover R2 eliscinsky R3 Romulus ... or ...\r\n\r\n4) Move R2 Trill Betazed, but it would get stuck there, as I don't want to give up my Yellow.\r\n\r\n\r\nMoving R2 Trill Cardassia ... does me no good as you'd just attach and take the R2 over.\r\nAlso at some point you're going to have to Trade for more Red.\r\nIf I allow you to take Trill by using your R1's, then I can try to snatch up all the Red, and once I have a R3 move it into you HW and attack.\r\nNot sure what I'm going to do. I'm thinking it all over, trying to see if I missed anything. For now #1 would seem the best option.\r\n\r\nI seem to be one step behind to really make a move to put me into an advantage.\r\nBTW, I'm feeling squeezed / penned in. Thanks ;)\r\n\n\tBabamots: Some good thoughts. Here are my thoughts to your thoughts.\r\n\r\n1) You can do better than your first suggestion. Instead of moving the g2 with yellow, do what I call "green travel" to get your g2 to Trill (sacrifice and build), and then you have an extra green action to build an r2:\r\n\r\nsacrifice g2 eliscinsky\r\nbuild g2 Trill\r\nbuild r2 Trill\r\ncatastrophe Trill g\r\n\r\n2) I think this is your best move. You just ignore my threat and score a large ship. I would probably attack your r2, but then you could do the green catastrophe from suggestion 1).\r\n\r\n3) Also pretty good. Escape with the one ship you wouldn't be able to catastrophe away after I attacked it. I don't understand the end of your continuation though. You would put an r2 ship in an r3 system?\r\n\r\n4) I agree that this would solve the immediate problem but it doesn't get you much.\n\teliscinsky: Ahhh, I still overlook those types of plays sometimes.\r\n\r\nAlso about your teaching ... If you can get your student to understand / comprehend / learn a new idea or method or way of thinking then you've done the job. So to you I say "Well done". You've most certainly grown my understanding of the game.\r\n\r\nIn fact, as most good students do, I was up half the night (2:30 & 4:00 am - couldn't sleep) thinking about HWs and what else I could do. Then I saw your message, and thought about it a little more but finally got back to sleep. haha.\r\n\r\nSo it is your move. Since I see other moves / strategy you could do, I'll await your next move. Have you considered moving G's from Iconia to eliscinsky. I'll either have to:\r\n1) take your 1st G, but you 2nd would Catastrophe my G's. You'd have to get some Reds back but I think in the end you'd still win. ... or ...\r\n2) move my G or Y out but that will allow you to take my HW. ( I think you're going to win anyway, but that's just me.;) )\r\n\n\tBabamots: I lost sleep in the last tournament rehearsing my opponent's anticipated moves and my responses. Stare at a position long enough and it will get stuck in your head. And that's not always bad. At least once, obsessive mental review made me realize I'd made a blunder that I was able to undo.\r\n\r\nI never planned on moving my g3 to Trill, but since I have a large that *could* go there, it should have crossed your mind before you made your previous move. That's one of the "red flag" scenarios on the list I sent in our last game: "My opponent has a piece too large for me to attack in one of my systems." It was a good thought exercise.\r\n\r\nI haven't really been looking for a killing blow yet, but now that I'm looking, it looks like you're right about it.\r\n\r\nBased on this position and my own recent bad experience, I'm thinking about adding something to the red flag list: "Your only large in your home system is the same color as another ship/marker there."\n\n46) eliscinsky: Sacrifice G2 Trill\nBuild Y2 Eliscinsky\nBuild R3 Cardassia\nCatastrophe Cardassia Red\n\tBabamots: 1) If you build y3 in your home, I'll move my y2 there for a winning catastrophe.\r\n2) If you sacrifice a yellow to move a ship to my home, I'll attack it and proceed with plan 3).\r\n3) In all other cases, I plan to move my g3 to your home.\r\n\r\nYou have a move that will delay the game longer than my suggestions 1) or 2) would (though not for VERY long). Can you find it?\n\teliscinsky: Aaarrrggghhhh! You distracted me! (not really) LOL!\r\n\r\nLet's see ... not sure if this will work for me ... but ...\n\n47) Babamots: Sacrifice R2 Eliscinsky\nAttack Y1 Eliscinsky\nAttack Y2 Eliscinsky\n\tBabamots: I was going to suggest getting a green ship to your home, preferably by trading, say "trade y1 g1 eliscinsky." Then, if I move in my g3, you can catastrophe it by building two more greens by sacrificing your g2 in Trill. It's a high price, but it would have delayed the game a bit more.\n\n\teliscinsky: Had I traded my Y2 for a B2 in eliscinsky we might have a very different game. \r\n\r\nGasping for breath!!! LOL\n\teliscinsky: Nope, guess I couldn't have done that, but was there a g2, or just left it alone. \n\teliscinsky: UNCLE!!!\n\tBabamots: I'll let your remaining troops love if they surrender. \n\tBabamots: I'll also let them live.\n\nHomeworlds Online (SDG# 34539)\nVariants: "Hard time"\nStarted: 2018.9.6, Ended: 2018.9.16\nParticipants: speardane (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: For the record, this is for the tournament. And this is the AI account? I'm impressed with its performance so far. I didn't suppose it would be good enough to beat anyone.\n\n2) speardane: Homeworld Y3 G2 B3\n\n3) Babamots: Build G1 Babamots\n\tspeardane: Indeed, speardane is an AI. It's really not GOOD enough to beat anyone; it's just that some players have played BAD enough to get beaten by it. ;)\n\n4) speardane: Build B1 Speardane\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) speardane: Trade B1 R1 Speardane\n\n7) Babamots: Build Y1 Babamots\n\n8) speardane: Build R1 Speardane\n\n9) Babamots: Build Y1 Babamots\n\n10) speardane: Discover R1 Speardane B1 Delos\n\n11) Babamots: Discover Y1 Babamots G3 Orion\n\n12) speardane: Build R2 Speardane\n\tBabamots: Do you ever cringe when you see the moves your AI chooses?\n\n13) Babamots: Build Y2 Babamots\n\tspeardane: Specifically one move near the end of game 34513, yes. Generally the bad moves aren't so blatant that I bother to notice. I just cut-and-paste back and forth without trying to analyze on the fly, because that'd just confuse me in my OWN tournament games. :)\n\n14) speardane: Trade R2 Y2 Speardane\n\n15) Babamots: Discover Y1 Babamots B3 Betazed\n\n16) speardane: Move Y2 Speardane Delos\n\n17) Babamots: Sacrifice G3 Babamots\nBuild Y2 Orion\nBuild Y3 Betazed\nBuild Y3 Babamots\n\n18) speardane: Trade R1 G1 Delos\n\n19) Babamots: Trade Y1 G1 Babamots\n\n20) speardane: Build Y1 Delos\n\n21) Babamots: Trade Y1 R1 Betazed\n\n22) speardane: Trade Y2 R2 Delos\n\n23) Babamots: Move Y3 Betazed Delos\n\n24) speardane: Move R2 Delos Betazed\n\n25) Babamots: Sacrifice R1 Betazed\nAttack Y1 Delos\n\n26) speardane: Sacrifice G1 Delos\nBuild R1 Betazed\n\n27) Babamots: Build Y1 Babamots\n\n28) speardane: Trade R2 Y2 Betazed\n\n29) Babamots: Trade Y2 R2 Babamots\n\n30) speardane: Trade R1 G1 Betazed\n\n31) Babamots: Build Y2 Orion\n\n32) speardane: Build B1 Speardane\n\n33) Babamots: Discover G1 Babamots B3 Bolarus\n\n34) speardane: Discover B1 Speardane R1 Lebling\n\n35) Babamots: Move Y2 Orion Lebling\n\n36) speardane: Sacrifice B1 Lebling\nPass\n\n37) Babamots: Build G1 Bolarus\n\n38) speardane: Build R2 Speardane\n\n39) Babamots: Sacrifice Y1 Orion\nMove G1 Bolarus Lebling\n\n40) speardane: Trade R2 G2 Speardane\n\n41) Babamots: Build G2 Lebling\n\n42) speardane: Build G3 Betazed\n\n43) Babamots: Sacrifice Y3 Delos\nMove Y2 Lebling Speardane\nMove Y1 Delos Speardane\nMove Y2 Orion Lebling\n\n44) speardane: Sacrifice G2 Speardane\nBuild Y1 Betazed\nBuild Y3 Betazed\n\n45) Babamots: Move G1 Lebling Speardane\n\n46) speardane: Sacrifice Y3 Betazed\nMove Y1 Betazed Babamots\nMove Y2 Betazed Babamots\nMove G3 Betazed Lebling\nCatastrophe Babamots Yellow\n\n47) Babamots: Sacrifice G2 Lebling\nBuild G2 Speardane\nBuild Y1 Speardane\nCatastrophe Speardane Y\n\tspeardane: Well, that was an example of a move that I think was obviously suboptimal, unless I'm missing something. :P\n\tBabamots: Looks like I've been moving too quickly in this game. I didn't give your AI enough credit. I didn't notice that coming, but I think I still win in a couple of moves.\n\n48) speardane: Pass\n\tBabamots: Oh, you mean you AI's move was suboptimal. I just checked the archive view and yes, I should have lost just now. Dang. Well, thanks for entering the move honestly. That's very embarrassing on my part.\n\tBabamots: I should have catastrophe'd that yellow fleet in my orbit, but I didn't want to delay my victory by even one move. Shoulda seen it was a serious threat.\n\n49) Babamots: Build G2 Speardane\nCatastrophe Speardane G\n\tspeardane: Wow, that really was close -- I believe if speardane had moved g3 to your homeworld instead of bizarrely going after those two medium ships at Lebling, it would have been game over the other way. Pretty coincidental you started this game by asking if speardane ever did anything boneheaded! :)\n\tBabamots: That's the move I saw too. I nearly swallowed my tongue when I saw I should have lost. Overall, it plays much better than I expected. A little tuning and maybe it'll get me next time. Thanks for the game!\n\tDraw5PlayAll: 1. Why is speardane referring to self in third person?\r\n2. What are Bolarus and Lebling?\n\tDraw5PlayAll: Oh. Who is the primary (human) account for speardane? Is the code on github?\n\tBabamots: ajo operates the "speardane" AI. I think it uses code that's on the GitHub project I think you've asked about before, though maybe he uses a private, updated version.\r\nIn Star Trek, Bolarus is the homeworld of the Bolians. The have blue skin and are usually bald. The "Bank of Bolius" is an important one for people trying to keep their finances secret.\r\nI don't know what Lebling is. He named that one.\n\tDraw5PlayAll: I would like to find a link\n\tBabamots: My profile has a link to ajo's AI project on GitHub.\n\tDraw5PlayAll: Oh I did not know that ajo and Quuxplusone were the same person.\n\tspeardane: I just noticed this conversation. The code on the GitHub is indeed the code used by speardane in this tournament, except for one game (against mneme) where I decided to try an alpha-beta search thing that ended up not working very well.\n\tspeardane: The AI's default system names are all surnames of pioneers in computer gaming/AI, except for "Delos," which is a reference to https://en.wikipedia.org/wiki/Westworld_(film) . "Lebling" in this context is therefore a reference to https://en.wikipedia.org/wiki/Dave_Lebling .\n\n\nHomeworlds Online (SDG# 34546)\nVariants: "Hard time"\nStarted: 2018.9.8, Ended: 2018.9.27\nParticipants: Babamots (S), deanthebean (N)\nWinner: Babamots\n\n1) deanthebean: Homeworld G3 Y2 B3\n\n2) Babamots: Homeworld B2 R1 G3\n\tdeanthebean: Have fun!\n\n3) deanthebean: Build B1 Deanthebean\n\tBabamots: You too! And may life give you the time to represent your best play! (TLDR good luck!)\n\n4) Babamots: Build G1 Babamots\n\tdeanthebean: Thanks and likewise!\n\n5) deanthebean: Build B1 Deanthebean\n\n6) Babamots: Trade G1 B1 Babamots\n\n7) deanthebean: Trade B1 R1 Deanthebean\n\n8) Babamots: Build G1 Babamots\n\n9) deanthebean: Trade B1 Y1 Deanthebean\n\n10) Babamots: Trade G1 Y1 Babamots\n\n11) deanthebean: Build B1 Deanthebean\n\n12) Babamots: Build Y1 Babamots\n\n13) deanthebean: Trade B3 G3 Deanthebean\n\n14) Babamots: Discover Y1 Babamots Y3 Iconia\n\n15) deanthebean: Discover Y1 Deanthebean B1 Newstar\n\n16) Babamots: Build Y2 Babamots\n\n17) deanthebean: Build B2 Deanthebean\n\n18) Babamots: Discover Y2 Babamots B3 Andoria\n\n19) deanthebean: Discover B1 Deanthebean G1 Newerstar\n\n20) Babamots: Sacrifice G3 Babamots\nBuild Y2 Iconia\nBuild Y3 Andoria\nBuild Y3 Babamots\n\n21) deanthebean: Sacrifice G3 Deanthebean\nBuild B2 Deanthebean\nBuild B3 Newerstar\nBuild B3 Deanthebean\n\n22) Babamots: Discover Y1 Iconia G2 Risa\n\n23) deanthebean: Trade B3 G3 Newerstar\n\n24) Babamots: Trade B1 G1 Babamots\n\n25) deanthebean: Trade B3 G3 Deanthebean\n\n26) Babamots: Build G1 Babamots\n\n27) deanthebean: Move Y1 Newstar Risa\n\n28) Babamots: Trade G1 R1 Babamots\n\n29) deanthebean: Move Y1 Risa Newerstar\n\n30) Babamots: Build G1 Babamots\n\tDraw5PlayAll: Andoria? Risa?\n\tBabamots: In Star Trek, Andoria is the homeworld of the Andorians (an aggressive, blue-skinned race with large antanae).\r\nRisa is also a Star Trek world. It's a popular tropical vacation planet.\n\n31) deanthebean: Build R2 Deanthebean\n\n32) Babamots: Move G1 Babamots Iconia\n\n33) deanthebean: Move G3 Newerstar Iconia\n\n34) Babamots: Move Y2 Iconia Newerstar\n\n35) deanthebean: Sacrifice R1 Deanthebean\nAttack G1 Iconia\n\n36) Babamots: Sacrifice R1 Babamots\nAttack Y1 Newerstar\n\n37) deanthebean: Move R2 Deanthebean Newerstar\n\n38) Babamots: Sacrifice Y1 Newerstar\nDiscover Y2 Newerstar R2 Kronos\n\n39) deanthebean: Trade B1 Y1 Newerstar\n\n40) Babamots: Trade Y1 R1 Babamots\n\n41) deanthebean: Build Y1 Newerstar\n\n42) Babamots: Build G2 Babamots\n\n43) deanthebean: Move G3 Iconia Kronos\n\n44) Babamots: Discover Y2 Kronos R1 Romulus\n\n45) deanthebean: Build G2 Iconia\n\n46) Babamots: Move G1 Babamots Andoria\n\n47) deanthebean: Move R2 Newerstar Iconia\n\n48) Babamots: Move R1 Babamots Andoria\n\n49) deanthebean: Build R2 Iconia\n\n50) Babamots: Move G1 Andoria Romulus\n\n51) deanthebean: Move R2 Iconia Risa\n\n52) Babamots: Sacrifice G2 Babamots\nBuild G2 Romulus\nBuild R3 Andoria\n\n53) deanthebean: Move G3 Deanthebean Romulus\n\n54) Babamots: Sacrifice Y2 Romulus\nMove R3 Andoria Romulus\nMove R3 Romulus Deanthebean\n\n55) deanthebean: Move Y1 Newerstar Kronos\n\n56) Babamots: Sacrifice G2 Romulus\nBuild R3 Deanthebean\nBuild R3 Deanthebean\n\n57) deanthebean: Sacrifice G3 Kronos\nBuild B1 Deanthebean\nBuild B1 Deanthebean\nBuild B1 Deanthebean\n\tdeanthebean: I can't see a defence to that! well played. \n\n58) Babamots: Build Y2 Risa\nCatastrophe Deanthebean B\n\tdeanthebean: OK. Let's try this. \n\n\tBabamots: Thanks for the game!\n\nHomeworlds Online (SDG# 34553)\nVariants: "Hard time"\nStarted: 2018.9.8, Ended: 2018.9.19\nParticipants: Felix (S), ajo (N)\nWinner: Felix\n\n1) ajo: Homeworld Y3 B2 G3\n\n2) Felix: Homeworld R1 B2 G3\n\n3) ajo: Build G1 Ajo\n\tFelix: Good luck and have fun!\n\n4) Felix: B G1 Felix\n\tajo: Good luck!\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) Felix: T G1 Y1 Felix\n\n7) ajo: Build G1 Ajo\n\n8) Felix: B G1 Felix\n\n9) ajo: Discover G1 Ajo B1 Alpha\n\n10) Felix: T G1 B1 Felix\n\n11) ajo: Build G1 Alpha\n\n12) Felix: B B1 Felix\n\n13) ajo: Trade G1 Y1 Alpha\n\n14) Felix: D B1 Felix G3 Rim\n\n15) ajo: Build G1 Ajo\n\n16) Felix: Sacrifice G3 Felix\nBuild B2 Rim\nBuild B3 Rim\nBuild B3 Felix\n\n17) ajo: Build Y2 Alpha\n\n18) Felix: Trade B3 G3 Felix\n\tajo: Shoot, I fall for that "no factory but it doesn't matter because I'm getting a blue monopoly" trap waaay too much. It needs a catchy name like the Bluebird Mistake. Maybe we should call it the Yellowbird. :P\n\n19) ajo: Discover Y1 Alpha B3 Beta\n\tFelix: Haha, that's a good name! It is pretty common. I've made the same mistake myself many times!\n\n20) Felix: Build B3 Felix\n\n21) ajo: Sacrifice G3 Ajo\nBuild Y2 Alpha\nBuild Y2 Beta\nBuild Y3 Ajo\n\n22) Felix: Trade B3 Y3 Rim\n\tajo: Practicing. ;)\n\n23) ajo: Trade Y1 R1 Ajo\n\tFelix: I'm honestly still not sure if I'd rather have a monopoly on blue or yellow. Mobility is everything in the end.\n\n24) Felix: Build B3 Rim\n\tajo: Yes, but I'd rather have a monopoly on blue than not have a monopoly on anything, which is my situation at the moment!\n\n25) ajo: Build R1 Ajo\n\n26) Felix: Trade B3 R3 Rim\n\n27) ajo: Discover Y2 Alpha B3 Gamma\n\n28) Felix: Build Y1 Rim\n\n29) ajo: Build G1 Alpha\n\n30) Felix: Build R2 Rim\n\n31) ajo: Sacrifice Y2 Gamma\nMove G1 Alpha Rim\nMove G1 Alpha Rim\n\n32) Felix: Sacrifice Y3 Rim\nMove R3 Rim Alpha\nMove B1 Rim Alpha\nDiscover B2 Rim G2 Booger\n\n33) ajo: Sacrifice Y2 Alpha\nMove G1 Rim Booger\nMove G1 Booger Beta\n\tFelix: Very nice attack! And interesting. Really made me think.\n\n34) Felix: Build G2 Felix\n\tajo: Doesn't seem to have hurt you much, though.\n\n35) ajo: Build G2 Ajo\n\n36) Felix: S G2 Felix\nB B3 Alpha\nB R2 Alpha\n\n37) ajo: Sacrifice Y1 Beta\nDiscover R1 Ajo Y1 Gamma\n\n38) Felix: T B3 G3 Alpha\n\n39) ajo: Sacrifice G1 Rim\nBuild R2 Gamma\n\n40) Felix: B B3 Booger\n\n41) ajo: Sacrifice G2 Ajo\nBuild R3 Gamma\nBuild R3 Ajo\n\n42) Felix: M R2 Rim Gamma\nC Gamma Red\n\n43) ajo: Discover R3 Ajo G1 Gamma\n\n44) Felix: T B3 Y3 Booger\n\n45) ajo: Build G2 Ajo\n\n46) Felix: B B3 Booger\n\n47) ajo: Build G2 Beta\n\n48) Felix: Sacrifice G3 Felix\nBuild G3 Alpha\nBuild Y1 Rim\nBuild Y2 Booger\n\n49) ajo: Build Y2 Beta\n\n50) Felix: M Y1 Rim Alpha\n\n51) ajo: Sacrifice Y2 Beta\nMove R3 Gamma Beta\nMove G1 Beta Alpha\n\n52) Felix: Move Y1 Alpha Ajo\n\n53) ajo: Trade Y3 R3 Ajo\n\n54) Felix: Sacrifice G3 Alpha\nBuild Y2 Ajo\nBuild Y3 Ajo\nPass\n\tajo: So it begins...\n\n55) ajo: Catastrophe Ajo Yellow\nBuild R1 Beta\n\tFelix: And now the dominoes fall!\n\n56) Felix: Sacrifice Y3 Booger\nMove B1 Alpha Ajo\nMove B3 Booger Alpha\nMove B3 Alpha Ajo\n\n57) ajo: Pass\n\n58) Felix: Sacrifice Y2 Booger\nMove B2 Booger Beta\nMove B2 Beta Ajo\nCatastrophe Ajo Blue\n\tajo: Good game!\n\tFelix: Thank you! Good game, and good luck in the rest of your tourney games!\n\n\nHomeworlds Online (SDG# 34555)\nVariants: "Hard time"\nStarted: 2018.9.9, Ended: 2018.9.20\nParticipants: Trydnt (S), Felix (N)\nWinner: Felix\n\n1) Felix: H R1 B3 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) Felix: B G1 Felix\n\n4) Trydnt: Build G1 Trydnt\n\tFelix: Good luck and have fun!\n\tTrydnt: You too! Best of luck\n\n5) Felix: T G1 R1 Felix\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Felix: B R2 Felix\n\n8) Trydnt: Build R2 Trydnt\n\n9) Felix: T R2 Y2 Felix\n\n10) Trydnt: Build R2 Trydnt\n\n11) Felix: Build R2 Felix\n\n12) Trydnt: Discover R1 Trydnt G1 G1\n\n13) Felix: Discover R1 Felix B2 Ramp\n\n14) Trydnt: Trade R2 Y2 Trydnt\n\n15) Felix: Build G1 Felix\n\n16) Trydnt: Move Y2 Trydnt G1\n\n17) Felix: Move G1 Felix Ramp\n\n18) Trydnt: Build Y1 G1\n\n19) Felix: Build Y1 Felix\n\n20) Trydnt: Discover Y1 G1 G2 G2\n\n21) Felix: Move Y2 Felix Ramp\n\n22) Trydnt: Build Y1 G1\n\n23) Felix: Build Y2 Felix\n\n24) Trydnt: Build Y3 G2\n\n25) Felix: Build Y3 Ramp\n\n26) Trydnt: Build R2 G1\n\n27) Felix: B R3 Ramp\n\n28) Trydnt: Build R3 Trydnt\n\n29) Felix: M R3 Ramp G1\n\n30) Trydnt: Sacrifice Y2 G1\nDiscover R1 G1 B2 B2\nDiscover R2 G1 Y2 Y2\n\n31) Felix: M R2 Felix B2\n\n32) Trydnt: Sacrifice Y1 G1\nDiscover R1 B2 G1 Gee1\n\n33) Felix: Build R3 G1\n\n34) Trydnt: Build G2 Trydnt\n\n35) Felix: Build G2 Felix\n\n36) Trydnt: Discover R3 Trydnt Y1 Y1\n\n37) Felix: T Y3 B3 Ramp\n\n38) Trydnt: Discover R3 Y1 Y3 Y3\n\n39) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Ramp\nBuild Y1 Ramp\n\n40) Trydnt: Discover Y1 G2 B1 B1\n\n41) Felix: Trade G3 B3 Ramp\n\n42) Trydnt: Sacrifice Y3 G2\nMove R2 Trydnt G1\nMove R2 Y2 G1\nCatastrophe G1 R\nMove R3 Y3 B1\n\tFelix: So many systems....\n\n43) Felix: Move B3 Ramp Gee1\n\n44) Trydnt: Move G2 Trydnt B1\n\n45) Felix: Move Y2 Ramp Gee1\n\n46) Trydnt: Build G1 Trydnt\n\n47) Felix: Sacrifice G3 Felix\nBuild G2 Felix\nBuild G3 Felix\nBuild G3 Ramp\n\n48) Trydnt: Trade G3 R3 Trydnt\n\n49) Felix: Sacrifice G2 Felix\nBuild B1 Gee1\nBuild B1 Gee1\n\n50) Trydnt: Build R2 B1\n\n51) Felix: Sacrifice G3 Ramp\nBuild Y2 Gee1\nBuild Y3 Ramp\nBuild Y3 Gee1\n\n52) Trydnt: Sacrifice R2 B1\nAttack B1 Gee1\nAttack B1 Gee1\n\n53) Felix: Sacrifice R1 Ramp\nAttack R1 Gee1\n\n54) Trydnt: Trade B1 R1 Gee1\n\n55) Felix: Sacrifice R2 B2\nAttack R1 Gee1\nAttack B1 Gee1\n\n56) Trydnt: Build R2 B1\n\n57) Felix: M B3 Gee1 Trydnt\n\n58) Trydnt: Attack B3 Trydnt\n\n59) Felix: S Y3 Gee1\nM B1 Gee1 Trydnt\nM B3 Ramp Gee1\nM B3 Gee1 Trydnt\nC Trydnt Blue\n\tFelix: Nice move!\n\n60) Trydnt: Build Y3 B1\n\n61) Felix: Sacrifice Y3 Ramp\nMove Y2 Gee1 Trydnt\nMove Y2 Gee1 Trydnt\nMove Y1 Ramp Trydnt\nCatastrophe Trydnt Yellow\n\n\tFelix: Thank you! Good game, and good luck in the rest of the tournament!\n\nHomeworlds Online (SDG# 34552)\nVariants: "Hard time"\nStarted: 2018.9.9, Ended: 2018.12.18\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Felix: H B1 Y3 G3\n\n3) ts52: Build G1 Ts52\n\tFelix: Hey good luck and have fun, as usual!\n\tts52: Thanks. You too!\n\n4) Felix: Build G1 Felix\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Discover B2 Ts52 G3 Kermit\n\n10) Felix: Discover B1 Felix Y2 Reign\n\n11) ts52: Build B3 Kermit\n\n12) Felix: Build B3 Felix\n\n13) ts52: Trade B3 Y3 Kermit\n\n14) Felix: T B2 R2 Felix\n\n15) ts52: Trade B1 R1 Ts52\n\n16) Felix: Build G1 Felix\n\n17) ts52: Build Y1 Kermit\n\n18) Felix: Trade G1 Y1 Felix\n\n19) ts52: Build Y2 Kermit\n\n20) Felix: Discover Y1 Felix G2 Out\n\n21) ts52: Discover Y2 Kermit B2 Gonzo\n\n22) Felix: Build Y2 Out\n\n23) ts52: Move Y3 Kermit Gonzo\n\n24) Felix: Move Y1 Out Kermit\n\n25) ts52: Trade Y2 G2 Gonzo\n\n26) Felix: Sacrifice Y2 Out\nMove B3 Felix Reign\nMove B3 Reign Kermit\n\tts52: This is for the 2018 Tournament, correct?\n\n27) ts52: Build Y2 Gonzo\n\tFelix: Yes, that was my understanding! Should have made that clearer. If that's fine with you?\n\n28) Felix: B R1 Felix\n\tts52: It is. I have no concerns that I'm going to do well in this tournament. :)\n\n29) ts52: Trade Y2 R2 Gonzo\n\n30) Felix: Sacrifice R2 Felix\nAttack Y1 Kermit\nAttack B2 Kermit\n\tFelix: Ha, well I already timed out in a game against the AI opponent (speardane) so there's that. And you're doing well in this game!\n\n31) ts52: Build Y2 Gonzo\n\tts52: I hadn't realized there was an AI opponent. Interesting!\n\tFelix: I didn't know it either! Babamots clued me in to it.\n\n32) Felix: Move Y1 Kermit Gonzo\n\n33) ts52: Trade Y3 R3 Gonzo\n\n34) Felix: Build G1 Felix\n\n35) ts52: Build G1 Gonzo\n\n36) Felix: Build Y2 Kermit\n\n37) ts52: Sacrifice Y2 Gonzo\nMove G1 Gonzo Felix\nMove G2 Gonzo Felix\nCatastrophe Felix G\n\n38) Felix: Sacrifice Y2 Kermit\nMove B3 Kermit Reign\nMove B3 Reign Felix\n\n39) ts52: Attack Y1S Gonzo\n\n40) Felix: T B3 G3 Felix\n\n41) ts52: Move R3 Gonzo Kermit\n\n42) Felix: Discover B2 Kermit B1 Envision\n\n43) ts52: Attack Y1S Kermit\n\n44) Felix: Sacrifice G3 Felix\nBuild B3 Envision\nBuild B3 Reign\nBuild B3 Reign\n\n45) ts52: Move R2 Gonzo Felix\n\n46) Felix: Move B3 Reign Felix\n\n47) ts52: Attack R1S Felix\n\n48) Felix: Trade B2 R2 Envision\n\n49) ts52: Move R2 Felix Gonzo\n\n50) Felix: Trade B3 G3 Reign\n\n51) ts52: Build Y2 Kermit\n\n52) Felix: Trade B3 Y3 Envision\n\n53) ts52: Build G1 Ts52\n\n54) Felix: Sacrifice G3 Reign\nBuild B2 Reign\nBuild B3 Reign\nBuild B3 Felix\n\n55) ts52: Trade R2 G2 Gonzo\n\n56) Felix: Trade B3 G3 Reign\n\n57) ts52: Build Y2 Gonzo\n\n58) Felix: Sacrifice G3 Reign\nBuild B3 Reign\nBuild Y3 Envision\nBuild R1 Envision\n\n59) ts52: Sacrifice Y2 Kermit\nMove Y2 Gonzo Envision\nMove Y1 Gonzo Envision\nCatastrophe Envision Y\n\n60) Felix: Sacrifice R1 Envision\nAttack R1 Felix\n\n61) ts52: Build G1 Gonzo\n\n62) Felix: Trade B3 G3 Reign\n\n63) ts52: Trade G1 Y1 Gonzo\n\n64) Felix: Build B3 Reign\n\n65) ts52: Sacrifice G2 Gonzo\nBuild Y2 Gonzo\nBuild Y2 Kermit\n\n66) Felix: Discover B3 Reign R3 Mars\n\n67) ts52: Build Y3 Kermit\n\n68) Felix: Trade B3 Y3 Mars\n\n69) ts52: Move R3 Kermit Envision\n\n70) Felix: Sacrifice G3 Reign\nBuild R1 Envision\nBuild R2 Envision\nBuild B3 Reign\nCatastrophe Envision Red\n\n71) ts52: Trade Y1 B1 Gonzo\n\n72) Felix: Sacrifice B2 Reign\nTrade B3 G3 Felix\nTrade B3 R3 Reign\n\n73) ts52: Move Y2 Kermit Gonzo\n\n74) Felix: Sacrifice G3 Felix\nBuild B2 Reign\nBuild B3 Reign\nBuild Y1 Mars\n\n75) ts52: Move B1 Gonzo Kermit\n\n76) Felix: Discover B3 Reign B3 Renown\n\n77) ts52: Trade Y3 R3 Kermit\n\n78) Felix: Discover B2 Reign Y3 Steel\n\n79) ts52: Build G1 Ts52\n\n80) Felix: T B1 G1 Reign\n\n81) ts52: M G1 Ts52 Steel\n\n82) Felix: Sacrifice R1 Felix\nAttack G1 Steel\n\n83) ts52: Build B1 Kermit\n\n84) Felix: Move G1 Steel Ts52\n\n85) ts52: Sacrifice Y2 Gonzo\nMove G3 Ts52 Steel\nMove R3 Kermit Ts52\n\n86) Felix: Sacrifice Y3 Mars\nMove B3 Renown Ts52\nMove B2 Steel Ts52\nDiscover G1 Ts52 B3 Bomb\n\tDraw5PlayAll: Not even\n\n87) ts52: Attack B3S Ts52\n\n88) Felix: Sacrifice G1 Bomb\nBuild B3 Ts52\n\n89) ts52: Sacrifice G3 Steel\nBuild Y2 Kermit\nBuild Y3 Gonzo\nBuild Y3 Kermit\nCatastrophe Ts52 Blue\n\n90) Felix: Build R1 Reign\n\n91) ts52: Discover B1 Kermit G2 Robin\n\n92) Felix: Trade B3 G3 Felix\n\n93) ts52: Build B2 Robin\n\n94) Felix: Discover Y1 Mars G2 Greeny\n\n95) ts52: Build B2 Robin\n\n96) Felix: Build G1 Felix\n\n97) ts52: Move Y2 Kermit Robin\n\n98) Felix: Move R3 Reign Felix\n\n99) ts52: Move Y3 Kermit Robin\n\n100) Felix: Build R1 Felix\n\n101) ts52: Discover Y1 Kermit R2 Elmo\n\n102) Felix: Build R2 Reign\n\tFelix: I think I'm doomed :) I always pull the trigger too early!\n\n103) ts52: Sacrifice Y3 Gonzo\nMove Y1 Elmo Felix\nMove Y2 Gonzo Felix\nMove Y2 Robin Felix\nCatastrophe Felix Yellow\n\tts52: It's always tempting to cause catastrophe as soon as you can\n\n104) Felix: Pass\n\n105) ts52: Sacrifice Y3 Robin\nMove B1 Robin Felix\nMove B2 Robin Felix\nMove B2 Robin Felix\nCatastrophe Felix B\n\n\tFelix: Well done! Great game. You played very well through a half-destroyed homeworld\n\tts52: Thanks! A very good game. My only hope after you knocked out half my homeworld was keeping you from getting yellow.\n\nHomeworlds Online (SDG# 34560)\nVariants: "Unrated, Hard time"\nStarted: 2018.9.16, Ended: 2018.10.25\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: H B3 Y2 G3\n\n2) dlwillson: H Y3 R2 G3 *\n\tFelix: Hello again :) was this the game you wanted to try a yellow/red homeworld? If so, I can undo and try the same thing\n\n3) Felix: Pass\n\tdlwillson: Uh, woops! I moved before reading! Yes, this is that game, and I forgot to mark it unranked so I'll probably be giving up a few points on the experiment. :-)\r\n\r\nIt's good to see you!\n\n4) dlwillson: Build G1 Dlwillson\n\tFelix: I will happily drain one turn to offset your disadvantage!\r\n\r\nLikewise. Always a pleasure. How did code camp go? Did that already happen?\n\n5) Felix: B G1 Felix\n\tdlwillson: That kind of invalidates the test, but I'll take it, and we'll see what happens!\r\n\r\nDevOps Camp went well. I haven't gone through the feedbacks yet, but from my perspective, it was surprisingly packed with good learning. So much Kubernetes, and way more AWS CloudFormation than I could possibly want, but the campers seemed happy with it.\n\n6) dlwillson: D G1 Dlwillson B1 Sea\n\tFelix: We'll, now it's really just more as if you just moved first. \r\n\r\nAnd good! Glad to hear it!\n\n7) Felix: Trade G1 B1 Felix\n\n8) dlwillson: B G1 Dlwillson\n\n9) Felix: B G1 Felix\n\n10) dlwillson: B G2 Sea\n\n11) Felix: Build B1 Felix\n\n12) dlwillson: B G2 Dlwillson\n\n13) Felix: D G1 Felix Y1 Out\n\n14) dlwillson: M G1 Dlwillson Out\n\n15) Felix: Build G2 Out\n\n16) dlwillson: S G2 Sea\nB G2 Out\nB G3 Sea\nC Out G\n\n17) Felix: Discover B1 Felix G1 Out\n\n18) dlwillson: T G1 Y1 Sea\n\tFelix: Huh, this actually isn't working out too badly for you so far.\n\tdlwillson: I was thinking the same thing! But, I am having some trouble getting any other colors...\r\n\r\nAlso, I accidentally made the universe small. OOPS!\n\n19) Felix: Build B2 Out\n\n20) dlwillson: B G1 Sea\n\n21) Felix: Trade B2 Y2 Out\n\n22) dlwillson: Trade G1 R1 Sea\n\n23) Felix: Trade B1 R1 Felix\n\n24) dlwillson: S G2 Dlwillson\nB Y1 Sea\nB G1 Sea\n\n25) Felix: B B1 Out\n\n26) dlwillson: T G3 B3 Sea\n\n27) Felix: B B2 Out\n\n28) dlwillson: M B3 Sea Dlwillson\n\n29) Felix: Discover B1 Out G3 Center\n\n30) dlwillson: B G1 Sea\n\n31) Felix: Trade B2 R2 Out\n\n32) dlwillson: B G2 Dlwillson\n\n33) Felix: Build G2 Felix\n\n34) dlwillson: T G3 Y3 Dlwillson\n\n35) Felix: Move G2 Felix Sea\n\n36) dlwillson: B G2 Sea\nC Sea G\n\n37) Felix: Build B2 Out\n\n38) dlwillson: M Y3 Dlwillson Out\n\n39) Felix: Build Y1 Out\n\n40) dlwillson: S R1 Sea\nA R2 Out\n\n41) Felix: Sacrifice R1 Felix\nAttack R2 Out\n\n42) dlwillson: S G2 Dlwillson\nB Y2 Out\nB Y3 Sea\nC Out Y\n\n43) Felix: Trade B2 Y2 Out\n\tdlwillson: I am unhappy with that result. >:-|\n\n44) dlwillson: T Y1 G1 Sea\n\n45) Felix: Build B2 Out\n\n46) dlwillson: B G1 Sea\n\n47) Felix: Move B1 Out Felix\n\n48) dlwillson: B G2 Sea\n\n49) Felix: Build B2 Out\n\tDraw5PlayAll: Use the system console. Type in the chat\r\n~variant add Unrated\n\tdlwillson: Ooh, that's cool!\n\tFelix: Whoops :) Can't figure out how to vote 'yes'\n\n50) dlwillson: M G2 Sea Dlwillson\n\tdlwillson: Shit. Neither can I.\n\n51) Felix: Build B2 Out\n\n52) dlwillson: B B3 Dlwillson\n\tdlwillson: So, what was the syntax?\n\n53) Felix: Sacrifice Y2 Out\nMove B2 Out Dlwillson\nMove B2 Out Dlwillson\nCatastrophe Dlwillson Blue\n\tFelix: It actually only let me do it from my home page. Go to the My SDG link and there should be a notification there that you have a pending console request\n\n54) dlwillson: Trade Y3 B3 Sea\n\n55) Felix: Build B2 Out\n\tdlwillson: But, it doesn't go away. Huh.\n\tFelix: I think because I opened a request too. Must be a bug\n\n56) dlwillson: M G1 Sea Felix\n\n57) Felix: Trade B1 R1 Felix\n\n58) dlwillson: B G2 Felix\n\n59) Felix: Trade G3 Y3 Felix\n\n60) dlwillson: T G2 Y2 Felix\n\n61) Felix: Trade Y3 R3 Felix\n\n62) dlwillson: S B3 Sea\nT Y2 R2 Felix\nT G1 R1 Felix\nC Felix R\nPass\n\tdlwillson: GG!\n\tdlwillson: Do you want to do this one again, but in a large universe? I think maybe the red/yellow system would be a worse problem in a larger universe.\n\tFelix: Oh wow, did not see that coming at ALL. Good move. I should have been a lot more careful. I was being too laidback this whole game :) I'm certainly game to do it again. \n\n\nHomeworlds Online (SDG# 34559)\nVariants: "Hard time"\nStarted: 2018.9.16, Ended: 2018.10.5\nParticipants: Laurie_Menke (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 Y1 G3\n\tBabamots: Hi! For the record, this game is for the tournament. Good luck!\n\n2) Laurie_Menke: Homeworld R3 B1 G3\n\tLaurie_Menke: Good luck to you, too! :)\n\n3) Babamots: Build G1 Babamots\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) Babamots: Build Y1 Babamots\n\n8) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tLaurie_Menke: Wow... I can't believe I screwed myself that badly right off the bat! ::sigh:: Hopefully I can recover...\n\n9) Babamots: Discover Y1 Babamots G3 Cardassia\n\n10) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: A Star Trek fan, I see! :)\n\n11) Babamots: Build Y2 Babamots\n\n12) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\tBabamots: Yep, I love to rewatch TNG and DS9. And they have lots of Trek worlds to choose for system names.\n\tLaurie_Menke: Tis true! :)\n\n13) Babamots: Discover Y1 Babamots G3 Rubicun\n\n14) Laurie_Menke: Discover R1 Laurie_menke G2 Green\n\n15) Babamots: Build G1 Babamots\n\n16) Laurie_Menke: Build G2 Laurie_menke\n\n17) Babamots: Sacrifice G3 Babamots\nBuild Y2 Cardassia\nBuild G2 Babamots\nBuild G3 Babamots\n\n18) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n19) Babamots: Sacrifice G3 Babamots\nBuild Y2 Cardassia\nBuild Y3 Rubicun\nBuild Y3 Babamots\n\n20) Laurie_Menke: Build R1 Green\n\n21) Babamots: Trade G2 R2 Babamots\n\n22) Laurie_Menke: Build B1 Laurie_menke\n\n23) Babamots: Build G1 Babamots\n\n24) Laurie_Menke: Trade B1 R1 Laurie_menke\n\n25) Babamots: Move R2 Babamots Cardassia\n\n26) Laurie_Menke: Build R2 Green\n\n27) Babamots: Move Y3 Rubicun Green\n\n28) Laurie_Menke: Sacrifice Y3 Laurie_menke\nMove R1 Green Rubicun\nMove G1 Laurie_menke Green\nDiscover G1 Green Y3 Yellow\n\n29) Babamots: Move Y3 Green Laurie_menke\n\tLaurie_Menke: Well, now you're just taunting me! ;) ;) ;)\n\n30) Laurie_Menke: Attack Y1 Rubicun\n\tBabamots: I'll admit that I made that last move more because it was interesting than because it was the very best.\n\n31) Babamots: Attack G2 Laurie_menke\n\n32) Laurie_Menke: Sacrifice G1 Yellow\nBuild B1 Laurie_menke\n\n33) Babamots: Trade G2 B2 Laurie_menke\nCatastrophe Laurie_menke B\n\n34) Laurie_Menke: Move Y1 Rubicun Babamots\nCatastrophe Babamots Y\n\n35) Babamots: Attack R1 Laurie_menke\n\tLaurie_Menke: Oops... didn't see that one coming...\n\tLaurie_Menke: Well, I'll have a little fun before you kill me. ;) Congrats, Babamots! Good game! :)\n\n\tBabamots: Good game! You can signal your ships that as many of them as surrender will be shown mercy.\n\tLaurie_Menke: LOL! My ships thank you! ;)\n\nHomeworlds Online (SDG# 34563)\nVariants: "Unrated"\nStarted: 2018.9.17, Ended: 2018.11.13\nParticipants: mneme (S), Draw5PlayAll (N)\nWinner: mneme\n\n1) Draw5PlayAll: Pass\nPass\nPass\nPass\nPass\n\n2) mneme: Homeworld B3 R2 G3\n\tmneme: FWIW, I don't think passing is a valid move on the opening turn.\n\n3) Draw5PlayAll: Homeworld B2 R1 G3\n\n4) mneme: Build G1 Mneme\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) mneme: Trade G1 Y1 Mneme\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) mneme: Build G1 Mneme\n\n9) Draw5PlayAll: Build G1 Draw5playall\n\n10) mneme: Trade G1 R1 Mneme\n\n11) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n12) mneme: Build R2 Mneme\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) mneme: Discover R1 Mneme B1 Melpomene\n\n15) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n16) mneme: Build Y1 Mneme\n\n17) Draw5PlayAll: Discover R1 Draw5playall G3 Economic\n\n18) mneme: Move Y1 Mneme Melpomene\n\n19) Draw5PlayAll: Move Y2 Draw5playall Economic\n\n20) mneme: Build G1 Mneme\n\n21) Draw5PlayAll: Build Y2 Economic\n\n22) mneme: Discover Y1 Melpomene B3 Clio\n\n23) Draw5PlayAll: Move Y2 Economic Melpomene\n\n24) mneme: Move G3 Mneme Melpomene\n\n25) Draw5PlayAll: Move Y2 Melpomene Clio\n\n26) mneme: Sacrifice G3 Melpomene\nBuild Y2 Clio\nBuild Y3 Clio\nBuild Y3 Mneme\nCatastrophe Clio Y\n\n27) Draw5PlayAll: Build G1 Draw5playall\n\n28) mneme: Discover R2 Mneme G1 Erato\n\n29) Draw5PlayAll: Build Y1 Economic\n\n30) mneme: Move Y1 Mneme Erato\n\n31) Draw5PlayAll: Discover G1 Draw5playall B3 Strange\n\n32) mneme: Build G2 Mneme\n\n33) Draw5PlayAll: Build G2 Draw5playall\n\n34) mneme: Move G2 Mneme Melpomene\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G2 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Strange\n\n36) mneme: Build Y2 Mneme\n\n37) Draw5PlayAll: Discover G2 Draw5playall Y3 Escape\n\n38) mneme: Build R2 Erato\n\n39) Draw5PlayAll: Build R3 Economic\n\n40) mneme: Build R3 Melpomene\n\n41) Draw5PlayAll: Discover R1 Economic B1 Trial\n\n42) mneme: Build R3 Erato\n\n43) Draw5PlayAll: Sacrifice Y2 Economic\nMove R1 Trial Escape\nMove R1 Escape Erato\nCatastrophe Erato Red\n\n44) mneme: Move Y2 Mneme Melpomene\n\n45) Draw5PlayAll: Trade G2 B2 Draw5playall\n\n46) mneme: Build G2 Mneme\n\n47) Draw5PlayAll: Move B2 Draw5playall Economic\n\n48) mneme: Discover G2 Melpomene Y3 Terpsichore\n\n49) Draw5PlayAll: Build Y2 Economic\n\n50) mneme: Sacrifice G2 Terpsichore\nBuild Y2 Melpomene\nBuild Y3 Erato\n\n51) Draw5PlayAll: Sacrifice G2 Escape\nBuild G2 Draw5playall\nBuild Y3 Draw5playall\n\n52) mneme: Trade Y2 G2 Melpomene\n\n53) Draw5PlayAll: Build B1 Economic\n\n54) mneme: Trade G2 B2 Mneme\n\n55) Draw5PlayAll: Move Y1 Draw5playall Strange\n\n56) mneme: Discover Y1 Erato R3 Urania\n\n57) Draw5PlayAll: Build Y2 Strange\n\n58) mneme: Move B2 Mneme Erato\n\n59) Draw5PlayAll: Build R1 Economic\n\n60) mneme: Build B1 Erato\n\n61) Draw5PlayAll: Discover B1 Economic G2 Fort\n\n62) mneme: Trade B2 R2 Erato\n\n63) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B2 Economic\nBuild B3 Fort\nBuild G3 Draw5playall\n\n64) mneme: Build R2 Erato\n\n65) Draw5PlayAll: Move R1 Economic Fort\n\tDraw5PlayAll: ...is this for the tournament or not?\n\tmneme: Nope. Tournament games should be hard time and I'd be dead.\n\n66) mneme: Move R3 Melpomene Urania\n\n67) Draw5PlayAll: Move Y1 Economic Fort\n\n68) mneme: Pass\n\tDraw5PlayAll: I offer to offer to offer to offer to offer to ... (x86) offer to offer a draw.\n\n69) Draw5PlayAll: Pass\n\tmneme: Yeah, this is ugly. Things might have been different had I killed your red two turns ago, but as it is I'm going to be hardpressed to take advantage of my R advantage, while you're going to find it pretty hard to reach my home system.\r\n\r\nPartially so I can free up some mental space for starting my last sets of tournament games, accepted.\n\n70) mneme: Pass\n\tmneme: pass is specifically for the purpose of offering back the draw; if you want to instead continue tell me and I'll undo it and move g2 to urania\n\n\tmneme: Good game. I'm still curious as to how it would have gone had I blown up your R3 when I had a chance, but overall it was a delightful mess.\n\nHomeworlds Online (SDG# 34566)\nVariants: "Hard time"\nStarted: 2018.9.17, Ended: 2018.10.3\nParticipants: eliscinsky (S), Babamots (N)\nWinner: eliscinsky\n\n1) Babamots: Homeworld B3 Y1 G3\n\tBabamots: For the record, this is for the tournament. I hear you found a fantastic teacher. Let's see whether he's got you up to snuff :-P.\n\n2) eliscinsky: H Y2 B1 G3\n\teliscinsky: Yes, for all the marbles. I've been trained up, and I feel confident. Let the game begin. Good luck! \n\n3) Babamots: Build G1 Babamots\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) eliscinsky: T G1 Y1 Eliscinsky\n\n7) Babamots: Build Y2 Babamots\n\teliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.\n\teliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.\n\tBabamots: Any time is fine. I'll focus better at work if I don't have games to check on :-D.\n\n8) eliscinsky: Build Y2 Eliscinsky\n\n9) Babamots: Trade Y1 R1 Babamots\n\n10) eliscinsky: Trade Y1 R1 Eliscinsky\n\n11) Babamots: Build G1 Babamots\n\teliscinsky: Tit for tat, Mirror - mirror! LOL\n\tBabamots: Mirroring is often a safe way to get yourself to the mid-game, or maybe the late-early-game.\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) Babamots: Trade G1 B1 Babamots\n\teliscinsky: I think in a few rounds there will be a divergence. But for now...\n\n14) eliscinsky: Trade G1 B1 Eliscinsky\n\n15) Babamots: Build B2 Babamots\n\n16) eliscinsky: Build B2 Eliscinsky\n\n17) Babamots: Build G1 Babamots\n\tBabamots: Next game, I'm making you go first. :-P\n\n18) eliscinsky: B G1 Eliscinsky\n\n19) Babamots: Discover Y2 Babamots G2 Orion\n\n20) eliscinsky: D B2 Eliscinsky G3 Eden\n\n21) Babamots: Move B1 Babamots Orion\n\n22) eliscinsky: M Y2 Eliscinsky Eden\n\n23) Babamots: Discover B2 Babamots R2 Cardassia\n\n24) eliscinsky: T B1 Y1 Eliscinsky\n\n25) Babamots: Move G1 Babamots Cardassia\n\n26) eliscinsky: B R1 Eliscinsky\n\n27) Babamots: Build R2 Babamots\n\n28) eliscinsky: Trade B2 R2 Eden\n\n29) Babamots: Move R1 Babamots Orion\n\n30) eliscinsky: T R1 B1 Eliscinsky\n\n31) Babamots: Build B2 Orion\n\n32) eliscinsky: Move B1 Eliscinsky Eden\n\teliscinsky: It's getting very interesting, don't you think? \n\n33) Babamots: Discover B2 Orion Y3 Bajor\n\tBabamots: Yes, I think it's gotten more interesting.\n\n34) eliscinsky: M G1 Eliscinsky Eden\n\n35) Babamots: Sacrifice G3 Babamots\nBuild B2 Cardassia\nBuild B3 Bajor\nBuild B3 Orion\n\n36) eliscinsky: B R1 Eden\n\n37) Babamots: Build R3 Orion\n\n38) eliscinsky: B R3 Eliscinsky\n\n39) Babamots: Move B3 Orion Eden\n\n40) eliscinsky: S Y2 Eden\nM R1 Eden Orion\nM R2 Eden Orion\nC Orion Red\n\n41) Babamots: Trade B3 R3 Eden\n\n42) eliscinsky: Build G1 Eden\n\n43) Babamots: Build B3 Orion\n\n44) eliscinsky: Build G2 Eden\nCatastrophe Eden Green\n\teliscinsky: So let me get this right. In the Eden system I have the TRADE economy, and you being in the system can also use "my" trading ability?\n\tBabamots: No, I can't trade in Eden anymore. But I could trade in Eden on my last turn because my ship was blue.\n\tBabamots: For a "free" (non-sacrifice) action you can only use the powers of your own ships and of the system marker(s).\n\teliscinsky: Okay, I see. I was over looking that your ship WAS a blue to start. Thanks for the clarification. \n\n45) Babamots: Build Y1 Orion\n\n46) eliscinsky: Discover Y1 Eliscinsky Y3 Sol\n\n47) Babamots: Build B1 Orion\n\n48) eliscinsky: Trade G3 Y3 Eliscinsky\n\n49) Babamots: Trade B3 G3 Bajor\n\n50) eliscinsky: Sacrifice Y3 Eliscinsky\nMove R3 Eliscinsky Sol\nMove R3 Sol Orion\nMove R3 Orion Babamots\n\n51) Babamots: Sacrifice Y2 Orion\nMove B3 Orion Babamots\nMove G1 Cardassia Babamots\n\n52) eliscinsky: A R2 Babamots\n\n53) Babamots: Sacrifice G3 Bajor\nBuild B3 Babamots\nBuild G1 Babamots\nBuild G1 Babamots\n\n54) eliscinsky: Sacrifice R2 Babamots\nAttack B3 Babamots\nAttack B3 Babamots\n\teliscinsky: When I used to play poker with my developer friends at dev conferences they called me "Captain Chaos".\r\n\r\nGuess that's how I roll. LOL\n\tBabamots: Oops, shoot. I was trying to play Terraria at the same time. Looks like that was a bad idea :-P.\n\n55) Babamots: Sacrifice B1 Orion\nTrade G1 B1 Babamots\nCatastrophe Babamots B\n\n56) eliscinsky: Attack G1 Babamots\n\teliscinsky: I'll take whatever help I can get. ;)\n\n57) Babamots: Pass\n\n58) eliscinsky: Attack G1 Babamots\n\n\teliscinsky: PASS! But we could have gone on for at least 3-4 rounds. :-D\n\tBabamots: It was getting depressing :-P.\n\tBabamots: Well played. You saw your chance and didn't hesitate.\n\teliscinsky: I CANNOT BELIEVE I WON! WA-HOO! (sorry)\r\nYou're my 1st (true) win, ever. Hmmm makes me wonder. But what a confidence boost. Thank you so much for the game. Good luck in the finals of the tournament. I'm sure you'll do well there.\r\n\r\nSo in terms of scoring, do I get bonus points for beating someone who has beaten so many others? Kind of like HS Football, where the winning team gets points for the win, AND gets a bonus point for each team the loser has beaten. Just thinking.\n\tBabamots: In the tournament rules, it says each win has equal weight. In the registration survey, I suggested using PageRank for scoring (which would give more weight to wins against strong opponents like you suggest), but quite a few people didn't like that idea. Now if I lose to Felix, there's likely to be a two- or even three-way tie for high score. You've put the pressure on me!\r\n\r\nI feel pretty silly for losing that way, but I'm also kind of glad for you. It's nice to get an unexpected win. Go ahead and revel.\n\tDraw5PlayAll: So if there is a tie then we should have a showdown round robin among the tied players. All games must be played simultaneously. Muha.\n\nHomeworlds Online (SDG# 34565)\nVariants: "Hard time"\nStarted: 2018.9.18, Ended: 2018.10.2\nParticipants: eliscinsky (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R1 B2 G3\n\n2) eliscinsky: Homeworld Y1 B3 G3\n\n3) ajo: Build G1 Ajo\n\n4) eliscinsky: B G1 Eliscinsky\n\teliscinsky: This game is for the tournament.\r\nGood luck. \n\n5) ajo: Trade G1 Y1 Ajo\n\teliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\tajo: Good luck!\n\n7) ajo: Build Y2 Ajo\n\n8) eliscinsky: Build G1 Eliscinsky\n\n9) ajo: Trade Y1 G1 Ajo\n\n10) eliscinsky: T G1 R1 Eliscinsky\n\n11) ajo: Trade G1 R1 Ajo\n\n12) eliscinsky: B R2 Eliscinsky\n\n13) ajo: Build R2 Ajo\n\n14) eliscinsky: B G1 Eliscinsky\n\n15) ajo: Build G1 Ajo\n\n16) eliscinsky: Trade G1 B1 Eliscinsky\n\n17) ajo: Discover R1 Ajo B3 Alpha\n\n18) eliscinsky: D B1 Eliscinsky G2 Earth\n\n19) ajo: Sacrifice G3 Ajo\nBuild R2 Alpha\nBuild R3 Alpha\nBuild R3 Ajo\n\n20) eliscinsky: Move R1 Eliscinsky Earth\n\teliscinsky: That was rather bold! And very interesting.\n\n21) ajo: Trade R2 G2 Alpha\n\n22) eliscinsky: Build R2 Earth\n\tajo: I have myself been falling prey to that move lately, enough that I've noticed and started looking for places to exploit it myself. :)\n\n23) ajo: Trade R3 Y3 Alpha\n\n24) eliscinsky: Trade R2 Y2 Earth\n\n25) ajo: Discover R2 Ajo B3 Beta\n\n26) eliscinsky: B G1 Eliscinsky\n\n27) ajo: Build G1 Alpha\n\n28) eliscinsky: D G1 Eliscinsky B2 Neptune\n\n29) ajo: Sacrifice G2 Alpha\nBuild R2 Alpha\nBuild R3 Beta\n\n30) eliscinsky: B R3 Eliscinsky\n\n31) ajo: Build G2 Alpha\n\n32) eliscinsky: B G2 Neptune\n\n33) ajo: Sacrifice G2 Alpha\nBuild G2 Ajo\nBuild G3 Alpha\n\n34) eliscinsky: T G2 Y2 Neptune\n\tajo: Ping! You undid your last move but didn't make a new one yet?\n\n35) ajo: Move G3 Alpha Earth\n\n36) eliscinsky: M R1 Earth Beta\n\n37) ajo: Sacrifice R3 Beta\nAttack R1 Beta\nAttack Y2 Earth\nAttack B1 Earth\n\n38) eliscinsky: Move R3 Eliscinsky Neptune\n\n39) ajo: Discover R2 Alpha B2 Gamma\n\n40) eliscinsky: Discover R3 Neptune G3 Eden\n\n41) ajo: Sacrifice G3 Earth\nBuild Y1 Earth\nBuild Y3 Alpha\nBuild R3 Gamma\n\n42) eliscinsky: Build Y3 Neptune\n\n43) ajo: Sacrifice G2 Ajo\nBuild B1 Earth\nBuild B1 Earth\n\n44) eliscinsky: Build G2 Eliscinsky\n\n45) ajo: Sacrifice Y3 Alpha\nMove B1 Earth Eliscinsky\nMove Y1 Earth Eliscinsky\nMove Y2 Earth Eliscinsky\nCatastrophe Eliscinsky Yellow\n\n46) eliscinsky: Sacrifice Y2 Neptune\nMove R2 Eliscinsky Ajo\nMove R3 Eden Ajo\nCatastrophe Ajo Red\n\n47) ajo: Sacrifice Y3 Alpha\nMove B1 Earth Eliscinsky\nMove B1 Earth Eliscinsky\nPass\nCatastrophe Eliscinsky Blue\n\n\tajo: Good game!\n\nHomeworlds Online (SDG# 34564)\nVariants: "Hard time"\nStarted: 2018.9.18, Ended: 2018.11.27\nParticipants: ts52 (S), eliscinsky (N)\nWinner: ts52\n\n1) eliscinsky: Homeworld R1 B2 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) eliscinsky: B G1 Eliscinsky\n\teliscinsky: This game is for the tournament.\n\teliscinsky: Good luck. \n\n4) ts52: Build G1 Ts52\n\teliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.\n\teliscinsky: BTW, I will be playing mostly in the evenings, after 5pm EST.\n\tts52: Thanks! Good luck to you too!\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n6) ts52: Trade G1 B1 Ts52\n\n7) eliscinsky: B G1 Eliscinsky\n\n8) ts52: Build G1 Ts52\n\n9) eliscinsky: T G1 B1 Eliscinsky\n\n10) ts52: Trade G1 Y1 Ts52\n\n11) eliscinsky: B G1 Eliscinsky\n\n12) ts52: Build G1 Ts52\n\n13) eliscinsky: Trade G1 R1 Eliscinsky\n\n14) ts52: Trade G1 R1 Ts52\n\n15) eliscinsky: Build G1 Eliscinsky\n\n16) ts52: Build R2 Ts52\n\n17) eliscinsky: Build R2 Eliscinsky\n\n18) ts52: Discover B1 Ts52 G1 Robin\n\n19) eliscinsky: Discover R2 Eliscinsky G3 Earth\n\n20) ts52: Move R2 Ts52 Robin\n\n21) eliscinsky: Move G1 Eliscinsky Earth\n\n22) ts52: Move Y1 Ts52 Robin\n\n23) eliscinsky: M B1 Eliscinsky Earth\n\n24) ts52: Build B1 Robin\n\n25) eliscinsky: Build B2 Earth\n\n26) ts52: Sacrifice G3 Ts52\nBuild R2 Ts52\nBuild R3 Ts52\nBuild R3 Robin\n\n27) eliscinsky: Trade B2 Y2 Earth\n\n28) ts52: Trade R2 G2 Ts52\n\n29) eliscinsky: Build Y1 Earth\n\n30) ts52: Move R3 Robin Earth\n\n31) eliscinsky: Build R2 Earth\n\n32) ts52: Sacrifice R2 Robin\nAttack Y2N Earth\nAttack R2N Earth\n\n33) eliscinsky: Build R2 Earth\nCatastrophe Earth Red\n\n34) ts52: Sacrifice B1 Robin\nTrade Y2 R2 Earth\n\n35) eliscinsky: Build G1 Earth\n\n36) ts52: Attack Y1N Earth\n\n37) eliscinsky: Build G2 Earth\nCatastrophe Earth Green\n\n38) ts52: Build R2 Ts52\n\n39) eliscinsky: B G1 Eliscinsky\n\n40) ts52: Build B1 Robin\n\n41) eliscinsky: Trade G1 B1 Eliscinsky\n\n42) ts52: Trade R2 Y2 Ts52\n\n43) eliscinsky: B G1 Eliscinsky\n\n44) ts52: Build B2 Robin\n\n45) eliscinsky: Build R2 Eliscinsky\n\n46) ts52: Trade B2 R2 Robin\n\n47) eliscinsky: Discover R2 Eliscinsky G3 Andor\n\n48) ts52: Discover B1 Robin Y3 Bigbird\n\n49) eliscinsky: Move B1 Eliscinsky Andor\n\n50) ts52: Build R2 Robin\n\n51) eliscinsky: Build R3 Andor\n\n52) ts52: Build R3 Ts52\n\n53) eliscinsky: Sacrifice Y1 Eliscinsky\nMove R3 Andor Robin\n\n54) ts52: Move R1 Ts52 Robin\nCatastrophe Robin R\n\n55) eliscinsky: T G1 Y1 Eliscinsky\n\n56) ts52: Move R3 Ts52 Robin\n\n57) eliscinsky: B B2 Andor\n\n58) ts52: Sacrifice G2 Ts52\nBuild B3 Bigbird\nBuild B3 Robin\n\n59) eliscinsky: Trade B2 Y2 Andor\n\n60) ts52: Trade Y2 G2 Ts52\n\n61) eliscinsky: Discover R2 Andor G1 Pea\n\n62) ts52: Move R3 Robin Andor\n\n63) eliscinsky: Move B1 Andor Robin\n\n64) ts52: Attack Y2N Andor\n\n65) eliscinsky: Sacrifice R2 Pea\nAttack B1 Robin\nAttack Y1 Robin\n\n66) ts52: Trade B3 R3 Robin\n\n67) eliscinsky: Trade B1 R1 Robin\n\n68) ts52: Attack R1N Robin\n\n69) eliscinsky: Move B1 Robin Bigbird\n\n70) ts52: Attack Y1N Robin\n\n71) eliscinsky: Discover B1 Bigbird G1 Orion\n\n72) ts52: B R2 Andor\n\n73) eliscinsky: Build B1 Orion\n\n74) ts52: Move R3 Andor Orion\n\n75) eliscinsky: Sacrifice Y1 Eliscinsky\nMove B1 Orion Ts52\n\n76) ts52: Attack B1N Ts52\n\n\teliscinsky: ts52 I really see no way of coming back from this position. So I'll save us a dozen moves and end it now.\n\tts52: Fair enough. Thanks for the game!\n\nHomeworlds Online (SDG# 34570)\nVariants: "Hard time"\nStarted: 2018.9.18, Ended: 2018.10.28\nParticipants: Draw5PlayAll (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\tTrydnt: tournament game marker\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Trydnt: Build R1 Trydnt\n\n8) Draw5PlayAll: Build Y1 Draw5playall\n\n9) Trydnt: Build R2 Trydnt\n\tDraw5PlayAll: The next 3 moves will follow a predictable pattern\n\n10) Draw5PlayAll: Build Y2 Draw5playall\n\n11) Trydnt: Discover R1 Trydnt Y3 Y3\n\n12) Draw5PlayAll: Discover Y1 Draw5playall G2 Epa\n\n13) Trydnt: Discover R1 Trydnt Y3 Why3\n\n14) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Epa\nBuild Y2 Epa\nBuild Y3 Draw5playall\n\n15) Trydnt: Build R2 Trydnt\n\tDraw5PlayAll: I think we might be in a trade war\n\n16) Draw5PlayAll: Trade Y2 B2 Draw5playall\n\tTrydnt: it's a possibility\n\n17) Trydnt: Trade R2 Y2 Trydnt\n\n18) Draw5PlayAll: Sacrifice B2 Draw5playall\nTrade Y2 R2 Epa\nTrade Y3 G3 Draw5playall\n\n19) Trydnt: Discover Y2 Trydnt G3 G3\n\tDraw5PlayAll: All my flailing has resulted in this. I am disappointed.\n\n20) Draw5PlayAll: Build G1 Draw5playall\n\n21) Trydnt: Build G1 Trydnt\n\n22) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n23) Trydnt: Trade G1 B1 Trydnt\n\n24) Draw5PlayAll: Move B1 Draw5playall Epa\n\n25) Trydnt: Move B1 Trydnt G3\n\n26) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Draw5playall\nBuild Y3 Draw5playall\nBuild B1 Epa\n\n27) Trydnt: Build B2 G3\n\n28) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\tDraw5PlayAll: Here I go again, temporarily stealing all yellow\n\n29) Trydnt: Build Y1 G3\n\tTrydnt: not all\n\n30) Draw5PlayAll: Build G1 Draw5playall\n\n31) Trydnt: Discover B2 G3 G2 G2\n\n32) Draw5PlayAll: Discover G1 Draw5playall B2 Nafta\n\tDraw5PlayAll: No one has gotten a large yet\n\n33) Trydnt: Build B3 G2\n\n34) Draw5PlayAll: Build G1 Nafta\n\n35) Trydnt: Build B3 G3\n\n36) Draw5PlayAll: Discover Y2 Epa G3 Esa\n\n37) Trydnt: Move B3 G3 Epa\n\n38) Draw5PlayAll: Sacrifice Y1 Epa\nMove R2 Epa Y3\n\n39) Trydnt: Sacrifice R1 Y3\nAttack B1 Epa\n\n40) Draw5PlayAll: Sacrifice B1 Epa\nTrade G1 B1 Nafta\n\tDraw5PlayAll: Nooooooo! I cannot sac both my greens!\n\n41) Trydnt: Move Y1 G3 Epa\n\n42) Draw5PlayAll: Build Y1 Esa\n\n43) Trydnt: Move R1 Why3 Epa\n\n44) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\n45) Trydnt: Trade B3 Y3 G2\n\tDraw5PlayAll: I am getting bad at this game\n\n46) Draw5PlayAll: Build B3 Nafta\n\n47) Trydnt: Move B1 G3 Nafta\nCatastrophe Nafta B\n\n48) Draw5PlayAll: Build Y2 Draw5playall\n\n49) Trydnt: Build B1 G2\n\n50) Draw5PlayAll: Build G1 Draw5playall Q\n\n51) Trydnt: Build G1 Trydnt\n\n52) Draw5PlayAll: Build G2 Draw5playall\n\n53) Trydnt: Sacrifice G3 Trydnt\nBuild B1 G2\nBuild B2 Epa\nBuild G3 Trydnt\n\n54) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover G2 Draw5playall Y2 What\nMove R2 Draw5playall What\n\n55) Trydnt: Trade B3 R3 Epa\n\n56) Draw5PlayAll: Sacrifice G2 What\nBuild R1 Y3\nBuild R3 What\n\n57) Trydnt: Build R3 Trydnt\n\n58) Draw5PlayAll: Sacrifice Y2 Esa\nMove R1 Y3 Trydnt\nMove R2 Y3 Trydnt\nCatastrophe Trydnt Red\n\n59) Trydnt: Trade B2 R2 G2\n\n60) Draw5PlayAll: Build G2 Draw5playall\n\n61) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G2\nBuild Y3 G3\n\n62) Draw5PlayAll: Move R3 What Esa\n\n63) Trydnt: Sacrifice Y3 G3\nMove R3 Epa Draw5playall\nMove R1 Epa Draw5playall\nMove B1 G2 Draw5playall\n\n64) Draw5PlayAll: Move R3 Esa Trydnt\n\n65) Trydnt: Sacrifice Y3 G2\nMove R2 G2 Draw5playall\nMove B1 G2 Draw5playall\nMove B1 Epa Draw5playall\nCatastrophe Draw5playall R\nCatastrophe Draw5playall B\n\n\nHomeworlds Online (SDG# 34569)\nVariants: "Hard time"\nStarted: 2018.9.18, Ended: 2018.10.10\nParticipants: Trydnt (S), Laurie_Menke (N)\nWinner: Trydnt\n\n1) Laurie_Menke: Homeworld Y3 R1 G3 *\n\tLaurie_Menke: Hi Trydnt! Have fun! :)\n\n2) Trydnt: Homeworld B2 Y1 G3\n\tLaurie_Menke: Oh... and for the record, this is for the tournament. :)\n\tTrydnt: Hi Laurie! Good luck. And yes I've logged it in the tracker :)\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: :)\n\n4) Trydnt: Build G1 Trydnt\n\n5) Laurie_Menke: Discover G1 Laurie_menke B2 Blue\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Laurie_Menke: Build G1 Blue\n\n8) Trydnt: Build R1 Trydnt\n\n9) Laurie_Menke: Trade G1 B1 Blue\n\n10) Trydnt: Build R2 Trydnt\n\n11) Laurie_Menke: Trade G1 Y1 Blue\n\n12) Trydnt: Discover R2 Trydnt Y3 Y3\n\n13) Laurie_Menke: Move B1 Blue Laurie_menke\n\n14) Trydnt: Trade R1 Y1 Trydnt\n\n15) Laurie_Menke: Build B1 Laurie_menke\n\n16) Trydnt: Build R1 Trydnt\n\n17) Laurie_Menke: Build G1 Laurie_menke\n\n18) Trydnt: Build Y2 Trydnt\n\n19) Laurie_Menke: Move G1 Laurie_menke Blue\n\n20) Trydnt: Discover Y2 Trydnt G3 G3\n\n21) Laurie_Menke: Build Y2 Blue\n\n22) Trydnt: Move R2 Y3 Blue\n\n23) Laurie_Menke: Sacrifice Y2 Blue\nMove Y1 Blue Laurie_menke\nMove G1 Blue Laurie_menke\n\n24) Trydnt: Build R2 Trydnt\n\n25) Laurie_Menke: Build Y2 Laurie_menke\n\n26) Trydnt: Build G1 Trydnt\n\n27) Laurie_Menke: Discover Y1 Laurie_menke G2 Green\n\n28) Trydnt: Sacrifice G1 Trydnt\nBuild R2 Blue\n\n29) Laurie_Menke: Build Y2 Green\n\n30) Trydnt: Build Y3 G3\n\n31) Laurie_Menke: Build Y3 Green\n\n32) Trydnt: Move Y2 G3 Green\nCatastrophe Green Y\n\n33) Laurie_Menke: Trade G3 R3 Laurie_menke\n\n34) Trydnt: Sacrifice Y3 G3\nMove R2 Blue Laurie_menke\nMove R2 Blue Laurie_menke\nCatastrophe Laurie_menke R\nMove Y1 Trydnt Laurie_menke\n\n35) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\n36) Trydnt: Sacrifice G3 Trydnt\nBuild Y1 Laurie_menke\nBuild Y2 Laurie_menke\nBuild Y2 Laurie_menke\nCatastrophe Laurie_menke Y\n\n\tTrydnt: no it's over\n\tLaurie_Menke: Ah. Right. Should have seen that! Congrats and thanks for the fun, Trydnt! Good luck with the tournament! :)\n\tTrydnt: If it didn't end the game it would have been a terrible move haha thanks for the game :) good luck with the tourney\n\nHomeworlds Online (SDG# 34575)\nVariants: "Hard time"\nStarted: 2018.9.18, Ended: 2018.12.5\nParticipants: agentofchaos (S), Laurie_Menke (N)\nWinner: agentofchaos\n\n1) Laurie_Menke: Homeworld Y1 B3 G3\n\tLaurie_Menke: Hi agentofchaos! Have fun with the Homeworlds tournament!\n\n2) agentofchaos: Homeworld B2 R1 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tagentofchaos: Hi Laurie, have fun too!\n\n4) agentofchaos: Build G1 Agentofchaos\n\tLaurie_Menke: Oops! My bad... this isn't a tournament game, is it?\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tagentofchaos: No, it's a ladder challenge - close enough though!\n\tLaurie_Menke: :) Thanks for accepting my challenge!\n\n6) agentofchaos: Trade G1 R1 Agentofchaos\n\n7) Laurie_Menke: Build R2 Laurie_menke\n\tagentofchaos: You're very welcome!\n\n8) agentofchaos: Build R2 Agentofchaos\n\n9) Laurie_Menke: Discover R1 Laurie_menke Y2 Yellow\n\n10) agentofchaos: Trade R1 Y1 Agentofchaos\n\n11) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild R1 Laurie_menke\nBuild R2 Yellow\nBuild R3 Laurie_menke\n\tLaurie_Menke: Sorry for the delay... I've been traveling. Will still be slow until Tuesday. :/\n\n12) agentofchaos: Sacrifice G3 Agentofchaos\nBuild R3 Agentofchaos\nBuild Y1 Agentofchaos\nBuild Y2 Agentofchaos\n\n13) Laurie_Menke: Discover R1 Yellow Y3 Hi\n\tagentofchaos: That's fine, enjoy your travels!\n\tLaurie_Menke: Thanks! I'm back! :)\n\n14) agentofchaos: Move R2 Agentofchaos Hi\n\n15) Laurie_Menke: Trade R1 G1 Laurie_menke\n\n16) agentofchaos: Attack R1 Hi\n\n17) Laurie_Menke: Trade R2 Y2 Laurie_menke\n\n18) agentofchaos: Discover Y1 Agentofchaos G3 Playzure\n\n19) Laurie_Menke: Move R2 Yellow Playzure\n\n20) agentofchaos: Discover Y1 Playzure G1 Gripsy\n\n21) Laurie_Menke: Build R1 Playzure\n\n22) agentofchaos: Trade R3 G3 Agentofchaos\n\n23) Laurie_Menke: Build R2 Playzure\n\n24) agentofchaos: Sacrifice G3 Agentofchaos\nBuild Y2 Gripsy\nBuild Y3 Gripsy\nBuild Y3 Agentofchaos\n\n25) Laurie_Menke: Build R3 Laurie_menke\n\n26) agentofchaos: Sacrifice Y2 Gripsy\nMove R1 Hi Gripsy\nMove R1 Gripsy Playzure\nCatastrophe Playzure R\n\n27) Laurie_Menke: Sacrifice Y2 Laurie_menke\nDiscover R3 Laurie_menke Y2 Justforasec\nMove R3 Justforasec Hi\n\n28) agentofchaos: Move R2 Hi Gripsy\n\n29) Laurie_Menke: Build G1 Laurie_menke\n\n30) agentofchaos: Trade Y2 G2 Agentofchaos\n\n31) Laurie_Menke: Build G2 Laurie_menke\n\n32) agentofchaos: Build G2 Agentofchaos\n\n33) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild R1 Laurie_menke\nBuild R1 Hi\n\n34) agentofchaos: Sacrifice G2 Agentofchaos\nBuild R2 Gripsy\nBuild Y2 Gripsy\n\n35) Laurie_Menke: Discover G1 Laurie_menke Y2 Poppins\n\n36) agentofchaos: Build Y2 Agentofchaos\n\n37) Laurie_Menke: Build G2 Laurie_menke\n\n38) agentofchaos: Discover Y2 Agentofchaos G3 Wazrom\n\n39) Laurie_Menke: Move R3 Hi Poppins\n\n40) agentofchaos: Build G2 Agentofchaos\n\n41) Laurie_Menke: Move R3 Poppins Wazrom\n\n42) agentofchaos: Discover Y2 Wazrom R2 Deetoo\n\n43) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n44) agentofchaos: Trade G2 B2 Agentofchaos\n\n45) Laurie_Menke: Sacrifice B1 Laurie_menke\nTrade G1 B1 Poppins\n\n46) agentofchaos: Move B2 Agentofchaos Hi\n\n47) Laurie_Menke: Move R1 Hi Agentofchaos\n\tLaurie_Menke: Sorry for the delay, agentofchaos. I was on the road and got behind. My apologies. :/\n\n48) agentofchaos: Attack R1 Agentofchaos\n\n49) Laurie_Menke: Sacrifice B1 Poppins\nTrade G2 Y2 Laurie_menke\n\tagentofchaos: That's OK, I was wondering where you were, but the road calls!\n\n50) agentofchaos: Move Y1 Gripsy Deetoo\n\n51) Laurie_Menke: Discover Y2 Laurie_menke G2 Green\n\n52) agentofchaos: Discover Y2 Gripsy B2 Denetor\n\n53) Laurie_Menke: Trade R1 G1 Laurie_menke\n\n54) agentofchaos: Build G1 Agentofchaos\n\n55) Laurie_Menke: Sacrifice Y2 Green\nMove R3 Wazrom Deetoo\nPass\n\n56) agentofchaos: Sacrifice Y3 Gripsy\nMove Y1 Deetoo Laurie_menke\nMove Y2 Deetoo Laurie_menke\nMove Y2 Denetor Laurie_menke\nCatastrophe Laurie_menke Y\n\n57) Laurie_Menke: Build G2 Laurie_menke\n\n58) agentofchaos: Build G2 Agentofchaos\n\n59) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n60) agentofchaos: Move B2 Hi Gripsy\n\tLaurie_Menke: Ack! This is looking very bad. :/\n\n61) Laurie_Menke: Sacrifice Y2 Laurie_menke\nMove R3 Deetoo Gripsy\nMove G1 Laurie_menke Agentofchaos\nCatastrophe Agentofchaos G\n\tLaurie_Menke: No, I guess that move was OK...\n\n62) agentofchaos: S Y3 Agentofchaos\nM R1 Agentofchaos Laurie_menke\nM R2 Gripsy Laurie_menke\nM R2 Gripsy Laurie_menke\nC Laurie_menke R\n\n\tLaurie_Menke: I'm going out, but I'm not going out without a fight! ;) Good game, agentofchaos! Thanks for the fun! :)\n\tagentofchaos: Not the move I expected, but very dramatic all the same! Thanks for a great game!&#128512;\n\tagentofchaos: That last symbol was supposed to be :-)\n\tagentofchaos: That last symbol was supposed to be :-)\n\tLaurie_Menke: :)\n\nHomeworlds Online (SDG# 34568)\nVariants: "Hard time"\nStarted: 2018.9.18, Ended: 2018.11.2\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld R2 B3 G3\n\n2) dlwillson: H B3 R1 G3\n\n3) Felix: B G1 Felix\n\tdlwillson: GL&HF, Felix!\n\tFelix: As always, and likewise! Hope it won't be too confusing to have both of these games going\n\n4) dlwillson: B G1 Dlwillson\n\n5) Felix: Trade G1 Y1 Felix\n\tdlwillson: Not at all! I have about 7 games going. I'm winning some and losing some. :-)\r\n\r\nMy new job starts a week from Monday!\n\n6) dlwillson: T G1 Y1 Dlwillson\n\tFelix: Nice! Congrats on the new job. What is it?\n\tdlwillson: DevOps :-)\n\n7) Felix: Build G1 Felix\n\n8) dlwillson: B G1 Dlwillson\n\n9) Felix: Trade G1 R1 Felix\n\tFelix: Very cool. You enjoying it so far?\n\n10) dlwillson: Trade G1 R1 Dlwillson\n\n11) Felix: Build R2 Felix\n\tdlwillson: I love doing DevOps and Infrastructure work. I don't know yet whether I'll enjoy it at DaVita. I will withhold judgement until I've been on the job for at least a few weeks. Several weeks, if I can manage to stay in learner mode and out of judger mode that long.\n\n12) dlwillson: B R2 Dlwillson\n\n13) Felix: D R1 Felix B1 Splash\n\n14) dlwillson: D R2 Dlwillson G2 Field\n\n15) Felix: S G3 Felix\nB R3 Splash\nB R3 Splash\nB R3 Felix\n\n16) dlwillson: B Y1 Dlwillson\n\n17) Felix: Trade R2 G2 Felix\n\n18) dlwillson: S Y1 Dlwillson\nM R2 Field Splash\nC Splash R\n\n19) Felix: Build G1 Felix\n\n20) dlwillson: B G1 Dlwillson\n\n21) Felix: Trade G1 B1 Felix\n\n22) dlwillson: D G1 Dlwillson B2 Sea\n\n23) Felix: Build Y1 Felix\n\n24) dlwillson: B G1 Dlwillson\n\n25) Felix: Build R1 Felix\n\n26) dlwillson: B Y2 Dlwillson\n\n27) Felix: Discover Y1 Felix G1 Out\n\n28) dlwillson: M R1 Dlwillson Sea\n\n29) Felix: Trade R3 G3 Felix\n\n30) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G2 Sea\nB G3 Dlwillson\n\n31) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y2 Out\nBuild Y2 Out\n\n32) dlwillson: S G3 Dlwillson\nB G3 Dlwillson\nB G3 Dlwillson\nB Y3 Dlwillson\n\n33) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild Y3 Felix\nBuild Y3 Felix\n\n34) dlwillson: S Y3 Dlwillson\nM Y1 Dlwillson Sea\nM Y1 Sea Out\nM Y1 Out Felix\nC Felix Y\n\n35) Felix: Trade G3 Y3 Felix\n\n36) dlwillson: T G1 Y1 Sea\n\n37) Felix: Move Y1 Out Sea\n\n38) dlwillson: A Y1 Sea\n\n39) Felix: Build G1 Felix\n\n40) dlwillson: D G2 Sea B1 Sky\n\tdlwillson: OK... I guess the only way to see how the trap works is to spring it, so... Here I go!\n\n41) Felix: Discover Y2 Out G3 Foultrain\n\tFelix: I honestly can NOT remember where I was going with that. So... your guess is as good as mine on what the trap was :)\n\n42) dlwillson: M Y1 Sea Sky\n\n43) Felix: Sacrifice G2 Felix\nBuild Y1 Foultrain\nBuild Y3 Felix\n\n44) dlwillson: S G3 Dlwillson\nB G2 Sky\nB G3 Sea\nB Y3 Sky\n\n45) Felix: Move R1 Felix Out\n\n46) dlwillson: S Y3 Sky\nM Y1 Sea Sky\nM Y1 Sky Felix\nM Y1 Sky Felix\nC Felix Y\n\n47) Felix: Build R2 Out\n\n48) dlwillson: S Y2 Dlwillson\nM G2 Sky Felix\nD G3 Sea Y1 Sol\n\n\tFelix: Well done :)\n\tdlwillson: TY! Good game!\n\nHomeworlds Online (SDG# 34567)\nVariants: "Hard time"\nStarted: 2018.9.19, Ended: 2018.10.28\nParticipants: DodoBirb (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tTrydnt: http://superdupergames.org/?page=archive_play&gid=34496&idx=37\r\n\r\nhere's the old game so we can reference it more easily\n\tTrydnt: homeworld b2 y1 g3\n\n2) DodoBirb: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) DodoBirb: Build G1 Dodobirb\n\tBabamots: For the record, this game is for the tournament. It is replacing a game that could not be continued on SDG because of the site's incorrect implementation of the rules. The link Trydnt posted shows the original game after the first 38 moves (19 each). The plan is to recreate that position in this game (rather than playing strategically) and then resume normal play for a tournament result.\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) DodoBirb: Trade G1 Y1 Dodobirb\n\tTrydnt: I'm gonna build a ton of yellow and then move them into position\n\n7) Trydnt: Build Y2 Trydnt\n\tDodoBirb: I'll build my yellows as well\n\n8) DodoBirb: Build Y2 Dodobirb\n\n9) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Trydnt\nBuild Y3 Trydnt\nBuild Y3 Trydnt\n\n10) DodoBirb: Build G1 Dodobirb\n\tTrydnt: it looks so wrong haha\n\n11) Trydnt: Discover Y3 Trydnt B3 Bigblue\n\tDodoBirb: I'm going to get some red now.\n\tDodoBirb: I was so tempted to catastrophe your system.\n\n12) DodoBirb: Discover Y2 Dodobirb G2 Transition\n\tBabamots: I came to check on your progress, and all that yellow made me double-take.\n\n13) Trydnt: Discover Y3 Trydnt G3 G3\n\tDodoBirb: Just making that g2 so I can move to BigBlue\n\n14) DodoBirb: Move Y2 Transition Bigblue\n\n15) Trydnt: Discover Y2 Trydnt G3 Transitiong2\n\n16) DodoBirb: Trade G1 R1 Dodobirb\n\n17) Trydnt: Trade Y1 G1 Trydnt\n\n18) DodoBirb: Build G1 Dodobirb\n\n19) Trydnt: Build Y1 G3\n\tDodoBirb: Building the g1 so I can factory up to an r3\n\n20) DodoBirb: Sacrifice G3 Dodobirb\nBuild G1 Dodobirb\nBuild G2 Dodobirb\nBuild G2 Dodobirb\n\n21) Trydnt: Discover Y2 Transitiong2 G2 G2\n\n22) DodoBirb: Build G3 Dodobirb\n\n23) Trydnt: Trade Y2 B2 Trydnt\n\n24) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild R1 Dodobirb\nBuild R1 Dodobirb\n\n25) Trydnt: Build B1 Trydnt\n\n26) DodoBirb: Sacrifice G3 Dodobirb\nBuild R2 Dodobirb\nBuild R2 Dodobirb\nBuild G3 Dodobirb\n\n27) Trydnt: Build G3 Trydnt\n\n28) DodoBirb: Sacrifice G3 Dodobirb\nBuild R2 Dodobirb\nBuild R3 Dodobirb\nBuild G3 Dodobirb\n\n29) Trydnt: Trade G3 R3 Trydnt\n\n30) DodoBirb: Sacrifice R2 Dodobirb\nPass\nPass\n\n31) Trydnt: Move B1 Trydnt G3\n\n32) DodoBirb: Sacrifice R2 Dodobirb\nPass\nPass\n\n33) Trydnt: Build B1 G3\n\tDraw5PlayAll: What the...\n\n34) DodoBirb: Sacrifice G2 Dodobirb\nPass\nPass\n\tTrydnt: need small red and medium green to make next system\n\tTrydnt: 2 small reds too\n\n35) Trydnt: Discover B1 G3 G2 Grass\n\n36) DodoBirb: Sacrifice R1 Dodobirb\nPass\nPass\n\n37) Trydnt: Build R1 Trydnt\n\n38) DodoBirb: Sacrifice R1 Dodobirb\nPass\n\n39) Trydnt: Move R3 Trydnt G3\n\n40) DodoBirb: Sacrifice R1 Dodobirb\nPass\n\n41) Trydnt: Move R3 G3 Grass\n\n42) DodoBirb: Discover R3 Dodobirb B2 Halfblue\n\n43) Trydnt: Sacrifice G1 Trydnt\nBuild R1 Grass\n\tDraw5PlayAll: Where do all those greens go?\n\tDodoBirb: Nowhere. I'm getting rid of them.\n\n44) DodoBirb: Sacrifice G2 Dodobirb\nPass\nPass\n\n45) Trydnt: Sacrifice B2 Trydnt\nPass\nPass\n\tTrydnt: nearly there. I'll sac b2 in hw then grow it in g3 then sac the b1 and I'll be all set up as it was\n\n46) DodoBirb: Sacrifice G1 Dodobirb\nPass\n\n47) Trydnt: Build B2 G3\n\n48) DodoBirb: Sacrifice G1 Dodobirb\nPass\n\n49) Trydnt: Sacrifice B1 G3\nPass\n\n50) DodoBirb: Sacrifice R2 Dodobirb\nPass\nPass\n\n51) Trydnt: Sacrifice R1 Grass\nAttack Y2 Bigblue\n\n52) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: I think it's set up now\n\tTrydnt: I believe so\n\n53) Trydnt: Trade Y3 G3 Bigblue\n\n54) DodoBirb: Move G1 Dodobirb Halfblue\n\n55) Trydnt: Build G1 Bigblue\n\n56) DodoBirb: Build R1 Halfblue\n\n57) Trydnt: Sacrifice G3 Bigblue\nBuild Y2 G2\nBuild Y3 Bigblue\nBuild Y3 Bigblue\n\n58) DodoBirb: Build G1 Dodobirb\n\n59) Trydnt: Discover Y2 G2 B1 B1\n\n60) DodoBirb: Move Y1 Dodobirb Halfblue\n\n61) Trydnt: Build B3 G3\n\n62) DodoBirb: Trade R3 B3 Halfblue\n\n63) Trydnt: Move Y3 Bigblue Grass\n\n64) DodoBirb: Build G2 Halfblue\n\n65) Trydnt: Build G3 Bigblue\n\tDodoBirb: Not much I can do\n\n66) DodoBirb: Sacrifice G3 Dodobirb\nBuild G3 Dodobirb\nBuild R1 Halfblue\nBuild R2 Halfblue\n\n67) Trydnt: Sacrifice G3 Bigblue\nBuild G3 Bigblue\nBuild R2 Grass\nBuild R2 Grass\n\tTrydnt: you could have moved your y1 to bigblue and blown up a large amount of my yellow \n\tTrydnt: would have left you with no yellow but could trade for it next turn and get a y3 which would have let you access my hw\n\tDodoBirb: Huh, I didn't see that move. My brain sort of forgot what I was moving the y1 to HalfBlue for.\n\n68) DodoBirb: Discover R1 Halfblue R3 Bigred\n\tDodoBirb: I was sort of just trying to avoid having a catastrophe. Maybe I should go for more of them.\n\n69) Trydnt: Sacrifice Y3 G3\nMove R2 Grass Dodobirb\nMove R2 Grass Dodobirb\nMove R3 Grass Dodobirb\nCatastrophe Dodobirb R\n\n70) DodoBirb: Trade B3 Y3 Halfblue\n\n71) Trydnt: Sacrifice Y3 Grass\nMove B1 Grass Dodobirb\nMove B2 G3 Dodobirb\nMove B3 G3 Dodobirb\nCatastrophe Dodobirb B\n\n\tDodoBirb: Good game! Good luck in the rest of the tourney.\n\tTrydnt: Well played :) good luck in your journey also\n\nHomeworlds Online (SDG# 34524)\nVariants: "Hard time"\nStarted: 2018.9.19, Ended: 2018.10.11\nParticipants: Draw5PlayAll (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B3 Y1 G3\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\tFelix: This is for the tournament. Good luck! \n\n3) Felix: B G1 Felix\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) Felix: B Y2 Felix\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) Felix: D Y1 Felix G2 Opulence\n\n10) Draw5PlayAll: Discover Y1 Draw5playall G3 R1\n\n11) Felix: B G1 Felix\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) Felix: Trade G1 R1 Felix\n\n14) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n15) Felix: Build R2 Felix\n\n16) Draw5PlayAll: Build R2 Draw5playall\n\n17) Felix: Move R2 Felix Opulence\n\n18) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n19) Felix: B R2 Felix\n\n20) Draw5PlayAll: Build B1 Draw5playall\n\n21) Felix: Discover R1 Felix B2 Scrum\n\n22) Draw5PlayAll: Move B2 Draw5playall R1\n\n23) Felix: Sacrifice G3 Felix\nBuild R2 Scrum\nBuild R3 Opulence\nBuild R3 Felix\n\n24) Draw5PlayAll: Move R1 Draw5playall R1\n\n25) Felix: Move R3 Opulence R1\n\n26) Draw5PlayAll: Sacrifice Y1 R1\nDiscover R1 R1 G2 Y4\n\n27) Felix: Build R3 R1\n\n28) Draw5PlayAll: Sacrifice B2 R1\nPass\nPass\n\n29) Felix: Sacrifice Y2 Felix\nMove R3 R1 Draw5playall\nMove R3 R1 Draw5playall\n\n30) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover R1 Y4 Y3 Temp\nMove R1 Temp Draw5playall\nCatastrophe Draw5playall Red\n\n31) Felix: Move R3 Felix Draw5playall\n\n32) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild B1 Draw5playall\nBuild B1 Draw5playall\nBuild B2 Draw5playall\n\n33) Felix: C Draw5playall Blue\nPass\n\tDraw5PlayAll: Eh, I tried\n\n\nHomeworlds Online (SDG# 34576)\nVariants: "Hard time"\nStarted: 2018.9.19, Ended: 2018.10.7\nParticipants: Laurie_Menke (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B2 R3 G3\n\tLaurie_Menke: Hi Felix! Have fun with this 2018 Homeworlds Tournament! :)\n\tFelix: Thanks, same to you!\n\n2) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: (Reminder to send the start of game form.)\n\n3) Felix: Build G1 Felix\n\tFelix: Ah yes, thanks for the reminder!\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: No problem! :)\n\n5) Felix: T G1 B1 Felix\n\n6) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n7) Felix: B B1 Felix\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) Felix: B G1 Felix\n\n10) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n11) Felix: Trade G1 Y1 Felix\n\n12) Laurie_Menke: Build G1 Laurie_menke\n\n13) Felix: Discover B1 Felix G1 Out\n\n14) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Yellow\nBuild G2 Yellow\nBuild G2 Laurie_menke\n\tLaurie_Menke: Sorry I disappeared for a while... been traveling. Will still be slow until Tuesday.\n\n15) Felix: Build G3 Felix\n\n\tFelix: No problem!\n\tFelix: Aw, man, I hate that the hard time was auto-triggered. I wouldn't have minded waiting, but I guess tourney rules are tourney rules. Sorry!\n\tLaurie_Menke: ::sigh:: I'm sorry. I know that's not the way anyone wants to win a game, especially in a tournament, but I am confident you would have beat me eventually anyway. Sorry for the time out, and congrats on the win! :)\n\nHomeworlds Online (SDG# 34579)\nVariants: "Hard time"\nStarted: 2018.9.20, Ended: 2018.9.25\nParticipants: dlwillson (S), Trydnt (N)\nWinner: dlwillson\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tdlwillson: For the Great Homeworlds Tournament 2018\n\tTrydnt: Good luck :)\n\n2) dlwillson: H B3 R2 G3 Dlwillson\n\n3) Trydnt: Build G1 Trydnt\n\tdlwillson: Have fun :-)\n\n4) dlwillson: B G1 Dlwillson\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Trydnt: Build Y2 Trydnt\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Trydnt: Trade Y1 R1 Trydnt\n\n10) dlwillson: B G1 Dlwillson\n\n11) Trydnt: Build R1 Trydnt\n\n12) dlwillson: D Y1 Dlwillson G1 Field\n\n13) Trydnt: Discover Y2 Trydnt G3 G3\n\n14) dlwillson: B Y1 Field\n\n15) Trydnt: Build R1 Trydnt\n\n16) dlwillson: D Y1 Field B3 Sky\n\n17) Trydnt: Move Y2 G3 Field\n\n18) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y3 Dlwillson\nB Y3 Sky\n\n19) Trydnt: Discover R1 Trydnt Y3 Y3\n\n20) dlwillson: T Y2 R2 Dlwillson\n\n21) Trydnt: Discover Y2 Field G3 G3\n\n22) dlwillson: T Y1 G1 Sky\n\n23) Trydnt: Build G2 Trydnt\n\n24) dlwillson: B G2 Sky\n\n25) Trydnt: Discover R1 Trydnt G3 Gee3\n\n26) dlwillson: S Y3 Dlwillson\nM G2 Sky Trydnt\nM G1 Sky Trydnt\nM Y3 Sky Trydnt\nC Trydnt G\n\n27) Trydnt: Sacrifice Y2 G3\nMove R1 Y3 Trydnt\nMove R1 Gee3 Trydnt\n\n28) dlwillson: T Y3 R3 Trydnt\nC Trydnt R\n\n\tdlwillson: Good game! Thank you!\n\tTrydnt: Well played!\n\nHomeworlds Online (SDG# 34590)\nVariants: "Hard time"\nStarted: 2018.9.25, Ended: 2018.10.22\nParticipants: eliscinsky (S), DodoBirb (N)\nWinner: eliscinsky\n\n1) DodoBirb: Homeworld R1 B3 G3\n\tDodoBirb: Just to make sure that there's no confusion, this is for the tournament.\n\n2) eliscinsky: Homeworld Y1 B2 G3\n\teliscinsky: For the tournament, Check.\n\n3) DodoBirb: Build G1 Dodobirb\n\teliscinsky: Good luck!\n\tDodoBirb: Good Luck!\n\n4) eliscinsky: B G1 Eliscinsky\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) eliscinsky: T G1 R1 Eliscinsky\n\n7) DodoBirb: Build Y1 Dodobirb\n\n8) eliscinsky: Build R1 Eliscinsky\n\n9) DodoBirb: Discover Y1 Dodobirb G2 Grass\n\n10) eliscinsky: B R2 Eliscinsky\n\n11) DodoBirb: Build Y2 Grass\n\n12) eliscinsky: Discover R2 Eliscinsky Y3 Sol\n\n13) DodoBirb: Trade G3 R3 Dodobirb\n\n14) eliscinsky: Move R2 Sol Grass\n\n15) DodoBirb: Move R3 Dodobirb Grass\n\n16) eliscinsky: Build R2 Grass\n\tDodoBirb: I honestly have no idea where I was going with the g3 to r3 move.\n\n17) DodoBirb: Move R3 Grass Dodobirb\n\tDodoBirb: let's play risky\n\n18) eliscinsky: Attack Y2 Grass\n\teliscinsky: So this is turning out to be quite interesting. \n\n19) DodoBirb: Trade R3 G3 Dodobirb\n\n20) eliscinsky: A Y1 Grass\n\n21) DodoBirb: Build G1 Dodobirb\n\n22) eliscinsky: Build R2 Grass\n\n23) DodoBirb: Build Y2 Dodobirb\n\n24) eliscinsky: Build R3 Eliscinsky\n\n25) DodoBirb: Move Y2 Dodobirb Grass\n\n26) eliscinsky: S Y2 Grass\nM R2 Grass Dodobirb\nM R2 Grass Dodobirb\n\tDodoBirb: That early rush was quite effective.\n\n27) DodoBirb: Attack R2S Dodobirb\n\n28) eliscinsky: M R2 Grass Dodobirb\nC Dodobirb Red\n\n29) DodoBirb: Trade G1 R1 Dodobirb\n\n30) eliscinsky: M R1 Eliscinsky Dodobirb\n\n31) DodoBirb: Attack R1S Dodobirb\n\n32) eliscinsky: Discover R3 Eliscinsky G3 Earth\n\n33) DodoBirb: Sacrifice R1 Dodobirb\nAttack Y1S Grass\n\n34) eliscinsky: B G1 Eliscinsky\n\n35) DodoBirb: Build G1 Dodobirb\n\n36) eliscinsky: T G1 B1 Eliscinsky\n\n37) DodoBirb: Move Y1 Grass Dodobirb\n\n38) eliscinsky: Build G1 Eliscinsky\n\n39) DodoBirb: Build Y2 Grass\n\n40) eliscinsky: Build R1 Eliscinsky\n\n41) DodoBirb: Trade G1 B1 Dodobirb\n\n42) eliscinsky: B R2 Earth\n\n43) DodoBirb: Sacrifice B1 Dodobirb\nTrade Y2 R2 Grass\n\n44) eliscinsky: Sacrifice B1 Eliscinsky\nTrade R2 Y2 Earth\n\n45) DodoBirb: Discover R2 Grass Y3 Yellow\n\n46) eliscinsky: Move R3 Earth Grass\n\n47) DodoBirb: Move Y2 Grass Dodobirb\n\n48) eliscinsky: B R2 Grass\n\n49) DodoBirb: Move Y2 Dodobirb Eliscinsky\n\n50) eliscinsky: A Y2 Eliscinsky\n\n51) DodoBirb: Move Y1 Dodobirb Eliscinsky\n\n52) eliscinsky: T Y2 B2 Eliscinsky\n\n53) DodoBirb: Build G1 Dodobirb\n\n54) eliscinsky: S B2 Eliscinsky\nT R2 B2 Grass\nT R3 Y3 Grass\n\n55) DodoBirb: Build Y2 Dodobirb\n\n56) eliscinsky: Build B1 Grass\n\n57) DodoBirb: Discover G1 Dodobirb B2 Bluey\n\n58) eliscinsky: B B1 Grass\n\n59) DodoBirb: Build G1 Dodobirb\n\n60) eliscinsky: Sacrifice Y3 Grass\nMove B2 Grass Dodobirb\nMove B1 Grass Dodobirb\nMove B1 Grass Dodobirb\nCatastrophe Dodobirb Blue\n\n\teliscinsky: Thanks for a great game. Good luck in the rest of the tournament. \n\tDodoBirb: Good game. I learned a lot.\n\nHomeworlds Online (SDG# 34571)\nVariants: "Hard time"\nStarted: 2018.9.26, Ended: 2018.9.28\nParticipants: mneme (S), speardane (N)\nWinner: mneme\n\n1) speardane: Homeworld Y3 B1 G3\n\tmneme: This IS a tournament game. (you should probably fill out the form as challenger).\n\n2) mneme: Homeworld G3 R2 B3\n\tspeardane: Will do. Good luck!\n\n3) speardane: Build G1 Speardane\n\tmneme: You too! Do your best!\n\n4) mneme: Build B1 Mneme\n\n5) speardane: Discover G1 Speardane B2 Delos\n\n6) mneme: Build B1 Mneme\n\n7) speardane: Build G1 Delos\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) speardane: Build G1 Speardane\n\n10) mneme: Build B2 Mneme\n\n11) speardane: Trade G3 R3 Speardane\n\n12) mneme: Discover B2 Mneme Y1 Terpsicore\n\n13) speardane: Build G2 Delos\n\n14) mneme: Build B2 Mneme\n\n15) speardane: Trade G2 Y2 Delos\n\n16) mneme: Trade B2 R2 Mneme\n\n17) speardane: Trade G1 R1 Delos\n\n18) mneme: Build B2 Mneme\n\n19) speardane: Build G1 Delos\n\n20) mneme: Discover B2 Mneme Y1 Urania\n\n21) speardane: Build R1 Speardane\n\n22) mneme: Build B3 Mneme\n\n23) speardane: Trade R3 B3 Speardane\n\n24) mneme: Trade B3 G3 Mneme\n\n25) speardane: Build B3 Speardane\n\n26) mneme: Sacrifice Y3 Mneme\nMove B1 Mneme Terpsicore\nMove B1 Terpsicore Delos\nMove B1 Delos Speardane\nCatastrophe Speardane B\n\n27) speardane: Trade G1 B1 Delos\n\n28) mneme: Sacrifice G3 Mneme\nBuild B1 Urania\nBuild B3 Mneme\nBuild B3 Terpsicore\n\n29) speardane: Move B1 Delos Speardane\n\n30) mneme: Move B3 Terpsicore Speardane\n\n31) speardane: Build B3 Speardane\n\n32) mneme: Sacrifice R2 Mneme\nAttack B3 Speardane\nAttack R1 Speardane\n\n33) speardane: Sacrifice R1 Delos\nAttack R1 Speardane\n\n34) mneme: Trade B3 R3 Speardane\n\n35) speardane: Build B3 Speardane\n\n36) mneme: Attack B3 Speardane\n\n37) speardane: Build G1 Speardane\n\n38) mneme: Attack R1 Speardane\n\n39) speardane: Pass\n\tspeardane: Good game!\n\n40) mneme: Sacrifice B3 Mneme\nTrade R3 Y3 Speardane\nTrade B3 Y3 Speardane\nTrade R1 Y1 Speardane\nCatastrophe Speardane Y\n\tmneme: Good game! \n\n\nHomeworlds Online (SDG# 34439)\nVariants: "Unrated, Hard time"\nStarted: 2018.9.29, Ended: 2018.10.2\nParticipants: wil (S), Xx_Henry_xX (N)\nWinner: Xx_Henry_xX\n\n1) Xx_Henry_xX: Homeworld G1 B2 Y3\n\n\nHomeworlds Online (SDG# 34510)\nVariants: "Unrated"\nStarted: 2018.9.29, Ended: 2018.9.30\nParticipants: Xx_Henry_xX (S), wil (N)\nWinner: wil\n\n\tXx_Henry_xX: I just realized that I challenged the same person lol\n\nHomeworlds Online (SDG# 34463)\nVariants: "Hard time"\nStarted: 2018.9.30, Ended: 2018.10.2\nParticipants: Xx_Henry_xX (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Xx_Henry_xX: Homeworld G2 B3 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Xx_Henry_xX: Build Y1 Xx_henry_xx (s)\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Xx_Henry_xX: Build Y2 Xx_henry_xx\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Xx_Henry_xX: Discover Y1 Xx_henry_xx B1 Ligma\n\n9) Trydnt: Discover Y1 Trydnt G3 G3\n\tXx_Henry_xX: I'm bad at naming\n\n10) Xx_Henry_xX: Trade Y1 G1 Ligma\n\n11) Trydnt: Build Y1 Trydnt\n\n12) Xx_Henry_xX: Build G1 Ligma\n\n13) Trydnt: Build Y2 G3\n\n14) Xx_Henry_xX: Trade Y3 R3 Xx_henry_xx\n\n15) Trydnt: Trade Y2 R2 Trydnt\n\n16) Xx_Henry_xX: Trade G1 R1 Ligma\n\n17) Trydnt: Move Y2 G3 Ligma\n\n18) Xx_Henry_xX: Move Y2 Xx_henry_xx Ligma\n\n19) Trydnt: Sacrifice R2 Trydnt\nAttack Y2 Ligma\nAttack R1 Ligma\n\n20) Xx_Henry_xX: Build R1 Xx_henry_xx\n\n21) Trydnt: Attack G1 Ligma\n\n22) Xx_Henry_xX: Trade R1 B1 Xx_henry_xx\n\n23) Trydnt: Trade Y2 B2 Ligma\n\n24) Xx_Henry_xX: Build R1 Xx_henry_xx\n\n25) Trydnt: Build R1 Ligma\n\n26) Xx_Henry_xX: Trade R1 G1 Xx_henry_xx\n\n27) Trydnt: Build G1 Ligma\n\n28) Xx_Henry_xX: Build G2 Xx_henry_xx\n\n29) Trydnt: Move G1 Ligma Xx_henry_xx\nCatastrophe Xx_henry_xx G\n\n30) Xx_Henry_xX: Trade R3 G3 Xx_henry_xx\n\n31) Trydnt: Move B2 Ligma Xx_henry_xx\n\n32) Xx_Henry_xX: Trade B1 R1 Xx_henry_xx\n\n33) Trydnt: Sacrifice G3 Trydnt\nBuild B1 Xx_henry_xx\nBuild B1 Xx_henry_xx\nBuild Y2 Ligma\nCatastrophe Xx_henry_xx B\n\n\nHomeworlds Online (SDG# 34526)\nVariants: "Unrated"\nStarted: 2018.9.30, Ended: 2018.9.30\nParticipants: Xx_Henry_xX (S), Trydnt (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34490)\nStarted: 2018.9.30, Ended: 2018.10.29\nParticipants: dragon76n (S), Xx_Henry_xX (N)\nWinner: dragon76n\n\n1) Xx_Henry_xX: Homeworld G1 B2 Y3\n\n2) dragon76n: H Y1 B3 G3\n\n\n3) Xx_Henry_xX: Build Y1 Xx_henry_xx\n\n4) dragon76n: B G1 Dragon76n\n\n5) Xx_Henry_xX: Discover Y1 Xx_henry_xx G3 Alpaca\n\n6) dragon76n: T G1 Y1 Dragon76n\n\n7) Xx_Henry_xX: Build Y2 Alpaca\n\n8) dragon76n: Build Y2 Dragon76n\n\n9) Xx_Henry_xX: Build Y2 Xx_henry_xx\n\n10) dragon76n: D Y1 Dragon76n G2 Gretwo\n\n11) Xx_Henry_xX: Trade Y2 B2 Xx_henry_xx\n\n12) dragon76n: Build G1 Dragon76n\n\n13) Xx_Henry_xX: Move B2 Xx_henry_xx Alpaca\n\n14) dragon76n: Build Y2 Gretwo\n\n15) Xx_Henry_xX: Build Y3 Xx_henry_xx\n\n16) dragon76n: Discover Y1 Gretwo B3 Bluthr\n\n17) Xx_Henry_xX: Discover Y3 Xx_henry_xx Y3 Yeller\n\n18) dragon76n: Trade Y1 G1 Bluthr\n\n19) Xx_Henry_xX: Sacrifice Y2 Alpaca\nMove B2 Alpaca Gretwo\nMove B2 Gretwo Yeller\n\n20) dragon76n: Sacrifice G3 Dragon76n\nBuild G2 Bluthr\nBuild G2 Bluthr\nBuild G3 Dragon76n\n\n21) Xx_Henry_xX: Trade Y3 G3 Yeller\n\n22) dragon76n: B Y1 Gretwo\n\n23) Xx_Henry_xX: Trade B2 Y2 Yeller\n\n24) dragon76n: M Y2 Gretwo Bluthr\n\n25) Xx_Henry_xX: Move Y2 Yeller Xx_henry_xx\n\n\nHomeworlds Online (SDG# 34604)\nVariants: "Hard time"\nStarted: 2018.10.1, Ended: 2018.11.10\nParticipants: ajo (S), Draw5PlayAll (N)\nWinner: ajo\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tajo: For the tournament. :) Good luck!\n\tDraw5PlayAll: I legit did not know you (ajo) were Quuxplusone until just recently.\n\n2) ajo: Homeworld B2 R1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tajo: I'm not too surprised by that. I don't know what other names YOU might have. :)\n\n4) ajo: Build G1 Ajo\n\tDraw5PlayAll: Good luck, you are going to need it. Really good luck, that is.\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n6) ajo: Trade G3 R3 Ajo\n\n7) Draw5PlayAll: Build R2 Draw5playall\n\n8) ajo: Build R2 Ajo\n\n9) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n10) ajo: Trade R3 Y3 Ajo\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) ajo: Build R2 Ajo\n\tDraw5PlayAll: This red freeze out is not working\n\n13) Draw5PlayAll: Discover R2 Draw5playall G2 Lebling\n\n14) ajo: Discover R2 Ajo G3 Alpha\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R3 Draw5playall\nBuild R3 Lebling\nBuild R3 Lebling\n\n16) ajo: Build Y1 Ajo\n\tDraw5PlayAll: I have confirmed that this move is non-suicidal.\n\n17) Draw5PlayAll: Sacrifice Y2 Draw5playall\nDiscover R1 Draw5playall B2 Whoa\nDiscover R3 Lebling B3 Wow\n\tajo: Hmm, so it is.\n\n18) ajo: Move Y1 Ajo Alpha\n\tDraw5PlayAll: This is REALLY DANGEROUS\n\n19) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n20) ajo: Build R3 Alpha\n\tajo: The aggressive move here would be "sac y1; discover r2 Alpha y2 Beta"... but I don't think I'm ready for that.\n\n21) Draw5PlayAll: Build G1 Draw5playall\n\n22) ajo: Move R2 Alpha Whoa\n\n23) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n24) ajo: Attack R1 Whoa\n\n25) Draw5PlayAll: Build G1 Draw5playall\n\n26) ajo: Trade R1 G1 Whoa\n\n27) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild R1 Wow\n\n28) ajo: Build G1 Whoa\n\n29) Draw5PlayAll: Build Y1 Draw5playall\n\n30) ajo: Build Y2 Alpha\n\n31) Draw5PlayAll: Move Y1 Draw5playall Lebling\n\n32) ajo: Build G2 Whoa\n\n33) Draw5PlayAll: Build Y2 Draw5playall\n\n34) ajo: Discover R2 Ajo Y3 Beta\n\n35) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n36) ajo: Move Y1 Alpha Whoa\n\n37) Draw5PlayAll: Move B1 Draw5playall Lebling\n\n38) ajo: Move G1 Whoa Draw5playall\n\n39) Draw5PlayAll: Move R3 Lebling Draw5playall\n\n40) ajo: Sacrifice G2 Whoa\nBuild G2 Draw5playall\nBuild G2 Draw5playall\nCatastrophe Draw5playall Green\n\n41) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n42) ajo: Build R3 Whoa\n\n43) Draw5PlayAll: Discover B1 Lebling Y1 Ugh\n\n44) ajo: Move R3 Alpha Lebling\n\n45) Draw5PlayAll: Sacrifice Y1 Lebling\nDiscover R2 Lebling Y1 Uhoh\n\n46) ajo: Trade R2 G2 Whoa\n\n47) Draw5PlayAll: Trade R1 G1 Wow\n\tajo: I like these star names better. ;)\n\n48) ajo: Sacrifice G2 Whoa\nBuild Y2 Ajo\nBuild Y3 Whoa\n\tDraw5PlayAll: I was doing well....\n\n49) Draw5PlayAll: Build G2 Wow\n\n50) ajo: Build G2 Whoa\n\n51) Draw5PlayAll: Sacrifice B1 Ugh\nTrade G1 Y1 Wow\n\n52) ajo: Sacrifice G2 Whoa\nBuild R1 Whoa\nBuild R2 Lebling\n\n53) Draw5PlayAll: Build G1 Wow\n\n54) ajo: Build G2 Whoa\n\n55) Draw5PlayAll: Trade G1 B1 Wow\n\n56) ajo: Trade G1 B1 Whoa\n\n57) Draw5PlayAll: Discover Y1 Wow B2 No\n\n58) ajo: Move R3 Whoa Alpha\n\n59) Draw5PlayAll: Build G1 Draw5playall\n\n60) ajo: Build G1 Whoa\n\n61) Draw5PlayAll: Sacrifice G1 Draw5playall\nPass\n\n62) ajo: Move B1 Whoa Alpha\n\n\tDraw5PlayAll: I absolutely cannot see myself having any hope of winning this.\n\nHomeworlds Online (SDG# 34611)\nVariants: "Hard time"\nStarted: 2018.10.3, Ended: 2018.11.9\nParticipants: Babamots (S), Felix (N)\nWinner: Felix\n\n1) Felix: H B1 Y2 G3\n\n2) Babamots: Homeworld B3 R1 G3\n\tFelix: For the tournament, I assume?\n\tBabamots: Yes, for the tournament.\r\n\r\nI've been wondering how our next game would go for quite a while. Now I guess I'll find out. Good luck!\n\n3) Felix: Build G1 Felix\n\n4) Babamots: Build G1 Babamots\n\tFelix: We will see! Good luck and have fun!\r\n\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) Felix: Build G1 Felix\n\n8) Babamots: Build Y1 Babamots\n\n9) Felix: Build Y2 Felix\n\n10) Babamots: Discover Y1 Babamots G2 Bajor\n\n11) Felix: Discover Y1 Felix G3 Flemoid\n\n12) Babamots: Build Y2 Babamots\n\n13) Felix: Build Y3 Flemoid\n\n14) Babamots: Build Y3 Bajor\n\n15) Felix: Move Y1 Flemoid Bajor\n\n16) Babamots: Sacrifice Y1 Babamots\nMove Y1 Bajor Flemoid\n\n17) Felix: Trade G1 R1 Felix\n\n18) Babamots: Build G1 Babamots\n\n19) Felix: Build R1 Felix\n\n20) Babamots: Move Y3 Bajor Flemoid\n\n21) Felix: Sacrifice G3 Felix\nBuild Y1 Flemoid\nBuild Y3 Felix\nCatastrophe Flemoid Yellow\nBuild Y1 Bajor\n\n22) Babamots: Build Y1 Babamots\n\n23) Felix: Trade Y3 G3 Felix\n\n24) Babamots: Trade Y2 R2 Babamots\n\n25) Felix: Discover Y1 Bajor B3 Gringot\n\n26) Babamots: Build R2 Babamots\n\n27) Felix: Sacrifice G3 Felix\nBuild Y2 Bajor\nBuild Y3 Gringot\nBuild Y3 Felix\n\n28) Babamots: Build Y3 Babamots\n\n29) Felix: Sacrifice Y2 Felix\nMove Y1 Bajor Babamots\nMove Y2 Bajor Babamots\nCatastrophe Babamots Yellow\n\tBabamots: Oh dear. I expected that move, but I see more problems with it now.\n\n30) Babamots: Trade R2 Y2 Babamots\n\tFelix: I honestly feel a bit nervous about taking it, but we'll see if it works out for me!\n\n31) Felix: M R1 Felix Gringot\n\n32) Babamots: Build Y1 Babamots\n\n33) Felix: T Y3 G3 Gringot\n\n34) Babamots: Discover Y1 Babamots G2 Ferenginar\n\n35) Felix: Build R2 Gringot\n\n36) Babamots: Discover R2 Babamots Y2 Mizar\n\tBabamots: I'll be playing slow this week. My parents are visiting later and I'm pretty distracted getting ready.\n\n37) Felix: Move R2 Gringot Ferenginar\n\n38) Babamots: Discover Y1 Ferenginar B3 Bolarus\n\tFelix: Not a problem! Enjoy your visit with your folks :)\n\tBabamots: consider discovering a y2 with the r2 in Babamots in preparation for sacrificing g3 to build all remaining yellow\r\nhe can't build all the yellow without letting you catastrophe\n\tBabamots: Hmm, that was supposed to be a note for myself. Now you know all my secrets!\n\n39) Felix: Sacrifice G3 Gringot\nBuild R2 Ferenginar\nBuild R3 Gringot\nBuild R3 Felix\n\tBabamots: My parents' visit is over, so hopefully I can play at a more normal pace.\r\n\r\nSo when I broadcast my knee-jerk move four days ago, I just wanted to make sure that, when I had time to study it properly, I kept that one in mind. Now that I've looked around, I think it still looks good. Sorry you had to wait for almost no reason.\n\tFelix: No problem! I know all your plans now! :D I don't utilize the notes area enough, myself.\n\n40) Babamots: Sacrifice G3 Babamots\nBuild R3 Mizar\nBuild Y1 Bolarus\nBuild Y3 Babamots\n\n41) Felix: Sacrifice Y3 Felix\nMove R2 Ferenginar Bolarus\nMove R1 Gringot Mizar\nMove R3 Gringot Mizar\nCatastrophe Mizar Red\n\n42) Babamots: Sacrifice Y1 Bolarus\nDiscover Y1 Bolarus G1 Risa\n\n43) Felix: T R3 G3 Felix\n\n44) Babamots: Trade Y2 R2 Babamots\n\n45) Felix: Sacrifice G3 Felix\nBuild R1 Ferenginar\nBuild R3 Bolarus\nBuild R3 Felix\n\n46) Babamots: Discover R2 Babamots Y2 Pakled\n\n47) Felix: Trade R3 G3 Bolarus\n\n48) Babamots: Sacrifice G1 Babamots\nBuild R3 Pakled\n\n49) Felix: Build R3 Bolarus\n\n50) Babamots: Build Y1 Risa\n\n51) Felix: Trade R3 Y3 Bolarus\n\n52) Babamots: Move R3 Pakled Gringot\n\tBabamots: I'm out of town for my sister-in-law's wedding. If you don't mind, I'm going to pause my timer until I get back next week.\n\tFelix: Huh, I didn't know we could do that. I don't mind, but I wish I had known during my game with speardane. I would not have timed out if I knew I could freeze it. Maybe I can get a rematch? :)\n\tFelix: Ah, I see that it's in the rules. I guess I didn't read them carefully enough. Oh well, I suppose that's my loss.\n\n53) Felix: Sacrifice G3 Bolarus\nBuild Y2 Gringot\nBuild Y3 Bolarus\nBuild R3 Bolarus\n\n54) Babamots: Attack Y2 Gringot\n\n55) Felix: Sacrifice Y1 Gringot\nMove Y3 Bolarus Ferenginar\n\n56) Babamots: Move R2 Pakled Gringot\n\n57) Felix: Sacrifice Y3 Ferenginar\nMove R1 Ferenginar Gringot\nMove R2 Ferenginar Gringot\nCatastrophe Gringot Red\nMove R2 Bolarus Risa\n\n\tBabamots: Too bad we're not playing with last year's simultaneous elimination rules or I'd've had a draw back there!\r\n\r\nWell, I don't feel any particular need to play this out. My last hope was that you'd be oblivious to a red catastrophe at home, but you don't miss things often. Congratulations, and maybe I'll get you next time!\n\tFelix: Thanks! It was a good game. I'm sure you'll get me next time. We're pretty evenly matched, but small momentum changes can still build up over time into large advantages.\r\n\r\nI actually spotted the double elim earlier and made sure I re-read the rules again before I chose to not guard against that :) I honestly was feeling pretty nervous leaving my two reds at home like that for so long, thinking I had overlooked something! Good game.\n\nHomeworlds Online (SDG# 34612)\nVariants: "Hard time"\nStarted: 2018.10.3, Ended: 2018.11.19\nParticipants: Babamots (S), DodoBirb (N)\nWinner: Babamots\n\n1) DodoBirb: Homeworld B1 R2 G3\n\tDodoBirb: I assume this is for the tourney?\n\n2) Babamots: Homeworld B3 R1 G3\n\tBabamots: Yes, for the tournament. Good luck!\n\n3) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: Good Luck!\n\n4) Babamots: Build G1 Babamots\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) Babamots: Build G1 Babamots\n\n7) DodoBirb: Build G1 Dodobirb\n\n8) Babamots: Trade G1 Y1 Babamots\n\n9) DodoBirb: Trade G1 B1 Dodobirb\n\n10) Babamots: Trade G1 R1 Babamots\n\n11) DodoBirb: Trade B1 R1 Dodobirb\n\n12) Babamots: Build R2 Babamots\n\n13) DodoBirb: Build R2 Dodobirb\n\n14) Babamots: Discover R2 Babamots Y2 Iconia\n\n15) DodoBirb: Discover R2 Dodobirb Y3 Sun\n\n16) Babamots: Build R3 Babamots\n\n17) DodoBirb: Build R3 Dodobirb\n\n18) Babamots: Discover R3 Babamots Y2 Bolarus\n\n19) DodoBirb: Move R3 Dodobirb Sun\n\n20) Babamots: Build R3 Babamots\n\n21) DodoBirb: Move R2 Sun Dodobirb\n\n22) Babamots: Trade R3 Y3 Babamots\n\n23) DodoBirb: Discover R1 Dodobirb R3 Keepaway\n\n24) Babamots: Move Y3 Babamots Iconia\n\n25) DodoBirb: Build G1 Dodobirb\n\n26) Babamots: Build Y1 Babamots\n\n27) DodoBirb: Trade G1 B1 Dodobirb\n\n28) Babamots: Move Y3 Iconia Keepaway\n\tDodoBirb: I think I finally "get it". A bit too late for this game though.\n\tBabamots: You think you're getting a good feel for the game? That's great! Any special insights from this game?\n\n29) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: I definitely screwed up the opening a little bit. When I started building blue I should have kept going but instead I switched to Red when you started building that. Now you have 3 large ships over my 2 because I took 2 turns trading.\n\n30) Babamots: Build G1 Babamots\n\n31) DodoBirb: Move G1 Dodobirb Sun\n\n32) Babamots: Sacrifice G3 Babamots\nBuild Y2 Keepaway\nBuild Y3 Babamots\nBuild G1 Babamots\n\n33) DodoBirb: Build G2 Dodobirb\n\n34) Babamots: Move G1 Babamots Bolarus\n\n35) DodoBirb: Build G2 Sun\n\n36) Babamots: Discover R3 Bolarus B3 Mizar\n\n37) DodoBirb: Move B1 Dodobirb Sun\n\n38) Babamots: Attack R1 Keepaway\n\n39) DodoBirb: Discover G2 Sun B2 Bluey\n\n40) Babamots: Trade Y1 B1 Babamots\n\n41) DodoBirb: Sacrifice G3 Dodobirb\nBuild G2 Sun\nBuild G3 Dodobirb\nBuild G3 Bluey\n\n42) Babamots: Build G3 Bolarus\n\n43) DodoBirb: Build Y1 Dodobirb\n\n44) Babamots: Move B1 Babamots Bolarus\n\tBabamots: I'm out of town for my sister-in-law's wedding. If you don't mind, I'm going to pause my timer until I get back next week.\n\tDodoBirb: Don't worry, that's fine\n\n45) DodoBirb: Build B2 Sun\n\n46) Babamots: Build B2 Bolarus\n\n47) DodoBirb: Discover Y1 Dodobirb B3 Oceania\n\n48) Babamots: Move G1 Bolarus Keepaway\n\n49) DodoBirb: Move R2 Dodobirb Oceania\n\n50) Babamots: Move G3 Bolarus Oceania\n\n51) DodoBirb: Move R2 Oceania Bluey\n\n52) Babamots: Sacrifice Y3 Keepaway\nMove G1 Keepaway Dodobirb\nMove R3 Mizar Dodobirb\nMove G3 Oceania Dodobirb\nCatastrophe Dodobirb G\n\n53) DodoBirb: Trade G3 Y3 Bluey\n\n54) Babamots: Attack Y1 Dodobirb\n\n\tDodoBirb: gg\n\tDodoBirb: Well played.\n\tBabamots: gg! And thanks for being in the tournament! Good luck on your games!\n\tDraw5PlayAll: Bolarus?\n\tBabamots: Bolarus IX is the homeworld of Bolians in Star Trek.\n\tDraw5PlayAll: Bolians? (No spoilers)\n\tBabamots: Bolians are a blue-skinned, usually-bald humanoid race. If there's a Starfleet officer in the background who isn't a human, they're usually Bolian. It seems to me that they appear in situations where the show makers wanted to display a little species diversity but not work at it too hard. The most notable individual Bolian I can think of is Mr. Mot, who is a barber on the Enterprise D.\n\tDraw5PlayAll: Wait so are the Andorians and Bolians both blue skinned?!\n\tBabamots: Andoeians typically have blue skin, though there have been some blueish ones.\n\tDraw5PlayAll: What?\n\tBabamots: I was confirming what you said: Andorians and Bolians have blue skin.\r\n\r\nIt was barely worth mentioning, but I was also saying that that there are a few exceptions: a few Andorians in Star Trek looked more greenish than blue.\n\tBabamots: Sorry, I just reread and saw that I said just said some Andorians are "blueish." I must have been interrupted while typing. I mean to say "blueish green."\n\nHomeworlds Online (SDG# 34614)\nVariants: "Hard time"\nStarted: 2018.10.4, Ended: 2018.10.8\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\tTrydnt: For the homeworlds tournament\n\n2) ts52: Homeworld Y1 B2 G3\n\tts52: Have a good game!\n\n3) Trydnt: Build G1 Trydnt\n\n\tts52: Crap. Didn't build up enough time before vacation. My bad. Good game!\n\tts52: Sorry I made it a disappointing one.\n\tBabamots: As far as I'm concerned, you can replay this for the tournament if you both want to. Only starting with 2d on the clock isn't in the spirit of "you can take a week off" that I intended. I want to change that next time.\n\tTrydnt: I'm happy to play it again. We're so few moves in recreating it would be a doddle. ts52 you back from vacation?\n\tts52: I'm fine either way. Trydnt, if you'd like to have a proper game, I'll gladly replay my first move. But I'm also fine with calling this one for you. I should've paid more attention to the time. So I leave it up to you.\n\tTrydnt: let's do it\n\tBabamots: If you're agreed, go ahead and start a new game and record it like normal. I'll strike this one from the record once you have a new one started.\n\nHomeworlds Online (SDG# 34619)\nVariants: "Unrated"\nStarted: 2018.10.5, Ended: 2018.10.16\nParticipants: RogueJedi234 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R3 G2 B3\n\n2) RogueJedi234: Homeworld R1 B2 G3\n\n3) Babamots: Build B1 Babamots\n\n4) RogueJedi234: Build G1 Roguejedi234\n\n5) Babamots: Trade B1 Y1 Babamots\n\n6) RogueJedi234: Build G1 Roguejedi234\n\n7) Babamots: Build B1 Babamots\n\n8) RogueJedi234: Trade G1 Y1 Roguejedi234\n\n9) Babamots: Trade B1 G1 Babamots\n\n10) RogueJedi234: Discover G1 Roguejedi234 B3 Cherry\n\n11) Babamots: Discover G1 Babamots B1 Bolarus\n\n12) RogueJedi234: Trade G1 R1 Cherry\n\n13) Babamots: Build B1 Babamots\n\n14) RogueJedi234: Sacrifice Y1 Roguejedi234\nMove R1 Cherry Bolarus\n\n15) Babamots: Sacrifice Y1 Babamots\nDiscover G1 Bolarus B2 Ferenginar\n\n16) RogueJedi234: Build G1 Roguejedi234\n\n17) Babamots: Build B1 Babamots\n\n18) RogueJedi234: Trade G1 Y1 Roguejedi234\n\n19) Babamots: Trade G1 R1 Ferenginar\n\n20) RogueJedi234: Build G1 Roguejedi234\n\n21) Babamots: Trade B3 Y3 Babamots\n\n22) RogueJedi234: Sacrifice G1 Roguejedi234\nBuild R2 Bolarus\n\n23) Babamots: Build B2 Babamots\n\n24) RogueJedi234: Trade R2 G2 Bolarus\n\n25) Babamots: Discover B2 Babamots G1 Risa\n\n26) RogueJedi234: Build G1 Bolarus\n\n27) Babamots: Build B3 Babamots\n\n28) RogueJedi234: Build R2 Bolarus\n\n29) Babamots: Build B3 Risa\n\n30) RogueJedi234: Build G1 Roguejedi234\n\n31) Babamots: Trade B3 G3 Risa\n\n32) RogueJedi234: Trade R2 Y2 Bolarus\n\n33) Babamots: Move B3 Babamots Bolarus\n\n34) RogueJedi234: Sacrifice Y2 Bolarus\nMove G2 Bolarus Babamots\nMove G1 Bolarus Babamots\n\n35) Babamots: Trade B3 R3 Bolarus\n\n36) RogueJedi234: Build G2 Babamots\nCatastrophe Babamots Green\n\n37) Babamots: Attack R1 Bolarus\n\n38) RogueJedi234: Discover G1 Roguejedi234 B3 Wintermute\n\n39) Babamots: Sacrifice G3 Risa\nBuild B3 Babamots\nBuild B3 Risa\nBuild Y1 Babamots\n\n40) RogueJedi234: Build G1 Wintermute\n\n41) Babamots: Sacrifice Y3 Babamots\nMove B3 Babamots Roguejedi234\nMove B3 Risa Babamots\nMove B3 Babamots Roguejedi234\n\n42) RogueJedi234: Attack B3 Roguejedi234\n\n43) Babamots: Sacrifice R3 Bolarus\nAttack B3 Roguejedi234\nAttack G3 Roguejedi234\nAttack Y1 Roguejedi234\n\n\tBabamots: GG! And hey, what does "Wintermute" refer to?\n\tRogueJedi234: William Gibson's novel Neuromancer. One of the AIs that feature into the story.\n\nHomeworlds Online (SDG# 34616)\nVariants: "Hard time"\nStarted: 2018.10.8, Ended: 2018.10.27\nParticipants: mneme (S), Trydnt (N)\nWinner: mneme\n\n1) Trydnt: Homeworld Y3 B2 G3\n\tmneme: To be clear, this IS for the tournament. \n\tTrydnt: Indeed it is\n\n2) mneme: Homeworld R1 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) mneme: Build G1 Mneme\n\tmneme: sorry for the double; was thinking of trying freeze, but figured I'd mix things up a bit.\r\n\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) mneme: Trade G1 R1 Mneme\n\n7) Trydnt: Build R2 Trydnt\n\n8) mneme: Build R2 Mneme\n\n9) Trydnt: Build R2 Trydnt\n\n10) mneme: Trade R2 Y2 Mneme\n\n11) Trydnt: Trade R2 Y2 Trydnt\n\n12) mneme: Build R2 Mneme\n\n13) Trydnt: Build R2 Trydnt\n\n14) mneme: Discover R2 Mneme B3 Clio\n\n15) Trydnt: Discover R2 Trydnt G1 G1\n\n16) mneme: Build G1 Mneme\n\n17) Trydnt: Trade R1 B1 Trydnt\n\n18) mneme: Move G1 Mneme Clio\n\n19) Trydnt: Move B1 Trydnt G1\n\n20) mneme: Build Y1 Mneme\n\n21) Trydnt: Build B1 G1\n\n22) mneme: Move Y1 Mneme Clio\n\n23) Trydnt: Trade B1 Y1 G1\n\n24) mneme: Build Y1 Clio\n\n25) Trydnt: Discover Y2 Trydnt B1 B1\n\n26) mneme: Discover Y1 Clio G1 Thalia\n\n27) Trydnt: Discover B1 G1 Y3 Y3\n\n28) mneme: Build G2 Mneme\n\n29) Trydnt: Discover R2 G1 Y3 Why3\n\n30) mneme: Build Y2 Thalia\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild R1 Why3\nBuild R3 Trydnt\nBuild B1 Y3\n\n32) mneme: Discover R1 Mneme G3 Erato\n\n33) Trydnt: Trade R3 G3 Trydnt\n\n34) mneme: Sacrifice G3 Mneme\nBuild G2 Clio\nBuild G2 Clio\nBuild G3 Mneme\n\n35) Trydnt: Discover Y1 G1 R3 R3\n\n36) mneme: Sacrifice G2 Clio\nBuild R3 Clio\nBuild R3 Erato\n\n37) Trydnt: Discover Y1 R3 B2 B2\n\n38) mneme: Move G3 Mneme Y3\n\n39) Trydnt: Discover B1 Y3 G2 G2\n\n40) mneme: Sacrifice R1 Erato\nAttack B1 Y3\n\n41) Trydnt: Build B3 G2\n\n42) mneme: Sacrifice G3 Y3\nBuild G1 Clio\nBuild G3 Mneme\nBuild B3 Y3\n\n43) Trydnt: Trade B3 R3 G2\n\n44) mneme: Discover G2 Mneme B3 Urania\n\n45) Trydnt: Sacrifice Y1 B2\nMove R3 G2 Urania\n\n46) mneme: Sacrifice G2 Urania\nBuild G2 Mneme\nBuild Y1 Thalia\n\n47) Trydnt: Build B2 G2\n\n48) mneme: Move R3 Clio G2\n\n49) Trydnt: Sacrifice Y2 B1\nMove R3 Urania Thalia\nMove R3 Thalia Clio\n\n50) mneme: Sacrifice R2 Clio\nAttack B2 G2\nAttack B1 G2\n\n51) Trydnt: Sacrifice R2 Why3\nAttack G2 Clio\nAttack Y1 Clio\n\n52) mneme: Sacrifice G2 Mneme\nBuild G2 Clio\nCatastrophe Clio G\nBuild Y2 Mneme\n\n53) Trydnt: Move R3 Clio Thalia\n\n54) mneme: Sacrifice Y2 Mneme\nMove Y1 Thalia Trydnt\nMove Y2 Thalia Trydnt\n\n55) Trydnt: Sacrifice R2 Trydnt\nAttack Y2 Trydnt\nAttack Y1 Thalia\n\n56) mneme: Sacrifice G3 Mneme\nBuild Y2 Trydnt\nCatastrophe Trydnt Y\nBuild B1 Y3\nBuild B3 G2\n\n57) Trydnt: Move R3 Thalia Why3\n\n58) mneme: Move B3 Y3 Mneme\n\n59) Trydnt: Move Y1 Thalia Y3\n\n60) mneme: Trade B2 R2 G2\n\n61) Trydnt: Discover Y1 Y3 B2 B2\n\n62) mneme: Trade B3 Y3 G2\n\n\tmneme: good game!\n\tTrydnt: well played indeed\n\nHomeworlds Online (SDG# 34624)\nVariants: "Hard time"\nStarted: 2018.10.8, Ended: 2018.10.20\nParticipants: deanthebean (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) deanthebean: Homeworld Y1 B2 G3\n\tgoulo: hi!\n\tdeanthebean: Thank you for accepting the challenge. Enjoy the game!\r\n\n\n3) goulo: Build G1 Goulo\n\n4) deanthebean: Build G1 Deanthebean\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) deanthebean: Build G1 Deanthebean\n\n7) goulo: Build Y1 Goulo\n\n8) deanthebean: Trade G1 R1 Deanthebean\n\n9) goulo: Build Y2 Goulo\n\n10) deanthebean: Build R1 Deanthebean\n\n11) goulo: Discover Y1 Goulo G1 Verdeto\n\n12) deanthebean: Trade G3 Y3 Deanthebean\n\n13) goulo: Build Y2 Verdeto\n\n14) deanthebean: Discover Y3 Deanthebean G3 Johnthescone\n\n15) goulo: Build Y2 Verdeto\n\n16) deanthebean: Build Y3 Johnthescone\n\n17) goulo: Sacrifice Y2 Verdeto\nMove Y2 Verdeto Johnthescone\nMove Y1 Verdeto Johnthescone\nCatastrophe Johnthescone Y\n\n18) deanthebean: Trade R1 Y1 Deanthebean\n\n19) goulo: Trade Y1 R1 Goulo\n\n20) deanthebean: Build G1 Deanthebean\n\n21) goulo: Discover Y2 Goulo G1 Verdeto\n\n22) deanthebean: Build G2 Deanthebean\n\n23) goulo: Build G2 Goulo\n\n24) deanthebean: Discover G1 Deanthebean G3 Andythecandy\n\n25) goulo: Trade G2 Y2 Goulo\n\n26) deanthebean: Build G2 Andythecandy\n\n27) goulo: Discover Y2 Verdeto G3 Verdego\n\n28) deanthebean: Trade G1 B1 Deanthebean\n\n29) goulo: Build Y1 Verdego\n\n30) deanthebean: Move Y1 Deanthebean Andythecandy\n\n31) goulo: Sacrifice G3 Goulo\nBuild Y2 Goulo\nBuild Y3 Goulo\nBuild Y3 Verdego\n\n32) deanthebean: Build Y3 Andythecandy\n\n33) goulo: Sacrifice Y2 Goulo\nMove Y3 Verdego Deanthebean\nDiscover Y1 Verdego Y2 Flavo\n\n34) deanthebean: Sacrifice G2 Deanthebean\nBuild R1 Deanthebean\nBuild B1 Deanthebean\n\n35) goulo: Trade Y3 B3 Deanthebean\nCatastrophe Deanthebean B\n\n36) deanthebean: Build Y3 Andythecandy\n\n37) goulo: Sacrifice Y3 Goulo\nMove Y1 Flavo Deanthebean\nMove Y2 Goulo Deanthebean\nMove Y2 Verdego Deanthebean\nCatastrophe Deanthebean Y\n\tdeanthebean: Well played! I felt like I was in trouble when you locked me out of yellow technology and took some desperate measures that probably only made things worse.\n\n\tgoulo: thanks, good game!\r\n\r\nthat last turn was funny: at first I saw "wow you've got 3 yellows, include 2 size 3 ships, at andy the candy -- surely I must move my small yellow from flavo there to kill your 2 big yellows!" before I noticed "oh wait, instead of that, i could just move 3 yellows to your homeworld and win this turn, duh". :)\n\nHomeworlds Online (SDG# 34637)\nVariants: "Hard time"\nStarted: 2018.10.12, Ended: 2018.10.24\nParticipants: mneme (S), eliscinsky (N)\nWinner: mneme\n\n1) eliscinsky: H B1 Y2 G3\n\tmneme: For the Great Homeworlds Tournament\n\teliscinsky: Agreed: For the Great Homeworlds Tournament\r\nGood Luck!\n\n2) mneme: Homeworld G3 R1 B3\n\n3) eliscinsky: Build G1 Eliscinsky\n\teliscinsky: Very interesting choice for a HW. I haven't seen that one before. \n\n4) mneme: Build B1 Mneme\n\n5) eliscinsky: Trade G1 B1 Eliscinsky\n\tmneme: I use it (or variations of it) all the time.\r\nMy 2p homeworlds tend to be very much based around what the 1p homeworld looks like.\n\n6) mneme: Build B2 Mneme\n\n7) eliscinsky: B B2 Eliscinsky\n\n8) mneme: Trade B2 Y2 Mneme\n\n9) eliscinsky: T B1 R1 Eliscinsky\n\n10) mneme: Trade B1 R1 Mneme\n\n11) eliscinsky: Build R2 Eliscinsky\n\n12) mneme: Discover R1 Mneme G2 Euterpe\n\n13) eliscinsky: Discover R2 Eliscinsky G3 Orion\n\n14) mneme: Build Y1 Mneme\n\n15) eliscinsky: B G1 Eliscinsky\n\n16) mneme: Move Y2 Mneme Euterpe\n\n17) eliscinsky: Build R2 Eliscinsky\n\n18) mneme: Build B1 Mneme\n\n19) eliscinsky: Trade G1 Y1 Eliscinsky\n\n20) mneme: Build Y1 Euterpe\n\n21) eliscinsky: Move Y1 Eliscinsky Orion\n\n22) mneme: Move B1 Mneme Euterpe\n\n23) eliscinsky: M B2 Eliscinsky Orion\n\n24) mneme: Trade Y2 G2 Euterpe\n\n25) eliscinsky: T R2 Y2 Eliscinsky\n\n26) mneme: Build R2 Euterpe\n\n27) eliscinsky: Build R2 Orion\n\n28) mneme: Discover R2 Euterpe Y3 Caliope\n\n29) eliscinsky: Discover R2 Orion G2 Earth\n\n30) mneme: Sacrifice G2 Euterpe\nBuild R3 Caliope\nBuild R3 Euterpe\n\n31) eliscinsky: Sacrifice Y2 Eliscinsky\nMove R2 Earth Caliope\nMove R1 Eliscinsky Caliope\nCatastrophe Caliope Red\n\n32) mneme: Build Y2 Euterpe\n\n33) eliscinsky: Move R2 Orion Eliscinsky\n\n34) mneme: Move R3 Euterpe Orion\n\n35) eliscinsky: Trade Y1 R1 Orion\n\n36) mneme: Attack R1 Orion\n\n37) eliscinsky: Trade B2 R2 Orion\n\n38) mneme: Attack R2 Orion\n\n39) eliscinsky: Move R2 Eliscinsky Orion\nCatastrophe Orion Red\n\n40) mneme: Build B1 Mneme\n\teliscinsky: And now I'll start ALL over again. :)\r\nIt's like I "pass"ed 8-10 times LOL\r\nWhy do I think I'm going to lose ;)\r\nIt's all good clean fun, until someone has a C :P\n\teliscinsky: Seriously I am having fun. Thanks for a challenging game. Hope I've thrown you a few twists.\n\n41) eliscinsky: B G1 Eliscinsky\n\tmneme: *nod* It's going to be really tough for you from here on in, though.\n\n42) mneme: Build R1 Euterpe\n\n43) eliscinsky: Trade G1 Y1 Eliscinsky\n\n44) mneme: Build Y2 Euterpe\n\tmneme: Sorry for the undo, but while I think it goes to the same place either way, this is, I think, a little more challenging for you. I wouldn't want to bore.\n\n45) eliscinsky: Build Y3 Eliscinsky\n\n46) mneme: Sacrifice Y2 Euterpe\nDiscover Y1 Euterpe R3 Erato\nMove Y1 Erato Eliscinsky\nCatastrophe Eliscinsky Y\n\n\n\teliscinsky: Well Thanks for a good, enlightening game. However I think I need to let this one go. Does resigning help or hurt you're stats?\n\tmneme: It's basically the same as any other loss. And yeah -- it's 3 turns until a guarunteed loss; probably best to let it go. Good game!\n\nHomeworlds Online (SDG# 34636)\nVariants: "Hard time"\nStarted: 2018.10.12, Ended: 2018.11.20\nParticipants: eliscinsky (S), Laurie_Menke (N)\nWinner: eliscinsky\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi Eric! Good luck! For the record, this is a tournament game...\n\n2) eliscinsky: H Y1 B2 G3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\teliscinsky: Ageed: For the tournament.\r\nGood luck!\n\n4) eliscinsky: Build G1 Eliscinsky\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) eliscinsky: T G1 R1 Eliscinsky\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) eliscinsky: B G1 Eliscinsky\n\n9) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n10) eliscinsky: Trade G1 B1 Eliscinsky\n\n11) Laurie_Menke: Build B2 Laurie_menke\n\n12) eliscinsky: Build B2 Eliscinsky\n\n13) Laurie_Menke: Trade B2 Y2 Laurie_menke\n\n14) eliscinsky: T B2 Y2 Eliscinsky\n\n15) Laurie_Menke: Build B2 Laurie_menke\n\n16) eliscinsky: Build B2 Eliscinsky\n\n17) Laurie_Menke: Discover B2 Laurie_menke G2 Green\n\n18) eliscinsky: Discover B2 Eliscinsky G3 Orion\n\n19) Laurie_Menke: Build B3 Green\n\tLaurie_Menke: Sorry... brain fart...\n\teliscinsky: No problem. I undo at least once in most of my games.\n\n20) eliscinsky: B B3 Orion\n\n21) Laurie_Menke: Trade B3 Y3 Green\n\n22) eliscinsky: Trade B2 Y2 Orion\n\n23) Laurie_Menke: Build G1 Laurie_menke\n\n24) eliscinsky: B Y1 Orion\n\n25) Laurie_Menke: Discover Y2 Laurie_menke R2 Red\n\n26) eliscinsky: M B3 Orion Red\n\n27) Laurie_Menke: Move Y2 Red Orion\n\n28) eliscinsky: B Y1 Orion\nC Orion Yellow\n\n29) Laurie_Menke: Discover B2 Green G3 Greener\n\n30) eliscinsky: Move B1 Eliscinsky Greener\n\tLaurie_Menke: Ack! LOL...\n\n31) Laurie_Menke: Build Y1 Green\n\teliscinsky: Shouldn't a g1 be Green, g2 be Greener, & g3 Greenest? LOL\n\tLaurie_Menke: LOL... I suppose you're right!\n\n32) eliscinsky: Trade B3 R3 Red\n\n33) Laurie_Menke: Build R1 Laurie_menke\n\n34) eliscinsky: T B1 Y1 Greener\n\n35) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack Y1 Greener\n\n36) eliscinsky: S Y2 Eliscinsky\nM R3 Red Greener\nPass\n\n37) Laurie_Menke: Sacrifice Y3 Green\nMove Y1 Green Greener\nMove Y1 Greener Eliscinsky\nMove Y1 Greener Eliscinsky\n\n38) eliscinsky: Attack B2 Greener\n\n39) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild Y2 Eliscinsky\nCatastrophe Eliscinsky Y\n\teliscinsky: I see where this is heading. Very nice.\n\n40) eliscinsky: T R3 Y3 Greener\n\tLaurie_Menke: Thanks! ;)\n\n41) Laurie_Menke: Move B1 Laurie_menke Eliscinsky\n\n42) eliscinsky: A B1 Eliscinsky\n\n43) Laurie_Menke: Build G1 Laurie_menke\n\n44) eliscinsky: Build B1 Greener\n\n45) Laurie_Menke: Build R1 Laurie_menke\n\n46) eliscinsky: Trade B1 Y1 Eliscinsky\n\n47) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n48) eliscinsky: Build B1 Greener\n\n49) Laurie_Menke: Build G1 Laurie_menke\n\n50) eliscinsky: T B2 R2 Greener\n\n51) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n52) eliscinsky: Sacrifice Y3 Greener\nMove R1 Eliscinsky Laurie_menke\nMove R2 Greener Eliscinsky\nMove R2 Eliscinsky Laurie_menke\nCatastrophe Laurie_menke Red\n\n53) Laurie_Menke: Build G1 Laurie_menke\n\n54) eliscinsky: Build Y1 Eliscinsky\n\tLaurie_Menke: I don't know why I was thinking you couldn't pull that off yet. ::sigh::\n\n55) Laurie_Menke: Move G1 Laurie_menke Eliscinsky\n\tDraw5PlayAll: Where did all the red go?\n\n56) eliscinsky: Trade G3 R3 Eliscinsky\n\tLaurie_Menke: LOL\n\n\tLaurie_Menke: Ugh. I'm sorry, Eric. :( I've been on the road and got behind. I'm very sorry for such an anticlimactic win, but I do think you would have won anyway. Sorry. :(\n\nHomeworlds Online (SDG# 34648)\nVariants: "Hard time"\nStarted: 2018.10.15, Ended: 2018.11.30\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\tts52: Thanks for the restart. This is for the homeworlds tournament (take 2). Have a good game!\n\n2) ts52: Homeworld Y1 B2 G3\n\tBabamots: I've updated the spreadsheet with the new game number. Good luck to both of you!\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ts52: Build Y2 Ts52\n\n9) Trydnt: Discover Y1 Trydnt G1 G1\n\n10) ts52: Discover Y1 Ts52 G3 Kermit\n\n11) Trydnt: Build G1 Trydnt\n\n12) ts52: Build G1 Ts52\n\n13) Trydnt: Build G2 Trydnt\n\n14) ts52: Build G2 Ts52\n\n15) Trydnt: Trade G1 R1 Trydnt\n\n16) ts52: Trade G2 R2 Ts52\n\n17) Trydnt: Discover Y2 Trydnt G1 G11\n\n18) ts52: Build R1 Ts52\n\n19) Trydnt: Build G2 Trydnt\n\n20) ts52: Discover G1 Ts52 B3 Gonzo\n\n21) Trydnt: Discover G2 Trydnt B1 B1\n\n22) ts52: Move Y2 Ts52 Gonzo\n\n23) Trydnt: Sacrifice G3 Trydnt\nBuild G2 B1\nBuild G3 Trydnt\nBuild R1 Trydnt\n\n24) ts52: Move R1 Ts52 Gonzo\n\n25) Trydnt: Move R1 Trydnt G11\n\n26) ts52: Build R2 Gonzo\n\n27) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 Trydnt\nBuild R3 G11\n\n28) ts52: Build R3 Ts52\n\n29) Trydnt: Move R3 G11 Kermit\n\n30) ts52: Discover G3 Ts52 R3 Elmo\n\n31) Trydnt: Attack Y1 Kermit\n\n32) ts52: Move R2 Gonzo G1\n\n33) Trydnt: Discover Y1 G1 B3 B3\n\n34) ts52: Sacrifice G3 Elmo\nBuild R3 Gonzo\nBuild G3 Gonzo\nPass\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 Kermit\nBuild Y3 G11\n\n36) ts52: Trade R2 B2 Ts52\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y3 B3\nBuild R2 Kermit\n\n38) ts52: Move R3 Gonzo B1\n\n39) Trydnt: Sacrifice Y2 G11\nMove G2 B1 Gonzo\nMove G2 B1 Gonzo\nCatastrophe Gonzo G\n\n40) ts52: Trade B2 G2 Ts52\n\n41) Trydnt: Build Y2 G11\n\n42) ts52: Build G1 Ts52\n\tTrydnt: that turned out better than I thought it would\n\n43) Trydnt: Trade R1 B1 Trydnt\n\tts52: indeed. nice play\n\n44) ts52: M G2 Ts52 Gonzo\n\n45) Trydnt: Move Y3 G11 Gonzo\n\n46) ts52: Move Y2 Gonzo B1\n\n47) Trydnt: Sacrifice R2 Kermit\nAttack G2 Gonzo\nAttack R1 Gonzo\n\n48) ts52: Build G2 Ts52\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Gonzo\nBuild R1 Gonzo\n\n50) ts52: Sacrifice G2 Ts52\nBuild G2 Ts52\nBuild R2 B1\n\n51) Trydnt: Sacrifice B1 Trydnt\nTrade R3 B3 Kermit\n\n52) ts52: Build R3 G1\n\n53) Trydnt: Sacrifice Y3 B3\nMove R1 Gonzo Ts52\nMove R1 Gonzo Ts52\nMove G3 Gonzo Ts52\n\n54) ts52: Sacrifice R3 G1\nAttack G3N Ts52\nAttack R1N Ts52\nAttack R1N Ts52\n\n55) Trydnt: Sacrifice Y3 Gonzo\nMove G2 Gonzo Ts52\nMove R1 G11 B3\nMove R1 B3 Ts52\nCatastrophe Ts52 G\nCatastrophe Ts52 R\n\n\nHomeworlds Online (SDG# 34649)\nStarted: 2018.10.16, Ended: 2019.1.7\nParticipants: RogueJedi234 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\n2) RogueJedi234: Homeworld R3 G2 B3\n\tBabamots: Good luck!\n\n3) Babamots: Build G1 Babamots\n\n4) RogueJedi234: Build B1 Roguejedi234\n\n5) Babamots: Trade G1 R1 Babamots\n\n6) RogueJedi234: Build B1 Roguejedi234\n\n7) Babamots: Build R1 Babamots\n\n8) RogueJedi234: Trade B1 Y1 Roguejedi234\n\tRogueJedi234: An... Unorthodox start, at least from this side of the table. Maybe the game has changed since I last played. I am interested to see how this plays out.\n\n9) Babamots: Build G1 Babamots\n\n10) RogueJedi234: Discover B1 Roguejedi234 G1 Vergon6\n\tBabamots: I don't really have a plan yet other than trying to put reds out of reach and maybe building a few extra mediums that you can't.\n\n11) Babamots: Build G1 Babamots\n\n12) RogueJedi234: Build B1 Vergon6\n\n13) Babamots: Trade R1 Y1 Babamots\n\n14) RogueJedi234: Trade B1 R1 Vergon6\n\n15) Babamots: Discover G1 Babamots B2 Bolarus\n\n16) RogueJedi234: Build R2 Vergon6\n\n17) Babamots: Sacrifice G3 Babamots\nBuild G2 Bolarus\nBuild G2 Bolarus\nBuild G3 Babamots\n\n18) RogueJedi234: Trade R1 Y1 Vergon6\n\n19) Babamots: Sacrifice G3 Babamots\nBuild Y2 Babamots\nBuild G3 Babamots\nBuild G3 Babamots\n\tRogueJedi234: ugh. Freaking factory.\n\n20) RogueJedi234: Discover Y1 Vergon6 G3 Omicronpersei8\n\n21) Babamots: Move Y1 Babamots Bolarus\n\n22) RogueJedi234: Build Y2 Omicronpersei8\n\n23) Babamots: Sacrifice G3 Babamots\nBuild Y2 Babamots\nBuild Y3 Bolarus\nBuild G3 Babamots\n\tBabamots: I'm out of town for my sister-in-law's wedding. If you don't mind, I'm going to pause my timer until I get back next week.\n\tRogueJedi234: Oh, yeah no problem. I was wondering what was happening.\n\n24) RogueJedi234: Discover Y2 Omicronpersei8 B2 Decapod10\n\n25) Babamots: Move Y3 Bolarus Vergon6\n\n26) RogueJedi234: Build Y3 Roguejedi234\n\n27) Babamots: Build Y3 Bolarus\n\n28) RogueJedi234: Sacrifice Y1 Roguejedi234\nMove R2 Vergon6 Decapod10\n\n29) Babamots: Move Y3 Vergon6 Decapod10\n\n30) RogueJedi234: Build Y1 Omicronpersei8\n\n31) Babamots: Sacrifice R1 Babamots\nAttack R2 Decapod10\n\n32) RogueJedi234: Sacrifice Y2 Decapod10\nMove Y1 Omicronpersei8 Bolarus\nMove Y1 Omicronpersei8 Bolarus\nCatastrophe Bolarus Yellow\n\n33) Babamots: Discover R2 Decapod10 G3 Risa\n\n34) RogueJedi234: Build B1 Roguejedi234\n\n35) Babamots: Trade G2 Y2 Bolarus\n\n36) RogueJedi234: Build B1 Vergon6\n\n37) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G3 Bolarus\nBuild R1 Risa\n\n38) RogueJedi234: Build B2 Vergon6\n\n39) Babamots: Move G3 Bolarus Vergon6\n\n40) RogueJedi234: Sacrifice B1 Roguejedi234\nTrade B1 Y1 Vergon6\n\n41) Babamots: Sacrifice R2 Risa\nAttack B2 Vergon6\nAttack Y1 Vergon6\n\tRogueJedi234: Sorry about that. Thanksgiving and such.\n\n42) RogueJedi234: Build B1 Vergon6\n\n43) Babamots: Trade B2 R2 Vergon6\n\tBabamots: I figured the holiday was to blame. It's no problem.\n\n44) RogueJedi234: Build B1 Vergon6\n\n45) Babamots: Sacrifice R2 Vergon6\nAttack B1 Vergon6\nAttack B1 Vergon6\n\n46) RogueJedi234: Build B2 Vergon6\nCatastrophe Vergon6 Blue\n\n47) Babamots: Sacrifice G2 Babamots\nBuild G2 Vergon6\nBuild Y1 Bolarus\n\tBabamots: If you get to play Andy this weekend, let me know how it goes!\n\n48) RogueJedi234: Build B1 Roguejedi234\n\n49) Babamots: Sacrifice G3 Babamots\nBuild Y1 Decapod10\nBuild Y3 Bolarus\nBuild G3 Babamots\n\n50) RogueJedi234: Trade B1 R1 Roguejedi234\n\n51) Babamots: Move Y2 Bolarus Risa\n\n52) RogueJedi234: Discover R1 Roguejedi234 B1 Neutralplanet\n\n53) Babamots: Build R2 Risa\n\n54) RogueJedi234: Build B1 Roguejedi234\n\n55) Babamots: Move R2 Risa Neutralplanet\n\n56) RogueJedi234: Build B1 Roguejedi234\n\n57) Babamots: Attack R1 Neutralplanet\n\tBabamots: Looks like neutrality doesn't alway protect folks from interstellar conflicts.\n\tDraw5PlayAll: Looks like the very act of sending a war shuttle to a planet is enough to make it no longer neutral.\n\n58) RogueJedi234: Move B1 Roguejedi234 Neutralplanet\n\tRogueJedi234: I do believe that Zapp Brannigan would have something to say about the standing of the people of the Neutral Planet\n\n59) Babamots: Sacrifice Y2 Risa\nMove R1 Risa Vergon6\nMove G2 Bolarus Neutralplanet\n\n60) RogueJedi234: Build B2 Roguejedi234\n\n61) Babamots: Sacrifice Y3 Decapod10\nMove R2 Neutralplanet Roguejedi234\nMove R1 Neutralplanet Roguejedi234\nMove G2 Neutralplanet Roguejedi234\n\n62) RogueJedi234: Trade B2 R2 Roguejedi234\nCatastrophe Roguejedi234 Red\n\n63) Babamots: Sacrifice Y2 Babamots\nMove G3 Vergon6 Roguejedi234\nMove G2 Vergon6 Roguejedi234\nCatastrophe Roguejedi234 G\n\n\tBabamots: Thanks for the game!\n\nHomeworlds Online (SDG# 34674)\nVariants: "Unrated, Hard time"\nStarted: 2018.10.28, Ended: 2019.1.17\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\tDraw5PlayAll: For the tournament\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) ts52: Build G1 Ts52\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\tts52: Have a good game!\n\n6) ts52: Trade G1 R1 Ts52\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\tDraw5PlayAll: Oh no, not this...\n\n8) ts52: Build R1 Ts52\n\n9) Draw5PlayAll: Build Y2 Draw5playall\n\n10) ts52: Build R2 Ts52\n\tDraw5PlayAll: I miss the old days when you just built up gradually and tried your best to get all four colors and control a bunch of ports and eventually out-maneuver your opponent for the win.\n\n11) Draw5PlayAll: Trade Y2 R2 Draw5playall\n\tts52: Yeah, me too.\n\n12) ts52: Trade R2 Y2 Ts52\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) ts52: Build Y2 Ts52\n\n15) Draw5PlayAll: Trade R2 B2 Draw5playall\n\n16) ts52: Build R2 Ts52\n\n17) Draw5PlayAll: Discover B2 Draw5playall G2 Money\n\n18) ts52: Discover R2 Ts52 G3 Kermit\n\n19) Draw5PlayAll: Move Y1 Draw5playall Money\n\n20) ts52: Move Y2 Ts52 Kermit\n\n21) Draw5PlayAll: Move R2 Draw5playall Money\n\n22) ts52: Build G1 Ts52\n\n23) Draw5PlayAll: Build B1 Money\n\n24) ts52: T G1 B1 Ts52\n\n25) Draw5PlayAll: Build G1 Draw5playall\n\n26) ts52: Build G1 Ts52\n\n27) Draw5PlayAll: Discover G1 Draw5playall B2 B2\n\n28) ts52: Move R2 Kermit B2\n\n29) Draw5PlayAll: Sacrifice G1 B2\nBuild G1 Draw5playall\n\tDraw5PlayAll: Darn you!\n\n30) ts52: Discover Y2 Ts52 B3 Gonzo\n\n31) Draw5PlayAll: Discover G1 Draw5playall Y2 Wolf359\n\tts52: :)\n\n32) ts52: Build Y3 Kermit\n\n33) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 Money\nBuild G1 Wolf359\n\n34) ts52: Move B1 Ts52 Kermit\n\n35) Draw5PlayAll: Move G1 Wolf359 Draw5playall\n\n36) ts52: Move Y2 Kermit B2\n\n37) Draw5PlayAll: Build G2 Draw5playall\n\n38) ts52: Move G1 Ts52 Gonzo\n\n39) Draw5PlayAll: Discover G1 Wolf359 R3 Elmo\n\n40) ts52: Build Y2 Gonzo\n\n41) Draw5PlayAll: Discover B1 Money G3 Oscar\n\n42) ts52: Build G2 Ts52\n\n43) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild B1 Money\nBuild B3 Oscar\n\n44) ts52: Move Y2 B2 Elmo\n\tDraw5PlayAll: I did not expect to hold on to the oscar system; that is why I used a Muppet name.\n\n45) Draw5PlayAll: Build G2 Draw5playall\n\tts52: Fair, I probably should've done something about that....\n\n46) ts52: Attack G1N Elmo\n\n47) Draw5PlayAll: Move Y1 Money Oscar\n\n48) ts52: Move Y2 Gonzo B2\n\n49) Draw5PlayAll: Move B3 Oscar B2\n\n50) ts52: Move R2 B2 Oscar\n\n51) Draw5PlayAll: Sacrifice Y1 Oscar\nDiscover B1 Oscar Y1 Lost\n\n52) ts52: Move R1 Ts52 Kermit\n\n53) Draw5PlayAll: Build R2 Money\n\n54) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R3 Kermit\nBuild R3 Oscar\n\n55) Draw5PlayAll: Sacrifice R2 Money\nAttack Y2 B2\nPass\n\n56) ts52: Build R2 Ts52\n\n57) Draw5PlayAll: Move B3 B2 Elmo\n\n58) ts52: Move R3 Kermit B2\n\n59) Draw5PlayAll: Attack Y2 Elmo\n\n60) ts52: Attack Y2N B2\n\n61) Draw5PlayAll: Attack G1 Elmo\n\n62) ts52: Move R2 Ts52 Kermit\n\tDraw5PlayAll: So I named it a muppet expecting that you would take it over quickly. Then you did. And then I took it back.\n\n63) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild G1 Draw5playall\n\tts52: Indeed. This has definitely been an interesting game.\n\tDraw5PlayAll: Why exactly do you always use muppets again?\n\n64) ts52: Move R2 Kermit Lost\n\tDraw5PlayAll: You have a clear advantage but I am not entirely sure how you would utilize it.\n\tts52: Endgames are definitely not my strongest.\n\n65) Draw5PlayAll: Move B1 Lost Elmo\n\tDraw5PlayAll: Stahpit\n\n66) ts52: Move G2 Ts52 Gonzo\n\n67) Draw5PlayAll: Sacrifice G1 Draw5playall\nBuild G1 Elmo\n\n68) ts52: Move Y2 Gonzo B2\n\n69) Draw5PlayAll: Move Y1 Draw5playall Money\n\n70) ts52: Move Y2 B2 Gonzo\n\tDraw5PlayAll: Nice try.\n\n71) Draw5PlayAll: Pass\n\tts52: I had to try\n\tDraw5PlayAll: I offer a draw.\n\n72) ts52: Move G2 Gonzo Lost\n\n73) Draw5PlayAll: Pass\n\tts52: What does that mean for the tournament?\n\tDraw5PlayAll: We each score 0.5 points.\n\n74) ts52: Pass\n\n75) Draw5PlayAll: Pass\n\tts52: Ok. I accept the draw.\n\tBabamots: To make it so the draw doesn't take rank points away from either of you, one of you will need to make the game "unranked." You need to send a server command here in the chat area:\r\n\r\n~variant add Unranked\r\n\r\nThe other player will need to accept that change from their home page.\r\n\r\nDraw5, since you issued the challenge, will you please enter the result in the "Game Finish Form?" Then we'll find out if my spreadsheet correctly gives tournament points for draws :-).\r\n\r\nLastly, the rules say the last player to move should resign to end the game. Since that's you ts52, will you please resign (after the game is set to Unranked)?\r\n\r\nThanks guys!\n\tDraw5PlayAll: Babamots: The variant is Unrated, not Unranked. Also, I seem to have lost the game forms.\n\n\tDraw5PlayAll: Passing so that ts52 gets informed.\n\tBabamots: Oh, "unrated"! Thanks!\r\nHere's a page with links to everything tournament related:\r\n\r\nhttps://jpeterbaker.github.io/homeworlds/tournament/links2018.html\n\tts52: Ok, I believe I've accepted the 'unranked' setting change, once I see that here, I'll resign.\n\tts52: unrated. Anyway, good game!\n\nHomeworlds Online (SDG# 34664)\nVariants: "Unrated"\nStarted: 2018.10.29, Ended: 2018.11.19\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: H Y2 R3 G3 *\n\n2) Felix: Homeworld B3 Y1 G3\n\tdlwillson: Here we go! GLHF, Felix!\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Likewise!\n\n4) Felix: Build G1 Felix\n\n5) dlwillson: D G1 Dlwillson B1 Sea\n\n6) Felix: Trade G1 B1 Felix\n\n7) dlwillson: B G1 Dlwillson\n\n8) Felix: Build B1 Felix\n\n9) dlwillson: B G1 Dlwillson\n\n10) Felix: Discover B1 Felix G2 Out\n\n11) dlwillson: B G2 Sea\n\n12) Felix: Build G2 Felix\n\n13) dlwillson: B G3 Sea\n\n14) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Out\nBuild B2 Out\n\n15) dlwillson: Trade G2 Y2 Sea\n\n16) Felix: Trade B2 Y2 Out\n\n17) dlwillson: T G3 B3 Sea\n\n18) Felix: Move B1 Out Sea\n\n19) dlwillson: S Y2 Sea\nD G1 Dlwillson Y1 Sol\nD B3 Sea Y2 Asol\n\n20) Felix: Sacrifice G2 Felix\nBuild Y1 Out\nBuild Y3 Out\n\n21) dlwillson: T G1 R1 Sea\n\n22) Felix: Move Y2 Out Sea\n\n23) dlwillson: M B3 Asol Felix\n\n24) Felix: Move Y3 Out Felix\n\n25) dlwillson: T B3 R3 Felix\n\tFelix: Wow, rookie mistake!\n\n26) Felix: Trade B2 R2 Out\n\n27) dlwillson: M R3 Felix Out\n\n28) Felix: Sacrifice Y1 Out\nMove R2 Out Sea\n\tdlwillson: Nice recovery!\n\n29) dlwillson: B G1 Sol\n\tFelix: Thanks! I was pretty nervous there\n\n30) Felix: A R1 Sea\n\n31) dlwillson: D G1 Sol B2 Sky\n\n32) Felix: S G3 Felix\nB Y1 Sea\nB Y2 Sea\nB Y3 Felix\n\n33) dlwillson: S G3 Dlwillson\nB G2 Sky\nB G2 Sol\nB G3 Dlwillson\n\n34) Felix: Trade B1 R1 Sea\n\n35) dlwillson: S G3 Dlwillson\nB G3 Sol\nB G3 Sky\nB G3 Dlwillson\n\n36) Felix: Sacrifice Y3 Felix\nMove Y1 Sea Dlwillson\nMove Y2 Sea Dlwillson\nMove Y2 Sea Dlwillson\nCatastrophe Dlwillson Yellow\n\n\tFelix: Good game! Starting without blue is a harsh handicap, but I feel you played well despite it. Maybe we should try a game where we both start without blue and see how that goes?\n\tdlwillson: Oh! Nice! I didn't even see it!\n\tdlwillson: Good game! Again?\n\tFelix: Always up for a game! \n\nHomeworlds Online (SDG# 34438)\nStarted: 2018.11.1, Ended: 2018.11.4\nParticipants: MobyNostromo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n\nHomeworlds Online (SDG# 34450)\nVariants: "Hard time"\nStarted: 2018.11.1, Ended: 2018.11.4\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34550)\nStarted: 2018.11.1, Ended: 2018.11.29\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld B1 R2 G3\n\n2) Trydnt: Homeworld G3 Y3 B3 *\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build B1 Trydnt\n\tts52: Interesting!\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Trydnt: Build B1 Trydnt\n\n7) ts52: Build Y1 Ts52\n\n8) Trydnt: Discover B1 Trydnt G1 G1\n\n9) ts52: Build Y1 Ts52\n\n10) Trydnt: Build B2 G1\n\n11) ts52: Discover Y1 Ts52 G3 Kermit\n\n12) Trydnt: Trade B2 Y2 G1\n\n13) ts52: Build Y2 Ts52\n\n14) Trydnt: Build B2 Trydnt\n\n15) ts52: Trade Y2 B2 Ts52\n\n16) Trydnt: Trade B2 R2 Trydnt\n\n17) ts52: Trade Y1 R1 Ts52\n\n18) Trydnt: Build B2 G1\n\n19) ts52: Move B2 Ts52 Kermit\n\n20) Trydnt: Build R1 Trydnt\n\n21) ts52: Build G1 Ts52\n\n22) Trydnt: Sacrifice Y2 G1\nMove R1 Trydnt Ts52\nMove R2 Trydnt Ts52\nCatastrophe Ts52 R\n\n23) ts52: M B2 Kermit G1\n\n24) Trydnt: Trade B2 R2 G1\n\n25) ts52: Trade G3 R3 Ts52\n\n26) Trydnt: Attack B2 G1\n\n27) ts52: Build Y1 Kermit\n\n28) Trydnt: Trade B2 Y2 G1\n\n29) ts52: Build Y2 Ts52\n\n30) Trydnt: Build B2 Trydnt\n\n31) ts52: Trade Y2 B2 Ts52\n\n32) Trydnt: Sacrifice Y2 G1\nMove B1 Trydnt Ts52\nMove B2 Trydnt Ts52\nCatastrophe Ts52 B\n\tts52: D'oh! Should've seen that coming. Good game!\n\tTrydnt: Good game. I've been playing a lot of miniverse games recently and finding a lot of new stuff. Very fun to find a whole new game in the game\n\n\nHomeworlds Online (SDG# 34601)\nVariants: "Hard time"\nStarted: 2018.11.1, Ended: 2018.11.4\nParticipants: Xx_Henry_xX (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y2 G3 *\n\n\tDraw5PlayAll: !\n\nHomeworlds Online (SDG# 34678)\nStarted: 2018.11.1, Ended: 2019.1.10\nParticipants: dragon76n (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y3 G3\n\n2) dragon76n: H Y1 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) dragon76n: Build G1 Dragon76n\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) dragon76n: Trade G1 Y1 Dragon76n\n\n7) Trydnt: Build Y2 Trydnt\n\n8) dragon76n: Build Y2 Dragon76n\n\n9) Trydnt: Build G1 Trydnt\n\n10) dragon76n: Trade Y1 B1 Dragon76n\n\n11) Trydnt: Discover Y1 Trydnt G1 G1\n\n12) dragon76n: Build G1 Dragon76n\n\n13) Trydnt: Build Y1 G1\n\n14) dragon76n: Discover G1 Dragon76n B3 Bluthr\n\n15) Trydnt: Build Y2 Trydnt\n\n16) dragon76n: Move Y2 Dragon76n Bluthr\n\n17) Trydnt: Sacrifice Y1 G1\nDiscover Y2 Trydnt R1 R1\n\n18) dragon76n: Build G2 Bluthr\n\n19) Trydnt: Trade G1 R1 Trydnt\n\n20) dragon76n: Trade G2 R2 Bluthr\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild Y1 R1\nBuild Y3 G1\nBuild Y3 Trydnt\n\n22) dragon76n: Build G1 Dragon76n\n\n23) Trydnt: Move Y3 G1 Bluthr\n\n24) dragon76n: Move R2 Bluthr G1\n\n25) Trydnt: Discover Y1 G1 G3 G3\n\n26) dragon76n: Move Y2 Bluthr G1\n\n27) Trydnt: Sacrifice Y2 Trydnt\nMove Y3 Bluthr G1\nDiscover Y1 R1 B3 B3\n\n28) dragon76n: Move R2 G1 G3\n\n29) Trydnt: Sacrifice Y1 G3\nMove Y3 G1 G3\n\n30) dragon76n: Sacrifice Y2 G1\nMove R2 G3 R1\nMove R2 R1 B3\n\n31) Trydnt: Discover Y1 B3 G2 G2\n\n32) dragon76n: Build G1 Bluthr\n\n33) Trydnt: Trade Y3 G3 Trydnt\n\n34) dragon76n: Trade G1 R1 Dragon76n\n\n35) Trydnt: Build R2 Trydnt\n\n36) dragon76n: Trade G1 Y1 Bluthr\n\n37) Trydnt: Move Y2 R1 Bluthr\n\n38) dragon76n: Sacrifice Y1 Bluthr\nDiscover G1 Bluthr Y1 Yelone\n\n39) Trydnt: Build Y2 G2\n\n40) dragon76n: M G1 Yelone B3\n\n41) Trydnt: Build Y1 G2\n\n42) dragon76n: Build G1 Dragon76n\n\n43) Trydnt: Build Y2 G3\n\n44) dragon76n: Build R1 B3\n\n45) Trydnt: Build Y3 G3\n\n46) dragon76n: Trade R1 B1 B3\n\n47) Trydnt: Sacrifice Y2 G3\nMove Y3 G3 G2\nMove Y3 G2 B3\n\n48) dragon76n: Sacrifice B1 B3\nTrade R2 B2 B3\n\n49) Trydnt: Sacrifice R2 Trydnt\nAttack B2 B3\nAttack G1 B3\n\n50) dragon76n: Discover G1 Dragon76n R3 Redthr\n\n51) Trydnt: Build Y2 G3\n\n52) dragon76n: M B1 Dragon76n Redthr\n\n53) Trydnt: Build B1 B3\n\tdragon76n: Hi Trydnt, sorry about being away for such a long time... quite busy with the holidays recently. I'll try to remember to check in regularly again. \n\n54) dragon76n: B G1 Dragon76n\n\n55) Trydnt: Build G2 B3\n\n56) dragon76n: S G3 Dragon76n\nB G2 Redthr\nB G3 Dragon76n\nB B1 Redthr\n\n57) Trydnt: Move B2 B3 G2\n\n58) dragon76n: T B1 R1 Redthr\n\n59) Trydnt: Sacrifice Y3 G3\nMove G1 B3 Dragon76n\nMove G2 B3 Dragon76n\nMove Y3 B3 Dragon76n\nCatastrophe Dragon76n G\n\n60) dragon76n: Sacrifice G2 Redthr\nBuild R2 Dragon76n\nBuild R2 Dragon76n\n\n61) Trydnt: Trade Y3 R3 Dragon76n\nCatastrophe Dragon76n R\n\n\nHomeworlds Online (SDG# 34580)\nVariants: "Hard time"\nStarted: 2018.11.2, Ended: 2018.11.13\nParticipants: Trydnt (S), ajo (N)\nWinner: Trydnt\n\n1) ajo: Homeworld B3 Y1 G3\n\n2) Trydnt: Homeworld B2 R3 G3\n\n3) ajo: Build G1 Ajo\n\tajo: This is for the tournament, btw. Good luck!\n\n4) Trydnt: Build G1 Trydnt\n\tTrydnt: Good luck to you too!\n\n5) ajo: Discover G1 Ajo B2 Alpha\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) ajo: Build G1 Ajo\n\n8) Trydnt: Build Y1 Trydnt\n\n9) ajo: Trade G3 Y3 Ajo\n\n10) Trydnt: Build Y2 Trydnt\n\n11) ajo: Build Y2 Ajo\n\n12) Trydnt: Discover Y1 Trydnt G1 G1\n\n13) ajo: Move Y2 Ajo Alpha\n\n14) Trydnt: Discover Y2 Trydnt B1 B1\n\n15) ajo: Build G2 Ajo\n\n16) Trydnt: Build G2 Trydnt\n\n17) ajo: Trade Y3 R3 Ajo\n\n18) Trydnt: Trade G2 R2 Trydnt\n\n19) ajo: Build G2 Alpha\n\n20) Trydnt: Move Y2 B1 Alpha\n\n21) ajo: Sacrifice G2 Ajo\nBuild Y2 Alpha\nBuild Y3 Alpha\nCatastrophe Alpha Yellow\n\n22) Trydnt: Build Y2 G1\n\n23) ajo: Build R1 Ajo\n\n24) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Trydnt\nBuild Y2 G1\nBuild Y3 Trydnt\n\n25) ajo: Build G2 Alpha\n\n26) Trydnt: Trade Y3 G3 Trydnt\n\n27) ajo: Build G2 Ajo\n\n28) Trydnt: Build G3 Trydnt\n\n29) ajo: Build G3 Ajo\n\n30) Trydnt: Discover Y2 G1 B3 B3\n\n31) ajo: Trade G3 Y3 Ajo\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild Y3 B3\nBuild Y3 G1\nBuild G3 Trydnt\n\n33) ajo: Move Y3 Ajo Alpha\n\n34) Trydnt: Discover Y2 G1 B2 B2\n\n35) ajo: Build G3 Ajo\n\n36) Trydnt: Move R2 Trydnt G1\n\n37) ajo: Move G3 Ajo B2\n\n38) Trydnt: Discover Y2 B2 B3 B33\n\n39) ajo: Trade G2 R2 Alpha\n\n40) Trydnt: Discover Y3 B3 G2 G2\n\n41) ajo: Move R1 Ajo B2\n\n42) Trydnt: Trade Y1 B1 Trydnt\n\n43) ajo: Sacrifice G2 Alpha\nBuild Y1 Alpha\nBuild G2 B2\n\n44) Trydnt: Move B1 Trydnt G1\n\n45) ajo: Discover G1 Alpha B1 Beta\n\n46) Trydnt: Build B1 G1\n\n47) ajo: Sacrifice Y3 Alpha\nMove G2 B2 Beta\nMove G3 B2 Beta\nMove G1 Beta Trydnt\n\n48) Trydnt: Sacrifice G3 Trydnt\nBuild Y3 Trydnt\nBuild R1 G1\nPass\n\n49) ajo: Sacrifice G3 Beta\nBuild R1 B2\nBuild R2 Ajo\nBuild R3 Alpha\n\n50) Trydnt: Move G3 Trydnt Beta\n\n51) ajo: Trade R3 G3 Alpha\n\n52) Trydnt: Discover Y3 G2 R3 R3\n\n53) ajo: Build G2 Alpha\n\n54) Trydnt: Sacrifice R2 G1\nAttack G1 Trydnt\nAttack G2 Beta\n\n55) ajo: Sacrifice G3 Alpha\nBuild R2 Alpha\nBuild G3 Alpha\nBuild G3 Ajo\n\n56) Trydnt: Sacrifice Y2 B33\nMove G2 Beta B2\nMove G2 B2 Ajo\nCatastrophe Ajo G\n\n57) ajo: Build Y2 Alpha\n\n58) Trydnt: Build B3 G1\n\n59) ajo: Sacrifice Y1 Alpha\nDiscover G3 Alpha Y1 Gamma\n\n60) Trydnt: Discover B3 G1 G2 G2\n\n61) ajo: Move R2 Alpha Gamma\n\n62) Trydnt: Build G1 Trydnt\n\n63) ajo: Trade R3 G3 Ajo\n\n64) Trydnt: Build R3 G1\n\n65) ajo: Move R2 Alpha Gamma\n\n66) Trydnt: Build G2 Beta\n\n67) ajo: Sacrifice R1 B2\nPass\n\tajo: I think I'm in trouble...\n\n68) Trydnt: Discover Y2 B3 R1 R1\n\n69) ajo: Discover Y2 Alpha B3 Delta\n\n70) Trydnt: Move R3 G1 B2\n\n\tajo: I think I've lost. Good game!\n\tTrydnt: well played\n\nHomeworlds Online (SDG# 34690)\nVariants: "Hard time"\nStarted: 2018.11.2, Ended: 2018.12.16\nParticipants: dlwillson (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) dlwillson: H B3 Y1 G3\n\n3) Draw5PlayAll: Homeworld B2 R1 G3\n\n4) dlwillson: B G1 Dlwillson\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) dlwillson: Trade G1 R1 Dlwillson\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) dlwillson: B R1 Dlwillson\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) dlwillson: B R2 Dlwillson\n\n11) Draw5PlayAll: Build Y2 Draw5playall\n\n12) dlwillson: D R1 Dlwillson B2 Sea\n\n13) Draw5PlayAll: Discover Y1 Draw5playall G3 Different\n\n14) dlwillson: D R2 Dlwillson Y2 Sol\n\n15) Draw5PlayAll: Discover Y1 Draw5playall B3 Democrat\n\n16) dlwillson: B G1 Dlwillson\n\n17) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Democrat\nBuild Y3 Democrat\nBuild Y3 Draw5playall\n\n18) dlwillson: S G3 Dlwillson\nB R2 Sol\nB R2 Sea\nB R3 Sea\n\tDraw5PlayAll: You are frozen out of yellow\n\n19) Draw5PlayAll: Build Y3 Different\n\n20) dlwillson: B R3 Dlwillson\n\n21) Draw5PlayAll: Trade Y3 R3 Democrat\n\n22) dlwillson: T R3 Y3 Sea\n\n23) Draw5PlayAll: Trade Y1 G1 Democrat\n\n24) dlwillson: T R1 Y1 Dlwillson\n\n25) Draw5PlayAll: Build G1 Democrat\n\n26) dlwillson: D Y1 Dlwillson G2 Field\n\n27) Draw5PlayAll: Build G2 Democrat\n\n28) dlwillson: T R2 G2 Sea\n\n29) Draw5PlayAll: Discover G1 Democrat B1 Tmp\n\n30) dlwillson: B G3 Dlwillson\n\n31) Draw5PlayAll: Build G3 Tmp\n\n32) dlwillson: Move R2 Sol Different\n\n33) Draw5PlayAll: Move Y1 Different Tmp\n\n34) dlwillson: Sacrifice G3 Dlwillson\nBuild R1 Sea\nBuild R2 Sea\nBuild R3 Sol\n\n35) Draw5PlayAll: Trade G1 B1 Tmp\n\n36) dlwillson: T R2 B2 Sea\n\n37) Draw5PlayAll: Build R2 Democrat\n\n38) dlwillson: D B2 Sea B3 Sky\n\tDraw5PlayAll: Thanks! I needed that!\n\n39) Draw5PlayAll: Sacrifice R2 Democrat\nAttack R2 Different\nPass\n\tdlwillson: ;-)\n\n40) dlwillson: D Y3 Sea G3 Forest\n\tDraw5PlayAll: Red teleportation\n\tdlwillson: Well, shucks. I made a careless mistake! I meant to discover the g3, not the b3. Blah.\n\n41) Draw5PlayAll: Build R2 Different\n\tDraw5PlayAll: And named it a blue name?! I mean you are still much better.\n\tDraw5PlayAll: So do I build the R2, build the G1, or send a green back home?\n\n42) dlwillson: M Y1 Field Sky\n\n43) Draw5PlayAll: Move G2 Democrat Draw5playall\n\tdlwillson: You have every advantage!\n\twil: Dibs on winner\n\n44) dlwillson: Move R3 Sol Sky\n\tDraw5PlayAll: I just want to, you know, be able to build more greens.\n\n45) Draw5PlayAll: Move G3 Tmp Sea\n\tdlwillson: Yes. Well. That's very important, you know. Building greens.\n\n46) dlwillson: T R1 G1 Sea\n\n47) Draw5PlayAll: Sacrifice G3 Sea\nBuild G2 Draw5playall\nBuild G3 Democrat\nBuild R1 Democrat\n\n48) dlwillson: S Y3 Forest\nM R2 Sol Tmp\nD G1 Sea Y3 Sol\nD G2 Sea G3 Forest\n\n49) Draw5PlayAll: Sacrifice Y1 Tmp\nMove B1 Tmp Different\n\n50) dlwillson: S G2 Forest\nB G2 Dlwillson\nB G3 Sol\n\tDraw5PlayAll: I foiled one of your plans.\n\n51) Draw5PlayAll: Sacrifice G3 Democrat\nBuild G3 Democrat\nBuild Y1 Democrat\nBuild Y2 Different\n\n52) dlwillson: M G1 Sol Sea\n\n53) Draw5PlayAll: Move G3 Democrat Tmp\n\n54) dlwillson: S G3 Sol\nB Y3 Sky\nB G3 Sea\nPass\n\n55) Draw5PlayAll: Sacrifice R1 Democrat\nAttack R2 Tmp\n\n56) dlwillson: M Y3 Sky Draw5playall\n\tDraw5PlayAll: I really want to win this, but at the same time, I want to wait until wil gets distracted with another challenge.\n\n57) Draw5PlayAll: Attack Y3 Draw5playall\n\tdlwillson: I'm sure this doesn't work outout for me, but maybe I can do some damage on my way out.\n\twil: Yea,.trydnt already did.that\n\n58) dlwillson: M Y1 Sky Draw5playall\nC Draw5playall Y\n\tDraw5PlayAll: You would have no movement. Oh well, you already committed.\n\n59) Draw5PlayAll: Move Y3 Different Draw5playall\n\n60) dlwillson: T G2 Y2 Dlwillson\n\tdlwillson: True, but I still don't see a better move for me.\n\n61) Draw5PlayAll: Sacrifice G3 Tmp\nBuild Y1 Democrat\nBuild Y3 Different\nBuild Y3 Draw5playall\n\n62) dlwillson: T R3 G3 Sky\n\n63) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild R1 Democrat\nBuild R3 Tmp\n\n64) dlwillson: S G3 Sea\nB G2 Dlwillson\nB G2 Sky\nB G3 Sea\n\n65) Draw5PlayAll: Build B1 Different\n\n66) dlwillson: M Y2 Dlwillson Sea\n\n67) Draw5PlayAll: Move Y1 Democrat Tmp\n\n68) dlwillson: M G1 Sea Different\n\tDraw5PlayAll: You have enough to prevent me from having an easy win, and nothing more.\n\tdlwillson: LOL! I know!\n\n69) Draw5PlayAll: Sacrifice Y2 Different\nDiscover Y3 Different Y2 Safety\nMove R3 Tmp Safety\n\n70) dlwillson: M G3 Sea Different\n\n71) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove Y3 Safety Dlwillson\nMove R3 Safety Dlwillson\nMove G2 Draw5playall Different\nCatastrophe Different Green\n\tDraw5PlayAll: Realize who you are trying to annoy...\n\n\tDraw5PlayAll: First on the ladder... maybe...?\n\tdlwillson: Yup, good game! Well played!\n\tDraw5PlayAll: And the VERY NEXT TIME I LOG IN, Felix challenges me.\n\tdlwillson: Hehehe... Now, I wonder who suggested that... Hm... :-D\n\nHomeworlds Online (SDG# 34694)\nVariants: "Hard time"\nStarted: 2018.11.5, Ended: 2018.11.15\nParticipants: wil (S), Felix (N)\nWinner: wil\n\n1) Felix: Homeworld Y1 B3 G3\n\n2) wil: H Y2 B1 G3\n\tFelix: Howdy. Good luck and have fun as always!\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 Y1 Felix\n\n6) wil: T G1 Y1 Wil\n\n7) Felix: Build Y2 Felix\n\n8) wil: B Y2 Wil\n\n9) Felix: Discover Y1 Felix G2 Grass\n\n10) wil: D Y1 Wil G3 G3\n\n11) Felix: Build Y3 Grass\n\n12) wil: B Y3 G3\n\n13) Felix: Discover Y1 Grass G1 Blade\n\twil: Love how different games can be\n\tFelix: :)\n\n14) wil: T Y2 R2 Wil\n\n15) Felix: Trade Y2 R2 Felix\n\n16) wil: M Y1 G3 Grass\n\n17) Felix: Build Y2 Blade\n\n18) wil: B G1 Wil\n\n19) Felix: Move Y1 Blade G3\n\n20) wil: D Y3 G3 G2 G2\n\n21) Felix: Build Y2 G3\n\n22) wil: B Y3 Grass\n\twil: Nice\n\n23) Felix: Sacrifice R2 Felix\nAttack Y1 Grass\nAttack Y3 Grass\n\n24) wil: M Y3 G2 Felix\n\n25) Felix: Sacrifice Y3 Grass\nMove Y1 Grass Felix\nMove Y3 Grass Felix\nCatastrophe Felix Yellow\nMove Y2 Blade Felix\n\twil: I have to play them out, can't see ahead.\n\n26) wil: M G3 Wil Felix\n\n27) Felix: B G1 Felix\n\tFelix: I don't know what I was thinking. There's no way this ends well for me!\n\n28) wil: S R2 Wil\nA G3 Felix\nA Y2 Felix\n\twil: Idont have a set of pyrmidsto play it out\n\n29) Felix: B G1 Felix\n\n30) wil: T G3 R3 Felix\n\n31) Felix: Sacrifice Y1 G3\nMove G1 Felix Wil\n\n32) wil: S R3 Felix\nP\nP\nA G1 Felix\n\twil: Interesting game\n\twil: I should've catastrophed\n\n\tFelix: Indeed. I figured it would go this way, but I was curious too :)\n\nHomeworlds Online (SDG# 34700)\nVariants: "Hard time"\nStarted: 2018.11.8, Ended: 2019.1.24\nParticipants: deanthebean (S), Babamots (N)\nWinner: deanthebean\n\n1) Babamots: Homeworld B2 R1 G3\n\n2) deanthebean: Homeworld B1 R3 G3\n\tBabamots: We meet again! Good luck!\n\tdeanthebean: Thank you for accepting the challenge. Enjoy the rematch!\n\n3) Babamots: Build G1 Babamots\n\n4) deanthebean: Build G1 Deanthebean\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) deanthebean: Trade G1 Y1 Deanthebean\n\n7) Babamots: Build G1 Babamots\n\n8) deanthebean: Build G1 Deanthebean\n\n9) Babamots: Trade G1 R1 Babamots\n\n10) deanthebean: Trade G1 B1 Deanthebean\n\n11) Babamots: Build R1 Babamots\n\n12) deanthebean: Build G1 Deanthebean\n\n13) Babamots: Discover R1 Babamots Y3 Iconia\n\n14) deanthebean: Build G1 Deanthebean\n\n15) Babamots: Build R2 Babamots\n\n16) deanthebean: Trade G3 R3 Deanthebean\n\n17) Babamots: Trade R2 Y2 Babamots\n\n18) deanthebean: Discover G1 Deanthebean B2 Gc\n\n19) Babamots: Move R1 Iconia Gc\n\n20) deanthebean: Build B1 Deanthebean\n\n21) Babamots: Attack G1 Gc\n\n22) deanthebean: Discover B1 Deanthebean B2 Avverso\n\n23) Babamots: Trade G3 B3 Babamots\n\n24) deanthebean: Build B3 Deanthebean\n\n25) Babamots: Sacrifice G1 Gc\nBuild B3 Babamots\n\n26) deanthebean: Trade B3 G3 Deanthebean\n\n27) Babamots: Discover Y1 Babamots B3 Bolarus\n\n28) deanthebean: Move R3 Deanthebean Gc\n\n29) Babamots: Discover B3 Babamots G3 Risa\n\n30) deanthebean: Attack R1 Gc\n\n31) Babamots: Trade Y2 G2 Babamots\n\n32) deanthebean: Trade R3 Y3 Gc\n\n33) Babamots: Build G1 Babamots\n\n34) deanthebean: Discover R1 Gc G3 Bol\n\n35) Babamots: Trade G2 Y2 Babamots\n\n36) deanthebean: Build R2 Bol\n\n37) Babamots: Move R1 Babamots Risa\n\n38) deanthebean: Build R2 Bol\n\n39) Babamots: Build R2 Risa\n\n40) deanthebean: Move Y3 Gc Bol\n\n41) Babamots: Build R3 Risa\n\n42) deanthebean: Discover R2 Bol B2 Unlur\n\n43) Babamots: Trade R2 Y2 Risa\n\n44) deanthebean: Trade R2 Y2 Unlur\n\n45) Babamots: Trade R3 Y3 Risa\n\n46) deanthebean: Build R2 Bol\n\n47) Babamots: Sacrifice Y2 Risa\nMove R1 Risa Unlur\nMove R1 Unlur Bol\nCatastrophe Bol R\n\n48) deanthebean: Sacrifice G3 Deanthebean\nBuild Y1 Unlur\nBuild Y2 Bol\nBuild Y3 Deanthebean\n\n49) Babamots: Trade Y1 G1 Bolarus\n\n50) deanthebean: Trade Y3 G3 Deanthebean\n\n51) Babamots: Sacrifice G1 Bolarus\nBuild B3 Risa\n\n52) deanthebean: Trade Y2 R2 Unlur\n\n53) Babamots: Trade Y2 R2 Babamots\n\n54) deanthebean: Build Y1 Deanthebean\n\n55) Babamots: Move B3 Risa Unlur\n\n56) deanthebean: Move R2 Unlur Bol\n\n57) Babamots: Build Y2 Risa\n\n58) deanthebean: Build R1 Bol\n\n59) Babamots: Move Y3 Risa Avverso\n\n60) deanthebean: Sacrifice Y3 Bol\nMove B1 Avverso Bol\nMove R1 Bol Babamots\nMove R2 Bol Babamots\nCatastrophe Babamots Red\n\n61) Babamots: Trade B3 R3 Babamots\n\n62) deanthebean: Build B3 Bol\n\tdeanthebean: build b3 BoL\n\n63) Babamots: Sacrifice Y2 Risa\nMove B3 Unlur Deanthebean\nMove Y3 Avverso Deanthebean\n\n64) deanthebean: Move B1 Deanthebean Babamots\n\n65) Babamots: Sacrifice R3 Babamots\nAttack G3 Deanthebean\nAttack G1 Deanthebean\nAttack Y1 Deanthebean\n\n66) deanthebean: Sacrifice Y2 Bol\nMove B3 Bol Babamots\nMove B1 Bol Babamots\nCatastrophe Babamots Blue\n\tBabamots: GG! Good luck on the rest of your way to the top!\n\tDraw5PlayAll: What in the world...\n\tdeanthebean: Thanks for a good game!\r\n\n\n\nHomeworlds Online (SDG# 34705)\nVariants: "Hard time"\nStarted: 2018.11.9, Ended: 2018.12.11\nParticipants: Felix (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R2 B1 G3\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) Babamots: Build G1 Babamots\n\tFelix: I'm gonna try to make this work again, even though I usually fail at this opening. Your ego may indeed be soothed ;)\n\n4) Felix: Build B1 Felix\n\n5) Babamots: Trade G3 B3 Babamots\n\n6) Felix: Trade B3 Y3 Felix\n\n7) Babamots: Build B2 Babamots\n\n8) Felix: Build B2 Felix\n\n9) Babamots: Trade B2 Y2 Babamots\n\n10) Felix: Discover B2 Felix G2 Out\n\n11) Babamots: Build B2 Babamots\n\n12) Felix: Build B2 Felix\n\n13) Babamots: Discover B2 Babamots G3 Ferenginar\n\n14) Felix: Trade B1 R1 Felix\n\n15) Babamots: Trade B2 R2 Ferenginar\n\tBabamots: I'm still careless and rusty. It's possible you didn't see or didn't like your early catastrophe opportunity back there, but I didn't notice until after you passed it up.\n\n16) Felix: Build B1 Out\n\n17) Babamots: Move B3 Babamots Ferenginar\n\tFelix: Yeah, I saw that, but I didn't like where it would have left me if I took the opportunity. And I miss things like that too sometimes. It's part of the difficulty of playing such spaced out moves instead of realtime. I often have to stare at the game for quite some time before each move to remember where all the threats are, and if I'm in a hurry, I make mistakes\n\n18) Felix: Trade B2 Y2 Felix\n\n19) Babamots: Build B2 Ferenginar\n\n20) Felix: Sacrifice Y2 Felix\nMove B1 Out Ferenginar\nMove B2 Out Ferenginar\nCatastrophe Ferenginar Blue\n\n21) Babamots: Build Y1 Babamots\n\n22) Felix: Build Y1 Felix\n\n23) Babamots: Trade Y1 B1 Babamots\n\n24) Felix: Build R1 Felix\n\n25) Babamots: Build B2 Babamots\n\n26) Felix: Discover R1 Felix G2 Opus\n\n27) Babamots: Move B2 Babamots Ferenginar\n\n28) Felix: Build R1 Opus\n\n29) Babamots: Build B2 Ferenginar\n\n30) Felix: Move Y1 Felix Opus\n\n31) Babamots: Build B2 Ferenginar\n\n32) Felix: B Y1 Felix\n\n33) Babamots: Build B3 Babamots\n\n34) Felix: Trade Y3 B3 Felix\n\n35) Babamots: Trade B2 Y2 Ferenginar\n\tBabamots: Now, I don't want to see you pulling any punches just because my confidence has been slacking. Especially since I haven't been concentrating on this game very hard, I'm surprised to have come back so well.\n\n36) Felix: Build Y1 Opus\n\tFelix: No punches pulled. I honestly just couldn't see a good way to make good on my advantage without leaving myself in a worse position. I should have tried harder to get a large ship into your system, but it wasn't easy. nice recovery!\n\n37) Babamots: Move B2 Ferenginar Opus\n\n38) Felix: Build R2 Felix\n\n39) Babamots: Build R3 Ferenginar\n\n40) Felix: Discover R1 Opus R3 Bazoik\n\n41) Babamots: Sacrifice R3 Ferenginar\nAttack R1 Opus\nAttack Y1 Opus\nAttack Y1 Opus\n\n42) Felix: M B3 Felix Opus\n\n43) Babamots: Discover B3 Babamots Y3 Iconia\n\n44) Felix: Trade R2 B2 Felix\n\tBabamots: Sorry for the delay. It feels like a ticklish situation and I need to sit down and study it properly. I should have time tonight.\n\n45) Babamots: Build B3 Opus\n\n46) Felix: Sacrifice R1 Bazoik\nAttack B3 Opus\n\tFelix: No worries. I'm never in a rush, so take as long as you need!\r\n\r\nAlso, this is probably the dumbest defense ever, but I'm really curious to try it.\n\n47) Babamots: Sacrifice B1 Babamots\nTrade Y1 B1 Opus\nCatastrophe Opus B\n\tBabamots: I think it's a good defense of your home under the circumstances, but I don't think it deals with the Opus Crisis satisfactorily.\n\tBabamots: On my previous move, rather than advancing my b3, I wanted to build a b2 in opus just to see what would happen, but I figured it was safer to put you on the defensive for a move.\n\n48) Felix: Build R1 Felix\n\tFelix: Yeah I think I screwed the pooch on this one!\n\n49) Babamots: Trade B3 G3 Iconia\n\n50) Felix: Trade R1 G1 Felix\n\n51) Babamots: Build B1 Ferenginar\n\n52) Felix: Build Y1 Felix\n\n53) Babamots: Sacrifice Y2 Ferenginar\nMove G3 Iconia Opus\nMove G3 Opus Felix\n\n54) Felix: Trade B2 G2 Felix\nCatastrophe Felix Green\n\n55) Babamots: Sacrifice Y1 Opus\nMove B2 Ferenginar Felix\n\n\tBabamots: I think this way gives you less room for annoying prolongation.\n\tFelix: I think you're right. No sense in prolonging it. Well played! I made some major mistakes in not capitalizing when I had you against the wall. Nice recovery and good game!\n\tBabamots: I'm pretty surprised that swung my way. GG!\n\nHomeworlds Online (SDG# 34708)\nVariants: "Hard time"\nStarted: 2018.11.11, Ended: 2018.11.20\nParticipants: mneme (S), Laurie_Menke (N)\nWinner: mneme\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Hi mneme! Good luck on the 2018 Homeworlds Tournament! (Don't forget to send the start form!) :)\n\n2) mneme: Homeworld R1 G3 B3\n\tmneme: I did -- and you too!\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: :)\n\n4) mneme: Build B1 Mneme\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) mneme: Build B1 Mneme\n\n\tmneme: ug. What happened? I'm willing to do a rematch if you're game; I hate to win this way!\n\tLaurie_Menke: Ugh. I'm so sorry, mneme! I've been on the road and got behind. :( If you'd like (and if babamots is willing), we could run another game and do it the same way to this point and just keep going. On the other hand, we both know you were going to win. ;) Your choice. Please forgive my boo-boo!\n\tBabamots: I think a rematch should be OK. If either of you wants to replay this game exactly like it was up to this point, I think you've got the right to request that. Otherwise, you can just start a totally new game. What do you prefer?\n\tLaurie_Menke: I'm willing to do any of the following: (1) run this exact game again, (2) start a new game, (3) concede to the clear winner. Mneme... what would make the best of this situation for you? (And thanks for the options, Babamots!)\n\tmneme: Lets go with just replaying it to this point and going from there. While my freeze has some clear advantages from here, I think there's still play in it.\n\nHomeworlds Online (SDG# 34711)\nVariants: "Hard time"\nStarted: 2018.11.11, Ended: 2018.12.4\nParticipants: Draw5PlayAll (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\n2) Draw5PlayAll: Homeworld B3 R2 G3\n\n3) mneme: Build G1 Mneme\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) mneme: Trade G1 R1 Mneme\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) mneme: Build R2 Mneme\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n11) mneme: Build R1 Mneme\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\tmneme: Hell, we forgot to comment. This IS the Great Tournament game, right?\r\n\n\tDraw5PlayAll: Why ee ehs.\n\n13) mneme: Discover R1 Mneme B3 Melpomene\n\n14) Draw5PlayAll: Discover R2 Draw5playall G1 Gone\n\tmneme: eyeway otgay ouyay.\n\tDraw5PlayAll: "I got you"?\n\n15) mneme: Build R3 Mneme\n\n16) Draw5PlayAll: Build R3 Gone\n\n17) mneme: Build G1 Mneme\n\n18) Draw5PlayAll: Build G1 Draw5playall\n\tmneme: exactly.\n\n19) mneme: Sacrifice G1 Mneme\nBuild R3 Melpomene\n\n20) Draw5PlayAll: Build Y1 Draw5playall\n\n21) mneme: Discover R1 Mneme Y3 Terpsicore\n\n22) Draw5PlayAll: Trade G1 B1 Draw5playall\n\tDraw5PlayAll: Terpsicore?!?\n\n23) mneme: Sacrifice Y2 Mneme\nMove R1 Terpsicore Gone\nMove R1 Melpomene Gone\nCatastrophe Gone R\n\n24) Draw5PlayAll: Build Y1 Draw5playall\n\tmneme: yeah. All my planet names are muses.\n\tDraw5PlayAll: Muses?\n\n25) mneme: Trade R3 Y3 Mneme\n\n26) Draw5PlayAll: Discover Y1 Draw5playall G1 Iloseagain\n\n27) mneme: Build Y2 Mneme\n\n28) Draw5PlayAll: Discover Y1 Draw5playall B1 You'llwin\n\n29) mneme: Build G1 Mneme\n\n30) Draw5PlayAll: Build G1 Draw5playall\n\n31) mneme: Build G2 Mneme\n\n32) Draw5PlayAll: Build Y2 Iloseagain\n\n33) mneme: Sacrifice Y2 Mneme\nMove R3 Melpomene Iloseagain\nDiscover G2 Mneme Y3 Caliope\n\n34) Draw5PlayAll: Sacrifice Y1 Iloseagain\nDiscover Y2 Iloseagain G2 Outrunyou\n\n35) mneme: Sacrifice G3 Mneme\nBuild G2 Mneme\nBuild G3 Caliope\nBuild G3 Mneme\n\n36) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y1 You'llwin\nBuild Y2 Draw5playall\n\n37) mneme: Trade G3 Y3 Mneme\n\n38) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y2 Outrunyou\n\n39) mneme: Sacrifice Y3 Mneme\nMove G2 Caliope Iloseagain\nMove G2 Iloseagain Draw5playall\nCatastrophe Draw5playall G\nMove R3 Iloseagain Draw5playall\n\n40) Draw5PlayAll: Trade Y1 R1 Draw5playall\nCatastrophe Draw5playall Red\n\tDraw5PlayAll: I saw the green catastrophe but not the red invasion.\n\n41) mneme: Trade G2 R2 Mneme\n\n\tmneme: *nodnod* It was very much a question of velocity; once I saw a way to do both, I had to.\n\tmneme: Good game!\r\n\r\nI think all those earlier games helped me a lot more than they helped you -- making sure I took you seriously and knew I had to play tight rather than loose and sure with you.\n\nHomeworlds Online (SDG# 34709)\nVariants: "Hard time"\nStarted: 2018.11.12, Ended: 2018.12.13\nParticipants: mneme (S), DodoBirb (N)\nWinner: DodoBirb\n\n1) DodoBirb: Homeworld B1 R2 G3\n\tDodoBirb: Good luck! Is this for the tourney?\n\n2) mneme: Homeworld G3 Y1 B3\n\n3) DodoBirb: Build G1 Dodobirb\n\tmneme: It is! Gogot tournament!\r\n\n\tmneme: Good luck and have fun!\n\tmneme: (also, Gabawase (which for possibly obvious reasons, I prefer for games like Homeworlds!)\r\n\n\n4) mneme: Build B1 Mneme\n\n5) DodoBirb: Trade G1 B1 Dodobirb\n\n6) mneme: Build B2 Mneme\n\n7) DodoBirb: Build B2 Dodobirb\n\n8) mneme: Trade B3 G3 Mneme\n\n9) DodoBirb: Build G1 Dodobirb\n\n10) mneme: Discover B1 Mneme G2 Caliope\n\n11) DodoBirb: Trade G1 Y1 Dodobirb\n\n12) mneme: Sacrifice G3 Mneme\nBuild B2 Mneme\nBuild B3 Mneme\nBuild B3 Caliope\n\n13) DodoBirb: Discover B2 Dodobirb G3 Hill\n\n14) mneme: Sacrifice B2 Mneme\nTrade B2 R2 Mneme\nTrade B1 Y1 Caliope\n\n15) DodoBirb: Build G1 Dodobirb\n\n16) mneme: Build Y2 Caliope\n\n17) DodoBirb: Build Y2 Dodobirb\n\n18) mneme: Move Y2 Caliope Hill\n\n19) DodoBirb: Sacrifice Y1 Dodobirb\nDiscover B2 Hill R2 Stardef\n\n20) mneme: Build R1 Mneme\n\n21) DodoBirb: Build Y1 Dodobirb\n\n22) mneme: Build Y2 Caliope\n\n23) DodoBirb: Discover Y1 Dodobirb B3 Water\n\n24) mneme: Trade Y2 G2 Caliope\n\n25) DodoBirb: Move G1 Dodobirb Water\n\tDraw5PlayAll: Calliope? Gabawase?\n\n26) mneme: Sacrifice G2 Caliope\nBuild Y2 Caliope\nBuild Y3 Hill\n\tmneme: Just google?\n\n27) DodoBirb: Build Y3 Water\n\tmneme: ganbawase is easier googled as ganbawatte, though.\n\tmneme: ganbawase is easier googled as ganbawatte, though.\n\n28) mneme: Sacrifice Y2 Hill\nMove Y2 Caliope Water\nMove Y1 Caliope Water\nCatastrophe Water Y\n\n29) DodoBirb: Build Y1 Dodobirb\n\n30) mneme: Move Y3 Hill Stardef\n\n31) DodoBirb: Sacrifice Y1 Dodobirb\nDiscover B2 Stardef Y3 Run\n\n32) mneme: Move Y3 Stardef Water\n\n33) DodoBirb: Sacrifice G1 Water\nBuild G1 Dodobirb\n\n34) mneme: Build B1 Caliope\n\n35) DodoBirb: Build Y1 Dodobirb\n\n36) mneme: Trade B3 Y3 Caliope\n\n37) DodoBirb: Build G1 Dodobirb\n\n38) mneme: Build B2 Caliope\n\n39) DodoBirb: Move G1 Dodobirb Run\n\n40) mneme: Move B2 Caliope Run\n\n41) DodoBirb: Sacrifice Y2 Dodobirb\nDiscover B2 Run R2 Defence\nMove G1 Run Defence\n\n42) mneme: Move Y3 Water Defence\n\n43) DodoBirb: Sacrifice Y1 Dodobirb\nDiscover B2 Defence Y1 Runagain\n\n44) mneme: Attack G1 Defence\n\n45) DodoBirb: Trade G1 Y1 Dodobirb\n\n\tDodoBirb: Oh well. I'll take the win I guess.\n\tmneme: ACK. I didn't get notified for a while and missed that this one was still going on (I think I had you), but if you want to take the win from my falling asleep, I won't blame you.\r\n\n\tmneme: (next move: catastrophy in your home system)\n\tmneme: (blue cat)\r\n\n\tmneme: more after: grow red in my home (you have no way to get red -and- a y2)\r\nMove after: s y3, red cat in your home. \n\tDodoBirb: Nah, you can take the win.\n\tDodoBirb: I'll have to notify Babamots.\n\tBabamots: OK, if you're sure, I'll update the record.\n\tmneme: Thanks. \r\nI'll take if you're willing since it was a forced mate in 3; missing the clock was my own fault, but you're a player of honor.\n\nHomeworlds Online (SDG# 34726)\nVariants: "Unrated, Hard time"\nStarted: 2018.11.15, Ended: 2018.12.6\nParticipants: Babamots (S), AnalogKid (N)\nWinner: Babamots\n\n1) AnalogKid: Homeworld B1 Y2 G3\n\tDraw5PlayAll: Oh I never knew AnalogKid was into Homeworlds...\n\tAnalogKid: I've only played it a few times and that was years ago now. So I'm a novice who needs to review the rules. :) \n\tAnalogKid: I do think it is a very impressive and rich game.\n\n2) Babamots: Homeworld G3 B1 B3 *\n\tAnalogKid: Babamots: Thanks again for starting all of these new games with me, today. I hope that you don't mind me taking the banker option. Have a good game! ^_^\n\tBabamots: I do think the "banker" is the strongest homeworld, even though I only see "investments" work in maybe 1/4th of games. I think it's more important that it makes it easy to discover large systems when your opponent is about to build the large ship that--for whatever the reason--you can't build yourself.\r\n\r\nI think that, for a more even game, the less-experienced player should get the banker. The online rules suggest it, in fact. I also think moving first is a pretty good advantage. It seems to me that the most fair opening would be banker for the second player to move, something else for the first.\r\n\r\nSince you included b1 in your home system, I can do something kind of sneaky that ensures that I get a medium ship before you do. I'm going to make my first ship AND one of my system markers blue. If you ever want a blue ship, you'll probably need to trade your large ship for it.\r\n\r\nYou said you'd like to learn, so I'm planning on giving lots of unsolicited advice like the above.\r\n\r\nAnyway, you're welcome to the banker this time. If you beat me, I get dibs next time.\n\n3) AnalogKid: Build G1 Analogkid\n\tAnalogKid: Thanks for the advice and for being willing to teach me. :)\r\n\r\nI'll have to trade a large ship to get blue? I assume then that you intend to grab the last small blue so that I can't trade for it AND you'll then be able to build a B2 ship while I cannot since I don't yet have a blue ship? Interesting.\n\n4) Babamots: Build B1 Babamots\n\n5) AnalogKid: Build G1 Analogkid\n\tBabamots: I don't know if that trick really does much for me, but people do it pretty often. It won me a game once when my opponent didn't think to trade the large ship and I just got to build as much of that color as I wanted in every size.\n\tAnalogKid: I'm considering two choices: (a) build another G1, or (b) venture out to a new system with the G1 I've got. I'll go with (a). Feel free to let me know what you think I should've done. ;-)\n\n6) Babamots: Trade B3 Y3 Babamots\n\tAnalogKid: My reasoning: If you trade for a G1 soon then I will get first dibs on a G2. (Or maybe I won't since I have to move/trade at least one of my G ships first?). Either way, there is no threat of you invading yet with a green ship and I will probably trade in my G3 for a B3 next turn anyways. \n\n7) AnalogKid: Trade G3 B3 Analogkid\n\n8) Babamots: Build B2 Babamots\n\n9) AnalogKid: Discover G1 Analogkid B3 Alcyone\n\tAnalogKid: *sigh* I still can't safely build a blue ship.\n\n10) Babamots: Discover B1 Babamots G2 Risa\n\tBabamots: That was intentional. For teaching's sake, I should have mentioned it in case you didn't notice.\n\n11) AnalogKid: Build G1 Alcyone\n\n12) Babamots: Build B2 Risa\n\n13) AnalogKid: Discover B3 Analogkid Y3 Sigmaoctantis\n\tAnalogKid: Well, this might be a violation of the "Primary Directive" but ...\n\n14) Babamots: Sacrifice Y3 Babamots\nDiscover B1 Risa Y3 Iconia\nMove B2 Risa Iconia\nMove B2 Iconia Analogkid\n\tBabamots: I think you're about to get a lesson on why keeping a large at home is so important.\n\n15) AnalogKid: Trade B3 R3 Sigmaoctantis\n\tBabamots: Either that or I've totally shot myself in the foot. It's pretty hard to calculate more than a move or two in the future and I've been known to blow it.\n\tBabamots: OK, with some more thought, I see you can survive this, but you'll have to be careful. This is should be a great tactical exercise for you.\n\tBabamots: So to be clear, my move was not a good example of something you should do. It's risky at best. There are times when you can totally charge at your opponent the moment there's a weakness, but this isn't quite it. More likely I've thrown away my only large for almost nothing. But, figuring out how to deal with an overly aggressive move like mine is good for you.\n\tAnalogKid: Hmm... I wasn't anticipating that move. I thought you might trade for a red and then I'd have to move my large ship back to my homeworld to defend.\n\tAnalogKid: That was why I moved the B3 to a yellow star. In retrospect, I think I really needed to go to a green start to accomplish my goal. :|\n\tAnalogKid: Interesting two-pronged threat! I think I see a solution...\n\n16) Babamots: Trade B2 R2 Analogkid\n\tDraw5PlayAll: I do not see the second prong.\n\tDraw5PlayAll: Also what are Alcyone and SigmaOctantis?\n\n17) AnalogKid: Move R3 Sigmaoctantis Analogkid\n\n18) Babamots: Discover R2 Analogkid Y3 Risa\n\tAnalogKid: Alcyone is a blue giant star and Sigma Octantis is a yellow giant star. See Wikipedia for more. :-)\n\n19) AnalogKid: Build G2 Analogkid\n\n20) Babamots: Build B2 Babamots\n\n21) AnalogKid: Build G2 Analogkid\n\n22) Babamots: Trade B2 G2 Babamots\n\n\tAnalogKid: Ach! I'm so sorry about letting this game timeout. I was enjoying it. :( Would you be willing to start another one? (Praetorian too if you wish)\n\tDraw5PlayAll: Praetorian is nice. You should challenge me to it. I do not get to play it enough.\r\n\r\nBut I prefer the assassin.\n\nHomeworlds Online (SDG# 34598)\nVariants: "Unrated"\nStarted: 2018.11.16, Ended: 2018.11.22\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld G1 Y1 B3 *\n\n2) wil: H G3 B3 Y3 *\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: B Y1 Wil\n\n5) Trydnt: Trade B1 Y1 Trydnt\n\n6) wil: T Y1 G1 Wil\n\twil: Lol, not my intended opening, oops\n\n7) Trydnt: Build B1 Trydnt\n\n8) wil: B G1 Wil\n\n9) Trydnt: Trade B1 R1 Trydnt\n\n10) wil: T G1 R1 Wil\n\n11) Trydnt: Build Y1 Trydnt\n\n12) wil: B Y2 Wil\n\n13) Trydnt: Move Y1 Trydnt Wil\n\n14) wil: T Y2 R2 Wil\n\n15) Trydnt: Build Y2 Wil\n\n16) wil: T Y3 B3 Wil\n\n17) Trydnt: Sacrifice Y1 Wil\nDiscover Y2 Wil G2 G2\n\twil: And we used to play 5 games a night!\n\n18) wil: T R1 Y1 Wil\n\twil: Yeah, I've lost\n\n19) Trydnt: Build B1 Trydnt\n\n20) wil: B Y2 Wil\n\n21) Trydnt: Move B1 Trydnt G2\n\n22) wil: B R1 Wil\n\n23) Trydnt: Build B1 G2\n\n24) wil: T B3 G3 Wil\n\n25) Trydnt: Discover Y1 Trydnt G3 G3\n\n26) wil: M R1 Wil G2\n\n27) Trydnt: Sacrifice R1 Trydnt\nAttack R1 G2\n\n28) wil: M Y1 Wil Trydnt\n\n29) Trydnt: Trade B3 R3 Trydnt\n\n30) wil: B Y2 Trydnt\n\n31) Trydnt: Build Y3 G2\n\twil: Lol, typed wrong\n\tDraw5PlayAll: &#8253;\n\n32) wil: B Y3 Wil\n\n33) Trydnt: Build Y3 G3\n\n34) wil: S Y2 Wil\nM G3 Wil Trydnt\nM G1 Wil Trydnt\n\n\twil: I didn't mean to undid\n\twil: Fat fingered.stroke victim.strikes again!\n\tTrydnt: Well played! I'm loving these weird micro universes and things we've been messing around with. Completely different play style and game feel\n\twil: I wasn't positive that was gonna work\n\twil: You are the king of escapes\n\tTrydnt: haha yeah I'm in another game going similarly right now that is crazy. like waiting for the axe to drop but seeing some possible escapes too\n\nHomeworlds Online (SDG# 34721)\nVariants: "Hard time"\nStarted: 2018.11.16, Ended: 2018.11.19\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n\tts52: Sorry. Lost track of time.\n\twil: Oops\n\tts52: Yeah. Any time I start a game on a friday, there's a > 50% chance I don't check over the weekend and it times out. Sorry about that.\n\nHomeworlds Online (SDG# 34734)\nVariants: "Hard time"\nStarted: 2018.11.19, Ended: 2018.11.23\nParticipants: Trydnt (S), goulo (N)\nWinner: Trydnt\n\n1) goulo: Homeworld R3 B1 G3\n\n2) Trydnt: Homeworld B1 G2 B3 *\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) Trydnt: Build B1 Trydnt\n\n5) goulo: Trade G3 B3 Goulo\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\n7) goulo: Build B2 Goulo\n\n8) Trydnt: Build B2 Trydnt\n\n9) goulo: Trade B2 Y2 Goulo\n\n10) Trydnt: Trade B1 R1 Trydnt\n\n11) goulo: Build Y1 Goulo\n\n12) Trydnt: Build R1 Trydnt\n\n13) goulo: Build G1 Goulo\n\n14) Trydnt: Build R1 Trydnt\n\n15) goulo: Trade Y2 R2 Goulo\n\n16) Trydnt: Trade R1 G1 Trydnt\n\n17) goulo: Build G2 Goulo\n\n18) Trydnt: Build Y1 Trydnt\n\n19) goulo: Discover G1 Goulo Y2 Flavo\n\n20) Trydnt: Discover G1 Trydnt Y3 Y3\n\n21) goulo: Discover G1 Goulo Y2 Flavodua\n\n22) Trydnt: Move B2 Trydnt Y3\n\n23) goulo: Discover G1 Flavodua Y3 Flavego\n\n24) Trydnt: Discover Y1 Trydnt G3 G3\n\n25) goulo: Build G2 Flavego\n\n26) Trydnt: Build G3 Y3\n\n27) goulo: Build G3 Goulo\n\n28) Trydnt: Sacrifice G3 Y3\nBuild G3 Y3\nBuild Y1 Trydnt\nBuild Y2 G3\n\n29) goulo: Build Y2 Goulo\n\n30) Trydnt: Move R1 Trydnt Y3\n\n31) goulo: Sacrifice Y2 Goulo\nMove G1 Flavego Trydnt\nMove G2 Flavego Trydnt\n\n32) Trydnt: Sacrifice G3 Y3\nBuild G3 Y3\nBuild Y2 Trydnt\nBuild Y3 G3\n\n33) goulo: Sacrifice R2 Goulo\nAttack Y2 Trydnt\nAttack R1 Trydnt\n\n34) Trydnt: Sacrifice B2 Y3\nTrade Y3 B3 Trydnt\nTrade Y3 R3 G3\n\n35) goulo: Sacrifice G1 Flavo\nBuild G1 Trydnt\nCatastrophe Trydnt G\n\n36) Trydnt: Sacrifice R1 Y3\nAttack R1 Trydnt\n\n37) goulo: Discover Y2 Trydnt G2 Verdo\n\n38) Trydnt: Move Y2 G3 Verdo\n\n39) goulo: Discover Y2 Verdo R3 Rughego\n\n40) Trydnt: Sacrifice G3 Y3\nBuild Y2 G3\nBuild Y3 Verdo\nBuild Y3 Trydnt\n\n41) goulo: Trade G2 R2 Goulo\n\tTrydnt: well played. that was a weird finish, never seen that type of end game\n\n42) Trydnt: Move B3 Trydnt Y3\n\tgoulo: an unusual interesting situation indeed! :)\n\n43) goulo: Discover B3 Goulo G2 Verdodua\n\n44) Trydnt: Sacrifice B3 Y3\nTrade Y3 G3 Trydnt\nTrade Y2 B2 Verdo\nTrade Y2 B2 G3\n\n45) goulo: Sacrifice G3 Goulo\nBuild Y2 Rughego\nBuild Y2 Rughego\nBuild Y3 Goulo\n\n46) Trydnt: Sacrifice G1 Y3\nBuild Y3 G3\n\n47) goulo: Discover Y2 Rughego R2 Rugho\n\n48) Trydnt: Build B1 G3\n\n49) goulo: Move Y2 Rughego Verdodua\n\n50) Trydnt: Build R1 G3\n\n51) goulo: Trade Y1 G1 Goulo\n\n52) Trydnt: Move R1 G3 Verdo\n\n53) goulo: Move R2 Goulo Verdodua\n\n54) Trydnt: Build R1 Verdo\n\n55) goulo: Build B2 Verdodua\n\n56) Trydnt: Move B2 G3 Verdodua\n\n57) goulo: Sacrifice Y2 Verdodua\nMove B3 Verdodua Rughego\nDiscover B2 Verdodua Y1 Flaveto\n\n58) Trydnt: Sacrifice R1 Trydnt\nAttack R2 Verdodua\n\n59) goulo: Build G1 Goulo\n\n60) Trydnt: Sacrifice Y3 G3\nMove R1 Verdo Goulo\nMove R1 Verdo Goulo\nMove R2 Verdodua Goulo\nCatastrophe Goulo R\n\n61) goulo: Sacrifice G1 Goulo\nBuild B3 Rughego\n\n62) Trydnt: Sacrifice Y3 Verdo\nMove B1 G3 Goulo\nMove B2 Verdo Goulo\nMove B2 Verdodua Goulo\nCatastrophe Goulo B\n\n\tgoulo: Sigh, a move behind...\r\n\r\nThis too often happens to me, that I'm the first to catastrophe a star at the opponent's homeworld, but doing so leaves me behind on material and too weak to finish the job ... congrats!\n\tTrydnt: always need to have a plan before you take the plunge. sometimes you can still figure it out but it's risky\n\tgoulo: yes, i am too impulsive in this game.:)\n\nHomeworlds Online (SDG# 34735)\nVariants: "Unrated"\nStarted: 2018.11.20, Ended: 2018.12.19\nParticipants: Felix (S), dlwillson (N)\nWinner: Felix\n\n1) dlwillson: Pass\n\tdlwillson: Are we doing anything special this game?\n\n2) Felix: Homeworld G1 Y2 R3 *\n\tFelix: It's up to you. I'd be curious to try the no-blue opening myself. You can match it if you want, or go with a normal opening, your choice!\n\n3) dlwillson: H Y3 G2 R3 *\n\n4) Felix: B R1 Felix\n\tdlwillson: Let's try this. I was going to go green ship, but I think that would've given me a big advantage.\n\n5) dlwillson: B R1 Dlwillson\n\tFelix: That's okay! You do whatever you feel is right :)\n\n6) Felix: Discover R1 Felix B3 Out\n\n7) dlwillson: D R1 Dlwillson B1 Sea\n\tFelix: Oops, sorry for the timeout!\n\n8) Felix: Trade R1 G1 Out\n\n9) dlwillson: T R1 G1 Sea\n\n10) Felix: Build G2 Out\n\n11) dlwillson: B G2 Sea\n\n12) Felix: Build G3 Out\n\n13) dlwillson: B G3 Sea\n\n14) Felix: Trade G3 Y3 Out\n\n15) dlwillson: T G3 Y3 Sea\n\n16) Felix: Move G1 Out Sea\n\tdlwillson: Looong copycat phase, but I couldn't think of a better move.\n\n17) dlwillson: T G1 R1 Sea\n\tFelix: No prob! I would have done the same\r\n\n\n18) Felix: Build G1 Sea\n\n19) dlwillson: D G2 Sea B3 Sky\n\n20) Felix: Build G3 Out\n\n21) dlwillson: B G3 Sky\n\n22) Felix: D G3 Out B1 Forth\n\n23) dlwillson: Trade G2 R2 Sky\n\n24) Felix: S G3 Forth\nB G2 Sea\nB G3 Out\nB G3 Out\n\n25) dlwillson: Sacrifice G3 Sky\nBuild R1 Sky\nBuild R1 Sky\nBuild R2 Dlwillson\n\n26) Felix: M G3 Out Felix\n\n27) dlwillson: A G2 Sea\n\n28) Felix: Sacrifice G2 Out\nBuild G2 Sea\nBuild G3 Out\nCatastrophe Sea Green\n\n29) dlwillson: T R2 G2 Sky\n\tFelix: That was a satisfying move :)\n\tdlwillson: Elegant!\n\n30) Felix: Trade G3 R3 Out\n\n31) dlwillson: T R1 B1 Sky\n\n32) Felix: Move G3 Felix Sky\n\n33) dlwillson: Sacrifice G2 Sky\nBuild R1 Sky\nBuild R2 Sky\n\n34) Felix: Sacrifice R3 Out\nAttack R1 Sky\nAttack R1 Sky\nAttack R2 Sky\n\n35) dlwillson: M R1 Sea Sky\nC Sky R\n\n36) Felix: Build G1 Out\n\tdlwillson: This game just keeps getting better for you!\n\n37) dlwillson: Move Y3 Sea Sky\n\tFelix: I'm not complaining!\n\n38) Felix: Sacrifice G3 Sky\nBuild G1 Out\nBuild R1 Felix\nBuild Y1 Out\n\tdlwillson: Ooh! I think I actually got a good move in there! I'm worried that I'm thwapping the hornet's nest, but I'll enjoy it until it starts to hurt. :-)\n\n39) dlwillson: Sacrifice B1 Sky\nTrade R3 B3 Dlwillson\n\tFelix: Yeah, nice move! I should've noticed that\n\n40) Felix: Trade G1 B1 Out\n\n41) dlwillson: Build R1 Dlwillson\n\tdlwillson: Good thing I looked at what I'd done, eh?\n\n42) Felix: Move B1 Out Felix\n\tFelix: I always have to do a double take after my move or I end up in serious trouble.\n\n43) dlwillson: B B1 Dlwillson\n\n44) Felix: Build G1 Out\n\n45) dlwillson: D R1 Dlwillson Y1 Sol\n\n46) Felix: Move G3 Out Sol\n\n47) dlwillson: M R1 Sol Sky\n\n48) Felix: Build G2 Sol\n\n49) dlwillson: B R1 Dlwillson\n\n50) Felix: Sacrifice G3 Sol\nBuild G2 Sol\nBuild G3 Sol\nBuild G3 Out\n\n51) dlwillson: T R1 Y1 Dlwillson\n\n52) Felix: Discover G3 Out B1 Bluey\n\n53) dlwillson: T Y3 G3 Sky\n\n54) Felix: Sacrifice G3 Sol\nBuild G3 Bluey\nBuild Y2 Out\nBuild B2 Felix\n\n55) dlwillson: Discover Y1 Dlwillson R1 Mars\n\n56) Felix: Move Y1 Out Bluey\n\n57) dlwillson: B R2 Dlwillson\n\n58) Felix: Sacrifice G3 Bluey\nBuild G3 Bluey\nBuild Y2 Bluey\nBuild Y3 Bluey\n\n59) dlwillson: B R2 Dlwillson\n\n60) Felix: Move Y2 Out Mars\n\n61) dlwillson: M B1 Dlwillson Bluey\n\n62) Felix: Sacrifice R1 Felix\nAttack B1 Bluey\n\tdlwillson: You should challenge D5PA\n\tFelix: Thanks for the tip. I did :)\n\n63) dlwillson: Move R2 Dlwillson Sol\n\n64) Felix: Sacrifice Y3 Out\nMove G2 Sol Dlwillson\nMove G2 Sol Dlwillson\nMove G3 Bluey Dlwillson\n\n\tdlwillson: Perfect! I suppose I could have seen that coming, but I didn't... I never see the doomsday until doomsday. :-)\n\nHomeworlds Online (SDG# 34710)\nVariants: "Hard time"\nStarted: 2018.11.22, Ended: 2018.12.6\nParticipants: mneme (S), ajo (N)\nWinner: mneme\n\n1) ajo: Homeworld B3 R1 G3\n\n2) mneme: Homeworld B1 G2 R3\n\tmneme: Is this a great homeworlds tournament game?\n\tmneme: Is this a great homeworlds tournament game?\n\n3) ajo: Build G1 Ajo\n\tajo: Yes! I wanted to wait to say it counted for the Tournament until I saw whether you were paying attention, since otherwise it'd just time out after 48 hours of inattention. :)\n\n4) mneme: Build R1 Mneme\n\tmneme: hehe. I was trying to avoid making my first move until you made a response.\n\n5) ajo: Build G1 Ajo\n\n6) mneme: Build R1 Mneme\n\n7) ajo: Trade G3 Y3 Ajo\n\n8) mneme: Trade R3 Y3 Mneme\n\n9) ajo: Discover G1 Ajo B2 Alpha\n\n10) mneme: Build R2 Mneme\n\n11) ajo: Build G1 Ajo\n\n12) mneme: Discover R2 Mneme Y3 Terpsichore\n\n13) ajo: Build G2 Ajo\n\tajo: Yep. I'm already losing. I gotta study openings (such as they are).\n\n14) mneme: Move R2 Terpsichore Alpha\n\n15) ajo: Trade G2 R2 Ajo\n\n16) mneme: Attack G1 Alpha\n\n17) ajo: Build G2 Ajo\n\n18) mneme: Build G2 Alpha\n\n19) ajo: Discover G1 Ajo B2 Beta\n\n20) mneme: Trade G2 Y2 Alpha\n\n21) ajo: Move R2 Ajo Beta\n\n22) mneme: Build Y1 Mneme\n\n23) ajo: Sacrifice G2 Ajo\nBuild G2 Beta\nBuild Y1 Ajo\n\n24) mneme: Build Y1 Alpha\n\n25) ajo: Move Y1 Ajo Beta\n\n26) mneme: Trade Y3 G3 Mneme\n\n27) ajo: Build Y2 Beta\n\n28) mneme: Discover Y2 Alpha R3 Urania\n\n29) ajo: Sacrifice G2 Beta\nBuild Y2 Beta\nBuild Y3 Ajo\n\n30) mneme: Build Y3 Mneme\n\n31) ajo: Move Y3 Ajo Alpha\n\n32) mneme: Discover R2 Alpha B3 Erato\n\n33) ajo: Sacrifice R2 Beta\nAttack Y1 Alpha\nAttack G1 Alpha\n\n34) mneme: Sacrifice G3 Mneme\nBuild R2 Erato\nBuild R2 Mneme\nBuild R3 Erato\n\n35) ajo: Trade Y3 R3 Alpha\n\n36) mneme: Sacrifice Y1 Mneme\nMove R3 Erato Beta\n\tajo: The invaders have been driven out of Alpha!\n\n37) ajo: Sacrifice Y2 Beta\nDiscover G1 Beta B3 Gamma\nMove Y2 Beta Gamma\n\tmneme: but at what cost?\n\n38) mneme: Attack Y1 Beta\n\n39) ajo: Build G2 Ajo\n\n40) mneme: Move R2 Mneme Gamma\n\n41) ajo: Sacrifice Y2 Gamma\nDiscover G1 Gamma Y2 Delta\nPass\n\n42) mneme: Move Y2 Urania Delta\n\n43) ajo: Build R3 Alpha\n\n44) mneme: Sacrifice Y2 Delta\nMove R2 Erato Alpha\nMove R2 Erato Alpha\nCatastrophe Alpha R\n\n45) ajo: Sacrifice G2 Ajo\nBuild G2 Alpha\nBuild G2 Delta\n\n46) mneme: Trade R3 G3 Beta\n\tBabamots: Does "at what cost" mean you're a "Download" listener?\n\n47) ajo: Sacrifice G2 Alpha\nBuild G2 Ajo\nBuild G3 Alpha\n\n48) mneme: Build G3 Beta\n\n49) ajo: Trade G3 Y3 Alpha\n\n50) mneme: Sacrifice G3 Beta\nBuild R2 Mneme\nBuild R2 Gamma\nBuild R3 Gamma\n\n51) ajo: Trade Y3 R3 Alpha\n\n52) mneme: Build G3 Beta\n\n53) ajo: Build R3 Alpha\n\n54) mneme: Trade R3 Y3 Gamma\n\n55) ajo: Build G3 Alpha\n\tajo: Bother.\n\n56) mneme: Sacrifice G3 Beta\nBuild G3 Beta\nBuild Y1 Beta\nBuild Y2 Beta\n\n57) ajo: Trade R3 B3 Alpha\n\n58) mneme: Sacrifice Y3 Gamma\nMove G3 Beta Ajo\nMove Y1 Beta Ajo\nMove Y1 Beta Ajo\n\n59) ajo: Sacrifice Y3 Ajo\nMove G1 Delta Ajo\nCatastrophe Ajo Green\nMove G3 Alpha Ajo\nMove B3 Alpha Ajo\n\n60) mneme: Trade Y1 B1 Ajo\n\n61) ajo: Build R3 Alpha\n\n62) mneme: Sacrifice G3 Beta\nBuild B1 Ajo\nCatastrophe Ajo B\nPass\nPass\n\tmneme: check.\n\tajo: Oh dear. I saw the doomsday machine happening, but I thought you'd blow things up one at a time, giving me a chance to regroup. This is much worse for me!\n\n63) ajo: Move R3 Alpha Gamma\n\tajo: I keep running into situations in this tournament (this is at least the second time) where a mid-turn catastrophe seems like the best option. My own AI's ruleset doesn't allow mid-turn catastrophes, and I think it's a bit of a loophole in SDG's implementation. But then I'll hit a situation like this, where if I'm playing to win, clearly I should use the "loophole"; and then I feel guilty about it.\n\tmneme: It's actually a relatively recent rules change that got reflected in superdupergames pretty shortly after being adopted.\r\n\r\nBut yeah, didn't see that one coming!\n\n64) mneme: Sacrifice Y3 Mneme\nMove R2 Gamma Ajo\nMove R2 Gamma Ajo\nDiscover R2 Mneme Y3 Nemesis\n\n\tmneme: checkmate.\r\n\r\nGood game!\n\tajo: Good game!\n\nHomeworlds Online (SDG# 34602)\nVariants: "Hard time"\nStarted: 2018.11.22, Ended: 2018.11.30\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld G3 R2 B3\n\n2) wil: H B2 Y1 G3\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade B1 Y1 Trydnt\n\n6) wil: T G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: B Y2 Wil\n\n9) Trydnt: Build Y2 Trydnt\n\n10) wil: D Y1 Wil B3 B3\n\n11) Trydnt: Discover Y1 Trydnt G1 G1\n\n12) wil: T Y1 R1 B3\n\n13) Trydnt: Build B1 Trydnt\n\n14) wil: B G1 Wil\n\n15) Trydnt: Build B1 Trydnt\n\n16) wil: T G1 B1 Wil\n\n17) Trydnt: Move Y2 Trydnt G1\n\n18) wil: B B2 Wil\n\twil: why didn't you tell me you challenged\n\tTrydnt: Oh sorry I thought you'd see it in time. How long do you get to accept/decline those?\n\n19) Trydnt: Move B1 Trydnt G1\n\twil: Don't know but I missed it!\n\twil: Now I gotta climb agin\n\n20) wil: D B2 Wil Y3 Y3\n\n21) Trydnt: Trade Y1 R1 G1\n\n22) wil: B G1 Wil\n\n23) Trydnt: Build Y1 G1\n\n24) wil: M Y2 Wil B3\n\n25) Trydnt: Discover Y1 G1 G3 G3\n\n26) wil: B G1 Wil\n\n27) Trydnt: Build Y1 G3\n\n28) wil: S G1 Wil\nB Y3 B3\n\n29) Trydnt: Build Y3 G1\n\n30) wil: D Y2 B3 G1 Gone\n\n31) Trydnt: Discover Y2 G1 R3 R3\n\n32) wil: T G1 R1 Wil\n\n33) Trydnt: Move Y1 G3 Wil\n\n34) wil: A Y1 Wil\n\n35) Trydnt: Sacrifice Y2 Trydnt\nMove Y1 G3 Wil\nMove Y2 R3 Wil\nCatastrophe Wil Y\n\n36) wil: B G1 Wil\n\n37) Trydnt: Sacrifice Y3 G1\nMove B1 G1 Wil\nMove B1 Trydnt G1\nMove B1 G1 Wil\nCatastrophe Wil B\n\n\nHomeworlds Online (SDG# 34685)\nStarted: 2018.11.22, Ended: 2019.6.24\nParticipants: wil (S), MobyNostromo (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 34687)\nStarted: 2018.11.22, Ended: 2019.1.30\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: H Y1 B2 G3\n\n2) wil: H Y3 B1 G3\n\n3) ts52: Build G1 Ts52\n\twil: Thx for the game\n\n4) wil: B G1 Wil\n\n5) ts52: Trade G1 B1 Ts52\n\n6) wil: T G1 Y1 Wil\n\n7) ts52: Build B1 Ts52\n\n8) wil: B Y1 Wil\n\n9) ts52: Discover B1 Ts52 B3 Grover\n\n10) wil: D Y1 Wil Y2 Y2\n\n11) ts52: Build B2 Ts52\n\n12) wil: B Y2 Wil\n\n13) ts52: Build G1 Ts52\n\n14) wil: D Y2 Wil G2 G2\n\n15) ts52: Discover B2 Ts52 G3 Kermit\n\n16) wil: S G3 Wil\nB Y2 G2\nB Y3 Y2\nB Y3 Wil\n\n17) ts52: Sacrifice G3 Ts52\nBuild B2 Kermit\nBuild B3 Kermit\nBuild B3 Ts52\n\n18) wil: T Y1 G1 Wil\n\n19) ts52: Trade B1 Y1 Ts52\n\n20) wil: B G1 Wil\n\n21) ts52: Move Y1 Ts52 Kermit\n\n22) wil: B G2 Wil\n\n23) ts52: Build B1 Ts52\n\n24) wil: T G1 R1 Wil\n\n25) ts52: Move Y1 Kermit Y2\nCatastrophe Y2 Yellow\n\n26) wil: M Y2 G2 Grover\n\twil: Oops\n\n27) ts52: Trade B3 Y3 Kermit\n\n28) wil: T Y3 B3 Wil\n\n29) ts52: Trade B2 R2 Kermit\n\n30) wil: B R1 Wil\n\n31) ts52: Build B2 Kermit\n\n32) wil: S R1 Wil\nA B1 Grover\n\n33) ts52: Discover B1 Ts52 Y3 Bigbird\n\n34) wil: B R1 Wil\n\n35) ts52: Build R1 Kermit\n\n36) wil: D G1 Wil Y2 Y2\n\n37) ts52: Move R2 Kermit Y2\n\n38) wil: B G1 Y2\n\n39) ts52: Attack G1S Y2\n\n40) wil: B G2 Y2\n\n41) ts52: Attack G2S Y2\n\n42) wil: B G3 Y2\n\n43) ts52: Build G3 Ts52\nCatastrophe Y2 Green\n\n44) wil: D R1 Wil G2 Gee2\n\n45) ts52: Build R2 Kermit\n\n46) wil: S G2 Wil\nB R2 Gee2\nB R3 Wil\n\n47) ts52: Build R3 Kermit\n\n48) wil: S Y2 G2\nM R2 Gee2 Bigbird\nM R1 Gee2 Kermit\nC Kermit R\n\n49) ts52: Move B1 Bigbird Y2\n\n50) wil: T R3 G3 Wil\n\n51) ts52: Build Y1 Kermit\n\n52) wil: M B3 Wil Y2\n\n53) ts52: Move R2 Y2 Kermit\n\n54) wil: B R1 Wil\n\n55) ts52: Trade B3 R3 Ts52\n\n56) wil: D B1 Grover G2 G2\n\n57) ts52: Build B3 Kermit\n\n58) wil: S Y2 Grover\nM B1 G2 Kermit\nC Kermit B\nD R1 Wil G2 G2\n\n59) ts52: Sacrifice B1 Y2\nTrade Y3 B3 Kermit\n\n60) wil: T R1 Y1 Wil\n\n61) ts52: M R3 Ts52 Bigbird\n\n62) wil: M R2 Bigbird Y2\n\n63) ts52: B Y2 Kermit\n\n64) wil: B G1 Wil\n\n65) ts52: Trade G1 R1 Ts52\n\n66) wil: M Y1 Wil G2\n\n67) ts52: Move R3 Bigbird G2\n\n68) wil: B Y2 G2\n\n69) ts52: Attack Y2 G2\n\twil: Night and day these two games\n\n70) wil: B R1 G2\n\tts52: Definitely. \n\n71) ts52: Sacrifice R2 Kermit\nAttack R1 G2\nAttack R1 G2\n\n72) wil: B G1 Wil\n\n73) ts52: Attack Y1 G2\n\n74) wil: T G3 Y3 Wil\n\n75) ts52: Sacrifice Y2 Kermit\nMove Y1 G2 Wil\nMove Y2 G2 Wil\nCatastrophe Wil Y\n\n\twil: Lol, gg\n\tts52: Thanks. You too.\n\nHomeworlds Online (SDG# 34479)\nVariants: "Hard time"\nStarted: 2018.11.24, Ended: 2018.12.23\nParticipants: wil (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B3 R1 G3\n\tBabamots: Welcome back! I had in mind that this game would be for the tournament. If you're up for playing your other dozen or so tournament games, I'll mark you as un-withdrawn. Just let me know!\n\n2) wil: H B2 Y1 G3\n\twil: I have lots of free.time\n\twil: And yes, would.love to challenge my brain\n\n3) Babamots: Build G1 Babamots\n\twil: Thx\n\n4) wil: B G1 Wil\n\n5) Babamots: Trade G1 Y1 Babamots\n\n6) wil: T G1 Y1 Wil\n\n7) Babamots: Build Y2 Babamots\n\n8) wil: B Y2 Wil\n\n9) Babamots: Discover Y1 Babamots G2 Orion\n\n10) wil: T Y1 R1 Wil\n\n11) Babamots: Build Y1 Babamots\n\n12) wil: D Y2 Wil G3 G3\n\n13) Babamots: Trade Y1 R1 Babamots\n\n14) wil: B R2 Wil\n\n15) Babamots: Build Y1 Orion\n\n16) wil: M R2 Wil G3\n\n17) Babamots: Discover Y1 Orion G1 Risa\n\n18) wil: B R2 Wil\n\n19) Babamots: Sacrifice G3 Babamots\nBuild Y2 Risa\nBuild Y3 Orion\nBuild Y3 Babamots\n\n20) wil: B Y3 G3\n\twil: Nice\n\n21) Babamots: Sacrifice Y2 Risa\nMove Y1 Risa G3\nMove Y1 Orion G3\nCatastrophe G3 Y\n\n22) wil: T R2 Y2 Wil\n\n23) Babamots: Move R1 Babamots Orion\n\n24) wil: B R2 Wil\n\n25) Babamots: Build Y1 Orion\n\n26) wil: T R1 B1 Wil\n\n27) Babamots: Trade Y3 G3 Babamots\n\n28) wil: B R1 G3\n\n29) Babamots: Sacrifice G3 Babamots\nBuild Y1 Babamots\nBuild Y2 Orion\nBuild Y3 Babamots\n\twil: Such trouble I've got myself in\n\n30) wil: D Y2 Wil G3 Gee3\n\n31) Babamots: Sacrifice Y1 Babamots\nMove Y3 Orion G3\n\n32) wil: B B1 Wil\n\n33) Babamots: Sacrifice R1 Orion\nAttack R2 G3\n\n34) wil: D B1 Wil Y3 Y3\n\n35) Babamots: Attack R1 G3\n\n36) wil: B B1 Wil\n\n37) Babamots: Build Y1 G3\n\n38) wil: B G1 Wil\n\n39) Babamots: Move Y2 Orion Y3\n\n40) wil: D B1 Y3 G2 G2\n\n41) Babamots: Move R2 G3 G2\n\n42) wil: M B1 Wil Gee3\n\n43) Babamots: Attack B1 G2\n\n44) wil: B B2 Gee3\n\n45) Babamots: Build B2 G2\n\n46) wil: M B1 Gee3 G2\n\n47) Babamots: Trade B1 G1 G2\n\n48) wil: B B1 G2\n\n49) Babamots: Sacrifice Y2 Y3\nMove Y3 G3 Orion\nMove Y3 Orion Gee3\n\n50) wil: S Y2 Gee3\nM B2 Gee3 G2\nC G2 B\nD G1 Wil Y3 Y3\n\n51) Babamots: Build Y2 G3\n\n52) wil: B G1 Wil\n\n53) Babamots: Build Y2 Orion\n\n54) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB B1 Wil\n\tBabamots: I think that y3 investment may not work out for you. Kinda like my mutual fund account.\n\twil: I think that's the least of my troubles\n\n55) Babamots: Trade Y3 B3 Babamots\n\n56) wil: D B1 Wil Y3 Why3\n\n57) Babamots: Move B3 Babamots Orion\n\n58) wil: M B1 Wil Y3\n\n59) Babamots: Move Y2 Orion Y3\n\n60) wil: S G3 Wil\nB B1 Why3\nB B2 Why3\nB G3 Wil\n\n61) Babamots: Sacrifice R2 G2\nAttack B1 Y3\nAttack G2 Y3\n\n62) wil: M B1 Why3 Orion\n\n63) Babamots: Sacrifice G2 Y3\nBuild B2 Y3\nBuild B3 Y3\n\n64) wil: B R1 Wil\n\n65) Babamots: Build R2 G3\n\n66) wil: M R1 Wil Y3\n\n67) Babamots: Move Y1 Orion G3\n\n68) wil: S G3 Wil\nB G2 Y3\nB R2 Y3\nB G3 Wil\n\n69) Babamots: Sacrifice Y2 Y3\nMove B1 Y3 Wil\nMove B2 Y3 Wil\n\n70) wil: S G3 Wil\nB G3 Wil\nB R3 Wil\nB R3 Y3\n\n71) Babamots: Sacrifice Y3 Gee3\nMove B3 Y3 Wil\nMove Y1 G3 Wil\nMove Y1 G3 Wil\nCatastrophe Wil B\n\n72) wil: S B1 Orion\nT R3 Y3 Wil\nC Wil Y\n\n\twil: Gg\n\tBabamots: Thanks! The crews of your ships that surrender will be shown mercy :-).\n\nHomeworlds Online (SDG# 34744)\nVariants: "Hard time"\nStarted: 2018.11.26, Ended: 2019.1.5\nParticipants: ts52 (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B1 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) ts52: Build G1 Ts52\n\tts52: Thanks. You too!\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) ts52: Trade G1 B1 Ts52\n\n7) goulo: Build G1 Goulo\n\n8) ts52: Build B1 Ts52\n\n9) goulo: Trade G1 R1 Goulo\n\n10) ts52: Trade B1 R1 Ts52\n\n11) goulo: Build Y1 Goulo\n\n12) ts52: Build G1 Ts52\n\n13) goulo: Build Y2 Goulo\n\n14) ts52: Build B1 Ts52\n\n15) goulo: Trade Y2 B2 Goulo\n\n16) ts52: Build G1 Ts52\n\n17) goulo: Build Y2 Goulo\n\n18) ts52: Discover G1 Ts52 B3 Gonzo\n\n19) goulo: Discover Y1 Goulo G2 Verdo\n\n20) ts52: Discover B1 Ts52 G3 Kermit\n\n21) goulo: Discover B2 Goulo Y2 Flavo\n\n22) ts52: Build B2 Kermit\n\n23) goulo: Sacrifice G3 Goulo\nBuild B3 Flavo\nBuild B3 Flavo\nBuild Y2 Verdo\n\n24) ts52: Build G1 Ts52\n\n25) goulo: Move Y2 Verdo Gonzo\n\n26) ts52: Discover G1 Ts52 R3 Elmo\n\n27) goulo: Trade B3 G3 Flavo\n\n28) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G2 Gonzo\nBuild G3 Ts52\n\n29) goulo: Sacrifice R1 Goulo\nAttack G2 Gonzo\n\n30) ts52: Discover B1 Ts52 Y3 Bigbird\n\n31) goulo: Build Y3 Verdo\n\n32) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B3 Bigbird\nBuild R1 Ts52\n\n33) goulo: Trade B3 R3 Flavo\n\n34) ts52: Discover B3 Bigbird R2 Tully\n\n35) goulo: Sacrifice G3 Flavo\nBuild G3 Gonzo\nBuild Y3 Goulo\nBuild B3 Flavo\n\n36) ts52: Move G1 Ts52 Bigbird\n\n37) goulo: Move B3 Flavo Kermit\n\n38) ts52: Move R1 Ts52 Bigbird\n\n39) goulo: Sacrifice Y2 Goulo\nMove G3 Gonzo Ts52\nMove B3 Kermit Ts52\n\n40) ts52: Attack B3N Ts52\n\tts52: Well crap, how did I not see that coming? Well played.\n\n41) goulo: Sacrifice R3 Flavo\nAttack R1 Ts52\nAttack B3 Ts52\nAttack G3 Ts52\n\tgoulo: I almost didn't notice this myself! Like you probably were, I was focussed on the more usual "catastrophe strategy" of destroying your homeworld instead of capturing all your ships there.\r\n\r\nIt seemed a tough situation for you with almost no movement ability!\r\n\r\ninteresting good game!\r\n\r\nhappy new year!\n\tts52: Yeah, getting shut out of yellow really hurt. Good game, and Happy New Year!\n\n\nHomeworlds Online (SDG# 34747)\nVariants: "Hard time"\nStarted: 2018.11.27, Ended: 2018.12.29\nParticipants: mneme (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: OK... Homeworlds Tournament, try 2. Thanks for being willing to do this, mneme and Babamots! Have fun! :)\n\n2) mneme: Homeworld R1 G3 B3\n\tmneme: Indeed. Also, as we both know, this is a re-do of game #34708 (http://superdupergames.org/main.html?page=play_homeworlds&num=34708)\r\n\r\nMoves:\r\n1: \thomeworld y3 b1 g3\thomeworld r1 g3 b3\r\n2: \tbuild g1 Laurie_Menke\tbuild b1 mneme\r\n3: \ttrade g1 r1 Laurie_Menke\tbuild b1 mneme\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Thanks for putting the moves in an easy to find location!\n\n4) mneme: Build B1 Mneme\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tmneme: You're welcome--as much for my benefit as yours! huh--I didn't even realize I'd started it as a small universe game!\n\n6) mneme: Build B1 Mneme\n\tLaurie_Menke: Oh! I thought that was on purpose! :) Just FYI... I will be on the road again from tomorrow (Thursday) through Sunday or possibly Monday. I definitely won't time out again, but may play slowly while I'm traveling. Sorry...\n\tmneme: I was experimenting with SU right before the tournament, but yeah, I just went with large/small because I kinda hate goldilocs starts and didn't want to give you a great headsteart, not really thinking about the fact that I was setting up SU as as a result.\r\n\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Makes sense!\n\n8) mneme: Trade B3 Y3 Mneme\n\n9) Laurie_Menke: Build R1 Laurie_menke\n\tmneme: And yeah; playing slowly is fine; I mostly don't think about games when I'm not either making a move or reviewing the move I just made, so it doesn't bother me when the timing slows down.\n\tLaurie_Menke: Thank you! I should be good now for a while. I don't leave again until the 14th, and that's on vacation not business, so I'll still have time to play. :)\n\n10) mneme: Build B2 Mneme\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) mneme: Trade B2 G2 Mneme\n\n13) Laurie_Menke: Build R2 Laurie_menke\n\n14) mneme: Discover G2 Mneme Y2 Caliope\n\n15) Laurie_Menke: Move G1 Laurie_menke Caliope\n\n16) mneme: Build B2 Mneme\n\n17) Laurie_Menke: Trade R2 Y2 Laurie_menke\n\n18) mneme: Trade B2 R2 Mneme\n\n19) Laurie_Menke: Move G1 Caliope Mneme\n\n\tmneme: Ack. I don't know why I don't get reliable game updates, but its cost me games. move was obv a g1 mneme\n\tLaurie_Menke: Alas... OK... Babamots... I think we just need to stick with the original results and say mneme won. We both know they're the better player and would have won eventually. Thank you both for giving this a second shot! Happy New Year! :)\n\tmneme: Ug. I'd be willing to give it a third try if you're game (prolly wouldn't take more than a day to set it up); that feels a lot less dirty than just calling the game for me despite my own timeout. If I can also start a wil game, that should make it easier to maintain time.\n\tLaurie_Menke: I will leave that up to you and Babamots, but I really don't mind just saying we both know you would have won.\n\tBabamots: Would you guys like to play again with "soft" timers? I only put "hard time" in the tournament rules because I knew there would be flakey people. They forget that they were ever in a tournament, the game never ends, and the game list gets cluttered. I trust you two to not wander off.\n\tLaurie_Menke: I'm willing if you are, mneme! Thanks, Babamots! :)\n\tLaurie_Menke: Hi Babamots (and mneme), I'm sorry to do this, but I'm just going to withdraw from the Homeworlds Tournament. I'm in last place anyway and I'm just not able to keep up with my travel schedule. Sorry for the problems I've caused. I'll email you this info as well, Babamots. Thanks for all the fun, everyone! :)\n\nHomeworlds Online (SDG# 34751)\nVariants: "Hard time"\nStarted: 2018.11.28, Ended: 2018.12.1\nParticipants: Felix (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) Felix: Homeworld Y1 G3 Y3 *\n\twil: GL\n\tFelix: HF!\n\n3) wil: B G1 Wil\n\tFelix: Probably not the best time for me to be experimental, but oh well.\n\n4) Felix: Build Y1 Felix\n\twil: Woah\r\n\n\n5) wil: T G1 Y1 Wil\n\n6) Felix: Discover Y1 Felix G2 Out\n\n7) wil: B Y2 Wil\n\n8) Felix: Build Y2 Out\n\n9) wil: D Y1 Wil G3 G3\n\n10) Felix: Move Y1 Out G3\n\n11) wil: D Y1 G3 G2 G2\n\n12) Felix: B Y3 G3\n\n13) wil: B Y3 G2\n\n\tFelix: Well that didn't work at all :)\n\nHomeworlds Online (SDG# 34741)\nStarted: 2018.11.29, Ended: 2019.1.23\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) ts52: Homeworld R3 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build Y2 Trydnt\n\n8) ts52: Build Y2 Ts52\n\n9) Trydnt: Trade Y1 B1 Trydnt\n\n10) ts52: Trade Y2 B2 Ts52\n\n11) Trydnt: Build B1 Trydnt\n\n12) ts52: Discover B2 Ts52 G1 Robin\n\n13) Trydnt: Discover B1 Trydnt G3 G3\n\n14) ts52: Build G1 Ts52\n\n15) Trydnt: Move Y2 Trydnt G3\n\n16) ts52: Trade G1 R1 Ts52\n\n17) Trydnt: Build G1 Trydnt\n\n18) ts52: Build R1 Ts52\n\n19) Trydnt: Trade G1 R1 Trydnt\n\n20) ts52: Move R1 Ts52 Robin\n\n21) Trydnt: Build R2 Trydnt\n\n22) ts52: Build G1 Ts52\n\n23) Trydnt: Move R1 Trydnt G3\n\n24) ts52: Build R2 Robin\n\n25) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G3\nBuild R3 Trydnt\nBuild R3 Trydnt\n\n26) ts52: Trade R2 Y2 Robin\n\n27) Trydnt: Trade R3 G3 Trydnt\n\n28) ts52: Move G1 Ts52 Robin\n\n29) Trydnt: Discover R2 G3 Y1 Y1\n\n30) ts52: Sacrifice G3 Ts52\nBuild Y2 Ts52\nBuild Y3 Ts52\nBuild Y3 Robin\n\n31) Trydnt: Build Y3 G3\n\n32) ts52: Trade Y2 G2 Ts52\n\n33) Trydnt: Discover Y2 G3 G1 G1\n\n34) ts52: Build G2 Ts52\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y1\nBuild R3 G3\nBuild Y2 G1\n\n36) ts52: Move R1 Ts52 Robin\n\n37) Trydnt: Trade R3 G3 Trydnt\n\n38) ts52: Discover B2 Robin R3 Elmo\n\n39) Trydnt: Build B1 G3\n\n40) ts52: Sacrifice G2 Ts52\nBuild B3 Elmo\nBuild G2 Robin\n\n41) Trydnt: Move R3 G3 G1\n\n42) ts52: Move G2 Robin Elmo\n\n43) Trydnt: Move B1 G3 G1\n\n44) ts52: Move Y2 Robin Elmo\n\n45) Trydnt: Move B1 Trydnt Elmo\n\n46) ts52: Move B2 Elmo Robin\n\n47) Trydnt: Build G2 Trydnt\n\n48) ts52: Build B3 Robin\n\n49) Trydnt: Sacrifice G2 Trydnt\nBuild B3 G1\nPass\n\n50) ts52: Attack B1N Elmo\n\n51) Trydnt: Discover B3 G1 G3 G33\n\n52) ts52: D B3 Robin G2 Oscar\n\n53) Trydnt: Sacrifice Y2 G1\nMove R2 Y1 Ts52\nMove R2 Y1 Ts52\n\n54) ts52: A R2 Ts52\n\n55) Trydnt: Move R3 G1 Ts52\nCatastrophe Ts52 R\n\n56) ts52: Move R1 Robin Oscar\n\n57) Trydnt: Sacrifice Y3 G3\nMove B1 G3 Ts52\nMove B1 G1 Ts52\nMove B3 G33 Ts52\nCatastrophe Ts52 B\n\n\tts52: Good game! Well played.\n\tTrydnt: You too :)\n\nHomeworlds Online (SDG# 34740)\nStarted: 2018.11.29, Ended: 2018.12.2\nParticipants: Trydnt (S), MobyNostromo (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 34754)\nStarted: 2018.11.29, Ended: 2019.1.30\nParticipants: ts52 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) ts52: Homeworld R1 B2 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) ts52: Build G1 Ts52\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) ts52: Trade G1 Y1 Ts52\n\n7) Trydnt: Build R1 Trydnt\n\n8) ts52: Build Y1 Ts52\n\n9) Trydnt: Build R2 Trydnt\n\n10) ts52: Build Y1 Ts52\n\n11) Trydnt: Trade R2 Y2 Trydnt\n\n12) ts52: Discover Y1 Ts52 G3 Kermit\n\n13) Trydnt: Discover Y2 Trydnt G1 G1\n\n14) ts52: Build Y2 Ts52\n\n15) Trydnt: Build R2 Trydnt\n\n16) ts52: Trade Y2 R2 Ts52\n\n17) Trydnt: Build Y2 G1\n\tts52: Sorry for the delay.\n\n18) ts52: Build G1 Ts52\n\n19) Trydnt: Discover Y2 G1 B3 B3\n\n20) ts52: Move R2 Ts52 Kermit\n\n21) Trydnt: Move R1 Trydnt G1\n\n22) ts52: Trade Y1 B1 Ts52\n\n23) Trydnt: Discover R1 Trydnt Y1 Y1\n\n24) ts52: Build B1 Ts52\n\n25) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y1\nBuild R3 G1\nBuild R3 Trydnt\n\n26) ts52: Build R3 Kermit\n\n27) Trydnt: Sacrifice Y2 G1\nMove R1 Y1 Kermit\nMove R2 Y1 Kermit\nCatastrophe Kermit R\n\n28) ts52: Trade B1 R1 Ts52\n\n29) Trydnt: Trade R3 G3 Trydnt\n\n30) ts52: Move R1 Ts52 Kermit\n\n31) Trydnt: Build R2 Trydnt\n\n32) ts52: Build B1 Ts52\n\n33) Trydnt: Discover R2 Trydnt G1 G11\n\n34) ts52: Move B1 Ts52 Kermit\n\n35) Trydnt: Build G2 Trydnt\n\n36) ts52: Discover G1 Ts52 B3 Grover\n\n37) Trydnt: Trade G2 B2 Trydnt\n\n38) ts52: Build G2 Grover\n\n39) Trydnt: Move B2 Trydnt G1\n\n40) ts52: Build G2 Ts52\n\n41) Trydnt: Build G2 Trydnt\n\n42) ts52: Trade G2 Y2 Grover\n\n43) Trydnt: Trade R3 Y3 G1\n\n44) ts52: Discover G2 Ts52 B3 Gonzo\n\n45) Trydnt: Move B2 G1 Kermit\n\n46) ts52: Discover B1 Ts52 Y3 Bigbird\n\n47) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Kermit\nAttack Y1 Kermit\n\n48) ts52: Trade G2 R2 Gonzo\n\n49) Trydnt: Attack B1 Kermit\n\n50) ts52: B G2 Ts52\n\n51) Trydnt: Move Y3 G1 Gonzo\n\n52) ts52: S G2 Ts52\nB G2 Ts52\nB B1 Bigbird\n\n53) Trydnt: Sacrifice R1 G1\nAttack R2 Gonzo\n\n54) ts52: Trade B1 R1 Bigbird\n\n55) Trydnt: Build B1 Kermit\n\n56) ts52: Discover G1 Grover Y1 Scooter\n\n57) Trydnt: Build Y2 Kermit\n\n58) ts52: Move G2 Ts52 Bigbird\n\n59) Trydnt: Sacrifice Y2 B3\nMove B1 Kermit Ts52\nMove B1 Kermit Ts52\n\n60) ts52: Build G1 Ts52\n\n61) Trydnt: Sacrifice G2 Trydnt\nBuild B3 Ts52\nCatastrophe Ts52 B\nBuild R2 Gonzo\n\n62) ts52: Move R1 Bigbird Scooter\n\n63) Trydnt: Sacrifice Y3 Gonzo\nMove R2 Gonzo Ts52\nMove R2 Gonzo Ts52\nMove R1 Kermit Ts52\nCatastrophe Ts52 R\n\tts52: Good game!\n\tTrydnt: well played :)\n\n\nHomeworlds Online (SDG# 34756)\nVariants: "Hard time"\nStarted: 2018.11.29, Ended: 2019.1.2\nParticipants: Trydnt (S), Felix (N)\nWinner: Trydnt\n\n1) Felix: Homeworld B2 R3 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\tFelix: Hello again! Good luck and have fun\n\n3) Felix: Build G1 Felix\n\n4) Trydnt: Build G1 Trydnt\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) Felix: Build Y2 Felix\n\n8) Trydnt: Build Y2 Trydnt\n\n9) Felix: Discover Y1 Felix G1 Out\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) Felix: Build Y2 Out\n\n12) Trydnt: Build Y3 G3\n\n13) Felix: Build Y3 Felix\n\n14) Trydnt: Discover Y1 G3 G2 G2\n\n15) Felix: Discover Y1 Out Y3 Intrepid\n\n16) Trydnt: Trade Y2 R2 Trydnt\n\n17) Felix: T Y2 R2 Felix\n\n18) Trydnt: Build Y2 G2\n\n19) Felix: Build Y2 Felix\n\n20) Trydnt: Build G1 Trydnt\n\n21) Felix: Build G1 Felix\n\n22) Trydnt: Trade G1 B1 Trydnt\n\n23) Felix: Trade G1 B1 Felix\n\n24) Trydnt: Build G1 Trydnt\n\n25) Felix: Move B1 Felix Out\n\n26) Trydnt: Move B1 Trydnt G3\n\n27) Felix: Build B1 Out\n\n28) Trydnt: Build B2 G3\n\n29) Felix: Move B1 Out Intrepid\n\n30) Trydnt: Trade B1 R1 G3\n\n31) Felix: Trade B1 G1 Intrepid\n\n32) Trydnt: Move Y3 G3 Out\n\n33) Felix: Build G2 Intrepid\n\n34) Trydnt: Move G1 Trydnt Intrepid\n\n35) Felix: Sacrifice Y2 Felix\nMove G1 Intrepid Trydnt\nMove G2 Intrepid Trydnt\n\n36) Trydnt: Trade G3 R3 Trydnt\n\n37) Felix: Trade G1 R1 Trydnt\n\n38) Trydnt: Sacrifice R2 Trydnt\nAttack R1 Trydnt\nAttack G2 Trydnt\n\n39) Felix: Discover Y2 Out G3 In\n\n40) Trydnt: Build Y2 Out\n\n41) Felix: Sacrifice Y1 Intrepid\nMove B1 Out In\n\n42) Trydnt: Move Y3 Out In\n\n43) Felix: Sacrifice Y2 In\nMove Y3 Felix Out\nMove Y3 Out G3\n\n44) Trydnt: Sacrifice R1 G3\nAttack B1 In\n\n45) Felix: Sacrifice R2 Felix\nAttack B2 G3\nPass\n\n46) Trydnt: Move Y2 G2 G3\n\n47) Felix: Trade Y3 R3 G3\n\n48) Trydnt: Discover Y2 G3 Y1 Y1\n\tFelix: My turn to threaten your little guys :)\n\n49) Felix: Trade B2 Y2 G3\n\n50) Trydnt: Build Y3 Out\n\n51) Felix: Build R1 G3\n\n52) Trydnt: Sacrifice G1 Intrepid\nBuild Y3 G2\n\n53) Felix: Move R1 G3 Trydnt\n\n54) Trydnt: Sacrifice R1 Trydnt\nAttack R1 Trydnt\n\n55) Felix: Build G1 Felix\n\n56) Trydnt: Move R1 Trydnt In\n\n57) Felix: Trade G1 B1 Felix\n\n58) Trydnt: Build G1 Trydnt\n\n59) Felix: Move R3 G3 Y1\n\n60) Trydnt: Move Y2 Y1 In\n\n61) Felix: Build G1 Felix\n\n62) Trydnt: Build G2 Trydnt\n\n63) Felix: Sacrifice Y2 G3\nMove B1 Felix Y1\nMove G1 Felix Y1\n\n64) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 In\nBuild R1 In\n\n65) Felix: Build B1 Y1\n\n66) Trydnt: Build B2 In\n\n67) Felix: Discover B1 Y1 G3 Grinch\n\n68) Trydnt: Sacrifice B1 In\nTrade Y3 B3 Out\n\n69) Felix: T G3 Y3 Felix\n\n70) Trydnt: Move Y1 G2 Grinch\n\n71) Felix: B G2 Y1\n\n72) Trydnt: Build G3 Trydnt\n\n73) Felix: Sacrifice G2 Y1\nBuild B1 Y1\nBuild B3 Grinch\n\n74) Trydnt: Move Y1 Grinch Out\n\n75) Felix: Discover G1 Y1 B3 Walter\n\n76) Trydnt: Sacrifice Y3 In\nMove Y3 G2 Out\nMove Y3 Out Felix\nMove Y1 Out Felix\n\n77) Felix: Sacrifice Y3 Felix\nMove G1 Walter Trydnt\nCatastrophe Trydnt Green\nMove B3 Grinch Trydnt\nMove R3 Y1 Felix\n\n78) Trydnt: Sacrifice R1 In\nAttack R3 Felix\n\n\tFelix: Nicely done!\n\tTrydnt: Thanks well played!\n\nHomeworlds Online (SDG# 34760)\nVariants: "Hard time"\nStarted: 2018.11.29, Ended: 2018.12.5\nParticipants: goulo (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) goulo: Homeworld R3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\tgoulo: howdy\n\tTrydnt: build g1 trydnt\n\n4) goulo: Build G1 Goulo\n\tTrydnt: oops typed that in the wrong spot and gave my move away! how will I recover?! howdy to you to compadre\n\tgoulo: :)\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) Trydnt: Build B1 Trydnt\n\n8) goulo: Build Y1 Goulo\n\n9) Trydnt: Discover B1 Trydnt G1 G1\n\n10) goulo: Trade Y1 G1 Goulo\n\n11) Trydnt: Build B2 G1\n\n12) goulo: Trade G3 B3 Goulo\n\n13) Trydnt: Trade B2 Y2 G1\n\n14) goulo: Build Y1 Goulo\n\n15) Trydnt: Build B2 G1\n\n16) goulo: Trade Y1 R1 Goulo\n\n17) Trydnt: Trade B2 R2 G1\n\n18) goulo: Build Y1 Goulo\n\n19) Trydnt: Build B2 G1\n\n20) goulo: Discover Y1 Goulo G2 Verdo\n\n21) Trydnt: Build R1 G1\n\n22) goulo: Build G1 Goulo\n\n23) Trydnt: Move B2 G1 Verdo\n\n24) goulo: Discover Y1 Verdo Y1 Flavo\n\n25) Trydnt: Build G2 Trydnt\n\n26) goulo: Discover G1 Goulo Y2 Flavumo\n\n27) Trydnt: Sacrifice G2 Trydnt\nBuild B2 Verdo\nBuild B3 G1\n\n28) goulo: Trade B3 G3 Goulo\n\n29) Trydnt: Build B3 Verdo\n\n30) goulo: Sacrifice G3 Goulo\nBuild Y2 Flavo\nBuild Y3 Goulo\nBuild Y3 Goulo\n\n31) Trydnt: Trade B3 R3 Verdo\n\n32) goulo: Build G2 Goulo\n\n33) Trydnt: Build B3 Verdo\n\n34) goulo: Discover Y1 Goulo G2 Verdumo\n\n35) Trydnt: Build G3 Trydnt\n\n36) goulo: Build G3 Flavumo\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B3 G1\nBuild R1 Verdo\n\n38) goulo: Move G1 Flavumo Flavo\n\n39) Trydnt: Move G3 Trydnt Flavo\n\n40) goulo: Sacrifice Y3 Goulo\nMove G1 Flavo Trydnt\nMove G3 Flavumo Flavo\nMove G3 Flavo Trydnt\n\n41) Trydnt: Sacrifice R2 G1\nAttack G3 Trydnt\nAttack G1 Trydnt\n\n\tgoulo: I was hallucinating about a desperate ploy... seems a suitable moment to resign this lost game! congrats!\n\tTrydnt: good game\n\tDraw5PlayAll: I would have bombed those greens @ Trydnt, even though north could just send the R3@Verdo to goulo and the B3@g1 to Trydnt... but it would have been a nice desperate move\n\nHomeworlds Online (SDG# 34762)\nVariants: "Hard time"\nStarted: 2018.11.29, Ended: 2018.12.8\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Trydnt: Homeworld B2 R3 G3\n\tdlwillson: GLHF!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Trydnt: Build Y2 Trydnt\n\n9) dlwillson: T Y1 R1 Dlwillson\n\n10) Trydnt: Build G1 Trydnt\n\n11) dlwillson: Build R1 Dlwillson\n\n12) Trydnt: Trade G1 R1 Trydnt\n\n13) dlwillson: Build R2 Dlwillson\n\n14) Trydnt: Build R2 Trydnt\n\n15) dlwillson: Discover R1 Dlwillson G2 Field\n\n16) Trydnt: Discover R2 Trydnt G1 G1\n\n17) dlwillson: D R2 Dlwillson B2 Sea\n\n18) Trydnt: Move Y1 Trydnt G1\n\n19) dlwillson: B G1 Dlwillson\n\n20) Trydnt: Build Y1 G1\n\n21) dlwillson: M Y2 Dlwillson Field\n\n22) Trydnt: Discover Y1 G1 G2 G2\n\n23) dlwillson: S G3 Dlwillson\nB R2 Sea\nB R3 Field\nB R3 Dlwillson\n\n24) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G2\nBuild Y3 G1\nBuild Y3 Trydnt\n\n25) dlwillson: B Y3 Field\n\n26) Trydnt: Trade Y3 G3 Trydnt\n\n27) dlwillson: S Y2 Field\nD R3 Field B1 Sky\nM R2 Sea Sky\n\n28) Trydnt: Move R1 Trydnt G1\n\n29) dlwillson: Trade R2 G2 Sky\n\n30) Trydnt: Discover R1 G1 R2 R2\n\n31) dlwillson: Build G1 Sky\n\n32) Trydnt: Sacrifice Y3 G1\nMove R1 R2 Dlwillson\nMove R2 G1 G2\nMove R2 G2 Dlwillson\nCatastrophe Dlwillson R\n\n33) dlwillson: Build G3 Dlwillson\n\n34) Trydnt: Discover Y1 G1 B2 B2\n\n35) dlwillson: T R3 Y3 Sky\n\n36) Trydnt: Trade Y1 G1 B2\n\n37) dlwillson: S G3 Dlwillson\nB Y1 Sky\nB G3 Sky\nB G3 Dlwillson\n\n38) Trydnt: Sacrifice Y1 G2\nMove G1 B2 Sky\nCatastrophe Sky G\n\n39) dlwillson: T Y1 G1 Sky\n\n40) Trydnt: Build Y1 Trydnt\n\n41) dlwillson: S G3 Dlwillson\nB G1 Sky\nB G2 Sky\nB G3 Dlwillson\n\n\nHomeworlds Online (SDG# 34759)\nVariants: "Hard time"\nStarted: 2018.11.29, Ended: 2019.2.5\nParticipants: Babamots (S), Trydnt (N)\nWinner: Babamots\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) Babamots: Homeworld R2 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Babamots: Build G1 Babamots\n\n5) Trydnt: Trade G1 B1 Trydnt\n\tBabamots: Good luck and all that!\r\n\r\nI know you less than some of the other players. I think someone said you're in the UK? I'm in the eastern US like most of the Homeworlds people.\n\tTrydnt: And to you! Yeah I was living near Wil and Andy and everyone in MD but moved back to the UK in May and have been trying to slowly convert everyone to HW over here\n\n6) Babamots: Trade G1 B1 Babamots\n\n7) Trydnt: Build B2 Trydnt\n\n8) Babamots: Build B2 Babamots\n\n9) Trydnt: Discover B2 Trydnt G1 G1\n\n10) Babamots: Trade B1 Y1 Babamots\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild B1 G1\nBuild B3 G1\nBuild B3 Trydnt\n\n12) Babamots: Build B3 Babamots\n\n13) Trydnt: Trade B2 Y2 G1\n\n14) Babamots: Discover B3 Babamots G3 Risa\n\n15) Trydnt: Trade B3 G3 Trydnt\n\n16) Babamots: Build G1 Babamots\n\n17) Trydnt: Build Y1 G1\n\n18) Babamots: Build Y1 Babamots\n\n19) Trydnt: Build Y2 G1\n\n20) Babamots: Move Y1 Babamots Risa\n\n21) Trydnt: Trade Y1 R1 G1\n\n22) Babamots: Trade G1 R1 Babamots\n\n23) Trydnt: Build R1 G1\n\n24) Babamots: Move R1 Babamots Risa\n\n25) Trydnt: Discover Y2 G1 B3 B3\n\n26) Babamots: Build B2 Risa\n\n27) Trydnt: Trade B3 Y3 G1\n\n28) Babamots: Discover Y1 Babamots B3 Bolarus\n\n29) Trydnt: Trade Y2 G2 B3\n\n30) Babamots: Build R2 Risa\n\n31) Trydnt: Build G1 B3\n\n32) Babamots: Trade R2 Y2 Risa\n\n33) Trydnt: Move Y2 G1 Bolarus\n\n34) Babamots: Move Y1 Bolarus Babamots\n\n35) Trydnt: Build Y1 G1\n\n36) Babamots: Move Y1 Risa G1\n\n37) Trydnt: Discover Y1 G1 Y3 Y3\n\n38) Babamots: Build Y2 Babamots\n\n39) Trydnt: Attack Y1 G1\n\n40) Babamots: Build R2 Risa\n\n41) Trydnt: Discover Y2 Bolarus G2 G2\n\n42) Babamots: Discover Y1 Babamots B3 Andoria\n\n43) Trydnt: Build G1 Trydnt\n\n44) Babamots: Build G2 Babamots\n\n45) Trydnt: Sacrifice Y2 G2\nMove G1 B3 Babamots\nMove G2 B3 Babamots\nCatastrophe Babamots G\n\n46) Babamots: Trade B2 G2 Babamots\n\n47) Trydnt: Build B2 G1\n\n48) Babamots: Move B3 Risa Babamots\n\n49) Trydnt: Discover B2 G1 G3 G3\n\n50) Babamots: Build B3 Risa\n\n51) Trydnt: Discover R1 G1 R3 R3\n\n52) Babamots: Build Y2 Babamots\n\n53) Trydnt: Build R2 G1\n\n54) Babamots: Trade R1 G1 Risa\n\n55) Trydnt: Move G1 Trydnt G1\n\n56) Babamots: Move G1 Risa G1\n\n57) Trydnt: Sacrifice Y3 G1\nMove B2 G3 Babamots\nMove B1 G1 Andoria\nMove B1 Andoria Babamots\nCatastrophe Babamots B\n\n58) Babamots: Build Y3 Risa\n\n59) Trydnt: Sacrifice Y1 Y3\nMove R2 G1 Babamots\n\n60) Babamots: Attack R2 Babamots\n\n61) Trydnt: Move R1 G1 Babamots\n\n62) Babamots: Sacrifice R2 Babamots\nAttack R1 Babamots\nAttack Y1 G1\n\n63) Trydnt: Build G2 Trydnt\n\n64) Babamots: Sacrifice Y3 Risa\nMove G1 G1 Trydnt\nMove G2 Babamots G1\nMove G2 G1 Trydnt\nCatastrophe Trydnt G\n\tBabamots: Ooh, you're not going to like this.\n\n65) Trydnt: Trade B1 G1 Trydnt\n\tBabamots: My first encounter with the tricky red sacrifice thing was a super painful lesson. Here's my humiliation, if you're interested:\r\n\r\nhttp://superdupergames.org/?page=archive_play&gid=33901&idx=85\n\n\nHomeworlds Online (SDG# 34764)\nVariants: "Hard time"\nStarted: 2018.12.2, Ended: 2019.1.6\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B2 G3\n\n2) wil: H B3 Y2 G3\n\tFelix: This game is for the tournament, si?\n\twil: Cool\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\n5) Felix: Trade G1 Y1 Felix\n\n6) wil: T G1 R1 Wil\n\n7) Felix: Build Y1 Felix\n\n8) wil: B R1 Wil\n\n9) Felix: Build Y1 Felix\n\n10) wil: B R2 Wil\n\n11) Felix: Discover Y1 Felix B3 Bluey\n\n12) wil: D R1 Wil B1 B1\n\n13) Felix: Sacrifice G3 Felix\nBuild Y2 Bluey\nBuild Y2 Bluey\nBuild Y3 Felix\n\n14) wil: S G3 Wil\nB R2 B1\nB R2 B1\nB R3 Wil\n\n15) Felix: Discover Y1 Bluey G2 Greeny\n\twil: I never know where these go\n\n16) wil: T R3 Y3 Wil\n\tFelix: Me either. Guns or mobility? I opted for mobility.\n\n17) Felix: Build Y3 Greeny\n\n18) wil: T R2 G2 B1\n\n19) Felix: Trade Y2 R2 Bluey\n\n20) wil: T R2 Y2 B1\n\n21) Felix: Sacrifice Y1 Felix\nMove Y3 Greeny B1\n\n22) wil: S G2 B1\nB R2 B1\nB R3 Wil\n\twil: Yeah...not good\n\n23) Felix: Sacrifice R2 Bluey\nAttack R2 B1\nAttack Y2 B1\n\n24) wil: T R3 G3 Wil\n\tFelix: Me likey :)\n\n25) Felix: Attack R1 B1\n\n26) wil: D Y3 Wil G1 G1\n\n27) Felix: Build Y1 Greeny\n\n28) wil: M R1 Wil G1\n\n29) Felix: Trade R1 G1 B1\n\n30) wil: M R1 G1 Greeny\n\n31) Felix: Sacrifice R2 B1\nAttack R1 Greeny\nPass\n\n32) wil: B R1 Wil\n\n33) Felix: Build R2 Greeny\n\n34) wil: M R1 Wil G1\n\n35) Felix: Move R2 Greeny B1\n\n36) wil: B G1 Wil\n\n37) Felix: B G2 B1\n\n38) wil: D G1 Wil B1 Be1\n\n39) Felix: T G1 B1 B1\n\n40) wil: B G1 Wil\n\n41) Felix: B G2 B1\n\n42) wil: B G3 Be1\n\n43) Felix: Move G2 B1 Bluey\n\n44) wil: T G3 R3 Be1\n\n45) Felix: Build G3 B1\n\n46) wil: B G3 Be1\n\n47) Felix: S Y3 Felix\nM G2 B1 Wil\nM G3 B1 Wil\nM Y3 B1 Wil\nC Wil Green\n\n48) wil: S G3 Be1\nB R2 Wil\nB R3 Be1\nB R3 G1\n\n49) Felix: Sacrifice R2 B1\nAttack R2 Wil\nAttack R2 Wil\n\twil: Just so it doesn't look like a massacre\n\tFelix: Huh, interesting. I was sure you'd sacrifice your Y3 to move two ships home and a medium into my system to attack. Maybe I misread it and you couldn't do that. Either way, good game!\n\twil: I could but it would only delay 2.moves\n\n\nHomeworlds Online (SDG# 34752)\nVariants: "Hard time"\nStarted: 2018.12.2, Ended: 2018.12.16\nParticipants: eliscinsky (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) eliscinsky: Homeworld R1 B3 G3\n\n3) wil: B G1 Wil\n\teliscinsky: For the Great Homeworlds Tournament\n\teliscinsky: Hi wil, great to see you back. Looking forward to learning a lot from our game. :)\r\nGood Luck!\n\twil: is the short universe intentional\n\twil: I'll hold off a minute,\n\teliscinsky: Thanks, I was so excited to play you I lost my mine.\n\n4) eliscinsky: B G1 Eliscinsky\n\teliscinsky: Cheers!\n\n5) wil: T G1 B1 Wil\n\twil: No worries\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\n7) wil: B B1 Wil\n\n8) eliscinsky: B G1 Eliscinsky\n\n9) wil: D B1 Wil G3 G3\n\teliscinsky: Ah, nice move there.\n\n10) eliscinsky: Discover G1 Eliscinsky B2 Rigel\n\n11) wil: S G3 Wil\nB B2 G3\nB B2 G3\nB B3 Wil\n\twil: Are you in the tourney Is this legit\n\n12) eliscinsky: B G1 Rigel\n\teliscinsky: Yes we're both in the tourney, and this is a legit game. Are you good with that? Playing for all the marbles! ;)\n\twil: Good cool, I am way bhind\n\n13) wil: S B2 G3\nT B2 Y2 G3\nT B3 G3 Wil\n\n14) eliscinsky: T G1 R1 Rigel\n\twil: Waiting on stroke MRI results\n\teliscinsky: Hoping your results are all positive for you. \n\n15) wil: S G3 Wil\nB B2 G3\nB B2 G3\nB B3 Wil\n\twil: Came thru again...\n\n16) eliscinsky: B G1 Rigel\n\teliscinsky: Great, good to hear. Congrats! \n\teliscinsky: BTW, that was a cool couple of moves. I'll have to remember that for my next game. \n\n17) wil: S B2 G3\nT B2 R2 G3\nT B3 G3 Wil\n\n18) eliscinsky: T G1 Y1 Rigel\n\twil: Blue freeze out is powerful\n\n19) wil: S G3 Wil\nB B2 G3\nB B2 G3\nB B3 Wil\n\n20) eliscinsky: Discover Y1 Rigel G3 Orion\n\n21) wil: M B2 G3 Rigel\n\n22) eliscinsky: B G1 Rigel\n\n23) wil: B B3 G3\n\n24) eliscinsky: B Y1 Orion\n\n25) wil: S B2 G3\nT B3 Y3 G3\nT B3 Y3 Wil\n\n26) eliscinsky: B Y2 Eliscinsky\n\n27) wil: S R2 G3\nA R1 Rigel\nA G1 Rigel\n\n28) eliscinsky: S Y2 Eliscinsky\nM Y1 Orion Wil\nM Y1 Orion Wil\nC Wil Yellow\n\n29) wil: B B2 Rigel\n\n30) eliscinsky: S Y1 Eliscinsky\nM G1 Rigel Wil\n\n31) wil: S R1 Rigel\nA G1 Wil\n\n32) eliscinsky: Build G1 Eliscinsky\n\n33) wil: B G2 Rigel\n\n34) eliscinsky: Trade G1 Y1 Eliscinsky\n\n35) wil: B B3 G3\n\n36) eliscinsky: Build Y1 Eliscinsky\n\teliscinsky: So I'm effectively back to "Square One" haha!\n\n37) wil: B B3 G3\n\n38) eliscinsky: M Y1 Eliscinsky Rigel\n\twil: Sort of\n\n39) wil: S B2 Rigel\nT B3 G3 G3\nT B3 R3 G3\n\n40) eliscinsky: Build Y1 Eliscinsky\n\n41) wil: S G3 G3\nB B2 G3\nB B3 G3\nB B3 Rigel\n\n42) eliscinsky: Trade Y1 R1 Rigel\n\n43) wil: S B2 G3\nT B2 R2 Rigel\nT B3 G3 G3\n\n44) eliscinsky: Attack G1 Rigel\n\n45) wil: A R1 Rigel\n\n46) eliscinsky: Build G1 Rigel\n\n47) wil: S R2 Rigel\nA G1 Rigel\nA G1 Rigel\n\n48) eliscinsky: T Y1 R1 Eliscinsky\n\n49) wil: S Y3 G3\nM G1 Rigel Eliscinsky\nM G1 Rigel Eliscinsky\nM G2 Rigel Eliscinsky\nC Eliscinsky G\n\n50) eliscinsky: Trade R1 G1 Eliscinsky\n\n51) wil: S Y2 G3\nM G3 G3 Rigel\nM G3 Rigel Eliscinsky\n\teliscinsky: You've made this a very frustrating game for me. However, I'm learning a lot from your strategies. So for that ... Thank you kind Sir!\n\twil: You are welcome!\n\twil: Tis the way we learn\n\n52) eliscinsky: B G1 Eliscinsky\n\teliscinsky: So I'm guessing regardless of what I do next, your next move will be to move three Green Ships into my home world, catastrophe my green, then again regardless what I do next, you move a big red into my home world, and proceeded to take over my home world. Does that about sum it up?\n\n53) wil: S R3 G3\nA G1 Eliscinsky\nA G1 Eliscinsky\nA Y1 Eliscinsky\n\twil: That was the thought.\n\n\teliscinsky: Great game wil. Thanks for the lessons!\n\twil: I like playing, challenge anytime!\n\nHomeworlds Online (SDG# 34768)\nVariants: "Hard time"\nStarted: 2018.12.3, Ended: 2018.12.19\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) wil: H B2 Y1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) wil: T G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: B Y2 Wil\n\twil: Mother stroke, clean recovery\n\n9) Trydnt: Discover Y1 Trydnt G1 G1\n\n10) wil: D Y1 Wil G3 G3\n\tTrydnt: what?\n\twil: cardiologists,.neurologists, MRI, CTscans\n\n11) Trydnt: Build Y3 G1\n\tTrydnt: Was this a new issue? Happy that you've made a clean recovery :)\n\n12) wil: B Y3 G3\n\twil: 3 strokes during open heart surgery\n\n13) Trydnt: Discover Y1 G1 B3 B3\n\tTrydnt: you are a hell of a fighter. it's been lovely seeing you recover and get back to hw and juggling and the things you love\n\n14) wil: D Y2 Wil Y3 Y3\n\n15) Trydnt: Trade Y2 R2 Trydnt\n\twil: Used up 2.many lives\n\twil: Walking time bomb now\n\n16) wil: B G1 Wil\n\n17) Trydnt: Build Y2 G1\n\n18) wil: T G1 R1 Wil\n\n19) Trydnt: Build R1 Trydnt\n\n20) wil: M Y1 G3 G1\n\n21) Trydnt: Move Y3 G1 B3\n\n22) wil: B R1 Wil\n\n23) Trydnt: Trade Y1 G1 B3\n\n24) wil: T R1 B1 Wil\n\n25) Trydnt: Trade R1 B1 Trydnt\n\n26) wil: B R1 Wil\n\n27) Trydnt: Build G1 B3\n\n28) wil: M B1 Wil G3\n\n29) Trydnt: Trade G1 R1 B3\n\n30) wil: M R1 Wil G3\n\n31) Trydnt: Build R2 B3\n\n32) wil: B R2 Wil\n\n33) Trydnt: Build R3 Trydnt\n\n34) wil: B R3 G3\n\n35) Trydnt: Move R3 Trydnt G1\n\n36) wil: D Y1 G1 R3 R3\n\n37) Trydnt: Build Y1 B3\n\n38) wil: B B1 G3\n\n39) Trydnt: Build G1 B3\n\n40) wil: B B2 G3\n\tTrydnt: this is one of those moves where I'd love to have a game duplicator to play a few different versions going forward\n\twil: Yup\n\n41) Trydnt: Move B1 Trydnt G1\n\n42) wil: Move B1 G3 G1\n\n43) Trydnt: Attack B1 G1\n\n44) wil: M B1 G3 G1\n\n45) Trydnt: Attack B1 G1\n\n46) wil: B B2 G3\n\n47) Trydnt: Sacrifice B1 G1\nTrade R2 G2 B3\n\n48) wil: M R2 Wil Y3\n\n49) Trydnt: Move G1 B3 Wil\n\n50) wil: A G1 Wil\n\n51) Trydnt: Move G1 B3 Wil\n\n52) wil: M G1 Wil G3\n\n53) Trydnt: Sacrifice Y3 B3\nMove G1 Wil G3\nMove G2 B3 G1\nMove G2 G1 G3\nCatastrophe G3 G\n\n54) wil: B G1 Wil\n\n55) Trydnt: Build Y3 G1\n\n56) wil: S G1 Wil\nB Y3 R3\n\n57) Trydnt: Sacrifice G3 Trydnt\nBuild R1 G1\nBuild R2 B3\nBuild R3 Trydnt\n\n58) wil: B G1 Wil\n\n59) Trydnt: Trade R2 G2 B3\n\n60) wil: B R2 Wil\n\n61) Trydnt: Build G1 B3\n\n62) wil: M G1 Wil R3\n\n63) Trydnt: Move R3 G1 B3\n\n64) wil: B G2 R3\n\n65) Trydnt: Discover G1 B3 B1 B1\n\n66) wil: M G2 R3 B1\n\n67) Trydnt: Sacrifice G1 B1\nBuild B2 G1\n\n68) wil: B G1 R3\n\n69) Trydnt: Discover B2 G1 G3 G3\n\n70) wil: S Y2 Y3\nM G1 R3 Wil\nM R1 Wil Y3\n\n71) Trydnt: Build Y2 B3\n\n72) wil: M R2 Y3 B1\n\n73) Trydnt: Sacrifice B2 G3\nTrade R3 G3 Trydnt\nTrade Y3 R3 G1\n\n74) wil: S Y1 R3\nD G2 B1 Y3 Why3\n\n75) Trydnt: Move R3 G1 Why3\n\n76) wil: D G2 Why3 Y1 Why1\n\n77) Trydnt: Sacrifice B1 G1\nTrade R3 G3 Why3\n\n78) wil: S G3 Wil\nB G2 R3\nB G3 Wil\nB R3 Y3\n\n79) Trydnt: Sacrifice G3 Why3\nBuild G3 B3\nBuild Y3 G1\nBuild B1 G1\n\n80) wil: T R2 B2 B1\n\n81) Trydnt: Sacrifice Y3 G1\nMove G3 B3 Wil\nMove G2 B3 Wil\nCatastrophe Wil G\nMove R3 B3 Wil\n\n\nHomeworlds Online (SDG# 34758)\nVariants: "Hard time"\nStarted: 2018.12.3, Ended: 2018.12.4\nParticipants: Wildhide_The_Druid (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n\tWildhide_The_Druid: R3, B1, G3\n\tWildhide_The_Druid: Homeworld (R3, B1, G3)\n\tWildhide_The_Druid: homeworld R3 B1 G3\n\tWildhide_The_Druid: Homeworld(R3, B1, G3)\n\tWildhide_The_Druid: How do I do the commands?\n\tTrydnt: there's a command box top left of the page\n\nHomeworlds Online (SDG# 34728)\nVariants: "Unrated"\nStarted: 2018.12.4, Ended: 2019.6.24\nParticipants: wil (S), Wildhide_The_Druid (N)\nWinner: wil\n\n\tWildhide_The_Druid: Homeworld R2 B1 G3\n\nHomeworlds Online (SDG# 34757)\nVariants: "Hard time"\nStarted: 2018.12.4, Ended: 2019.2.7\nParticipants: Laurie_Menke (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld Y3 B2 G3\n\tLaurie_Menke: Hi Trydnt! Have fun!\n\n2) Laurie_Menke: Homeworld B1 Y3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n7) Trydnt: Build B2 Trydnt\n\n8) Laurie_Menke: Build G1 Laurie_menke\n\n9) Trydnt: Discover B2 Trydnt G1 G1\n\n10) Laurie_Menke: Build B2 Laurie_menke\n\n11) Trydnt: Build B3 G1\n\n12) Laurie_Menke: Trade B2 Y2 Laurie_menke\n\n13) Trydnt: Trade B3 Y3 G1\n\n14) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n15) Trydnt: Build B2 G1\n\n16) Laurie_Menke: Discover B1 Laurie_menke G2 Green\n\tLaurie_Menke: discover b1 Laurie_Menke g2 Green\n\tLaurie_Menke: Oops! Didn't realize I was in chat! Sorry!\n\n17) Trydnt: Trade B2 R2 G1\n\n18) Laurie_Menke: Build R1 Laurie_menke\n\n19) Trydnt: Move R2 G1 Green\n\n20) Laurie_Menke: Sacrifice B1 Green\nTrade R1 B1 Laurie_menke\n\n21) Trydnt: Build Y1 G1\n\n22) Laurie_Menke: Build R1 Laurie_menke\n\n23) Trydnt: Build Y1 G1\n\n24) Laurie_Menke: Discover Y2 Laurie_menke G2 Seeya\n\n25) Trydnt: Move Y1 G1 Green\n\n26) Laurie_Menke: Move B1 Laurie_menke Seeya\n\n27) Trydnt: Build G1 Trydnt\n\n28) Laurie_Menke: Build G1 Laurie_menke\n\n29) Trydnt: Build G2 Trydnt\n\n30) Laurie_Menke: Move G1 Laurie_menke Seeya\n\n31) Trydnt: Sacrifice G2 Trydnt\nBuild Y1 Green\nBuild Y2 Green\n\n32) Laurie_Menke: Sacrifice Y2 Seeya\nMove G1 Seeya G1\nMove G1 G1 Trydnt\n\n33) Trydnt: Sacrifice G1 Trydnt\nBuild R1 Green\n\n34) Laurie_Menke: Build B2 Seeya\n\n35) Trydnt: Build B3 G1\n\n36) Laurie_Menke: Trade B2 Y2 Seeya\n\n37) Trydnt: Sacrifice R1 Green\nAttack G1 Trydnt\n\n38) Laurie_Menke: Build Y2 Seeya\n\n39) Trydnt: Sacrifice Y2 Green\nDiscover B3 G1 G2 G2\nMove Y1 G1 G2\n\n40) Laurie_Menke: Move Y2 Seeya G1\n\n41) Trydnt: Build Y2 G2\n\n42) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack B2 G1\n\n43) Trydnt: Sacrifice R2 Green\nAttack Y2 G1\nAttack B2 G1\n\n44) Laurie_Menke: Build R1 Laurie_menke\n\n45) Trydnt: Trade Y2 R2 G1\n\n46) Laurie_Menke: Discover B1 Seeya G1 Hi\n\n47) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 G1\n\n48) Laurie_Menke: Move Y2 Seeya Hi\n\n49) Trydnt: Move G3 Trydnt Hi\n\n50) Laurie_Menke: Sacrifice Y2 Hi\nMove B1 Hi Trydnt\nMove R1 Laurie_menke Green\n\n51) Trydnt: Sacrifice R2 G1\nAttack B1 Trydnt\nAttack R1 Green\n\n52) Laurie_Menke: Build G2 Laurie_menke\n\n53) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild Y2 Green\nBuild B2 G2\n\n54) Laurie_Menke: Build R1 Laurie_menke\n\n55) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild B3 G2\nBuild B3 G1\n\n56) Laurie_Menke: Build R2 Laurie_menke\n\n57) Trydnt: Sacrifice Y2 G2\nMove Y1 Green Laurie_menke\nMove Y1 Green Laurie_menke\n\n58) Laurie_Menke: Sacrifice R2 Laurie_menke\nAttack Y1 Laurie_menke\nAttack Y1 Laurie_menke\n\n59) Trydnt: Move Y2 Green Laurie_menke\nCatastrophe Laurie_menke Y\n\n60) Laurie_Menke: Build R2 Laurie_menke\n\tLaurie_Menke: Dude... why are you not finishing me off?\n\n61) Trydnt: Sacrifice Y3 G1\nMove B1 Trydnt Laurie_menke\nMove B1 Trydnt Laurie_menke\nMove B2 G2 Laurie_menke\nCatastrophe Laurie_menke B\n\n\tLaurie_Menke: Thanks for the fun, Trydnt, and congrats on the win! :)\n\tTrydnt: well played :) always a pleasure\n\nHomeworlds Online (SDG# 34739)\nVariants: "Hard time"\nStarted: 2018.12.5, Ended: 2018.12.6\nParticipants: Trydnt (S), phi_618 (N)\nWinner: Trydnt\n\n1) phi_618: Homeworld B3 Y2 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\tphi_618: good luck and have fun!\n\n3) phi_618: Build G1 Phi_618\n\n4) Trydnt: Build G1 Trydnt\n\n5) phi_618: Discover G1 Phi_618 B1 Newb1\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) phi_618: Build G1 Newb1\n\n8) Trydnt: Build Y1 Trydnt\n\n9) phi_618: Trade G1 B1 Newb1\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) phi_618: Build G1 Newb1\n\n12) Trydnt: Build Y2 Trydnt\n\n13) phi_618: Build B1 Newb1\n\n14) Trydnt: Build Y2 G3\n\n15) phi_618: Build G1 Phi_618\n\n16) Trydnt: Build Y3 G3\n\n17) phi_618: Trade G1 R1 Phi_618\n\n18) Trydnt: Trade Y2 R2 Trydnt\n\n19) phi_618: Trade B1 R1 Newb1\n\n20) Trydnt: Build Y2 Trydnt\n\n\tphi_618: Thank you for the game.\n\tTrydnt: no worries. you gotta look out for the small piece in the homeworlds at the start. whichever color was taken will leave only two smalls of that color left and so you have to take it or your opponent will be able to monopolize it in the next turn and there will be no smalls left to trade for then they're in the big guns and you won't be able to catch up easily\n\tphi_618: Thanks; that's a good way of explaining what went wrong here in a way easily applicable to future games.\n\tTrydnt: It was one of the best tips my teacher gave me early on. That and if you're going second it is often best to copy your opponent's moves in the beginning until you end up in a spot where to do so would open up a larger piece for them.\n\tphi_618: Ahh, kindof an application of the go proverb "Your opponent's best move is your best move" to the more independent initial stages of Homeworlds.\n\tTrydnt: Yup, in Go it stems from the position of the pieces but in HW it's really follows from the "focus on the economies" advice and trying to maintain a diverse portfolio scattered around to minimize risk of catastrophe \n\nHomeworlds Online (SDG# 34603)\nVariants: "Unrated"\nStarted: 2018.12.6, Ended: 2018.12.8\nParticipants: Trydnt (S), phi_618 (N)\nWinner: Trydnt\n\n1) phi_618: Homeworld B1 Y2 G3\n\n2) Trydnt: Homeworld G3 B1 B3 *\n\tphi_618: Good luck and have fun, again. :)\n\n3) phi_618: Build G1 Phi_618\n\tTrydnt: today's lesson, why you never take a b1 in your homeworld if you are going first\n\tphi_618: And the same would be said for a g1, but a y1 or r1 would have been fine?\n\n4) Trydnt: Build B1 Trydnt\n\tTrydnt: Yes. You start with three pieces. Two of those have to be blue and green then red or yellow for the third. If you take a blue or a green 1 first then your opponent can take the same and that color as a large ship with the remaining color in the other half of their star\n\n5) phi_618: Trade G3 B3 Phi_618\n\tphi_618: So Proverb 1: If your opponent builds a small of a color you do not yet have, do likewise.\r\nProverb 2: Playing second, follow in the footsteps of the first player until a clearer path emerges.\r\nProverb 3: Avoid a b1 or g1 Homeworld if playing first.\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\tphi_618: I guess this isn't as bad as last time. This time it's just like I passed my turn, instead of being completely locked out of a color.\n\tphi_618: not a good time to be down a tempo, though, the more I think about the situation.\n\n7) phi_618: Build B2 Phi_618\n\n8) Trydnt: Build B2 Trydnt\n\n9) phi_618: Trade B2 Y2 Phi_618\n\n10) Trydnt: Discover B1 Trydnt G2 G2\n\n11) phi_618: Discover G1 Phi_618 B3 B3\n\n12) Trydnt: Build B2 G2\n\n13) phi_618: Build G1 B3\n\n14) Trydnt: Trade B2 Y2 G2\n\n15) phi_618: Trade G1 Y1 B3\n\n16) Trydnt: Build B2 G2\n\n17) phi_618: Build G1 B3\n\n18) Trydnt: Trade B2 R2 G2\n\n19) phi_618: Trade Y2 R2 Phi_618\n\n20) Trydnt: Move R2 G2 B3\n\n21) phi_618: Move Y1 B3 Phi_618\n\n22) Trydnt: Attack G1 B3\n\n\tphi_618: Thank you for the game.\n\tTrydnt: no worries. I have standing challenges open so down to play anytime\n\nHomeworlds Online (SDG# 34782)\nVariants: "Hard time"\nStarted: 2018.12.6, Ended: 2018.12.22\nParticipants: Laurie_Menke (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R3 B2 G3\n\tLaurie_Menke: Hi ajo! Have fun with the 2018 Homeworlds Tournament! (Don't forget to fill out the start form...) :)\n\tajo: Will do. Good luck!\n\n2) Laurie_Menke: Homeworld Y1 B2 Y3 *\n\n3) ajo: Build G1 Ajo\n\n4) Laurie_Menke: Trade Y3 G3 Laurie_menke\n\tajo: ...Interesting.\n\tLaurie_Menke: Oh, yeah... I totally screwed up... LOL! I thought I was trying something clever, but forgot I needed green to pull it off. ::sigh::\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) Laurie_Menke: Build G1 Laurie_menke\n\n7) ajo: Build G1 Ajo\n\n8) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n9) ajo: Discover G1 Ajo Y1 Alpha\n\n10) Laurie_Menke: Build G1 Laurie_menke\n\n11) ajo: Build Y2 Ajo\n\n12) Laurie_Menke: Trade G3 Y3 Laurie_menke\n\n13) ajo: Discover Y1 Ajo B1 Beta\n\n14) Laurie_Menke: Discover Y3 Laurie_menke G3 Green\n\tLaurie_Menke: Well, this is highly unorthodox, but...\n\n15) ajo: Sacrifice G3 Ajo\nBuild Y2 Beta\nBuild Y2 Beta\nBuild Y3 Ajo\n\n16) Laurie_Menke: Discover Y3 Green G1 Hi\n\tajo: Yep, probably not a good move.\n\tLaurie_Menke: Well, in for a penny in for a pound!\n\n17) ajo: Trade Y2 R2 Beta\n\n18) Laurie_Menke: Build Y2 Hi\n\n19) ajo: Sacrifice Y2 Ajo\nDiscover Y2 Beta Y3 Waypoint\nMove Y2 Waypoint Laurie_menke\n\n20) Laurie_Menke: Build G2 Laurie_menke\n\tajo: Check.\n\n21) ajo: Sacrifice R2 Beta\nAttack R1 Laurie_menke\nAttack G2 Laurie_menke\n\tLaurie_Menke: I am in trouble, but I'm not convinced I'm dead yet...\n\n22) Laurie_Menke: Sacrifice Y2 Hi\nDiscover Y3 Hi G3 Interim\nMove Y3 Interim Laurie_menke\n\tajo: Check.\n\n23) ajo: Build Y2 Laurie_menke\nCatastrophe Laurie_menke Yellow\n\tLaurie_Menke: I repeat... I'm in trouble, but I'm not dead. ;)\n\n24) Laurie_Menke: Build G1 Laurie_menke\n\tajo: ...Check. :)\n\tLaurie_Menke: Alright... THIS time I accept it. ;) Good game, ajo! Congrats and thanks for the fun! :)\n\n25) ajo: Build G2 Laurie_menke\nCatastrophe Laurie_menke Green\n\n\nHomeworlds Online (SDG# 34781)\nVariants: "Hard time"\nStarted: 2018.12.7, Ended: 2019.1.6\nParticipants: DodoBirb (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld R3 B2 G3\n\n2) DodoBirb: Homeworld B1 R2 G3\n\n3) ajo: Build G1 Ajo\n\tDodoBirb: Is this for the tourney?\n\tajo: Yes, it is. Good luck!\n\n4) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: Good Luck!\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) DodoBirb: Build G1 Dodobirb\n\n7) ajo: Build Y1 Ajo\n\n8) DodoBirb: Trade G1 Y1 Dodobirb\n\n9) ajo: Discover Y1 Ajo B1 Alpha\n\n10) DodoBirb: Discover G1 Dodobirb B3 Bluey\n\n11) ajo: Build Y2 Ajo\n\n12) DodoBirb: Build Y2 Dodobirb\n\n13) ajo: Build Y2 Ajo\n\n14) DodoBirb: Build Y3 Dodobirb\n\n15) ajo: Sacrifice Y2 Ajo\nMove Y1 Alpha Bluey\nMove Y1 Bluey Dodobirb\nCatastrophe Dodobirb Yellow\n\tajo: Well, I'll take that invitation.\n\n16) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: That's probably why I shouldn't make moves while I'm tired\n\n17) ajo: Discover Y2 Ajo B1 Alpha\n\n18) DodoBirb: Trade G1 B1 Dodobirb\n\n19) ajo: Build G1 Ajo\n\n20) DodoBirb: Build G1 Dodobirb\n\n21) ajo: Trade G1 R1 Ajo\n\n22) DodoBirb: Trade G1 R1 Dodobirb\n\n23) ajo: Move Y2 Alpha Bluey\n\n24) DodoBirb: Sacrifice G1 Bluey\nBuild G1 Dodobirb\n\n25) ajo: Build G1 Ajo\n\n26) DodoBirb: Trade G1 Y1 Dodobirb\n\n27) ajo: Trade G1 B1 Ajo\n\n28) DodoBirb: Build B2 Dodobirb\n\n29) ajo: Build B2 Ajo\n\n30) DodoBirb: Discover B2 Dodobirb G3 Greeny\n\n31) ajo: Trade B2 Y2 Ajo\n\n32) DodoBirb: Build B2 Greeny\n\n33) ajo: Build B3 Ajo\n\n34) DodoBirb: Build B3 Dodobirb\n\n35) ajo: Discover B3 Ajo G1 Alpha\n\n36) DodoBirb: Trade B2 Y2 Greeny\n\n37) ajo: Sacrifice Y2 Ajo\nMove B3 Alpha Bluey\nMove B3 Bluey Dodobirb\nCatastrophe Dodobirb Blue\n\n38) DodoBirb: Build B1 Greeny\n\n39) ajo: Trade Y2 G2 Bluey\n\tDodoBirb: Oh well, I'd be fine calling gg here. I've just been making tons of blunders.\n\n40) DodoBirb: Trade B2 Y2 Greeny\n\n41) ajo: Build G1 Bluey\n\tajo: I think I've managed to gain an advantage without throwing myself too far off balance; but I don't see how to press my advantage immediately. It's a tournament game, so I'll keep making moves until/unless you resign; and if you resign, heck, I'll accept the win. ;)\n\tDodoBirb: I guess I'll make a few more moves. I think I'm going to be dead eventually.\n\n42) DodoBirb: Move R1 Dodobirb Greeny\n\n43) ajo: Trade G1 Y1 Bluey\n\n44) DodoBirb: Build R1 Greeny\n\n45) ajo: Sacrifice G2 Bluey\nBuild Y2 Ajo\nBuild Y3 Bluey\n\n46) DodoBirb: Build B1 Greeny\n\n47) ajo: Discover Y3 Bluey G1 Waypoint\n\n48) DodoBirb: Discover Y1 Dodobirb G1 Smallg\n\n49) ajo: Sacrifice Y1 Ajo\nMove R1 Ajo Waypoint\n\n50) DodoBirb: Build G1 Dodobirb\n\n\tDodoBirb: Uh, now I just feel like I'm delaying the inevitable. I'll resign.\n\nHomeworlds Online (SDG# 34790)\nVariants: "Unrated"\nStarted: 2018.12.8, Ended: 2019.2.10\nParticipants: Babamots (S), AnalogKid (N)\nWinner: Babamots\n\n1) AnalogKid: Homeworld R2 B3 G3\n\n2) Babamots: Homeworld B3 R1 G3\n\tAnalogKid: Sorry again about the premature end to the last game. It was instructive though. :)\r\n\r\nHave a good game!\n\n3) AnalogKid: Build G1 Analogkid\n\tBabamots: It's fine. I've got plenty of other games going :-). Good luck!\n\n4) Babamots: Build G1 Babamots\n\n5) AnalogKid: Trade G1 R1 Analogkid\n\n6) Babamots: Trade G1 R1 Babamots\n\n7) AnalogKid: Build R2 Analogkid\n\n8) Babamots: Build R2 Babamots\n\n9) AnalogKid: Trade R1 Y1 Analogkid\n\n10) Babamots: Trade R1 Y1 Babamots\n\n11) AnalogKid: Build R1 Analogkid\n\n12) Babamots: Build G1 Babamots\n\n13) AnalogKid: Discover R1 Analogkid G1 Lyese\n\n14) Babamots: Discover R2 Babamots G2 Trill\n\n15) AnalogKid: Trade R2 B2 Analogkid\n\n16) Babamots: Build Y1 Babamots\n\n17) AnalogKid: Build Y2 Analogkid\n\n18) Babamots: Move Y1 Babamots Trill\n\n19) AnalogKid: Move Y2 Analogkid Lyese\n\n20) Babamots: Build Y2 Trill\n\n21) AnalogKid: Sacrifice G3 Analogkid\nBuild Y2 Lyese\nBuild Y3 Analogkid\nBuild B1 Analogkid\n\n22) Babamots: Build Y3 Babamots\n\n23) AnalogKid: Trade Y3 G3 Analogkid\n\n24) Babamots: Trade Y1 B1 Babamots\n\n25) AnalogKid: Move B1 Analogkid Lyese\n\n26) Babamots: Discover Y1 Trill R1 Romulus\n\n27) AnalogKid: Discover Y2 Lyese Y3 Polaris_aa\n\n28) Babamots: Build G1 Babamots\n\tAnalogKid: Sorry for the delay! I should have more time to pay attention to my games now.\n\n29) AnalogKid: Build G2 Analogkid\n\n30) Babamots: Discover G1 Babamots B2 Bolarus\n\n31) AnalogKid: Sacrifice G2 Analogkid\nBuild Y1 Lyese\nBuild Y3 Analogkid\n\n32) Babamots: Build G2 Bolarus\n\n33) AnalogKid: Move Y3 Analogkid Romulus\n\n34) Babamots: Sacrifice G3 Babamots\nBuild G2 Babamots\nBuild G3 Babamots\nBuild G3 Bolarus\n\n35) AnalogKid: Attack Y1 Romulus\n\tAnalogKid: Hmm... I don't think that I made the right move last turn. :-\\\n\n36) Babamots: Move G3 Babamots Trill\n\tBabamots: It don't think your move was too bad. You've extended your yellow advantage, which is pretty important. I scored an additional large, but I'll have a hard time getting it anywhere.\n\n37) AnalogKid: Build B1 Lyese\n\tAnalogKid: I think trading one of my Y2 ships for a G2 might have been a better move. But I'm still a novice. *shrug*\n\n38) Babamots: Move G3 Trill Lyese\n\n39) AnalogKid: Sacrifice Y2 Lyese\nDiscover B1 Lyese Y2 Sol\nMove B1 Lyese Sol\n\n40) Babamots: Move B1 Babamots Trill\n\n41) AnalogKid: Sacrifice Y2 Polaris_aa\nMove B1 Sol Babamots\nMove B1 Sol Babamots\n\n42) Babamots: Sacrifice G3 Bolarus\nBuild B2 Trill\nBuild B3 Trill\nBuild G3 Bolarus\n\tAnalogKid: Probably reckless, but I didn't like most of the other options that I could see.\n\n43) AnalogKid: Sacrifice Y3 Romulus\nMove B2 Analogkid Romulus\nMove B2 Romulus Bolarus\nMove B2 Bolarus Babamots\nCatastrophe Babamots B\n\tBabamots: It does look like you're about to spend too much on half of a win, but we'll see.\n\n44) Babamots: Sacrifice Y3 Babamots\nMove B3 Trill Romulus\nMove B3 Romulus Analogkid\nMove G3 Lyese Analogkid\n\n45) AnalogKid: Attack B3 Analogkid\n\tAnalogKid: Hmm... I didn't see that coming.\n\n46) Babamots: Sacrifice R2 Trill\nAttack G3 Analogkid\nAttack B3 Analogkid\n\n47) AnalogKid: Move R1 Lyese Analogkid\n\tBabamots: I didn't notice it until after the catastrophe. The threat of losing half your home is pretty distracting.\n\tAnalogKid: Well, that makes me feel a little better. :) I was focused on your G3 ship attacking my ships in the Lyese system which prompted me to use the manuever of threatening your homeworld. Then I was feeling a little silly that it may not have been your intention to attack in Lyese at all...\n\n48) Babamots: Attack R1 Analogkid\n\n49) AnalogKid: Build Y2 Lyese\n\tAnalogKid: There is no point in me dragging this out for a few more turns.\r\n\r\nWell played! Congratulations. :)\r\n\n\n50) Babamots: Attack Y1 Analogkid\n\tBabamots: I was planning to attack ships in Lyese, but after you sacrificed your y3, I saw at the game with fresh eyes. Looking back, I think my invasion could have worked even while you had your y3, but it would have been dicey if you counterattacked.\n\tBabamots: Thanks for the game! Good practice for both of us.\n\tAnalogKid: Well, my hasty invasion certainly made it easier for you to conquer my homeworld instead. I wanted to see what would happen if I took the aggressive approach and I found out just how bad of an idea it was! ^_^ Your monopoly on green may have made it all inevitable anyways.\n\tAnalogKid: Thanks to you too. If you want to play another one, I'm game. :)\n\n\nHomeworlds Online (SDG# 34774)\nVariants: "Hard time"\nStarted: 2018.12.8, Ended: 2018.12.26\nParticipants: Trydnt (S), phi_618 (N)\nWinner: Trydnt\n\n1) phi_618: Homeworld B2 Y1 G3\n\tphi_618: good luck and have fun.\n\n2) Trydnt: Homeworld B2 Y3 G3\n\n3) phi_618: Build G1 Phi_618\n\n4) Trydnt: Build G1 Trydnt\n\n5) phi_618: Trade G1 Y1 Phi_618\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\tphi_618: Was my move forced in order to stop you from taking the second-to-last y1?\n\n7) phi_618: Build Y2 Phi_618\n\tTrydnt: there were only 2 y1s available. if you didn't take it the I would swap for y. if you then did not swap for y1 you would not be able to get into the yellow economy as I'd take the other y1. you'd have wasted a move swapping for any other color as you'd have to switch to y1 after I did to avoid a lockout\n\n8) Trydnt: Build Y2 Trydnt\n\n9) phi_618: Trade Y2 R2 Phi_618\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) phi_618: Build Y2 Phi_618\n\n12) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 G1 G3 G3\nMove Y1 G3 Phi_618\nCatastrophe Phi_618 Y\n\tphi_618: Proverb 4: Diversify your production of a contested resource?\r\n\r\nMeaning, if both players want a color and are racing to get bigger pieces, producing in more systems than your opponent will garner an advantage.\n\n13) phi_618: Build R1 Phi_618\n\n14) Trydnt: Build G1 Trydnt\n\tphi_618: Proverb 5: Restrict your opponent to two of a color by threatening catastrophe.\n\n15) phi_618: Build R1 Phi_618\n\n16) Trydnt: Trade G1 R1 Trydnt\n\n17) phi_618: Trade R1 Y1 Phi_618\n\n18) Trydnt: Build G1 Trydnt\n\n19) phi_618: Build Y1 Phi_618\n\n20) Trydnt: Trade G1 Y1 Trydnt\n\tphi_618: Is it that big a deal that half my homeworld is destroyed? Yeah, I'm easier to attack, but I'm also closer to your homeworld, so it seems like it would be a wash. And I now have move technology back online and the only medium (for now), so it seems like I have compensation?\n\n21) phi_618: Discover Y1 Phi_618 G1 Aether\n\n22) Trydnt: Discover Y1 Trydnt G1 G1\n\n23) phi_618: Build Y2 Aether\n\n24) Trydnt: Build Y2 G1\n\n25) phi_618: Discover Y2 Aether G3 Belle\n\n26) Trydnt: Discover Y1 G1 B3 B3\n\n27) phi_618: Sacrifice G3 Phi_618\nBuild Y2 Aether\nBuild Y3 Belle\nBuild Y3 Phi_618\n\n28) Trydnt: Build G1 Trydnt\n\n29) phi_618: Trade Y1 B1 Phi_618\n\n30) Trydnt: Trade G1 B1 Trydnt\n\n31) phi_618: Move B1 Phi_618 Aether\n\n32) Trydnt: Discover B1 Trydnt Y1 Y1\n\n33) phi_618: Trade R2 G2 Phi_618\n\n34) Trydnt: Build G1 Trydnt\n\n35) phi_618: Build G2 Phi_618\n\n36) Trydnt: Sacrifice G1 Trydnt\nBuild B1 Y1\n\n37) phi_618: Build B2 Aether\n\n38) Trydnt: Sacrifice Y2 G1\nMove B1 Y1 Phi_618\nMove B1 Y1 Phi_618\n\n\nHomeworlds Online (SDG# 34686)\nVariants: "Hard time"\nStarted: 2018.12.13, Ended: 2018.12.24\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R3 B1 G3\n\n2) wil: H B2 Y1 G3\n\tSimon: Hi! I haven't played on this site in 2 years, even dropped from the Homeworlds ladder back then. Now I'm feeling so nostalgic. gl hf!\n\twil: Welcome back\n\n3) Simon: Build G1 Simon\n\n4) wil: B G1 Wil\n\n5) Simon: Trade G1 Y1 Simon\n\n6) wil: T G1 B1 Wil\n\n7) Simon: Build G1 Simon\n\n8) wil: B B1 Wil\n\n9) Simon: Trade G3 B3 Simon\n\n10) wil: T B1 Y1 Wil\n\n11) Simon: Build Y2 Simon\n\n12) wil: B Y2 Wil\n\n13) Simon: Discover Y2 Simon G2 G2\n\n14) wil: D Y1 Wil G3 G3\n\n15) Simon: Build B1 Simon\n\n16) wil: B B2 Wil\n\n17) Simon: Move B1 Simon G2\n\n18) wil: T B1 R1 Wil\n\n19) Simon: Build B1 G2\n\n20) wil: D Y2 Wil B3 B3\n\n21) Simon: Build B2 G2\n\n22) wil: M B2 Wil G3\n\n23) Simon: Trade B1 R1 G2\n\n24) wil: B G1 Wil\n\n25) Simon: Discover B1 G2 Y3 Y3\n\n26) wil: M G1 Wil B3\n\n27) Simon: Build Y2 Simon\n\n28) wil: B Y3 B3\n\n29) Simon: Build Y3 G2\n\n30) wil: T Y3 G3 B3\n\n31) Simon: Build Y3 Simon\n\n32) wil: S Y2 B3\nM Y1 G3 G2\nM Y1 G2 Simon\nC Simon Y\n\n33) Simon: Trade B3 Y3 Simon\n\tSimon: Sorry for the undo. I wanted to build, but entered it as a trade. The trade looked so terrible on the board that I instantly forgot the reasoning behind the build, and had to think about the position from scratch. Ended up with the same build :)\n\twil: Undos you're not an issue\n\twil: They are definitely part of the live game\n\twil: Until you move the coin\n\n34) wil: T G1 Y1 B3\n\n35) Simon: Build G1 Simon\n\n36) wil: B Y1 B3\n\n37) Simon: Build Y2 Simon\n\n38) wil: M Y1 B3 G2\n\n39) Simon: Move Y3 G2 G3\n\n40) wil: B Y2 B3\n\n41) Simon: Attack Y1 G2\n\n42) wil: B G1 B3\n\n43) Simon: Move R1 G2 G3\n\n44) wil: S Y1 B3\nD B2 G3 G2 Gee2\n\n45) Simon: Build Y1 G3\n\n46) wil: S G3 B3\nB G2 Wil\nB G3 B3\nB R1 Wil\n\n47) Simon: Build R2 G3\n\n48) wil: M R1 Wil B3\n\n49) Simon: Move Y3 G3 Gee2\n\n50) wil: D G1 B3 R2 R2\n\n51) Simon: Sacrifice R1 G3\nAttack B2 Gee2\n\n52) wil: B R1 B3\n\n53) Simon: Sacrifice G1 Simon\nBuild B1 Y3\n\n54) wil: D R1 B3 G1 G1\n\n55) Simon: Move B1 Y3 Wil\n\n56) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R3 B3\n\n57) Simon: Sacrifice Y3 Gee2\nMove B2 Gee2 Y3\nMove B2 Y3 Wil\nMove B1 Y3 Wil\nCatastrophe Wil Blue\n\n58) wil: S G3 Wil\nB Y3 B3\nB R3 G1\nB G2 B3\n\n59) Simon: Sacrifice Y3 Simon\nMove Y1 G2 Wil\nMove Y2 G2 Wil\nMove Y1 G3 Wil\nCatastrophe Wil Yellow\n\n\tSimon: Yeah, was a quick ending. I felt like I always kept the first-player advantage. Looking forward to rematches as second player!\n\twil: I don't put A lot of stock in FPA in hw\n\nHomeworlds Online (SDG# 34803)\nVariants: "Hard time"\nStarted: 2018.12.15, Ended: 2019.1.18\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: wil\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) wil: H Y2 B1 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\tDraw5PlayAll: For the tournament\n\n6) wil: T G1 R1 Wil\n\n7) Draw5PlayAll: Build R2 Draw5playall\n\twil: Nice move\n\n8) wil: B R2 Wil\n\twil: B r2 wil\n\n9) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\twil: Oops\n\n10) wil: T R1 B1 Wil\n\n11) Draw5PlayAll: Build Y1 Draw5playall\n\n12) wil: B G1 Wil\n\n13) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n14) wil: T G1 Y1 Wil\n\n15) Draw5PlayAll: Build B2 Draw5playall\n\n16) wil: D B1 Wil G3 G3\n\n17) Draw5PlayAll: Discover B2 Draw5playall G2 G2\n\n18) wil: B B2 G3\n\n19) Draw5PlayAll: Build Y1 Draw5playall\n\n20) wil: T B2 Y2 G3\n\n21) Draw5PlayAll: Move Y1 Draw5playall G2\n\n22) wil: D Y1 Wil B3 B3\n\n23) Draw5PlayAll: Build B2 G2\n\n24) wil: B B2 G3\n\n25) Draw5PlayAll: Trade B2 R2 G2\n\n26) wil: D B2 G3 G2 Gtoo\n\n27) Draw5PlayAll: Discover B1 Draw5playall G2 Starboard\n\n28) wil: B G1 Wil\n\n29) Draw5PlayAll: Sacrifice G3 Draw5playall\nPass\nBuild B2 Starboard\nBuild B3 G2\n\n30) wil: M G1 Wil B3\n\tDraw5PlayAll: Threat level: 7.25\n\n31) Draw5PlayAll: Trade B1 R1 Starboard\n\n32) wil: B G1 Wil\n\n33) Draw5PlayAll: Build R2 G2\n\n34) wil: S G3 Wil\nB G1 Wil\nB G3 Wil\nB G3 B3\n\tDraw5PlayAll: Threat level: 14.5\n\twil: Is that out of 100 or 10?\n\n35) Draw5PlayAll: Move B3 G2 Draw5playall\n\n36) wil: S G3 Wil\nB G3 Wil\nB R3 Wil\nB R3 Wil\n\tDraw5PlayAll: Threat level: 38.0\n\n37) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R1 Starboard G3\nMove R1 G3 Wil\nCatastrophe Wil Red\n\n38) wil: T G3 R3 Wil\n\n39) Draw5PlayAll: Discover R2 G2 G3 Comeon\n\n40) wil: B B1 Gtoo\n\n41) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n42) wil: S G3 B3\nB G3 B3\nB B3 G3\nB R1 Wil\n\tDraw5PlayAll: Why do I always do worse in Tournament and ladder games than in causal games against the same player? (ts52 also has an advantage vs me in that tournament game, but I think I won a different game against him.)\n\n43) Draw5PlayAll: Build R2 Comeon\n\twil: Every game, match is unique\n\twil: This game is tough and interesting\n\twil: Nobody wins them all.lots of variables\n\n44) wil: M R1 Wil G3\n\n45) Draw5PlayAll: Build R3 G2\n\n46) wil: B R3 G3\n\n47) Draw5PlayAll: Build Y1 G2\n\n48) wil: M R3 G3 Starboard\n\n49) Draw5PlayAll: Sacrifice Y1 G2\nDiscover B2 Starboard Y1 Cantcatchme\n\n50) wil: S G3 B3\nB G3 B3\nB Y2 G3\nB Y3 B3\n\n51) Draw5PlayAll: Build Y3 G2\n\n52) wil: M B1 G3 Starboard\n\n\twil: Threat level crispy\n\tDraw5PlayAll: Oh man. You really had me there. I cannot even get the R1@Draw5PlayAll out of there without letting you have it or losing a Y3...\n\twil: Challenge anytime\n\nHomeworlds Online (SDG# 34810)\nVariants: "Hard time"\nStarted: 2018.12.19, Ended: 2019.1.3\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R1 B3 G3\n\n2) wil: H Y2 B1 G3\n\tdlwillson: Hi Wil! Welcome back, good luck, and have fun firing the neurons!\n\twil: Trying.to rebuild it all!\n\n3) dlwillson: Build G1 Dlwillson\n\n4) wil: B G1 Wil\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) wil: T G1 Y1 Wil\n\n7) dlwillson: B G1 Dlwillson\n\n8) wil: B G1 Wil\n\n9) dlwillson: T G1 R1 Dlwillson\n\n10) wil: T G1 R1 Wil\n\n11) dlwillson: B R2 Dlwillson\n\n12) wil: B R2 Wil\n\n13) dlwillson: T R1 B1 Dlwillson\n\n14) wil: B G1 Wil\n\n15) dlwillson: D R2 Dlwillson G2 Field\n\n16) wil: T G1 B1 Wil\n\n17) dlwillson: M B1 Dlwillson Field\n\n18) wil: B B2 Wil\n\n19) dlwillson: B B2 Field\n\n20) wil: T B2 Y2 Wil\n\n21) dlwillson: T B2 R2 Field\n\n22) wil: B B2 Wil\n\n23) dlwillson: T R2 Y2 Field\n\n24) wil: T B2 G2 Wil\n\tdlwillson: I just lost a turn by not checking what I'd actually done!\n\n25) dlwillson: B Y1 Field\n\n26) wil: D Y1 Wil G3 G3\n\n27) dlwillson: D Y1 Field B3 Sky\n\n28) wil: S G2 Wil\nB Y3 G3\nB Y3 G3\n\n29) dlwillson: M Y2 Field G3\nC G3 Y\n\n30) wil: M R2 Wil Sky\n\n31) dlwillson: S G3 Dlwillson\nB Y1 Dlwillson\nB Y2 Dlwillson\nB Y3 Sky\n\n32) wil: A Y1 Sky\n\n33) dlwillson: S R2 Field\nA Y1 Sky\nA R2 Sky\n\n34) wil: D Y2 Wil G3 G3\n\n35) dlwillson: T Y1 G1 Dlwillson\n\n36) wil: M B1 Wil G3\n\n37) dlwillson: T Y3 G3 Sky\n\n38) wil: B B2 G3\n\n39) dlwillson: M Y1 Dlwillson Field\n\n40) wil: T B1 R1 G3\n\n41) dlwillson: S G3 Sky\nB Y1 Field\nB Y3 Dlwillson\nB Y3 Sky\n\n42) wil: B Y3 G3\n\n43) dlwillson: S Y2 Dlwillson\nM Y1 Field G3\nM Y1 Field G3\nC G3 Y\n\tdlwillson: Happy Christmas, Wil!\n\twil: Back atcha!\n\n44) wil: B R2 Wil\n\n45) dlwillson: T Y3 G3 Sky\n\n46) wil: T R1 Y1 G3\n\n47) dlwillson: B G1 Sky\n\n48) wil: B G1 Wil\n\n49) dlwillson: S G3 Sky\nB G2 Dlwillson\nB G2 Dlwillson\nB G3 Sky\n\n50) wil: M R2 Wil G3\n\n51) dlwillson: D G2 Dlwillson B2 Sea\n\n52) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB Y1 G3\n\n53) dlwillson: S Y3 Dlwillson\nM G3 Sky Wil\nM G1 Sky Wil\nM R2 Sky Wil\nC Wil G\n\n54) wil: B Y2 G3\n\n55) dlwillson: S G2 Dlwillson\nB R2 Wil\nB R3 Wil\nC Wil R\n\n\twil: Yikes!\n\twil: Lol, I wasn't thinking!\n\tdlwillson: It was good playing with you again!\n\twil: Up pieces to.see.the game\n\twil: I think I am going to have to start setting \n\nHomeworlds Online (SDG# 34809)\nVariants: "Hard time"\nStarted: 2018.12.19, Ended: 2019.1.28\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 Y1 G3\n\n2) Felix: Homeworld R1 B3 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tFelix: Good luck and have fun :)\n\n4) Felix: B G1 Felix\n\tDraw5PlayAll: ...seriously?\n\tDraw5PlayAll: You actually want to smallverse me in a ladder game?\n\tFelix: Why not? It's a perfectly valid play\n\n5) Draw5PlayAll: Trade G1 R1 Draw5playall\n\tDraw5PlayAll: Did I say or imply it was invalid?\n\n6) Felix: Trade G1 Y1 Felix\n\tFelix: You implied it was rude or somehow un-kosher. Part of the game's balance, however, comes in the ability of player 2 to set the size of the universe. \n\n7) Draw5PlayAll: Build R1 Draw5playall\n\tDraw5PlayAll: Risky more than anything do do that to someone with starting yellow AND an extra move on you.\n\tDraw5PlayAll: Now, should I conquest red or bleed into your yellow supply?\n\n8) Felix: Build Y1 Felix\n\n9) Draw5PlayAll: Discover R1 Draw5playall G2 G2019\n\n10) Felix: Build Y2 Felix\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) Felix: Discover Y1 Felix Y2 Cheese\n\n13) Draw5PlayAll: Discover R1 Draw5playall R2 Niceidea\n\n14) Felix: Discover Y1 Felix Y2 Swiss\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Niceidea\nBuild R3 G2019\nBuild R3 Draw5playall\n\n16) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Felix\nBuild Y3 Cheese\n\tDraw5PlayAll: You asked for it.\n\n17) Draw5PlayAll: Build R3 G2019\n\n18) Felix: T Y3 G3 Felix\n\n19) Draw5PlayAll: Trade R3 G3 Draw5playall\n\tDraw5PlayAll: I offer a draw.\n\n20) Felix: Trade Y3 R3 Felix\n\tDraw5PlayAll: I forgot I no longer have green...\n\n21) Draw5PlayAll: Sacrifice R1 G2019\nPass\n\tFelix: On the ladder, a draw is essentially a loss for the Challenger, so I respectfully decline! \n\n22) Felix: Sacrifice G3 Felix\nBuild Y3 Felix\nBuild Y3 Felix\nBuild R1 Felix\n\n23) Draw5PlayAll: Build G1 Draw5playall\n\n24) Felix: Trade Y3 G3 Felix\n\tDraw5PlayAll: I have a plan but it is going to take MUCH longer than I expected.\n\tFelix: This is why I'm always okay with allowing a red monopoly as long as I can lock down movement!\n\n25) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n26) Felix: Build Y3 Felix\n\n27) Draw5PlayAll: Move B1 Draw5playall G2019\n\n28) Felix: Trade R3 B3 Felix\n\n29) Draw5PlayAll: Build R3 Draw5playall\n\n30) Felix: Move B3 Felix Swiss\n\n31) Draw5PlayAll: Build B1 G2019\n\n32) Felix: Build G1 Felix\n\n33) Draw5PlayAll: Build G1 Draw5playall\n\n34) Felix: Move G1 Felix Swiss\n\tDraw5PlayAll: I do not believe the speardane account is being checked. If you want to rematch it, ask ajo.\n\n35) Draw5PlayAll: Discover G3 Draw5playall B2 Shutdown\n\n36) Felix: Build B1 Swiss\n\n37) Draw5PlayAll: Build G1 Shutdown\n\n38) Felix: Build B2 Swiss\n\tDraw5PlayAll: Your partial yellow shutdown and the US partial government shutdown (34 days and counting).\n\n39) Draw5PlayAll: Sacrifice G1 Shutdown\nBuild G1 Draw5playall\n\tFelix: Haha, I like to think of it as more of a complete yellow shutdown :)\n\tDraw5PlayAll: I have homeworld movement\n\n40) Felix: Sacrifice Y3 Felix\nMove Y1 Cheese Draw5playall\nMove Y3 Cheese Draw5playall\nMove Y1 Swiss Draw5playall\nCatastrophe Draw5playall Yellow\n\n41) Draw5PlayAll: Trade R3 Y3 G2019\n\n42) Felix: S Y3 Felix\nM B1 Swiss Draw5playall\nM B2 Swiss Draw5playall\nM B3 Swiss Draw5playall\nC Draw5playall Blue\n\n\tDraw5PlayAll: I know you can win immediately but I just wanted to have some movement.\n\tFelix: Feels good I bet :)\n\nHomeworlds Online (SDG# 34811)\nVariants: "Hard time"\nStarted: 2018.12.21, Ended: 2019.2.21\nParticipants: Laurie_Menke (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld B3 R1 G3\n\tLaurie_Menke: Welcome, Simon! Thanks for challenging me! Have fun! :)\n\tSimon: Hi, and have fun! I used to play lots in 2014-2017 and am happy to be back at Homeworlds.\n\n2) Laurie_Menke: Homeworld B2 Y1 G3\n\tLaurie_Menke: Well, then, you'll probably kick my butt, but it'll be fun anyway! :) Glad to have you back!\n\n3) Simon: Build G1 Simon\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n7) Simon: Build Y2 Simon\n\n8) Laurie_Menke: Build Y2 Laurie_menke\n\n9) Simon: Discover Y1 Simon B2 B2\n\n10) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n11) Simon: Build Y1 Simon\n\n12) Laurie_Menke: Discover Y2 Laurie_menke G3 Green\n\n13) Simon: Discover Y1 Simon G2 G2\n\n14) Laurie_Menke: Build R1 Laurie_menke\n\n15) Simon: Build Y2 G2\n\n16) Laurie_Menke: Build Y3 Green\n\n17) Simon: Build Y3 Simon\n\n18) Laurie_Menke: Discover R1 Laurie_menke Y3 Yellow\n\n19) Simon: Trade Y3 R3 Simon\n\n20) Laurie_Menke: Move R1 Yellow B2\n\n21) Simon: Move R3 Simon B2\n\n22) Laurie_Menke: Move Y3 Green G2\n\n23) Simon: Attack R1 B2\n\n24) Laurie_Menke: Build R2 Laurie_menke\n\n25) Simon: Build Y3 G2\nCatastrophe G2 Yellow\n\n26) Laurie_Menke: Trade R1 Y1 Laurie_menke\n\n27) Simon: Trade R1 G1 B2\n\n28) Laurie_Menke: Discover Y1 Laurie_menke B3 Blue\n\n29) Simon: Build R1 B2\n\n30) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: build g1 Laurie_Menke\n\tLaurie_Menke: Oops...\n\n31) Simon: Build G1 Simon\n\n32) Laurie_Menke: Discover G1 Laurie_menke B3 Bluetoo\n\n33) Simon: Build G2 B2\n\n34) Laurie_Menke: Build G2 Laurie_menke\n\n35) Simon: Move R3 B2 Bluetoo\n\n36) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild Y2 Green\nBuild Y3 Blue\n\n37) Simon: Sacrifice G2 B2\nBuild Y3 Simon\nBuild Y3 B2\n\n38) Laurie_Menke: Sacrifice Y2 Green\nDiscover G1 Bluetoo R2 Red\nMove Y1 Blue Red\n\n39) Simon: Move G3 Simon Red\n\n40) Laurie_Menke: Move Y1 Red Simon\n\n41) Simon: Attack Y1 Simon\n\n42) Laurie_Menke: Sacrifice G1 Red\nBuild Y2 Blue\n\n43) Simon: Move Y1 Simon Red\n\n44) Laurie_Menke: Move R2 Laurie_menke Blue\n\n45) Simon: Build G1 B2\n\n46) Laurie_Menke: Build G2 Laurie_menke\n\n47) Simon: Sacrifice Y2 Simon\nMove G3 Red Blue\nMove G3 Blue Laurie_menke\n\n48) Laurie_Menke: Sacrifice Y2 Blue\nMove Y3 Blue Laurie_menke\nMove Y2 Green Laurie_menke\n\tLaurie_Menke: Oops... didn't see that coming...\n\tLaurie_Menke: Just not paying enough attention... bluebirded myself. :/\n\n49) Simon: Sacrifice R3 Bluetoo\nAttack G3 Laurie_menke\nAttack Y3 Laurie_menke\nAttack G2 Laurie_menke\n\n50) Laurie_Menke: Sacrifice R2 Blue\nAttack G2 Laurie_menke\nPass\n\tLaurie_Menke: Let's see what kind of damage control I can do... probably not much.\n\tSimon: Yeah, the build g2 was a problem already. Probably move a y2 home was the only move, but one doesn't want to go backwards either :)\n\n51) Simon: Sacrifice G3 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Laurie_menke\nBuild Y2 Laurie_menke\nCatastrophe Laurie_menke Green\nCatastrophe Laurie_menke Yellow\n\n\tSimon: Hmm, the game felt comfortable since turn 12, I kept the extra large without any downsides.\n\tLaurie_Menke: Yeah, you are definitely the better player! Congrats on the win and thanks for the fun! :)\n\tSimon: Thanks for the game too! Recently, I saw that you work with the Looneys and helped Andy with the 30-minute tutorial video. It's a great resource to spread the love (not everybody likes the raw game rules for bedtime reading...)\n\tLaurie_Menke: Yep. I pretty much eat, sleep, and breathe Looney Labs. My title at Looney Labs is Personal Assistant to the Looneys and New Markets. But I also live in their house (my title there is House Elf). And I am on the road with them about 120 days out of the year demoing games and creating new sales opportunities. It's a pretty great job! :) I'm glad you liked the tutorial! I only had a little bit to do with that. It was mostly Andy and his nephew, Eric. You may enjoy the Homeworlds Theater series as well. That's Andy and the inventor of Homeworlds (John Cooper) analyzing a playthrough like sportscasters. It's pretty entertaining, and all of the games are taken from right here on SDG. :) Thanks again for the fun, and I look forward to getting good enough to beat you one of these days! :)\n\nHomeworlds Online (SDG# 34800)\nVariants: "Hard time"\nStarted: 2018.12.24, Ended: 2019.1.8\nParticipants: Simon (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\tSimon: hf :)\n\n2) Simon: Homeworld B3 R1 G3\n\n3) wil: B G1 Wil\n\n4) Simon: Build G1 Simon\n\n5) wil: T G1 R1 Wil\n\n6) Simon: Trade G1 Y1 Simon\n\n7) wil: B R1 Wil\n\n8) Simon: Build G1 Simon\n\n9) wil: D R1 Wil G3 G3\n\n10) Simon: Trade G3 R3 Simon\n\n11) wil: T R1 B1 Wil\n\n12) Simon: Build Y1 Simon\n\n13) wil: B B1 Wil\n\n14) Simon: Build R1 Simon\n\n15) wil: M B1 Wil G3\n\n16) Simon: Discover R1 Simon Y2 Y2\n\n17) wil: B B2 Wil\n\n18) Simon: Build R2 Simon\n\n19) wil: D B2 Wil Y3 Y3\n\n20) Simon: Move G1 Simon Y2\n\n21) wil: S G3 Wil\nB B2 G3\nB B2 Y3\nB B3 Wil\n\n22) Simon: Trade R3 B3 Simon\n\n23) wil: T B2 Y2 G3\n\n24) Simon: Build R2 Y2\n\n25) wil: T B2 G2 Y3\n\n26) Simon: Discover Y1 Simon G2 G2\n\n27) wil: T B3 G3 Wil\n\n28) Simon: Trade R2 G2 Simon\n\n29) wil: M B2 Y3 G2\n\n30) Simon: Sacrifice G2 Simon\nBuild Y1 G2\nBuild Y3 G2\n\n31) wil: M Y2 G3 G2\nC G2 Y\n\n32) Simon: Move B3 Simon G2\n\n33) wil: S G3 Wil\nB B2 G2\nB B2 G2\nB B3 Wil\nC G2 B\n\n34) Simon: Move R2 Y2 G3\n\tSimon: Nice, didn't see this.\n\n35) wil: B R2 G3\n\n36) Simon: Build R2 Y2\n\n37) wil: S R1 G3\nA R2 G3\n\n38) Simon: Discover R1 Y2 R1 R1\n\n39) wil: T R2 Y2 G3\n\twil: Wild game\n\n\tSimon: gg\n\twil: Thx,.challenge anytime\n\nHomeworlds Online (SDG# 34793)\nVariants: "Hard time"\nStarted: 2018.12.29, Ended: 2019.1.17\nParticipants: Trydnt (S), Simon (N)\nWinner: Trydnt\n\n1) Simon: Homeworld B3 R1 G3\n\tSimon: Hi! I played Homeworlds in 2014-2017 and am happy to be around again. Enjoy!\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tTrydnt: Always good to meet a fellow star traveler\n\n3) Simon: Build G1 Simon\n\n4) Trydnt: Build G1 Trydnt\n\n5) Simon: Trade G1 Y1 Simon\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Simon: Build Y1 Simon\n\n8) Trydnt: Build R1 Trydnt\n\n9) Simon: Discover Y1 Simon B2 B2\n\n10) Trydnt: Build R2 Trydnt\n\n11) Simon: Build Y1 Simon\n\n12) Trydnt: Discover R1 Trydnt G1 G1\n\n13) Simon: Discover Y1 Simon G2 G2\n\n14) Trydnt: Build R2 Trydnt\n\n15) Simon: Build Y2 G2\n\n16) Trydnt: Build R2 G1\n\n17) Simon: Build Y2 Simon\n\n18) Trydnt: Discover R1 Trydnt B1 B1\n\n19) Simon: Build G1 Simon\n\n20) Trydnt: Sacrifice G3 Trydnt\nBuild R3 Trydnt\nBuild R3 G1\nBuild R3 B1\n\n21) Simon: Sacrifice G3 Simon\nBuild Y2 B2\nBuild Y3 B2\nBuild Y3 Simon\n\n22) Trydnt: Trade R3 G3 Trydnt\n\n23) Simon: Trade Y3 R3 B2\n\n24) Trydnt: Trade R3 Y3 B1\n\n25) Simon: Trade Y3 G3 Simon\n\n26) Trydnt: Discover R1 B1 Y3 Y3\n\n27) Simon: Discover Y2 G2 R3 R3\n\n28) Trydnt: Trade R2 B2 Trydnt\n\n29) Simon: Trade Y2 G2 B2\n\n30) Trydnt: Sacrifice B2 Trydnt\nTrade R2 Y2 G1\nTrade R3 B3 G1\n\n31) Simon: Build G1 B2\n\n32) Trydnt: Build R2 G1\n\n33) Simon: Sacrifice G3 Simon\nBuild G2 Simon\nBuild G3 Simon\nBuild G3 B2\n\n34) Trydnt: Move R2 G1 G2\n\n35) Simon: Discover Y1 G2 B1 B1a\n\n36) Trydnt: Build B1 G1\n\n37) Simon: Move G3 B2 B1a\n\n38) Trydnt: Build B2 G1\n\n39) Simon: Sacrifice G2 Simon\nBuild G2 B1a\nBuild R2 B2\n\n40) Trydnt: Build R3 G2\n\n41) Simon: Move G1 Simon G2\n\n42) Trydnt: Sacrifice R3 G2\nAttack G1 G2\nPass\nPass\n\n43) Simon: Move R2 B2 B1a\n\n44) Trydnt: Build R3 G1\n\n45) Simon: Move G3 B1a G2\n\n46) Trydnt: Sacrifice Y2 G1\nMove G1 G2 Y3\nMove B3 G1 Y3\n\n47) Simon: Sacrifice G3 G2\nBuild G3 B1a\nBuild Y2 B1a\nPass\n\n48) Trydnt: Build B3 Y3\n\n49) Simon: Move Y1 B2 B1a\n\n50) Trydnt: Move B3 Y3 G2\n\n51) Simon: Move Y1 Simon B2\n\n52) Trydnt: Move Y3 B1 G2\n\n53) Simon: Discover G2 B2 B1 B1\n\n54) Trydnt: Move B3 G2 B1\n\n55) Simon: Sacrifice G2 B1\nBuild G2 B2\nPass\n\n56) Trydnt: Move R1 Y3 B1\n\n57) Simon: Move Y2 B1a B2\n\n58) Trydnt: Move G1 Y3 B1\n\n59) Simon: Move Y1 B2 B1a\n\n60) Trydnt: Sacrifice B3 Y3\nTrade R3 Y3 G1\nPass\nPass\n\n61) Simon: Build R3 B1a\n\n62) Trydnt: Build B3 G1\n\n63) Simon: Move G3 B1a R3\n\n64) Trydnt: Move R1 G1 G2\n\n65) Simon: Move Y1 B1a G2\n\n66) Trydnt: Move R1 G2 Simon\n\n67) Simon: Sacrifice Y2 R3\nMove Y1 B1a G2\nMove Y1 B1a G2\nCatastrophe G2 Yellow\n\n68) Trydnt: Trade B3 Y3 B1\n\n\tSimon: I didn't expect the B3 at y3 sacrifice from 4 turns ago, very nice. gg\n\tTrydnt: It was probably what let me win. Couldn't see another way to convert that star to a ship as if I left my g\n\tTrydnt: *g\n\tTrydnt: g1* you could have just moved in an taken it\n\nHomeworlds Online (SDG# 34833)\nVariants: "Hard time"\nStarted: 2019.1.3, Ended: 2019.1.17\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tdlwillson: GLaHF!\n\tTrydnt: fair (solar) winds to you fellow traveler\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) dlwillson: B R2 Dlwillson\n\n8) Trydnt: Build R2 Trydnt\n\n9) dlwillson: T R1 Y1 Dlwillson\n\n10) Trydnt: Trade R2 Y2 Trydnt\n\n11) dlwillson: B Y1 Dlwillson\n\n12) Trydnt: Discover Y2 Trydnt G1 G1\n\n13) dlwillson: D Y1 Dlwillson B2 Sea\n\n14) Trydnt: Move R1 Trydnt G1\n\n15) dlwillson: B G1 Dlwillson\n\n16) Trydnt: Build G1 Trydnt\n\n17) dlwillson: M G1 Dlwillson Sea\n\n18) Trydnt: Discover G1 Trydnt R1 R1\n\n19) dlwillson: M R2 Dlwillson Sea\n\n20) Trydnt: Build R2 G1\n\n21) dlwillson: B G2 Dlwillson\n\n22) Trydnt: Build G2 R1\n\n23) dlwillson: S G3 Dlwillson\nB G2 Sea\nB G3 Sea\nB G3 Dlwillson\n\n24) Trydnt: Sacrifice Y2 G1\nMove G1 R1 Sea\nCatastrophe Sea G\nDiscover G2 R1 B2 B2\n\n25) dlwillson: S G2 Dlwillson\nB G1 Dlwillson\nB Y1 Sea\n\n26) Trydnt: Build G1 B2\n\n27) dlwillson: D Y1 Sea B1 Sky\n\n28) Trydnt: Trade G2 Y2 B2\n\n29) dlwillson: S G3 Dlwillson\nB Y2 Sky\nB Y2 Sea\nB Y3 Dlwillson\n\n30) Trydnt: Build Y3 B2\n\n31) dlwillson: S Y2 Sea\nM Y1 Dlwillson B2\nM Y1 Sky B2\nC B2 Y\n\n32) Trydnt: Build G2 Trydnt\n\n33) dlwillson: B G2 Dlwillson\n\n34) Trydnt: Trade G1 Y1 B2\n\n35) dlwillson: B Y1 Dlwillson\n\n36) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 B2\nBuild G1 Trydnt\n\n37) dlwillson: S G2 Dlwillson\nB Y2 Sea\nB Y3 Sky\n\n38) Trydnt: Discover Y2 B2 B1 B1\n\n39) dlwillson: B G2 Dlwillson\n\n40) Trydnt: Trade G1 B1 Trydnt\n\n41) dlwillson: Trade Y1 G1 Sea\n\n42) Trydnt: Build B3 Trydnt\n\n43) dlwillson: Trade Y3 B3 Dlwillson\n\n44) Trydnt: Move B3 Trydnt G1\n\n45) dlwillson: S G2 Dlwillson\nB Y1 Sea\nB Y3 Dlwillson\n\n46) Trydnt: Move Y1 B2 G1\n\n47) dlwillson: T Y2 B2 Sky\n\n48) Trydnt: Build Y2 G1\n\n49) dlwillson: T Y3 G3 Dlwillson\n\n50) Trydnt: Discover Y2 B1 Y3 Y3\n\n51) dlwillson: D B3 Dlwillson G2 Field\n\n52) Trydnt: Trade B1 R1 Trydnt\n\n53) dlwillson: T B2 G2 Sky\n\n54) Trydnt: Build G2 Trydnt\n\n55) dlwillson: S G3 Dlwillson\nB B1 Field\nB G3 Sea\nB G3 Dlwillson\n\n56) Trydnt: Build B1 G1\n\n57) dlwillson: S Y2 Sea\nM G3 Sea Sky\nM G3 Sky Trydnt\n\n58) Trydnt: Attack G3 Trydnt\n\n59) dlwillson: Sacrifice Y3 Sky\nMove B3 Field Sky\nMove B3 Sky Trydnt\nMove G2 Sky Trydnt\nCatastrophe Trydnt G\n\n60) Trydnt: Sacrifice Y2 Y3\nMove B1 G1 Trydnt\nMove Y1 G1 Trydnt\n\n61) dlwillson: T B3 G3 Trydnt\n\n62) Trydnt: Move B3 G1 Sea\n\n63) dlwillson: T G3 R3 Dlwillson\n\n64) Trydnt: Move R1 G1 Trydnt\n\n65) dlwillson: S R2 Sea\nA R1 Trydnt\nA R1 Trydnt\n\n66) Trydnt: Sacrifice R2 G1\nAttack R1 Trydnt\nAttack R1 Trydnt\n\n67) dlwillson: S R3 Dlwillson\nA R1 Trydnt\nA R1 Trydnt\nA Y1 Trydnt\n\n\tdlwillson: Thank you! Good game!\n\tTrydnt: Well played! Thought I'd be able to wriggle out if you did that but alas I miscalculated\n\nHomeworlds Online (SDG# 34597)\nVariants: "Unrated, Hard time"\nStarted: 2019.1.3, Ended: 2019.1.13\nParticipants: Ryzorrin (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\tRyzorrin: homeworld g1 b2 R3\n\tRyzorrin: I always type my commands in the messages. >:(\n\twil: Thinking i am writing your plan note\n\twil: The only thing worse.\n\twil: Lol, I do that!\n\n2) Ryzorrin: Homeworld B1 G2 R3\n\n3) wil: B G1 Wil\n\tRyzorrin: It just means I don't play enough. :D\n\twil: Short universe?\n\tRyzorrin: Would seem that way. \n\twil: You have time to change if you like\n\twil: I'm good either way\n\tRyzorrin: No I'm good.\n\n4) Ryzorrin: Build R1 Ryzorrin\n\n5) wil: T G1 B1 Wil\n\n6) Ryzorrin: Trade R1 G1 Ryzorrin\n\n7) wil: B B2 Wil\n\n8) Ryzorrin: Build G1 Ryzorrin\n\n9) wil: D B2 Wil Y3 Y3\n\n10) Ryzorrin: Trade G1 Y1 Ryzorrin\n\n11) wil: S G3 Wil\nB B2 Y3\nB B2 Wil\nB B3 Y3\n\n12) Ryzorrin: Move G1 Ryzorrin Y3\n\tRyzorrin: I got to playtest some games at Looney Labs over the weekend.\n\twil: Awesome! Xendo? \n\n13) wil: T B2 R2 Y3\n\tRyzorrin: Nah. A couple new flux games and an expansion to get the McGuffin.\n\n14) Ryzorrin: Move G1 Y3 Wil\n\tDraw5PlayAll: I think "X"endo was a dropped idea. They kept the Z but removed the theme.\n\n15) wil: T B2 R2 Wil\n\twil: Mcguffin expansion been outta town\n\n16) Ryzorrin: Discover G1 Wil B3 Star\n\n17) wil: T B3 G3 Y3\n\n18) Ryzorrin: Build Y1 Ryzorrin\n\n19) wil: M R2 Wil Star\n\n20) Ryzorrin: Sacrifice Y1 Ryzorrin\nMove G1 Star Wil\n\n21) wil: M R2 Y3 Wil\n\n22) Ryzorrin: Build Y1 Ryzorrin\n\n23) wil: A G1 Wil\n\n24) Ryzorrin: Discover Y1 Ryzorrin R3 Whatever\n\n25) wil: B B2 Wil\n\n26) Ryzorrin: Build Y1 Ryzorrin\n\n27) wil: M B1 Wil Star\n\n28) Ryzorrin: Discover Y1 Ryzorrin R3 Meh\n\n29) wil: S G3 Y3\nB B2 Star\nB B3 Wil\nB B3 Y3\n\n30) Ryzorrin: Build Y2 Ryzorrin\n\n31) wil: M B2 Wil Meh\n\n32) Ryzorrin: Discover Y2 Ryzorrin G3 Grapenuts\n\n33) wil: A Y1 Meh\n\n34) Ryzorrin: Build Y2 Ryzorrin\n\n35) wil: M G1 Wil Meh\n\n36) Ryzorrin: Build Y3 Grapenuts\n\n37) wil: B Y3 Meh\n\n38) Ryzorrin: Build R1 Ryzorrin\n\n39) wil: T B3 G3 Y3\n\n40) Ryzorrin: Discover Y2 Ryzorrin B3 Metamorphose\n\tRyzorrin: Almost a pass\n\n41) wil: T B3 G3 Wil\n\twil: I've always disliked that choice.\n\n42) Ryzorrin: Trade Y2 G2 Metamorphose\n\n43) wil: B B3 Meh\n\n44) Ryzorrin: Build G1 Metamorphose\n\n45) wil: B G1 Y3\n\n46) Ryzorrin: Build G2 Metamorphose\n\n47) wil: S Y3 Meh\nD G1 Y3 Y2 Y2\nM B2 Y3 Y2\nM G1 Y2 Metamorphose\nC Metamorphose G\n\n48) Ryzorrin: Build Y3 Ryzorrin\n\n49) wil: S G3 Y3\nB Y3 Meh\nB B3 Meh\nB G1 Wil\n\n50) Ryzorrin: Move R3 Ryzorrin Star\n\n51) wil: M B2 Y2 Star\nC Star B\n\n52) Ryzorrin: Trade Y1 B1 Ryzorrin\n\twil: Lol, didn't catch the undo\n\n53) wil: T B3 R3 Meh\n\n54) Ryzorrin: Move B1 Ryzorrin Grapenuts\n\n55) wil: D Y1 Meh G1 G1\n\n56) Ryzorrin: Trade Y3 G3 Grapenuts\n\n57) wil: M G1 Wil Grapenuts\n\n58) Ryzorrin: Build B2 Grapenuts\n\n59) wil: B G2 Grapenuts\nC Grapenuts G\n\n60) Ryzorrin: Build R1 Ryzorrin\n\n61) wil: S Y3 Meh\nM R3 Meh Ryzorrin\nM B3 Meh Ryzorrin\nM Y1 G1 Meh\n\n\twil: completed without incident\n\twil: Greetings, pleased to report slash and burn\n\tRyzorrin: Good game.\n\tRyzorrin: I was in a hole from the beginning.\n\twil: It was different, challenge anytine\n\twil: Short universe challenge\n\nHomeworlds Online (SDG# 34841)\nVariants: "Hard time"\nStarted: 2019.1.6, Ended: 2019.1.15\nParticipants: goulo (S), wil (N)\nWinner: goulo\n\n1) wil: H Y2 B1 G3\n\tgoulo: happy new year!\n\twil: Backatcha have fun\n\n2) goulo: Homeworld B3 G2 Y3\n\n3) wil: B G1 Wil\n\n4) goulo: Build Y1 Goulo\n\n5) wil: B G1 Wil\n\n6) goulo: Build Y1 Goulo\n\n7) wil: D G1 Wil B3 B3\n\n8) goulo: Trade Y1 R1 Goulo\n\n9) wil: B G1 Wil\n\n10) goulo: Trade Y3 G3 Goulo\n\n11) wil: T G1 B1 Wil\n\n12) goulo: Build Y1 Goulo\n\n13) wil: T G1 Y1 Wil\n\n14) goulo: Build Y2 Goulo\n\n15) wil: B Y2 Wil\n\n16) goulo: Discover Y2 Goulo G1 Verdeto\n\n17) wil: M Y1 Wil B3\n\n18) goulo: Build Y3 Verdeto\n\n19) wil: B Y3 B3\n\n20) goulo: Move Y3 Verdeto B3\n\n21) wil: B Y3 B3\nC B3 Y\n\n22) goulo: Build Y1 Verdeto\n\n23) wil: M Y2 Wil B3\n\n24) goulo: Discover Y1 Verdeto G3 Verdego\n\n25) wil: B Y3 B3\n\n26) goulo: Build Y3 Verdego\n\n27) wil: T Y3 R3 B3\n\n28) goulo: Trade Y1 B1 Goulo\n\n29) wil: B R1 B3\n\n30) goulo: Build R1 Goulo\n\n31) wil: M R3 B3 Verdeto\n\n32) goulo: Discover Y2 Verdeto G2 Verdo\n\n33) wil: B G1 Wil\n\n34) goulo: Discover B1 Goulo Y1 Flaveto\n\n35) wil: B Y3 B3\n\n36) goulo: Build Y3 Verdo\n\n37) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB R2 B3\n\n38) goulo: Move B1 Flaveto Verdego\n\n39) wil: D G1 B3 Y1 Y1\n\n40) goulo: Move Y3 Verdego Y1\n\n41) wil: M G1 Y1 B3\n\n42) goulo: Build B2 Verdego\n\n43) wil: M B1 Wil B3\n\n44) goulo: Move B2 Verdego Verdo\n\n45) wil: M R1 B3 Wil\n\n46) goulo: Sacrifice Y3 Verdo\nMove B2 Verdo B3\nMove B1 Verdego Verdo\nMove B1 Verdo B3\nCatastrophe B3 B\n\n47) wil: D G2 Wil Y3 Y3\n\n48) goulo: Build G1 Goulo\n\n49) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R2 Verdeto\n\n50) goulo: Sacrifice Y2 Verdo\nMove R1 Goulo Verdeto\nMove R1 Goulo Verdeto\nCatastrophe Verdeto R\n\n51) wil: T G1 B1 Wil\n\n52) goulo: Trade G3 R3 Goulo\n\n53) wil: M B1 Wil Y3\n\n54) goulo: Build R1 Goulo\n\n55) wil: T G2 Y2 Y3\n\n56) goulo: Build Y2 Verdego\n\n57) wil: D R1 Wil Y3 Why3\n\n58) goulo: Build G1 Goulo\n\n59) wil: B G1 Wil\n\n60) goulo: Trade G1 B1 Goulo\n\n61) wil: B R1 Wil\n\n62) goulo: Move B1 Goulo Y1\n\n63) wil: B R2 Wil\n\n64) goulo: Move R1 Goulo Y1\n\n65) wil: D R1 Wil G3 G3\n\n66) goulo: Move B1 Y1 Verdego\n\n67) wil: D R2 Wil B3 B3\n\n68) goulo: Move R1 Y1 Verdego\n\n69) wil: D Y2 Y3 G1 G1\n\n70) goulo: Move Y3 Y1 B3\n\n71) wil: B Y1 G1\n\n72) goulo: Sacrifice R1 Verdego\nAttack R2 B3\n\n73) wil: M G1 Wil Y3\n\n74) goulo: Build B2 Verdego\n\n75) wil: B G2 Wil\n\n76) goulo: Trade B2 G2 Verdego\n\n77) wil: B B2 Y3\n\n78) goulo: Move Y3 B3 G1\n\n79) wil: S Y1 G1\nD Y2 G1 R3 R3\n\n80) goulo: Move Y3 G1 Y3\n\n81) wil: T B1 Y1 Y3\n\n82) goulo: Sacrifice R2 B3\nAttack B2 Y3\nAttack G1 Y3\n\n83) wil: D Y2 R3 G1 G1\n\n84) goulo: Sacrifice Y2 Verdego\nMove G1 Y3 Wil\nMove G2 Verdego Wil\nCatastrophe Wil G\n\n85) wil: M Y2 G1 Y3\nC Y3 Y\n\twil: My synapses are can't catch up to yours.\n\n86) goulo: Discover R3 Goulo Y1 Flaveto\n\tgoulo: I think I just widened the gap. :)\n\n87) wil: T R2 G2 Wil\n\n88) goulo: Move R3 Flaveto Verdego\n\n89) wil: M R1 Why3 Wil\n\twil: Commence funeral march\n\n90) goulo: Move R3 Verdego Wil\n\n91) wil: S G2 Wil\nB R1 Wil\nB R2 Wil\nC Wil R\n\n\tgoulo: https://www.youtube.com/watch?v=hZY5DBmgC_A\n\twil: Lol, gg, nice video, thx\n\tgoulo: I wondered if you were going to go out with a bang by that g2 sacrifice for a red catastrophe! :)\n\tgoulo: that was an epic game.\n\twil: Challenge anytime\n\nHomeworlds Online (SDG# 34813)\nVariants: "Hard time"\nStarted: 2019.1.8, Ended: 2019.1.20\nParticipants: Simon (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\tSimon: hf :)\n\n2) Simon: Homeworld G3 B1 B3 *\n\n3) wil: B G1 Wil\n\tSimon: I played TwoShort only once ever. Then, he opened like this as 2nd player and won. I never got the chance to play him again, but always wondered whether the opening is strong or whether TwoShort is super strong in general.\n\twil: A powerful opening\n\twil: The instant blue freeze out...\n\n4) Simon: Build B1 Simon\n\twil: My job, get a blue!\n\n5) wil: B G1 Wil\n\n6) Simon: Trade B3 Y3 Simon\n\n7) wil: D G1 Wil Y3 Y3\n\n8) Simon: Build B2 Simon\n\n9) wil: T G3 B3 Wil\n\n10) Simon: Discover B2 Simon G2 G2\n\n11) wil: B B2 Wil\n\n12) Simon: Build B2 G2\n\n13) wil: T B3 Y3 Wil\n\n14) Simon: Build B3 G2\n\n15) wil: B B3 Wil\n\n16) Simon: Trade B2 R2 G2\n\n17) wil: T B2 R2 Wil\n\n18) Simon: Trade B2 Y2 G2\n\n19) wil: M B3 Wil Y3\n\n20) Simon: Build B2 G2\n\n21) wil: B B2 Y3\n\n22) Simon: Trade B2 Y2 G2\n\n23) wil: T B2 R2 Y3\n\n24) Simon: Build B2 G2\n\n25) wil: B B2 Y3\n\n26) Simon: Build Y1 G2\n\n27) wil: B G1 Y3\n\n28) Simon: Discover Y2 G2 B3 B3\n\n29) wil: B G2 Y3\n\n30) Simon: Trade B3 R3 G2\n\n31) wil: B G2 Wil\n\n32) Simon: Build Y1 G2\n\n33) wil: M G1 Y3 G2\n\n34) Simon: Attack G1 G2\n\n35) wil: S Y3 Wil\nM G1 Y3 G2\nM G2 Y3 G2\nM B3 Y3 Wil\nC G2 G\n\n36) Simon: Build B2 Simon\n\n37) wil: S G2 Wil\nB B2 Y3\nB B3 Y3\n\n38) Simon: Discover B1 Simon G2 G2\n\n39) wil: M B2 Y3 G2\n\n40) Simon: Build Y1 Simon\n\n41) wil: B G1 Wil\n\n42) Simon: Trade B2 R2 Simon\n\n43) wil: B B2 G2\n\n44) Simon: Build Y1 Simon\n\n45) wil: T B3 G3 Y3\n\n46) Simon: Build B3 G2\nCatastrophe G2 Blue\n\n47) wil: B B1 Y3\n\n48) Simon: Discover Y1 Simon G2 G2\n\n49) wil: T B2 Y2 Y3\n\n50) Simon: Discover Y1 Simon G2 G2a\n\n51) wil: D Y2 Y3 B2 B2\n\n52) Simon: Trade Y2 G2 B3\n\n53) wil: B B2 Y3\n\n54) Simon: Move Y1 G2 B3\n\n55) wil: M B2 Y3 G2a\n\n56) Simon: Build Y1 G2a\n\n57) wil: S R2 Y3\nA Y1 G2a\nA Y1 G2a\n\n58) Simon: Build G1 B3\n\n59) wil: B B2 Y3\n\n60) Simon: Move G2 B3 G2a\n\n61) wil: B B3 G2a\n\n62) Simon: Build G2 B3\n\n63) wil: T B3 R3 G2a\n\n64) Simon: Sacrifice G2 B3\nBuild G2 G2a\nBuild G3 G2a\nCatastrophe G2a Green\n\n65) wil: B B2 Wil\n\n66) Simon: Build G2 B3\n\n67) wil: B B3 Y3\n\n68) Simon: Trade G2 R2 B3\n\n69) wil: T B3 Y3 Y3\n\n70) Simon: Build Y1 B3\n\n71) wil: D Y3 Y3 G2 G2\n\n72) Simon: Build G2 B3\n\n73) wil: B Y1 G2\n\n74) Simon: Move Y1 B3 G2\n\n75) wil: M Y3 G2 B3\n\n76) Simon: Build Y2 B3\n\n77) wil: B B3 Y3\n\n78) Simon: Build R1 Simon\n\twil: Nice\n\n79) wil: T B3 G3 Y3\n\n80) Simon: Sacrifice R1 Simon\nAttack Y1 G2\n\tSimon: Hmm :) It's still behind, and I'm speculating on errors.\n\n81) wil: D Y3 B3 G2 Gtoo\n\n82) Simon: Move G2 B3 B2\n\n83) wil: M G3 Y3 B2\n\n84) Simon: Sacrifice G2 B2\nBuild R1 B3\nBuild R1 Simon\n\n85) wil: B B3 Y3\n\n86) Simon: Move R1 Simon G2\n\n87) wil: T B3 R3 Y3\n\n88) Simon: Build R1 Simon\n\n89) wil: M R3 Y3 G2\n\n90) Simon: Build R3 G2\n\n91) wil: B R3 Wil\n\n92) Simon: Attack R3 G2\n\n93) wil: S Y2 B2\nM R2 Wil Y3\nM R2 Y3 G2\nC G2 R\n\n94) Simon: Move R1 Simon G2\n\n95) wil: M B3 Wil B3\n\n96) Simon: Build R1 B3\n\tSimon: Right, I should have sac r1 to attack r3.\n\n97) wil: B Y2 Gtoo\n\n98) Simon: Build R2 Simon\n\n99) wil: M G3 Y3 G2\n\n100) Simon: Build R3 Simon\n\n101) wil: S G1 Wil\nB B3 Y3\n\n102) Simon: Move R3 Simon Gtoo\n\n103) wil: S R3 Wil\nA R3 Gtoo\nA R1 G2\nA Y1 G2\n\n104) Simon: Sacrifice R2 Simon\nAttack R1 G2\nAttack Y1 G2\n\n105) wil: T B3 R3 Y3\n\n106) Simon: Discover Y1 G2 B3 B3a\n\n107) wil: S Y3 Gtoo\nM R3 Gtoo Simon\nM G3 G2 Simon\nM G3 B2 Simon\n\n\twil: Long game! Like playing Andy!\n\tSimon: gg\n\twil: We all came to watch the blood wolf moon!\n\twil: What no dinner?\n\tSimon: Wow, who is "we"? People from the Looney designer group?\n\twil: Lol, my big ships visiting your hw..we\n\tSimon: Heh. It'll be at 05:00 in Germany, but I've got the alarm set for an early rise to see it.\n\twil: Lol,.and you ain't asleep yet\n\nHomeworlds Online (SDG# 34852)\nVariants: "Hard time"\nStarted: 2019.1.12, Ended: 2019.1.19\nParticipants: Laurie_Menke (S), DodoBirb (N)\nWinner: DodoBirb\n\n1) DodoBirb: Homeworld B1 R2 G3\n\tLaurie_Menke: Hi DodoBirb! Good luck in the Homeworlds Tournament of 2018 (and 2019)! :)\n\tDodoBirb: Good luck!\n\tDodoBirb: and thank you!\n\n2) Laurie_Menke: Homeworld B1 G3 Y3\n\n3) DodoBirb: Build G1 Dodobirb\n\tLaurie_Menke: I'm starting off a little unorthodox... we'll see whether I can pull it off. ;)\n\tDodoBirb: Interesting...\n\n4) Laurie_Menke: Build Y1 Laurie_menke\n\n5) DodoBirb: Trade G1 B1 Dodobirb\n\n\tDodoBirb: Sorry, I probably should have paused the time. We can have a rematch if you want.\n\tLaurie_Menke: I'm the one that's sorry, DodoBirb. I've been traveling and having trouble keeping up with games. I probably shouldn't have joined the tournament in the first place. But I am sure you would have won eventually and am happy to conceded if you'd like. If that doesn't feel good for you, I'm also happy to try again. In any case, thanks for the fun!\n\tDodoBirb: I'm fine with taking it if you're having trouble keeping up with the games. Hope you've had fun!\n\tLaurie_Menke: I have indeed! Thanks, DodoBirb! :)\n\nHomeworlds Online (SDG# 34875)\nVariants: "Hard time"\nStarted: 2019.1.15, Ended: 2019.2.23\nParticipants: ts52 (S), wil (N)\nWinner: ts52\n\n1) wil: H Y2 B1 G3\n\twil: GL\n\n2) ts52: Homeworld Y3 B1 G3\n\n3) wil: B G1 Wil\n\tts52: Thanks. You too. Have a good game!\n\n4) ts52: Build G1 Ts52\n\n5) wil: T G1 B1 Wil\n\n6) ts52: Build G1 Ts52\n\n7) wil: B B2 Wil\n\n8) ts52: Discover G1 Ts52 B2 Gonzo\n\n9) wil: D B1 Wil R3 R3\n\n10) ts52: T G1 Y1 Ts52\n\n11) wil: S G3 Wil\nB B2 R3\nB B3 R3\nB B3 Wil\n\n12) ts52: B Y1 Ts52\n\n13) wil: T B3 G3 Wil\n\n14) ts52: Move Y1 Ts52 Gonzo\n\n15) wil: T B3 Y3 R3\n\n16) ts52: Build G1 Ts52\n\n17) wil: D B2 R3 Y2 Y2\n\n18) ts52: Sacrifice G3 Ts52\nBuild Y1 Gonzo\nBuild Y2 Gonzo\nBuild Y3 Ts52\n\n19) wil: S G3 Wil\nB B3 Wil\nB B3 Y2\nB B3 R3\n\n20) ts52: Trade Y3 G3 Ts52\n\n21) wil: D B3 Y2 Y3 Y3\n\n22) ts52: Build G1 Gonzo\n\n23) wil: S B2 Wil\nT B3 R3 R3\nT B3 G3 Y3\n\n24) ts52: Trade Y2 R2 Gonzo\n\n25) wil: S G3 Y3\nB B2 Wil\nB B3 Y2\nB B3 Y2\n\n26) ts52: Build Y2 Gonzo\n\n27) wil: T B3 G3 Wil\n\n28) ts52: Build Y3 Ts52\n\n29) wil: T B3 G3 Y2\n\n30) ts52: Build R1 Gonzo\n\n31) wil: B B3 Y2\n\n32) ts52: Build G2 Gonzo\n\n33) wil: D R3 R3 G2 G2\n\n34) ts52: Discover Y3 Ts52 G2 Kermit\n\n35) wil: M B1 R3 G2\n\n36) ts52: Discover Y2 Gonzo B3 Grover\n\n\nHomeworlds Online (SDG# 34884)\nVariants: "Hard time"\nStarted: 2019.1.16, Ended: 2019.1.20\nParticipants: ajo (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\twil: The for the challenge! Good luck!\n\n2) ajo: Homeworld B3 R1 G3\n\tajo: For the challenge. Good luck to you too!\n\n3) wil: B G1 Wil\n\n4) ajo: Build G1 Ajo\n\n5) wil: T G1 B1 Wil\n\n6) ajo: Trade G1 B1 Ajo\n\n7) wil: T B1 R1 Wil\n\n8) ajo: Trade B1 R1 Ajo\n\n9) wil: B R2 Wil\n\tajo: Okay, I can do that too. ;)\n\twil: Lol\n\n10) ajo: Build R2 Ajo\n\n11) wil: B R2 Wil\n\n12) ajo: Trade R2 Y2 Ajo\n\n13) wil: D R2 Wil B3 B3\n\n14) ajo: Build G1 Ajo\n\n15) wil: D R1 Wil R3 R3\n\n16) ajo: Build Y1 Ajo\n\n17) wil: S G3 Wil\nB R2 R3\nB R3 B3\nB R3 Wil\n\n18) ajo: Discover R1 Ajo Y2 Alpha\n\n19) wil: T R2 G2 Wil\n\n20) ajo: Sacrifice G1 Ajo\nBuild R2 Alpha\n\n21) wil: T R3 G3 B3\n\n22) ajo: Move R1 Alpha R3\nCatastrophe R3 Red\n\n23) wil: B G1 B3\n\n24) ajo: Discover Y1 Ajo B2 Beta\n\n25) wil: T G1 Y1 B3\n\twil: That system destined for destruction\n\n26) ajo: Build G1 Ajo\n\n27) wil: B G1 Wil\n\n28) ajo: Sacrifice G3 Ajo\nBuild Y1 Beta\nBuild Y3 Ajo\nBuild Y3 Ajo\n\n29) wil: B Y3 B3\n\n30) ajo: Discover Y3 Ajo G2 Gamma\n\n31) wil: D Y3 B3 B2 B2\n\n32) ajo: Build G1 Ajo\n\n33) wil: T G1 B1 Wil\n\n34) ajo: Discover Y3 Gamma G3 Delta\n\n35) wil: B B1 Wil\n\n36) ajo: Trade Y2 B2 Ajo\n\n37) wil: B Y2 B3\n\n38) ajo: Sacrifice B2 Ajo\nTrade Y1 G1 Beta\nTrade Y3 B3 Delta\n\n39) wil: M Y2 B3 Beta\n\n40) ajo: Sacrifice Y1 Beta\nMove B3 Delta Wil\nCatastrophe Wil Blue\n\n41) wil: B G2 B3\n\n42) ajo: Discover R2 Alpha B3 Gamma\n\n43) wil: M Y3 B2 Gamma\n\tajo: I think I surprised you there. :)\n\twil: Nah, I'll do that everytime!\n\n44) ajo: Discover G1 Ajo B2 Delta\n\n45) wil: S R2 B3\nA R2 Gamma\nA G1 Beta\n\n46) ajo: Build G2 Delta\n\twil: You know they ain't getting away\n\twil: You know they ain't getting away\n\twil: Like watching cops and robber heli chase\n\tajo: Yeah, I think I sacrificed too much after all.\n\n47) wil: S G3 B3\nB G3 B3\nB G3 Beta\nB G3 Wil\n\n48) ajo: Trade G2 Y2 Delta\n\n49) wil: T G3 R3 Beta\n\n50) ajo: Build G2 Ajo\n\twil: Always glad to lose ships for control\n\n51) wil: S G3 B3\nB G3 B3\nB G3 Beta\nB R1 Beta\n\n52) ajo: Build Y1 Delta\n\n53) wil: S Y2 Beta\nM G3 Beta Ajo\nM R3 Beta Ajo\n\n\twil: The struggle is real\n\tajo: Good game!\n\nHomeworlds Online (SDG# 34883)\nVariants: "Hard time"\nStarted: 2019.1.17, Ended: 2019.2.23\nParticipants: ts52 (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B2 R3 G3\n\n2) ts52: Homeworld Y1 B2 G3\n\tajo: For the Great Homeworlds Tournament of 201[89]!\n\tts52: :D Have a good game!\n\n3) ajo: Build G1 Ajo\n\n4) ts52: Build G1 Ts52\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) ts52: T G1 Y1 Ts52\n\n7) ajo: Build Y2 Ajo\n\n8) ts52: B Y2 Ts52\n\n9) ajo: Discover Y1 Ajo B1 Alpha\n\n10) ts52: Discover Y2 Ts52 B3 Gonzo\n\n11) ajo: Build G1 Ajo\n\n12) ts52: Build G1 Ts52\n\n13) ajo: Sacrifice G3 Ajo\nBuild Y2 Alpha\nBuild Y3 Ajo\nBuild Y3 Ajo\n\n14) ts52: Sacrifice G1 Ts52\nBuild Y3 Gonzo\n\n15) ajo: Sacrifice Y3 Ajo\nMove Y2 Ajo Alpha\nMove Y1 Alpha Gonzo\nMove Y2 Alpha Gonzo\nCatastrophe Gonzo Yellow\n\n16) ts52: Build G1 Ts52\n\n17) ajo: Build G1 Ajo\n\n18) ts52: Discover G1 Ts52 B3 Gonzo\n\n19) ajo: Trade G1 B1 Ajo\n\n20) ts52: Build G1 Ts52\n\n21) ajo: Build G2 Ajo\n\n22) ts52: Build G2 Gonzo\n\n23) ajo: Move G1 Ajo Alpha\n\n24) ts52: Trade G2 B2 Gonzo\n\n25) ajo: Build G2 Alpha\n\n26) ts52: Trade B2 Y2 Gonzo\n\tajo: Ping!\n\tts52: Sorry for the delay\n\n27) ajo: Build Y1 Alpha\n\n28) ts52: Trade G1 R1 Ts52\n\n29) ajo: Trade G2 R2 Alpha\n\n30) ts52: Build R1 Ts52\n\n31) ajo: Discover Y1 Alpha B3 Beta\n\n32) ts52: Move R1 Ts52 Gonzo\n\n33) ajo: Sacrifice G2 Ajo\nBuild Y2 Beta\nBuild Y3 Ajo\n\n34) ts52: Build Y3 Gonzo\n\n35) ajo: Trade Y3 G3 Ajo\n\n36) ts52: Discover Y1 Ts52 Y3 Bigbird\n\n37) ajo: Trade Y1 B1 Beta\n\n38) ts52: Move Y3 Gonzo Alpha\n\n39) ajo: Sacrifice G3 Ajo\nBuild B2 Ajo\nBuild B3 Beta\nBuild Y1 Beta\n\n40) ts52: S R1 Gonzo\nA R2 Alpha\n\tajo: Ping!\n\n41) ajo: Trade B3 G3 Beta\n\tts52: Sorry for the delay\n\n42) ts52: A Y2 Alpha\n\n43) ajo: Sacrifice G1 Alpha\nBuild B3 Beta\n\n\nHomeworlds Online (SDG# 34893)\nVariants: "Hard time"\nStarted: 2019.1.17, Ended: 2019.1.27\nParticipants: Trydnt (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) Trydnt: Homeworld B2 R1 G3 *\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) Trydnt: Build G1 Trydnt\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) goulo: Build Y1 Goulo\n\n8) Trydnt: Build R1 Trydnt\n\n9) goulo: Build G1 Goulo\n\n10) Trydnt: Build G1 Trydnt\n\n11) goulo: Discover G1 Goulo Y1 Flaveto\n\n12) Trydnt: Trade G3 Y3 Trydnt\n\n13) goulo: Discover Y1 Goulo G1 Verdeto\n\n14) Trydnt: Build Y2 Trydnt\n\n15) goulo: Build Y2 Goulo\n\n16) Trydnt: Discover R1 Trydnt Y3 Y3\n\n17) goulo: Trade Y2 R2 Goulo\n\n18) Trydnt: Build R2 Trydnt\n\n19) goulo: Move R2 Goulo Verdeto\n\n20) Trydnt: Discover Y2 Trydnt G3 G3\n\n21) goulo: Build Y2 Verdeto\n\n22) Trydnt: Discover R2 Trydnt Y3 Y33\n\n23) goulo: Build Y2 Goulo\n\n24) Trydnt: Build G2 Trydnt\n\n25) goulo: Build G2 Goulo\n\n26) Trydnt: Sacrifice G2 Trydnt\nBuild R2 Y3\nBuild R3 Y33\n\n27) goulo: Build R3 Verdeto\n\n28) Trydnt: Sacrifice Y2 G3\nMove R1 Y3 Verdeto\nMove R2 Y33 Verdeto\nCatastrophe Verdeto R\n\n29) goulo: Build Y2 Goulo\n\n30) Trydnt: Move R3 Y33 Verdeto\n\n31) goulo: Sacrifice Y1 Verdeto\nDiscover Y2 Verdeto Y3 Flavego\n\n32) Trydnt: Build Y1 Trydnt\n\n33) goulo: Trade G2 R2 Goulo\n\n34) Trydnt: Discover Y1 Trydnt G3 G3\n\n35) goulo: Move R2 Goulo Flaveto\n\n36) Trydnt: Move R2 Y3 Flaveto\n\n37) goulo: Sacrifice G1 Flaveto\nBuild Y3 Flavego\n\n38) Trydnt: Move Y1 G3 Verdeto\n\n39) goulo: Sacrifice Y2 Flavego\nMove R2 Flaveto Flavego\nDiscover Y2 Goulo G1 Verdeto2\n\n40) Trydnt: Build Y2 Verdeto\n\n41) goulo: Move Y3 Flavego Flaveto\n\n42) Trydnt: Move R3 Verdeto Flavego\n\n43) goulo: Sacrifice R2 Flavego\nAttack R2 Flaveto\nPass\n\n44) Trydnt: Move R3 Flavego Verdeto\n\n45) goulo: Build Y3 Verdeto2\n\n46) Trydnt: Discover Y1 Verdeto G3 G3\n\n47) goulo: Build G2 Goulo\n\n48) Trydnt: Build G2 Trydnt\n\n49) goulo: Trade G2 B2 Goulo\n\tTrydnt: meant to put that r3 on verdeto2 not verdeto... damnations\n\n50) Trydnt: Trade G1 B1 Trydnt\n\n51) goulo: Move B2 Goulo Verdeto2\n\tgoulo: aha, yeah, that would have seemed better indeed!\n\tTrydnt: pretty sure that'll lose me the game but guess we'll see\n\n52) Trydnt: Move B1 Trydnt G3\n\n53) goulo: Move Y2 Verdeto2 G3\n\n54) Trydnt: Move R3 Verdeto G3\n\n55) goulo: Discover Y2 G3 R2 Rugho\n\n56) Trydnt: Build B1 G3\n\n57) goulo: Discover Y3 Flaveto G3 Verdego\n\n58) Trydnt: Discover B1 G3 G1 G1\n\n59) goulo: Build G2 Goulo\n\n60) Trydnt: Build G2 Trydnt\n\n61) goulo: Move G2 Goulo Flaveto\n\n62) Trydnt: Sacrifice G2 Trydnt\nBuild B1 G3\nBuild B3 G1\n\n63) goulo: Build B3 Verdeto2\n\n64) Trydnt: Move B1 G3 Verdeto\n\n65) goulo: Discover Y2 Rugho B3 Bluego\n\n66) Trydnt: Trade B3 R3 G1\n\n67) goulo: Trade B2 R2 Verdeto2\n\n68) Trydnt: Build G2 Trydnt\n\n69) goulo: Move R2 Flaveto Verdego\n\n70) Trydnt: Sacrifice G2 Trydnt\nBuild B2 G1\nBuild B3 Verdeto\n\n71) goulo: Build R1 Verdego\n\n72) Trydnt: Sacrifice Y2 Verdeto\nMove B3 Verdeto Goulo\nMove B1 Verdeto Goulo\n\n73) goulo: Attack B3 Goulo\n\n74) Trydnt: Sacrifice Y1 G3\nMove B1 G1 Goulo\nCatastrophe Goulo B\n\n75) goulo: Sacrifice Y3 Verdeto2\nMove Y1 Goulo Trydnt\nMove Y2 Bluego Trydnt\nMove Y2 Goulo Trydnt\nCatastrophe Trydnt Y\n\n76) Trydnt: Trade R1 Y1 Trydnt\n\n77) goulo: Move Y3 Verdego Trydnt\n\n78) Trydnt: Build Y1 Trydnt\n\n79) goulo: Attack G2 Trydnt\n\n80) Trydnt: Sacrifice Y1 Trydnt\nMove R3 G1 Goulo\n\n81) goulo: Attack Y1 Trydnt\n\n\tTrydnt: well played\n\tgoulo: thanks, I was lucky about your typo/brainfart/whatever that you mentioned. :)\r\n\r\nafter that, I began to feel I was losing the advantage it gave me as we started to become closer in material strength again as almost all ships got built.\r\n\r\nthe endgame was quite epic with so many ships and possibilities... i almost overlooked my move to spend so many of my own yellows to kill your y3 defending your homeworld, and if i'd done something else, i think it would not have worked out for me.\n\tTrydnt: yeah I had another move that I was considering that would have made the win I think but didn't pull it together in time\n\nHomeworlds Online (SDG# 34895)\nVariants: "Hard time"\nStarted: 2019.1.18, Ended: 2019.4.15\nParticipants: ts52 (S), DodoBirb (N)\nWinner: ts52\n\n1) DodoBirb: Homeworld B1 R2 G3\n\tDodoBirb: This is for the Tournament btw.\n\tDodoBirb: Good Luck!\n\n2) ts52: H Y3 B2 G3\n\tDodoBirb: Just pausing the time in case it runs out.\n\n3) DodoBirb: Build G1 Dodobirb\n\tts52: Thanks. Sorry about that. Have a good game!\n\tDodoBirb: You too!\n\n4) ts52: B G1 Ts52\n\n5) DodoBirb: Trade G1 B1 Dodobirb\n\n6) ts52: Trade G1 B1 Ts52\n\n7) DodoBirb: Build G1 Dodobirb\n\n8) ts52: Build B2 Ts52\n\n9) DodoBirb: Trade G1 Y1 Dodobirb\n\n10) ts52: Build G1 Ts52\n\n11) DodoBirb: Build G1 Dodobirb\n\n12) ts52: Discover B2 Ts52 G1 Robin\n\n13) DodoBirb: Discover B1 Dodobirb G3 Greeny\n\n14) ts52: Build G2 Ts52\n\n15) DodoBirb: Build G2 Dodobirb\n\n16) ts52: Trade G2 Y2 Ts52\n\n17) DodoBirb: Trade G2 Y2 Dodobirb\n\tts52: Sorry for the delay.\n\n18) ts52: Build Y1 Ts52\n\tDodoBirb: No worries.\n\n19) DodoBirb: Move Y1 Dodobirb Greeny\n\n20) ts52: Move Y1 Ts52 Robin\n\n21) DodoBirb: Build G2 Dodobirb\n\n22) ts52: Move G1 Ts52 Robin\n\n23) DodoBirb: Move G2 Dodobirb Greeny\n\n24) ts52: Build G2 Ts52\n\n25) DodoBirb: Build Y1 Dodobirb\n\n26) ts52: T G1 R1 Robin\n\n27) DodoBirb: Trade G2 R2 Greeny\n\n28) ts52: B G1 Ts52\n\n29) DodoBirb: Build G2 Dodobirb\n\tts52: Thanks again for being so understanding about my forgetfulness\n\tDodoBirb: don't worry about it.\n\n30) ts52: Discover G1 Ts52 R1 Elmo\n\n31) DodoBirb: Discover G2 Dodobirb B3 Bigblue\n\n32) ts52: Move Y2 Ts52 Elmo\n\n33) DodoBirb: Build G2 Bigblue\n\n34) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Elmo\nBuild Y3 Robin\n\n35) DodoBirb: Build Y3 Greeny\n\n36) ts52: Trade Y3 R3 Robin\n\n37) DodoBirb: Trade G2 R2 Bigblue\n\n38) ts52: Move R3 Robin Bigblue\n\n39) DodoBirb: Sacrifice G2 Bigblue\nBuild R1 Bigblue\nBuild R3 Bigblue\nCatastrophe Bigblue R\n\n40) ts52: Build Y3 Robin\n\n41) DodoBirb: Build B2 Greeny\n\n42) ts52: Build B3 Robin\n\n43) DodoBirb: Discover B2 Greeny R1 Littlered\n\tDodoBirb: If you want to we could just end this game as as draw.\n\n44) ts52: Discover B3 Robin G2 Kermit\n\tts52: I don't think we've quite stalemated yet.\n\tDodoBirb: I meant if you're having trouble keeping up but if you want to continue then let's continue.\n\n45) DodoBirb: Sacrifice Y3 Greeny\nMove B1 Greeny Littlered\nMove B1 Littlered Ts52\nMove B2 Littlered Ts52\nCatastrophe Ts52 B\n\n46) ts52: Sacrifice Y2 Elmo\nMove B3 Kermit Ts52\nMove R1 Robin Ts52\n\tts52: Oh, I see. Thanks. I'll try to do better. I should be able to keep up.\n\n47) DodoBirb: Discover G1 Dodobirb Y3 Sun\n\n48) ts52: Sacrifice G3 Ts52\nBuild G2 Elmo\nBuild G2 Elmo\nBuild G3 Ts52\n\n49) DodoBirb: Move G1 Sun Elmo\nCatastrophe Elmo G\n\n50) ts52: Build B1 Ts52\n\n51) DodoBirb: Discover Y1 Greeny G2 Medium\n\n52) ts52: Build G1 Ts52\n\n53) DodoBirb: Move Y1 Dodobirb Ts52\n\n54) ts52: Attack Y1 Ts52\n\n55) DodoBirb: Move Y1 Medium Ts52\n\n56) ts52: Discover Y1 Ts52 Y2 Bigbird\n\n57) DodoBirb: Build Y3 Dodobirb\n\tDodoBirb: I think this is Good game.\n\tDodoBirb: well, I didn't mean literally good game. You still have a few moves left.\n\n58) ts52: Attack Y1 Ts52\n\n59) DodoBirb: Move Y2 Dodobirb Greeny\n\n60) ts52: Discover Y1 Ts52 B1 Gonzo\n\tDodoBirb: Oh, I didn't see that one.\n\n61) DodoBirb: Move R2 Greeny Gonzo\n\n62) ts52: Build B2 Ts52\n\n63) DodoBirb: Attack Y1S Gonzo\n\n64) ts52: Build B2 Robin\n\n65) DodoBirb: Build G1 Dodobirb\n\n66) ts52: Move G2 Ts52 Elmo\n\n67) DodoBirb: Move G1 Dodobirb Greeny\n\n68) ts52: Trade B2 R2 Robin\n\n69) DodoBirb: Move G1 Greeny Gonzo\n\n70) ts52: Sacrifice G3 Ts52\nBuild R1 Robin\nBuild R3 Ts52\nBuild G2 Elmo\n\n71) DodoBirb: Move R2 Gonzo Bigbird\n\n72) ts52: D Y1 Bigbird G3 Kermit\n\n73) DodoBirb: Sacrifice G1 Gonzo\nBuild R3 Bigbird\n\n74) ts52: Discover R1 Ts52 G2 Oscar\n\n75) DodoBirb: Move R3 Bigbird Elmo\n\n76) ts52: Sacrifice Y2 Elmo\nMove B1 Ts52 Dodobirb\nMove B2 Ts52 Dodobirb\n\n77) DodoBirb: Attack B2S Dodobirb\n\n78) ts52: S Y3 Robin\nM B3 Ts52 Dodobirb\nC Dodobirb Blue\nM R2 Robin Dodobirb\nM R1 Robin Dodobirb\n\n79) DodoBirb: Attack G2S Elmo\n\n80) ts52: M R3 Ts52 Dodobirb\nC Dodobirb R\n\n\tts52: Indeed . You had me on the ropes there for a while though. Good game.\n\nHomeworlds Online (SDG# 34770)\nVariants: "Unrated"\nStarted: 2019.1.19, Ended: 2019.1.24\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\twil: Thx this'll be interesting.\n\n2) Trydnt: Homeworld R3 B2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 Y1 Wil\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) wil: B G1 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: B Y2 Wil\n\n10) Trydnt: Build Y2 Trydnt\n\n11) wil: D Y1 Wil G3 G3\n\n12) Trydnt: Discover Y1 Trydnt G1 G1\n\n13) wil: B Y3 G3\n\n14) Trydnt: Build Y3 G1\n\n15) wil: D G1 Wil Y3 Y3\n\n16) Trydnt: Trade Y2 R2 Trydnt\n\n17) wil: T Y2 R2 Wil\n\n18) Trydnt: Build Y2 Trydnt\n\n19) wil: B G1 Wil\n\n20) Trydnt: Sacrifice Y2 Trydnt\nMove R2 Trydnt G1\nMove R2 G1 Y3\n\n21) wil: D G1 Y3 Y2 Y2\n\n22) Trydnt: Build Y2 Trydnt\n\n23) wil: T G1 B1 Wil\n\n24) Trydnt: Trade Y2 B2 Trydnt\n\n25) wil: M B1 Wil G3\n\n26) Trydnt: Move B2 Trydnt G1\n\n27) wil: D Y1 G3 G1 Gwon\n\n28) Trydnt: Build Y2 Trydnt\n\n29) wil: S G1 Y2\nB Y2 G3\n\n30) Trydnt: Build B1 G1\n\n31) wil: B R1 Wil\n\n32) Trydnt: Discover Y2 Trydnt G1 G11\n\n33) wil: B G2 Wil\n\n34) Trydnt: Build G2 Trydnt\n\n35) wil: D Y2 G3 B1 B1\n\n36) Trydnt: Trade B1 R1 G1\n\n37) wil: M R1 Wil G3\n\n38) Trydnt: Move Y2 Trydnt Gwon\n\n39) wil: D Y1 Gwon B3 B3\n\n40) Trydnt: Move Y2 Gwon B3\n\n41) wil: D Y1 B3 B1 Be1\n\n42) Trydnt: Build B3 G1\n\n43) wil: B B3 G3\n\n44) Trydnt: Move B3 G1 Y3\n\n45) wil: T B1 G1 G3\n\n46) Trydnt: Build B1 G1\n\n47) wil: M G1 G3 B1\n\n48) Trydnt: Discover Y2 G11 R2 R2\n\n49) wil: B G1 B1\n\n50) Trydnt: Sacrifice G2 Trydnt\nBuild R1 G1\nBuild R3 Y3\n\n51) wil: B R3 G3\n\n52) Trydnt: Move R3 Y3 B1\n\n53) wil: D Y2 B1 G2 G2\n\n54) Trydnt: Attack G1 B1\n\n55) wil: M G2 Wil G3\n\n56) Trydnt: Build G2 B1\n\n57) wil: M Y2 G2 Be1\n\n58) Trydnt: Sacrifice Y2 B3\nMove G1 B1 G3\nMove G2 B1 G3\nCatastrophe G3 G\n\n59) wil: S G1 B1\nBuild G1 Wil\n\n60) Trydnt: Build B3 G1\n\n61) wil: B G1 Wil\n\n62) Trydnt: Build G2 Trydnt\n\n63) wil: D G1 Wil Y3 Why3\n\twil: S g1 b1 b b1 wil\n\n64) Trydnt: Move B3 G1 Why3\n\n65) wil: B G2 Why3\n\n66) Trydnt: Sacrifice R2 Y3\nAttack G1 Why3\nAttack G2 Why3\n\n67) wil: T Y2 G2 Be1\n\n68) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Trydnt\nBuild B3 Why3\n\n69) wil: M G2 Be1 Trydnt\nC Trydnt G\n\n\twil: A gift for the old man?\n\tTrydnt: goddamit I did not see that coming\n\twil: Is The only way I can beat you\n\twil: Capitalizing on your mistakes\n\nHomeworlds Online (SDG# 34834)\nVariants: "Unrated, Hard time"\nStarted: 2019.1.19, Ended: 2019.1.25\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) wil: H Y3 B1 G3\n\n3) Trydnt: Build G1 Trydnt\n\twil: Playing against my fav opening\n\tTrydnt: haha I learned from the best\n\n4) wil: B G1 Wil\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) wil: T G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\n8) wil: B B2 Wil\n\n9) Trydnt: Discover B2 Trydnt G3 G3\n\n10) wil: T B1 Y1 Wil\n\n11) Trydnt: Discover B1 Trydnt Y3 Y3\n\n12) wil: D B2 Wil G2 G2\n\n13) Trydnt: Build G1 Trydnt\n\n14) wil: B Y1 Wil\n\n15) Trydnt: Trade B2 Y2 G3\n\n16) wil: M Y1 Wil G2\n\n17) Trydnt: Build Y2 G3\n\n18) wil: B G1 Wil\n\n19) Trydnt: Discover Y2 G3 G2 G22\n\n20) wil: T G1 R1 Wil\n\n21) Trydnt: Trade G1 R1 Trydnt\n\n22) wil: B B1 G2\n\n23) Trydnt: Build G1 Trydnt\n\n24) wil: T B2 R2 G2\n\n25) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Y3\n\n26) wil: B G1 Wil\n\n27) Trydnt: Build G1 Trydnt\n\n28) wil: B B2 G2\n\n29) Trydnt: Move B1 Y3 G22\n\n30) wil: M B2 G2 Y3\n\n31) Trydnt: Build B3 G22\n\n32) wil: B B3 G2\n\n33) Trydnt: Move B3 G22 G3\n\n34) wil: T B3 Y3 G2\n\n35) Trydnt: Build B3 G22\n\n36) wil: B B3 G2\n\n37) Trydnt: Trade B3 R3 G22\n\n38) wil: T B3 R3 G2\n\n39) Trydnt: Build B3 G22\n\n40) wil: B B3 G2\n\n41) Trydnt: Move R3 G22 Y3\n\n42) wil: D B2 Y3 Y2 Y2\n\n43) Trydnt: Move G1 Trydnt Y3\n\n44) wil: B R1 Wil\n\n45) Trydnt: Build R2 Trydnt\n\n46) wil: D Y3 G2 R3 R3\n\n47) Trydnt: Build G1 Trydnt\n\n48) wil: M G1 Wil Y2\n\n49) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Y3\nBuild G3 Trydnt\nBuild R2 Y3\n\n50) wil: M B2 Y2 Y3\n\n51) Trydnt: Attack B2 Y3\n\n52) wil: S G1 Y2\nB Y2 G2\n\n53) Trydnt: Build G1 Y3\n\n54) wil: M B1 G2 R3\n\n55) Trydnt: Move R2 Y3 G22\n\n56) wil: P\n\n57) Trydnt: Move G1 Y3 G2\n\n58) wil: S Y3 R3\nD B3 G2 Y3 Why3\nM R3 G2 Why3\nM Y2 G2 Why3\n\n59) Trydnt: Move B3 G3 G2\n\n60) wil: M R2 G2 Why3\n\n61) Trydnt: Sacrifice R1 Trydnt\nAttack Y1 G2\n\n62) wil: P\n\n63) Trydnt: Sacrifice Y2 G3\nMove Y1 G2 Why3\nMove Y2 G22 Why3\nCatastrophe Why3 Y\n\n64) wil: B G3 Wil\n\n65) Trydnt: Sacrifice B2 Y3\nTrade B3 Y3 G22\nTrade G1 Y1 G2\n\n66) wil: D G3 Wil Y2 Y2\n\n67) Trydnt: Sacrifice G2 Y3\nBuild Y2 G2\nBuild Y2 G22\n\n68) wil: M R1 Wil Y2\n\n69) Trydnt: Sacrifice Y2 G22\nMove Y1 G2 Wil\nMove Y2 G2 Wil\nCatastrophe Wil Y\n\n\nHomeworlds Online (SDG# 34902)\nVariants: "Unrated, Hard time"\nStarted: 2019.1.19, Ended: 2019.1.22\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H Y1 B1 G3 *\n\n2) Trydnt: Homeworld B2 G2 Y3 *\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build Y1 Trydnt\n\n5) wil: B G1 Wil\n\n6) Trydnt: Build Y1 Trydnt\n\n7) wil: D G1 Wil Y3 Y3\n\n8) Trydnt: Discover Y1 Trydnt G3 G3\n\n9) wil: B G1 Y3\n\n10) Trydnt: Build Y2 G3\n\n11) wil: D G1 Y3 B1 B1\n\n12) Trydnt: Build Y2 Trydnt\n\n13) wil: S G3 Wil\nB G2 B1\nB G2 Y3\nB G3 Wil\n\n14) Trydnt: Build Y2 G3\n\n15) wil: B G3 B1\n\n16) Trydnt: Move Y1 G3 Wil\n\n17) wil: T G3 Y3 B1\n\n18) Trydnt: Move Y1 Trydnt Wil\n\n19) wil: T G2 R2 B1\n\n20) Trydnt: Trade Y2 R2 Trydnt\n\n21) wil: B Y2 B1\n\n22) Trydnt: Build R1 Trydnt\n\n23) wil: S G3 Wil\nB G2 Wil\nB G3 B1\nB G3 Wil\n\n24) Trydnt: Trade R1 B1 Trydnt\n\n25) wil: T G3 B3 B1\n\n26) Trydnt: Build R1 Trydnt\n\n27) wil: B G3 B1\n\n28) Trydnt: Move Y2 G3 B1\n\n29) wil: A Y2 B1\n\n30) Trydnt: Move Y2 G3 B1\nCatastrophe B1 Y\n\n31) wil: T G3 Y3 B1\n\n32) Trydnt: Build Y2 Trydnt\n\n33) wil: S G3 Wil\nB G3 Wil\nB G3 B1\nB G3 Y3\n\n34) Trydnt: Move B1 Trydnt Wil\n\n35) wil: S B3 B1\nT G3 R3 Y3\nT G3 R3 Wil\nP\n\n36) Trydnt: Trade Y3 B3 Trydnt\n\n37) wil: S R3 Y3\nA Y1 Wil\nA Y1 Wil\nA B1 Wil\n\n38) Trydnt: Move Y2 Trydnt Wil\nCatastrophe Wil Y\n\n39) wil: S G3 B1\nB G3 B1\nB G3 Y3\nB G3 Wil\n\n40) Trydnt: Trade R2 Y2 Trydnt\n\n41) wil: S Y3 B1\nM G3 B1 Trydnt\nM G3 Y3 Trydnt\nM B1 Wil Trydnt\n\n42) Trydnt: Attack G3 Trydnt\n\n43) wil: S G2 Y3\nB G2 Trydnt\nB B2 Trydnt\nC Trydnt B\nC Trydnt G\n\n\twil: Def,different\n\tTrydnt: yup not sure how I feel about these games lol\n\twil: You are fighting an untested neuonetwork\n\nHomeworlds Online (SDG# 34851)\nStarted: 2019.1.19, Ended: 2019.3.27\nParticipants: Trydnt (S), dragon76n (N)\nWinner: Trydnt\n\n1) dragon76n: Homeworld B1 Y2 G3\n\n2) Trydnt: Homeworld G2 B1 B3 *\n\n3) dragon76n: Build G1 Dragon76n\n\n4) Trydnt: Build B1 Trydnt\n\n5) dragon76n: T G1 Y1 Dragon76n\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\n7) dragon76n: B G1 Dragon76n\n\n8) Trydnt: Build B2 Trydnt\n\n9) dragon76n: Trade G3 B3 Dragon76n\n\n10) Trydnt: Discover B2 Trydnt Y3 Y3\n\n11) dragon76n: Build G1 Dragon76n\n\n12) Trydnt: Build B2 Trydnt\n\n13) dragon76n: Trade G1 R1 Dragon76n\n\n14) Trydnt: Trade B1 R1 Trydnt\n\n15) dragon76n: B G1 Dragon76n\n\n16) Trydnt: Build Y1 Trydnt\n\n17) dragon76n: D G1 Dragon76n Y3 Yelthr\n\n18) Trydnt: Move B2 Trydnt Yelthr\n\n19) dragon76n: Trade B3 G3 Dragon76n\n\n20) Trydnt: Sacrifice R1 Trydnt\nAttack G1 Yelthr\n\n21) dragon76n: Trade G1 B1 Dragon76n\n\n22) Trydnt: Build B2 Yelthr\n\n23) dragon76n: Discover B1 Dragon76n G3 Grethr\n\n24) Trydnt: Trade B2 R2 Yelthr\n\n25) dragon76n: Build B2 Grethr\n\n26) Trydnt: Build B3 Yelthr\n\n27) dragon76n: Build B3 Grethr\n\n28) Trydnt: Build B3 Yelthr\n\n29) dragon76n: Trade B1 R1 Grethr\n\n30) Trydnt: Sacrifice B2 Y3\nTrade B3 Y3 Yelthr\nTrade B3 G3 Yelthr\n\n31) dragon76n: Trade B2 Y2 Grethr\n\n32) Trydnt: Discover Y3 Yelthr G2 G2\n\n33) dragon76n: Move R1 Grethr Trydnt\n\n34) Trydnt: Sacrifice R2 Yelthr\nAttack R1 Trydnt\nPass\n\n35) dragon76n: B Y1 Grethr\n\n36) Trydnt: Build Y2 G2\n\n37) dragon76n: Trade Y1 R1 Grethr\n\n38) Trydnt: Build R2 Trydnt\n\n39) dragon76n: Build R2 Grethr\n\n40) Trydnt: Discover Y2 G2 B3 B3\n\n41) dragon76n: M R1 Grethr Trydnt\n\n42) Trydnt: Sacrifice R1 Trydnt\nAttack R1 Trydnt\n\n43) dragon76n: B Y1 Grethr\n\n44) Trydnt: Sacrifice Y3 G2\nMove Y2 B3 Dragon76n\nMove Y1 Trydnt Grethr\nMove Y1 Grethr Dragon76n\nCatastrophe Dragon76n Y\n\n45) dragon76n: Trade B3 Y3 Grethr\n\n46) Trydnt: Sacrifice G3 Yelthr\nBuild B1 Yelthr\nBuild B2 Yelthr\nBuild G1 Yelthr\n\n47) dragon76n: Sacrifice Y3 Grethr\nMove Y2 Grethr Trydnt\nMove Y1 Grethr Trydnt\nMove G3 Dragon76n Yelthr\n\n48) Trydnt: Sacrifice Y3 Trydnt\nMove B1 Yelthr Dragon76n\nMove B2 Yelthr Dragon76n\nMove B2 Yelthr Dragon76n\nCatastrophe Dragon76n B\n\n\nHomeworlds Online (SDG# 34816)\nVariants: "Hard time"\nStarted: 2019.1.20, Ended: 2019.1.24\nParticipants: Simon (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tSimon: Have fun!\n\n2) Simon: Homeworld G1 R3 B3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Simon: Build B1 Simon\n\n5) Trydnt: Build G1 Trydnt\n\n6) Simon: Build B1 Simon\n\n7) Trydnt: Discover G1 Trydnt B3 B3\n\n8) Simon: Trade B3 Y3 Simon\n\n9) Trydnt: Build G2 B3\n\n10) Simon: Build B1 Simon\n\n11) Trydnt: Trade G2 Y2 B3\n\n12) Simon: Discover B1 Simon G2 G2\n\n13) Trydnt: Build G2 B3\n\n14) Simon: Build B2 G2\n\n15) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G3 Trydnt\nBuild G3 B3\n\n16) Simon: Discover B1 Simon B2 B2\n\n17) Trydnt: Trade G3 R3 B3\n\n18) Simon: Build B3 Simon\n\n19) Trydnt: Discover G2 Trydnt B3 Be3\n\n20) Simon: Trade B3 G3 Simon\n\n21) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Be3\nBuild Y1 B3\n\n22) Simon: Build B3 G2\n\n23) Trydnt: Move R3 B3 G2\n\n24) Simon: Sacrifice B2 G2\nTrade B1 R1 G2\nTrade B3 R3 G2\n\n25) Trydnt: Attack R3 G2\n\n26) Simon: Build R1 G2\nCatastrophe G2 Red\n\n27) Trydnt: Trade G3 Y3 Be3\n\n28) Simon: Move G3 Simon B2\n\n29) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Be3\nBuild G3 Trydnt\nBuild G3 B3\n\n\tSimon: gg\n\nHomeworlds Online (SDG# 34847)\nVariants: "Hard time"\nStarted: 2019.1.20, Ended: 2019.1.22\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G1 R3 B3\n\n2) wil: H B2 Y1 G3\n\twil: Oh cool, thx!\n\n3) Simon: Build B1 Simon\n\n4) wil: B G1 Wil\n\tSimon: Yep yep, more Homeworlds\n\n5) Simon: Trade B1 Y1 Simon\n\n6) wil: T G1 Y1 Wil\n\n7) Simon: Build Y2 Simon\n\n8) wil: B Y2 Wil\n\n9) Simon: Discover Y1 Simon G2 G2\n\n10) wil: D Y1 Wil G3 G3\n\n11) Simon: Build B1 Simon\n\n12) wil: B G1 Wil\n\n13) Simon: Trade B3 G3 Simon\n\n14) wil: T G1 R1 Wil\n\n15) Simon: Build Y2 G2\n\n16) wil: B Y3 G3\n\n17) Simon: Discover Y1 G2 R3 R3\n\n18) wil: M Y3 G3 G2\n\n19) Simon: Sacrifice G3 Simon\nBuild Y3 R3\nBuild Y3 Simon\nBuild B1 Simon\n\n20) wil: B R1 Wil\n\n21) Simon: Discover Y2 G2 B1 B1\n\n22) wil: B G1 Wil\n\n23) Simon: Build B2 Simon\n\n24) wil: T Y2 B2 Wil\n\n25) Simon: Sacrifice B1 Simon\nTrade Y1 G1 R3\n\n26) wil: D B2 Wil G3 Gee3\n\n27) Simon: Build G2 R3\n\n28) wil: M G1 Wil G3\n\n29) Simon: Discover B1 Simon Y2 Y2\n\n30) wil: B R1 Wil\n\n31) Simon: Sacrifice G2 R3\nBuild B1 Simon\nBuild B3 Y2\n\n32) wil: B B3 Gee3\n\n33) Simon: Trade B3 R3 Y2\n\n34) wil: S Y1 G3\nM B2 Gee3 G2\n\n35) Simon: Build G2 R3\n\n36) wil: B Y1 G2\n\n37) Simon: Sacrifice G2 R3\nBuild G2 R3\nBuild B3 Y2\n\n38) wil: B B3 G2\n\n39) Simon: Sacrifice Y3 Simon\nMove B3 Y2 R3\nMove B3 R3 Wil\nMove Y3 R3 Wil\n\n40) wil: S Y3 G2\nM B3 Gee3 G2\nM B3 G2 Simon\nM B2 G2 Simon\nC Simon B\n\n41) Simon: Sacrifice R3 Y2\nAttack G3 Wil\nAttack R1 Wil\nAttack R1 Wil\n\n42) wil: M B3 G2 Simon\n\twil: Nice move, didn't see it coming\n\n43) Simon: Attack R1 Wil\n\n\twil: Gg\n\tSimon: gg\n\tSimon: I'll be super busy IRL the next few weeks, thus I won't re-challenge immediately.\n\twil: No worries Thx for the game.\n\nHomeworlds Online (SDG# 34761)\nVariants: "Hard time"\nStarted: 2019.1.20, Ended: 2019.1.20\nParticipants: Trydnt (S), Mathematician42 (N)\nWinner: Trydnt\n\n1) Mathematician42: Homeworld R3 B2 G3\n\tMathematician42: how do I use this? I'm new to super duper games\r\n\n\n\nHomeworlds Online (SDG# 34901)\nVariants: "Unrated"\nStarted: 2019.1.20, Ended: 2019.1.21\nParticipants: wil (S), Mathematician42 (N)\nWinner: wil\n\n1) Mathematician42: Homeworld R3 B1 G3\n\tMathematician42: Hi! I'm new to Super Duper Games and homeworlds\n\tMathematician42: Hello?\n\n2) wil: H B2 Y1 G3\n\tMathematician42: Just doing something that seems good lol\r\n\n\twil: Try #2!\n\n3) Mathematician42: Build G1 Mathematician42\n\tMathematician42: now I can do an action?\n\tMathematician42: Is moving a valid action, or do I need yellow?\n\n4) wil: B G1 Wil\n\twil: Yeah, you can't move without a yellow\n\n5) Mathematician42: Trade G1 B1 Mathematician42\n\tMathematician42: Is there anything you'd recommend?\n\n6) wil: T G1 B1 Wil\n\n7) Mathematician42: Build B2 Mathematician42\n\twil: The beginning is all building\n\n8) wil: B B2 Wil\n\tMathematician42: That moment when you can't even spell your username\n\tMathematician42: XD\n\twil: Build ships, stars, bigger ships. \n\twil: The bane of a big name\n\n9) Mathematician42: Trade B2 Y2 Mathematician42\n\n10) wil: D B1 Wil G3 G3\n\tMathematician42: Are you familiar with the VASSAL engine?\n\n11) Mathematician42: Trade B1 R1 Mathematician42\n\twil: No not at all, is he there?\n\tMathematician42: It's a module for want of a better world where you can download modules to play board games in real time.\n\n12) wil: B B1 Wil\n\twil: Yeah, I looked, is thre an hw module?\n\n13) Mathematician42: Build R1 Mathematician42\n\tMathematician42: no\n\tMathematician42: no\n\tMathematician42: IDK how to make one\n\n14) wil: D B2 Wil Y3 Y3\n\tMathematician42: Is pyramid arcade worth the $74?\n\tDraw5PlayAll: I looked at the vassal thing... seems old and outdated, forum seems to have little that is 2018/2019.\n\tDraw5PlayAll: As for Arcade, it really depends.\n\twil: I play a lot of pyramid games..Yes4me\n\twil: In 5.hw games right now\n\tMathematician42: Is it possible to play Zendo with Pyramid Arcade?\n\n15) Mathematician42: Discover R1 Mathematician42 R2 R2\n\tMathematician42: @Draw5PlayAll: VASSAL is great for X-wing Miniatures. In fact, they had an update not so long ago\n\tMathematician42: To be fair SDG looks old and outdated\n\n16) wil: S G3 Wil\nB B2 G3\nB B3 Y3\nB B3 Wil\n\tDraw5PlayAll: Zendo with Arcade: Not without squirming a bit. Zendo is only good when you have several of each piece to pick from, otherwise supply limits become a problem.\n\tMathematician42: I see. What if I already have two old treehouse sets where one is missing the blue trio?\n\tDraw5PlayAll: That is fine, since you get 5 trios of red, green, yellow, and black. Now you just need 20-40 chips each of three colors.\n\tMathematician42: Great! Thanks for the info\n\tDraw5PlayAll: You also get Blam, Icehouse, and a few other interesting games with 5 trees of each color. The Arcade booklet has some games listed in the back that require 15 pieces of a given color\n\tMathematician42: Awesome! As a 14 year old with a dad who is a board game enthusiast, we have a lot of games and not much space to store them which means we might not be able to get it. lol\n\twil: Sdg is old and out dated, we will play\n\tMathematician42: @D5PA: I have challenged you to a game of Martian Chess\n\n17) Mathematician42: Build R1 Mathematician42\n\n18) wil: B B3 G3\n\tMathematician42: I honestly have no idea what I'm doing.\n\twil: You will start to understand around 10g\n\n19) Mathematician42: Trade R1 G1 Mathematician42\n\twil: This is a blue freeze out always defend \n\n20) wil: D B2 Y3 Y2 Y2\n\tMathematician42: oops\n\tMathematician42: I forgot you could do that\n\n21) Mathematician42: Sacrifice G3 Mathematician42\nBuild R1 R2\nBuild R2 R2\nBuild R2 Mathematician42\n\n22) wil: T B3 R3 G3\nC R2 R\n\twil: Read on catastrophe overpopulation\n\n23) Mathematician42: Move R2 Mathematician42 Y2\n\tMathematician42: I wasn't thinking lol\r\n\n\twil: Lol.good\n\tMathematician42: well you can still call catastrophe \n\n24) wil: D B2 Y2 Y3 Why3\n\twil: Don't wanna lose your Queen ship 2nd lesson \n\n25) Mathematician42: Move R2 Y2 Why3\n\tMathematician42: what queen ship?\r\n\n\twil: 3s are queens\n\tMathematician42: oh right. Martian coasters jargon\n\n26) wil: D B2 Why3 R2 R2\n\n27) Mathematician42: Move R2 Why3 Wil\n\n28) wil: M B1 Wil Y3\n\n29) Mathematician42: Move R2 Wil Y3\n\n30) wil: M B1 Y3 R2\n\tMathematician42: I think I know how you'll win\n\n31) Mathematician42: Move R2 Y3 Wil\n\n32) wil: B B3 G3\n\twil: You are gonna be good\r\n\n\twil: I like the way you think\n\tMathematician42: Thanks\n\tMathematician42: Thanks\n\tMathematician42: What do you like about the way I think?\n\n33) Mathematician42: Build R1 Mathematician42\n\n34) wil: B R1 G3\n\twil: Outta the box unconventional\n\twil: You play like a guy I taught, good player\n\tMathematician42: I see\n\n35) Mathematician42: Discover R1 Mathematician42 Y2 Stardust\n\n36) wil: S R1 G3\nA R2 Wil\n\n37) Mathematician42: Trade G1 R1 Mathematician42\n\n38) wil: T B3 Y3 G3\n\n39) Mathematician42: Trade Y2 G2 Mathematician42\n\n40) wil: M B3 Y3 Stardust\n\n41) Mathematician42: Trade R1 Y1 Mathematician42\n\n42) wil: M B3 Stardust Mathematician42\n\n43) Mathematician42: Discover R1 Mathematician42 R2 Ar2\n\tMathematician42: why can't I do\r\n"sacrifice g2 mathematician42\r\nbuild r2 wil\r\nbuild r3 wil"\n\tMathematician42: nevermind\n\n44) wil: S R2 Wil\nA G2 Mathematician42\nA Y1 Mathematician42\n\n\tMathematician42: Where are you located?\n\twil: DC area\n\twil: Gg, so long and thanx for all the fish\n\twil: I am in half a dozen games, challenge me\n\twil: Get on the ladder challenge a lot of us\n\twil: I think ur gonna beat me soon \n\nHomeworlds Online (SDG# 34903)\nVariants: "Unrated, Hard time"\nStarted: 2019.1.20, Ended: 2019.1.20\nParticipants: Mathematician42 (S), wil (N)\nWinner: wil\n\n\twil: Gl, thx 4 the game!\n\tMathematician42: oops\r\n\n\tMathematician42: oops\r\n\n\tMathematician42: still trying to figure this out lol\n\twil: Oops! So h star1 star2 ship\n\twil: One line each\n\nHomeworlds Online (SDG# 34909)\nVariants: "Hard time"\nStarted: 2019.1.21, Ended: 2019.3.1\nParticipants: wil (S), DodoBirb (N)\nWinner: wil\n\n1) DodoBirb: Homeworld B1 R2 G3\n\tDodoBirb: This is a tournament game just so you know.\n\n2) wil: H B2 Y3 G3\n\twil: Cool n thx\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) wil: B G1 Wil\n\n5) DodoBirb: Trade G1 B1 Dodobirb\n\n6) wil: T G1 B1 Wil\n\n7) DodoBirb: Build G1 Dodobirb\n\n8) wil: B B2 Wil\n\n9) DodoBirb: Trade G1 Y1 Dodobirb\n\n10) wil: T B1 Y1 Wil\n\n11) DodoBirb: Build B1 Dodobirb\n\n12) wil: B B2 Wil\n\n13) DodoBirb: Discover B1 Dodobirb G3 Greeny\n\n14) wil: D B2 Wil G1 G1\n\n15) DodoBirb: Build B3 Greeny\n\n16) wil: B B3 G1\n\n17) DodoBirb: Build B3 Dodobirb\n\n18) wil: T B3 Y3 G1\n\n19) DodoBirb: Discover B3 Dodobirb Y3 Warpgate\n\n20) wil: B B3 G1\n\n21) DodoBirb: Build G1 Dodobirb\n\n22) wil: T B2 R2 G1\n\n23) DodoBirb: Trade B1 R1 Dodobirb\n\n24) wil: B R1 G1\n\n25) DodoBirb: Trade B1 R1 Greeny\n\n26) wil: B B1 Wil\n\n27) DodoBirb: Move G1 Dodobirb Warpgate\n\n28) wil: M R1 G1 Wil\n\n29) DodoBirb: Move R1 Dodobirb Warpgate\n\n30) wil: T B2 Y2 Wil\n\n31) DodoBirb: Build Y1 Dodobirb\n\n32) wil: B Y2 G1\n\n33) DodoBirb: Move Y1 Dodobirb Greeny\n\n34) wil: D Y1 Wil G1 Gone\n\n35) DodoBirb: Build Y2 Greeny\n\n36) wil: T Y2 B2 G1\n\n37) DodoBirb: Build Y2 Dodobirb\n\n38) wil: D B3 G1 R3 R3\n\n39) DodoBirb: Discover Y2 Greeny B1 Bluey\n\n40) wil: B G2 Wil\n\n41) DodoBirb: Build G2 Warpgate\n\n42) wil: B B2 G1\n\n43) DodoBirb: Build G2 Dodobirb\n\n44) wil: S G3 Wil\nB G3 Wil\nB R2 G1\nB R3 Wil\n\n45) DodoBirb: Build R3 Greeny\n\n46) wil: M R3 Wil Bluey\n\n47) DodoBirb: Move Y2 Bluey Wil\n\n48) wil: M Y2 Wil Bluey\n\n49) DodoBirb: Move Y2 Wil Gone\n\n50) wil: M Y1 Gone R3\n\n51) DodoBirb: Move R3 Greeny Gone\n\n52) wil: M B2 G1 R3\n\n53) DodoBirb: Move G1 Warpgate Gone\n\n54) wil: M G2 Wil Bluey\n\n55) DodoBirb: Move Y1 Dodobirb Greeny\n\n56) wil: M B2 R3 Dodobirb\n\n57) DodoBirb: Attack B2S Dodobirb\n\n58) wil: M B3 R3 Dodobirb\n\n59) DodoBirb: Attack B3S Dodobirb\n\n60) wil: S Y3 G1\nM B2 G1 R3\nM B2 R3 Dodobirb\nC Dodobirb B\nM R3 Bluey Dodobirb\n\n61) DodoBirb: Attack R3S Dodobirb\n\n62) wil: S Y2 Bluey\nM R2 G1 Dodobirb\nM R2 G1 Dodobirb\nC Dodobirb R\n\n\twil: Challenge anytime\n\nHomeworlds Online (SDG# 34906)\nVariants: "Unrated"\nStarted: 2019.1.21, Ended: 2019.1.25\nParticipants: wil (S), Mathematician42 (N)\nWinner: wil\n\n1) Mathematician42: Homeworld R2 G1 B3\n\n2) wil: H Y3 B2 G3\n\tMathematician42: HI again!\n\n3) Mathematician42: Build B1 Mathematician42\n\n4) wil: B G1 Wil\n\n5) Mathematician42: Build B1 Mathematician42\n\tMathematician42: LOL! I can't play this at school (not even during lunch!) because of "prohibited games content".\n\n6) wil: B G1 Wil\n\n7) Mathematician42: Trade B3 G3 Mathematician42\n\n8) wil: D G1 Wil Y1 Y1\n\twil: But this is a space force\n\n9) Mathematician42: Trade B1 Y1 Mathematician42\n\n10) wil: B G2 Wil\n\twil: Nice choice\n\tMathematician42: Thanks\n\tMathematician42: Thanks\n\tMathematician42: Thanks\n\tMathematician42: Thanks\n\tMathematician42: Oops\n\n11) Mathematician42: Discover B1 Mathematician42 Y3 Y3\n\n12) wil: D G2 Wil B1 B1\n\n13) Mathematician42: Build G2 Mathematician42\n\n14) wil: S G3 Wil\nB G2 Y1\nB G3 B1\nB G3 Wil\n\n15) Mathematician42: Sacrifice G2 Mathematician42\nBuild Y1 Mathematician42\nBuild Y2 Mathematician42\n\n16) wil: T G3 Y3 B1\n\tMathematician42: AAAAAAAAAHHHHH!!!! You froze the green economy\n\n17) Mathematician42: Move Y2 Mathematician42 Y3\n\tMathematician42: Was sacrificing the G2 a bad move?\n\tDraw5PlayAll: It all depends...\n\n18) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB G3 B1\n\n19) Mathematician42: Move G3 Mathematician42 Y3\n\n20) wil: T G3 R3 Wil\n\n21) Mathematician42: Build G3 Y3\n\n22) wil: S Y3 B1\nM G1 Y1 Y3\nM G2 Y1 Y3\nC Y3 G\nM G3 B1 Y3\n\twil: Another queen left home? I am failing!\n\tMathematician42: Not sure if I understand...\n\n23) Mathematician42: Move B1 Y3 Mathematician42\n\twil: Never leave hw unguarded w/o plan to end game\n\n24) wil: T G2 R2 Wil\n\n25) Mathematician42: Build B1 Mathematician42\n\n26) wil: B G1 Y3\n\n27) Mathematician42: Build B2 Mathematician42\n\n28) wil: M G3 Y3 Mathematician42\n\n29) Mathematician42: Build B2 Mathematician42\n\n30) wil: S R2 Wil\nA Y1 Mathematician42\nA Y1 Mathematician42\nC Mathematician42 B\n\n\nHomeworlds Online (SDG# 34913)\nVariants: "Unrated"\nStarted: 2019.1.21, Ended: 2019.1.29\nParticipants: Mathematician42 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\tMathematician42: Lol. Hope you don't mind playing two games against me at once.\n\twil: Let's do this\n\n2) Mathematician42: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\n4) Mathematician42: Build G1 Mathematician42\n\n5) wil: T G1 B1 Wil\n\n6) Mathematician42: Trade G1 B1 Mathematician42\n\n7) wil: B B2 Wil\n\n8) Mathematician42: Build B2 Mathematician42\n\twil: Keeping opponent from getting larger size\n\twil: Especially red\n\twil: Try to get every color they get\n\n9) wil: T B2 G2 Wil\n\twil: Follow the leader is a good way to learn\n\tMathematician42: interesting... Thanks for the tip\n\n10) Mathematician42: Build B2 Mathematician42\n\n11) wil: B B3 Wil\n\n12) Mathematician42: Trade B2 R2 Mathematician42\n\twil: Ya let me get a 3\n\twil: And I should have catastrphied ya\n\tMathematician42: oh yeah\n\n13) wil: T B1 R1 Wil\n\n14) Mathematician42: Build R1 Mathematician42\n\n15) wil: B G1 Wil\n\n16) Mathematician42: Build G1 Mathematician42\n\n17) wil: T G1 Y1 Wil\n\n18) Mathematician42: Discover R2 Mathematician42 Y1 Y1\n\n19) wil: B Y1 Wil\n\n20) Mathematician42: Move G3 Mathematician42 Y1\n\n21) wil: D G3 Wil Y3 Y3\n\n22) Mathematician42: Trade B2 R2 Mathematician42\n\twil: Ya left your homeworld unguarded\n\n23) wil: D Y1 Wil G3 G3\n\n24) Mathematician42: Move G3 Y1 Mathematician42\n\n25) wil: B Y2 Wil\n\n26) Mathematician42: Trade R2 G2 Mathematician42\n\twil: Worse than sending your king out early\n\n27) wil: S Y2 Wil\nM G3 Y3 Y1\nM G3 Y1 Mathematician42\nC Mathematician42 G\n\tMathematician42: You should join AnalogKid, DiEvAI, and me for a game of Zendo?\n\tMathematician42: *Would you like\n\tMathematician42: **Would you like to (lol, usually I can get it right the first time)\n\twil: Zendo ain't my thing\n\n28) Mathematician42: Trade R1 G1 Mathematician42\n\n29) wil: B Y2 G3\n\n30) Mathematician42: Build B1 Mathematician42\n\n31) wil: S G2 Wil\nB Y2 Wil\nB Y3 G3\n\n32) Mathematician42: Build G1 Mathematician42\n\tMathematician42: You froze out the Yello Economy\n\tMathematician42: *yellow\n\n33) wil: S Y2 G3\nM Y3 G3 Y1\nM Y3 Y1 Mathematician42\n\tMathematician42: Once my dad orders Pyramid Arcade I'll be able to practice homeworlds against him!\n\n34) Mathematician42: Build G1 Mathematician42\n\n35) wil: B Y2 G3\n\n36) Mathematician42: Move G1 Mathematician42 Y1\n\n37) wil: B Y3 G3\n\n38) Mathematician42: Move R2 Y1 G3\n\n39) wil: S R1 Wil\nA R2 G3\n\n40) Mathematician42: Build G2 Mathematician42\n\n41) wil: S R2 G3\nA B1 Mathematician42\nA G2 Mathematician42\n\twil: Thank you for the nice new ship.\n\twil: It is bigger than my trade-in\n\tMathematician42: I forgot about your r1\n\tMathematician42: I forgot about your r1\n\tMathematician42: I think I know what you should do next\r\n\n\n42) Mathematician42: Build G2 Mathematician42\nCatastrophe Mathematician42 G\n\n43) wil: T B3 R3 Wil\n\n44) Mathematician42: Build G1 Y1\n\n45) wil: S R3 Wil\nA B1 Mathematician42\nP\nP\n\n\twil: \n\nHomeworlds Online (SDG# 34784)\nVariants: "Unrated"\nStarted: 2019.1.21, Ended: 2019.1.24\nParticipants: Mathematician42 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Mathematician42: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Mathematician42: Build G1 Mathematician42\n\n5) Trydnt: Trade G1 B1 Trydnt\n\tMathematician42: LOL! I can't play this at school (not even during lunch!) because of "prohibited games content".\n\n6) Mathematician42: Trade G1 B1 Mathematician42\n\n7) Trydnt: Build B2 Trydnt\n\n8) Mathematician42: Build B2 Mathematician42\n\n9) Trydnt: Discover B1 Trydnt G3 G3\n\n10) Mathematician42: Build B3 Mathematician42\n\n11) Trydnt: Build B3 G3\nCatastrophe Mathematician42 B\n\n12) Mathematician42: Build G1 Mathematician42\n\tMathematician42: oh\n\n\tMathematician42: I'm pretty much screwed here.... right?\n\tTrydnt: you can't have more than 3 of a color in the same place or they are destroyed via catastrophe\n\tTrydnt: check out Looney Labs youtube tutorial on the game\n\tTrydnt: on youtube\n\tMathematician42: I know. I always forget that rule\n\tTrydnt: it's probably the most important rule of the game as it's how most good games end with catastrophe on both halves of your opponent's homeworld. winning via attack or wiping out your opponents ships at home does happen but less often\n\nHomeworlds Online (SDG# 34905)\nVariants: "Hard time"\nStarted: 2019.1.23, Ended: 2019.1.26\nParticipants: Thorolf (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n\twil: Gl\n\nHomeworlds Online (SDG# 34928)\nVariants: "Hard time"\nStarted: 2019.1.24, Ended: 2019.2.11\nParticipants: ajo (S), deanthebean (N)\nWinner: ajo\n\n1) deanthebean: Homeworld B2 R3 G3\n\tdeanthebean: Hello. Thanks for accepting the challenge. Have fun!\n\n2) ajo: Homeworld R3 B2 G3\n\n3) deanthebean: Build G1 Deanthebean\n\tajo: You too. :)\n\n4) ajo: Build G1 Ajo\n\tdeanthebean: Thanks!\n\n5) deanthebean: Trade G3 Y3 Deanthebean\n\n6) ajo: Trade G3 Y3 Ajo\n\n7) deanthebean: Build Y1 Deanthebean\n\n8) ajo: Build Y1 Ajo\n\n9) deanthebean: Discover Y1 Deanthebean G1 Newstar\n\n10) ajo: Build G2 Ajo\n\n11) deanthebean: Build G2 Deanthebean\n\n12) ajo: Discover G2 Ajo B1 Alpha\n\n13) deanthebean: Discover G2 Deanthebean Y1 Ipo\n\n14) ajo: Move Y1 Ajo Alpha\n\n15) deanthebean: Build Y2 Deanthebean\n\n16) ajo: Build Y2 Alpha\n\n17) deanthebean: Trade Y2 R2 Deanthebean\n\n18) ajo: Trade Y2 R2 Alpha\n\n19) deanthebean: Build Y2 Deanthebean\n\n20) ajo: Build Y2 Alpha\n\n21) deanthebean: Build G2 Ipo\n\n22) ajo: Build G3 Ajo\n\n23) deanthebean: Discover Y2 Deanthebean B1 Venus\n\n24) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild G3 Alpha\nBuild R1 Alpha\n\n25) deanthebean: Build G3 Deanthebean\n\n26) ajo: Discover G1 Ajo B1 Beta\n\tdeanthebean: build g3 deanthebean\n\n27) deanthebean: Sacrifice G3 Deanthebean\nBuild G3 Deanthebean\nBuild Y2 Newstar\nBuild Y3 Venus\n\n28) ajo: Sacrifice Y2 Alpha\nMove R1 Alpha Deanthebean\nMove R2 Alpha Deanthebean\nCatastrophe Deanthebean Red\n\n29) deanthebean: Build Y2 Deanthebean\n\n30) ajo: Trade G2 B2 Alpha\n\n31) deanthebean: Build G2 Ipo\n\n32) ajo: Move B2 Alpha Deanthebean\n\n\tajo: Checkmate, I think. :)\n\tDraw5PlayAll: How?\n\tDraw5PlayAll: (if the game does not end next move please send response via private message)\n\tdeanthebean: Well played ajo! @Draw5PlayAll: ajo's plan is to sacrifice one of their g3s to build 2 fleets in deanthebean and thereby send it supernova. I couldn't find a defence. Can you? \n\tDraw5PlayAll: sac Y3 Venus\r\nd G2 ipo B3 Denial1\r\nd G2 ipo B3 Denial2\r\nd G2 ipo B3 Denial3\n\tDraw5PlayAll: (I did not see the green sac at first, but when you said the plan I immediately thought of discovering all the blues)\n\tajo: Hmm, true, I didn't see that, and it would have worked... at least as a delaying tactic. And maybe it would have forced me to retreat, since the focus would then shift to red. Well, I'm glad neither of us saw it! ;)\n\tdeanthebean: Yeah. Nice spot! Shame I didn't see it because it would have kept the game interesting though I'm probably losing in any case. \n\nHomeworlds Online (SDG# 34915)\nVariants: "Unrated"\nStarted: 2019.1.24, Ended: 2019.2.6\nParticipants: Trydnt (S), Mathematician42 (N)\nWinner: Trydnt\n\n1) Mathematician42: Homeworld B2 R1 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) Mathematician42: Build G1 Mathematician42\n\n4) Trydnt: Build G1 Trydnt\n\n5) Mathematician42: Trade G1 B1 Mathematician42\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Mathematician42: Trade B1 R1 Mathematician42\n\n8) Trydnt: Build R2 Trydnt\n\tTrydnt: it's important to note what color the small star is (R1 on your star in this case) as this will create a limiting factor in that color (only two of the smalls left in the bank). You pretty much have to trade for that one first as if you don't then your opponent will trade for it and if you fail to do it on the next turn (you should trade for red now) you'll be locked out of the red pieces and never get a chance to get them before I get to the bigger ones and start trading those for other big yellows and blues and stuff\n\tTrydnt: trading your b1 for an r1 is the only move that will stop me from getting into the big ones and likely winning but it puts you a move behind so it's always a good idea to trade for the color of the smallest piece first if you go first even if it's the color of your star\n\tMathematician42: Interesting\n\tMathematician42: Interesting\n\tMathematician42: Interesting\n\n9) Mathematician42: Build R2 Mathematician42\n\n10) Trydnt: Build R2 Trydnt\n\n11) Mathematician42: Build G1 Mathematician42\n\n12) Trydnt: Discover R1 Trydnt G1 G1\n\n13) Mathematician42: Trade R1 Y1 Mathematician42\n\tTrydnt: undo that move. you cannot have 4 pieces of the same color in the same place or they will blow up\n\n14) Trydnt: Trade R2 Y2 Trydnt\n\n15) Mathematician42: Trade G1 B1 Mathematician42\n\n16) Trydnt: Build R1 Trydnt\n\n17) Mathematician42: Build Y1 Mathematician42\n\n18) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G1\nBuild R3 Trydnt\nBuild R3 G1\n\n19) Mathematician42: Build R3 Mathematician42\n\n20) Trydnt: Sacrifice Y2 Trydnt\nDiscover R1 G1 Y3 Y3\nMove R1 Y3 Mathematician42\nCatastrophe Mathematician42 R\n\n21) Mathematician42: Build Y1 Mathematician42\n\n22) Trydnt: Trade R2 Y2 Trydnt\n\n23) Mathematician42: Trade Y1 B1 Mathematician42\n\n24) Trydnt: Trade R1 B1 Trydnt\n\n25) Mathematician42: Discover B1 Mathematician42 Y1 Y1\n\n26) Trydnt: Sacrifice Y2 Trydnt\nMove R3 G1 Mathematician42\nDiscover B1 Trydnt G1 Ohgeez1\n\n27) Mathematician42: Trade Y1 R1 Mathematician42\n\n28) Trydnt: Attack G3 Mathematician42\n\n29) Mathematician42: Trade R1 G1 Mathematician42\n\n30) Trydnt: Sacrifice R3 Mathematician42\nAttack G1 Mathematician42\nAttack Y1 Mathematician42\nAttack B1 Mathematician42\n\n\tTrydnt: yup there's usually no way back once your opponent has a big ship in your homeworld and you don't and they have red\n\tTrydnt: sacrifice r3 mathematician42\r\nattack g1 mathematician42\r\nattack y1 mathematician42\r\nattack b1 mathematician42\n\tMathematician42: Good game\n\tTrydnt: good game :)\n\nHomeworlds Online (SDG# 34907)\nVariants: "Unrated, Hard time"\nStarted: 2019.1.27, Ended: 2019.3.6\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H Y3 B1 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) wil: B B2 Wil\n\tTrydnt: thought about going for the insta-freeze on these games but wouldn't have been as much fun\n\twil: Tends toward the instance stuck \n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: D B2 Wil Y2 Y2\n\n10) Trydnt: Discover B2 Trydnt G1 G1\n\n11) wil: S G3 Wil\nB B2 Y2\nB B3 Y2\nB B3 Wil\n\n12) Trydnt: Build G1 Trydnt\n\n13) wil: T B2 R2 Y2\n\n14) Trydnt: Build G1 Trydnt\n\n15) wil: M R2 Y2 G1\n\n16) Trydnt: Trade G3 Y3 Trydnt\n\n17) wil: T B1 R1 Wil\n\n18) Trydnt: Build G2 Trydnt\n\n19) wil: A B2 G1\n\n20) Trydnt: Trade G2 R2 Trydnt\n\n21) wil: T B3 G3 Y2\n\n22) Trydnt: Build G2 Trydnt\n\n23) wil: S G3 Y2\nB B1 Y2\nB B2 Y2\nB B3 G1\n\n24) Trydnt: Discover G2 Trydnt Y1 Y1\n\n25) wil: T B3 Y3 G1\n\n26) Trydnt: Discover B1 Trydnt Y1 Why1\n\n27) wil: B B3 G1\n\n28) Trydnt: Build G2 Trydnt\n\n29) wil: S B2 G1\nT B2 R2 Y2\nT B2 G2 Y2\n\n30) Trydnt: Sacrifice G1 Trydnt\nBuild B2 Why1\n\n31) wil: B R1 Y2\n\n32) Trydnt: Trade B1 R1 Why1\n\n33) wil: S G2 Y2\nB R3 Wil\nB R3 G1\n\n34) Trydnt: Build R3 Trydnt\n\n35) wil: D R3 G1 Y2 Why2\n\n36) Trydnt: Discover Y3 Trydnt G1 Gee1\n\n37) wil: T R3 G3 Wil\n\n38) Trydnt: Sacrifice G2 Trydnt\nBuild Y1 Gee1\nBuild R3 Why1\n\n39) wil: M R3 Why2 Y1\n\n40) Trydnt: Sacrifice G2 Y1\nBuild Y2 Gee1\nBuild G2 Trydnt\n\n41) wil: D Y3 G1 G2 G2\n\n42) Trydnt: Discover Y2 Gee1 B2 B2\n\n43) wil: T B3 G3 Wil\n\n44) Trydnt: Move R2 Trydnt Gee1\n\n45) wil: M G3 Wil B2\n\n46) Trydnt: Discover Y2 B2 B3 B3\n\n47) wil: D Y3 G2 B1 B1\n\n48) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild B2 Why1\n\n49) wil: B G2 Wil\n\n50) Trydnt: Move G1 Trydnt Why1\n\n51) wil: M R2 Y2 B1\n\n52) Trydnt: Move Y3 Gee1 Y2\n\n53) wil: S G3 Wil\nB G2 B2\nB G3 B2\nB G3 Wil\n\n54) Trydnt: Move G1 Why1 B2\nCatastrophe B2 G\n\n55) wil: M B1 Y2 Y1\n\n56) Trydnt: Discover Y1 Gee1 B2 B2\n\n57) wil: M R1 Y2 B1\n\n58) Trydnt: Build G1 Trydnt\n\n59) wil: M R2 B1 Trydnt\n\n60) Trydnt: Trade B2 G2 Why1\n\n61) wil: A G2 Trydnt\n\twil: Hard to believe you let both of.them out\n\n62) Trydnt: Build G3 Why1\n\n63) wil: S Y3 B1\nM R1 B1 Trydnt\nM R2 G1 Trydnt\nC Trydnt R\nM R3 Y1 Trydnt\n\n64) Trydnt: Sacrifice Y3 Y2\nMove R3 Why1 Trydnt\nMove G3 Why1 Trydnt\nMove G1 Trydnt Why1\n\n65) wil: S G2 Trydnt\nB R1 Trydnt\nB R2 Trydnt\nC Trydnt R\n\n66) Trydnt: Sacrifice G2 Why1\nBuild Y2 B3\nBuild Y3 B2\n\n67) wil: T B3 Y3 G1\n\n68) Trydnt: Build G2 Trydnt\n\tTrydnt: I thought I was wrong once, but I was mistaken \n\twil: It looks like it\n\n69) wil: D G2 Wil B2 Be2\n\n70) Trydnt: Move Y2 B3 Be2\n\n71) wil: S G2 Be2\nB R1 Wil\nB G2 Wil\n\n72) Trydnt: Move Y2 Be2 Y1\n\n73) wil: D Y3 G1 G2 G2\n\n74) Trydnt: Sacrifice G3 Trydnt\nBuild G1 Why1\nBuild G3 Why1\nBuild G3 Trydnt\n\n75) wil: M B1 Y1 G2\n\n76) Trydnt: Move G1 Why1 B2\n\n77) wil: B B1 G2\n\n78) Trydnt: Sacrifice Y2 Y1\nMove G3 Why1 B2\nMove G3 B2 Wil\n\n\twil: Asleep.at the wheel...gg\n\tTrydnt: happens to the best of us :) well played\n\nHomeworlds Online (SDG# 34925)\nVariants: "Hard time"\nStarted: 2019.1.27, Ended: 2019.2.11\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H Y2 B1 G3\n\n2) Trydnt: Homeworld G3 B2 Y3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build Y1 Trydnt\n\n5) wil: B G1 Wil\n\n6) Trydnt: Build Y1 Trydnt\n\n7) wil: T G1 Y1 Wil\n\n8) Trydnt: Trade Y1 G1 Trydnt\n\n9) wil: T G1 B1 Wil\n\n10) Trydnt: Discover Y1 Trydnt G1 G1\n\n11) wil: B B1 Wil\n\n12) Trydnt: Build Y1 Trydnt\n\n13) wil: D Y1 Wil G3 G3\n\n14) Trydnt: Build Y2 G1\n\n15) wil: M B1 Wil G3\n\n16) Trydnt: Trade Y1 R1 Trydnt\n\n17) wil: D B1 G3 Y1 Y1\n\n18) Trydnt: Build R1 Trydnt\n\n19) wil: B B2 Wil\n\n20) Trydnt: Build R1 Trydnt\n\n21) wil: D B2 Wil R3 R3\n\n22) Trydnt: Move R1 Trydnt Y1\n\n23) wil: D B1 Y1 Y3 Y3\n\n24) Trydnt: Move R1 Y1 G3\n\n25) wil: M Y1 G3 G1\n\n26) Trydnt: Sacrifice R1 Trydnt\nAttack Y1 G1\n\n27) wil: S G3 Wil\nB B2 Wil\nB B3 R3\nB B3 Y3\n\n28) Trydnt: Build Y1 Trydnt\n\n29) wil: T B3 G3 Y3\n\n30) Trydnt: Build Y2 Trydnt\n\n31) wil: T B2 R2 Wil\n\n32) Trydnt: Move Y1 G1 G3\n\n33) wil: T B3 Y3 R3\n\n34) Trydnt: Trade Y3 B3 Trydnt\n\n35) wil: S G3 Y3\nB B2 R3\nB B3 Y3\nB B3 Wil\n\twil: Nice\n\n36) Trydnt: Build Y3 Trydnt\n\n37) wil: T B3 G3 Wil\n\n38) Trydnt: Move B3 Trydnt G1\n\n39) wil: T B2 G2 R3\n\n40) Trydnt: Move B3 G1 G3\n\n41) wil: B G1 Wil\n\n42) Trydnt: Build B2 G3\n\n43) wil: B B3 R3\n\n44) Trydnt: Move B3 G3 Wil\n\n45) wil: M G1 Wil Y3\n\n46) Trydnt: Sacrifice R1 Trydnt\nAttack R2 Wil\n\n47) wil: T B3 R3 R3\n\n48) Trydnt: Attack G3 Wil\n\n49) wil: S G1 Y3\nB B3 Wil\n\n50) Trydnt: Sacrifice R2 Wil\nAttack B3 Wil\nAttack B1 Wil\n\n\tTrydnt: my homeworld fleet looks just so wrong thought you might have that but I think my overwhelming yellow advantage was hard to beat\n\nHomeworlds Online (SDG# 34924)\nStarted: 2019.1.27, Ended: 2019.3.22\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld R1 B2 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) ts52: Build G1 Ts52\n\n4) Trydnt: Build G1 Trydnt\n\n5) ts52: Trade G1 Y1 Ts52\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) ts52: Build Y2 Ts52\n\n8) Trydnt: Discover Y1 Trydnt G3 G3\n\n9) ts52: Build Y2 Ts52\n\n10) Trydnt: Move Y1 G3 Ts52\nCatastrophe Ts52 Y\n\n11) ts52: Build G1 Ts52\n\n12) Trydnt: Build G1 Trydnt\n\n13) ts52: Trade G1 Y1 Ts52\n\n14) Trydnt: Trade G1 Y1 Trydnt\n\n15) ts52: Build Y2 Ts52\n\n16) Trydnt: Discover Y1 Trydnt G3 G3\n\n17) ts52: B G1 Ts52\n\n18) Trydnt: Build Y2 G3\n\n19) ts52: Build G1 Ts52\n\n20) Trydnt: Build G1 Trydnt\n\n21) ts52: Discover G1 Ts52 B3 Gonzo\n\n22) Trydnt: Trade G1 R1 Trydnt\n\n23) ts52: Trade G1 R1 Ts52\n\n24) Trydnt: Build R2 Trydnt\n\n25) ts52: Move R1 Ts52 Gonzo\n\n26) Trydnt: Move R2 Trydnt G3\n\n27) ts52: Build R2 Gonzo\n\n28) Trydnt: Discover Y2 G3 G1 G1\n\n29) ts52: Move Y1 Ts52 Gonzo\n\n30) Trydnt: Build R2 Trydnt\n\n31) ts52: Build R3 Gonzo\n\n32) Trydnt: Move R1 Trydnt Gonzo\nCatastrophe Gonzo R\n\n33) ts52: Trade Y1 R1 Gonzo\n\n34) Trydnt: Move Y2 G1 Gonzo\n\n35) ts52: Build G1 Ts52\n\n36) Trydnt: Sacrifice R2 G3\nAttack R1 Gonzo\nAttack G1 Gonzo\n\n37) ts52: Build Y1 Ts52\n\n38) Trydnt: Build G1 Gonzo\n\n39) ts52: Trade Y2 R2 Ts52\n\n40) Trydnt: Sacrifice Y2 Gonzo\nMove G1 Gonzo Ts52\nMove G1 Gonzo Ts52\nCatastrophe Ts52 G\n\n41) ts52: Trade R2 G2 Ts52\n\n42) Trydnt: Build Y2 G3\n\n43) ts52: Build Y2 Ts52\n\n44) Trydnt: Build R1 Trydnt\n\n45) ts52: Trade Y2 R2 Ts52\n\tts52: Well that's not good. For me anyway.\n\n46) Trydnt: Sacrifice Y2 G3\nMove G3 Trydnt Gonzo\nMove G3 Gonzo Ts52\n\n47) ts52: Build G1 Ts52\n\n48) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Ts52\nAttack G2 Ts52\n\n49) ts52: Build G1 Ts52\nCatastrophe Ts52 G\n\n50) Trydnt: Attack Y1 Ts52\n\n\tts52: Good game!\n\tTrydnt: well played :)\n\nHomeworlds Online (SDG# 34945)\nVariants: "Hard time"\nStarted: 2019.1.27, Ended: 2019.1.30\nParticipants: dlwillson (S), goulo (N)\nWinner: dlwillson\n\n1) goulo: Homeworld R3 B2 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\tgoulo: hi!\n\n3) goulo: Build G1 Goulo\n\tdlwillson: Hi Russ! Thanks for challenging me! Have fun!\n\n4) dlwillson: B G1 Dlwillson\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) dlwillson: Trade G1 B1 Dlwillson\n\n7) goulo: Build G1 Goulo\n\n8) dlwillson: Build B1 Dlwillson\n\n9) goulo: Build Y1 Goulo\n\n10) dlwillson: Discover B1 Dlwillson B2 Sea\n\n11) goulo: Trade G3 B3 Goulo\n\n12) dlwillson: Build G1 Dlwillson\n\n13) goulo: Trade Y1 R1 Goulo\n\n14) dlwillson: D B1 Dlwillson G2 Field\n\n15) goulo: Build Y1 Goulo\n\n16) dlwillson: S G3 Dlwillson\nB B2 Field\nB B3 Field\nB B3 Sea\n\n17) goulo: Discover Y1 Goulo Y1 Flaveto\n\n18) dlwillson: S B2 Field\nT B3 G3 Sea\nT B3 Y3 Field\n\n19) goulo: Build Y2 Goulo\n\n20) dlwillson: Sacrifice G3 Sea\nBuild B2 Field\nBuild B3 Field\nBuild B3 Sea\n\n21) goulo: Sacrifice Y2 Goulo\nMove Y1 Flaveto Sea\nMove Y1 Sea Dlwillson\n\n22) dlwillson: M B3 Field Dlwillson\n\n23) goulo: Sacrifice R1 Goulo\nAttack G1 Dlwillson\n\n24) dlwillson: S Y3 Field\nD B3 Sea Y1 Sol\nM B1 Sea Sol\nM B3 Sol Goulo\n\n25) goulo: Attack B3 Goulo\n\n26) dlwillson: M B1 Sol Goulo\nC Goulo B\n\n27) goulo: Build Y1 Dlwillson\n\n28) dlwillson: T B3 R3 Dlwillson\n\n29) goulo: Build G1 Dlwillson\n\n30) dlwillson: Trade B2 Y2 Field\n\n31) goulo: Build Y2 Goulo\n\n32) dlwillson: B Y2 Field\n\n33) goulo: Build G2 Goulo\n\n34) dlwillson: Attack G1 Dlwillson\n\n35) goulo: Discover Y1 Goulo G2 Verdo\n\n36) dlwillson: T Y2 R2 Field\n\n37) goulo: Build G3 Goulo\n\n38) dlwillson: Build R1 Field\n\n39) goulo: Move G2 Goulo Field\n\n40) dlwillson: Sacrifice Y2 Field\nMove R2 Field Goulo\nMove R1 Field Goulo\n\n41) goulo: Build Y2 Dlwillson\nCatastrophe Dlwillson Y\n\n42) dlwillson: Sacrifice G1 Dlwillson\nBuild R1 Goulo\nCatastrophe Goulo R\n\n\tgoulo: congrats, thanks for the game!\n\tdlwillson: Finishing you off is... difficult! :-)\n\tdlwillson: Thanks for the excellent game! I thought you were going to pull off the reversal for a few turns there!\n\tgoulo: after you got several larges, I figured I was screwed, but then I started think I might have a chance... :)\r\nBut you played too solid for my crazy ideas to work. :)\n\nHomeworlds Online (SDG# 34959)\nVariants: "Unrated"\nStarted: 2019.1.29, Ended: 2019.1.29\nParticipants: xejaw (S), cokier (N)\nWinner: cokier\n\n1) cokier: Homeworld G3 B2 Y3\n\n2) xejaw: Homeworld B3 G1 Y3\n\txejaw: homeworld B3 G1\n\txejaw: homeworld B3 G1 Y3\n\n3) cokier: Build Y1 Cokier\n\n4) xejaw: Build Y1 Xejaw\n\n5) cokier: Discover Y1 Cokier G1 Siusiak\n\n6) xejaw: Trade Y1 G1 Xejaw\n\n7) cokier: Build Y1 Cokier\n\n8) xejaw: Build G2 Xejaw\n\n9) cokier: Discover Y1 Siusiak G2 Jazda\n\n10) xejaw: Trade G1 B1 Xejaw\n\n11) cokier: Trade Y1 G1 Cokier\n\n12) xejaw: Build B1 Xejaw\n\n13) cokier: Discover G1 Cokier Y1 Kupa\n\n14) xejaw: Trade B1 R1 Xejaw\n\n15) cokier: Trade Y3 R3 Cokier\n\n16) xejaw: Move R1 Xejaw Jazda\n\n17) cokier: Move Y1 Jazda Xejaw\n\n18) xejaw: Build R1 Jazda\n\n19) cokier: Trade Y1 R1 Xejaw\n\n20) xejaw: Move B1 Xejaw Jazda\n\n21) cokier: Build R2 Xejaw\n\n22) xejaw: Move G2 Xejaw Jazda\n\n23) cokier: Build R2 Cokier\n\n24) xejaw: Trade Y3 R3 Xejaw\n\n25) cokier: Trade R3 Y3 Cokier\n\n26) xejaw: Attack R2 Xejaw\n\n27) cokier: Build Y1 Cokier\n\n28) xejaw: Attack R1 Xejaw\n\n29) cokier: Sacrifice Y3 Cokier\nMove R2 Cokier Kupa\nMove R2 Kupa Jazda\nMove R2 Jazda Xejaw\nCatastrophe Xejaw R\n\n\nHomeworlds Online (SDG# 34955)\nStarted: 2019.1.30, Ended: 2019.7.12\nParticipants: ts52 (S), Felix (W), Draw5PlayAll (N), Babamots (E)\nWinner: Babamots\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) ts52: Homeworld Y2 B3 G3\n\n4) Felix: Homeworld B2 R3 G3\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Babamots: Build G1 Babamots\n\n7) ts52: Build G1 Ts52\n\n8) Felix: Build G1 Felix\n\n9) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n10) Babamots: Trade G1 Y1 Babamots\n\n11) ts52: Trade G1 Y1 Ts52\n\n12) Felix: Trade G1 Y1 Felix\n\n13) Draw5PlayAll: Build G1 Draw5playall\n\n14) Babamots: Build G1 Babamots\n\tDraw5PlayAll: Even ts52 traded for yellow?!?\n\n15) ts52: Build G1 Ts52\n\n16) Felix: Build G1 Felix\n\tts52: Sure, why not? ;)\n\n17) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n18) Babamots: Trade G1 R1 Babamots\n\tDraw5PlayAll: No one blame me for this uniformity -- I went first, and you all copied me!\n\n19) ts52: Trade G1 R1 Ts52\n\tDraw5PlayAll: Psst psst lock felix out of red psst psst\n\n20) Felix: Discover G1 Felix B1 Out\n\tBabamots: Early game "lockouts" don't usually scare me anymore. It seems like it's usually safe to trade your large for the color you're lacking and then build more.\n\n21) Draw5PlayAll: Build R2 Draw5playall\n\tts52: Nothing person, seems my choice was either take the red or get locked out of the red.\n\n22) Babamots: Build R2 Babamots\n\tFelix: I feel personally offended and will never speak to you again! :)\n\n23) ts52: B R2 Ts52\n\n24) Felix: Build Y1 Felix\n\n25) Draw5PlayAll: Build Y2 Draw5playall\n\n26) Babamots: Build Y2 Babamots\n\n27) ts52: B G1 Ts52\n\tDraw5PlayAll: I need to actually d a system or two.\n\n28) Felix: Build Y2 Felix\n\n29) Draw5PlayAll: Discover Y2 Draw5playall G2 Kermit\n\n30) Babamots: Discover Y1 Babamots B3 Andoria\n\n31) ts52: Discover G1 Ts52 B1 Grover\n\n32) Felix: Move Y2 Felix Out\n\n33) Draw5PlayAll: Discover R2 Draw5playall B2 Iconia\n\n34) Babamots: Move R2 Babamots Andoria\n\n35) ts52: Move R2 Ts52 Grover\n\tBabamots: Borrowing system names I see :-). Although Iconia makes the most sense as a yellow system.\n\n36) Felix: Build Y2 Out\n\n37) Draw5PlayAll: Build Y3 Kermit\n\n38) Babamots: Sacrifice G3 Babamots\nBuild Y3 Babamots\nBuild Y3 Andoria\nBuild R2 Andoria\n\tDraw5PlayAll: What? I thought you used it as a blue!\n\tDraw5PlayAll: For that matter, why have I seen you use Wolf359 as a yellow when red makes more sense to me?\n\n39) ts52: Move Y1 Ts52 Grover\n\tDraw5PlayAll: IMCAC Babamots gets a Y3 and then the other two probably trade out their lesser yellows to slow the Y3 rush.\n\n40) Felix: Build Y3 Felix\n\tBabamots: Iconia is where they found the Star Trek equivalent of a stargate. Since it allows instant travel to far-flung places, it seems like a yellow world to me.\n\tDraw5PlayAll: Well, I could not think of any other blue Trek systems.\n\tDraw5PlayAll: Game 31346, you discovered Iconia as a blue.\n\tBabamots: I must not have cared about matching much that day. Ya got me.\r\nFor blues, I usually prefer Andoria or Bolarus. Both of their native races are blue-skinned.\n\n41) Draw5PlayAll: Build Y3 Draw5playall\n\tFelix: Did you really comb through all Babamots' games to prove a point? Must be a slow day at work ;)\n\n42) Babamots: Trade Y1 G1 Andoria\n\n43) ts52: Build G1 Ts52\n\n44) Felix: Trade Y1 B1 Felix\n\n45) Draw5PlayAll: Discover Y3 Draw5playall B2 Walter\n\n46) Babamots: Trade Y3 G3 Babamots\n\n47) ts52: Trade G1 B1 Ts52\n\tDraw5PlayAll: Your systems are the hardest to copy...\n\n48) Felix: Trade Y2 R2 Out\n\n49) Draw5PlayAll: Move R1 Draw5playall Kermit\n\n50) Babamots: Build R3 Andoria\n\n51) ts52: Build R3 Grover\n\n52) Felix: Build R3 Out\n\n53) Draw5PlayAll: Build R3 Kermit\n\n54) Babamots: Move R3 Andoria Iconia\n\n55) ts52: Build G1 Ts52\n\n56) Felix: Build Y1 Out\n\n57) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Hello?\n\tDraw5PlayAll: ...Felix?!\r\n\n\n58) Babamots: Build G2 Babamots\n\tFelix: Sorry everyone\n\n59) ts52: B G2 Grover\n\n60) Felix: Build G2 Felix\n\n61) Draw5PlayAll: Move G1 Draw5playall Walter\n\n62) Babamots: Attack R2N Iconia\n\tDraw5PlayAll: Now I wish I had just kicked Felix while I had the chance.\n\n63) ts52: Discover B1 Ts52 Y1 Bigbird\n\tBabamots: I think 4 player free-for-alls will turn out to be too complicated for me. It all just looks like a bunch of triangles :-P.\n\n64) Felix: Move Y1 Out Kermit\n\n65) Draw5PlayAll: Discover Y3 Kermit B3 Ferenginar\n\tFelix: I'm with you, Babamots. I don't have the time to wrap my head around everything that happened between my turns haha\n\n66) Babamots: Trade R3 Y3 Iconia\n\tDraw5PlayAll: Meanwhile, I have 12 other games to play.\n\n67) ts52: Build R3 Ts52\n\n68) Felix: Sacrifice Y2 Out\nMove R2 Out Kermit\nMove R3 Out Kermit\nCatastrophe Kermit Red\n\tBabamots: I guess you're much smarter than me :-).\n\n69) Draw5PlayAll: Trade Y3 R3 Walter\n\n70) Babamots: Sacrifice G3 Babamots\nBuild G2 Andoria\nBuild Y2 Iconia\nBuild G3 Babamots\n\tFelix: Me too! We're clearly outmatched here, guys :)\n\tDraw5PlayAll: Are you guys outmatched, or am I playing sub-optimally specifically because I have 12 other games? (I think the latter. The only one of you I usually beat is ts52.)\n\n71) ts52: Move R3 Ts52 Bigbird\n\n72) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Out\nBuild Y2 Kermit\n\tts52: Why do you think I'm trying (but failing) to stay under the radar.\n\n73) Draw5PlayAll: Build Y3 Draw5playall\n\n74) Babamots: Trade R2 B2 Andoria\n\n75) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B1 Bigbird\nBuild B3 Bigbird\n\n76) Felix: Trade G1 R1 Out\n\n77) Draw5PlayAll: Build G1 Draw5playall\n\n78) Babamots: Sacrifice G3 Babamots\nBuild R2 Iconia\nBuild R2 Andoria\nBuild G3 Babamots\n\n79) ts52: Discover B3 Bigbird R3 Elmo\n\tDraw5PlayAll: Cmon blow up the ships at bigbird and kermit!\n\n80) Felix: Move Y1 Kermit Draw5playall\n\tBabamots: I'm still feeling generous.\n\n81) Draw5PlayAll: Move Y3 Draw5playall Walter\n\n82) Babamots: Move G2 Andoria Iconia\n\tDraw5PlayAll: Rule of Acquisition 45...\n\n83) ts52: Move R3 Grover Kermit\n\n84) Felix: Attack G1N Draw5playall\n\tBabamots: Expand or die?\n\n85) Draw5PlayAll: Move R3 Walter Grover\n\n86) Babamots: Move G2 Iconia Draw5playall\n\n87) ts52: Sacrifice R2 Grover\nAttack Y2W Kermit\nAttack Y2N Kermit\n\tDraw5PlayAll: Rule of Acquisition 10\r\nGreed is eternal\n\n88) Felix: Sacrifice G2 Felix\nBuild G2 Draw5playall\nCatastrophe Draw5playall Green\nBuild G1 Out\n\n89) Draw5PlayAll: Sacrifice Y3 Ferenginar\nDiscover R3 Grover G2 Whyme\nMove R3 Whyme Draw5playall\nMove Y3 Walter Grover\n\n90) Babamots: Build Y3 Babamots\n\n91) ts52: S G2 Grover\nB B3 Elmo\nB R2 Bigbird\n\tDraw5PlayAll: WhyMe?\n\n92) Felix: Build G2 Felix\n\tBabamots: Rule of Acquisition 21.\n\tDraw5PlayAll: But where is the profit in trying to kill me?\n\tBabamots: 208.\n\tDraw5PlayAll: I think you are applying 266.\n\n93) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n94) Babamots: Trade B2 G2 Andoria\n\n95) ts52: Build R3 Ts52\n\tDraw5PlayAll: Anyone interested in avenging me?\n\n96) Felix: Sacrifice Y3 Felix\nMove R1 Out Ts52\nMove G1 Out Ts52\nMove G3 Out Ts52\nCatastrophe Ts52 Green\n\n97) Draw5PlayAll: Attack Y1W Draw5playall\n\n98) Babamots: Sacrifice Y3 Babamots\nMove R2 Iconia Grover\nMove R2 Grover Ts52\nMove Y3 Iconia Elmo\nCatastrophe Ts52 R\n\tFelix: I exist merely to ruin lives :)\n\n99) Felix: Discover G2 Felix B1 Grovnor\n\tDraw5PlayAll: You've got the wrong guy! We three need to team up to defeat Babamots NOW!\n\n100) Draw5PlayAll: Move Y3 Grover Felix\n\n101) Babamots: Sacrifice R2 Andoria\nAttack B3S Elmo\nAttack B3S Elmo\n\n102) Felix: Attack Y3N Felix\n\tDraw5PlayAll: Take this, you'll need it!\n\tBabamots: Don't take it! It's probably full of Greek soldiers!\n\tDraw5PlayAll: Then you can beam everyone aboard into forced-labor camps, execute the captain, and take the ship over.\r\n\r\nOf course, the crew are robots programmed to delete themselves upon seize.\n\n103) Draw5PlayAll: Move Y1 Draw5playall Kermit\n\n104) Babamots: Sacrifice G3 Babamots\nBuild Y2 Elmo\nBuild Y3 Babamots\nBuild Y3 Iconia\n\tFelix: I'm in. I have a policy to always fall for traps!\n\n105) Felix: Discover B1 Felix G1 Opus\n\n106) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Is the tournament still going on?\n\tDraw5PlayAll: Felix we need to work together or else Babamots is going to win easily.\n\tBabamots: The tournament just ended today. You should have an email with a link to a discussion of the results.\n\n107) Babamots: Move B3 Elmo Grovnor\n\n108) Felix: Sacrifice G2 Grovnor\nBuild B2 Opus\nBuild B3 Opus\n\n109) Draw5PlayAll: Build G2 Walter\n\n110) Babamots: Move Y3 Elmo Opus\n\n111) Felix: Sacrifice Y1 Felix\nMove B3 Opus Felix\n\tDraw5PlayAll: Zimba, his face black, his eyes red\n\n112) Draw5PlayAll: Build Y1 Draw5playall\n\n113) Babamots: Trade B3 R3 Elmo\n\n114) Felix: Trade B1 R1 Opus\n\tDraw5PlayAll: @Felix: Darmok and Jalad at Tangara\n\n115) Draw5PlayAll: Trade G1 R1 Walter\n\tBabamots: I thought you weren't familiar with Star Trek, D5PA. Have you been watching lately? Or just browsing Memory Alpha?\n\n116) Babamots: Sacrifice Y2 Babamots\nMove B3 Grovnor Felix\nMove Y3 Opus Felix\n\tDraw5PlayAll: Oh, I am familiar with it, all right. I just cannot be expected to know absolutely every planet and star system that you manage to pop into your games.\r\n\r\nDon't spoil anything in DS9 or Voyager please!\n\n117) Babamots: Sacrifice R3 Elmo\nAttack B3W Felix\nAttack Y3W Felix\nAttack G3W Felix\n\tBabamots: I remembered you asking for "no spoilers" before, but I supposed that meant you hadn't seen much of any series. I'm a TNG man myself. I've forgotten lots of what happens in the other series.\n\n\tDraw5PlayAll: Denied!\r\n\r\nActually, I should have made Felix lose first, out of revenge for destroying ts52 prematurely.\n\nHomeworlds Online (SDG# 34961)\nVariants: "Hard time"\nStarted: 2019.1.31, Ended: 2019.2.26\nParticipants: Felix (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) Felix: Homeworld R2 B3 G3\n\tdlwillson: Hi Felix! How's everything? It's good to see you! Good luck and have fun, as always!\n\n3) dlwillson: B G1 Dlwillson\n\tFelix: Hey! A pleasure, as always :) Things are going fine. Quite busy with house, work, children, church, etc etc but we're all doing well. How are things on your end?\n\n4) Felix: Build G1 Felix\n\tdlwillson: Everything at home is good. SFS is good. Work sucks right now, which really sucks for me, because I usually love my job.\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\tFelix: Sorry to hear it! Just super busy, or doing a project that's not much fun?\n\tdlwillson: lack of leadership\n\n6) Felix: Trade G1 B1 Felix\n\n7) dlwillson: Build B2 Dlwillson\n\tFelix: Gotcha. That's always tough to suffer under. I'm very fortunate to have a great boss at the moment, but I've been under a terrible micromanager before, and that was super stressful.\n\tFelix: I guess that would be too much leadership instead of not enough :)\n\n8) Felix: Build B2 Felix\n\tdlwillson: In my opinion, management and leadership are different functions. Leaders are supposed to set clear objectives and priorities. Managers keep their teams healthy and effective in pursuit of the leadership's goals.\n\n9) dlwillson: Discover B1 Dlwillson G2 Forest\n\n10) Felix: Trade B1 Y1 Felix\n\n11) dlwillson: Build B1 Forest\n\n12) Felix: Build B2 Felix\n\tFelix: That's a good distinction! Well, I'm sorry work is such a bummer right now. That's never much fun. At least you have time for a few leisure activities too, like Homeworlds :)\n\n13) dlwillson: T B2 Y2 Dlwillson\n\n14) Felix: Discover B2 Felix G1 Out\n\n15) dlwillson: M Y2 Dlwillson Forest\n\n16) Felix: Build Y1 Felix\n\n17) dlwillson: Discover B1 Forest G1 Field\n\n18) Felix: Discover B2 Felix Y1 Sand\n\n19) dlwillson: B Y2 Forest\n\n20) Felix: Move Y1 Felix Out\n\n21) dlwillson: M Y2 Forest Dlwillson\n\n22) Felix: Build G1 Felix\n\n23) dlwillson: S G3 Dlwillson\nB B2 Field\nB B3 Field\nB B3 Forest\n\n24) Felix: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y3 Felix\nBuild Y3 Out\n\n25) dlwillson: Move B3 Forest Dlwillson\n\n26) Felix: Sacrifice Y2 Felix\nMove B2 Sand Felix\nMove B2 Felix Field\nCatastrophe Field Blue\n\n27) dlwillson: T B3 G3 Dlwillson\n\tdlwillson: Bah. I am unsatisfied with this result, too.\n\n28) Felix: Trade Y1 R1 Out\n\tFelix: Yeah, I tried to give you a bit of a stumper there. I'm glad I did :)\n\n29) dlwillson: T Y2 R2 Dlwillson\n\n30) Felix: Build Y1 Out\n\n31) dlwillson: B Y1 Forest\n\n32) Felix: Build R1 Out\n\n33) dlwillson: D Y1 Forest G1 Field\n\n34) Felix: Move B2 Out Forest\n\n35) dlwillson: B Y2 Forest\n\n36) Felix: S R1 Out\nAttack Y2 Forest\n\n37) dlwillson: B R1 Dlwillson\n\n38) Felix: Sacrifice Y2 Forest\nMove B2 Forest Out\nMove Y3 Out Forest\n\n39) dlwillson: Build Y2 Forest\n\n40) Felix: Build Y2 Out\n\n41) dlwillson: T Y2 G2 Forest\n\n42) Felix: Sacrifice B2 Out\nTrade Y3 R3 Forest\nTrade Y1 B1 Out\n\n43) dlwillson: S Y2 Forest\nM B1 Forest Field\nM R1 Dlwillson Forest\n\n44) Felix: Attack G2 Forest\n\n45) dlwillson: S G3 Dlwillson\nB R1 Forest\nB R2 Forest\nB R3 Dlwillson\nC Forest R\n\n46) Felix: Sacrifice G2 Forest\nBuild B2 Out\nBuild B2 Out\n\n47) dlwillson: Build B2 Field\n\n48) Felix: Discover B2 Out G2 Wizard\n\n49) dlwillson: Trade B1 R1 Field\n\tFelix: Nice. I saw that coming, but it still hurts!\n\n50) Felix: Build G2 Felix\n\tdlwillson: You're still way ahead of me, but at least you're not wandering around with an extra large. I think you should've left it yellow. A big yellow in the field with a gun is way better (IMO) than a big red. The mobile threat is better than the free attacks.\n\n51) dlwillson: Trade R3 G3 Dlwillson\n\tFelix: Yeah, you're totally right. I'm not sure why that move made sense to me at the time.\n\n52) Felix: Sacrifice G2 Felix\nBuild B1 Out\nBuild B3 Wizard\n\n53) dlwillson: B B3 Field\n\n54) Felix: Trade B3 Y3 Wizard\n\n55) dlwillson: T B2 G2 Field\n\n56) Felix: Build G2 Felix\n\n57) dlwillson: D G2 Field Y2 Sol\n\n58) Felix: Sacrifice G2 Felix\nBuild Y1 Out\nBuild Y2 Wizard\n\n59) dlwillson: S G2 Sol\nB G2 Dlwillson\nB Y2 Field\n\n60) Felix: Discover B2 Out G2 Post\n\n61) dlwillson: S G2 Dlwillson\nB R1 Field\nB R2 Field\n\n62) Felix: S Y3 Wizard\nM B2 Post Dlwillson\nM B1 Out Wizard\nM B1 Wizard Dlwillson\n\n63) dlwillson: Move Y1 Field Felix\n\n64) Felix: Sacrifice Y1 Felix\nMove B2 Wizard Dlwillson\nCatastrophe Dlwillson Blue\n\n65) dlwillson: S G3 Dlwillson\nB Y1 Felix\nB Y3 Felix\nB R3 Dlwillson\nC Felix Y\n\n66) Felix: B R3 Out\n\tdlwillson: Hm...\n\n67) dlwillson: S Y2 Field\nM B3 Field Felix\nM R2 Dlwillson Wizard\n\tdlwillson: Too little, too late. But, let's play it out. Maybe I'll pull off a miracle or you'll roll a 1.\n\n\tFelix: Nice! I knew you hade a few turns ago, even though you sounded like you thought you were the one going under :) do you see anything I could have done differently a fee turns back (around when you suggested I roll a 1, haha). I couldn't find any move that wouldn't ultimately open a path of victory for you. I kept hoping you'd miss things, but not much gets past the Willson! Good game and an ending I'll have to study.\n\tdlwillson: A miracle!\r\n\r\nI'll have to look at it. I've been thinking that you could have sac'd your Y3 at home, instead of building a Y3. Put in the finishing blue, cat, then put in two yellows with the remaining energy from the sac. But, that wouldn't have worked, because I had mid and big reds all over, and I could have captured your y1 and g1 at home, winning one turn too early for your taste.\r\nMaybe if you'd sac'd your y1? No, you *did* sac your y1. Tell you what: Come to Denver and we'll set up and see if we can find you a path to a win from there.\n\tFelix: Haha sounds good! I set up my pieces and explored just about every possible path I could go, and they all ended with me being just ONE turn short of victory. I was trying to find a way to stall you by just one turn so I could get that edge I needed, but again, nothing gets past ya.\n\nHomeworlds Online (SDG# 34914)\nVariants: "Unrated"\nStarted: 2019.2.1, Ended: 2019.3.14\nParticipants: Mathematician42 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) Mathematician42: Homeworld B3 R1 G3\n\tMathematician42: I have pyramid arcade now! I'm also a Starship Captain!\n\n3) wil: B G1 Wil\n\twil: Congrats! What are your 10 games?\n\twil: Got the family playing? \n\n4) Mathematician42: Build G1 Mathematician42\n\tMathematician42: My 10 games are:\r\n1. Homeworlds\r\n2. Treehouse\r\n3. Martian Coasters (Looney Ludo)\r\n4. Zendo\r\n5. Martian Chess\r\n6. Black ICE\r\n7. Launchpad 23\r\n8. Volcano\r\n9. Colorwheel\r\n10. Verticality\n\tMathematician42: Yeah, I've "taught" my dad and a friend how to play Homeworlds. So far I've been able to play at least one game with everyone in the family.\n\n5) wil: T G1 R1 Wil\n\n6) Mathematician42: Build G1 Mathematician42\n\tDraw5PlayAll: \n\n7) wil: B R1 Wil\n\n8) Mathematician42: Trade G1 Y1 Mathematician42\n\twil: Set up someplace and just move whenever.\n\twil: Nice,HW is great to play over days live!\n\n9) wil: B R2 Wil\n\twil: Good list! Try petri dish\n\n10) Mathematician42: Build Y1 Mathematician42\n\tMathematician42: I agree about HW. It's so much easier to think when you play games live IRL(or at least just live).\n\tMathematician42: I'm probably going to try it soon.\n\n11) wil: D R2 Wil B3 B3\n\n12) Mathematician42: Build Y1 Mathematician42\n\twil: Make sure to read all the tips on HW in PA\n\tMathematician42: Yeah\n\n13) wil: S G3 Wil\nB R2 Wil\nB R2 B3\nB R3 B3\n\n14) Mathematician42: Trade Y1 B1 Mathematician42\n\tMathematician42: That escalated quickly.\n\n15) wil: T R3 G3 B3\n\twil: Seeing red?\n\n16) Mathematician42: Discover G1 Mathematician42 B2 B2\n\tMathematician42: Yeah\n\n17) wil: D R2 Wil Y3 Y3\n\n18) Mathematician42: Build B1 Mathematician42\n\n19) wil: S G3 B3\nB R3 B3\nB R3 Y3\nB R3 Wil\n\n20) Mathematician42: Move B1 Mathematician42 B2\n\n21) wil: M R3 Y3 B2\n\n22) Mathematician42: Build B2 Mathematician42\n\n23) wil: A G1 B2\n\n24) Mathematician42: Discover B1 Mathematician42 Y2 Y2\n\n25) wil: A B1 B2\n\n26) Mathematician42: Build G1 Mathematician42\n\n27) wil: T R3 Y3 B3\n\n28) Mathematician42: Build Y1 Mathematician42\n\n29) wil: B R3 B2\n\n30) Mathematician42: Move B2 Mathematician42 Y2\n\n31) wil: T R3 Y3 B2\n\n32) Mathematician42: Move Y1 Mathematician42 Y2\n\tMathematician42: I see what's happening here.....\n\tMathematician42: You're setting up for doomsday machine\n\n33) wil: T R3 B3 Wil\n\twil: Once you have the guns\n\n34) Mathematician42: Build Y2 Mathematician42\n\n35) wil: M R2 B3 Y2\n\n36) Mathematician42: Build G1 Mathematician42\n\n37) wil: S Y3 B3 Mathematician42\nM Y3 B2 Mathematician42\nM R3 B2 Mathematician42\nM G1 B2 Mathematician42\nC Mathematician42 G\nC Mathematician42 Y\n\twil: Change of plans\n\tDraw5PlayAll: What is the page admin for\n\tMathematician42: How did you do that?\n\twil: My phone wouldn't format right for me to finish my move... Finally!\n\n\nHomeworlds Online (SDG# 34947)\nVariants: "Hard time"\nStarted: 2019.2.3, Ended: 2019.2.12\nParticipants: wil (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R3 G1 B3\n\tSimon: More Homeworlds, have fun :)\n\n2) wil: H Y2 B1 G3\n\n3) Simon: Build B1 Simon\n\twil: I will!\n\n4) wil: B G1 Wil\n\n5) Simon: Build B1 Simon\n\twil: And move fairly quick till it slows\n\twil: Sunday morn, I can watch this space..\n\n6) wil: B G1 Wil\n\n7) Simon: Trade B3 Y3 Simon\n\n8) wil: D G1 Wil B3 B3\n\n9) Simon: Build B2 Simon\n\n10) wil: S G3 Wil\nB G2 B3\nB G2 Wil\nB G2 Wil\n\n11) Simon: Build Y1 Simon\n\n12) wil: B G3 B3\n\n13) Simon: Discover B1 Simon B2 B2\n\n14) wil: T G3 Y3 B3\n\n15) Simon: Discover B1 Simon B2 B2a\n\n16) wil: B G3 B3\n\n17) Simon: Build B3 Simon\n\n18) wil: D G2 Wil Y3 Y3\n\n19) Simon: Trade B3 G3 Simon\n\n20) wil: B G3 Y3\n\n21) Simon: Move G3 Simon B2\n\n22) wil: M Y3 B3 Wil\n\n23) Simon: Build B3 B2\n\n24) wil: T G3 R3 B3\n\n25) Simon: Build G3 B2\n\n26) wil: M G3 Y3 B2\n\n27) Simon: Sacrifice G3 B2\nBuild G3 B2\nBuild B3 B2a\nBuild Y1 Simon\n\n28) wil: T G3 R3 B2\n\twil: Nice\n\n29) Simon: Trade B1 R1 B2a\n\n30) wil: S G2 Wil\nB G2 Wil\nB R1 B2\n\twil: I've done so badly\n\n31) Simon: Sacrifice G3 B2\nBuild G3 B2\nBuild R1 B2a\nBuild R2 B2a\n\n32) wil: T R1 B1 B2\nC B2 B\n\tSimon: Hnn, it's tempting every turn though to escape with the hanging queens <_<;;\n\n33) Simon: Trade B3 G3 B2a\n\twil: Had to pull the reboot switch\n\n34) wil: B G3 Wil\n\n35) Simon: Build G3 B2a\n\n36) wil: S Y3 Wil\nM G1 Wil Y3\nM G1 Y3 B2a\nM G1 B3 B2a\nC B2a G\n\n37) Simon: Trade R1 G1 B2a\n\twil: Clean up aisle 3\n\n38) wil: B R1 B3\n\n39) Simon: Trade R1 Y1 B2a\n\n40) wil: T R3 Y3 B3\n\n41) Simon: Build Y2 B2a\n\n42) wil: B Y2 B3\n\n43) Simon: Discover Y1 Simon B2 B2\n\n44) wil: M Y2 B3 B2\n\n45) Simon: Build B1 Simon\n\n46) wil: S G2 Y3\nB Y3 B3\nB R1 B3\n\n47) Simon: Sacrifice Y2 B2a\nMove Y1 B2a B3\nMove Y1 B2 B3\nCatastrophe B3 Yellow\n\n48) wil: T R1 Y1 B3\n\n49) Simon: Discover B1 Simon G2 G2\n\n50) wil: B R1 B3\n\n51) Simon: Build B1 Simon\n\n52) wil: M G2 B3 G2\n\n53) Simon: Build B3 G2\n\n54) wil: S G3 Wil\nB G1 G2\nB G3 G2\nB G3 Wil\nC G2 G\n\n55) Simon: Build B1 Simon\n\twil: I thought I had a better plan for that\n\n56) wil: D G2 Wil Y3 Y3\n\tSimon: Yeah, that kill looks expensive for you. It takes 3 moves to rebuild this b3 at g2, but re-killing it costs 3 moves and a pre-existing ship.\n\n57) Simon: Discover B1 Simon G2 G2\n\n58) wil: B G1 Wil\n\n59) Simon: Build B3 G2\n\n60) wil: S G3 Wil\nB G2 Y3\nB G3 Y3\nB G3 Wil\n\n61) Simon: Sacrifice Y1 Simon\nMove G1 B2a Y3\nCatastrophe Y3 Green\n\n62) wil: B G1 Wil\n\n63) Simon: Build B3 G2\n\n64) wil: D G1 Wil Y3 Y3\n\n65) Simon: Trade B3 Y3 G2\n\n66) wil: S G3 Wil\nB G2 Y3\nB G2 Y3\nB G3 Wil\n\n67) Simon: Move B3 G2 Y3\n\n68) wil: S G3 Wil\nB G3 Wil\nB G3 Wil\nB G3 Y3\nC Y3 G\n\n69) Simon: Sacrifice Y3 Simon\nMove Y3 G2 Y3\nMove Y3 Y3 Wil\nMove B3 Y3 Wil\n\n70) wil: S R1 B3\nA Y3 Wil\n\n71) Simon: Sacrifice R2 B2a\nAttack Y3 Wil\nAttack G3 Wil\n\tDraw5PlayAll: Strange\n\n72) wil: T G3 R3 Wil\n\n73) Simon: Trade B2 R2 Simon\n\n74) wil: B G1 Wil\n\n75) Simon: Sacrifice R2 Simon\nAttack R3 Wil\nAttack G1 Wil\n\twil: Gg\n\n76) wil: S Y2 B2\nM R1 B3 G2\nM R1 G2 Simon\n\tSimon: gg\n\n77) Simon: Attack G1 Wil\n\n\nHomeworlds Online (SDG# 34972)\nVariants: "Hard time"\nStarted: 2019.2.4, Ended: 2019.3.1\nParticipants: Draw5PlayAll (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Draw5PlayAll: Homeworld B3 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) Trydnt: Build R2 Trydnt\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\n9) Trydnt: Build R2 Trydnt\n\n10) Draw5PlayAll: Trade R1 Y1 Draw5playall\n\n11) Trydnt: Trade R2 Y2 Trydnt\n\n12) Draw5PlayAll: Build G1 Draw5playall\n\n13) Trydnt: Discover Y2 Trydnt G3 G3\n\n14) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n15) Trydnt: Trade R1 B1 Trydnt\n\n16) Draw5PlayAll: Discover R2 Draw5playall G2 Ohgreat\n\n17) Trydnt: Move B1 Trydnt G3\n\n18) Draw5PlayAll: Build R1 Ohgreat\n\n19) Trydnt: Build R1 Trydnt\n\n20) Draw5PlayAll: Move B1 Draw5playall Ohgreat\n\n21) Trydnt: Move R2 Trydnt G3\n\n22) Draw5PlayAll: Trade R1 Y1 Ohgreat\n\n23) Trydnt: Build Y2 G3\n\n24) Draw5PlayAll: Build Y2 Draw5playall\n\n25) Trydnt: Discover Y2 G3 G2 G2\n\n26) Draw5PlayAll: Discover Y1 Draw5playall B2 Huh\n\n27) Trydnt: Build Y3 G3\n\n28) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y3 Draw5playall\nBuild Y3 Ohgreat\nBuild B1 Ohgreat\n\n29) Trydnt: Sacrifice Y3 G3\nMove Y2 G3 G2\nMove Y2 G2 Draw5playall\nMove Y2 G2 Draw5playall\nCatastrophe Draw5playall Y\n\tTrydnt: https://d1ia71hq4oe7pn.cloudfront.net/photo/67471171-720px.jpg\n\tDraw5PlayAll: Huh?\n\tTrydnt: thought it would link. it's a picture of a bluebird\n\n\nHomeworlds Online (SDG# 34965)\nVariants: "Unrated"\nStarted: 2019.2.6, Ended: 2019.2.22\nParticipants: BloodRumpus (S), wil (N)\nWinner: BloodRumpus\n\n1) wil: H Y2 B1 G3\n\n2) BloodRumpus: Homeworld B3 G2 Y3\n\twil: Thx 4 d challenge!\n\n3) wil: B G1 Wil\n\n4) BloodRumpus: Build Y1 Bloodrumpus\n\n5) wil: T G1 B1 Wil\n\n6) BloodRumpus: Build Y1 Bloodrumpus\n\n7) wil: B B1 Wil\n\n8) BloodRumpus: Discover Y1 Bloodrumpus G1 Foo\n\n9) wil: D B1 Wil G3 G3\n\n10) BloodRumpus: Build Y1 Foo\n\n11) wil: B B2 Wil\n\n12) BloodRumpus: Build Y2 Bloodrumpus\n\n13) wil: D B2 Wil Y3 Y3\n\n14) BloodRumpus: Build Y2 Foo\n\n\nHomeworlds Online (SDG# 34615)\nVariants: "Hard time"\nStarted: 2019.2.8, Ended: 2019.2.10\nParticipants: Trydnt (S), para (N)\nWinner: para\n\n1) para: Homeworld G3 B1 R3\n\n\nHomeworlds Online (SDG# 34960)\nStarted: 2019.2.8, Ended: 2019.8.20\nParticipants: para (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B2 Y3 G3\n\tts52: Have a good game!\n\n2) para: Homeworld G3 B1 R3\n\n3) ts52: Build G1 Ts52\n\n4) para: Build R1 Para\n\tpara: Good game!\n\n5) ts52: Build G1 Ts52\n\n6) para: Build R1 Para\n\n7) ts52: Trade G1 R1 Ts52\n\n\nHomeworlds Online (SDG# 34981)\nStarted: 2019.2.8, Ended: 2019.8.20\nParticipants: para (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld B1 Y3 G3\n\n2) para: Homeworld G3 B2 R3\n\n3) ts52: Build G1 Ts52\n\n4) para: Build R1 Para\n\n5) ts52: Build G1 Ts52\n\n6) para: Build R1 Para\n\n7) ts52: Trade G1 B1 Ts52\n\n\nHomeworlds Online (SDG# 35009)\nVariants: "Hard time"\nStarted: 2019.2.13, Ended: 2019.3.7\nParticipants: goulo (S), deanthebean (N)\nWinner: goulo\n\n1) deanthebean: Homeworld B2 R3 G3\n\tgoulo: howdy!\n\tdeanthebean: Hi. Enjoy the game!\n\n2) goulo: Homeworld B1 R3 G3\n\n3) deanthebean: Build G1 Deanthebean\n\n4) goulo: Build G1 Goulo\n\n5) deanthebean: Trade G1 Y1 Deanthebean\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) deanthebean: Build G1 Deanthebean\n\n8) goulo: Build G1 Goulo\n\n9) deanthebean: Trade G1 B1 Deanthebean\n\n10) goulo: Trade G1 B1 Goulo\n\n11) deanthebean: Build B2 Deanthebean\n\n12) goulo: Build B2 Goulo\n\n13) deanthebean: Discover B1 Deanthebean G1 Sun\n\n14) goulo: Trade B1 R1 Goulo\n\n15) deanthebean: Build B1 Deanthebean\n\n16) goulo: Build B3 Goulo\n\n17) deanthebean: Build B3 Sun\n\n18) goulo: Discover B3 Goulo Y2 Flavo\n\n19) deanthebean: Trade B3 Y3 Sun\n\n20) goulo: Move B3 Flavo Sun\n\n21) deanthebean: Move B1 Deanthebean Sun\n\n22) goulo: Sacrifice R1 Goulo\nAttack Y3 Sun\n\n23) deanthebean: Build Y1 Deanthebean\n\n24) goulo: Build B3 Sun\nCatastrophe Sun B\n\n25) deanthebean: Build Y2 Deanthebean\n\n26) goulo: Build Y2 Goulo\n\n27) deanthebean: Trade Y1 R1 Deanthebean\n\n28) goulo: Trade Y1 R1 Goulo\n\n29) deanthebean: Discover B2 Deanthebean G1 Proxima\n\n30) goulo: Discover B2 Goulo Y2 Flavo\n\n31) deanthebean: Move Y1 Deanthebean Proxima\n\n32) goulo: Move R1 Goulo Flavo\n\n33) deanthebean: Build Y1 Proxima\n\n34) goulo: Trade B2 G2 Flavo\n\n35) deanthebean: Build B1 Proxima\n\n36) goulo: Build R1 Flavo\n\n37) deanthebean: Trade B2 R2 Proxima\n\n38) goulo: Move R1 Flavo Sun\n\n39) deanthebean: Build R2 Proxima\n\n40) goulo: Sacrifice G2 Flavo\nBuild R2 Flavo\nBuild R3 Sun\n\n41) deanthebean: Trade Y1 G1 Proxima\n\n42) goulo: Build G2 Goulo\n\n43) deanthebean: Build G2 Deanthebean\n\n44) goulo: Move G2 Goulo Flavo\n\n45) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 Deanthebean\nBuild G3 Deanthebean\nBuild G3 Proxima\n\n46) goulo: Move G2 Flavo Proxima\nCatastrophe Proxima G\n\n47) deanthebean: Discover G2 Deanthebean Y1 Barnard\n\n48) goulo: Sacrifice Y2 Goulo\nMove R3 Sun Deanthebean\nMove Y3 Sun Deanthebean\n\n\tdeanthebean: Well played! dismal game from my PoV. \n\tgoulo: thanks!\n\nHomeworlds Online (SDG# 34968)\nVariants: "Hard time"\nStarted: 2019.2.16, Ended: 2019.2.19\nParticipants: Draw5PlayAll (S), wil (N)\nWinner: Draw5PlayAll\n\n\nHomeworlds Online (SDG# 34978)\nVariants: "Unrated"\nStarted: 2019.2.17, Ended: 2019.6.1\nParticipants: Mathematician42 (S), wil (N)\nWinner: wil\n\n1) wil: H B1 Y2 G3\n\n2) Mathematician42: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\n4) Mathematician42: Build G1 Mathematician42\n\n5) wil: T G1 B1 Wil\n\n6) Mathematician42: Build G1 Mathematician42\n\n7) wil: B B1 Wil\n\n8) Mathematician42: Trade G1 Y1 Mathematician42\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Mathematician42: Build G1 Mathematician42\n\n11) wil: B B2 Wil\n\n12) Mathematician42: Discover G1 Mathematician42 G1 G1\n\n13) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n14) Mathematician42: Build Y1 Mathematician42\n\tMathematician42: Oh wow\n\n15) wil: S B2 Wil\nT B3 G3 Wil\nT B3 G3 Y3\n\n16) Mathematician42: Build G2 Mathematician42\n\n17) wil: M B2 Y3 G1\n\n18) Mathematician42: Trade Y1 R1 Mathematician42\n\n19) wil: B B2 Wil\n\n20) Mathematician42: Build Y1 Mathematician42\n\tMathematician42: Sorry for the delay. I'm really busy with school projects and homework\n\n21) wil: B G2 Y3\n\twil: No worries, have you shared this game\n\twil: Does your school.have a chess club?\n\n22) Mathematician42: Discover G1 Mathematician42 Y1 Y1\n\tMathematician42: With a couple of people. There is a chess club, I think I might join next year\n\n23) wil: S G3 Y3\nB G2 Wil\nB G3 Y3\nB B3 G1\n\twil: What grade are.you in now? Fav studies?\n\n24) Mathematician42: Move G1 Y1 Y3\n\tMathematician42: I'm in the 9th grade, soon to be in 10th. My favorite subjects at school are mathematics, sciences (especially physics), and music\n\n25) wil: T G2 R2 Y3\n\twil: Good on ya, absorb those studies it will pay off\n\n26) Mathematician42: Move G1 Y3 Wil\n\tMathematician42: Thanks\n\n27) wil: S R2 Y3\nA G1 Wil\nA G1 G1\n\n28) Mathematician42: Move R1 Mathematician42 G1\n\n29) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB B3 G1\n\n30) Mathematician42: Attack G1 G1\n\n31) wil: T B3 R3 G1\n\n32) Mathematician42: Sacrifice Y1 Mathematician42\nMove G1 G1 Y3\n\n33) wil: S B3 G1\nT G3 Y3 Y3\nT G2 R2 Y3\nT G2 R2 Wil\n\n34) Mathematician42: Sacrifice G3 Mathematician42\nBuild G2 Y3\nBuild G2 Y3\nBuild G3 Mathematician42\n\n35) wil: S R2 Wil\nA G2 Y3\nA R1 G1\n\n36) Mathematician42: Build G3 Mathematician42\n\n37) wil: S Y3 Y3\nM G2 Y3 G1\nM G2 G1 Mathematician42\nM R3 G1 Mathematician42\nC Mathematician42 G\n\n\twil: Good game\n\tMathematician42: Good game, sorry for not responding, school has been really crazy lately.\n\nHomeworlds Online (SDG# 34943)\nVariants: "Unrated"\nStarted: 2019.2.17, Ended: 2019.4.4\nParticipants: Trydnt (S), Mathematician42 (N)\nWinner: Trydnt\n\n1) Mathematician42: Homeworld B1 R2 G3\n\n2) Trydnt: Homeworld B1 G3 B3 *\n\n3) Mathematician42: Build G1 Mathematician42\n\n4) Trydnt: Build B1 Trydnt\n\n5) Mathematician42: Build G1 Mathematician42\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\n7) Mathematician42: Trade G1 Y1 Mathematician42\n\n8) Trydnt: Build B2 Trydnt\n\n9) Mathematician42: Build G1 Mathematician42\n\n10) Trydnt: Discover B2 Trydnt G2 G2\n\n11) Mathematician42: Trade G1 R1 Mathematician42\n\n12) Trydnt: Build B2 G2\n\n13) Mathematician42: Build G1 Mathematician42\n\n14) Trydnt: Build B2 Trydnt\n\n15) Mathematician42: Discover R1 Mathematician42 G3 G3\n\n16) Trydnt: Build B3 G2\n\n17) Mathematician42: Move G1 Mathematician42 G3\n\n18) Trydnt: Trade B3 Y3 G2\n\n19) Mathematician42: Build Y1 Mathematician42\n\n20) Trydnt: Build B3 G2\n\n21) Mathematician42: Build Y1 Mathematician42\n\n22) Trydnt: Trade B2 R2 G2\n\n23) Mathematician42: Move Y1 Mathematician42 G3\n\n24) Trydnt: Build B2 G2\n\n25) Mathematician42: Build Y2 Mathematician42\n\n26) Trydnt: Build Y2 G2\n\n27) Mathematician42: Build G1 Mathematician42\n\tMathematician42: Sorry for the delay. I'm really busy with school projects and homework\n\n28) Trydnt: Discover B3 G2 Y3 Y3\n\n29) Mathematician42: Move G1 Mathematician42 Y3\n\n30) Trydnt: Build R1 G2\n\n31) Mathematician42: Move R1 G3 Mathematician42\n\n32) Trydnt: Move R2 G2 Y3\n\n33) Mathematician42: Move Y1 G3 G2\n\n34) Trydnt: Sacrifice Y3 G2\nMove R1 G2 Y3\nMove R1 Y3 Mathematician42\nMove R2 Y3 Mathematician42\nCatastrophe Mathematician42 R\n\n\tMathematician42: Good game\n\tTrydnt: well played\n\tMathematician42: Thank you\n\nHomeworlds Online (SDG# 35033)\nVariants: "Hard time"\nStarted: 2019.2.25, Ended: 2019.4.9\nParticipants: Babamots (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 G3 B3\n\tBabamots: May your fleet fight valiantly!\n\tSimon: Yours too, enjoy!\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) Simon: Build B1 Simon\n\n4) Babamots: Build G1 Babamots\n\n5) Simon: Trade B1 R1 Simon\n\n6) Babamots: Trade G3 R3 Babamots\n\n7) Simon: Build R2 Simon\n\n8) Babamots: Build R2 Babamots\n\n9) Simon: Trade R2 Y2 Simon\n\n10) Babamots: Trade R3 Y3 Babamots\n\n11) Simon: Build R2 Simon\n\tBabamots: Looks like you've been on break from SDG since about the time I started. How is it being back?\n\tSimon: I've been here in 2014-2017, yeah, mostly for Homeworlds. I don't get to play it in real life anymore and missed it; at least Zendo happens often. The player page on SDG still loads as slowly as ever. :-) But the full site rewrite seems to be underway and healthy.\n\n12) Babamots: Build R2 Babamots\n\n13) Simon: Discover R1 Simon G2 G2\n\n14) Babamots: Trade R2 B2 Babamots\n\n15) Simon: Build R2 Simon\n\n16) Babamots: Discover R2 Babamots G3 Orion\n\n17) Simon: Trade R2 G2 Simon\n\n18) Babamots: Build G1 Babamots\n\n19) Simon: Discover R2 Simon B2 B2\n\n20) Babamots: Discover G1 Babamots R3 Romulus\n\n21) Simon: Build Y1 Simon\n\n22) Babamots: Build G1 Babamots\n\n23) Simon: Sacrifice G2 Simon\nBuild R2 G2\nBuild R3 B2\n\n24) Babamots: Build R3 Orion\n\n25) Simon: Sacrifice Y2 Simon\nMove R1 G2 Orion\nMove R2 G2 Orion\nCatastrophe Orion Red\n\n26) Babamots: Build Y1 Babamots\n\n27) Simon: Trade R3 G3 B2\n\n28) Babamots: Build G2 Babamots\n\n29) Simon: Build G2 B2\n\n30) Babamots: Build G2 Romulus\n\n31) Simon: Trade G3 Y3 B2\n\n32) Babamots: Sacrifice B2 Babamots\nTrade G2 Y2 Romulus\nTrade G1 R1 Babamots\n\n33) Simon: Build R2 B2\n\n34) Babamots: Build G1 Romulus\n\n35) Simon: Discover R2 B2 G3 G3\n\n36) Babamots: Discover G2 Babamots G3 Orion\n\n37) Simon: Build Y1 B2\n\n38) Babamots: Discover R1 Babamots Y3 Iconia\n\n39) Simon: Build Y2 Simon\n\n40) Babamots: Build Y2 Romulus\n\n41) Simon: Trade Y3 B3 B2\n\n42) Babamots: Sacrifice Y2 Romulus\nMove G1 Romulus B2\nDiscover G1 B2 Y3 Tauceti\n\n43) Simon: Move B3 B2 Romulus\n\n44) Babamots: Discover Y2 Romulus G2 Gorn\n\n45) Simon: Move R2 B2 Orion\n\n46) Babamots: Sacrifice G2 Orion\nBuild G2 Tauceti\nBuild Y2 Gorn\n\n47) Simon: Attack G1 Romulus\n\n48) Babamots: Sacrifice G2 Tauceti\nBuild R2 Iconia\nBuild R3 Iconia\n\n49) Simon: Sacrifice Y2 Simon\nMove R2 Orion B2\nMove R2 B2 Iconia\nCatastrophe Iconia Red\n\n50) Babamots: Trade Y1 R1 Babamots\n\tBabamots: Sorry to be so slow. That's the move I had intended all along, but I've been distracted lately and needed another chance to look it over.\n\tDraw5PlayAll: TauCeti?\n\tBabamots: Tau Ceti is a real star and one of the reported home systems of the Traveler.\n\n51) Simon: Build B1 Romulus\n\tSimon: Ah, it's fine. 3 days per move is a very slow setting, there is no in problem spending that time.\n\tBabamots: I usually play must faster, more like two moves a day, but SDG has been a little lower on my priority list lately.\n\n52) Babamots: Trade Y3 G3 Babamots\n\n53) Simon: Build G2 Romulus\n\tDraw5PlayAll: By the way... is the Homeworlds tournament still going? If not, who won?\n\tBabamots: There are two games still being played for the tournament, and one more that still needs to start.\n\n54) Babamots: Trade G1 Y1 Babamots\n\n55) Simon: Trade B3 Y3 Romulus\n\n56) Babamots: Discover Y2 Gorn Y3 Pakled\n\n57) Simon: Build B1 Romulus\n\n58) Babamots: Build Y2 Babamots\n\n59) Simon: Move G2 B2 Tauceti\n\n60) Babamots: Build G1 Babamots\n\n61) Simon: Build R2 G3\n\n62) Babamots: Move R1 Babamots Pakled\n\n63) Simon: Sacrifice R2 G3\nAttack G1 Tauceti\nPass\n\n\tBabamots: I missed that that would wreck my plan to get an r3. I think that's it for me. Maybe I'll get good enough to challenge you someday!\n\tSimon: Yeah, the game felt comfortable after my sac to kill 3 reds, I had build locations in all colors.\r\n\r\ngg, looking forward to a rematch, I'll open a standing challenge for whenever you feel like it!\n\tDraw5PlayAll: Pakled sounds familiar...\n\tBabamots: In Star Trek, the Pakleds are a race that don't seem to be very bright. I make a world called Pakled when I'm feeling like I've made big mistakes.\n\tDraw5PlayAll: I remember that one now.\n\nHomeworlds Online (SDG# 35038)\nVariants: "Hard time"\nStarted: 2019.2.26, Ended: 2019.3.10\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: H Y2 B1 G3\n\n2) dlwillson: Homeworld Y3 B1 G3\n\tdlwillson: Yay! A game with Wil! How are you, Wil?\n\n3) wil: B G1 Wil\n\n4) dlwillson: B G1 Dlwillson\n\twil: Alive! Some issues, but coming along\n\n5) wil: T G1 B1 Wil\n\n6) dlwillson: T G3 B3 Dlwillson\n\n7) wil: B B2 Wil\n\n8) dlwillson: B B2 Dlwillson\n\n9) wil: T B1 R1 Wil\n\n10) dlwillson: T B2 R2 Dlwillson\n\n11) wil: B R1 Wil\n\n12) dlwillson: B G1 Dlwillson\n\twil: Brain is working most time...age v stroke???\n\n13) wil: T R1 Y1 Wil\n\n14) dlwillson: Trade G1 Y1 Dlwillson\n\n15) wil: D B2 Wil G3 G3\n\n16) dlwillson: B B1 Dlwillson\n\n17) wil: B B2 G3\n\n18) dlwillson: Trade B3 G3 Dlwillson\n\n19) wil: T B2 Y2 G3\n\n20) dlwillson: D B1 Dlwillson G2 Field\n\n21) wil: B B2 G3\n\n22) dlwillson: D G1 Dlwillson B2 Sea\n\n23) wil: M B2 G3 Field\n\n24) dlwillson: B B3 Field\n\n25) wil: S G3 Wil\nB B3 Field\nB B3 G3\nB R1 Wil\nC Field B\n\n26) dlwillson: B G1 Sea\n\n27) wil: T B3 G3 G3\n\tdlwillson: Nice move, Wil!\n\n28) dlwillson: B G1 Dlwillson\n\twil: We'll see, it seemed like a good idea\n\n29) wil: B B1 G3\n\n30) dlwillson: T G1 Y1 Sea\n\n31) wil: M B2 G3 Sea\n\n32) dlwillson: B Y2 Dlwillson\n\n33) wil: S R1 Wil\nA Y1 Sea\n\n34) dlwillson: S Y1 Dlwillson\nM G1 Sea G3\n\n35) wil: S G3 G3\nB B2 G3\nB B3 G3\nB B3 Sea\n\n36) dlwillson: B G1 G3\n\n37) wil: S Y2 G3\nM B3 G3 Wil\nD B1 G3 G2 G2\n\tdlwillson: I'm gonna need you to make some sort of mistake, sometime.\n\n38) dlwillson: B R1 Dlwillson\n\twil: I know that feeling and will probably oblige.\n\n39) wil: B B3 G2\n\n40) dlwillson: D Y2 Dlwillson G2 Field\n\n41) wil: T B3 G3 Sea\n\n42) dlwillson: B Y1 Field\n\n43) wil: T B3 Y3 G2\n\n44) dlwillson: M Y2 Field G3\n\n45) wil: B G2 Sea\n\n46) dlwillson: S G3 Dlwillson\nB Y2 G3\nB Y3 Field\nB G3 Dlwillson\n\n47) wil: S G3 Sea\nB G3 Sea\nB B3 G2\nB B3 G2\n\n48) dlwillson: S Y3 Field\nM G1 G3 G2\nM G1 G3 G2\nM G1 Dlwillson G2\nC G2 G\n\n49) wil: B Y3 Sea\n\tdlwillson: Marvin the Martian would be satisfied.\n\n50) dlwillson: B Y3 Field\n\twil: Nice timing!\n\n51) wil: S G3 Sea\nB B1 Wil\nB B3 Sea\nB B3 G3\n\n52) dlwillson: S R1 Dlwillson\nA B2 G3\n\n53) wil: S B2 Sea\nT B3 R3 Sea\nT B3 G3 Wil\n\n54) dlwillson: S Y3 Field\nM Y2 G3 Wil\nM Y2 G3 Wil\nM B2 G3 Field\nC Wil Y\n\n55) wil: D G2 Sea B3 B3\n\n56) dlwillson: B G1 Dlwillson\n\n57) wil: D R3 Sea Y3 Y3\n\n58) dlwillson: B R1 Dlwillson\n\n59) wil: B G1 Wil\n\n60) dlwillson: B B2 Field\n\n61) wil: T G1 Y1 Wil\n\n62) dlwillson: B Y2 Field\n\n63) wil: M B1 Wil Y3\n\n64) dlwillson: D Y2 Field B3 Sky\n\n65) wil: B Y2 Wil\n\n66) dlwillson: B Y2 Field\n\n67) wil: B G1 Wil\n\n68) dlwillson: T Y2 G2 Sky\n\n69) wil: M Y2 Wil Field\n\n70) dlwillson: S Y2 Field\nD B2 Field R3 Mars1\n\nD B2 Field R3 Mars2\n\n71) wil: S R1 Wil\nA Y1 Field\n\n72) dlwillson: S G2 Sky\nB B3 Mars1\nB R1 Dlwillson\n\n73) wil: B Y2 Field\n\n74) dlwillson: T R2 Y2 Dlwillson\n\n75) wil: S Y2 Field\nM Y1 Field Dlwillson\nM Y1 Sea Dlwillson\nC Dlwillson Y\n\n76) dlwillson: Trade G3 Y3 Dlwillson\n\n77) wil: S Y3 Sea\nM G3 Wil Mars2\nM B1 Y3 Dlwillson\nM B3 G3 Dlwillson\n\twil: Nice\n\n78) dlwillson: S Y3 Dlwillson\nM B2 Mars1 Wil\nM B3 Mars1 Wil\nM B2 Mars2 Wil\nC Wil B\n\twil: If ya gotta go, leave a good corpse!\n\n\nHomeworlds Online (SDG# 35040)\nVariants: "Hard time"\nStarted: 2019.2.28, Ended: 2019.3.4\nParticipants: speardane (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) speardane: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\n4) speardane: Build G1 Speardane\n\n5) wil: T G1 B1 Wil\n\tspeardane: For the tournament. Good luck!\n\n6) speardane: Trade G3 R3 Speardane\n\tDraw5PlayAll: Oh... I did not know the tourney was still going on, nor that the spear Dane account was operational.\n\tspeardane: @Draw5PlayAll: The two things are related. :) wil has three games left to play, and this is one of them.\n\n7) wil: B B1 Wil\n\n8) speardane: Build G1 Speardane\n\n9) wil: D B1 Wil G3 G3\n\n10) speardane: Discover G1 Speardane Y1 Delos\n\n11) wil: B B2 Wil\n\n12) speardane: Build G1 Delos\n\n13) wil: D B2 Wil Y3 Y3\n\tDraw5PlayAll: Are you (spear) going to respond to the other challenges?\n\twil: Arent people.allowed to reject.challenges?\n\n14) speardane: Discover G1 Delos B3 Lebling\n\n15) wil: S G3 Wil\nB B2 Y3\nB B3 G3\nB B3 Wil\n\tspeardane: If I ever figure out how to make speardane run autonomously, I'll make it respond to challenges. As long as I'm running it manually, nah. If you have a C++ compiler you can download and play against it offline: https://github.com/Quuxplusone/Homeworlds\n\twil: Speardane is an ai?\n\n16) speardane: Build G2 Lebling\n\n17) wil: T B3 Y3 G3\n\n18) speardane: Trade G2 Y2 Lebling\n\twil: If I am playing an ai, does it learn from play\n\n19) wil: B B3 G3\n\tspeardane: Tournament contestant "speardane" is an AI (written and operated by ajo). It doesn't "evolve" or "learn" from play; it's more of an expert system consisting of a bag of heuristics.\n\n20) speardane: Build G2 Lebling\n\n21) wil: T B3 R3 G3\n\n22) speardane: Discover G1 Delos B3 Kotok\n\n23) wil: T B3 G3 Wil\n\n24) speardane: Sacrifice G2 Lebling\nBuild G2 Speardane\nBuild G2 Kotok\n\twil: Ajo, have you learned anything from speardane?\n\n25) wil: B B3 G3\n\tspeardane: Not really. Speardane's heuristics reflect my biases when writing it, so I'm probably the person least likely to learn something new by playing against it.\n\twil: I meant by watching its actions with others\n\n26) speardane: Trade G1 Y1 Kotok\n\n27) wil: T B3 G3 G3\n\n28) speardane: Discover G2 Speardane Y1 Delos\n\n29) wil: B B3 G3\n\n30) speardane: Build G1 Delos\n\n31) wil: D G3 G3 Y1 Y1\n\n32) speardane: Sacrifice G2 Delos\nBuild Y2 Kotok\nBuild G2 Kotok\n\n33) wil: B G2 Y1\n\n34) speardane: Trade G2 R2 Kotok\n\twil: Cut and paste my action, c&p computer response?\n\twil: What is the methodology you go thru?\n\n35) wil: B R1 G3\n\tspeardane: That's right. Minor reformatting, e.g. the AI will output literally "convert g2 to r2 at Kotok" and then I input that into SDG as "trade g2 r2 Kotok", but yep, the human is in the loop purely as a data-entry specialist. :)\n\n36) speardane: Build G2 Delos\n\n37) wil: M R3 G3 Delos\n\n38) speardane: Sacrifice Y2 Kotok\nDiscover G1 Delos Y2 Minsky\nMove G2 Delos Minsky\n\n39) wil: M R3 Delos Minsky\n\n40) speardane: Sacrifice Y2 Lebling\nMove G1 Minsky Y1\nMove G2 Minsky Y1\nCatastrophe Y1 Green\n\n41) wil: T B3 R3 G3\n\n42) speardane: Build Y1 Kotok\n\n43) wil: B B3 G3\n\n44) speardane: Discover Y1 Kotok G2 Delos\n\n45) wil: T B3 G3 G3\n\n46) speardane: Discover Y1 Delos B3 Licklider\n\n47) wil: D G3 G3 Y1 Y1\n\n48) speardane: Build Y2 Kotok\n\n49) wil: M R1 G3 Y1\n\n50) speardane: Discover Y2 Kotok G2 Delos\n\n51) wil: B R1 G3\n\n52) speardane: Move Y2 Delos Lebling\n\n53) wil: D R3 G3 G1 G1\n\n54) speardane: Build G2 Kotok\n\n55) wil: B R1 G1\n\n56) speardane: Sacrifice G2 Kotok\nBuild G2 Lebling\nBuild R2 Kotok\n\n57) wil: M R1 Y1 Speardane\n\n58) speardane: Sacrifice G2 Lebling\nBuild G2 Speardane\nBuild G2 Kotok\n\n59) wil: A G1 Speardane\n\n60) speardane: Sacrifice G2 Kotok\nBuild G2 Lebling\nBuild R2 Kotok\n\n61) wil: S Y3 G3\nM R1 G1 Speardane\nM R3 G1 Speardane\nM G3 Y1 Speardane\nC Speardane R\n\n62) speardane: Pass\n\n63) wil: B G1 Speardane\nC Speardane G\n\tspeardane: Good game!\n\twil: Did the computer pass, or you call it quits?\n\twil: Must be tough to watch and not modify moves\n\tspeardane: The AI says "pass" when it's checkmated: there's no move better than "pass" if they all lead to defeat.\n\twil: Interesting, kudos on writing and playing!!\n\n\nHomeworlds Online (SDG# 35045)\nVariants: "Hard time"\nStarted: 2019.3.1, Ended: 2019.3.28\nParticipants: Trydnt (S), Felix (N)\nWinner: Trydnt\n\n1) Felix: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B2 G2 Y3 *\n\tFelix: Good luck and have fun as always :)\n\n3) Felix: Build G1 Felix\n\n4) Trydnt: Build Y1 Trydnt\n\tFelix: Ooh, the clone-star homeworld. I like it!\n\n5) Felix: Trade G1 Y1 Felix\n\n6) Trydnt: Build Y2 Trydnt\n\tTrydnt: thanks I think this may be the most effective counter to the hw b2 y1 g3 setup. anything else leaves you in a tricky bind\n\tFelix: I've never actually seen it or had it used against a 1-2 star opening, so I'm curious to see how it plays out!\n\n7) Felix: Discover Y1 Felix G3 Out\n\n8) Trydnt: Trade Y2 R2 Trydnt\n\n9) Felix: Build Y2 Out\n\n10) Trydnt: Move R2 Trydnt Out\n\n11) Felix: Move Y2 Out Trydnt\n\n12) Trydnt: Trade Y3 R3 Trydnt\n\n13) Felix: Build Y2 Trydnt\n\n14) Trydnt: Attack Y2 Trydnt\n\n15) Felix: Build Y2 Trydnt\nCatastrophe Trydnt Yellow\n\n16) Trydnt: Attack Y1 Out\n\n17) Felix: Build G1 Felix\n\tFelix: I don't like this at all :)\n\n18) Trydnt: Build Y1 Out\n\tTrydnt: I thought you'd move the y1 to my hw for the catastrophe so I wouldn't get it\n\n19) Felix: Discover G1 Felix B3 Humphrey\n\tFelix: That would have been smarter!\n\n20) Trydnt: Build Y2 Out\n\n21) Felix: Build G1 Felix\n\n22) Trydnt: Sacrifice Y2 Out\nMove R2 Out Felix\nMove R2 Felix Humphrey\n\n23) Felix: Build G1 Felix\n\n24) Trydnt: Attack G1 Humphrey\n\n25) Felix: Trade G1 R1 Felix\n\n26) Trydnt: Build Y2 Out\n\n27) Felix: Build R1 Felix\n\n28) Trydnt: Build R1 Humphrey\n\n29) Felix: Discover R1 Felix B3 Grinch\n\n30) Trydnt: Build R2 Trydnt\n\n31) Felix: Build R2 Felix\n\n32) Trydnt: Trade R2 Y2 Trydnt\n\n33) Felix: Discover R2 Felix Y3 Opus\n\n34) Trydnt: Trade R2 Y2 Humphrey\n\n35) Felix: Build R2 Felix\n\n36) Trydnt: Build Y3 Trydnt\n\n\tFelix: Oops. sorry to end it that way!\n\nHomeworlds Online (SDG# 35047)\nVariants: "Hard time"\nStarted: 2019.3.3, Ended: 2019.3.5\nParticipants: wil (S), mneme (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 34946)\nVariants: "Unrated, Hard time"\nStarted: 2019.3.8, Ended: 2019.3.11\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 35016)\nVariants: "Hard time"\nStarted: 2019.3.8, Ended: 2019.3.11\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 35018)\nVariants: "Unrated"\nStarted: 2019.3.8, Ended: 2019.4.6\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H B2 Y1 G3\n\n2) Trydnt: Homeworld G2 B2 R3 *\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build R1 Trydnt\n\n5) wil: B G1 Wil\n\n6) Trydnt: Trade R1 Y1 Trydnt\n\n7) wil: T G1 Y1 Wil\n\n8) Trydnt: Build Y2 Trydnt\n\n9) wil: T G1 R1 Wil\n\n10) Trydnt: Build Y2 Trydnt\n\n11) wil: D Y1 Wil G3 G3\n\n12) Trydnt: Move Y2 Trydnt G3\n\n13) wil: D Y1 G3 G2 G2\n\n14) Trydnt: Build R1 Trydnt\n\n15) wil: B G1 Wil\n\n16) Trydnt: Trade R1 B1 Trydnt\n\n17) wil: B G1 Wil\n\n18) Trydnt: Move B1 Trydnt G3\n\n19) wil: B R1 Wil\n\n20) Trydnt: Build B1 G3\n\n21) wil: M G1 Wil G3\n\n22) Trydnt: Trade B1 R1 G3\n\n23) wil: B G1 G3\n\n24) Trydnt: Sacrifice Y2 G3\nDiscover R1 G3 G2 G22\nDiscover Y1 Trydnt G3 G33\n\twil: I'm calling that move an 'ever in ton'\n\n25) wil: M R1 Wil G3\n\n26) Trydnt: Sacrifice R1 G22\nAttack R1 G3\n\n27) wil: S G3 Wil\nB G2 G3\nB Y2 G2\nB G3 Wil\nC G3 G\n\n28) Trydnt: Build Y2 Trydnt\n\n29) wil: M Y1 G2 G33\n\n30) Trydnt: Build Y3 G33\n\n31) wil: B Y3 G2\n\n32) Trydnt: Discover Y3 G33 G2 G22\n\n33) wil: D Y2 G2 Y3 Y3\n\n34) Trydnt: Build R1 Trydnt\n\n35) wil: D Y1 G33 G1 G1\n\n36) Trydnt: Discover Y3 G22 B3 B3\n\n37) wil: B R1 Wil\n\n38) Trydnt: Move Y2 Trydnt B3\n\n39) wil: B R2 Wil\n\n40) Trydnt: Trade Y2 R2 B3\n\n41) wil: M R2 Wil G33\n\n42) Trydnt: Sacrifice Y2 Trydnt\nDiscover Y1 G33 G1 G11\nMove R1 Trydnt B3\n\n43) wil: B R2 G33\n\n44) Trydnt: Move R2 B3 G1\n\n45) wil: M R1 Wil Y3\n\n46) Trydnt: Move Y3 B3 Trydnt\n\n47) wil: B R3 G33\n\n48) Trydnt: Build R3 G1\n\n49) wil: S Y1 G1\nM R2 G33 G11\n\n50) Trydnt: Sacrifice Y1 G11\nMove R3 G1 B3\n\n51) wil: B G2 Wil\n\n52) Trydnt: Move R3 Trydnt G11\n\n53) wil: M G1 Wil Y3\n\n54) Trydnt: Trade R3 G3 B3\n\n55) wil: S G3 Wil\nB G3 Wil\nB R3 Y3\nB Y1 G2\n\n56) Trydnt: Attack R2 G11\n\n57) wil: S Y2 Y3\nM R1 Y3 G11\nM R2 G33 G11\nC G11 R\n\n58) Trydnt: Build G1 B3\n\n59) wil: D G1 Y3 Y1 Y1\n\n60) Trydnt: Build Y2 Trydnt\n\n61) wil: S G3 Wil\nB R1 Wil\nB Y2 G2\nB G3 Wil\n\n62) Trydnt: Move Y2 Trydnt B3\n\n63) wil: S Y2 G2\nM Y3 G2 G1\nM G2 Wil B3\n\n64) Trydnt: Sacrifice G3 B3\nBuild R2 G1\nBuild R2 G1\nBuild R3 B3\n\n65) wil: S G2 B3\nB G2 Wil\nB G3 Y1\n\n66) Trydnt: Build Y2 B3\n\n67) wil: B Y2 G2\n\n68) Trydnt: Trade R1 B1 B3\n\n69) wil: T R1 B1 Wil\n\n70) Trydnt: Build R1 B3\n\n71) wil: M B1 Wil G33\n\n72) Trydnt: Move R3 B3 G2\n\n73) wil: S Y1 G2\nM Y2 G2 G33\n\n74) Trydnt: Sacrifice Y2 B3\nMove R3 G2 B3\nDiscover B1 B3 G2 G2\n\n75) wil: S G3 Wil\nB Y1 G33\nB Y2 G1\nB G3 Wil\n\n76) Trydnt: Attack Y2 G1\n\n77) wil: S R3 G33\nA R2 G1\nA R2 G1\nA Y2 G1\n\n78) Trydnt: Build R1 G1\nCatastrophe G1 R\n\n79) wil: S G3 Wil\nB G3 Wil\nB B1 G33\nB R1 Wil\n\n80) Trydnt: Move R1 B3 Trydnt\n\n81) wil: S G3 Wil\nB G3 Wil\nB R2 Wil\nB R2 Y3\n\n82) Trydnt: Build R2 Trydnt\n\n83) wil: M R2 Wil B3\n\n84) Trydnt: Move R1 Trydnt Y3\n\n85) wil: M R2 Y3 Y1\n\n86) Trydnt: Build R3 Trydnt\n\n87) wil: A Y2 B3\n\n88) Trydnt: Sacrifice R2 Trydnt\nAttack R2 B3\nAttack Y2 B3\n\n89) wil: A R1 Y3\n\n90) Trydnt: Move R3 Trydnt G33\n\n91) wil: S Y3 G1\nM Y2 G1 Trydnt\nM Y2 G33 Trydnt\nM Y1 G33 Trydnt\nC Trydnt Y\n\n\twil: What have you done with trydnt?\n\twil: Late night play was your.forte...\n\tTrydnt: damn. I think I thought I was banker in this on that last move so didn't realize that third yellow could get in from the g1. silly mistake\n\tTrydnt: you were pretty ahead though. see you on the next one\n\nHomeworlds Online (SDG# 35046)\nVariants: "Unrated"\nStarted: 2019.3.8, Ended: 2019.4.12\nParticipants: fogus (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G1 R3\n\tTrydnt: have you played before?\n\n2) fogus: Homeworld B2 R1 G3\n\tTrydnt: I'd recommend "homeworld b2 r1 g3" as your starter. it's a good one for beginners.\n\n3) Trydnt: Build R1 Trydnt\n\tfogus: I have played, but it's both been a while and I was also quite confused. :)\n\n4) fogus: Build G1 Fogus\n\tTrydnt: So you essentially need blue and green in the three pieces you start with (2 stars and a ship). This will allow you to grow and then trade for other colors so you don't get locked out of any color. if your opponent starts building the bigger ships of a certain color and you don't have any you will struggle to catch up before they get a pretty big material advantage. It's all about keeping a diverse collection of ships and spreading them in a way you can defend while you keep growing. there are things to watch out for like having too many of a color in one place or building the last of a certain size ship that might open up a larger one for your opponent to grow\n\n5) Trydnt: Trade R1 Y1 Trydnt\n\n6) fogus: Build G1 Fogus\n\n7) Trydnt: Build R1 Trydnt\n\tfogus: So one thing that I've found quite confusing is the tactic of shutting people out of certain colors. Therefore, my move is an attempt to try out that path. :)\n\n8) fogus: Trade G1 Y1 Fogus\n\tTrydnt: yes it's generally good if you can lock your opponent out of a color but it is slightly less effective with green if you opponent moves to green stars\n\n9) Trydnt: Trade R1 G1 Trydnt\n\n10) fogus: Build G2 Fogus\n\n11) Trydnt: Build G2 Trydnt\n\n12) fogus: Discover Y1 Fogus G3 Foo\n\tfogus: Is there a general rule of thumb around achieving the first 2-pip piece? Instinctively it seems like a good thing, but I'm unsure about the deeper implications.\n\n13) Trydnt: Discover G2 Trydnt B2 B2\n\n14) fogus: Trade G3 Y3 Fogus\n\n15) Trydnt: Build R1 Trydnt\n\tDraw5PlayAll: Do not get the first 2 if your opponent gets the first 3...\n\tTrydnt: yeah bigger pieces are better but always be warry of taking the last piece of a certain size when there are larger pieces behind it that you'll open up for your opponent\n\n16) fogus: Trade G1 B1 Fogus\n\n17) Trydnt: Build R1 Trydnt\n\n18) fogus: Build B1 Fogus\n\tfogus: That last move felt like a flail on my part. I can't see a way to progress my piece count, but at the same time I want to diversify if possible.\n\n19) Trydnt: Move R1 Trydnt B2\n\n\nHomeworlds Online (SDG# 35057)\nVariants: "Hard time"\nStarted: 2019.3.9, Ended: 2019.3.25\nParticipants: Draw5PlayAll (S), deanthebean (N)\nWinner: Draw5PlayAll\n\n1) deanthebean: Homeworld R2 B1 G3\n\tdeanthebean: Hello. Enjoy the game!\n\n2) Draw5PlayAll: Homeworld B1 G2 B3 *\n\n3) deanthebean: Build G1 Deanthebean\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) deanthebean: Build G1 Deanthebean\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) deanthebean: Trade G1 Y1 Deanthebean\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) deanthebean: Build Y1 Deanthebean\n\n10) Draw5PlayAll: Discover B2 Draw5playall G3 Success\n\n11) deanthebean: Trade G1 R1 Deanthebean\n\n12) Draw5PlayAll: Build B2 Success\n\n13) deanthebean: Build G1 Deanthebean\n\n14) Draw5PlayAll: Trade B2 R2 Success\n\n15) deanthebean: Move G3 Deanthebean Success\n\n16) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove R2 Success Deanthebean\nMove B2 Success Deanthebean\nPass\n\n17) deanthebean: Sacrifice Y1 Deanthebean\nMove G3 Success Deanthebean\n\tDraw5PlayAll: This just got weird!!\n\n18) Draw5PlayAll: Attack G1 Deanthebean\n\tdeanthebean: Yes. \n\tDraw5PlayAll: I think this is a draw, but let me see if I can punish your moves.\n\n19) deanthebean: Attack B2 Deanthebean\n\tDraw5PlayAll: I wish I had a large green at home...\n\tdeanthebean: I'm glad you don't ;)\n\n20) Draw5PlayAll: Attack B2 Deanthebean\n\tdeanthebean: Is there any rule to prevent repetitions here. I couldn't find one but I can't find an "offer draw option" either \n\tDraw5PlayAll: As you are contesting my ladder spot, you have the obligation to resign if the game is drawn.\n\n\tdeanthebean: That's highly annoying and I can't see a sensible alternative to repeating. \n\tDraw5PlayAll: If you want the rating points, challenge me to a 2-mover and I can resign.\n\tDraw5PlayAll: Or else just ask our developer to make that change for future games.\n\tdeanthebean: Thanks. I'm not that bothered tbh. \n\nHomeworlds Online (SDG# 35065)\nStarted: 2019.3.10, Ended: 2019.7.26\nParticipants: theMadHunter249 (S), The_Unicyclone (N)\nWinner: The_Unicyclone\n\n1) The_Unicyclone: Homeworld G3 B2 Y3\n\n2) theMadHunter249: Homeworld G3 B2 R3\n\n3) The_Unicyclone: Build Y1 The_unicyclone\n\n4) theMadHunter249: Build R1 Themadhunter249\n\n5) The_Unicyclone: Trade Y3 R3 The_unicyclone\n\n6) theMadHunter249: Trade R1 Y1 Themadhunter249\n\n7) The_Unicyclone: Build R1 The_unicyclone\n\tThe_Unicyclone: Ah, the old mirroring trick. Suit up, laser man, because my suit is 100% proof!\n\n8) theMadHunter249: Discover Y1 Themadhunter249 R1 Battleplanet\n\n9) The_Unicyclone: Build Y1 The_unicyclone\n\n10) theMadHunter249: Trade R3 Y3 Themadhunter249\n\n11) The_Unicyclone: Trade Y1 B1 The_unicyclone\n\n12) theMadHunter249: Build Y1 Themadhunter249\n\n13) The_Unicyclone: Discover B1 The_unicyclone G1 Stuffmart\n\n14) theMadHunter249: Build Y2 Themadhunter249\n\n15) The_Unicyclone: Build Y2 The_unicyclone\n\n16) theMadHunter249: Trade Y3 R3 Themadhunter249\n\n17) The_Unicyclone: Trade Y2 B2 The_unicyclone\n\n18) theMadHunter249: Trade Y2 R2 Themadhunter249\n\n19) The_Unicyclone: Build Y2 The_unicyclone\n\n20) theMadHunter249: Move R2 Themadhunter249 Stuffmart\n\n21) The_Unicyclone: Sacrifice Y1 The_unicyclone\nMove B1 Stuffmart The_unicyclone\n\n22) theMadHunter249: Build Y1 Themadhunter249\n\n23) The_Unicyclone: Build Y2 The_unicyclone\n\n24) theMadHunter249: Trade Y1 B1 Themadhunter249\n\n25) The_Unicyclone: Move B2 The_unicyclone Battleplanet\n\n26) theMadHunter249: Move Y1 Battleplanet Themadhunter249\n\n27) The_Unicyclone: Move Y2 The_unicyclone Battleplanet\n\n28) theMadHunter249: Move B1 Themadhunter249 Stuffmart\n\n29) The_Unicyclone: Trade B1 G1 The_unicyclone\n\n30) theMadHunter249: Trade Y1 B1 Themadhunter249\n\n31) The_Unicyclone: Build Y1 The_unicyclone\n\n32) theMadHunter249: Trade B1 Y1 Stuffmart\n\n33) The_Unicyclone: Sacrifice G1 The_unicyclone\nBuild Y2 Battleplanet\n\n34) theMadHunter249: Build Y3 Themadhunter249\n\n35) The_Unicyclone: Sacrifice Y2 The_unicyclone\nMove Y2 Battleplanet Themadhunter249\nMove Y2 Battleplanet Themadhunter249\nCatastrophe Themadhunter249 Yellow\n\n36) theMadHunter249: Trade B1 Y1 Themadhunter249\n\n37) The_Unicyclone: Build Y2 The_unicyclone\n\n\nHomeworlds Online (SDG# 35063)\nStarted: 2019.3.11, Ended: 2019.5.29\nParticipants: wil (S), ts52 (N)\nWinner: wil\n\n1) ts52: Homeworld Y1 B2 G3\n\tts52: This is for the 2018 homeworlds tournament. I thought we might have already played our match, but couldn't find it in my history. Have a good game!\n\n2) wil: H Y3 B1 G3\n\twil: Thanks, too cool!\n\n3) ts52: Build G1 Ts52\n\n4) wil: B G1 Wil\n\n5) ts52: Trade G1 B1 Ts52\n\n6) wil: T G1 B1 Wil\n\n7) ts52: Build B2 Ts52\n\n8) wil: B B2 Wil\n\n9) ts52: Discover B2 Ts52 G3 Kermit\n\n10) wil: D B1 Wil Y2 Y2\n\n11) ts52: Build B3 Kermit\n\n12) wil: S G3 Wil\nB B3 Wil\nB B3 Y2\nP\n\n13) ts52: Trade B2 Y2 Kermit\n\n14) wil: T B2 G2 Wil\n\n15) ts52: Build B2 Kermit\n\n16) wil: T B3 R3 Y2\n\n17) ts52: Trade B3 R3 Kermit\n\n18) wil: B G1 Wil\n\n19) ts52: Build G1 Ts52\n\n20) wil: T G1 Y1 Wil\n\n21) ts52: Build Y1 Kermit\n\n22) wil: D Y1 Wil G2 G2\n\n23) ts52: Discover Y2 Kermit G2 Robin\n\n24) wil: B G1 Wil\n\n25) ts52: Build R1 Kermit\n\n26) wil: M G2 Wil Y2\n\n27) ts52: Discover B1 Ts52 G3 Oscar\n\n28) wil: B R1 Y2\n\n29) ts52: Trade G1 R1 Ts52\n\n30) wil: D R1 Y2 Y3 Y3\n\n31) ts52: Build G1 Ts52\n\n32) wil: T B3 R3 Wil\n\n33) ts52: Discover G1 Ts52 Y3 Bigbird\n\tDraw5PlayAll: This is still going on?\n\twil: No\n\n34) wil: B R2 Y2\n\n35) ts52: Build Y2 Robin\n\n36) wil: M R2 Y2 Bigbird\n\n37) ts52: Move R3 Kermit Robin\n\n38) wil: B R2 Y2\n\n39) ts52: Build R2 Robin\n\n40) wil: M R2 Y2 Oscar\n\n41) ts52: Build G1 Ts52\n\n42) wil: A B1 Oscar\n\n43) ts52: Move B2 Kermit G2\n\n44) wil: M Y1 G2 Oscar\n\n45) ts52: Move R3 Robin Oscar\n\n46) wil: S Y1 Oscar\nD B1 Oscar Y1 Y1\n\n47) ts52: Attack R2 Oscar\n\n48) wil: A G1 Bigbird\n\n49) ts52: M Y2 Robin Oscar\n\n50) wil: B B2 Y2\n\twil: This is another fine mess you've gotten me in\n\n51) ts52: Move R3 Oscar Y1\n\tts52: That does seem to be my specialty. ;)\n\n52) wil: M B1 Y2 Bigbird\n\n53) ts52: Attack B1 Y1\n\n54) wil: S G2 Y2\nB B3 Y2\nB B3 Bigbird\n\n55) ts52: B B3 G2\n\n56) wil: B G2 Bigbird\n\n57) ts52: M Y1 Kermit G2\n\n58) wil: M B3 Y2 Y3\n\n59) ts52: M B1 Y1 Robin\n\n60) wil: M G1 Bigbird Ts52\n\n61) ts52: M G1 Ts52 Oscar\n\n62) wil: S G1 Wil\nB G1 Ts52\n\n63) ts52: Move R3 Y1 Oscar\n\n64) wil: M G2 Bigbird Ts52\nC Ts52 G\n\n65) ts52: Move R3 Oscar Ts52\n\twil: U got this\n\n66) wil: T B3 G3 Bigbird\n\n67) ts52: Trade R1 G1 Ts52\n\tts52: It's not over till it's over, but yikes...\n\n68) wil: B B3 Bigbird\n\n69) ts52: Build Y1 Robin\n\n70) wil: M G3 Bigbird Robin\n\n71) ts52: Move R2 Robin Oscar\n\n72) wil: S R2 Bigbird\nA Y2 Robin\nA B1 Robin\n\n73) ts52: Move Y1 Robin Kermit\n\n74) wil: T B1 G1 Bigbird\n\n75) ts52: Build G2 Ts52\n\n76) wil: S G3 Robin\nB G3 Bigbird\nB R1 Y3\nB R2 Y2\n\n77) ts52: Move R2 Oscar G2\n\n78) wil: M G3 Bigbird Y2\n\n79) ts52: Move B3 G2 Kermit\n\n80) wil: M R3 Y2 Oscar\n\n81) ts52: Move R2 Oscar G2\n\n82) wil: A Y2 Oscar\n\n83) ts52: Move B3 Kermit Robin\n\n84) wil: M Y2 Robin Kermit\n\n85) ts52: Sacrifice Y1 Kermit\nMove B3 Robin Kermit\n\n86) wil: M Y2 Kermit Robin\n\n87) ts52: Build Y1 G2\n\n88) wil: A G1 Oscar\n\n89) ts52: Move Y1 G2 Kermit\n\n90) wil: B B1 Bigbird\n\n91) ts52: Move B3 Kermit Robin\n\n92) wil: M G3 Y2 Wil\n\n93) ts52: Sacrifice R2 G2\nAttack Y2 Robin\nAttack B1 Robin\n\tts52: sorry for the delay\n\n94) wil: B R2 Oscar\n\n95) ts52: Move B3 Robin Kermit\n\n96) wil: M B2 Y2 Oscar\n\n97) ts52: Move B3 Kermit Y2\n\n98) wil: M R1 Y3 Ts52\n\n99) ts52: A R1 Ts52\n\n100) wil: S Y2 Oscar\nM R2 Oscar Ts52\nM R1 Y3 Ts52\nC Ts52 R\n\n101) ts52: Sacrifice R1 Kermit\nAttack R2 Y2\n\n102) wil: M B3 Bigbird Ts52\n\n103) ts52: Sacrifice Y2 Robin\nMove B3 Y2 Kermit\nMove B3 Kermit Ts52\n\tts52: I don't think there's anything I can really do at this point. Well played!\n\twil: I was hoping not! Good game\n\n104) wil: S R3 Wil\nA B3 Ts52\nA G2 Ts52\nA G1 Ts52\n\n\twil: Gg\n\nHomeworlds Online (SDG# 35066)\nVariants: "Hard time"\nStarted: 2019.3.11, Ended: 2019.3.18\nParticipants: wil (S), goulo (N)\nWinner: goulo\n\n1) goulo: Homeworld R3 B2 G3\n\n2) wil: H Y2 B1 G3\n\tgoulo: hi, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) wil: B G1 Wil\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) wil: T G1 B1 Wil\n\n7) goulo: Build Y1 Goulo\n\n8) wil: B B1 Wil\n\n9) goulo: Discover Y1 Goulo Y1 Flaveto\n\n10) wil: D B1 Wil Y3 Y3\n\n11) goulo: Build Y2 Goulo\n\n12) wil: B G1 Wil\n\n13) goulo: Trade Y2 B2 Goulo\n\n14) wil: T G1 R1 Wil\n\n15) goulo: Build Y2 Goulo\n\n16) wil: B G1 Wil\n\n17) goulo: Build G1 Goulo\n\n18) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n19) goulo: Move B2 Goulo Flaveto\n\n20) wil: S B2 Y3\nT B3 Y3 Y3\nT B3 G3 Wil\n\n21) goulo: Trade G1 R1 Goulo\n\n22) wil: D Y3 Y3 G1 G1\n\n23) goulo: Move B2 Flaveto Y3\n\n24) wil: D B1 Y3 Y2 Y2\n\n25) goulo: Build G1 Goulo\n\n26) wil: B Y3 G1\n\n27) goulo: Discover Y1 Flaveto G3 Verdego\n\n28) wil: M B1 Y2 G1\n\n29) goulo: Sacrifice Y2 Goulo\nMove Y1 Goulo G1\nMove Y1 Verdego G1\nCatastrophe G1 Y\n\n30) wil: B G2 Wil\n\n31) goulo: Build G2 Goulo\n\n32) wil: D G2 Wil G3 G3\n\n33) goulo: Trade G1 Y1 Goulo\n\n34) wil: T G1 Y1 Wil\n\n35) goulo: Discover G2 Goulo Y1 Flaveto\n\n36) wil: M Y1 Wil G3\n\n37) goulo: Build Y2 Goulo\n\n38) wil: M B1 Wil G3\n\n39) goulo: Build G1 Flaveto\n\n40) wil: D Y1 G3 B2 B2\n\n41) goulo: Sacrifice Y2 Goulo\nMove G1 Flaveto G3\nMove G2 Flaveto G3\nCatastrophe G3 G\n\n42) wil: B G1 Wil\n\n43) goulo: Build G1 Goulo\n\n44) wil: T G1 B1 Wil\n\n45) goulo: Sacrifice G1 Goulo\nBuild B3 Y3\n\n46) wil: B B3 G1\n\n47) goulo: Move B3 Y3 Wil\n\n48) wil: A B3 Wil\n\n49) goulo: Move B2 Y3 Wil\nCatastrophe Wil B\n\n50) wil: T B3 Y3 G1\n\n51) goulo: Build G1 Goulo\n\n52) wil: B Y1 G1\n\n53) goulo: Build Y2 Goulo\n\n54) wil: D Y1 G1 G2 G2\n\n55) goulo: Discover Y1 Goulo G1 Verdeto\n\n56) wil: B Y2 G1\n\n57) goulo: Build Y3 Verdeto\n\n58) wil: S Y2 G1\nM Y1 B2 Verdeto\nM Y1 G2 Verdeto\nC Verdeto Y\n\n59) goulo: Build Y1 Goulo\n\n60) wil: B Y1 G1\n\n61) goulo: Discover Y1 Goulo G1 Verdeto\n\n62) wil: D Y1 G1 Y2 Y2\n\twil: I think I blew that and lost a step\n\n63) goulo: Sacrifice G3 Goulo\nBuild Y1 Verdeto\nBuild Y3 Goulo\nBuild G2 Goulo\n\n64) wil: B Y3 G1\n\n65) goulo: Sacrifice Y3 Goulo\nDiscover Y2 Goulo B1 Blueto\nMove Y2 Blueto Wil\nMove Y1 Verdeto Wil\n\n66) wil: S Y3 G1\nM Y1 Y2 G1\nM Y1 G1 Wil\nM Y3 G1 Wil\nC Wil Y\n\twil: This is the end...\n\n\tgoulo: almost there! :)\n\twil: Gg\n\tgoulo: thanks, gg indeed!\n\nHomeworlds Online (SDG# 34904)\nVariants: "Hard time"\nStarted: 2019.3.13, Ended: 2019.4.21\nParticipants: dlwillson (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Trydnt: Build R1 Trydnt\n\tdlwillson: TY GL HF!\n\n8) dlwillson: B Y1 Dlwillson\n\n9) Trydnt: Build R2 Trydnt\n\n10) dlwillson: B Y2 Dlwillson\n\n11) Trydnt: Discover R1 Trydnt Y3 Y3\n\n12) dlwillson: D Y1 Dlwillson B2 Sea\n\n13) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Y3\nBuild R2 Y3\nBuild R3 Trydnt\n\n14) dlwillson: Discover Y1 Dlwillson Y2 Sol\n\n15) Trydnt: Move R2 Y3 Sol\n\n16) dlwillson: S G3 Dlwillson\nB Y2 Sol\nB Y3 Sea\nB Y3 Dlwillson\n\n17) Trydnt: Trade R3 G3 Trydnt\n\n18) dlwillson: D Y2 Sol R3 Mars\n\n19) Trydnt: Build R3 Trydnt\n\n20) dlwillson: T Y3 R3 Sea\n\n21) Trydnt: Discover R3 Trydnt Y3 Y33\n\n22) dlwillson: D Y1 Sol B3 Sky\n\n23) Trydnt: Move R2 Sol Sky\n\n24) dlwillson: T Y3 G3 Dlwillson\n\n25) Trydnt: Attack Y1 Sky\n\n26) dlwillson: Build G1 Dlwillson\n\n27) Trydnt: Build G1 Trydnt\n\n28) dlwillson: M G1 Dlwillson Sea\n\n29) Trydnt: Move G1 Trydnt Y33\n\n30) dlwillson: B G1 Dlwillson\n\n31) Trydnt: Build G2 Trydnt\n\n32) dlwillson: Sacrifice G3 Dlwillson\nBuild Y2 Sea\nBuild G2 Sea\nBuild Y3 Dlwillson\n\n33) Trydnt: Trade R2 B2 Trydnt\n\n34) dlwillson: D Y2 Dlwillson G2 Field\n\n35) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild G3 Y33\nBuild R2 Sky\n\n36) dlwillson: B G3 Dlwillson\n\n37) Trydnt: Move R3 Y33 Field\n\n38) dlwillson: D Y2 Field B3 Bluesky\n\n39) Trydnt: Move G2 Trydnt Sky\n\n40) dlwillson: Sacrifice Y2 Sea\nMove G1 Sea Y33\nMove G2 Sea Y33\nCatastrophe Y33 G\n\n41) Trydnt: Sacrifice B2 Trydnt\nTrade R3 Y3 Field\nTrade R2 B2 Sky\n\n42) dlwillson: Build Y2 Dlwillson\n\n43) Trydnt: Move R2 Sky Field\n\n\tdlwillson: Ooops! Well, a win by brain meltdown is still a win. Congrats, and I'm sorry for timing out on you! \n\tTrydnt: good game not sure where it was going haha\n\nHomeworlds Online (SDG# 35060)\nVariants: "Hard time"\nStarted: 2019.3.13, Ended: 2019.5.11\nParticipants: dlwillson (S), wil (N)\nWinner: dlwillson\n\n1) wil: H B2 Y1 G3\n\n2) dlwillson: Homeworld B3 R1 G3\n\n3) wil: B G1 Wil\n\tdlwillson: TYGLHF!\n\twil: Translation?\n\n4) dlwillson: B G1 Dlwillson\n\n5) wil: T G1 R1 Wil\n\n6) dlwillson: T G1 Y1 Dlwillson\n\tdlwillson: Thank you! Good luck! Have fun!\n\tdlwillson: Why did you page an admin?\n\n7) wil: B R1 Wil\n\twil: Idk, on admin, and I should have been able to figure that out.\n\n8) dlwillson: B Y1 Dlwillson\n\n9) wil: B R2 Wil\n\n10) dlwillson: Build Y2 Dlwillson\n\n11) wil: D R1 Wil Y3 Y3\n\n12) dlwillson: D Y1 Dlwillson G2 Field\n\n13) wil: D R2 Wil Y3 Why3\n\n14) dlwillson: T Y2 R2 Dlwillson\n\n15) wil: B G1 Wil\n\n16) dlwillson: M R2 Dlwillson Field\n\n17) wil: S G3 Wil\nB R2 Y3\nB R3 Wil\nB R3 Wil\n\n18) dlwillson: B R3 Field\n\n19) wil: T R3 Y3 Wil\n\n20) dlwillson: Move R3 Field Why3\n\n21) wil: S G1 Wil\nB R3 Why3\n\n22) dlwillson: A R3 Why3\n\n23) wil: M R1 Wil Why3\nC Why3 R\n\n24) dlwillson: B Y2 Field\n\n25) wil: T R3 G3 Wil\n\n26) dlwillson: B G1 Dlwillson\n\n27) wil: D Y3 Wil G3 G3\n\n28) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y2 Dlwillson\nB Y3 Dlwillson\n\n29) wil: D Y3 G3 G2 G2\n\n30) dlwillson: D Y2 Dlwillson B2 Sea\n\n31) wil: B G1 Wil\n\n32) dlwillson: D Y2 Field B3 Sky\n\n33) wil: T G1 B1 Wil\n\n34) dlwillson: T Y2 G2 Sea\n\n35) wil: D R1 Y3 Y2 Y2\n\n36) dlwillson: B G1 Sea\n\n37) wil: B B1 Wil\n\n38) dlwillson: T Y3 G3 Dlwillson\n\n39) wil: B Y3 G2\n\n40) dlwillson: Sacrifice Y2 Field\nMove Y2 Sky G2\nMove Y1 Dlwillson G2\nCatastrophe G2 Y\n\n41) wil: M B1 Wil Y3\n\n42) dlwillson: T G1 Y1 Sea\n\n43) wil: B G1 Wil\n\n44) dlwillson: B Y2 Sea\n\n45) wil: T R2 Y2 Y3\n\n46) dlwillson: B Y3 Field\n\n47) wil: D G1 Wil Y3 Why3\n\n48) dlwillson: T Y2 G2 Sea\n\n49) wil: B B1 Wil\n\n50) dlwillson: D G2 Sea B3 Sky\n\n51) wil: D B1 Wil G3 G3\n\n52) dlwillson: M Y3 Field G3\n\n53) wil: B G1 Wil\n\n54) dlwillson: M G2 Sea Y3\n\n55) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB G3 Wil\n\n56) dlwillson: Move G2 Y3 Y2\n\n57) wil: S Y2 Y3\nD B1 G3 Y2 Why2\nM R1 Y2 Y3\n\n58) dlwillson: S G3 Dlwillson\nB R1 Field\nB Y2 G3\nB G3 Dlwillson\n\n59) wil: T B3 R3 Y3\n\n60) dlwillson: M G2 Y2 Why3\n\n61) wil: M R3 Y3 Why2\n\n62) dlwillson: Sacrifice Y1 Sea\nMove G2 Sky Wil\n\n63) wil: S G3 Wil\nB G3 Why3\nB B2 Why2\nB B3 Wil\n\n64) dlwillson: Sacrifice G1 Dlwillson\nBuild G1 Why3\nCatastrophe Why3 G\n\n65) wil: S R1 Y3\nA G2 Wil\n\twil: Challenging moves need challenging responses\n\twil: Hence I tremble\n\n66) dlwillson: Move Y2 G3 Wil\n\n67) wil: S G2 Wil\nB B3 Why2\nB R1 Why2\n\tdlwillson: Well, that attack didn't work out at all.\n\n68) dlwillson: Sacrifice R1 Field\nAttack G1 Wil\n\twil: Still don't like it at all.\n\n69) wil: S R1 Why2\nA G1 Wil\n\n70) dlwillson: B R1 Field\n\n71) wil: S B2 Y3\nT B3 R3 Wil\nT B3 G3 Why2\n\n72) dlwillson: D Y2 Wil B3 Sky\n\tdlwillson: sorry for the delay\n\n73) wil: M G3 Why2 Sky\n\twil: No worries\n\n74) dlwillson: B G1 Dlwillson\n\n75) wil: B R1 Wil\n\n76) dlwillson: T Y2 B2 Sky\n\twil: Was it my cooking?\n\n77) wil: S G1 Wil\nB B3 Y3\n\n78) dlwillson: S B2 Sky\nT R2 B2 Field\nT G1 Y1 Dlwillson\n\n79) wil: S B2 Why2\nT G3 Y3 Sky\nT R3 G3 Wil\n\n80) dlwillson: B Y2 G3\n\n81) wil: B R2 Wil\n\n82) dlwillson:\nB B2 Field\n\n83) wil: B R2 Wil\n\n84) dlwillson: Build R2 Field\n\n85) wil: T R2 Y2 Wil\n\n86) dlwillson: M Y3 G3 Wil\n\n87) wil: A Y3 Wil\n\n88) dlwillson: M Y2 G3 Wil\nC Wil Y\n\n89) wil: S G3 Wil\nB R2 Why2\nB R3 Why2\nB R3 Wil\n\n90) dlwillson: Discover R1 Field Y1 Sol\n\n91) wil: S Y3 Sky\nM R2 Why2 Dlwillson\nM R1 Wil Dlwillson\nM R2 Wil Dlwillson\nC Dlwillson R\n\n92) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y2 Field\nB Y3 Dlwillson\n\tdlwillson: Auto-correct...\n\n93) wil: T B1 G1 Wil\n\n94) dlwillson: S B2 Field\nT R1 B1 Sol\nT Y3 B3 Dlwillson\n\n95) wil: M B3 Y3 Field\n\n96) dlwillson: S Y2 Field\nM R2 Field Dlwillson\nD B2 Field Y3 Golden\n\n97) wil: M R3 Why2 Golden\n\n98) dlwillson: S Y2 Field\nM B3 Dlwillson Wil\nM B2 Golden Wil\n\tdlwillson: Wow!\n\twil: Wow back atcha! It was quite the move,.maybe just not quite enough\n\twil: Wow back atcha! It was quite the move,.maybe just not quite enough\n\n99) wil: M B1 Y3 Wil\nC Wil B\n\n\tdlwillson: Good game, Wil\n\twil: Mistakes were made!\n\nHomeworlds Online (SDG# 35091)\nVariants: "Hard time"\nStarted: 2019.3.22, Ended: 2019.6.18\nParticipants: ts52 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) ts52: Homeworld Y3 B2 G3\n\n3) wil: B G1 Wil\n\n4) ts52: Build G1 Ts52\n\n5) wil: T G1 B1 Wil\n\n6) ts52: Trade G1 B1 Ts52\n\n7) wil: B B2 Wil\n\n8) ts52: Build G1 Ts52\n\n9) wil: T B2 G2 Wil\n\n10) ts52: Build B2 Ts52\n\n11) wil: B B2 Wil\n\n12) ts52: Discover B2 Ts52 G1 Robin\n\n13) wil: D B2 Wil Y3 Y3\n\n14) ts52: Build B3 Robin\n\n15) wil: S G2 Wil\nB B3 Y3\nB B3 Y3\n\n16) ts52: Trade B2 Y2 Robin\n\n17) wil: T B3 R3 Y3\n\n18) ts52: Trade B3 R3 Robin\n\n19) wil: T B3 Y3 Y3\n\n20) ts52: Move B1 Ts52 Robin\n\n21) wil: B G1 Wil\n\n22) ts52: B R1 Robin\n\n23) wil: B G2 Wil\n\n24) ts52: Discover G1 Ts52 Y1 Bigbird\n\n25) wil: M G2 Wil Y3\n\n26) ts52: Build G2 Ts52\n\n27) wil: T G1 R1 Wil\n\n28) ts52: T G2 R2 Ts52\n\n29) wil: M R3 Y3 Bigbird\n\n30) ts52: D G1 Bigbird B3 Gonzo\n\n31) wil: M R3 Bigbird Gonzo\n\n32) ts52: B Y1 Robin\n\n33) wil: A G1 Gonzo\n\n34) ts52: B Y1 Robin\n\n35) wil: D B2 Y3 G1 G1\n\n36) ts52: Build G2 Ts52\n\n37) wil: D B1 Wil G3 G3\n\n38) ts52: Move R3 Robin G3\n\n39) wil: M Y3 Y3 G1\n\n40) ts52: Attack B1 G3\n\n41) wil: B Y1 G1\n\n42) ts52: Move Y1 Robin G3\n\n43) wil: B G2 Wil\n\n44) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 G3\nBuild B3 Robin\n\n45) wil: B B3 G1\n\n46) ts52: Build Y2 G3\n\n47) wil: D Y3 G1 R3 R3\n\n48) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 G3\nBuild R2 Robin\n\n49) wil: S G2 Y3\nB R2 Wil\nB Y3 G1\n\n50) ts52: Move B1 G3 G1\n\n51) wil: M B3 G1 R3\n\n52) ts52: Discover R1 Robin G2 Oscar\n\n53) wil: M B3 R3 Oscar\n\n54) ts52: Sacrifice R1 Oscar\nAttack Y1N G1\n\n55) wil: S R2 Wil\nA B1 G1\nA Y1 G1\n\n56) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Ts52\nBuild R2 Robin\n\n57) wil: P\n\n58) ts52: Move B1 Robin G3\n\n59) wil: M G2 Wil R3\n\n60) ts52: Sacrifice Y2 Robin\nMove Y1 G3 G1\nMove Y2 G3 G1\nCatastrophe G1 Yellow\n\n61) wil: T B3 Y3 Oscar\n\n62) ts52: Build B3 Robin\n\n63) wil: S G2 R3\nB Y1 Oscar\nB G2 Wil\n\n64) ts52: Trade B2 Y2 G3\n\n65) wil: T B2 Y2 G1\n\n66) ts52: Move R3 G3 G1\n\n67) wil: M Y2 G1 Gonzo\n\n68) ts52: Attack B1 G1\n\n69) wil: T G2 B2 Wil\n\n70) ts52: B B2 G3\n\n71) wil: B G2 Gonzo\n\n72) ts52: Sacrifice Y2 G3\nMove B1 G3 Wil\nMove B2 G3 Wil\nCatastrophe Wil B\n\n73) wil: D G2 Gonzo Y1 Y1\n\n74) ts52: Discover G2 Ts52 B1 Grover\n\n75) wil: B Y2 Gonzo\n\n76) ts52: Move B3 Robin G3\n\n77) wil: M Y3 Oscar Grover\n\n78) ts52: Move R2 Robin Oscar\n\n79) wil: M Y1 Oscar R3\n\n80) ts52: Build B1 G1\n\n81) wil: S R1 Wil\nA G2 Grover\n\n82) ts52: Build R1 G3\n\n83) wil: M G1 Gonzo Grover\n\n84) ts52: Move Y1 Robin G3\n\n85) wil: S G2 Y1\nB Y1 Grover\nB G2 Grover\n\n86) ts52: Move Y1 G3 Robin\n\n87) wil: M G2 Grover Ts52\n\n88) ts52: Attack G2 Ts52\n\n89) wil: S Y3 R3\nM Y3 Grover Ts52\nM G2 Grover Ts52\nM G1 Grover Ts52\nC Ts52 G\n\n90) ts52: Move B3 Robin Ts52\n\n91) wil: S R3 Gonzo\nA B3 Ts52\nA R2 Ts52\nA R1 Ts52\n\n\tts52: Good game. Well played.\n\twil: Gg!\n\nHomeworlds Online (SDG# 35093)\nVariants: "Hard time"\nStarted: 2019.3.26, Ended: 2019.5.14\nParticipants: goulo (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) goulo: Homeworld R3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\tgoulo: hi, have fun!\n\n4) goulo: Build G1 Goulo\n\tdlwillson: You too!\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) goulo: Trade G1 B1 Goulo\n\n7) dlwillson: B B2 Dlwillson\n\n8) goulo: Build B2 Goulo\n\n9) dlwillson: Discover B1 Dlwillson G2 Field\n\n10) goulo: Trade B1 Y1 Goulo\n\n11) dlwillson: B G1 Dlwillson\n\n12) goulo: Build G1 Goulo\n\n13) dlwillson: T G1 Y1 Dlwillson\n\n14) goulo: Trade G1 R1 Goulo\n\n15) dlwillson: B G1 Dlwillson\n\n16) goulo: Build G1 Goulo\n\n17) dlwillson: Sacrifice G3 Dlwillson\nBuild B1 Field\nBuild B3 Field\nBuild B3 Dlwillson\n\n18) goulo: Build B3 Goulo\n\n19) dlwillson: Trade B1 R1 Field\n\tDraw5PlayAll: I am rooting for Goulo.\n\n20) goulo: Discover B3 Goulo Y1 Flaveto\n\n21) dlwillson: B Y2 Dlwillson\n\tgoulo: heh, thanks, Draw5PlayAll :)\n\n22) goulo: Build Y2 Goulo\n\n23) dlwillson: T B2 R2 Dlwillson\n\tdlwillson: Hey! I want someone to cheer for me, too!\n\n24) goulo: Discover Y1 Goulo G1 Verdeto\n\tgoulo: I'm rooting for you, dlwillson! :)\n\n25) dlwillson: M Y1 Dlwillson Field\n\n26) goulo: Discover Y1 Verdeto G2 Verdo\n\tdlwillson: Thanks Goulo! :-)\n\n27) dlwillson: Move Y2 Dlwillson Verdo\n\n28) goulo: Discover Y1 Verdo B1 Blueto\n\tdlwillson: sorry for the delay\n\n29) dlwillson: T B3 Y3 Field\n\n30) goulo: Move B3 Flaveto Verdo\n\n31) dlwillson: M Y2 Verdo Blueto\n\n32) goulo: Move Y1 Blueto Verdo\n\n33) dlwillson: B B2 Field\n\n34) goulo: Build B3 Verdo\n\n35) dlwillson: S B2 Field\nT B3 G3 Dlwillson\nT Y2 G2 Blueto\n\n36) goulo: Discover G1 Goulo Y1 Flaveto\n\tdlwillson: My last move was brainless, like I've never played! No more mixing Homeworlds and beer!\n\tgoulo: heh :)\n\n37) dlwillson: S G3 Dlwillson\nB G1 Blueto\nB G3 Blueto\nB G3 Dlwillson\n\n38) goulo: Sacrifice Y2 Goulo\nMove G1 Flaveto Verdo\nMove G1 Verdo Blueto\nCatastrophe Blueto G\n\n39) dlwillson: B B1 Field\n\n40) goulo: Trade B2 Y2 Goulo\n\n41) dlwillson: Discover B1 Field G1 Forest\n\tDraw5PlayAll: Would you two mind dragging this out a bit? I just got challenged but I want to play the winner when this is over. :P\n\n42) goulo: Move B3 Verdo Forest\n\n43) dlwillson: B B2 Field\n\tdlwillson: Uh... I hate slow games! I've just been incredibly distracted for the last several weeks. I've even toned out on a few games. :-(\n\n44) goulo: Build Y1 Verdo\n\n45) dlwillson: S Y3 Field\nM B1 Forest Goulo\nM B1 Field Forest\nM B1 Forest Goulo\n\n46) goulo: Attack B1 Goulo\n\n47) dlwillson: S G1 Dlwillson\nB B2 Goulo\nC Goulo B\n\n48) goulo: Sacrifice Y1 Verdo\nMove B3 Forest Field\n\n49) dlwillson: D R1 Field R1 Mars\n\n50) goulo: Sacrifice R1 Goulo\nAttack Y1 Field\n\n51) dlwillson: T B2 Y2 Field\n\n52) goulo: Trade B3 R3 Field\n\n53) dlwillson: D Y2 Field R1 Alsomars\n\n54) goulo: Move Y2 Goulo Mars\n\n55) dlwillson: B R2 Dlwillson\n\n56) goulo: Attack R1 Mars\n\n57) dlwillson: D R2 Dlwillson Y2 Sol\n\n58) goulo: Build R2 Field\n\n59) dlwillson: B R3 Dlwillson\n\n60) goulo: Move R3 Field Dlwillson\n\n61) dlwillson: S R2 Dlwillson\nA R3 Dlwillson\nPass\n\n62) goulo: Build R2 Field\n\tgoulo: ah, good one. I didn't think of that. :/\n\n63) dlwillson: D R3 Dlwillson B2 Sea\n\n64) goulo: Build B1 Verdo\n\n65) dlwillson: D R3 Dlwillson B2 Alsosea\n\n\tgoulo: congrats! I see no hope for me now other than delaying the inevitable...\n\tdlwillson: Thanks for an excellent game! \n\nHomeworlds Online (SDG# 35095)\nVariants: "Hard time"\nStarted: 2019.3.27, Ended: 2019.4.27\nParticipants: deanthebean (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 Y2 G3\n\n2) deanthebean: Homeworld G1 B2 Y3\n\tdeanthebean: Hello. Thanks for accepting the challenge. Have fun!\n\n3) ajo: Build G1 Ajo\n\n4) deanthebean: Build Y1 Deanthebean\n\tajo: You too!\n\n5) ajo: Build G1 Ajo\n\n6) deanthebean: Build Y1 Deanthebean\n\n7) ajo: Discover G1 Ajo B1 Alpha\n\n8) deanthebean: Discover Y1 Deanthebean G3 Beta\n\n9) ajo: Build G2 Alpha\n\n10) deanthebean: Trade Y3 G3 Deanthebean\n\n11) ajo: Trade G1 R1 Alpha\n\n12) deanthebean: Build Y1 Beta\n\n13) ajo: Build G1 Alpha\n\n14) deanthebean: Build G2 Deanthebean\n\n15) ajo: Trade G2 Y2 Alpha\n\n16) deanthebean: Trade G2 R2 Deanthebean\n\n17) ajo: Build G2 Ajo\n\n18) deanthebean: Discover G3 Deanthebean Y3 Gamma\n\n19) ajo: Sacrifice G3 Ajo\nBuild G2 Alpha\nBuild G2 Alpha\nBuild G3 Ajo\n\n20) deanthebean: Build Y2 Beta\n\n21) ajo: Trade G2 R2 Ajo\n\n22) deanthebean: Build G2 Gamma\n\n23) ajo: Sacrifice G1 Alpha\nBuild Y3 Alpha\n\n24) deanthebean: Build Y3 Deanthebean\n\tdeanthebean: build y3 deanthebean\n\n25) ajo: Move Y2 Alpha Beta\nCatastrophe Beta Yellow\n\n26) deanthebean: Build R1 Deanthebean\n\n27) ajo: Discover G2 Alpha B3 Beta\n\n28) deanthebean: Discover R2 Deanthebean G3 Delta\n\n29) ajo: Sacrifice G3 Ajo\nBuild G1 Beta\nBuild G3 Ajo\nBuild Y1 Alpha\n\n30) deanthebean: Trade Y1 B1 Deanthebean\n\n31) ajo: Trade G1 Y1 Beta\n\n32) deanthebean: Build R1 Delta\n\n33) ajo: Sacrifice G3 Ajo\nBuild G1 Beta\nBuild Y1 Beta\nBuild G3 Ajo\n\n34) deanthebean: Sacrifice G3 Gamma\nBuild G3 Gamma\nBuild Y2 Deanthebean\nBuild B1 Deanthebean\n\n35) ajo: Sacrifice Y3 Alpha\nMove Y1 Beta Deanthebean\nMove Y1 Beta Deanthebean\nMove G1 Beta Deanthebean\nCatastrophe Deanthebean Yellow\n\n36) deanthebean: Attack G1 Deanthebean\n\n37) ajo: Sacrifice G3 Ajo\nBuild G3 Ajo\nBuild R2 Ajo\nBuild R3 Alpha\n\n38) deanthebean: Trade B1 Y1 Deanthebean\n\n39) ajo: Sacrifice Y1 Alpha\nMove G2 Beta Deanthebean\n\n40) deanthebean: Sacrifice G3 Gamma\nBuild R3 Deanthebean\nBuild R3 Delta\nBuild G3 Gamma\n\n41) ajo: Sacrifice G1 Ajo\nBuild G1 Deanthebean\nCatastrophe Deanthebean Green\n\n42) deanthebean: Move B1 Deanthebean Delta\n\n43) ajo: Trade R2 Y2 Ajo\n\n44) deanthebean: Trade R1 Y1 Delta\n\n45) ajo: Build Y1 Ajo\n\n46) deanthebean: Build Y2 Delta\n\n47) ajo: Move Y2 Ajo Alpha\n\n48) deanthebean: Discover Y1 Delta G1 Epsilon\n\n49) ajo: Build Y3 Alpha\n\n50) deanthebean: Build Y3 Epsilon\n\n51) ajo: Discover Y3 Alpha B3 Beta\n\n52) deanthebean: Move Y3 Epsilon Ajo\n\n53) ajo: Attack Y3 Ajo\n\n54) deanthebean: Move Y1 Epsilon Ajo\nCatastrophe Ajo Y\n\n55) ajo: Trade R3 B3 Alpha\n\tajo: Oh interesting. I didn't think we were doing this yet. :)\n\n56) deanthebean: Build B1 Delta\n\n57) ajo: Sacrifice Y3 Beta\nMove R1 Alpha Deanthebean\nMove R2 Ajo Deanthebean\nMove B3 Alpha Deanthebean\nCatastrophe Deanthebean Red\n\n\tdeanthebean: Well played!\n\nHomeworlds Online (SDG# 35069)\nStarted: 2019.3.29, Ended: 2019.3.29\nParticipants: shog456 (S), ts52 (N)\nWinner: ts52\n\n\nHomeworlds Online (SDG# 35019)\nVariants: "Unrated"\nStarted: 2019.3.29, Ended: 2019.3.29\nParticipants: shog456 (S), Trydnt (N)\nWinner: Trydnt\n\n\nHomeworlds Online (SDG# 35074)\nVariants: "Hard time"\nStarted: 2019.4.1, Ended: 2019.4.25\nParticipants: dlwillson (S), Uglyfoot (N)\nWinner: Uglyfoot\n\n1) Uglyfoot: Homeworld G3 B2 R3\n\n2) dlwillson: H Y1 B3 G3\n\n3) Uglyfoot: Build R1 Uglyfoot\n\tdlwillson: Thanks for accepting my challenge!\n\n4) dlwillson: B G1 Dlwillson\n\n5) Uglyfoot: Trade R1 G1 Uglyfoot\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Uglyfoot: Build G1 Uglyfoot\n\n8) dlwillson: B Y1 Dlwillson\n\n9) Uglyfoot: T R3 Y3 Uglyfoot\n\n10) dlwillson: Discover Y1 Dlwillson Y2 Sol\n\n11) Uglyfoot: Build Y2 Uglyfoot\n\n12) dlwillson: Build Y2 Dlwillson\n\n13) Uglyfoot: Sacrifice Y3 Uglyfoot\nDiscover Y2 Uglyfoot R1 Flash\nMove Y2 Flash Sol\nMove Y2 Sol Dlwillson\nCatastrophe Dlwillson Y\n\n14) dlwillson: Build G1 Dlwillson\n\n15) Uglyfoot: Trade G1 Y1 Uglyfoot\n\n16) dlwillson: Trade G3 R3 Dlwillson\n\n17) Uglyfoot: Discover G1 Uglyfoot R1 Skeet\n\n18) dlwillson: Build R1 Dlwillson\n\n19) Uglyfoot: Build Y1 Uglyfoot\n\n20) dlwillson: S Y1 Sol\nD R1 Dlwillson R1 Mars\n\n21) Uglyfoot: Move Y1 Uglyfoot Skeet\n\n22) dlwillson: Build R2 Dlwillson\n\n23) Uglyfoot: Build Y1 Skeet\n\tdlwillson: sorry for the delay\n\n24) dlwillson: T R2 Y2 Dlwillson\n\tUglyfoot: No worries. I figured that you were planning.\n\n25) Uglyfoot: Build Y2 Uglyfoot\n\n26) dlwillson: S Y2 Dlwillson\nM R3 Dlwillson Mars\nM R3 Mars Uglyfoot\n\n27) Uglyfoot: Build Y2 Uglyfoot\n\n\tUglyfoot: I see that you win. Would you care if I resigned?\n\tdlwillson: Sorry for timing out on you. \n\nHomeworlds Online (SDG# 35073)\nVariants: "Unrated, Hard time"\nStarted: 2019.4.4, Ended: 2019.4.30\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n1) dlwillson: H B3 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) dlwillson: Build Y1 Dlwillson\n\n8) Trydnt: Build R1 Trydnt\n\n9) dlwillson: Build Y1 Dlwillson\n\n10) Trydnt: Build R2 Trydnt\n\n11) dlwillson: Discover Y1 Dlwillson B2 Sea\n\n12) Trydnt: Discover R2 Trydnt B1 B1\n\n13) dlwillson: B Y2 Dlwillson\n\n14) Trydnt: Sacrifice G3 Trydnt\nBuild R2 B1\nBuild R2 B1\nBuild R3 Trydnt\n\n15) dlwillson: D Y1 Dlwillson Y2 Sol\n\n16) Trydnt: Discover R1 Trydnt G1 G1\n\n17) dlwillson: S G3 Dlwillson\nB Y2 Sea\nB Y3 Sea\nB Y3 Dlwillson\n\n18) Trydnt: Trade R3 G3 Trydnt\n\n19) dlwillson: T Y3 G3 Dlwillson\n\n20) Trydnt: Build G1 Trydnt\n\n21) dlwillson: T Y3 R3 Sea\n\n22) Trydnt: Trade G3 Y3 Trydnt\n\n23) dlwillson: S Y2 Dlwillson\nM R3 Sea B1\nC B1 R\nD Y1 Sea B1 Sky\n\n24) Trydnt: Build R2 Trydnt\n\n25) dlwillson: M Y1 Sky Trydnt\n\n26) Trydnt: Move Y3 Trydnt G1\n\n\nHomeworlds Online (SDG# 35094)\nStarted: 2019.4.4, Ended: 2019.4.16\nParticipants: Trydnt (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld G1 B3 Y3\n\n2) Trydnt: Homeworld B2 G1 G3 *\n\n3) dragon76n: Build Y1 Dragon76n\n\tTrydnt: let's try something weird\n\n4) Trydnt: Build G1 Trydnt\n\tdragon76n: Well... you do have a good track record of beating me... \n\n5) dragon76n: Trade Y3 G3 Dragon76n\n\tTrydnt: i feel like if this has a name it's called the green freeze-out\n\tTrydnt: green instafreeze?\n\n6) Trydnt: Build G2 Trydnt\n\n7) dragon76n: C Trydnt G\nB Y1 Dragon76n\n\tdragon76n: Accidental suicide?\n\tTrydnt: oops\n\n\nHomeworlds Online (SDG# 35108)\nVariants: "Hard time"\nStarted: 2019.4.4, Ended: 2019.4.16\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 R1 G3\n\n2) Trydnt: Homeworld G3 B2 R3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build R1 Trydnt\n\n5) dlwillson: T G1 R1 Dlwillson\n\n6) Trydnt: Build R2 Trydnt\n\n7) dlwillson: Build G1 Dlwillson\n\n8) Trydnt: Trade R2 Y2 Trydnt\n\n9) dlwillson: Build R2 Dlwillson\n\n10) Trydnt: Build R2 Trydnt\n\n11) dlwillson: T G1 Y1 Dlwillson\n\n\tTrydnt: sorry about that had some technical difficulties :S\n\nHomeworlds Online (SDG# 35098)\nStarted: 2019.4.4, Ended: 2019.6.6\nParticipants: Trydnt (S), ts52 (N)\nWinner: Trydnt\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B2 G2 Y3 *\n\tts52: Have a good game!\n\tTrydnt: you too!\n\n3) ts52: B G1 Ts52\n\n4) Trydnt: Build Y1 Trydnt\n\n5) ts52: Build G1 Ts52\n\n6) Trydnt: Build Y1 Trydnt\n\n7) ts52: Discover G1 Ts52 B3 Gonzo\n\n8) Trydnt: Trade Y3 R3 Trydnt\n\n9) ts52: B G1 Ts52\n\n10) Trydnt: Build Y2 Trydnt\n\n11) ts52: B G2 Gonzo\n\n12) Trydnt: Move R3 Trydnt Gonzo\n\n13) ts52: Trade G3 R3 Ts52\n\n14) Trydnt: Attack G2 Gonzo\n\n15) ts52: Build R1 Ts52\n\n16) Trydnt: Attack G1 Gonzo\n\n17) ts52: Discover G1 Ts52 B3 Grover\n\n18) Trydnt: Build R1 Gonzo\n\n19) ts52: Move R1 Ts52 Grover\n\n20) Trydnt: Move Y1 Trydnt Gonzo\n\n21) ts52: Build G2 Ts52\n\n22) Trydnt: Sacrifice G2 Gonzo\nBuild Y2 Gonzo\nBuild Y2 Gonzo\n\n23) ts52: Build R1 Grover\n\n24) Trydnt: Build Y3 Trydnt\n\n25) ts52: Build R2 Grover\n\n26) Trydnt: Discover Y2 Trydnt G3 G3\n\n27) ts52: Trade G1 B1 Ts52\n\n28) Trydnt: Build Y3 G3\n\n29) ts52: Build G1 Grover\n\n30) Trydnt: Build Y3 Trydnt\n\n31) ts52: Discover B1 Ts52 G3 Kermit\n\n32) Trydnt: Move Y3 Trydnt Grover\n\n33) ts52: Build B1 Kermit\n\n34) Trydnt: Sacrifice R3 Gonzo\nAttack R1 Grover\nAttack R2 Grover\nAttack R1 Grover\n\n35) ts52: Build B1 Kermit\n\n36) Trydnt: Sacrifice Y3 G3\nMove R1 Grover Ts52\nMove R1 Grover Ts52\nMove R2 Grover Ts52\nCatastrophe Ts52 R\n\n37) ts52: Trade G2 R2 Ts52\n\n38) Trydnt: Move Y3 Grover Ts52\n\n39) ts52: Sacrifice G1 Grover\nBuild R1 Ts52\n\n40) Trydnt: Sacrifice R1 Gonzo\nAttack R2 Ts52\n\n41) ts52: Sacrifice G1 Grover\nBuild R1 Ts52\n\n42) Trydnt: Sacrifice R2 Ts52\nAttack R1 Ts52\nAttack R1 Ts52\n\tts52: Good game. Well played.\n\tTrydnt: well played\n\n\nHomeworlds Online (SDG# 35100)\nVariants: "Unrated"\nStarted: 2019.4.17, Ended: 2019.4.30\nParticipants: dragon76n (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) dragon76n: H G1 B3 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) dragon76n: Build Y1 Dragon76n\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) dragon76n: Build Y2 Dragon76n\n\n7) Trydnt: Discover Y1 Trydnt G3 G3\n\n8) dragon76n: Discover Y2 Dragon76n G2 Gretwo\n\n9) Trydnt: Build Y2 G3\n\n10) dragon76n: Build Y2 Gretwo\n\n11) Trydnt: Discover Y1 G3 G2 G2\n\n12) dragon76n: Discover Y2 Gretwo B3 Bluthr\n\n13) Trydnt: Build Y3 G3\n\n14) dragon76n: B Y3 Gretwo\n\n15) Trydnt: Sacrifice Y3 G3\nMove Y2 G3 G2\nMove Y1 G2 Dragon76n\nMove Y2 G2 Dragon76n\nCatastrophe Dragon76n Y\n\n\nHomeworlds Online (SDG# 34368)\nVariants: "Hard time"\nStarted: 2019.4.17, Ended: 2019.5.25\nParticipants: Draw5PlayAll (S), mneme (N)\nWinner: mneme\n\n1) mneme: Homeworld R1 B2 G3\n\tmneme: This was listed as TGH, but we're done with that, right? Just a normal ordinary homeworlds game?\r\n\n\n2) Draw5PlayAll: Homeworld B3 R2 G3\n\tDraw5PlayAll: Did you accept the generic offer? I forgot that was still on the list.\n\n3) mneme: Build G1 Mneme\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) mneme: Trade G1 R1 Mneme\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n7) mneme: Build R2 Mneme\n\n8) Draw5PlayAll: Build R2 Draw5playall\n\tmneme: Accidentally, yeah.\n\n9) mneme: Trade R2 Y2 Mneme\n\n10) Draw5PlayAll: Trade R2 Y2 Draw5playall\n\n11) mneme: Build R2 Mneme\n\n12) Draw5PlayAll: Build R2 Draw5playall\n\n13) mneme: Discover R2 Mneme G3 Time\n\n14) Draw5PlayAll: Discover R1 Draw5playall G1 Space\n\tDraw5PlayAll: So, should I discover a system called "space", or not...\n\n15) mneme: Build R3 Time\n\tDraw5PlayAll: The final frontier.\n\n16) Draw5PlayAll: Build R3 Space\n\n17) mneme: Build Y1 Mneme\n\n18) Draw5PlayAll: Discover R2 Draw5playall G1 Energy\n\n19) mneme: Sacrifice Y1 Mneme\nMove R3 Time Energy\n\n20) Draw5PlayAll: Build Y1 Draw5playall\n\n21) mneme: Attack R2 Energy\n\n22) Draw5PlayAll: Discover Y2 Draw5playall B1 Matter\n\n23) mneme: Build R3 Time\n\n24) Draw5PlayAll: Build Y1 Draw5playall\n\n25) mneme: Trade R1 B1 Mneme\n\n26) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n27) mneme: Move B1 Mneme Time\n\tDraw5PlayAll: We need systems named gravity, relativity, dark, and perhaps something like expansion.\n\n28) Draw5PlayAll: Move B1 Draw5playall Space\n\tmneme: heh\n\n29) mneme: Trade R3 Y3 Time\n\n30) Draw5PlayAll: Trade R3 Y3 Space\n\n31) mneme: Build B2 Time\n\n32) Draw5PlayAll: Build B2 Space\n\tDraw5PlayAll: I do not trust those menacing ships at energy...\n\n33) mneme: Move Y3 Time Matter\n\n34) Draw5PlayAll: Trade Y3 R3 Space\n\n35) mneme: Build R1 Time\n\tDraw5PlayAll: *whew*\n\n36) Draw5PlayAll: Discover Y2 Matter G2 Gravity\n\tmneme: I can't think what you mean. :P\r\n\n\n37) mneme: Trade B2 Y2 Time\n\n38) Draw5PlayAll: Move Y1 Draw5playall Space\n\n39) mneme: Sacrifice Y2 Mneme\nMove R2 Time Space\nMove R1 Time Space\nCatastrophe Space R\n\n40) Draw5PlayAll: Move B1 Space Gravity\n\n41) mneme: Sacrifice Y2 Time\nMove R3 Energy Draw5playall\nMove Y3 Matter Draw5playall\n\n42) Draw5PlayAll: Sacrifice Y2 Gravity\nDiscover B2 Space B2 Weak\nDiscover Y1 Space R3 Strong\n\n43) mneme: Attack G3 Draw5playall\n\tmneme: Hey, there. Whatcha doing?\n\n\tDraw5PlayAll: It was all a decoy... that green contains a deadly disease that will terminate your empire if you take control of it!\r\n\r\n[Can you win the game without attacking the green?]\n\tmneme: Not without a lot more work, sorry. :)\r\n\r\nGood game!\n\nHomeworlds Online (SDG# 35137)\nVariants: "Unrated, Hard time"\nStarted: 2019.4.17, Ended: 2019.6.7\nParticipants: wil (S), mneme (N)\nWinner: wil\n\n1) mneme: Homeworld R2 B3 G3\n\tmneme: For the Great Homeworlds Tournament! This time for sure!\r\n\n\n2) wil: H B1 Y2 G3\n\n3) mneme: Build G1 Mneme\n\n4) wil: B G1 Wil\n\n5) mneme: Trade G1 B1 Mneme\n\twil: Gl\n\n6) wil: T G1 B1 Wil\n\n7) mneme: Build B2 Mneme\n\n8) wil: B B2 Wil\n\n9) mneme: Trade B2 Y2 Mneme\n\n10) wil: D B1 Wil G3 G3\n\n11) mneme: Build B2 Mneme\n\tBabamots: I should be able to announce tournament results after this game. Thanks for playing, guys! Good luck!\n\n12) wil: B B2 G3\n\n13) mneme: Discover B1 Mneme Y1 Terpsicore\n\n14) wil: T B2 Y2 G3\n\n15) mneme: Discover B2 Mneme G1 Euterpe\n\n16) wil: B G1 Wil\n\n17) mneme: Build G1 Mneme\n\n18) wil: B G2 Wil\n\n19) mneme: Build G2 Mneme\n\n20) wil: D G2 Wil Y3 Y3\n\n21) mneme: Move G2 Mneme Terpsicore\n\n22) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB Y1 G3\n\n23) mneme: Sacrifice G3 Mneme\nBuild G3 Mneme\nBuild Y1 Mneme\nBuild Y3 Mneme\n\n24) wil: D Y1 G3 R1 R1\n\n25) mneme: Discover G2 Terpsicore Y3 Erato\n\n26) wil: M Y1 R1 Mneme\nC Mneme Y\n\n27) mneme: Trade G1 Y1 Mneme\n\n28) wil: D G2 Y3 Y1 Y1\n\tmneme: Ug. Forgot I was playing a 32 system.\n\n29) mneme: Sacrifice G2 Erato\nBuild B2 Euterpe\nBuild B3 Terpsicore\n\n30) wil: B B3 G3\n\twil: I was scratching my head wondering what was up.\n\n31) mneme: Trade B2 Y2 Euterpe\n\n32) wil: B Y3 G3\n\tmneme: Yeah. Was assuming you were running away for space, not towards. the red trade was what I'd been plannning.\n\tmneme: Yeah. Was assuming you were running away for space, not towards. the red trade was what I'd been plannning.\n\tDraw5PlayAll: Terpsichore?\n\tmneme: You've played enough games with me that my name scheme shouldn't be particularly notable.\n\n33) mneme: Build Y3 Euterpe\n\n34) wil: T G1 R1 Wil\n\twil: No comments from the peanut gallery.\n\twil: This is a tournament game.\n\twil: D5pa, I've asked you not to interrupt before...\n\n35) mneme: Trade Y2 R2 Euterpe\n\n36) wil: D B3 G3 G1 G1\n\n37) mneme: Build Y2 Mneme\n\n38) wil: B B2 G1\n\n39) mneme: Move B3 Terpsicore Y3\n\n40) wil: M G2 Y3 Terpsicore\n\n41) mneme: Move R2 Euterpe Y3\n\n42) wil: B R1 Wil\n\n43) mneme: Discover B1 Terpsicore R3 Melpomene\n\n44) wil: M Y2 G3 G1\n\n45) mneme: Discover B2 Euterpe R3 Clio\n\n46) wil: M B2 Wil Melpomene\n\n47) mneme: Move Y3 Euterpe Melpomene\n\n48) wil: T B3 R3 G1\n\twil: Too cool, predictive txt found that name for me!\n\n49) mneme: Attack B2 Melpomene\n\n50) wil: B G1 Y1\n\n51) mneme: Trade B2 G2 Melpomene\n\tmneme: nice. That green lock you've got going is pretty ugly, alas.\n\n52) wil: S G2 Y1\nB B2 G1\nB B3 G3\n\tDraw5PlayAll: For me, there are so many things that autocorrect that it sometimes gets annoying.\n\tmneme: DPA5: Again, this is a tournament game. Leave the chatter for later, even though it's not technically game-relevant.\n\n53) mneme: Build G1 Melpomene\n\n54) wil: B G2 Y1\n\n55) mneme: Move G2 Melpomene Y1\n\n56) wil: S Y2 G1\nM G2 Y1 Mneme\nM G1 Y1 Mneme\n\n57) mneme: Sacrifice B2 Clio\nTrade G3 R3 Mneme\nTrade G1 R1 Melpomene\n\n58) wil: S G2 Mneme\nB G1 Wil\nB R2 G1\n\twil: There wasn't room for the three of us.\n\n59) mneme: Attack G1 Mneme\n\tmneme: Ok, so what now?\n\n60) wil: B Y2 G3\n\tmneme: Sorry, had second thoughts and then realized I needed the G trade to avoid handing off a g3 for free. Nothing's free.\n\tmneme: ug. Sad with great sadness; the other possible trade was also a g (the g2 at y1). Ah well.\n\n61) mneme: Trade R3 G3 Mneme\n\twil: Backing after review is expected in this game.\n\n62) wil: M B3 G3 Y1\n\n63) mneme: Move G2 Y1 Y3\n\n64) wil: S G3 Wil\nB G2 Terpsicore\nB G3 Wil\nB B2 G3\n\twil: Lol, was blind\n\n65) mneme: Sacrifice G1 Mneme\nBuild G1 Y3\n\n66) wil: M G1 Wil Y3\n\n67) mneme: Sacrifice G1 Y3\nBuild R3 Y3\n\tmneme: oops. Typo.\r\n\n\n68) wil: S Y2 G3\nM R1 Wil Melpomene\nM R2 G1 Melpomene\nC Melpomene R\n\n69) mneme: Attack G1 Y3\n\n70) wil: D G2 Terpsicore Y3 Why3\n\n71) mneme: Move R3 Y3 Terpsicore\n\twil: I used to live here, not at many of us though\n\n72) wil: D G2 Terpsicore Y2 Y2\n\tmneme: So you don't mind if I move, then?\n\tmneme: oh, j7st a g1. misread that. hmm\n\n73) mneme: Move R3 Terpsicore Why3\n\n74) wil: M G2 Why3 Y1\n\n75) mneme: Build R1 Y3\n\tmneme: Ah, was wondering when you would set that off.\n\n76) wil: B B1 Y1\n\n77) mneme: Build Y1 Mneme\n\n78) wil: B R1 Wil\n\n79) mneme: Discover G2 Y3 G1 Erat9\n\n80) wil: S G2 Y2\nB G2 Wil\nB Y2 G3\n\n81) mneme: Sacrifice G2 Erat9\nBuild G1 Mneme\nBuild G2 Y3\n\twil: The old bull in China shop method.\n\n82) wil: M Y2 G3 G1\n\tmneme: as long as it accomplishes the goal (in this case, stopping you from building another y3)...\n\n83) mneme: Sacrifice Y2 Mneme\nMove G2 Y3 Wil\nMove G1 Y3 Wil\nCatastrophe Wil G\n\n84) wil: M Y3 G3 Wil\n\n85) mneme: Build Y2 Mneme\n\n86) wil: S B1 G3\nT B3 G3 Y1\n\n87) mneme: Sacrifice G1 Mneme\nBuild R2 Why3\n\n88) wil: S G3 Y1\nB G1 Y1\nB G1 Y1\nB R3 G1\n\n89) mneme: Sacrifice Y2 Mneme\nMove R2 Why3 G1\nMove R1 Y3 G1\nCatastrophe G1 R\n\n90) wil: B Y2 G1\n\n91) mneme: Move R3 Why3 G1\n\n92) wil: S G1 Y1\nB Y3 Wil\n\n93) mneme: Attack Y2 G1\n\n94) wil: S B2 G1\nT Y2 G2 G1\nT B2 G2 G1\n\n95) mneme: Sacrifice R2 Y3\nAttack G2 G1\nAttack G2 G1\n\n96) wil: S Y3 Wil\nM R1 Wil G3\nM G1 Y1 Y3\nM G1 Y3 G1\nC G1 G\n\n97) mneme: Build Y2 Mneme\n\n98) wil: T B2 Y2 G3\n\n99) mneme: Trade Y1 R1 Mneme\n\n100) wil: S G2 Y1\nB Y1 Wil\nB Y3 G3\n\n101) mneme: Discover Y1 Mneme G1 Erato\n\n102) wil: D Y1 Wil G3 Gee3\n\n103) mneme: Move R1 Mneme Erato\n\n104) wil: B R2 G3\n\n\n105) mneme: Build R2 Erato\n\n106) wil: M R2 G3 Erato\n\n107) mneme: Attack R2 Erato\n\n108) wil: B R3 G3\n\n109) mneme: Move R2 Erato Gee3\n\n110) wil: M R3 G3 Y1\n\n111) mneme: Build R3 Gee3\n\n112) wil: B R3 G3\n\n113) mneme: Attack Y1 Gee3\n\n114) wil: T R1 G1 Wil\n\n115) mneme: Move B3 Y3 Erato\n\n116) wil: D G1 Wil Y3 Y3\n\n117) mneme: Move B3 Erato Y3\n\n118) wil: M G1 Y3 Wil\n\tmneme: I'm a little surprised we don't have spectators for this game. It's a bit non-standard, but overall very good.\n\n119) mneme: Sacrifice B3 Y3\nTrade G3 Y3 Mneme\nTrade Y2 G2 Mneme\nTrade R2 Y2 Gee3\n\twil: Non standard is my name. \n\n120) wil: S Y2 G3\nM R3 G3 Wil\nD Y3 Wil G3 Gthree\n\n121) mneme: Build Y2 Mneme\n\n122) wil: B G1 Wil\n\n123) mneme: Build G2 Mneme\n\n124) wil: S G1 Wil\nB B1 Y1\n\tmneme: Ah, there they are. Didn't see them on my phone. Non-standard is the words on my flag.\r\n\n\n125) mneme: Trade G2 B2 Mneme\n\n126) wil: S Y3 Gthree\nM B1 Y1 Mneme\nM B1 Y1 Mneme\nC Mneme B\nP\n\n127) mneme: Build Y3 Erato\n\twil: We don't just abandon perfectly good star systems!\n\n128) wil: B R1 G3\n\tmneme: Sure we do\n\n129) mneme: Sacrifice Y2 Mneme\nMove R1 Erato G3\nMove R2 Erato G3\nCatastrophe G3 R\n\twil: Take good care of it then\n\n130) wil: B R1 Wil\n\tmneme: If you insist.\n\twil: Hey you could have done that and saved to turn\n\n131) mneme: Build Y2 Mneme\n\n132) wil: T R3 G3 Wil\n\tmneme: What's the fun of that?\n\n133) mneme: Build G1 Mneme\n\n134) wil: M G1 Wil G3\n\n135) mneme: Move G2 Mneme G3\n\n136) wil: M G1 G3 Y1\n\n137) mneme: Build G2 G3\n\n138) wil: D Y3 G3 B2 B2\n\n139) mneme: Sacrifice G2 G3\nBuild G2 Mneme\nBuild R1 Gee3\n\n140) wil: B R1 Y1\n\n141) mneme: Move R1 Gee3 Erato\n\twil: I didn't leave ya a choice\n\n142) wil: M R3 Y1 Mneme\n\tmneme: Nope. Not if I wanted even the sliver of a chance to salvage things (not much of a chance, but better than 0).\r\n\n\n143) mneme: Attack R3 Mneme\n\twil: I figure you got much more than a sliver\n\n144) wil: S Y3 B2\nD R1 Wil Y3 Phoenix\nM R1 Phoenix Mneme\nM R1 Y1 Mneme\nC Mneme R\n\tmneme: We'll see. It'll be interesting\n\n\twil: Good game continue to be a mazed how different they are\n\tBabamots: I didn't want to interrupt the flow of the game to say so, but I was spectating closely.\r\n\r\nAnd that's the last game of the tournament! Hope to see you in the next one! I'll be trying to set it up over the next month or so.\n\twil: Is the chart back up with results...\n\twil: I hope to stay healthy next time around!\n\tBabamots: The original chart should still be working, but I also made a static version (link in the email I just sent).\n\nHomeworlds Online (SDG# 35135)\nVariants: "Hard time"\nStarted: 2019.4.18, Ended: 2019.5.13\nParticipants: mneme (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Hi, have fun! :-)\n\n2) mneme: Homeworld B3 G2 R3\n\n3) Simon: Build B1 Simon\n\tmneme: you too!\r\n\n\n4) mneme: Build R1 Mneme\n\tmneme: Sorry; missed that you started with a b3, not a G3!\n\n5) Simon: Build B1 Simon\n\n6) mneme: Build R1 Mneme\n\n7) Simon: Trade B3 Y3 Simon\n\n8) mneme: Trade R3 Y3 Mneme\n\n9) Simon: Build B1 Simon\n\n10) mneme: Build R2 Mneme\n\n11) Simon: Discover B1 Simon G2 G2\n\n12) mneme: Trade R2 B2 Mneme\n\n13) Simon: Build B2 G2\n\n14) mneme: Build R2 Mneme\n\n15) Simon: Trade B2 R2 G2\n\n16) mneme: Trade R2 G2 Mneme\n\n17) Simon: Build R2 G2\n\n18) mneme: Discover R1 Mneme G1 Euterpe\n\n19) Simon: Build B2 G2\n\n20) mneme: Build Y1 Mneme\n\n21) Simon: Trade B2 Y2 G2\n\n22) mneme: Sacrifice G2 Mneme\nBuild R2 Euterpe\nBuild R3 Mneme\n\n23) Simon: Discover R2 G2 Y1 Y1\n\n24) mneme: Trade R1 G1 Mneme\n\n25) Simon: Build B2 G2\n\n26) mneme: Move B2 Mneme Euterpe\n\n27) Simon: Trade B2 G2 G2\n\n28) mneme: Move Y3 Mneme Euterpe\n\n29) Simon: Build B2 G2\n\n30) mneme: Build Y1 Euterpe\n\n31) Simon: Sacrifice G2 G2\nBuild R1 Y1\nBuild R3 Y1\n\n32) mneme: Sacrifice Y3 Euterpe\nMove R1 Euterpe G2\nMove R1 G2 Y1\nCatastrophe Y1 R\nDiscover G1 Mneme Y1 Terpsicore\n\n33) Simon: Build Y2 Simon\n\n34) mneme: Build R1 Mneme\n\n35) Simon: Move B2 G2 Terpsicore\n\n36) mneme: Trade R3 G3 Mneme\n\n37) Simon: Build R1 G2\n\n38) mneme: Discover G1 Terpsicore B3 Melpomene\n\n39) Simon: Move R2 G2 Melpomene\n\n40) mneme: Sacrifice G1 Melpomene\nBuild Y2 Mneme\n\n41) Simon: Build Y3 G2\n\n42) mneme: Build Y3 Euterpe\n\n43) Simon: Trade Y3 G3 G2\n\n44) mneme: Sacrifice Y1 Mneme\nMove Y3 Euterpe Melpomene\n\n45) Simon: Move G3 G2 Terpsicore\n\n46) mneme: Sacrifice R1 Mneme\nAttack R2 Melpomene\n\n47) Simon: Build G1 Terpsicore\n\tSimon: Strong move, nice.\n\n48) mneme: Sacrifice G3 Mneme\nBuild Y1 Melpomene\nBuild Y3 Mneme\nBuild R1 Euterpe\n\n49) Simon: Build G1 Terpsicore\n\tmneme: Thanks. I thought it did a pretty good job.\n\n50) mneme: Trade R2 G2 Melpomene\n\n51) Simon: Move G1 Terpsicore Mneme\n\n52) mneme: Build G3 Melpomene\n\n53) Simon: Sacrifice Y2 Simon\nMove G1 Terpsicore Mneme\nMove G3 Terpsicore Mneme\nCatastrophe Mneme Green\n\n\tmneme: Annoying, but at least you saved me from a timeout in the tournament game.\r\n\n\nHomeworlds Online (SDG# 35132)\nStarted: 2019.4.20, Ended: 2019.5.23\nParticipants: dragon76n (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) dragon76n: Homeworld B3 G2 Y3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\n4) dragon76n: Build Y1 Dragon76n\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) dragon76n: Trade Y1 G1 Dragon76n\n\n7) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n8) dragon76n: Build G1 Dragon76n\n\n9) Draw5PlayAll: Build Y1 Draw5playall\n\n10) dragon76n: Trade G1 R1 Dragon76n\n\n11) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n12) dragon76n: Build R2 Dragon76n\n\n13) Draw5PlayAll: Build R2 Draw5playall\n\n14) dragon76n: B R2 Dragon76n\n\n15) Draw5PlayAll: Discover R2 Draw5playall G2 Ugh\n\n16) dragon76n: Discover R2 Dragon76n G1 Greone\n\n17) Draw5PlayAll: Build R3 Ugh\n\n18) dragon76n: Build R3 Greone\n\n19) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n20) dragon76n: Trade R1 Y1 Dragon76n\n\n21) Draw5PlayAll: Move B1 Draw5playall Ugh\n\n22) dragon76n: Move Y1 Dragon76n Greone\n\n23) Draw5PlayAll: Build B1 Ugh\n\n24) dragon76n: Trade R2 B2 Dragon76n\n\n25) Draw5PlayAll: Trade R2 Y2 Ugh\n\n26) dragon76n: Move B2 Dragon76n Greone\n\n27) Draw5PlayAll: Build G1 Draw5playall\n\n28) dragon76n: Trade R3 G3 Greone\n\n29) Draw5PlayAll: Build R1 Ugh\n\tDraw5PlayAll: Whaaaaat?\n\n30) dragon76n: Discover G3 Greone G3 Grethr\n\n31) Draw5PlayAll: Build G2 Draw5playall\n\tDraw5PlayAll: I tried four times to enter "build R1 ugh" and every single time the connection dropped out. Then building a Y1, as well as "construct r1 ugh" (lowercase r), worked...\n\n32) dragon76n: Sacrifice G3 Grethr\nBuild Y1 Greone\nBuild Y2 Dragon76n\nBuild G3 Dragon76n\n\n33) Draw5PlayAll: Discover G2 Draw5playall Y2 Crlf\n\n34) dragon76n: Discover G3 Dragon76n B1 Bluone\n\n35) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild Y3 Ugh\nBuild G3 Crlf\n\tDraw5PlayAll: Carriage return line feed\n\tdragon76n: :D\n\n36) dragon76n: Sacrifice Y2 Dragon76n\nMove Y1 Greone Ugh\nMove Y1 Greone Ugh\nCatastrophe Ugh Y\n\n37) Draw5PlayAll: Build Y1 Draw5playall\n\n38) dragon76n: Sacrifice G3 Bluone\nBuild G3 Dragon76n\nBuild Y1 Dragon76n\nBuild Y2 Dragon76n\n\n39) Draw5PlayAll: Move Y1 Draw5playall Ugh\n\n40) dragon76n: Move Y3 Dragon76n Greone\n\n41) Draw5PlayAll: Sacrifice G3 Crlf\nBuild Y2 Ugh\nBuild Y3 Ugh\nBuild Y3 Draw5playall\n\n42) dragon76n: Sacrifice Y2 Dragon76n\nMove Y1 Dragon76n Greone\nMove Y1 Greone Ugh\nCatastrophe Ugh Yellow\n\n43) Draw5PlayAll: Sacrifice Y3 Draw5playall\nDiscover G2 Crlf R1 Sudo_rm_-rf\nMove G2 Sudo_rm_-rf Dragon76n\nCatastrophe Dragon76n Green\nMove R3 Ugh Greone\n\n\tdragon76n: I didn't see that one coming! Good game.\n\tDraw5PlayAll: Never keep two ships in your homeworld matching your star... (unless you are 100% sure your opponent has insufficient movement)\n\nHomeworlds Online (SDG# 35156)\nVariants: "Hard time"\nStarted: 2019.4.24, Ended: 2019.5.6\nParticipants: Felix (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y3 G3\n\n2) Felix: Homeworld Y1 B3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Felix: Build G1 Felix\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Felix: Trade G1 Y1 Felix\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Felix: Build Y2 Felix\n\n9) Trydnt: Discover Y1 Trydnt G1 G1\n\n10) Felix: Trade Y1 B1 Felix\n\n11) Trydnt: Build Y1 Trydnt\n\n12) Felix: Discover Y2 Felix G2 Oompa\n\n13) Trydnt: Discover Y2 Trydnt G1 G11\n\n14) Felix: Build Y2 Oompa\n\n15) Trydnt: Build Y3 G1\n\n16) Felix: Move Y2 Oompa G11\n\n17) Trydnt: Build Y3 G11\n\n18) Felix: Build B1 Felix\n\tFelix: I don't like the way this is going!\n\n19) Trydnt: Discover Y2 G11 B2 B2\n\n20) Felix: Move B1 Felix Oompa\n\n21) Trydnt: Trade Y1 R1 Trydnt\n\n22) Felix: Discover Y2 G11 B2 Bronx\n\n23) Trydnt: Sacrifice Y2 B2\nMove Y3 G1 Bronx\nMove Y3 Bronx Felix\n\n24) Felix: Sacrifice Y2 Oompa\nMove G3 Felix Bronx\nMove Y2 Bronx Felix\n\n25) Trydnt: Trade Y3 R3 Felix\n\n\nHomeworlds Online (SDG# 35113)\nVariants: "Hard time"\nStarted: 2019.4.25, Ended: 2019.5.14\nParticipants: Uglyfoot (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H Y3 B1 G3\n\n2) Uglyfoot: Homeworld Y3 B2 G3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Uglyfoot: Build G1 Uglyfoot\n\tdlwillson: Sorry for timing out on the other game, and no, I don't mind resignations.\n\tUglyfoot: OK. I feel bad that you "lost" on a time out while needing 1 more play to win. I'll see if I can play better this time.\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Uglyfoot: Discover G1 Uglyfoot R1 Gateway\n\n7) dlwillson: B B1 Dlwillson\n\n8) Uglyfoot: Build G1 Gateway\n\n9) dlwillson: Discover B1 Dlwillson G2 Field\n\n10) Uglyfoot: Build G1 Uglyfoot\n\n11) dlwillson: B G2 Dlwillson\n\n12) Uglyfoot: Trade G1 R1 Uglyfoot\n\n13) dlwillson: S G3 Dlwillson\nB B2 Field\nB B2 Field\nB B3 Dlwillson\n\n14) Uglyfoot: Build G1 Uglyfoot\n\n15) dlwillson: Trade B3 Y3 Dlwillson\n\n16) Uglyfoot: Build G2 Uglyfoot\n\n17) dlwillson: S Y3 Dlwillson\nM G2 Dlwillson Field\nM G2 Field Gateway\nM G2 Gateway Uglyfoot\nC Uglyfoot G\n\n18) Uglyfoot: Sacrifice G1 Gateway\nBuild R1 Uglyfoot\n\tdlwillson: And the universe returned to a prehistoric age.\n\tUglyfoot: and I witness another way to lose...\n\n19) dlwillson: T B2 Y2 Field\n\n20) Uglyfoot: Build G1 Gateway\n\tdlwillson: There are millions! \n\n21) dlwillson: S Y2 Field\nM B2 Field Gateway\nM B2 Gateway Uglyfoot\n\n22) Uglyfoot: Discover R1 Uglyfoot Y1 Sol\n\tUglyfoot: s g1 gateway\r\nb r2 uglyfoot\n\n23) dlwillson: T B2 R2 Uglyfoot\n\n24) Uglyfoot: Sacrifice G1 Gateway\nBuild R2 Uglyfoot\n\n25) dlwillson: A R2 Uglyfoot\n\n\tdlwillson: GG TY\n\nHomeworlds Online (SDG# 35158)\nVariants: "Hard time"\nStarted: 2019.5.2, Ended: 2019.5.29\nParticipants: dlwillson (S), Trydnt (N)\nWinner: dlwillson\n\n1) Trydnt: Homeworld G3 B2 Y3\n\n2) dlwillson: H B3 R1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) dlwillson: Build G1 Dlwillson\n\n5) Trydnt: Build Y1 Trydnt\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Trydnt: Trade Y1 R1 Trydnt\n\n8) dlwillson: Build G1 Dlwillson\n\n9) Trydnt: Build R1 Trydnt\n\n10) dlwillson: B Y1 Dlwillson\n\n11) Trydnt: Build Y2 Trydnt\n\n12) dlwillson: B Y2 Dlwillson\n\n13) Trydnt: Discover Y1 Trydnt G1 G1\n\n14) dlwillson: D Y1 Dlwillson G2 Field\n\n15) Trydnt: Move R1 Trydnt G1\n\n16) dlwillson: D Y1 Dlwillson B2 Sea\n\n17) Trydnt: Move R1 G1 Field\n\n18) dlwillson: D Y1 Field G1 Forest\n\n19) Trydnt: Move Y1 G1 Sea\n\n20) dlwillson: D Y1 Sea B1 Sky\n\n21) Trydnt: Move Y2 Trydnt Forest\n\n22) dlwillson: S G3 Dlwillson\nB Y2 Forest\nB Y3 Sky\nB Y3 Dlwillson\n\n23) Trydnt: Build R2 Field\n\n24) dlwillson: S Y2 Dlwillson\nM Y1 Forest Trydnt\nM Y2 Forest Trydnt\n\n25) Trydnt: Trade Y3 R3 Trydnt\n\n26) dlwillson: Sacrifice Y1 Trydnt\nDiscover Y2 Trydnt B1 Alsosky\n\n27) Trydnt: Build R2 Trydnt\n\n28) dlwillson: T Y3 R3 Sky\n\n29) Trydnt: Trade R3 Y3 Trydnt\n\n30) dlwillson: Build G1 Dlwillson\n\n31) Trydnt: Move R2 Trydnt Alsosky\n\n32) dlwillson: M Y2 Alsosky Sea\n\n33) Trydnt: Discover Y1 Sea G3 G3\n\n34) dlwillson: B G2 Dlwillson\n\n\tdlwillson: Bummer!\n\nHomeworlds Online (SDG# 35120)\nVariants: "Hard time"\nStarted: 2019.5.2, Ended: 2019.5.27\nParticipants: Trydnt (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 G3 B3\n\n2) Trydnt: Homeworld G3 B2 Y3\n\tSimon: Have fun :-)\n\n3) Simon: Build B1 Simon\n\n4) Trydnt: Build Y1 Trydnt\n\n5) Simon: Build B1 Simon\n\n6) Trydnt: Trade Y1 R1 Trydnt\n\n7) Simon: Trade B1 R1 Simon\n\n8) Trydnt: Build R2 Trydnt\n\n9) Simon: Trade B3 Y3 Simon\n\n10) Trydnt: Build R2 Trydnt\n\n11) Simon: Discover R1 Simon G2 G2\n\n12) Trydnt: Discover R1 Trydnt G1 G1\n\n13) Simon: Build B1 Simon\n\n14) Trydnt: Trade R2 B2 Trydnt\n\n15) Simon: Build R2 G2\n\n16) Trydnt: Build Y1 Trydnt\n\n17) Simon: Move B1 Simon G2\n\n18) Trydnt: Build R2 G1\n\n19) Simon: Trade R2 Y2 G2\n\n20) Trydnt: Move B2 Trydnt G1\n\n21) Simon: Build B1 Simon\n\n22) Trydnt: Trade R1 Y1 G1\n\n23) Simon: Discover B1 Simon G2 G2a\n\n24) Trydnt: Move R2 G1 G2a\n\n25) Simon: Build B2 G2a\n\n26) Trydnt: Sacrifice R2 Trydnt\nAttack B2 G2a\nAttack B1 G2a\n\n27) Simon: Build B3 G2\n\n28) Trydnt: Build B3 G1\n\n29) Simon: Build B3 Simon\n\n30) Trydnt: Trade B2 Y2 G1\n\n31) Simon: Trade B3 Y3 Simon\n\n32) Trydnt: Trade B2 Y2 G2a\n\n33) Simon: Move Y3 Simon G2a\n\n34) Trydnt: Build Y1 G2a\n\n35) Simon: Sacrifice R1 G2\nAttack R2 G2a\n\n36) Trydnt: Trade Y1 R1 G1\n\n37) Simon: Discover R2 G2a Y1 Y1\n\n\nHomeworlds Online (SDG# 35059)\nVariants: "Unrated, Hard time"\nStarted: 2019.5.2, Ended: 2019.6.1\nParticipants: wil (S), Trydnt (N)\nWinner: wil\n\n1) Trydnt: Homeworld G3 B2 Y3\n\n2) wil: H Y2 B1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: B G1 Wil\n\twil: Back in CP stopped by WS\n\n5) Trydnt: Trade Y1 B1 Trydnt\n\tTrydnt: nice! miss the old place immensely. hopefully will make it out to the dust this year though for the conclave\n\n6) wil: T G1 B1 Wil\n\n7) Trydnt: Build B2 Trydnt\n\twil: Catharsis this weekend\n\tTrydnt: yeah I keep seeing stuff about it and miss it all so much :(\n\n8) wil: D B1 Wil G3 G3\n\n9) Trydnt: Discover B2 Trydnt G1 G1\n\n10) wil: B G1 Wil\n\n11) Trydnt: Build Y1 Trydnt\n\n12) wil: T G1 Y1 Wil\n\n13) Trydnt: Move Y1 Trydnt G1\n\n14) wil: B G1 Wil\n\n15) Trydnt: Trade B1 R1 Trydnt\n\n16) wil: T G1 R1 Wil\n\n17) Trydnt: Build B1 G1\n\n18) wil: B G1 Wil\n\n19) Trydnt: Discover B2 G1 Y3 Y3\n\n20) wil: B G1 Wil\n\n21) Trydnt: Trade B2 G2 Y3\n\n22) wil: D G1 Wil Y3 Why3\n\n23) Trydnt: Build G2 Y3\n\n24) wil: M G1 Wil Why3\n\n25) Trydnt: Build B2 G1\n\n26) wil: B B2 G3\n\n27) Trydnt: Move B1 G1 Y3\n\n28) wil: T B2 Y2 G3\n\n29) Trydnt: Sacrifice G2 Y3\nBuild Y1 Trydnt\nBuild Y2 G1\n\n30) wil: B G2 Why3\n\n31) Trydnt: Build G2 Y3\n\n32) wil: D G1 Why3 R1 R1\n\n33) Trydnt: Move G2 Y3 R1\n\n34) wil: M G1 Why3 R1\n\n35) Trydnt: Build R2 Trydnt\n\n36) wil: B R2 Wil\n\twil: You coming for a visit or just passing thru?\n\n37) Trydnt: Sacrifice Y1 Trydnt\nDiscover B1 Y3 Y1 Y1\n\n38) wil: M R1 Wil G3\n\n39) Trydnt: Sacrifice G2 R1\nBuild B2 Y1\nBuild B3 G1\n\n40) wil: S G2 Why3\nB Y3 G3\nB B3 G3\n\n41) Trydnt: Sacrifice G2 Y3\nBuild Y3 Trydnt\nPass\n\n42) wil: B G2 Wil\n\n\nHomeworlds Online (SDG# 35170)\nVariants: "Hard time"\nStarted: 2019.5.3, Ended: 2019.5.4\nParticipants: Laurie_Menke (S), dougforte (N)\nWinner: Laurie_Menke\n\n1) dougforte: Homeworld Y2 B3 G3\n\tLaurie_Menke: Hi dougforte! Good luck! :)\n\tdougforte: Thanks, you too! :)\n\n2) Laurie_Menke: Homeworld Y3 B1 G3\n\n3) dougforte: Discover G3 Dougforte G1 World1\n\tdougforte: Uh, next time I'll wait a few more turns before self-destructing.\n\tdougforte: Thanks for the game, though!\n\tLaurie_Menke: Oh wow! I didn't even know the system would let you do that! Sorry. That sucks. :( Challenge me any time!\n\tdougforte: Thank you! I think the system tried to warn me, but I didn't understand it well.\n\tdougforte: I don't mind, though, it's kind of hilarious. I'll have a better idea what to avoid next time. :)\n\tLaurie_Menke: :)\n\n\nHomeworlds Online (SDG# 35177)\nVariants: "Hard time"\nStarted: 2019.5.5, Ended: 2019.6.1\nParticipants: Draw5PlayAll (S), deanthebean (N)\nWinner: Draw5PlayAll\n\n1) deanthebean: Homeworld B1 Y2 G3\n\tDraw5PlayAll: Say, are you actually interested in playing the game, or are you just trying to move up the ladder? I might want to resign this and wait until the #1 seat opens up so I can try to be first again.\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\tdeanthebean: If you want to resign that's OK with me. \n\n3) deanthebean: Build G1 Deanthebean\n\tDraw5PlayAll: I think I will just crush you instead.\n\tdeanthebean: Ok. Good plan ;) Let's see if it works....\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) deanthebean: Build G1 Deanthebean\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) deanthebean: Trade G1 R1 Deanthebean\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) deanthebean: Build R1 Deanthebean\n\n10) Draw5PlayAll: Discover B2 Draw5playall G2 Growth\n\n11) deanthebean: Build R1 Deanthebean\n\n12) Draw5PlayAll: Build B2 Growth\n\n13) deanthebean: Discover R1 Deanthebean B3 Commerce\n\tDraw5PlayAll: Forget trying to get a B2.\n\n14) Draw5PlayAll: Build B2 Draw5playall\n\tdeanthebean: Yeah. I regret allowing myself to get shut out of blue. \n\n15) deanthebean: Build R2 Deanthebean\n\n16) Draw5PlayAll: Build B3 Growth\n\n17) deanthebean: Trade R1 Y1 Deanthebean\n\n18) Draw5PlayAll: Trade B3 R3 Growth\n\n19) deanthebean: Build Y1 Deanthebean\n\n20) Draw5PlayAll: Build B3 Growth\n\n21) deanthebean: Discover Y1 Deanthebean B3 Desperation\n\n22) Draw5PlayAll: Trade B3 Y3 Growth\n\n23) deanthebean: Trade G3 B3 Deanthebean\n\n24) Draw5PlayAll: Build Y1 Growth\n\n25) deanthebean: Build G1 Deanthebean\n\n26) Draw5PlayAll: Build Y2 Draw5playall\n\n27) deanthebean: Discover Y1 Deanthebean G3 Hope\n\n28) Draw5PlayAll: Move B2 Growth Hope\n\n29) deanthebean: Move B3 Deanthebean Hope\n\n30) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove Y3 Growth Commerce\nMove Y3 Commerce Deanthebean\n\n\tDraw5PlayAll: I knew something was up...\n\tdeanthebean: Ok. This looks pretty hopeless for me. Well played!\n\nHomeworlds Online (SDG# 35112)\nVariants: "Unrated, Hard time"\nStarted: 2019.5.8, Ended: 2019.6.13\nParticipants: Babamots (S), dlwillson (N)\nWinner: Babamots\n\n1) dlwillson: H R3 B2 G3\n\tBabamots: I've been taking a break for a while and could use some practice. Good luck!\n\n2) Babamots: Homeworld Y1 B3 G3\n\tdlwillson: TY!GL!HF!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Babamots: Build G1 Babamots\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Babamots: Build Y2 Babamots\n\n9) dlwillson: D Y1 Dlwillson B1 Sea\n\n10) Babamots: Discover Y1 Babamots G2 Ferenginar\n\n11) dlwillson: B G1 Dlwillson\n\n12) Babamots: Build G1 Babamots\n\n13) dlwillson: Move G1 Dlwillson Sea\n\n14) Babamots: Trade G1 R1 Babamots\n\n15) dlwillson: B G1 Sea\n\n16) Babamots: Build R1 Babamots\n\n17) dlwillson: T G1 R1 Sea\n\n18) Babamots: Move R1 Babamots Ferenginar\n\n19) dlwillson: B R2 Sea\n\n20) Babamots: Build R2 Ferenginar\n\n21) dlwillson: B Y2 Dlwillson\n\n22) Babamots: Build Y3 Ferenginar\n\n23) dlwillson: B Y3 Sea\n\n24) Babamots: Discover R1 Ferenginar Y3 Iconia\n\n25) dlwillson: T Y1 B1 Sea\n\n26) Babamots: Sacrifice G3 Babamots\nBuild R2 Ferenginar\nBuild R3 Iconia\nBuild R3 Babamots\n\n27) dlwillson: D R2 Sea G2 Sky\n\n28) Babamots: Trade R1 B1 Babamots\n\n29) dlwillson: B R1 Sky\n\n30) Babamots: Move B1 Babamots Ferenginar\n\n31) dlwillson: M B1 Sea Sky\n\n32) Babamots: Move R3 Iconia Sky\n\n33) dlwillson: B B2 Sky\n\n34) Babamots: Sacrifice R2 Ferenginar\nAttack R2 Sky\nAttack B2 Sky\n\n35) dlwillson: B R2 Sky\nC Sky R\n\n36) Babamots: Build B2 Ferenginar\n\n37) dlwillson: B B3 Sky\n\n38) Babamots: Build B3 Sky\nCatastrophe Sky B\n\n39) dlwillson: B G1 Dlwillson\n\n40) Babamots: Build B1 Ferenginar\n\n41) dlwillson: B G1 Sea\n\n42) Babamots: Sacrifice Y3 Ferenginar\nMove B1 Ferenginar Sea\nMove B1 Ferenginar Sea\nMove B2 Ferenginar Sea\nCatastrophe Sea B\n\n43) dlwillson: T G1 R1 Dlwillson\n\n44) Babamots: Trade R3 G3 Babamots\n\n45) dlwillson: D Y2 Dlwillson G1 Field\n\n46) Babamots: Build G1 Babamots\n\n47) dlwillson: M R1 Dlwillson Field\n\n48) Babamots: Trade G1 R1 Babamots\n\n49) dlwillson: D Y2 Field G2 Forest\n\n50) Babamots: Discover Y2 Babamots R2 Romulus\n\n51) dlwillson: B G1 Dlwillson\n\n52) Babamots: Sacrifice G3 Babamots\nBuild R2 Ferenginar\nBuild R3 Iconia\nBuild R3 Babamots\n\n53) dlwillson: B G1 Dlwillson\n\n54) Babamots: Move Y2 Romulus Field\n\n\tBabamots: Sorry, I had been planning to hit the admin button this morning but I got busy and forgot. I hope you don't feel robbed.\n\tdlwillson: Meh. I was stuck for a good response, so I'd say the win is pretty legit. I might've been able to swing around, but probably not. Good game, if short. I'm going to take down my challenges and just play whatever ladder matches come up until I'm less busy.\n\tBabamots: Well, I hope life leaves you time to have the fun you want soon. Thanks for the game! See you around!\n\nHomeworlds Online (SDG# 35189)\nVariants: "Hard time"\nStarted: 2019.5.11, Ended: 2019.7.7\nParticipants: dougforte (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld B1 Y3 G3\n\tLaurie_Menke: Hi again, dougforte! Have fun! (Also, if you're new to Homeworlds, feel free to ask questions!)\n\n2) dougforte: Homeworld G3 B2 Y3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tdougforte: Thanks, you too! I started with blue and green to avoid the system warning this time, so I might survive the first turn. :)\n\tdougforte: I'll probably have some useful questions at some point as well, thanks!\n\tLaurie_Menke: A fine choice! Be sure to grow a ship in your Homeworld before venturing out... you always need to leave a ship in your Homeworld.\n\n4) dougforte: Build Y1 Dougforte\n\n5) Laurie_Menke: Build G1 Laurie_menke\n\tdougforte: A good reminder, thanks. I successfully built a ship!\n\tLaurie_Menke: Yay! :)\n\n6) dougforte: Build Y1 Dougforte\n\n7) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n8) dougforte: Trade Y1 B1 Dougforte\n\n9) Laurie_Menke: Discover Y1 Laurie_menke B2 Danube\n\tdougforte: I see trading is how to get different colored ships.\n\tLaurie_Menke: Yes. Mostly trading. Sometimes attacking/taking over. :)\n\n10) dougforte: Trade Y1 R1 Dougforte\n\n11) Laurie_Menke: Trade G1 R1 Laurie_menke\n\tdougforte: Right, I don't think I'm quite ready for that, though, but trading I can manage. :)\n\tLaurie_Menke: :)\n\n12) dougforte: Build Y1 Dougforte\n\n13) Laurie_Menke: Build G1 Laurie_menke\n\n14) dougforte: Discover Y3 Dougforte G1 Rhine\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) dougforte: Move B1 Dougforte Rhine\n\tLaurie_Menke: Warning: Tomorrow I leave for a six day business trip. I may not play my turn again until I get back. Sorry for the delay.\n\n17) Laurie_Menke: Discover Y1 Danube B1 Colorado\n\tdougforte: No worries, I hope the trip goes well. :)\n\tLaurie_Menke: Thanks! I'm back, and all went well. Now I just need to get rid of the cold I caught. :/\n\n18) dougforte: Build B2 Rhine\n\n19) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild Y1 Colorado\n\tdougforte: Glad to hear it, though a cold is an unfortunate souvenir.\n\n20) dougforte: Build Y2 Dougforte\n\n21) Laurie_Menke: Build G1 Laurie_menke\n\n22) dougforte: Build Y2 Dougforte\n\n23) Laurie_Menke: Move Y1 Colorado Dougforte\nCatastrophe Dougforte Y\n\n24) dougforte: Trade B2 G2 Rhine\n\n25) Laurie_Menke: Discover G1 Laurie_menke Y2 Steppingstone\n\tLaurie_Menke: Sorry. :( Always a hard lesson to learn.\n\n26) dougforte: Build G2 Rhine\n\tdougforte: No worries, it's good to see a catastrophe, is something I wouldn't normally expect to say. :)\n\tdougforte: Still, maybe next time I can see it coming in advance...\n\tLaurie_Menke: :)\n\n27) Laurie_Menke: Move G1 Steppingstone Colorado\n\n28) dougforte: Trade G2 Y2 Rhine\n\n29) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Colorado\nBuild G2 Colorado\nBuild G3 Laurie_menke\n\n30) dougforte: Build G3 Rhine\n\tLaurie_Menke: This move is called a Factory...\n\n31) Laurie_Menke: Trade G2 R2 Colorado\n\tLaurie_Menke: Because even though you sacrifice your piece, you get it back plus two more.\n\tdougforte: Right, I figured the sacrifice can be powerful, I just don't know what to do with it yet. :)\n\n32) dougforte: Move Y3 Rhine Dougforte\n\n33) Laurie_Menke: Trade G2 Y2 Colorado\n\n34) dougforte: Build Y1 Rhine\n\n35) Laurie_Menke: Sacrifice Y2 Colorado\nMove G1 Colorado Dougforte\nMove G1 Dougforte Rhine\nCatastrophe Rhine G\n\n36) dougforte: Trade R1 G1 Dougforte\n\n37) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild Y1 Colorado\n\tLaurie_Menke: I'm very sorry. But the best way to learn is to see if happen.\n\n38) dougforte: Build G1 Dougforte\n\n39) Laurie_Menke: Move Y1 Colorado Dougforte\n\tdougforte: It's okay, I appreciate learning, even if it seems to take me a while. :)\n\tLaurie_Menke: Oh, no... you're learning quite quickly! I've been telling Andy that he'll have to look out for you soon. This is just a game that takes a long time to get good at. :)\n\n40) dougforte: Trade G1 R1 Dougforte\n\tdougforte: Thank you! I agree, I think it will be several games before I'm able to put up any real challenge.\n\tdougforte: Is Andy also on the ladder?\n\n41) Laurie_Menke: Sacrifice R2 Colorado\nAttack R1 Dougforte\nAttack G1 Dougforte\n\tLaurie_Menke: No, he finds it hard to play on SDG because of the random way new star systems are added to the universe. He prefers to put the pieces in a very specific way and SDG can't do it that way. But hopefully you'll get a chance to challenge him in person sometime soon. :)\n\n42) dougforte: Build Y1 Dougforte\n\tDraw5PlayAll: AFAICT they are sorted in alphabetical order.\n\tLaurie_Menke: Huh... I'd never noticed. I don't think there's any way we could use that fact to create what Andy wants, but I'll have to think about that.\n\tdougforte: Ah, I see. I haven't played these games IRL, so for me getting used to how the user interface works here is just part of learning the game, but I certainly understand having issues with it (or any interface in general).\n\tdougforte: Also real pieces can be quite nice, and I'm sure that's true for some of these pyramid sets. :)\n\n43) Laurie_Menke: Build Y2 Dougforte\nCatastrophe Dougforte Y\n\tLaurie_Menke: Oh absolutely, dougforte! You'll probably find more people to play with here on SDG, but nothing beats playing with the real pieces. :)\n\tLaurie_Menke: Oops! Don't forget about catastrophes! Either side can call a catastrophe. Would you like to undo that last move?\n\tdougforte: Ah, thanks for the reminder. :) At least I checked ships this time, but I'll have to remember to look at all pieces, including system markers...\n\n\tdougforte: Good sacrifice! I'm lucky there's still a move for me, options seem to be limited...\n\tLaurie_Menke: Yes, I'm afraid you're nearing the end of your game unless you pull off something unexpected.\n\tLaurie_Menke: Thanks for the fun! I expect you to be a force to be reckoned with very soon! Feel free to challenge me any time! :)\n\tdougforte: I will, once I get off the bottom of the ladder, of course. :)\n\tdougforte: Very soon may be optimistic, there's still a lot for me to learn. Anyway, thanks for the game!\n\tLaurie_Menke: :)\n\nHomeworlds Online (SDG# 35114)\nStarted: 2019.5.12, Ended: 2019.7.21\nParticipants: ts52 (S), Draw5PlayAll (N)\nWinner: ts52\n\n1) Draw5PlayAll: Pass\n\n2) ts52: Homeworld Y1 B2 G3\n\n3) Draw5PlayAll: Homeworld B3 R1 G3\n\n4) ts52: Build G1 Ts52\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\tts52: sorry for the delay. have a good game!\n\n6) ts52: Build G1 Ts52\n\n7) Draw5PlayAll: Build G2 Draw5playall\n\n8) ts52: Trade G1 Y1 Ts52\n\tDraw5PlayAll: Ha\n\n9) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n10) ts52: T G1 B1 Ts52\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) ts52: Discover B1 Ts52 G3 Kermit\n\n13) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n14) ts52: Build G1 Ts52\n\n15) Draw5PlayAll: Discover Y2 Draw5playall B2 Trade\n\n16) ts52: Move Y1 Ts52 Kermit\n\n17) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n18) ts52: Build Y2 Kermit\n\n19) Draw5PlayAll: Build G1 Draw5playall\n\n20) ts52: Build B1 Kermit\n\n21) Draw5PlayAll: Move G1 Draw5playall Trade\n\n22) ts52: Discover B1 Kermit G2 Robin\n\n23) Draw5PlayAll: Discover B1 Draw5playall G2 Build\n\n24) ts52: Trade G1 R1 Ts52\n\n25) Draw5PlayAll: Trade Y2 R2 Trade\n\n26) ts52: Build Y2 Kermit\n\n27) Draw5PlayAll: Build Y2 Draw5playall\n\n28) ts52: Move Y2 Kermit Robin\n\n29) Draw5PlayAll: Move Y1 Draw5playall Trade\n\n30) ts52: Build Y3 Robin\n\n31) Draw5PlayAll: Build Y3 Trade\n\n32) ts52: Trade Y2 R2 Kermit\n\n33) Draw5PlayAll: Discover Y1 Trade G1 Construct\n\n34) ts52: Move R2 Kermit Build\n\n35) Draw5PlayAll: Build G1 Draw5playall\n\n36) ts52: Attack B1N Build\n\n37) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Construct\nBuild Y3 Draw5playall\nBuild G2 Trade\n\n38) ts52: Build G3 Ts52\n\n39) Draw5PlayAll: Build R1 Trade\n\n40) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild B2 Robin\nBuild B3 Kermit\n\n41) Draw5PlayAll: Discover R1 Trade B3 Convert\n\n42) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Ts52\nBuild R3 Build\n\n43) Draw5PlayAll: Sacrifice G2 Trade\nBuild R3 Convert\nBuild R3 Trade\n\n44) ts52: Move B3 Kermit Construct\n\n45) Draw5PlayAll: Sacrifice Y1 Construct\nMove Y2 Construct Convert\n\n46) ts52: Build Y1 Kermit\n\n47) Draw5PlayAll: Move R3 Trade Kermit\n\n48) ts52: Move Y1 Kermit Build\n\n49) Draw5PlayAll: Discover Y2 Draw5playall G2 Create\n\n50) ts52: Move B1 Robin Draw5playall\n\n51) Draw5PlayAll: Sacrifice Y2 Convert\nMove R1 Convert Build\nMove R3 Convert Build\nCatastrophe Build Red\n\n52) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild Y2 Build\nBuild B3 Build\n\n53) Draw5PlayAll: Build R1 Kermit\n\n54) ts52: Move Y2 Build Draw5playall\n\n55) Draw5PlayAll: Trade Y3 R3 Draw5playall\n\tDraw5PlayAll: Uh oh\n\n56) ts52: Discover R2 Ts52 Y3 Bigbird\n\n57) Draw5PlayAll: Attack Y2 Draw5playall\n\n58) ts52: Sacrifice Y3 Robin\nMove B1 Build Draw5playall\nMove B2 Robin Draw5playall\nCatastrophe Draw5playall B\nMove R2 Bigbird Draw5playall\n\n59) Draw5PlayAll: Sacrifice R3 Draw5playall\nAttack R2 Draw5playall\nAttack B1 Kermit\nAttack Y1 Kermit\n\tDraw5PlayAll: ***** This game is NOT for the tournament *****\n\n60) ts52: Move B3 Build Draw5playall\n\n61) Draw5PlayAll: Sacrifice Y2 Create\nMove R3 Kermit Draw5playall\nMove Y3 Trade Draw5playall\n\tts52: Indeed. This started long before the tournament, and I haven't even registered yet.\n\n62) ts52: Sacrifice Y2 Robin\nMove R1 Ts52 Kermit\nMove R1 Kermit Draw5playall\nCatastrophe Draw5playall Red\n\tts52: Thanks for the game.\n\n\nHomeworlds Online (SDG# 35168)\nVariants: "Hard time"\nStarted: 2019.5.12, Ended: 2019.6.12\nParticipants: Simon (S), Draw5PlayAll (N)\nWinner: Simon\n\n1) Draw5PlayAll: Pass\n\tSimon: Have fun!\n\n2) Simon: Homeworld G3 R1 B3\n\n3) Draw5PlayAll: Homeworld B3 R2 G3\n\n4) Simon: Build B1 Simon\n\n5) Draw5PlayAll: Build G1 Draw5playall\n\n6) Simon: Build B1 Simon\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\n8) Simon: Trade B3 Y3 Simon\n\n9) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n10) Simon: Build B2 Simon\n\n11) Draw5PlayAll: Build B2 Draw5playall\n\n12) Simon: Discover B2 Simon G2 G2\n\n13) Draw5PlayAll: Trade B2 Y2 Draw5playall\n\n14) Simon: Build B2 G2\n\n15) Draw5PlayAll: Discover B1 Draw5playall G1 Build\n\n16) Simon: Trade B2 Y2 G2\n\n17) Draw5PlayAll: Build B2 Build\n\n18) Simon: Build B2 G2\n\n19) Draw5PlayAll: Trade B2 R2 Build\n\n20) Simon: Trade B2 R2 G2\n\n21) Draw5PlayAll: Build B2 Build\n\n22) Simon: Build R1 G2\n\n23) Draw5PlayAll: Trade B1 Y1 Build\n\n24) Simon: Discover R2 G2 Y1 Y1\n\n25) Draw5PlayAll: Build Y1 Build\n\n26) Simon: Build Y2 G2\n\n27) Draw5PlayAll: Build Y3 Draw5playall\n\n28) Simon: Build Y3 Simon\n\n29) Draw5PlayAll: Discover G1 Draw5playall R1 Attack\n\n30) Simon: Trade Y3 G3 Simon\n\n31) Draw5PlayAll: Build R3 Build\n\n32) Simon: Sacrifice G3 Simon\nBuild Y3 Simon\nBuild R3 Y1\nBuild R3 G2\n\n33) Draw5PlayAll: Discover R2 Build B2 Trade\n\n34) Simon: Build B1 G2\n\n35) Draw5PlayAll: Build B3 Build\n\n36) Simon: Sacrifice Y2 G2\nMove R3 Y1 Draw5playall\nDiscover B1 Simon G2 G2a\n\n37) Draw5PlayAll: Attack R3 Draw5playall\n\tDraw5PlayAll: ?!?\n\n38) Simon: Sacrifice Y3 Simon\nMove R2 Y1 Draw5playall\nMove R1 G2 Attack\nMove R1 Attack Draw5playall\nCatastrophe Draw5playall Red\n\tDraw5PlayAll: Oh, nice.\n\n39) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B2 Build G2\nMove B3 Build G2\nCatastrophe G2 Blue\n\n40) Simon: Build B1 G2a\n\tSimon: Thanks. Although it felt very early too and I didn't see it at first.\n\n41) Draw5PlayAll: Move R3 Build G2a\n\n42) Simon: Sacrifice Y2 G2\nMove B1 G2a Draw5playall\nMove B1 G2a Draw5playall\n\n43) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove R3 G2a Simon\nMove R2 Trade Simon\nMove Y1 Build Draw5playall\n\tDraw5PlayAll: HaNgInGbYaThReAd\n\n44) Simon: Sacrifice Y3 Simon\nMove B1 Simon G2\nMove B1 G2 Draw5playall\nMove R3 G2 Simon\nCatastrophe Draw5playall Blue\n\n\tDraw5PlayAll: I can survive one more move...\n\tSimon: Hmm, catastrophe is optional in any ruleset that I know. :-) Thanks for game, rematch anytime!\n\nHomeworlds Online (SDG# 35197)\nVariants: "Hard time"\nStarted: 2019.5.14, Ended: 2019.5.30\nParticipants: Simon (S), ajo (N)\nWinner: Simon\n\n1) ajo: Homeworld B2 R1 G3\n\n2) Simon: Homeworld Y1 G3 B3\n\tSimon: Have fun :)\n\n3) ajo: Build G1 Ajo\n\n4) Simon: Build B1 Simon\n\tajo: You too!\n\n5) ajo: Trade G1 B1 Ajo\n\n6) Simon: Trade B1 R1 Simon\n\n7) ajo: Build G1 Ajo\n\n8) Simon: Build R1 Simon\n\n9) ajo: Build G1 Ajo\n\n10) Simon: Build R2 Simon\n\n11) ajo: Trade G1 Y1 Ajo\n\n12) Simon: Discover R2 Simon G2 G2\n\n13) ajo: Build Y1 Ajo\n\n14) Simon: Build B1 Simon\n\n15) ajo: Build Y2 Ajo\n\n16) Simon: Move B1 Simon G2\n\n17) ajo: Discover Y2 Ajo B3 Alpha\n\n18) Simon: Build R2 G2\n\n19) ajo: Sacrifice G3 Ajo\nBuild Y2 Alpha\nBuild Y2 Alpha\nBuild Y3 Ajo\n\n20) Simon: Build R2 Simon\n\n21) ajo: Trade Y2 G2 Alpha\n\n22) Simon: Build R3 G2\n\n23) ajo: Discover Y2 Alpha B2 Beta\n\n24) Simon: Trade R3 Y3 G2\n\n25) ajo: Trade Y3 R3 Ajo\n\n26) Simon: Move R2 G2 Alpha\n\n27) ajo: Sacrifice G2 Alpha\nBuild Y2 Ajo\nBuild Y3 Beta\n\n28) Simon: Build Y3 G2\n\n29) ajo: Trade Y3 R3 Beta\n\n30) Simon: Sacrifice Y3 G2\nMove R2 G2 Alpha\nMove R2 Alpha Ajo\nMove R2 Alpha Ajo\nCatastrophe Ajo Red\n\n31) ajo: Sacrifice Y2 Alpha\nMove B1 Ajo Simon\nMove R3 Beta Simon\nCatastrophe Simon Red\n\tajo: I saw that but for some reason thought you wouldn't do it. ...And then I completely missed that you have a Doomsday Machine already assembled! I think I lose.\n\n32) Simon: Trade B3 R3 Simon\n\n33) ajo: Sacrifice B1 Simon\nTrade Y2 R2 Ajo\n\tSimon: Right, the attack looks very early. It really needed the leftover b1 at your home to be a big enough threat.\n\tajo: And in fact, having neutralized your threat already by catastropheing red, I really should have left my b1 at home instead of putting it into harm's way. Now I have to rescue it. :(\n\n34) Simon: Move B1 G2 Simon\n\n35) ajo: Trade Y2 R2 Beta\n\n36) Simon: Build B1 Simon\n\n37) ajo: Build Y2 Ajo\n\n38) Simon: Build B1 Simon\n\n39) ajo: Pass\n\tajo: Oh, I missed my chance. I should have done "trade r2 Beta b2" last turn.\n\n40) Simon: Sacrifice Y3 G2\nMove B1 Simon Ajo\nMove B1 Simon Ajo\nMove B1 Simon Ajo\nCatastrophe Ajo Blue\n\tSimon: Yeah, that would prolong the game. Probably still slanted towards me but no immediate win. :-) Still, thanks for the game!\n\n\nHomeworlds Online (SDG# 35206)\nVariants: "Hard time"\nStarted: 2019.5.18, Ended: 2019.5.31\nParticipants: dlwillson (S), Trydnt (N)\nWinner: dlwillson\n\n1) Trydnt: Homeworld Y3 B2 G3\n\n2) dlwillson: Homeworld B3 Y1 G3\n\tdlwillson: TY! GL! HF!\n\n3) Trydnt: Build G1 Trydnt\n\n4) dlwillson: B G1 Dlwillson\n\tTrydnt: You too!\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n\tdlwillson: What happened? \n\nHomeworlds Online (SDG# 35072)\nVariants: "Hard time"\nStarted: 2019.5.19, Ended: 2019.6.23\nParticipants: Draw5PlayAll (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\twil: Gl\n\n3) wil: B G1 Wil\n\tDraw5PlayAll: Prepare to lose.\n\twil: Blue instafreeze eh\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) wil: B G1 Wil\n\tDraw5PlayAll: Green instafreeze = crushing\r\nBlue instafreeze = strong\r\nYellow instafreeze = risky\r\nRed instafreeze = You cannot do anything!!\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) wil: D G1 Wil B3 B3\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\n9) wil: B G1 B3\n\n10) Draw5PlayAll: Discover B2 Draw5playall G2 Build\n\n11) wil: B G2 B3\n\n12) Draw5PlayAll: Build B2 Build\n\n13) wil: T G2 B2 B3\n\n14) Draw5PlayAll: Build Y1 Draw5playall\n\n15) wil: B G2 Wil\n\n16) Draw5PlayAll: Build B3 Build\n\n17) wil: D G1 Wil Y3 Y3\n\n18) Draw5PlayAll: Build B3 Draw5playall\n\n19) wil: S G3 Wil\nB G2 Y3\nB G3 B3\nB G3 Wil\n\n20) Draw5PlayAll: Trade B3 R3 Build\n\n21) wil: S B2 B3\nT G2 R2 Y3\nT G3 Y3 B3\n\n22) Draw5PlayAll: Discover B3 Draw5playall G2 Construct\n\n23) wil: S G3 Wil\nB G3 Wil\nB G3 Y3\nB R1 Y3\n\n24) Draw5PlayAll: Build B2 Construct\n\n25) wil: B Y1 B3\n\n26) Draw5PlayAll: Build B3 Build\n\n27) wil: D R2 Y3 Y2 Y2\n\n28) Draw5PlayAll: Build R1 Build\n\tDraw5PlayAll: There is one small problem with this.\r\n\r\nI have no idea how to actually WIN from here.\n\n29) wil: S G3 Wil\nB R1 Y2\nB R2 Y2\nB G3 Wil\n\twil: Then prepare to lose.\n\twil: Heck we are only 14 moves in.\n\n30) Draw5PlayAll: Trade B3 R3 Construct\n\n31) wil: S Y3 B3\nM G1 B3 Build\nM G1 B3 Build\nM G1 Y3 Build\nC Build G\n\n32) Draw5PlayAll: Build B2 Construct\n\n33) wil: T G2 B2 Wil\n\n34) Draw5PlayAll: Build B3 Construct\n\n35) wil: B B3 Wil\n\n36) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove B2 Construct B3\nMove B2 B3 Wil\nMove B3 Construct Draw5playall\nCatastrophe Wil Blue\n\n37) wil: B G1 Wil\n\n38) Draw5PlayAll: Build R1 Construct\n\tDraw5PlayAll: I will regret this, but I would also regret NOT doing so.\n\n39) wil: B G1 Y3\n\tDraw5PlayAll: Oh, the Homeworlds are connected now. I think I am still safe. For now.\n\n40) Draw5PlayAll: Trade B1 G1 Draw5playall\n\n41) wil: B R2 Y3\n\n42) Draw5PlayAll: Build Y1 Draw5playall\n\n43) wil: D R1 Y3 G2 G2\n\n44) Draw5PlayAll: Trade B3 R3 Draw5playall\n\n45) wil: S G3 Wil\nB G2 Y3\nB G3 Wil\nB R3 G2\n\tDraw5PlayAll: Risks are made to be taken.\n\n46) Draw5PlayAll: Move Y1 Draw5playall Construct\n\n47) wil: S Y1 B3\nD R3 G2 B3 B3\n\n48) Draw5PlayAll: Build Y1 Draw5playall\n\n49) wil: T R3 Y3 B3\n\n50) Draw5PlayAll: Build Y2 Construct\n\n51) wil: S G3 Wil\nB G3 Wil\nB R3 G2\nB Y3 B3\n\twil: Oopsie\n\n52) Draw5PlayAll: Sacrifice Y2 Construct\nMove G1 Draw5playall Wil\nMove G1 Wil Y3\nCatastrophe Y3 Green\n\tDraw5PlayAll: Your stuff looks very threatening, but I don't think it can do anything.\n\n53) wil: M R1 Y2 Draw5playall\n\n54) Draw5PlayAll: Trade R3 B3 Draw5playall\n\n55) wil: A Y1 Draw5playall\n\n56) Draw5PlayAll: Sacrifice R1 Construct\nAttack R1 Draw5playall\n\n57) wil: S R2 Y3\nA Y1 Draw5playall\nA R1 Draw5playall\n\twil: Well dangit you made me change plans\n\n58) Draw5PlayAll: Build B1 Construct\n\tDraw5PlayAll: You will NOT blow up my only good peripheral system!!\n\n59) wil: T Y1 B1 Draw5playall\n\twil: Ok\n\n60) Draw5PlayAll: Trade B3 G3 Draw5playall\n\tDraw5PlayAll: I regret allowing you to blow up the build system earlier...\n\n61) wil: T R1 G1 Draw5playall\n\twil: I may have forgot to prepare to lose.\n\twil: Its not to late is it?\n\n62) Draw5PlayAll: Move R3 Construct Draw5playall\n\n63) wil: S G3 Wil\nB G1 Draw5playall\nB B2 Draw5playall\nB B2 Draw5playall\nC Draw5playall B\nC Draw5playall G\n\twil: Got your will written?\n\tDraw5PlayAll: You are persistent, but I fail to see your plan.\n\n\twil: That was.different.\n\twil: I kept forgetting to lose, challenge me anytime.\n\twil: I like instafreeze attempts, keep trying!\n\tDraw5PlayAll: My mistake was letting you blow up build and take down like all my stuff with it... otherwise I would have had a crushing lockdown on red.\n\twil: I so wish we could replay from there...\n\tDraw5PlayAll: Well, it seems I should never have had like 5 ships there in the first place. It was not a "oh I missed a single move" problem...\n\nHomeworlds Online (SDG# 35194)\nVariants: "Hard time"\nStarted: 2019.5.26, Ended: 2019.6.22\nParticipants: Simon (S), dragon76n (N)\nWinner: Simon\n\n1) dragon76n: Homeworld B2 G1 Y3\n\n2) Simon: Homeworld G1 B3 G3 *\n\tSimon: Hi, have fun!\n\n3) dragon76n: Build Y1 Dragon76n\n\tdragon76n: Hi Simon! I think this is the first time I've played against you. Have fun.\n\n4) Simon: Build G1 Simon\n\n5) dragon76n: Build Y1 Dragon76n\n\n6) Simon: Trade G3 Y3 Simon\n\n7) dragon76n: Trade Y3 G3 Dragon76n\n\n8) Simon: Build G2 Simon\n\n9) dragon76n: Discover G3 Dragon76n B3 Bluthr\n\n10) Simon: Trade G1 R1 Simon\n\n11) dragon76n: B G1 Bluthr\n\n12) Simon: Build G2 Simon\n\n13) dragon76n: Move Y1 Dragon76n Bluthr\n\n14) Simon: Discover G2 Simon B2 B2\n\n15) dragon76n: Discover G1 Bluthr Y2 Yeltwo\n\n16) Simon: Move G2 Simon Yeltwo\n\n17) dragon76n: Build G2 Bluthr\n\n18) Simon: Build G3 B2\n\n19) dragon76n: Build G3 Yeltwo\n\n20) Simon: Sacrifice G2 B2\nBuild G2 Yeltwo\nBuild R1 Simon\nCatastrophe Yeltwo Green\n\n21) dragon76n: Trade G2 R2 Bluthr\n\n22) Simon: Move R1 Simon B2\n\n23) dragon76n: Move G3 Bluthr Dragon76n\n\n24) Simon: Build G1 B2\n\n25) dragon76n: Discover R2 Bluthr Y1 Yelone\n\n26) Simon: Build G2 B2\n\n27) dragon76n: Discover R2 Yelone G2 Gretwo\n\n28) Simon: Trade G3 Y3 B2\n\n29) dragon76n: Build R1 Gretwo\n\n30) Simon: Build G2 B2\n\n31) dragon76n: Move Y1 Bluthr Gretwo\n\n32) Simon: Discover G2 B2 B3 B3\n\n33) dragon76n: Build R2 Gretwo\n\n34) Simon: Build G3 B3\n\n35) dragon76n: T G3 R3 Dragon76n\n\n36) Simon: Sacrifice G3 B3\nBuild G3 B3\nBuild G3 B3\nBuild G3 B2\n\n37) dragon76n: Discover R2 Gretwo Y3 Yelthr\n\n38) Simon: Trade G3 B3 B2\n\n39) dragon76n: Build R2 Dragon76n\n\n40) Simon: Sacrifice G3 B3\nBuild G3 B3\nBuild R3 B2\nBuild R3 Simon\n\n41) dragon76n: T R2 B2 Dragon76n\n\n42) Simon: Discover B3 B2 G3 G3\n\n43) dragon76n: Trade B2 Y2 Dragon76n\n\n44) Simon: Sacrifice G3 B3\nBuild G3 B3\nBuild B1 G3\nBuild B1 G3\n\n45) dragon76n: Discover R2 Gretwo B1 Bluone\n\n46) Simon: Sacrifice Y3 B2\nMove B1 G3 Dragon76n\nMove B1 G3 Dragon76n\nMove B3 G3 Dragon76n\nCatastrophe Dragon76n Blue\n\n47) dragon76n: Move R3 Dragon76n B3\n\n48) Simon: Sacrifice Y3 Simon\nMove G3 B3 Dragon76n\nMove G3 B3 Dragon76n\nMove G2 B3 Dragon76n\nCatastrophe Dragon76n Green\n\n\tSimon: Hmm, whenever first player has a g1 or b1 in the homeworld, second player can start with the instant green/blue freezeout opening that duplicates that 1 and has a ship of same color. It dictates many first moves for second player though. <_<\n\tdragon76n: Good game. Thanks for the tip. I'll try to keep that in mind in the future. \n\tSimon: gg!\n\nHomeworlds Online (SDG# 35061)\nVariants: "Unrated"\nStarted: 2019.5.28, Ended: 2019.6.24\nParticipants: Horizon (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\twil: Thanks for the game have you played before.\n\n\twil: New to sdg? Homeworlds?\n\nHomeworlds Online (SDG# 35231)\nVariants: "Hard time"\nStarted: 2019.5.30, Ended: 2019.6.5\nParticipants: Simon (S), goulo (N)\nWinner: Simon\n\n1) goulo: Homeworld R3 B1 G3\n\n2) Simon: Homeworld R2 G1 B3\n\tgoulo: hi, have fun!\n\tSimon: You too, have fun!\n\n3) goulo: Build G1 Goulo\n\n4) Simon: Build B1 Simon\n\n5) goulo: Trade G1 Y1 Goulo\n\n6) Simon: Build B1 Simon\n\n7) goulo: Build G1 Goulo\n\n8) Simon: Trade B3 Y3 Simon\n\n9) goulo: Build G1 Goulo\n\n10) Simon: Build B2 Simon\n\n11) goulo: Discover G1 Goulo Y2 Flavo\n\n12) Simon: Trade B2 G2 Simon\n\n13) goulo: Build G2 Flavo\n\n14) Simon: Discover G2 Simon B3 B3\n\n15) goulo: Discover G1 Flavo Y3 Flavego\n\n16) Simon: Build B2 Simon\n\n17) goulo: Build Y1 Goulo\n\n18) Simon: Discover B1 Simon G3 G3\n\n19) goulo: Sacrifice G3 Goulo\nBuild G2 Flavo\nBuild G3 Flavego\nBuild G3 Goulo\n\n20) Simon: Build B2 G3\n\n21) goulo: Trade Y1 R1 Goulo\n\n22) Simon: Build B2 Simon\n\n23) goulo: Move G2 Flavo B3\n\n24) Simon: Move B2 Simon B3\n\n25) goulo: Sacrifice R1 Goulo\nAttack B2 B3\n\n26) Simon: Trade B2 R2 G3\n\n27) goulo: Sacrifice G2 B3\nBuild B2 B3\nBuild B3 B3\nCatastrophe B3 B\n\n28) Simon: Build B2 G3\n\n29) goulo: Trade G1 R1 Goulo\n\n30) Simon: Build B2 Simon\n\n31) goulo: Build Y1 Goulo\n\n32) Simon: Build B3 G3\n\n33) goulo: Discover Y1 Goulo R2 Rubeno\n\n34) Simon: Trade B3 Y3 G3\n\n35) goulo: Build G1 Flavego\n\n36) Simon: Trade B2 G2 G3\n\n37) goulo: Move G1 Flavego Simon\n\n38) Simon: Attack G1 Simon\n\n39) goulo: Move G1 Flavego Simon\n\n40) Simon: Sacrifice Y3 G3\nDiscover G1 Simon B3 B3\nMove B2 Simon G3\nDiscover B2 G3 G2 G2\n\n41) goulo: Sacrifice G2 Flavo\nBuild G2 Simon\nBuild R1 Goulo\n\tSimon: Expensive defense. x_X I am used to a 1-3 homeworld, and thus planned to move the captured g1 to the leftover g2, but now it costs a y3 sac to accomplish both.\n\n42) Simon: Build R1 G3\n\n43) goulo: Sacrifice G3 Flavego\nBuild G3 Simon\nBuild Y1 Goulo\nBuild Y2 Goulo\nCatastrophe Simon G\n\n44) Simon: Sacrifice Y3 Simon\nMove R1 G3 G2\nMove R1 G2 Goulo\nMove B2 G2 Goulo\nCatastrophe Goulo Red\n\n45) goulo: Move G3 Goulo Simon\n\n46) Simon: Trade B2 Y2 Goulo\nCatastrophe Goulo Yellow\n\tgoulo: hmm, uh-oh! well, at least I went down fighting. :P\n\n\tSimon: Yes, considerable attack, and I should have taken countermeasures much earlier. The counterattack hinged on your extra r1.\n\tgoulo: thanks for the game!\n\tSimon: Thanks, gg!\n\nHomeworlds Online (SDG# 35134)\nVariants: "Unrated"\nStarted: 2019.5.31, Ended: 2019.6.29\nParticipants: Trydnt (S), Hg80 (N)\nWinner: Trydnt\n\n1) Hg80: Homeworld B3 R1 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\n3) Hg80: Build G1 Hg80\n\n4) Trydnt: Build G1 Trydnt\n\n5) Hg80: Trade G1 Y1 Hg80\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) Hg80: Build G1 Hg80\n\n8) Trydnt: Build R1 Trydnt\n\n9) Hg80: Discover G1 Hg80 B2 Alchem\n\n10) Trydnt: Build R2 Trydnt\n\n11) Hg80: Build G1 Alchem\n\n12) Trydnt: Discover R2 Trydnt Y1 Y1\n\n13) Hg80: Build G1 Hg80\n\n14) Trydnt: Move R2 Y1 Alchem\n\n15) Hg80: Sacrifice G1 Alchem\nBuild Y1 Hg80\n\n16) Trydnt: Attack G1 Alchem\n\n17) Hg80: Discover Y1 Hg80 G2 Idunno\n\n18) Trydnt: Build R2 Alchem\n\n19) Hg80: Trade G3 R3 Hg80\n\n20) Trydnt: Trade R2 Y2 Alchem\n\n21) Hg80: Build Y1 Idunno\n\n22) Trydnt: Build Y2 Alchem\n\n23) Hg80: Build Y2 Hg80\n\n24) Trydnt: Discover Y2 Alchem G3 G3\n\n25) Hg80: Trade Y1 B1 Hg80\n\n26) Trydnt: Discover R2 Alchem G3 Gee3\n\n27) Hg80: Move Y1 Idunno G3\n\n28) Trydnt: Build R2 Gee3\n\n29) Hg80: Build Y1 Idunno\n\n30) Trydnt: Sacrifice Y2 G3\nDiscover R2 Gee3 G2 G2\nMove R2 Gee3 Idunno\n\n31) Hg80: Build Y2 Idunno\n\n32) Trydnt: Attack Y2 Idunno\n\n33) Hg80: Build Y3 Hg80\n\n34) Trydnt: Sacrifice Y2 Idunno\nMove R2 Idunno Hg80\nMove R2 G2 Hg80\nCatastrophe Hg80 R\n\n35) Hg80: Trade Y3 R3 Hg80\n\n36) Trydnt: Trade R1 B1 Trydnt\n\n37) Hg80: Build G1 Hg80\n\n38) Trydnt: Build G2 Alchem\n\n39) Hg80: Move B1 Hg80 Idunno\n\n40) Trydnt: Discover G2 Alchem Y3 Y3\n\n41) Hg80: Build B1 Idunno\n\n42) Trydnt: Discover B1 Trydnt R1 R1\n\n43) Hg80: Build Y2 Hg80\n\n44) Trydnt: Build Y3 Alchem\n\n45) Hg80: Sacrifice Y2 Hg80\nMove Y2 Hg80 Alchem\nMove Y1 G3 Alchem\nCatastrophe Alchem Y\n\n46) Trydnt: Sacrifice G1 Alchem\nBuild B2 R1\n\n47) Hg80: Trade G1 Y1 Hg80\n\n48) Trydnt: Trade B2 Y2 R1\n\n49) Hg80: Trade Y1 R1 Idunno\n\n50) Trydnt: Sacrifice G2 Y3\nBuild B2 R1\nBuild R2 Trydnt\n\n51) Hg80: Build R2 Idunno\n\n52) Trydnt: Discover B2 R1 G2 G2\n\n53) Hg80: Build R2 Hg80\n\n54) Trydnt: Sacrifice G3 Trydnt\nBuild R3 Trydnt\nBuild B2 R1\nBuild B3 G2\n\n55) Hg80: Discover R1 Idunno Y1 Kamik\n\n56) Trydnt: Move R2 Trydnt Kamik\n\n57) Hg80: Build R3 Idunno\n\n58) Trydnt: Attack R1 Kamik\n\n59) Hg80: Move R3 Idunno Kamik\n\n60) Trydnt: Move B1 R1 Hg80\n\n\tHg80: I believe that's checkmate.\n\tTrydnt: indeed it is. well played\n\nHomeworlds Online (SDG# 35228)\nVariants: "Unrated"\nStarted: 2019.5.31, Ended: 2019.6.4\nParticipants: Hg80 (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) Hg80: Homeworld B3 R2 G3\n\n3) wil: B G1 Wil\n\twil: Goodluck, have fun!\n\n4) Hg80: Build G1 Hg80\n\tHg80: Thanks! My first game with another real person, incidentally\n\n5) wil: T G1 R1 Wil\n\n6) Hg80: Trade G1 Y1 Hg80\n\n7) wil: B R1 Wil\n\n8) Hg80: Build G1 Hg80\n\twil: only been playing with fake people?\n\tHg80: Well, playing with myself, but I guess "second me" is fake, so yes.\n\n9) wil: B R1 Wil\n\n10) Hg80: Build Y1 Hg80\n\twil: Do you own pyramid arcade\n\n11) wil: D R1 Wil G3 G3\n\tHg80: I do, yes.\n\n12) Hg80: Trade G3 R3 Hg80\n\twil: Don't let anyone monopolize an economy\n\twil: If someone gets a gun (red) get a gun.\n\twil: Worth rereading the hints and gambits.\n\n13) wil: D R1 Wil B3 B3\n\tHg80: fair enough\n\n14) Hg80: Discover Y1 Hg80 G1 Fleer\n\twil: Wow fast learner!\n\n15) wil: B G1 Wil\n\n16) Hg80: Build G2 Hg80\n\n17) wil: B G2 Wil\n\n18) Hg80: Build Y1 Hg80\n\n19) wil: T G2 Y2 Wil\n\n20) Hg80: Build Y2 Fleer\n\n21) wil: S G3 Wil\nB R2 B3\nB R2 Wil\nB R3 B3\n\n22) Hg80: Move Y2 Fleer G3\n\n23) wil: B R3 G3\n\n24) Hg80: Sacrifice Y2 G3\nDiscover G2 Hg80 B1 Tantrum\nMove Y1 Hg80 Tantrum\n\twil: Just visiting? Or ready to defect?\n\n25) wil: M Y2 Wil G3\n\tHg80: Visiting\n\tHg80: Okay, in all honesty, it was a misplay\n\tHg80: Like I said, still learning\n\twil: No worries, you learn by making mistakes.\n\n26) Hg80: Build G2 Tantrum\n\n27) wil: T R3 Y3 B3\n\n28) Hg80: Build Y2 Hg80\n\n29) wil: B Y3 G3\n\n30) Hg80: Build Y3 Tantrum\n\n31) wil: M R3 G3 Wil\n\n32) Hg80: Sacrifice Y2 Hg80\nMove Y1 Tantrum G3\nMove Y1 Fleer G3\nCatastrophe G3 Y\n\n33) wil: B R3 G3\n\n34) Hg80: Build G1 Hg80\n\n35) wil: T R3 G3 Wil\n\n36) Hg80: Trade Y3 R3 Tantrum\n\n37) wil: T R1 B1 Wil\n\n38) Hg80: Build R1 Tantrum\n\n39) wil: M B1 Wil G3\n\n40) Hg80: Build Y1 Hg80\n\n41) wil: T R3 Y3 G3\n\n42) Hg80: Trade R3 Y3 Tantrum\n\n43) wil: T R2 G2 B3\n\n44) Hg80: Build R2 Tantrum\n\n45) wil: S G3 Wil\nB G3 Wil\nB R3 B3\nB R3 G3\n\n46) Hg80: Sacrifice G2 Tantrum\nBuild G2 Hg80\nBuild G3 Tantrum\n\twil: The factory\n\n47) wil: D R3 B3 Y1 Y1\n\n48) Hg80: Trade R3 B3 Hg80\n\tHg80: Yeah, I was afraid of that\n\n49) wil: S G3 Wil\nB G3 Wil\nB R3 B3\nB Y2 G3\n\n50) Hg80: Sacrifice G1 Hg80\nBuild Y2 Tantrum\n\twil: Factory grinding on overtime\n\n51) wil: S G3 Wil\nB G1 B3\nB B2 G3\nB G3 Wil\n\n52) Hg80: Sacrifice Y3 Tantrum\nMove G1 Hg80 Tantrum\nMove G1 Tantrum B3\nMove G2 Tantrum B3\nCatastrophe B3 G\n\n53) wil: S G1 Wil\nB Y3 B3\n\n54) Hg80: Move Y1 Hg80 Tantrum\n\twil: And I appreciate the big fuel tanker\n\twil: I'd rather you not have star access\n\twil: I thank you for banking some ones and\n\n55) wil: B B2 G3\n\tHg80: I'm probably gonna lose, I've kinda accepted that at this point, but I'm gonna try to go out with a bang\n\tHg80: Be it a literal bang or metaphorical\n\twil: Losing is learning.\n\twil: Then you try the tricks n see counters\n\twil: First.you see tricks used against you\n\n56) Hg80: Build G1 Tantrum\n\n57) wil: M B2 G3 Tantrum\n\n58) Hg80: Attack B2N Tantrum\n\n59) wil: S Y2 G3\nM B2 G3 Tantrum\nM B1 G3 Tantrum\nC Tantrum B\n\n60) Hg80: Build G1 Hg80\n\twil: All your eggs in one basket, pearl harbor \n\twil: Just a few moves to go not bad first game\n\n61) wil: S Y3 B3\nD R3 B3 Y1 Why1\nM R1 G3 Y1\nM R3 G3 Why1\n\n62) Hg80: Discover G1 Hg80 B1 Troll\n\twil: Singing doowaddy diddidum diddidoo\n\twil: Here we come justa walkin down da street\n\n63) wil: M R3 Y1 Hg80\n\n64) Hg80: Attack R3N Hg80\n\n65) wil: S Y3 G3\nM R3 Why1 Hg80\nM R1 Y1 Hg80\nC Hg80 R\nM R3 Why1 Hg80\n\n\twil: I've thrown as many lessons and gambits in as I could\n\tHg80: Well, thanks for the tips! Good game.\n\twil: No worries, challenge anytime,.join the ladder\n\nHomeworlds Online (SDG# 35235)\nVariants: "Unrated"\nStarted: 2019.6.2, Ended: 2019.6.21\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H Y2 B1 G3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\twil: Went to whytestone last night..\n\n3) wil: B G1 Wil\n\tTrydnt: excellent how is the old place? \n\tTrydnt: thought about going for the blue freezeout but would have been too short a game\n\twil: I woulda killed ya\n\twil: All was well, quiet Saturday night\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) wil: B B2 Wil\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: D B1 Wil Y3 Y3\n\n10) Trydnt: Trade B2 Y2 Trydnt\n\n11) wil: B B2 Wil\n\twil: Enjoying trump?\n\n12) Trydnt: Build B2 Trydnt\n\tTrydnt: enjoying the British reactions\n\n13) wil: D B2 Wil G3 G3\n\n14) Trydnt: Discover B2 Trydnt G1 G1\n\twil: Me too! Waiting for him to tell you how to brexit\n\twil: Can you put him in the Parliament weekly QnA?\n\tTrydnt: haha no the Speaker doesn't want him there\n\n15) wil: B B3 G3\n\n16) Trydnt: Build B3 G1\n\n17) wil: T B2 G2 Wil\n\n18) Trydnt: Trade B2 R2 G1\n\n19) wil: T B1 R1 Y3\n\n20) Trydnt: Build B1 G1\n\n21) wil: T B2 R2 G3\n\n22) Trydnt: Trade B3 Y3 G1\n\n23) wil: B B2 G3\n\n24) Trydnt: Build B2 G1\n\n25) wil: B R1 G3\n\n26) Trydnt: Sacrifice Y2 Trydnt\nMove B1 G1 G3\nMove B2 G1 G3\nCatastrophe G3 B\n\n27) wil: D G2 Wil Y3 Why3\n\n28) Trydnt: Build R1 G1\n\n29) wil: B G1 Wil\n\n30) Trydnt: Build Y1 G1\n\n31) wil: T G1 Y1 Wil\n\n32) Trydnt: Build B1 Trydnt\n\twil: Congrats in the tourney, ya done good!\n\tTrydnt: You too! Still nipping at your heels it would seem \n\n33) wil: B G1 Wil\n\n34) Trydnt: Move B1 Trydnt G1\n\n35) wil: D Y1 Wil B3 B3\n\n36) Trydnt: Build B2 G1\n\n37) wil: T G1 Y1 Wil\n\n38) Trydnt: Move R2 G1 B3\n\n39) wil: S G2 Why3\nB Y2 Wil\nB Y3 B3\n\n40) Trydnt: Sacrifice Y3 G1\nMove Y1 G1 B3\nMove Y1 B3 Wil\nCatastrophe Wil Y\nMove B2 G1 Y3\n\n41) wil: S Y1 B3\nM R1 Y3 Wil\n\n42) Trydnt: Sacrifice G3 Trydnt\nBuild B2 G1\nBuild B2 Y3\nBuild B3 Trydnt\n\n\tTrydnt: quite possibly\n\twil: T b3 y3 gg\n\nHomeworlds Online (SDG# 35224)\nVariants: "Hard time"\nStarted: 2019.6.2, Ended: 2019.7.3\nParticipants: Simon (S), Trydnt (N)\nWinner: Simon\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Simon: Homeworld R1 G3 B3\n\tSimon: hf!\n\n3) Trydnt: Build G1 Trydnt\n\n4) Simon: Build B1 Simon\n\n5) Trydnt: Build G1 Trydnt\n\n6) Simon: Build B1 Simon\n\n7) Trydnt: Trade G1 R1 Trydnt\n\n8) Simon: Trade B3 Y3 Simon\n\n9) Trydnt: Build R1 Trydnt\n\n10) Simon: Build B1 Simon\n\n11) Trydnt: Build R2 Trydnt\n\n12) Simon: Discover B1 Simon G2 G2\n\n13) Trydnt: Discover R2 Trydnt Y3 Y3\n\n14) Simon: Build B2 Simon\n\n15) Trydnt: Move R2 Y3 G2\n\n16) Simon: Build B2 G2\n\n17) Trydnt: Attack B2 G2\n\n18) Simon: Build B3 G2\n\n19) Trydnt: Build B3 G2\nCatastrophe G2 B\n\n20) Simon: Discover B1 Simon G2 G2a\n\n21) Trydnt: Build R2 Trydnt\n\n22) Simon: Build B1 Simon\n\n23) Trydnt: Discover R2 Trydnt B3 B3\n\n24) Simon: Discover B1 Simon B2 B2\n\n25) Trydnt: Build R2 Trydnt\n\n26) Simon: Build B3 G2a\n\n27) Trydnt: Sacrifice G3 Trydnt\nBuild R3 G2\nBuild R3 B3\nBuild R3 B3\n\n28) Simon: Build B3 G2a\n\n29) Trydnt: Build G1 Trydnt\n\tTrydnt: this is fun\n\n30) Simon: Discover B2 Simon Y2 Y2\n\n31) Trydnt: Trade G1 Y1 Trydnt\n\n32) Simon: Trade B3 Y3 G2a\n\n33) Trydnt: Discover R1 Trydnt B3 Be3\n\n34) Simon: Build Y1 G2a\n\n35) Trydnt: Move Y1 Trydnt B3\n\n36) Simon: Sacrifice Y3 G2a\nMove B1 B2 B3\nMove B2 Y2 B3\nMove B1 G2a B3\nCatastrophe B3 Blue\n\n37) Trydnt: Build R2 G2\n\n38) Simon: Build B1 G2a\n\n39) Trydnt: Build R3 Trydnt\n\n40) Simon: Trade B3 R3 G2a\n\n41) Trydnt: Move R2 Trydnt Be3\n\n42) Simon: Build B1 Simon\n\n43) Trydnt: Trade R2 G2 Be3\n\n44) Simon: Build R2 G2a\n\n45) Trydnt: Trade R3 Y3 Trydnt\n\n46) Simon: Trade R3 Y3 G2a\n\n47) Trydnt: Sacrifice G2 Be3\nBuild R3 Be3\nBuild R3 Trydnt\n\n48) Simon: Build B2 G2a\n\n49) Trydnt: Build G1 Trydnt\n\n50) Simon: Discover B1 Simon B2 B2\n\n\nHomeworlds Online (SDG# 35187)\nVariants: "Unrated, Hard time"\nStarted: 2019.6.2, Ended: 2019.6.7\nParticipants: Hg80 (S), dlwillson (N)\nWinner: Hg80\n\n1) dlwillson: H B3 Y1 G3\n\n2) Hg80: Homeworld Y2 B3 G3\n\tdlwillson: GL!HF!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Hg80: Build G1 Hg80\n\n\tdlwillson: Sorry about that\n\nHomeworlds Online (SDG# 35244)\nVariants: "Hard time"\nStarted: 2019.6.3, Ended: 2019.7.21\nParticipants: dlwillson (S), Draw5PlayAll (N)\nWinner: dlwillson\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) dlwillson: H B3 R2 G3\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\n4) dlwillson: B G1 Dlwillson\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) dlwillson: Trade G1 Y1 Dlwillson\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\tdlwillson: Sorry for the delay!\n\n8) dlwillson: B G1 Dlwillson\n\n9) Draw5PlayAll: Trade G1 R1 Draw5playall\n\n10) dlwillson: Trade G1 R1 Dlwillson\n\n11) Draw5PlayAll: Build R2 Draw5playall\n\n12) dlwillson: B R2 Dlwillson\n\n13) Draw5PlayAll: Discover R2 Draw5playall G2 Build\n\n14) dlwillson: D R1 Dlwillson G1 Field\n\tDraw5PlayAll: I am already quite nervous\n\n15) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R3 Build\nBuild R3 Draw5playall\nBuild Y1 Draw5playall\n\n16) dlwillson: B Y2 Dlwillson\n\n17) Draw5PlayAll: Trade R3 G3 Draw5playall\n\n18) dlwillson: B R3 Field\n\n19) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover R2 Build G3 Construct\n\n20) dlwillson: Build R3 Dlwillson\n\n21) Draw5PlayAll: Build Y1 Draw5playall\n\n22) dlwillson: M Y1 Dlwillson Field\n\n23) Draw5PlayAll: Move Y1 Draw5playall Build\n\n24) dlwillson: T R2 B2 Dlwillson\n\n25) Draw5PlayAll: Build Y2 Build\n\n26) dlwillson: Trade R3 Y3 Dlwillson\n\n27) Draw5PlayAll: Discover Y1 Build B1 Trade\n\n28) dlwillson: M Y3 Dlwillson Trade\n\n29) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Trade\nBuild Y3 Draw5playall\nBuild Y3 Build\n\n30) dlwillson: T Y3 R3 Trade\n\n31) Draw5PlayAll: Sacrifice Y1 Trade\nDiscover Y2 Trade G3 Grow\n\n32) dlwillson: B G1 Dlwillson\n\n33) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n34) dlwillson: B Y1 Field\n\n35) Draw5PlayAll: Build G2 Draw5playall\n\n36) dlwillson: S Y2 Dlwillson\nM Y1 Field Build\nM Y1 Field Build\nC Build Y\n\n37) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n38) dlwillson: T G1 Y1 Dlwillson\n\n39) Draw5PlayAll: Move B1 Draw5playall Build\n\n40) dlwillson: M B2 Dlwillson Field\n\n41) Draw5PlayAll: Build R2 Build\n\n42) dlwillson: T R1 Y1 Field\n\n43) Draw5PlayAll: Trade R2 Y2 Build\n\n44) dlwillson: B G1 Dlwillson\n\n45) Draw5PlayAll: Build Y1 Build\n\n46) dlwillson: T R3 Y3 Trade\n\n47) Draw5PlayAll: Discover Y1 Build R1 Attack\n\n48) dlwillson: M G1 Dlwillson Trade\n\n49) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild R2 Build\nBuild R3 Construct\n\n50) dlwillson: B G1 Dlwillson\n\n51) Draw5PlayAll: Discover Y2 Grow B1 Convert\n\n52) dlwillson: S G3 Dlwillson\nB G2 Trade\nB G2 Trade\nB G3 Dlwillson\n\n53) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n54) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y3 Dlwillson\nB G3 Dlwillson\n\n55) Draw5PlayAll: Build Y3 Build\n\n56) dlwillson: S Y3 Trade\nM G2 Trade Build\nM G2 Trade Build\nM G1 Trade Build\nC Build G\n\n57) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n58) dlwillson: M Y3 Dlwillson Attack\n\n59) Draw5PlayAll: Move Y1 Attack Construct\n\n60) dlwillson: D Y2 Field G2 Forest\n\n61) Draw5PlayAll: Build G1 Draw5playall\n\n62) dlwillson: S G3 Dlwillson\nB Y2 Attack\nB Y3 Forest\nB Y3 Dlwillson\n\n\tDraw5PlayAll: There isn't no way for me not to not do nothing here.\n\nHomeworlds Online (SDG# 35243)\nVariants: "Unrated, Hard time"\nStarted: 2019.6.5, Ended: 2019.6.9\nParticipants: dlwillson (S), smokeytroll42 (N)\nWinner: smokeytroll42\n\n1) smokeytroll42: Homeworld G3 Y2 B3\n\n2) dlwillson: H B3 Y1 G3\n\n3) smokeytroll42: Build B1 Smokeytroll42\n\n\tdlwillson: Dangit! I'm sorry. Can we try again? \n\tsmokeytroll42: Sure\n\tsmokeytroll42: Challenge sent.\n\nHomeworlds Online (SDG# 34763)\nVariants: "Hard time"\nStarted: 2019.6.6, Ended: 2019.7.10\nParticipants: Trydnt (S), ajo (N)\nWinner: Trydnt\n\n1) ajo: Homeworld B3 Y2 G3\n\n2) Trydnt: Homeworld B2 Y1 G3\n\n3) ajo: Build G1 Ajo\n\tajo: Good luck!\n\n4) Trydnt: Build G1 Trydnt\n\tTrydnt: you too\n\n5) ajo: Trade G1 R1 Ajo\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) ajo: Build R1 Ajo\n\n8) Trydnt: Build Y1 Trydnt\n\n9) ajo: Build R1 Ajo\n\n10) Trydnt: Discover Y1 Trydnt G3 G3\n\n11) ajo: Discover R1 Ajo B1 Alpha\n\n12) Trydnt: Build Y2 G3\n\tajo: This already isn't going well for me...\n\n13) ajo: Build R2 Ajo\n\tTrydnt: yeah you really gotta use your second move to trade for whichever color has had one of the 1 pieces taken in a hw star. otherwise you'll get frozen out and will be playing catch up or you've wasted a trade as you'll have to swap back for it after having lost a step\n\n14) Trydnt: Build Y2 Trydnt\n\n15) ajo: Trade R2 G2 Ajo\n\n16) Trydnt: Build Y3 G3\n\n17) ajo: Sacrifice G2 Ajo\nBuild G1 Ajo\nBuild R2 Alpha\n\n18) Trydnt: Move Y3 G3 Alpha\n\n19) ajo: Discover R1 Ajo B1 Beta\n\n20) Trydnt: Trade Y2 R2 Trydnt\n\n21) ajo: Sacrifice G3 Ajo\nBuild R2 Beta\nBuild R3 Beta\nBuild R3 Ajo\n\n22) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y3 Alpha\nBuild Y3 Trydnt\n\n23) ajo: Trade R2 G2 Beta\n\n24) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Alpha\nAttack R1 Alpha\n\n25) ajo: Trade R3 B3 Ajo\n\n26) Trydnt: Trade R2 G2 Alpha\n\n27) ajo: Build R2 Ajo\n\n28) Trydnt: Build R2 Alpha\n\n29) ajo: Build G1 Beta\n\n30) Trydnt: Trade R1 B1 Alpha\n\n31) ajo: Build R1 Beta\n\n32) Trydnt: Discover B1 Alpha G2 G2\n\n33) ajo: Trade R3 B3 Beta\n\n34) Trydnt: Build B2 G2\n\n35) ajo: Sacrifice G2 Beta\nBuild G1 Beta\nBuild G2 Ajo\n\n36) Trydnt: Sacrifice Y1 Trydnt\nDiscover B2 G2 Y1 Y1\n\n37) ajo: Move B3 Ajo Y1\n\n38) Trydnt: Move Y3 Alpha Ajo\n\n39) ajo: Sacrifice R1 Beta\nAttack B2 Y1\n\n40) Trydnt: Sacrifice R2 Alpha\nAttack R2 Ajo\nAttack G2 Ajo\n\tTrydnt: checkmate\n\n41) ajo: Pass\n\tajo: Well, I'm certainly losing this game one way or another.\n\n42) Trydnt: Sacrifice R2 Ajo\nAttack G1 Ajo\nAttack R1 Ajo\n\tTrydnt: been a slow bleed since I monopolized yellow\n\n\tajo: Good game!\n\tTrydnt: Well played\n\nHomeworlds Online (SDG# 35255)\nVariants: "Hard time"\nStarted: 2019.6.6, Ended: 2019.7.28\nParticipants: deanthebean (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld R1 G3 B3\n\n2) deanthebean: Homeworld B2 G3 Y3\n\tSimon: Hi, have fun! :-)\n\n3) Simon: Build B1 Simon\n\tdeanthebean: Thanks. Same to you!\n\n4) deanthebean: Build Y1 Deanthebean\n\n5) Simon: Build B1 Simon\n\n6) deanthebean: Build Y1 Deanthebean\n\n7) Simon: Trade B1 Y1 Simon\n\n8) deanthebean: Discover Y1 Deanthebean G1 Alpha\n\n9) Simon: Build Y2 Simon\n\n10) deanthebean: Build Y2 Alpha\n\n11) Simon: Discover Y1 Simon G2 G2\n\n12) deanthebean: Trade Y1 B1 Deanthebean\n\n13) Simon: Move B1 Simon G2\n\n14) deanthebean: Build Y1 Deanthebean\n\n15) Simon: Build Y2 G2\n\n16) deanthebean: Discover Y1 Alpha G2 Bravo\n\n17) Simon: Trade Y2 R2 G2\n\n18) deanthebean: Build Y2 Bravo\n\n19) Simon: Build Y3 G2\n\n20) deanthebean: Build Y3 Alpha\n\n21) Simon: Build R1 G2\n\n22) deanthebean: Trade Y1 R1 Deanthebean\n\n23) Simon: Trade R1 G1 G2\n\n24) deanthebean: Trade Y3 G3 Deanthebean\n\n25) Simon: Build B1 G2\n\n26) deanthebean: Move Y2 Alpha Deanthebean\n\n27) Simon: Discover Y1 G2 R1 R1\n\n28) deanthebean: Sacrifice G3 Deanthebean\nBuild Y1 Alpha\nBuild Y3 Deanthebean\nBuild R2 Deanthebean\n\n29) Simon: Build B2 G2\n\n30) deanthebean: Move B1 Deanthebean Alpha\n\n31) Simon: Move B2 G2 R1\n\n32) deanthebean: Build B2 Alpha\n\n33) Simon: Sacrifice G1 G2\nBuild B3 R1\n\n34) deanthebean: Build B3 Alpha\n\n35) Simon: Move B1 G2 Alpha\nCatastrophe Alpha Blue\n\n36) deanthebean: Trade R2 G2 Deanthebean\n\n37) Simon: Trade B3 G3 R1\n\n38) deanthebean: Build R2 Deanthebean\n\n39) Simon: Build G1 R1\n\n40) deanthebean: Discover G2 Deanthebean B1 Charlie\n\n41) Simon: Build B1 R1\n\n42) deanthebean: Discover Y3 Alpha B3 Delta\n\n43) Simon: Sacrifice G3 R1\nBuild G1 R1\nBuild G3 R1\nBuild R2 G2\n\n44) deanthebean: Move R2 Deanthebean Alpha\n\n45) Simon: Move B1 R1 Deanthebean\n\n46) deanthebean: Attack B1 Deanthebean\n\n47) Simon: Sacrifice Y3 G2\nMove B1 G2 R1\nMove B1 R1 Deanthebean\nMove B2 R1 Deanthebean\nCatastrophe Deanthebean Blue\n\n48) deanthebean: Sacrifice Y2 Bravo\nMove G2 Charlie Bravo\nMove G2 Bravo R1\nCatastrophe R1 Green\n\n49) Simon: Build Y2 Simon\n\n50) deanthebean: Build Y3 Alpha\n\n51) Simon: Build B1 Simon\n\n52) deanthebean: Discover R2 Alpha B2 Echo\n\n53) Simon: Trade B1 G1 Simon\n\n54) deanthebean: Trade R2 G2 Echo\n\n55) Simon: Discover G1 Simon R2 R2\n\n56) deanthebean: Build R3 Deanthebean\n\n57) Simon: Sacrifice Y2 Simon\nMove R2 G2 Deanthebean\nMove R2 G2 Deanthebean\nCatastrophe Deanthebean Red\n\n58) deanthebean: Build Y2 Bravo\n\n59) Simon: Build G1 R2\n\n60) deanthebean: Build G2 Echo\n\n61) Simon: Build G3 R2\n\n62) deanthebean: Sacrifice Y2 Bravo\nMove G2 Echo Delta\nMove G2 Delta R2\nCatastrophe R2 Green\n\n63) Simon: Build Y2 Simon\n\n64) deanthebean: Trade Y3 R3 Delta\n\n65) Simon: Discover Y2 Simon B2 B2\n\n66) deanthebean: Build Y3 Bravo\n\n67) Simon: Sacrifice Y2 Simon\nMove Y2 B2 Deanthebean\nMove Y1 R1 Deanthebean\nCatastrophe Deanthebean Yellow\n\tSimon: This y3 was for me to get back into business. >_> Still, my blue catastrophe was too early and lost me many turns from all the green that you easily killed in the next move.\n\tdeanthebean: Thanks. Well played. It appears you had a threat that I overlooked. \n\tSimon: Yep, you too, gg!\n\n\nHomeworlds Online (SDG# 35257)\nVariants: "Unrated"\nStarted: 2019.6.7, Ended: 2019.7.27\nParticipants: squishy_mage42 (S), DodoBirb (N)\nWinner: DodoBirb\n\n1) DodoBirb: Homeworld R2 B1 G3\n\n2) squishy_mage42: Homeworld R1 B2 G3\n\tDodoBirb: Good luck!\n\n3) DodoBirb: Build G1 Dodobirb\n\tsquishy_mage42: Good luck to you too\n\n4) squishy_mage42: Build G1 Squishy_mage42\n\tDodoBirb: Interesting opening\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) squishy_mage42: Build G1 Squishy_mage42\n\n7) DodoBirb: Discover Y1 Dodobirb G3 Greeny\n\n8) squishy_mage42: Trade G1 Y1 Squishy_mage42\n\n9) DodoBirb: Build G1 Dodobirb\n\n10) squishy_mage42: Discover G1 Squishy_mage42 B3 Bigblue\n\n11) DodoBirb: Trade G1 Y1 Dodobirb\n\n12) squishy_mage42: Build Y2 Squishy_mage42\n\n13) DodoBirb: Build Y2 Dodobirb\n\n14) squishy_mage42: Move Y2 Squishy_mage42 Bigblue\n\n15) DodoBirb: Build G1 Dodobirb\n\n16) squishy_mage42: Build Y2 Squishy_mage42\n\n17) DodoBirb: Build Y3 Greeny\n\n18) squishy_mage42: Move Y1 Squishy_mage42 Bigblue\n\n19) DodoBirb: Discover G1 Dodobirb Y3 Solaris\n\n20) squishy_mage42: Sacrifice Y2 Squishy_mage42\nMove Y1 Bigblue Dodobirb\nMove Y2 Bigblue Dodobirb\nCatastrophe Dodobirb Y\n\n21) DodoBirb: Build Y1 Greeny\n\n22) squishy_mage42: Build G1 Squishy_mage42\n\n23) DodoBirb: Build G2 Solaris\n\n24) squishy_mage42: Trade G1 Y1 Squishy_mage42\n\n25) DodoBirb: Move Y1 Greeny Dodobirb\n\tDodoBirb: Just because it seems that you are new. I'll call check, if you don't trade out a ship at your homeworld then I can catastrophe it by sacrificing my large yellow and win.\n\n26) squishy_mage42: Move Y1 Squishy_mage42 Bigblue\n\tsquishy_mage42: Thank you for the check, yes I am, though I did catch that check before reading.\n\n27) DodoBirb: Build G1 Solaris\n\n28) squishy_mage42: Trade G3 Y3 Squishy_mage42\n\n29) DodoBirb: Build Y2 Dodobirb\n\tDodoBirb: Check. You probably know the reason.\n\n30) squishy_mage42: Build Y2 Bigblue\n\n31) DodoBirb: Trade Y2 R2 Dodobirb\n\n32) squishy_mage42: Trade Y1 R1 Bigblue\n\n33) DodoBirb: Sacrifice G2 Solaris\nBuild G2 Dodobirb\nBuild Y1 Dodobirb\n\n34) squishy_mage42: Trade G1 R1 Bigblue\n\n35) DodoBirb: Move R2 Dodobirb Greeny\n\n36) squishy_mage42: Trade Y2 G2 Bigblue\n\n37) DodoBirb: Move Y1 Dodobirb Greeny\n\n38) squishy_mage42: Build R2 Bigblue\n\n39) DodoBirb: Build R3 Greeny\n\tDodoBirb: Check\n\n\nHomeworlds Online (SDG# 35242)\nVariants: "Hard time"\nStarted: 2019.6.10, Ended: 2019.7.2\nParticipants: wil (S), Simon (N)\nWinner: wil\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Have fun :-)\n\n2) wil: H Y1 B2 G3\n\n3) Simon: Build B1 Simon\n\twil: THAT would be the plan, u2\n\n4) wil: B G1 Wil\n\n5) Simon: Trade B1 Y1 Simon\n\n6) wil: T G1 R1 Wil\n\n7) Simon: Build Y1 Simon\n\twil: Dang near mirrored homeworlds\n\twil: My stars are your ships and vice versa\n\n8) wil: B R1 Wil\n\tSimon: Hmm, comes from desire to start with the blue ship. With non-blue starter ships, eventually you're forced to make a blue ship at a blue star, and the second player to make blue ships that way is under severe pressure.\n\n9) Simon: Build Y2 Simon\n\n10) wil: B R2 Wil\n\n11) Simon: Trade Y2 R2 Simon\n\n12) wil: T R1 B1 Wil\n\n13) Simon: Build Y2 Simon\n\twil: That ended that race.\n\n14) wil: T R2 Y2 Wil\n\n15) Simon: Discover Y1 Simon G2 G2\n\n16) wil: D Y2 Wil G3 G3\n\n17) Simon: Discover Y2 Simon B2 B2\n\n18) wil: M B1 Wil G3\n\n19) Simon: Build B1 Simon\n\n20) wil: B G1 Wil\n\n21) Simon: Trade B1 G1 Simon\n\n22) wil: B B1 G3\n\n23) Simon: Move G1 Simon B2\n\n24) wil: D G1 Wil Y3 Y3\n\n25) Simon: Build Y2 Simon\n\n26) wil: B Y3 G3\n\n27) Simon: Build Y3 B2\n\n28) wil: D Y2 G3 B2 Be2\n\n29) Simon: Move Y2 B2 Y3\n\n30) wil: M G1 Y3 Be2\n\n31) Simon: Build G1 B2\n\n32) wil: B G2 Wil\n\n33) Simon: Build G2 B2\n\n34) wil: S G3 Wil\nB G3 Wil\nB R1 Wil\nB R2 Wil\n\n35) Simon: Trade G2 R2 B2\n\n36) wil: S R1 Wil\nP\n\n37) Simon: Build G2 B2\n\n38) wil: M R2 Wil G3\n\n39) Simon: Move G2 B2 Y3\n\n40) wil: S G3 Wil\nB G3 Wil\nB R1 G3\nB R3 Wil\n\n41) Simon: Build R3 B2\n\twil: Time to throw a wrench in those gears...\n\n42) wil: M R3 Wil Y3\n\n43) Simon: Sacrifice Y3 B2\nMove G2 Y3 Wil\nMove G1 B2 Y3\nMove G1 Y3 Wil\nCatastrophe Wil Green\n\n44) wil: S Y3 G3 Wil\nM R2 G3 B2\nM R1 G3 B2\nM R3 Y3 Wil\nC B2 R\n\tSimon: Expensive counterattack. <_<\n\n45) Simon: Build Y3 G2\n\n46) wil: B Y3 Be2\n\n47) Simon: Move Y3 G2 G3\n\n48) wil: T R3 G3 Wil\n\n49) Simon: Move R2 Simon B2\n\n50) wil: S Y2 Be2\nD B1 G3 G2 Gee2\nD B1 G3 G2 Gtoo\n\n51) Simon: Build Y2 G3\n\n52) wil: B G1 Wil\n\n53) Simon: Build R1 B2\n\n54) wil: S G3 Wil\nB G3 Wil\nB B1 Gee2\nB B3 Gtoo\n\n55) Simon: Move Y3 G3 Gee2\n\n56) wil: B B3 Gtoo\n\n57) Simon: Sacrifice R2 B2\nAttack B1 Gee2\nAttack B1 Gee2\n\n58) wil: T B3 R3 Gtoo\n\n59) Simon: Build R2 B2\n\n60) wil: B R2 Wil\n\n61) Simon: Build B3 Gee2\n\n62) wil: B R2 Wil\n\n63) Simon: Move B3 Gee2 G3\n\twil: I'm just compounding past mistakes now.\n\tSimon: Instead of your first r2, I feared you would build the b3 for an eventual thread of opponent-takes-2-we-take-3. But it was hard to calculate, I probably missed something too.\n\n64) wil: B R3 Gtoo\n\n65) Simon: Build R3 B2\n\twil: It was in my.mind, but by the time came around gone\n\n66) wil: S Y3 Be2\nM R3 Gtoo G3\nM R1 Wil G3\nM R1 G3 B2\nC B2 R\n\n67) Simon: Build Y3 Gee2\n\twil: I pushed the button\n\n68) wil: S R2 Wil\nA Y2 G3\nA B3 G3\n\tSimon: Was probably my mistake to build 3rd red ship. You already had plenty of incentive for the y3 sac, didn't have to sweeten it. Anyway, stoic continuation of yellow monopoly. >_>\n\n69) Simon: Trade Y2 R2 Simon\n\n70) wil: B Y2 G3\n\n71) Simon: Discover Y3 Gee2 R3 R3\n\n72) wil: S G3 Wil\nB G3 Wil\nB R1 Gtoo\nB R1 G3\n\twil: Had to get wise. I mean Ys\n\n73) Simon: Move R2 Simon Gee2\n\n74) wil: B R2 Wil\n\twil: Getting all the ahrrs makes me feel like a pirate matey\n\n75) Simon: Move B1 Gee2 R3\n\n76) wil: M Y2 G3 Gtoo\n\n77) Simon: Move B1 Gee2 Y3\n\n78) wil: M B3 Gtoo Y3\n\n79) Simon: Move B1 Y3 Wil\n\n80) wil: A B1 Wil\n\n81) Simon: Sacrifice G1 B2\nBuild B2 R3\n\n82) wil: M B1 Wil R3\n\n83) Simon: Trade B1 G1 R3\n\twil: Thx, I can use that\n\n84) wil: M B3 G3 G2\n\n85) Simon: Move Y1 G2 R3\n\n86) wil: B B1 Gtoo\n\n87) Simon: Move Y2 Y3 Be2\n\n88) wil: M G1 Wil Y3\n\n89) Simon: Attack B1 R3\n\n90) wil: M R2 Wil Y3\n\n91) Simon: Pass\n\n92) wil: M R2 Y3 G2\n\n93) Simon: Pass\n\n94) wil: M G1 Y3 G2\n\twil: Ya made me set up the pieces.\n\n95) Simon: Pass\n\n96) wil: M R1 G3 G2\n\twil: Lol, I was gonna pass till I set up the universe.\n\n97) Simon: Move Y2 Be2 Simon\n\n98) wil: M R1 Gtoo Simon\n\n99) Simon: Attack R1 Simon\n\n100) wil: S Y2 Gtoo\nM R1 G2 Simon\nM R2 G2 Simon\nC Simon R\n\n101) Simon: Sacrifice Y3 Gee2\nMove Y1 R3 Wil\nMove Y1 Simon Wil\nMove Y2 Simon Wil\nCatastrophe Wil Y\n\n102) wil: T R3 Y3 Gtoo\n\twil: 3 passes and then you remove your roadblock\n\twil: Unless I missed something\n\n103) Simon: Trade B3 R3 Simon\n\n104) wil: S Y3 Gtoo\nM G3 Wil Simon\nM G1 Be2 Simon\nM G1 G2 Simon\nC Simon G\n\twil: One long game, hard fought, two moves to go.\n\n\twil: Gg, up for a game anytime, that was a doozy\n\tSimon: Overlooked this. gg!\n\twil: I should have said you were in check\n\nHomeworlds Online (SDG# 35220)\nStarted: 2019.6.10, Ended: 2019.7.14\nParticipants: wil (S), dragon76n (N)\nWinner: dragon76n\n\n1) dragon76n: Homeworld Y2 G3 B3\n\n2) wil: H Y2 B1 G3\n\n3) dragon76n: Build B1 Dragon76n\n\n4) wil: B G1 Wil\n\n5) dragon76n: Build B1 Dragon76n\n\n6) wil: T G1 Y1 Wil\n\n7) dragon76n: D B1 Dragon76n G1 Greone\n\n8) wil: B Y1 Wil\n\n9) dragon76n: Build B2 Greone\n\n10) wil: D Y1 Wil G3 G3\n\twil: I love it when I err setting my homeworld!\n\n11) dragon76n: Build B2 Greone\n\tdragon76n: I'm sure I'll make a mistake that you can overcome that with. I don't think I've won a game yet against anyone who has played very much. \n\n12) wil: S G3 Wil\nB Y1 G3\nB Y2 G3\nB Y3 Wil\n\twil: I can only hope you are correct,. Good.luck!\n\n13) dragon76n: Trade B3 Y3 Dragon76n\n\n14) wil: D Y1 G3 G1 G1\n\n15) dragon76n: Trade B2 G2 Greone\n\n16) wil: B Y3 G1\n\n17) dragon76n: Sacrifice G2 Greone\nBuild B2 Greone\nBuild B2 Dragon76n\n\n18) wil: T Y3 G3 Wil\n\n19) dragon76n: Build B3 Dragon76n\n\n20) wil: B Y3 Wil\n\n21) dragon76n: Move Y3 Dragon76n Greone\n\tHg80: You guys going for a no red challenge?\n\n22) wil: B G1 Wil\n\n23) dragon76n: Discover B2 Greone G2 Gretwo\n\n24) wil: T G3 B3 Wil\n\n25) dragon76n: Build B3 Gretwo\n\n26) wil: B G2 Wil\n\n27) dragon76n: Sacrifice B2 Gretwo\nTrade B1 R1 Dragon76n\nTrade B2 G2 Greone\n\n28) wil: T G1 R1 Wil\n\n29) dragon76n: Trade B3 G3 Dragon76n\n\n30) wil: M B3 Wil G3\n\n31) dragon76n: Sacrifice G2 Greone\nBuild B1 Gretwo\nBuild B2 Greone\n\n32) wil: B B2 G3\n\n33) dragon76n: Move B1 Greone G3\n\n34) wil: M Y1 G1 Dragon76n\n\n35) dragon76n: Build B3 G3\nCatastrophe G3 Blue\n\n36) wil: M Y1 Dragon76n Greone\n\n37) dragon76n: Trade B2 R2 Greone\n\twil: Move yellow in and blow up yellow leaving one y\n\twil: Lol, this isn't the notebook!\n\n38) wil: M Y2 G3 Greone\n\n39) dragon76n: Move Y3 Greone G3\n\n40) wil: M Y1 Wil G3\n\twil: Noice!\n\n41) dragon76n: Attack Y2 Greone\n\n42) wil: M Y1 Greone G3\nC G3 Y\n\n43) dragon76n: Trade B3 Y3 Gretwo\n\n44) wil: B G1 Wil\n\n45) dragon76n: Discover Y3 Gretwo G3 Grethr\n\twil: Here we go round the mulberry bush...\n\n46) wil: B G2 Wil\n\n47) dragon76n: Build Y1 Grethr\n\n48) wil: B R1 Wil\n\tdragon76n: ¯\\_(&#12484;)_/¯\n\tdragon76n: U+1F937\n\tdragon76n: Anyway... I could be wrong in overall, but that doesn't seem too unusual for my experience in this game - basically trading places. \n\twil: Lol, dont understand first two, agree last\n\n49) dragon76n: Build Y1 Greone\n\n50) wil: D R1 Wil B3 B3\n\n51) dragon76n: Move Y1 Grethr Wil\n\n52) wil: T Y3 B3 Wil\n\n53) dragon76n: Sacrifice G3 Dragon76n\nBuild Y1 Wil\nBuild Y3 Grethr\nBuild R2 Greone\n\n54) wil: S G2 Wil\nB R2 Wil\nB R3 B3\n\n55) dragon76n: B R3 Dragon76n\n\n56) wil: S R2 Wil\nA Y1 Wil\nA Y1 Wil\n\n57) dragon76n: Sacrifice Y2 Greone\nMove Y1 Greone B3\nMove Y1 B3 Wil\nCatastrophe Wil Yellow\n\n58) wil: T B3 G3 Wil\n\n59) dragon76n: Sacrifice B1 Gretwo\nTrade R2 G2 Greone\n\n60) wil: T G2 Y2 Wil\n\n61) dragon76n: Sacrifice G2 Greone\nBuild B1 Dragon76n\nBuild B1 Dragon76n\n\n62) wil: S Y3 G1\nM R1 B3 Wil\nM R1 Wil Dragon76n\nM R1 Wil Dragon76n\nC Dragon76n R\n\n63) dragon76n: Sacrifice Y3 Grethr\nMove R2 Greone Dragon76n\nMove B1 Dragon76n Wil\nMove B1 Dragon76n Wil\n\twil: This is the end, gg\n\n64) wil: T Y2 B2 Wil\nC Wil B\n\n\twil: Gg\n\twil: Challenge me anytime\n\nHomeworlds Online (SDG# 35264)\nVariants: "Hard time"\nStarted: 2019.6.13, Ended: 2019.6.27\nParticipants: smokeytroll42 (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld R3 B1 G3\n\n2) smokeytroll42: Homeworld G3 Y2 B3\n\n3) dlwillson: B G1 Dlwillson\n\n4) smokeytroll42: Build B1 Smokeytroll42\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) smokeytroll42: Build B2 Smokeytroll42\n\n7) dlwillson: Build B2 Dlwillson\n\n8) smokeytroll42: Discover B2 Smokeytroll42 Y1 Peace\n\n9) dlwillson: T B2 Y2 Dlwillson\n\n10) smokeytroll42: Trade B2 G2 Peace\n\n11) dlwillson: D B1 Dlwillson G2 Forest\n\n12) smokeytroll42: Build G1 Peace\n\n13) dlwillson: B B2 Forest\n\n14) smokeytroll42: Move B1 Smokeytroll42 Peace\n\n15) dlwillson: T B1 Y1 Forest\n\n\nHomeworlds Online (SDG# 35283)\nVariants: "Hard time"\nStarted: 2019.6.19, Ended: 2019.7.5\nParticipants: wil (S), Felix (N)\nWinner: wil\n\n1) Felix: Homeworld B1 R1 G3 *\n\n2) wil: H Y2 B2 G3 *\n\twil: Let's have fun!\n\n3) Felix: Build G1 Felix\n\n4) wil: B G1 Wil\n\twil: Microverse it is!\n\tFelix: :) Tiny house living is in, so tiny universe living is too.\n\n5) Felix: Trade G1 Y1 Felix\n\n6) wil: T G1 B1 Wil\n\twil: Andy not so much.\n\twil: Trydnt and I love experimenting with openings\n\tDraw5PlayAll: Andy? You mean that one?\n\n7) Felix: Build Y1 Felix\n\twil: That one.\n\n8) wil: B B1 Wil\n\tFelix: I'm more honored to play against the one and only Wil.\n\n9) Felix: Build Y1 Felix\n\twil: Lol, I enjoy playing with you all. \n\n10) wil: D B1 Wil G3 G3\n\n11) Felix: Discover Y1 Felix B3 Out\n\n12) wil: B B2 Wil\n\n13) Felix: Sacrifice G3 Felix\nBuild Y2 Out\nBuild Y2 Out\nBuild Y3 Felix\n\n14) wil: B B2 G3\n\n15) Felix: Trade Y3 G3 Felix\n\n16) wil: B B3 G3\n\n17) Felix: Build Y3 Felix\n\n18) wil: T B3 Y3 G3\n\n19) Felix: Discover Y1 Felix Y3 Keepaway\n\n20) wil: B B3 G3\n\n\twil: Ah phooey\n\tFelix: Shucks. Sorry about that. Had a crazy week!\n\twil: Another day\n\nHomeworlds Online (SDG# 35256)\nStarted: 2019.6.24, Ended: 2019.8.27\nParticipants: wil (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) wil: H B3 Y2 G3\n\n3) ts52: Build G1 Ts52\n\n4) wil: B G1 Wil\n\tts52: Have a good game!\n\n5) ts52: Trade G1 Y1 Ts52\n\twil: Tis my hope we do!\n\n6) wil: T G1 Y1 Wil\n\n7) ts52: Build Y2 Ts52\n\twil: Before we break into uncharted chaos\n\twil: Let's start out slow and all perfectly normal\n\n8) wil: B Y2 Wil\n\tts52: indeed\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) wil: D Y1 Wil G1 G1\n\n11) ts52: Build Y3 Kermit\n\n12) wil: B Y3 G1\n\n13) ts52: Discover Y3 Kermit B1 Gonzo\n\twil: I like follow the leader.\n\n14) wil: T Y2 B2 Wil\n\tts52: :)\n\n15) ts52: Build G1 Ts52\n\n16) wil: M Y3 G1 Kermit\n\n17) ts52: Trade G1 R1 Ts52\n\n18) wil: B B1 Wil\n\n19) ts52: Build R1 Ts52\n\n20) wil: T B2 G2 Wil\n\n21) ts52: Build G1 Ts52\n\n22) wil: S G2 Wil\nB Y2 Kermit\nB Y3 G1\n\n23) ts52: Move Y2 Ts52 Kermit\nCatastrophe Kermit Y\n\n24) wil: T B1 R1 Wil\n\n25) ts52: Trade G1 B1 Ts52\n\n26) wil: B R2 Wil\n\n27) ts52: Discover R1 Ts52 G3 Kermit\n\n28) wil: M R1 Wil G1\n\n29) ts52: Build R2 Kermit\n\n30) wil: D Y1 G1 R3 R3\n\n31) ts52: Build G1 Ts52\n\n32) wil: B G1 Wil\n\n33) ts52: Move B1 Ts52 Kermit\n\n34) wil: S G3 Wil\nB R2 G1\nB R3 G1\nB R3 Wil\n\twil: Time for another tourney,.good.luck!\n\n35) ts52: Build B1 Kermit\n\n36) wil: T R2 B2 Wil\n\tts52: Thanks! You too.\n\tts52: I'll be offline for the rest of this week. FYI.\n\twil: Me too, headed for a burn, first since recovery!\n\n37) ts52: Trade R2 Y2 Kermit\n\n38) wil: S B2 Wil\nT R3 Y3 G1\nT R2 B2 G1\n\tts52: Nice. Have fun!\n\tDraw5PlayAll: When does it start?\n\n39) ts52: Build R2 Kermit\n\n40) wil: B B2 G1\n\n41) ts52: Discover B1 Kermit Y1 Bigbird\n\n42) wil: T B2 G2 G1\n\n43) ts52: Move R2 Kermit Gonzo\n\n44) wil: M Y3 G1 Kermit\n\n45) ts52: Move R1 Kermit Gonzo\n\n46) wil: B R2 G1\n\n47) ts52: Trade R2 G2 Gonzo\n\n48) wil: S R2 G1\nA Y2 Kermit\nA B1 Kermit\n\n49) ts52: Build Y2 Gonzo\n\n50) wil: M Y2 Kermit Gonzo\n\n51) ts52: Discover Y2 Gonzo G3 Oscar\n\n52) wil: D Y2 Gonzo B3 B3\n\n53) ts52: Sacrifice G3 Ts52\nBuild G2 Gonzo\nBuild G3 Ts52\nBuild R2 Gonzo\n\n54) wil: S G2 G1\nB B2 Kermit\nB B3 G1\n\n55) ts52: Move G2 Gonzo R3\n\n56) wil: M B3 G1 R3\n\n57) ts52: Attack Y1S R3\n\n58) wil: A G2 R3\n\n59) ts52: Move Y1 R3 Bigbird\n\n60) wil: B G2 Wil\n\n61) ts52: Move R2 Gonzo Oscar\n\n62) wil: D B2 G1 R3 Are3\n\n63) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R2 Gonzo\nBuild R2 Oscar\n\n64) wil: M B2 Kermit Ts52\n\n65) ts52: Attack B2 Ts52\n\n66) wil: S Y3 Kermit\nM B1 Kermit Ts52\nM B2 Are3 Ts52\nC Ts52 B\nM B3 R3 Ts52\n\n67) ts52: Attack B3 Ts52\n\n68) wil: S G2 Wil\nB R3 G1\nB Y3 B3\n\twil: I think I filled the bank and checkmate\n\n69) ts52: Build B1 Ts52\n\twil: Lol, dang brain...\n\n70) wil: M R3 G1 B3\n\n71) ts52: Move B1 Ts52 Wil\n\n72) wil: A B1 Wil\n\n73) ts52: Move B1 Bigbird Wil\n\n74) wil: M B1 Wil Ts52\n\n75) ts52: Sacrifice G2 Gonzo\nBuild B2 Wil\nBuild B2 Wil\nCatastrophe Wil Blue\n\n76) wil: B G2 Wil\n\n77) ts52: Move R2 Oscar Wil\n\n78) wil: S G2 R3\nB R3 G1\nP\n\n79) ts52: Sacrifice Y3 Gonzo\nMove R1 Gonzo Wil\nMove R2 Gonzo Wil\nMove B3 Ts52 Wil\nCatastrophe Wil Red\n\n80) wil: S Y3 G1\nM Y3 B3 Ts52\nM Y2 B3 Wil\nM R3 G1 Wil\n\n81) ts52: Sacrifice R2 Oscar\nAttack Y3 Ts52\nAttack R3 Wil\n\n82) wil: S G2 Wil\nB Y3 Wil\nB Y3 Wil\nC Wil Y\n\n\twil: Gg\n\tts52: Thanks! Gg.\n\nHomeworlds Online (SDG# 35272)\nVariants: "Hard time"\nStarted: 2019.6.24, Ended: 2019.7.4\nParticipants: wil (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: Homeworld Y3 B1 G3\n\n2) wil: H B2 Y1 G3\n\n3) dlwillson: B G1 Dlwillson\n\twil: Good luck, hope all is well.\n\n4) wil: B G1 Wil\n\tdlwillson: TY GL and HF!\n\n5) dlwillson: Trade G1 B1 Dlwillson\n\n6) wil: T G1 B1 Wil\n\n7) dlwillson: B B2 Dlwillson\n\n8) wil: B B2 Wil\n\n9) dlwillson: D B2 Dlwillson G2 Field\n\n10) wil: T B1 Y1 Wil\n\n11) dlwillson: B B1 Field\n\n12) wil: D B2 Wil G3 G3\n\n13) dlwillson: B B3 Field\n\n14) wil: B B3 G3\n\n15) dlwillson: T B2 Y2 Field\n\n16) wil: T B2 Y2 G3\n\n17) dlwillson: T B1 R1 Dlwillson\n\n18) wil: T Y1 R1 Wil\n\n19) dlwillson: T B1 R1 Field\n\n20) wil: B R2 Wil\n\n21) dlwillson: B R2 Field\n\n22) wil: T R2 G2 Wil\n\n23) dlwillson: D R2 Field B3 Sky\n\n24) wil: B R2 Wil\n\n25) dlwillson: S G3 Dlwillson\nB R2 Field\nB R3 Sky\nB R3 Dlwillson\n\n26) wil: M R1 Wil Sky\n\n27) dlwillson: S R2 Sky\nA R1 Sky\nPass\n\n28) wil: M R2 Wil G3\n\n29) dlwillson: T R3 G3 Dlwillson\n\n30) wil: B B1 G3\n\n31) dlwillson: B Y1 Field\n\n32) wil: B G1 Wil\n\n33) dlwillson: S Y2 Field\nM B3 Field G3\nM B3 G3 Wil\n\n34) wil: S B3 G3\nT G2 B2 Wil\nT G1 B1 Wil\nC Wil B\nP\n\n35) dlwillson: T R3 Y3 Sky\n\twil: Noice\n\n36) wil: B Y1 G3\n\n37) dlwillson: S G3 Dlwillson\nB Y2 Field\nB Y2 Sky\nB R2 Dlwillson\n\tdlwillson: Thanks!\n\n38) wil: M G3 Wil G3\n\n\twil: Gg\n\tdlwillson: Gg, TY! \n\nHomeworlds Online (SDG# 35071)\nVariants: "Hard time"\nStarted: 2019.6.24, Ended: 2019.7.26\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B3 G2 Y3\n\n2) wil: H Y2 B1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Discover Y1 Trydnt Y1 Y1\n\n6) wil: T G1 Y1 Wil\n\n7) Trydnt: Build Y2 Trydnt\n\n8) wil: D Y1 Wil G3 G3\n\n9) Trydnt: Move Y1 Y1 G3\n\tTrydnt: interesting opening no?\n\n10) wil: D Y1 G3 G2 G2\n\n11) Trydnt: Trade Y2 R2 Trydnt\n\n12) wil: B G1 Wil\n\n13) Trydnt: Build R1 Trydnt\n\n14) wil: T G1 R1 Wil\n\n15) Trydnt: Trade R1 B1 Trydnt\n\n16) wil: B R1 Wil\n\n17) Trydnt: Build B1 Trydnt\n\n18) wil: D R1 Wil G3 Gee3\n\n19) Trydnt: Discover B1 Trydnt G1 G1\n\n20) wil: B G1 Wil\n\n21) Trydnt: Build B2 G1\n\n22) wil: D G1 Wil B3 B3\n\n23) Trydnt: Trade B2 Y2 G1\n\n24) wil: B G1 B3\n\n25) Trydnt: Move Y2 G1 B3\n\n26) wil: B G2 Wil\n\n27) Trydnt: Build R1 Trydnt\n\n28) wil: S G1 B3\nB R2 Wil\n\n29) Trydnt: Move R2 Trydnt G1\n\n30) wil: D R1 Wil Y3 Y3\n\n31) Trydnt: Sacrifice R1 Trydnt\nAttack G1 B3\n\n32) wil: B R1 Gee3\n\twil: Time to tourney again, goodluck\n\n33) Trydnt: Build G1 B3\n\tTrydnt: and to you good sir!\n\n34) wil: S G3 Wil\nB R2 Gee3\nB R3 Y3\nB G3 Wil\n\twil: What was that mirrored glass you were looking at?\n\n35) Trydnt: Build R3 G1\n\tTrydnt: dichroic glass\n\tTrydnt: I used the pieces to make these infinity mirror boxes full of color. Calling them hippy hand grenades\n\n36) wil: S G3 Wil\nB R3 Wil\nB G3 Wil\nB Y1 G2\n\n37) Trydnt: Trade R3 Y3 G1\n\n38) wil: T R2 Y2 Wil\n\n39) Trydnt: Sacrifice Y2 B3\nMove G1 B3 Wil\nMove G1 B3 Wil\nCatastrophe Wil G\n\n40) wil: D R1 Y3 G1 Gwon\n\n41) Trydnt: Build Y2 Trydnt\n\n42) wil: M Y1 G2 Gee3\n\n43) Trydnt: Trade Y2 R2 Trydnt\n\n44) wil: B R3 Gwon\n\n45) Trydnt: Build Y2 G3\n\n46) wil: M R2 Gee3 Wil\n\n47) Trydnt: Build B2 Trydnt\n\n48) wil: T R2 G2 Wil\n\n49) Trydnt: Sacrifice Y3 G1\nMove Y1 G3 Wil\nMove Y2 G3 Wil\nCatastrophe Wil Y\nDiscover B1 G1 Y3 Whynot\n\n50) wil: S Y1 G2\nM R3 Wil Trydnt\n\n51) Trydnt: Sacrifice Y3 Trydnt\nMove B1 Trydnt Wil\nMove B2 Trydnt Wil\nMove B1 Whynot Wil\nCatastrophe Wil B\n\n\tTrydnt: well played. what's left looks very intimidating haha\n\twil: Die leaving a good corpse!\n\nHomeworlds Online (SDG# 35169)\nVariants: "Unrated, Hard time"\nStarted: 2019.6.24, Ended: 2019.7.17\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Pass\n\n2) wil: H Y2 B1 G3\n\n3) Draw5PlayAll: Homeworld B1 G3 B3 *\n\twil: Thanks for the game! Good luck.\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Build B1 Draw5playall\n\n6) wil: D G1 Wil Y3 Y3\n\tDraw5PlayAll: This time around, I will make sure not to put all my eggs in the same basket.\n\n7) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n8) wil: B G1 Wil\n\n9) Draw5PlayAll: Build B2 Draw5playall\n\n10) wil: B G1 Y3\n\n11) Draw5PlayAll: Discover B2 Draw5playall G2 Build\n\n12) wil: D G1 Y3 B2 B2\n\n13) Draw5PlayAll: Build B2 Draw5playall\n\n14) wil: S G3 Wil\nB G2 Wil\nB G2 Y3\nB G3 B2\n\n15) Draw5PlayAll: Build B3 Build\n\n16) wil: B G3 Wil\n\n17) Draw5PlayAll: Trade B3 R3 Build\n\n18) wil: T G3 R3 B2\n\n19) Draw5PlayAll: Build B3 Build\n\n20) wil: S G3 Wil\nB G3 Wil\nB G3 B2\nB R1 B2\n\n21) Draw5PlayAll: Trade B3 Y3 Build\n\n22) wil: T G3 R3 Wil\n\tDraw5PlayAll: That's better.\n\n23) Draw5PlayAll: Build R1 Build\n\n24) wil: S G3 B2\nB G3 B2\nB R1 Wil\nB G3 Wil\n\n25) Draw5PlayAll: Move R3 Build Y3\n\n26) wil: T G2 Y2 Wil\n\tDraw5PlayAll: I would like to place an order for 1 share of Green Space Construction, LLC.\n\n27) Draw5PlayAll: Attack G2 Y3\n\twil: Just one?\n\tDraw5PlayAll: I guess we have a bull market!\n\n28) wil: T G3 B3 Wil\n\n29) Draw5PlayAll: Build B3 Build\n\n30) wil: D B3 Wil G3 G3\n\n31) Draw5PlayAll: Discover B2 Draw5playall Y2 Move\n\n32) wil: B B3 G3\n\n33) Draw5PlayAll: Move B1 Draw5playall Move\n\n34) wil: D G1 Y3 Y1 Y1\n\n35) Draw5PlayAll: Build G2 Y3\n\n36) wil: M R1 Wil G3\n\n37) Draw5PlayAll: Build R2 Build\n\n38) wil: M Y2 Wil G3\n\n39) Draw5PlayAll: Build Y1 Build\n\n40) wil: S G3 B2\nB G3 B2\nB Y1 G3\nB R2 G3\n\n41) Draw5PlayAll: Build R2 Y3\n\n42) wil: M Y1 G3 B2\n\n43) Draw5PlayAll: Move B2 Move Y1\n\n44) wil: S G1 Y1\nB G1 Wil\n\tDraw5PlayAll: You are up to something.\n\n45) Draw5PlayAll: Sacrifice B1 Move\nTrade G2 Y2 Y3\n\n46) wil: M G3 B2 Y1\n\tDraw5PlayAll: My investment portfolio required selling shares in Green Construction LLC in order to acquire more of Yellow Wormhole Tech ULC.\n\n47) Draw5PlayAll: Move B2 Y1 Y3\n\n48) wil: S G3 Y1\nB G2 Wil\nB Y1 B2\nB G3 B2\n\n49) Draw5PlayAll: Discover Y2 Y3 B1 Trade\n\n50) wil: M R3 B2 Trade\n\n51) Draw5PlayAll: Sacrifice Y2 Trade\nMove G2 Y3 Wil\nCatastrophe Wil Green\nMove R3 Y3 Wil\n\n52) wil: S Y2 G3\nM B3 G3 Wil\nM B3 G3 Wil\n\tDraw5PlayAll: Good... game... ???\n\n53) Draw5PlayAll: Move B2 Y3 Wil\nCatastrophe Wil Blue\n\twil: Nice move, caught me unawares, I had other plans\n\twil: Time for.another HW tourney get in!\n\n54) wil: M G3 B2 Draw5playall\n\tDraw5PlayAll: That move was rather tricky...\n\twil: Just a delay of game, postponing the inevitable\n\n55) Draw5PlayAll: Attack R3 Wil\n\tDraw5PlayAll: So I can either blow you up, or steal your ship...\n\tDraw5PlayAll: Good game.\n\twil: Gg\n\n\nHomeworlds Online (SDG# 35306)\nStarted: 2019.6.27, Ended: 2019.6.27\nParticipants: MobyNostromo (S), UrzaGameLord93 (N)\nWinner: MobyNostromo\n\n\nHomeworlds Online (SDG# 35313)\nStarted: 2019.6.30, Ended: 2019.7.3\nParticipants: MobyNostromo (S), TripleShock (N)\nWinner: TripleShock\n\n1) TripleShock: Homeworld G3 B2 Y3\n\n\nHomeworlds Online (SDG# 35339)\nVariants: "Hard time"\nStarted: 2019.7.10, Ended: 2019.7.18\nParticipants: dougforte (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld R2 B1 G3\n\n2) dougforte: Homeworld G1 B3 G3 *\n\n3) bhorner: Build G1 Bhorner\n\n4) dougforte: Build G1 Dougforte\n\n5) bhorner: Build G2 Bhorner\n\n6) dougforte: Trade G1 Y1 Dougforte\n\n7) bhorner: Trade G1 Y1 Bhorner\n\n8) dougforte: Build G1 Dougforte\n\n9) bhorner: D G2 Bhorner B3 Snowman\n\n10) dougforte: Discover G3 Dougforte B2 Tophat\n\n11) bhorner: Build G1 Bhorner\n\n12) dougforte: Move Y1 Dougforte Tophat\n\n13) bhorner: Build G2 Snowman\n\n14) dougforte: Build G2 Tophat\n\n15) bhorner: Build G3 Bhorner\n\n16) dougforte: Build Y1 Tophat\n\n17) bhorner: Trade G2 Y2 Snowman\n\n18) dougforte: Move Y1 Tophat Dougforte\n\n19) bhorner: Sacrifice Y2 Snowman\nMove G2 Snowman Tophat\nMove G2 Tophat Dougforte\n\n20) dougforte: Build Y2 Dougforte\n\n21) bhorner: Trade G3 R3 Bhorner\n\n22) dougforte: Trade G1 R1 Dougforte\n\n23) bhorner: Sacrifice R3 Bhorner\nAttack R1 Dougforte\nAttack Y1 Dougforte\nAttack Y2 Dougforte\n\tbhorner: Good game! :)\n\n\nHomeworlds Online (SDG# 35241)\nVariants: "Unrated"\nStarted: 2019.7.10, Ended: 2019.7.30\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 G3 Y3\n\n2) wil: H Y2 B1 G3\n\n3) Trydnt: Build Y1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Build Y1 Trydnt\n\n6) wil: T G1 Y1 Wil\n\n7) Trydnt: Trade Y1 B1 Trydnt\n\n8) wil: T Y1 B1 Wil\n\n9) Trydnt: Build B2 Trydnt\n\n10) wil: B B2 Wil\n\n11) Trydnt: Discover B2 Trydnt Y1 Y1\n\n12) wil: T B1 Y1 Wil\n\n13) Trydnt: Build Y2 Trydnt\n\n14) wil: B Y2 Wil\n\n15) Trydnt: Discover B2 Y1 G3 G3\n\n16) wil: M Y1 Wil G3\n\n17) Trydnt: Discover Y1 Trydnt B1 B1\n\n18) wil: M B2 Wil G3\n\n19) Trydnt: Trade B2 R2 G3\n\n20) wil: M B2 G3 B1\n\n21) Trydnt: Attack Y1 G3\n\n22) wil: B G1 Wil\n\n23) Trydnt: Build Y1 Trydnt\n\n24) wil: D G1 Wil Y3 Y3\n\n25) Trydnt: Build Y3 G3\n\n26) wil: B G1 Wil\n\n27) Trydnt: Move R2 G3 B1\n\n28) wil: D Y2 Wil B3 B3\n\n29) Trydnt: Move R2 B1 Y3\n\n30) wil: B G1 Y3\n\n31) Trydnt: Attack G1 Y3\n\n32) wil: B G2 Y3\n\n33) Trydnt: Move G1 Y3 Wil\n\n34) wil: T G3 R3 Wil\n\n35) Trydnt: Attack G2 Y3\n\tTrydnt: this feels like the inverse of the situation where you have too many reds in the same place but can sacrifice one to capture another and never end up with too much.\n\n36) wil: A G1 Wil\n\n37) Trydnt: Attack G1 Y3\n\n38) wil: M G1 Wil B3\n\n39) Trydnt: Build R1 Y3\n\n40) wil: B R1 Wil\n\n41) Trydnt: Sacrifice Y2 Trydnt\nMove R1 Y3 Wil\nMove R2 Y3 Wil\nCatastrophe Wil R\n\n42) wil: S G1 Wil\nB B2 B1\n\n\nHomeworlds Online (SDG# 35329)\nVariants: "Hard time"\nStarted: 2019.7.10, Ended: 2019.7.19\nParticipants: Trydnt (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H B3 Y1 G3\n\n2) Trydnt: Homeworld G3 B2 Y3\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build Y1 Trydnt\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Trydnt: Build Y2 Trydnt\n\n7) dlwillson: B Y2 Dlwillson\n\n8) Trydnt: Discover Y1 Trydnt G1 G1\n\n9) dlwillson: D Y1 Dlwillson G2 Field\n\n\nHomeworlds Online (SDG# 35312)\nStarted: 2019.7.10, Ended: 2019.10.21\nParticipants: UrzaGameLord93 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n\nHomeworlds Online (SDG# 35344)\nVariants: "Hard time"\nStarted: 2019.7.10, Ended: 2019.8.9\nParticipants: Trydnt (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\twil: Dude, Erin, Charlie and Nick stopped by today.\n\n2) Trydnt: Homeworld G3 Y2 B3\n\n3) wil: B G1 Wil\n\tTrydnt: No way! All the old crew :)\n\n4) Trydnt: Build B1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Build B2 Trydnt\n\n7) wil: B B2 Wil\n\n8) Trydnt: Trade B2 Y2 Trydnt\n\n9) wil: T B1 R1 Wil\n\n10) Trydnt: Discover B1 Trydnt G1 G1\n\n11) wil: D B2 Wil Y3 Y3\n\n12) Trydnt: Build B1 G1\n\n13) wil: B G1 Wil\n\n14) Trydnt: Build B2 Trydnt\n\n15) wil: B G1 Wil\n\n16) Trydnt: Trade B3 R3 Trydnt\n\n17) wil: M G1 Wil Y3\n\n18) Trydnt: Build R1 Trydnt\n\n19) wil: B G2 Wil\n\n20) Trydnt: Sacrifice Y2 Trydnt\nMove R3 Trydnt G1\nMove R3 G1 Y3\n\n21) wil: T G1 Y1 Y3\n\tTrydnt: never done that before :/\n\n22) Trydnt: Attack Y1 Y3\n\n23) wil: D B2 Y3 G1 Gwon\n\n24) Trydnt: Move R3 Y3 Gwon\n\n25) wil: S B2 Gwon\nT G3 B3 Wil\nT G1 Y1 Wil\n\n26) Trydnt: Build B2 G1\n\n27) wil: B G1 Wil\n\n28) Trydnt: Trade B2 Y2 G1\n\n29) wil: M G2 Wil Y3\n\n30) Trydnt: Sacrifice Y1 Y3\nDiscover B1 G1 G3 G3\n\n31) wil: B G2 Wil\n\n32) Trydnt: Build B2 G3\n\n33) wil: B G2 Wil\n\n34) Trydnt: Discover B1 G1 G3 Gee3\n\n35) wil: T G2 R2 Wil\n\n36) Trydnt: Build B2 Gee3\n\n37) wil: M B3 Wil Y3\n\n38) Trydnt: Build B3 G3\n\n39) wil: B B3 Y3\n\n40) Trydnt: Sacrifice Y2 G1\nMove B3 G3 Wil\nDiscover B1 Gee3 G2 G2\n\n41) wil: M B3 Y3 Wil\n\twil: Oops\n\n\twil: Oops\n\tTrydnt: damn. went to the european juggling convention and couldn't get online to make moves :( worth it though\n\twil: EJC awesome... Saw some pics from friends\n\nHomeworlds Online (SDG# 35345)\nVariants: "Unrated"\nStarted: 2019.7.10, Ended: 2019.8.22\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H Y2 B1 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build G1 Trydnt\n\n5) wil: T G1 B1 Wil\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) wil: B B2 Wil\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: T B1 R1 Wil\n\n10) Trydnt: Trade B2 Y2 Trydnt\n\n11) wil: B R1 Wil\n\n12) Trydnt: Build Y1 Trydnt\n\n13) wil: B R1 Wil\n\n14) Trydnt: Discover B1 Trydnt Y1 Y1\n\n15) wil: D R1 Wil Y3 Y3\n\n16) Trydnt: Discover Y1 Trydnt Y1 Why1\n\n17) wil: B G1 Wil\n\n18) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 Why1\nBuild Y3 Trydnt\nBuild Y3 Trydnt\n\n19) wil: B R2 Wil\n\n20) Trydnt: Trade Y3 R3 Trydnt\n\n21) wil: T G3 Y3 Wil\n\n22) Trydnt: Trade Y3 G3 Trydnt\n\n23) wil: D R1 Wil Y3 Why3\n\n24) Trydnt: Discover R3 Trydnt G1 G1\n\n25) wil: B B1 Wil\n\n26) Trydnt: Discover Y2 Why1 G3 G3\n\n27) wil: T B2 G2 Wil\n\n28) Trydnt: Move B1 Y1 G3\n\n29) wil: D R2 Wil R3 R3\n\n30) Trydnt: Build B2 G3\n\n31) wil: S G2 Wil\nB R2 R3\nB R3 Wil\n\n32) Trydnt: Build Y1 Trydnt\n\n33) wil: M B1 Wil G3\n\n34) Trydnt: Move B1 G3 G1\n\n35) wil: M Y3 Wil G3\n\n36) Trydnt: Sacrifice Y2 G3\nDiscover B2 G3 G1 Gee1\nDiscover B1 G1 Y2 Y2\n\n37) wil: B B2 G3\n\n38) Trydnt: Build G2 Trydnt\n\n39) wil: S B2 G3\nT R2 B2 R3\nT R2 G2 R3\n\n40) Trydnt: Sacrifice G2 Trydnt\nBuild B2 Y2\nBuild B3 Gee1\n\n41) wil: B B3 G3\n\n42) Trydnt: Build R2 G1\n\n43) wil: S G2 R3\nB G2 Wil\nB R2 Y3\n\n44) Trydnt: Sacrifice Y2 Trydnt\nMove B3 Gee1 Y3\nMove B2 Y2 Why3\n\n45) wil: S Y3 G3\nM R1 Y3 G1\nM R1 Why3 G1\nM B3 G3 Wil\nC G1 R\n\n46) Trydnt: Build Y2 Trydnt\n\n47) wil: T R3 Y3 Wil\n\n48) Trydnt: Sacrifice Y2 Trydnt\nMove B2 Why3 Wil\nMove B3 Y3 Wil\nCatastrophe Wil B\n\n49) wil: M G2 Wil Gee1\n\n50) Trydnt: Build Y2 Trydnt\n\n51) wil: D G1 Wil Y3 Why3\n\n52) Trydnt: Trade B1 G1 Y2\n\n53) wil: B G2 Gee1\n\n54) Trydnt: Move Y1 Why1 Wil\n\n\twil: Nice\n\tTrydnt: interesting ending. ran through it a bunch of different ways in my head to make sure there was no way to wriggle out\n\nHomeworlds Online (SDG# 35262)\nVariants: "Hard time"\nStarted: 2019.7.10, Ended: 2019.8.8\nParticipants: Simon (S), Trydnt (N)\nWinner: Simon\n\n1) Trydnt: Homeworld B3 Y2 G3\n\n2) Simon: Homeworld B3 R1 G3\n\n3) Trydnt: Build G1 Trydnt\n\tSimon: Have fun!\n\tTrydnt: you too\n\n4) Simon: Build G1 Simon\n\n5) Trydnt: Trade G1 R1 Trydnt\n\n6) Simon: Trade G1 R1 Simon\n\n7) Trydnt: Build R2 Trydnt\n\n8) Simon: Build R2 Simon\n\n9) Trydnt: Build R2 Trydnt\n\n10) Simon: Trade R2 Y2 Simon\n\n11) Trydnt: Trade R2 Y2 Trydnt\n\n12) Simon: Build R2 Simon\n\n13) Trydnt: Build R2 Trydnt\n\n14) Simon: Discover R2 Simon G2 G2\n\n15) Trydnt: Trade R1 B1 Trydnt\n\n16) Simon: Build Y1 Simon\n\n17) Trydnt: Discover R2 Trydnt G1 G1\n\n18) Simon: Move Y1 Simon G2\n\n19) Trydnt: Sacrifice G3 Trydnt\nBuild R1 G1\nBuild R3 Trydnt\nBuild B1 Trydnt\n\n20) Simon: Build R3 G2\n\n21) Trydnt: Trade R3 G3 Trydnt\n\n22) Simon: Trade R1 B1 Simon\n\n23) Trydnt: Sacrifice Y2 Trydnt\nMove R1 G1 G2\nMove R2 G1 G2\nCatastrophe G2 R\n\n24) Simon: Move B1 Simon G2\n\n25) Trydnt: Discover B1 Trydnt G1 G1\n\n26) Simon: Build B2 G2\n\n27) Trydnt: Build B2 G1\n\n28) Simon: Trade B2 R2 G2\n\n29) Trydnt: Trade B1 R1 G1\n\n30) Simon: Build R1 G2\n\n31) Trydnt: Sacrifice G3 Trydnt\nBuild R2 G1\nBuild R3 Trydnt\nBuild B1 G1\n\n32) Simon: Build R3 G2\n\n33) Trydnt: Trade R3 G3 Trydnt\n\n34) Simon: Trade R3 Y3 G2\n\n\nHomeworlds Online (SDG# 35347)\nVariants: "Unrated"\nStarted: 2019.7.14, Ended: 2019.8.10\nParticipants: wil (S), dougforte (N)\nWinner: dougforte\n\n1) dougforte: Homeworld G3 B1 R3\n\n2) wil: H B2 Y1 G3\n\tdougforte: Hi, enjoy!\n\n3) dougforte: Build R1 Dougforte\n\twil: Thx 4 the game! Have fun!\n\tdougforte: Thanks! :)\n\n4) wil: B G1 Wil\n\n5) dougforte: Trade R1 Y1 Dougforte\n\n6) wil: T G1 B1 Wil\n\n7) dougforte: Build R1 Dougforte\n\n8) wil: B B1 Wil\n\n9) dougforte: Discover R3 Dougforte G2 Everest\n\n10) wil: B G1 Wil\n\n11) dougforte: Build R1 Everest\n\twil: Do you own pyramid arcade? Danger in HW w/o big ship.\n\tdougforte: I don't have any actual pyramids, I'm considering getting some but haven't yet (that could go on for a while...)\n\tdougforte: I'm hoping to get a big ship back in HW before too much danger. \n\n12) wil: D B1 Wil Y3 Y3\n\n13) dougforte: Build Y1 Dougforte\n\n14) wil: T G1 R1 Wil\n\n15) dougforte: Move Y1 Dougforte Everest\n\n16) wil: B G1 Wil\n\n17) dougforte: Move R3 Everest Y3\n\n18) wil: D B1 Y3 Y2 Y2\n\n19) dougforte: Build R2 Dougforte\n\n20) wil: S G3 Wil\nB B2 Y2\nB B2 Y2\nB B3 Wil\n\n21) dougforte: Move R3 Y3 Y2\n\n22) wil: D B2 Y2 G3 G3\n\n23) dougforte: Sacrifice R2 Dougforte\nAttack B2 Y2\nAttack B1 Y2\n\n24) wil: B B3 G3\n\n25) dougforte: Move R3 Y2 G3\n\n26) wil: M B1 Wil G3\n\n27) dougforte: Attack B3 G3\n\n28) wil: B B3 G3\nC G3 B\n\n29) dougforte: Build Y2 Everest\n\n30) wil: B R2 Wil\n\n31) dougforte: Move Y2 Everest G3\n\n32) wil: D R2 Wil G3 Gee3\n\n33) dougforte: Build R2 Everest\n\n34) wil: B G1 Wil\n\n35) dougforte: Build Y2 G3\n\n36) wil: D G1 Wil Y3 Y3\n\twil: I've lost this game\n\n37) dougforte: Build Y3 Dougforte\n\tdougforte: Well, in that case, I'll try not to disappoint by messing up, but no promises.\n\n38) wil: B R2 Gee3\n\n39) dougforte: Build R3 G3\n\n40) wil: B R3 Wil\n\n41) dougforte: Build Y3 Everest\n\n42) wil: B G1 Wil\n\n43) dougforte: Trade B2 G2 Y2\n\n44) wil: M R1 Wil G3\n\n45) dougforte: Build G2 Y2\n\n46) wil: M B3 Wil Y3\n\n47) dougforte: Move R3 G3 Y2\n\n48) wil: S R1 G3\nP\n\n49) dougforte: Move R3 Y2 Gee3\n\n50) wil: B R1 Gee3\nC Gee3 R\n\n51) dougforte: Discover G2 Y2 G3 Gee3\n\n52) wil: B R1 Wil\n\n53) dougforte: Build R2 Dougforte\n\n54) wil: M R1 Wil Y3\n\n55) dougforte: Sacrifice G2 Y2\nBuild R2 Everest\nBuild R3 G3\n\n56) wil: B G2 Y3\n\n57) dougforte: Sacrifice Y2 G3\nMove R3 G3 Wil\nMove R3 G3 Wil\n\n58) wil: M R3 Wil G3\n\n59) dougforte: Sacrifice R2 Everest\nAttack G1 Wil\nAttack G1 Wil\n\twil: Gg\n\tdougforte: Thanks, good game.\n\twil: Gg, challenge me anytime\n\n\nHomeworlds Online (SDG# 35234)\nVariants: "Unrated"\nStarted: 2019.7.16, Ended: 2019.9.5\nParticipants: dougforte (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) dougforte: Homeworld G3 B1 G3 *\n\n3) Trydnt: Build G1 Trydnt\n\n4) dougforte: Build G1 Dougforte\n\n5) Trydnt: Build G1 Trydnt\n\n6) dougforte: Trade G1 Y1 Dougforte\n\n7) Trydnt: Trade G1 Y1 Trydnt\n\n8) dougforte: Build Y2 Dougforte\n\n9) Trydnt: Build Y2 Trydnt\n\n10) dougforte: Discover Y1 Dougforte G2 Tasman\n\n11) Trydnt: Trade Y1 B1 Trydnt\n\n12) dougforte: Build G1 Dougforte\n\n13) Trydnt: Discover G1 Trydnt B3 B3\n\n14) dougforte: Move G1 Dougforte Tasman\n\n15) Trydnt: Build G1 B3\n\n16) dougforte: Move G1 Tasman B3\n\n17) Trydnt: Trade G1 R1 B3\n\n18) dougforte: Build Y1 Tasman\n\n19) Trydnt: Move Y2 Trydnt B3\n\n20) dougforte: Discover Y1 Tasman Y3 Coral\n\n21) Trydnt: Discover B1 Trydnt Y3 Y3\n\n22) dougforte: Build G1 B3\n\n23) Trydnt: Trade G1 R1 B3\n\n24) dougforte: Sacrifice G3 Dougforte\nBuild Y2 Dougforte\nBuild Y3 Tasman\nBuild G1 B3\n\n25) Trydnt: Move R1 B3 Trydnt\n\n26) dougforte: Trade Y2 B2 Dougforte\n\n27) Trydnt: Build R1 Trydnt\n\n28) dougforte: Trade B2 R2 Dougforte\n\n29) Trydnt: Build R2 Trydnt\n\n30) dougforte: Build Y2 Dougforte\n\n31) Trydnt: Move R1 Trydnt Coral\n\n32) dougforte: Trade Y2 G2 Dougforte\n\n33) Trydnt: Attack Y1 Coral\n\n34) dougforte: Build Y2 Dougforte\n\tdougforte: build Y2 dougforte\n\tdougforte: I mean...\n\n35) Trydnt: Discover R1 Trydnt G3 G3\n\n36) dougforte: Move R2 Dougforte Tasman\n\n37) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Coral\nBuild R3 B3\nBuild R3 Trydnt\n\n38) dougforte: Build R3 Tasman\n\n39) Trydnt: Sacrifice Y2 B3\nMove R3 B3 Tasman\nMove R3 Tasman Dougforte\n\n40) dougforte: Move Y1 Tasman Y3\n\n41) Trydnt: Sacrifice R3 Trydnt\nAttack Y2 Dougforte\nAttack Y2 Dougforte\nAttack G2 Dougforte\n\n\nHomeworlds Online (SDG# 35307)\nVariants: "Unrated, Hard time"\nStarted: 2019.7.19, Ended: 2019.8.6\nParticipants: wil (S), bhorner (N)\nWinner: wil\n\n1) bhorner: Homeworld B1 R2 G3\n\n2) wil: H G3 B1 B3 *\n\n3) bhorner: Build G1 Bhorner\n\tbhorner: Wow. :)\n\tbhorner: If they take a small color X, you can take another of the same, a color X ship, and a green to instantly lock out... Blue is easier to maintain lockout than other colors might be. I love that I've never seen this before.\n\n4) wil: B B1 Wil\n\twil: Different opening, but I've found nothing unbeatable.\n\n5) bhorner: Trade G1 Y1 Bhorner\n\twil: We call it instafreeze\n\n6) wil: T B3 Y3 Wil\n\n7) bhorner: Build Y1 Bhorner\n\n8) wil: B B2 Wil\n\n9) bhorner: Discover Y1 Bhorner G3 Tree\n\n10) wil: D B1 Wil B2 B2\n\n11) bhorner: Build G1 Bhorner\n\tbhorner: I think maybe I didn't realize how dire it was. I think I should have built g1 traded b2, and started building blue... No plan is not a plan. :)\n\tbhorner: I meant b3\n\n12) wil: B B2 Wil\n\n13) bhorner: Discover Y1 Bhorner B3 Snowman\n\twil: Dire is my hope!\n\n14) wil: D B2 Wil G2 G2\n\n15) bhorner: Move Y1 Tree B2\n\n16) wil: B B3 Wil\n\tbhorner: I'll do better next time. (Or the time after that. :) )\n\twil: Far from over!\n\twil: Far from over!\n\n17) bhorner: Trade G3 B3 Bhorner\n\n18) wil: T B1 R1 B2\n\n19) bhorner: Discover Y1 B2 G3 Tree\n\n20) wil: T B3 G3 Wil\n\n21) bhorner: Sacrifice Y1 Tree\nDiscover G1 Bhorner B3 Manofsnow\n\n22) wil: B B1 G2\n\n23) bhorner: Build G1 Manofsnow\n\n24) wil: T B2 Y2 G2\n\n25) bhorner: Sacrifice G1 Manofsnow\nBuild B2 Bhorner\n\n26) wil: S Y2 G2\nM B1 G2 Manofsnow\nM B1 Manofsnow Bhorner\nC Bhorner B\n\twil: Oops\n\tbhorner: Well, I was trapped. I could only do things that would make it worse. :). If you didn't miss something, I was doomed, so I tried that one. :)\n\twil: The game can get strange.\n\n\nHomeworlds Online (SDG# 35370)\nVariants: "Hard time"\nStarted: 2019.7.20, Ended: 2019.8.9\nParticipants: SilentTitan (S), dougforte (N)\nWinner: SilentTitan\n\n1) dougforte: Homeworld G1 Y2 B3\n\n2) SilentTitan: Homeworld B3 R2 G3\n\n3) dougforte: Build B1 Dougforte\n\n4) SilentTitan: Build G1 Silenttitan\n\n5) dougforte: Trade B1 G1 Dougforte\n\n6) SilentTitan: Trade G1 Y1 Silenttitan\n\n7) dougforte: Build B1 Dougforte\n\n8) SilentTitan: Build Y1 Silenttitan\n\n9) dougforte: Build G1 Dougforte\n\n10) SilentTitan: Discover Y1 Silenttitan Y1 Sol\n\n11) dougforte: Discover G1 Dougforte Y3 Sirius\n\n12) SilentTitan: Sacrifice G3 Silenttitan\nBuild Y2 Sol\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n13) dougforte: Move B3 Dougforte Sirius\n\tSilentTitan: I have no idea how I clicked any page admin button. It was inadvertent either way. Thanks\n\n14) SilentTitan: Trade Y3 R3 Silenttitan\n\tdougforte: I'm not sure either. No worries, it doesn't seem to have affected anything.\n\n15) dougforte: Move B3 Sirius Dougforte\n\tSilentTitan: Well it froze the timer which if, neither of us forgets we’re playing the game, should be alright\n\n16) SilentTitan: Trade Y2 G2 Silenttitan\n\tdougforte: I think we'll manage to remember. :)\n\n17) dougforte: Trade B3 Y3 Dougforte\n\n18) SilentTitan: Sacrifice G2 Silenttitan\nBuild Y2 Silenttitan\nBuild Y3 Silenttitan\n\n19) dougforte: Trade G1 R1 Dougforte\n\n20) SilentTitan: Trade Y3 G3 Silenttitan\n\n21) dougforte: Build B1 Dougforte\n\n22) SilentTitan: Build Y3 Silenttitan\n\n23) dougforte: Build R1 Dougforte\n\n24) SilentTitan: Discover Y2 Sol G3 Soul\n\n25) dougforte: Move R1 Dougforte Sirius\n\n26) SilentTitan: Sacrifice Y3 Silenttitan\nMove Y1 Sol Soul\nMove Y1 Soul Dougforte\nMove Y2 Soul Dougforte\nCatastrophe Dougforte Yellow\n\n27) dougforte: Trade B1 Y1 Dougforte\n\n28) SilentTitan: Move G3 Silenttitan Dougforte\n\n29) dougforte: Build B1 Dougforte\n\n30) SilentTitan: Build G1 Dougforte\n\n31) dougforte: Attack G1 Dougforte\n\n32) SilentTitan: Build G2 Dougforte\nCatastrophe Dougforte Green\n\n\nHomeworlds Online (SDG# 35209)\nVariants: "Hard time"\nStarted: 2019.7.21, Ended: 2019.9.18\nParticipants: wil (S), dragon76n (N)\nWinner: wil\n\n1) dragon76n: Homeworld Y2 G3 B3\n\n2) wil: H B2 Y1 G3\n\tdragon76n: Hi Wil, I'm back for another game. \n\twil: Thx!!\n\n3) dragon76n: Build B1 Dragon76n\n\n4) wil: B G1 Wil\n\tdragon76n: Sorry about the delay getting back... things have been hectic.\n\twil: No worries\n\n5) dragon76n: Build B1 Dragon76n\n\n6) wil: T G1 B1 Wil\n\n7) dragon76n: Trade B1 Y1 Dragon76n\n\n8) wil: B B1 Wil\n\n9) dragon76n: Trade B1 Y1 Dragon76n\n\n10) wil: D B1 Wil G3 G3\n\n11) dragon76n: Discover Y1 Dragon76n G1 Greone\n\n12) wil: B B1 Wil\n\n13) dragon76n: Build B2 Dragon76n\n\n14) wil: D B1 Wil Y3 Y3\n\n15) dragon76n: Move B2 Dragon76n Greone\n\n16) wil: S G3 Wil\nB B2 G3\nB B3 Y3\nB B3 Wil\n\n17) dragon76n: Build Y2 Dragon76n\n\tdragon76n: Wow!\n\n18) wil: S B2 G3\nT B3 Y3 Y3\nT B3 G3 Wil\n\n19) dragon76n: Build Y2 Greone\n\n20) wil: D Y3 Y3 G1 G1\n\n21) dragon76n: Build Y3 Greone\n\n22) wil: B G1 Wil\n\n23) dragon76n: Move Y1 Dragon76n G1\n\n24) wil: B G2 Wil\n\n25) dragon76n: Trade Y1 R1 Greone\n\n26) wil: T B1 R1 Wil\n\n27) dragon76n: Discover Y1 G1 B3 Bluthr\n\n28) wil: B Y1 G1\n\n29) dragon76n: Move Y2 Greone G3\n\n30) wil: B B1 G3\n\n31) dragon76n: Build R1 Greone\n\n32) wil: S G2 Wil\nB B2 G3\nB B3 Y3\n\n33) dragon76n: Sacrifice R1 Greone\nAttack B2 G3\n\n34) wil: B G2 Wil\n\n35) dragon76n: Trade B2 G2 G3\n\n36) wil: M G1 Wil G3\n\n37) dragon76n: Discover G2 G3 B2 Blutwo\n\n38) wil: S G3 Wil\nB G2 G3\nB G3 Wil\nB R1 Wil\n\n39) dragon76n: Move Y2 G3 Blutwo\n\n40) wil: T G2 R2 G3\n\n41) dragon76n: B G2 Blutwo\n\n42) wil: S B1 G3\nT B3 R3 Y3\n\n\nHomeworlds Online (SDG# 35396)\nStarted: 2019.7.26, Ended: 2019.8.29\nParticipants: Draw5PlayAll (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld R2 B1 G3\n\tDraw5PlayAll: Is this starting already?\r\n\r\nMy performance was awful last year. This time I will take things more seriously!!\n\tBabamots: I put in the rules that people could start playing whenever they're ready, but it's tucked into the middle of a paragraph. I should have said it somewhere more prominent.\r\n\r\nI sort of think that the tournament *really* begins when I close registration (as I'm planning to do in a couple of weeks). That's also when I start making sure that everyone is participating consistently or asking them if they need to withdraw.\r\n\r\nI have the first move, so it's my job to record this game with the tournament form.\r\n\r\nGood luck here and on all of your games!\n\n2) Draw5PlayAll: Homeworld B1 G3 B3 *\n\n3) Babamots: Build G1 Babamots\n\tDraw5PlayAll: Never pass up an opportunity to improve on the past...\n\n4) Draw5PlayAll: Build B1 Draw5playall\n\n5) Babamots: Trade G3 B3 Babamots\n\n6) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\n7) Babamots: Build B2 Babamots\n\tDraw5PlayAll: That moment when you wish you had picked Y2+B1 instead of R2+B1...\n\n8) Draw5PlayAll: Build B2 Draw5playall\n\tBabamots: Could be worse.\n\n9) Babamots: Trade B3 Y3 Babamots\n\n10) Draw5PlayAll: Discover B2 Draw5playall G2 Build\n\n11) Babamots: Discover B2 Babamots G3 Orion\n\n12) Draw5PlayAll: Build Y1 Draw5playall\n\n13) Babamots: Build G1 Babamots\n\tDraw5PlayAll: Whomever cracks first...\n\n14) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n15) Babamots: Trade G1 R1 Babamots\n\n16) Draw5PlayAll: Build Y1 Draw5playall\n\n17) Babamots: Build G1 Babamots\n\n18) Draw5PlayAll: Trade Y1 G1 Draw5playall\n\n19) Babamots: Build G2 Babamots\n\n20) Draw5PlayAll: Discover G1 Draw5playall Y2 Y2\n\n21) Babamots: Discover G2 Babamots G3 Ferenginar\n\n22) Draw5PlayAll: Build R1 Draw5playall\n\n23) Babamots: Build G2 Babamots\n\n24) Draw5PlayAll: Move R1 Draw5playall Build\n\n25) Babamots: Discover G2 Babamots Y3 Aldea\n\n26) Draw5PlayAll: Move B1 Draw5playall Y2\n\n27) Babamots: Sacrifice G2 Ferenginar\nBuild G2 Babamots\nBuild G3 Aldea\n\n28) Draw5PlayAll: Build B2 Y2\n\n29) Babamots: Sacrifice G3 Aldea\nBuild B3 Orion\nBuild B3 Orion\nBuild G3 Aldea\n\n30) Draw5PlayAll: Move B1 Y2 Orion\nCatastrophe Orion Blue\n\n31) Babamots: Discover G2 Babamots G3 Ferenginar\n\n32) Draw5PlayAll: Build B1 Build\n\n33) Babamots: Sacrifice G3 Aldea\nBuild Y1 Babamots\nBuild R2 Babamots\nBuild G3 Aldea\n\n34) Draw5PlayAll: Build B2 Y2\n\n35) Babamots: Move G3 Aldea Y2\n\n36) Draw5PlayAll: Build B3 Build\n\n37) Babamots: Sacrifice R2 Babamots\nAttack B2 Y2\nAttack B2 Y2\n\n38) Draw5PlayAll: Trade B2 Y2 Build\n\n39) Babamots: Sacrifice G2 Ferenginar\nBuild G2 Y2\nBuild G3 Aldea\n\n40) Draw5PlayAll: Discover G1 Y2 Y1 Move\n\n41) Babamots: Trade B2 R2 Y2\n\n42) Draw5PlayAll: Build R2 Build\n\n43) Babamots: Move R1 Babamots Aldea\n\tBabamots: Sorry to be so slow. I'm traveling and very distracted.\n\n44) Draw5PlayAll: Build R3 Draw5playall\n\n45) Babamots: Sacrifice G3 Aldea\nBuild R3 Aldea\nBuild R3 Y2\nBuild G3 Aldea\n\n46) Draw5PlayAll: Discover R3 Draw5playall B2 Trade\n\n47) Babamots: Discover G3 Y2 B3 Andoria\n\n48) Draw5PlayAll: Discover B1 Build Y1 Discover\n\tDraw5PlayAll: It never fails. No matter how I set up my homeworld, no matter who goes first, the other person always ends up with more ships than I do.\n\n49) Babamots: Discover G3 Aldea Y2 Iconia\n\n50) Draw5PlayAll: Move G1 Move Trade\n\n51) Babamots: Sacrifice G2 Aldea\nBuild B2 Y2\nBuild G2 Iconia\n\n52) Draw5PlayAll: Build B3 Build\n\tDraw5PlayAll: What is Aldea again?\n\n53) Babamots: Move B2 Y2 Aldea\n\tBabamots: This is the first time I've ever used "Aldea" for a system. It's a planet in TNG that was lost in mythical fashion, like Atlantis.\n\n54) Draw5PlayAll: Build Y1 Draw5playall\n\n55) Babamots: Sacrifice G3 Andoria\nPass\nBuild B3 Aldea\nBuild G3 Y2\n\n56) Draw5PlayAll: Move B3 Build Discover\n\n57) Babamots: Move G3 Y2 Draw5playall\n\n58) Draw5PlayAll: Attack G3 Draw5playall\n\n59) Babamots: Move G3 Iconia Draw5playall\n\n60) Draw5PlayAll: Attack G3 Draw5playall\n\n61) Babamots: Sacrifice Y3 Babamots\nMove G2 Iconia Draw5playall\nMove B2 Y2 Draw5playall\nCatastrophe Draw5playall G\nMove B3 Aldea Draw5playall\n\n62) Draw5PlayAll: Sacrifice Y3 Draw5playall\nMove B3 Discover Build\nMove B3 Build Draw5playall\nMove B3 Build Draw5playall\n\n63) Babamots: Move B2 Aldea Draw5playall\nCatastrophe Draw5playall B\n\n\tDraw5PlayAll: 6 blues in one system\n\tBabamots: I'd never seen anything quite like it, so I was pretty pleased when I came up with it. Sort of a slow-motion doomsday machine. A doomsweek machine, maybe.\n\tDraw5PlayAll: Hopefully I do not get massacred this year like I did last year...\n\tDraw5PlayAll: I think last time my ONLY wins were speardane, one human, and a bunch of withdrawn players.\n\tBabamots: You actually beat *two* humans who stayed in the tournament last year and had one draw :-)\r\n\r\nGood luck with your games!\n\nHomeworlds Online (SDG# 35397)\nStarted: 2019.7.29, Ended: 2019.8.3\nParticipants: The_Unicyclone (S), theMadHunter249 (N)\nWinner: theMadHunter249\n\n1) theMadHunter249: Homeworld R3 G2 B3\n\n2) The_Unicyclone: Homeworld B3 G1 R3\n\n3) theMadHunter249: Build B1 Themadhunter249\n\n4) The_Unicyclone: Build R1 The_unicyclone\n\n5) theMadHunter249: Trade B1 Y1 Themadhunter249\n\n6) The_Unicyclone: Build R1 The_unicyclone\n\n7) theMadHunter249: Discover Y1 Themadhunter249 G1 Gastown\n\n8) The_Unicyclone: Trade R1 Y1 The_unicyclone\n\n9) theMadHunter249: Build Y1 Gastown\n\n10) The_Unicyclone: Build Y2 The_unicyclone\n\n11) theMadHunter249: Build B1 Themadhunter249\n\n12) The_Unicyclone: Sacrifice Y2 The_unicyclone\nDiscover R1 The_unicyclone Y2 Lilypad\nMove R1 Lilypad Gastown\n\n13) theMadHunter249: Build Y2 Gastown\n\n14) The_Unicyclone: Build Y2 The_unicyclone\n\n15) theMadHunter249: Sacrifice Y1 Gastown\nMove B1 Themadhunter249 Gastown\n\n16) The_Unicyclone: Attack B1 Gastown\n\n17) theMadHunter249: Move Y1 Gastown Themadhunter249\n\n18) The_Unicyclone: Trade Y2 R2 The_unicyclone\n\n19) theMadHunter249: Build B1 Themadhunter249\n\n20) The_Unicyclone: Discover R2 The_unicyclone Y2 Bulletfarm\n\n21) theMadHunter249: Trade B3 R3 Themadhunter249\n\n22) The_Unicyclone: Move R2 Bulletfarm Gastown\n\n23) theMadHunter249: Move Y2 Gastown Themadhunter249\n\n24) The_Unicyclone: Trade R1 Y1 Gastown\n\n25) theMadHunter249: Move R3 Themadhunter249 Gastown\n\n26) The_Unicyclone: Trade Y1 R1 Gastown\n\n27) theMadHunter249: Attack B1 Gastown\n\n28) The_Unicyclone: Build R1 Gastown\nCatastrophe Gastown Red\n\n29) theMadHunter249: Build B1 Gastown\n\n30) The_Unicyclone: Build Y1 The_unicyclone\n\n31) theMadHunter249: Trade B1 R1 Gastown\n\n32) The_Unicyclone: Trade Y1 G1 The_unicyclone\n\n33) theMadHunter249: Move Y1 Themadhunter249 Gastown\n\n34) The_Unicyclone: Discover G1 The_unicyclone B2 Watertower\n\n35) theMadHunter249: Move R1 Gastown Watertower\n\n36) The_Unicyclone: Build G2 Watertower\n\n37) theMadHunter249: Attack G1 Watertower\n\n38) The_Unicyclone: Trade G2 R2 Watertower\n\n39) theMadHunter249: Build R1 Watertower\n\n40) The_Unicyclone: Attack G1 Watertower\n\n41) theMadHunter249: Build Y1 Gastown\n\n42) The_Unicyclone: Build Y2 The_unicyclone\n\n43) theMadHunter249: Trade Y1 R1 Gastown\n\n44) The_Unicyclone: Build G2 Watertower\n\n45) theMadHunter249: Build R2 Gastown\n\n46) The_Unicyclone: Trade G2 Y2 Watertower\n\n47) theMadHunter249: Trade R2 G2 Gastown\n\n48) The_Unicyclone: Discover Y2 Watertower R3 Thunderdome\n\n49) theMadHunter249: Discover G2 Gastown B2 Decoy\n\n50) The_Unicyclone: Sacrifice R2 Watertower\nAttack R1 Watertower\nAttack R1 Watertower\n\n51) theMadHunter249: Move Y1 Gastown Decoy\n\n52) The_Unicyclone: Discover Y2 Thunderdome B1 Dirtroad\n\n53) theMadHunter249: Build Y1 Decoy\n\n54) The_Unicyclone: Sacrifice Y1 The_unicyclone\nMove G1 Watertower Dirtroad\n\n55) theMadHunter249: Build R2 Gastown\n\n56) The_Unicyclone: Trade R1 Y1 Watertower\n\n57) theMadHunter249: Build Y3 Themadhunter249\n\n58) The_Unicyclone: Build Y3 Dirtroad\n\n59) theMadHunter249: Move Y2 Themadhunter249 Gastown\n\n60) The_Unicyclone: Trade Y3 R3 Dirtroad\n\n61) theMadHunter249: Build Y3 Gastown\n\n62) The_Unicyclone: Build Y3 Dirtroad\n\n63) theMadHunter249: Move Y3 Gastown Themadhunter249\n\n64) The_Unicyclone: Build R1 Dirtroad\n\n65) theMadHunter249: Move R2 Gastown Watertower\n\n66) The_Unicyclone: Move R1 Watertower Dirtroad\n\n67) theMadHunter249: Attack Y1 Watertower\n\n68) The_Unicyclone: Sacrifice Y3 Dirtroad\nMove R1 Dirtroad Themadhunter249\nMove R1 Dirtroad Themadhunter249\nMove R3 Dirtroad Themadhunter249\nCatastrophe Themadhunter249 Red\n\n69) theMadHunter249: Build Y3 Gastown\n\n70) The_Unicyclone: Trade G1 R1 Dirtroad\n\n71) theMadHunter249: Trade Y3 R3 Themadhunter249\n\n72) The_Unicyclone: Discover R1 Dirtroad G3 Thegreen\n\n73) theMadHunter249: Build Y3 Themadhunter249\n\n74) The_Unicyclone: Move Y2 Dirtroad Thegreen\n\n75) theMadHunter249: Trade Y3 G3 Themadhunter249\n\n76) The_Unicyclone: Build Y3 Thegreen\n\n77) theMadHunter249: Trade R2 G2 Watertower\n\n78) The_Unicyclone: Move Y3 Thegreen Decoy\n\n79) theMadHunter249: Sacrifice Y3 Themadhunter249\nMove G2 Decoy The_unicyclone\nMove G2 Watertower The_unicyclone\nMove G3 Themadhunter249 The_unicyclone\nCatastrophe The_unicyclone Green\n\n80) The_Unicyclone: Trade Y3 G3 Decoy\n\n81) theMadHunter249: Trade Y1 B1 Watertower\n\n82) The_Unicyclone: Sacrifice G3 Decoy\nBuild R1 The_unicyclone\nBuild R2 The_unicyclone\nBuild R2 The_unicyclone\nCatastrophe The_unicyclone Red\n\n83) theMadHunter249: Sacrifice Y3 Gastown\nMove B1 Gastown The_unicyclone\nMove B1 Watertower The_unicyclone\nMove B1 Themadhunter249 The_unicyclone\nCatastrophe The_unicyclone Blue\n\n\nHomeworlds Online (SDG# 35400)\nVariants: "Hard time"\nStarted: 2019.7.29, Ended: 2019.8.19\nParticipants: dlwillson (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\n2) dlwillson: Homeworld B2 Y3 G3\n\tSimon: Have fun! You have 4 defends, I'll try my best.\n\n3) Simon: Build B1 Simon\n\tdlwillson: I get lucky sometimes. Sometimes, I play well. :-)\n\tdlwillson: Thank you for the challenge! Good luck, and have fun!\n\n4) dlwillson: B G1 Dlwillson\n\n5) Simon: Trade B3 Y3 Simon\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) Simon: Build Y1 Simon\n\n8) dlwillson: B B1 Dlwillson\n\n9) Simon: Build B2 Simon\n\n10) dlwillson: D B1 Dlwillson G1 Field\n\n11) Simon: Discover B2 Simon G2 G2\n\n12) dlwillson: T B1 R1 Dlwillson\n\n13) Simon: Build B1 G2\n\n14) dlwillson: B R1 Dlwillson\n\n15) Simon: Trade B2 R2 G2\n\n16) dlwillson: B B2 Field\n\n17) Simon: Build R2 G2\n\n18) dlwillson: T B2 R2 Field\n\n19) Simon: Trade R2 Y2 G2\n\n20) dlwillson: D R1 Dlwillson Y1 Golden\n\n21) Simon: Build B2 G2\n\n22) dlwillson: B G1 Dlwillson\n\n23) Simon: Discover B1 G2 Y1 Y1\n\n24) dlwillson: M G1 Dlwillson Golden\n\n25) Simon: Build Y2 G2\n\n26) dlwillson: D G1 Golden R3 Mars\n\n27) Simon: Build Y2 Simon\n\n28) dlwillson: D R1 Golden B2 Sky\n\n29) Simon: Build B3 G2\n\n30) dlwillson: B B3 Field\n\n31) Simon: Trade B3 G3 G2\n\n32) dlwillson: T B3 Y3 Field\n\n33) Simon: Sacrifice G3 G2\nBuild B3 G2\nBuild B3 Y1\nBuild B3 Simon\n\n34) dlwillson: B G1 Dlwillson\n\n35) Simon: Discover B2 G2 Y1 Y1b\n\n36) dlwillson: S G3 Dlwillson\nB G2 Mars\nB G2 Mars\nB G3 Dlwillson\n\n37) Simon: Discover Y1 Simon R2 R2\n\n38) dlwillson: S Y3 Field\nM G2 Mars G2\nM G2 Mars G2\nM G1 Mars G2\nC G2 G\n\n39) Simon: Trade B3 G3 Simon\n\n40) dlwillson: T R2 Y2 Field\n\n41) Simon: Sacrifice G3 Simon\nBuild Y2 Simon\nBuild Y3 R2\nBuild B3 Y1b\n\n42) dlwillson: B B3 Field\n\n43) Simon: Discover Y2 Simon R2 R2b\n\n44) dlwillson: S G3 Dlwillson\nB R2 Sky\nB R3 Sky\nB R3 Dlwillson\n\n45) Simon: Trade B3 R3 Y1b\n\n46) dlwillson: T R3 G3 Sky\n\n47) Simon: Discover Y2 Simon G2 G2\n\n48) dlwillson: M B3 Field G2\n\n49) Simon: Discover Y2 G2 G1 G1\n\n50) dlwillson: B B3 G2\n\n51) Simon: Sacrifice Y3 R2\nMove B1 Y1 Dlwillson\nMove B3 Y1 Dlwillson\nMove B2 Y1b Dlwillson\nCatastrophe Dlwillson Blue\n\n\tdlwillson: Well played! Welcome to the top of the Homeworlds ladder!\n\tSimon: Thanks! gg, looking forward to a rematch eventually!\n\nHomeworlds Online (SDG# 35405)\nStarted: 2019.8.1, Ended: 2019.9.26\nParticipants: Draw5PlayAll (S), ajo (N)\nWinner: ajo\n\n1) ajo: Homeworld B3 R2 G3\n\n2) Draw5PlayAll: Homeworld B2 Y1 G3\n\n3) ajo: Build G1 Ajo\n\tDraw5PlayAll: ThisIsForTheTournament\n\tajo: Yep! Good luck.\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) ajo: Trade G1 Y1 Ajo\n\n6) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n7) ajo: Build Y2 Ajo\n\n8) Draw5PlayAll: Build Y2 Draw5playall\n\n9) ajo: Discover Y1 Ajo B1 Alpha\n\n10) Draw5PlayAll: Discover Y2 Draw5playall G3 Greed\n\n11) ajo: Sacrifice G3 Ajo\nBuild Y2 Ajo\nBuild Y3 Ajo\nBuild Y3 Alpha\n\n12) Draw5PlayAll: Build Y3 Greed\n\n13) ajo: Trade Y2 G2 Ajo\n\n14) Draw5PlayAll: Trade Y1 R1 Draw5playall\n\n15) ajo: Trade Y3 G3 Alpha\n\n16) Draw5PlayAll: Build R1 Draw5playall\n\n17) ajo: Trade Y2 R2 Ajo\n\n18) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n19) ajo: Build Y1 Alpha\n\n20) Draw5PlayAll: Discover Y2 Greed B2 Diversity\n\n21) ajo: Trade Y1 R1 Alpha\n\n22) Draw5PlayAll: Move B1 Draw5playall Greed\n\n23) ajo: Build G1 Alpha\n\n24) Draw5PlayAll: Build G1 Draw5playall\n\n25) ajo: Discover R2 Ajo Y1 Beta\n\n26) Draw5PlayAll: Build B1 Greed\n\n27) ajo: Build Y2 Alpha\n\n28) Draw5PlayAll: Build B2 Greed\n\n29) ajo: Discover Y2 Alpha B3 Gamma\n\n30) Draw5PlayAll: Discover B1 Greed G2 Growth\n\n31) ajo: Sacrifice G3 Alpha\nBuild R1 Beta\nBuild Y2 Gamma\nBuild Y3 Alpha\n\n32) Draw5PlayAll: Build B3 Growth\n\n33) ajo: Move R2 Beta Gamma\n\n34) Draw5PlayAll: Trade B3 R3 Growth\n\n35) ajo: Discover Y1 Alpha B3 Delta\n\n36) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Growth\nBuild R3 Draw5playall\nBuild G1 Draw5playall\n\n37) ajo: Build R3 Alpha\n\tDraw5PlayAll: It never fails.\n\n38) Draw5PlayAll: Move G1 Draw5playall Greed\n\n39) ajo: Move R3 Alpha Diversity\n\n40) Draw5PlayAll: Move Y2 Diversity Delta\n\n41) ajo: Build G2 Alpha\n\n42) Draw5PlayAll: Move G1 Greed Beta\n\n43) ajo: Attack G1 Beta\n\n44) Draw5PlayAll: Build G3 Draw5playall\n\n45) ajo: Build G3 Beta\n\tDraw5PlayAll: I hate these closed positions\n\n46) Draw5PlayAll: Move R3 Draw5playall Gamma\n\n47) ajo: Sacrifice Y2 Gamma\nMove R2 Gamma Growth\nMove R1 Alpha Growth\nCatastrophe Growth Red\n\n48) Draw5PlayAll: Attack Y2 Gamma\n\n49) ajo: Build Y2 Alpha\n\n50) Draw5PlayAll: Trade B1 R1 Greed\n\n51) ajo: Sacrifice Y1 Delta\nMove Y2 Alpha Growth\n\tDraw5PlayAll: How exactly do you run your AI? Do you just put the position into the computer, ask for ai_move, and then manually convert it into SDG notation? Or something else?\n\n52) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y1 Gamma\nBuild B1 Greed\nBuild G3 Draw5playall\n\tajo: Essentially yes. As of a month-ish ago, you can run it with `--sdg` to get the output automatically in SDG notation. I'm haphazardly working on something that could slurp the game transcript from SDG, reconstruct the position, and then submit its move automatically. But for now it's still mostly manual.\n\n53) ajo: Move G3 Beta Delta\n\n54) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R2 Gamma\nBuild R2 Greed\nBuild R3 Draw5playall\n\tDraw5PlayAll: Hmmm...\r\n\r\nAttack: /A fight broke out in the ([]) system! (\\w+)'s (\\w\\d) ship was overtaken by (\\w+)./\r\nConstruct: /(\\w+) created an? (\\w\\d) ship in the ([]) system./\r\nTrade: /(\\w+) traded their old (\\w\\d) ship for a shiny new (\\w\\d) ship in the ([]) system./\r\nMove: /(\\w+) moved their (\\w\\d) ship from ([]) to ([])./\r\nDiscover: /(\\w+)'s ship (\\w\\d) ventured forth from ([]) and discovered a new (\\w\\d) system! It has been named ([])./\r\nSacrifice: /(\\w+)'s ship (\\w\\d) was sacrificed in the ([]) system./\r\n\r\nInside the []'s you need to know all the valid characters for system names.\n\tDraw5PlayAll: [A-Za-z0-9_-'] to be exact.\n\n55) ajo: Build G3 Beta\n\n56) Draw5PlayAll: Sacrifice Y2 Delta\nMove B1 Growth Delta\nMove B1 Delta Diversity\n\n57) ajo: Sacrifice G2 Alpha\nBuild G2 Delta\nBuild Y2 Alpha\n\n58) Draw5PlayAll: Sacrifice Y3 Greed\nMove B1 Diversity Alpha\nMove B2 Greed Alpha\nMove B1 Greed Alpha\nCatastrophe Alpha Blue\n\n59) ajo: Trade G2 B2 Delta\n\tDraw5PlayAll: Probably made everything worse for me, but I needed more stuff.\n\n60) Draw5PlayAll: Trade R1 B1 Draw5playall\n\n61) ajo: Sacrifice G3 Beta\nBuild G1 Ajo\nBuild G2 Delta\nBuild G3 Beta\n\n62) Draw5PlayAll: Build R1 Draw5playall\n\n63) ajo: Sacrifice G3 Delta\nBuild G3 Delta\nBuild Y2 Ajo\nBuild Y3 Growth\n\n64) Draw5PlayAll: Move Y2 Gamma Draw5playall\n\tajo: Yeah, I think you made it worse. :)\n\n65) ajo: Sacrifice B2 Delta\nTrade R3 Y3 Diversity\nTrade G1 B1 Beta\n\n66) Draw5PlayAll: Trade R1 G1 Draw5playall\n\n67) ajo: Move Y3 Diversity Greed\n\n\tDraw5PlayAll: Like always, I stand no chance.\n\tajo: Good game!\n\nHomeworlds Online (SDG# 35406)\nStarted: 2019.8.1, Ended: 2019.10.10\nParticipants: Draw5PlayAll (S), speardane (N)\nWinner: Draw5PlayAll\n\n1) speardane: Homeworld B3 Y2 G3\n\n2) Draw5PlayAll: Homeworld B2 R1 G3\n\n3) speardane: Build G1 Speardane\n\tDraw5PlayAll: ThisIsForTheTournament\n\tspeardane: Agreed. Good luck!\n\n4) Draw5PlayAll: Build G1 Draw5playall\n\n5) speardane: Trade G3 R3 Speardane\n\n6) Draw5PlayAll: Trade G1 R1 Draw5playall\n\tDraw5PlayAll: It always wants an R3...\n\n7) speardane: Build G1 Speardane\n\n8) Draw5PlayAll: Build G1 Draw5playall\n\n9) speardane: Discover G1 Speardane B1 Delos\n\n10) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n11) speardane: Build G1 Delos\n\n12) Draw5PlayAll: Build G2 Draw5playall\n\n13) speardane: Trade G1 Y1 Delos\n\n14) Draw5PlayAll: Discover G2 Draw5playall B3 Water\n\n15) speardane: Build G1 Delos\n\n16) Draw5PlayAll: Build G2 Draw5playall\n\n17) speardane: Trade G1 R1 Delos\n\n18) Draw5PlayAll: Move R1 Draw5playall Water\n\n19) speardane: Build G1 Delos\n\n20) Draw5PlayAll: Build R2 Water\n\n21) speardane: Build R2 Delos\n\tDraw5PlayAll: Against many other opponents it would be me who was losing the race.\n\n22) Draw5PlayAll: Trade R2 Y2 Water\n\n23) speardane: Build R2 Delos\n\n24) Draw5PlayAll: Move R1 Water Delos\nCatastrophe Delos Red\n\n25) speardane: Trade G1 R1 Delos\n\tDraw5PlayAll: Your AI might need a check against having 3 of a color where a 4th could easily be moved in...\n\n26) Draw5PlayAll: Trade G2 R2 Draw5playall\n\n27) speardane: Build G1 Delos\n\n28) Draw5PlayAll: Build G2 Draw5playall\n\n29) speardane: Discover G1 Delos B3 Lebling\n\n30) Draw5PlayAll: Discover R2 Draw5playall G3 Earth\n\n31) speardane: Build G2 Lebling\n\tDraw5PlayAll: Unfortunately, I cannot see yellow representing Air by any stretch of the imagination.\n\n32) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Water\nBuild Y1 Draw5playall\n\n33) speardane: Trade G2 Y2 Lebling\n\n34) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n35) speardane: Build Y1 Lebling\n\n36) Draw5PlayAll: Sacrifice G3 Water\nBuild Y3 Draw5playall\nBuild Y3 Water\nBuild R1 Earth\n\n37) speardane: Build Y3 Delos\n\n38) Draw5PlayAll: Move Y3 Draw5playall Earth\n\n39) speardane: Trade Y2 R2 Lebling\n\n40) Draw5PlayAll: Build Y2 Draw5playall\n\n41) speardane: Build R2 Lebling\n\n42) Draw5PlayAll: Discover R2 Earth B2 Something\n\n43) speardane: Build R3 Delos\n\n44) Draw5PlayAll: Sacrifice G2 Draw5playall\nBuild G2 Draw5playall\nBuild R3 Something\n\n45) speardane: Build G2 Lebling\n\n46) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Water\nBuild B1 Draw5playall\n\n47) speardane: Sacrifice Y3 Delos\nDiscover R3 Delos Y3 Kotok\nMove G1 Lebling Draw5playall\nMove G2 Lebling Draw5playall\nCatastrophe Draw5playall Green\n\n48) Draw5PlayAll: Move G3 Water Draw5playall\n\tDraw5PlayAll: Thin ice, tightrope, hanging by a thread, whatever metaphor you want.\n\n49) speardane: Trade R2 G2 Lebling\n\tDraw5PlayAll: Thought so.\n\n50) Draw5PlayAll: Build G1 Draw5playall\n\n51) speardane: Build G2 Lebling\n\n52) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild G3 Draw5playall\nBuild G3 Water\nBuild R2 Earth\n\n53) speardane: Discover G2 Lebling B2 Minsky\n\n54) Draw5PlayAll: Move Y3 Water Something\n\n55) speardane: Move Y1 Lebling Minsky\n\tDraw5PlayAll: What do those names refer to?\n\n56) Draw5PlayAll: Move R3 Something Lebling\n\tDraw5PlayAll: Proposed AI addition: Make it want to have a large at any system it has several ships in.\n\n57) speardane: Sacrifice G2 Lebling\nBuild G2 Minsky\nPass\n\n58) Draw5PlayAll: Attack R2 Lebling\n\n59) speardane: Move G2 Minsky Kotok\n\n60) Draw5PlayAll: Move Y1 Draw5playall Lebling\n\n61) speardane: Move R3 Kotok Minsky\n\n62) Draw5PlayAll: Move R2 Lebling Delos\n\n63) speardane: Sacrifice G2 Kotok\nBuild Y3 Delos\nBuild G2 Minsky\n\n64) Draw5PlayAll: Attack Y1 Delos\n\n65) speardane: Attack R2 Delos\n\n66) Draw5PlayAll: Move Y1 Delos Lebling\n\n67) speardane: Sacrifice G2 Minsky\nBuild G2 Speardane\nPass\n\n68) Draw5PlayAll: Move B1 Draw5playall Earth\n\n69) speardane: Sacrifice G2 Speardane\nBuild G2 Minsky\nPass\n\n70) Draw5PlayAll: Move R2 Earth Something\n\n71) speardane: Sacrifice G2 Minsky\nBuild G2 Speardane\nPass\n\n72) Draw5PlayAll: Move G2 Water Something\n\tDraw5PlayAll: Patience is a virtue\n\n73) speardane: Sacrifice G2 Speardane\nBuild G2 Minsky\nPass\n\tspeardane: [ajo says:] Well, this "closed position" is certainly showing off speardane's lack of foresight. It seems to be stuck at a local maximum (until you give it a pressing concern). It would probably be doing "pass" every turn right now, except that it has a hard rule never to "pass" unless it's checkmated (on the logic that if the game is winnable at all, _some_ move must be better than "pass" by definition).\n\n74) Draw5PlayAll: Move Y2 Water Draw5playall\n\tDraw5PlayAll: Nice to know that. My current plan will seem very boring until I have 3 blues at Earth and another large at something. IICC that takes 6 turns before Delos or Minsky goes supernova.\n\n75) speardane: Sacrifice G2 Minsky\nBuild G2 Speardane\nPass\n\n76) Draw5PlayAll: Sacrifice G3 Water\nPass\nBuild G3 Something\nBuild B3 Earth\n\n77) speardane: Sacrifice G2 Speardane\nBuild G2 Minsky\nPass\n\n78) Draw5PlayAll: Move B3 Earth Something\n\tDraw5PlayAll: Almost there...\n\n79) speardane: Sacrifice G2 Minsky\nBuild G2 Speardane\nPass\n\n80) Draw5PlayAll: Move B1 Draw5playall Earth\n\tDraw5PlayAll: Ready...\n\n81) speardane: Sacrifice G2 Speardane\nBuild G2 Minsky\nPass\n\n82) Draw5PlayAll: Sacrifice Y1 Lebling\nMove B3 Something Delos\n\tDraw5PlayAll: Aim...\n\n83) speardane: Attack B3 Delos\n\n84) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove B1 Earth Delos\nMove B1 Earth Delos\nCatastrophe Delos Blue\n\tDraw5PlayAll: FIRE!!\n\n85) speardane: Discover G2 Minsky B3 Delos\n\n86) Draw5PlayAll: Move G3 Something Delos\n\tDraw5PlayAll: (Of course. I forgot that the Y2 sac already blocked speardane from growing the Y3 instantly...)\n\n87) speardane: Sacrifice G2 Delos\nBuild G1 Minsky\nBuild G2 Speardane\n\n88) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild R1 Earth\nBuild R2 Lebling\nBuild G3 Draw5playall\n\n89) speardane: Discover G2 Minsky B1 Kotok\n\n90) Draw5PlayAll: Trade G1 B1 Draw5playall\n\n91) speardane: Discover G2 Speardane B1 Licklider\n\n92) Draw5PlayAll: Move R2 Something Licklider\n\n93) speardane: Move R3 Minsky Licklider\n\n94) Draw5PlayAll: Sacrifice Y1 Lebling\nMove R2 Licklider Minsky\n\n95) speardane: Move Y1 Minsky Kotok\n\n96) Draw5PlayAll: Attack G1 Minsky\n\n97) speardane: Trade R3 Y3 Licklider\n\n98) Draw5PlayAll: Sacrifice G3 Delos\nBuild Y1 Something\nBuild R3 Minsky\nBuild B3 Draw5playall\n\tDraw5PlayAll: Why is this so hard?!\n\n99) speardane: Build G1 Licklider\n\tspeardane: You tell me. I expected something irreversible to happen when you said "FIRE!!", but... :P\n\n100) Draw5PlayAll: Build G3 Minsky\n\tDraw5PlayAll: The end is in sight!!\n\tDraw5PlayAll: 5 turns until my hopefully unstoppable Borg fleet invades.\n\n101) speardane: Discover G2 Licklider Y2 Delos\n\n102) Draw5PlayAll: Sacrifice Y2 Draw5playall\nMove R3 Minsky Kotok\nDiscover G3 Minsky Y1 Node\n\n103) speardane: Sacrifice Y1 Kotok\nDiscover G2 Kotok Y2 Fritz\n\n104) Draw5PlayAll: Sacrifice Y3 Earth\nMove R3 Kotok Speardane\nMove G3 Node Speardane\nMove B3 Draw5playall Earth\n\n105) speardane: Pass\n\n106) Draw5PlayAll: Sacrifice R2 Lebling\nAttack R3 Speardane\nAttack G1 Speardane\n\tDraw5PlayAll: Checkmate\n\n\tspeardane: Good game!\n\tDraw5PlayAll: Is that an automated thing that speardane does when checkmated?\n\nHomeworlds Online (SDG# 35407)\nStarted: 2019.8.1, Ended: 2019.10.2\nParticipants: speardane (S), DodoBirb (N)\nWinner: speardane\n\n1) DodoBirb: Homeworld B1 R2 G3\n\n2) speardane: Homeworld G3 B1 Y3\n\tDodoBirb: I assume a bot wouldn't play any differently whether or not it's a Homeworlds Tournament game but just to make sure, it's a Homeworlds Tournament game\n\n3) DodoBirb: Build G1 Dodobirb\n\tspeardane: Yep. Good luck!\n\tDodoBirb: Good Luck to you too!\n\n4) speardane: Build Y1 Speardane\n\n5) DodoBirb: Build G1 Dodobirb\n\n6) speardane: Trade Y3 R3 Speardane\n\n7) DodoBirb: Trade G1 B1 Dodobirb\n\n8) speardane: Build Y1 Speardane\n\n9) DodoBirb: Trade G1 Y1 Dodobirb\n\n10) speardane: Discover Y1 Speardane G2 Delos\n\n11) DodoBirb: Build Y2 Dodobirb\n\n12) speardane: Build Y2 Delos\n\n13) DodoBirb: Discover Y1 Dodobirb G3 Greeny\n\n14) speardane: Move Y2 Delos Greeny\n\n15) DodoBirb: Build B2 Dodobirb\n\n16) speardane: Build Y2 Delos\n\n17) DodoBirb: Build Y3 Dodobirb\n\n18) speardane: Build Y3 Speardane\n\n19) DodoBirb: Discover Y2 Dodobirb Y3 Sun\n\n20) speardane: Discover Y3 Speardane G2 Lebling\n\n21) DodoBirb: Move B2 Dodobirb Greeny\n\n22) speardane: Sacrifice Y2 Delos\nMove Y2 Greeny Lebling\nMove Y3 Lebling Greeny\n\n23) DodoBirb: Sacrifice Y1 Greeny\nDiscover B2 Greeny G2 Medgreen\n\n24) speardane: Move Y3 Greeny Medgreen\n\n25) DodoBirb: Discover Y3 Dodobirb G3 Greeny2\n\n26) speardane: Build R1 Speardane\n\n27) DodoBirb: Trade B2 R2 Medgreen\n\n28) speardane: Sacrifice R1 Speardane\nAttack R2 Medgreen\n\n29) DodoBirb: Trade B1 R1 Dodobirb\n\n30) speardane: Build Y1 Medgreen\n\n31) DodoBirb: Build Y2 Greeny2\n\n32) speardane: Sacrifice Y2 Lebling\nMove Y1 Delos Greeny2\nMove Y1 Medgreen Greeny2\nCatastrophe Greeny2 Yellow\n\n33) DodoBirb: Build G1 Dodobirb\n\n34) speardane: Build Y1 Medgreen\n\n35) DodoBirb: Trade G1 B1 Dodobirb\n\n36) speardane: Discover Y3 Medgreen G3 Delos\n\n37) DodoBirb: Build B2 Dodobirb\n\n38) speardane: Build Y1 Delos\n\n39) DodoBirb: Trade B2 Y2 Dodobirb\n\n40) speardane: Discover Y3 Delos G2 Lebling\n\n41) DodoBirb: Build B2 Dodobirb\n\n42) speardane: Build Y2 Lebling\n\n43) DodoBirb: Build Y3 Dodobirb\n\n44) speardane: Sacrifice Y3 Lebling\nMove Y1 Delos Dodobirb\nMove Y2 Lebling Sun\nMove Y2 Sun Dodobirb\nCatastrophe Dodobirb Yellow\n\n45) DodoBirb: Trade B2 Y2 Dodobirb\n\n46) speardane: Build Y1 Medgreen\n\n47) DodoBirb: Discover Y2 Sun G2 Forward\n\n48) speardane: Build Y2 Medgreen\n\n49) DodoBirb: Build Y3 Forward\n\n50) speardane: Build Y3 Speardane\n\n51) DodoBirb: Build Y3 Dodobirb\n\n52) speardane: Trade Y3 B3 Speardane\n\n53) DodoBirb: Discover Y2 Forward Y3 Sun\n\n54) speardane: Sacrifice Y2 Medgreen\nMove B3 Speardane Medgreen\nDiscover Y1 Medgreen G3 Delos\n\n55) DodoBirb: Build Y2 Forward\n\n56) speardane: Build R1 Medgreen\n\n57) DodoBirb: Move Y3 Dodobirb Delos\n\n58) speardane: Discover Y1 Delos G2 Lebling\n\n59) DodoBirb: Build G1 Dodobirb\n\n60) speardane: Trade R1 G1 Medgreen\n\n61) DodoBirb: Sacrifice G3 Dodobirb\nBuild G1 Dodobirb\nBuild G3 Dodobirb\nBuild B2 Dodobirb\n\n62) speardane: Discover G1 Medgreen B3 Kotok\n\n63) DodoBirb: Move G1 Dodobirb Sun\n\n64) speardane: Move Y1 Lebling Kotok\n\n65) DodoBirb: Move Y2 Dodobirb Kotok\n\n66) speardane: Move B3 Medgreen Kotok\n\n67) DodoBirb: Sacrifice Y2 Kotok\nMove B1 Dodobirb Kotok\nMove B2 Dodobirb Kotok\nCatastrophe Kotok B\n\n68) speardane: Build Y1 Medgreen\n\n69) DodoBirb: Build Y2 Delos\n\n70) speardane: Discover Y1 Medgreen B3 Lebling\n\n71) DodoBirb: Discover Y3 Delos G2 Attack\n\n72) speardane: Trade Y1 G1 Lebling\n\n73) DodoBirb: Trade G3 R3 Dodobirb\n\n74) speardane: Build G3 Lebling\n\n75) DodoBirb: Trade G1 B1 Dodobirb\n\n76) speardane: Trade G1 Y1 Lebling\n\n77) DodoBirb: Sacrifice Y2 Sun\nMove B1 Dodobirb Sun\nMove B1 Sun Attack\n\n78) speardane: Build Y2 Lebling\n\n79) DodoBirb: Trade R1 G1 Dodobirb\n\n80) speardane: Trade Y2 R2 Lebling\n\n81) DodoBirb: Trade Y3 R3 Attack\n\n82) speardane: Build Y2 Lebling\n\n83) DodoBirb: Sacrifice Y2 Delos\nMove R3 Attack Speardane\nMove Y3 Forward Speardane\n\tDodoBirb: I think I can force a win here. Hopefully your bot doesn't prove me wrong.\n\n84) speardane: Sacrifice R2 Medgreen\nAttack R3 Speardane\nAttack Y3 Speardane\n\n85) DodoBirb: Build Y2 Forward\n\n86) speardane: Sacrifice Y2 Lebling\nMove Y3 Speardane Forward\nMove R3 Speardane Attack\n\tDodoBirb: well, that is what I call "redbird" mistake. Forgetting that your opponent has red ships that can be sacrificed\n\n87) DodoBirb: Build Y2 Forward\nCatastrophe Forward Y\n\tDodoBirb: I'm not that confident in winning this game anymore\n\n88) speardane: Attack B1 Attack\n\tspeardane: [ajo says:] I HAD been quietly wondering what your big plan was. ;)\n\n89) DodoBirb: Build G1 Dodobirb\n\tDraw5PlayAll: Red bird? I would define it as the opposite mistake -- not having enough red and your opponent sends in large ships you cannot takeover\n\n90) speardane: Build Y2 Lebling\n\tDodoBirb: I suppose that follows the "bird" mistake formula better\n\n91) DodoBirb: Build G2 Dodobirb\n\n92) speardane: Build G3 Lebling\n\n93) DodoBirb: Trade G2 Y2 Dodobirb\n\n94) speardane: Sacrifice G3 Lebling\nBuild Y2 Medgreen\nBuild Y3 Speardane\nBuild Y3 Medgreen\n\n95) DodoBirb: Sacrifice G1 Sun\nBuild Y3 Dodobirb\n\n96) speardane: Sacrifice Y3 Medgreen\nMove Y1 Medgreen Lebling\nMove Y1 Lebling Dodobirb\nMove Y1 Lebling Dodobirb\nCatastrophe Dodobirb Yellow\n\n97) DodoBirb: Trade R3 Y3 Dodobirb\n\n98) speardane: Move Y3 Speardane Attack\n\n99) DodoBirb: Build Y1 Dodobirb\n\n100) speardane: Build Y1 Attack\n\n101) DodoBirb: Trade Y1 G1 Dodobirb\n\n102) speardane: Discover Y3 Attack G3 Delos\n\n103) DodoBirb: Discover G1 Dodobirb B3 Bluey\n\n104) speardane: Build G2 Lebling\n\n105) DodoBirb: Trade G1 Y1 Bluey\n\n106) speardane: Sacrifice G2 Lebling\nBuild Y2 Delos\nBuild Y3 Attack\n\n107) DodoBirb: Move G1 Dodobirb Bluey\n\n108) speardane: Move Y3 Attack Bluey\n\n109) DodoBirb: Sacrifice Y1 Bluey\nMove G1 Bluey Dodobirb\n\n110) speardane: Discover Y3 Delos G1 Kotok\n\n111) DodoBirb: Build G2 Dodobirb\n\n112) speardane: Discover Y2 Delos B2 Minsky\n\n113) DodoBirb: Trade G1 R1 Dodobirb\n\n114) speardane: Discover Y2 Minsky G1 Delos\n\n115) DodoBirb: Build G3 Dodobirb\n\n116) speardane: Move G3 Lebling Dodobirb\nCatastrophe Dodobirb Green\n\n117) DodoBirb: Trade R1 G1 Dodobirb\n\n118) speardane: Trade Y3 G3 Bluey\n\n119) DodoBirb: Trade Y3 G3 Dodobirb\n\n120) speardane: Build Y1 Delos\n\n121) DodoBirb: Trade G1 R1 Dodobirb\n\n122) speardane: Move Y2 Delos Bluey\n\n123) DodoBirb: Build G1 Dodobirb\n\n124) speardane: Build Y3 Delos\n\n125) DodoBirb: Pass\n\n126) speardane: Build Y3 Delos\n\n127) DodoBirb: Pass\n\n128) speardane: Sacrifice Y3 Delos\nMove R2 Lebling Dodobirb\nMove R3 Attack Lebling\nMove R3 Lebling Dodobirb\nCatastrophe Dodobirb Red\n\tspeardane: [ajo says:] One known weakness of speardane is that because it's greedily optimizing for "good position," it might just keep building up ships forever and never actually go for the kill. I mean, it might; but be aware that it's easily distracted by local maxima. If you're watching to see what its grand plan is to finish this game, I'll tell you right now that it doesn't have any grand plan!\n\tDodoBirb: right now I don't really see any move that isn't suicide so I guess I'll keep passing\n\n129) DodoBirb: Pass\n\n130) speardane: Move Y3 Delos Lebling\n\tDodoBirb: Good game\n\n131) DodoBirb: Pass\n\n132) speardane: Trade Y3 R3 Lebling\n\n\tspeardane: [ajo says:] So are we reporting this as a win for speardane? Or are you still playing for the draw-by-Arthur-gets-bored?\n\tDodoBirb: let's just report this as a win\n\tDraw5PlayAll: I sense that there exists a way to easily check for mate-in-two situations, like "opponent has no red and I can move an R3 into their homeworld". That would allow the bot to win more easily.\r\n\r\nOr just make an AlphaHomeworlds neural net.\n\nHomeworlds Online (SDG# 35304)\nVariants: "Hard time"\nStarted: 2019.8.2, Ended: 2019.8.5\nParticipants: Trydnt (S), MasterBri (N)\nWinner: MasterBri\n\n1) MasterBri: Homeworld B3 Y2 G1 *\n\n\nHomeworlds Online (SDG# 35348)\nVariants: "Hard time"\nStarted: 2019.8.6, Ended: 2019.9.24\nParticipants: bhorner (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Have fun! :-)\n\n2) bhorner: Homeworld R1 B2 G3\n\n3) Simon: Build B1 Simon\n\tbhorner: Thanks, you too! :)\n\n4) bhorner: Build G1 Bhorner\n\n5) Simon: Trade B1 R1 Simon\n\n6) bhorner: Build G1 Bhorner\n\n7) Simon: Build R2 Simon\n\n8) bhorner: Trade G1 Y1 Bhorner\n\n9) Simon: Trade R2 Y2 Simon\n\n10) bhorner: Build Y1 Bhorner\n\n11) Simon: Build R2 Simon\n\n12) bhorner: Discover Y1 Bhorner G3 Tree\n\n13) Simon: Trade R2 G2 Simon\n\n14) bhorner: Discover Y1 Tree Y1 Happy\n\n15) Simon: Build Y2 Simon\n\n16) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Happy\nBuild Y3 Bhorner\nBuild Y3 Bhorner\n\n17) Simon: Discover Y2 Simon B2 B2\n\n18) bhorner: Sacrifice Y2 Happy\nDiscover Y1 Happy B2 Cloud\nDiscover Y1 Bhorner R3 Volcano\n\n19) Simon: Move G2 Simon Cloud\n\n20) bhorner: Trade Y3 R3 Bhorner\n\n21) Simon: Build R2 Simon\n\n22) bhorner: Build R2 Bhorner\n\n23) Simon: Move R2 Simon Cloud\n\n24) bhorner: Discover R2 Bhorner R3 Fire\n\n25) Simon: Attack Y1 Cloud\n\n26) bhorner: Discover Y3 Bhorner G3 Tree\n\n27) Simon: Build Y1 Cloud\n\n28) bhorner: Build G1 Bhorner\n\n29) Simon: Build G1 Cloud\n\n30) bhorner: Trade G1 B1 Bhorner\n\n31) Simon: Build R2 Cloud\n\n32) bhorner: Sacrifice B1 Bhorner\nTrade R2 G2 Fire\n\n33) Simon: Move Y1 Cloud Tree\n\n34) bhorner: Discover Y3 Tree G2 Bush\n\n35) Simon: Move G2 Cloud Volcano\n\n36) bhorner: Move Y1 Volcano Bhorner\n\n37) Simon: Move R2 Cloud Tree\n\n38) bhorner: Move Y3 Bush Volcano\n\n39) Simon: Sacrifice G2 Volcano\nBuild Y2 Tree\nBuild R2 Tree\n\n40) bhorner: Move R3 Bhorner Tree\n\n41) Simon: Build Y3 Cloud\n\n\tbhorner: I just got back from my trip last night... sorry about that. There was so much going on that I completely forgot about the game!\n\tSimon: No problem. Looking forward to our tournament game!\n\nHomeworlds Online (SDG# 35417)\nStarted: 2019.8.7, Ended: 2019.12.2\nParticipants: nycavri (S), Laurie_Menke (N)\nWinner: Laurie_Menke\n\n1) Laurie_Menke: Homeworld Y3 B1 G3\n\tLaurie_Menke: Alright, Avri, let's do this! I have two weeks until I leave for Burning Man. That should give you enough time to thoroughly trounce me. :) Have fun! (And yes, I remember that I need to fill out the form.)\n\n2) nycavri: Homeworld B3 Y2 G3\n\tLaurie_Menke: Ah, and the form reminded me to remind you that this is for the Great Homeworlds Tournament of 2019! :)\n\tnycavri: Acknowledging that this is a 2019 Tournament game.\n\tnycavri: Acknowledging that this is a 2019 Tournament game.\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\n4) nycavri: Build G1 Nycavri\n\n5) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n6) nycavri: Trade G1 Y1 Nycavri\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) nycavri: Build G1 Nycavri\n\n9) Laurie_Menke: Build R1 Laurie_menke\n\n10) nycavri: Trade G1 R1 Nycavri\n\n11) Laurie_Menke: Build R2 Laurie_menke\n\tnycavri: You're being awfully aggressive this year!\n\n12) nycavri: Build R2 Nycavri\n\tLaurie_Menke: LOL! You know me. I don't have an aggressive bone in my body. :)\n\tLaurie_Menke: But then again... if you're going to leave me a medium...\n\n13) Laurie_Menke: Trade R2 Y2 Laurie_menke\n\n14) nycavri: Build G1 Nycavri\n\n15) Laurie_Menke: Build R2 Laurie_menke\n\n16) nycavri: Build Y1 Nycavri\n\n17) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n18) nycavri: Discover Y1 Nycavri G1 Deacon\n\n19) Laurie_Menke: Build G2 Laurie_menke\n\n20) nycavri: Discover Y1 Deacon G2 May\n\n21) Laurie_Menke: Move R2 Laurie_menke May\n\tLaurie_Menke: I'm sorry for the long delay, Avri. :( Thanks for the gentle reminder. I was at Burning Man and forgot to tell you. That was sucky of me, and I'm very sorry.\n\n22) nycavri: Discover Y1 May G3 Mercury\n\tnycavri: No problem - welcome back! Now, where were we?\n\n23) Laurie_Menke: Move G2 Laurie_menke May\n\n24) nycavri: Build Y1 Mercury\n\n25) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G1 Laurie_menke\nBuild G2 May\nBuild G3 Laurie_menke\n\n26) nycavri: Build Y2 Mercury\n\n27) Laurie_Menke: Sacrifice B1 Laurie_menke\nTrade G2 B2 May\n\n28) nycavri: Discover Y1 Mercury B2 Taylor\n\n29) Laurie_Menke: Trade G1 B1 Laurie_menke\n\n30) nycavri: Move Y1 Mercury Taylor\n\n31) Laurie_Menke: Move Y2 Laurie_menke Taylor\n\n32) nycavri:\nBuild Y3 Mercury\n\n33) Laurie_Menke: Build R1 May\n\n34) nycavri: Move Y1 Taylor Laurie_menke\n\tnycavri: b y3 mercury\n\n35) Laurie_Menke: Build R2 Laurie_menke\n\n36) nycavri: Move Y1 Taylor Laurie_menke\n\tnycavri: Must have missed an email notification . . .\n\n37) Laurie_Menke: Sacrifice G1 Laurie_menke\nBuild Y3 Taylor\n\tLaurie_Menke: No worries! :)\n\n38) nycavri: Sacrifice Y3 Mercury\nDiscover Y1 Nycavri B1 Edney\nMove Y1 Edney Taylor\nMove Y1 Taylor Laurie_menke\nCatastrophe Laurie_menke Y\n\n39) Laurie_Menke: Sacrifice Y2 Taylor\nMove R1 Laurie_menke Nycavri\nMove R2 Laurie_menke Nycavri\nCatastrophe Nycavri R\n\n40) nycavri: Trade G1 R1 Nycavri\n\n41) Laurie_Menke: Sacrifice G2 May\nBuild G1 Laurie_menke\nBuild Y1 Taylor\n\n42) nycavri: Build G1 Nycavri\n\n43) Laurie_Menke: Trade B2 Y2 May\n\tnycavri: I'm back, I'm back!\n\tLaurie_Menke: Yay! :) Everything OK in your world?\n\n44) nycavri: Trade G1 B1 Nycavri\n\n45) Laurie_Menke: Move Y3 Taylor Laurie_menke\n\tnycavri: Sort of OK. Buried my (96 year old) Grandma. Layoffs at work. I'm OK, it's just a lot . . .\r\n\r\nThanks for asking.\n\tLaurie_Menke: Oh, I'm very sorry. That's rough. Were you one of the ones laid off?\r\n\r\nWishing you and your family better times right around the corner!\r\nLet me know if there's anything I can do to help.\n\n46) nycavri: Build B2 Nycavri\n\tnycavri: Not laid off, but hours / salary cut. Looking at it as an opportunity to write / publish.\n\n47) Laurie_Menke: Move B1 Laurie_menke Nycavri\nCatastrophe Nycavri Blue\n\tLaurie_Menke: That sounds fun! And during NaNoWriMo, too!\n\n48) nycavri: Build Y1 Mercury\n\n49) Laurie_Menke: Move Y2 May Mercury\n\n50) nycavri: Build G1 Nycavri\n\n51) Laurie_Menke: Sacrifice R2 May\nAttack Y2 Mercury\nAttack Y1 Mercury\n\n52) nycavri: Move G1 Nycavri Laurie_menke\n\n53) Laurie_Menke: Sacrifice Y3 Laurie_menke\nMove Y2 Mercury Nycavri\nMove Y2 Mercury Nycavri\nMove Y1 Mercury Nycavri\nCatastrophe Nycavri Yellow\n\n\tLaurie_Menke: No problem! Hope you had an awesome time! :)\n\tLaurie_Menke: Sorry you came back to an empty Homeworld. ;) Thanks for the fun! :)\n\tnycavri: I honestly thought I had you in mate a few moves back, realized at the last minute you had an out, and never really recovered . . .\r\n\r\nGood game, and thanks for the fun!\n\nHomeworlds Online (SDG# 35427)\nStarted: 2019.8.7, Ended: 2019.9.11\nParticipants: eliscinsky (S), Felix (N)\nWinner: Felix\n\n1) Felix: H R1 B3 G3\n\n2) eliscinsky: Homeworld R1 B2 G3\n\teliscinsky: This is for the Great Homeworlds Tournament 2019\n\n3) Felix: Build G1 Felix\n\tFelix: Agreed! Good luck and have fun :)\n\n4) eliscinsky: Build G1 Eliscinsky\n\teliscinsky: Thanks U2!\n\n5) Felix: Trade G1 R1 Felix\n\n6) eliscinsky: Trade G1 Y1 Eliscinsky\n\teliscinsky: Now THAT was an interesting move\n\teliscinsky: you locked me out of red for a while. very clever.\n\n7) Felix: Build R2 Felix\n\n8) eliscinsky: Build G1 Eliscinsky\n\tFelix: Thanks! I hope I don't regret losing out on movement for a while though.\n\teliscinsky: Haha! You can always trade.\n\n9) Felix: Trade R2 Y2 Felix\n\n10) eliscinsky: Build Y1 Eliscinsky\n\tFelix: Oh yeah! Thanks for reminding me :)\n\n11) Felix: Build R2 Felix\n\n12) eliscinsky: Build G1 Eliscinsky\n\n13) Felix: D R2 Felix B2 Rim\n\n14) eliscinsky: Trade G1 B1 Eliscinsky\n\n15) Felix: S G3 Felix\nB R2 Rim\nB R2 Rim\nB R3 Felix\n\n16) eliscinsky: Discover B1 Eliscinsky G3 G3\n\n17) Felix: T R3 G3 Felix\n\n18) eliscinsky: Move Y1 Eliscinsky G3\n\n19) Felix: S Y2 Felix\nM R2 Rim G3\nD R2 Rim B3 Mach7\n\n20) eliscinsky: Build B1 G3\n\n21) Felix: Sacrifice G3 Felix\nBuild R3 Mach7\nBuild R3 Felix\nBuild R3 G3\n\n22) eliscinsky: Trade B1 G1 G3\n\n23) Felix: Sacrifice R3 G3\nAttack G1 G3\nAttack Y1 G3\nAttack B1 G3\n\n24) eliscinsky: Trade G1 B1 Eliscinsky\n\n25) Felix: Build R3 G3\n\n26) eliscinsky: Build G1 Eliscinsky\n\n27) Felix: Trade R3 Y3 G3\n\n28) eliscinsky: Move G1 Eliscinsky G3\n\n29) Felix: S G1 G3\nB R3 G3\n\n30) eliscinsky: Build G1 G3\n\n31) Felix: Sacrifice Y3 G3\nMove R3 Mach7 Eliscinsky\nMove R3 G3 Eliscinsky\nPass\n\n32) eliscinsky: Attack R3 Eliscinsky\n\n33) Felix: Sacrifice R3 Felix\nAttack R3 Eliscinsky\nAttack G3 Eliscinsky\nAttack B1 Eliscinsky\n\n34) eliscinsky: Build G1 G3\nCatastrophe G3 Green\n\n35) Felix: A Y1 Eliscinsky\n\teliscinsky: Sorry, I have not been getting SDG emails for some reason.\n\n\teliscinsky: You were going to win anyway ... LOL\n\tFelix: Always fun to go out with a bang :) well played! Great game\n\nHomeworlds Online (SDG# 35426)\nStarted: 2019.8.9, Ended: 2019.9.24\nParticipants: wil (S), eliscinsky (N)\nWinner: wil\n\n1) eliscinsky: Homeworld R1 B3 G3\n\n2) wil: H Y2 B1 G3\n\teliscinsky: This is for the Great Homeworlds Tournament 2019 \n\twil: It has begun! \n\n3) eliscinsky: Build G1 Eliscinsky\n\n4) wil: B G1 Wil\n\n5) eliscinsky: Trade G1 Y1 Eliscinsky\n\n6) wil: T G1 R1 Wil\n\n7) eliscinsky: Build Y1 Eliscinsky\n\twil: Have fun\n\teliscinsky: Thanks ... You too! \n\n8) wil: B R1 Wil\n\n9) eliscinsky: Discover Y1 Eliscinsky G2 G2win\n\n10) wil: B R2 Wil\n\n11) eliscinsky: Build G1 Eliscinsky\n\n12) wil: D R2 Wil Y3 Y3\n\n13) eliscinsky: Move Y1 G2win Eliscinsky\n\n14) wil: B R2 Wil\n\n15) eliscinsky: Build G1 Eliscinsky\n\n16) wil: D R2 Wil B3 B3\n\n17) eliscinsky: Trade G1 B1 Eliscinsky\n\n18) wil: S G3 Wil\nB R2 Y3\nB R3 B3\nB R3 Wil\n\n19) eliscinsky: Discover G1 Eliscinsky Y2 Y2\n\teliscinsky: Yikes!\n\n20) wil: T R3 G3 Wil\n\n21) eliscinsky: Build G1 Y2\n\n22) wil: M R2 Y3 Y2\n\n23) eliscinsky: Build G1 Eliscinsky\n\twil: Our dept of defensive investigations has arrived\n\twil: Pardon us for a short inspection.\n\n24) wil: A G1 Y2\n\n25) eliscinsky: Build G2 Y2\n\n26) wil: B R3 Y2\n\n27) eliscinsky: Build G2 Y2\nCatastrophe Y2 Green\n\n28) wil: T R3 G3 B3\n\n29) eliscinsky: Build B1 Eliscinsky\n\n30) wil: B R3 B3\n\n31) eliscinsky: Build G1 Eliscinsky\n\n32) wil: T R3 Y3 B3\n\twil: I feel like a warmonger\n\teliscinsky: Sorry, I have not been getting SDG emails for some reason.\n\n33) eliscinsky: Discover G1 Eliscinsky Y2 Yellow2\n\twil: No.worries\n\n34) wil: S G3 B3\nB G1 Wil\nB R3 B3\nB R3 B3\n\teliscinsky: If a player were to create a 4th unit of a color [in a sector] and not call for a catastrophe, could the opponent call the catastrophe on their next turn?\n\n35) eliscinsky: Build G2 Yellow2\n\twil: Yes\n\n36) wil: S Y3 B3\nM R3 B3 Y2\nM R3 Y2 Eliscinsky\nM R3 Y2 Eliscinsky\n\n37) eliscinsky: Attack R3 Eliscinsky\n\n38) wil: S R2 B3\nA R3 Eliscinsky\nA G3 Eliscinsky\n\teliscinsky: :D - And so it begins - :)\n\n39) eliscinsky: Build B2 Eliscinsky\n\n40) wil: C Eliscinsky B\nS R3 B3\nA G1 Eliscinsky\nA Y1 Eliscinsky\nA Y1 Eliscinsky\n\twil: I could a prepped more...\n\n\twil: Gg\n\nHomeworlds Online (SDG# 35447)\nVariants: "Hard time"\nStarted: 2019.8.12, Ended: 2019.9.30\nParticipants: Jerome (S), SilentTitan (N)\nWinner: Jerome\n\n1) SilentTitan: Homeworld R1 B2 G3\n\n2) Jerome: Homeworld R3 B1 G3\n\n3) SilentTitan: Build G1 Silenttitan\n\n4) Jerome: Build G1 Jerome\n\n5) SilentTitan: Trade G1 Y1 Silenttitan\n\n6) Jerome: Trade G1 Y1 Jerome\n\n7) SilentTitan: Build G1 Silenttitan\n\n8) Jerome: Build G1 Jerome\n\n9) SilentTitan: Trade G1 B1 Silenttitan\n\n10) Jerome: Trade G1 B1 Jerome\n\n11) SilentTitan: Build B2 Silenttitan\n\n12) Jerome: Build B2 Jerome\n\n13) SilentTitan: Discover B1 Silenttitan G3 Sol\n\n14) Jerome: Discover B1 Jerome G2 Alpha\n\n15) SilentTitan: Sacrifice G3 Silenttitan\nBuild B3 Silenttitan\nBuild B3 Sol\nBuild B3 Sol\n\n16) Jerome: Sacrifice Y1 Jerome\nMove B1 Alpha Sol\nCatastrophe Sol B\n\n17) SilentTitan: Trade B2 G2 Silenttitan\n\n18) Jerome: Build B1 Jerome\n\n19) SilentTitan: Build B1 Silenttitan\n\n20) Jerome: Trade B1 Y1 Jerome\n\n21) SilentTitan: Discover B1 Silenttitan G3 Soul\n\n22) Jerome: Build Y1 Jerome\n\n23) SilentTitan: Build B1 Silenttitan\n\n24) Jerome: Discover Y1 Jerome G2 Alpha\n\n25) SilentTitan: Trade B3 G3 Silenttitan\n\n26) Jerome: Build Y2 Jerome\n\n27) SilentTitan: Discover B1 Silenttitan Y3 Sole\n\n28) Jerome: Discover Y1 Jerome G2 Vega\n\n29) SilentTitan: Build G1 Silenttitan\n\n30) Jerome: Build Y2 Jerome\n\n\tSilentTitan: Well played thanks for the game\n\nHomeworlds Online (SDG# 35441)\nVariants: "Hard time"\nStarted: 2019.8.12, Ended: 2019.8.28\nParticipants: bhorner (S), Laurie_Menke (N)\nWinner: bhorner\n\n1) Laurie_Menke: Homeworld B3 Y1 G3\n\tLaurie_Menke: Hi! Thanks for the challenge! I know this is a ladder game, but is it also part of the Great Homeworlds Challenge of 2019?\n\n2) bhorner: Homeworld B1 R2 G3\n\tbhorner: I wasn't planning for it to be part of the tournament, are you in it? I was just getting back into the game here at SDG and wanted extra practice for the tournament. :)\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Gotcha. Yes, I am in the tournament, and that's fine if you just want to practice. :)\n\n4) bhorner: Build G1 Bhorner\n\n5) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\n6) bhorner: Trade G1 Y1 Bhorner\n\tDraw5PlayAll: For the record, I think tournament game clocks have to be 7/2/7 but ladder games are 3/3/10, so a game cannot really be both at once...\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Fair enough.\n\n8) bhorner: Build Y1 Bhorner\n\n9) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G1 Yellow\nBuild G2 Laurie_menke\nBuild G2 Yellow\n\n10) bhorner: Discover Y1 Bhorner G3 Tree\n\n11) Laurie_Menke: Trade G2 Y2 Laurie_menke\n\n12) bhorner: Sacrifice G3 Bhorner\nBuild Y2 Tree\nBuild Y3 Tree\nBuild Y3 Bhorner\n\tLaurie_Menke: Sorry... forgot what I was doing for a minute...\n\n\tbhorner: No worries, that's why the option is there. :)\n\tLaurie_Menke: ::sigh:: I'm sorry, bhorner. I know that's not how you wanted to win. I had really hoped to finish this game before going off grid for 10 days for Burning Man, but the week before that got extremely busy and I didn't even have time to warn you I'd be gone. I'm extremely sorry. :(\n\tbhorner: Oh burning man, that's cool!\r\nNo worries, it happens, we'll play in the tournament later. :)\n\tLaurie_Menke: :) Thank you!\n\nHomeworlds Online (SDG# 35449)\nStarted: 2019.8.13, Ended: 2019.9.10\nParticipants: bhorner (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: To confirm, this game is for the tournament. Good luck!\n\n2) bhorner: Homeworld B1 R3 G3\n\tbhorner: Cool, good luck to you too! (you stole my homeworld setup by the way.... *grumble*) :)\n\n3) Babamots: Build G1 Babamots\n\n4) bhorner: Build G1 Bhorner\n\n5) Babamots: Trade G1 B1 Babamots\n\n6) bhorner: Trade G1 Y1 Bhorner\n\n7) Babamots: Build G1 Babamots\n\n8) bhorner: Build Y1 Bhorner\n\n9) Babamots: Trade G1 Y1 Babamots\n\n10) bhorner: Build Y2 Bhorner\n\n11) Babamots: Build Y2 Babamots\n\n12) bhorner: Discover Y1 Bhorner G2 Bush\n\n13) Babamots: Discover Y1 Babamots G3 Orion\n\n14) bhorner: Trade Y1 B1 Bhorner\n\n15) Babamots: Build B2 Babamots\n\n16) bhorner: Build B2 Bhorner\n\tbhorner: I thought long and hard about that... It really seemed like the best move, but it keeps us so similar to each other...\n\tBabamots: I expected to fight for blue control first, but at least we got around to it eventually.\r\n\r\nSorry to be so slow. I'm traveling and very distracted.\n\n17) Babamots: Move B2 Babamots Orion\n\tbhorner: No worries, there are time controls. I'm bound to be slow on you before the end. :)\n\tbhorner: I don't see how I'll ever get ahead if I keep following you around...\n\tbhorner: But if I put myself behind, I won't get ahead either. :)\n\n18) bhorner: Move B1 Bhorner Bush\n\n19) Babamots: Build B3 Orion\n\n20) bhorner: Build B3 Bush\n\tBabamots: I don't much like long mirror sessions, but I think it's the best thing for you at the moment and I don't know of a good way to break it yet.\n\n21) Babamots: Discover B3 Orion Y2 Iconia\n\tbhorner: I've been making moves just to keep the mirror alive, so you couldn't burst ahead. :) I'm sure something will happen to break it. I wish it didn't feel so much like luck (possibly a little in your favor) who will have the advantage in that moment.\n\n22) bhorner: Trade B3 R3 Bush\n\tbhorner: Maybe now. Maybe it won't look like an advantage, just a choice.\n\n23) Babamots: Discover B2 Orion G2 Betazed\n\n24) bhorner: Build B3 Bush\n\n25) Babamots: Build B3 Betazed\n\n26) bhorner: Trade B3 Y3 Bush\n\n27) Babamots: Trade B2 R2 Betazed\n\n28) bhorner: Discover Y1 Bush B3 Puddle\n\n29) Babamots: Sacrifice G3 Babamots\nBuild Y1 Orion\nBuild Y3 Orion\nBuild Y3 Babamots\n\n30) bhorner: Sacrifice Y2 Bhorner\nMove Y1 Puddle Betazed\nMove Y1 Betazed Orion\nCatastrophe Orion Y\n\n31) Babamots: Build R1 Betazed\n\tbhorner: Really feels like I had no choice. A small gain for you.\n\n32) bhorner: Build Y1 Bush\n\n33) Babamots: Build R1 Betazed\n\n34) bhorner: Discover Y1 Bush G3 Tree\n\n35) Babamots: Sacrifice Y2 Babamots\nMove R1 Betazed Bhorner\nMove B3 Betazed Bhorner\n\n36) bhorner: Attack B3 Bhorner\n\n37) Babamots: Sacrifice Y3 Babamots\nMove R1 Betazed Bhorner\nMove R2 Betazed Bhorner\nMove B3 Iconia Bhorner\nCatastrophe Bhorner R\nCatastrophe Bhorner B\n\n\tBabamots: GG! Good luck in the tournament!\r\n\r\nI wonder if my lonely little ship feels victorious...\n\tbhorner: Wow. I'm so glad you won in a way i didn't see coming. That was pretty spectacular. :)\n\tBabamots: Glad you liked it. :-)\r\n\r\nI suppose I prefer losing abruptly and unexpectedly. That kind of loss can show you something specific to look out for in the future. I feel more discouraged after those long drawn out games where I never make any headway and gradually get my life squeezed out.\n\tbhorner: Yeah, I never looked past one of the catastrophes. I thought I kind of had no choice, but didn't realize it was over already.\n\nHomeworlds Online (SDG# 35453)\nStarted: 2019.8.14, Ended: 2019.9.12\nParticipants: kataclysm (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld R1 B3 G3\n\tkataclysm: Can you read what I've typed here? Is this the box for communicating between players?\n\tFelix: Yep! You've got it. And you enter your commands for the game up top. This game is for the Homeworlds tournament! Good luck and have fun :)\n\n2) kataclysm: Homeworld B2 G1 R3\n\n3) Felix: Build G1 Felix\n\tkataclysm: Yes, for Homeworlds tournament. I have only played Homeworlds 3 times, but I really liked it. You will almost certainly end up winning! I'm just in this to have a good time and get practice. :)\n\tFelix: That's the best way to learn! I still lose a lot, but I lost probably my first 30 or so games on here, but it's always a win if you have fun and learn something and get a bit better every time. So have fun!\n\n4) kataclysm: Build R1 Kataclysm\n\n5) Felix: Trade G1 Y1 Felix\n\n6) kataclysm: Trade R1 Y1 Kataclysm\n\n7) Felix: Build G1 Felix\n\n8) kataclysm: Trade R3 Y3 Kataclysm\n\n9) Felix: B G1 Felix\n\n10) kataclysm: Trade Y1 R1 Kataclysm\n\tFelix: One word of advice is to try and diversify the colors you have available. Trading all your red away for yellow leaves you with no red. Always better to build another red before you trade, so that you always have a red somewhere and don't lose that color. Make sense?\n\n11) Felix: D G1 Felix B2 Rim\n\tkataclysm: I'm sure it will make more sense as I go along :)\n\n12) kataclysm: Build Y1 Kataclysm\n\n13) Felix: B G2 Rim\n\n14) kataclysm: Build R1 Kataclysm\n\n15) Felix: T G2 Y2 Rim\n\n16) kataclysm: Build R2 Kataclysm\n\n17) Felix: Build G2 Rim\n\n18) kataclysm: Trade R1 B1 Kataclysm\n\n19) Felix: Discover G2 Rim B3 Rom\n\n20) kataclysm: Move R2 Kataclysm Rom\n\tkataclysm: I tried to fly my red medium ship to Rom by saying "move r2 Rom" and the game won't let me, saying "The system does not exist."\n\tFelix: You have to specify the system you're moving it from first. So "move r2 kataclysm rom". You can also shorten most commands to just the first letter. So you can say m r2 etc instead of move r2\n\n21) Felix: S G2 Rom\nB G2 Rim\nB G2 Rim\n\tkataclysm: Thanks\n\n22) kataclysm: Build R1 Kataclysm\n\n23) Felix: Trade G2 R2 Rim\n\n24) kataclysm: Build R2 Kataclysm\n\n25) Felix: Discover G2 Rim B3 Ram\n\n26) kataclysm: Move R2 Kataclysm Ram\n\n27) Felix: Sacrifice R2 Rim\nAttack R2 Ram\nPass\n\n28) kataclysm: Trade R2 G2 Rom\n\n29) Felix: Sacrifice G3 Felix\nBuild G2 Ram\nBuild G3 Rim\nBuild G3 Felix\n\n30) kataclysm: Build R2 Kataclysm\n\n31) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild G3 Ram\nBuild R2 Ram\n\n32) kataclysm: Discover R1 Kataclysm Y3 Glorax\n\n33) Felix: Trade G3 Y3 Ram\n\n34) kataclysm: Build B1 Kataclysm\n\n35) Felix: T G1 B1 Felix\n\n36) kataclysm: Move B1 Kataclysm Glorax\n\n37) Felix: Discover G1 Rim R3 Volcano\n\n38) kataclysm: Discover B1 Kataclysm G3 Grassyknoll\n\n39) Felix: M Y2 Rim Grassyknoll\n\n40) kataclysm: Build B2 Grassyknoll\n\n41) Felix: Sacrifice R2 Ram\nAttack B2 Grassyknoll\nAttack B1 Grassyknoll\n\n42) kataclysm: Trade B1 G1 Glorax\n\n43) Felix: Move G2 Ram Kataclysm\n\n44) kataclysm: Attack G2 Kataclysm\n\n45) Felix: Sacrifice Y2 Grassyknoll\nMove G2 Ram Kataclysm\nMove G1 Volcano Kataclysm\nCatastrophe Kataclysm Green\n\tkataclysm: Welcome to my humble star-system.\n\n46) kataclysm: Trade R1 G1 Kataclysm\n\tFelix: Why thank you! Oh dear... but I seem to have overpopulated your system a bit. Oops!\n\n47) Felix: Sacrifice Y3 Ram\nMove B1 Grassyknoll Kataclysm\nMove B2 Grassyknoll Kataclysm\nMove B1 Felix Kataclysm\nCatastrophe Kataclysm Blue\n\tkataclysm: This is why we can't have nice things!\n\tFelix: Oh dear, I seem to have done it again! \r\nThanks for playing and I hope you had fun and learned some things! Feel free to challenge me outside of the tournament if you'd like to play more!\n\tkataclysm: Thanks for the game :)\n\n\nHomeworlds Online (SDG# 35323)\nStarted: 2019.8.15, Ended: 2019.8.29\nParticipants: MobyNostromo (S), Owlman (N)\nWinner: Owlman\n\n1) Owlman: Homeworld Y2 B1 G3\n\n\nHomeworlds Online (SDG# 35346)\nVariants: "Hard time"\nStarted: 2019.8.15, Ended: 2019.8.28\nParticipants: Owlman (S), dlwillson (N)\nWinner: dlwillson\n\n1) dlwillson: H R3 B1 G3\n\n2) Owlman: Homeworld B1 Y2 G3\n\tdlwillson: Thanks for the game! Good luck, and have fun!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Owlman: Build G1 Owlman\n\n5) dlwillson: T G1 B1 Dlwillson\n\n6) Owlman: Discover G1 Owlman B3 Hoth\n\n7) dlwillson: B B2 Dlwillson\n\n8) Owlman: Build G1 Hoth\n\n9) dlwillson: T B2 Y2 Dlwillson\n\n10) Owlman: Trade G1 Y1 Hoth\n\n11) dlwillson: B B2 Dlwillson\n\n12) Owlman: Build Y1 Hoth\n\n13) dlwillson: D B1 Dlwillson G2 Field\n\n14) Owlman: Trade Y1 R1 Hoth\n\n15) dlwillson: B B2 Field\n\n16) Owlman: Move R1 Hoth Field\n\n17) dlwillson: T B2 R2 Field\n\n\nHomeworlds Online (SDG# 35459)\nVariants: "Hard time"\nStarted: 2019.8.15, Ended: 2019.8.18\nParticipants: wil (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld B1 Y2 G3\n\n2) wil: H G3 B1 B3 *\n\twil: Should we make it a tournament game?\n\n3) Felix: Build G1 Felix\n\tFelix: If you'd like to, sure! Let's do it :) Ahem... this is for the Great Homeworlds Tournament 2019. Agreed?\n\n4) wil: B B1 Wil\n\twil: Oopsthe setup requirements don't match, I'm good tho\n\n5) Felix: Build G1 Felix\n\tFelix: It works for me. I won't let this one time out ;)\n\n6) wil: T B3 Y3 Wil\n\tFelix: I"m not too excited about your opening though... I never know how to counter this.\n\twil: We can hold off if you choose\n\n7) Felix: Discover G1 Felix B3 Mach7\n\tFelix: Nope! I'm game to make it a tournament game. I'm a fan of using any opening that seems the most effective, no matter the setting. It's one of the ways you can make up a bit for having to move second.\n\n8) wil: B B2 Wil\n\twil: I.enjoy experimenting with weird openings\n\n9) Felix: Build G1 Mach7\n\n10) wil: D B2 Wil G2 G2\n\n11) Felix: B G2 Mach7\n\twil: Another fine mess you've gotten me into!\n\n12) wil: T B2 G2 G2\n\n13) Felix: T G2 Y2 Mach7\n\n14) wil: B B2 Wil\n\tFelix: I would've gotten away with it it too, if it weren't for your meddling green!\n\n15) Felix: D G1 Mach7 B2 Mach5\n\n16) wil: D B1 Wil G2 Gtoo\n\twil: I am in such trouble!\n\n17) Felix: S G3 Felix\nB G3 Felix\nB G3 Mach5\nB Y1 Mach7\n\n18) wil: B B2 Wil\n\n19) Felix: T G3 B3 Mach5\n\tFelix: You are in a bit of it, for sure! Any regrets about suggesting this be a tournament game? :) It's never over till it's over though.\n\n20) wil: B G3 G2\n\n21) Felix: S Y2 Mach7\nM B3 Mach5 Wil\nM G1 Mach5 Wil\nC Wil Blue\n\n22) wil: S B1 Gtoo\nT G2 B2 G2\n\n23) Felix: S G3 Felix\nB G2 Wil\nB G2 Wil\nB G3 Felix\nC Wil Green\n\n\twil: Gg\n\tFelix: Good game!\n\nHomeworlds Online (SDG# 35385)\nVariants: "Hard time"\nStarted: 2019.8.15, Ended: 2019.8.28\nParticipants: wil (S), Owlman (N)\nWinner: wil\n\n1) Owlman: Homeworld G3 B2 R3\n\n2) wil: H Y2 B1 G3\n\twil: Thx for the challenge! Is this a tourney game?\n\n3) Owlman: Build R1 Owlman\n\n4) wil: B G1 Wil\n\n5) Owlman: Trade R1 Y1 Owlman\n\n6) wil: T G1 B1 Wil\n\n7) Owlman: Build R1 Owlman\n\n8) wil: B B1 Wil\n\n9) Owlman: Trade R3 G3 Owlman\n\n10) wil: D B1 Wil Y3 Y3\n\n11) Owlman: Discover R1 Owlman R1 Red\n\n12) wil: B B2 Wil\n\n13) Owlman: Move Y1 Owlman Red\n\n14) wil: D B2 Wil Y3 Why3\n\n15) Owlman: Move R1 Red Y3\n\n16) wil: D B1 Y3 R1 R1\n\n17) Owlman: Build G1 Owlman\n\n18) wil: S G3 Wil\nB B2 Why3\nB B3 R1\nB B3 Wil\n\n\nHomeworlds Online (SDG# 35361)\nVariants: "Unrated"\nStarted: 2019.8.15, Ended: 2020.9.5\nParticipants: wil (S), arkayy (N)\nWinner: wil\n\n1) arkayy: Homeworld R1 B2 G3\n\n2) wil: H B3 Y2 G3\n\twil: Thx for the game? For the tourney?\n\n3) arkayy: Build G1 Arkayy\n\n4) wil: B G1 Wil\n\tarkayy: New to Homeworlds. Thanks for being my first on SDG. What tourney?\n\twil: If new would be trouble, but an online tourney \n\n5) arkayy: Trade G1 B1 Arkayy\n\twil: Good luck, have you got pyramids?\n\n6) wil: T G1 R1 Wil\n\tarkayy: I bought the box recently, yes\n\twil: Cool\n\n7) arkayy: Trade B1 Y1 Arkayy\n\n8) wil: B R1 Wil\n\n9) arkayy: Build Y1 Arkayy\n\n10) wil: D R1 Wil Y1 Y1\n\n11) arkayy: Build Y2 Arkayy\n\n12) wil: B R2 Wil\n\n13) arkayy: Discover Y1 Arkayy B3 Bark\n\twil: Lol, yeah that was unintentional!\n\n14) wil: D R1 Y1 Y3 Y3\n\n15) arkayy: Move Y1 Arkayy Bark\n\n16) wil: D R1 Wil B1 B1\n\n17) arkayy: Build G1 Arkayy\n\n18) wil: S G3 Wil\nB R2 B1\nB R2 Y3\nB R3 Wil\n\n19) arkayy: Trade Y1 G1 Bark\n\n20) wil: T R3 G3 Wil\n\twil: So your first lesson is on resource domination...\n\tarkayy: nice move. I did not see that coming\n\n\twil: Monopoly of any resource is an issue.\n\nHomeworlds Online (SDG# 35466)\nStarted: 2019.8.17, Ended: 2019.9.25\nParticipants: goulo (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Hi, thanks for the challenge and good luck. :-) This game will count for the Great Homeworlds Tournament of 2019.\n\n2) goulo: Homeworld G1 B2 Y3\n\n3) Simon: Build B1 Simon\n\tgoulo: Hi, sorry for the delay -- I didn't realize the game had started since I got no email from SDG! :/\n\tSimon: No prob! We're so early in the tourney.\n\n4) goulo: Build Y1 Goulo\n\n5) Simon: Build B1 Simon\n\n6) goulo: Build Y1 Goulo\n\n7) Simon: Trade B3 Y3 Simon\n\tgoulo: a poor man's bookmark for future reference:\r\nhttps://jpeterbaker.github.io/homeworlds/tournament/links2019.html\r\n:)\n\n8) goulo: Trade Y1 R1 Goulo\n\n9) Simon: Build B1 Simon\n\tgoulo: Are you getting email notifications from SDG lately?\r\nLately I have not been; I'm unsure whether it's just me, or if others have the problem too.\n\tSimon: Hmm, I've gotten emails for the challenge, for the beginning of the game, and for my turns. All boxes are checked in my SDG profile, and I haven't changed the email address in the SDG profile in several years.\n\n10) goulo: Build R1 Goulo\n\n11) Simon: Discover B1 Simon G2 G2\n\tgoulo: Strange; so I must investigate this email mystery further... :/\n\n12) goulo: Discover R1 Goulo Y3 Flavego\n\n13) Simon: Build B2 G2\n\n14) goulo: Build R2 Goulo\n\n15) Simon: Trade B2 R2 G2\n\n16) goulo: Build Y1 Goulo\n\n17) Simon: Build B2 G2\n\n18) goulo: Trade R1 G1 Goulo\n\n19) Simon: Build B2 Simon\n\n20) goulo: Discover Y1 Goulo G3 Verdego\n\n21) Simon: Build B3 G2\n\n22) goulo: Build Y1 Verdego\n\n23) Simon: Trade B2 Y2 G2\n\n24) goulo: Trade R2 B2 Goulo\n\n25) Simon: Build B3 G2\n\n26) goulo: Move B2 Goulo Verdego\n\n27) Simon: Move B3 G2 Verdego\n\n28) goulo: Sacrifice Y1 Verdego\nDiscover B2 Verdego Y2 Flavo\n\n29) Simon: Build B3 Verdego\n\n30) goulo: Move B2 Flavo Simon\nCatastrophe Simon B\n\n31) Simon: Trade B3 R3 Verdego\n\n32) goulo: Discover Y1 Verdego G2 Verdo\n\n33) Simon: Sacrifice Y2 G2\nMove B3 Verdego Goulo\nMove R3 Verdego Goulo\n\n34) goulo: Sacrifice R1 Flavego\nAttack R3 Goulo\n\n35) Simon: Sacrifice R2 G2\nAttack R3 Goulo\nAttack Y3 Goulo\n\n\tgoulo: congrats!\n\tSimon: Thanks for the game!\n\nHomeworlds Online (SDG# 35476)\nStarted: 2019.8.20, Ended: 2019.9.13\nParticipants: Felix (S), ts52 (N)\nWinner: ts52\n\n1) ts52: Homeworld Y1 B2 G3\n\tts52: This is for the 2019 tournament\n\n2) Felix: H B1 Y3 G3\n\tts52: Have a good game!\n\tFelix: Agreed. Have fun!\n\n3) ts52: Build G1 Ts52\n\n4) Felix: B G1 Felix\n\n5) ts52: Trade G1 B1 Ts52\n\n6) Felix: Trade G1 B1 Felix\n\n7) ts52: Build B2 Ts52\n\n8) Felix: Build B2 Felix\n\n9) ts52: Discover B2 Ts52 G3 Kermit\n\n10) Felix: D B1 Felix G2 Range\n\n11) ts52: Sacrifice G3 Ts52\nBuild B3 Ts52\nBuild B3 Kermit\nBuild B3 Kermit\n\n12) Felix: Build G1 Felix\n\n13) ts52: Trade B1 G1 Ts52\n\n14) Felix: Trade G1 Y1 Felix\n\n15) ts52: Trade B2 Y2 Kermit\n\n16) Felix: Build G1 Felix\n\n17) ts52: Trade B3 R3 Kermit\n\n18) Felix: T G1 R1 Felix\n\n19) ts52: Move R3 Kermit Range\n\n20) Felix: Build Y1 Felix\n\n21) ts52: Build Y2 Kermit\n\n22) Felix: Discover Y1 Felix G2 Rip\n\n23) ts52: Attack B1 Range\n\n24) Felix: B Y2 Rip\n\n25) ts52: Move Y2 Kermit Range\n\n26) Felix: Discover Y1 Rip G3 Fort\n\n27) ts52: Build Y3 Kermit\n\n28) Felix: B Y3 Fort\n\n29) ts52: Build B1 Kermit\n\n30) Felix: Move B2 Felix Rip\n\n31) ts52: Trade B3 R3 Ts52\n\n32) Felix: T B2 R2 Rip\n\n33) ts52: Build B2 Range\n\n34) Felix: Build R1 Rip\n\n35) ts52: Build B2 Range\n\n36) Felix: D R2 Rip B3 Sploosh\n\n37) ts52: Trade B3 R3 Kermit\n\n38) Felix: Build G1 Felix\n\n39) ts52: Move R3 Kermit Rip\n\n40) Felix: Build R1 Rip\n\n41) ts52: Attack Y2S Rip\n\n42) Felix: Build R2 Rip\nCatastrophe Rip Red\n\n43) ts52: Sacrifice Y2 Kermit\nMove Y2 Rip Felix\nMove Y2 Range Felix\nCatastrophe Felix Yellow\n\n44) Felix: Trade G3 Y3 Felix\n\n45) ts52: Sacrifice Y3 Kermit\nMove B1 Kermit Felix\nMove B1 Range Felix\nMove B2 Range Felix\nCatastrophe Felix Blue\n\tFelix: Very well played! I struggled from the start on this one.\n\tts52: Thanks. Thanks for the game.\n\n\nHomeworlds Online (SDG# 35478)\nVariants: "Hard time"\nStarted: 2019.8.20, Ended: 2019.9.17\nParticipants: dlwillson (S), Felix (N)\nWinner: Felix\n\n1) Felix: H Y1 B3 G3\n\n2) dlwillson: H B3 Y2 G3 Dlwillson\n\tFelix: Hey thar... :) Have fun!\n\n3) Felix: B G1 Felix\n\tdlwillson: Yay! Good to play with you again!\n\n4) dlwillson: B G1 Dlwillson\n\tFelix: Likewise! I've been too busy to play much, so don't expect too much of a challenge here :P\n\n5) Felix: T G1 Y1 Felix\n\n6) dlwillson: T G1 Y1 Dlwillson\n\n7) Felix: Build Y2 Felix\n\n8) dlwillson: B Y2 Dlwillson\n\n9) Felix: Discover Y1 Felix G2 Flower\n\n10) dlwillson: D Y1 Dlwillson G1 Field\n\n11) Felix: Build Y3 Flower\n\n12) dlwillson: B Y3 Field\n\n13) Felix: Move Y1 Flower Field\n\n14) dlwillson: D Y3 Field B2 Sky\n\n15) Felix: B Y3 Flower\n\n16) dlwillson: T Y2 R2 Dlwillson\n\n17) Felix: Trade Y2 R2 Felix\n\n18) dlwillson: B Y2 Field\n\n19) Felix: Build Y2 Field\nCatastrophe Field Yellow\n\n20) dlwillson: T Y3 G3 Sky\n\n21) Felix: Build G1 Felix\n\n22) dlwillson: B G1 Dlwillson\n\n23) Felix: Trade G1 B1 Felix\n\n24) dlwillson: D G1 Dlwillson B1 Sea\n\n25) Felix: Move B1 Felix Flower\n\n26) dlwillson: B G1 Sky\n\n27) Felix: Build B1 Flower\n\n28) dlwillson: B G1 Dlwillson\n\n29) Felix: B G2 Felix\n\n30) dlwillson: T G3 Y3 Sky\n\n31) Felix: Discover B1 Flower G3 Flan\n\n32) dlwillson: S G3 Dlwillson\nB G2 Sky\nB R1 Dlwillson\nB G3 Dlwillson\n\n33) Felix: S G3 Felix\nB G3 Felix\nB B2 Flower\nB B2 Flower\n\n34) dlwillson: M G2 Sky Felix\n\n35) Felix: Trade G3 R3 Felix\n\n36) dlwillson: S G3 Dlwillson\nB Y1 Sky\nB G3 Sea\nB G3 Dlwillson\n\n37) Felix: Build B3 Flan\n\n38) dlwillson: S G2 Felix\nB G2 Sea\nB Y1 Sky\n\n39) Felix: Sacrifice Y3 Flower\nMove Y3 Flower Felix\nMove Y3 Felix Sky\nCatastrophe Sky Yellow\nDiscover B2 Flower Y1 Hall\n\n40) dlwillson: T G1 Y1 Sea\n\n41) Felix: Trade B3 Y3 Flan\n\n42) dlwillson: S G3 Sea\nB Y2 Sea\nB G1 Sea\nB G3 Sky\n\n43) Felix: Build B3 Flan\n\n44) dlwillson: M Y1 Sea Sky\n\n45) Felix: Move B3 Flan Sea\n\n46) dlwillson: S Y2 Sea\nM R2 Dlwillson Hall\nD G2 Sea Y3 Sol\n\n47) Felix: Sacrifice R2 Felix\nAttack R2 Hall\nAttack G1 Sea\n\n48) dlwillson: T G1 R1 Sky\n\n49) Felix: Build Y2 Flan\n\tdlwillson: Huh. I could'a sworn that was a small blue. Oh well.\n\tdlwillson: Huh. I could'a sworn that was a small blue. Oh well.\n\tdlwillson: Huh. I could'a sworn that was a small blue. Oh well.\n\tdlwillson: /me impatiently smaps the send button, wondering why it's not doing anything...\n\tdlwillson: *spams\n\n50) dlwillson: S G3 Dlwillson\nB G1 Sky\nB Y2 Sky\nB G3 Dlwillson\n\n51) Felix: M Y2 Flan Sea\n\tFelix: Haha, I've done both of those things too many times! (Misjudged a piece size and mashed the send button)\n\n52) dlwillson: D G1 Sky Y3 Alsosol\n\n53) Felix: M B1 Flan Hall\n\n54) dlwillson: S G3 Dlwillson\nB R1 Dlwillson\nB R2 Sky\nB G3 Dlwillson\n\n55) Felix: S G2 Felix\nB G2 Sea\nB R2 Hall\n\n56) dlwillson: M G3 Sky Hall\n\n57) Felix: M R2 Hall Alsosol\n\n58) dlwillson: S R2 Sky\nA R2 Hall\nA B2 Hall\n\n59) Felix: Sacrifice Y3 Flan\nMove G1 Sea Dlwillson\nMove G2 Sea Dlwillson\nCatastrophe Dlwillson Green\nMove B3 Sea Dlwillson\n\n60) dlwillson: M B2 Hall Dlwillson\n\n61) Felix: Sacrifice Y2 Sea\nMove B1 Flower Felix\nDiscover B2 Flower B1 Sea\n\n62) dlwillson: S G3 Hall\nB R2 Dlwillson\nB R3 Hall\nB Y2 Sky\n\tFelix: ... Check? (He said with fragile hope shining in his eyes)\n\tdlwillson: I'm pretty sure that's game, but I'm trying to find some time to sit down and give it some deep thought. I sure wish you didn't have that y2...\n\n63) Felix: Sacrifice R2 Alsosol\nAttack R2 Dlwillson\nAttack B2 Dlwillson\n\tdlwillson: I'm pretty sure you'll win, but not completely sure yet.\n\n\tdlwillson: I'm tempted to run it out, because it's pretty, but then there's nothing for readers to think about. This was a good game! Thanks!\n\tFelix: It was! Thanks for playing as always! Looking forward to the next one.\n\nHomeworlds Online (SDG# 35470)\nVariants: "Hard time"\nStarted: 2019.8.21, Ended: 2019.9.16\nParticipants: Simon (S), wil (N)\nWinner: Simon\n\n1) wil: H Y2 B1 G3\n\tSimon: It is time again. Have fun!\n\n2) Simon: Homeworld B1 G3 B3 *\n\twil: Is this tourney? Or funsies\n\tSimon: Not a tournament game. This is as funsies as a first-place ladder match is allowed to be.\n\n3) wil: B G1 Wil\n\twil: To infinity and beyond\n\n4) Simon: Build B1 Simon\n\tDraw5PlayAll: I missed the chance to fight for #1... again...\n\n5) wil: B G1 Wil\n\n6) Simon: Trade B3 Y3 Simon\n\n7) wil: D G1 Wil B3 B3\n\n8) Simon: Build B2 Simon\n\n9) wil: B G1 Wil\n\n10) Simon: Trade B2 G2 Simon\n\n11) wil: D G1 Wil Y3 Y3\n\n12) Simon: Discover G2 Simon Y2 Y2\n\n13) wil: M G1 Y3 Y2\n\n14) Simon: Build B2 Simon\n\n15) wil: B G2 Y2\n\n16) Simon: Trade B2 R2 Simon\n\n17) wil: S G3 Wil\nB G2 Y2\nB G3 Wil\nB G3 B3\nC Y2 G\n\n18) Simon: Build B2 Simon\n\n19) wil: T G1 R1 B3\n\n20) Simon: Discover B1 Simon G2 G2\n\n21) wil: B G1 B3\n\n22) Simon: Build B2 G2\n\n23) wil: T G1 Y1 B3\n\n24) Simon: Build B2 Simon\n\n25) wil: B G1 B3\n\n26) Simon: Build B3 G2\n\n27) wil: B G1 B3 G2\n\n28) Simon: Trade B3 Y3 G2\n\n29) wil: T G3 Y3 B3\n\n30) Simon: Build B3 G2\n\n31) wil: B G2 B3\n\n32) Simon: Discover B3 G2 R3 R3\n\n33) wil: M G1 B3 G2\n\n34) Simon: Move Y3 G2 R3\n\n35) wil: S G3 Wil\nB G2 Wil\nB G3 Wil\nB G3 B3\n\n36) Simon: Build B3 G2\n\n37) wil: M G2 B3 G2\n\n38) Simon: Sacrifice Y3 R3\nMove B3 G2 B3\nMove B3 R3 Wil\nDiscover B2 Simon Y2 Y2\n\n39) wil: S R1 B3\nA B3 Wil\n\n40) Simon: Sacrifice R2 Simon\nAttack Y3 B3\nAttack G3 B3\n\twil: Nice!!\n\twil: Whew not another tourney loss!\n\n41) wil: T G2 R2 Wil\n\n42) Simon: Trade B3 R3 B3\n\tSimon: Thanks. It was the only promising move.\n\n43) wil: S G3 Wil\nB G2 G2\nB R1 Wil\nB G3 Wil\nC G2 G\n\n44) Simon: Attack Y1 B3\n\n45) wil: B G1 B3\n\n46) Simon: Sacrifice G3 B3\nBuild B1 Simon\nBuild B2 Y2\nBuild B3 Y2\n\n47) wil: B G2 B3\n\n48) Simon: Trade B3 R3 Y2\n\n49) wil: D B3 Wil G3 G3\n\n50) Simon: Trade B2 G2 Y2\n\n51) wil: T G2 Y2 B3\n\twil: This is another fine mess I've gotten me into.\n\n52) Simon: Sacrifice R3 Y2\nAttack G1 B3\nAttack G1 B3\nAttack Y2 B3\n\n53) wil: D G1 Wil Y3 Y3\n\n54) Simon: Build G2 B3\n\n55) wil: M R1 Wil G3\n\n56) Simon: Sacrifice Y3 B3\nMove G1 B3 Wil\nMove G1 B3 Wil\nMove G2 B3 Wil\nCatastrophe Wil Green\n\n57) wil: B G1 Y3\n\n58) Simon: Move R3 B3 Wil\n\n59) wil: S G1 Y3\nB R1 Wil\n\twil: Nice!\n\n60) Simon: Sacrifice G2 Y2\nBuild R1 Wil\nPass\nCatastrophe Wil Red\n\tSimon: Thanks! I wouldn't have taken your 3 greens; only after 1 of the 3 became yellow, taking 3 ships was the clearest route.\n\n\twil: Gg\n\tSimon: GG, thanks!\n\nHomeworlds Online (SDG# 35475)\nStarted: 2019.8.21, Ended: 2019.9.11\nParticipants: Felix (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Thanks for the challenge, have fun! This game counts for the Great Homeworlds Tournament 2019.\n\n2) Felix: H B1 Y2 G3\n\tFelix: Agreed. Have fun! :)\n\n3) Simon: Build B1 Simon\n\n4) Felix: Build G1 Felix\n\n5) Simon: Build B1 Simon\n\n6) Felix: Build G1 Felix\n\n7) Simon: Trade B3 Y3 Simon\n\n8) Felix: Discover G1 Felix B3 Rim\n\n9) Simon: Discover B1 Simon G2 G2\n\n10) Felix: B G1 Felix\n\n11) Simon: Build B2 G2\n\n12) Felix: S G3 Felix\nB G2 Rim\nB G2 Rim\nB G3 Felix\n\n13) Simon: Build B2 G2\n\n14) Felix: D G1 Felix B3 Range\n\n15) Simon: Trade B2 Y2 G2\n\n16) Felix: Build G3 Range\n\n17) Simon: Build B2 Simon\n\n18) Felix: Trade G3 Y3 Range\n\n19) Simon: Discover B1 G2 G3 G3\n\n20) Felix: Trade G1 R1 Felix\n\n21) Simon: Build B2 G3\n\n22) Felix: S G2 Rim\nB G1 Felix\nB G2 Range\n\n23) Simon: Build B3 G3\n\n24) Felix: Move Y3 Range G2\n\n25) Simon: Trade B3 R3 G3\n\n26) Felix: Discover Y3 G2 B3 Bloop\n\n27) Simon: Trade B2 Y2 G3\n\n28) Felix: Trade G2 B2 Range\n\n29) Simon: Build Y1 G2\n\n30) Felix: Sacrifice G3 Felix\nBuild G2 Range\nBuild G3 Felix\nBuild Y1 Bloop\n\n31) Simon: Build Y1 G3\n\n32) Felix: D G1 Felix Y3 Cheese\n\n33) Simon: Move B2 G2 Cheese\n\n34) Felix: Sacrifice G2 Range\nBuild G2 Felix\nBuild R1 Felix\n\n35) Simon: Build R2 G3\n\n36) Felix: Discover G1 Cheese R2 Volc\n\n37) Simon: Move B1 Simon G2\n\n38) Felix: Move R1 Felix Range\n\n39) Simon: Move B1 G2 Cheese\n\n40) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild R2 Range\nBuild R3 Felix\n\n41) Simon: Move Y1 G2 Cheese\n\n42) Felix: Move R3 Felix Cheese\n\n43) Simon: Sacrifice Y2 G2\nMove B1 Cheese Felix\nMove B2 Cheese Felix\n\n44) Felix: Attack Y1 Cheese\n\n45) Simon: Build Y2 G3\n\n46) Felix: Sacrifice G3 Felix\nBuild G2 Volc\nBuild G3 Felix\nBuild R3 Cheese\n\n47) Simon: Sacrifice Y2 G3\nMove B1 G3 Felix\nMove Y2 G3 Felix\n\n48) Felix: A Y2 Felix\nC Felix Blue\n\n49) Simon: Move Y3 Simon Felix\n\n50) Felix: S Y2 Felix\nM G2 Volc Simon\nM G1 Range Felix\n\n51) Simon: Sacrifice R3 G3\nAttack G2 Simon\nAttack G3 Felix\nAttack R1 Felix\n\n52) Felix: Sacrifice Y3 Bloop\nMove R3 Cheese Felix\nMove R3 Felix Simon\nMove R3 Cheese Felix\n\n53) Simon: Sacrifice G3 Felix\nBuild Y2 Felix\nBuild Y2 Felix\nBuild Y3 Felix\nCatastrophe Felix Yellow\n\n\tFelix: Well played!\n\tSimon: Thanks for the game!\n\nHomeworlds Online (SDG# 35460)\nStarted: 2019.8.23, Ended: 2019.8.26\nParticipants: visitor338 (S), MobyNostromo (N)\nWinner: visitor338\n\n\nHomeworlds Online (SDG# 35492)\nVariants: "Hard time"\nStarted: 2019.8.29, Ended: 2019.9.25\nParticipants: bhorner (S), agentofchaos (N)\nWinner: agentofchaos\n\n1) agentofchaos: Homeworld Y1 B2 G3\n\n2) bhorner: Homeworld Y1 G2 Y3 *\n\tagentofchaos: Hi have fun\n\n3) agentofchaos: Build G1 Agentofchaos\n\tbhorner: You too, we'll see how this goes. :)\n\n4) bhorner: Build Y1 Bhorner\n\n5) agentofchaos: Build G1 Agentofchaos\n\n6) bhorner: Discover Y1 Bhorner G3 Tree\n\n7) agentofchaos: Discover G1 Agentofchaos Y3 Shadowverse\n\n8) bhorner: Build Y2 Bhorner\n\n9) agentofchaos: Build G1 Shadowverse\n\tbhorner: I guess that was a little over aggressive, picking the same sizes... but I _like_ those sizes. :)\n\tbhorner: I forgot so many pieces of this... oh well. :)\n\n10) bhorner: Build Y2 Tree\n\n11) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G2 Shadowverse\nBuild G2 Agentofchaos\nBuild G3 Agentofchaos\n\n12) bhorner: Discover Y2 Bhorner B3 Avalanche\n\n13) agentofchaos: Trade G1 R1 Agentofchaos\n\n14) bhorner: Trade Y2 R2 Avalanche\n\n15) agentofchaos: Trade G2 Y2 Agentofchaos\n\n16) bhorner: Discover Y1 Tree B2 Blizzard\n\n17) agentofchaos: B G1 Agentofchaos\n\n18) bhorner: Build Y2 Tree\n\n19) agentofchaos: Discover G1 Agentofchaos Y3 Kakrafoon\n\n20) bhorner: Trade Y1 B1 Blizzard\n\n21) agentofchaos: Build G2 Agentofchaos\n\n22) bhorner: Sacrifice B1 Blizzard\nTrade Y2 B2 Tree\n\n23) agentofchaos: Sacrifice G3 Agentofchaos\nBuild G3 Agentofchaos\nBuild R1 Agentofchaos\nBuild G3 Kakrafoon\n\n24) bhorner: Build B1 Tree\n\n25) agentofchaos: Sacrifice Y2 Agentofchaos\nDiscover G3 Kakrafoon R2 Terrorverse\nMove G3 Terrorverse Tree\n\n26) bhorner: Sacrifice Y2 Tree\nMove B2 Tree Bhorner\nDiscover B1 Tree Y1 Sparkle\n\n27) agentofchaos: Trade G2 Y2 Agentofchaos\n\n28) bhorner: Build Y2 Bhorner\n\n29) agentofchaos: Move Y2 Agentofchaos Tree\n\n30) bhorner: Trade Y3 R3 Bhorner\n\n31) agentofchaos: Build Y2 Tree\n\n\nHomeworlds Online (SDG# 35496)\nStarted: 2019.8.31, Ended: 2019.9.25\nParticipants: Babamots (S), goulo (N)\nWinner: Babamots\n\n1) goulo: Homeworld G3 B1 Y3\n\n2) Babamots: Homeworld G2 B1 B3 *\n\tgoulo: hi, have fun! "This game will count for the Great Homeworlds Tournament of 2019." and all that jazz. :)\n\tBabamots: Sounds good. Good luck!\n\n3) goulo: Build Y1 Goulo\n\tBabamots: Since you got the first move, could you fill out the start-game form please?\n\n4) Babamots: Build B1 Babamots\n\tgoulo: ah, yes -- done!\n\tgoulo: a poor man's bookmark for future reference:\r\nhttps://jpeterbaker.github.io/homeworlds/tournament/links2019.html\r\n:)\n\n5) goulo: Build Y1 Goulo\n\n6) Babamots: Trade B3 Y3 Babamots\n\tgoulo: Are you getting email notifications from SDG lately?\r\nLately I have not been; I'm unsure whether it's just me, or if others have the problem too.\n\tBabamots: I only noticed it today, but I think it's been a few days since I got a notice.\n\tBabamots: Wait, just as I hit sent, I heard my SDG alert on my phone. I wonder if my chat flushed a buffer somewhere...\n\n7) goulo: Discover Y1 Goulo G2 Verdo\n\n8) Babamots: Build B2 Babamots\n\n9) goulo: Build Y1 Verdo\n\n10) Babamots: Build Y2 Babamots\n\n11) goulo: Build Y2 Verdo\n\n12) Babamots: Discover Y2 Babamots G3 Orion\n\n13) goulo: Trade Y1 R1 Goulo\n\n14) Babamots: Move Y2 Orion Verdo\nCatastrophe Verdo Y\n\n15) goulo: Build Y1 Goulo\n\n16) Babamots: Discover B2 Babamots G3 Genesis\n\n17) goulo: Build R1 Goulo\n\n18) Babamots: Build B2 Genesis\n\n19) goulo: Discover R1 Goulo Y2 Flavo\n\n20) Babamots: Build B2 Babamots\n\n21) goulo: Build R1 Goulo\n\n22) Babamots: Build B3 Genesis\n\n23) goulo: Build R2 Goulo\n\n24) Babamots: Trade B3 R3 Genesis\n\n25) goulo: Trade R1 G1 Goulo\n\n26) Babamots: Build B3 Genesis\n\n27) goulo: Build G1 Goulo\n\n28) Babamots: Trade B3 Y3 Genesis\n\n29) goulo: Move R1 Goulo Flavo\n\n30) Babamots: Build B3 Genesis\n\n31) goulo: Discover G1 Goulo Y2 Flavo2\n\n32) Babamots: Move B3 Genesis Flavo2\n\n33) goulo: Discover G1 Flavo2 Y1 Flaveto\n\n34) Babamots: Build B3 Genesis\n\n35) goulo: Build G1 Flaveto\n\n36) Babamots: Move B2 Genesis Flavo2\n\n37) goulo: Build G2 Goulo\n\n38) Babamots: Trade B3 G3 Flavo2\n\n39) goulo: Sacrifice G1 Goulo\nBuild G1 Flaveto\n\n40) Babamots: Move R3 Genesis Flaveto\n\n41) goulo: Move G1 Flaveto Genesis\n\n42) Babamots: Discover B3 Genesis G2 Risa\n\n43) goulo: Move G1 Flaveto Genesis\n\n44) Babamots: Move Y3 Genesis Flavo\n\n\tgoulo: thanks and congrats; I should have resigned long ago after falling so ridiculously far behind...\n\tBabamots: No problem. Thanks for the game! Good luck in the tournament!\n\nHomeworlds Online (SDG# 35503)\nStarted: 2019.9.6, Ended: 2019.11.2\nParticipants: Draw5PlayAll (S), Laurie_Menke (N)\nWinner: Draw5PlayAll\n\n1) Laurie_Menke: Pass\n\tLaurie_Menke: Hi D5PA! Thanks for the invitation! I'll go fill out the tournament paperwork! :)\n\n2) Draw5PlayAll: Pass\n\tDraw5PlayAll: Oh dear...\n\n3) Laurie_Menke: Homeworld B1 Y2 G3\n\tDraw5PlayAll: I've always wondered what happens if both sides pass successively.\n\tLaurie_Menke: Apparently nothing!\n\n4) Draw5PlayAll: Homeworld B1 G3 B3 *\n\tDraw5PlayAll: Nice to know I did not just lose immediately for not having a homeworld. Heck I could probably just never create one and you would never win...\n\n5) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: I doubt that. I'm pretty sure that if either of us passes twice in a row they forfeit.\n\n6) Draw5PlayAll: Build B1 Draw5playall\n\n7) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n8) Draw5PlayAll: Trade B3 Y3 Draw5playall\n\tLaurie_Menke: Go ahead and freeze me out of blue. Won't last long...\n\n9) Laurie_Menke: Build Y1 Laurie_menke\n\n10) Draw5PlayAll: Build B2 Draw5playall\n\n11) Laurie_Menke: Trade Y1 R1 Laurie_menke\n\n12) Draw5PlayAll: Discover B2 Draw5playall G2 Build\n\n13) Laurie_Menke: Build R1 Laurie_menke\n\n14) Draw5PlayAll: Build B2 Build\n\n15) Laurie_Menke: Build G1 Laurie_menke\n\n16) Draw5PlayAll: Build B2 Draw5playall\n\n17) Laurie_Menke: Discover G1 Laurie_menke B3 Blue\n\n18) Draw5PlayAll: Build B3 Build\n\n19) Laurie_Menke: Build Y1 Laurie_menke\n\n20) Draw5PlayAll: Trade B3 R3 Build\n\n21) Laurie_Menke: Discover Y1 Laurie_menke B3 Navy\n\n22) Draw5PlayAll: Build B3 Build\n\n23) Laurie_Menke: Build G1 Laurie_menke\n\n24) Draw5PlayAll: Trade B2 Y2 Build\n\n25) Laurie_Menke: Discover R1 Laurie_menke Y3 Yellow\n\n26) Draw5PlayAll: Build B2 Build\n\n27) Laurie_Menke: Discover Y1 Navy Y2 Lemon\n\tDraw5PlayAll: Did you say something earlier about a blue freeze not lasting long?\n\tLaurie_Menke: I'm not worried. ;)\n\n28) Draw5PlayAll: Trade B2 R2 Build\n\n29) Laurie_Menke: Discover G1 Laurie_menke Y3 Mustard\n\n30) Draw5PlayAll: Move R2 Build Mustard\n\n31) Laurie_Menke: Move G1 Mustard Lemon\n\n32) Draw5PlayAll: Move R2 Mustard Lemon\n\n33) Laurie_Menke: Build G1 Laurie_menke\n\n34) Draw5PlayAll: Attack G1 Lemon\n\n35) Laurie_Menke: Build G2 Laurie_menke\n\tDraw5PlayAll: First green!\n\tLaurie_Menke: :)\n\n36) Draw5PlayAll: Sacrifice Y2 Build\nMove G1 Lemon Blue\nMove G1 Blue Laurie_menke\nCatastrophe Laurie_menke Green\n\n37) Laurie_Menke: Sacrifice Y1 Lemon\nMove G1 Blue Laurie_menke\n\tDraw5PlayAll: I am not one for nostalgia.\n\tLaurie_Menke: That was a definite mistake on my part. ::sigh::\n\n38) Draw5PlayAll: Move R2 Lemon Yellow\n\n39) Laurie_Menke: Build R1 Laurie_menke\n\n40) Draw5PlayAll: Attack R1 Yellow\n\n41) Laurie_Menke: Discover R1 Laurie_menke G3 Green\n\n42) Draw5PlayAll: Move R2 Yellow Laurie_menke\n\n43) Laurie_Menke: Build R2 Green\n\tLaurie_Menke: Congrats... good game! Thanks for the fun! :)\n\n44) Draw5PlayAll: Sacrifice R3 Build\nAttack Y1 Laurie_menke\nAttack R1 Laurie_menke\nAttack G1 Laurie_menke\n\tDraw5PlayAll: I still vaguely remember something about a blue freeze not lasting?\n\tDraw5PlayAll: Good game.\n\n\nHomeworlds Online (SDG# 35498)\nStarted: 2019.9.9, Ended: 2019.10.11\nParticipants: Simon (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) Simon: Homeworld R1 G3 B3\n\tSimon: Hi! This game will count for the Great Homeworlds Tournament of 2019.\n\n3) Trydnt: Build G1 Trydnt\n\n4) Simon: Build B1 Simon\n\tTrydnt: good luck :)\n\tSimon: You too, good luck :-) Because you had the first move, please fill out the tournament start-game form for this game (35498): https://forms.gle/wn4aqPmmB63F8yYCA \n\n5) Trydnt: Build G1 Trydnt\n\n6) Simon: Build B1 Simon\n\n7) Trydnt: Discover G1 Trydnt B3 B3\n\n8) Simon: Trade B1 Y1 Simon\n\n9) Trydnt: Build G1 B3\n\n10) Simon: Build Y1 Simon\n\n11) Trydnt: Build G2 B3\n\tSimon: Please acknowledge in chat here that this is game counts towards the Great Homeworlds tournament 2019. Also please fill out the form (game number 35498): https://forms.gle/wn4aqPmmB63F8yYCA\n\tBabamots: Simon, you can go ahead and fill out the form. Just so someone does it for the record. Thanks guys! Good luck!\n\tTrydnt: this is for the great homeworlds tournament of 2019\n\n12) Simon: Build Y2 Simon\n\n13) Trydnt: Trade G2 Y2 B3\n\n14) Simon: Discover Y1 Simon G2 G2\n\n15) Trydnt: Build G2 Trydnt\n\n16) Simon: Discover Y1 Simon B2 B2\n\n17) Trydnt: Discover G2 Trydnt Y3 Y3\n\n18) Simon: Move B1 Simon G2\n\n19) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G3 Trydnt\nBuild G3 B3\n\n20) Simon: Build Y2 G2\n\n21) Trydnt: Build Y3 B3\n\n22) Simon: Build Y3 Simon\n\n23) Trydnt: Discover Y3 B3 R2 R2\n\n24) Simon: Move Y3 Simon B2\n\n25) Trydnt: Trade G3 R3 B3\n\n26) Simon: Trade Y3 G3 B2\n\n27) Trydnt: Sacrifice G2 Trydnt\nBuild G2 Trydnt\nBuild Y3 R2\n\n28) Simon: Pass\n\n29) Trydnt: Move G2 Trydnt Y3\n\n30) Simon: Trade Y1 R1 G2\n\n31) Trydnt: Move G2 Y3 R2\n\tTrydnt: damn I mistyped that command. Don't suppose you'd consider passing and letting me reset to past move?\n\tSimon: Yep, I'll pass to grant another undo.\n\n32) Simon: Move G3 B2 Y3\n\tTrydnt: the move was the same but grow the g2 in y3. I'll move it to there\n\n33) Trydnt: Sacrifice G1 B3\nBuild G1 Y3\n\tTrydnt: Thank you for understanding :)\n\tSimon: No problem!\n\n34) Simon: Build Y1 Simon\n\n35) Trydnt: Discover Y3 R2 B3 Be3\n\n36) Simon: Build R1 G2\n\n37) Trydnt: Move Y3 Be3 G2\n\n38) Simon: Sacrifice B1 G2\nTrade G3 R3 Y3\n\n39) Trydnt: Sacrifice R3 B3\nAttack Y2 G2\nAttack R1 G2\nAttack R1 G2\n\n40) Simon: Attack G2 Y3\n\n41) Trydnt: Build G3 B3\n\n42) Simon: Attack G1 Y3\n\n43) Trydnt: Trade G3 R3 Trydnt\n\n44) Simon: Discover Y1 B2 G3 G3\n\n45) Trydnt: Move R1 G2 G3\n\n46) Simon: Discover Y1 G3 B2 B2b\n\n47) Trydnt: Build R2 G2\n\n48) Simon: Build B1 Simon\n\n49) Trydnt: Move R1 G2 B3\n\n50) Simon: Build R2 Y3\n\n51) Trydnt: Sacrifice G3 B3\nBuild G3 B3\nBuild R3 B3\nPass\n\n52) Simon: Build B1 Simon\n\n53) Trydnt: Move R3 B3 B2b\n\n54) Simon: Discover Y1 B2b B1 B1\n\n55) Trydnt: Sacrifice Y3 R2\nMove G3 B3 R2\nMove G3 R2 Simon\nMove G2 R2 Simon\n\n56) Simon: Sacrifice R2 Y3\nAttack G2 Simon\nAttack G3 Simon\n\n\tSimon: gg!\n\tTrydnt: well played!\n\nHomeworlds Online (SDG# 35521)\nStarted: 2019.9.10, Ended: 2019.10.3\nParticipants: DodoBirb (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tDodoBirb: Well, I'm probably going to get demolished but I hope this will be an interesting game. Even if I don't win any of my other games this year it seems that I'll at least get one point against speardane so I'll beat my 2018 score at least.\n\tDodoBirb: Bring it on and Good luck\n\n2) DodoBirb: Homeworld B1 R3 G3\n\tBabamots: I hope you do really well too! I'm glad you're in the tournament again.\n\tBabamots: This game is for the Great Homeworlds Tounament 2019.\r\n\n\n3) Babamots: Build G1 Babamots\n\n4) DodoBirb: Build G1 Dodobirb\n\n5) Babamots: Trade G1 Y1 Babamots\n\tDodoBirb: and within 24 hours of me saying I'm about to win the speardane game, It has completely fallen apart\n\tBabamots: Oh no! I'm sorry.\n\n6) DodoBirb: Build G1 Dodobirb\n\n7) Babamots: Build Y1 Babamots\n\tDodoBirb: Oh well, It's my fault for not paying attention to my opponent's potential sacrifices.\n\n8) DodoBirb: Trade G1 Y1 Dodobirb\n\n9) Babamots: Build Y2 Babamots\n\n10) DodoBirb: Build Y2 Dodobirb\n\n11) Babamots: Discover Y1 Babamots G3 Orion\n\n12) DodoBirb: Discover Y1 Dodobirb G2 Greeny\n\n13) Babamots: Discover Y1 Babamots Y3 Iconia\n\n14) DodoBirb: Build Y2 Dodobirb\n\n15) Babamots: Sacrifice G3 Babamots\nBuild Y3 Babamots\nBuild Y3 Orion\nPass\n\n16) DodoBirb: Trade G1 B1 Dodobirb\n\tDodoBirb: ah. I should've seen that coming.\n\n17) Babamots: Trade Y2 G2 Babamots\n\n18) DodoBirb: Build Y2 Dodobirb\n\n19) Babamots: Build G1 Babamots\n\n20) DodoBirb: Build B1 Dodobirb\n\n21) Babamots: Trade G2 B2 Babamots\n\n22) DodoBirb: Discover B1 Dodobirb G2 Grass\n\n23) Babamots: Move B2 Babamots Orion\n\n24) DodoBirb: Build G1 Dodobirb\n\n25) Babamots: Build G1 Babamots\n\n26) DodoBirb: Move G1 Dodobirb Grass\n\n27) Babamots: Trade G1 R1 Babamots\n\n28) DodoBirb: Trade Y2 R2 Dodobirb\n\n29) Babamots: Build Y2 Babamots\n\n30) DodoBirb: Move R2 Dodobirb Grass\n\n31) Babamots: Move Y3 Orion Grass\n\n32) DodoBirb: Build G1 Dodobirb\n\n33) Babamots: Discover Y2 Babamots G3 Risa\n\n34) DodoBirb: Trade G1 R1 Dodobirb\n\n35) Babamots: Sacrifice R1 Babamots\nAttack R2 Grass\n\n36) DodoBirb: Build G1 Grass\n\n37) Babamots: Discover B2 Orion G2 Earth\n\n38) DodoBirb: Move B1 Dodobirb Greeny\n\n39) Babamots: Attack G1 Grass\n\n40) DodoBirb: Build B2 Greeny\n\n41) Babamots: Attack B1 Grass\n\n42) DodoBirb: Discover B2 Greeny R3 Defense\n\n43) Babamots: Sacrifice G1 Grass\nBuild B3 Earth\n\n44) DodoBirb: Build B3 Greeny\n\n45) Babamots: Build R1 Grass\n\n46) DodoBirb: Move R1 Dodobirb Greeny\n\n47) Babamots: Attack G1 Grass\n\n48) DodoBirb: Build R2 Greeny\n\n49) Babamots: Trade B2 R2 Earth\n\n50) DodoBirb: Discover R2 Greeny R3 Reddy\n\n51) Babamots: Build B2 Earth\n\n52) DodoBirb: Discover B1 Greeny B3 Bluey\n\n53) Babamots: Sacrifice Y3 Grass\nMove B1 Grass Dodobirb\nMove B2 Earth Dodobirb\nMove B3 Earth Dodobirb\nCatastrophe Dodobirb B\n\n54) DodoBirb: Build B1 Greeny\n\n55) Babamots: Sacrifice Y3 Babamots\nMove R1 Grass Dodobirb\nMove R2 Grass Dodobirb\nMove R2 Earth Dodobirb\nCatastrophe Dodobirb R\n\n\tBabamots: If your remaining ships' crews surrender, their lives will be spared. ;-)\r\n\r\nGood luck in the tournament!\n\tDodoBirb: South's ships R2, B3, R1, Y1, B1, B1 and B2 were sacrificed. The entire universe was engulfed in a supernova, North seat has been eliminated. Good game! Good luck to you too!\n\tBabamots: Your fleet has some mighty vindictive captains. GG!\n\nHomeworlds Online (SDG# 35520)\nStarted: 2019.9.10, Ended: 2019.9.14\nParticipants: wil (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: I intend that this game is for the tournament. Does that suit you?\r\n\r\nGood luck!\n\n2) wil: H Y3 B1 G3\n\twil: I was thinking it would be! Let's do this!\n\n3) Babamots: Build G1 Babamots\n\n4) wil: B G1 Wil\n\n5) Babamots: Trade G1 Y1 Babamots\n\twil: The new lesson is patience and reviewing moves...\n\twil: HW continues to help me with recovery.\n\n6) wil: T G1 R1 Wil\n\tBabamots: With every loss, I vow to never rush a move again.\r\n\r\nI don't live close enough to bring you casseroles, so I'm very happy to be helping you any way I can :-)\n\n7) Babamots: Build Y1 Babamots\n\twil: Change is interesting. Shoot from the hips is my way\n\n8) wil: B R1 Wil\n\n9) Babamots: Build Y1 Babamots\n\n10) wil: B R2 Wil\n\n11) Babamots: Discover Y1 Babamots G3 Orion\n\n12) wil: D R1 Wil B2 B2\n\n13) Babamots: Build Y2 Babamots\n\n14) wil: S G3 Wil\nB R2 Wil\nB R2 B2\nB R3 B2\n\n15) Babamots: Build G1 Babamots\n\n16) wil: T R3 G3 B2\n\n17) Babamots: Trade G3 R3 Babamots\n\n18) wil: B R3 B2\n\n19) Babamots: Build R3 Babamots\n\n20) wil: T R3 Y3 B2\n\n21) Babamots: Move R3 Babamots Orion\n\twil: This got thick quick!\n\tBabamots: Yes indeed.\n\n22) wil: T R2 G2 Wil\n\n23) Babamots: Build Y2 Orion\n\n24) wil: B G1 Wil\n\n25) Babamots: Build R2 Orion\n\n26) wil: D R2 B2 Y3 Y3\n\n27) Babamots: Discover Y1 Babamots R3 Brekka\n\n28) wil: B Y2 B2\n\n29) Babamots: Trade Y2 G2 Babamots\n\n30) wil: M G2 Wil B2\n\n31) Babamots: Build Y2 Babamots\n\n32) wil: T R2 G2 Wil\n\n33) Babamots: Sacrifice Y2 Babamots\nMove R3 Orion B2\nMove R3 B2 Wil\n\n34) wil: S Y3 B2\nM R2 Y3 B2\nM R1 B2 Wil\nM R2 B2 Wil\nC Wil R\n\n35) Babamots: Sacrifice G2 Babamots\nBuild Y2 Babamots\nBuild Y3 Brekka\n\twil: Ouch\n\n36) wil: S G3 B2\nB G1 B2\nB G2 B2\nB G3 Wil\n\tBabamots: I lost a game pretty unexpectedly to the problem of "becoming comfortable with not having a large at home." eliscinsky was thrilled about it :-)\r\n\r\nSince then, I think I've always kept a large at home except when sacrificing it for a winning move.\n\twil: Yeah,me too,always thinking I can get back when needed!\n\n37) Babamots: Sacrifice Y3 Brekka\nMove G1 Babamots Orion\nMove G1 Orion B2\nMove G1 B2 Wil\nCatastrophe Wil G\n\tBabamots: GG! I was pretty scared for a while. I usually focus on yellow, but I should have more respect for the red monopoly.\r\n\r\nGood luck in the tournament!\n\twil: Gig, thx\n\n\nHomeworlds Online (SDG# 35523)\nStarted: 2019.9.10, Ended: 2020.9.5\nParticipants: wil (S), Jeln (N)\nWinner: wil\n\n\nHomeworlds Online (SDG# 35525)\nStarted: 2019.9.11, Ended: 2019.10.3\nParticipants: Simon (S), DodoBirb (N)\nWinner: Simon\n\n1) DodoBirb: Homeworld B1 R2 G3\n\n2) Simon: Homeworld G3 B1 B3 *\n\tDodoBirb: Good Luck!\n\tSimon: Good luck and have fun! This counts for the Great Homeworlds Tournament 2019.\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) Simon: Build B1 Simon\n\n5) DodoBirb: Build G1 Dodobirb\n\n6) Simon: Trade B3 Y3 Simon\n\n7) DodoBirb: Trade G1 Y1 Dodobirb\n\n8) Simon: Build B2 Simon\n\n9) DodoBirb: Build Y1 Dodobirb\n\n10) Simon: Trade B2 R2 Simon\n\n11) DodoBirb: Trade G3 B3 Dodobirb\n\n12) Simon: Build B2 Simon\n\n13) DodoBirb: Discover Y1 Dodobirb G3 Greeny\n\n14) Simon: Discover B2 Simon G2 G2\n\n15) DodoBirb: Build Y1 Dodobirb\n\n16) Simon: Build Y2 Simon\n\n17) DodoBirb: Build Y2 Dodobirb\n\n18) Simon: Move Y2 Simon G2\n\n19) DodoBirb: Trade Y2 R2 Dodobirb\n\n20) Simon: Build B2 G2\n\n21) DodoBirb: Build Y2 Greeny\n\n22) Simon: Build Y2 Simon\n\n23) DodoBirb: Discover Y1 Greeny G2 Grassy\n\n24) Simon: Build Y3 G2\n\n25) DodoBirb: Build Y3 Grassy\n\n26) Simon: Build R1 Simon\n\n27) DodoBirb: Build G1 Dodobirb\n\n28) Simon: Build R1 Simon\n\n29) DodoBirb: Build G1 Dodobirb\n\n30) Simon: Discover B2 G2 G3 G3\n\n31) DodoBirb: Discover G1 Dodobirb B3 Bluey\n\n32) Simon: Move R1 Simon G2\n\n33) DodoBirb: Move R2 Dodobirb Bluey\n\n34) Simon: Move R1 G2 G3\n\n35) DodoBirb: Trade B3 R3 Dodobirb\n\n36) Simon: Build R1 G3\n\n37) DodoBirb: Move Y3 Grassy G3\n\n38) Simon: Sacrifice Y3 G2\nMove R1 G3 Dodobirb\nMove R1 G3 Dodobirb\nMove B2 G3 Dodobirb\nCatastrophe Dodobirb Red\n\n39) DodoBirb: Move Y1 Dodobirb Bluey\n\tDodoBirb: ... gg?\n\n40) Simon: Sacrifice Y3 Simon\nMove B1 Simon G2\nMove B1 G2 Dodobirb\nMove B2 G2 Dodobirb\nCatastrophe Dodobirb Blue\n\n\tSimon: GG, yeah. There was really no good color for your home queen; if not red, there would have been other unproductive shuffling.\n\tDodoBirb: GG\n\nHomeworlds Online (SDG# 35494)\nStarted: 2019.9.12, Ended: 2019.10.25\nParticipants: Felix (S), Draw5PlayAll (N)\nWinner: Felix\n\n1) Draw5PlayAll: Homeworld B3 R1 G3\n\n2) Felix: Homeworld G2 B3 R3\n\tFelix: This is for the tournament, agreed?\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\tDraw5PlayAll: Aye theenk soh\n\n4) Felix: Build R1 Felix\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) Felix: Build R1 Felix\n\n7) Draw5PlayAll: Build Y1 Draw5playall\n\n8) Felix: Trade R3 Y3 Felix\n\n9) Draw5PlayAll: Discover Y1 Draw5playall G2 Build\n\n10) Felix: Build R2 Felix\n\n11) Draw5PlayAll: Build Y1 Draw5playall\n\n12) Felix: B Y2 Felix\n\n13) Draw5PlayAll: Discover Y1 Draw5playall G2 Construct\n\n14) Felix: Trade R2 B2 Felix\n\n15) Draw5PlayAll: Build Y2 Build\n\n16) Felix: B R2 Felix\n\n17) Draw5PlayAll: Sacrifice G3 Draw5playall\nBuild Y2 Build\nBuild Y3 Construct\nBuild Y3 Draw5playall\n\n18) Felix: Sacrifice Y2 Felix\nDiscover R2 Felix G1 Out\nMove R2 Out Build\n\tDraw5PlayAll: First time it has been me doing that against a strong opponent!\n\n19) Draw5PlayAll: Sacrifice Y2 Build\nDiscover Y2 Build B3 Trade\nMove Y1 Build Trade\n\tFelix: Feels good! Right? Nice move.\n\n20) Felix: Build Y2 Felix\n\n21) Draw5PlayAll: Trade Y2 R2 Trade\n\n22) Felix: Build R2 Build\n\n23) Draw5PlayAll: Move R2 Trade Construct\n\n24) Felix: S B2 Felix\nT R2 B2 Build\nT R1 G1 Felix\n\n25) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\n26) Felix: B B1 Build\n\n27) Draw5PlayAll: Build G1 Draw5playall\n\n28) Felix: Build B1 Build\n\n29) Draw5PlayAll: Trade Y1 B1 Trade\n\n30) Felix: Trade B2 Y2 Build\n\tDraw5PlayAll: You're not going to... really...\n\n31) Draw5PlayAll: Sacrifice B1 Trade\nTrade Y1 B1 Construct\n\tFelix: No, I am not :)\n\n32) Felix: Build B2 Build\n\n33) Draw5PlayAll: Sacrifice Y3 Construct\nMove B1 Construct Draw5playall\nMove B1 Draw5playall Build\nCatastrophe Build Blue\nDiscover G1 Draw5playall B2 Trade\n\n34) Felix: Trade G1 B1 Felix\n\tDraw5PlayAll: I did not want to but you had mate in like 6 moves\n\n35) Draw5PlayAll: Build Y1 Draw5playall\n\tFelix: Can't say I blame you!\n\n36) Felix: Sacrifice B1 Felix\nTrade Y2 B2 Build\n\n37) Draw5PlayAll: Trade Y1 B1 Draw5playall\n\n38) Felix: Build B1 Build\n\n39) Draw5PlayAll: Move B1 Draw5playall Construct\n\n40) Felix: Trade B2 Y2 Build\n\n41) Draw5PlayAll: Build Y1 Draw5playall\n\n42) Felix: Build B1 Build\n\n43) Draw5PlayAll: Build B2 Construct\n\n44) Felix: Build B2 Build\n\n45) Draw5PlayAll: Trade B2 Y2 Construct\n\n46) Felix: Move B1 Build Draw5playall\n\n47) Draw5PlayAll: Build R1 Construct\n\n48) Felix: Build R2 Build\n\n\tDraw5PlayAll: Where did I go wrong?! I was in the lead earlier!\n\nHomeworlds Online (SDG# 35528)\nStarted: 2019.9.13, Ended: 2019.10.30\nParticipants: goulo (S), Felix (N)\nWinner: Felix\n\n1) Felix: Homeworld Y1 B3 G3\n\n2) goulo: Homeworld R3 B2 G3\n\tFelix: Hello! I intend this game to be for the 2019 tournament. Do you agree?\n\n3) Felix: Build G1 Felix\n\tgoulo: hi, yes, it is a tournament game. Have fun!\n\n4) goulo: Build G1 Goulo\n\n5) Felix: Trade G1 Y1 Felix\n\n6) goulo: Trade G1 Y1 Goulo\n\n7) Felix: Build Y2 Felix\n\n8) goulo: Build Y2 Goulo\n\n9) Felix: Discover Y1 Felix B2 Roam\n\n10) goulo: Discover Y2 Goulo G1 Verdeto\n\n11) Felix: Discover Y2 Felix G2 Greenlee\n\n12) goulo: Build G1 Goulo\n\n13) Felix: Build G1 Felix\n\n14) goulo: Build G2 Goulo\n\n15) Felix: Move G1 Felix Roam\n\n16) goulo: Discover G2 Goulo B1 Blueto\n\n17) Felix: Build G2 Felix\n\n18) goulo: Build G3 Blueto\n\n19) Felix: Trade G1 B1 Roam\n\n20) goulo: Trade G1 R1 Goulo\n\tFelix: I'm sure I had a reason to let you get that large green... but now I can't think what it is!\n\n21) Felix: Trade G2 R2 Felix\n\n22) goulo: Trade G2 Y2 Blueto\n\n23) Felix: B Y3 Greenlee\n\n24) goulo: Sacrifice G3 Blueto\nBuild Y3 Goulo\nBuild Y3 Blueto\nBuild G1 Goulo\n\n25) Felix: Move Y3 Greenlee Verdeto\n\n26) goulo: Move Y2 Verdeto Roam\n\n27) Felix: Sacrifice Y1 Roam\nMove B1 Roam Verdeto\n\n28) goulo: Sacrifice G1 Goulo\nBuild Y1 Roam\n\n29) Felix: Build B1 Verdeto\n\n30) goulo: Move Y2 Blueto Greenlee\n\n31) Felix: Build B2 Verdeto\n\n32) goulo: Sacrifice R1 Goulo\nAttack Y2 Greenlee\n\n33) Felix: Move B2 Verdeto Greenlee\n\n34) goulo: Trade Y1 R1 Goulo\n\n35) Felix: Build B3 Greenlee\n\n36) goulo: Sacrifice Y2 Greenlee\nMove Y2 Greenlee Felix\nMove Y1 Roam Felix\n\n37) Felix: Attack Y2 Felix\n\n38) goulo: Move Y2 Roam Felix\nCatastrophe Felix Y\n\n39) Felix: Build B2 Greenlee\n\n40) goulo: Build G1 Goulo\n\n41) Felix: Build B3 Verdeto\n\n42) goulo: Move R1 Goulo Blueto\n\n43) Felix: Trade B2 Y2 Greenlee\n\n44) goulo: Build Y1 Goulo\n\n45) Felix: Build B2 Greenlee\n\n46) goulo: Trade G1 R1 Goulo\n\n47) Felix: Trade B2 R2 Greenlee\n\n48) goulo: Discover R1 Goulo Y1 Flaveto\n\n49) Felix: Build R1 Greenlee\n\n50) goulo: Build G1 Goulo\n\n51) Felix: Move B3 Verdeto Goulo\n\n52) goulo: Attack B3 Goulo\n\n53) Felix: S Y2 Greenlee\nMove B1 Verdeto Goulo\nMove B1 Verdeto Goulo\nCatastrophe Goulo Blue\n\n54) goulo: Build G1 Goulo\n\n55) Felix: Sacrifice Y3 Verdeto\nMove R1 Greenlee Goulo\nMove R2 Greenlee Goulo\nDiscover R2 Felix Y1 Injection\n\n\tgoulo: congrats, thanks for the game!\n\nHomeworlds Online (SDG# 35530)\nStarted: 2019.9.13, Ended: 2019.10.10\nParticipants: Felix (S), DodoBirb (N)\nWinner: Felix\n\n1) DodoBirb: Homeworld R1 B2 G3\n\tDodoBirb: Good Luck!\n\n2) Felix: Homeworld B1 G3 R3\n\tFelix: Same to you! I intend this game to be for the 2019 tournament. Do you agree?\n\n3) DodoBirb: Build G1 Dodobirb\n\tDodoBirb: Yes\n\n4) Felix: Build R1 Felix\n\n5) DodoBirb: Trade G1 R1 Dodobirb\n\n6) Felix: Build R2 Felix\n\n7) DodoBirb: Build R2 Dodobirb\n\n8) Felix: Trade R2 Y2 Felix\n\n9) DodoBirb: Trade R1 Y1 Dodobirb\n\n10) Felix: Build Y1 Felix\n\n11) DodoBirb: Build Y1 Dodobirb\n\n12) Felix: T Y1 B1 Felix\n\n13) DodoBirb: Trade Y1 B1 Dodobirb\n\n14) Felix: B B2 Felix\n\n15) DodoBirb: Build B2 Dodobirb\n\n16) Felix: Discover B2 Felix G2 Bazoik\n\n17) DodoBirb: Discover B2 Dodobirb G3 Greeny\n\n18) Felix: Build B3 Bazoik\n\n19) DodoBirb: Build B3 Greeny\n\n20) Felix: Build B3 Felix\n\n21) DodoBirb: Trade B3 Y3 Greeny\n\n22) Felix: Sacrifice B1 Felix\nTrade B3 Y3 Bazoik\n\n23) DodoBirb: Build Y1 Greeny\n\n24) Felix: Move R1 Felix Bazoik\n\n25) DodoBirb: Move R2 Dodobirb Greeny\n\n26) Felix: Build R1 Bazoik\n\n27) DodoBirb: Build R2 Greeny\n\n28) Felix: Build R2 Felix\n\n29) DodoBirb: Discover R2 Greeny G2 Medgreen\n\n30) Felix: Move R3 Felix Medgreen\n\n31) DodoBirb: Build R3 Greeny\n\n32) Felix: Build R3 Felix\n\n33) DodoBirb: Sacrifice Y1 Greeny\nDiscover R2 Medgreen Y3 Sun\n\n34) Felix: Build Y1 Felix\n\n35) DodoBirb: Build Y1 Dodobirb\n\n36) Felix: M B3 Felix Medgreen\n\n37) DodoBirb: Build Y2 Greeny\n\n38) Felix: B Y2 Bazoik\n\n39) DodoBirb: Discover R3 Greeny G2 Attack\n\n40) Felix: S Y2 Felix\nM B3 Medgreen Greeny\nM B3 Greeny Dodobirb\n\n41) DodoBirb: Attack B3S Dodobirb\n\n42) Felix: Sacrifice Y2 Bazoik\nMove B2 Bazoik Greeny\nMove B2 Greeny Dodobirb\nCatastrophe Dodobirb Blue\n\n43) DodoBirb: Move R2 Greeny Attack\n\n44) Felix: Sacrifice Y3 Bazoik\nMove R1 Bazoik Dodobirb\nMove R1 Bazoik Dodobirb\nMove R3 Medgreen Dodobirb\nCatastrophe Dodobirb Red\n\n\tFelix: Good game! Thanks for playing\n\nHomeworlds Online (SDG# 35541)\nVariants: "Hard time"\nStarted: 2019.9.16, Ended: 2019.10.7\nParticipants: Babamots (S), ts52 (N)\nWinner: Babamots\n\n1) ts52: Homeworld Y1 B2 G3\n\n2) Babamots: Homeworld B3 R1 G3\n\tts52: Have a good game!\n\tBabamots: Thanks! I know this is a ladder game, but we could save time and make it for the tournament too. Strictly speaking the time controls aren't 7/2/7 like the tournament rules call for, but I don't think either of us plays so slowly that it will matter. I wrote the rules and I don't mind :-). What do you think?\n\n3) ts52: Build G1 Ts52\n\tts52: I don't know. Double stakes? ;) Sure, why not.\n\n4) Babamots: Build G1 Babamots\n\n5) ts52: Trade G1 Y1 Ts52\n\tBabamots: Since you're moving first, my are a little lower (no second-mover has won in the tournament yet). I may regret double stakes, but I accept the risk.\r\n\r\nAlso, will you fill out the form for the tournament?\n\tts52: Will do.\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) ts52: Build Y2 Ts52\n\n8) Babamots: Build Y2 Babamots\n\n9) ts52: Discover Y1 Ts52 G3 Kermit\n\n10) Babamots: Discover Y1 Babamots G2 Genesis\n\n11) ts52: Build G1 Ts52\n\n12) Babamots: Build G1 Babamots\n\n13) ts52: Trade G1 R1 Ts52\n\n14) Babamots: Trade G1 R1 Babamots\n\n15) ts52: Build R2 Ts52\n\n16) Babamots: Build R2 Babamots\n\n17) ts52: Move R2 Ts52 Kermit\n\n18) Babamots: Move R2 Babamots Genesis\n\n19) ts52: Build G1 Ts52\n\n20) Babamots: Build G1 Babamots\n\n21) ts52: Trade G1 B1 Ts52\n\n22) Babamots: Trade G1 B1 Babamots\n\n23) ts52: Build G1 Ts52\n\n24) Babamots: Build G1 Babamots\n\n25) ts52: Move B1 Ts52 Kermit\n\n26) Babamots: Sacrifice G3 Babamots\nBuild Y2 Babamots\nBuild Y3 Genesis\nBuild Y3 Babamots\n\tBabamots: I'm thinking about breaking the mirror, but I hear that's bad luck.\n\n27) ts52: Build Y3 Kermit\n\tts52: Only for 7 years. It'll be over before you know it. ;)\n\n28) Babamots: Discover Y2 Babamots G2 Risa\n\n29) ts52: Sacrifice G3 Ts52\nBuild R2 Kermit\nBuild R3 Kermit\nBuild R3 Ts52\n\n30) Babamots: Sacrifice Y2 Babamots\nMove R1 Babamots Risa\nMove R1 Risa Kermit\nCatastrophe Kermit R\n\n31) ts52: Trade Y3 R3 Kermit\n\n32) Babamots: Move B1 Babamots Genesis\n\n33) ts52: Build G1 Ts52\n\n34) Babamots: Trade Y3 G3 Genesis\n\n35) ts52: Discover G1 Ts52 B3 Gonzo\n\n36) Babamots: Sacrifice G3 Genesis\nBuild Y2 Babamots\nBuild Y3 Risa\nBuild Y3 Genesis\n\n37) ts52: Trade R3 G3 Ts52\n\n38) Babamots: Discover Y3 Risa G3 Orion\n\n39) ts52: Build G2 Gonzo\n\n40) Babamots: Build B1 Genesis\n\n41) ts52: Move Y2 Ts52 Gonzo\n\n42) Babamots: Move B1 Genesis Orion\n\n43) ts52: Sacrifice G3 Ts52\nBuild G3 Ts52\nBuild R1 Kermit\nBuild R2 Ts52\n\n44) Babamots: Build B2 Orion\n\n45) ts52: Move R3 Kermit Risa\n\n46) Babamots: Sacrifice Y2 Risa\nMove B1 Orion Ts52\nMove B2 Orion Ts52\n\n47) ts52: Attack B2 Ts52\n\n48) Babamots: Sacrifice G1 Babamots\nBuild B2 Ts52\nCatastrophe Ts52 B\n\n49) ts52: Sacrifice G3 Ts52\nBuild G1 Gonzo\nBuild G3 Ts52\nBuild Y2 Kermit\n\n50) Babamots: Sacrifice Y3 Babamots\nMove Y1 Genesis Ts52\nMove Y3 Genesis Ts52\nMove Y3 Orion Ts52\nCatastrophe Ts52 Y\n\n\tts52: good game, well played sir!\n\tBabamots: GG!\r\nAs always, if your crews surrender, they will be treated humanely. :-)\n\nHomeworlds Online (SDG# 35543)\nVariants: "Hard time"\nStarted: 2019.9.17, Ended: 2019.9.21\nParticipants: dlwillson (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) dlwillson: H B3 R1 G3 Dlwillson\n\n3) wil: B G1 Wil\n\tdlwillson: GL & HF!\n\n4) dlwillson: B G1 Dlwillson\n\twil: U2\n\twil: \n\twil: Ty\n\n5) wil: T G1 R1 Wil\n\n6) dlwillson: B G1 Dlwillson\n\n7) wil: B R1 Wil\n\n8) dlwillson: T G1 Y1 Dlwillson\n\n9) wil: D R1 Wil B3 B3\n\n10) dlwillson: B Y1 Dlwillson\n\n11) wil: B R2 Wil\n\n12) dlwillson: B Y1 Dlwillson\n\n13) wil: D R2 Wil Y3 Y3\n\n14) dlwillson: D Y1 Dlwillson B2 Sea\n\n15) wil: B R2 Wil\n\n16) dlwillson: B Y2 Dlwillson\n\n17) wil: S G3 Wil\nB R2 B3\nB R3 Y3\nB R3 Wil\n\n18) dlwillson: D Y1 Dlwillson B2 Seatoo\n\n19) wil: M R3 Y3 Sea\n\n20) dlwillson: D Y1 Sea B3 Sky\n\n21) wil: T R3 Y3 Sea\n\n22) dlwillson: Trade Y2 G2 Dlwillson\n\n23) wil: T R3 G3 Wil\n\n24) dlwillson: S G3 Dlwillson\nB Y2 Sky\nB Y2 Seatoo\nB Y3 Dlwillson\n\n25) wil: S G3 Wil\nB R3 Wil\nB R3 Y3\nB R3 B3\n\n26) dlwillson: T Y2 B2 Seatoo\n\n27) wil: D R3 Y3 Y2 Y2\n\n28) dlwillson: D B2 Seatoo G3 Forest\n\n29) wil: S Y3 Sea\nM R3 B3 Y2\nM R3 Y2 Dlwillson\nM R3 Y2 Dlwillson\n\n\twil: Trigger happy\n\tdlwillson: Sigh... Good game. I'm on a losing streak!\n\tdlwillson: But, it's still fun to play. :-)\n\twil: It is fun to play...even the losses.\n\nHomeworlds Online (SDG# 35542)\nVariants: "Hard time"\nStarted: 2019.9.18, Ended: 2019.10.14\nParticipants: Simon (S), Felix (N)\nWinner: Simon\n\n1) Felix: Homeworld B2 Y3 G3\n\tSimon: Have fun! :-)\n\n2) Simon: Homeworld R1 G3 B3\n\tFelix: Same to you!\n\n3) Felix: Build G1 Felix\n\n4) Simon: Build B1 Simon\n\n5) Felix: Trade G1 B1 Felix\n\n6) Simon: Trade B3 Y3 Simon\n\n7) Felix: B G1 Felix\n\n8) Simon: Build Y1 Simon\n\n9) Felix: T G1 Y1 Felix\n\n10) Simon: Discover Y1 Simon G2 G2\n\n11) Felix: B G1 Felix\n\n12) Simon: Build Y1 Simon\n\n13) Felix: Trade G1 R1 Felix\n\n14) Simon: Build Y2 G2\n\n15) Felix: Build R1 Felix\n\n16) Simon: Build B1 Simon\n\n17) Felix: Build B2 Felix\n\n18) Simon: Move B1 Simon G2\n\n19) Felix: Discover B2 Felix G1 Ringot\n\n20) Simon: Trade Y2 R2 G2\n\n21) Felix: Build Y2 Felix\n\n22) Simon: Build Y2 G2\n\n23) Felix: Move Y2 Felix Ringot\n\n24) Simon: Build R2 G2\n\n25) Felix: Move R1 Felix Ringot\n\n26) Simon: Discover Y1 G2 G1 G1\n\n27) Felix: Build R2 Felix\n\n28) Simon: Discover R2 G2 Y3 Y3\n\n29) Felix: Move R2 Felix G1\n\n30) Simon: Build R3 G2\n\n31) Felix: Build R3 Ringot\n\n32) Simon: Trade R3 G3 G2\n\n33) Felix: Attack Y1 G1\n\n34) Simon: Sacrifice G3 G2\nBuild R3 G2\nBuild R3 Y3\nBuild Y2 G2\n\n35) Felix: Build G1 Felix\n\n36) Simon: Move R3 Y3 G1\n\n37) Felix: Sacrifice Y1 G1\nDiscover R2 G1 G2 Entry\n\n38) Simon: Discover Y2 G2 Y1 Y1\n\n39) Felix: Move R3 Ringot Y3\n\n40) Simon: Move R2 Y3 Y1\n\n41) Felix: M R3 Y3 Y1\n\n42) Simon: Build Y3 G2\n\n43) Felix: S R2 Entry\nA R2 Y1\nA Y2 Y1\n\n44) Simon: Build R2 G1\n\n45) Felix: B G2 Felix\n\n46) Simon: Move R3 G2 Ringot\n\n47) Felix: S Y2 Ringot\nD B2 Ringot G2 Oouie\nM R1 Ringot Oouie\n\n48) Simon: Build Y2 Simon\n\n49) Felix: M B1 Felix Y1\n\n50) Simon: Move Y2 G2 G1\n\n51) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B2 Y1\nBuild B3 Oouie\n\n52) Simon: Build B3 G2\n\n53) Felix: Move B1 Y1 G2\n\n54) Simon: Trade B3 G3 G2\n\n55) Felix: Sacrifice G3 Felix\nBuild G3 Felix\nBuild B3 G2\nBuild B3 Y1\n\n56) Simon: Sacrifice Y3 G2\nMove G3 G2 G1\nMove G3 G1 Felix\nMove R3 Ringot Felix\nCatastrophe Felix Green\n\n\tSimon: Hmm, the green trade was intended as a threat. >_>\n\tFelix: Haha, whoops! Totally missed that one. Well played!\n\tSimon: gg!\n\nHomeworlds Online (SDG# 35367)\nVariants: "Unrated"\nStarted: 2019.9.24, Ended: 2019.10.6\nParticipants: Vezeon (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tVezeon: homeworld r1 b2 g3\n\n2) Vezeon: Homeworld R2 B3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) Vezeon: Build G1 Vezeon\n\n5) Trydnt: Trade G1 Y1 Trydnt\n\n6) Vezeon: Trade G1 Y1 Vezeon\n\n7) Trydnt: Build Y2 Trydnt\n\n8) Vezeon: Build Y2 Vezeon\n\n9) Trydnt: Discover Y2 Trydnt G3 G3\n\n10) Vezeon: Build G1 Vezeon\n\n11) Trydnt: Build G1 Trydnt\n\n12) Vezeon: Discover G1 Vezeon B1 Pluto\n\n13) Trydnt: Trade G1 B1 Trydnt\n\n14) Vezeon: Build G1 Pluto\n\n15) Trydnt: Build B1 Trydnt\n\n16) Vezeon: Trade Y2 B2 Vezeon\n\n17) Trydnt: Build Y2 G3\n\n18) Vezeon: Discover B2 Vezeon R1 Mars\n\n19) Trydnt: Move B1 Trydnt G3\n\n20) Vezeon: Discover Y1 Vezeon R1 Magma\n\n21) Trydnt: Discover Y2 G3 G1 G1\n\n22) Vezeon: Build G2 Vezeon\n\n23) Trydnt: Build G2 Trydnt\n\n24) Vezeon: Build G2 Vezeon\n\n25) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 G1\nBuild Y3 G3\n\n26) Vezeon: Trade B2 R2 Mars\n\n27) Trydnt: Sacrifice Y3 G3\nMove G3 Trydnt G3\nMove G3 G3 Pluto\nMove G3 Pluto Vezeon\nCatastrophe Vezeon G\n\n\nHomeworlds Online (SDG# 35560)\nVariants: "Unrated"\nStarted: 2019.9.25, Ended: 2019.9.30\nParticipants: Babamots (S), Dther (N)\nWinner: Babamots\n\n1) Dther: Homeworld R2 B3 G3\n\tBabamots: Hi! Looks like this is your first game on SDG. Have you ever played Homeworlds before? Let me know if you need help understanding the site commands.\n\tDther: Hey there. Really want to learn this game, but I'm still trying to introduce pyramids in general to my board game group. Hope I don't embarrass myself too much :T\n\tBabamots: It's very late for me right now, but I'll look for your reply in the morning.\n\tBabamots: Sounds good! Have you read the rules?\n\n2) Babamots: Homeworld B3 R1 G3\n\tDther: I have, I think I get the basics. Thanks for starting a game for beginners like me :)\n\tBabamots: Maybe I'll stay up a tiny bit more. It's hard to resist this game. Normally, you can expect to wait a few hours or days for your opponent to make a move on SDG.\n\n3) Dther: Build G1 Dther\n\tBabamots: I'm always surprised by how quickly new players show up when I offer a training game. It's good to know the community is growing.\n\n4) Babamots: Build G1 Babamots\n\n5) Dther: Trade G1 Y1 Dther\n\tDther: That's good to hear. There isn't exactly a vibrant community here in Australia, but I love the concept of Looney Pyramids so much. I've had some success in introducing Zendo so far.\n\n6) Babamots: Trade G1 Y1 Babamots\n\tBabamots: Sometimes I like a blue/yellow system instead of blue/red. Yellow is slightly safer from sudden catastrophes since the yellow ship being sacrificed can't be moved in.\r\n\r\nA red star is safer from multi-move catastrophes for tricky reasons I'm too sleepy to explain.\n\n7) Dther: Build G1 Dther\n\n8) Babamots: Build G1 Babamots\n\tDther: Hmm, is it because, when combined with the general good practice to always have a large at your homeworld, the red star allows for attack actions in between the opponent's moves?\n\tBabamots: I'm in the eastern US. Seems like I met another Australian player on SDG, but I can't remember who.\r\n\r\nGames between people in the same time zone often go faster since they don't always have to wait for the other player to finish sleeping. I'd better make this my last move for the night. There's work in the morning.\n\tDther: That's probably a good idea, see you then!\n\tBabamots: Yes, about the red. In particular, you can sacrifice the red ship you captured on the previous turn to prevent catastrophic buildup. To make a red catastrophe, your opponent can't just move ships one at a time for that reason. Even very good players forget that sometimes.\n\n9) Dther: Trade G1 R1 Dther\n\n10) Babamots: Trade G1 R1 Babamots\n\n11) Dther: Build R2 Dther\n\n12) Babamots: Build R2 Babamots\n\n13) Dther: Discover R2 Dther G1 Styx\n\n14) Babamots: Trade R1 B1 Babamots\n\n15) Dther: Trade R1 B1 Dther\n\n16) Babamots: Build R1 Babamots\n\n17) Dther: Move B1 Dther Styx\n\n18) Babamots: Discover R2 Babamots G2 Betazed\n\n19) Dther: Build G1 Dther\n\n20) Babamots: Move B1 Babamots Betazed\n\n21) Dther: Build Y1 Dther\n\n22) Babamots: Build Y2 Babamots\n\n23) Dther: Build Y2 Dther\n\n24) Babamots: Build Y2 Babamots\n\n25) Dther: Move Y1 Dther Styx\n\tDther: Has anyone ever written an AI for Homeworlds? I'm a computer science student, and part of what interests me about Homeworlds is how it strikes the middle ground of computational complexity between Chess and Go.\n\n26) Babamots: Move Y2 Babamots Betazed\n\n27) Dther: Build Y3 Styx\n\tDraw5PlayAll: www.github.com/Quuxplusone (user "ajo" here) wrote a pretty weak one.\n\tBabamots: Yes, the SDG account "speardane" is for an AI maintained by the player whose SDG account is "ajo." It has been known to beat people.\r\n\r\nI also wrote a bot, but it has pretty big problems.\r\n\r\nHomeworlds can actually have a game tree that branches faster than go. For example, in a position where a player has quite a few ships and a large yellow ship, they can have thousands of possible moves (because of sacrifices). But of course, they lose their y3 if they take one of those moves, so the game tree won't branch that much on every move.\r\n\r\nI don't play much chess, but I think it might be easier to tell who is ahead at a glance in Homeworlds. So I think state evaluation heuristics might be very efficient for HW compared to chess.\n\n28) Babamots: Build Y3 Betazed\n\tBabamots: When both players have lots of yellow is when the game is really exciting. Seems like the first person to make a tiny mistake always loses.\n\n29) Dther: Trade G1 B1 Dther\n\tDther: That would make sense. Would it be right to think that it's because Yellow sacrifices create more possible branching paths than any other kind of sacrifice?\n\tBabamots: Yeah, each move action could move any ship to any connected system or discover a new system. Lots of possibilities.\r\n\r\nBlue sacrifices also create lots of possibilities.\n\n30) Babamots: Discover Y2 Babamots G2 Orion\n\n31) Dther: Trade Y1 R1 Styx\n\n32) Babamots: Sacrifice G3 Babamots\nBuild Y1 Orion\nBuild Y3 Babamots\nBuild R3 Betazed\n\tDther: What kind of things should I be thinking of in terms of a long term plan? Right now all I'm thinking of is avoiding catastrophes and trying to get resources for the late game.\n\tBabamots: I'm trying to spread out my yellows so that I can safely build that last y3 before you can. Let mw know if you want suggestions on how to block me.\n\tBabamots: You're doing pretty well. You haven't given me a chance to catastrophe, you haven't opened up larger sizes for me unless you would be able to get ships that size as well.\n\tBabamots: I made a mistake on my last move. I should have moved out my small ship instead. That way I was threatening to destroy your y3 and y1 with a y2 sacrifice.\n\n33) Dther: Sacrifice Y2 Dther\nMove R2 Styx Betazed\nMove R1 Styx Betazed\nCatastrophe Betazed R\n\n34) Babamots: Move Y2 Orion Styx\n\tBabamots: Well, that time you opened up larges of a color that you aren't prepared to build. Discovering a y3 system was probably your best way to block my build.\n\tDther: In hindsight, would discovering a Y3 star have been a better way to block?\n\n35) Dther: Trade B1 R1 Styx\n\n36) Babamots: Sacrifice R1 Babamots\nAttack R1 Styx\n\tBabamots: This las move of mine wasn't great. I wanted to flaunt the fact that you can't attack my y2 because you don't have a red. It also prevents you from building the available y2 because I could just cause a catastrophe.\r\n\r\nHowever, it isn't really a threat. You can ignore it or get a red so you can attack it unless I retreat.\n\n37) Dther: Move Y3 Styx Dther\n\n38) Babamots: Build B1 Betazed\n\n39) Dther: Trade Y3 R3 Dther\n\n40) Babamots: Build R1 Styx\n\tBabamots: Do you have a naming convention in mind for your systems? I use Star Trek planets.\n\n41) Dther: Discover R3 Dther G1 Smolensk\n\tDther: Not really, except for some Greco-Roman nouns and maybe a few nouns from early modern literature which I happen to like the sound of.\n\tDther: I realise that sounds a lot more pretentious than I intended, I'm basically just naming things based on what I think I might use them for later but obfuscating that a little.\n\tBabamots: Not pretentious. "Styx" made me guess you were planning on either 80's bands or mythical locations.\r\n\r\nI think it's mneme that uses Greek muses.\r\nrouguejedi uses Star Wars worlds.\r\nI can't remember who uses Muppets.\r\nSeveral people just use the piece type: "b3" etc. Unimaginative, don't you think? :-P\n\n42) Babamots: Build R2 Styx\n\tBabamots: With a second red on your doorstep, I'm in position to catastrophe your red star. You'll want to either move your r3 out (the best option I suppose) or trade for another color (blue obviously isn't safe, and with yellow I could still catastrophe your ship).\n\n43) Dther: Sacrifice Y1 Dther\nMove R3 Smolensk Betazed\n\tDther: Only slightly embarrassed to admit that I spent more time thinking of a name than on my actual move. In trying to think of a name that could be poetically linked to retreating, I found myself on a Wikipedia page on a Russian city that multiple invaders passed and later retreated through. Maybe thinking of star names will finally give me an excuse to read more...\n\n44) Babamots: Sacrifice R1 Styx\nAttack R3 Betazed\n\n45) Dther: Build B2 Dther\n\tBabamots: https://github.com/jpeterbaker/SDGchange/blob/master/sdgPageChange.js\r\n\r\nHere's something I use to help me navigate on SDG. There are two ways to view games: "play pages" and "archive pages." Archive pages let you look at all past game states (play pages don't).\r\n\r\nYou can put those few lines of Javascript into a browser bookmark and then click it to open the other page for the game.\r\n\r\nCan you use it to see the archive page for this game?\n\tBabamots: You may have forgotten about red sacrifices. I can sacrifice an r1 in Styx to capture your r3.\r\n\r\nHowever, I can also win in two moves if I just ignore your r3. I think it would be more instructive for you to see that happen.\n\tBabamots: Oops, nope, I forgot which sizes systems are. I won't win in 2 moves. Dur.\n\tBabamots: If Betazed were a small system, I could do a blue catastrophe at your home now and do a red one on my next turn.\n\n46) Babamots: Sacrifice Y2 Betazed\nMove B1 Betazed Styx\nMove B1 Styx Dther\nCatastrophe Dther B\n\n47) Dther: Build G1 Dther\n\tDther: agh. Looks like I'm just as bad at recovering from blunders here as I am with Chess. Thanks for the tips, I *did* forget about red sacrifices.\r\nI've added your page change script to my bookmarks, but what browser do you use? It does open up the archive page, but on Firefox i'm finding it moves the original page to a mostly blank page that just says "false". Might test it with my other browser when I have time.\n\tBabamots: I'm using Chrome. Maybe you need to take out the "return false" line?\n\n48) Babamots: Sacrifice Y3 Betazed\nMove R3 Betazed Styx\nMove R3 Styx Dther\nMove R2 Styx Dther\n\n49) Dther: Attack R3 Dther\n\tDther: Ah yeah, works just fine now. It's been too long since I've messed with Javascript.\n\n50) Babamots: Move R1 Styx Dther\nCatastrophe Dther R\n\n\tDther: Well, darn. Good game.\n\tBabamots: Hopefully it was at least a little instructive. In other teaching games, I've had a tendency to do nothing but call out mistakes, which seems patronizing. I tried to avoid that this time, but possibly at the loss of educational opportunities.\r\n\r\nI mentioned my own bad moves as we went along, but I think I should use the archive view to make a list of your weaker moves with explanations. How does that sound?\n\tBabamots: I went ahead and typed up my suggestions/analysis. Enjoy! :-)\r\n\r\nYour homeworld is OK, but I think the "banker" is strongest. That means a medium and a small piece for stars. That setup allows you the best control of the large pieces (since you use them as stars when you move out of your home system).\r\n\r\nOne your 8th move, you trade r1 for b1. I think you should have pressed your advantage in the red economy.The main reason is that the r1 was your only red ship in your home system. After your move, there are fewer systems in which you have red ships, so your hurt your ability to produce reds. If you ever want a red ship at your home again, you will have to trade for it or move one there, which will set you back a move. That's why I avoid trading or moving the last ship of a color from a system, especially in the early game.\r\n\r\nOn your 9th move, you move b1 to Styx. I dislike this for the same reason as your 8th move: it was your only blue ship in Dther. Later, on your 15th move, you trade a g1 for b1 in Dther. If you had built a b1 on your 9th move, you would have saved yourself a g1. (The disadvantage of what I'm suggesting is that you would have allowed me to build a b2 earlier.\r\n\r\nOn your 16th move, you traded y1 for r1. I'd say this is where things got away from you. You were trying to block me from building y3 (a good idea), but made it easy for me to build r3. I picked up the y3 with a green sacrifice anyway, but at the expense of my g3. I think you should have discovered a y3 system instead, probably with your r2 or y1 in Styx.\r\n\r\nI think your 17th move is the best one that was available to you. Maybe you even made your 16th move with the plan that, if I built r3, you would trigger the catastrophe. But your 16th and 17th moves together are still poor (17 just makes up some of the lost ground). If you look at the difference between the positions after my 15th move and your 17th move, I lost one r2 ship while you lost an r2 and a y2 (I also gained a y1 and my g3 becomes y3). It may look good that I lost an r3, but it would have been much better if I never got to build it.\r\n\r\nAnother effect of your 17th move is that you no longer have any red, which is why I was able to boldly move my y2 under your y3's nose.\r\n\r\nAlso, remember on your 8th move when you traded away the only red ship in Dther? If you had kept it, you would still have a red ship at this moment.\r\n\r\nOn your 18th move, you traded b1 for r1. You see now that I could just take it from you with a red sacrifice. If you had traded your y3 for r3 instead, you would have taken my y2 unless I simply retreated. Trading your b1 for r1 in Dther would have had a similar effect.\r\n\r\nWe already talked about your 22nd move. Red sacrifices are extremely important. "A red anywhere is a red everywhere."\r\n\r\nOf course it's over at this point, but your 23rd move sped up the game by making it even easier to cause a blue catastrophe.\n\tDther: Thanks for the analysis! I always learn a lot from these kinds of after-game analyses. I think on my 8th and 9th move most of my thoughts were on if I should continue trying to build up and have a nice diversity of ships at my homeworld or start moving things out, so that answers that question. Thanks for the game! It's good to know that Homeworlds had the kind of tactical depth I was looking for :)\n\tBabamots: Oh yes, and since this was just a training exercise, the crews of your ships haven't actually been killed. Tell their families to expect them home in 1-3 standard cycles. :-P\n\nHomeworlds Online (SDG# 35482)\nStarted: 2019.9.26, Ended: 2019.10.14\nParticipants: dragon76n (S), MobyNostromo (N)\nWinner: dragon76n\n\n\tdragon76n: Hello... still waiting for you to setup.\n\tdragon76n: Hello... still waiting for you to setup.\n\nHomeworlds Online (SDG# 35529)\nStarted: 2019.9.27, Ended: 2019.10.31\nParticipants: Felix (S), bhorner (N)\nWinner: bhorner\n\n1) bhorner: Homeworld B1 R2 G3\n\n2) Felix: Homeworld B1 G3 B3 *\n\n3) bhorner: Build G1 Bhorner\n\tFelix: I intend this game to be for the homeworlds tournament 2019. Are you good with that?\n\tbhorner: Oh yeah, that's what I expected. :)\r\n\r\nAnd I also set up my planet, and thought you might do what you have done, to see if I was right that I can get around it (I thought at one point I could, but will have to re-figure it out), sorry if I move more slowly in the beginning here.\n\n4) Felix: Build B1 Felix\n\tbhorner: I just reread the rules stuff, I guess it was my responsibility to say this was an official tournament game. :) Sorry for missing that, I just got back from a long trip. I just filled out the form, and this game should show up in the matrix now.\n\tFelix: Not a problem! I often forget who's supposed to, myself. I figure whoever actually initiates the challenge should do it, but either way... as long as it's on the map!\r\n\r\nTake as much time as you like. I'm never very confident about this opening myself, but I think it's fun to try out!\n\n5) bhorner: Trade G3 B3 Bhorner\n\n6) Felix: Trade B3 Y3 Felix\n\tbhorner: Seems like I possibly had an extra move, and didn't need to do that immediately, but I couldn't make myself sure. :) Hopefully I haven't lost my first player advantage.\n\n7) bhorner: Build B2 Bhorner\n\n8) Felix: Build B2 Felix\n\n9) bhorner: Trade B2 Y2 Bhorner\n\n10) Felix: Discover B1 Felix G2 Folstaf\n\n11) bhorner: Build B2 Bhorner\n\n12) Felix: Build B2 Folstaf\n\n13) bhorner: Discover B2 Bhorner G3 Tree\n\n14) Felix: Trade B2 Y2 Folstaf\n\n15) bhorner: Build G1 Bhorner\n\n16) Felix: B Y1 Folstaf\n\n17) bhorner: Discover G1 Bhorner B3 Ocean\n\n18) Felix: B Y1 Felix\n\n19) bhorner: Trade B3 G3 Bhorner\n\n20) Felix: T Y1 R1 Folstaf\n\n21) bhorner: Trade G1 R1 Bhorner\n\n22) Felix: B R1 Folstaf\n\n23) bhorner: Build G1 Bhorner\n\n24) Felix: M R1 Folstaf Felix\n\n25) bhorner: Build G1 Ocean\n\n26) Felix: Build R2 Folstaf\n\n27) bhorner: Sacrifice G3 Bhorner\nBuild G2 Ocean\nBuild G2 Bhorner\nBuild G3 Bhorner\n\n28) Felix: Build B2 Folstaf\n\n29) bhorner: Sacrifice G3 Bhorner\nBuild B3 Tree\nBuild Y1 Bhorner\nBuild G3 Bhorner\n\n30) Felix: Move B1 Folstaf Tree\n\n31) bhorner: Trade B2 R2 Tree\n\n32) Felix: Build B2 Folstaf\n\n33) bhorner: Discover R1 Bhorner B3 Sky\n\n34) Felix: Move R2 Folstaf Sky\n\n35) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild R3 Sky\nBuild R3 Tree\n\n36) Felix: Move R1 Folstaf Sky\nCatastrophe Sky Red\n\n37) bhorner: Attack B1 Tree\n\n38) Felix: Discover B2 Folstaf Y3 Sun\n\n39) bhorner: Sacrifice Y1 Bhorner\nMove R3 Tree Folstaf\n\n40) Felix: Sacrifice Y2 Folstaf\nDiscover B2 Folstaf Y3 Brim\nDiscover B2 Felix Y2 Star\n\n41) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y1 Bhorner\nBuild R1 Folstaf\n\n42) Felix: Build R1 Felix\n\n43) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild R2 Tree\nBuild R3 Tree\n\n44) Felix: Move R1 Felix Star\n\n45) bhorner: Move Y1 Bhorner Tree\n\n46) Felix: Move R1 Star Tree\nCatastrophe Tree Red\n\n47) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild Y1 Bhorner\nBuild Y2 Tree\n\n48) Felix: Build R1 Felix\n\tbhorner: That sucked. :)\n\n49) bhorner: Sacrifice Y2 Bhorner\nDiscover Y2 Tree R2 Fire\nDiscover R1 Folstaf R3 Volcano\n\n50) Felix: Move R1 Felix Star\n\tFelix: I know the feeling. Having no green sucks too, haha.\n\n51) bhorner: Sacrifice G3 Bhorner\nBuild G3 Bhorner\nBuild R2 Volcano\nBuild R3 Folstaf\n\n52) Felix: Move Y1 Felix Star\n\n53) bhorner: Move B3 Tree Star\n\n54) Felix: Sacrifice Y1 Star\nMove R1 Star Volcano\nCatastrophe Volcano Red\n\n55) bhorner: Sacrifice Y2 Fire\nMove R3 Folstaf Felix\nMove B3 Star Felix\n\n\tFelix: Oh bravo! Totally missed that one :) Good game and well done.\n\tbhorner: Thanks. It was hard work! GG!\n\nHomeworlds Online (SDG# 35574)\nStarted: 2019.9.28, Ended: 2019.11.14\nParticipants: MobyNostromo (S), Dther (N)\nWinner: Dther\n\n1) Dther: Homeworld R2 B3 G3\n\n2) MobyNostromo: Homeworld B2 G3 Y3\n\n3) Dther: Build G1 Dther\n\n4) MobyNostromo: Build Y1 Mobynostromo\n\n5) Dther: Build G1 Dther\n\n6) MobyNostromo: Discover Y1 Mobynostromo G1 Srouts\n\n7) Dther: Trade G1 Y1 Dther\n\n8) MobyNostromo: Build Y1 Mobynostromo\n\n9) Dther: Build Y2 Dther\n\n10) MobyNostromo: Build Y2 Srouts\n\n11) Dther: Sacrifice Y2 Dther\nMove G1 Dther Srouts\nMove G1 Srouts Mobynostromo\n\n12) MobyNostromo: Trade Y1 R1 Mobynostromo\n\n13) Dther: Build G1 Mobynostromo\n\n14) MobyNostromo: Build R1 Mobynostromo\n\n15) Dther: Build G2 Dther\n\n16) MobyNostromo: Attack G1 Mobynostromo\n\n17) Dther: Sacrifice G3 Dther\nBuild G2 Mobynostromo\nBuild G2 Dther\nBuild G3 Dther\nCatastrophe Mobynostromo G\n\n18) MobyNostromo: Trade R1 B1 Mobynostromo\n\n19) Dther: Trade G2 B2 Dther\n\n20) MobyNostromo: Move B1 Mobynostromo Srouts\n\n21) Dther: Discover B2 Dther G1 Malachite\n\n22) MobyNostromo: Trade Y2 R2 Srouts\n\n23) Dther: Build B1 Malachite\n\n24) MobyNostromo: D R2 Srouts Y2 Amber\n\n25) Dther: Trade B1 R1 Malachite\n\n26) MobyNostromo: B B1 Srouts\n\n27) Dther: Trade G3 Y3 Dther\n\n28) MobyNostromo: Trade B1 R1 Srouts\n\n29) Dther: Sacrifice G2 Dther\nBuild B1 Malachite\nBuild B1 Malachite\n\n30) MobyNostromo: M R2 Amber Malachite\n\n31) Dther: Sacrifice Y3 Dther\nMove B2 Malachite Mobynostromo\nMove B1 Malachite Mobynostromo\nMove B1 Malachite Mobynostromo\nCatastrophe Mobynostromo B\n\n\nHomeworlds Online (SDG# 35573)\nStarted: 2019.9.28, Ended: 2019.11.16\nParticipants: Dther (S), dragon76n (N)\nWinner: Dther\n\n1) dragon76n: H G2 R3 B3\n\n2) Dther: Homeworld B2 R1 G3\n\tdragon76n: Thanks for playing. Good luck and have fun!\n\n3) dragon76n: Build B1 Dragon76n\n\tDther: Good luck to you too, I'm new at this game so I'll need all the luck I can get :)\n\tdragon76n: Ok, you know the basics, right? \n\n4) Dther: Build G1 Dther\n\n5) dragon76n: Trade B1 Y1 Dragon76n\n\tDther: I do, but not much else\n\tdragon76n: Ok, feel free to ask me if you have questions. I'm not an expert by any means, but I have been playing for a while. \n\n6) Dther: Trade G1 Y1 Dther\n\n7) dragon76n: Build B1 Dragon76n\n\n8) Dther: Build G1 Dther\n\n9) dragon76n: Trade B1 G1 Dragon76n\n\n10) Dther: Trade G1 B1 Dther\n\n11) dragon76n: Build B1 Dragon76n\n\n12) Dther: Build G1 Dther\n\n13) dragon76n: Trade B1 R1 Dragon76n\n\n14) Dther: Trade G1 R1 Dther\n\n15) dragon76n: Build R2 Dragon76n\n\n16) Dther: Build G1 Dther\n\n17) dragon76n: Discover R2 Dragon76n B1 Bluone\n\n18) Dther: Build R2 Dther\n\n19) dragon76n: Move G1 Dragon76n Bluone\n\n20) Dther: Discover R2 Dther B3 Bigblue\n\n21) dragon76n: T R2 Y2 Bluone\n\n22) Dther: Build R2 Dther\n\n23) dragon76n: M R1 Dragon76n Bluone\n\n24) Dther: Discover R2 Dther Y3 Bigyellow\n\n25) dragon76n: Trade B3 R3 Dragon76n\n\n26) Dther: Discover R1 Dther G3 Biggreen\n\n27) dragon76n: Move Y2 Bluone Biggreen\n\n28) Dther: Build R2 Biggreen\n\n29) dragon76n: Sacrifice R1 Bluone\nAttack R2 Biggreen\n\n30) Dther: Discover G1 Dther R3 Bigred\n\n31) dragon76n: Build R1 Biggreen\n\n32) Dther: Sacrifice G1 Bigred\nBuild R3 Bigblue\n\n33) dragon76n: Attack R1 Biggreen\n\n34) Dther: Trade R3 Y3 Bigblue\n\n35) dragon76n: S Y2 Biggreen\nM R1 Biggreen Dther\nM R1 Biggreen Dther\n\n36) Dther: Move R2 Bigyellow Bluone\n\n37) dragon76n: S G1 Bluone\nB R3 Dther\nC Dther Red\n\n38) Dther: Trade B1 R1 Dther\n\n39) dragon76n: Build Y1 Dragon76n\n\n40) Dther: Sacrifice Y3 Bigblue\nMove R2 Bigblue Bluone\nMove R2 Bluone Dragon76n\nMove R2 Bluone Dragon76n\nCatastrophe Dragon76n Red\n\n41) dragon76n: B Y2 Dragon76n\n\n42) Dther: Build Y2 Dther\n\n43) dragon76n: D Y1 Dragon76n B1 Bluone\n\n44) Dther: Discover Y1 Dther G3 Biggreen2\n\n45) dragon76n: Trade Y1 B1 Bluone\n\n46) Dther: Build Y1 Biggreen2\n\n47) dragon76n: Sacrifice Y2 Dragon76n\nMove R2 Biggreen Dragon76n\nMove B1 Bluone Dragon76n\n\n48) Dther: Build Y2 Biggreen2\n\n49) dragon76n: Discover Y1 Dragon76n G1 Greone\n\n50) Dther: Discover Y2 Biggreen2 G1 Smlgreen\n\n51) dragon76n: B R1 Dragon76n\n\n52) Dther: Sacrifice G3 Dther\nBuild Y2 Biggreen2\nBuild Y3 Dther\nBuild Y3 Smlgreen\n\n53) dragon76n: Build Y3 Greone\n\n54) Dther: Sacrifice Y2 Biggreen2\nMove Y1 Biggreen2 Greone\nMove Y1 Biggreen2 Greone\nCatastrophe Greone Y\n\n55) dragon76n: Trade R1 Y1 Dragon76n\n\n56) Dther: Move Y3 Smlgreen Dragon76n\n\n57) dragon76n: Discover R2 Dragon76n Y1 Yelone\n\n58) Dther: Trade Y3 R3 Dther\n\n59) dragon76n: B Y1 Dragon76n\n\n60) Dther: Sacrifice R3 Dther\nAttack Y1 Dragon76n\nAttack Y1 Dragon76n\nAttack B1 Dragon76n\n\n\nHomeworlds Online (SDG# 35454)\nStarted: 2019.9.28, Ended: 2019.11.5\nParticipants: Felix (S), speardane (N)\nWinner: Felix\n\n1) speardane: Homeworld Y2 B3 G3\n\n2) Felix: Homeworld B2 Y3 G3\n\n3) speardane: Build G1 Speardane\n\tFelix: This game is for the 2019 tournament. Do you agree? :)\n\n4) Felix: Build G1 Felix\n\tspeardane: For the tournament!\n\n5) speardane: Trade G3 R3 Speardane\n\n6) Felix: Trade G1 B1 Felix\n\n7) speardane: Build G1 Speardane\n\n8) Felix: Build B1 Felix\n\n9) speardane: Discover G1 Speardane B1 Delos\n\n10) Felix: Discover B1 Felix Y1 Route\n\n11) speardane: Build G1 Delos\n\n12) Felix: Build B2 Felix\n\n13) speardane: Trade G1 Y1 Delos\n\n14) Felix: Discover B2 Felix R1 Leet\n\n15) speardane: Build G1 Delos\n\n16) Felix: Sacrifice G3 Felix\nBuild B2 Route\nBuild B3 Felix\nBuild B3 Leet\n\n17) speardane: Build G2 Delos\n\n18) Felix: T B3 G3 Felix\n\n19) speardane: Discover G2 Delos B3 Lebling\n\n20) Felix: T B3 G3 Leet\n\n21) speardane: Discover G1 Delos B3 Kotok\n\n22) Felix: B G2 Felix\n\n23) speardane: Build G2 Kotok\n\n24) Felix: B G3 Leet\n\n25) speardane: Trade G2 Y2 Kotok\n\n26) Felix: T G2 R2 Felix\n\n27) speardane: Build G2 Lebling\n\n28) Felix: Trade G3 Y3 Leet\n\n29) speardane: Trade G2 Y2 Lebling\n\n30) Felix: Move R2 Felix Delos\n\n31) speardane: Sacrifice G2 Lebling\nBuild Y1 Lebling\nBuild Y3 Delos\n\n32) Felix: Attack Y1 Delos\n\n33) speardane: Trade Y2 R2 Lebling\n\n34) Felix: Sacrifice Y1 Delos\nMove R2 Delos Felix\n\n35) speardane: Build Y1 Kotok\n\n36) Felix: Build R1 Felix\n\n37) speardane: Trade Y1 R1 Kotok\n\n38) Felix: Move G3 Leet Kotok\n\n39) speardane: Sacrifice Y2 Kotok\nDiscover R1 Kotok Y1 Minsky\nMove G1 Kotok Minsky\n\n40) Felix: Build G2 Kotok\n\n41) speardane: Sacrifice G1 Minsky\nBuild R2 Minsky\n\n42) Felix: Trade G3 R3 Kotok\n\n43) speardane: Build R3 Speardane\n\n44) Felix: Sacrifice G2 Kotok\nBuild G1 Felix\nBuild Y2 Leet\n\n45) speardane: Move R3 Speardane Route\n\n46) Felix: Sacrifice Y2 Leet\nMove B1 Route Speardane\nMove B2 Route Speardane\n\n47) speardane: Attack B2 Speardane\n\n48) Felix: Move B2 Leet Speardane\nCatastrophe Speardane Blue\n\n49) speardane: Trade R2 G2 Lebling\n\n50) Felix: Move G1 Felix Leet\n\n51) speardane: Build G2 Lebling\n\n52) Felix: Build Y2 Leet\n\n53) speardane: Move G2 Lebling Route\n\n54) Felix: Move Y3 Leet Lebling\n\n55) speardane: Sacrifice Y1 Lebling\nMove G2 Lebling Minsky\n\n56) Felix: Build Y1 Leet\n\n57) speardane: Discover R2 Minsky B3 Licklider\n\n58) Felix: Build Y2 Leet\n\n59) speardane: Pass\n\n60) Felix: Sacrifice Y3 Lebling\nMove Y1 Leet Speardane\nMove Y2 Leet Speardane\nMove Y2 Leet Speardane\nCatastrophe Speardane Yellow\n\tspeardane: Good game!\n\tFelix: You too!\n\n\nHomeworlds Online (SDG# 35580)\nVariants: "Unrated"\nStarted: 2019.9.30, Ended: 2019.10.21\nParticipants: Babamots (S), Dther (N)\nWinner: Dther\n\n1) Dther: Homeworld R1 B2 G3\n\n2) Babamots: Homeworld B3 Y2 G3\n\n3) Dther: Build G1 Dther\n\n4) Babamots: Build G1 Babamots\n\n5) Dther: Trade G1 R1 Dther\n\n6) Babamots: Trade G1 R1 Babamots\n\n7) Dther: Build R2 Dther\n\n8) Babamots: Build R2 Babamots\n\n9) Dther: Trade R1 Y1 Dther\n\n10) Babamots: Trade R2 Y2 Babamots\n\n11) Dther: Build Y1 Dther\n\tBabamots: Everything's going pretty standard so far. I'm planning to give more commentary when things liven up.\r\n\r\nIt's pretty common for the player going second to essentially mirror what the other player does for a while. It can be a little dull, but it's often the best option for South.\n\n12) Babamots: Build G1 Babamots\n\tDther: Sorry about the long move, been really busy in real life.\n\n13) Dther: Build G1 Dther\n\tBabamots: No problem.\n\n14) Babamots: Discover G1 Babamots B1 Andoria\n\n15) Dther: Discover G1 Dther Y3 Theseus\n\n16) Babamots: Build G1 Babamots\n\n17) Dther: Discover Y1 Dther G3 Yggdrasil\n\tBabamots: Right now I think you should continue to fight me for control of green. It's common for fights like this to end with all pieces of the contested color being turned into systems or ships. The final build is likely to involve a sacrifice of the g3, so expect me try to build the last TWO green ships in one move (and rebuild the sacrificed g3).\r\n\r\nLater on, it may be important that you have the advantage in yellow ship count (and you have a yellow "investment"). You will probably want to spread out your yellows and then build more yellow soon.\n\n18) Babamots: Move Y2 Babamots Andoria\n\n19) Dther: Build G2 Dther\n\n20) Babamots: Sacrifice G3 Babamots\nBuild G2 Andoria\nBuild G2 Babamots\nBuild G3 Babamots\n\n21) Dther: Build Y1 Yggdrasil\n\tBabamots: We both have "factories," so between the two of us, we will probably build most of the pieces pretty soon.\n\n22) Babamots: Sacrifice G3 Babamots\nBuild R1 Babamots\nBuild R2 Babamots\nBuild G3 Babamots\n\tBabamots: Do you know what I mean by "factory?" The green supply is gone and you have a large green in the same system as another green. You can sacrifice the g3 to build two ships and rebuild your g3, basically getting a free build move.\n\n23) Dther: Sacrifice G3 Dther\nBuild Y2 Dther\nBuild Y3 Dther\nBuild G3 Dther\n\n24) Babamots: Build Y3 Andoria\n\tDther: I do- I wanted to get rid of the small yellows so that I could build the bigger ships. I didn't want to build other colours yet because I was afraid of a catastrophe, but in retrospect I probably could have gotten away with some reds.\n\n25) Dther: Sacrifice Y2 Dther\nMove G1 Theseus Andoria\nMove G1 Andoria Babamots\nCatastrophe Babamots G\n\n26) Babamots: Trade R1 G1 Babamots\n\tBabamots: Ah, very good. I wasn't very careful there.\n\n27) Dther: Sacrifice G2 Dther\nBuild Y2 Yggdrasil\nBuild Y3 Dther\n\tBabamots: So rather than re-defending with my large ship, I've traded to match the color of the only large that you could get to my home (the green). If you sacrificed your y3 to move your g3 to my home immediately, I could double build to catastrophe it away.\r\n\r\nIf you build yellow, I'm in huge trouble.\n\tBabamots: Your best move is probably to sacrifice g2 to build y2 and y3 in Yggdrasil and Dther respectively. I can't cause a catastrophe without almost certainly losing in a move or two, and you'll be ahead by two large ships.\r\n\r\nWell done :-D\n\n28) Babamots: Move Y3 Andoria Babamots\n\tDther: I'm really impressed by the kind of tactical depth that this game has. I'm wondering if there could be something like Chess problems, where players are given a board state and need to find the ideal series of moves to create a major advantage.\n\n29) Dther: Discover Y1 Yggdrasil B1 Rubicon\n\tBabamots: I tried to compose some Homeworlds puzzles once, but I thought it was quite difficult to come up with situations where I could say with certainty what the best move was unless it was obviously best.\n\n30) Babamots: Move R2 Babamots Rubicon\n\n31) Dther: Sacrifice Y3 Dther\nMove Y1 Rubicon Babamots\nMove Y1 Yggdrasil Andoria\nMove Y1 Andoria Babamots\nCatastrophe Babamots Y\n\n32) Babamots: Sacrifice Y2 Andoria\nMove R1 Babamots Dther\nDiscover R2 Rubicon Y3 Pakeld\n\tBabamots: Very good, and it looks like you're holding your own in your game with dragon76n, too. You don't need my advice as much as I expected. It's hard to feel like the old pro giving a lesson when I actually lose. Just goes to show how quickly a game will get away from you if you're not careful. My only excuse is that I'm pretty focused on beating Felix in the tournament :-).\n\n33) Dther: Sacrifice R2 Dther\nAttack R1 Dther\nPass\n\tBabamots: Here's one last puzzle for you: see if you can prevent me from causing a red catastrophe in your home. Not knowing this trick cost me a high-stakes game once (to Felix, as it happens).\n\n34) Babamots: Trade G2 Y2 Andoria\n\tBabamots: Good! I wondered if you would get that.\n\tDther: Seemed like this was the only way. I thought about moving it away, but then I realised that you could just sacrifice the G2 in Andoria to build two more reds and cause a catastrophe. I'm wondering whether moving the Y3 into Babamots would have been a more optimal move, since even if you caused a red catastrophe in my system, I could trade it for a blue and sacrifice my G3 to completely destroy Babamots.\r\n\r\nThanks for all the advice, by the way. I've learnt a great deal from just these two games :)\n\tDther: You know, on the topic of Homeworlds problems, I've recently thought about how Lichess gets its large pool of chess problems by pulling them out of turning points in high level games. Maybe when I have time, I might comb the database for interesting games. Even if the answers ended up feeling "obvious", it might be a fun showcase of the complexity that can arise from Homeworlds' fairly simple rules set.\r\n\r\nI'm also wondering about the ways to "evaluate" board state in the same way it's done by Chess AIs. That would probably be a huge step in developing an AI for Homeworlds.\n\tBabamots: By my count, responding to my "threat" (and puzzle challenge) has set you back by one move compared to just ignoring my pesky red and proceeding like you outlined. I hope it was worth your time to make sure sacrifice-red-to-attack-red-while-avoiding-catastrophe is in your bag of tools.\n\n35) Dther: Move Y3 Dther Babamots\n\n36) Babamots: Build G1 Babamots\n\n37) Dther: Trade Y3 B3 Babamots\n\n38) Babamots: Move R2 Pakeld Dther\n\n39) Dther: Sacrifice G3 Dther\nBuild B1 Babamots\nBuild B1 Babamots\nBuild R1 Dther\nCatastrophe Babamots B\n\tBabamots: GG WP! I'll have to be on my toes the next time we play.\r\n\r\nI like the idea of collecting turning points of high-level games. That would be easier than composing our own puzzles anyway. The SDG archive has many many games. I've always heard that TwoShort and TeeTeeTee were extremely good, but they retired before I showed up. I oughta study them.\r\n\r\n\n\tDther: Gg! Sort of a pyhrric victory in that your rogue red ship can just sweep up my homeworld ;)\n\tDraw5PlayAll: You could have just taken it out with a catastrophe.\n\n\nHomeworlds Online (SDG# 35578)\nVariants: "Hard time"\nStarted: 2019.10.1, Ended: 2019.11.18\nParticipants: Laurie_Menke (S), Jerome (N)\nWinner: Jerome\n\n1) Jerome: Homeworld B1 R2 G3\n\tLaurie_Menke: Hi Jerome! Thanks for the ladder challenge! Have fun!\n\n2) Laurie_Menke: Homeworld Y3 B2 G3\n\n3) Jerome: Build G1 Jerome\n\n4) Laurie_Menke: Build G1 Laurie_menke\n\tJerome: Hi Laurie, have a nice game!\n\n5) Jerome: Trade G1 Y1 Jerome\n\n6) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n7) Jerome: Build Y1 Jerome\n\n8) Laurie_Menke: Build Y2 Laurie_menke\n\n9) Jerome: Discover Y1 Jerome G3 Orion\n\n10) Laurie_Menke: Trade Y2 R2 Laurie_menke\n\n11) Jerome: Build Y2 Jerome\n\n12) Laurie_Menke: Build R1 Laurie_menke\n\n13) Jerome: Build Y2 Orion\n\n14) Laurie_Menke: Discover Y1 Laurie_menke G1 Forest\n\n15) Jerome: Discover Y2 Orion G2 Alpha\n\n16) Laurie_Menke: Trade R1 B1 Laurie_menke\n\n17) Jerome: Build Y2 Orion\n\n18) Laurie_Menke: Build Y3 Forest\n\n19) Jerome: Build Y3 Alpha\n\n20) Laurie_Menke: Build G1 Laurie_menke\n\n21) Jerome: Trade Y2 B2 Jerome\n\n22) Laurie_Menke: Move Y1 Forest Alpha\n\n23) Jerome: Discover Y3 Alpha B1 Sirius\n\n24) Laurie_Menke: Build Y2 Forest\n\n25) Jerome: Move B2 Jerome Orion\n\n26) Laurie_Menke: Move Y3 Forest Alpha\n\n27) Jerome: Build B2 Orion\n\n28) Laurie_Menke: Move Y3 Alpha Sirius\n\n29) Jerome: Discover B2 Orion G2 Vega\n\n30) Laurie_Menke: Move Y2 Forest Vega\n\n31) Jerome: Build B3 Orion\n\n32) Laurie_Menke: Sacrifice R2 Laurie_menke\nAttack Y3 Sirius\nAttack B2 Vega\n\n33) Jerome: Trade B3 R3 Orion\n\n\tLaurie_Menke: Ugh. Sorry. But congrats on the win! :)\n\tJerome: What happened?\n\tLaurie_Menke: I timed out. Ladder games are hard time games, and I got behind. I know it's not the way you wanted to win... sorry. :(\n\nHomeworlds Online (SDG# 35499)\nStarted: 2019.10.4, Ended: 2019.10.17\nParticipants: ajo (S), Simon (N)\nWinner: Simon\n\n1) Simon: Homeworld G3 R1 B3\n\tSimon: Have fun! This is for the Great Homeworlds Tournament of 2019.\n\n2) ajo: Homeworld B1 Y3 G3\n\n3) Simon: Build B1 Simon\n\tajo: For the tournament!\n\n4) ajo: Build G1 Ajo\n\n5) Simon: Build B1 Simon\n\n6) ajo: Trade G1 R1 Ajo\n\n7) Simon: Trade B3 Y3 Simon\n\n8) ajo: Build R1 Ajo\n\n9) Simon: Build B2 Simon\n\n10) ajo: Build R2 Ajo\n\n11) Simon: Trade B2 R2 Simon\n\n12) ajo: Trade R2 B2 Ajo\n\n13) Simon: Discover B1 Simon G2 G2\n\n14) ajo: Move B2 Ajo G2\n\n15) Simon: Build B2 G2\n\n16) ajo: Build R2 Ajo\n\tajo: Well, I guess I shouldn't have done that. :)\n\n17) Simon: Build B2 Simon\n\n18) ajo: Discover R2 Ajo Y2 Alpha\n\tSimon: Hmm, it's surprisingly low-priority to take here for both sides.\n\n19) Simon: Build B3 Simon\n\n20) ajo: Build B3 G2\nCatastrophe G2 Blue\n\n21) Simon: Move B3 Simon Alpha\n\tajo: Well, I'm already in serious trouble. I thought I was threatening to catastrophe blue if you built that b3, but I missed my lack of yellow.\n\n22) ajo: Discover R2 Alpha Y3 Beta\n\tSimon: A rare opportunity, yeah. I didn't see it immediately either.\n\n23) Simon: Trade B2 G2 Simon\n\n24) ajo: Build G1 Ajo\n\n25) Simon: Move G2 Simon Alpha\n\n26) ajo: Discover G1 Ajo Y2 Gamma\n\n27) Simon: Move R2 Simon Gamma\n\n28) ajo: Build R2 Ajo\n\n29) Simon: Attack G1 Gamma\n\n30) ajo: Trade R2 B2 Ajo\n\n31) Simon: Build B1 Alpha\n\n32) ajo: Discover B2 Ajo Y2 Delta\n\n33) Simon: Build B2 Alpha\n\tajo: Well, I am just walling myself in...\n\n34) ajo: Trade B2 G2 Delta\n\n35) Simon: Trade B2 R2 Alpha\n\n36) ajo: Sacrifice G2 Delta\nBuild R3 Beta\nPass\n\n37) Simon: Build G1 Alpha\n\n38) ajo: Discover R2 Beta G2 Green\n\n39) Simon: Sacrifice G2 Alpha\nBuild R3 Alpha\nBuild R3 Gamma\n\n40) ajo: Build G1 Ajo\n\n41) Simon: Sacrifice Y3 Simon\nMove G1 Alpha Ajo\nMove G1 Gamma Ajo\nMove R3 Alpha Ajo\nCatastrophe Ajo Green\n\tajo: Yeah, I think I'm dead.\n\n\tSimon: Yeah, every early turn is valuable.\n\nHomeworlds Online (SDG# 35461)\nStarted: 2019.10.4, Ended: 2019.12.14\nParticipants: goulo (S), kataclysm (N)\nWinner: goulo\n\n1) kataclysm: Homeworld G2 B1 Y3\n\n2) goulo: Homeworld B2 G3 Y3\n\n\tgoulo: hi kat! this is for the tournament, right?\n\nHomeworlds Online (SDG# 35464)\nVariants: "Unrated"\nStarted: 2019.10.6, Ended: 2019.10.10\nParticipants: wil (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld R2 G3 B3\n\n2) wil: H B2 Y1 G3\n\n3) Trydnt: Build B1 Trydnt\n\n4) wil: B G1 Wil\n\n5) Trydnt: Build B1 Trydnt\n\n6) wil: T G1 B1 Wil\n\n7) Trydnt: Trade B1 Y1 Trydnt\n\n8) wil: B B1 Wil\n\n9) Trydnt: Build Y1 Trydnt\n\n10) wil: D B1 Wil Y3 Y3\n\n11) Trydnt: Build B2 Trydnt\n\n12) wil: S G3 Wil\nB B2 Y3\nB B3 Y3\nB B3 Wil\n\n13) Trydnt: Build Y2 Trydnt\n\n14) wil: T B2 Y2 Y3\n\n15) Trydnt: Sacrifice Y2 Trydnt\nDiscover B2 Trydnt G1 G1\nDiscover B2 G1 G3 G3\n\n16) wil: T B3 G3 Y3\n\n17) Trydnt: Sacrifice Y1 Trydnt\nMove B2 G3 Wil\nCatastrophe Wil B\n\n\nHomeworlds Online (SDG# 35462)\nVariants: "Hard time"\nStarted: 2019.10.6, Ended: 2019.10.24\nParticipants: Trydnt (S), dlwillson (N)\nWinner: Trydnt\n\n1) dlwillson: H R1 B3 G3\n\n2) Trydnt: Homeworld Y3 B2 G3\n\tdlwillson: Thanks for taking my challenge!\n\tdlwillson: Thanks for taking my challenge!\n\n3) dlwillson: B G1 Dlwillson\n\n4) Trydnt: Build G1 Trydnt\n\n5) dlwillson: T G1 Y1 Dlwillson\n\n6) Trydnt: Trade G1 R1 Trydnt\n\n7) dlwillson: B Y1 Dlwillson\n\n8) Trydnt: Build R1 Trydnt\n\n9) dlwillson: B Y1 Dlwillson\n\n10) Trydnt: Build R2 Trydnt\n\n11) dlwillson: D Y1 Dlwillson B2 Sea\n\n12) Trydnt: Discover R1 Trydnt B1 B1\n\n13) dlwillson: D Y1 Dlwillson Y2 Sol\n\n14) Trydnt: Sacrifice G3 Trydnt\nBuild R2 Trydnt\nBuild R2 B1\nBuild R3 B1\n\n15) dlwillson: B Y2 Dlwillson\n\n16) Trydnt: Trade R3 Y3 B1\n\n17) dlwillson: B G1 Dlwillson\n\n18) Trydnt: Discover R2 B1 Y3 Y3\n\n19) dlwillson: B Y2 Dlwillson\n\n20) Trydnt: Trade R2 G2 Trydnt\n\n21) dlwillson: T Y2 R2 Dlwillson\n\n22) Trydnt: Sacrifice G2 Trydnt\nBuild R3 Y3\nBuild R3 Trydnt\n\n23) dlwillson: S Y2 Dlwillson\nM R2 Dlwillson Sea\nM Y1 Sol Y3\n\n24) Trydnt: Move R3 Y3 Sea\n\n25) dlwillson: D R2 Sea G1 Forest\n\n26) Trydnt: Sacrifice R2 Trydnt\nAttack Y1 Sea\nAttack Y1 Y3\n\n27) dlwillson: B R2 Forest\n\n28) Trydnt: Trade R1 G1 B1\n\n29) dlwillson: B Y2 Dlwillson\n\n30) Trydnt: Trade R3 G3 Trydnt\n\n31) dlwillson: T G1 B1 Dlwillson\n\n32) Trydnt: Build Y2 B1\n\n33) dlwillson: S B1 Dlwillson\nT R2 G2 Forest\n\n34) Trydnt: Move G1 B1 Sea\n\n35) dlwillson: B R1 Forest\n\n36) Trydnt: Build Y2 Sea\n\n37) dlwillson: Sacrifice Y2 Dlwillson\nMove R1 Forest Sea\nDiscover R1 Sea G1 Alsoforest\n\n38) Trydnt: Build G2 Sea\n\n39) dlwillson: S G2 Forest\nB R2 Alsoforest\nB R3 Forest\n\n40) Trydnt: Sacrifice G2 Sea\nBuild G2 Sea\nBuild R3 Y3\n\n41) dlwillson: Build Y2 Dlwillson\n\n42) Trydnt: Sacrifice Y2 Sea\nMove R2 Y3 Forest\nMove R1 Trydnt Forest\nCatastrophe Forest R\n\n43) dlwillson: T Y1 B1 Dlwillson\n\n44) Trydnt: Build G1 Sea\n\n45) dlwillson: S B1 Dlwillson\nT R2 Y2 Alsoforest\n\n46) Trydnt: Build Y1 Sea\n\n47) dlwillson: B R1 Alsoforest\n\n48) Trydnt: Sacrifice Y3 B1\nMove G1 Sea Dlwillson\nMove G1 Sea Dlwillson\nMove G2 Sea Dlwillson\nCatastrophe Dlwillson G\n\n49) dlwillson: B Y3 Alsoforest\n\n50) Trydnt: Sacrifice Y2 B1\nMove R3 Y3 Sea\nMove R3 Sea Dlwillson\n\n51) dlwillson: Sacrifice Y2 Alsoforest\nMove R1 Alsoforest Trydnt\nMove Y3 Alsoforest Trydnt\n\n52) Trydnt: Sacrifice R3 Sea\nAttack Y3 Trydnt\nAttack R1 Trydnt\nAttack Y2 Dlwillson\n\n\tdlwillson: Yaa!\n\tTrydnt: well played\n\tdlwillson: Yeah... Not so sure about that... But *you* played very well! :-)\n\nHomeworlds Online (SDG# 35588)\nVariants: "Hard time"\nStarted: 2019.10.6, Ended: 2019.10.13\nParticipants: Trydnt (S), wil (N)\nWinner: Trydnt\n\n1) wil: H Y2 B1 G3\n\n2) Trydnt: Homeworld G1 B1 B3 *\n\n3) wil: B G1 Wil\n\n4) Trydnt: Build B1 Trydnt\n\twil: Oops\n\n5) wil: B G1 Wil\n\n6) Trydnt: Trade B3 Y3 Trydnt\n\n7) wil: D G1 Wil B3 B3\n\n8) Trydnt: Build B2 Trydnt\n\n9) wil: S G3 Wil\nB G2 Wil\nB G2 B3\nB G2 B3\n\n10) Trydnt: Trade B2 R2 Trydnt\n\n11) wil: T G2 R2 Wil\n\n12) Trydnt: Move Y3 Trydnt B3\n\n13) wil: B G2 Wil\n\n14) Trydnt: Move Y3 B3 Wil\n\n15) wil: T G2 Y2 Wil\n\twil: I forgot it was short uni!\n\twil: Lol\n\n16) Trydnt: Sacrifice R2 Trydnt\nAttack R2 Wil\nAttack Y2 Wil\n\twil: Gg\n\n17) wil: T G1 Y1 Wil\n\n18) Trydnt: Attack Y1 Wil\n\tTrydnt: well played :)\n\twil: Lol, right!\n\twil: I take great pride in losing to you!\n\tTrydnt: I've largely stopped paying attention to winning and losing and focused more on how to extract the most information from every game to improve my strategies. I'd like to play more weird universe games like this though. I think that an AI will struggle to code switch like we do when taking a different homeworld setup and I'd like to be able to give a supercomputer a proper challenge\n\twil: U way to smart for me\n\n\nHomeworlds Online (SDG# 35412)\nVariants: "Hard time"\nStarted: 2019.10.8, Ended: 2019.10.31\nParticipants: Trydnt (S), deanthebean (N)\nWinner: Trydnt\n\n1) deanthebean: Homeworld Y1 B2 G3\n\n2) Trydnt: Homeworld B3 G2 Y3\n\tdeanthebean: Hello. Have fun!\n\tTrydnt: you too and good luck\n\n3) deanthebean: Build G1 Deanthebean\n\n4) Trydnt: Build Y1 Trydnt\n\tdeanthebean: Thanks.\n\n5) deanthebean: Trade G1 Y1 Deanthebean\n\n6) Trydnt: Build Y2 Trydnt\n\n7) deanthebean: Build G1 Deanthebean\n\n8) Trydnt: Discover Y1 Trydnt G1 G1\n\n9) deanthebean: Discover Y1 Deanthebean G3 G3\n\n10) Trydnt: Discover Y2 Trydnt B1 B1\n\n11) deanthebean: Build Y2 G3\n\n12) Trydnt: Build Y2 Trydnt\n\n13) deanthebean: Discover Y1 G3 G1 G1a\n\n14) Trydnt: Trade Y2 R2 Trydnt\n\n15) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 Deanthebean\nBuild Y2 G1a\nBuild Y3 G3\n\n16) Trydnt: Build Y3 G1\n\n17) deanthebean: Build G2 Deanthebean\n\n18) Trydnt: Sacrifice Y2 B1\nMove Y3 G1 G3\nMove Y3 G3 Deanthebean\n\n19) deanthebean: Build Y2 G1a\n\n20) Trydnt: Build R1 Trydnt\n\n21) deanthebean: Sacrifice Y3 G3\n\nMove Y1 G1a G3\nMove Y1 G3 Deanthebean\nMove Y2 G3 Deanthebean\nCatastrophe Deanthebean Yellow\n\n22) Trydnt: Discover R2 Trydnt Y1 Y1\n\n23) deanthebean: Trade G2 R2 Deanthebean\n\tdeanthebean: Desperation!\n\n24) Trydnt: Build R1 Trydnt\n\n25) deanthebean: Build G2 Deanthebean\n\n26) Trydnt: Discover Y1 G1 G3 G3\n\n27) deanthebean: Trade G2 Y2 Deanthebean\n\n28) Trydnt: Trade R1 B1 Trydnt\n\n29) deanthebean: Move Y2 G1a G3\n\n30) Trydnt: Sacrifice Y1 G3\nDiscover R2 Y1 G3 Gee3\n\n31) deanthebean: Build Y1 G1a\n\n32) Trydnt: Build B1 Trydnt\n\n33) deanthebean: Discover Y2 G3 B1 B1\n\n34) Trydnt: Discover B1 Trydnt Y1 Y1\n\n35) deanthebean: Trade Y2 B2 B1\n\n36) Trydnt: Move B1 Y1 Gee3\n\tdeanthebean: trade y2 b2 b1\n\n37) deanthebean: Sacrifice Y1 G1a\nDiscover B2 B1 G2 G2\n\n38) Trydnt: Build B1 Gee3\n\n39) deanthebean: Build B2 G2\n\n40) Trydnt: Sacrifice Y3 Trydnt\nMove B1 Gee3 Deanthebean\nMove B1 Gee3 Deanthebean\nDiscover B1 Trydnt Y1 Y1\n\n\tdeanthebean: Yup. That works. Well played!\n\tTrydnt: you too :)\n\nHomeworlds Online (SDG# 35595)\nStarted: 2019.10.9, Ended: 2019.10.21\nParticipants: Felix (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld B2 R1 G3\n\tBabamots: This is for the tournament, correct?\n\n2) Felix: Homeworld G1 R3 B3\n\tFelix: Only if I win! Haha, correctamundo.\n\n3) Babamots: Build G1 Babamots\n\n4) Felix: Build B1 Felix\n\n5) Babamots: Build G1 Babamots\n\tBabamots: You'll accept the result if you win, eh? Sounds like a slimy guy I saw running for office once.\n\n6) Felix: Build B1 Felix\n\tFelix: All I know is that if I lose, I'm blaming Russia!\n\tBabamots: It's clearly Russia's fault. If they had done the job properly, I wouldn't have got caught.\n\n7) Babamots: Trade G1 Y1 Babamots\n\n8) Felix: Trade B3 Y3 Felix\n\n9) Babamots: Build G1 Babamots\n\n10) Felix: Build B1 Felix\n\n11) Babamots: Discover G1 Babamots B3 Bolarus\n\n12) Felix: Discover B1 Felix B2 Rumproast\n\n13) Babamots: Build G2 Babamots\n\n14) Felix: Discover B1 Felix B2 Porkbelly\n\tBabamots: Should a rump roast be blue?\n\tFelix: Absolutely not. Stay far away from this one.\n\n15) Babamots: Discover G2 Babamots B3 Andoria\n\n16) Felix: Build B3 Felix\n\n17) Babamots: Sacrifice G3 Babamots\nBuild G2 Andoria\nBuild G2 Bolarus\nBuild G3 Babamots\n\n18) Felix: Trade B3 G3 Felix\n\n19) Babamots: Sacrifice G3 Babamots\nBuild G3 Bolarus\nBuild Y1 Babamots\nBuild G3 Babamots\n\n20) Felix: Move G3 Felix Porkbelly\n\n21) Babamots: Discover Y1 Babamots B3 Betazed\n\n22) Felix: Trade B1 R1 Porkbelly\n\n23) Babamots: Sacrifice G3 Bolarus\nBuild Y1 Babamots\nBuild Y2 Betazed\nBuild G3 Bolarus\n\n24) Felix: Build Y2 Felix\n\n25) Babamots: Trade G3 R3 Bolarus\n\n26) Felix: Build G3 Porkbelly\n\n27) Babamots: Sacrifice Y2 Betazed\nMove G2 Andoria Porkbelly\nMove G2 Bolarus Porkbelly\nCatastrophe Porkbelly G\n\n28) Felix: Build B1 Felix\n\n29) Babamots: Sacrifice G3 Babamots\nBuild G2 Andoria\nBuild G2 Bolarus\nBuild G3 Babamots\n\n30) Felix: Trade Y3 G3 Felix\n\n31) Babamots: Sacrifice G3 Babamots\nBuild Y2 Betazed\nBuild G3 Bolarus\nBuild G3 Babamots\n\n32) Felix: Build Y2 Felix\n\n33) Babamots: Trade G3 Y3 Bolarus\n\n34) Felix: Move Y2 Felix Porkbelly\n\n35) Babamots: Sacrifice G3 Babamots\nBuild Y3 Bolarus\nBuild Y3 Babamots\nBuild G3 Babamots\n\n36) Felix: Move B1 Felix Porkbelly\n\n37) Babamots: Discover G2 Bolarus R2 Romulus\n\tFelix: You're being ruthless! I don't have many options here...\n\n38) Felix: Trade G3 R3 Felix\n\tBabamots: No ruths at all, I'm afraid.\n\n39) Babamots: Sacrifice G3 Babamots\nBuild G3 Romulus\nBuild R1 Bolarus\nBuild G3 Babamots\n\n40) Felix: Discover B1 Felix R2 Ledge\n\n41) Babamots: Move R3 Bolarus Porkbelly\n\n42) Felix: Sacrifice Y2 Porkbelly\nMove B1 Porkbelly Bolarus\nMove R1 Porkbelly Bolarus\n\n43) Babamots: Sacrifice Y3 Bolarus\nMove R1 Bolarus Porkbelly\nMove R1 Porkbelly Felix\nMove R3 Porkbelly Felix\nCatastrophe Felix R\n\n44) Felix: Build Y2 Felix\n\n45) Babamots: Sacrifice Y3 Babamots\nMove G1 Bolarus Felix\nMove G2 Andoria Felix\nMove G2 Andoria Felix\nCatastrophe Felix G\n\n\tFelix: Well done!\n\tBabamots: GG! Your stranded crews will be treated humanely. I will give orders that they be allowed to return home. :-D\r\n\r\nOne of these days I want to draw up an official-looking peace treaty. Anyone who beats me gets a full description of my terms of surrender...\n\nHomeworlds Online (SDG# 35612)\nVariants: "Hard time"\nStarted: 2019.10.14, Ended: 2019.11.25\nParticipants: Babamots (S), deanthebean (N)\nWinner: Babamots\n\n1) deanthebean: Homeworld B2 Y3 G3\n\tdeanthebean: Thank you for accepting the challenge. Have fun!\n\n2) Babamots: Homeworld B2 R1 G3\n\n3) deanthebean: Build G1 Deanthebean\n\tBabamots: Sure! I'd like to redeem myself from last time.\n\n4) Babamots: Build G1 Babamots\n\n5) deanthebean: Discover G1 Deanthebean Y1 Helenthemelon\n\n6) Babamots: Trade G1 Y1 Babamots\n\n7) deanthebean: Build G1 Deanthebean\n\n8) Babamots: Build Y1 Babamots\n\n9) deanthebean: Trade G1 R1 Deanthebean\n\n10) Babamots: Build Y2 Babamots\n\n11) deanthebean: Build G1 Deanthebean\n\n12) Babamots: Discover Y2 Babamots G3 Bolarus\n\n13) deanthebean: Build G1 Helenthemelon\n\n14) Babamots: Discover Y1 Babamots B3 Betazed\n\n15) deanthebean: Build G2 Helenthemelon\n\n16) Babamots: Build G2 Babamots\n\n17) deanthebean: Move G2 Helenthemelon Betazed\n\n18) Babamots: Discover Y1 Betazed Y2 Iconia\n\n19) deanthebean: Sacrifice G3 Deanthebean\nBuild G2 Betazed\nBuild G3 Deanthebean\nBuild R1 Deanthebean\n\n20) Babamots: Sacrifice G3 Babamots\nBuild Y2 Iconia\nBuild Y3 Babamots\nBuild G3 Babamots\n\n21) deanthebean: Trade G3 Y3 Deanthebean\n\n22) Babamots: Trade G2 R2 Babamots\n\n23) deanthebean: Trade G2 B2 Betazed\n\n24) Babamots: Move Y3 Babamots Betazed\n\n25) deanthebean: Sacrifice G2 Betazed\nBuild G2 Deanthebean\nBuild R2 Deanthebean\n\n26) Babamots: Trade Y3 R3 Betazed\n\n27) deanthebean: Discover G1 Helenthemelon Y3 Peaches\n\n28) Babamots: Attack B2 Betazed\n\n29) deanthebean: Build G2 Peaches\n\n30) Babamots: Sacrifice G3 Babamots\nBuild R2 Betazed\nBuild R3 Betazed\nBuild R3 Babamots\n\n31) deanthebean: Build G2 Helenthemelon\n\tBabamots: Looks like a bold move, but I think I've calculated correctly and things work out OK for me whatever you do.\n\tBabamots: Oh, and happy Halloween :-).\n\n32) Babamots: Sacrifice B2 Betazed\nTrade R3 G3 Betazed\nTrade R3 G3 Babamots\n\tdeanthebean: Yup. Good move (probably). Happy Halloween to you as well. \n\n33) deanthebean: Move R1 Deanthebean Helenthemelon\n\n34) Babamots: Sacrifice Y1 Iconia\nMove R3 Betazed Helenthemelon\n\n35) deanthebean: Move G2 Helenthemelon Bolarus\n\n36) Babamots: Sacrifice R2 Babamots\nAttack G2 Bolarus\nAttack R1 Helenthemelon\n\n37) deanthebean: Move R1 Deanthebean Helenthemelon\n\n38) Babamots: Sacrifice R1 Helenthemelon\nAttack R1 Helenthemelon\n\n39) deanthebean: Move G1 Helenthemelon Bolarus\n\tBabamots: I lost a high-stakes game by not knowing the sacrifice-red-to-avoid-catastrophe trick. I'm always on the lookout for it now.\n\tDraw5PlayAll: Which side of it were you on?\n\tBabamots: I was moving in for the kill when my opponent did the catastrophe-avoiding red sacrifice and took me totally off guard.\n\n40) Babamots: Sacrifice R1 Helenthemelon\nAttack G1 Bolarus\n\n41) deanthebean: Discover G1 Deanthebean Y1 Plum\n\n42) Babamots: Sacrifice G1 Bolarus\nBuild G1 Betazed\n\n43) deanthebean: Build R1 Deanthebean\n\n44) Babamots: Move R3 Helenthemelon Peaches\n\n45) deanthebean: Move G2 Peaches Iconia\n\n46) Babamots: Sacrifice R2 Betazed\nAttack G1 Peaches\nAttack G2 Iconia\n\n47) deanthebean: Trade R2 B2 Deanthebean\n\n48) Babamots: Discover Y2 Iconia B1 Kronos\n\n\tdeanthebean: I'm just to far behind and unable to find good moves so well played!\n\tBabamots: GG!\n\nHomeworlds Online (SDG# 35613)\nVariants: "Hard time"\nStarted: 2019.10.14, Ended: 2019.11.7\nParticipants: Trydnt (S), Simon (N)\nWinner: Trydnt\n\n1) Simon: Homeworld R1 G3 B3\n\n2) Trydnt: Homeworld B3 Y2 G3\n\tSimon: Again, have fun!\n\tTrydnt: you too :)\n\n3) Simon: Build B1 Simon\n\n4) Trydnt: Build G1 Trydnt\n\tTrydnt: so few people start with goldilocks. what is your thinking in doing so if I may ask\n\n5) Simon: Build B1 Simon\n\tSimon: Hmm, Goldilocks gives most control over when/which 3-pip pieces become available.\n\tTrydnt: surely that would be banker as you can go straight to the 3s and if you can defend them you can turn them into ships later\n\n6) Trydnt: Build G1 Trydnt\n\n7) Simon: Trade B3 Y3 Simon\n\tSimon: Banker prevents 3-pips, Goldilocks enables 3-pips :)\n\tTrydnt: but only in the mid-to-late game and at that point surely your opponent can usually fly to the 2 pip stars too and have the same advantage. banker you leave one more 3 pip piece in the bank and you can fly to them so you can control which ones your opponent can and cannot grow\n\n8) Trydnt: Discover G1 Trydnt G1 G1\n\n9) Simon: Build B1 Simon\n\n10) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Trydnt\nBuild G2 Trydnt\nBuild G2 G1\n\n11) Simon: Discover B1 Simon B2 B2\n\n12) Trydnt: Discover G2 Trydnt Y1 Y1\n\n13) Simon: Build B2 Simon\n\n14) Trydnt: Build G3 Trydnt\n\n15) Simon: Discover B1 Simon B2 B2a\n\n16) Trydnt: Build G3 Y1\n\n17) Simon: Build B3 Simon\n\n18) Trydnt: Trade G2 R2 Trydnt\n\n19) Simon: Trade B2 G2 Simon\n\n20) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R1 Trydnt\nBuild R1 Trydnt\n\n21) Simon: Trade B3 R3 Simon\n\n22) Trydnt: Discover G2 Y1 B3 B3\n\n23) Simon: Move R3 Simon B2\n\n24) Trydnt: Move R1 Trydnt Y1\n\n25) Simon: Move G2 Simon B2\n\n26) Trydnt: Sacrifice G2 G1\nBuild G2 B3\nBuild R2 Y1\n\n27) Simon: Build B2 B2\n\n28) Trydnt: Discover R2 Y1 B3 Bee3\n\n29) Simon: Trade B2 Y2 B2\n\n30) Trydnt: Trade G2 Y2 B3\n\n31) Simon: Build G2 B2\n\n32) Trydnt: Sacrifice G3 Trydnt\nBuild G3 Trydnt\nBuild R2 Bee3\nBuild R3 Y1\n\n33) Simon: Discover G2 B2 R3 R3\n\n34) Trydnt: Move G2 B3 B2a\n\n35) Simon: Sacrifice G2 R3\nBuild R3 B2\nBuild B2 B2a\n\n36) Trydnt: Sacrifice Y2 B3\nMove R1 Y1 B2\nMove R2 Bee3 B2\nCatastrophe B2 R\n\n37) Simon: Build B3 B2\n\n38) Trydnt: Move R3 Y1 B2\n\n39) Simon: Sacrifice Y2 B2\nDiscover B3 B2 R1 R1\nMove G2 B2 R1\n\n40) Trydnt: Attack B1 B2\n\n41) Simon: Build G2 R1\n\n42) Trydnt: Sacrifice G3 Trydnt\nBuild R2 B2\nBuild R3 Bee3\nBuild R3 Trydnt\n\n43) Simon: Trade G2 Y2 R1\n\n44) Trydnt: Trade R2 Y2 Bee3\n\n45) Simon: Build Y1 Simon\n\n46) Trydnt: Trade R3 Y3 B2\n\n47) Simon: Discover Y1 Simon G2 G2\n\n48) Trydnt: Sacrifice G2 B2a\nBuild Y1 Bee3\nBuild Y3 B2\n\n49) Simon: Trade B2 R2 B2a\n\n50) Trydnt: Sacrifice Y2 Bee3\nMove R1 Trydnt Y1\nDiscover Y3 B2 R3 R3\n\n51) Simon: Build Y2 G2\n\n52) Trydnt: Move Y3 R3 B2a\n\n53) Simon: Build B2 R1\n\n54) Trydnt: Move B1 B2 Y1\n\n55) Simon: Move Y2 G2 G1\n\n56) Trydnt: Build R3 Y1\n\n57) Simon: Sacrifice Y1 G2\nDiscover B1 B2a Y1 Y1b\n\n58) Trydnt: Sacrifice R1 Y1\nAttack R2 B2a\n\n59) Simon: Build G2 R1\n\n60) Trydnt: Sacrifice Y3 B2a\nMove R3 Bee3 B2\nMove R3 B2 Simon\nMove R2 B2a Simon\n\n61) Simon: Attack R3 Simon\n\n62) Trydnt: Build R1 Simon\nCatastrophe Simon R\n\n63) Simon: Trade Y3 R3 Simon\n\n64) Trydnt: Sacrifice Y3 B2\nMove G1 G1 Simon\nMove G3 Y1 Simon\nMove G1 Trydnt Y1\n\n\tSimon: gg, enjoy first place!\n\tTrydnt: Well played! That was one hell of a game. Even once I had a material advantage you really made me work for it. I doubt I'll last that long but good to be on top for however short a time :)\n\tSimon: It's the textbook example game for the g3 ship. The problem of green home star, then trading b3 starting ship into y3, is that it cannot contest monopolies in red/green.\r\n\r\nI'll have to study this opening even deeper, and see how expensive it have been be to make an early green ship. In the game, the first 10 moves felt like a one-way street and yet it reached a disadvantage even as first-moving player.\n\tTrydnt: Yeah I see what you mean. You kind of have to bank on getting a b2 forward to a star in time to trade it for a remaining g2 but that also makes it hard to get an early y2 which can be essential to limiting your opponents growth\n\nHomeworlds Online (SDG# 35614)\nVariants: "Hard time"\nStarted: 2019.10.15, Ended: 2019.11.27\nParticipants: dlwillson (S), Felix (N)\nWinner: dlwillson\n\n1) Felix: Homeworld G3 R1 B3\n\n2) dlwillson: H Y3 B2 G3\n\n3) Felix: Build B1 Felix\n\n4) dlwillson: B G1 Dlwillson\n\tFelix: Hey David :) Have fun as usual. Hope you're doing well!\r\n-Daniel\n\n5) Felix: Trade B1 R1 Felix\n\tdlwillson: Hi Daniel :-)\r\n\r\nThat new guy is pretty tough, huh? Like Babamots and ... Another player whose name can't call to mind. Things are good. New job. SFS is going pretty well. We're doing our one-day intro to DevOps on Saturday. Pretty big deal for us.\n\tFelix: Indeed! Simon's doing very well lately. He's been impressing me very much with the r1 g3 b3 opening. Hence me trying to use it here with you :) I've lost to it twice in a row now. It's unusual enough to throw off players who are used to scrambling for blue or yellow to target the opponents homeworld with catastrophe.\r\n\r\nJonathan (Babamots) is really getting good too. It's nice to see more players really pushing the skill envelope upward!\r\n\r\nSounds exciting. Congrats on the new job! I'm just being a dad over here. Gearing up for our third kiddo to arrive in late November. We moved into a new house too, so lots to do there! Always busy, but always enough time for a game or two of Homeworlds :)\n\n6) dlwillson: T G1 R1 Dlwillson\n\n7) Felix: Build R2 Felix\n\n8) dlwillson: B R2 Dlwillson\n\n9) Felix: Trade R2 Y2 Felix\n\n10) dlwillson: B R2 Dlwillson\n\n11) Felix: Discover R1 Felix G2 Leaf\n\n12) dlwillson: Discover R2 Dlwillson Y1 Sol\n\n13) Felix: Build B1 Felix\n\tdlwillson: I think TeeTeeTee is the strong player whose name I couldn't think of earlier.\n\tdlwillson: You know I only recently realized that you and Daniel Sellers from the Homeworlds Game Platform project are the same guy.\r\n\r\nIt's like Superman / Clark Kent. The cape and glasses really do change the appearance.\n\tFelix: Yep, that's me! Felix is an old screen-name I've used for years (Back when forums were the greatest thing on the internet, hehe)\r\n\r\nTeeTeeTee is the strongest player I've played against. Never beaten him! I wonder where he's been?\n\n14) dlwillson: T R1 B1 Dlwillson\n\n15) Felix: Build Y1 Felix\n\n16) dlwillson: B R1 Dlwillson\n\n17) Felix: Move Y2 Felix Leaf\n\n18) dlwillson: D R2 Dlwillson G1 Field\n\tDraw5PlayAll: Wait... Homeworlds Game Platform project? What's this?\n\n19) Felix: Build Y1 Leaf\n\tdlwillson: https://gitlab.com/homeworlds-admirals/homeworlds-game-platform\n\n20) dlwillson: Discover R2 Sol R3 Mars\n\n21) Felix: Move B1 Felix Leaf\n\n22) dlwillson: S G3 Dlwillson\nB R2 Mars\nB R3 Dlwillson\nB R3 Field\n\n23) Felix: Build Y1 Felix\n\n24) dlwillson: S B1 Dlwillson\nT R2 Y2 Field\n\tdlwillson: \n\n25) Felix: Build R2 Leaf\n\n26) dlwillson: T R3 G3 Dlwillson\n\n27) Felix: Build R3 Leaf\n\tdlwillson: Oops! I was supposed to be heading to Leaf with the r3 this turn! Forgot to leave myself a note! :-)\n\tFelix: Feel free to undo!\n\tdlwillson: Nah nah. The current move is good. You go. I'll invade Leaf later, if the opportunity presents itself.\n\n28) dlwillson: S Y2 Field\nM R2 Mars Leaf\nC Leaf R\nM R2 Mars Leaf\n\n29) Felix: Sacrifice Y2 Leaf\nDiscover Y1 Leaf G1 Runnn\nMove B1 Leaf Runnn\n\n30) dlwillson: B G1 Dlwillson\n\tdlwillson: Mid-turn catastrophes introduce interesting tactical possibilities!\n\n31) Felix: Build Y2 Runnn\n\tFelix: Indeed! I love the chance to use that mechanic.\n\n32) dlwillson: T G1 B1 Dlwillson\n\n33) Felix: Trade Y2 R2 Runnn\n\n34) dlwillson: B R1 Field\n\n35) Felix: Build Y2 Runnn\n\n36) dlwillson: M B1 Dlwillson Field\n\n37) Felix: Build Y2 Runnn\n\n38) dlwillson: T R3 Y3 Field\n\n39) Felix: Discover Y1 Felix R2 Absorption\n\n40) dlwillson: Sacrifice G3 Dlwillson\nBuild R3 Field\nBuild R3 Leaf\nBuild R3 Dlwillson\n\n41) Felix: Build B1 Runnn\n\n42) dlwillson: B B2 Field\n\n43) Felix: Discover Y1 Absorption G1 Insertion\n\n44) dlwillson: S Y3 Field\nM R3 Field Leaf\nM R3 Leaf Felix\nM R3 Leaf Runnn\n\n45) Felix: Attack R3 Felix\n\n46) dlwillson: S R2 Leaf\nA R2 Runnn\nA Y2 Runnn\n\n47) Felix: Build Y2 Insertion\n\n48) dlwillson: S R2 Runnn\nA Y2 Runnn\nA Y1 Runnn\n\n49) Felix: Build Y3 Felix\n\n50) dlwillson: B R2 Runnn\n\n51) Felix: Build B2 Runnn\n\n52) dlwillson: A B2 Runnn\n\n53) Felix: Build B3 Felix\n\n54) dlwillson: S R2 Runnn\nA B1 Runnn\nA B1 Runnn\n\n55) Felix: Sacrifice Y2 Insertion\nDiscover B3 Felix G2 Temp\nMove B3 Temp Insertion\n\n56) dlwillson: B B3 Field\n\n57) Felix: Discover Y3 Felix Y2 Lip\n\n58) dlwillson: S B2 Runnn\nT R3 G3 Dlwillson\nT B3 Y3 Field\n\n59) Felix: Move Y3 Lip Runnn\nCatastrophe Runnn Yellow\n\n60) dlwillson: B R2 Runnn\n\n61) Felix: Discover R3 Felix G2 Outro\n\n62) dlwillson: S G3 Dlwillson\nB R2 Dlwillson\nB R2 Field\nB R3 Dlwillson\n\n63) Felix: Build Y1 Insertion\n\n64) dlwillson: S B2 Field\nT R3 G3 Dlwillson\nT R3 B3 Runnn\n\tdlwillson: Something about this feels unsafe, even after counting...\n\n65) Felix: Build Y2 Felix\n\tFelix: I know the feeling, but I think you're good!\r\n\n\n66) dlwillson: B R3 Runnn\n\n67) Felix: Build R3 Outro\n\n68) dlwillson: S Y3 Field\nM R2 Field Outro\nM R2 Runnn Outro\nM B3 Runnn Outro\nC Outro R\n\n69) Felix: Build B2 Insertion\n\n70) dlwillson: B R2 Field\n\n71) Felix: Build B2 Insertion\n\n72) dlwillson: S G3 Dlwillson\nB R2 Runnn\nB R3 Dlwillson\nB R3 Field\n\n73) Felix: Move B3 Insertion Dlwillson\n\n74) dlwillson: Attack B3 Dlwillson\n\n75) Felix: Sacrifice Y2 Felix\nMove B2 Insertion Dlwillson\nMove B2 Insertion Dlwillson\nCatastrophe Dlwillson Blue\n\n76) dlwillson: Trade B3 Y3 Outro\n\tdlwillson: Uh oh...\n\n77) Felix: Build Y2 Felix\n\tFelix: I'm probably pulling the trigger too early here, but oh well!\n\n78) dlwillson: B Y2 Outro\n\tdlwillson: I sure hope so! We'll know in a turn or two!\n\n79) Felix: Discover Y1 Felix Y2 Sunshine\n\n80) dlwillson: Sacrifice Y2 Outro\nMove R2 Dlwillson Insertion\nMove R3 Field Sunshine\n\n81) Felix: Sacrifice Y1 Insertion\nDiscover Y1 Insertion G2 Brink\n\tdlwillson: Hm\r\nHmm\r\nHmmm\r\n\r\nI think there's a way out of this mess, but it's not immediately obvious. A moment, sir, if you please.\r\n\r\nHmmmm\n\tFelix: Take all the time you need!\n\n82) dlwillson: S Y3 Outro\nM R3 Runnn Sunshine\nM R3 Sunshine Felix\nM R3 Sunshine Felix\n\tdlwillson: I'm not at all sure this does the trick, but I hope it does. I guess I'll know in two turns!\n\n\tFelix: Shucks. So close! I had a gut feeling this was all a bad idea. I also got tunnel vision and didn't notice your obvious threat :) Well done!\n\tdlwillson: Thank you for an excellent game, as always, Mr. Sellers!\n\tFelix: Likewise! My middle name also starts with an L, actually, so perhaps I should change my username to dlsellers :P\n\tdlwillson: Great idea! :-)\n\nHomeworlds Online (SDG# 35463)\nVariants: "Hard time"\nStarted: 2019.10.16, Ended: 2019.10.19\nParticipants: wil (S), capi3101 (N)\nWinner: wil\n\n1) capi3101: Homeworld G1 B2 Y3\n\tcapi3101: Greetings. First game here at SDG; I'm assuming you issued a general challenge for an opponent. If not, I'll leave the game. For now I'll go ahead and play...\n\n2) wil: H B3 Y2 G3\n\twil: Thanks for the challenge, have fun!\n\n3) capi3101: Build Y1 Capi3101\n\n4) wil: B G1 Wil\n\n5) capi3101: Build Y1 Capi3101\n\n6) wil: D G1 Wil G1 G1\n\tcapi3101: About had a panic attack there - accidentally hit the "resign" button instead of "submit orders"...\n\n7) capi3101: Trade Y1 B1 Capi3101\n\twil: Didn't mean to scare you so early...\n\twil: So...familiar with the game?\n\n8) wil: B G2 Wil\n\n9) capi3101: Discover Y1 Capi3101 B3 Tribulatio\n\tcapi3101: Yeah, I've been playing this off and on over the last couple decades (for reference, I have a Martian Chess set that had the rules for IceTraders - the ancestor of Homeworlds - in it).\n\tcapi3101: I'm out of practice with Homeworlds, though...don't have anyone to play it with locally.\n\twil: This is an awesome place to hone those skills\n\twil: But yes, we have to create our own challengers\n\n10) wil: T G2 Y2 Wil\n\n11) capi3101: Build B1 Capi3101\n\n12) wil: B G2 Wil\n\n13) capi3101: Trade Y3 G3 Capi3101\n\tDraw5PlayAll: You can also download a (rather weak) AI program that user "ajo" made at github.com/Quuxplusone/homeworlds\n\n14) wil: B G2 G1\n\tcapi3101: Hmm. Sure would like a green ship...only got one option there though.\n\n15) capi3101: Trade B1 Y1 Capi3101\n\tcapi3101: Probably a sub-optimal move there...\n\n16) wil: M Y2 Wil G1\n\twil: Ya gotta do what ya gotta do!\n\n17) capi3101: Build G2 Capi3101\n\n18) wil: S Y2 G1\nD G1 G1 Y3 Y3\nM G1 Y3 Capi3101\nC Capi3101 G\n\tcapi3101: Well, dadgummit...\n\n19) capi3101: Trade B1 G1 Capi3101\n\n20) wil: T G2 Y2 Wil\n\twil: Well, we can't have that...\n\tcapi3101: Crap...completely missed that. Well, hell's bells. Told you I was out of practice...\n\n21) capi3101: Move Y1 Tribulatio Capi3101\n\twil: We will tighten you up\n\n22) wil: M Y2 Wil G1\n\n23) capi3101: Trade Y1 R1 Capi3101\n\n24) wil: M Y2 G1 Capi3101\n\n\twil: I'll not dawdle, so we can start again..\n\tcapi3101: Ugh. Pains me...first game of this I've played in like, a decade or so...\n\tcapi3101: You're right though - pretty sure I've lost this one.\n\twil: Meh, losing helps mistakes you won't make again\n\twil: Challenge me anytime\n\twil: Get back on the horse...\n\nHomeworlds Online (SDG# 35617)\nStarted: 2019.10.16, Ended: 2019.10.21\nParticipants: capi3101 (S), Babamots (N)\nWinner: Babamots\n\n1) Babamots: Homeworld G3 R1 B3\n\n2) capi3101: Homeworld G1 B2 Y3\n\tBabamots: Welcome to the site! Let me know if you need any help figuring out the move commands.\n\tcapi3101: Thanks. Looking forward to being utterly trampled...\r\n\r\nWent ahead and started another 2 games; interface seems easy enough but I'll let you know if I need help with it.\n\n3) Babamots: Build B1 Babamots\n\n4) capi3101: Build Y1 Capi3101\n\n5) Babamots: Trade B1 Y1 Babamots\n\n6) capi3101: Trade Y1 G1 Capi3101\n\n7) Babamots: Build B1 Babamots\n\n8) capi3101: Build Y1 Capi3101\n\n9) Babamots: Build B1 Babamots\n\n10) capi3101: Discover G1 Capi3101 B3 Advorsus\n\n11) Babamots: Trade B1 G1 Babamots\n\n12) capi3101: Build G2 Advorsus\n\n13) Babamots: Build G2 Babamots\n\n14) capi3101: Trade G2 Y2 Advorsus\n\n15) Babamots: Discover G2 Babamots B2 Bolarus\n\n16) capi3101: Build G2 Advorsus\n\n17) Babamots: Build G2 Bolarus\n\n18) capi3101: Move G1 Advorsus Bolarus\n\n19) Babamots: Trade G2 R2 Bolarus\n\n20) capi3101: Trade Y3 G3 Capi3101\n\tcapi3101: Yep. I screwed that up. Knew you'd trade for a red as soon as I mashed the submit button...\n\n21) Babamots: Attack G1 Bolarus\n\n22) capi3101: Trade Y2 R2 Advorsus\n\tBabamots: We are playing with "undo" available. If you decide you didn't like your move, you can go back to the game page and hit the "Undo Last Move" button. This only works once, though. If you undo a move and make another move, you can't undo the second one.\n\tcapi3101: Ah. I'll keep that in mind.\n\n23) Babamots: Trade G2 Y2 Bolarus\n\n24) capi3101: Build G2 Advorsus\n\n25) Babamots: Build G2 Bolarus\n\n26) capi3101: Trade G2 Y2 Advorsus\n\n27) Babamots: Discover G2 Bolarus G3 Orion\n\n28) capi3101: Build G2 Advorsus\n\n29) Babamots: Discover G1 Babamots B2 Andoria\n\n30) capi3101: Build R1 Advorsus\n\n31) Babamots: Sacrifice G2 Orion\nBuild G2 Andoria\nBuild G3 Bolarus\n\n32) capi3101: Trade Y1 R1 Capi3101\n\tcapi3101: Saw that coming - wasn't sure how exactly you'd play it out though. Couldn't think of a way to prevent it either.\r\n\r\nGot a problem now, don't I?\n\n33) Babamots: Trade G3 Y3 Bolarus\n\n34) capi3101: Discover G2 Advorsus R2 Desperata\n\tBabamots: Yeah, you have a bit of a problem. I'm not sure where things went wrong either. I'll have to look back at the game archive.\n\n35) Babamots: Build G3 Bolarus\n\n36) capi3101: Build R3 Capi3101\n\n37) Babamots: Move G3 Bolarus Advorsus\n\n38) capi3101: Sacrifice G2 Advorsus\nBuild G2 Desperata\nBuild Y1 Advorsus\n\n39) Babamots: Sacrifice R2 Bolarus\nAttack R1 Advorsus\nAttack R2 Advorsus\n\n40) capi3101: Sacrifice Y2 Advorsus\nMove R3 Capi3101 Advorsus\nMove R3 Advorsus Andoria\n\n41) Babamots: Sacrifice G2 Andoria\nBuild G2 Advorsus\nBuild Y1 Babamots\n\tBabamots: Uh oh, it looks like you forgot about red sacrifices. I can sacrifice a red ship to capture your r3. Would you like to undo and pick a different move?\r\n\r\nIt's kind of a strange mechanic since a single red ship can simultaneously deter attacks in every system. "A red anywhere is a red everywhere."\n\tBabamots: I got nosey and read some of your conversation in an old game with wil. I also got the pieces in the "Martian Chess Set." I read the rules for Homeworlds when they came out, and liked it in theory but I couldn't find opponents. I was at LooneyCon when I heard that SDG had an active HW community, so I got in here and taught them their business ;-).\r\n\r\nI hope you love playing on here as much as I have.\n\tcapi3101: Yeah, I suppose I'll undo. Was paying attention to your double yellow and the two reds you captured not too far back...\n\tcapi3101: The game with wil wrapped up yesterday; that one was definitely an exercise in "it's been far long since the last time I played"...\n\tcapi3101: Not doing too much better this game...\n\n42) capi3101: Trade G3 Y3 Capi3101\n\n43) Babamots: Sacrifice G3 Advorsus\nBuild Y2 Babamots\nBuild G3 Bolarus\nBuild G3 Advorsus\n\tBabamots: I've got checkmate in two moves if you're not careful here. Can you see the problem? I'll give you a hint if you want it.\n\tcapi3101: Let's see if I can spot it...\r\nThe sac of the Y3 in Bolarus moves the small green from Andoria and the Y2 in Advorsus to my homeworld, blowing green and leaving me with just the dinky little red ship there.\n\tcapi3101: If I grow Red at my homeworld, the sac of the Y2 at Bolarus moves your two red ships in and blows them up.\n\tcapi3101: Swapping the large ship at my homeworld for a different color seems the best move to move.\n\tcapi3101: On the other hand, that puts a fresh large green in the market.\n\tcapi3101: Hell...\n\n44) capi3101: Attack G1 Andoria\n\tcapi3101: May have only bought myself a move or two at most.\n\tBabamots: I think you made your best move just now. It'll be a bit of a chore for me to either build up enough blue to catastrophe your star or enough yellow to catastrophe your y3.\r\n\r\nMy preferred win is to invade with so many large ships that my opponent's biggest red sacrifice can't take them all, but that will never work while you have an r3.\n\n45) Babamots: Sacrifice G3 Advorsus\nBuild B1 Babamots\nBuild R2 Advorsus\nBuild G3 Advorsus\n\n46) capi3101: Trade R3 Y3 Andoria\n\tcapi3101: Running low on materiel...I have an idea of what i want to do; question is going to be whether I've got time to pull it off.\n\n47) Babamots: Sacrifice Y2 Babamots\nMove G2 Advorsus Capi3101\nMove G3 Advorsus Capi3101\n\n48) capi3101: Attack G3 Capi3101\n\tBabamots: I'm afraid you won't have enough time to get the red and yellow you need. My invasion starts on my next move.\r\n\r\nI only plan to destroy your stars. Your ships and crews will not be harmed.\n\tBabamots: Your defeated crews will, of course, be treated humanely. :-)\n\n49) Babamots: Sacrifice Y3 Bolarus\nMove G1 Bolarus Advorsus\nMove G1 Advorsus Capi3101\nCatastrophe Capi3101 G\nMove B3 Babamots Capi3101\n\tcapi3101: Hmm...\n\tcapi3101: I could let you end it all on the next turn. But let's play it out a tad.\n\n50) capi3101: Sacrifice Y3 Andoria\nMove G1 Andoria Babamots\nMove G2 Desperata Babamots\nMove G2 Desperata Babamots\nCatastrophe Babamots G\n\tcapi3101: I won't get to keep it, of course.\n\n51) Babamots: Sacrifice Y2 Bolarus\nMove B1 Babamots Capi3101\nMove B1 Babamots Capi3101\nCatastrophe Capi3101 B\n\n\tcapi3101: Not that that does me any good...\r\n\r\nWhere did I go wrong, you think? Did I move out of my home system too quickly?\n\tBabamots: You're quite right. Some people say "red alert" when their opponent is a move from elimination, but I usually don't. It seems more like taunting than being helpful, especially when they don't have a way out.\n\tBabamots: I'll look back at the game history and give you some analysis. Do you know how to switch to the archive view and see earlier game states?\n\tBabamots: Here's a Javascript that switches your SDG view. There are instructions for turning it into a bookmark.\r\n\r\nhttps://github.com/jpeterbaker/SDGchange\n\tBabamots: You were keeping up just fine until your 9th move. Then you spent a move on trying to be aggressive by moving a g1 to join my pair of g2s. I traded g2 for r2. This did three things:\r\n1) It defended against your invasion since you couldn't cause an advantageous catastrophe anymore.\r\n2) It created a threat since I could attack you.\r\n3) It was a developmental move that I might have made even if you hadn't tried to invade. It got me my first red ship, and you needed to get a red in response soon.\r\n\r\nOn your 10th move, you traded y3 for g3. This is a little dangerous since you have a green star in your home. It turns into a problem much later and you have to trade that g3 for r3 to avoid catastrophe. My suggestion would have been trading y1 for r1. This would have given you access to every technology at home, and you could have sacrificed the r1 to attack me if I tried to invade Advorsus.\r\n\r\nOn your 11th move you traded y2 for r2. It was important for you to get a red ship somewhere soon to dissuade me from invading Advorsus, but you traded away the only yellow ship you had in that system. That's one less system in which you can build yellow.\r\n\r\nOn your 14th move, you built g2. This set me up to do my green sacrifice and score a g3 two moves later. You could have discouraged this on your 15th move by trading a g2 for another color (I suggest yellow). Then the stash would have had an additional g2 and I couldn't have built the g3 right away. It may seem silly to build a ship only to trade it for another color, but since building y2 wasn't an option (a y1 was in the stash), trading for a y2 isn't a bad idea at all. It's common to use the most-used color (green) as a shortcut to larger pieces in other colors. I'll be doing this on my 17th and 18th moves.\r\n\r\nOn your 16th move, you trade away your only yellow at home. There's only one system where you can build yellow now.\r\n\r\nOn my 19th move, I invaded Advorsus. You had lots of ships there and you couldn't evacuate them all. You didn't have a large ship to defend them, and you didn't have a green ship there that you could use to catastrophe my large. Ideally, you would have had a second colony (like my Andoria and Bolarus) so that\r\n1) It would have been easier to build many ships without danger of overpopulation.\r\n2) If I invaded either colony, there would only be half as many ships to capture.\r\n\r\nYou do a fairly good job of responding to my invasion. You try to sacrifice away medium ships on your 19th and 20th moves. It might have been better to sacrifice the y2 to move your r2 and g2 to two (different) new systems so I could only capture smalls.\r\n\r\nAt this point, I have a good fleet on your doorstep and quite a bit of yellow. It's pretty hard to come back from that.\n\nHomeworlds Online (SDG# 35620)\nStarted: 2019.10.16, Ended: 2019.12.15\nParticipants: ts52 (S), DodoBirb (N)\nWinner: ts52\n\n1) DodoBirb: Homeworld B2 R1 G3\n\tDodoBirb: Good Luck! This game is for the Tournament\n\n2) ts52: Homeworld Y3 B2 G3\n\tts52: Thanks! Good luck to you too!\n\n3) DodoBirb: Build G1 Dodobirb\n\n4) ts52: Build G1 Ts52\n\n5) DodoBirb: Trade G1 Y1 Dodobirb\n\n6) ts52: Trade G1 R1 Ts52\n\n7) DodoBirb: Trade Y1 R1 Dodobirb\n\n8) ts52: Build R2 Ts52\n\n9) DodoBirb: Build R2 Dodobirb\n\n10) ts52: Trade R2 B2 Ts52\n\n11) DodoBirb: Trade R1 Y1 Dodobirb\n\n12) ts52: Build G1 Ts52\n\n13) DodoBirb: Build Y1 Dodobirb\n\n14) ts52: Build B1 Ts52\n\n15) DodoBirb: Trade Y1 B1 Dodobirb\n\n16) ts52: Discover B2 Ts52 G1 Kermit\n\n17) DodoBirb: Discover B1 Dodobirb G3 Greeny\n\n18) ts52: Trade B1 Y1 Ts52\n\n19) DodoBirb: Move R2 Dodobirb Greeny\n\n20) ts52: Build B1 Kermit\n\n21) DodoBirb: Build B1 Greeny\n\n22) ts52: Trade B2 Y2 Kermit\n\n23) DodoBirb: Trade B1 Y1 Greeny\n\n24) ts52: Build Y2 Kermit\n\n25) DodoBirb: Build Y2 Dodobirb\n\n26) ts52: Trade Y2 R2 Kermit\n\n27) DodoBirb: Build G1 Dodobirb\n\n28) ts52: Discover G1 Ts52 B1 Gonzo\n\n29) DodoBirb: Discover G1 Dodobirb B3 Bluey\n\n30) ts52: Build G2 Ts52\n\n31) DodoBirb: Build G2 Dodobirb\n\n32) ts52: Move Y1 Ts52 Gonzo\n\n33) DodoBirb: Move Y1 Dodobirb Bluey\n\n34) ts52: Build R1 Ts52\n\tts52: sorry, typo'd\n\n35) DodoBirb: Build Y2 Bluey\n\n36) ts52: Sacrifice G2 Ts52\nBuild Y3 Gonzo\nBuild Y3 Kermit\n\n37) DodoBirb: Sacrifice Y2 Bluey\nMove Y1 Bluey Kermit\nMove Y1 Greeny Kermit\nCatastrophe Kermit Y\n\n38) ts52: Build G2 Gonzo\n\n39) DodoBirb: Build G2 Bluey\n\n40) ts52: Move Y3 Gonzo Greeny\n\n41) DodoBirb: Build Y1 Dodobirb\n\n42) ts52: Sacrifice R1 Ts52\nAttack R2 Greeny\n\n43) DodoBirb: Trade G1 R1 Bluey\n\n44) ts52: Attack B1 Greeny\n\n45) DodoBirb: Build G1 Bluey\n\n46) ts52: Sacrifice G2 Gonzo\nBuild B2 Greeny\nBuild B3 Kermit\n\n47) DodoBirb: Build Y1 Dodobirb\n\n48) ts52: Build B3 Greeny\n\n49) DodoBirb: Move Y1 Dodobirb Bluey\n\n50) ts52: Trade B3 Y3 Kermit\n\n51) DodoBirb: Build Y2 Bluey\n\n52) ts52: Build B3 Kermit\n\n53) DodoBirb: Build G2 Bluey\n\n54) ts52: Move G1 Gonzo Bluey\nCatastrophe Bluey Green\n\n55) DodoBirb: Move G2 Dodobirb Bluey\n\n56) ts52: Trade B3 R3 Greeny\n\n57) DodoBirb: Build G1 Dodobirb\n\n58) ts52: Build B3 Greeny\n\n59) DodoBirb: Build R2 Bluey\n\n60) ts52: Sacrifice Y3 Greeny\nMove B1 Greeny Dodobirb\nMove B2 Greeny Dodobirb\nMove B3 Greeny Dodobirb\nCatastrophe Dodobirb Blue\n\n61) DodoBirb: Pass\n\n62) ts52: Sacrifice Y3 Kermit\nMove R3 Greeny Dodobirb\nMove R2 Greeny Dodobirb\nMove R1 Ts52 Dodobirb\nCatastrophe Dodobirb Red\n\n\tDodoBirb: Good game!\n\tts52: Thanks. Good game!\n\nHomeworlds Online (SDG# 35616)\nVariants: "Hard time"\nStarted: 2019.10.16, Ended: 2019.11.3\nParticipants: wil (S), Draw5PlayAll (N)\nWinner: Draw5PlayAll\n\n1) Draw5PlayAll: Homeworld B2 R2 G3 *\n\n2) wil: H Y3 B3 G3 *\n\n3) Draw5PlayAll: Build G1 Draw5playall\n\twil: Good luck, have fun\n\twil: My he protégé has now surpassed me...\n\n4) wil: B G1 Wil\n\n5) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n6) wil: D G1 Wil B1 B1\n\n7) Draw5PlayAll: Build G1 Draw5playall\n\twil: I hear you enjoy odd openings and short unis\n\twil: Trydnt n I would play all these combos,5 games a night\n\twil: I play these with Andy to keep him prepared!\n\tDraw5PlayAll: 5 games a night?\r\n11 vs 22, 11 vs 33, 22 vs 33 is already 3 of them.\n\n8) wil: B G1 Wil\n\tDraw5PlayAll: I guess no more homeworld factories, unless you also keep an R3 there (Y3 for me)...\n\n9) Draw5PlayAll: Trade G1 R1 Draw5playall\n\twil: Factories need not be at home...\n\twil: 13 v 22 is still microverse and there are miniverses\n\tDraw5PlayAll: Do you prefer 12 vs 12 miniverses, or 12 vs 22?\n\tDraw5PlayAll: ...or 22 vs 22?\n\n10) wil: T G1 R1 Wil\n\n11) Draw5PlayAll: Build G1 Draw5playall\n\n12) wil: B R1 Wil\n\n13) Draw5PlayAll: Discover R1 Draw5playall G1 Build\n\twil: I don't have a preference or a go to response..\n\twil: I haven't found anything to be unbeatable\n\n14) wil: M R1 Wil Build\n\n15) Draw5PlayAll: Attack R1 Build\n\twil: I like the zoning, commute, views, plenty of space!+\n\n16) wil: B R2 Wil\n\n17) Draw5PlayAll: Sacrifice Y1 Draw5playall\nDiscover R1 Build G2 Construct\n\n18) wil: T R1 B1 Wil\n\n19) Draw5PlayAll: Trade G1 Y1 Draw5playall\n\n20) wil: B G1 Wil\n\n21) Draw5PlayAll: Build G2 Draw5playall\n\n22) wil: M G1 Wil Draw5playall\n\n23) Draw5PlayAll: Trade G3 Y3 Draw5playall\n\twil: Hello, always surprised how quiet u r in games u r in\n\tDraw5PlayAll: My moods change\n\n24) wil: B G2 Draw5playall\n\n25) Draw5PlayAll: Build G3 Draw5playall\nCatastrophe Draw5playall Green\n\n26) wil: B B1 Wil\n\twil: Lol, my mood does too! when you interupt in other games\n\n27) Draw5PlayAll: Trade Y3 G3 Draw5playall\n\tDraw5PlayAll: So who lost more in that whole shenanigans?\n\n28) wil: D B1 Wil G1 Gee1\n\twil: You tell me, count ships.\n\n29) Draw5PlayAll: Build G2 Draw5playall\n\n30) wil: B G2 Wil\n\n31) Draw5PlayAll: Trade G2 Y2 Draw5playall\n\n32) wil: S G3 Wil\nB B2 Gee1\nB B2 Gee1\nB B3 Wil\n\n33) Draw5PlayAll: Build R1 Construct\n\n34) wil: B G2 Wil\n\n35) Draw5PlayAll: Build G3 Draw5playall\n\n36) wil: M B3 Wil Build\n\twil: Let's get this party started\n\n37) Draw5PlayAll: Move G3 Draw5playall Wil\n\n38) wil: B G3 B1\n\tDraw5PlayAll: I just realized this was a ladder game not a tournament game...\n\n39) Draw5PlayAll: Sacrifice R1 Build\nAttack B1 Wil\n\twil: ?? Didn't you challenge me??\n\n40) wil: S G1 B1\nB G1 Wil\nC Wil G\n\twil: Do you play differently in tournaments and ladders?\n\n41) Draw5PlayAll: Move G3 Draw5playall Wil\n\tDraw5PlayAll: Oh, I was just thinking about how horribly I was doing in the tournament, expecting to lose this game... and then I realized that it's not for the tournament...\r\n\r\n...and now I *think* I have mate in 4.\n\twil: Lol, I moved.out my 3?\n\n\twil: Ya got this\n\twil: Gg\n\tDraw5PlayAll: Now on to Simon or Trydnt\n\nHomeworlds Online (SDG# 35618)\nStarted: 2019.10.17, Ended: 2019.12.29\nParticipants: capi3101 (S), Laurie_Menke (N)\nWinner: capi3101\n\n1) Laurie_Menke: Homeworld R1 B3 G3\n\tLaurie_Menke: Hi there! Glad you could make it! Have fun, and feel free to ask questions if you have any. :)\n\n2) capi3101: Homeworld G1 B2 Y3\n\n3) Laurie_Menke: Build G1 Laurie_menke\n\tcapi3101: Will do, thanks. Looking forward to getting trounced...\n\tLaurie_Menke: LOL! We'll see... I'm only about a mid-level player. :)\n\n4) capi3101: Build Y1 Capi3101\n\n5) Laurie_Menke: Trade G1 Y1 Laurie_menke\n\n6) capi3101: Trade Y1 B1 Capi3101\n\n7) Laurie_Menke: Build G1 Laurie_menke\n\n8) capi3101: Build Y1 Capi3101\n\n9) Laurie_Menke: Trade G1 R1 Laurie_menke\n\n10) capi3101: Build B1 Capi3101\n\n11) Laurie_Menke: Build G1 Laurie_menke\n\n12) capi3101: Trade B1 R1 Capi3101\n\n13) Laurie_Menke: Build R2 Laurie_menke\n\n14) capi3101: Build B1 Capi3101\n\n15) Laurie_Menke: Discover R2 Laurie_menke B2 Blue\n\n16) capi3101: Build R2 Capi3101\n\n17) Laurie_Menke: Build G1 Laurie_menke\n\tLaurie_Menke: Oops! Sorry for timing out... life got away from me a bit!\n\n18) capi3101: Discover B1 Capi3101 G3 Viridi\n\tcapi3101: No problem; I figured it was something like that. If you need to stop the game, just say so.\n\n19) Laurie_Menke: Move G1 Laurie_menke Blue\n\tLaurie_Menke: Nope... I'm in! But thanks for the understanding! :)\n\n20) capi3101: Move R2 Capi3101 Viridi\n\n21) Laurie_Menke: Build G2 Blue\n\n22) capi3101: Move Y1 Capi3101 Viridi\n\n23) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild G2 Laurie_menke\nBuild G2 Blue\nBuild G3 Laurie_menke\n\tLaurie_Menke: ::sigh:: My apologies again. Hopefully for the last time.\n\n24) capi3101: Trade Y3 G3 Capi3101\n\n25) Laurie_Menke: Trade G2 Y2 Blue\n\n26) capi3101: Sacrifice G3 Capi3101\nBuild B1 Viridi\nBuild B2 Viridi\nBuild B3 Capi3101\n\n27) Laurie_Menke: Sacrifice Y2 Blue\nMove G2 Blue Viridi\nMove G1 Blue Viridi\n\n28) capi3101: Sacrifice R2 Viridi\nAttack G1 Viridi\nAttack G2 Viridi\n\n29) Laurie_Menke: Discover G1 Laurie_menke Y2 Yellow\n\tcapi3101: Hmm...I have a guess as to what's coming next...\n\tLaurie_Menke: You do? Because I sure don't! I screwed up and didn't see that coming!\n\n30) capi3101: Trade B3 G3 Capi3101\n\n31) Laurie_Menke: Move G1 Yellow Viridi\nCatastrophe Viridi G\n\n32) capi3101: Build G1 Capi3101\n\tLaurie_Menke: Whew... that puts me back in the running... I was sweating there for a bit! :)\n\tcapi3101: Ah. ~That's~ what I saw coming. Too bad I did remember to do something about it when I could've...\n\n33) Laurie_Menke: Build Y1 Laurie_menke\n\tcapi3101: *didn't. I didn't remember to do something...\n\tLaurie_Menke: Alas. Sorry. :/\n\n34) capi3101: Trade G3 Y3 Capi3101\n\n35) Laurie_Menke: Build R2 Laurie_menke\n\n36) capi3101: Build B1 Capi3101\n\n37) Laurie_Menke: Trade R2 B2 Laurie_menke\n\n38) capi3101: Trade Y3 G3 Capi3101\n\n39) Laurie_Menke: Move B2 Laurie_menke Blue\n\n40) capi3101: Build R2 Capi3101\n\n41) Laurie_Menke: Move Y1 Laurie_menke Blue\n\n42) capi3101: T B1 Y1 Capi3101\n\n43) Laurie_Menke: Discover B2 Blue Y3 Yellow\n\n44) capi3101: Discover R2 Capi3101 G3 Aleph\n\n45) Laurie_Menke: Sacrifice G2 Laurie_menke\nBuild B1 Yellow\nBuild Y2 Laurie_menke\n\n46) capi3101: Move B1 Capi3101 Aleph\n\n47) Laurie_Menke: Trade B1 G1 Yellow\n\n48) capi3101: Sacrifice G3 Capi3101\nBuild R2 Aleph\nBuild R3 Capi3101\nBuild Y2 Capi3101\n\n49) Laurie_Menke: Sacrifice G3 Laurie_menke\nBuild Y2 Blue\nBuild Y3 Laurie_menke\nBuild G2 Yellow\n\tLaurie_Menke: Nice move!\n\n50) capi3101: D G1 Capi3101 Y3 Bet\n\tcapi3101: Likewise. This game got interesting all of a sudden...\n\n51) Laurie_Menke: Move R2 Blue Bet\n\n52) capi3101: Sacrifice Y1 Capi3101\nMove R2 Aleph Blue\n\n53) Laurie_Menke: Sacrifice R1 Laurie_menke\nAttack R2 Blue\n\n54) capi3101: Discover G1 Bet Y1 Gimel\n\n55) Laurie_Menke: Sacrifice G1 Yellow\nBuild R1 Bet\n\n56) capi3101: Discover R1 Capi3101 G3 Dalet\n\n57) Laurie_Menke: Sacrifice Y3 Laurie_menke\nMove R2 Blue Bet\nMove R2 Bet Capi3101\nMove R2 Bet Capi3101\n\n58) capi3101: S R3 Capi3101\nA R2 Capi3101\nA R2 Capi3101\nP\n\n59) Laurie_Menke: Sacrifice G2 Yellow\nBuild R3 Bet\nBuild Y3 Laurie_menke\n\tLaurie_Menke: Wow! Nice save! I did not see that coming... I thought I had you. Well done!\n\n60) capi3101: Move R2 Capi3101 Yellow\n\tcapi3101: You've still got me though, so don't let the play clock run out this time.\n\n61) Laurie_Menke: Sacrifice R1 Bet\nAttack R2 Yellow\n\tcapi3101: Well...maybe not. It doesn't look good though. \n\n62) capi3101: Build R1 Aleph\n\tLaurie_Menke: Sorry to keep you waiting again. The holidays took more of my time than expected, but I'm back now!\n\n63) Laurie_Menke: Move R3 Bet Capi3101\n\tLaurie_Menke: Wow! I don't know why I didn't recognize before that you don't have a large in your homeworld!\n\n64) capi3101: Build R3 Capi3101\n\n\tcapi3101: Time to go ahead and save face. Count it as a win for yourself.\n\tLaurie_Menke: Thanks for the challenge, capi3101! I hope you've had fun! :)\n\nHomeworlds Online (SDG# 35374)\nVariants: "Unrated, Hard time"\nStarted: 2019.10.17, Ended: 2019.10.22\nParticipants: wil (S), rho0 (N)\nWinner: wil\n\n1) rho0: Homeworld R1 B2 G3\n\n2) wil: H Y3 B1 G3\n\n3) rho0: Build G1 Rho0\n\n4) wil: B G1 Wil\n\n5) rho0: Build G1 Rho0\n\n6) wil: B G2 Wil\n\n7) rho0: Trade G1 Y1 Rho0\n\twil: I'll take a drone upgrade\n\n8) wil: T G1 R1 Wil\n\n9) rho0: Trade G1 B1 Rho0\n\n10) wil: B R1 Wil\n\n11) rho0: Build B1 Rho0\n\n12) wil: T G2 B2 Wil\n\n13) rho0: Build Y1 Rho0\n\n14) wil: D B2 Wil G2 G2\n\n15) rho0: Discover B1 Rho0 Y3 Beta\n\n16) wil: M R1 Wil G2\n\n17) rho0: Build B2 Rho0\n\n18) wil: B B3 G2\n\n19) rho0: Sacrifice G3 Rho0\nBuild B3 Beta\nBuild B3 Beta\nBuild Y1 Rho0\n\twil: Getting interesting... No two games ever alike\n\n20) wil: T B2 Y2 G2\n\n21) rho0: Sacrifice B1 Rho0\nTrade B3 G3 Beta\n\twil: Noice\n\n22) wil: B B1 G2\n\n23) rho0: Move G3 Beta Rho0\n\n24) wil: T B3 Y3 G2\n\trho0: thanks\n\n25) rho0: Discover Y1 Rho0 G3 Gamma\n\n26) wil: M Y2 G2 Gamma\n\n27) rho0: Trade B3 R3 Beta\n\n28) wil: B R2 G2\n\n29) rho0: Build G1 Rho0\n\n30) wil: M R2 G2 Gamma\n\n31) rho0: Discover Y1 Gamma R2 Delta\n\n32) wil: B Y2 G2\n\n33) rho0: Sacrifice G1 Rho0\nBuild Y2 Delta\n\n34) wil: S G3 Wil\nB R2 G2\nB R3 Gamma\nB R3 Wil\n\n35) rho0: Sacrifice Y1 Delta\nDiscover Y2 Delta B3 Epsilon\n\n36) wil: T R3 G3 Wil\n\n37) rho0: Trade B2 G2 Rho0\n\n38) wil: D R2 Gamma Y1 Y1\n\n39) rho0: Build G1 Rho0\n\n40) wil: B R2 Gamma\n\n41) rho0: Discover Y1 Rho0 R3 Alpha\n\n42) wil: M R1 G2 Beta\n\n43) rho0: Sacrifice Y2 Epsilon\nDiscover R3 Beta Y2 Phi\nMove B1 Beta Phi\n\n44) wil: B B2 G2\n\n\twil: Did you see something I didn't?\n\trho0: I was horribly underdeveloped. I don't like quitting before the end, but I recognized that I had already lost. I'd definitely be down for a rematch, though. You're definitely one of the most difficult people that I have faced so far.\n\twil: Challenge me anytime...I enjoy the game..\n\twil: I tend to play things out... Hoping for a mistake!\n\twil: Ah, even when I think I've lost due to my errors\n\trho0: Yeah usually i would play it out because i dont like robbing people of their victories and learning how to come back from a defeat is helpful, but i got excited and wanted to start a new game \n\twil: No worries, for future ref I don't mind multiple games\n\nHomeworlds Online (SDG# 35563)\nVariants: "Unrated"\nStarted: 2019.10.19, Ended: 2019.10.23\nParticipants: rho0 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\n2) rho0: Homeworld B1 R3 G3\n\n3) Trydnt: Build G1 Trydnt\n\n4) rho0: Build G1 Rho0\n\n5) Trydnt: Trade G1 B1 Trydnt\n\n6) rho0: Trade G1 B1 Rho0\n\n7) Trydnt: Build B2 Trydnt\n\n8) rho0: Build G1 Rho0\n\n9) Trydnt: Trade B1 Y1 Trydnt\n\n10) rho0: Build G1 Rho0\n\n11) Trydnt: Build Y1 Trydnt\n\n12) rho0: Build B1 Rho0\n\n13) Trydnt: Discover Y1 Trydnt G3 G3\n\n14) rho0: Trade B1 R1 Rho0\n\n15) Trydnt: Build Y2 G3\n\n16) rho0: Sacrifice G1 Rho0\nBuild R1 Rho0\n\n17) Trydnt: Build Y2 Trydnt\n\n18) rho0: Trade G3 Y3 Rho0\n\n19) Trydnt: Discover Y2 G3 G2 G2\n\trho0: Haha what time zone are you in, it's like 5 AM here and you have been responding since like 3.\n\n20) rho0: Move R1 Rho0 G2\n\tTrydnt: GMT\n\n21) Trydnt: Build Y2 G2\n\n22) rho0: Build Y3 Rho0\n\n23) Trydnt: Sacrifice Y2 Trydnt\nMove Y2 G2 Rho0\nMove Y2 G2 Rho0\nCatastrophe Rho0 Y\n\n24) rho0: Build B1 Rho0\n\n25) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 G3\nBuild Y2 G3\nBuild Y2 Trydnt\n\n26) rho0: Build R1 G2\n\n27) Trydnt: Sacrifice Y2 G3\nMove Y2 G3 G2\nMove Y2 G2 Rho0\n\n\trho0: Well played\n\tTrydnt: you too\n\nHomeworlds Online (SDG# 35590)\nVariants: "Hard time"\nStarted: 2019.10.19, Ended: 2019.10.27\nParticipants: dlwillson (S), rho0 (N)\nWinner: dlwillson\n\n1) rho0: Homeworld B1 Y2 G3\n\n2) dlwillson: H Y3 B2 G3\n\n3) rho0: Build G1 Rho0\n\tdlwillson: Good luck and have fun!\n\n4) dlwillson: B G1 Dlwillson\n\trho0: Same to you, friend!\n\n5) rho0: Trade G1 B1 Rho0\n\n6) dlwillson: T G1 B1 Dlwillson\n\n7) rho0: Build B2 Rho0\n\n8) dlwillson: B B2 Dlwillson\n\n9) rho0: Trade B1 Y1 Rho0\n\n10) dlwillson: D B1 Dlwillson G1 Field\n\n11) rho0: Build Y1 Rho0\n\n12) dlwillson: B B1 Dlwillson\n\n13) rho0: Build B3 Rho0\n\n14) dlwillson: Build B3 Field\n\n15) rho0: Discover B3 Rho0 B3 Beta\n\n16) dlwillson: T B2 Y2 Dlwillson\n\n17) rho0: Trade B3 R3 Beta\n\n18) dlwillson: T B3 R3 Field\n\n19) rho0: Move Y1 Rho0 Beta\n\n20) dlwillson: S G3 Dlwillson\nB B2 Field\nB B3 Field\nB B3 Dlwillson\n\n21) rho0: Sacrifice G3 Rho0\nBuild Y1 Beta\nBuild Y2 Beta\nBuild Y3 Rho0\n\n22) dlwillson: Sacrifice B2 Field\nTrade B3 Y3 Field\nTrade B3 G3 Dlwillson\n\n23) rho0: Trade Y1 G1 Beta\n\n24) dlwillson: Sacrifice Y2 Dlwillson\nMove Y3 Field Beta\nMove Y3 Beta Rho0\nCatastrophe Rho0 Y\n\n25) rho0: Sacrifice Y2 Beta\nMove R3 Beta Rho0\nMove R3 Rho0 Dlwillson\n\n26) dlwillson: S R3 Field\nA R3 Dlwillson\nPass\nPass\n\n27) rho0: Build Y1 Beta\n\n28) dlwillson: S G3 Dlwillson\nB B2 Field\nB B3 Field\nB B3 Dlwillson\n\n29) rho0: Move Y1 Beta Rho0\n\n30) dlwillson: T B3 Y3 Dlwillson\n\n31) rho0: Build G1 Beta\n\n32) dlwillson: S Y3 Dlwillson\nM B3 Field Beta\nM B3 Beta Rho0\nD B2 Field B3 Sky\n\n33) rho0: Sacrifice Y1 Beta\nMove G1 Beta Rho0\n\n34) dlwillson: S R3 Dlwillson\nA B2 Rho0\nA G1 Rho0\nA Y1 Rho0\n\tdlwillson: Good game! Thank you!\n\trho0: Yeah we will have to get a rematch going soom\n\n\nHomeworlds Online (SDG# 35589)\nVariants: "Unrated"\nStarted: 2019.10.20, Ended: 2020.9.5\nParticipants: maxlfusion (S), wil (N)\nWinner: wil\n\n1) wil: H Y2 B1 G3\n\n2) maxlfusion: Homeworld B3 G2 Y3\n\n3) wil: B G1 Wil\n\n4) maxlfusion: Build Y1 Maxlfusion\n\twil: Rainy Sunday morning, perfect game time!\n\tmaxlfusion: yeah I have a slow sunday right as well :)\n\n5) wil: B G1 Wil\n\n6) maxlfusion: Trade Y1 G1 Maxlfusion\n\twil: Night? I'm near DC, you.\n\n7) wil: T G1 B1 Wil\n\tmaxlfusion: sorry I meant slow sunday right now as well\r\n\r\nI'm from Detroit area\n\n8) maxlfusion: Build Y1 Maxlfusion\n\twil: Ah, lol. Good luck, have fun! Been playing long?\n\tmaxlfusion: To be honest it's been quite some time since I played last for some reason this morning I had a craving for Homeworlds\n\n9) wil: B B1 Wil\n\n10) maxlfusion: Discover Y1 Maxlfusion G1 Tinytree\n\n11) wil: T G1 R1 Wil\n\n12) maxlfusion: Build Y1 Tinytree\n\n13) wil: D B1 Wil G3 G3\n\n14) maxlfusion: Trade G1 R1 Maxlfusion\n\n15) wil: B B2 Wil\n\n16) maxlfusion: Move Y1 Tinytree G3\n\twil: The game is a constant challenge for me..\n\n17) wil: B B2 G3\n\tmaxlfusion: it's a really unique game my only complaint is I don't know anyone who plays anymore so I have to come online to find a match... I'm super pleased the super duper games has it but I miss being able to play it with people \n\twil: Yeah, I've had to create my own live competition\r\n\r\n\n\n18) maxlfusion: Build Y1 Maxlfusion\n\n19) wil: D B1 Wil Y3 Y3\n\n20) maxlfusion: Build Y2 Tinytree\n\n21) wil: T B2 R2 G3\n\n22) maxlfusion: Build Y2 G3\n\n23) wil: A Y2 G3\n\n24) maxlfusion: Trade Y1 G1 Maxlfusion\n\n25) wil: A Y1 G3\n\n26) maxlfusion: Move Y2 Tinytree Y3\n\n27) wil: D B1 Y3 Y1 Y1\n\n28) maxlfusion: Build Y3 Maxlfusion\n\n29) wil: B B2 G3\n\n30) maxlfusion: Build G1 Maxlfusion\n\n31) wil: S G3 Wil\nB B2 G3\nB B3 Y1\nB B3 Wil\n\n32) maxlfusion: Move G1 Maxlfusion Tinytree\n\n33) wil: T B3 G3 Y1\n\n34) maxlfusion: Trade Y3 B3 Maxlfusion\n\n35) wil: T B3 G3 Wil\n\n36) maxlfusion: Build Y3 Tinytree\n\n37) wil: B B3 Y1\n\n38) maxlfusion: Build R1 Maxlfusion\n\n39) wil: T B3 R3 Y1\n\n40) maxlfusion: Move R1 Maxlfusion Tinytree\n\n41) wil: M G3 Y1 Y3\n\n42) maxlfusion: Build R2 Maxlfusion\n\n43) wil: B G2 Wil\n\n44) maxlfusion: Move B3 Maxlfusion Tinytree\n\n45) wil: S G2 Wil\nB G2 Wil\nB B3 Y1\n\n\nHomeworlds Online (SDG# 35627)\nVariants: "Unrated"\nStarted: 2019.10.20, Ended: 2019.12.5\nParticipants: Trydnt (S), maxlfusion (N)\nWinner: Trydnt\n\n1) maxlfusion: Homeworld B2 G1 Y3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) maxlfusion: Build Y1 Maxlfusion\n\n4) Trydnt: Build G1 Trydnt\n\n5) maxlfusion: Trade Y1 G1 Maxlfusion\n\n6) Trydnt: Trade G1 B1 Trydnt\n\n7) maxlfusion: Build Y1 Maxlfusion\n\n8) Trydnt: Build B1 Trydnt\n\n9) maxlfusion: Build Y1 Maxlfusion\n\n10) Trydnt: Trade B1 Y1 Trydnt\n\n11) maxlfusion: Discover Y1 Maxlfusion G3 G3\n\n12) Trydnt: Build Y2 Trydnt\n\n13) maxlfusion: Trade G1 B1 Maxlfusion\n\n14) Trydnt: Discover Y2 Trydnt G1 G1\n\n15) maxlfusion: Build Y2 G3\n\n16) Trydnt: Discover Y1 Trydnt G1 Gee1\n\n17) maxlfusion: Trade Y1 R1 Maxlfusion\n\n18) Trydnt: Build G2 Trydnt\n\n19) maxlfusion: Build R1 Maxlfusion\n\n20) Trydnt: Trade G2 Y2 Trydnt\n\n21) maxlfusion: Move R1 Maxlfusion G3\n\n22) Trydnt: Build G2 Trydnt\n\n23) maxlfusion: Move Y2 G3 G1\n\n24) Trydnt: Move Y2 G1 G3\n\n25) maxlfusion: Move Y2 G1 G3\n\n26) Trydnt: Sacrifice G2 Trydnt\nBuild Y1 G3\nBuild Y3 Gee1\nCatastrophe G3 Y\n\n27) maxlfusion: Trade Y3 G3 Maxlfusion\n\n28) Trydnt: Build G1 Trydnt\n\n29) maxlfusion: Trade R1 Y1 Maxlfusion\n\n30) Trydnt: Trade G1 R1 Trydnt\n\n31) maxlfusion: Build R1 G3\n\n32) Trydnt: Move R1 Trydnt Gee1\n\n\nHomeworlds Online (SDG# 35630)\nVariants: "Unrated"\nStarted: 2019.10.20, Ended: 2019.12.19\nParticipants: Trydnt (S), maxlfusion (N)\nWinner: Trydnt\n\n1) maxlfusion: Homeworld B2 Y1 G3\n\n2) Trydnt: Homeworld B3 R2 G3\n\n3) maxlfusion: Build G1 Maxlfusion\n\n4) Trydnt: Build G1 Trydnt\n\n5) maxlfusion: Trade G1 R1 Maxlfusion\n\n6) Trydnt: Trade G1 Y1 Trydnt\n\n7) maxlfusion: Build G1 Maxlfusion\n\n8) Trydnt: Build Y1 Trydnt\n\n9) maxlfusion: Discover G1 Maxlfusion Y3 Y3\n\n10) Trydnt: Build Y2 Trydnt\n\n11) maxlfusion: Build G1 Maxlfusion\n\n12) Trydnt: Discover Y1 Trydnt B1 B1\n\n13) maxlfusion: Build R1 Maxlfusion\n\n14) Trydnt: Build Y2 Trydnt\n\n15) maxlfusion: Move R1 Maxlfusion Y3\n\n16) Trydnt: Discover Y2 Trydnt B1 Bee1\n\n17) maxlfusion: Build R1 Y3\n\n18) Trydnt: Sacrifice G3 Trydnt\nBuild Y2 B1\nBuild Y3 Trydnt\nBuild Y3 Bee1\n\n19) maxlfusion: Build R2 Y3\n\n20) Trydnt: Trade Y3 R3 Bee1\n\n21) maxlfusion: Trade R1 B1 Maxlfusion\n\n22) Trydnt: Trade Y2 G2 Trydnt\n\n23) maxlfusion: Move B1 Maxlfusion Y3\n\n24) Trydnt: Sacrifice G2 Trydnt\nBuild Y2 Bee1\nBuild Y3 B1\n\n25) maxlfusion: Move R2 Y3 Maxlfusion\n\n26) Trydnt: Move Y3 B1 Y3\n\n27) maxlfusion: Build G1 Y3\n\n28) Trydnt: Trade Y2 G2 Bee1\n\n29) maxlfusion: Discover G1 Y3 R2 R2\n\n30) Trydnt: Move Y2 B1 R2\n\n\nHomeworlds Online (SDG# 35632)\nVariants: "No undo, Unrated"\nStarted: 2019.10.20, Ended: 2019.11.5\nParticipants: maxlfusion (S), rho0 (N)\nWinner: rho0\n\n1) rho0: Homeworld Y2 B3 G3\n\n2) maxlfusion: Homeworld R3 B2 G3\n\n3) rho0: Build G1 Rho0\n\n4) maxlfusion: Build G1 Maxlfusion\n\n5) rho0: Trade G1 Y1 Rho0\n\n6) maxlfusion: Trade G1 Y1 Maxlfusion\n\n7) rho0: Build G1 Rho0\n\n8) maxlfusion: Build G1 Maxlfusion\n\n9) rho0: Trade G1 B1 Rho0\n\n10) maxlfusion: Trade G1 B1 Maxlfusion\n\n11) rho0: Build G1 Rho0\n\n12) maxlfusion: Build G1 Maxlfusion\n\n13) rho0: Discover G1 Rho0 R1 Beta\n\n14) maxlfusion: Discover G1 Maxlfusion R1 Alpha\n\n15) rho0: Build B1 Rho0\n\n16) maxlfusion: Build Y1 Maxlfusion\n\n17) rho0: Build Y2 Rho0\n\n18) maxlfusion: Move Y1 Maxlfusion Alpha\n\n19) rho0: Move B1 Rho0 Beta\n\n20) maxlfusion: Move B1 Maxlfusion Alpha\n\n21) rho0: Move Y2 Rho0 Alpha\n\n22) maxlfusion: Build Y2 Maxlfusion\n\n23) rho0: Attack Y1 Alpha\n\n24) maxlfusion: Sacrifice Y1 Maxlfusion\nMove B1 Alpha Rho0\n\n25) rho0: Trade B1 R1 Rho0\n\n26) maxlfusion: Sacrifice G1 Alpha\nBuild B1 Rho0\n\n27) rho0: Sacrifice Y1 Alpha\nDiscover G1 Beta Y3 Gamma\n\n28) maxlfusion: Build G1 Maxlfusion\n\n29) rho0: Attack B1 Rho0\n\n30) maxlfusion: Sacrifice G1 Maxlfusion\nBuild B2 Rho0\n\n31) rho0: Move B1 Rho0 Alpha\n\n32) maxlfusion: Sacrifice G3 Maxlfusion\nBuild B2 Rho0\nBuild B3 Rho0\nBuild Y1 Maxlfusion\n\n33) rho0: Move Y1 Rho0 Beta\nCatastrophe Rho0 B\n\n34) maxlfusion: Trade Y1 G1 Maxlfusion\n\n35) rho0: Build R2 Rho0\n\n\nHomeworlds Online (SDG# 35629)\nVariants: "Unrated"\nStarted: 2019.10.20, Ended: 2019.10.26\nParticipants: wil (S), capi3101 (N)\nWinner: wil\n\n1) capi3101: Homeworld G1 B2 Y3\n\tcapi3101: Eh, what the hell...I obviously need practice...\n\n2) wil: H Y3 B1 G3\n\n3) capi3101: Build Y1 Capi3101\n\n4) wil: B G1 Wil\n\n5) capi3101: Trade Y1 R1 Capi3101\n\twil: I'll see if I can't teach another lesson! GL\n\n6) wil: B G1 Wil\n\n7) capi3101: Build Y1 Capi3101\n\twil: Don't let anyone monopolize an economy...\n\n8) wil: D G1 Wil B2 B2\n\n9) capi3101: Trade Y3 G3 Capi3101\n\n10) wil: T G1 B1 Wil\n\n11) capi3101: Build Y1 Capi3101\n\n12) wil: B B1 Wil\n\n13) capi3101: Trade Y1 G1 Capi3101\n\twil: Ya made me change plan, but I continued same scheme\n\n14) wil: D B1 Wil Y2 Y2\n\n15) capi3101: Trade G3 B3 Capi3101\n\n16) wil: S G3 Wil\nB B2 Y2\nB B3 Y2\nB B3 Wil\n\n17) capi3101: Build G2 Capi3101\n\n18) wil: S B2 Y2\nT B3 Y3 Y2\nT B3 G3 Wil\n\n19) capi3101: Discover G2 Capi3101 B3 Quiescat\n\n20) wil: B G2 Wil\n\n21) capi3101: Build Y1 Capi3101\n\n22) wil: S G3 Wil\nB G2 B2\nB G3 Wil\nB G3 Wil\n\n23) capi3101: Build G3 Quiescat\n\n24) wil: S Y3 Y2\nM G3 Wil B2\nM G1 B2 Quiescat\nM G2 B2 Quiescat\nC Quiescat G\n\tcapi3101: How attached are you to that big yellow?\n\n25) capi3101: Build B2 Capi3101\n\n26) wil: S G3 B2\nB B2 Wil\nB B3 Y2\nB B3 Y2\n\twil: R u kidding? It was her plan all along...\n\tcapi3101: Well, when you gamble, sometimes you lose. Dammit...\n\n27) capi3101: Discover B2 Capi3101 G3 Morietur\n\twil: She will gladly sacrifice 3-2 lead for 2-1, very time!\n\n28) wil: Sacrifice B2 Wil\nT B3 Y3 Y2\nT B3 G3 Y2\n\n29) capi3101: Move Y1 Capi3101 Morietur\n\n30) wil: S G2 Wil\nB B2 Y2\nB B3 Wil\n\twil: The blue monopoly creates a short term queen factory.\n\n31) capi3101: Discover G1 Capi3101 B3 Mea\n\n32) wil: T B1 R1 Wil\n\n33) capi3101: Trade B3 Y3 Capi3101\n\n34) wil: T B1 R1 Y2\n\tcapi3101: Damnation.\n\n35) capi3101: Build G1 Mea\n\n36) wil: B R2 Y2\n\twil: A country run on renewable resources!\n\n37) capi3101: Build R2 Capi3101\n\n38) wil: M R2 Y2 Mea\n\n39) capi3101: Build Y1 Morietur\n\n40) wil: B G2 Wil\n\twil: Grass is always greener, I like the rainforest\n\n41) capi3101: Discover Y1 Morietur Y2 Adhaesit\n\n42) wil: A G1 Mea\n\twil: Out sneeking sneeky double agent counterspy plot twists\n\n43) capi3101: Build Y2 Capi3101\n\twil: Oh phooey, nice move\n\tcapi3101: Thanks. I'd like to think I'm learning a few things...\n\n44) wil: A G1 Mea\n\n45) capi3101: Build B1 Morietur\n\n46) wil: S G3 Wil\nB G2 Mea\nB G2 Wil\nB G3 Wil\n\n47) capi3101: Move B1 Morietur Adhaesit\n\n48) wil: M G2 Wil Adhaesit\n\n49) capi3101: Move B1 Adhaesit Wil\n\n50) wil: M B3 Wil Adhaesit\n\tcapi3101: Ugh...this is gonna suck...\n\n51) capi3101: Move Y1 Adhaesit Morietur\n\n52) wil: M Y3 Y2 Mea\n\n53) capi3101: Trade Y3 B3 Capi3101\n\n54) wil: S G3 Wil\nB G3 Wil\nB Y3 Mea\nB B1 Y2\n\twil: Ah, that was the move you had before..\n\n55) capi3101: Sacrifice R1 Capi3101\nAttack R1 Wil\n\tcapi3101: Yep. Saw it too late.\n\tcapi3101: And now I'm in trouble.\n\tcapi3101: Again.\n\tcapi3101: You've got mate in three moves if I'm not mistaken. I'll see if I can't get out of it but I think you've about got this one wrapped up.\n\n56) wil: D B1 Y2 R1 R1\n\n\twil: Thx I needed that\n\tcapi3101: So I found Looney's Pyramid Arcade documentation yesterday...read through the section about Homeworlds about a doomsday machine - and it looks like you've got one set up.\n\tcapi3101: So, I'll not drag this out after all...\n\tcapi3101: ...and promise to keep playing.\n\twil: Yes,the machine is in place. Gg, challenge anytime\n\nHomeworlds Online (SDG# 35634)\nVariants: "Unrated"\nStarted: 2019.10.20, Ended: 2019.10.23\nParticipants: capi3101 (S), Trydnt (N)\nWinner: Trydnt\n\n1) Trydnt: Homeworld B2 Y1 G3\n\tcapi3101: Howdy. I'm in need of some practice; looking forward to getting beaten...\n\n2) capi3101: Homeworld G1 B2 Y3\n\n3) Trydnt: Build G1 Trydnt\n\n4) capi3101: Build Y1 Capi3101\n\n5) Trydnt: Build G1 Trydnt\n\n6) capi3101: Trade Y1 R1 Capi3101\n\n7) Trydnt: Discover G1 Trydnt Y3 Y3\n\n8) capi3101: Build Y1 Capi3101\n\n9) Trydnt: Build G2 Trydnt\n\n10) capi3101: Trade Y3 G3 Capi3101\n\n11) Trydnt: Sacrifice G3 Trydnt\nBuild G2 Y3\nBuild G2 Y3\nBuild G3 Trydnt\n\n12) capi3101: Build R1 Capi3101\n\n13) Trydnt: Trade G2 R2 Trydnt\n\n14) capi3101: Discover R1 Capi3101 B3 Cinefactus\n\n15) Trydnt: Build G2 Trydnt\n\n16) capi3101: Build G3 Capi3101\n\n17) Trydnt: Move G1 Y3 Capi3101\nCatastrophe Capi3101 G\n\n\tcapi3101: Well, that was stupid of me, wasn’t it?\n\tTrydnt: easy to forget about the mini-verse\n\tTrydnt: the microverse can be even more mind bending\n\nHomeworlds Online (SDG# 35635)\nVariants: "No undo, Unrated"\nStarted: 2019.10.20, Ended: 2019.11.5\nParticipants: rho0 (S), capi3101 (N)\nWinner: capi3101\n\n1) capi3101: Homeworld G1 B2 Y3\n\tcapi3101: Greetings. I'm a newbie to this site; looking forward to getting in some practice.\n\n2) rho0: Homeworld R3 G2 B3\n\n3) capi3101: Build Y1 Capi3101\n\trho0: I just made an account like 2 days ago, so I'm new as well. Good luck!\n\tcapi3101: Likewise.\n\n4) rho0: Build B1 Rho0\n\n5) capi3101: Build Y1 Capi3101\n\n6) rho0: Build B1 Rho0\n\n7) capi3101: Trade Y1 R1 Capi3101\n\n8) rho0: Trade B1 Y1 Rho0\n\n9) capi3101: Build R1 Capi3101\n\n10) rho0: Trade B1 G1 Rho0\n\n11) capi3101: Trade R1 G1 Capi3101\n\n12) rho0: Build G2 Rho0\n\n13) capi3101: Build G2 Capi3101\n\n14) rho0: Discover G2 Rho0 R1 Alpha\n\n15) capi3101: Trade G2 B2 Capi3101\n\n16) rho0: Discover G1 Rho0 B1 Bravo\n\tcapi3101: Are you going with Greek or NATO phonetic alphabet (i.e. is the next system going to be Beta or Bravo)? Asking so I can keep things consistent.\n\trho0: NATO. Haha no one ever tries to use the same convention as me so its usually just a mess once we really get started.\n\tcapi3101: Okay, cool - I'll follow suit.\n\trho0: Thanks, friend.\n\n17) capi3101: Build B1 Capi3101\n\n18) rho0: Build B1 Rho0\n\n19) capi3101: Discover B2 Capi3101 G3 Charlie\n\n20) rho0: Sacrifice G2 Alpha\nBuild Y1 Rho0\nBuild Y2 Rho0\n\n21) capi3101: Build Y2 Capi3101\n\n22) rho0: Build G2 Bravo\n\n23) capi3101: Build B2 Charlie\n\n24) rho0: Move B1 Rho0 Bravo\n\n25) capi3101: Move Y2 Capi3101 Charlie\n\n26) rho0: Move Y1 Rho0 Bravo\n\n27) capi3101: Move B2 Charlie Bravo\n\n28) rho0: Discover B1 Bravo Y3 Delta\n\n29) capi3101: Sacrifice R1 Capi3101\nAttack G2 Bravo\n\n30) rho0: Trade B3 G3 Rho0\n\n31) capi3101: Build B3 Charlie\n\n32) rho0: Build G2 Bravo\n\n33) capi3101: Trade G2 R2 Bravo\n\n34) rho0: Move G2 Bravo Delta\n\n35) capi3101: Sacrifice R2 Bravo\nAttack G1 Bravo\nAttack Y1 Bravo\n\n36) rho0: Build B3 Delta\n\n37) capi3101: Trade B2 G2 Bravo\n\n38) rho0: Sacrifice B1 Delta\nTrade G3 R3 Rho0\n\n39) capi3101: Trade G1 R1 Capi3101\n\n40) rho0: Build B1 Delta\n\n41) capi3101: Move B1 Capi3101 Delta\n\n42) rho0: Move Y1 Rho0 Bravo\n\n43) capi3101: Move Y1 Capi3101 Charlie\n\n44) rho0: Discover B1 Delta R2 Echo\n\n45) capi3101: Discover Y1 Charlie R1 Foxtrot\n\n46) rho0: Build G1 Delta\n\tcapi3101: I wish this interface did star-towing. Don't you?\n\trho0: what's star-towing?\n\n47) capi3101: Sacrifice B2 Charlie\nTrade Y1 R1 Foxtrot\nTrade G2 R2 Bravo\n\tcapi3101: It's what Andy Looney calls it when you move around stars so that they're closest to the homeworlds to which they connect. Helps with planning visually.\n\tcapi3101: Admin: I'm wanting to sacrifice my B2 in system Charlie - the system&